#menu-nav, #menu-nav ul{
	padding:0;
	margin:0;
	list-style:none;
	text-align:center;
	float: right;
}

#menu-nav li{
	display:inline-block;
	position:relative;
	/* border-radius:8px 8px 0 0; */
}

#menu-nav ul li{
	display:inherit;
	border-radius:0;
}

#menu-nav ul li:hover{
	border-radius:0;
}

#menu-nav ul li:last-child{
	/* border-radius:0 0 8px 8px; */
}

#menu-nav ul{
	position:absolute;
	z-index: 1000;
	max-height:0;
	left: 0;
	right: 0;
	overflow:hidden;
	-moz-transition: .8s all .3s;
	-webkit-transition: .8s all .3s;
	transition: .8s all .3s;
}

#menu-nav li:hover ul{
	max-height:15em;
}

/* background des liens menus */
#menu-nav li:first-child{
	background-color: #15c3f7;
	background-image: -webkit-linear-gradient(top, #15c3f7 0%, #333A40 100%);
	background-image:linear-gradient(to bottom, #15c3f7 0%, #333A40 100%);
/* 	background-color: #65537A;
	background-image:-webkit-linear-gradient(top, #65537A 0%, #2A2333 100%);
	background-image:linear-gradient(to bottom, #65537A 0%, #2A2333 100%); */
}

#menu-nav li:nth-child(2){
	background-color: #15c3f7;
	background-image: -webkit-linear-gradient(top, #15c3f7 0%, #333A40 100%);
	background-image:linear-gradient(to bottom, #15c3f7 0%, #333A40 100%);
}

#menu-nav li:nth-child(3){
	background-color: #15c3f7;
	background-image: -webkit-linear-gradient(top, #15c3f7 0%, #333A40 100%);
	background-image:linear-gradient(to bottom, #15c3f7 0%, #333A40 100%);
	/* background-color: #F6AD1A;
	background-image:-webkit-linear-gradient(top, #F6AD1A 0%, #9F391A 100%);
	background-image:linear-gradient(to bottom, #F6AD1A 0%, #9F391A 100%); */
}

#menu-nav li:last-child{
	background-color: #15c3f7;
	background-image: -webkit-linear-gradient(top, #15c3f7 0%, #333A40 100%);
	background-image:linear-gradient(to bottom, #15c3f7 0%, #333A40 100%);
	/* background-color: #CFFF6A;
	background-image:-webkit-linear-gradient(top, #CFFF6A 0%, #677F35 100%);
	background-image:linear-gradient(to bottom, #CFFF6A 0%, #677F35 100%); */
}

/* background des liens sous menus */
#menu-nav li:first-child li{
	background: #333A40; /* #2A2333; */ 
}

#menu-nav li:nth-child(2) li{
	background: #333A40; 
}

#menu-nav li:nth-child(3) li
{
	background: #333A40;/* #9F391A; */ 
}

#menu-nav li:last-child li
{
	background: #333A40;/* #677F35;  */
}

/* background des liens menus et sous menus au survol */
#menu-nav li:first-child:hover, #menu-nav li:first-child li:hover{
	background:#15c3f7;/* #65537A; */
}

#menu-nav li:nth-child(2):hover, #menu-nav li:nth-child(2) li:hover{
	background:#15c3f7;
}

#menu-nav li:nth-child(3):hover, #menu-nav li:nth-child(3) li:hover{
	background:#15c3f7;/* #F6AD1A; */
}

#menu-nav li:last-child:hover, #menu-nav li:last-child li:hover{
	background:#15c3f7;/* #CFFF6A; */
}

/* les a href */
#menu-nav a{
	text-decoration:none;
	display:block;
	padding:8px 32px;
	color:#fff;
	font-family:arial;
}

#menu-nav ul a{
	padding:8px 0;
}

#menu-nav li:hover li a{
	color:#fff;
	text-transform:inherit;
}

#menu-nav li:hover a, #menu-nav li li:hover a{
	color:#ff6600; /* #000; */
}


