@charset "utf-8";
/* CSS Document */
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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.b2  {
	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: #CC0000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.thrColAbsHdr #container {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 900px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #7ae147;
} 
.thrColAbsHdr #header {
	height: 80px;  /* 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. */
	background-image: url(bg-header.jpg);
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	background-position: left top;
	background-repeat: no-repeat;
	margin-bottom: 15px;
} 
.thrColAbsHdr #header h1 {
	color: #006633
	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 */
}
#mainContent h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 22px;
	font-weight: bolder;
	color: #72a95d;
}	
.thrColAbsHdr #mainContent {
	background-color: #FFFFFF;
	margin-top: 0;
	margin-right: 100px;
	margin-bottom: 0;
	margin-left: 100px;
	padding: 10px;
}
.thrColAbsHdr #footer {
	padding-left: 10px;
	height: 50px;
	margin-top: 15px;
} 
.thrColAbsHdr #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 #footer-list {
	float: right;
	padding-right: 15px;
	height: 50px;
}

#footer #footer-list ul{
	list-style-type: none;
	text-align: right;
	margin: 0px;
	padding-top: 20px;
}
#footer #footer-list ul li {
	display: inline;
	padding-left: 10px;
}
#footer #footer-list ul li a, #footer #footer-list ul li a:link, #footer #footer-list ul li a:visited {
	color: #006633;
	font-size: 12px;
	text-decoration:none;
	cursor: default; 
}
#footer #footer-list ul li a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}
.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;
}
.legal {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333333;
	background-color: #FFFFFF;
	padding-right: 15px;
	display: block;
	text-align: right;
	padding-top: 5px;
}
.clear {
	clear: both;
}
.style1 {
	color: #CC0000
}
a:link, a:visited {
	color: #333333;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
	color: #333333;
}
a:active {
	text-decoration: none;
}
