@charset "utf-8";
/* CSS Document CAPTEUR*/
/**/

.LigneSuivante {
	background: linear-gradient(45deg, #adadad 5%,#e2e4e4 26%,#adadad 51%,#e2e4e4 75%,#adadad 95%); opacity: 1;
}

.ImageCapteur, .ImageSymbole {
							margin: 30px;
							box-shadow: 0px 0px 30px 20px #FFFFFF,-1px -1px 30px 20px #FFFFFF;
							border-radius: 5px ;
}
.ImageCapteur {max-width: 80% ; max-height: 120px; }

.ImageSymbole { width: auto ; max-height: 100px; }

/* Bulle container */
.Bulle {
	position: relative;
	z-index: 1;
	/*display: inline-block;*/
}
/* Bulle text */
.Bulle .Bulletext {
  visibility: hidden;
  width: 200px;
  background-color: #555; text-shadow: none ;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  position: absolute;/* Position the Bulle text */
  bottom: 50%;
  left: 70%;
  opacity: 0;
  transition: opacity 1s;
}
/* Show the tooltip text when you mouse over the tooltip container */
.Bulle:hover .Bulletext {
  visibility: visible;
  opacity: 1;
}
