/* 3 col fluid layout CSS Document */
/* mac hide\*/
html, body {height:100%;
}
/* end hide*/
#maincontainer {
	width:770px;
	margin-left:auto;
	margin-right:auto;
	height:100%;
}
#outer{
	height:100%;
	min-height:100%;
	margin-left:200px;
	margin-right:0;
	position:relative;
}
 
html>body #outer{height:auto;} /*for mozilla as IE treats height as min-height anyway*/
#inner{width:100%;/*needed to fix ies bad handling of widths with percentages*/}

#left {
	position:relative;/*ie needs this to show float */
	width:200px;
	float:left;
	margin-left:-200px;/*must be same as width */
	margin-right:0px;/*makes element 1px smaller than width otherwise won't push footer down */
}

#footer {
	width:100%;
	clear:both;
	height:50px;
	position:relative;
}
* html #footer {/*only ie gets this style*/
	\height:52px;/* for ie5 */
	he\ight:50px;/* for ie6 */
}
#bottomIcons {
	clear:both;
	height:40px;
	position:relative;
	margin-top:-92px;/* drag footer back into page*/
	width:200px;
}
#clearfooter{clear:both;height:92px;}/*needed to make room for footer*/
/* mac hide\*/
* html #centrecontent {height:1%;}/* combat IE's 3 pixel jog */
/* end hide*/
html >body #minHeight{float:left;width:0px;height:100%;margin-bottom:-92px;} /*safari wrapper thanks to Tim Connor*/


