/* TWO COLUMN LAYOUT */


body {
	text-align:center; /* IE6 needs this to center the layout in the browser window */
	}
#main_wrapper {
	max-width:980px; /* sets max layout width */
	min-width:720px; /* sets min layout width */
	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 {}
#nav {
	width:160px; /* the content margin must match this value */
	float:left; /* floats on nav and content divs make them sit side by side */
	}
#content {
	margin-left:160px; /* margin = width of nav column */
	margin-top: 25px;
	}
#footer {
	clear:both; /* makes the footer sit below whichever column is longest */
	background:#DDC; /* TEMP - REMOVE OR RESTYLE  */
	}
#header_inner, #nav_inner, promo_inner { 
/* #header_inner, #nav_inner, #promo_inner { */
	overflow:hidden; /* clips oversize elements that would otherwise expand divs and break the layout */
	}
#header_inner {	}
#nav_inner {
	padding:1em .5em; /* creates space between the box and the content */
	}
#content_inner { 
  height: 700px;  
  padding-left: 5px; /* creates space between the box and the content */
	}
#footer_inner {
	padding:.5em 1em; /* creates space between the box and the content */
	text-align:center;
	}