@charset "utf-8";
/* CSS Document */

/* affichage d'un lien modifier */
.alien {
	text-decoration: none;
	color: black;
	text-shadow: 1px 1px 1px 1px white;
	font: 16px georgia,times,serif;
	text-shadow: 1px 1px 1px white;	
}
#hover_alien{
  font-weight:bold;
  font-size:18px;
  color : black;
  cursor:pointer;
  transition: color 1s;
  
}
/* couleur logo bio europein vert pantone 376 en hexa #7dba00 */
#hover_alien:hover{
	font-weight:bold;
 	font-size:19px;
 	color : grey;
  transition: color 1.5s;
  
}

/* Affichage boite de titre */

.boite_ombree {
	padding: 8px;
	border: 1px solid #CCC;
	box-shadow: 8px 8px 12px #888;
	border-radius: 6px;
	background-color: lightgray;
}

.boite_active {
	padding: 8px;
	border: 1px solid #CCC;
	box-shadow: 8px 8px 12px #888;
	border-radius: 6px;
	background-color: gray;
}

.boite_inegale {
	box-sizing: border-box;
	border-radius: 0.5em 2em 0.5em 2em;
	background-color: #00FF99;
	padding-left: 35px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
}
.boite_goute {
	box-sizing: border-box;
	border-radius: 2em 3em 0.5em 2em;
	background-color: #00FF99;
	padding-left: 35px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
}
.texte_grave {
	text-align: center;
	text-shadow: 1px 1px 1px 1px white;
	font: 2.5em georgia,times,serif;
	text-shadow: 1px 1px 1px white;	
}
.texte_tresgrave {
	text-align: center;
	text-shadow: -1px -1px -1px -1px white;
	font: 2.5em georgia,times,serif;
	color: grey;
	text-shadow: -1px -1px 0px black,-1px -1px 0px black,-1px -1px 0px black,-1px -1px 0px black;	
}

.texte_nonactif {
	text-align: center;
	text-shadow: 1px 1px 1px 1px white;
	font: 1.5em georgia,times,serif;
	text-shadow: 1px 1px 1px white;	
}
.texte_actif {
	text-align: center;
	text-shadow: -1px -1px -1px -1px white;
	font: 1.5em georgia,times,serif;
	color: grey;
	text-shadow: -1px -1px 0px black,-1px -1px 0px black,-1px -1px 0px black,-1px -1px 0px black;	
}

.titre_ferme {
    background-attachment: scroll;
	background-image: url("../images/texte/logo_50x30.png");
	background-position: 10px 3px;
	background-repeat: no-repeat;
}
.titre_info {
    background-attachment: scroll;
	background-image: url("../images/texte/ampoule_feuille_petite.png");
	background-position: 5px 3px;
	background-repeat: no-repeat;  
}

.titre_horraire {
    background-attachment: scroll;
	background-image: url("../images/texte/horloge_50x50.png");
	background-position: 13px 3px;
	background-repeat: no-repeat;
	background-color: lightgray;  
}
.titre_activite {
    background-attachment: scroll;	
	background-position: 5px 3px;
	background-repeat: no-repeat;
	background-color: lightblue;  
}
.titre_annonce {
    background-attachment: scroll;
	background-image: url("../images/texte/miimosa_50x50.png");
	background-position: 5px 3px;
	background-repeat: no-repeat;
	background-color: lightgreen;  
}

.paratitre {
    margin-top: 3px;
}

/* couleur logo bio europein vert pantone 376 en hexa #7dba00 */
#hover_color{
  font-weight:bold;
  font-size:22px;
  color : #7dba00;
  cursor:pointer;
  transition: color 1s;
}
/* couleur logo bio AB vert pantone 361 en hexa #12AD2B */
#hover_color:hover{
   color : #12AD2B;
  transition: color 0.5s;
}

#imgrottour  img{
  transition:transform .9s;
}
/****      Rotation d'une image à droite */
#imgrotdroite  img{
  transition:transform .9s;
  transform:rotate(-30deg);
}
#imgrotdroite  img:hover{
  transition:transform .9s;
  transform:rotate(0deg);
}
/****   Rotation d'une image à gauche */
#imgrotgauche  img{
  transition:transform .9s;
  transform:rotate(30deg);
}
#imgrotgauche  img:hover{
  transition:transform .9s;
  transform:rotate(0deg);
}
/****   Rotation d'une image sur elle même à gauche */
#imgrottour  img:hover{
  transition:transform .9s;
  transform:rotate(540deg);
}
/*! * * * * * * * * * * * * * * * * * * * *\  
  CSShake :: shake-slow
  v1.5.0
  CSS classes to move your DOM
  (c) 2015 @elrumordelaluz
  http://elrumordelaluz.github.io/csshake/
  Licensed under MIT
\* * * * * * * * * * * * * * * * * * * * */
.shake-slow {
  display: inline-block;
  transform-origin: center center; }

.shake-freeze,
.shake-constant.shake-constant--hover:hover,
.shake-trigger:hover .shake-constant.shake-constant--hover {
  animation-play-state: paused; }

.shake-freeze:hover,
.shake-trigger:hover .shake-freeze, .shake-slow:hover,
.shake-trigger:hover .shake-slow {
  animation-play-state: running; }

@keyframes shake-slow {
  2% {
    transform: translate(0px, -3px) rotate(3.5deg); }
  4% {
    transform: translate(-9px, -3px) rotate(0.5deg); }
  6% {
    transform: translate(-7px, 4px) rotate(-0.5deg); }
  8% {
    transform: translate(7px, 5px) rotate(2.5deg); }
  10% {
    transform: translate(-1px, -3px) rotate(-1.5deg); }
  12% {
    transform: translate(-3px, 8px) rotate(1.5deg); }
  14% {
    transform: translate(9px, -7px) rotate(2.5deg); }
  16% {
    transform: translate(1px, -9px) rotate(3.5deg); }
  18% {
    transform: translate(-4px, 7px) rotate(-1.5deg); }
  20% {
    transform: translate(6px, 3px) rotate(0.5deg); }
  22% {
    transform: translate(4px, -2px) rotate(-1.5deg); }
  24% {
    transform: translate(-7px, -8px) rotate(3.5deg); }
  26% {
    transform: translate(-5px, 9px) rotate(2.5deg); }
  28% {
    transform: translate(0px, -2px) rotate(-1.5deg); }
  30% {
    transform: translate(5px, 9px) rotate(1.5deg); }
  32% {
    transform: translate(6px, 2px) rotate(-1.5deg); }
  34% {
    transform: translate(-9px, 9px) rotate(2.5deg); }
  36% {
    transform: translate(-8px, 10px) rotate(3.5deg); }
  38% {
    transform: translate(2px, -4px) rotate(-2.5deg); }
  40% {
    transform: translate(2px, 7px) rotate(-2.5deg); }
  42% {
    transform: translate(2px, 4px) rotate(3.5deg); }
  44% {
    transform: translate(-8px, -3px) rotate(2.5deg); }
  46% {
    transform: translate(5px, -3px) rotate(1.5deg); }
  48% {
    transform: translate(9px, 4px) rotate(3.5deg); }
  50% {
    transform: translate(-1px, 2px) rotate(-1.5deg); }
  52% {
    transform: translate(-9px, 4px) rotate(-1.5deg); }
  54% {
    transform: translate(-1px, -6px) rotate(-2.5deg); }
  56% {
    transform: translate(4px, -6px) rotate(0.5deg); }
  58% {
    transform: translate(-8px, 2px) rotate(2.5deg); }
  60% {
    transform: translate(2px, 10px) rotate(3.5deg); }
  62% {
    transform: translate(5px, 5px) rotate(1.5deg); }
  64% {
    transform: translate(5px, 7px) rotate(-0.5deg); }
  66% {
    transform: translate(-6px, 9px) rotate(-0.5deg); }
  68% {
    transform: translate(4px, -2px) rotate(0.5deg); }
  70% {
    transform: translate(-5px, -3px) rotate(3.5deg); }
  72% {
    transform: translate(2px, 5px) rotate(-0.5deg); }
  74% {
    transform: translate(-9px, 4px) rotate(3.5deg); }
  76% {
    transform: translate(3px, -7px) rotate(1.5deg); }
  78% {
    transform: translate(0px, 4px) rotate(2.5deg); }
  80% {
    transform: translate(-1px, 4px) rotate(1.5deg); }
  82% {
    transform: translate(8px, 2px) rotate(1.5deg); }
  84% {
    transform: translate(7px, -6px) rotate(-0.5deg); }
  86% {
    transform: translate(3px, 0px) rotate(0.5deg); }
  88% {
    transform: translate(7px, -9px) rotate(-1.5deg); }
  90% {
    transform: translate(1px, 3px) rotate(0.5deg); }
  92% {
    transform: translate(10px, 3px) rotate(-0.5deg); }
  94% {
    transform: translate(4px, 1px) rotate(1.5deg); }
  96% {
    transform: translate(3px, 9px) rotate(2.5deg); }
  98% {
    transform: translate(4px, -7px) rotate(0.5deg); }
  0%, 100% {
    transform: translate(0, 0) rotate(0); } }

.shake-slow:hover,
.shake-trigger:hover .shake-slow, .shake-slow.shake-freeze, .shake-slow.shake-constant {
  animation-name: shake-slow;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite; }