ul {
	margin: 0px;
	padding: 0px;
	width: 150px; /* Width of Menu Items */
	list-style:none;
	border: 1px solid #557ea5;
	border-left:none;
	border-right:none;
	border-bottom: 0px;
	text-align:left;
	}
	
ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: 150px; /* Set 1px less than menu width */
	top: -1px;
	display: none;
	border: 1px solid #557ea5;
	border-bottom: 0px;
	margin: 0;
	padding: 0;
	width:180px;
	font-size:0.9em;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none !important; 
	background: #dee1e7; /* IE6 Bug */
	padding: 0px 5px;
	border: 1px solid #557ea5; /* IE6 Bug */
	font-size: 0.9em;
	line-height: 17px;
	height: 1.6em;
	color:#005fa9;
	font-weight: normal;
        border-left-width: 0px;
	border-right-width: 0px;
	border-top-color: #fff;
	text-indent:10px;
	background-image: url(/design3/button.gif);
	cursor:pointer;
	}

/* Holly Hack. IE Requirement \*/
* html ul li { float: left; height: 1% }
* html ul li a { height: 1%; }
/* End */

li:hover ul, li.over ul { display: block; } /* The magic */
