/* COLORS
Logo/Link green: 84AF00
*/

@charset "UTF-8";
body  {
	background: #FFFFFF;
	margin: 0;
	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 */
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color: #666666;
	}
p {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	}
li {
	font-size:12px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	}
#container { 
	width: 860px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
a:link, a:visited {
	color:#84AF00;
	text-decoration:none;
	}
a:hover {
	color:#444444;
	text-decoration:underline;
	}
.activemenu a:link, .activemenu a:visited {
	color:#333333;
	}
/* page headers */	
h1 {
	color:#555555;
	font-size:14px;
	padding-left:16px;
	margin-bottom:36px;
	border-left:12px solid #CCCCCC;
	font-family: "Trebuchet MS", "Tahoma", sans-serif;
	font-weight:bold;
	}
/* menu headers */
h2 {
	color:#555555;
	font-size:13px;
	margin-top:24px;
	font-family: "Trebuchet MS", "Tahoma", sans-serif;
	font-weight:bold;
	}
h3 {
	color:#555555;
	font-size:12px;
	font-family: "Trebuchet MS", "Tahoma", sans-serif;
	font-weight:normal;
	}
#logo {
	margin:12px 0 6px 0;
	text-align:lef;
	}
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 124px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 72px 0px;
	text-align:left;
	line-height:72%;
	}
#sidebar1 a:link, #sidebar1 a:visited {
	padding:3px;
	font-family: "Trebuchet MS", "Tahoma", sans-serif;
	font-size:12px;
	}
#sidebar1 a:hover {
	border:1px solid #CCCCCC;
	padding:2px;
	text-decoration:none;
}
#mainContent { 
	margin: 0 124px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0;
}
#copybody {
	padding:48px 72px 24px 72px;
	font-size:12px;
	line-height:150%;
	color:#555555;
}
#footer {
	color:#A3A3A3;
	font-size:11px;
	}
#footer a:link, #footer a:visited {
	font-size:11px;
	}
.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;
}