/* CSS Document */
 
.menu 
{
	width:100%; 
	height:25px; 
	font-size:0.85em; 
	position:relative; 
	z-index:100; 
	color:#FFFFFF;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul 
{
	padding:0;
	margin:0;
	list-style-type:none;
	letter-spacing:0.2em;
	font-family: Arial;
	font-size:12px;
	font-weight: 600;
	
}

/*.menu ul ul 
{
	width:102px;
}*/
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li 
{
	float:left;
	width:154px;/*102px; /*tendria que tener 25%*/
	position:relative;
	
}
/* style the links for the top level (CABECERA) */
.menu a 
{
	display:block;
	font-size:11px;
	text-decoration:none; 
	color: #FFFFFF; 
	width:100%; 
	height:25px; 
	border-width:1px 0 1px 1px; 
	background: #9D0000;
	padding-left:10px; /*5*/
    line-height:25px;
	/*border:1px solid #000;*/
}

/*agregado*/
.menu a:hover 
{
	text-decoration:none;
}
 
 
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul 
{
	visibility:hidden;
	position:absolute;
	height:0;
	top:25px;
	left:0;
	width:100%;/*120px;*/
	/*border-top:1px solid #000;*/
}
 
/* style the table so that it takes no ppart in the layout - required for IE to work */
.menu table 
{
	position:absolute; top:0; left:0; border-collapse:collapse;
}
 
/* style the second level links (SUBMENY)*/
.menu ul ul a
{

	
}

.menu ul ul a		/*.menu ul ul a:visited (EN IE 7 LO PONE ROJO Y MAL)*/   
{
	background: #FFFFFF;
	color: #535353;
	height:10px;/*auto;*/
	line-height:10px;			/*line-height:1em;*/
	padding-left:10px;
	padding-top:5px;
	padding-bottom:5px;
	/*padding:5px 5px;*/
	width:143px;/*90px;*/
	border-top: 1px solid #C1C1C1;
	border-left: 1px solid #5D5D5D;
	border-right: 1px solid  #5D5D5D;
	font-weight: 100;
    letter-spacing:0em;
}

/* a hack so that IE5.5 faulty box model is corrected */
/*IE5 solo tomará 156px, los demas tomaran 156px */
* html .menu ul ul a
{
	width:156px;
	w\idth:143px;
}


.menu ul ul #ultimoBorde   
{
	border-bottom: 1px solid  #5D5D5D ;
}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover
{
	color: #FFFFFF; 
	background: #535353;
	
}

.menu ul ul a:hover
{
	color: #FFFFFF; 
	background: #535353;
	
}

.menu :hover > a/*, .menu ul ul :hover > a   /* se saca el primero para que se deseleccione la cabecera*/
{
	color: #FFFFFF; 
	background: #535353;

}
	
 
/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,.menu ul a:hover ul
{
	visibility:visible;
}



