@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-color: #D9DFD7;
	margin: 10px 0 0 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	color: #011B01;
}
p, td { 
	font-size: 11px;
	text-align: justify; 
	line-height: 120%;
}
h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #011B01;
	margin-bottom: 8px;
}
hr {
	color : #003300;
}
a {
	color: #663300;
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	color: #011B01;
	font-weight: bold;
	text-decoration: none;
}

#container {
	width: 960px;  /* 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 */
/*	border: 1px solid #000000; */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header, #coverheader2 {
	padding: 0;
	margin: 0;
}
#covercontent {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
#coverrightcol {
	float: left;
	width: 195px;
	height: 300px;
	padding: 0;
	background-color: #39422F;	
}
.leftcol {
/*	float: left;
	width: 150px; */
	background-color: #825A1F;
	margin: 0;
	padding: 20px 5px 20px 5px;	
}
#mainbody {
	width: 550px;
	margin: 20px 0 0 0;
	padding: 10px 55px 5px 35px;
	background-image: url(images/bg_mainbody.gif);
	background-repeat:repeat-y;
	background-color:#FFF;
}
.rightcol {
	background-color: #36412E;
}

p.footer {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 8px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 10px;
	text-align: center; font-weight: bold;
}
.bodytext {
	color: #011B01;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-align: justify; 
	line-height: 120%; 
}

.bodytextsmall {
	color: #011B01;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;	
}
.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;
}
li { padding-bottom: 7px; }