/* Page layout adapted from the following CSS box models:
   http://www.thenoodleincident.com/tutorials/box_lesson/basic3_touch.html
   http://www.thenoodleincident.com/tutorials/box_lesson/basic4_touch.html 
*/

/* This selector syntax is needed for the footer hack: see below */
html, body {
	height: 100%;
}

body {
	font-family: verdana, sans-serif;
	font-size: 12px;
	color: #000000;
	margin: 0;
	padding: 0;
	background: #bababa url('./images/style-bodybg.gif') left top repeat-x;
}

h1 {
	font-family: "Book Antiqua", "Garamond", "Times New Roman", serif;
	font-size: 20px;
	font-weight: normal;
	color: #575757;
	margin: 0;
	padding: 5px 0 12px 0;
}

h2 {
	font-family: "Times New Roman", "Times", "Book Antiqua", "Garamond", serif;
	color: #3360ab;
	background-color: #d9e0ec;
	display: block;
	font-size: 20px;
	font-weight: normal;
	margin: 0 0 5px 0;
	padding: 3px;
	text-align: center;
}

h3 {
	/*font-family: "Times New Roman", "Times", "Book Antiqua", "Garamond", serif;
	font-weight: bold; */
	font-size: 15px;
	color: #666666;
}

#wrapper {
	position: relative;
	margin: 0 auto;
	padding: 0 8px 1px 8px;
	background: url('./images/style-wrapperbg.gif') top left repeat-y;
	width: 800px;

	/* Begin nasty hack to extend page length to the bottom of the browser window
	 * For more info, see: http://www.alistapart.com/articles/footers/ 
	 */
	min-height: 100%;
	height: 100%;
	voice-family: "\"}\"";
	voice-family: inherit;
	height: auto;
}
html>body #wrapper {
	height: auto;
}
			
#banner {
	height: 100px;
	width: 800px;
	padding: 0 0 8px 0;
	margin: 0;
	background: #ffffff url('./images/style-header.jpg') top left no-repeat;
}

#banner h1 span {
	/* Copied from CSSZenGarden.com so that I could have different images with 
	   different style sheets but still retain text-compatability */

	/* The equivalent of 'display: none' but leaves the elements readable 
	   by some screen readers */
	position: absolute;
	overflow: hidden;
	clip: rect(0,0,0,0);/* because 'height: 0' doesn't have any fun in IE5.5 */
	height: 0;/* because clip doesn't have any fun in IE6 */
}





#sidebar {
	float: left;
	left: 0;
	margin: 0;
	padding: 0;
	background-color: #ffffff;   /* #788cad; */
	width: 189px;
}
	
#sidebar ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
	
#sidebar li a {
	display: block;
	height: 32px;
  	voice-family: "\"}\""; 
  	voice-family: inherit;
  	height: 24px;
	text-decoration: none;
	font-family: "Trebuchet MS", Trebuchet, Tahoma, Verdana, Arial, Helvetia, sans-serif;
	font-size: 11px;
	font-weight: bold;
}
	
#sidebar li a:link, #sidebar li a:visited {
	color: #ffffff;
	background: url('./images/style-navlinks.gif');
	padding: 8px 0 0 33px;
}
	
#sidebar li a:hover, #sidebar li a.selected {
	color: #ffffff;
	background: url('./images/style-navlinks.gif') 0 -32px;
	padding: 8px 0 0 33px;
}





#content {
	float: right;
	right: 0;
	margin: 0 0 73px 0;
	padding: 0;
	background: #ebeef2;
	width: 603px;
}

#content a:link {
	color: #3360ab;
	text-decoration: none;
}

#content a:visited {
	color: #3360ab;
	text-decoration: none;
}

#content a:hover {
	text-decoration: underline;
}

#realcontent {
	margin: 14px 10px 10px 10px;

}


#footer {
	position: absolute;
	bottom: 0;
	width: 800px;
	height: 65px;
	margin: 0;
	padding: 0;
	border-top: 8px #ffffff solid;
	background: #cccccc url('./images/style-footerbg.gif') top left repeat-x;
}

#footer p {
	text-align: center;
	font-family: verdana, sans-serif;
	font-size: 12px;
	color: #ffffff;
	margin: 10px 0 0 0;
	padding: 0;
}

#footer p a:link, #footer p a:visited {
	color: #ffffff;
}

#footer p a:hover {
	color: #fffac4;
	text-decoration: none;
}

/* Required because floating boxes take up no space.
   Using a spacer div at the top and bottom of a container
   containing a lot of boxes resolves this problem */
div.spacer {
	line-height: 0px;
	font-size: 0px;
	clear: both;
}