.testimonial
{
	overflow: hidden;

}

.testimonial figure div
{
	width: 20%;
	float: left;

}


.testimonial figure
{
	position: relative;
	width: 800%;
	margin: 0;
	-webkit-animation: testimonials 100s linear -2s infinite;
	-moz-animation: testimonials 100s linear -2s infinite;
	-o-animation: testimonials 100s linear -2s infinite;
	-ms-transition: testimonials 100s linear -2s infinite;
	animation: testimonials 100s linear -2s infinite;

}



@-webkit-keyframes testimonials 
{
	0%
	{
		left: 100%;
	}
	
	100%
	{
		left: -700%;
	}
}

@-moz-keyframes testimonials 
{
	0%
	{
		left: 100%;
	}
	
	100%
	{
		left: -700%;
	}
}

@-o-keyframes testimonials 
{
	0%
	{
		left: 100%;
	}
	
	100%
	{
		left: -700%;
	}
}


@keyframes testimonials 
{
	0%
	{
		left: 100%;
	}
	
	100%
	{
		left: -700%;
	}
}