@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: #412a16;		/*Set Page Color*/
	color: #FFFFFF;					/*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*/
}

a {
	color: #990000;
}

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

#background {
	width: 770px;
	float: left;
	background-image: url(background.gif);
	background-repeat: repeat-y;
}

#header {
	width: 770px;
	height: 150px;
	background-image: url(header.gif);
	background-repeat: no-repeat;
	margin-bottom: 25px;
	padding-bottom: 10px;
	border-bottom: #660000 2px solid;
}

#navigation {
	width: 150px;
	padding: 15px 0px;
	float: left;
	margin-left: 15px;
	background-image: url(bbackground.gif);
}

#navigation img {
	border: 0px;
}

#body {
	width: 545px;
	min-height: 350px;
	margin-left: 180px;
	background-image: url(bbackground.gif);
	background-repeat: repeat;
	padding: 15px;
}

#legal {
	width: 770px;
	height: 75px;
	margin-top: 15px;
	padding-top: 15px;
	float: left;
	border-top: #660000 2px solid;
	text-align: center;
	font-size: 75%;
}

#legal a {
	color: #ffffff;
	text-decoration: none;
}