@charset "UTF-8";
/* CSS Document */



/* --------------------------------------------- */
/* Fauxless 2-column Layout. Needs fixes for IE6.
/*

	<div id="mainContainer">
	
		<div class="column1">
		<div class="column2">
		
			<div id="content1">
				Main Content
			</div>
			
				
			<div id="content2">
				Right Menu Bar
			</div>
		
		</div></div>
		
		<div id="bottom">
			<div id="bottom1"></div>
			<div id="bottom2"></div>
		</div>
		
	</div>	
/* --------------------------------------------- */

div#mainContainer {	background: white;
					width: 85%;
					margin: auto; }
					
div.column1 { background: green; overflow: hidden;}

div.column2 { background: #8fc1c5 url(../images/background/rcolBG.gif) 0px 0px repeat-x;
			  width: 30%;
			  float: right; }
			  
div#content1 { 	border: 0px solid #0F0;
				float: left;
				margin-left: -233%;
				width: 233%;}

div#content2 { 	float: left;
				border: 0px solid #CC0;
				width: 100%; }
				
div#bottom {	width: 100%;
				margin: auto; }
				
div#bottom1 {	background:#090;
				float: left;
				width: 70%;
				height: 35px; }

div#bottom2 {	
				float: right;
				width: 30%;
				height: 35px; }



