﻿.main_marquee_container {
    background-color: white;
}
.marquee {
    margin: 0 auto;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
	 height: 36px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 0;
    padding-right: 50px;
    background: url(../Images/marquee-bg.png) right center no-repeat;
}
.marquee a {
        margin-left: 70px;
        margin-right: 70px;
        display: inline-block;
        line-height: 36px;
        font-size: 13px;
        color: #343434;
        text-decoration: none;
        position: relative;
    }

        .marquee a i {
            color: #199498;
            margin-left: 5px;
            font-size: 9px;
            line-height: 30px;
        }
.marquee div {
    display: inline-block;
    padding-right: 100%;  /* show the marquee just outside the paragraph */
    animation: marquee 50s linear infinite;
}

.marquee div:hover {
    animation-play-state: paused
}

/* Make it move */
@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(100%, 0); }
}