/*imageViewer*/
#imageViewer {
	display: none;
	position: fixed;
	z-index: 70;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	opacity: 0.0;
	transition: all 0.3s;
}
#imageViewer[data-open="true"]{
	display: block;
}
#imageViewer[data-open="true"][data-efx="true"] {
	opacity: 1.0;
}
#imageViewer figure {
	width: 100%;
	height: 100vh;
	position: relative;
	z-index: 0;
	background-color: rgba(0, 0, 0, 0.94);
	display: table;
}
#imageViewer .imwrap {
	width: 100%;
	height: 100vh;
	position: relative;
	z-index: 0;
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	overflow: hidden;
}
#imageViewer .imwrap .im {
	opacity: 1.0;
	transition: all 0.3s;
}
#imageViewer[data-dir="wide"] .imwrap .im {
	max-width: 100%;
	height: auto;
}
#imageViewer[data-dir="tall"] .imwrap .im {
	max-height: 100%;
	width: auto;
}
#imageViewer figure figcaption {
	display: block;
	position: absolute;
	z-index: 5;
	bottom: 3em;
	left: 0;
	padding: 3em 2em;
	color: #fff;
	text-shadow: 0 0 5px #000;
}
#imageViewer figure figcaption .maincaption {
	line-height: 1.6em;
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5em;
	overflow-x: hidden;
	max-width: 100%;
}
#imageViewer figure figcaption .subcaption {
	line-height: 1.6em;
	font-size: 1rem;
	font-weight: 500;
	opacity: 0.5;
	overflow-x: hidden;
	max-width: 100%;
}
#imageViewer[data-loading="true"] {
	background-image: url(../../im/prl_spinpulsate-wh.png);
	background-position: center center;
	background-size: 4em auto;
}
#imageViewer[data-loading="true"] .im {
	opacity: 0.0;
}
#imageViewer a.closer {
	
}