/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	background: #FFFFFF url(images/siteback.gif) repeat-x top left;
	margin: 0px; /* Always set margins to 0. Some browsers automatically apply them. */
	padding: 0px; /* Always apply padding if you apply margins */
	text-align: left; /* Aligns 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, ul, li {
	font-size: 12px;
	color: #000047;
}
h1 {
	font-size: 18px;
	color: #90601A;
}
h2 {
}

/* 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;
}

/* ----- Header ----- */

/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
}

/* ----- Main Nav ----- */

/* 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: #DBEBF9;
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	margin: 0px;
	padding: 0px;
	width: 160px;
}

/* 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: 10px;
	color: #90601A;
	text-decoration: none;
	text-transform: uppercase;
	text-align: right;
	display: block;
	width: 150px;
	border-bottom: 1px dashed #D6C2A4;
	padding: 5px 15px 5px 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 {
	width: 150px;
	background: #E8F2FA;
	border-bottom: 1px solid #938878;
	color: #003CA0;
}
ul#mainnav li a.current:link, ul#mainnav a.current:visited {
	width: 150px;
	background: none;
	border-bottom: thin double #938878;
	color: #90601A;
}

/* ----- Body ----- */

/* Styles the table that serves as the container for the content and navigation.*/
table#container {
	background: #fff url(images/bodyback.jpg) repeat-y left top;
	width: 750px;
	margin: 0px;
	padding: 0px;
	border: 0px;
}

/* Aligns content in the tablecontainer's td tags to the top. Same as <td valign="top">. */
table#container td {
	vertical-align: top;
}

td#sidebar {
	width: 160px;
}

td#sidebar p {
	font-size: 10px;
	color: #90601A;
	text-decoration: none;
	text-transform: uppercase;
	text-align: right;
	width: 150px;
	border-bottom: 1px dashed #D6C2A4;
	padding: 5px 15px 5px 5px;
}

td#sidebar .img {
	border: 1px #000000 solid;
	margin: 10px 0px 10px 5px;
}


/* This class will define the td that hold the readable content (the body copy). */
.bodycopy {
	vertical-align: top;
	padding: 10px 10px 10px 20px;
}

/* ----- Footer ----- */

/* Creates the div container for the footer. */
div#footer {
	background: #ffffff url(images/footer.jpg) no-repeat top left;
	width: 750px;
	height: 33px;
	margin: 0px;
	text-align: center;
	padding-top: 10px;
}
div#footer p {
	padding-top: 10px;
	text-align: center;
}
div#footer a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	text-decoration: none;
	color: #ffffff;
}

div#footer a:hover, div#footer a:active {
	color: #B22808;
}

/* ----------------- COPYRIGHT ----------------- */

/* Creates DIV container for the copyright. */
div#copyright {
	width: 750px;
	margin: auto;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #666666;
	padding: 15px 0px 5px 0px;
	clear: both;
}

/* Set link style for copyright. */
div#copyright a:link, div#copyright a:visited, div#copyright a:active {
	text-decoration: none;
	font-weight: bold;
	color: #666666;
}

div#copyright a:hover {
	color: #333333;
}

/* ----------------- IMAGE ELEMENTS ----------------- */

img.left {
	float: left;
}
img.right {
	float: right;
	margin: 0px 0px 0px 20px;
	border: 1px #000080 solid;
}
object {
	float: right;
	margin: 0px 0px 0px 20px;
}

clear {
	clear: both;
}

/* ----------------- CUSTOM CLASSES ----------------- */