@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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;
	background-color: #00FF00;
	margin-right: 10px;
}
.oneColFixCtrHdr #container {
	width: 760px;
	margin: auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	color: #000000;
	background-color: #206241;
	left: 5px;
	top: 5px;
	border: 3px solid #000000;
}
.oneColFixCtrHdr #header {
	padding: 5px 5px;
}
.oneColFixCtrHdr #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: 5; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	border-color: #000000;
	outline-color: #000000;
	border: 2px solid #000000;
}
.oneColFixCtrHdr #mainContent {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px;
}
.oneColFixCtrHdr #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 */
}
