
#carrousel {
	width: 600px;
	height: 300px;
	/*border : 4px solid #fff;*/
	position : relative;
	border-radius: 20px;
	overflow: hidden;
}



#container {
	width: 600px;
	height: 300px;
	cursor: pointer;
}

.photo{
	width: 590px;
	height: 300px;
	margin-left: 5px;
	margin-right: 5px;
	display: inline-block;
	/*background-size: cover;*/
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size:contain ;

}

.bouton {
	position: absolute;
	cursor: pointer;
	top: 50%;
	width: 20px;
	transition: all 0.3s ease;
}

#d{
	left: 0px;
	opacity: 0.4;
	transform: rotate(0deg);
}

#g{
	right: 0px;
	opacity: 0.4;
	transform: rotate(180deg);
}

#d:hover{
	opacity: 1;
	transform: rotate(-5deg) scale(1.1);
}

#g:hover{
	opacity: 1;
	transform: rotate(185deg) scale(1.1);
}