@charset "utf-8";
*{ margin:0}
html {
	height:100%;
}
html, body, div, p, table{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
}
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-color: #dadada;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	height: 100%;
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height: 100%;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background:url(../img/background.gif) repeat-y;
	padding-left:100px;
	padding-right:100px;
}
#containerContent{
	position:relative;
	top:0px;
	left:0px;
	height:100%;
	width:100%;
}
#mainHeader{
	float:left;
	width:100%;
	height:157px;
	border:0px solid red;
}
#mainLogo{
	float:right;
}
#subHeader{
	height:137px;
	font-weight:bold;
	font-style:italic;
	color:#aa44dd;
	vertical-align:middle;
}
#subHeader h1{
	padding-top:20px;
	font-size:40px;
}
#subHeader h2{
	font-size:25px;
}
#browseMenu{
	height:20px;
	font-weight:bold;
	font-style:oblique;
	color:#aa44dd;
	font-variant:small-caps;	
}
#mainMiddle{
	float:left;
	width:100%;
	height:auto;
	border:0px solid blue;
	margin-top:5px;
}
#mainFooter{
	float:left;
	width:100%;
	height:auto;
	border:0px solid green;
	font-size:10px;
	font-weight:bold;
	text-align:center;
	background-color:#aa44dd;
	margin-top:5px;
}
#mainMenu{
	float:left;
	width:200px;
	height:auto;
	vertical-align:middle;
}
#mainContent {
	float:left;
	width:570px;
	height:auto;
	padding-left:5px;
}