.iklanbox {
    position:relative;
    width:100% !important;
    height:90px !important;
    /*display:table;*/
    /*table-layout:fixed;*/
    background:#82a5ce;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow:hidden;
}

.text-iklan,.text-iklan a {display:block;color:#fff;
    text-align:center;
    text-transform:uppercase;
    margin:0 auto;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;}

.text-iklan{
    animation: animationFrames ease 9s;
    animation-iteration-count: infinite;
    transform-origin: 50% 50%;
    animation-fill-mode:forwards; /*when the spec is finished*/
}

@keyframes animationFrames{

    0% {
        opacity:1;
        transform:  translate(100%,50px)  ;
    }
    50% {
        opacity:1;
        transform:  translate(20%,50px)  ;
    }
    100% {
        opacity:1;
        transform:  translate(100%,50px)  ;
    }

}