.marquee_container {
    width: 100%;
    overflow: hidden;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9999;
}

.marquee {
    height: 79px;
    width: 1976px;
    font-size: 0;
}

.marquee a {
    height: 50px;
    width: 494px;
}

.marquee a  {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.first_banner {
-webkit-animation: bannermove 30s linear infinite;
-moz-animation: bannermove 30s linear infinite;
-ms-animation: bannermove 30s linear infinite;
 -o-animation: bannermove 30s linear infinite;
    animation: bannermove 30s linear infinite;
}

@keyframes "bannermove" {
    0% {margin-left: 0px;}
    100% {margin-left: -2000px;}
}

@-moz-keyframes bannermove {
    0% {margin-left: 0px;}
    100% {margin-left: -2000px;}
}

@-webkit-keyframes "bannermove" {
    0% {margin-left: 0px;}
    100% {margin-left: -2000px;}
}

@-ms-keyframes "bannermove" {
    0% {margin-left: 0px;}
    100% {margin-left: -2000px;}
}

@-o-keyframes "bannermove" {
    0% {margin-left: 0px;}
    100% {margin-left: -2000px;}
}
#marquee_close {
    background: url("close_dark.png");
    width: 34px;
    height: 34px;
    position: fixed;
    right: 5px;
    bottom: 84px;
}
#marquee_close:hover{
    cursor: pointer;
}
.marquee a.paused {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}