@charset "UTF-8";

/* CSS Document */
body {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	word-spacing: 1px;
	line-height: 18px;
	background: #727a47;
	margin: 0;
	padding: 0;
	text-align: left;
	/* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #333333;
	background-image: url(images/bg.gif);
}

.chart {
	font: 10px Verdana, Arial, Helvetica, sans-serif;
	word-spacing: 1px;
	line-height: 18px;
	margin: 0;
	padding: 0;
	color: #333333;
}

#container {
	width: 900px;
	background: #FFFFFF;
	margin: 0 auto;
	/* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left;
	/* this overrides the text-align: center on the body element. */
}

.notes {
	font: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
}

sup {
	font-size: 9px;
}

#header {
	width: 880px;
	background: #DDDDDD;
	padding: 0 10px 0 20px;
	/* 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. */
}

#header h1 {
	margin: 0;
	/* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0;
	/* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#sidebar1 {
	/* float: left; since this element is floated, a width must be given */
	/* width: 200px; /* 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: #feffe6;
	/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 11px;
}

.sidebar1 {
	background: #feffe6;
	padding: 15px 10px 15px 11px;
}

#sidebar2 {
	float: left; /* since this element is floated, a width must be given */
	width: 20px;
	/* 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: #ffffff;
	/* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 0px 0px;
}

#mainContent {
	margin: 0 0 0 250px;
	/* 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 30px;
	/* remember that padding is the space inside the div box and margin is the space outside the div box */
}

/* Footer Elements */
#footer {
	padding: 0 10px 0 20px;
	/* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #e6dbce;
}

#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;
	font: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333333;
}

#footer2 {
	padding: 0 10px 0 20px;
	/* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #ecf0f3;
}

#footer2 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;
	font: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #CCCCCC;
}

#footer3 {
	padding: 0 10px 0 20px;
	/* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #FFFFFF;
}

#footer3 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;
	font: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
}

.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;
}

h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #5C3317;
	font-size: 19px;
	word-spacing: 1px;
	margin-bottom: 5px;
	margin-top: 25px;
	line-height: 23px;
}

.promise {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	color: #003300;
	font-style: italic;
	font-weight: bold;
	word-spacing: 1px;
	margin-bottom: 0px;
	margin-top: 5px;
}

.yellow {
	background-color: #FFFF00;
	text-align: left;
}

h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	/*color:#727a47;*/
	color: #330066;
	font-size: 15px;
}

h3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #333333;
	font-size: 12px;
}

h4 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #330066;
	font-size: 12px;
	margin-bottom: 0;
}

h7 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #616a2e;
	font-size: 13px;
	margin-bottom: 0;
	font-weight: bold;
	padding-bottom: 0;
}

.top {
	margin-top: 10px;
}

.backtotop {
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	padding-bottom: 5px;
	margin-bottom: 10px;
}

.h7 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #330066;
	font-size: 15px;
	margin-bottom: 5px;
	margin-top: 10px;
	font-weight: bold;
	padding-bottom: 0px;
}

a.menu:link,a.menu:visited {
	color: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: none;
	text-decoration: none;
	text-transform: uppercase;
	padding: 4px 10px 5px 8px;
	font-weight: bold;
	/*padding-right:15px;*/
}

a.menu:hover {
	color: orange;
	text-decoration: underline;
}

a.sub:link,a.sub:visited {
	color: #616a2e;
	background: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: none;
	text-decoration: none;
}

a.sub:hover {
	color: #FFFFFF;
	text-decoration: underline;
}

.contact ul li {
	font-weight: bold;
}

#dropmenudiv {
	margin-top: 0px;
	position: absolute;
	border: 1px solid #616a2e;
	font: normal 12px Georgia, "Times New Roman", Times, serif;
	line-height: 15px;
	z-index: 100;
}

#dropmenudiv a {
	width: 100%;
	display: block;
	text-indent: 3px;
	border-bottom: 0px solid black;
	padding: 0px 0;
	text-decoration: none;
	font-weight: none;
}

#dropmenudiv a:hover { /*hover background color*/
	background-color: #727a47;
}

a:link,a:visited,a:active {
	color: #330066;
	text-decoration: underline;
}

a:hover {
	color: orange;
}

a.subGreen:link,a.subGreen:link:visited,a.subGreen:link:active {
	color: #003300;
	text-decoration: underline;
}

a.subGreen:hover {
	color: orange;
}

.green {
	color: #003300;
	font-weight: bold;
}

ul {
	display: inline-block;
	margin-top: -5px;
	margin-bottom: 0;
}

.johnsonBox
	{
	margin-top: 5px;
	margin-right: 5px;
	}

.johnsonBox li
	{
	margin-left: -5px;
	}

#paperRequest
	{
	width: 185px;
	float: right;
	margin: 5px 0px 15px 10px;
	border: 4px double #484E22;
	background-color: #F1F1C5;
	padding: 10px;
	}

#paperRequestLeftCol
	{
	width: 185px;
	float: right;
	margin: 5px 0px 15px 10px;
	background-color: transparent;
	padding: 10px;
	}
	
li {
	margin-top: 5px;
	margin-bottom: 5px;
	padding: 1px;
	margin-left: 1px;
}