html, body {height:100%}
/* end hide */
body
{
	padding:0;
	margin:0;
	min-width:900px;/* for mozilla*/
	background-color: #ffffff;
}
#outer
{
	height:100%;
	min-height:100%;
	width:900px;
	border-left:0px solid #000;
	border-right:0px solid #000;
	color: #000000;
	text-align:left;
	position:relative;
	margin:auto;
	background-color: #ffffff;
	
}
 
html>body #outer{height:auto;} /*for mozilla as IE treats height as min-height anyway*/

#header
{
	position:absolute;
	top:0;
	left:0px;
	width:900px;
	height:100px;
	background:#ffffff;
	border:0px solid #000;
	color: #000000;
	z-index:100;
}
#left
{
	position:relative;/*ie needs this to show float */
	float:left;
	width:150px;
	padding-left:0px;
	padding-right:0px;
	padding-top:100px;/*needed to make room for header*/
	padding-bottom:20px;/* needed to make room for footer */
	background:#ffffff;
}
* html #left{
	width:150px;
}

#footer 
{
	width:900px;
	clear:both;
	height:20px;
	border-top:1px solid #ccc;
	border-bottom:0px solid #000;
	background-color: #ffffff;
	left:0;
	bottom:0;
	position: absolute;
}
* html #footer 
{/*only ie gets this style*/
	\height:20px;/* for ie5 */
	he\ight:20px;/* for ie6 */
}
div,p  {margin-top:0}/*clear top margin for mozilla*/
#centrecontent
 {
	width:750px;
	float:right;
	background-color:#fff;
	padding-top:100px;
	padding-bottom:20px;/* needed to make room for footer */
}


#clearfooter {width:100%;height:20px;clear:both} /* to clear footer */
