@charset "UTF-8";
body {
	font: 100%/1.4 "Palatino Linotype", "Book Antiqua", Palatino, serif;
	background-color: #444;
	margin: 0;
	padding: 0;
}
/*class styles that control the layout of the site*/
.container {
	width: 976px;
	background-color: #FFF;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}
.header {
	background-color: #FFFFFF;
	overflow: hidden;
	width: 976px;
	margin: 0 auto;
}

.sidebar1 {
	float: right;
	width: 220px;
	background-color: #F0F0F0;
	padding-top: 2em;
	padding-bottom: 2em;
	padding-left: 3px;
	padding-right: 3px;
	border: 2px solid #900;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.sidebar1 a
{
	color: #242424;
}
.sidebar1 a:hover
{
	background-color: #333;
	color: #fff;
}
.sidebar1 ul
{
	padding-left: 3px;
}
.content {

	padding: 10px 0px 0px 10px;
	width: 736px;
	min-height: 450px;
	float: left;
	text-align: justify;
	line-height: 140%;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 0 0 1%;
	list-style: none;
}	
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
	list-style: none;
}

h1
{
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 0px;
	padding-top: 0px;
	 /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */	
	text-align:center;
}
h2, h3, h4, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 10px;
	padding-left: 10px;
	padding-bottom: 0px;
	padding-top: 0px;
	 /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */	 
}
h5
{
	padding-right: 10px;
	padding-left: 10px;
	padding-top: 0px;
}
a img { 
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #000;
	text-decoration: underline;
}
a:visited {
	color: #000;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

#archive
{
	font-size: 1.2em;
	font-variant:small-caps;
	font-weight: 600;
	text-align: center;
	padding: 10px;
}
#archive a
{	
	color: #900;
}
#archive a:hover
{
	background-color: #333;
	color: #fff;
}
	
/* ~~ The footer ~~ */
.footer {
	background-color: #F0F0F0;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; 
	border-top: 2px solid #900;
}
.footer a 
{
	text-decoration: none;
}
/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
	margin-right: 8px
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
/* ~~ id selectors for page specific styling~~*/
#archivelist ul
{
	padding: 0 10px 0 5px;	
}
#archivelist li
{
	padding: 0 10px 3px 5px;
	font-size: .8em;
	
}
#archivelist li a
{	
	color: #900;
	text-decoration: none;
}
#archivelist li a:hover
{
	background-color: #333;
	color: #fff;
}

#masthead table
{
	padding-right: auto;
	padding-left: auto;
}
#masthead td
{
	padding-left: 5%;
	padding-right: 5%;
}
#masthead th
{
	padding-left: auto;
	padding-right:auto;
}
#masthead a
{
	color: #900;
	text-decoration: underline;
}
#masthead a:hover
{
	background-color: #333;
	color: #fff;
}

#member table
{
	padding-right: auto;
	padding-left: auto;
}
#member td
{
	padding-left: 5%;
	padding-right: 5%;
}
#member a
{
	color: #900;
	text-decoration: underline;
}
#member a:hover
{
	background-color: #333;
	color: #fff;
}
/*this set of ids controls the navigation bar*/
#navcontainer
{
background: #F0F0F0;
margin: auto;
padding: 0;
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif; border: 2px solid #900;
-moz-border-radius: 4px;
border-radius: 4px;
-moz-box-shadow: 0px 1px 1px #888888;
box-shadow: 0px 1px 1px #888888;
overflow: hidden;
float: left;
width: 972px;
}
/* to stretch the container div to contain floated list*/
#navcontainer:after
{
content: ".";
display: block;
line-height: 1px;
font-size: 1px;
clear: both;
float: left;
width: 970px;
}
#navlist
{
	margin: 0;
	width: 900px;
	font-size: 1em;
	font-variant:small-caps;
	font-weight: 600;
	background-color: #F0F0F0;
}
#navlist li
{
list-style: none;
float: left;
padding: 0px 5px;
}
#navlist li a:hover
{
	background-color: #333;
	color: #fff;
}
#navlist ul
{
	display: none;
	float: left;
	width: 7em;
	background-color: #F0F0F0;
	position: absolute;
	border: solid 2px #900;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-moz-box-shadow: 0px 2px 2px #888888;
	box-shadow: 0px 2px 2px #888888;
}
#navlist li:hover > ul 
{
	display: block;
}
#navlist li:hover > ul a:hover
{
	background-color: #333;
	color: #fff;
}
