/* CSS Document */
body{ margin: 0 auto; text-align:left; font-family:Verdana, Arial, Helvetica, sans-serif; background-color: #1c140a; background-image: none; background-repeat: repeat; background-attachment: scroll; }

div#centered_div{
	position: absolute;
	width:950px;
	height:704px;
	/*vertically center div*/
	top:50%;
	/*horizontally center div*/
	left:50%;
	/*margin-left is centered_div width divided by 2*/
	margin-left:-475px;
	/*margin-top is centered_div height divided by 2*/
	margin-top:-352px;
	z-index: 1;
	/*fpo border*/
	border: solid 0px #FFF;
}

div#left { 
	width:475px; 
	float:left;
}

div#right {
	width:475px;
	float:left;	
}

div#leftBg { 
	position:absolute; 
	width:50%; 
	height:100%; 
	background-color:#1c140a; }

div#rightBg {
	position:absolute;
	width:50%;
	height:100%;
	left:50%;
	background-color:#000000;
}

