/* menu.css */

#Menu {
  height: 30px;
  background: black url(/images/menu/background-menu.gif) repeat-x;
  border-top: 1px solid white;
  border-bottom: none;  
}

#Menu ul {
  width: 100%;
  list-style-type: none;
}

#Menu ul li {
  float: left;
}

#Menu a {
  display: block;
  margin-right: 1px;
  padding: 0 9px;
  color: white;
  font-weight: bold;
  line-height: 30px;
  text-decoration: none;
  text-transform: uppercase;
}

#Menu a:hover {
  background: #FEBD11;
  color: black;
}

#Menu .selected {
  background: #FEBD11;
  color: black; 
}

#Menu .selected:hover {
  color: white; 
}