ul#nav {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 170px; /* Width of Menu Items */
	list-style:none;
	}
	
ul#nav li {
	background:url(../../images/seta.png) no-repeat 0 9px;
	position: relative;
	list-style:none;
	cursor:pointer;
	}
	
ul#nav li ul {
	position: absolute;
	left: 105px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	width:150px;
	}
ul#nav li ul li{
	background:#006832;
}

ul#nav li ul a{
	color:#FFF;
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	font-weight:bold;
}

/* Styles for Menu Items */
ul#nav li a {
	display: block;
	text-decoration: none;
	color: #000;
	padding: 5px;
	padding-left:10px;
	border-bottom: 0;
	}

ul#nav li a:hover {
	display: block;
	text-decoration: none;
	color: #ccc;
	}
	
/* Holly Hack. IE Requirement \*/
* html ul#nav li { float: left; height: 1%; }
* html ul#nav li a { height: 1%; }
/* End */

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