<style type="text/css">

body {
	font: Tahoma;
	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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #3A8CD8;
}
.oneColFixCtrHdr #container {
	width: 760px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	border: 5px solid #812A00;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-image:url(images/background.jpg);
}
.oneColFixCtrHdr #header {
	background: #DDDDDD; 
	padding: 0 10px 0 20px;  /* 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. */
}
.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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.oneColFixCtrHdr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
}
.oneColFixCtrHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-image: url(images/footer.jpg);
}
.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 */
}

h1 {
	font:34px Impact;
	margin:20px 20px 20px 20px;
	padding:20px 20px 20px 20px;
	color:#990000;
	font-weight:400;
	text-align:center;
	font-stretch:expanded;
	}
h2 {
	font:30px Impact;
	margin:20px 20px 20px 20px;
	padding:20px 20px 20px 20px;
	text-align:center;
	color:#812A00;
	font-weight:400;
	font-stretch:expanded;
	}
h3 {
	font:18px Impact;
	font-weight:400;
	margin:20px 20px 20px 20px;
	padding:20px 20px 20px 20px;
	text-align:center;
	font-stretch:expanded;
	}
p {
	font:17px Tahoma;
	margin:10px 10px 10px 10px;
	padding:10px 30px 10px 30px;
	}
h4 {
	font:18px Tahoma;
	margin:5px 5px 5px 5px;
	padding:5px 5px 5px 5px;
	font-weight:600;
	}
pre {
	font:14px Tahoma;
	margin:5px 5px 5px 5px;
	padding:5px 5px 5px 5px;
	color:#660000
	}
a {
	color:#0000FF;
	font-size:16px;
	font:Tahoma;
	text-decoration:underline;
	}
a:link {
	color: #0000FF;
	font-size:16px;
	font:Tahoma;
	font-stretch: narrower;
	text-decoration:underline;
	}	
a:visited {
	color:#0000FF;
	font-size:16px;
	font:Tahoma;
	text-decoration:underline;
	}
a:active {
	
}
a:hover {
	color:#0000FF;
	text-decoration: underline;
	font-size:16px;
	font:Tahoma;
}
</style>

