/* this is the main UL element*/
.menu_chiffre{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
	border-bottom:1px solid #dddddd;
}

.menu_chiffre .separator
{
	font-weight:bold;
}

/* these are the inner menus*/
.menu_chiffre ul{
	margin:0;
	padding:0;
	border-top:1px solid #dddddd;
	list-style:none;
	text-align:left;
}

/* these are all the LIs in the menu*/
.menu_chiffre li{
	margin:0 1px 0 0;
	padding:5px;
	width:120px;
	cursor:pointer;
	background-color:#006cb7;
	color:white;
	font-weight:bold;
	text-align:center;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.menu_chiffre a{
	text-decoration:none;
	color:#006CB7;
	width:100%;
}

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

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

/* these are the LIs that contains a submenu*/
.menu_chiffre li.submenu-down{
	/*background:url('expand_down.gif') center left no-repeat;*/
	width:125px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.menu_chiffre li.submenu-left{
	/*background:url('expand_right.gif') center right no-repeat;*/
	width:125px;
}