/*
 * Navbar for b2evolution cobblestone skin
 */

/* @group Toolbar */

/* Toolbar Styles */

div#navcontainer {
  height: 1.5em;
  background: #aa0202;
  color: white;
  padding: 5px;
  font-family: verdana, arial, sans-serif;
  position: relative;
}

div#navcontainer li#current,
div#navcontainer li.currentAncestor {
  font-weight: bold;
}

div#navcontainer li#current ul,
div#navcontainer li.currentAncestor ul {
  font-weight: normal;
}

div#navcontainer #current:hover {
  text-decoration: none;
}

div#navcontainer .currentAncestor {
}

/* Parent - Level 0 */

div#navcontainer ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

div#navcontainer li {  /*float the main list items*/
  margin: 0;
  float: left;
  position: relative; /* allow children to position relatively */
  padding-right: 25px;
  padding-bottom: 5px;
}

li > ul { /* reset all for all but IE */
  top: auto;
  left: auto;
}

/* On hover, turn on the subtopic temporarily */
/* Includes IE6 :hover replacement class */
div#navcontainer li:hover ul,
div#navcontainer li.hover ul {
  display: block;
}

div#navcontainer li ul { /*put the subnav below (must overlap topnav) */
  display: none;
  position: absolute;
  top: 1.5em;
  left: 0px;
  padding: 5px;
  background: #aa0202;
  border: 1px solid white;
  width: 11em;
}

div#navcontainer li ul ul { /* further subnavs pull right */
  right: 0px;
}

div#navcontainer a {
  color: white;
  text-decoration: none;
}

div#navcontainer a:hover {
  color: white;
  text-decoration: underline;
}

div#navcontainer a:active {
  color: white;
  text-decoration: underline;
}

/* @end */
