
/* le block conteneur */
.marquee-rtl {
  display:inline-block;
  position:fixed;
  top:255px;
  left: 50%;
  transform: translateX(-500px);
  width: 999px;
  margin: 1em auto 2em;
  overflow: hidden;
  background-color:#006600;
}
.marquee-rtl > :first-child {
  display: inline-block;      /* modéle de boîte en ligne */
  padding-right: 2em;         /* un peu d'espace pour la transition */
  padding-left: 100%;         /* placement à droite du conteneur */
  white-space: nowrap;        /* pas de passage à la ligne */
  animation: defilement-rtl 50s infinite linear;
  will-change: transform;     /* optimise l'animation */
  cursor: pointer;
}
.marquee-rtl:hover :first-child {
  animation-play-state: paused;
}
.msg {
	font-size: 20px;
	line-height:2em;
	text-align:center;
	color: #ffffff;
}
.msg:first-letter {
  font-weight: 700;
}
@keyframes defilement-rtl {
  0% {
    transform: translate3d(0,0,0);
  }
  100% {
    transform: translate3d(-100%,0,0);
  }
}
