@charset "utf-8";


#navMenu {
	margin:0;
	width:1200px;
 }

  #navMenu ul {
    margin:0;
    padding:0;
    line-height:30px;
 }

  #navMenu li {
    margin:0;
    padding:0;
    list-style:none;
    float:left;
    position:relative;
    background:#999;
 }

  #navMenu ul li a {
	text-align:center;
	height:30px;
	width:133.3333333px;
	display:block;
	color:#3b6a9a;
	font-family:Georgia, "Times New Roman", Times, serif;
	text-decoration:none;
	color:#FFF;
	background-color: #3b6a9a;
	font-weight: bold;
 }

 /*********************************************/
 /* hide menu and allow it to return */
 /*********************************************/

	#navMenu ul ul {
	position:absolute;
	visibility:hidden;
	top:30px;
 }

  #navMenu ul li:hover ul {
    visibility:visible;
    z-index:9999; 
 }

  /**********************************************/

  /*sets top level hover color*/

  #navMenu li:hover {
	background-color: #97c9dd;
 }

  /*sets link items hover color and background*/

  #navMenu ul li:hover ul li a:hover {
    color:#3b6a9a;
    background:#97c9dd;
 }

  /* Changes text color on hover for main menu hover*/

  #navMenu a:hover {
	color:#3b6a9a;
	background:#97c9dd;
 } 
  
 /* Contains the Float */

 .clearFloat {
    clear:both; 
    margin:0;
    padding:0;
 }

 /* IE7 Display Fix */

 #navMenu ul li { 

  display: inline; 
 
 }