/**********************************
*
*  banner/menu/content css styles
*
***********************************/
html {
	height: 100%;
	overflow: hidden;}
body{
	margin: 0;
	padding: 0;
	background-color: #375270;
	overflow: hidden;
	height: 100%;
	width: 100%;
	font-size: 20px;
}
/* ------------------- Links ---------------------- */
a {
	text-decoration: none;
	outline: 0; /* removes dotted border in FX */
	color: blue;
}
a:visited {
	text-decoration: none;
	color: blue;
}
a:active {
	visibility: visible; /* kills IE6 a:hover bug */
	text-decoration: underline;
	color: yellow;
}
a:focus, a:hover {
	visibility: visible; /* kills IE6 a:hover bug */
	text-decoration: underline;
	color: red;
}
#header {
	background-color: #375270; 
	color: blue; 
	position: absolute; 
	left: 0; 
	top: 0; 
	width: 100%; 
	height: 100px;
}
#left {
	background-color: #375270; 
	color: red; 
	position: absolute; 
	left: 0; 
	top: 50px; 
	width: 200px;
	margin-bottom: 100px;
	font-size: 32px;
	min-height: 100%;
}
#left2 {
	background-color: #375270; 
	color: red; 
	position: absolute; 
	left: 0; 
	top: 100px; 
	width: 200px;
	margin-bottom: 100px;
	font-size: 32px;
	min-height: 30%;
	height: 200px;
}
* html #logo { /* lte IE6 */
	position:relative;
	top: expression(eval(document.compatMode && document.compatMode=='CSS1Compat') ? documentElement.scrollTop +(documentElement.clientHeight-this.clientHeight-45) : document.body.scrollTop +(document.body.clientHeight-this.clientHeight)-45);
	left: -45px; 
	height: 100px;
	width: 200px;
}
html* #logo { /* IE7 */
	position:relative;
	top: expression(eval(document.compatMode && document.compatMode=='CSS1Compat') ? documentElement.scrollTop +(documentElement.clientHeight-this.clientHeight-45) : document.body.scrollTop +(document.body.clientHeight-this.clientHeight)-45);
	left: -45px; 
	height: 100px;
	width: 200px;
}
#logo {
	background-color: #375270;
	position: fixed; 
	left: -65px; 
	bottom: 0;
	height: 100px;
	width: auto;
}
#centrecontent {
	color: white; 
	background-color: #375270;
	margin:100px 0px 0px 200px;
	height: 100%;
	font-size: 20px;
}

