@charset "utf-8";
/* CSS Document */

.slider {
  width: 100%;
  overflow: hidden;
}
.slide-pict{
	width:400%;
	position:relative;
	left:0%;
	top:0%;
	animation: picmov 30s infinite;
	animation-timing-function:linear;
	-webkit-animation:picmov 30s infinite;
	-webkit-animation-timing-function:linear;
}
.slide-pict img {
  width: 25%;
  height: auto;
}


@keyframes picmov {
  0% {left:0%;}
  20% {left:0%;}
  25% {left:-100%;}
  45% {left:-100%;}
  50% {left:-200%;}
  70%{left:-200%;}
  75%{left:-300%;}
  95%{left:-300%;}
  100%{left:0%;}
  
}





