/* CSS Document */

/* set page background to white and text to very dark gray
 * html is included because this is the root element for
 * pages served as application/xhtml+xml */
  html, body{
	color:#373737;
	font-family:Geneva, Arial, Helvetica, sans-serif;
	font-size: 1em;
	background-color: #ffffff;
	height: 100%;
	margin: 0px;
	padding: 0px;
  }

/* 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 {
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	max-width: 75%;
	padding-top: 10px;
	padding-bottom: 0px;
	min-width: 800px;
	position: relative;
	min-height: 100%;
  }
