@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;
	background-attachment: fixed;
	background-image: url(../Images/bkg-brick-wall.jpg);
	font-family: "Times New Roman", Times, serif;
	font-size: 100%;
}
.oneColFixCtrHdr #container {
	width: 875px;
	margin: 0 auto;
	text-align: left;
	background-color: #999;
}
.oneColFixCtrHdr #header {
	padding: 0;
	background-color: #999;
}
.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: 0;
	background-color: #999;
}
.oneColFixCtrHdr #mainContent {
	padding: 0 20px;
	background-image: url(../Images/creambackground.jpg);
	color: #000;
}
.oneColFixCtrHdr #footer {
	padding: 0 0px;
	background-image: url(../Images/footer-bkg.jpg);
	font-size: medium;
	text-align: center;
}
.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 */
}

