/*CSS for 2 column layout - to be used in conjunction with common.css*/
/* left column is a fixed 160px width and container will ensure onsistent color to bottom*/
/* differences are only those that remove the right rail - used for 3 column - see three_column.css*/
body{
	margin:0 0 0 100px;
	padding:0 10px 0 90px ;
	font-family: Arial, Helvetica, sans-serif;
	background-color:#112c4d
}
#container{ 
	background-color:#fff;
	float:left;
	width:100%;	
	border-left:180px solid #d7d7d7; /* The width and color of the left rail */
					  		/*should agree in color with leftRail*/
	margin-left:-180px;
	display:inline; /* So IE plays nice */
}
#center{
	float:left;
	width:100%;
}



