@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: #666666;
	background-color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
}
.twoColFixLtHdr #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixLtHdr #header {
	background-image: url(../images/header.jpg);
	background-repeat: no-repeat;
	height: 159px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
.twoColFixLtHdr #menu {
	height: 25px;
	background-color: #004794;
	color: #FFFFFF;
	padding-top: 8px;
	padding-left: 50px;
}
.twoColFixLtHdr #menu a:link {
	color: #FFFFFF;
	text-decoration: none;
	padding-right: 41px;
}
.twoColFixLtHdr #menu a:visited {
	color: #FFFFFF;
	text-decoration: none;
	padding-right: 41px;
}
.twoColFixLtHdr #menu a:hover {
	color: #FFFFFF;
	text-decoration: underline;
	padding-right: 41px;
}
.twoColFixLtHdr #menu a:active {
	color: #FFFFFF;
	text-decoration: none;
	padding-right: 41px;
}
.twoColFixLtHdr #submenu1 {
	height: 25px;
	background-color: #CCCCCC;
	color: #000000;
	padding-top: 8px;
	padding-left: 50px;
}
.twoColFixLtHdr #submenu1 a:link {
	color: #000000;
	text-decoration: none;
	padding-right: 52px;
}
.twoColFixLtHdr #submenu1 a:visited {
	color: #000000;
	text-decoration: none;
	padding-right: 52px;
}
.twoColFixLtHdr #submenu1 a:hover {
	color: #000000;
	text-decoration: underline;
	padding-right: 52px;
}
.twoColFixLtHdr #submenu1 a:active {
	color: #000000;
	text-decoration: none;
	padding-right: 52px;
} 
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 330px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 15px;
}
.twoColFixLtHdr #mainContent {
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 365px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
}
.twoColFixLtHdr #mainContent a:link {
	color: #004794;
	text-decoration: none;
}
.twoColFixLtHdr #mainContent a:visited {
	color: #004794;
	text-decoration: none;
}
.twoColFixLtHdr #mainContent a:hover {
	color: #004794;
	text-decoration: underline;
}
.twoColFixLtHdr #mainContent a:active {
	color: #004794;
	text-decoration: none;
} 
.twoColFixLtHdr #footer {
	background:#004794;
	height: 29px;
	padding-bottom: 0;
	padding-left: 20px;
	color: #FFFFFF;
}
.twoColFixLtHdr  #footerright  {
	float: right;
	width: 500px;
	text-align: right;
	padding-top: 8px;
}
.twoColFixLtHdr  #footerleft  {
	float: left;
	width: 165px;
	padding-top: 8px;
}
.twoColFixLtHdr #footer a:link {
	color: #FFFFFF;
	text-decoration: none;
	padding-right: 52px;
}
.twoColFixLtHdr #footer a:visited {
	color: #FFFFFF;
	text-decoration: none;
	padding-right: 52px;
}
.twoColFixLtHdr #footer a:hover {
	color: #FFFFFF;
	text-decoration: underline;
	padding-right: 52px;
}
.twoColFixLtHdr #footer a:active {
	color: #FFFFFF;
	text-decoration: none;
	padding-right: 52px;
} 
.twoColFixLtHdr a:link {
	color: #000000;
	text-decoration: none;
}
.twoColFixLtHdr a:visited {
	color: #000000;
	text-decoration: none;
}
.twoColFixLtHdr a:hover {
	color: #000000;
	text-decoration: underline;
}
.twoColFixLtHdr a:active {
	color: #000000;
	text-decoration: none;
} 
.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;
}
