@charset "UTF-8";
body {
	font: 100% Arial, Helvetica, sans-serif;
	background: #7fb03a url(../images/bkgds/pagebkgdtile.jpg) repeat-x left top;
	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: #333333;
}
a:link {
	color: #222222;
}
a:visited {
	color: #454545;
}
a:hover {
	color: #000000;
}
h1 {
	font: normal 150% Georgia, "Times New Roman", Times, serif;
	color: #ffffff;
	margin: 4px 0px 5px;
}
h2 {
	font: normal 145% Georgia, "Times New Roman", Times, serif;
	color: #ffffff;
	margin: 4px 0px 8px;
}
h3 {
	font: normal 15px/20px Georgia, "Times New Roman", Times, serif;
	color: #80929a;
	margin: 2px 0px 6px;
}
h4 {
	font: normal 135% Georgia, "Times New Roman", Times, serif;
	color: #ffffff;
	margin: 4px 0px 6px;
}
h5 {
	font: normal 130% Georgia, "Times New Roman", Times, serif;
	color: #ffffff;
	margin: 3px 0px 5px;
}

#container {
	width: 852px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: transparent;
	margin: 0 auto;
	text-align: left;
}
#header {
	background: url(../images/bkgds/headerbkgd.gif) no-repeat left top;
	padding: 0px;  /* 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;
	height: 74px;
	width: 852px;
}
#fencebar {
	margin: 0px;
	padding: 0px;
	height: 80px;
	width: 852px;
	background: transparent url(../images/bkgds/fencebkgd.gif) no-repeat left top;
}
#navbar {
	background: transparent url(../images/bkgds/navbarbkgd.gif) no-repeat left top;
	height: 31px;
	width: 852px;
	margin: 0px;
	padding: 0px;
}
#innernav {
	background: transparent;
	height: 30px;
	width: 700px;
	margin-right: 86px;
	margin-left: 66px;
	font: 11px Arial, Helvetica, sans-serif;
	color: #5e6d74;
}
#innerwrapper {
	background: url(../images/bkgds/maincontentbkgd.jpg) repeat-x left top;
	width: 850px;
}
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 189px; /* 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: 15px 17px;
	background: url(../images/bkgds/sb_bkgd_wsign.gif) no-repeat left top;
	height: 382px;
	margin: 0px;
}	
#sidebar1 p {
	margin: 4px 0px 8px;
	font-size: 11px;
	line-height: 14px;
	color: #333;
	text-align: left;
}
#mainContent {
	margin: 0 227px 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: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #b1c67b url(../images/bkgds/maincontentbkgd.jpg) repeat-x left top;
	font-size: 80%;
	line-height: 125%;
}  

#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:transparent;
	height: 40px;
	font-size: 12px;
	color: #222222;
	text-align: center;
	margin: 0px;
	width: 830px;
}
#footer p {
	margin: 0px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0px 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 12px;
	line-height: 18px;
}

.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;
}

