@charset "utf-8";
/* CSS Document */

.slide {
	float: left;
	width: 100vw;
	overflow: hidden;
}

.slidewrapper {
	width: 500vw;
	height: 35vw;
	 -webkit-animation: slide 40s ease;	
	 -webkit-animation-direction: alternate;
	 -webkit-animation-iteration-count: infinite;
}

.slideshow {
	width: 100vw;
	height: 35vw;
	overflow: hidden;	
	border-bottom: 5px solid #764624;
}

@-webkit-keyframes slide {
  0% {margin-left: 0px;}
  25% {margin-left: -100vw;}
  50% {margin-left: -200vw;}
  75% {margin-left: -300vw;}
  100% {margin-left: -400vw;}
 
}
