/* 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:840px; /* 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 {

	}
#content {
	width:640px; /* the content margin must match this value */
	float:left; /* floats on nav and content divs make them sit side by side */
	}
#nav {
	margin-left:640px; /* margin = width of nav column */
	border-left-width: 8px;
	border-left-style: solid;
	border-left-color: #FFCC01;
	}
#footer {
	clear:both; /* makes the footer sit below whichever column is longest */
	}
#nav_inner, #content_inner{
overflow:hidden; /* Take out #header_inner when using drop down menu; This command clips oversize elements that would otherwise expand divs and break the layout */
	}
#header_inner { 
	padding:1em 2em; /* creates space between the box and the content */
	}
	
#content_inner {
	padding:1em .5em; /* creates space between the box and the content */
	
	}
#nav_inner { 
	 /* creates space between the box and the content */
	padding:2em 1em 1em 1.5em; 
	}
#footer_inner {
	padding: .5em; /* creates space between the box and the content */
	text-align:center;
	}

#header_logo {
	float: left;
	height: 175px;
	width: 175px;
    }
#nav_inner ul {
	text-align: left;
	font-size: .875em;
}
