/* TWO COLUMN LAYOUT */

body {
	text-align:center; /* IE6 needs this to center the layout in the browser window */
	background-color:#000;
	margin-left:auto;  /* centers layout in browser */
	margin-right:auto; /* centers layout in browser */
	width:750px;
	
	}
#container {
    width:749px; /* 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:center; /* resets the centering hack for IE6 on the body tag */
	margin-top:5em;
}
#main_wrapper {
	width:606px; /* 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 */
	border-color:#727C7E;
	border-style:solid;
	border-width:2px;
	text-align:center; /* resets the centering hack for IE6 on the body tag */
}
#header {
text-align:center;
margin:0, auto;
padding:0;
	}
#content {
	float:center; /* floats on nav and content divs make them sit side by side */
	width:100%; /* this width + nav width must total 100% */
	top:0px;
	margin-top:0;
	}
#footer {
	
	}
#header, header_inner, #nav_inner, #content_inner, #promo_inner {
	overflow:hidden; /* clips oversize elements that would otherwise expand divs and break the layout */
	}
#content_inner { 
	text-align:left;
	padding:0 1em 1em 1.5em; /* creates space between the box and the content */
	}
#footer_inner {
	padding:4em 0em .1em 0em; /* creates space between the box and the content */
	text-align:center;
	}
