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

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

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

* html .dropdown li{
	background-color:#A8C73B;
	width:90px;
	margin-right:0px;
}
* html .dropdown li li{
	width:90px;
}
/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-decoration:none;
	width:100%;
}

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

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	margin-left:-45px;
	margin-right:-25px;
	background-color:#FFFFFF;
	border-top:1px solid;
}

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


