* {box-sizing: border-box}
.mySlides1, .mySlides2, .mySlides3 {display: none}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  overflow-x: hidden;
  border: 0px dashed orange;
}

.left_pane{
	position:absolute;
	top:0; left:0;
	width:50%;
	height:400px;
	cursor:pointer;
	border: 0px solid green;
}
.left_pane:hover{
	border: 0px solid orange;
}

.right_pane{
	position:absolute;
	top:0; left:348px;
	width:50%;
	height:400px;
	cursor:pointer;
	border: 0px solid #ccc;
}
.right_pane:hover{
	border: 0px solid orange;
}


/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 200px;
  width: auto;
  padding: 16px;
  margin-top: -22px;
 /* 
 color: white;
 */
  
  -webkit-text-stroke-width: 1px; /* Adjust the width of the outline */
  -webkit-text-stroke-color: black; /* Set the color of the outline */
  -webkit-text-fill-color: white; /* Set the fill color of the text */
  
  font-weight: bold;
  font-size: 36px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}


/* On hover, add a grey background color */
.prev:hover, .next:hover {
  -webkit-text-stroke-width: 1px; /* Adjust the width of the outline */
  -webkit-text-stroke-color: white; /* Set the color of the outline */
  -webkit-text-fill-color: black; /* Set the fill color of the text */
}


.caption_count{
	color:#000;
	font-weight:600;
	text-align:center;
}

.slide_caption{
	text-align:left;
}

