/* this is the main UL element*/
.dropdown{
	width:100%;
	font-size:10pt;
	display:none;
	margin:0;
	padding:0;
	list-style:none;
	/* border-bottom:1px solid #777; */
}

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

/* these are all the LIs in the menu*/
.dropdown li {
	margin:0;
	padding:0;
	width:160px;
	height:28px;
	background-color:#2ab60a;
	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:#fff;
	width:152px;
	height:22px;
	padding:6px 4px 0 4px;
}

.dropdown a:hover{
	color:#777;
	text-decoration:none;
	background-color:#c6f4be;
}

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

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down {
	background-color:#2ab60a; /* url('expand_down.gif') center left no-repeat; */
	padding-left:0px;
	width:160px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background:#2ab60a url('expand_right.gif') center right no-repeat;
	padding-right:16px;
	width:144px;
}


