/* (A) STANDARD ROW HEIGHT */
.vwrap, .vitem {
  height: 30px;
  line-height: 30px;
}
 
/* (B) FIXED WRAPPER */
.vwrap {
  overflow: hidden; /* HIDE SCROLL BAR */
}
/* (C) TICKER ITEMS */
.vitem { text-align: right;
        margin-right:10px;
}
 
/* (D) ANIMATION - MOVE ITEMS FROM TOP TO BOTTOM */
/* CHANGE KEYFRAMES IF YOU ADD/REMOVE ITEMS */
.vmove { position: relative; }
@keyframes tickerv {
  0% { bottom: 0; } /* FIRST ITEM */
  10% { bottom: 30px; }
  20% { bottom: 60px; }
  30% { bottom: 90px; } /* SECOND ITEM */
  40% { bottom: 120px; }
  50% { bottom: 150px; }
  60% { bottom: 180px; } /* THIRD ITEM */
  70% { bottom: 210px; }
  80% { bottom: 240px; }
  90% { bottom: 270px; } /* FORTH ITEM */
  100% { bottom: 0; } /* BACK TO FIRST */
}
.vmove {
  animation-name: tickerv;
  animation-duration: 40s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(1, 0, .5, 0);
}
.vmove:hover { animation-play-state: paused; }