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


}

/* 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;
	padding:3px;
	width:104px;
    font-weight:bold;
	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;
    padding-right:1px;
	color:#333333;
  width:100%;
    margin-left:9px;
      margin-top:-3px;
}

.dropdown a:hover{
 padding-right:1px;
 color:#008000;
 
}

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

}

/* 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:105px;
}

/* 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:-1px;
	width:104px;
}
