/* CSS Document */
/* ******************* menu principal ( menuv2) */
/* remove the bullets, padding and margins from the lists */
.menuv2{
	width:auto;
	height:20px;
	clear:both;
	background-color:#006600;
}
.menuv2 *{
text-align:left;
}

.menuv2 ul{
list-style-type:none;
padding:0;
margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menuv2 li{
float:left;
position:relative;
z-index:100;
}

/* use the table to position the dropdown list */
.menuv2 table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:20px;
}

/* style all the links */
.menuv2 a, .menuv2 a:visited {
font: 11px/12px Verdana, Arial, Helvetica, sans-serif;
padding: 0;
display: block;
border-width: 0px 0px 1px;
border-style: none none solid;
border-color: #8ea2c2;
background-color:#bfcfe9;
width:180px;
height:20px;
line-height:20px;
color:#3c5681;
text-decoration: none;
text-indent:10px;
}

.menuv2 a.menutitulo{ /* las cabeceras del menu */
background-image:url(imgcomun/fondo_menutitulo.gif);
border:none;
font-weight:bold;
display: block;
width:180px;
height:20px;
}




/* style the links hover */
.menuv2 a:hover{
	font-weight:bold;
	background-color:#e9ddbf;
}

/* hide the sub level links */
.menuv2 ul ul {
visibility:hidden;
position:absolute;
width:149px;
height:0;
}

.menuv2 ul ul a, .menuv2 ul ul a:visited ,.menuv2 ul ul a:hover{
}

.menuv2 ul ul a:hover{
}

/* make the sub level visible on hover list or link */
.menuv2 ul li:hover ul,
.menuv2 ul a:hover ul{
visibility:visible;
}






