/* TWO COLUMN LAYOUT */

body {
	text-align:center; /* IE6 needs this to center the layout in the browser window */
	background-color: #F9E86E;
	}
#main_wrapper {
	width:1002px; /* widths of columns will change proportionately as this width is changed */
	margin-left:auto;  /* centers layout in browser */
	margin-right:auto; /* centers layout in browser */
	text-align:left; /* resets the centering hack for IE6 on the body tag */
}
#header {
	height: 123px;
	}
#nav {
	width:300px; /* this width + content width must total 100% */
	float:left;
	padding: 0px;
	}
#content {
	float:left; /* floats on nav and content divs make them sit side by side */
	width:600px; /* this width + nav width must total 100% */
	top:0px;
	padding: 0px;
	margin-left: 240px;
	margin-right: 0px;
	}
#footer {
	clear:both; /* makes the footer sit below whichever column is longest */
	}
#header_inner {
	}
#nav_inner {
	border-right:0px;
	background: #FFFFFF;
	border-top-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	}
#content_inner {
/*10; 0; 70; /* creates space between the box and the content */
	}
#footer_inner {
	padding:0; /* creates space between the box and the content */
	text-align:center;
	}
