* {
	margin:0; /* zero out margin */
	padding:0; /* zero out padding */
}

html, body {
	height: 100%; /* gives layout 100% height */
	overflow: inherit; /* triggers 100% height in Opera 9.5 */
	text-align: center; /* probably needed for IE6 */
	background-color: #EDEDED;
}

#wrapper {
	min-height: 100%; /* gives layout 100% height */
	width: 900px; /* centered div must be given a width */
	margin: 0 auto; /* centers #wrapper */
	text-align: left;
	border: 1px solid black;
	background-color: #FFF;
}

* html #wrapper { 
	height:100%; /* IE6 treats height as min-height */
}

#header {
	height: 150px;
	padding: 50px:
}

#content {
	padding: 20px;
	font-family: Georgia, "Times New Roman", Times, serif;
}

.pushdown {
	padding: 0px 0 40px; /* bottom padding clears the #footer */
}

#footer {
	height: 20px;
	width: 900px; /* centered div must be given a width */
	margin: -45px auto 0; /* -25px sucks it back in & auto centers it */

	/* very dark green #336633 */
}

#ft-top {
	padding-bottom: 1px;
}
	
	
#ft-bottom {
	border-top: 1px solid black;
	border-bottom: 1px solid black;
	background: #81a86a;
	}


/* navlist -------------------------------------------------------------*/
#navlist {
	text-align: center;
	border-top: 1px solid black;
	border-bottom: 1px solid black;
	padding: 8px;
	margin: 0 0 7px;
}

#navlist li {
	display: inline;
	font: Tahoma, Verdana, Arial, sans-serif;
	font-weight: bold;
	font-size: 17px;
/* 	letter-spacing: 0.7px; */
	padding: 0px 15px 0px 20px;
	text-align: center;
}

#navlist a {
	text-decoration: none;
 	color: #3f6923;  
}

#navlist a:hover, #navlist a:focus {
	text-decoration: underline;
}