
@font-face {
	font-family: 'mulilight';
	src: url('fonts/muli-light-webfont.woff2') format('woff2'),
		url('fonts/muli-light-webfont.woff') format('woff'),
		url('fonts/muli-light-webfont.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'muliregular';
	src: url('fonts/muli-regular-webfont.woff2') format('woff2'),
		url('fonts/muli-regular-webfont.woff') format('woff'),
		url('fonts/muli-regular-webfont.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}







html, body {
	height: 100%;
	width: 100%;
	overflow: hidden;

	margin:0px;
	padding:0px;

	font-family: 'muliregular', sans-serif;
	font-size: 15px;
	color:#fff;
	background-color:#222;

	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

a {
	color:#f33;
}



#menu {
	position: absolute;
	display: block;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 28px;
	text-align: center;
	border-top: 1px solid #666;
	background-color: #333;
	z-index:10;
}

.menuitem {
	display: inline-block;
	height:28px;
	padding: 5px 10px 0px 10px;
	cursor:pointer;
}
.menuitem:hover {
	color:#333;
	background-color:#ddd;
}
.menuitem.selected {
	color:#000;
	background-color:#fff;
}
.menuitem.selected:hover {
	color:#000;
	background-color:#fff;
}

#menuitem-share {
	width:18px;
	background-image: url('images/share.png');
	background-repeat: no-repeat;
	background-position: 50% 20%;
	background-size: 23px;
}



#animation {
	position:absolute;
	display:block;
	width:100%;
	height:100%;
	height:calc(100% - 25px);
	top:0px;
	left:0px;
}
#animation.paused {
    filter: grayscale(1.0) brightness(0.6) blur(2px);
    opacity:0.5;
}

#anim-title {
	position:absolute;
	display:block;

	background-image: url('images/anim_title.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
}
.paused #anim-title {
	xdisplay: none;
}






.contentitem {
	position:absolute;
	display:none;
	top:20px;
	left:20px;
	width:100%;
	height:100%;
	width:calc(100% - 40px);
	height:calc(100% - 65px);

	text-align:center;
}

.contentbox {
	position:relative;
	display:block;
	top:25px;
	max-width:500px;
	height:90%;
	height:calc(100% - 75px);
	margin-left:auto;
	margin-right:auto;

	text-align:center;
}
.contentbox ul {
	text-align: left;
}

.content-header {
	font-family: muliregular;
	font-weight: bold;
	font-size:18px;
}



#news {
}

#reviews {
}

#gallery {
	background-color:#000;
	background-image: url('gallery/haphazard_poster.jpg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	filter: drop-shadow(0px 5px 5px black);
}

.gallery-arrow {
	position:absolute;
	display:block;
	width:50px;
	height:50px;

	top:50%;
	margin-top:-25px;

	border-radius:50%;
	background-color:#fff;
	background-repeat: no-repeat;
	background-position: 50% 50%;

	z-index:10;
	cursor:pointer;
}
#gallery-left {
	left:70px;
	margin-left:-50px;
	background-image: url('images/arrow_left.png');
}
#gallery-right {
	right:70px;
	margin-right:-50px;
	background-image: url('images/arrow_right.png');
}

#trailer {
	background-color:#000;
}

#trailer-player {
	width: 100%;
	height: 100%;
}

#trailer span {
	display: block;
	position: absolute;
	top: 10px;
	left: 50%;
	width: 200px;
	margin-left: -100px;
}


.share-social-item {
	position: relative;
	display: inline-block;
	width: 100px;
	height: 35px;
	background-position: 50% 50%;
	background-size: contain;
	background-repeat: no-repeat;
	cursor: pointer;
	margin-bottom:4px;
}







.mobile {
	font-size: 25px;
}
.mobile #menu {
	height: 50px;
}
.mobile .menuitem {
	height: 50px;
	padding: 5px 15px 0px 15px;
}
.mobile #menuitem-share {
	width:40px;
	background-size: 45px;
}
@media all and (orientation:portrait) {
	.mobile {
		font-size: 35px;
	}
	.mobile #menu {
		height: 80px;
	}
	.mobile .menuitem {
		height: 80px;
		padding: 5px 20px 0px 20px;
	}
}
