@charset "utf-8";
/* CSS Document */

body  {
	font-family: Georgia, serif;
	font-size: 95%;
	font-weight: 500;
	background: #9cb0ca;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #012849;
}

a {text-decoration: underline; color: #000;}
a:link {text-decoration: underline; color: #000;}
a:visited {text-decoration: underline;}
a:active {text-decoration: underline;}
a:hover {text-decoration: underline; color: #5f7ea8;}

h1 {

       color: #00457c;

}

h2 {

       color: #00457c;

}

h3  {

       color: #00457c;

}

img { border: none; }

#container { 
	width: 100%;  /* this will create a container 80% of the browser width */
	background: #9cb0ca;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
        height: 130px;
	background: #5f7ea8; 
	background-image:url(../images/topbar.gif);
	background-position:right;
	background-repeat:repeat-x; 
	border-bottom: 1px solid #00457c;
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */

}


#mainContent { 
	margin: 0; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
	padding: 0px;
	background: #9cb0ca; 
	background-image:url(../images/bodybg.gif);
	background-repeat:repeat-x;
	height: 100%; 
} 

#mainContentText {
        background: #fff;
	margin-left: 25px;
        width: 600px; 
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 10px;
	border: 1px solid #5f7ea9;

}

#footer { 
	padding: 20px 10px 10px 50px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	font: 80% Arial, Helvetica, sans-serif;
	font-weight:bold;
	color: #00447b;
} 

#footer a {text-decoration: underline; color: #00447b;}
#footer a:link {text-decoration: underline; color: #00447b;}
#footer a:visited {text-decoration: underline;}
#footer a:active {text-decoration: underline;}
#footer a:hover {text-decoration: underline; color: #fff;}

 hr {
   border: 0;
   width: 80%; 
   color: #000;
   background-color: #000;
   height: 2px;
   text-align: left;
  
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.quoteimage {
 position: absolute;
 top: 150px;
 left: 670px;
}

.quoteimage a {
 border: none;
}

/* drop-down navigation bar*/

.nav01 {
                z-index:110;
                position:absolute;				
                left: 11px;
                top:106px;
		background-image:url(../images/topnavbar_bg.gif);
	        background-repeat:none;
		margin-left: 0px;
		padding-left: 0px;
		height: 22px;
		width: 657px;
}

.nav01 ul {

                padding:0;
		padding-left: 40px;
		padding-top: 2px;
                margin:0;
                list-style:none;
                font: 100% Arial, Helvetica, sans-serif;
                font-weight: bold;
}
 
.nav01 li {

                float:left;
                position:relative;
}
              
.nav01 li a {
                color:#00457c;								
                font-weight:700;
                margin-right:15px;
                padding-right:15px;
                text-decoration:none;
                display:block;
}
               
.nav01 li a:hover {
                color:#567383;
}

 
.nav01 li ul {

                display:none;
                position:absolute;
                position-top:16px;
                left:0;
                width:12em;

}
               
.nav01 li ul a {

                background-color:#afb1b4;
                font-weight:700;
                padding:5px;
                width:12em;
                color:#00457c;
                margin-top:0px;
 }
              
.nav01 li ul a:hover {
                color:#fff;
                background-color:#00457c;
}

.nav01 li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */

                top:auto;
                left:auto;
}

.nav01 li:hover ul, li.over ul{

                display:block;
}


/* end of top nav */




