/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	background:  url(images/bg.gif) top left repeat;
	margin-top: 0px;
	margin: 0px; /* Always set margins to 0. Some browsers automatically apply them. */
	padding: 0px; /* Always apply padding if you apply margins */
	/*text-align: center;  Equivalent to <center> tag for older IE browsers. Remove if you do not want to center page. */
}

/* This sets a default font for all of our tag selectors. We set the text align back to left so it won't center (based on the body tag to compensate for IE.) */

p, h1, h2, h3, h4, h5, a, ul, li, lo, td {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	text-align: left; /* Not necessary if not using text-align center in body tag for older IE browsers. */
}
/* Redefines the p tag */
p {font: 12px Arial, Helvetica, sans-serif;
}

h1 {
font: bold 15px Trebuchet MS, sans-serif; 
color: #324183; 
text-align: left;
border-bottom: 1px dashed #000; 
background: #ccc;
margin: 0px;
padding: 5px 25px;
}

h2 {font: bold 18px Trebuchet MS, sans-serif; color:#6998E8; padding: 0;}

h3 {
font: bold 12px Trebuchet MS, sans-serif; 
color: #000; 
text-align: left;
border-bottom: 1px dashed #000; 
background: none;
margin: 0px;
padding: 0;}

h4{
text-align: left;
font: bold 12px Trebuchet MS, sans-serif;
width: auto;
margin: 0px;
padding: 0px;}

h5 {
font: Arial, Helvetica, sans-serif; 
font-size: 9px;
font-weight: normal;
color: #000; 
text-align: left;
background: none;
margin: 0px;
padding: 0px;}

/* Creates the general link style for the site. This is not the main navigation.  */
a:link, a:visited {
	color: #324183;
	text-decoration: underline;
}
a:hover, a:active {
color: #6998E8;
	text-decoration: underline;
}

/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */

/* Styles the div that serves as the container for the content and navigation.*/
div#container {
	border: 1px solid #000;
	margin: auto;
	padding: 0px;
	text-align: left;
  	width: 770px;
  	background: #fff;
}

/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
	position: relative;
	width: 770px; 
	height: 154px; 
	margin: auto;
	background: #F7F6ED url(images/hdr.jpg) no-repeat top left;
	vertical-align:top;
}

/* Creates DIV container for body. Setting the left and right margins to auto will center DIV. */
div#textarea {display: block; text-align: center; padding: 30px; width: 500px;}

div#flasharea {display: block; text-align: right; padding: 5px; width: 150px; float: right;}

div#body {
	margin: 0px 0px 0px 150px;
	padding: 0px;
}

div#content {
	width: 550px;
	margin: 20px;
	padding: 0 5px 5px 5px;
	}
	
div#content a{
font: 12px Arial, Helvetica, sans-serif;
color: #324183;
	}
div#content a:hover, a:active {
		font-size: 12px;
		color: #6998E8;
		text-decoration: underline;
	}
	
div#content li{
font: 12px Arial, Helvetica, sans-serif;
color: #036;
margin: 3px 10px;
	}

/* ADDRESS */
address {
	text-align: left;
	position: absolute;
	background: none;
	left: 544px;
	top: 52px;
	margin: 0px;
	padding: 0px;
	height: 73px;
	width: 202px;
		
} 
address p{
	font-weight: bold;
	font-size: 14px/14;
	color: #324183;
	}
	
address a:link, a:visited, a:hover, a:active {
		font-weight: bold;
		font-size: 9px;
		color: #324183;
		text-decoration: underline;
	}


	
.info {
	position: absolute;
	top: 19px;
	right: 5px;
	font: 10px;
	color: #fff;
	text-align: right;
	}

/* ---------------------------- MAIN NAVIGATION ----------------------------  */

/* Creates the container for the navbar and centers it.*/ 
div#navcontainer {
	float: left;
	width: 150px;
	margin: 0 0 20px 0;
	padding: 0px;
	background: #000;
}
/* Removes any default margins or padding applied to lists. Floats the list to the left, which incorporates the child elements (i.e. the links) and provides a full-length background color that extends past the links.*/

ul#mainnav {
	float: left;
	width: 100%;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	}

ul#mainnav li {
	display: inline;
	/* float: left; */
	margin: 0px;
	padding: 0px;
}

/* Although we have redefined the li style as an inline element, we need to make the actual links block level elements so we can give them widths and have them display properly as "buttons." */
ul#mainnav li a {
	font-weight: normal;
	font-size: 11px;
	text-decoration: none;
	text-align: left;
	display: block;
	width: 140px;
	padding: 5px;
	margin: 0px;
	border-bottom: 1px solid #FFFFFF;
	color: #FFFFFF;
}

ul#mainnav li a:hover, ul#mainnav li a.active {
	background-color: #6998E8;
	color: #fff;
}

/* ----------------- IMAGE ELEMENTS ----------------- */

img.left {
	float: left;
	margin: 0px 10px 20px 0px;
	border: 1px solid #000;
}
img.right {
	float: right;
	margin: 5px 0 5px 10px;
	border: 1px solid #000;
}
img.center {
	text-align:center;
	margin-left: auto;
    margin-right: auto;
    padding:0px;
}
object.left {
	float: left;
	margin: 0px 10px 0 0;
	border: 1px solid #000;
}
clear {
	clear: both;
}

/* ---------------------------- FOOTER ----------------------------  */
/* Creates the div container for the footer. */
div#footer {
margin: auto;
width: 770px;
height: 10px;
clear: both;}

div#footer p{
color: #ccc; 
font-weight: normal;
font: 9px Verdana, Arial, Helvetica, sans-serif;
text-align:center;}

div#footer a:link, a:visited {color: #ccc;
font-weight: normal;}

div#footer a:hover, a:active {color: #fff;
font-weight: normal;}

div#copyright {font-size: 9px;
font-weight: normal;}

/* ----------------- CUSTOM CLASSES ----------------- */
