/* THREE COLUMN LAYOUT */

* {
	margin:0;
	padding:0;
	}
body {
	text-align:center;  /* IE6 needs this to center the layout in the browser window */
	}
#main_wrapper {
	width:895px; /* widths of columns will scale proportionately as this width is changed */
	margin-left:auto;  /* centers max'd layout in browser */
	margin-right:auto; /* centers max'd layout in browser */
	text-align:left; /* prevents page inheriting IE6 centering hack on body */
	padding:0;
	margin-top:0px;
	}	
#header {
	}
#leftCol {
	width:175px;
	margin:0;
	float:left;
	display:inline; /* fixes IE6 margin doubling bug */
	}
#content {
	width:550px;
	margin:0;
	float:left;
	}
#rightCol {
	width:170px;
	margin:0;
	float:left;
	background-image: url(../_images_pres/Swirl-Tree170px.jpg);
	background-position: center bottom;
	background-repeat: no-repeat;
	}
#footer {
	margin:0;
	clear:both;
	}
#leftCol_inner, #content_inner, #rightCol_inner {
	overflow:hidden; /* prevents oversize elements from breaking the layout */
	}
#leftCol_inner {
	padding:1em .5em;
	}
#content_inner {
	padding:0em 1em 1em 1.5em;
	}
#rightCol_inner {
	padding:1em .5em;
	}
#footer_inner {
	padding:.5em 1em;
	text-align:center;
	}

