@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: #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*/
}

img {
	margin: 0px;
	padding: 0px;
	border: 0px;
}

#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"*/
	text-align:	left;				/*Realigns text to left after the IE hack in body section*/
}

#left {
	width: 620px;
	float: left;
}

#right {
	width: 150px;
	padding-top: 10px;
	margin-left: 620px;
}

#right img {
	margin-bottom: 5px;
}

#header {
	width: 620px;
	height: 80px;
	background-image: url(header.gif);
	background-repeat: no-repeat;
}

#navigation {
	width: 620px;
	height: 22px;
	text-align: center;
}

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

#content {
	width: 580px;
	height: 520px;
	padding: 10px;
	margin: 13px 10px;
	background-color: #cfcca1;
}

#content h1 {
	margin: 0px;
	font-size: 110%;
}