
#menu, #menu ul{
	padding:0;
	margin:0;
	list-style:none;
	text-align:center;
}
#menu li{
	display:inline-block;
	position:relative;
	width: 220px;
}
#menu ul li{
	display:inherit;
	border-radius:0;
}
#menu ul li:hover{
	border-radius:0;
}
#menu ul{
	position:absolute;
	max-height:0;
	left: 0;
	right: 0;
	overflow:hidden;
}
#menu li:hover ul{
	max-height:35em;
}
/* background des liens menus */
#menu li:nth-child(n){
	background-color: rgb(6, 83, 239);
	border: 2px solid rgb(200,200,200);
}
/* background des liens sous menus */
#menu li:nth-child(n) li{
	background-color: rgb(6, 83, 239);
}
/* background des liens menus et sous menus au survol */
#menu li:nth-child(n):link, #menu li:nth-child(n) li:link{
	background-color: rgb(6, 83, 239);
}
#menu li:nth-child(n):hover, #menu li:nth-child(n) li:hover{
	background-color: rgb(6, 63, 189);
}
#menu li:nth-child(n):visited, #menu li:nth-child(n) li:visited{
	background-color: rgb(66, 123, 250);
}
#menu li:nth-child(n):focus, #menu li:nth-child(n) li:focus{
	background-color: rgb(0, 124, 134);
}
/* les a href */
#menu a{
	text-decoration:none;
	display:block;
	padding:6px 25px;
	color:rgb(240,240,240);
	font-family:arial;
}

