

/*Reset CSS*/






nav a{
    display: block;
    text-decoration: none;
    color: black;
    border-bottom: 2px solid transparent;
    padding: 10px 0px;
	list-style: none;
}




nav a:hover{
    color: #1ed6e8; /* orange */
    border-bottom: 2px solid gold;
	list-style: none;
}

.sous{
    display: none;
    box-shadow: 0px 1px 2px #CCC;
    background-color: white;
    position: absolute;
    width: 100%;
    z-index: 1000;
	opacity: 1.0;
	list-style: none;
}
nav > ul li:hover .sous{
    display: block;
	list-style: none;
}
.sous li{
	
    float: none;
    width: 120%; /*   100  */
    text-align: left;
	list-style: none;
}
.sous a{
    padding: 5px; /*   10 px */
    border-bottom: none;
	list-style: none;
}
.sous a:hover{
    border-bottom: none;
    background-color: RGBa(200,200,200,0.1);
	list-style: none;
}
.deroulant > a::after{
    content:" ▼";
    font-size: 12px;
	list-style: none;
}

