

/* 
All <ul> tags UBICACION DEL MUNU PRINCIPAL 
*/
.menulist_v, .menulist_v ul {
 margin: 0;
 padding: 0;
 width: 165px; /* 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_v ul {
 display: none;
 position: absolute;
 top: 0px;
 left: 160px;  /* ubicacion donde sale el SUB-MENU */
}

/*
 All menu items (<li> tags) 
*/
.menulist_v li {
 position: relative;
 /*
 border-bottom: 1px solid #1B3A5A; 
 
 background: #759202;
 */
 margin-bottom: -1px;
}

.menulist_v ul li {
 float: none;
 margin: 0;
 margin-bottom: -1px;
 background: #B1C9E2;
}


.menulist_v ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

/* 
Vinculos del menu 
*/
.menulist_v a {
 color: #152380; /* COLOR del texto de los vinculos de las celdas */
 text-decoration: none;
 font-weight:bold;
 font-size:12px;
 display: block;
 padding: 1px;
 padding-bottom: 7px;
 padding-top: 7px;
 
 border-bottom: 1px solid #efefef;
 border-top: 1px solid #efefef; 
}

/*
 COLOR al pasar el mouse por los vinculos.
*/
.menulist_v a:hover, .menulist_v a.highlighted:hover, .menulist_v a:focus {
 color: #EE0000;  /* COLOR del texto del vinculo al pasar el mouse */
 text-decoration: none;
 font-weight:bold;
 font-size:12px;
}

.menulist_v a.highlighted {
 color: #152380; /* COLOR del texto del vinculo de la celda que contiene el submenu */
 background-color: #B1C9E2;  /* COLOR de la celda que contiene el submenu */
 font-weight:bold;
 font-size:12px;
}

/*
 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_v a#xyz {
      background-image: url(out.gif);
    }
    .menulist_v a#xyz:hover, .menulist_v a.highlighted#xyz, .menulist_v a:focus {
     background-image: url(over.gif);
    }
*/


/* 
Ubicacin del simbolo > que indica que hay un submenu
 */
.menulist_v a .subind {
 float: right;  /* Ubicacin 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_v li {
 float: left;
 width: 100%;
}

* html .menulist_v li {
 float: left;
 height: 1%;  /* Alto de la celda que contiene el submenu despues de pasar el mouse por esa celda */
}
* html .menulist_v a {
 height: 1%;
}
/* FINAL del CSS */