/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	margin:0;
	padding:0;
	list-style:none;
	font: 80% Verdana,sans-serif;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	border-top:1px solid #444;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	margin-top: 2px;
	padding:2px;
	cursor:pointer;
	color: #333333;
	padding-left: 10px;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a,
.dropdown a:link,
.dropdown a:visited,
.dropdown a:hover,
.dropdown a:active
{
	text-decoration:none;
	color:#333333;
	width:100%;
}
.dropdown a:hover{
	text-decoration:underline;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #444;
	border-top:0;
	margin-left:-1px;
	width:150px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
/*	background-image:url('expand_down.gif');*/
	padding-left:10px;
	
}
.dropdown li.submenu ul 
{
	margin-top: 1px;
	margin-left: 10px;
	background-color: #ffffff;
}

.dropdown li.submenu ul a
{
	color: #333333;
	border: none;
	margin: 0px auto;
	
}


/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	background-image:url('expand_right.gif');
	background-position:center right;
	padding:5px;
	width:120px;
}