/*
## menu.css - Contains style for menu
*/

/* common style for <ul> elements */
.nav,
.nav ul {
  list-style-type: none;
  padding: 0;
}

/* Top menu style */

#navMain {
  width: 960px;
  height: 59px;
  background: transparent url(menyBg.gif) repeat-x scroll left top;
}

#navMain li.first {
  border-left: none;
}

#navMain li {
  float: left;
  text-align: center;
  border-left: 1px solid #f19c9f;
}

#navMain li a {
  display: block;
  padding: 12px 26px 11px 26px;
  color: #fff;
  background: transparent url(menyBg.gif) scroll repeat-x top left;
  text-transform: uppercase;
  font-weight: bold;
  /*font-size: 122%;*/
  font-size: 16px;
  line-height: 18px;
}

#navMain li a span {
  text-transform: none;
  display: block;
  font-weight: normal;
  /*font-size: 78%;*/
  font-size: 12px;
}

#navMain li a:hover {
  text-decoration: none;
  background: transparent url(menyBgHover.gif) scroll repeat-x top left;
}

#navMain li a.current, #navMain li a.active {
  background: transparent url(menyBgOver.gif) scroll repeat-x top left;
}


/*TODO: refactor code, get rid of inline-block element */
/*Sub menu style */

#navSub li {
  border-bottom: 1px solid #f6c3c5;
}

#navSub ul li {
  border-bottom: none;
}

#navSub a {
  font-size: 122%;
  display: block;
  padding: 8px 0;
}

#navSub ul a {
  font-size: 110%;
}

#navSub a.active, #navSub a.current {
  color: #004990;
}

#navSub ul {
  padding-left: 10px;
}

#navSub ul li a {
  padding: 4px 4px 4px 10px;
  font-weight: normal;
  margin-left: 0;
}

#navSub ul li a.last {
  margin-bottom: 8px;
}