@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: #4C0001;		/*Set Page Color*/
	color: #000000;					/*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*/
}

#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*/
	height: 770px;
	margin: 15px 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*/
}

#background {
	width: 770px;
	height: 770px;
	background-image: url(back.png);
	background-repeat: no-repeat;
	z-index: 0;
}

#header {
	width: 770px;
	height: 120px;
	margin-top: 325px;
	position: absolute;
	top: 0px;
	z-index: 1;
	background-image: url(header.gif);
	background-repeat: no-repeat;
}

#media {
	width: 200px;
	height: 20px;
	position: absolute;
	top: 15px;
	left: 555px;
	z-index: 1;
}

#legal {
	width: 770px;
	height: 50px;
	margin-top: 15px;
	font-size: 80%;
	text-align: center;
}