@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-image: url(background.gif);
	background-repeat: repeat;
	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: 1004px;					/*Sets the width for IE5.x's broken box model*/
	w\idth: 1000px;					/*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*/
}

#header {
	width: 452px;
	height: 100px;
	float: left;
	background-image: url(header.gif);
	background-repeat: no-repeat;
	background-color: #C5A996;
}

#navigation {
	width: 533px;
	height: 100px;
	margin-left: 452px;
	background-color: #C5A996;
	text-align: right;
	padding-right: 15px;
}

#top_bar {
	width: 990px;
	height: 28px;
	margin-top: 5px;
	padding-top: 3px;
	padding-left: 5px;
	padding-right: 5px;
	text-align: right;
	background-color: #809bb0;
	border-top: 2px solid #000000;
	border-bottom: 2px solid #000000;
}

#body {
	width: 970px;
	min-height: 570px;
	margin-top: 5px;
	padding: 15px;
	background-color: #FFFFFF;
}

#divider {
	width: 1000px;
	height: 10px;
	margin-top: 5px;
	background-color: #809bb0;
	border-top: 2px solid #000000;
	border-bottom: 2px solid #000000;
}

#legal {
	width: 980px;
	background-color: #C5A996;
	margin-top: 5px;
	padding: 10px;
	text-align: center;
	font-size: 75%;
}

#preview {
	width: 392px;
	height: 290px;
}

#selectors {
	width: 900px;
}