/* menu.css */
 #Menu {
  height: 40px;
}
 
#Menu ul {
  width: 100%;
  margin-left: 4px;
  list-style-type: none;
}
#Menu ul li {
  float: left;
}
 
#Menu a {
  display: block;
  margin-right: 2px;
  padding: 0 0 0 20px;
  color: white;
  font-weight: bold;
  line-height: 36px;
  height: 41px;
  text-decoration: none;
  background: transparent url(/images/structure/bt-menu-left.gif) no-repeat left;
}
#Menu a .btRight {
  display: block;
  background: transparent url(/images/structure/bt-menu-right.gif) no-repeat right;
  height: 40px;
  padding-right: 35px;
}
 
#Menu a:hover {
  background: transparent url(/images/structure/bt-hover-left.gif);
} 
#Menu a:hover .btRight{
  background: transparent url(/images/structure/bt-hover-right.gif) no-repeat right;   
  }
#Menu a.selected {
  background: transparent  url(/images/structure/bt-hover-left.gif);
  color: white;
}
 
#Menu a.selected .btRight{
  background: transparent  url(/images/structure/bt-hover-right.gif) no-repeat right;
}
#Menu .selected:hover {
  color: white;
}