@charset "utf-8";
body {
	font: 100%  Arial, Helvetica, sans-serif;
	background: #f2fafb;
	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;
}
#container {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	/*background: #f2fafb;*/
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/*border: 1px solid #000000;*/
	text-align: left; /* this overrides the text-align: center on the body element. */
	border-right: #4b795f solid 30px;
	border-left: #4b795f solid 30px;
}
#header {
	background: #f2fafb url(../images/top.jpg) no-repeat;
	padding: 0;
	width:1000px;
}
#header #subheader1 {
	height:30px;
	background:url(../images/arrow.png) no-repeat;
	position:relative;
	z-index:100;
}
#mainContent {
	padding: 0px 80px;
	position:relative;
	padding-bottom:288px;
}
#mainContent #content {
	padding-top:15px;
	padding-bottom:30px;
}
#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#4b795f;
	border-right: #4b795f solid 0px;
	border-left: #4b795f solid 10px;
	width:1000px;
	margin:0 auto;
}
#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 */
	font-size:small;
	color:white;
}
h1 {
	color:#07891c;
	font-size:150%;
}
h2 {
	font-size:125%;
	color:#7bc844;
}
#rthandDrop {
	right:10px;
	top:-144px;
	position:absolute;
	z-index:0;
}
#bottomGrid {
	bottom:0;
	left:0;
	position:absolute;
}
.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;
}	
ul.list li{
	list-style-image:url(../images/littledrop.png);
	list-style-position:outside;
	margin-top:8px;
	margin-bottom:8px;
	padding-bottom:3px;
}