.vwrap, .vitem {
  height: 30px;
  line-height: 30px;
}

.vwrap {
  overflow: hidden; 

}

.vitem { text-align: center; }

.vmove { position: relative; }
@keyframes tickerv {
  0% { bottom: 0; } 
  30% { bottom: 30px; } 
  60% { bottom: 60px; } 
  90% { bottom: 90px; } 
  100% { bottom: 0; } 
}
.vmove {
  animation-name: tickerv;
  animation-duration: 00s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(1, 0,.5, 0);
}
.vmove:hover { animation-play-state: paused; }
