/* TWO COLUMN LAYOUT */

#main_wrapper {
	max-width:1000px; /* sets max layout width */
	min-width:1000px; /* sets min layout width */
	margin-left:0;
	text-align:left; /* resets the centering hack for IE6 on the body tag */
	}
#header {
	}
#sidebar {
        margin-top:10px;
	width:190px; /* the content margin must match this value */
	float:left; /* floats on sidebar and content divs make them sit side by side */
	}
#content {
        margin-top:10px;
	margin-left:190px; /* margin = width of sidebar column */
	}
#footer {
	clear:both; /* makes the footer sit below whichever column is longest */
	}
#header_inner, #sidebar_inner, #content_inner, #promo_inner {
	overflow:hidden; /* clips oversize elements that would otherwise expand divs and break the layout */
	}
#header_inner { 
	}

#sidebar_inner {
	padding:1em .5em; /* creates space between the box and the content */
	}
#content_inner { 
	/* padding:0em 1em 1em 1.5em; *//* creates space between the box and the content */
	padding:0px 5px 5px 10px;  /* creates space between the box and the content */
	}
#footer_inner {
	padding:.5em 1em; /* creates space between the box and the content */
	text-align:center;
	}
