body {
	background-color: #444444;
}

#fullBlurImage {
	position: absolute;
	top: 0; bottom: 0; left: 0; right: 0;
	min-height: 100%;
	
	background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
	
	-webkit-filter: blur(15px);
	filter: blur(15px);
}

#fullBlurVideo {
	position: fixed;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: -100;
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
	background-size: cover;
	
	-webkit-filter: blur(15px);
	filter: blur(15px);
}

.clickable {
	cursor: pointer;
}

.centered {
	position: absolute;
	max-width: 90%;
	max-height: 90%;
	margin: auto;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	
	text-align: center;
	vertical-align: middle;
}

.shadowed {
	box-shadow: 0px 0px 25px 5px rgba(0,0,0,0.75);
}
