@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: 10px 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: 100px;
	background-image: url(header.gif);
	background-repeat: no-repeat;
}

#nav {
	margin: 10px 0px;
	padding: 0;
	background: #003399;
	list-style-type: none;
	width: 769px;
	height: 40px;
	float: left; /* Contain floated list items */
}

#nav ul {
	margin: 0px;
	padding: 0px;
}

#nav li {
	margin: 0;
	padding: 0;
	float: left;
	list-style-type: none;
}
#nav a {
	float: left;
	width: 127px;
	color: #FFF;
	text-decoration: none;
	line-height: 2.5;
	text-align: center;
	border-right: 1px solid #FFF;
}

#nav a:hover {
	background-color: #cc0000;
}

#content {
	width: 770px;
	min-height: 400px;
	margin-top: 65px;
}

#content p {
	margin: 10px 10px;
}

#legal {
	width: 770px;
	margin-top: 15px;
	padding-top: 15px;
	border-top: 3px solid #000000;
	font-size: 75%;
	text-align: center;
}