﻿



.scroll-up {
 height: 200px;	
 overflow: hidden;
 position: relative;
}
.scroll-up p {
 position: absolute;
 width: 100%;
 height: 100%;
 margin: 0;
 /* line-height: 50px; */
 text-align: center;
 /* Starting position */
 -moz-transform:translateY(100%);
 -webkit-transform:translateY(100%);	
 transform:translateY(100%);
 /* Apply animation to this element 
 -moz-animation: scroll-up 15s linear infinite;
 -webkit-animation: scroll-up 15s linear infinite;
animation: scroll-up 15s linear infinite;
*/	
 -moz-animation: scroll-up 5s .2s  ease infinite;
 -webkit-animation: scroll-up 5s  .2s ease infinite;
  animation: scroll-up 5s .2s  ease infinite;
 


 
}
/* Move it (define the animation) */
@-moz-keyframes scroll-up {
 0%   { -moz-transform: translateY(100%); }
 100% { -moz-transform: translateY(-10%); }
}
@-webkit-keyframes scroll-up {
 0%   { -webkit-transform: translateY(100%); }
 100% { -webkit-transform: translateY(-10%); }
}
@keyframes scroll-up {
 0%   { 
 -moz-transform: translateY(100%); /* Browser bug fix */
 -webkit-transform: translateY(100%); /* Browser bug fix */
 transform: translateY(100%%); 		
 }
 100% { 
 -moz-transform: translateY(-10%); /* Browser bug fix */
 -webkit-transform: translateY(-10%); /* Browser bug fix */
 transform: translateY(-10%); 
 }
 


   