<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {box-sizing:border-box}

/* Slideshow container */
.slides-container {
	position: relative;
	margin: auto;
	margin-bottom:1em;
}

/* Hide the images by default */
.mySlide {
	display: none;
	text-align:center;
}
.mySlide img{
	margin:0;
	display:block;
	width:100%;
}

/* Next &amp; previous buttons */
.myprev, .mynext {
	cursor: pointer;
	position: absolute;
	top: 46%;
	transform: translateY(-50%);
	width: auto;
	padding: 16px;
	color: #b3b3b3 !important;
	font-weight: bold;
	font-size: 1em;
	transition: 0.6s ease;
	user-select: none;
	text-decoration:none !important;
	display:none;
}

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

.mynext {
	right: 0;
	border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.myprev:hover, .mynext:hover {
	background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.slides-container p {
	color: #000;
	font-size: 1em;
	text-align: center;
}

/* The dots/bullets/indicators */
.mydot {
	height: 15px;
	width: 15px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 50%;
	display: inline-block;
	transition: background-color 0.6s ease;
	cursor: pointer;
}

.mydot.hover:hover, .mydot.active {
	background-color: #717171;
}

.slideshow-nav{
	position: relative;
	top: -20px;
	margin-bottom: 20px;
	text-align:center;
	display:none;
}


.myplaybutton {
	box-sizing: border-box;
	width: 30px;
	height: 30px;
	border-width: 10px 0px 10px 74px;
	border-color: transparent transparent transparent #202020;
	background:transparent;

}


.myoverlay{
	background:rgb(0,0,0,0);
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	transition: background 200ms;
	cursor: pointer;
}
.myoverlay:hover{
	background:rgb(0,0,0,.5);
}

.myplaybutton {
	border: 0;
	background: transparent;
	box-sizing: border-box;
	width: 0;
	height: 74px;

	border-color: transparent transparent transparent transparent;
	transition: 100ms all ease;

	border-style: solid;
	border-width: 37px 0 37px 60px;
	cursor: pointer;

	position:relative;
	left:50%;
	top:50%;
	transform: translate(-50%, -50%);

}

.myplaybutton.paused {
	border-style: double;
	border-width: 0px 0 0px 60px;
}

.myoverlay:hover .myplaybutton {
	border-color: transparent transparent transparent #fff;
}

.myplaybutton:focus {outline:0;}


.myprogressbar{
	position:absolute;
	bottom:0;
	height:2px;
	width:100%;
}
.myprogressbar .myprogress{
	background:rgb(255,255,255,.7);
	width:0;
	height:2px;
}</pre></body></html>