/* Newsflash Textshow container */
.main_play {
  display: none;
  top: 0px;
/*  left: 550px; */
  width: 100%;
  height: 40px;
  overflow: hidden;
  /* background:#E2E2E2; */
  position: relative;
}

.play {
  left: 0;
  top:0px;
  width: 100%;
  height: 40px;
  position: relative;
  animation-name: example;
  animation-duration: 15s;  
/*  animation-delay: 2s;
  animation-fill-mode: both;
  animation-iteration-count: 1; */
}

div.play:hover {
  animation-play-state: paused;
}

@keyframes example {
  0%    {top: 40px;}
  10%   {top: 0px;} 
  90%   {top: 0px;} 
  100%  {top: -40px;}
}


