/* CSS Document */



body {
	margin:20px 10%;
	padding:0 ;
	background:#333333;;
	
}
#container {
	background:#800000;
	border:1px solid #000;
}
#header {
	background:#B70000;
	height:120px;
	text-align:left;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000000;
}
#left {
	margin-left:-169px;/* must be 1 pixel less than width*/
	float:left;
	width:170px;/* must be same as left margin on #middle*/
	position:relative;
	left:-2px;/* line up exactly */
	display:inline;/* ie fix*/
	background-color:#B70000;
}
#right {
	margin-right:-169px;/* must be 1 pixel less than width*/
	float:right;
	width:170px;/* must be same as right margin on #middle*/
	position:relative;
	right:-2px;/* line up */
	display:inline;/* ie fix*/
	background-color:#800000;
}
* html #left{margin-right:-3px;}/* 3 pixel jog*/
* html #right{margin-left:-3px;}/* 3 pixel jog*/

#middle {
	border-left:1px solid red;
	background:#FFFFFF;
	margin-left:170px;
	margin-right:170px;
}
/* mac hide and combat ie's 3 pixel jog \*/
* html #centre{overflow:hidden;float:left;width:100%;}
* html #middle {height:1%;}
/* end hide*/
#footer {
	clear:both;
	border-top:1px solid black;
	height:50px;
	background:black;
	text-align:center;
}
h1,h3,p {margin-top:0}
img{float:right;}
.clearer{
	height:1px;
	overflow:hidden;	
	margin-top:-1px;
	clear:both;
}
