/* 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: #ffeb16;		/*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: 3px 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: #CCCCCC;		/*Sets the wrapper's background color*/
	text-align:	left;				/*Realigns text to left after the IE hack in body section*/
}
#header {
	width: 770px;
	height: 150px;
}
#content {
	width: 720px;
	min-height: 330px;
	background-color: #FFFFFF;
	margin: 0px 15px;
	padding: 10px;
	border: 1px solid #ffeb16;
}
#content h1 {
	font-size: 110%;
}
#legal {
	width: 770px;
	margin-top: 15px;
	padding-top: 15px;
	padding-bottom: 5px;
	border-top: 1px solid #000000;
	font-size: 75%;
	text-align: center;
}

