/* menu.css */

#Menu {
  height: 30px;
  background: darkgray;
}
#Menu ul {
  width: 100%;
  list-style-type: none;
}
#Menu ul li {
  float: left;
}
#Menu a {
  display: block;
  margin-right: 1px;
  padding: 0 10px;
  color: white;
  font-weight: bold;
  line-height: 30px;
  text-decoration: none;
  text-transform: uppercase;
}
#Menu a:hover {
  background: gray; 
}
#Menu .selected {
  background: white;
  color: gray; 
}
#Menu .selected:hover {
  color: white; 
}