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

body {
	background: #00225E;
	margin: 0px; 
	padding: 0px 0px 10px 0px;
	text-align: center; 
}

/* 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: 12px Verdana, Arial, Helvetica, sans-serif;
	text-align: left; 
}
/* Redefines the p tag */
p {
	font-size: 12px;
}
h1 {
	color: #003;
	font-size: 14px;
	font-weight: bold;
	margin: 5px;
	padding: 0px;
	border-bottom: solid 1px;
}

/* Creates the general link style for the site. This is not the main navigation.  */
a:link, a:visited {
color: #0073BC;
}

a:hover, a:active {
text-decoration:none;
}


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

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


td#header {
text-align: right;
background: url(images/logo.gif) no-repeat #000;
}

td#left {
width: 189px;
background: url(images/bg_left.gif) no-repeat #000;
}

td#right {
width: 591px;
background-color: #FFF;
}

/* Styles the table that serves as the container for the content and navigation.*/
table#container {
	border: solid 1px #000;
	border-top: 0px;
	margin-left: auto; 
	margin-right: auto;
}

/* 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. */
td#footer {
font: 8px;
background-color: #000;
color: #0073BC;
}

td#footer p {
text-align: center;
margin-left: auto;
margin-right: auto;
}

td#footer a:link, td#footer a:visited {
font-size: 9px;
color: #0073BC;
}

td#footer a:hover, td#footer a:active {
text-decoration: none;
}

div#address {
color: #0073BC;
font-weight: bold;
font-size: 12px;
text-align: center;
margin-right: auto;
margin-left: auto;
}


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

.left {
	float: left;
}
.right {
	float: right;
}
.center {
	text-align: center;
}
clear {
	clear: both;
}

div#copyright, div#copyright a {
font-size: 7px;
text-align: center;
margin-right: auto;
margin-left: auto;
color: #FFF;
}

/* ----------------- 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 {
	margin: 0px;
	padding: 0px;
	color: #FFF;
}

/* Removes the default bullets. */
ul#mainnav li {
	list-style: none;
	font-size: 11px;
}

/* 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;
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	display: block;
	margin: 4px 4px 4px 0px;
	padding: 2px 4px 0px 6px;
}
/* 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 {
	font-weight: bold;
	color: #0FF;
	text-decoration: undlerline;
}

/* ----------------- CUSTOM CLASSES ----------------- */
.content {
	padding: 5px 10px 10px 10px;
}

.picborder {
	border: solid 2px #0073BC;
	padding: 0px;
	margin: 0px 5px 0px 5px;
}