/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	background:#206494;
	background-image:url(images/verticalstrip.gif);
	background-repeat:repeat-x;
	margin:0 auto; /* Always set margins to 0. Some browsers automatically apply them. */
	padding:0 0 20px 0; /* Always apply padding if you apply margins */
}

/* 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. */
	font-size:12px;
	color:#000000;
}

/* Redefining tags */
p {
	font-size: 14px;
	line-height:20px;
	margin:5px 0 15px 15px;
}	p#center { text-align:center; margin:0 auto; }
    p#hours { font-size:12px;}	
	p#title { font-size:12; margin:5px 0 0 0; text-decoration:underline; text-transform:uppercase; font-family:"Times New Roman", Times, serif; text-align:center; }
h1 {
	font-size:30px;
	color:#0F4A82;
	margin:0;
	padding: 0px 0 25px 15px;
	text-transform:uppercase;
	font-family: "Times New Roman", Times, serif;
	font-weight: normal;
}
h2 {
	font-size:14px;
	color:#003399;
	font-weight:bold;
	margin:0px;
}
address {
	font-size: 12px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#000000;
	padding:0px;
	font-style:normal;
	text-align:left;
	float: left;
	margin: 0px 10px 20px 0px;
}

/* ----------------- NAVIGATION ELEMENTS ----------------- */

/* Creates the general link style for the site. This is not the main navigation.  */
a:link, a:visited {
	text-decoration:underline;
	color:#000000;
}
a:hover {
	text-decoration:none;
	color:#003399;
}

/* ------------------------- HORIZONTAL NAVIGATION ----------------------------- */
/* Removes all margins and padding except bottom padding, which provides room to put our border. This serves as the resting place for our tabs. */

ul#mainnav {
	margin: 0px;
	padding: 0px 0px 0px 0px;
	width: auto;
	height:37px;
	position:absolute;
	top: 340px;
	left: 2px;
	border-top: 1px solid #dadada;
	width: 962px;
	background-image: url(images/navbtn_off.gif);
	margin-left: 3px;
}

/* This creates the tabs. We set a height for each tab, give it a border and place 2 pixels of space between each tab. We float them left on the navbar and remove the bullets. */

ul#mainnav li {
	float: left;
	border-right: 1px solid #d6d6d6;
	list-style: none;
	height: 37px;
}

ul#mainnav li a {
	font-size: 15px;
	color: #fff;
	text-decoration: none;
	padding: 10px 4px 0px 4px;
	height: 27px;
	float:left;
	display:block;
	display: inline-block;
	font-weight: bold;
}

/* OFF - This creates the style for our links. */
ul#mainnav li a:link, ul#mainnav li a:visited, ul#mainnav li a:active {
	display: block;
	background-image:url(images/navbtn_off.gif);
	background-repeat:repeat-x;
}
/* ON - Creates the "on" status style, which can be applied directly to a single link. */
ul#mainnav li a.current:link, ul#mainnav li a.current:visited {
	color: #FFFF00;
	display: block;
	background-image:url(images/navbtn_on.gif);
	background-repeat:repeat-x;
}

/* HOVER - Creates the hover status style, which can be applied directly to a single link. */
ul#mainnav li a:hover {
	color: #FFFFFF;
	display: block;
	background-image:url(images/navbtn_on.gif);
	background-repeat:repeat-x;
}

/*  This is bottom navigation.  */
div#utilnav {
	text-align:center;
	font-size: 11px;
	margin:0 auto;
	padding:25px 20px 0 20px;
	height: 20px;
	color:#FFFFFF;
}
div#utilnav a:link, div#utilnav a:visited { 
	color:#FFFFFF;
	font-size: 11px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	padding:0 2px 0 2px;
	text-decoration:none;
}
div#utilnav a:hover, div#utilnav a.current:visited, div#bottomnav a.current:link {
	color:#FFFFFF;
	text-decoration:underline;
}

/*  This is copyright navigation.  */
div#copyright {
	text-align:center;
	font-size: 10px;
	padding:15px 0 0 0;
	color:#fab763;
	clear:both;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}
div#copyright a:link, div#copyright a:visited {
	font-size:10px; 
	color:#FFFFFF;
}
div#copyright a:hover {
	color:#FFFFFF;
	text-decoration:underline;
}

/*  This is email navigation.  */
a#email:link, a#email:visited {
	text-decoration:underline;
	color:#000000;
	font-size:10px;
}
a#email:hover {
	text-decoration:none;
	color:#003399;
}

/*  This is admin navigation.  */
a#admin:link, a#admin:visited {
	text-decoration:none;
	color:#471a02;
	font-size:12px;
	text-align:center;
}
a#admin:hover {
	color:#000000;
	font-weight:bold;
}

/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */

/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#container {
	width:970px;
	height:auto;
	margin:0 auto;
}

/* Created to hold the background stip that is displayed when content area is stretched */
div#contentcontainer {
	float:left;
	width:970px;
	height:auto;
	background-image:url(images/contentstrip.gif);	
	background-repeat:repeat-y;
}

/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
	position:relative;
	width:970px;
	height:500px;
	background-image:url(images/header_bg.jpg);
	background-repeat:no-repeat;
}
div#contentarea {
	float:right;
	width:960px;
	height:auto;
	background-image:url(images/content_bg.gif);
	background-repeat:no-repeat;
	padding:0px 5px 0px 5px;
}
div#footer {
	clear:both;
	width:970px;
	height:37px;
	background-image:url(images/footer_bg.gif);
	background-repeat:no-repeat;
	margin: 0px;
	padding: 0px;
}
div#leftcolumn {
	float:left;
	width:200px;
	height:auto;
	clear:left;
	margin:0px;
	padding:20px 0 15px 5px;
}
div#rightcolumn {
	float:left;
	width:178px;
	height:auto;
	margin:0px;
	padding:10px 0 15px 6px;
}

div#maintext {
	float:left;
	width:710px;
	height:auto;
	margin:0px;
	padding:10px 0 0 25px;
	border: 0px #8badc8 solid;
}
div#addresscontainer {
	width:530px;
	margin: 10px auto 10px auto;
	padding:30px 10px 10px;
	background-color: #CBDBE8;
	border: 1px #8badc8 solid;
	clear: both;
}
div#flash {
	position:absolute;
	float:right;
	clear:right;
	width:736px;
	height:201px;
	margin:0px;
	padding: 132px 12px 0 0;
	left: 217px;
	top: 3px;
}
div#intro {
	width:695px;
	height:260px;
	margin:auto;
	padding:40px 0 0 0;
}
div#adminlogin {
	padding:15px 0 0 0;
	margin:0 auto;
	width: 115px;
	text-align: center;
}
div#audio {
	float:right;
	padding:0 30px 0 0;
	margin:0px;
	width: 120px;
	text-align: center;
	height: 15px;
}
div#clear {
	clear: both;
}

/* ----------------- IMAGE ELEMENTS ----------------- */

img.left {
	float:left;
	border:#003399px solid;
	margin:0 15px 10px 0;
	padding:2px;
	clear:both;
}
img.right {
	float:right;
	border:#003366 1px solid;
	margin:0 5px 10px 15px;
	padding:2px;
	clear:both;
}
img.center{
	border:#400000 1px solid;
	margin:0 auto;
	padding:2px;
	clear:both;
}
img.center2{
	float: right;
	border:#400000 1px solid;
	margin: 10px 120px 10px 10px;
	padding:2px;
	clear:both;
}
	
img.leftnoborder {
	float:left;
	margin:0 15px 10px 0;
	clear:both;
}
img.rightnoborder {
	float:right;
	margin:0 5px 10px 15px;
	clear:both;
}
img.centernoborder{
	margin:5px 0 0 6px;
	padding:2px;
	clear:both;
}
img.centernoborder2{
	margin:5px 0 0 100px;
	padding:2px;
	clear:both;
}

/* ----------------- CUSTOM CLASSES ----------------- */

div#col {
	float:left;
	width:200px;
	clear:none;
	margin:0 0 0 20px;
	padding:10px;
	background-color: #C8D8E7;
	border: 1px #003366 solid;
	height: 275px;
}
div#coldiv {
	width: 500px;
	clear:none;
	margin: 0px auto;
	padding:10px;
	background-color: #ffffff;
	border: 0px #003366 solid;
	height: 300px;
}
div#col ul{
	margin: 10px 0px 0px 35px;	
	padding: 0;
}

.clearcontent {
	clear: both;
	}
	
/*  This is main navigation.  */
div#map {
	padding: 0px;
	margin: 10px auto;
	height: 350px;
	width: 530px;
}

/* Creates the div container for the other iframes on the site. */

div#iframe {
	width: 550px;
	margin: 15px auto;
	padding: 0px 0px 0px 0px;
	border: 0px solid #ffffff;
}	

div#newbtns {
	width: 962px;
	height: 119px;
	position: relative;
	top: 380px;
	;
	margin-left: 5px;

}
