.VideoCenterPlay{
    background: url(images/play.png) center center no-repeat;
}

.VideoCenterStop{
    background: url(images/stop.png) center center no-repeat;
}

.VideoControlPlay{
    background-image: url(images/playbtn.png);
    background-repeat: no-repeat;
}
.VideoCenterWaiting{
    background-image: url(images/wait.png);
    background-repeat: no-repeat;
    animation: rotate 1s infinite linear;
}
.VideoControlStop{
    background-image: url(images/pausebtn.png);
    background-repeat: no-repeat;
}
.VolumeIcon{
    background-image: url(images/volume.png);
    background-repeat: no-repeat;
}

@keyframes rotate {
    0% { transform: translate(-50%, -50%) scale(0.5) rotate(0deg); }
    50% { transform: translate(-50%, -50%) scale(0.5) rotate(180deg); }
    100% { transform: translate(-50%, -50%) scale(0.5) rotate(360deg); }
}