﻿/* =========================================================
 This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, 
 would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, 
 the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. 
 ==========================================================*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0px;
	padding: 0px;
	border: 0px;
	outline: 0px;
	font-size: 100%;
}

a {
   outline: 0;
}
/* ======================================================
 The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of 
 the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the 
 page and create a centered container for the page content to display. 
 =======================================================*/
body {
	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	padding: 0px 0px 0px 0px;
	background-color: #FFFFFF;  /* Original -	background-color: #CCCCCC;	color: #2d2e2e;  background-image: url('../images-site/gray-2.png');  */;
	line-height: 1.2em;
	font-size: 1em;
	color: #000000;
	font-family: 'Open Sans', 'Arial', 'Helvetica', sans-serif;
	margin: 0px 0px 0px 0px;
}
body img {
	border: 0px;
	text-decoration: none;
	max-width: 100%;
	height: auto;
	width: auto\9; /* ie8 */
}
/* =====================================
Commonly used to style page titles. 
========================================*/
h1, h2, h3, h4, h5 {
	margin: 5px 0px 5px 10px;
	font-family: 'Roboto', sans-serif;
}
h1 {
	font-size: 2.0em;
	line-height: 2.0em;
}
h2 {
	font-size: 1.7em;
	line-height: 1.5em;

}
h3 {
	font-size: 1.3em;
}
h4 {
	font-size: 1.1em;
}
/*================================
Link Styles unless specified separately
=================================*/
a, a:link {
	color: #132855;
	font-weight: bold;
	text-decoration: none;
}
a:visited {
	color: #132855;
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	color: #2170bd;
	text-decoration: underline;
}
a:focus {
	color: #2170bd;
}
a:active {
	color: #2170bd;
}
/* ======================================
 This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser 
chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to 
center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts 
you may simply set the left and right margins to center the container on the page.
========================================== */
#outerWrapper {
	background-color: #fff;
	width: 100%;
	max-width: 2000px;  /* My origianl 1500pz   */;
	text-align: left; /* Redefines the text alignment defined by the body element. */;
	margin: 0px auto;
	border: 0px #000000 solid;  /* Origianl border 1px.  All 3 box shadow 0 0 20px - This original elements create a box around the the outerWrapper  */;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-moz-box-shadow: 0 0 0px #453823;
	-webkit-box-shadow: 0 0 0px #453823;
	box-shadow: 0 0 0px #453823;
}
/*===================================
Masthaead Styles
====================================*/
#outerWrapper #header {
	background-color: #620062;
	padding: 60px 10px 10px 10px;
	font-weight: bold;
	border-radius: 10px 10px 10px 10px;
	-webkit-border-radius: 10px 10px 10px 10px;
	-moz-border-radius: 10px 10px 10px 10px;
}
.site-name {
	font-size: 4em;
	text-align: center;
	font-family: Federo, "Segoe UI", Optima, Helvetica, Arial, sans-serif;
	color: #FFFFFF;
	font-weight: bold;
}
.site-name-s {
	font-size: 1em;
	text-align: center;
	font-family: Federo, "Segoe UI", Optima, Helvetica, Arial, sans-serif;
	color: #FFFFFF;
	font-weight: bold;
}
.tagline {
	font-size: 1.5em;
	font-weight: bold;
	font-style: italic;
	color: #FFFFFF;
	font-family: "Calibri Light", Calibri, Arial, Helvetica, sans-serif;
}
/* ==========================
 Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding.  - removed  #outerWrapper 
 ============================*/
#contentWrapper #content {
	padding: 0px 0px 0px 0px;
	margin: 0px 0px 0px 0px;	
 /* origianl  padding: 10px 20px 10px 20px;  Remove these allows the divsions go all the way to the edge  */;
	
}
/* ===============================================
Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being 
cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the 
close of the container with floated elements. 
==================================================*/
.clearFloat {
	display: block;
	clear: left;
}
/*=================================================
Footer Styles 
==================================================*/
#outerWrapper #footer {
	background-color: #620062;
	padding: 10px 10px 10px 10px;
	border-radius: 8px 8px 8px 8px;
	-webkit-border-radius: 8px 8px 8px 8px;
	-moz-border-radius: 8px 8px 8px 8px;
	color: #ffffff;
}
#outerWrapper #footer p {
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: center;
	font-size: .85em;
}
#outerWrapper #footer a:link {
	color: #ffffff;
}
#outerWrapper #footer a:visited {
	color: #CCCCCC;
}
#outerWrapper #footer a:hover, #outerWrapper #footer a:focus {
	color: #FFFFFF;
}
#outerWrapper #footer a:active {
	color: #999999;
}
#outerWrapper #footer-sch {
	background-color: #000000;
	padding: 1px 5px 1px 10px;
	border-radius: 8px 8px 0px 0px;
	-webkit-border-radius: 0px 0px 8px 8px;
	-moz-border-radius: 0px 0px 8px 8px;
	color: #ffffff;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.7em;
}
/*============================================
Floating images left, right or centered on page
=============================================*/
.imglft {
	padding: 5px 10px 5px 0px;
	float: left;
}
.imgrgt {
	padding: 5px 0px 5px 10px;
	float: right;
}
.imgctr {
	display: block;
	margin: 0px auto;
}

/*Make Image Scalable - Assign this class to any image to make it scale with the browser window size*/
img.scalable {
	max-width: 100%;
	height: auto;
}
/*=====================================
Misc Typographic styles
======================================*/
.ctr {
	text-align: center;
}
.smltxt {
	font-size: small;
}
.textjustright {
	text-align: right;
}
.textjustleft {
	text-align: left;
}
/*=============
form styles 
==============*/
form fieldset {
	padding: 1em;
	font: 80%/1 sans-serif;
	border: 2px solid #000000;
	width: auto;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	box-shadow: 3px 3px 6px #dddddd;
	-moz-box-shadow: 3px 3px 6px #dddddd;
	-webkit-box-shadow: 3px 3px 6px #dddddd;
}
form fieldset label {
	width: 15%;
	margin-right: 0.5em;
	padding-top: 0.2em;
	text-align: right;
	font-weight: bold;
}
form fieldset legend {
	padding: 0.2em 0.5em;
	color: #000000;
	font-size: 90%;
	text-align: right;
	font-variant: small-caps;
}
.cf {
	border: 1px #353c48 solid;
	background-image: url('../images-site/narrowline-gray.jpg');
	background-repeat: repeat;
}
.button {
	font: normal 90% Verdana, serif;
	height: 22px;
	border: 1px solid #CDBB99;
	background-color: #000000;
	color: #ffffff;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
}
input:focus {
	border: 2px solid #993300;
}
.schedule-text-menu {
	font-family: "Calibri Light", Calibri, Arial, Helvetica, sans-serif;
	font-size: 0.7em;
	color: #FFFFFF;
}
/*=============
Video - YouTube - Vimeo - scalable  
==============*/
.video-container {
	position:relative;
	padding-bottom:56.25%;
	padding-top:30px;
	height:0;
	overflow:hidden;
}
.video-container iframe, .video-container object, .video-container embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}
/*=============
Video -  code to place in the web page - <div class="video-container"><iframe.......></iframe></div>  
==============*/
/*=============
New 2019 Content divsions    
==============*/
.n19-top {
	position:fixed;
	width:100%;z-index:1
}
.n19-content1 {
	background-color: #FFFFFF;
}
.n19-content1-textbox {
	padding: 10px;
	margin: 10px;
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
}
/*=============
	n19-content1 the white background.  n19-content2 the dark background.  Can use the same color as the header and footer background
==============*/
.n19-content2 {
	background-color: #620062;
	border-radius: 10px 10px 10px 10px;
	-webkit-border-radius: 10px 10px 10px 10px;
	-moz-border-radius: 10px 10px 10px 10px;

}
.n19-content2-textbox {
	padding: 10px;
	margin: 10px;
	max-width: 980px;
	background-color: #620062;
	color: #FFFFFF;
	margin-left: auto;
	margin-right: auto;
	text-decoration-color: white;
}
.n19-content3-textbox {
	padding: 10px;
	margin: 10px;
	max-width: 980px;
	color: #FFFFFF;
	margin-left: auto;
	margin-right: auto;
	text-decoration-color: white;
}

.n19-center{
	text-align:center;
}

p-white {
	color: #FFFFFF;
}


/*=============
End of New 2019 Content divsions    
==============*/


/*=============
Start of 2020 buttons and links    
==============*/

/*=============
My Link button with border, hover with color change and drop shadow - listed under button Class     8-2020  
==============*/
.mylinkbutton2 {
  background-color: white; 
  color: black; 
  border: 2px solid #008CBA;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  margin: 4px 2px;
}
.mylinkbutton2:hover {
	background-color: #000080;
	color: white;
	box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
	cursor: pointer;
}
/*=============
My Immage Link hover drop shadow - listed under Class     8-2020  
==============*/
.myimglink20 {
    border: solid 1px #EFEFEF;
    padding: 3px;
 }
.myimglink20:hover {
	border: solid 1px #CCC;
    box-shadow: 8px 8px 10px #999;
	cursor: pointer;
}
/*=============
My Immage rounded corners - listed under Class     8-2020  
==============*/
.imgroundedcorners {
  border-radius: 10px;
}
/*=============
My Zoom for Immage  - listed under Class     8-2020  
==============*/
.myzoom1 {
  padding: 1px;
  transition: transform .2s;
  margin: 0 auto;
 }
.myzoom1:hover {
  -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1); 
}
/*=============
End of 2020 buttons and links    
==============*/

/*Make Image Scalable - Rounded corners and float */
.myimgscalableroundedleft {
	max-width: 100%;
	height: auto;
	border-radius: 20px;
	float:left;
}
.myimgscalableroundedright {
	max-width: 100%;
	height: auto;
	border-radius: 20px;
	float:right;
}

/*Make Image padding */
.myimgpadding {
    padding: 10px;
}
/*Make Image Scalable and float */
.myimgscalableleft {
	max-width: 100%;
	height: auto;
	float:left;
}
.myimgscalableright {
	max-width: 100%;
	height: auto;
	float:right;
}
