@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;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #333333;
	background-color: #A6C9EA;
	font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
}
.oneColFixCtrHdr #container {
	width: 940px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #a6c9ea;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #header {
	padding: 0px;
}
.oneColFixCtrHdr  #mainContent  h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size: 150%;
	font-weight: bold;
	color: #333333;
	font-family: "Trebuchet MS", "Arial Narrow", Arial, Helvetica, sans-serif;
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
}
.oneColFixCtrHdr #mainContent {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #a6c9ea;
	font-size: 90%;
	margin: 0px;
}
.oneColFixCtrHdr #mainContent ul, .oneColFixCtrHdr #mainContent li {
	padding-top: 0px; 
	padding-bottom: 0px; 
	margin-top: 0px;
	margin-bottom: 0px;
}
.oneColFixCtrHdr #mainContent p {
	padding-bottom: 0px; 
	margin-bottom: 0px;
}
.oneColFixCtrHdr #footer {
	background:#4d4d4d;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	margin-top: 15px;
}
.oneColFixCtrHdr #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 */
}
.oneColFixCtrHdr #headercontainer {
	width: 940px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #headercontainerbg {
	background: #4D4D4D;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #footercontainer {
	width: 940px; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.oneColFixCtrHdr #footercontainer p, .oneColFixCtrHdr #footercontainer a {
text-decoration:none;
color:#999999;
font-size: 12px;
text-align: right;
}
.oneColFixCtrHdr #footercontainer a:hover {
text-decoration: underline;
color: #ffffff;}
/* Miscellaneous classes for reuse */
.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;
}
.clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}

#nav a {
   display: block;
   background: #6caedf;
   color: #ffffff;
   padding: 8px 15px 8px 15px;
			text-decoration: none;
			font-size: 13px;
			font-weight:bold;
/*	width: 10em; */
}
#nav a:hover {
   background: #0099FF;
   color: #333333;
/*	width: 10em; */
}


#nav ul li a {   width: 150px;    text-align: left;    background: #0099FF;    padding: 5px 5px 5px 15px; margin:0px;}
#nav ul li a:hover {   background: #6caedf;    color: #333333;}

#nav li { /* all list items */
	float: right;
/*	width: 10em;  width needed or else Opera goes nuts */
}#nav li ul li { /* all list items */
	float: left;
/*	width: 10em;  width needed or else Opera goes nuts */
}

#nav li ul { /* second-level lists */
	position: absolute;
	padding: 0px;
	margin: 0px;
	width: 150px;
	left: -999em;
	border-right: 1px solid 009bff;
	border-bottom: 1px solid 009bff;
	border-left: 1px solid 009bff;
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
