<!-- Paste this code into the CSS section of your HTML document  -->

ul#menu {
  width: 50px;
  list-style-type: none;
  border-top: thin 1px #b9a894;
  margin: 0;
  padding: 0;
}

ul#menu ol {
  display: none;
  text-align: left;
  list-style-type: none;
  margin: 0;
  padding: 2px;
}

ul#menu li, 
  ul#menu a {
  font-family: verdana, sans-serif;
  font-size: 11px;
  padding: 2px;  
  color: white; 
}

ul#menu li {
  border-bottom: thin 1px #b9a894;
  line-height: 20px;
}

ul#menu ol li {
  border-bottom:none;
  padding: 1px;
}

ul#menu ol li a {
  font-size: 10px;
  border-bottom:none;
  color: black;
}

ul#menu ol li:before {
  content: "";
}

ul#menu a {
  text-decoration: none;
  outline: none;
  color: white;
font-weight: bold
}

ul#menu a:hover {
  color: whitesmoke;
}

ul#menu a.active {
  color: white;
}

