@charset "UTF-8";
body  {
	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: #274701;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #5D972F;
}
form {
	margin: 0;
	padding: 0;
	}
#container {
	width: 780px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background: #fff;
} 
#header { padding: 0;  /* 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. */
	background: #5D972F;
	margin: 0 0 3px 0;
	padding-top: 8px;
	}

	#header h1 {
		margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
		padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	}

	#header img, #header img a {
		border: none;
		margin: 0 0 4px 0;
	}
	
		#headerAds {
			display: inline;
			}
			
			#headerAds img {
				margin: 0 0 18px 0;
				}
				
#mission {
	background-color: #3F591D;
	background-image: url('/assets/images/mission_top_border.gif') repeat-x top;
	margin: 0;
	padding: 3px 3px 0 8px;
	border-top: 1px solid #fff;
	}

#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 196px;
	background-color: #CEFEAD;
	padding-top: 10px;
}
	#sidebarLinks {
		padding: 0 10px 5px 8px;
		margin: 0;
		}
	
	.sidebarAds {
	background-color: #97A68D;
	padding: 8px 10px 4px 8px;
	margin: 0 0 15px 0;
	color: #274701;
		}
	
	#sidebarQuotes {
		background-color:#E6F3D0;
		margin: 0 0 0 0;
		padding: 5px 10px 15px 8px;
		}
	
	/*start nav styles*/
	#navcontainer {
	width: 100%;
	border-right: /*1px solid #000*/none;
	padding: 0 0 0 0;
	margin-bottom: 1em;
	font-family: Verdana, Lucida, Geneva, Helvetica, Arial, sans-serif;
	background-color: #D9FCAF;
	color: #333;
			}
		
		#navcontainer ul {
			list-style: none;
			margin: 0;
			padding: 0;
			border: none;
			}
		
		#navcontainer li {
			border-bottom: 1px solid #5D972F;
			margin: 0;
			}
		
		#navcontainer li a {
			display: block;
			padding: 5px 5px 5px 0.5em;
			border-left: 10px solid #5D972F;
			border-right: 10px solid #5D972F;
			background-color: #45581F;
			color: #fff;
			text-decoration: none;
			width: 100%;
			}
		
		html>body #navcontainer li a { width: auto; }
		
		#navcontainer li a:hover {
			border-left: 10px solid #d79441;
			border-right: 10px solid #d79441;
			background-color: #A2661B;
			color: #fff;
			}
/*end of nav*/
	
#mainContent {
	width: 560px;
	margin: 0 0 0 192px; /* the left margin on this div element creates the column down the left 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: 5px 5px 5px 15px;
}

		#mainContent img {
	padding: 5px;
	border: solid 1px #e8dfd7;
		}
		
			#mainContent img.noborder {
				border: none;
				}

			#mainContent img.rule {
				padding: 0;
				border: none;
				margin: 0 0 5px 0;
				}

#sidebar2border {
	width: 272px;
	float: right;
	background-color: #fff;
	padding: 1px 1px 1px 1px;
	margin: 0 4px 10px 4px;
	border: solid 1px #e8dfd7;
	}

#sidebar2 {
	background-color:#E6F3D0;
	margin: 4px;
	padding: 0px 10px 0px 10px;
	border: solid 1px #E6F3D0;
	}

#footer {
	padding: 0 10px 0 20px;
	background-color: #BDE8A0;
	border-top: 1px solid #5D972F;
} 
#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 */
}
.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;
}
