@charset "UTF-8";
/* CSS Document */

.slideShow{
	position: relative;
	width:100%;
	overflow:hidden;
	display:inline-block;
}
/* Next & previous buttons */
.prev, .next {
	top:45%;
	cursor: pointer;
	position:absolute;
	font-size: 10vh;
	color: #8da8a5;
	z-index: 2;
}

.prev{
	padding-left: 1vw;
}
/* Position the "next button" to the right */
.next {
  right: 0;
  padding-right: 1vw;
}

/* 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);
}

.active, .dot:hover {
  background-color: #717171;
}
#slide{
	max-height: 100%;
	max-width: 100%;
	width: auto;
	height: auto;
	position:absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1;
}
