/* CSS Document */
.slide
{
	width: 589px;
	height: 300px;
	margin-left: 0px;
	margin-right:0px;
	box-shadow: 0px 0px 10px 3px rgb(151,151,150);
	overflow:hidden;
	border:5px solid rbg #CCC;
	border-radius:6px;

	}
.slide figure img{
	width: 20%;
	height:300px;
	float:center;
	}
	.slide figure {
		position: relative;
		width: 499%;
		margin:0px;
		left:0px;
		animation:krutom 20s infinite linear;

		}
		@keyframes krutom{
			0%{left: 0%;}
			15%{left: 0%;}
			20%{left: -100%}
			35%{left: -100%;}
			40%{left: -200%;}
			60%{left: -200%;}
			65%{left: -300%;}
			80%{left: -300%;}
			85%{left: -400%;}
			100%{left: -400%;}
			}
		