/* (A) SAME DIMENSIONS FOR OUTER WRAPPER & SLIDES */
.vwrap, .vslide { width: 100%; height: 60px; text-align: left; }

.superwrap p {font-size: 200%; display: inline;}
 
/* (B) OUTER WRAPPER HIDE SCROLLBAR */
.vwrap { overflow: hidden; }
 
/* (C) SHIFT SLIDES WITH CSS ANIMATION */
/* (C1) SLIDES POSITION */
.vmove { position: relative; bottom: 0%; }
@keyframes slidev {
  0% { bottom: 0; } 9% { bottom: 0; }
  10% { bottom: 100%; } 19% { bottom: 100%; }
  20% { bottom: 200%; } 29% { bottom: 200%; }
  30% { bottom: 300%; } 39% { bottom: 300%; }
  40% { bottom: 400%; } 49% { bottom: 400%; }
  50% { bottom: 500%; } 59% { bottom: 500%; }
  60% { bottom: 600%; } 69% { bottom: 600%; }
  70% { bottom: 700%; } 79% { bottom: 700%; }
  80% { bottom: 800%; } 89% { bottom: 800%; }
  90% { bottom: 900%; } 99% { bottom: 900%; }
  100% { right: 0; }
}
 
/* (C2) MOVE SLIDES */
.vmove { animation: slidev linear 40s infinite; }