.slider {
	position: relative;
	width: 100%;
	height: 100%;
}

.slider .slide {
	position: absolute;
	display: none;
	width: 100%;
	height: 100%;
	
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: cover;
}

.slider > .arrow-left, .slider > .arrow-right {
	position: absolute;
	top: 50%;
	
	width: 46px;
	height: 81px;
	margin-top: -40px;
	
	background-repeat: no-repeat;
	background-size: auto 100%;
	
	cursor: pointer;
}

.slider > .arrow-left{
	left: -80px;
	background-image: url(../../img/slider/arrow-left.png);
}

.slider > .arrow-right{
	right: -80px;
	background-image: url(../../img/slider/arrow-right.png);
}

.slider > .indicateurs {
	display: none;
}