

/* Slideshow container */
.slideshow-container {
	position: relative;
	margin: auto;
	padding: 20px;
	overflow: hidden;
}

/* Hide the images by default */
.mySlides {
  display: none;
	overflow: hidden;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: black;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 10px 10px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 10px 0 0 10px;
}

.contenu_slide{
	margin: auto;
	height: 400px;
	width: 100%;
}

.image_slide{
	max-width: 450px;
	opacity: 0.5;
	float: left;
}

h3{color: #a40000; font-size: 25px; padding-bottom: 20px; margin: 0px; text-decoration: underline;}
.text{	
	margin-left: 400px;
}

a.lien_interne:link,
a.lien_interne:visited{color: #a40000; font-weight: bold; transition-property: color; transition-duration: 0.5s;}
a.lien_interne:hover{color: #c64b4b;}
		
.text ul li{margin: 5px;}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
  color: white;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #000000;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}