/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	background: url(images/bg.gif);
	margin: 20px 0 0 0; /* 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 {
	margin: 15px;
	font: 12px/20px Arial, Helvetica, sans-serif;
	color: #2b1108;
}

h1 {
	font: 20px Arial, Helvetica, sans-serif;
	margin: 15px;
	color: #3d5139;
	border-top: 0px none;
	border-right: 0px none;
	border-bottom: 1px dotted #3d5139;
	border-left: 0px none;
    }

h2 {
	font: 14px Arial, Helvetica, sans-serif;
	font-weight: bold;
	margin: 15px;
	color: #3d5139;
    }
h3 {
	font: 25px Arial, Helvetica, sans-serif;
	font-weight: bold;
	text-align: center;
	margin: 15px;
	color: #a57400;
    }

/* Creates the general link style for the site. This is not the main navigation.  */
a {color: #336633; text-decoration: underline;}

/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */

/*Collapses borders that some browsers automatically apply to tables. */
table, td, th  {	
	border-collapse: collapse;
	margin: auto;
	padding: 0 0 0 0;
}

/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {width: 770px; height: 141px; border-bottom: 1px solid #fff; background: url(images/hdr.jpg) top right no-repeat;}

/* Creates DIV container for info in header. Setting the left and right margins to auto will center DIV. */
div#address {
	float: right;
	margin-top: 60px;
	margin-right: 5px;
	text-align: right;
	font-size: 9px;
	color: #fff;
}

/* Creates DIV container for centering image. */
td#imgcenter {width: 770px; 
	text-align: center;
}

/* Creates DIV container for body. Setting the left and right margins to auto will center DIV. */
div#body {
background-color: #FFFFFF;
width: 769px; 
margin-left: auto; 
margin-right: auto;}

/* Styles the table that serves as the container for the content and navigation.*/
table#container {
	width: 769px; 
	border: 1px solid #000;
	background-color: #FFFFFF;
}

/* Aligns content in the tableContainer's td tags to the top. Same as <td valign="top">. */
table#container td {
	vertical-align: top;
	background-color: #FFFFFF;
}

ul.leftbullet {
	font: 12px/20px Arial, Helvetica, sans-serif;
	color: #666666;
	margin: 0px;
	float: left;
	padding: 0px 20px 5px 0px;
	list-style-position: inside;
	list-style-type: disc;
	}

ul.left {
	clear: both;}

div#audio {
	position: absolute;
	left: 316px;
	top: 202px;
	height: 33px;
	}

div#textcenter {
background-color: #FFFFFF;
width: 769px; 
margin-left: auto; 
margin-right: auto;
text-align: center;}

/* Creates the div container for the footer. */
div#copyright {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	text-align: center;
	color: #fff;
	text-decoration: none;}

div#copyright a:link {
	color: #fff;
	text-decoration: underline;}

div#copyright a:hover{
	color: #a57400;
	text-decoration: underline;}

div#utility {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;	
	font-size: 9px;
	text-align: center;
	color: #fff;
	text-decoration: none;}

div#utility a {
	font-weight: bold;	
	padding: 1px;	
	font-size: 9px;
	color: #fff;
	padding:6px 10px;
	text-decoration: underline;}

div#utility a:hover{
	color: #a57400;
	text-decoration: underline;}

div#center {
	position:relative;
	width: 770px;
	text-align: center;
}

/* ---------------------------- MAIN NAVIGATION ----------------------------  */

/* Creates the container for the navbar and centers it.*/ 
div#navcontainer {
	width: 770px;
	margin-left: auto;
	margin-right: auto;
}
/* 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 {
	background: #3d5139;
	float: left;
	width: 100%;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	}

/* Lists, by default, are block level elements, so the applying the inline style removes the line breaks of a block level element and causes the links to line up next to one another. We float the items left as some browsers have difficulty displaying the inline property correctly in this fashion. We remove all margins and padding and the bullet by setting the list style type to none.*/

ul#mainnav li {
	display: inline;
	float: left;
	margin: 0px auto;
	padding: 0px;
	background: #3d5139;
}

/* 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:link, ul#mainnav li a:visited, ul#mainnav li a:active {
	font-size: 11px;
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	display: block;
	width: auto;
	padding: 6px 9px 6px 9px;
	margin: 0px;
	border-right: 1px solid #fff;
	color: #fff;
}
/* Creates the hover and "on" status style, which can be applied directly to a single link. */
ul#mainnav li a:hover, ul#mainnav li a.current:link, ul#mainnav li a.current:visited {
	background-color: #ffffff; 
	color: #3d5139;
	font-weight: bold;
	
}

/* ----------------- IMAGE ELEMENTS ----------------- */
img.null {
	border: 1px solid #000;
}

img.left {
	float: left;
	margin: 0px 20px 10px 10px;
	border: 1px solid #000;
}
img.right {
	float: right;
	margin: 0px 10px 10px 20px;
	border: 1px solid #000;
}
img.center {
	margin-left: auto;
	margin-right: auto;
	border: 1px solid #000;
}
img.border {margin: 0px 10px 10px 20px;
	border: 1px solid #000;}
object.right {
	float: right;
	margin: 0px 10px 10px 20px;
	border: 1px solid #000;
	width: 300;
}
/* ----------------- CUSTOM CLASSES ----------------- */
