/* TWO COLUMN LAYOUT */
 
body {
                text-align:center; /* IE6 needs this to center the layout in the browser window */
                }
#main_wrapper {
                max-width:960px; /* 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 */
                border: 1px solid black;
                }

#header {	height:165px;	
		}


#nav {
                width:338px; /* this width + content width must total 100% */
                text-align:left;
                float:left; /* floats on nav and content divs make them sit side by side */            
                }
#content {
                margin-left:340px;
                /* default auto width */
                }
#footer {
                clear:both; /* makes the footer sit below whichever column is longest */
                }
#header_inner, #menu, #nav_inner, #content_inner, #promo_inner {
                }
#header_inner {
                padding:0em 0em 0.5em 0em; /* creates space between the box and the content */
		background-color:#CCC;
                }
#nav_inner {
                padding:1em 0.5em; /* creates space between the box and the content */
                }
#content_inner {
                padding:1em 4em 1em 1em; /* creates space between the box and the content */
                }
#footer_inner {
                padding:.5em 1em; /* creates space between the box and the content */
                text-align:left;
                background-color:#b1cdd0;
                }