@charset "utf-8";
.menu{ height:33px;}
/* remove the bullets, padding and margins from the lists */
.menu 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 */
.menu li{
	float:left;
	position:relative;
	z-index:100;
	margin: 0px;
	padding: 0px;
}

/* use the table to position the dropdown list */
.menu table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:25px;
}

/* style all the links */
.menu a, .menu :visited {
	display:block;
	width:auto;
	padding:5px 7px;
	text-decoration:none;
	margin-right:1px;
	color: #881500;
}
/* style the links hover */
.menu :hover{
	background-color: #FCE7CA;
	color: #000000;
}

/* hide the sub level links */
.menu ul ul {
	visibility:hidden;
	position:absolute;
	width:149px;
	height:0;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible;
}

/* atributos de texto*/
.tex-menu {
	font-family: "Times New Roman", Times, serif;
	font-size: 16px;
	font-weight: bolder;
	text-align: center;
	border-left: 1px solid #D1AFAE;
}
.tex-submenu {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	text-align: left;
	width: 149px;
	background-color: #FBF3E8;
	border-bottom: 1px solid #D7B0A9;
}
.tex-submenu-vinos {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	text-align: left;
	width: 250px;
	background-color: #FBF3E8;
	border-bottom: 1px solid #D7B0A9;
}

