/*
## menu.css - Contains style for menu
*/

/* common style for <ul> elements */
.nav,
.nav ul {
  list-style-type: none;
  padding: 0;
}

/* Utils menu style */
#navUtils {
  float: right;
  color: #606060;
  padding: 0px 10px 5px 5px;
}

#navUtils li {
  float: left;
  padding: 10px 0px;
}

#navUtils li a {
  color: #606060;
  padding: 0px 5px;
}

#navUtils li.current a {
  color: #007fc4;
  font-weight: bold;
}

#navUtils li a:hover {
  color: #007fc4;
}

/* Top menu style */
#navMainContainer {
  padding-left: 20px;
  background: url(../GFX/menu-bg.gif) top left repeat-x;
}

#navMain {
  border-left: 1px solid #d5eefa;
}

#navMain li {
  border-right: 1px solid #d5eefa;
  float: left;
}

#navMain li.current {
  background: #d5eefa url(../GFX/menu-bg-active.gif) top left repeat-x;
}

#navMain li a {
  display: block;
  padding: 10px 17px;
  color: #fff;
  font-weight: bold;
}

#navMain li a:hover {
  background: #d5eefa url(../GFX/menu-bg-active.gif) top left repeat-x;
}

/*TODO: refactor code, get rid of inline-block element */
/*Sub menu style */
#navSub {
  padding-top: 10px;
  padding-left: 20px;
}

#navSub a {
  font-size: 108%;
  font-weight: bold;
  color: #35342c;
  margin-bottom: 5px;
  display: block;
  display: inline-block;
}

#navSub a.active {
  color: #007fc4;
  font-weight: bold;
}

#navSub li {
  padding-left: 15px;
  background: url(../GFX/menu-list-type.gif) 0px 4px no-repeat;
}

#navSub ul li {
  padding-left: 15px;
  background: url(../GFX/menu-list-type-small.gif) 0px 5px no-repeat;
}

#navSub ul a {
  font-weight: normal;
  margin-left: 0;
}

#navSub ul li a {
}