
/* slide show container */

.slideShowDiv {
	position: relative;
  	margin: auto;
  	max-width: 500px;
}

/* left and right buttons */

.left, .right {
	cursor: pointer;
  	position: absolute;
  	top: 50%;
  	width: auto;
  	margin-top: -22px;
  	padding: 16px;
  	color: white;
  	font-weight: bold;
  	font-size: 18px;
  	transition: 0.6s ease;
  	border-radius: 0 3px 3px 0;
}

.left {
	left: 0;
}

.right {
	right: 0;
}


.left:hover, .right:hover {
  background-color: rgba(174, 181, 190, 0.8);
}