ul {
	margin: 0;
	padding: 0 0 0 10px;
	list-style: none;
	width: 185px; /* Width of Menu Items */
    font-family: Trebuchet MS, Arial, Tahoma;
    font-weight: bold;
}

ul li {
	position: relative;
}

li ul {
	position: absolute;
	left: 185px; /* Set 1px less than menu width */
	top: 0;
	display: none;
}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #fff;
	background: #08338f; /* IE6 Bug */
	padding: 5px;
    font-size: 14px;
	border-bottom: 0;
}

/* Fix IE. Hide from IE Mac \*/
* html ul li {
  float: left;
  height: 1%;
}

* html ul li a {
    height: 1%;
}
/* End */

ul li a:hover {
  color: #fff;
} /* Hover Styles */

li ul li a {
  padding: 2px 5px;
  background: #6b85bd;
} /* Sub Menu Styles */

li:hover ul, li.over ul {
  display: block;
  background: #6b85bd;
} /* The magic */