@charset "UTF-8";
body {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: #7EA4B0;
	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: 800px;  /* this will create a container 80% of the browser width */
	background: #FFFFFF;
	margin-top:10px;
	margin-left:auto;
	margin-right:auto;
	
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	background: #372801; 
	
}
#navbar {
	background: #372801; 
	
}

#mainContent {
	margin:0;
	padding-bottom:20px;
	background-image:url(images/maincontent_bg.jpg);
	background-position:top;
	background-repeat:repeat-y;
	height:auto;
}

#leftside {
	width:532px;
	height:auto;
	margin:0;
	padding-left:20px;
	padding-top:4px;
}

#leftside a:link, #leftside a:visited, #leftside a:active {
	color:#003399;
	text-decoration:none;
}

#leftside a:hover {
	color:#003399;
	text-decoration:underline;
}



#rightside {
width:200px;
float:right;
margin:0;
padding-top:4px;
padding-right:20px;
color:#FFF;
font-size:11px;
}

#rightside a:link, #rightside a:visited, #rightside a:active {
	color:#6896CA;
	text-decoration:none;
}

#rightside a:hover {
	color:#6896CA;
	text-decoration:underline;
}

#navcrumbs {
width:auto;
float:right;
margin:0;
font-size:10px;
color:#372801;
}

#navcrumbs  a:link, #navcrumbs a:visited, #navcrumbs a:active {
	color:#003399;
	text-decoration:underline;
}

#navcrumbs  a:hover {
	color:#003399;
	text-decoration:none;
}


#footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#372801;
} 
#footer p {
text-align:center;
font-size:10px;
color:#947F4F;
	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 */
}

.form input {
	width:390px;
	height:23px;
	font-family:tahoma;
	font-size:11px;
	color:#003399;
	padding-left:4px;
	padding-right:4px;
	border-color:#003399;
	border-width:1px;
	border-style:solid;
	background-color:#CCDDDF;
	margin-bottom:4px;
}

.form textarea {
	width:390px;
	height:153px;
	font-family:tahoma;
	font-size:11px;
	color:#003399;
	padding-left:4px;
	padding-right:4px;
	overflow:hidden;
	border-color:#003399;
	border-width:1px;
	border-style:solid;
	background-color:#CCDDDF;
}

.smallfont {
font-size:10px;
color:#000;
	}