﻿/* mac hide\*/
html, body {height:100%}
/* end hide */
body { /* outer body of the page */
	padding:0;
	min-width:996px;/* 994 really but need to add 2 pixels for firefox ie. 1px left + 1px right border*/
	text-align:left; 
	font-size:small;
	font-family: Tahoma, Arial, Helvetica, sans-serif; 
}
#outer{ /* primary boxed area within the body of the page*/
	width:994px; /* main width (insider page border) */
	margin:auto;
	position:relative; /* center horiztonally*/
	top:0px;
}
 
html>body #outer{height:auto;} /*for mozilla as IE treats height as min-height anyway*/

#header {
	position:absolute;
	top:0;
	left:0px;
	width:994px;
	height:150px;
	overflow:hidden;
	color: white;
	z-index:100;
	background-color: Blue;
}

#footer {
	width:994px;
	clear:both;
	height:50px;
	background-color:green;
	text-align:center;
	color:white;
	/*left:0;
	bottom:0;
	position: absolute;
*/
}

#footer a, #footer a:hover
{
    color:white;
}

html #footer {/*only ie gets this style*/
	\height:52px;/* for ie5 */
	he\ight:52px;/* for ie6 */
}

#innerwrap {/* enables content first */
	float:left;
	width:814px;  /* width=left+centre divs */
}

#centrecontent {
	width:594px;
	padding-left:20px;
	padding-right:20px;
	float:right;
	padding-top:150px;
	padding-bottom:50px;/* needed to make room for footer */
}


#ctl00_left 
{
	padding-left:0px;
	padding-right:0px;
	position:relative;/*ie needs this to show float */
	width:180px;
	float:left;
	padding-top:150px;/*needed to make room for header*/
	padding-bottom:50px;/* needed to make room for footer */
}

#ctl00_right {
	position:relative;/*ie needs this to show float */
	width:180px;
	float:right;
	padding-left:0px;
	padding-right:0px;
	padding-top:150px; /*needed to make room for header*/
	padding-bottom:50px;/* needed to make room for footer */
}


