/* menu.css */

#nav {
  padding: 0;
  font-size: 14px;
  font-weight: bold;
  background: #2A8AC6 url(../images/background-menu.gif) no-repeat 100%;
}

/************** ALL LEVELS  *************/ /* Style consistent throughout all nav levels */
#nav li { 
  position: relative;
  text-align: left;
  margin: 0;
  height: 52px;
  line-height: 52px;
}
#nav li.over {
  z-index:999;
}
#nav a,
#nav a:hover {
  display: block;
  text-decoration: none;
  border-right: 1px solid white;
}
#nav .last a,
#nav .last a:hover {
  border-right: none;
}
#nav span {
  display: block;
  cursor: pointer;
  white-space: nowrap;
}
#nav li ul span {
 white-space: normal;
}

/************ 0 LEVEL  ***************/
#nav li {
  float:left;
}
#nav li.active a {
  color: white;
}
#nav a {
  float: left;
  padding: 0 5px 0 4px;
  color: white;
  font-weight: bold;
}
#nav li.over a,
#nav a:hover {
  color: white;
}
#nav a:hover {
  background: #61B4E7;
}

/************ 1ST LEVEL ************/
#nav ul li {
  float: none;
  margin: 0;
  height: 23px;
  line-height: 23px;
}
#nav ul li.over {
  background: #d5e4eb url(../images/nav_divider.gif) repeat-x 0 100%;
}
#nav ul li.last {
  background: none;
  padding-bottom:0;
}

#nav ul a,
#nav ul a:hover {
  float:none;
  padding:0;
  background: none;
}
#nav ul li a {
  font-weight:normal !important;
}

/************ 2ND LEVEL ************/
#nav ul {
  position: absolute;
  width: 200px;
  top: 52px;
  left: -10000px;
  background: transparent url(../images/levelmenu.png) no-repeat top; 
}

/* Show menu */
#nav li.over > ul {
  left: 0;
}
#nav li.over > ul li.over > ul {
 left: 198px;
}
#nav li.over ul ul {
  left:-10000px;
}
#nav ul li a {
  color: black !important;
  border: none;
}
#nav ul li.last a {
  background: transparent url(../images/levelmenulast.png) no-repeat 0 10px;
}
#nav ul li a:hover {
  background:#37A2D7;
  color: white !important;
  border: none;
}
#nav ul span,
#nav ul li.last li span {
  padding: 0 5px 5px 15px;
}

/************ 3RD+ LEVEL ************/
#nav ul ul {
  top: -1px;
}