ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 175px; /* Width of Menu Items */
	font-name:verdana;
	font-size:10px;
	}

ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: 174px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #777;
	background: #fff; /* IE6 Bug */
	padding: 4px;
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
	border-right: 1px solid #ccc;
	}
.bottom
{
	border-bottom: 1px solid #ccc;
}
.arrow {
	background-image: url(images/nav_arrow.gif) ;
	background-repeat: no-repeat ;
	background-position: 158px 6px ;
	}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

ul li a:hover, .activenav{ color: #4e8abe; background: #E9E9E9;} /* Hover Styles and active nav */	

ul li a.arrow:hover {
	background-image: url(images/nav_arrow.gif) ;
	background-repeat: no-repeat ;
	background-position: 158px 6px ;
}

li:hover ul, li.over ul { display: block; } /* The magic */