/* CSS Document */
/*


/* All <ul> tags in the menu including the first level */

#menu-pal {
	padding:0;
	height:40px;
	background-image:url(/imagenes/menu-superior-gris-ancho.gif);
	background-repeat: repeat-x;
	margin-top:10px;
	width:auto;
	font-size:0.8em;
	color:#FFFFFF;
	line-height:40px;
	font-family:Arial, Helvetica, sans-serif;
}


.menulist, .menulist  ul {
	 margin: 0;
	 padding: 0;
	 list-style: none;
	 background-image:none;

}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 display: none;
 position: absolute;
 top: 1.0em; 
 margin-top: 30px; /* I'm using ems and px to allow people to zoom their font */
 left: -1px;
 width:200px;

}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
	top: -1px;
	margin-top: 0;
	left: 148px;
	background-image:none;	
}

.menulist ul li ul {
 top: -1px; margin-top: 0;
 left: 148px;
 background-image:none;
  width:185px;

}



.menulist li {
 float: left;
 display: block;
 position: relative;
 margin-right: -1px;
 background-image:url(/imagenes/separador-gris-ancho.gif);
 background-position:left;
 background-repeat:no-repeat;
 
}


/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 	float: none;
 	margin: 0;
	margin-left:2px;
 	color:#FFFFFF;
	text-decoration: none;
	/*background-image:url(../imagenes/boton-off.gif);*/
	background-color:#333333;
	display:block;
	text-align:left;
	padding-left:10px;
	padding-right:10px;
	padding-bottom:1px;
	width:185px;
	filter:alpha(opacity=75); 
	-moz-opacity: 0.75; 
}

.menulist ul ul li{
 
	width:185px;

}

.menulist ul li a{
 	float: none;
 	margin: 0;
 	margin-bottom: -1px;
 	color:#FFFFFF;
	text-decoration: none;
	background-color:#333333;
	display:block;
	text-align:left;
	padding-left:10px;
	padding-right:10px;
	width:100%;
}

.menulist ul li ul li{
	 background-image:url(/imagenes/separador-gris-ancho.gif);
	 	width:185px;

}




.menulist ul>li:last-child {
 	margin-bottom: 1px; /* Mozilla fix */
	background-image:none;
	/*background-color:#003399;*/
}

/* Links inside the menu */
.menulist a {
	display: block;
	padding: 0px;
 	color:#FFFFFF;
	text-decoration: none;
	display:block;
	text-align:left;
	padding-left:10px;
	padding-right:10px;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #fff;
 background-image:url(/imagenes/menu-superior-gris-on-ancho.gif);
 font-weight:normal;
 text-decoration:none;
}

.menulist a:visited {
 color: #FFF;
 font-weight:normal;
 text-decoration:none;
}

.menulist a:active {
 color: #FFF;
 font-weight:normal;
 text-decoration:none;
}

.menulist a.highlighted {
 color: #FFF;
/* background-color: #C86;*/

}



.menulist a .subind {
 display: none;
}
.menulist ul a .subind {
 display: block;
 float: right;
}


/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
  color:#FFFFFF;
 text-decoration:none;
}
.menulist ul a {
 float: none;
  color:#FFFFFF;
 text-decoration:none;
}
/* \*/
.menulist a {
 float: none;
 color:#FFFFFF;
 text-decoration:none;
}
/* */


/*
 HACKS: IE/Win:
 A small height on <li> and <a> tags and floating prevents gaps in menu.
 * html affects <=IE6 and *:first-child+html affects IE7.
 You may want to move these to browser-specific style sheets.
*/
*:first-child+html .menulist ul li {
 float: left;
 width: 100%;
}

* html .menulist ul li {
 float: left;
 height: 1%;
}
* html .menulist ul a {
 height: 1%;
}
/* End Hacks */


