/*--- MENU DESPLEGABLE */
.ddsmoothmenu{
	font: 11px Arial;
	background: #ffffff; /* FONDO DE LA BARRA */
	width: 100%;
    float: left;
    margin: 10px 0px 10px 0px;
}

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

.interiorMenu {
	text-align:center;
	color: #bbbbbb;
}
.interiorMenu:hover {
	color: #ffffff !important;
}
.interiorMenu img {
	border: 1px solid black;
	width: 65px;
}

/* PRIMER NIVEL */
.ddsmoothmenu ul li{
	position: relative;
	display: inline;
	float: left;
    margin: 0px 1px 1px 0px;
    border: 1px solid #333333;
}
.ddsmoothmenu ul li a{
	display: block;
	background: #333333;
	color: #bbbbbb;
	padding: 2px 7px 2px 7px;
	text-decoration: none;
	filter:alpha(opacity=80);
	-moz-opacity:.80;
	opacity:.80;
}
.ddsmoothmenu ul .activa {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border: 1px solid black;
    border-bottom: 15px solid black;
}

* html .ddsmoothmenu ul li a{ /* PARA ie6 */
	display: inline-block;
}


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

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

.ddsmoothmenu ul li a:hover{
	background: black; /*OVER*/
	color: white;
}

/* PRIMER SUBNIVEL */
.ddsmoothmenu ul li ul{
	position: absolute;
	left: 0;
	display: none;
	visibility: hidden;
}

.ddsmoothmenu ul li ul li{
	display: list-item;
	float: none;
}


.ddsmoothmenu ul li ul li ul{
	top: 0;
}


.ddsmoothmenu ul li ul li a{
	font: normal 11px Arial;
	width: 160px;
	padding: 4px;
	margin: 0;
	border-top-width: 0;
	/*border-bottom: 1px solid #d50b25;*/
}


* html .ddsmoothmenu{height: 1%;} /*IE7*/

/* PESTA�AS */
.downarrowclass{
	position: absolute;
	top: 12px;
	right: 7px;
}

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


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

.toplevelshadow{
	opacity: 0.8;
}
/* --- */