@CHARSET "UTF-8";

#divCoverSlideshow {
	display: none;
	color: #dddddd;
	position: fixed;
	z-index: 20001;
	width: 98%;
	margin: auto;
	top: 1em;
	left: 0;
	right: 0;
	height: 95%;
	justify-content: center;
	flex-direction: column;
	background-color: #484747;
	border-radius: 6px;
	transition: all 2s ease 0s;
}

#divCoverSlideshowTitle {
	text-align: center;
	height: 1.5em;
	font-size: 1.5em;
	margin: 0.5em 0 0.2em;
}

#divCoverSlides {
	position: relative;
	flex: 0 1 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 82%;
}

.slideshow-slide {
	z-index: 5;
	position: absolute;
	text-align: center;
	transition: all 1s ease 0s;
	height: 98%;
	width: auto;
	opacity: 1;
}

.slideshow-slide img {
	visibility: visible;
	max-height: 100%;
	width: auto;
	max-width: 100%;
}

#divCoverSlideNav {
	display: flex;
	font-style: normal;
	justify-content: center;
}

.slideshow-nav {
	padding: 4px;
	margin: 15px 4px;
}

.slide-label-active {
	font-weight: bold;
	color: #F7B130;
}

.slideshow-button {
	margin: 15px;
	border: 1px solid #CCCCCC;
	padding: 5px 10px;
	border-radius: 6px;
	width: 6em;
	display: inline-block;
	cursor: pointer;
	background-color: #666;
	text-align: center;
}

#coverContent {
	display: flex;
	height: 50vh;
	background-color: transparent;
	font-family: "Source Sans Pro", sans-serif;
	letter-spacing: 0.1em;
	font-size: 0.9rem;
	/*-webkit-transition: all 1s linear;
	-moz-transition: all 1s linear;
	-o-transition: all 1s linear;*/
	transition: all 1s ease;
	position: fixed;
	top: 20vh;
	width: 70vw;
	left: 15vw;
	z-index: 200;
	padding: 20px;
	border: 2px solid #86b6d7;
	border-radius: 4px;
	opacity: 0;
	visibility: hidden;
}

#coverContent.visible {
	/*height: 50vh !important;*/
	background-color: white;
	opacity: 1;
	visibility: visible;
}

#coverContent .static-content {
	height:100%; 
	overflow: hidden;
}
#coverContent.visible .static-content {
	overflow: auto;
}

.news-popup-close {
	position: absolute;
	right: 0.5em;
	top: 0.5em;
}

#divCoverSlideDesc {
	text-align: center;
	height: 3em;
	margin-top: 4px;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.1em;
}

/* Tablet and smaller devices */
@media screen and (max-width: 1024px){
	.slideshow-nav {
		margin: 15px 1px;
	}	
}