	body {
		font-family: Arial, sans-serif;
		background-color: #45786b;
		color: #3b3f44;
	}
	
	a {
		color: #3b3f44;
	}

	.divmenu {
		width: 200px;
		display: inline-block;
		position : static;
	}

/* Style par défaut pour les écrans de moins de 950px */	
	.container {
		width: 95%;
		margin: 0 auto;
		padding: 0px;
	}
	

/* Media query pour les écrans de plus de 800px */	
@media (min-width: 800px) {
	.container{
		width: 800px; 
		margin: 0 auto;
		position: relative;
	}
}
	

*{
    margin: 0px;
    padding: 0px;
}

nav{
    width:10%;
  	color: #ed7b25;
    position: relative;
  	font-size: 1.5em;
    top: 0px;
  	z-index: 1000;
}

nav ul{
    list-style-type: none;
}

nav ul li{
    float: left;
    width: 400px;
    text-align: left;
    position: relative;
	margin: 10px;
}

nav ul::after{
    content: "";
    content: "";
    display: table;
    clear: both;
}

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

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

.sous{
    display: none;
    box-shadow: 0px 1px 2px #CCC;
    background-color: white;
  	font-size : 1em;
    position: absolute;
    width: 100%;
    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: 1em;
}


.bandeau {
	background-color: white;
	height: 60px;
	width: 100%;
	position: relative;
	background-image: url("bandeau.png");
	background-size: contain;
	background-repeat: no-repeat;
	
}