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

body {
	margin: 0px auto;
	padding: 0px;
	text-align: center;
	background: #56798F;
}

/* 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: Arial, Helvetica, Verdana, 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,li,td {
	font-size: 12px;
}
a {
	color:#5C5C5C;
	}
address {
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-style: normal;
	}
h1 {
	font-size: 16px;
	font-family: Arial, Helvetica, Verdana, sans-serif;
}
.center {
 text-align: center;
}
/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */
/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
	width: 660px;
	margin: 0px auto;
	}
div#animation {
	width: 660px;
	margin: 0px auto;
	height:175px;
	}
/* Styles the div that serves as the container for the content and sidebar navigation.*/
div#container {
	width: 660px;
	margin: 0px auto;
	background: #fff; 
	border:2px solid #fff;
}
/* Creates DIV container for sidebar content */ 
div#sidebar {
	width: 260px;
	float: right;
	padding:10px 10px 0px;
	text-align: right;
}
/* Creates DIV container for content */ 
div#content {
	width: 360px;
	float: left;
	padding:10px 10px 0px;
}
div#content1{
	width: 640px;
	padding:10px 10px 0px;
}
h1 .audio{
	padding-left:395px;
}
h1 .audio2{
	padding-left:440px;
}
h1 .audio3{
	padding-left:455px;
}
h1 .audio4{
	padding-left:460px;
}
h1 .audio5{
	padding-left:481px;
}
/* Creates DIV container for smallnav text links */ 
div#smallnav, #address {
	clear: both;
	padding:10px 0px;
	width: 660px;
	}
div#smallnav {
	font-size: 10px;
	background:#5C5C5C;
	color:#CCCCCC;
	height:40px;
}
div#smallnav a{
	color:#EBEBEB;
}
div#address{
	font-size: 11px;
	text-align:center;
	font-family: Arial, Helvetica, Verdana, sans-serif;
	}
/* Creates DIV container for copyright information */ 
div#copyright {
	font-size: 9px;
	width: 660px;
	margin-right: auto;
	margin-left: auto;
	text-align: right;
	clear: both;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin-top: 5px;
	color: #F1EFEF;
}
div#copyright a {
	color: #fff;
	text-decoration: underline;
}
div#signin{
	width: 660px;
	text-align: right;
	clear: both;
	margin-right: auto;
	margin-left: auto;
}
iframe#ifr1{
	margin:-25px 0px 0px -10px;
	clear:both;
}
/* ----------------- MAIN NAVIGATION ----------------- */

/* Apply the ul#mainnav style to our entire <ul>.*/

/* Sets a background color and width for our navigation box. Removes all default margins and padding. */
ul#mainnav {
	margin: 0px;
	padding:0px;
	list-style-type: none;
	text-align: left;
	height:25px;
	background: #555555 url(images/navbg.jpg);
}

/* Removes the default bullets. */
ul#mainnav li {
	display: block; /* Redefined here only to remove stray padding. */
	text-align: center;
	padding: 0px;
	margin: 0px;
	float:left;
}

/* Styles our links. Setting the display to block ensures our links will stack back on top of one another as block level elements. The width sets the "hit" area of the links.  */
ul#mainnav li a:link, ul#mainnav li a:visited, ul#mainnav li a:active {
	font-size: 11px;
	color: #EEEDED;
	text-decoration: none;
	display: block;
	padding: 5px 10px 6px;
	margin: 0px;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
}
/* Creates our hover status and our current custom class. Be sure to apply .current to each applicable a tag on individual pages. */
ul#mainnav li a:hover, ul#mainnav li a.current:link, ul#mainnav a.current:visited {
	background: #888686 url(images/current.jpg) no-repeat;
	color: #070707;
	width: auto;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 11px;
}
