@charset "utf-8";
body {
	background: #000;
	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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 62.5%;
}
 #container {
	width: 600px; /* 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: .5%;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #000;
	background-image: url(images/containerBG.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/headerBG.jpg);
	height: 173px;
	width: 600px;
	background-repeat: no-repeat;
	background-position: left top;
}
 #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;
}
#BGContainer {
	margin: 0px;
	padding: 0px;
	width: 600px;
	background-image: url(images/bgContainer.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	overflow: auto;
}

 #mainContent {
	width: 570px;
	margin-top: 5em;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	overflow: auto;
	padding: 0em;
	background-image: url(images/mainContentBG.png);
	background-repeat: repeat;
	background-position: left top;
	border: thin solid #000;
}
#mainContent h2 {
	font-size: 2.2em;
	line-height: 1.2em;
	text-align: center;
}
#mainContent .thankyou {
	margin: 0px;
	padding-top: 5em;
	padding-right: 0px;
	padding-bottom: 12em;
	padding-left: 0px;
	font-size: 3em;
}


#mainContent p {
	font-size: 1.8em;
	line-height: 1.3em;
	font-weight: bold;
	margin: 0px;
	padding-top: 0px;
	padding-right: .5em;
	padding-bottom: 1em;
	padding-left: .5em;
	text-align: center;
	font-family: Georgia, "Times New Roman", Times, serif;
}
#mainContent .album {
	height: 167px;
	width: 430px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding-bottom: 1em;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#mainContent .album img {
	border: 4px double #000;
}
#mainContent .logo img {
	border: 4px double #000;
}
#mainContent .album .logo img {
	margin-bottom: 5em;
	margin-left: 1em;
}
#mainContent .enterButton {
	width: 150px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding-bottom: 1em;
}
#mainContent .enterButton img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#mainContent .rules {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.2em;
}
#mainContent .rules a, visited {
	color: #FFF;
	text-decoration: none;
}
#mainContent .rules a:hover {
	color: #FFF;
	text-decoration: underline;
}
#entryForm {
	font-size: 1.2em;
	line-height: 1.2em;
	font-weight: bold;
}






 #footer {
	padding: 0;
	margin: 0px;
	width: 600px;
	background-image: url(images/footerBG.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 32px;
}
 #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 1em; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #FFF;
	text-align: center;
}
#footer a, visited {
	color: #FFF;
	text-decoration: none;
}
#footer a:hover {
	color: #FFF;
	text-decoration: underline;
}
