/* Slideshow style */
.splash {
	position: fixed;
	background: rgba(0,0,0,0.85);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 900;
	/*opacity: 0;*/
	/*visibility: hidden;*/
	overflow: hidden;

	transition: opacity 0.5s, visibility 0s 0.5s;
	-webkit-transition: opacity 0.5s, visibility 0s 0.5s;
}

.splash-open.splash {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.splash .splash-inner {
	width: 100%;
	height: 100%;
}
