/* .marquee { */
/*   	animation: move 10s infinite; */
/*   	-webkit-animation: move 10s infinite; */
/*   	-webkit-animation-delay:15s; */
/*   	animation-delay:15s; */
/* } */

.marquee{
	animation: movestart 5s 2000ms  forwards,move 10s 10000ms forwards infinite;
  	-webkit-animation: movestart 5s 2000ms  forwards,move 10s 10000ms forwards infinite;
}

@keyframes move {
  0% { margin-left: 100%; }
    50% { margin-left: 0%; }
    100% { margin-left: -100%; }
}
            
@-webkit-keyframes move {
   0% { margin-left: 100%; }
    50% { margin-left: 0%; }
    100% { margin-left: -100%; }
}
@keyframes movestart {
  0% { margin-left: 0%; }
    100% { margin-left: -102%; }
}
            
@-webkit-keyframes movestart {
   0% { margin-left: 0%; }
    100% { margin-left: -102%; }
}/* CSS Document */