@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;
	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;
	background-color: #000;
	font-size: 100%;
	font-family: Verdana, Geneva, sans-serif;
	background-image: url(../img/bodybkrd.gif);
	background-repeat: repeat-x;
	background-position: top left;
}
.oneColFixCtr #container {
	margin: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
	width: 1050px;
	background-color: #000;
	padding: 0;
	
}
.oneColFixCtr #mainContent {
	padding: 1px 0px 0px 30px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 0;
}
#mainContent h3 a {
	color: #FF0;
	padding: 0;
	margin: 0;
}
#mainContent h1 {
	color: #eee;
	text-align: left;
	font-size: 250%;
	padding: 0;
	margin: 0;
}
#mainContent img {
	margin: 0px;
	padding: 0px;
}

