/* menu.css */

#Menu ul {
  width: 100%;
  list-style-type: none;
  height: 35px;
  background: transparent url(/images/menu/background.png) no-repeat top;
}
#Menu ul li {
  float: left;
}
#Menu ul li a {
  display: block;
  margin: 0px 15px;
  padding: 0 10px;
  color: white;
  font-weight: bold;
  line-height: 35px;
  text-decoration: none;
  text-transform: uppercase;
}

#Menu ul li a.selected,
#Menu ul li a:hover {
  background: transparent url(/images/menu/hover_left.gif) no-repeat bottom left;
  color: black;
  padding-right: -10px;
}
#Menu ul li .selected .right,
#Menu ul li a:hover .right {
  background: transparent url(/images/menu/hover_right.gif) no-repeat bottom right;
  display: block;
  margin-right: -10px;
  padding-right: 10px; 
}