/* this is the main UL element*/
.dropdown{
	position:absolute;
	top:50px;
	right:0px;
	list-style: none;
	font-weight:bold;
	visibility:hidden;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	width: 143px;
	;
	color:#444444;
	text-decoration:none;
	border-left: 2px solid #444444;
	padding:0 0 1em .5em;
	cursor:pointer;
}
.dropdown li:hover, .dropdown li a:hover{
	color:#FF5712;
	border-color:#FF5712;
}


/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown li a{
	text-decoration:none;
	color:#444444;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li {
	border:none;
	background-image:url(../images/fond-menu.gif);
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
}

