@charset "utf-8";
body  {
	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: #340155;
	background-color: #ffffff;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
}
#container {
	width: 760px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
} 
#header {
	height: 80px;
	background-color: #FFFFFF;
	background-repeat: no-repeat;
	width: 760px;
	padding: 0;
	border-bottom-color: #000000;
} 
#header img logo {
	position: relative;
	top: 2px;
}

#header h1 a {
	text-decoration: none;
	color: #C5A852;
}

#header h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #D2A562;
	padding-top: 180px;
	padding-bottom: 10px;
	padding-left: 0;
	text-align: right;
	margin-right: 20px;
	margin-bottom: 0;
	margin-left: 0;
}
#tagline {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	background-color: #515C2A;
	height: auto;
	width: 760px;
	font-weight: bolder;
	font-size: medium;
}
h1 {
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #340155;
	font-size: medium;
}
H2 {
	margin: 0px;
	padding: 0px;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #011C26;
	font-size: large;
}
H3 {
	margin: 0px;
	padding: 0px;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #011C26;
}
hr  { 
	color: #600060; border-style: solid; border-color: #600060 
}

#mainContent p {
	font-size: 90%;
}
#mainContent {
	float: left;
	width: 560px;
	margin-top: 20px;
	background-color: #FFFFFF;
} 
#mainContent image {
	padding: 4px;
}
#sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 150px; /* 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: #F2F5E0;
	font-size: 85%;
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 20px;
	margin-top: 20px;
}
#sidebar li {
	list-style-type: none;
	color: #386094;
	margin: 0px;
	padding: 0px;
	float: none;
	font-size: 90%;
}
#sidebar a {
	text-decoration: none;
	font-size: 90%;
	font-weight: bolder;
	line-height: 120%;
	list-style-type: none;
}



/*********** Horizontal Nav *************/

#horizonnav {
	margin: 0px;
	padding: 0px;
	list-style: none;
	float: left;
	width: 790px;
	border-bottom: 1px solid #000000;
	background-color: #736345;
}
#horizonnav li {
	margin: 0px;
	padding: 0px;
	float: left;
	font-size: 90%;
}
#horizonnav a {
	color: #FFFFFF;
	text-decoration: none;
	line-height: 2;
	border-right: 1px solid #FFFFFF;
	float: left;
	width: 130px;
	text-align: center;
	font-size: 90%;
}
#horizonnav a:hover {
	background: #83A5CB;
}
#horizonnav #hornav_last a {
	border-right-style: none;
}

/*********** Horizontal Nav *************/





/*********** Vertical Nav 2 **************/
#vertnav {
	margin: 0px 0px 20px;
	padding: 0px;
	list-style-type: none;
	font-size: medium;
	font-weight: lighter;
	color: #515C2A;
}
#vertnav li {
	margin: 0px;
	padding: 0px;
/*	border-top: 1px solid #000000;  */
}
#vertnav li a {
	color: #000000;
	text-decoration: none;
	height: 1%;
	display: block;
	padding-left: 15px;
	padding-top: 2px;
	padding-bottom: 2px;
}
#vertnav li a:hover {
	color: #9000FF;
	font-weight: bolder;
}
/*********** Vertical Nav **************/










#footer {
	height: auto;
	margin: 0px;
	background-image: none;
	width: 760px;
	padding-top: 0px;
	padding-bottom: 0;
	font-size: small;
	font-style: italic;
} 
#footer a {
	color: #990000;
	text-decoration: none;
}
#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: 15px 0 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 10px;
}
.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;
	border: 1px solid #000000;
}
.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;
}
