@charset "utf-8";
/* CSS Document */

body { 								/*Everything set to zero for a good cross-browser starting point*/
	margin: 0px;					/*Zero off the margins on the body*/
	padding: 0px;					/*Zero off padding on body ~ Some browsers use default padding requiring that it be zeroed*/
	border: 0px;					/*Zero off any existing */
	background-color: #000000;		/*Set Page Color*/
	color: #FFFFFF;					/*Set Text Color*/
	text-align: center;				/*Hack to center the wrapper in IE5.x on PCs*/
	font-family: Arial, Helvetica, sans-serif;	/*Set default font*/
	font-size:	100.01%;			/*Sets default font size ~ This value compensates for several browser bugs*/
	min-width:	770px;				/*Keeps the body from becoming more narrow than our wrapper div*/
}

h1 {
	margin: 0px 0px 10px 15px;
	padding: 0px;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 175%;
	color: #D50000;
}

h2 {
	margin: 0px 0px 5px 10px;
	padding: 0px;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 125%;
	color: #339900;
}

#wrapper {
	width: 772px;					/*Sets the width for IE5.x's broken box model*/
	w\idth: 770px;					/*Sets the width of the wrapper for compliant browsers*/
	margin: 5px auto;				/*First value applies to the top and bottom of the wrapper, second value centers the wrapper*/
	position:	relative;			/*Positions the wrapper "relatively"*/
	text-align:	left;				/*Realigns text to left after the IE hack in body section*/
}

#splash {
	width: 500px;
	height: 250px;
	margin: auto;
	margin-top: 150px;
}

#splash a {
	font-size: 150%;
	text-decoration: none;
	color: #FFFFFF;
}

#banner {
	width: 770px;
	height: 100px;
	background-image: url(banner.gif);
	background-repeat: no-repeat;
}

#navigation {
	width: 770px;
	height: 25px;
	margin: 5px 0px;
	border-top: solid 2px #339900;
	border-bottom: solid 2px #339900;
	text-align: center;
}

#navigation a {
	margin-top: 2px;
	color: #FFFFFF;
	text-decoration: none;
	margin-right: 25px;
	font-weight: bold;
	display: inline-block;
}

#content {
	width: 750px;
	min-height: 330px;
	padding: 10px;
}

#column1 {
	width: 350px;
	float: left;
}

#column1 p {
	margin: 0px 0px 10px 0px;
	padding: 0px;
}

#column2 {
	width: 350px;
	margin-left: 365px;
}

#column2 p {
	margin: 0px 0px 10px 0px;
	padding: 0px;
}

#mitem {
	width: 730px;
	margin-left: 10px;
	margin-bottom: 10px;
}

#legal {
	width: 770px;
	padding-top: 15px;
	text-align: center;
	font-size: 75%;
	border-top: solid 2px #339900;
}

#legal a {
	color: #FFFFFF;
}