@charset "utf-8";
body {
	margin: 0em; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0em;
}
.oneColFixCtrHdr #container {
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #000000;
	margin-top: 0em;
	margin-right: auto;
	margin-bottom: 0em;
	margin-left: auto;
}

.oneColFixCtrHdr #header {
	background-color: #000000;
	padding-top: 0em;
	padding-right: 0em;
	padding-bottom: 0em;
	padding-left: 0em;
	margin: 0em;
}
.oneColFixCtrHdr #header h1 {
	margin: 0em; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 0.15em;
	padding-right: 0em;
	padding-bottom: 0em;
	padding-left: 0em;
}
.oneColFixCtrHdr #header h2 {
	margin: 0em; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 0em;
	padding-right: 0em;
	padding-bottom: 0.50em;
	padding-left: 0em;
}

.oneColFixCtrHdr #mainContent {
	background-color: #000000;
	padding-top: 0.65em;
	padding-right: 0.65em;
	padding-bottom: 0.65em;
	padding-left: 0.65em;
	margin: 0em;
}

.oneColFixCtrHdr #footer {
	background-color: #000000;
	clear: both;
	padding-top: 1.5em;
	padding-right: 0.65em;
	padding-bottom: 0em;
	padding-left: 0.65em;
}
.oneColFixCtrHdr #footer p {
	margin: 0em; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0.65em 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
