/**
	Juizy Slideshow
	@author: Geoffrey Crofte
	@date: 2011-12-07
	@from: self work http://creativejuiz.fr/trytotry
	@license: CreativeCommons (BY)
	
	
	************* Changelog *************
	
	** v.1.1.1 - 2012-02-27
	- Figcaption element hidden when you take the control
	
	** v.1.1.0 - 2011-12-31
	- Caption of figure (figcaption element) display improvement
	
	** v.1.0.0 - 2011-12-07
	- First version
	
	
	** chopped by SIB www.sib.gov.ar - 2013-05-10
	
*/

html {
	min-height:100%;
	overflow-x:hidden;
}

body {
	width: 610px;
	color:#777;
}

figure { 
	display: inline-block; 
}

#slideshow {
	position: relative;
	width: 610px;
	height: 320px;
	padding: 0px;
	border: 0px solid #ddd;
	background: #fff;
}

#slideshow .container {
	position:relative;
	width: 610px;
	height: 320px;
	overflow: hidden;
}

@-webkit-keyframes slider {
	0%, 20%, 100%	{ left: 0 }
	25%, 45%		{ left: -100% }
	50%, 70%		{ left: -200% }
	75%, 95%		{ left: -300% }
}
@-moz-keyframes slider {
	0%, 20%, 100%	{ left: 0 }
	25%, 45%		{ left: -100% }
	50%, 70%		{ left: -200% }
	75%, 95%		{ left: -300% }
}
@keyframes slider {
	0%, 20%, 100%	{ left: 0 }
	25%, 45%		{ left: -100% }
	50%, 70%		{ left: -200% }
	75%, 95%		{ left: -300% }
}

#slideshow .slider {
	position: absolute;
	left:0; top:0;
	width: 400%;
	height: 320px;
	
	-webkit-animation: slider 24s infinite;
	-moz-animation: slider 24s infinite;
	animation: slider 24s infinite;
}

#slideshow figure {
	position:relative;
	padding:0; margin:0;
}



/*