/* CSS Document */

.menu {
  padding:0; 
  margin:0; 
  list-style-type:none; 
  white-space:nowrap;
  }
.menu li {
  float:left;
  min-width:45px;
  }
.menu a {
  position:relative;
  display:block; 
  text-decoration:none; 
  min-width:45px; 
  float:left; 
  }
* html .menu a {
  width:45px;
  }
.menu a span {
  display:block; 
  color:#FFFFFF;
  font-size: 11px;
  font-family:Arial, Helvetica, sans-serif;
  background-color:#000066;
  background-image:url(images/bkgrd_navbar.gif); 
  border:1px solid #FFFFFF; 
  border-width:1px 1px; 
  text-align:center; 
  padding-top:4px;
  padding-bottom:4px;  
  cursor:pointer;
  /* ADJUST THESE FOR THE OVERALL WIDTH OF THE MENU. PADDING ON BOTH OF THE LINKS */
  padding-left:11px;
  padding-right:11px;
  }
* html .menu a span {
  width:45px; 
  cursor:hand; 
  width:45px;
  }
.menu a b {
  display:block; 
  border-bottom:1px solid #06a;

  }
.menu a em {
  display:none;
  }
.menu a:hover {
  background:#FFFFFF;
  }
.menu a:hover span {
  color:#FFFFFF;   /* Changes the color of the text on MouseOver  */
  background:#FF9600;    /* Changes the color of the block background on MouseOver  */
  }
.menu a:hover em {
  display:block; 
  overflow:hidden; 
  border:2px solid ;
  font-size: 1px;
   
  /* First color changes the color of the chevron ----- Second color changes the color of the background behind the chevron  */  
  border-color:#000066 #FFFFFF;    
  border-width:0px 0px 0px 0px; 
  /*                 A     B  C  D       */
  position:absolute; 
  left:50%; 
  margin-left:0px;
  }