/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	background: #000000;
	margin: 10px; /* 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;
	color: #FFFFFF;
	margin-left: 20px;
	margin-right: 30px;
}
h1 {
	font-size: small;
	color: #FFFFFF;
	margin-left: 20px;
	font-weight: normal;
}
h2 {
	font-size: 18px;
	color: #FEDD86;
	margin-left: 25px;
	font-weight: normal;
}

/* Creates the general link style for the site. This is not the main navigation.  */
a:link {
	color: #FFFFFF;
	text-decoration: none;
}
a:visited {
	color: #FFFFFF;
	text-decoration: none;
}
a:hover {
	color: #FFD656;
	text-decoration: none;
}
a:active {
	color: #FFFFFF;
	text-decoration: none;
}

/* ----------------- PAGE LAYOUT ELEMENTS ----------------- */

/*Collapses borders that some browsers automatically apply to tables. */
table, td, th  {
	border-collapse: collapse;
	font-size: 12px;
	color: #FFFFFF;
}

/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
}

/* 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 {
	background: url(images/layout_04.gif) no-repeat;
	height: 77px;
	width: 760px;
	margin-right: auto;
	margin-left: auto;
}
div#footer p {
	font-size: 10px;
	color: #FFFFFF;
}
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;
}
clear {
	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 {
	background: #990000;
	margin: 0px;
	padding: 0px;
	width: auto;
}

/* 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: auto;
	padding: 5px;
	margin: 2px;
	border: 1px solid #FFFFFF;
}
/* 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/button_bk.gif);
	color: #000000;
}

/* ----------------- CUSTOM CLASSES ----------------- */
div#container {
	background: url(images/layout_03.gif) repeat;
	width: 760px;
	margin-right: auto;
	margin-left: auto;
}
div#tabtop {
	background: url(images/layout_02.gif) no-repeat;
	height: 51px;
	width: 760px;
	margin-right: auto;
	margin-left: auto;
}
.tabtop {
	width: 290px;
	margin-top: 13px;
	margin-right: 0px;
	font: 16px Arial, Helvetica, sans-serif;
	margin-left: auto;
	float: right;
	text-align: left;
	color: #000000;
}
.border {
	border: 1px solid #FFFFFF;
}
div#copyright {
	font: 9px Verdana, Arial, Helvetica, sans-serif;
	width: 760px;
	margin-right: auto;
	margin-left: auto;
	color: #FFFFFF;
}
li {
	font-size: 14px;
	color: #FFFFFF;
	list-style:  url("images/arrows.gif");
}
.yellow {
	font-weight: bold;
	color: #FBDD89;
	font-size: 12px;
}
