﻿/* ONE COLUMN LAYOUT */

body {
	text-align:center; /* IE6 needs this to center the layout in the browser window */
	}
	
#main-wrapper {
	width:960px; /* widths of columns will change proportionately as this width is changed */
	margin-top:20px;
	margin-bottom:20px;
	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 */
	background-image:url('../images/gradient.png');
}

 #header {
	overflow: hidden;
} 
	
	
#content-main {
	top:0px;	
	}
	
#footer {
	clear:both; /* makes the footer sit below whichever column is longest */
	}
	
	
#header-inner,  #content-main-inner{
	overflow:hidden; /* clips oversize elements that would otherwise expand divs and break the layout */
	}
	
#header-inner {
	padding: 10px; /* creates space between the box  and the content */
}
	
#content-main-inner { 
	padding:10px; /* creates space between the box and the content */
	}
	
#content-left{
	width:410px;
}


#content-right{
	margin-left:440px;
	width:410px
}

	
	
#footer-inner {
	padding: 5px;
/* creates space between the box and the content */text-align: center;
	overflow: hidden;
}
	
	
