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

body {
	background: #FFFFFF;
	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-size: 12px;
	line-height: 15px;
}
h1 {
	font-size: 14px;
	color: #003366;
	font-weight: bolder;
}
h2 {
	font-size: 12px;
	background: #FFFFFF;
	padding: 3px;
	color: #006699;
	width: 400px;
	margin-right: 50px;
}

/* Creates the general link style for the site. This is not the main navigation.  */
a:link {
	color: #006699;
}
a:visited {
}
a:hover {
}
a:active {
}

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

div#container {
	width: 770px;
	margin: 0px auto;
	background: url(images/bg_page.gif) repeat-y;
}
div#header {
	background: url(images/header.gif) no-repeat;
	height: 141px;
	width: 770px;
	margin-right: auto;
	margin-left: auto;
}
div#audio img {
float: left;
}
div#nav {
	background: url(images/bg_nav.gif) no-repeat;
	height: 253px;
	width: 196px;
	float: left;
		margin: 0px;
	padding: 0px;
}
div#content {
	background: url(images/bg_content.gif) no-repeat;
	width: 574px;
	float: left;
	margin: 0px;
	padding: 0px;
}
/* Creates the div container for the footer. */
div#footer {
	clear: both;
	background: url(images/footer.gif);
	height: 56px;
	width: 770px;
}
div#utilitynav {
	width: 750px;
	margin: 15px auto;
}
div#utilitynav p {
	text-align: right;
	font-size: 11px;
}
div#utilitynav a {
	font-size: 11px;
	color: #006699;
}
div#copyright {
	font-size: 9px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	width: 750px;
	text-align: right;
}
div#copyright a {
	color: #006699;
}
/* ----------------- IMAGE ELEMENTS ----------------- */

img.left {
	float: left;
}
img.right {
	float: right;
}
clear {
	clear: both;
}

/* ----------------- CUSTOM CLASSES ----------------- */
ul.left {
}
div#content p {
	margin-right: 60px;
	line-height: 18px;
	text-align: left;
}
/* ----------------- 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 {
	float: left;
	width: 130px;
	padding:40px 0px 0px;
	margin: 25px 0px 0px;}


/* Removes the default bullets. */
ul#mainnav li {
	display: inline; /* Redefined here only to remove stray padding. */
	list-style: none;
}

/* 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: #FFFFFF;
	text-decoration: none;
	display: block;
	width: 126px;
	border-bottom: 1px solid #FFFFFF;
	padding: 3px;
	margin-left: 30px;
		background: url(images/arrow.gif) no-repeat left center;
	text-indent: 15px;

}
/* 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: url(images/arrow_up.gif) no-repeat;
	text-indent: 15px;
	background-color: #A2C6D8;
	color: #006699;
	font-weight: bold;
}
div#content img {
	float: right;
	margin: 5px 35px 5px 5px;
	clear: right;
}
div#right {
	float: right;
	width: 240px;
}
div#content object {
	float: right;
	clear: right;
	margin-right: 10px;
}
address {
	font-size: 11px;
	text-align: right;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: normal;
	width: 740px;
}
li {
	font-size: 12px;
}
div#content img.nofloat {
	float: none;
}
