/* TWO COLUMN LAYOUT */

html { 
margin: 0;
padding: 0;
border:2px groove  #63F;} 



body {
	text-align:center; /* IE6 needs this to center the layout in the browser window */
	
	}
#main_wrapper {
	 /* 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 */
	max-width:960px;
	min-width:720px;

}
#header {
	
	
	}
#nav {
	 /* this width + content width must total 100% */
	float:left; /* floats on nav and content divs make them sit side by side */
	width:140px;
	}
#content {
	 /* floats on nav and content divs make them sit side by side */
	 /* this width + nav width must total 100% */
	top:0px;
	margin-left:140px;	

	}
#footer {
	clear:both; /* makes the footer sit below whichever column is longest */
	}
#header_inner, #nav_inner, #content_inner, #promo_inner {
	overflow:hidden; /* clips oversize elements that would otherwise expand divs and break the layout */
	border:2px groove  #F0C;
	}
#header_inner { 
	padding:1em 2em; /* creates space between the box  and the content */
	border:2px groove  #099;
	}
#nav_inner {
	padding:1em .8em; /* creates space between the box and the content */
	border-right:3px solid #B33;
	border:2px groove  #660;
	}
#content_inner { 
	padding:0 1em 1em 1.5em; /* creates space between the box and the content */
	border:2px groove  #33F;
	}
#footer_inner {
	padding:.5em 1em; /* creates space between the box and the content */
	text-align:center;
	border:2px groove  #3F0;
	}