/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	padding:0px;
	margin:0px;
	padding-left:25px;
	list-style:none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	text-align: right;
}


/* these are the inner menus*/
.dropdown ul{
	margin-top: -5px;
	padding:0px;
}

.dropdown ul li ul{
	margin-top: 1px;
	padding:0px;
}

/* these are all the LIs in the menu*/
.dropdown li{
	padding: 0px 0 19px 10px;
	width:130px;
	background: #333;
	position: relative;
	left: 10px;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	background: #333;
	text-decoration: none;
}

.dropdown a:hover{

}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	width: 100px;
	text-align: left;
	border-bottom: 1px solid #666;
	padding: 5px 0 5px 10px;
}

.dropdown ul li ul li{
	width: 80px;
	text-align: left;
	position: relative;
	left: 1px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	position: relative;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{

}
