@charset "utf-8";
/* Slide Show -------------------------------------------------------------------- */
body{
	max-width:100%;
	background-color: black;
}
#myslideshow{
	width:100%;
	margin:0px auto;
	height:100%;
}
#myslideshow .title{
	width:100%;
	font-size:130%;
	color:#FFF;
	padding:5px;
	font-weight:bold;
}
#myslideshow #image{
	width:100%;
	margin:0px auto;
	height:100%;
}
#myslideshow #front-image,
#myslideshow #back-image{
	/*Specify the image area size here*/
	position: absolute;
	display:flex;
	justify-content:center;
	align-items:center;
	align-content:center;
	height:100%; 
	width:100%;
	overflow:hidden;
}
#myslideshow #image img{
	flex:none;
	width:auto;
	align-self:center;
	max-height:100%;
	max-width:100%;
	position:relative;
}
#myslideshow .caption{
	color:#FFF;
	font-size:32px;
	font-weight:bold;
	text-shadow: 2px 2px 8px #000;
	position:absolute;
	bottom:120px;
	width:100%;
}
#myslideshow .caption .title{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);	
	font-size: 5vw;
	color: gold;
	text-align: center;
}
/* Slide Show Filmstrip-------------------------------------------------------------------- */
#myslideshow_filmstrip-frame{
	overflow:hidden;
	cursor:pointer;
	position:absolute;
	width:100%;
	bottom:25px;
	
}
#myslideshow_filmstrip-frame:hover #myslideshow_filmstrip{
	visibility:visible;
}
#myslideshow_filmstrip{
	visibility:hidden;
}
#myslideshow_filmstrip img{
	width:auto;
}
#myslideshow_filmstrip img:hover{
	opacity:1;
}


/* Slide Show Controls-------------------------------------------------------------------- */
#slide-control-frame:hover #slideshow-controls{
	visibility:visible;
}
#slide-control-frame{
	overflow:hidden;
	cursor:pointer;
	position:absolute;
	width:100%;
	bottom:5px;
	
}
#slideshow-controls{
	visibility:hidden;
	margin-top:5px;
	margin-bottom:5px;
	text-align:center;
	font-size:130%;
}
#slideshow-controls button{
	background:none;
	border:none;
	font-weight:bold;
	text-shadow: 2px 2px 8px #000;
	color:#FFF;
	width:20px;
}
#slideshow-controls button:hover{
	opacity:0.5;
}
/* Messages -------------------------------------------------------------------- */
.warning{
	position:absolute;
	height:0px;
	width:100%;
	margin:0px auto;
	
}