/* CSS Document */
html {
	margin: 0px;
	padding: 0px;
	height: 100%;
	min-height:100%;
}
body {
	min-width: 995px;
	margin: 0px;
	padding: 0px;
	height: 100%;
	min-height:100%;
}
#container{
	height:100%;
	min-height:100%;
	width:995px;
	text-align:left;
	margin:auto;
	position:relative;
}
html>body #container {
	height:auto;
	} /*for mozilla as IE treats height as min-height anyway*/
#main {/* enables content first */
	height:100%;
	min-height:100%;
	float:left;
	width:100%;
}
#header {
	position: relative;
	height: 170px;
	margin: 0px;
	padding: 0px;
	width: 100%;
}
#leftCol {
	position:relative;/*ie needs this to show float */
	width:209px;
	float:left;
	padding-top: 0px;
}
#midCol {
	width:607px;
	float:left;
	position: relative;
}
#rightCol {
	position:relative;/*ie needs this to show float */
	width:179px;
	top: 0px;
	right: 0px;
	float: right;
}
#clearfooter {
	width:100%;
	height:120px;
	clear:both;
	} /* to clear footer */
#footer {
	width:995px;
	clear:both;
	height:85px;
	text-align:center;
	left:0;
	bottom:0;
	position: absolute;
	padding-top: 4px;
	margin-bottom: -1px;
}
