
/* --- the style "menu-container" holds the main menu list as well as providing a bg fix for iE6 --- */
#menu-container {
  background: url(../images/menu-bg.jpg);
}

#menu-container .logo {
  float: left;
  font-size: 10px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  display: inline;
}

#menu-container .logo a {
  background: url(../images/logo.jpg) no-repeat left top;
  text-decoration: none;
  display: block;
  text-indent: -999em;
  width: 180px;
  height: 79px;
}

#menu-container .logo a:hover {
  background: url(../images/logo-over.jpg) no-repeat left top;
  text-decoration: none;
  display: block;
  text-indent: -999em;
}

#menu-container .logo2 {
  float: left;
  font-size: 10px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  display: inline;
}

#menu-container .logo2 a {
  background: url(../images/logo2.jpg) no-repeat left top;
  text-decoration: none;
  display: block;
  text-indent: -999em;
  width: 180px;
  height: 79px;
}

#menu-container .logo2 a:hover {
  background: url(../images/logo2.jpg) no-repeat left top;
  text-decoration: none;
  display: block;
  text-indent: -999em;
}

#nav {
  background: url(../images/menu-bg.jpg) no-repeat;
  background-color:#040265;
  height: 79px;
  font-family: Frutiger, Verdana, Arial, Helvetica, sans-serif;
  font-size: 14px;
  margin-left: 180px;
}

#nav li {
  /*float the main list items*/
	float: left;
  display: block;
  border-top: 1px solid #121172;
  letter-spacing: normal;
  font-weight: normal;
}

#nav li.off ul, #nav li.on ul {
  /*hide the subnavs*/
  display: none;
}

#nav li a {
  /*for all links in the list*/
  	color: #FFF;
  display: block;
  padding: 10px 16px 10px 16px;
  text-decoration: none;
  border-right: 1px solid #040265;
}

#nav li.off ul, #nav li.on ul {
  /*put the subnavs below and hide them all*/
  	display: none;
  position: absolute;
  top: 33px;
  left: inherit;
  margin-top: 10px;
}

#nav li.on ul {
  /*display active subnav list*/
  display: block;
}

#nav li.on ul a, #nav li.off ul a {
  
  /*ie doesn't inherit the float*/
 	border: 0;
  color: #f7b515;
  width: auto;
  height: 13px;
  text-decoration: none;
  font-size: 11px;
}

#nav li.on ul {
  /*display the current topic*/
  	display: block;
}

#nav li.off:hover ul {
  /*  display the other topics when their parent is hovered */
    display: block;
  z-index: 3000;
}

#nav li.off a:hover, #nav li.off:hover a {
  color: #f7b515;
  text-decoration: none;
}

#nav li.off ul, #nav li.on ul {
  /*put the subnav below*/
  top: 33px;
}

#nav li.off:hover ul, #nav li.over ul {
  display: block;
  z-index: 3000;
}

#nav li.off a:hover, #nav li:hover a, #nav li.over a {
  background-color: #040265;
  color: #ffffff;
  text-decoration: none;
}

