/*
## menu.css - Contains style for menu
*/

/* Top menu style */
#navMain {
  float: left;
  width: 884px;
  list-style-type: none;
  padding: 0;
  background:#C00000;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 90%;
}

#navMain li {
  float:left;
}

#navMain li a {
  display:block;
  padding: 4px 8px;
  color:#fff;
}

#navMain li a:hover {
  text-decoration: underline;
}

#navMain li.current {
  background: #FF3535;
}
/*Sub menu style */
#navSub {
  list-style-type: none;
  padding-left: 0;
  margin-top: 8px;
}

#navSub a {
  font-size: 90%;
  font-weight: bold;
  color: #696E6A;
  padding: 4px 10px;
  display:block;
  display:inline-block;
  border-bottom: 1px solid #DDE0D9
}

#navSub a:hover {
  color: #463C81;
}

#navSub a.current {
  color:#444444;
}

#navSub ul {
  padding-left:10px;
  list-style-type:none;
}

#navSub ul a {
  font-weight:normal;
  margin-left:0;
}

#navSub ul li a {
  padding-left:10px;
  background:url(../GFX/nav-sub-bullet.gif) center left no-repeat;
}
