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

body {
	background: #556F6C url(images/bg.jpg);
	margin: 10px;
	padding: 0px;
	text-align: center;
	font-size: 12px;
}

/* 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;
	margin-right: 15px;
	margin-left: 15px;
	border-left: 1px none #6A8886;
	border-top: none;
	border-right: none;
	border-bottom: none;
}
h1 {
	font-size: 20px;
	text-align: center;
	margin: 0px;
	padding: 0px;
	color: #760000;
}
h2 {
}

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

/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
	background: #FFFFFF url(images/logo.jpg) no-repeat left top;
	height: 100px;
	width: 750px;
	margin-right: auto;
	margin-left: auto;
	border-top: 1px solid #6A8886;
	border-right: 0px solid;
	border-bottom: 1px solid;
	border-left: 0px solid;
	font-size: 10px;
	color: #666666;
}

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

/* Aligns content in the tableContainer's td tags to the top. Same as <td valign="top">. */
table#container td {
	vertical-align: top;
	border-left: 1px dashed #6A8886;
}
/* Creates the div container for the footer. */
div#footer {
	background: #C7C3A6 url(images/cell_bk.gif) repeat-y left top;
	height: 110px;
	width: 750px;
	border-bottom: 5px none #6A8886;
	border-top: 0px none;
	border-right: 0px none;
	border-left: 0px none;
	font: 10px Arial, Helvetica, sans-serif;
	color: #1E4E02;
	margin-right: auto;
	margin-left: auto;
}
div#footer p {
}
div#footer a:link {
	color: #000000;
	text-decoration: none;
}
div#footer a:visited {
	text-decoration: none;
}
div#footer a:hover {
	color: #FFFF99;
}
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: #6A8886;
	margin: 0px;
	padding: 0px;
	width: 160px;
}

/* Removes the default bullets. */
ul#mainnav li {
	display: inline;
	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: 150px;
	border-bottom: 1px solid #FFFFFF;
	padding: 5px;
}
/* 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: #C7C3A6 no-repeat left;
	color: #000000;
}

/* ----------------- CUSTOM CLASSES ----------------- */
div#container {
	border-top: 3px solid #6A8886;
	border-right: 0px #6A8886;
	border-bottom: 0px solid #6A8886;
	border-left: 0px #6A8886;
	width: 750px;
	background: #FFFFFF;
	margin-right: auto;
	margin-left: auto;
}
.tbl_brd {
	border-top: 2px solid #6A8886;
	border-right: 1px solid #6A8886;
	border-bottom: 2px solid #6A8886;
	border-left: 1px solid #6A8886;
}
.nav_box {
	padding: 5px;
	width: 95%;
	border: 1px dashed #556F6C;
	margin-right: auto;
	margin-left: auto;
}
strong {
	color: #A75A56;
}
form {
	font: 13px Arial, Helvetica, sans-serif;
	color: #A75A56;
}
input {
	background: #FFFFCC;
	border: 1px solid #556F6C;
	font-size: 14px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
textarea {
	font: 14px Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFCC;
	border: 1px solid #556F6C;
}
select {
	font: 14px Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFCC;
	border: 1px solid #556F6C;
}
