/*Reset CSS*/
*{
    margin: 0px;
    padding: 0px;
    font-family: Avenir, sans-serif;
}

body             { /* Page Body */
	max-width: auto;
	margin-top:0px;
	margin-bottom:0px;
	margin-left: auto;
    margin-right: auto;
	text-align: center;
	font-size:18px;
	background-color: #308625;
	color:#c0e470;
	}
	
div {
	margin-left: auto;
    margin-right: auto;
	width: 100%;
	max-width: auto;
	min-width: auto;
	color:#000000;
}

img {
	max-width:100%;
	min-width:auto;
	}
	
h1	{
	font: bold;
	font-size:24px;
	color:#000000;
}
h2	{
	font: bold;
	font-size:20px;
	color:#000000;
}
h3	{
	font: bold;
	font-size:18px;
	color:#000000;
}

.galerie a {
	font: bold;
	font-size:16px;
	color:#308625;
}

.galerie a:hover{
    color: #000000;
}
.texte { 
	max-width: 700px;
	text-align:left;
	color:#000000;
	font-size:16px;
		}	

.conteneur1 { 
	width:100%;
	margin-left: 0px;
    margin-right: 0px;
	max-width: auto;
	background-color:#308625;
	}
		
.conteneur2 { 		
	margin-left: auto;
    margin-right: auto;
	background-color:#c0e470;
	color:#308625;
	}
	
.conteneur3 { 
	width:100%;
	margin-left: 0px;
    margin-right: 0px;
	max-width: auto;
	background-color:#308625;
	font-size:16px;
	font-stretch: ultra-condensed;
	}	
	
.retour{
	text-align:center;
	color:#c0e470;	
	}
	

	
/** Menu déroulant **/
nav{
    width: 100%;
	max-width:600px;
    margin: 0 auto;
    background-color: #308625;
    top: 0px;
}

nav ul{
	padding:0;
	margin:0;
    list-style-type: none;
	 display: flex;
   align-items: center;
}

nav ul li{
    float: left;
	font-size:20px;
    width: 33%;
    text-align: center;
    position: relative;
	vertical-align:center;	
}

nav ul::after{
    content: "";
    display: table;
    clear: both;
}
a{
    text-decoration: none;
    color: #ffe599;
} 

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

nav a:hover{
    color: #ffe599;
    border-bottom: 2px solid gold;
}

.sous{
    display: none;
    box-shadow: 0px 1px 2px #CCC;
    background-color: #308625;
    position: absolute;
    width: auto;
	min-width:80px;
    z-index: 1000;
}
nav > ul li:hover .sous{
    display: block;
}
.sous li{
    float: none;
    width: 100%;
    text-align: left;
}
.sous a{
    padding: 10px;
    border-bottom: none;
}
.sous a:hover{
    border-bottom: none;
    background-color: RGBa(200,200,200,0.1);
}
.deroulant > a::after{
    content:"";
    font-size: 12px;
}
/* Fin menu déroulant */

