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

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:10px;
	width:101px;
	background:url(/images/barra.gif) center left no-repeat;
	border-left:1px solid #ccc;
	border-top:1px solid #ccc;	
	cursor:pointer;
}

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

.dropdown a:hover{
	font-weight: bold;
	text-align:center;
}

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

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background: url(/images/barra_ver.gif) left no-repeat;
	padding-left:20px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background:#000 url(/images/barra_sub.gif) right no-repeat;
	padding-right:10px;
}