/* remove the bullets, padding and margins from the lists */
.menu ul{
list-style-type:none;
padding:0;
margin:0;
margin-top:-10px;
height:30px;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
float:left;
position:relative;
z-index:100;
}

/* use the table to position the dropdown list */
.menu table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-10px;
top: 0px;
width:128px;
height:135px;
}



/* style all the links */
.menu a, .menu :visited {
display:block;
font-size:13px;
padding:7px 0;
color:#000;
background:#ffffff;
text-decoration:none;
text-align:center;
}
/* style the links hover */
.menu :hover{
color:#444;
background:#dfd7ca;
text-decoration:none;
}

/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
height:0;
top:44px;
right:0px;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible;
}


#inicio{width:100px;border-left:1px solid #9fb1bc;}
#productos{width:111px;}
#companyia{width:120px;}
#noticias{width:106px;}
#novedades{width:125px;}
#galeria{width:118px;}
#contacto{width:118px;border-right:1px solid #9fb1bc;}
