@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;
	background-repeat: repeat;
	background-position: left top;
	background-image: url(images/backPattern.png);
}
 #container {
	width: 604px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-repeat: repeat-y;
	background-position: left top;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin-top: 0px;
	background-color: #000000;
	background-image: url(images/containerBG.jpg);
}
 #header {
	padding: 0;
	height: 148px;
	width: 604px;
	background-image: url(images/headerBG.png);
	background-repeat: no-repeat;
	background-position: left top;
	margin-top: .5%;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
 #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 */
	text-indent: -1000em;
}
 #mainContent {
	padding: 0;
	width: 604px;
	background-image: url(images/mainContentBG.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	margin: 0px;
}
#mainContent2 {
	padding: 0;
	margin: 0px;
	width: 604px;
	background-image: url(images/mainContentBG2.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;
	margin: 0px;
	padding-top: 0px;
	padding-right: 1em;
	padding-bottom: 1em;
	padding-left: 1em;
	text-align: center;
}
#mainContent ul {
	text-align: center;
	margin: 0px;
	padding-top: 0px;
	padding-bottom: 1em;
	padding-right: 1em;
	padding-left: 1em;
}
#mainContent li {
	margin: 0px;
	padding-top: 0px;
	padding-right: 0em;
	padding-bottom: .5em;
	padding-left: 0em;
	font-size: 1.5em;
	line-height: 1.2em;
}

#mainContent .title {
	text-align: center;
	font-size: 2.5em;
	line-height: 1.2em;
	margin: 0px;
	padding-top: 1em;
	padding-right: 0px;
	padding-bottom: 1em;
	padding-left: 0px;
}
#mainContent .logo {
	height: 115px;
	width: 261px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 1em;
	padding-left: 0px;
}
#mainContent .logo img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#mainContent .enterButton {
	height: 78px;
	width: 150px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 1em;
	padding-left: 0px;
}
#mainContent .enterButton img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#mainContent .thankyou {
	text-align: center;
	font-size: 2.5em;
	line-height: 1.2em;
	margin: 0px;
	padding-top: 10em;
	padding-right: 0px;
	padding-bottom: 10em;
	padding-left: 0px;
}
#mainContent .rules {
	font-size: 1em;
}
#mainContent  a {
	text-decoration: none;
	color: #CA151C;
}
#mainContent a:hover {
	text-decoration: none;
	color: #51B948;
}



#entryForm {
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	font-weight: bold;
	font-size: 1.2em;
	padding-top: 1em;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}


 #footer {
	padding: 0;
	margin: 0px;
	width: 604px;
	background-image: url(images/footerBG.jpg);
	height: 33px;
}
 #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
	padding-top: 1em;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
}
#footer a {
	color: #CB181E;
	text-decoration: none;
}
#footer a:visited {
	color: #CB181E;
	text-decoration: none;
}

#footer a:hover {
	color: #51B948;
	text-decoration: none;
}
