.header_animated_news_feed_for_slider_page {
    position: absolute;
    top: 450px;
    right: 0px;
    width: 250px;
    height: 40px;
}

.header_animated_news_feed {
    position: absolute;
    top: 90px;
    right: 0px;

    width: 250px;
    height: 40px;
}

.header_animated_news_feed_2 {
    position: absolute;
    top: 70px;
    right: 0px;

    width: 250px;
    height: 40px;
}

#scroll-container {
    border: 0px solid black;
    border-radius: 0px;
    width: 250px;
    height: 40px;
    overflow: hidden;

    font-size: 10px;
    line-height: 1.2;
}

#scroll-text {
    height: 100%;
    text-align: left;

    /* animation properties */
    -moz-transform: translateY(100%);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);

    -moz-animation: my-animation 15s linear infinite;
    -webkit-animation: my-animation 15s linear infinite;
    animation: my-animation 15s linear infinite;
}

/* for Firefox */
@-moz-keyframes my-animation {
    from {
        -moz-transform: translateY(100%);
    }
    to {
        -moz-transform: translateY(-100%);
    }
}

/* for Chrome */
@-webkit-keyframes my-animation {
    from {
        -webkit-transform: translateY(100%);
    }
    to {
        -webkit-transform: translateY(-100%);
    }
}

@keyframes my-animation {
    from {
        -moz-transform: translateY(100%);
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
    to {
        -moz-transform: translateY(-400%);
        -webkit-transform: translateY(-400%);
        transform: translateY(-400%);
    }
}
