@charset "utf-8";
body  {
	background: #1F6030;
	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: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
}
.twoColFixRtHdr #container { width: 852px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */ background: #FFFFFF; text-align: left; /* this overrides the text-align: center on the body element. */ margin-top: 15px; margin-right: auto; margin-bottom: 15px; margin-left: auto; position: relative; 
} 
.twoColFixRtHdr #header { background-image: url(../images/header_logo.jpg); background-repeat: no-repeat; background-position: left top; padding-top: 85px; margin: 0px; padding-bottom: 0px; 
} 
.twoColFixRtHdr #header #search_form  { position: absolute; right: 28px; top: 12px; font-size: 16px; color: #1F6030; height: 22px; }

.twoColFixRtHdr #sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 223px;
	margin-right: 20px;
	padding-right: 10px;
	padding-left: 10px;
	margin-top: 0px;
	padding-top: 5px;
	margin-bottom: 8px;
	padding-bottom: 5px;
}

.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 223px;
	margin-right: 20px;
	padding-right: 10px;
	padding-left: 10px;
	margin-top: 0px;
	padding-top: 5px;
	margin-bottom: 8px;
	padding-bottom: 5px;
	background-color: #FDF7A0;
}
.twoColFixRtHdr #sidebar2 {
	margin-top: 75px;
	padding-top: 5px;
	margin-bottom: 8px;
	padding-bottom: 5px;
	background-color: #EA7900;
	margin-right: 20px;
	width: 223px;
	padding-left: 5px;
	padding-right: 5px;
}
.twoColFixRtHdr #sidebar3 {
	margin-top: 75px;
	padding-top: 5px;
	margin-bottom: 8px;
	padding-bottom: 5px;
	background-color: #FFD900;
	padding-right: 5px;
	padding-left: 5px;
	margin-right: 20px;
	width: 223px;
}
.twoColFixRtHdr #sidebar4 {
	margin-top: 75px;
	margin-bottom: 8px;
	background-color: #8CC63F;
	margin-right: 20px;
	width: 223px;
	padding: 5px;
}
.twoColFixRtHdr #sidebar5 {
	margin-right: 20px;
	margin-top: 0px;
	margin-bottom: 8px;
	background-color: #FDF7A0;
	width: 223px;
	padding: 5px;
}




.twoColFixRtHdr #mainContent {
	margin-top: 0px;
	margin-right: 268px;
	padding-right: 20px;
	padding-left: 20px;
}
.twoColFixRtHdr #footer {
	padding: 0 10px 0 20px;
	background-color: #1F6030;
} 
.twoColFixRtHdr #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 */
	text-align: center;
	color: #FFF;
}
.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;
}
