
/*Paste this code into the CSS section of your HTML document  */

ul#menu {
  width: 150px;
  list-style-type: none;
  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: sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	font-weight: normal;
	line-height: 20px;
	background-color: #0407FF;
	text-align: left;
	text-indent: 15px;
	display: block;
}

ul#menu li {
	line-height: 10px;
	border-bottom: 1px solid #555555;
	height: auto;
	width: auto;
}

ul#menu ol li {
	border: .5px solid #ff0000;
}

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

ul#menu a {
  text-decoration: none;
  outline: none;
}

ul#menu a:hover {
	color: #FFFFFF;
	background-color: #4DC201;
}

ul#menu a.active {
	color: #000066;
	font-weight: bold;
	background-color: #E9E9D1;
}

