@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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #FFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	background-color: #210;
	height: 3000px;
	width: 1350px;
}
#container  {
	width: 100%;  /* this will create a container 80% of the browser width */
	background: #221100;
	margin: 0;
	text-align: left;
	padding-left: 15px;
}
#header  {
	background-color: #221100;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 36px;
	font-variant: normal;
	font-weight: bolder;
}
#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 */
	background-color: #221100;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 36px;
	font: #FFF;
}
#mainContent  {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #221100;
}
#footer  {
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#221100;
	background-color: 221100;
} 
