@charset "utf-8";
/* CSS Document */

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;
	background-color: #333;
}
#container  {
	width: 780px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #333;
	margin-top: 25px;
}
#header    {
	text-align: center;
	padding-bottom: 15px;
}
a {
	text-decoration: underline;
	color: #FFF;
}


#mainContent  {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-family: Verdana, Geneva, sans-serif;
	color: #FFF;
	font-size: .8em;
}
div, h1, h2, h3, h4, p, table {
	margin: 0px;
	padding: 0px;
}
td {
	background-color: #666;
}
