@charset "utf-8";


.thumb {
	width: 320px;
	margin: auto;
	position: absolute;
	left: -50%;
	right: -50%;
}

.tabthumb {
	width: 115px;
	height: 115px;
	overflow: hidden;
	position: relative;
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-backface-visibility: hidden;
	-webkit-transition: .15s ease-in-out;
	transition: .15s ease-in-out;
}

.tabthumb:hover {
	opacity: 0.60;
	filter: alpha(opacity=60);
	-webkit-backface-visibility: hidden;
}

.lightbox {
	display: none;
	position: fixed;
	z-index: 9999;
	width: 100%;
	height: 100%;
	text-align: center;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.85);
	opacity: 1;
	text-decoration: none;
	color: #ffffff;
	font-size: 18px;
	font-weight: normal;
	overflow: auto;
}

.lightbox img {
	max-width: 800px;
	margin-top: 2%;
	margin-bottom: 2%;
	border: solid 2px #16b9c5;
	opacity: 1;
}

.lightbox:target {
	outline: none;
	display: block;
}

* {
	box-sizing: border-box
}

.mySlides {
	display: none
}

.slideshow-container {
	width: 960px;
	height: 570px;
	position: relative;
	margin: 30px auto 10px auto;
}

.prev,
.next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	width: auto;
	padding: 0 10px 0 10px;
	margin-top: -35px;
	color: #000;
	font-weight: bold;
	font-size: 56px;
	transition: 0.4s ease;
	user-select: none;
}

.prev {
	left: 0;
}

.next {
	right: 0;
}
.prev:hover,
.next:hover {
	color: #16b9c5;
}

.dot {
	height: 10px;
	width: 10px;
	margin: 0 3px;
	background-color: #666;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
	vertical-align: middle;
}

.active{
	background-color: #16b9c5;
	height: 16px;
	width: 16px;
	margin: 0;
}

.fade {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1s;
	animation-name: fade;
	animation-duration: 1s;
}

@-webkit-keyframes fade {
	from {
		opacity: .4
	}
	to {
		opacity: 1
	}
}

@keyframes fade {
	from {
		opacity: .4
	}
	to {
		opacity: 1
	}
}