/*  layout for 3 column with header and footer */


body{
	margin:0 100px;
	padding:0 100px 0 100px;
	background-color: #f9ffcc;
}
#container{
	background-color:#f9ffcc;
	float:left;
	width:100%;	
	border-left:200px solid #f9ffcc; /* The width and color of the left rail */
	border-right:200px solid #f9ffcc; /* The width and color of the right rail */
	margin-left:-200px;
	margin-right:-200px;
	display:inline; /* So IE plays nice */
}
#leftRail{
	float:left;
	width:205px;
	margin-left:-205px;
	position:relative;
}
#center{
	float:left;
	width:100%;
	margin-right:-100%;
}
#rightRail{
	float:right;
	width:200px;
	margin-right:-200px;
	position:relative;
}
#header, #footer{
	background-color:#f9ffcc;
	margin-left:-200px;
	margin-right:-200px;
	clear:both;
}
