/* CSS Document */

* { target-new: tab }

/* 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;
	font-size:100%;
	}
/* 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;
	}
#wrapper1 {
	width:980px;
	margin: 0 auto;
	}
#popupwrapper {
	width:400px;
	margin:0 auto;
	}
/* set 5px top margin for titlebar, other margins set to zero */
#titlebar {
	width:100%;
	margin: 5px 0 0;
	vertical-align:middle;	
	background-color:#FFFFFF;
	}
#navtop {
	width:100%;
  	font-family:Arial, Helvetica, sans-serif;
  	font-size:75%;
}
/* maincontent width is 1px smaller to account for left border */
#maincontent {
	width:100%;
	margin: 0;
	}
/* set margins, padding, and line height for maincontent paragraphs */
#maincontent p {
  	margin: 10px 5px;
	text-align:justify;
	line-height:normal;
	font-size:85%;
	}
#maincontent blockquote {
	font-size:98%;
	}
/* set dimensions for level 1 and 2 headings in maincontent */
#maincontent h1, #maincontent h2 {
	margin: 0 5px 10px;
	padding: 10px 0 0;
	font-family:
	color: #396632;
	}
#maincontent h1 {
	font-size: 155%;
	}
#maincontent h2 {
	font-size: 135%;
	}
#maincontent h3, h4 {
	margin: 0 5px;
	}
#maincontent ul, ol {
	font-size:85%;
	text-align:justify;
	}
#footer p {
  	font-size:85%;
	}

