.imgcrawler{
    position: relative;
    overflow:hidden;
}
.imgcrawler .crawler{
    overflow:hidden;
    transform: translate3d(0, 0, 0);
    animation: var(--speed);
}
.imgcrawler ul{

    float:left;
    margin-left:0;
}
.imgcrawler ul:hover{
	animation-play-state:paused;
}

.imgcrawler ul li{
    width:var(--iwidth);
    height:var(--iheight);
    display:inline-block;
    float:left;
    margin:0 var(--margin);
    line-height:var(--iheight);
}
.imgcrawler ul li img{
    max-height:var(--iheight);	
}


.ic-caption{
    top:var(--captop);
    left:var(--capleft);
    bottom:var(--capbot);
}

@keyframes moveSlideshow {
    0%{
        transform: translate3d(0, 0, 0);
    }
    
}