/* CSS Document */
/* I'm a novice, heavily indebted to Jeffrey Zeldman (Jeffrey Zeldman Presents), Dave Shea (CSS Zen Garden), and John Whittet (CSS Zen Garden). */

/* Fix a Mozilla Bug from Zeldman */

html	{
	min-width: 690px;
	}

/* Helpers and base rules from Zeldman */

p.access	{
	display: none;
	}

/* Basic elements */

body	{
	margin: 0;
	padding: 0;
	border: 0;
	color: #555;
	text-align: center;
	background: #ccb url(images/wrap.gif) top center repeat-y;
    }

img  {
  border: 0;
  }
  
/* Typography */

p	{
	font-family: Verdana, sans-serif;
	font-size: 13px;
	line-height: 1.5em;
	margin: 0 1em 1em 1em;
	padding: 0 0 0 1em;
	text-indent: 0;
	}
	
p.pullquote	{
	font-family: Verdana, sans-serif;
	font-style: italic;
	color: #666;
	font-size: 13px;
	line-height: 1.3em;
	text-align: center;
	width: 200px;
	float: right;
	border:  thin solid #687699;
	padding: 5px;
	}
	
blockquote	{
	font-family: Georgia, "New Century Schoolbook", Times, serif;
	font-style: normal;
	color: #333;
	font-size: 13px;
	line-height: 1.3em;
	text-align: left;
	margin: 0 2em 1em 2.5em;
	padding: 3px 3px 0 0;
	border-left: 1px #ccb solid;
	border-right: 1px #ccb solid;
	}
	
p.blockquote	{
	font-family: Georgia, "New Century Schoolbook", Times, serif;
	bottom-margin: 3px;
	}

span.leader	{
	font: bold 15px Verdana, sans-serif;
	color: #923408;
	text-transform: none;
	}
	
span.bold	{
	font-weight: bold;
	}
	
span.italic	{
	font-style: italic
	}

h1	{
	margin-top: 0;
	margin-bottom: 0;
	padding: 0 0 0 10px;
	font-family: "Courier New", Courier, mono;
	font-weight: bolder;
	font-size: 30px;
	text-align: center;
	color: #993300;
	background: transparent;
	}

h2	{
	margin: 0;
	margin-top: 0;
	margin-bottom: 5px;
	line-height: 1.5em;
	padding: 0 0 0 10px;
	font-family: Verdana, sans-serif; 
	font-weight: normal;
	font-size: 20px;
	color: #985;
	background: transparent;
	}
	
h3	{
	margin: 0;
	line-height: 1.2em;
	padding: 0 0 0 10px;
	font-family: Georgia, "New Century Schoolbook", Times, serif;
	font-weight: normal;
	font-size: 20px;
	color: #687699;
	background: transparent;
	}
	
h4	{
	font-family: Verdana, sans-serif;
	font-weight: normal;
	font-size: 14px; 
	text-transform: uppercase;
	color: #666;
	margin: 15px 0 0 0;
	padding: 0 0 0 10px;
	}
		
a:link	{
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	color: #BE5028;
	background-color: transparent;
	}
		
a:visited	{
		font-weight: noraml;
		text-decoration: none;
		color: #048;
		background-color: transparent;
		}
		
a:hover	{
		font-weight: normal;
		text-decoration: none;
		color: #666;
		background-color: #cce;
		}
		
a:active	{
		font-weight: bold;
		text-decoration: none;
		color: #666;
		background-color: #cce;
		}

#footer p	{
	font: lighter 11px verdana;
	text-align: center;
	}
		
/* Wrapper */

#wrapper  {
	margin: 0 auto;
	padding: 0;
	border: 0;
	width: 690px;
	text-align: left;
	}

/* Page body divisions */

#main	{
	margin: 0 auto;
	/* False margin value for all versions of IE Win, including 6.0 */
	margin-left: 1px;
	padding: 0 ;
	border: 0;
	width: 690px;
	text-align: left;
	background: transparent; 	/* compensates for IE Win bungling */
	min-height: 800px;
	}
	
html>body #main {
	/* Correct values for browsers that don't suffer from IE Win's bugs */
	margin-left: 0;
	}

#sidebar	{
	float: left;
	position: relative;
	margin: 0 auto;
	/* False margin value for all versions of IE Win, including 6.0 */
	margin-left: 0;
	padding: 0;
	width: 275px;
	border: 0;
	background: transparent; 	/* compensates for IE Win */
	}
	
/* Hide from IE5-mac. Only IE-win sees this. \*/
	
* html #sidebar	{
margin: 0 -3px 0 0;
}

/* End hide from IE5/mac */

html>body #sidebar	{
	/* Correct value for browsers that don't suffer from IE Win's bugs */
	margin-left: 0;
	}

#sidebar img	{
	margin: 0;
	}
	


#search	{
	font: normal 11px verdana;
	margin: 10px 0 0 10px;
	padding: 0;
	width: 255px;
	background: transparent;
	}
	
#nav	{
	behavior: url(csshover.htc);
	font: normal 11px verdana;
	margin: 10px 0 0 10px;
	padding: 0;
	width: 255px;
	text-align: left;
	}

/* Navigation code from Nick Rigby, A List Apart, no. 184 */

#nav ul {
	margin: 0 0 15px 0;
	padding: 0;
	list-style: none;
	width: 150px; /* Width of Menu Items */
	background: #fff;
	border-bottom: 1px solid #687699;
	}

#nav ul li {
	position: relative;
	}
	
#nav li ul {
	position: absolute;
	left: 149px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

#nav ul li a {
	display: block;
	text-decoration: none;
	color: #BE5028;
	background: #fff; /* IE6 Bug */
	padding: 5px;
	border: 1px solid #687699;
	border-bottom: 0;
	}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

#nav ul li a:hover { color: #666; font-weight: bold; background: #cce; } /* Hover Styles */
		
#nav li ul li a { padding: 2px 5px; } /* Sub Menu Styles */
		
#nav li:hover ul, li.over ul { display: block; } /* The magic */

/* Staff listing */

#staff	{
	font: normal 11px verdana;
	margin: 10px 0 0 10px;
	padding: 0;
	width: 245px;
	background: transparent;
	}

#staff ul	{
	margin: 0;
	padding-left: 0;
	}
	
#staff ul li	{
	list-style: disc url(images/bullet.gif) inside;	
	width: 200px;
	margin: 0 0 .5em 0;
	}
	
#masthead	{position: relative;	
	width: 415px;
	padding: 0;
	border: 0;
	margin: 0 0 0 275px;
	background: transparent; 	/* compensates for IE Win */
	}

/* Hide from IE5-mac. Only IE-win sees this. \*/
	
* html #masthead {
margin: 0 -3px 0 -3px;
}

/* End hide from IE5/mac */

#masthead img	{
	margin: 0;
	}

#content	{
	position: relative;	
	width: 415px;
	padding: 0;
	border: 0;
	margin: 0 0 0 275px;
	background: transparent; 	/* compensates for IE Win */
	}

#content img	{
	float: right;
	margin: 0;
	}

/* Hide from IE5-mac. Only IE-win sees this. \*/
	
* html #content {
	margin: 0 -3px 0 -3px;
	}

/* End hide from IE5/mac */

#content dl	{
	margin-top: 0;
	margin-bottom: 10px;
	}

#content dd, #content dt {
	font-family: Verdana, sans-serif;
	font-size: 13px;
	line-height: 1.5em;
	margin-left: 1.5em;
	margin-right: 1em;
	padding-left: 0;
	margin-bottom: 3px;
	}

body #content dt	{
	font-family: Georgia, "New Century Schoolbook", Times, serif;
	font-weight: normal;
	font-size: 20px;
	color: #687699;
	margin: 0;
	margin-top: 0;
	margin-right: 1.5em;
	padding: 0 0 0 10px;
	background: transparent;
	}

#content dl ol	{
	list-style-type: decimal;
	font-family: Verdana, sans-serif;
	font-size: 13px;
	line-height: 1.5em;
	margin-left: 2em;
	margin-right: 1em;
	padding-left: 0;
	margin-bottom: 3px;
	}

#content dl ol li	{
	list-style-type: decimal;
	font-family: Verdana, sans-serif;
	font-size: 13px;
	line-height: 1.5em;
	margin-left: 1em;
	margin-right: 1em;
	padding-left: 0;
	margin-bottom: 3px;
	}

#content dd a:link, #content dd a:visited {
	font-weight : normal; 
	}

#links dl dt	{
	font-family: Verdana, sans-serif;
	font-weight: normal;
	font-size: 13px;
	color: #687699;
	margin: 0 10px 0 10px;
	padding: 0;
	background: transparent;
	}

#links dd	{
	font-family: Verdana, sans-serif;
	font-size: 10px;
	line-height: 1em;
	margin: 0 10px 3px 10px;
	padding: 0 0 0 10px;
	}	

/* Footer */

#footer	{
	font: lighter 11px verdana;
	clear: both;
	border-top: 1px solid gray;
	padding: 10px 0 20px 0;
	margin: 0 auto;
/* False margin value for all versions of IE Win, including 6.0 */
	margin-left: 1px;
	width: 690px;
	background-image:  url(images/contrast.gif);
	background-position: bottom left;
	background-repeat: repeat-x;
	}
	
html>body #footer {
	/* Correct value for browsers that don't suffer from IE Win's bugs */
	margin-left: 0;
	}
.accent {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.85em;
	color: #985;
}

