.loop_section {
  width: 100%;
  height: 150px;
  position: relative;
}
.loop_section * {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.loop_section .loop-slider {
  width: 6000px;
  height: 150px;
  position: absolute;
  top: 0;
  -webkit-animation: slide 50s linear 0s infinite;
  -moz-animation: slide 50s linear 0s infinite;
  -ms-animation: slide 50s linear 0s infinite;
  -o-animation: slide 50s linear 0s infinite;
  animation: slide 50s linear 0s infinite;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -ms-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}
.loop_section .loop-slider:hover {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -ms-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}
.loop_section .loop-slider ul {
  list-style: none;
  width: 3000px;
  height: 150px;
  float: left;
}
.loop_section .loop-slider li {
  width: 150px;
  height: 150px;
  float: left;
}
.loop_section .loop-slider a {
  display: block;
}

@-webkit-keyframes slide {
  0% {
    left: 0;
  }
  100% {
    left: -3000px;
  }
}
@-moz-keyframes slide {
  0% {
    left: 0;
  }
  100% {
    left: -3000px;
  }
}
@keyframes slide {
  0% {
    left: 0;
  }
  100% {
    left: -3000px;
  }
}

/*# sourceMappingURL=loopslider.css.map */
