a.desplegable {
	font-family: "Verdana";
	color: black;
	font-weight: normal;
}

a.desplegable:hover {
	text-decoration: none;
	font-weight: bold;
}

.nas {
	border: solid black 1px;
}

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

li { /* all list items */
	float: left;
	position: relative;
	margin: 0 15px 0 0;
	padding: 0;
	width: auto;
}

li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
	margin: 0;
	padding: 3px;
	background: #E1E9ED;
	width: 146px;
}

li li {
	height: auto;
	margin: 0;
	padding: 0;
	width: 100%;
	font-size: 10px;
	border-bottom: 1px solid #0F3F6F;
}

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;
}