/*Reset CSS*/
*{
    margin: 0px;
    padding: 0px;
    font-family: Avenir, sans-serif;
}
#header {
height : 50px;
margin-top: 0px;
margin-bottom : 0;
background-color : white;
}
#header2 {
text-align : center;
margin-top: 50px;
margin-bottom : 10px;
background-color : white;
}
#footer {
width : 80%;
margin : auto;
padding : 5px;
text-align : left;
background-color : white;

}
#p3 {
margin-right : 20px;
margin-top: 20px;


}

h1 {
padding : 0;
font : BOLD 250% Avenir, sans-serif;
color : #FFF;
text-align : center;
vertical-align:text-top;
}
h2 {
margin : 0;
padding : 0.2em 0;
text-align : center;
font : normal 180% Avenir, sans-serif;
color : black;
}
h3 {
margin : 0;
padding : 0.2em 0;
text-align : center;
font : normal 120% Avenir, sans-serif;
color : grey;
}

h4 {
margin : 0;
padding : 0;
font : 100% Avenir, sans-serif;
color : grey;
}
h5 {
margin : 0;
padding : 0;
font : 70% Avenir, sans-serif;
color : grey;
}
nav{
    width: 80%;
    margin: 0 auto;
    background-color: white;
    position: sticky;
    top: 15px;
	z-index: 100;
}
.conteneur-nav{
    position: absolute;
    width: 100%;
}
nav input[type=checkbox]{
    display: none;
}
nav label{
    display: inline-block;
    width: 100%;
    padding: 5px 0px;
    text-align: center;
    background-color: gold;
}
nav ul{
    display: none;
    list-style-type: none;
    background-color: #555;
}
nav input[type=checkbox]:checked + ul{
    display: flex;
    flex-flow : column wrap;
}
nav ul li{
    flex: 1 1 auto;
    text-align: center;
}
nav > div > ul > li > a{
    color: white;
}
nav a{
    display: block;
    text-decoration: none;
    color: black;
    padding: 5px 0px;
}
.sous{
    display: flex;
    flex-flow: column wrap;
    z-index: 1000;
}

.sous li{
    flex: 1 1 auto;
    text-align: left;
}
.sous a{
    padding: 5px;
    background-color: RGBa(200,200,200,0.8);
}

@media screen and (min-width: 980px){
    .conteneur-nav{
        position: static;
		
    }
    nav label, nav input{
        display: none;
    }
    nav input[type=checkbox]:checked + ul, nav ul{
        display: flex;
        flex-flow: row wrap;
        background-color: white;
    }
    nav ul li{
        position: relative;
    }
    nav > div > ul > li > a{
        color: black;
    }
    nav a{
        border-bottom: 2px solid transparent;
    }
    nav a:hover{
        color: orange;
        border-bottom: 2px solid gold;
    }
    .sous{
        display: none;
        box-shadow: 0px 1px 2px #CCC;
        background-color: white;
        position: absolute;
        width: 100%;
    }
    nav > div > ul li:hover .sous{
        display: flex;
        flex-flow: column wrap;
    }
    .sous a{
        border-bottom: none;
        background-color: white;
    }
    .sous a:hover{
        border-bottom: none;
        background-color: RGBa(200,200,200,0.1);
    }
    .deroulant > a::after{
        content:" ▼";
        font-size: 12px;
    }
}
.conteneur-findepage{
		text-align: center;
		margin-top: 5px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 10px;
		padding-top:30px;
		height: auto;
		width : 80%;
		background-color: white;
		
}

.conteneur-page{
		text-align: center;
		margin-top: 50px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 10px;
		padding-left: 10px;
		padding-top:30px;
		height: auto;
		width : 80%;
		background-color: white;
		
}
.conteneur-pagetexte{
		text-align: left;
		margin-top: 50px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 10px;
		padding-left: 10px;
		padding-top:30px;
		height: auto;
		width : 80%;
		background-color: white;
		
}
.expo{
		text-align: left;
		margin-top: 50px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 5px;
		padding-left: 10px;
		padding-top:30px;
		height: auto;
		width : 80%;
		background-color: white;
		
}
.champ{
  margin-bottom: 20px;
}
*{
  font-family: Avenir, sans-serif;
}
fieldset {
  border: none;
  background-color: #C2B0F9;
  border: 2px solid black;
  border-radius: 6px;
  margin-bottom: 20px;
  padding-left: 10px;
		padding-top:10px;
		padding-bottom: 10px;
  width: 80%;
  margin-top: 50px;
	margin-left: auto;
		margin-right: auto;
		margin-bottom: 5px;
}
legend{
  background-color: white;
  border: 2px solid black;
  border-radius: 6px;
  padding: 4px;
}
.champ{
  margin-bottom: 10px;
}
textarea{
  width: 60%;
  height: 100px;
}
input{
  width: 150px;
}
input[type="radio"], input[type="checkbox"]{
  width: auto;
}
input[type="submit"]{
  width: 100px;
}