@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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;
	background-color: #fff;
	background-image: url(../img/bgTile.jpg);
	background-repeat: repeat-x;
}
#container {
	width: 570px;
	text-align: left;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#container img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	text-align: center;
}
#header {
	text-align: center;
	margin-top: 90px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
}
#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 */
	color: #E61D2B;
	text-align: center;
	left: -1000px;
	position: absolute;
}
#mainContent {
	text-align: center;
	margin-top: 50px;
	margin-bottom: 50px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
}
#mainContent p {
	color: #4D4D4D;
	font-size: 1em;
	line-height: 135%;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
}
#footer {
	text-align: center;
	margin-top: 50px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
}
#footer p {
	font-size: 10px;
	color: #666;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 5;
	margin-left: 0;
	padding-right: 0;
	padding-left: 0;
}
#footer a {
	color: #E61D2B;
}
