/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	margin:0;
	padding:0;
	list-style:none;
	position:absolute;
	top:auto;
	bottom:auto;
	z-index:101;	
}

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

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:2px;
	margin-right:20px;
	cursor:pointer;
}

* html .dropdown li{
	width:70px;
	margin-right:0px;
}
* html .dropdown li li{
	width:160px;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-decoration:none;
	font-weight:bold;
	width:100%;
}

.dropdown a:hover{
	text-decoration:underline;
}

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

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	background-position:center left;
	background-repeat:no-repeat;
	
}

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

li.sous_menu a {
	font-size:11px;
}

.dropdown li li:hover{
	background-color:#A5DCFA;	
}

.dropdown dl dt:hover{
	background-color:#CFECFC;
}

.dropdown li li {
	background-color:#FFFFFF;
	min-width:190px;
}

.dropdown{
	font-weight:bold;
}