@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: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 62.5%;
	background-color: #000000;
}
 #container {
	width: 610px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0px;
	margin-top: 2%;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-image: url(images/contentBG.jpg);
	background-repeat: repeat-y;
	background-position: left top;
}
 #header {
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	margin: 0px;
	background-image: url(images/header.png);
	background-repeat: no-repeat;
	background-position: left top;
	height: 177px;
	width: 610px;
	background-color: #000000;
}
 #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: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-indent: -1000em;
}
 #mainContent {
	padding: 0;
	margin: 0px;
	width: 610px;
	background-image: url(images/mainContentBG.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
#mainContent p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.5em;
	line-height: 1.2em;
	padding-right: .5em;
	padding-left: .5em;
	padding-top: 0px;
	padding-bottom: 1em;
	margin: 0px;
	text-align: center;
}
#mainContent  a   {
	text-decoration: none;
	color: #FB0000;
}
#mainContent a:hover {
	text-decoration: none;
	color: #FFCC00;
}


#mainContent ul {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 1em;
	padding-left: 0em;
	font-style: italic;
	list-style-type: square;
	text-align: center;
}
#mainContent li {
	font-size: 1.4em;
	line-height: 1.2em;
	font-weight: bold;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0em;
	padding-left: 0px;
}
#enterButton {
	padding: 0px;
	height: 150px;
	width: 150px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
#enterButton img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#ace  {
	width: 280px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 1em;
	padding-left: 0px;
}
#ace img {
	text-decoration: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin: 0px;
	padding: 0px;
}
#entryForm {
	font-weight: bold;
	font-size: 1.2em;
}


#mainContent .topSentence {
	font-size: 1.8em;
	text-align: center;
	padding-right: 0.5em;
	padding-left: 0.5em;
	margin: 0px;
	padding-bottom: 1em;
}
#mainContent .rules {
	font-size: 1em;
	line-height: 1.2em;
	margin: 0px;
	padding-top: 0em;
	padding-right: 0em;
	padding-bottom: .5em;
	padding-left: 0em;
}
#mainContent .sponsor {
	margin: 0px;
	text-align: center;
	padding-top: 0em;
	padding-right: 0px;
	padding-bottom: 1em;
	padding-left: 0px;
}
#mainContent .thanks {
	font-size: 2.5em;
	text-align: center;
	margin: 0px;
	padding-top: 10em;
	padding-right: 0px;
	padding-bottom: 10em;
	padding-left: 0px;
}




 #footer {
	padding: 0;
	margin: 0px;
	width: 610px;
	background-image: url(images/footerBG.png);
	background-repeat: no-repeat;
	background-position: left top;
	height: 54px;
	background-color: #000000;
}
 #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 3em;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	text-align: center;
	font-size: 1em;
}
#footer a {
	color: #E31836;
	text-decoration: none;
}
#footer a:hover {
	color: #FFCC00;
	text-decoration: none;
}
