



.menulist, .menulist 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
*/
.menulist ul {
 display: none;
 position: absolute;
 top: 0px;
 left: 176px;  /* ubicacion donde sale el SUB-MENU */
}

/*
 All menu items (<li> tags) 
*/
.menulist li {
 position: relative;
 border-top: 1px solid #92CA46;
 border-bottom: 1px solid #92CA46; 
 /*
 background: #759202;
 */
 margin-bottom: -1px;
}

.menulist ul li {
 float: none;
 margin: 0;
 margin-bottom: -1px;
 background: #72A42F;
 border: 1px solid #92CA46;	
}


.menulist ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* 
Vinculos del menu 
*/
.menulist 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.
*/
.menulist a:hover, .menulist a.highlighted:hover, .menulist 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;
}
.menulist 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:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/


/* 
Ubicación del simbolo > que indica que hay un submenu
 */
.menulist 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 .menulist li {
 float: left;
 width: 100%;
}

* html .menulist li {
 float: left;
 height: 1%;  /* Alto de la celda que contiene el submenu despues de pasar el mouse por esa celda */
}
* html .menulist a {
 height: 1%;
}
/* FINAL del CSS */
