﻿#navMenu {
    margin:0;
    width:auto;
}

#navMenu ul {
	margin:0;
	padding:0;
	line-height:30px;
	font-size:12px;
	font-weight:900;
}

#navMenu li {
    margin:0;
    padding:0;
    list-style:none;
    float:left;
    position:relative;
    background:#000;  /*--Level 1 and level 2 block background color--*/ 
}

#navMenu ul li a {
    text-align:left; padding-left:10px; 
    height:32px;	/*--Level 1 block height--*/
    padding-left:10px;
    padding-right:10px;
    /*--padding-top:5px;--*/ /*--Center text in block--*/
    /*--width:85px; --*/
    display:block;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration:none;
    color:#91CCCC;		/*--Level 1 and level 2 font color--*/
    border-right:1px solid #fff;
    /*-- text-shadow:1px 1px 1px #000; --*/ /*--Level 1 and level 2--*/
}

#navMenu ul ul {
    position:absolute;
    visibility:hidden;
    top:33px;
}

#navMenu ul li ul li a {
	width:85px;
	border-bottom:1px white solid;
	border-right:0px;
}

#navMenu ul li:hover ul {
    visibility:visible;
    z-index:9999;
}

  /**********************************************/

  /*sets top level hover color*/

#navMenu li:hover {
   background:#000;
   
}

  /*sets link items hover color and background*/

#navMenu ul li:hover ul li a:hover {
    color:#fff;  /*--Level 1 and level 2 font color--*/
    background:#000;
    text-decoration:underline; 
    /*--text-align:left; /*--Works only for hover--*/
}

  /* Changes text color on hover for main menu hover*/

#navMenu a:hover {   
  color:#fff;  /*--Level 1 hover font color--*/
} 
  
 /* Contains the Float */

.clearFloat {
    clear:both; 
    margin:0;
    padding:0;
}

 /* IE7 Display Fix */  
 
#navmenu #holder ul li {
  display: inline;     
}   