@charset "UTF-8";
body {
	font: 100% Tahoma, Arial, Verdana, sans-serif;
	background: #BCAD75;
	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;
}
.oneColFixCtrHdr #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: none;
	padding: 0;
}
.oneColFixCtrHdr #header {
	background: #FFFFFF;
	padding: 10px;
	margin: 0px;
}
.oneColFixCtrHdr #navBar{
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	font-size: 13px;
	margin: 0px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;	
}

.oneColFixCtrHdr #navBar a, .oneColFixCtrHdr #navBar a:visited{
	color: #024930;
	text-decoration: none;
	font-weight: bold;
}
.oneColFixCtrHdr #navBar a:hover{
	color: #3F1900;
	text-decoration: underline;
	font-weight: bold;
	
}

.oneColFixCtrHdr #mainNavBar a, .oneColFixCtrHdr #mainNavBar a:visited{
	color: #024930;
	font-size: 15px;
	text-decoration: none;	

}
.oneColFixCtrHdr #mainNavBar a:hover{
	color: #3F1900;
	font-size: 15px;
		text-decoration: underline;
	
}

.oneColFixCtrHdr #mainContent {
	padding: 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	color: #024930;
	margin-bottom: 10px;
}

.oneColFixCtrHdr #mainContent a, .oneColFixCtrHdr #mainContent a:visited{
	color: #024930;
	font-size: 15px;
	text-decoration: none;	

}
.oneColFixCtrHdr #mainContent a:hover{
	color: #3F1900;
	font-size: 15px;
		text-decoration: underline;
	
}
.oneColFixCtrHdr #mainContent h1{
	font-size: 18px;
	color: #BCAD75;
	margin-top: 10px;
	margin-bottom: 0px
}

.oneColFixCtrHdr #mainContent h2{
	font-size: 15px;
	margin-top: 10px;
	margin-bottom: 0px
}
.oneColFixCtrHdr #mainContent p, .oneColFixCtrHdr #mainContent ul{
	font-size: 14px;
	margin-top: 0px;
	margin-bottom: 10px;
}
.oneColFixCtrHdr #footer {
	padding: 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #FFFFFF;
	margin: 0px;
}
.oneColFixCtrHdr #footer p {
	color: #024930;
	font-size: 12px;
	text-align: center;
}
.oneColFixCtrHdr #footer h1 {
	color: #024930;
	font-size: 14px;
	text-align: center;
	padding-top: 6px;
	padding-bottom: 6px;
}

.oneColFixCtrHdr #footer a, .oneColFixCtrHdr #footer a:visited{
	font-size: 12px;
color: #024930;
}
.oneColFixCtrHdr #footer a:hover{
	font-size: 12px;
	color: #000000;
}
.fltLeft{
	float: left;
	margin: 0px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	
}
.fltRight{
	float: right;
	margin: 0px; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	
}
