/* this is the main UL element*/
.dropdownv{
	display:none;
	margin:0;
	padding:0;
	padding-left: 6px;
	list-style:none;
}

/* these are the inner menus*/
.dropdownv ul{
	margin:0;
	padding:0;
	border-top:1px solid #444;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdownv li{
	margin:0;
	padding:5px;
        /*ancho del menú:*/
	width:170px;
	background:url('/images/az_leftbox_category.gif') center right no-repeat;
	cursor:pointer;
	border:1px solid #444;
	border-top:0;
	margin-left:-1px;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdownv a{
	text-decoration:none;
	color:#ffffff;
	width:100%;
}

.dropdownv a:hover{
	text-decoration:none;
	font-weight: normal;
	color: #c1ad9b;
}

/* these are the LIs that only belong to submenu*/
.dropdownv ul li{
	/*border:1px solid #444;
	border-top:0;
	margin-left:-1px;*/
}

.dropdownv>li:first-child{
	border-top:1px solid #444;
}

/* these are the LIs that contains a submenu*/
.dropdownv li.submenu-down{
	background:#333 url('expand_down.gif') center left no-repeat;
	padding-left:20px;
	width:105px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdownv li.submenu-left{
	background:url('/images/az_leftbox_category_sub.gif') center right no-repeat;
	/*lo siguiente es necesario para que el texto no pise en la flecha*/
	/*padding-right:20px;
	width:150px; quitar 15 px al ancho definido en .dropdownv li*/
}
