@charset "utf-8";
/* CSS Document */
.ddsmoothmenuGen{ /*Div que contiene el menu*/
	background-image:url(../images/menu_bg.jpg);
	background-repeat:repeat-x;
	/*width: 97%;*/
	padding-left: 30px;
	font-weight: bold;
}

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

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

/*Estilos de la botonera*/
.ddsmoothmenuGen ul li a{
	display: block;
	background-image:url(../images/menu_bg.jpg);
	background-repeat:repeat-x;
	padding: 10px 15px 10px 13px;/*arriba, derecha, abajo e izquierda*/
	text-decoration: none;
	text-align:center;
	margin:0px;
}

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

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

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

.ddsmoothmenuGen ul li a:hover{
	background-image:url(../images/menu_bg_2.jpg);
	background-repeat:repeat-x;
	color: #7B5736;
}
	
/*funcion del submenu*/
.ddsmoothmenuGen 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)*/
.ddsmoothmenuGen ul li ul li{
	display: list-item;
	float: none;
}

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

/* Sub level menu links style */
.ddsmoothmenuGen 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 .ddsmoothmenuGen{
	height: 1%;
}

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

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

.rightarrowclass{
	position: absolute;
	top: 6px;
	right: 5px;
}

/* ######### 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.8;
}
