@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #322f2d;
	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: #000000;
}
.style #container {
	width: 1000px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.style #header {

}
.style #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.style #mainContent {
	background: #322f2d;
	padding-top:10px;
}
.style #footer {
	text-align: center;
	font-size: small;
	color: #808080;

}
.style #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

