/*
## 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: 710px;
  float: left;
  clear: left;
}

#navMain li {
  float: left;
}

#navMain li a {
  display: block;
  padding: 10px 17px;
  color: #CD9547;
  text-transform: uppercase;
}

#navMain li a:hover {
  color: #CD9547;
}

/*TODO: refactor code, get rid of inline-block element */
/*Sub menu style */

#navSub {
  margin-bottom: 11px;
  padding-left: 10px;
  clear: both;
  background: #F2F2F2 url(../GFX/navSub.gif) repeat-x 0 100%;
  border-top: 1px solid #CCC;
}

#navSub li {
  float: left;
  display: inline;
  border-right: 1px solid #CCC;
}

#navSub li.last {
  border: none;
}

#navSub a {
  font-size: 92%;
  color: #3F3F3F;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: .02em;
}

#navSub a.current {
  font-weight: bold;
}

#navSub ul {
  padding-left: 10px;
}

#navSub ul a {
  font-weight: normal;
  margin-left: 0;
}

#navSub ul li a {
  padding-left: 10px;
}