/* ----------------- REDEFINES THE TAG SELECTORS ----------------- */

body {
	margin: 0px;
	padding: 0px;
	text-align: center;
	background: #333333 url(images/bg.gif) repeat-y left top;
	font-family: arial;
}

/* 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 {
	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;
	text-align: left;
	font-family: arial;
	margin-left: 15px;
	margin-right: 15px;
}
h1 {
}
h2 {
	font: bold 13px Arial, Helvetica, sans-serif;
	color: #000000;
	text-transform: capitalize;
	padding-bottom: 2px;
	height: 25px;
	padding-top: 10px;
	padding-left: 15px;
	border-bottom: 1px solid #00B900;
}

/* Creates the general link style for the site. This is not the main navigation.  */
#content a:link, #content a:visited, #content a:active {
	color: #000000;
}
#content a:hover {
	color: #00BB00;
}
/* ----------------- 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 {
	height: 150px;
}
/* Creates the div container for the footer. */
div#footer {
	clear: both;
	font-size: 11px;
	color: #FFFFFF;
	font-weight: normal;
	width: 755px;
	background: #FFFFFF url(images/footer.gif) no-repeat left bottom;
	text-align: left;
	padding-left: 15px;
	border-top: 1px solid #13487E;
	font-family: Arial, Helvetica, sans-serif;
	height: 59px;
	padding-top: 20px;
}
div#footer p {
}
div#footer a:link, a:visited, a:active {
	font: bold 11px Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	text-align: left;
	text-decoration: none;
}
div#footer a:hover {
	color: #0093B5;
}
/* ---------------------------- MAIN NAVIGATION ----------------------------  */

/* Creates the container for the navbar and centers it.*/ 
div#navcontainer {
	width: 770px;
	
	}
/* 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 {
	width: 770px;
	list-style-type: none;
	background: #FFFFFF url(images/mainnav.jpg) no-repeat left top;
	margin: 0px;
	float: left;
	height: 32px;
	padding: 0px;
	}

/* 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: 5px auto 0px;
	padding: 0px;
	font-family: Arial, Helvetica, sans-serif;
	border-right: 1px solid #000000;
}

/* 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 {
	text-decoration: none;
	text-align: center;
	display: block;
	padding: 5px 20px;
	margin: 0px;
	color: #00B900;
	font: bold 11px Arial, Helvetica, sans-serif;
}
/* Creates the hover and "on" status style, which can be applied directly to a single link. */
ul#mainnav li a:hover {
	color: #0093B5;
	font-weight: bold;
	font-family: arial;
}
ul#mainnav li a.current:link, ul#mainnav li a.current:visited {
	color: #FFFFFF;
	font-weight: bold;
	font-family: arial;
}

div#copyright {
	font-size: 9px;
	color: #FFFFFF;
	padding-bottom: 5px;
	margin-top: 3px;
}

div#copyright a:link, div#copyright a:visited {
color: #FFFFFF;
font-size: 9px;
}
div#copyright a:hover {
	color: #0093B5;
font-size: 9px;
}

/* ----------------- IMAGE ELEMENTS ----------------- */

img.left {
	float: left;
	padding: 5px;
	border: 1px solid #0F427B;
	clear: both;
}
img.right {
	float: right;
	margin-left: 10px;
	border: 1px solid #00CC00;
	padding: 3px;
	clear: both;
	margin-bottom: 10px;
}
clear {
	clear: both;
}

/* ----------------- CUSTOM CLASSES ----------------- */
div#container {
	width: 770px;
	margin: 0px auto;
	padding: 0px;
	background: #FFFFFF url(images/container_bg.gif) repeat-y left top;
}
div#content {
	float: right;
	width: 564px;
	padding: 10px 0px;
	margin: 1px 0px 0px;
	font: 11px Arial, Helvetica, sans-serif;
	text-align: left;
	background: #FFFFFF;
	border-left: 1px solid #000000;
}

div#leftdiv {
	float: left;
	margin: 1px 0px 0px;
	padding: 0px;
}
address {
	font: normal 11px arial;
	width: 180px;
	margin: 15px 0px 0px;
	color: #FFFFFF;
	padding: 5px 10px 5px 15px;}
div#leftdiv ul li {
	font: normal 11px arial;
	color: #FFFFFF;
	list-style:inside;}
strong {
	color: #0F427B;
}
.cta {
	font: bold 12px Arial, Helvetica, sans-serif;
	color: #B00A0A;
}
div#copyright a:hover {
	color: #0093B5;
font-size: 9px;
}
address strong {
	color: #13487E;
	font-family: Arial, Helvetica, sans-serif;
}
#content ul {
	margin-left: 10px;
	list-style: outside;
	font: 12px Arial, Helvetica, sans-serif;
}
.toplink {
	font: bold 10px Arial, Helvetica, sans-serif;
}

