/*
@font-face {
	font-family: OpenSans;
	src:url("OpenSans-Regular-webfont.eot?") format("eot"),
		url("OpenSans-Regular-webfont.svg") format("svg"),
		url("OpenSans-Regular-webfont.woff") format("woff"),
		url("OpenSans-Regular-webfont.ttf") format("truetype");
	font-weight:normal;
	font-style:normal;
}

*/
body {
	padding: 0;
	margin: 0;
	/*overflow: hidden;*/
}
*{
	box-sizing: border-box;
}

#content{
	position:absolute;
	width:100%;
	height:100%;
	overflow:hidden;
	min-width:900px;
	min-height:550px;
}

ul{
	list-style:none;
	padding: 0;
	margin: 0;
}

#video_layer{
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	z-index:-1000;
	opacity:0;
}

#video_layer video{
	width:100%;
	height:100%;
	background-color:#fff;
}

/******************* NAVIGATION BAR *****************************/

#nav_viewport{
	position: absolute;
	display:none;
	top: 50%;
	margin-top: -100px;
	width: 100%;
	height: 200px;
}

#nav_wrapper{
	position: absolute;
	top:75px;
	left:70px;
	right:0;
	bottom:0;
	overflow:hidden;
}

#nav{
	position:absolute;
	left:0;
	opacity:0;
	height:50px;
	line-height: 50px;
	width:100%;
}

#nav > li{
	display: inline-block;
	padding: 0 25px;
}

#nav > li > a{
	font: 20px Gotham-Bold;
	color: rgba(51,51,51,1);
}

#nav li > a{
	cursor: pointer;
}

#nav > li.active > a,
#nav > li > a:hover{
	color: rgba(220,0,46,1);
}

#nav ul{
	max-width:750px;
	display: none;
	font: 13px Gotham-Book;
	margin-left: 10px;
	color: rgba(153,153,153,1);
}

#nav > li.active > ul {
	display: block;
	position: absolute;
	top:30px;
	width: 100%;
	left:0;
}

#nav ul li{
	display:block;
	float:left;
}

#nav ul li a{
	display:block;
	float:left;
	width:130px;
	padding: 2px 15px;
}

#nav > li:nth-child(3) ul li a{
	width:210px;
}

#nav > li.active > ul > li:hover {
	color: rgba(220,0,46,1);
}

/**** Language panel ****/
#lang_panel{
	position: absolute;
	top: 20px;
	right: -20px;
	opacity:0;
	font: 14px "Gotham-Light";
}

#lang_panel li {
	display: block;
	float:left;
}

#lang_panel li a{
	display: block;
	padding: 0 8px;
	/*height:10px;*/
	line-height:10px;
	color: rgba(135,135,135,1);
}

#lang_panel li a:hover{
	color: rgba(220,0,46,1);
	cursor: pointer;
}

#lang_panel li.active a{
	color: rgba(220,0,46,1);
}

#lang_panel li:not(:last-child) a{
	border-right: rgba(198,198,198,1) 1px solid;
}

/**** Teasers ****/

#teasers_area,
#teasers_area .top,
#teasers_area .bottom,
#teasers_area .bottom .inner{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	overflow:hidden;
}

#teasers_area .bottom {
	top:100%;
	height:50%;
}

#teasers_area .bottom .inner{
	top:-100%;
	height:200%;
}

#teasers_area.slice .top{
	height:50%;
}
#teasers_area.slice .bottom{
	top:50%;
}

#teasers_area .teaser{
	position: absolute;
	width: 200px;
	display:none;
	opacity:0;
	-webkit-transition: opacity 100ms ease;
	transition: opacity 100ms ease;

	top:100px;
	left:100px;
}

#teasers_area .teaser.active{
	display:block;
	opacity:1;
}

#teasers_area .teaser .header{
	font-family: 'Gotham-Bold';
	font-size: 20px;
	color:rgba(51,51,51,1);
}

#teasers_area .teaser .subheader{
	font-family: 'Gotham-Book';
	font-size: 17px;
	color:rgba(198,198,198,1);
}

#teasers_area .teaser .content{
	font-family: 'ChaparralPro-Regular';
	font-size: 13px;
	color:rgba(102,102,102,1);
	margin:15px 0;
}

#teasers_area .teaser .footer{
	position:relative;
	font-family:'Gotham-Book';
	font-size:13px;
	border-top: 1px solid rgba(220,0,46,1);
	color:rgba(51,51,51,1);
	padding-top:5px;
}

#teasers_area .teaser .footer a{
	display:inline-block;
	color:rgba(51,51,51,1);
	padding-left: 40px;
}
#teasers_area .teaser .footer a:hover{
	color:rgba(220,0,46,1);
}
#teasers_area .teaser:not(.book):not(.film) .footer:before{
	position:absolute;
	left:0;
	content:"";
	background-image:url(../images/teaser-link-arrow.svg);
	width:40px;
	height:15px;
}

/* teaser suitcase */
#teasers_area .teaser.suitcase .content{
	margin:30px 0;
}

/* teaser book */
#teasers_area .teaser.book .content{
	margin:-15px 0;
}
#teasers_area .teaser.book .header,
#teasers_area .teaser.book .subheader{
	padding-left: 30px;
}
#teasers_area .teaser.book .content img{
	width:150%;
	position:relative;
	left:-60px;
	top:5px;
}
#teasers_area .teaser.book .footer{
	text-align:right;
}
#teasers_area .teaser.book .footer a{
	padding-left: 0;
	color:rgba(198,198,198,1);
	margin-bottom:3px;
}
#teasers_area .teaser.book .footer a img{
	position:relative;
	top:3px;
	width:25px;
	margin-left:7px;
}

/* teaser film */
#teasers_area .teaser.film{
	width: 300px;
}
#teasers_area .teaser.film .content{
	margin:-15px 0;
}
#teasers_area .teaser.film .header,
#teasers_area .teaser.film .subheader{
	padding-left: 60px;
}
#teasers_area .teaser.film .content img{
	width:100%;
	top:5px;
}
#teasers_area .teaser.film .footer{
	border:none;
	text-align:right;
}
#teasers_area .teaser.film .footer a{
	padding-left: 0;
	padding-right: 20px;
	height:34px;
	line-height:34px;
}
#teasers_area .teaser.film .footer a span{
	position:relative;
	top:-9px;
}
#teasers_area .teaser.film .footer a img{
	position:relative;
	height:34px;
	top:3px;
	margin-left:7px;
}


