/* 3 col fluid layout CSS Document */
/* mac hide\*/
html, body {height:100%}
/* end hide*/
body {
	padding:0;
	margin:0;
	background:pink url(leftcolfluidbg.jpg) repeat-y left top;
	color: #000000;
}
#outer{
	height:100%;
	min-height:100%;
	margin-left:20%;
	margin-right:20%;
	background:#F8E7EC;
	border-left:1px solid #000;
	border-right:1px solid #000;
	color: #000000;
	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*/}
#header{/* header is position absolute but can come first in source by using a negative margin technique also*/
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:70px;
	background:#FF0000;
	border-top:1px solid #000;
	border-bottom:1px solid #000;
	overflow:hidden;
	color: #000000;
}
#left {
	position:relative;/*ie needs this to show float */
	width:32.5%;
	float:left;
	margin-left:-32.5%;/*must be same as width */
	margin-right:1px;/*makes element 1px smaller than width otherwise won't push footer down */
}

#left p {padding-left:0;padding-right:3px}
#right p {padding-left:7px;padding-right:2px}

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

#footer {
	width:100%;
	clear:both;
	height:50px;
	border-top:1px solid #000;
	border-bottom:1px solid #000;
	background-color: #FF8080;
	color: #000000;
	text-align:center;
	margin-top:-52px;/* drag footer back into page*/
	position:relative;
}
* html #footer {/*only ie gets this style*/
	\height:52px;/* for ie5 */
	he\ight:50px;/* for ie6 */
}
#clearheader{height:72px;}/*needed to make room for header*/
#clearfooter{clear:both;height:52px;}/*needed to make room for footer*/
div,p  {margin-top:0}/*clear top margin for mozilla*/
/* 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:-52px;} /*safari wrapper thanks to Tim Connor*/

