/* CSS Document
This site uses the following colors: */

.blue { color: #0A50A1; }
.yellow { color: #FFBE11; }
.lightGrey  { color: #EEEEEE); }
.darkGrey  { color: #999999); }
.red {	color: #FF0000; }

/*=======================================================*/
/* Formats the background color, page placement, and fonts for all pages*/

body {
	background: #d4d4cd;
	font-size: small;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin-top: 25px;
	padding: 0;
	}
* html body {
	font-size: x-small; /* for IE5/Win */
	f\ont-size: small; /* other IE versions */
	}

/*=======================================================*/
/* Containment Divs */

#content {
	width: 800px;
	}
#wrapper {
	background-image: url(/images/BG-Page.gif);
	width: 800px;
	margin-left: auto;
	margin-right: auto;
	}
#header {
	height: 105px;
	width: 100%;
	background-image: url(/images/Header.gif);
	}
#nav {
	width: 797px;
	float: right;
	margin-left: 3px;
	}
#leftBlock { /* for regular content pages*/
	width: 559px;
	padding: 10px;
	border-right: solid 1px #EEEEEE;
	float: left;
	}
#rightBlock { /* for regular content pages*/
	width: 200px;
	margin-right: -3px;
	padding: 10px;
	float: left;
	}
#fullWidth {
	width: 775px;
	padding: 10px 20px 10px 10px;
	float: left;
	}
#contactInfo1 {
	width: 380px;
	padding: 10px 20px 10px 10px;
	float: left;
	font-weight: bold;
	}
#contactInfo2 {
	width: 360px;
	padding: 10px 20px 10px 10px;
	float: left;
	font-weight: bold;
	}
#formInstr {
	width: 760px;
	padding: 15px 10px 10px 10px;
	border-bottom: solid 1px #EEEEEE;
	}
#shim {
	width: 800px;
	margin-left: auto;
	margin-right: auto;
	}
#footer {
	margin-top: 5px;
	margin-left: auto;
	margin-right: auto;
	width: 800px;
	}

/*=======================================================*/
/* Text Format */
h1 {
	font-size: 125%;
	font-weight: bold;
	color: #0A50A1;
	margin-bottom: -.5em;
	}
p.list {
	margin-top: -.5em;
	}
p a:link, p a:visited {
	color: 0A50A1;
	text-decoration: none;
	}
p a:hover {
	color: FF0000;
	border-bottom: solid 1px #FF0000;
	text-decoration: none;
	}
td {
	font-size: small;
	}
.negLnHght {
	margin-top: -10px;
	}
.footerPh {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: x-small;
	color: #999999;
	text-align: center;
	padding-top: 3px;
	}
.footerAddr {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: x-small;
	color: #999999;
	text-align: center;
	margin-top: -.75em;
	}
/*=======================================================*/
/* Formats the footer text*/

#footer p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: x-small;
	color: #FFFFFF;
	text-align: right;
	}
#footer p.biz {
	margin-top: 2px;
	margin-bottom: -1em;
	}
#footer p.emd {
	padding-bottom: 2px;
	}
#footer p a, p a:visited {
	text-decoration: none;
	}
#footer p a:hover {
	border-bottom: solid 1px #FF0000;
	}
/*******************************************************************************
 LAYOUT INFORMATION: describes box model, positioning, z-order
 *******************************************************************************/

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal {
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 12px;
	cursor: default;
	width: auto;
	}

/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li {
	background-image: url(/images/Navigation.jpg);
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 12px;
	font: Arial, Helvetica, sans-serif;
	position: relative;
	text-align: left;
	border-right: solid 1px #EEEEEE;
	border-bottom: 1px solid #EEEEEE;
	cursor: pointer;
	float: left;
	}
/*******************************************************************************
 DESIGN INFORMATION: describes color scheme, borders, fonts
 *******************************************************************************/

/* Menu items are a pink or light gray block with padding and no text decoration */
ul.MenuBarHorizontal a {
	display: block;
	cursor: pointer;
	padding: 0.5em 0.75em; 
	color: #0A50A1;
	text-decoration: none;
	font-weight: bold;
	}
#bottomnav ul.MenuBarHorizontal a {
	display: block;
	cursor: pointer;
	padding: 0.5em 0.75em; 
	color: #0A50A1;
	text-decoration: none;
	font-weight: bold;
	}

/* Menu items that have mouse over or focus have purple text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus, #bottomnav ul.MenuBarHorizontal a:hover, #bottomnav ul.MenuBarHorizontal a:focus 
{
	color: #FFBE11;
}


/* clearfix code ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* add the clearfix class to any containter that must enclose floated elements */
/* read the details of how and why this works at http://www.positioniseverything.net/easyclearing.html */
.clearfix:after {
    content: ".";          /* the period is placed on the page as the last thing before the div closes */
	display: block;        /* inline elements don't respond to the clear property */ 
    height: 0;             /* ensure the period is not visible */
    clear: both;           /* make the container clear the period */
    visibility: hidden;	   /* further ensures the period is not visible */
	}
.clearfix {display: inline-block;}   /* a fix for IE Mac */
/* next a fix for the dreaded Guillotine bug in IE6 */
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}