/* CSS Document */
html, body {height:100%}
body {
	padding:0;
	margin:0;
	text-align:center;
}
#container {
	background:pink url(leftcolbg.jpg) repeat-y left top;
	color: #000000;
	width:760px;
	margin:auto;
	border-left:1px solid #000;
	border-right:1px solid #000;
	text-align:left;
	position:relative;
	min-height:100%;
	height:100%;
	text-align:center;
}
html>body #container{height:auto;} /*for mozilla as IE treats height as min-height anyway*/

#outer{
	height:100%;
	min-height:100%;
	width:500px;
	margin:auto;
	background:#F8E7EC;
	border-left:1px solid #000;
	border-right:1px solid #000;
	color: #000000;
	text-align:left;
}
 
html>body #outer{height:auto;} /*for mozilla as IE treats height as min-height anyway*/

#header{
	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:130px;
	float:left;
	margin-left:-129px;/*must be 1px less than width otherwise won't push footer down */
	padding-top:72px;/*needed to make room for header*/
}
#left p {padding-left:3px;padding-right:2px}
#right p {padding-left:3px;padding-right:2px}

#right {
	position:relative;/*ie needs this to show float */
	width:130px;
	float:right;
	margin-right:-129px;/*must be 1px less than width otherwise won't push footer down */
	padding-top:72px;/*needed to make room for header*/
}

#footer {
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	clear:both;
	height:50px;
	border-top:1px solid #000;
	border-bottom:1px solid #000;
	background-color: #FF8080;
	color: #000000;
	text-align:center;
}
* 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:65px;}/*needed to make room for footer*/
div,p  {margin-top:0}/*clear top margin for mozilla*/
* html #centrecontent {height:1%;margin-bottom:12px}/* combat IE's 3 pixel jog */


