/* 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 {
 	background: #FFF;
	color:#373737
	margin: 0;
	padding: 0;
	font-family:Arial, Helvetica, sans-serif;
	}
/* 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: 800px;
	margin: 0 auto;
	}
/* maincontent width is 1px smaller to account for left border */
#maincontent {
	width: auto;
	border-collapse:collapse;
	margin: 0;
	font-size:85%;
	}
/* set margins, padding, and line height for maincontent paragraphs */
#maincontent p {
  	margin: 10px 5px;
	text-align:justify;
	line-height:normal;
	}
/* set dimensions for level 1 and 2 headings in maincontent */
#maincontent h1, #maincontent h2 {
	margin: 0 5px 10px;
	padding: 15px 0 0;
	font-family:
	color: #396632;
	}
#maincontent h1 {
	font-size: 155%;
	}
#maincontent h2 {
	font-size: 135%;
	}
#maincontent ul {
	text-align:justify;
	}
#footer {
	background-color:#FFFF99;
	}
#footer p {
  	font-size:85%;
	}
