@charset "utf-8";
/* CSS Document */

/* set page background to blcak and text to very white
 * html is included because this is the root element for
 * pages served as application/xhtml+xml */
html, body {
	color:#333333;
	margin: 0;
	padding: 0;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
	line-height: 14px;
	background-color: #FFFFFF;
  }
a:link, a:visited, a:active {
	color: #333333;
	text-decoration: none;
	font-weight: normal;
}
a:hover {
	color: #999999;
	text-decoration:underline;
}
/* set width of wrapper to same width as title image
 * no top or bottom margin
 * auto on both sides will center wrapper in modern browsers */
#wrapper {
	width: 900px;
	margin: 0 auto;
	position: relative;
}
#header {
	position: absolute;
	height: 200px;
	width: 900px;
	top: 20px;
	left: 0px;
}
#mainContent {
	position: absolute;
	height: auto;
	width: 900px;
	top: 220px;
	left: 0px;
}
