/* menu portal tematico */

#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1.5; /*Alto línea*/
}

#nav a {
	display: block;
	/*width: 10em;*/ /*Si se muestra esta linea, en IE, aparecen todos los campos del menu al mismo tamaño*/
	text-decoration: none;
	color: white;
}

#nav a:hover {
	font-weight: bold;
	color: white;
}

#nav a.root {
	font-size:11px;
	font-weight: bold;
	color: white;
}

#nav li { /* all list items */
	float: left;
	background: #003366;
	width: 12em; /* width needed or else Opera goes nuts */
	font-size:10px;
}

#nav li.space {
	width: 0.5em;
	font-size: 11px;
}

#nav li ul { /* second-level lists */
	position: absolute;
	background: orange;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#nav li:hover ul, #nav li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}