ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	margin-right: 30px;
}

li { /* all list items */
	float:right;
	position: relative;
	width: 6em;
	text-align: center;
	border-right: 1px solid #FFFFFF;
	border-left: 1px solid #FFFFFF;
}

li a{
	font-family:   Arial, Helvetica, sans-serif;
	font-size: 75%;
	text-transform: uppercase;
	text-decoration: none;
	color:#FFFFFF;
}
.textomenudesplegable {
	color: #FF0000;
}



li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
	background-color: #CCCCCC;
}

li ul li{
	width: 12em;
	border-top: 1px #666666;
	border-right: 1px solid #666666;
	border-bottom: 1px solid #666666;
	border-left: 1px solid #666666;
}

li ul li a{
	color:#000;
	text-decoration: none;
}

li ul li a:hover{
	color:#fff;

}


li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}

li:hover, li.over{
/*background-color:#99CC00;*/
}

li ul:hover, li ul.over{  /* lists nested under hovered list items */

/*	background-color:#654321;*/
}

li ul li:hover, li ul li.over{ /* lists nested under hovered list items */
	background-color:#4D4D4D;
}
