@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: #FFFFFF;		/*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*/
	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"*/
	background-color: #FFFFFF;		/*Sets the wrapper's background color*/
	text-align:	left;				/*Realigns text to left after the IE hack in body section*/
}

#header {
	width: 770px;
	height: 110px;
	padding-bottom: 15px;
	background-image: url(header.gif);
	background-repeat: no-repeat;
	border-bottom: #CC0000 1px solid;
}

#navigation {
	width: 150px;
	float: left;
	padding-top: 25px;
}

#navigation ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

#navigation li {
	margin: 0;
	padding: 0;
	color: #000000;
}

#navigation a {
	height: 28px;
	display: block;
	color: #000000;
	text-decoration: none;
	padding: 0 13px;
	line-height: 1.7;
	border-bottom: #000000 1px solid;
}

#navigation a:hover {
	color: #FFFFFF;
	background-color: #CC0000;
}

#content {
	width: 585px;
	min-height: 350px;
	padding: 15px;
	margin-left: 155px;
	font-size: 90%;
}

#legal {
	width: 770px;
	min-height: 50px;
	padding-top: 15px;
	border-top: #CC0000 1px solid;
	font-size: 75%;
	text-align: center;
}

#legal a {
	color: #CC0000;
}