@charset "utf-8";

body  {
	background: url(../assets/MainBackground.jpg) repeat-x;
}
.twoColFixLtHdr #container {
	width: 790px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #CFC889 repeat;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-right: auto;
	margin-left: auto;
	border: 1px solid #666666;
	margin-top: 10px;
} 
.twoColFixLtHdr #header {
	background: #FFFFFF url(../assets/Banner.jpg) no-repeat;
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height: 270px;
	text-align: left;
	text-indent: 10px;
	vertical-align: top;
	border-top: 2px solid #A5BDE3;
} 
.twoColFixLtHdr #navigation {
	padding: 8px 0px 4px 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	margin: 0px;
	background: #FFFFFF url(../assets/NavigationBackground.jpg);
	height: 20px;
	color: #FFFFFF;
}

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 260px;
	clear: both;
	padding: 0px 10px 5px;
	line-height: 150%;
}
.twoColFixLtHdr #mainContent {
	margin: 0 0 0 285px;
	padding: 25px 10px 10px;
	background: #FFFFFF;
	border-left: 1px solid #666666;
	list-style: square;
} 
.twoColFixLtHdr #footer {
	padding: 5px;
	text-align: center;
	background: #233654 url(../assets/FooterBackground.jpg);
} 
.twoColFixLtHdr #footerTest {
	padding: 5px;
	text-align: center;
	border-top: 1px dotted #999999;
	background: #3F506E;
	position: static;
	left: 58px;
	top: 4px;
	width: 272px;
}

.twoColFixLtHdr #footerLogos {
	padding: 2px;
	text-align: center;
	background: #FFFFFF;
}
.twoColFixLtHdr #footerLinks {
	padding: 2px;
	text-align: center;
	background: #233654;
	border-bottom: 1px solid #FFFFFF;
}


.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;
}
