/* CSS Document */
body{
	padding: 0px;
	margin: 0px;
}
.contener{
	width: 100%;
	margin: 0px auto;

	background:rgba(220,220,220, 1);
}
.header{
	width: 100%;
	height: 90px;
	background: rgba(18,90,30,1.00);
}
.logo{
	margin: 10px 10px  10px 20px;
}

.lien_inscription{
	position: relative;
	top: 5px;
	right: 5px;
	margin: 0px;
	padding-left: 5px;
	display: inline;
	float: right;
	font-family: arial;
	font-size: 20px;
	font-weight: bold; 
	text-decoration: none;
	border-left: 1px solid white;
	color: white;
	text-shadow: 1px 1px 1px black;
	transition: all 0.3s linear;
}
.lien_inscription:hover{
	color: white;
	text-decoration: none;
}
nav input[type=checkbox]{
	display: none;
}
nav label{
	display: none;
}
nav{
	width: 100%;
	margin-top: 2px;
}
nav ul{
	padding: 0px;
	margin: 0px;
}
nav li{
	list-style-type: none;
	float: left;
}
nav a{
	text-decoration: none;
	padding: 0px 30px;
	margin-left: 3px;
	display: inline-block;
	font-family: arial;
	font-weight: bold;
	text-shadow: 1px 1px 1px black;
	color: white;
	border: 1px solid rgba(49,32,32,1.00);
	border-radius: 4px;
	transition: all 0.3s linear;
	background: rgba(18,90,30,1.00);
}
nav ul li:hover a{
	background: rgba(32,142,27,1.00);
	text-decoration: none;  /*Ennuler les css du bootstrap*/
	color: white;  /*Ennuler les css du bootstrap*/
}
.table::after{
	display: table;
	content: "";
	clear: both;
}
.containt{
	min-height: 472px;
}

/*debut footer*/
.footer{
	margin: 0px;
	padding: 0px;
	height: 30px;
	background: rgba(18,90,30,1.00);
	border-top: 1px solid black;
}
#titreFooter{
	margin: 0px;
	padding: 0px;
	text-align: center;
	font-family: arial;
	text-shadow: 1px 1px 1px black;
	color: white;
}

/* fin footer*/

nav input[type=checkbox]:checked ~ ul{
	display: block;
}
@media screen and (max-width: 550px){
	.header{
		display: none;
	}
	.label-menu-mobil{
		padding: 12px 0px;
		display: block;
		color: white;
		font-weight: bold;
		font-family: arial;
		font-size: 20px;
		text-align: center;
		background: rgba(18,90,30,1.00);
	}
	nav{
		width: 100%;
		margin-top: 0px;
		background: rgba(18,90,30,1.00);
	}
	nav ul{
		padding: 0px;
		margin: 0px;
	}
	nav li{
		list-style-type: none;
		float: inherit;
	}
	nav a{
		text-decoration: none;
		display: block;
		padding: 5px 0px 5px 20px;
		margin: 0px;
		border-radius: 0px;
		border: inherit;
		font-family: arial;
		font-weight: bold;
		text-shadow: 1px 1px 1px black;
		text-align: left;
		color: white;
		transition: all 0.3s linear;
		background: rgba(18,90,30,1.00);
	}
	nav ul li:hover a{
		border-radius: 10px;
		text-decoration: underline;
	}
	.footer{
		display: none;
	}
}
