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

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


}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-decoration:none;
    padding-right:1px;
	color:#FFFFFF;
    width:100%;
    margin-left:2px;
    margin-top:-3px;
}

.dropdown a:hover{
 padding-right:1px;
 text-decoration:underline;
 color:#FFFF99;
 
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #444;
	border-top:0;
    font-weight:normal;
    margin-top:0px;
    margin-left:-9px;
    padding:4px;
    background-color:#999999;
    width:140px;

}

/* these are the LIs that contains a submenu
.dropdown li.submenu{
	background-image:url('arrow_down.gif');
	background-position:center right;
	background-repeat:no-repeat;
	//width:120px;
}
*/

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	background-image:url('arrow_right.gif');
	background-position:center right;
	padding:3px;
 	//margin-left:-12px;
	width:120px;
}
