
/* GENERAL
 ------------------------------------------------------------------------------------------------- */
#nav{
	z-index: 999;
}
#nav li{
	float: left;
	position: relative;
	list-style: none;
}
#nav li.over{ z-index: 99; }
#nav li.active{ z-index: 999; }
#nav a{
	text-decoration: none;
	color: #526351;
	display: block;
	margin: 1px 2px 0 0;
	padding: 2px 10px;
	background-color: #FFF;
	border: 1px solid #A6B8A8;
}
#nav a:hover{
	color: #333;
	background: #E5ECE5;
}
#nav a.padre{
	background-image: url("../img/icoSubmenu.gif");
	background-repeat: no-repeat;
	background-position: right bottom;
}
#nav a.sel{
	color: #FFF;	
	background-color: #d8353c;
	border: 1px solid #A6B8A8;
}


/* NIVEL 1
 ------------------------------------------------------------------------------------------------- */
#nav ul li, #nav ul li.active{
	float: none;
	margin: 0;
}
#nav ul li a, #nav ul li.over a, #nav ul li a:visited, #nav ul li.over a:visited{
	margin-top: -1px;
	padding: 3px 10px;
}
#nav ul li a:hover, #nav ul li.over a:hover{
	color: #333;
	background-color: #E5ECE5;
	border-top: 1px solid #95A797;
}


/* NIVEL 2
 ------------------------------------------------------------------------------------------------- */
#nav ul{
	position: absolute;
	width: 177px;
	top: 22px;
	left: -10000px;
	overflow:hidden;
	z-index:100;
}
/* menu visible */
#nav li.over ul { left: 0; }
#nav li.over ul ul { left: -10000px; }
#nav li.over ul li.over ul { left: 170px; }
#nav li ul li{
	overflow:hidden;
	height:1%;
}
#nav li ul li a{
	overflow:hidden;
	height:1%;
}

/* NIVEL >= 3
 ------------------------------------------------------------------------------------------------- */
#nav ul ul { top: 5px; }
#nav ul ul ul { left: -10000px; }
#nav li.over ul li.over ul ul { left: -10000px; }
#nav li.over ul li.over ul li.over ul { left: 100px; }
