/* this is the main UL element*/
.dropdown_v{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
	float: left;
}

/* these are the inner menus*/
.dropdown_v ul{
	margin:0;
	padding:0;
	border-top:1px solid #444;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown_v li{
	margin:0;
	padding:5px;
	width:160px;
	cursor:pointer;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown_v a{
	text-decoration:none;
	color:silver;
	width:100%;
}

.dropdown_v a:hover{
	text-decoration:underline;
}

/* these are the LIs that only belong to submenu*/
.dropdown_v ul li{
	border:1px solid #444;
	border-top:0;
	margin-left:-1px;
	background-color: #000000;
}

.dropdown_v>li:first-child{

}

/* these are the LIs that contains a submenu*/
.dropdown_v li.submenu-down{
	background: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*/
.dropdown_v li.submenu-left{
	width:30px;
}