/* FORMATAÇÃO DE MENU DROPDOWN */

ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 120px; /* Largura do menu */
	font: 10px Verdana;
}

ul li {
	position:relative
}

ul li a {
	display: block;
	text-decoration: none;
	color: #B51839;
/*	background: #fff; /* IE6 Bug */*/
	padding: 3px;
	border-bottom: 1px solid #666;
	background: #E7E2E2;
}

/* 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: #000066;
background: #E7E2E2; /* Raphael, mude a cor aqui se quiser mudar a cor da "célula" quando passa o mouse */
text-decoration: underline;
} /* Hover Styles */

.current {
	background-image: url(current_background.gif);
	width: 114px;
	border-bottom: 1px solid #666;
	padding: 3px;
	font-weight: bold;
	color: #666;
}

img {
	border: 0;
}

ul ul {
	position:absolute;
	display:none;
	left: 120px; /* Set 1px less than menu width */
	top: 0;
	width: 200px; /* largura do dropdown */
	background: #fff;
}

li ul li a { padding: 2px 5px; } /* Sub Menu Styles */

li:hover ul ul, li.over ul ul { display:none; }

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