	body
	{
		margin: auto;
		margin-top: 10px;
		margin-bottom: 10px;
		background-color: white;
		width: 900px;
		/*min-height: 800px;*/
		border-style: solid;
		border-width: 1px;
		border-color: black;

	}
	
	/* définition du cadre d'en-tête */
	#en_tete /* variante simple */
	{
		height: 100px;
		background-image: url("./entete.png");
		background-repeat: no-repeat;
		
	}
	
	#en_tete1 /* variante elephargot */
	{
		height: 100px;
		background-image: url("./entete1.png");
		background-repeat: no-repeat;
	}
	
	#en_tete2 /* variante mouette */
	{
		height: 100px;
		background-image: url("./entete2.png");
		background-repeat: no-repeat;
	}
	
	#en_tete3 /* variante elephargot + mouette */
	{
		height: 100px;
		background-image: url("./entete3.png");
		background-repeat: no-repeat;
	}
	
	/* définition du cadre gauche (contient uniquement une image) */
	#barre_gauche
	{	
		float: left;
		width: 100px;
		height: 500px;
		background-image: url("./gauche.png");
		background-repeat: no-repeat;
		background-color: white;
	}
	
	/* définition du cadre contenant le corps de la page */
	#contenu_page
	{			
		padding-left: 20px;
		padding-right: 20px;	
		margin-right: 200px;
		margin-left: 150px;
	}
	
	
	#cadre_droite
	{
		float: right;
		margin-right: 10px;
		/* margin-top: 100px; */
		width: 200px;		
	}
	
	#lien_actif
	{
		width: 200px;
		height: 20px;
		margin: 0px;
		background-image: url("./lien_actif.png");
		background-repeat: no-repeat;
		
		color: #f08d38;
		font-size: 15px;
		font-family: Arial, "Nimbus sans L";
		padding-left: 40px;
		text-align: justify;
	}	
	#lien_actif a
	{
		color: #f08d38;
		text-decoration: none;
	}
	/* survol des menus*/		
	#lien_actif a:hover 
	{
		color: #f2ba51;
	}
	
	#lien_inactif
	{
		width: 200px;
		height: 20px;
		margin-top: 0px;
		margin-bottom: 0px;
		background-image: url("./lien_inactif.png");
		background-repeat: no-repeat;
		
		
		color: #f08d38;
		font-size: 15px;
		font-family: Arial, "Nimbus sans L";
		padding-left: 40px;
		text-align: justify;
		text-decoration: none;
	}	
	#lien_inactif a
	{
		color: #f08d38;
		text-decoration: none;
	}
	/* survol des menus*/		
	#lien_inactif a:hover 
	{
		color: #f2ba51;
	}
	
	/* définition des styles de titres du corps de page */
	.pastille /* pastille à placer devant grands paragraphes */
	{
		width: 30px;
		height: 30px;		
		background-image: url("./pastille.png");
		background-repeat: no-repeat;
		float: left;
		background-color: white;
	}
	
	h1
	{
		text-align: left;
		font-size: 20px;
		color: #f06939;
		font-family: "Arial", Nimbus\ sans\ L;
		border-bottom-width: 1px;
		border-bottom-style: solid;
		border-bottom-color: black;
	}
	
	h2
	{
		text-align: left;
		font-size: 15px;
		color: #959c49;
		margin-left: 10px;
		font-family: "Arial", Nimbus\ sans\ L;
	}
	
	h3
	{
		text-align: left;
		font-size: 15px;
		margin-left: 20px;
		color: #527873;
		font-family: "Arial", Nimbus\ sans\ L;
	}
	
	h3 a
	{
		text-align: left;
		font-size: 13px;
		margin-left: 0px;
		color: #527873;
		font-family: "Arial", Nimbus\ sans\ L;
	}
	
	h3 a:hover
	{
		color: #959c49;
	}
	
	h4 /* sous type de paragraphe : pour desription des projets */
	{
		font-family: Arial, "Nimbus sans L";
		color: #333333;
		text-indent: 0px;
		font-size: 12px;
	}
	
	/* définition des généralités des paragraphes */
	p
	{
		font-family: Arial, "Nimbus sans L";
		color: #333333;
		padding: 5px;
		text-indent: 5px;
	}
	
	
	a
	{
		font-family: Arial, "Nimbus sans L";
		font-size: 12px;
		text-align: center;
		color: #f08d38;
	}
	
	a:hover
	{
		color: #f2ba51;
	}
	
	#pied_page
	{
		font-size: 10px;
		font-family: Arial, "Nimbus sans L";
		font-style: 'bold';
		text-align: center;

		width: 100%;
		height: 50px;
		margin-top: 200px;
		background-image: url("./pied.png");
	}
	
	#pied_page a
	{
		font-family: Arial, "Nimbus sans L";
		color: #f08d38;
		font-size: 10px;
	}
	
	#pied_page a:hover
	{
		color: #f2ba51;
	}
	
	
	h3 img
	{
		box-shadow: 3px 3px 3px grey;
		-ms-box-shadow: 3px 3px 3px grey;
		-webkit-box-shadow: 3px 3px 3px grey;
		-o-box-shadow: 3px 3px 3px grey;
		-moz-box-shadow: 3px 3px 3px grey;
		transition: transform 0.5s ease;
		-ms-transition: -ms-transform 0.5s ease;
		-webkit-transition: -webkit-transform 0.5s ease;
		-o-transition: -o-transform 0.5s ease;
		-moz-transition: -moz-transform 0.5s ease;
		
	}
	
	h3 img:hover
	{
		transform: scale(1.1);
		-ms-transform: scale(1.1);
		-webkit-transform: scale(1.1);
		-o-transform: scale(1.1);
		-moz-transform: scale(1.1);
	}
	/* Partie liée au formulaire de contact */
	
		.correct
	{
		color: black;
		display: inline-block;
		vertical-align: top;
	}

	.incorrect
	{
		color: red;
		display: inline-block;
		vertical-align: top;
	}