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

.slideshow-container {
    margin: 4em auto 0 auto;
    padding: 0;
    width: 100%;
    height: calc( 100vw / 16 * 9 - 18rem );
    position: relative;
    background-color: transparent;
}


.slideshow-container &gt; .mySlides {
    display: none;
    border: 1px solid var(--darkslategrey);
    background-size: contain; /* cover; */
    background-position: center;
    border-bottom: 1px solid var(--darkslategrey);
    height: 100%;
    width: 100%;
    border: 0;
	background-repeat: no-repeat;
}


.slideshow-container &gt; .mySlides &gt; .text {
    color: #f2f2f2;
    position: absolute;
    bottom: 2rem;
    width: auto;
    text-align: center;
    font-size: 1.5em;
    background-color: rgba( 128, 128, 128, .66);
    padding: .5em;
    border: 1px solid rgba( 128, 128, 128, 1);
    border-radius: .25em;
    display: block;
    transform: translateX(-50%);
    left: 50%;
}

/* Number text (1/3 etc) */
.slideshow-container &gt; .mySlides &gt; .numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}


.dot-container { text-align: center; margin: 1em auto; }

/* The dots/bullets/indicators */
.dot {
  height: 1vh;
  width: 1vh;

  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.slideshow-container &gt; .mySlides.fade {
  animation-name: fade;
  animation-duration: 2.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}





/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

@media only screen and (max-width: 1178px) {
	height: calc( 100vw / 16 * 9 - 3rem );
	#page 		{ margin-top: 7rem; }
	#menuDesktop.menuState { font-size: unset; }
}

@media only screen and (max-width: 1024px) {
	.slideshow-container &gt; .mySlides &gt; .text {
	    bottom: 0;
	    margin: 0;
	    width: 100%;
	    font-size: 1em;
	    transform: unset;
	    left: unset;
	}
}




@media only screen and (max-width: 500px) {
	.slideshow-container { height: calc( 100vw / 16 * 9 - 2rem ); }
	#page 		{ margin-top: 4rem; }
}

</pre></body></html>