@charset "utf-8";
/* CSS Document */

.slide {
	  margin: 0px;
	  width: 668px;
	  height: 265px;
	  overflow: hidden;
	  border: 0px solid;
	  position: relative;
	}

	.photo {
	  position: absolute;
	  animation: round 16s infinite;
	  opacity: 0;
	}
	
	@keyframes round {
	  25% {
		opacity: 1;
	  }
	  40% {
		opacity: 0;
	  }
	}
	img:nth-child(1) {
	  animation-delay: 12s;
	}
	
	img:nth-child(2) {
	  animation-delay: 8s;
	}
	
	img:nth-child(3) {
	  animation-delay: 4s;
	}
	
	img:nth-child(4) {
	  animation-delay: 0s;
	}