


/*************************************************  css3-image-slider  */
.imgSlider {
	/*  */
	width: 320px;
	margin: 0px auto;

	overflow: hidden;
	box-shadow: 1px 1px 4px rgba(0,0,0,0.08);
	/*border: 7px solid rgba(255,255,255,0.6);
	background: yellow;
	*/
	
}

.imgSlider figure {
    position: absolute;
	top: 0;
	/* width decalage for each images*/
	left: 30px; 
	
	/*  width of the images*/
	width: 150px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.6);
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
        
}

.imgSlider > figure {
    position: relative;
	left: 0;
}

.imgSlider img {
	display: block;
	width: 100%;
}

.imgSlider input {
	position: absolute;
	top: 0;
	left: 0;
	/* 
	cover visible part 
	*/
	width: 20px; 
	height: 100%;
	cursor: pointer;
	border: 0;
	padding: 0;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
	z-index: 100;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.imgSlider input:checked{
	width: 5px;
	left: auto;
	right: 0px;
}
.imgSlider input:checked ~ figure {
	-webkit-transition: all 0.7s ease-in-out;
    -moz-transition: all 0.7s ease-in-out;
    -o-transition: all 0.7s ease-in-out;
    -ms-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
    /* deplacement droite: taille width image */
	left: 150px;
}

.imgSlider figcaption {
	width: 100%;
	height: 100%;
	background: rgba(87, 73, 81, 0.1);
	position: absolute;
	top: 0px;
	-webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.imgSlider figcaption span {
	position: absolute;
	top: 40%;
	margin-top: -30px;

	right: 10px;
	left: 10px;
	overflow: hidden;
	text-align: center;
	background: rgba(87, 73, 81, 0.3);
	
	/*line-height: 20px;*/
	line-height: 20px;
	font-size: 0.7em;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
	
	letter-spacing: 2px;
	font-weight: 700;
	/*
	letter-spacing: 4px;
	text-transform: uppercase;*/
	
	padding: 3px;
	color: #fff;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
} 

.imgSlider figcaption span a  {
	color:#fff;
	text-decoration: none;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
	font-size: 0.8em;

}


.imgSlider input:checked + figcaption,
.imgSlider input:checked:hover + figcaption{
	background: rgba(87, 73, 81, 0);
}

.imgSlider input:checked + figcaption span {
	-webkit-transition: all 0.4s ease-in-out 0.5s;
    -moz-transition: all 0.4s ease-in-out 0.5s;
    -o-transition: all 0.4s ease-in-out 0.5s;
    -ms-transition: all 0.4s ease-in-out 0.5s;
    transition: all 0.4s ease-in-out 0.5s;
	
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=99)";
    filter: alpha(opacity=99);
	opacity: 1;
	
	top: 50%;
}

.imgSlider #ia-selector-last:checked + figcaption span {
	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	-o-transition-delay: 0.3s;
	-ms-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.imgSlider input:hover + figcaption {
	background: rgba(87, 73, 81, 0.03);
}

.imgSlider input:checked ~ figure input{
    z-index: 1;
}