@charset "utf-8";
/* CSS Document */
.ddsmoothmenu{ /*Div que contiene el menu*/
	background-image:url(../images/menu_bg.jpg);
	background-repeat:repeat-x;
	/*width: 713px;*/
	padding-left: 1px;
	font-weight: bold;
	position: relative;
	z-index: 2;
}

.ddsmoothmenu ul{ /*estilo del ul*/
	z-index:100;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.ddsmoothmenu ul li{/*Se encarga de la funcion y orientación del menu*/
	position: relative;
	display: inline;
	float: left;
}

/*Estilos de la botonera*/
.ddsmoothmenu ul li a{
	display: block;
	background-image:url(../images/menu_bg.jpg);
	background-repeat:repeat-x;
	padding: 10px 32.8px 10px 32.8px;
	text-decoration: none;
	text-align:left;
	margin:0px;
}

* html .ddsmoothmenu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
	display: inline-block;
}

.ddsmoothmenu ul li a:link, .ddsmoothmenu ul li a:visited{
	color: #000000;
}

.ddsmoothmenu ul li a.selected{
	background: black;
	color: white;
}

.ddsmoothmenu ul li a:hover{
	background-image:url(../images/menu_bg_2.jpg);
	background-repeat:repeat-x;
	color: #7B5736;
}
	
/*funcion del submenu*/
.ddsmoothmenu ul li ul{
	position: absolute;
	left: 0;
	display: none; /*collapse all sub menus to begin with*/
	visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.ddsmoothmenu ul li ul li{
	display: list-item;
	float: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.ddsmoothmenu ul li ul li ul{
top: 0;
}

/* Sub level menu links style */
.ddsmoothmenu ul li ul li a{
	font-size:12px;
	font-weight:normal;
	width: 119px; /*ancho of sub menus*/
	padding:10px 0px 10px 10px; /*orden: arriba, derecha, abajo e izquierda*/
	margin: 0;
	border-top-width: 0;
	border-bottom: 1px solid gray;
	text-align:left
}

/* Holly Hack for IE \*/
* html .ddsmoothmenu{
	height: 1%;
}


/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
	position: absolute;
	top: 15px;
	left:18px;
}


/* ######### CSS for shadow added to sub menus  ######### */

.ddshadow{
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 0;
	background: silver;
}

.toplevelshadow{ /*shadow opacity. Doesn't work in IE*/
opacity: 0.4;
}
