@charset "utf-8";
/* CSS Document */
body { /* body is the background of the document - this one is black */
	background: #4d4d33; dk green
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 30px 0;
	color: #00000; black
}
.oneColElsCtrHdr #container {/* container is the shape on the background - this part os green*/
	width: 60%;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #8C9951;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	top: 10px;
}
.oneColElsCtrHdr #header {/* place for logo image and type */
	background: #8C9951;
	padding: 0px 0px;  /* 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. */
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
} 
.oneColElsCtrHdr #mainContent {/* place for text copy */
	padding: 40px 40px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #8C9951;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 85%;
	font-weight: normal;

}
.oneColElsCtrHdr #footer { /* this is the place for the navigation bar */
	padding: 0px 0px 0px 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#8C9951;
}



</style>
.oneColElsCtrHdr #container #footer {
	text-align: center;
}
