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

body {
	background: #750706;
	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. */
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
}
div#container {
	background: url(images/containerbk.jpg);
	width: 770px;
	margin: 5px auto 20px;
	color: #750706;
	border: 1px solid #F4E2B0;
	position: relative;
}
.content {
	font-size: 11px;
	line-height: 20px;
	padding: 0px 30px;
	color: #000000;
}
#imv_copyright {
	font: 9px Verdana, Arial, Helvetica, sans-serif;
	color: #F4E2B0;
}
#imv_copyright a {
	color: #F4E2B0;
	text-align: center;
	text-decoration: none;
}

#imv_copyright a:hover {
	color: #FFFFFF;
	text-align: center;
	text-decoration: none;
}



/* 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: 11px;
}
h1 {
	font: bold 20px Arial, Helvetica, sans-serif;
	color: #990000;
}
h3 {
	color: #990000;
	text-align: center;
	font: normal 14px Arial, Helvetica, sans-serif;
}
strong {
	color: #990000;
}
.audio {
	font-size: 10px;
	position: absolute;
	left: 640px;
	top: 172px;
	width: 91px;
	color: #750706;
}

h2 {
	font-size: 13px;
	font-weight: normal;
	text-align: center;
	text-decoration: underline;
}
.flash {
	position: absolute;
	left: 108px;
	top: 62px;
}


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

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

/*Collapses borders that some browsers automatically apply to tables. */
table, td, th  {	
	border-collapse: collapse;
}

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

/* Styles the table that serves as the container for the content and navigation.*/
table#container {
}

/* Aligns content in the tableContainer's td tags to the top. Same as <td valign="top">. */
table#container td {
	vertical-align: top;
}
/* Creates the div container for the footer. */
div#footer {
	font: 11px Arial, Helvetica, sans-serif;
	color: #6A1510;
	background: #750706 url(images/footer.jpg) no-repeat;
	height: 48px;
	width: 770px;
	margin-right: auto;
	margin-left: auto;
	clear: both;
}
div#footer p {
}
div#footer a:link {
}
div#footer a:visited {
}
div#footer a:hover {
}
div#footer a:active {
}

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

img.left {
	float: left;
}
img.right {
	float: right;
	padding: 5px;
	border: 1px solid #750706;
	margin: 10px;
}
clear {
	clear: both;
}
/* ---------------------------- MAIN NAVIGATION ----------------------------  */

/* Creates the container for the navbar and centers it.*/ 
div#navContainer {
	width: 650px;
	position: absolute;
	left: 109px;
	top: 145px;
}
/* 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: #000000;
	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;
}

/* 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;
	text-decoration: none;
	text-align: center;
	display: block;
	width: auto;
	padding: 5px;
	margin: 0px;
	border-right: 1px solid #FFFFFF;
	color: #FFFFFF;
	background: #750706;
	font-weight: bold;
}
/* 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 {
	color: #FCF496;
}
/* ----------------- CUSTOM CLASSES ----------------- */
