@charset "utf-8";
/* CSS Document */
*{
	margin:0px;
	padding::0px;
	font-family:Baskerville, Arial, Helvetica, sans-serif;
	color:#1F5B92;
}

#titre {
	font-family:impact; 
	font-size: x-large;	
}
/* gestion div inofrmations */
.postit {
	position: absolute;
	top: 20px;
	right: 12px;
	/*background-color: #ffff00;*/
	background-image: url("img/postit.png")
	z-index:2;
}
.info {
	align:justify;
	font-family: "Times New Roman", Times, serif;
	position: absolute;
	top: 68px;
	right: 28px;
	height: 144px;
	width:185px;
	color:#006400; /* couleur txt vert*/
}

.facebook {
	position: absolute;
	top: 42px;
	right: 40px;
	z-index:3;
}

#entete {
	height: 50px;
	margin:0;
	padding:0;
	border-radius: 10px; /* BORDS ARRONDIS */
	background-color: #fff; /* fond blanc */

/* offset left, top, thickness, color with alpha */
-webkit-box-shadow: 5px 5px 5px rgba(0, 0, 5, 0.5);
-moz-box-shadow: 5px 5px 5px rgba(0, 0, 5, 0.5);
box-shadow: 5px 10px 10px rgba(0, 0, 5, 0.5);
/* IE */
filter:progid:DXImageTransform.Microsoft.dropshadow(OffX=5, OffY=5, Color='gray');
/* slightly different syntax for IE8 */
-ms-filter:"progid:DXImageTransform.Microsoft.dropshadow(OffX=5, OffY=5, Color='gray')";
}

/* GESTION DU MENU DE NAVIGATION */
nav ul{
	list-style-type:none;
}
nav li{
	float:left;
	width:18%;
	text-align:center;
	font-size: 1.2rem;
}
nav a{
	display:block;
	text-decoration:none;
	color:#104A80; 
	border-bottom:2px solid transparent;
	padding:10px 0px;
}
nav a:hover{
	color:#012D54;
	border-bottom:2px solid #1F5B92;
}
nav{
	width: 95%;
	margin:0 auto;
	background-color:white;
	position:sticky;
	top:0px;
}
navul::after{
	content:"";
	display:table;
	clear:both;
}
/* GESTION DU MENU DE NAVIGATION -EO-*/

div#contenu {
	width:80%;
	height:100%;  
	margin:60px;
	padding: 1em;
	background-color:#FFF;
	}

div#bandeau {
	font-family:Baskerville;
	align:center;
	width:100%;
	padding:1em;
	background-color:#669;
	color:#fff;
	border-radius: 10px; /* BORDS ARRONDIS */ 
	text-align:center;
	font-size:larger;
	font-style:oblique;
	font-weight: bold;
}

#piedpage {
	align:center;
	text-align:center;
	width:100%;
}

/* infobulle ci-dessous : http://fabrice.lemainque.free.fr/CSS_20.html */
div.infobulle {
/*	margin: 20 auto;  */
	align:center;
	text-align:center;
	width:100%;
	}
div.infobulle span{
	position:absolute;
	margin-top:1.5rem;
	margin-right:-20rem;
	padding: 10px;
	text-align:left;
	color:#508DC4;
	box-shadow: 10px 10px 5px #888;
	border: 1px;
	border-radius: 15px;
	background: radial-gradient(0px 0px, #043152, #ededed);
/*	transform:scale(0) rotate(-15deg);  */
	transition:all .3s;
	opacity:0;
	left: 421px;
	}

div.infobulle:hover span, div.infobulle:focus span{ 
/*	transform:scale(1);  */
	opacity:1;
	}

/*survol images notes */
a {
  display:inline-block;
  position:relative;
  margin:auto;
}
a span {
	display:block;
	position:absolute;
	/*	transform:translateX(-50%);*/
	z-index:-999;
	padding-bottom:0rem;
	opacity:0;
	transition:opacity 0.3s ease;
	left:0px;
	top:0px;
}
a span img {
  display:block;
/*  width:100%;
  height:auto;
  */
}
a:hover span {
  opacity:1;
  z-index:1;
}
