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

body {
	margin: 0px;
	padding: 0px;
	text-align: center;
	font-family: arial;
	background: #ECF8FF;
}

/* 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: 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;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	padding-left: 20px;
	padding-right: 20px;
}
h1 {
}
h2 {
	font: bold 16px Arial, Helvetica, sans-serif;
	color: #FFFF99;
	text-transform: uppercase;
	padding-left: 20px;
	background: #142F7C;
	margin: 0px;
	padding-top: 10px;
	padding-bottom: 10px;
}

li {
margin:3px 0 3px 25px;
padding:0;

font-size:12px;
}


/* 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;
}

/* Creates DIV container for header. Setting the left and right margins to auto will center DIV. */
div#header {
	width: 770px;
}

/* 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 {
	clear: both;
	padding-top: 5px;
	padding-bottom: 5px;
	color: #FFFFFF;
	width: 575px;
	float: right;
	text-align: left;
	padding-left: 20px;
	background: #4169E1;
	font: normal 12px Arial, Helvetica, sans-serif;
}
div#footer p {
}
div#footer a:link, a:visited, a:hover, a:active {
	font: bold 11px Arial, Helvetica, sans-serif;
	color: #FFFFFF;
}
div#footer a:hover {
	color: #FFFF99;
}
/* ---------------------------- MAIN NAVIGATION ----------------------------  */

/* Creates the container for the navbar and centers it.*/ 
div#navcontainer {
	width: 770px;
	clear: both;
	
	}
/* 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;
	margin: 0px;
	list-style-type: none;
	padding: 0px;
	float: left;
	background: url(images/mainnav.jpg) no-repeat left top;
	height: 33px;
	}

/* 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: 0px auto;
	padding: 0px;
	font-family: arial;
	border-right: 1px solid #FFFFFF;
}

/* 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: #FFFFFF;
	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, ul#mainnav li a.current:link, ul#mainnav li a.current:visited {
	color: #FFFF99;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
}
div#copyright {
	font-size: 11px;
	color: #FFFFFF;
	padding-bottom: 5px;
	margin-top: 5px;
}

div#copyright a:link, div#copyright a:visited {
color: #FFFFFF;
font-size: 11px;
}
/* ----------------- IMAGE ELEMENTS ----------------- */

img.left {
	float: left;
	padding-right: 7px;
}
img.right {
	float: right;
	border: 1px solid #4169E1;
	padding: 5px;
	margin-left: 10px;
	margin-top: 20px;
	margin-right: 10px;
}
clear {
	clear: both;
}

/* ----------------- CUSTOM CLASSES ----------------- */
div#container {
	width: 770px;
	margin: 20px auto 0px auto;
	padding: 0px;
}
div#content {
	float: right;
	width: 595px;
	margin: 0px;
	font: 12px/17px Arial, Helvetica, sans-serif;
	text-align: left;
	background: #FFFFF4;
}
#content ul li {
	background: url(images/bullet.gif) no-repeat left center;
	list-style: none;
	margin: 0px;
	padding-left: 15px;
}

div#leftdiv {
	float: left;
	margin: 0px;
	padding: 0px;
	width: 175px;
}
address {
	font: normal 11px Arial, Helvetica, sans-serif;
	margin: 0px;
	color: #000000;
	text-align: center;
	background: #FFFF99;
	padding-top: 25px;
}
address strong {
	font-weight: bold;
	color: #000000;
}

#listfloatleft {
float:left;
margin:15px 40px 20px 35px;
padding:0;
}

div#img {
	float: right;
}
.current {
	font: 12px  Arial, Helvetica, sans-serif;
	color: #000000;
}
h4 {
	font: bolder 16px Arial, Helvetica, sans-serif;
	color: #000000;
	display: inline;
}
strong {
	color: #4169E1;
}
.textcenter {
	text-align: center;
}
.cta {
	font: bold 16px Arial, Helvetica, sans-serif;
	color: #000000;
}
.picborder {
	padding: 5px;
	border: 1px solid #D6D6D6;
}

