#Menu {
  position: absolute;
  left: 6px;
  top: 30px;
  width: 100%;
  list-style-type: none;
}
#Menu li {
  background: pink;
  white-space: nowrap;
  margin: -1px 0 0 0;
  padding: 0;
  width: 200px;
  border: 1px solid #000;
}
#Menu li:hover > ul {
  display: block;
}
#Menu ul {
  margin: 0;
  padding: 0 0 0 10px;
  background: tan;
  display: none;
}
#Menu li ul {
  position: relative;
  left: 191px;
  top: -20px;
}
#Menu ul li {
  background: tan;
  float: right;
  width: 189px;
  padding: 0px;
  list-style-type: none;
}
#Menu a {
  color: black;
  text-decoration: none;
  margin: 3px;
  padding: 0 2px;

}
#Menu a:hover {
  text-decoration: underline;
  background: teal;
  color: white;
}
#Menu ul li ul {
  background: tan;
  float: right;
  width: 189px;
  padding: 0px;
  list-style-type: none;
}