 <!-- Paste this code into the CSS section of your HTML document  -->

ul#menu {
  width: 200px;
  list-style-type: none;
  border-top: solid 1px #DDDDDD;
  margin: 0;
  padding: 0;
}

ul#menu ol {
  display: none;
  text-align: left;
  list-style-type: none;
  margin: 0;
  padding: 5px;

}

ul#menu li, 
  ul#menu a {
  font-family: verdana, sans-serif;
  font-size: 11px;
  color: teal;
}

ul#menu li {
  border-bottom: solid 1px #DDDDDD;
  line-height: 15px;
}

ul#menu ol li {
  border-bottom: none;

}

ul#menu ol li:before {
  content: "-";

}

ul#menu a {
  text-decoration: none;
  outline: none;
}

ul#menu a:hover {
  color: red;
}

ul#menu a.active {
  color: grey;
}
