@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FDFCDE;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FDFCDE;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
h1 {
	font: normal 1.5em/1.6px Georgia, "Times New Roman", Times, serif;
	color: #600;
	text-align: center;
}
#header {
	background: #FDFCDE;
	padding: 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
a,  a:link {
	color: #600;
	font-weight: normal;
	text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #000;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #000;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #000;
}
#nav {
	width: 774px;
	margin: 0px auto 0px;
	height: 35px;
	text-align:center;
	position: relative;
	right: 0px;
	padding: 8px 0 0 0;
} 
#nav ul {
	margin: 0px auto;
	
	list-style-type: none;
	padding: 0 0 4px 0;
	border-top: 1px solid #600;
	border-bottom: 1px solid #600;
} 

#nav li {
	display: inline;
	margin: 0px;
	padding: 0px;
	text-align: center;
	
	
} 
#nav ul li a:link, #nav a:visited {
	color: #644f2b;
	text-decoration: none;
	font-family: Georgia, "Times New Roman", Times, serif;
	margin-left: 16px;
	letter-spacing: 0.15em;
	padding: 2px 2px 4px 2px;
	font-weight: normal;
	font-size: 80%;
} 
#nav ul li a:hover {
	color: #660000;
	font-weight: normal;
	text-decoration: underline;
} 
/*#current { 

color: #2d63af; 
text-decoration: none; 
}*/ 
#nav ul li#active a {
	text-decoration: none;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #000000;
	font-weight: bold;
} 
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 360px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #FDFCDE; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
}
#mainContent {
	margin: 0 0 0 400px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FDFCDE;
}

.#mainContent1c {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
p {
	font: normal 0.8em/1.8em Verdana, Geneva, sans-serif;
	color: #666;
}
td {
	font-size: 80%;
}
table {
	text-align: left;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 20px;
	width: 600px;
	font-family: Georgia, "Times New Roman", Times, serif;
}
input {
	font-family: Georgia, "Times New Roman", Times, serif;
	background: #FFFFFF;
}
.red {
	color: #DF1205;
}
#footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FDFCDE;
	border-top: 1px solid #600;
} 
h3 {
	font: italic normal 1.2em Georgia, "Times New Roman", Times, serif;
	color: #600;
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	text-align: center;
}
.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;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.bolddkgrey {
	font-weight: bold;
	color: #333;
}
blockquote {
	font: italic normal 80% Georgia, "Times New Roman", Times, serif;
	color: #6F4F38;
	text-align: left;
}
.sig {
	font-size: 70%;
	text-align: right;
}

