#slider{
	width: 463px;
	max-width: 463px;
	overflow-x: hidden;
	overflow-y: hidden;
	margin-top: 0px;
	margin-left: 0px;
	position: absolute;
	box-shadow: 0px 0px 5px #888888;
	}
	
#slider figure{
	width:500%;
	position:relative;
	margin-top:0px;
	margin-right:0px;
	margin-bottom:0px;
	margin-left:0px;
	padding-top:0px;
	padding-right:0px;
	padding-bottom:0px;
	padding-left:0px;
	font-size:0px;
	text-align:left;
	/*animation*/
	-webkit-animation:15000ms slidy infinite;
	   -moz-animation:15000ms slidy infinite;
		-ms-animation:15000ms slidy infinite;
		 -o-animation:15000ms slidy infinite;
			animation:15000ms slidy infinite;
}
figure img {
	width: 20%;
	height: auto;
	float: left;
	}
	
@keyframes slidy {
	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: -400%; }
}

@-webkit-keyframes slidy {

    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: -400%; }
} 