@charset "utf-8";
/* CSS Document */

 #slider-wrapper{
  position: relative;
  width:992px;
  height:293px;
  overflow: hidden;
}

.img-bir, .img-iki, .img-uc{
  position: absolute;
  width:992px;
  height:293px;
}

.img-bir{left: 0px;}
.img-iki{left: 992px;}
.img-uc{left: 1984px;}


#slider-wrapper > .slider{
  position: absolute;
  left:0px;
  width: 2976px;
  height: 293px;
  -webkit-animation-duration: 10s;
  -webkit-animation-name: sliders;
  -webkit-animation-iteration-count:infinite;
 
}

#slider-wrapper > .slider:hover{
-webkit-animation-play-state:paused;
}

@-webkit-keyframes sliders{
  0% {left:0px;}
  10% {left:0px;}
  20% {left:-992px;}
  30% {left:-992px;}
  40% {left:-1984px;}
  50% {left:-1984px;}

}
