@charset "utf-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
	background: #004B97 url(../images/backgrounds/2010bg1_r1_c1.jpg) repeat-y center;
}
 #footer,  #container,  #header_content, #nav_stripe{
	width: 778px;
	margin: 0 auto;
	text-align: left;
	}
.twoColFixLtHdr #container {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #FFFFFF;
} 
.twoColFixLtHdr #header  {
	background-color: #FFF;
	background-repeat: repeat-x;
	background-position: bottom;
	margin-right: auto;
	margin-left: auto;
	padding: 0;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #1E2340;
} 
#header_content{
	padding: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
.twoColFixLtHdr #homeTitle h2{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 2em;
	color: #1E2340;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #990000;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 6px;
	margin-left: 0px;

} 
.twoColFixLtHdr #homeTitle h5{
	color: #1E2340;
}
.twoColFixLtHdr #login_stripe{
	font-size: 0.7em;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 10px;
	height: 20px;
	text-align: right;
	color: #1E2340;
	background-color: #FFCC66;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #1E2340;
} 

#login_stripe a{
	color: #1E2340;
	text-decoration: none;
}
#login_stripe a.adminlink{
	padding-left: 10px;
	color: #990000;
}
.twoColFixLtHdr #login_stripe a:hover{
	color: #990000;
	text-decoration: underline;
}

.twoColFixLtHdr #login{
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto;
	
	
} 

.twoColFixLtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#nav_stripe{
	background-color: #FFF;
	height: 25px;
}
.twoColFixLtHdr #sidebar1, .twoColFixLtHdr #sidebar1_details {
	float: left;
	padding-right: 10px;
	padding-left: 10px;
	vertical-align: top;
	font-size: 12px;
}
.twoColFixLtHdr #mainContent, .twoColFixLtHdr #mainContent_details {
	float: none;
	margin-top: 0;
	margin-right: 0em;
	vertical-align: top;
	font-size: 12px;
	padding: 0px;
} 
.twoColFixLtHdr #sidebar1 {
	width: 190px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	color: #333333;
	background-color: #FFFFFF;
	padding-top: 20px;
}
.twoColFixLtHdr #mainContent {
	margin-left: 220px;
	width: 540px;
	padding-top: 15px;
	padding-bottom: 15px;
	
}
 h4 {
	font-size: 16px;
	font-weight: bold;
	padding: 0px;
	color: #333;
	margin-top: 8px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 0px;
	
	
} 
 h5 {
	font-size: 14px;
	font-weight: bold;
	padding: 0px;
	color: #333;
	margin-top: 8px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 0px;
	
} 
.twoColFixLtHdr #sidebar1_details {
	height: auto;
	padding-bottom: 20px;
	width: 220px;
	padding-top: 10px;
	
}
.twoColFixLtHdr #mainContent_details {
	margin-left: 260px;
	width: 500px;
	padding-top: 10px;
	margin-bottom: 0px;
	
} 

.twoColFixLtHdr #mainContent_singleCol {
	float: none;
	margin-top: 0;
	margin-right: 0;
	margin-left: 0px;
	width: 740px;
	vertical-align: top;
	padding-left: 15px;
} 
#footer {
	clear: both;
	padding-top: 10px;
	font-size: 80%;
	color: #333;
	background: #FFF;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #B8AE7E;
	width: 750px;
} 
 #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#footer_content{
	padding-right: 20px;
	padding-left: 20px;
	font-size: 0.9em;
	color: #666;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
#logo  , #largest_display {
	float: left;
	
}
#logo img {
	padding-top: 10px;
	padding-bottom: 10px;
	padding-right: 20px;
	padding-left: 10px;
}

#largest_display {
	position: relative;
	bottom: -60px;
	
	
}

#largest_display h1{
	font-family: Georgia, "Times New Roman", Times, serif;
	margin: 0px;
	padding: 0px;
	font-size: 24px;
	color: #1E2340;
}
#largest_display h2{
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	padding: 0px;
	color: #990000;
	margin-top: -10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#dwd {
	float: right;
	padding-top: 10px;
	padding-right: 10px;
	font-weight: bold;
	color: #666666;
	font-size: 0.8em;
}
#dwd a{
	color: #666666;
	text-decoration: none;
	text-align: center;
}
#dwd a:hover{
	color: #990000;
	text-decoration: underline;
}
#dwd span{
	font-size: 130%;
	color: #1E2340;
}



	


.twoColFixLtHdr #middle, #middle{

}
#details_middle{

}
.twoColFixLtHdr #middle, #middle, #details_middle {
	padding-top: 0px;
	clear: both;
	height: auto;
	background-repeat: repeat-y;
}

#lower_links, #lower_links a, #lower_links a:visited {
	font-size: 1em;
	color: #333;
	text-align: center;
	text-decoration: none;
	
}

#lower_links ul{
	list-style-type: none;
	background-image: none;
	float: none;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	padding: 0px;
}

#lower_links li {
	padding-left: 0.3em;
	display: inline;
	padding-right: .3em;
}
#lower_links a:hover{
	color: #900;
	text-decoration: underline;
}
.centerbutton {
	text-align: center;
}
#mailing_address , #phone_contact , #email_contact {
	border: thin dotted #999999;
	background-color: #DDDDDD;
	padding: 0.4em;
	margin-bottom: 1em;
}

#mailing_address  {
	
	background-color: #DDDDDD;
	
}
#phone_contact  {
	background-color: #FFFF99;
	
}
#email_contact  {
	background-color: #D2F0E1;
	
}
#city_drop, #custom_directions {
	border: 1px solid #2E2E83;
	padding: 4px;
}
#city_drop {
	background-color: #FFFF66;
	
}
#custom_directions {
	background-color: #C0D0E2;
	
}
#style_table .homepic {
	border: 1px solid #2E2E83;
	margin-top: 12px;
	margin-bottom: 4px;
}
.logout {
	display: inline;
	padding-left: 1em;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #FFFFFF;
	margin-left: 1em;
}
div#admin_title h3{
	font-family: Georgia, "Times New Roman", Times, serif;
}
div#admin_title{}
