

/* 
All <ul> tags UBICACION DEL MUNU PRINCIPAL 
*/
.menulistcinco, .menulistcinco ul {
 margin: 0;
 padding: 0;
 width: 175px; /* Ancho de la tabla del menu */
 list-style: none;
 float: none; /* ubicacion de la tabla del menu */
}

/*
 Submenus (<ul> tags) POSICION DONDE SALE EL SUB-MENU
*/
.menulistcinco ul {
 display: none;
 position: absolute;
 top: 0px;
 left: 176px;  /* ubicacion donde sale el SUB-MENU */
}

/*
 All menu items (<li> tags) 
*/
.menulistcinco li {
 position: relative;
 border-top: 1px solid #92CA46;
 border-bottom: 1px solid #92CA46; 
 /*
 background: #759202;
 */
 margin-bottom: -1px;
}

.menulistcinco ul li {
 float: none;
 margin: 0;
 margin-bottom: -1px;
 background: #72A42F;
 border: 1px solid #92CA46;	
}


.menulistcinco ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* 
Vinculos del menu 
*/
.menulistcinco a {
 display: block;
 padding: 3px;
 color: #FFFFFF; /* COLOR del texto de los vinculos de las celdas */
 text-decoration: none;
}

/*
 COLOR al pasar el mouse por los vinculos.
*/
.menulistcinco a:hover, .menulistcinco a.highlighted:hover, .menulistcinco a:focus {
 color: #FFFFFF;  /* COLOR del texto del vinculo al pasar el mouse */
 background-color: #92CA46;  /* COLOR de la celda al pasar el mouse */
 text-decoration: none;
}
.menulistcinco a.highlighted {
 color: #FFFFFF;  /* COLOR del texto del vinculo de la celda que contiene el submenu */
 background-color: #92CA46;  /* COLOR de la celda que contiene el submenu */
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulistcinco a#xyz {
      background-image: url(out.gif);
    }
    .menulistcinco a#xyz:hover, .menulistcinco a.highlighted#xyz, .menulistcinco a:focus {
     background-image: url(over.gif);
    }
*/


/* 
Ubicación del simbolo > que indica que hay un submenu
 */
.menulistcinco a .subind {
 float: right;  /* Ubicación del simbolo > que indica que hay un submenu */
}

/*
 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 .menulistcinco li {
 float: left;
 width: 100%;
}

* html .menulistcinco li {
 float: left;
 height: 1%;  /* Alto de la celda que contiene el submenu despues de pasar el mouse por esa celda */
}
* html .menulistcinco a {
 height: 1%;
}
/* FINAL del CSS */
