@charset "utf-8";
/* CSS Document */
#menu-demo2, #menu-demo2 ul{
padding:0;
margin:0;
list-style:none;
text-align:center;

width=700x;
display:block

}
#menu-demo2 li{
display:inline-block;
position:relative;
border-radius:8px 8px 0 0;
   border-top: 1px solid #c9d4d8; 
   width=175px;
}
#menu-demo2 ul li{
display:inherit;
border-radius:0;
}
#menu-demo2 ul li:hover{
border-radius:0;
}
#menu-demo2 ul li:last-child{
border-radius:0 0 8px 8px;

}
#menu-demo2 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-demo2 li:hover ul{
max-height:800px;

}
/* background des liens menus */
#menu-demo2 li:first-child{
background-color:#89c5f9;
background-image:-webkit-linear-gradient(top, #89c5f9 0%, #89c5f9 100%);
background-image:linear-gradient(to bottom, #89c5f9 0%, #89c5f9 100%);
}
#menu-demo2 li:nth-child(2){
background-color: #89c5f9;
background-image: -webkit-linear-gradient(top, #89c5f9 0%, #89c5f9 100%);
background-image:linear-gradient(to bottom, #89c5f9 0%, #89c5f9 100%);
}
#menu-demo2 li:nth-child(3){
background-color:#89c5f9;
background-image:-webkit-linear-gradient(top, #89c5f9 0%, #89c5f9 100%);
background-image:linear-gradient(to bottom, #89c5f9 0%, #89c5f9 100%);
}
#menu-demo2 li:last-child{
background-color:#89c5f9;
background-image:-webkit-linear-gradient(top, #89c5f9 0%, #89c5f9 100%);
background-image:linear-gradient(to bottom, #89c5f9 0%, #89c5f9 100%);
}
/* background des liens sous menus */
#menu-demo2 li:first-child li{
background:#89c5f9;
}
#menu-demo2 li:nth-child(2) li{
background: #89c5f9;
}
#menu-demo2 li:nth-child(3) li{
background:#89c5f9;
}
#menu-demo2 li:nth-child(4) li{
background:#89c5f9;}
#menu-demo2 li:nth-child(5) li{
background:#89c5f9;}
#menu-demo2 li:nth-child(6) li{
background:#89c5f9;}
#menu-demo2 li:nth-child(7) li{
background:#89c5f9;}
#menu-demo2 li:nth-child(8) li{
background:#89c5f9;}
#menu-demo2 li:last-child(9) li{
background:#89c5f9;
}
/* background des liens menus et sous menus au survol */
#menu-demo2 li:first-child:hover, #menu-demo2 li:first-child li:hover{
background:#89c5f9;
}
#menu-demo2 li:nth-child(2):hover, #menu-demo2 li:nth-child(2) li:hover{
background:#89c5f9;
}
#menu-demo2 li:nth-child(3):hover, #menu-demo2 li:nth-child(3) li:hover{
background:#89c5f9;
}
#menu-demo2 li:last-child:hover, #menu-demo2 li:last-child li:hover{
background:#89c5f9;
}
/* les a href */
#menu-demo2 a{
text-decoration:none;
display:block;
padding:8px 60px;
color:#481ee5;
font-family:arial;
font-size: 1em;

}
#menu-demo2 ul a{
padding:8px 0;
}
#menu-demo2 li:hover li a{
color:#fff;
text-transform:inherit;
}
#menu-demo2 li:hover a, #menu-demo2 li li:hover a{
color:#000;
}