/* En este archivo solo van los atributos directamente relacionados con el menu */


/* -------------------------- Funcionamiento del menu ----------------------- */


/* remove regular list styling and indentation */
#nav, #nav ul {
	padding:0;
	margin:0;
	list-style:none;
}

/* float first-level list elements so they are arranged horizontally */
#nav li {
	float:left;
	position:relative;
}

/* hide second-level list elements and get them out of the way by positioning them absolutely */
#nav li ul {
	display:none;
	position:absolute;
	margin:-1px 0 0 2px; 
	top:0.2em;
	left:0;
}


/* IE fix of some sorts */
#nav li>ul {
	top: auto;
	left: auto;
}


/* rollover effect makes second-level elements appear on hover (use li.over for IE fix) */
#nav li:hover ul, #nav li.over, #nav ul {
	display:block;
}

/* clear the float so text below the menu appears correctly */
#nav #below {
	clear:left;
}


