@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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;
	background-image: url(../images/back2.gif);
	background-attachment: scroll;
}
a {
	color: #FFCC00;
}
#container {
	width: 800px;  /* this will create a container 80% of the browser width */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #000000;
}
#header {
	height: 29px;
}
#mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #000000;
	color: #FFFFFF;
	margin: 0;
}
#footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000000;
	color: #CCCCCC;
	width: 800px;  /* this will create a container 80% of the browser width */
	margin: 0 auto;
} 
#footer p {
	font-size: 85%;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
#footer a {
	color: #FFFF00;
}
.box {
	margin: 5px auto;
	padding: 5px;
	border: 1px solid #999999;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	color: #FFFF00;
	background-color: #161616;
	width: 600px;
	text-align: center;
}
fieldset {
	margin: 15px auto;
	padding: 5px;
	border: 1px solid #999999;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	color: #FFFF00;
	width: 645px;
	text-align: center;
}
legend {
	color: #FFFF00;
	background-color: #000066;
	text-align: center;
	border: 1px solid #999999;
	padding: 5px;
}