/* DISABLE CACHE pour voir les changements */

/* pour les polices utilisables avec tt navigateurs : .ttf .woff */
@font-face {
	font-family: 'circuit';
	src: url('font/circuit.ttf') format('truetype');
	font-family: 'uranium';
	src: url('font/uranium.ttf') format('truetype');
	font-family: 'Akashi';
	src: url('font/Akashi.ttf') format('truetype');
	font-family: 'fnf';
	src: url('font/fnf.ttf') format('truetype');
}

/*  *********************** MENU ********************/
nav{
	font-family: fnf, Arial, Times New Roman, serif;
	font-size:1.6em;
	text-align: center;
}

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

nav li{
	display: inline-block;
}

nav a {
	font-family: Akashi, Arial, Times New Roman, serif;
	color: white;
	margin-right: 50px;
	border-radius: 10px;
}

nav a:hover{
	background-color: black;
	padding: 10px;
}

#banniere_haut{
	height: 170px;
	margin-bottom: 20px;
	background: url('image/bandeau_blender.png');
	position: relative;
	border-radius: 10px; /* arrondi de la banniere */
	box-shadow: 0px 5px 10px 2px #1c1a19; /* ombrage derriere la banniere */}

#banniere_haut a {
	color: white;
	text-decoration: none;
}

#banniere_nav{
	position: absolute; /* permet de se positionner à l'intérieur de bannière_haut */
	bottom: 0;
	width: 100%;
	background-color: rgba(24,24,24,0.8);
	border-radius: 0px 0px 10px 10px;
}

#banniere_bas{
	height: 144px;
	margin-top: 20px;
	background: url('image/bandeau_ndvi.png');
	position: relative;
	border-radius: 10px; /* arrondi de la banniere */
	box-shadow: 0px 5px 10px 2px #1c1a19; /*ombrage derriere la banniere */
	
}

#banniere_bas_contact{
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: rgba(24,24,24,0.8);
	border-radius: 0px 0px 10px 10px;
	color: white;
}

/*  *********************** TEXT ********************/
p{
	color: black;
	margin: auto; /* centrage auto */
	margin-left: 40px; /* centrage auto */
	text-align: left;
	padding: 10px; /* marges intérieurs (structure : padding : haut droite bas gauche) où (padding : haut-et-bas droite-et-gauche) */
	margin-bottom: 10px; /* marges extérieurs en bas */
}

h1 {
	margin-bottom: 30px;
	margin-left: 10px; /* centrage auto */
	text-decoration: underline;
}

h2 {
	margin-bottom: 20px;
	margin-left: 20px; /* centrage auto */
	text-decoration: underline;
}

h3 {
	margin-bottom: 10px;
	margin-left: 30px; /* centrage auto */
	text-decoration: underline;
}

main {
	margin-left: 30px;
}

body{
	background-color: grey;
}

#bloc_page{
	width: 1000px;
	margin: auto;
	border: 3px solid black;
}

section{
	width: 600px;
}

article{
	display: inline-block;
	vertical-align: top;
	align-items: center;
	border: 1px solid black;
	margin: 2px;
	width: 275px;
	height: 450px;
}

article img {
	display: inline-block;
	width: 250px;
	height: 250px;
	object-fit: cover;
	margin-left: auto;
	margin-right: auto;
}

article h2{
	font-family: Akashi , Times New Roman, serif;	
	margin-left: 5px;
	text-align: center;
}

.home_maj{
	display: inline-block;
	vertical-align: top;
	position: relative;
	border: 1px solid black;
	padding: 10px;
}

aside{
	display: inline-block;
	position: relative;
	border: 1px solid black;
}

.footer{
	clear: both;
}

.footer a{
	color: #3b5997
}

#carto {
	margin: auto;
	width: 50%;
}


/*  *********************** TABLEAU ********************/

.table_top{
	border-collapse: collapse;
	width: 1000px;
	margin:auto;
}

.table_top tr{
	border: 5px double black;
}

.table_top tr:hover {
	background-color: greenyellow;}

.table_top td{
	text-align: center; 
	border: 1px dotted black;
}

.table_top #top{
	font-weight: bold;
	font-size: 6em;
}

.table_top img {
	max-width: 250px;
	max-height: 250px;
	display: block;
	margin: 0;
}

.table-camper, td, tr {
	padding: 0px;
	border-collapse: collapse;
	border: 1px solid black;
	width: 800px;
}
.table-camper tr:hover {background-color: greenyellow;}



/*
<div id="xxx">		 (identifiant) identifiant unique
<div class="xxx">	 (classe) style pour plusieurs éléments

div#xxx {}		identifiant
div.xxx {}		classe
*/
