/*
## menu.css - Contains style for menu
*/

/* common style for <ul> elements */
.nav,
.nav ul {
  list-style-type: none;
  padding: 0;
}

/* Top menu style */
#navMain li {
  float: left;
}

#navMain li a {
  display: block;
  padding: 10px 10px;
  color: #aeb0b2;
  font-weight:bold;
}

#navMain li a:hover {
  color: #a8b40a;
  text-decoration:none;
}

#navMain a.current {
  color: #a8b40a;
}

/*TODO: refactor code, get rid of inline-block element */
/*Sub menu style */

#navSub a {
  font-weight:bold;
  color: #aeb0b2;
  margin-left: 10px;
  display: block;
  display: inline-block;
}

#navSub a:hover {
  color: #a8b40a;
  text-decoration:none;
}

#navSub a.current {
  color: #a8b40a;
}

#navSub ul {
  padding-left: 10px;
}

#navSub ul a {
  font-weight: normal;
  margin-left: 0;
}

#navSub ul li a {
  padding-left: 15px;
  background-image:url(../GFX/bullittGray.jpg);
  background-repeat:no-repeat;
}

#navSub ul li .active {
  padding-left: 15px;
  background-image:url(../GFX/bullittYellow.jpg);
  background-repeat:no-repeat;
}

#navSub li {
 margin-bottom:5px;
}

#navSub li ul li{
  padding-left: 10px;
  margin-top: 5px;
}