.white-text{
	color: white;
}
.white-text a{
	color: #CCC;
}

h1{
	font-family: katarine-web, sans-serif;
	font-weight: 400;
	padding: 0px 0 5px 0px;
	margin: 0 auto 0;
}
h2{
	font-family: katarine-web, sans-serif;
	font-weight: 400;
	font-size: 20pt;
	line-height: 24pt;
	margin: 0 auto 20px;
}

.color-layer{
	/* border-top: 1px transparent solid; *//* to avoid margin-collapse */
	/*border-bottom: 1px transparent solid; *//* to avoid margin-collapse - ahh... it's very ugly */
	min-height:100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	height: auto !important; /* don't know which JS tries to change the height */
}
.noscroll .color-layer{
	border-top: none; /* to avoid margin-collapse */
	border-bottom: none; /* to avoid margin-collapse */
}
.x:first-child .color-layer{
	height:100%; /* TODO: vh??? */
}

.background-container{
	position: relative;
}
.background-container .content{
	position: absolute;
	bottom: 40px;
	width: 100%;
}
.background-container .title{
	text-align: center;
	width: 720px;
	margin:auto;
}
@media all and (max-width: 1000px){
	.title {
		padding: 0;
	}
}

.introduction {
	padding: 0 0;
	margin: 0 auto;
	font-size: 10pt;
	line-height: 15pt;
	width: 70%;
	margin: 0 auto;
}

.paragraphs h2 {
	font-size: 14pt;
	line-height: 18pt;
	margin: 30px auto 0;
}
.paragraphs .text{
	max-width: 700px;
	margin: 0 auto;
	font-size: 11pt;
	line-height: 16pt;
	font-weight: 400;

}
.half-content-left .paragraphs .text,
.half-content-right .paragraphs .text
{
	width: 450px;
}
.third-content-right .paragraphs .text{
	width: 90%;
}

.paragraphs .text p{
	padding: 0 20px 5px 0;
	font-family: katarine-web, sans-serif;
	font-weight: 400;
}
.paragraphs .text p em{
	font-style: italic;
}

.paragraphs .text ol{
	padding: 0 0 10px 10px;
	text-align: left;
}
.paragraphs .text ol li{
	padding: 0 0 5px 0px;
}
.paragraphs .text ul{
	padding: 0 0 10px 10px;
	text-align: left;
}
.paragraphs .text ul li{
	padding: 0 0 5px 0px;
}


.align-left{
	text-align: left;
}
.align-center{
	text-align: center;
}
.align-center .introduction{
	width: 70%;
	margin: 10px auto;
	text-align: center;
}
.align-center .paragraphs h2{
	padding: 0;
}
.align-center .paragraphs .text{
	padding:0;
	margin:auto;
	width: 75%;
}
.align-center .paragraphs .text p{
	padding: 0 0 5px 0;
}
.align-right{
	text-align: right;
}
.align-right .paragraphs .text{
	padding-left: 300px;
}

.paragraph-right-container{
	/* for the case when both gallery and quote are right aligned */
	float:right;
	max-width: 50%;
}
.paragraph-right-container ul.gallery.half{
	max-width: 100%;
}

p.quote{
	text-transform: uppercase;
	font-weight: 700;
	width: 240px;
	font-size: 12pt;
	padding: 4px 0 10px 0;
	margin: 15px 20px 10px 50px;
	clear: both;
}

p.quote a {
	color: #444;
	text-decoration: none;
}

p.quote.quote-0{
	float: right;
}
p.quote.quote-1{
	float: left;
}
p.quote.quote-2{
	width: auto;
}

.paragraphs .table_blank table tr td {
	border-right: 1px dotted #000;
	border-left: 1px dotted #000;
	padding: 5px;
}
.paragraphs table tr td {
	border-right: 1px dotted #000;
	border-bottom: 1px dotted #000;
	padding: 5px;
}

.left-half-image,
.right-half-image{
	position: absolute;
	top:0;
	height:100%;
	width:50%;
	width: -webkit-calc(50% - 50px);
	width: -moz-calc(50% - 50px);
	width: -ms-calc(50% - 50px);
	width: calc(50% - 50px);
	/* TODO: Loader */
	background-repeat: no-repeat;
	-webkit-background-size: cover; background-size: cover;
}
@media all and (min-width: 1000px) {
	.left-half-image.fixed,
	.right-half-image.fixed
	{
		position: fixed;
	}
}
.right-half-image{
	right:0;
	background-color: #dce1c7;
}
.left-half-image{
	left:0;
	background-color: #dce1c7;
}
.full-image{
	width: 100%;
	height: 100%;
	background: none center center no-repeat;
	-webkit-background-size: cover; background-size: cover;
}

.cover{
	background-repeat: no-repeat;
	-webkit-background-size: cover; background-size: cover;
}
.full-cover-shrinkable-container{
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left:0;
}
.full-cover-shrinkable-container .full-cover-shrinkable{
	z-index: 2;
	width:100%;
	height:100%;
	width:calc(100% - 1px);
	/* because IE11 calculates the width of the :before pseudo-element
	as non zero and this item gets to the next "row" */
}
.full-cover-shrinkable-container,
.full-cover-shrinkable-container .full-cover-container,
	/*.full-cover-shrinkable-container .full-cover-container .full-cover-back,*/
.full-cover-shrinkable-container .full-cover-shrinkable{
	-webkit-transition: 0.8s ease all;
	-moz-transition: 0.8s ease all;
	-ms-transition: 0.8s ease all;
	-o-transition: 0.8s ease all;
	transition: 0.8s ease all;
}
.full-cover-shrinkable-container .full-cover-container .full-cover-back{
	min-height: inherit;
	height: 100% !important;
}

.shrink-full-cover .full-cover-shrinkable-container{
	width: 65%;
}
.shrink-full-cover .full-cover-shrinkable{
	height: 65%;
}
.shrink-full-cover .full-cover-container {
	min-height: inherit;
	height: 100%;
}
.shrink-full-cover-button{
	position: absolute;
	z-index: 102;
	right:40px;
	top:40px;
	background: url("/view/img/ico_more_32.png") center center no-repeat;
	width:40px;
	height:40px;
	cursor: pointer;
}
.shrink-full-cover .shrink-full-cover-button{
	background-image: url("/view/img/ico_close_32.png");
}


.full-cover-container{
	position:relative;
	min-height: 100vh;
}
.full-cover-container .full-cover-back{
	min-height: 100vh;
	width: 100%;
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
}
.full-cover-container .full-cover-back.fixed-full-height{
	height: 100vh;
	overflow: hidden;
}
.full-cover-container .full-cover-back video{
	min-width: 100%;
	min-height: 100%;
}
.full-cover-container .full-cover-back img{
	width: 960px;
	max-width: 100%;
	margin: auto;
	display:block;
}
.full-cover-container .full-cover-color-layer{
	position:absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.full-cover-container .full-cover-content{
    width: 960px;
    margin: 0px auto 100px;
    text-align: center;
    bottom: 0;
    left: 0px;
    vertical-align: top;
    height: 100%;
}

.full-cover-container .full-cover-content .title{
    margin: 300px auto 10px;
    padding-top: 0;
}
.full-cover-container .full-cover-content .title h1{
    margin: 0 auto 10px;
	font-size: 40pt;
	line-height: 44pt;
}
.full-cover-container .full-cover-content .introduction{
    margin: 20px auto 30px;
    font-weight: 300;
	font-size: 10pt;
	line-height: 12pt;
	width: 360px;
}
.full-cover-container .full-cover-content .introduction p{
    -webkit-margin-before: 0.3em;
    -webkit-margin-after: 0.3em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
}

.full-cover-front .scroll-button{
	cursor: pointer;
	margin: 30px 10px;
	padding: 10px 15px;
	font-weight: 700;
	width: 200px;
	background: #4F6300;
	border: 1px solid #4F6300;
	text-transform: uppercase;
	color: #fff;
	display: inline;
}
.full-cover-front .scroll-button:hover{
	cursor: pointer;
	padding: 10px 15px;
	font-weight: 700;
	color: #fff;
	background: #000;
	border: 1px solid #0000;
	text-transform: uppercase;
}
.full-cover-front h1,
.full-cover-front h2,
.full-cover-front .introduction{
	margin: 0 0;
	padding: 0 0;
}

/* full cover with flexible height */
.full-cover-container.flexi-height{
	min-height: inherit;
}
.full-cover-container.flexi-height .full-cover-back{
	height: 100%;
}
.full-cover-container.flexi-height .full-cover-back.fixed-full-height{
	height: 100%;
	/* not very sure */
	min-height: inherit;
	left: 0;
	position: absolute;
	top: 0;
	z-index: 0;
}
.full-cover-container.flexi-height .full-cover-color-layer{
	position: relative;
	z-index: 1;
}
.full-cover-container.flexi-height:not(.manual-height) .full-cover-front{
	position:static;
}


.embed-container{
	max-width:640px;
	margin: auto;
}
.video{
	margin: 10px auto ;
	/** http://avexdesigns.com/responsive-youtube-embed/ **/
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.video iframe
{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin:auto
}

.audio{
	height: 30px;
	margin: 20px 0;
}

/*.article-cover-slider-container.full-height,*/
.article-cover-slider-container.full-height .slide{
	min-height: 100vh;
}
.article-cover-slider-container.full-height .slide .content{
	padding-top: 80px;
}

.article-cover-slider-container.full-height .slide .three-fourth{
}


.article-cover-slider-container .bx-wrapper{
	margin: 0;
}
.article-cover-slider-container .bx-wrapper .bx-viewport{
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	height: 100%;
	background: transparent;
	border:0;
	left:0; /* overrides 5px border and -5px left */
}
.article-cover-slider-container .bx-wrapper .bx-pager,
.article-cover-slider-container .bx-wrapper .bx-controls-auto{
	bottom: 47px;
	top: inherit;
	margin: 0 0 0 -25%;
	width: 50%;
	left: 50%;
}
.article-cover-slider-container .bx-wrapper .bx-prev,
.article-cover-slider-container .bx-wrapper .bx-next{
	width: 80px!important;
	height: 80px !important;
	background-color: rgba(255, 255, 255, 0.8);
	z-index: 19; /* below top bar */
	margin-top: -40px;
	top: 50%;
}
.article-cover-slider-container.full-height  .bx-wrapper .bx-prev,
.article-cover-slider-container.full-height  .bx-wrapper .bx-next{
	margin-top: -40px;
	top: 50vh;
}
.article-cover-slider-container .bx-wrapper .bx-prev{
	left:0px;
	background: url("/view/img/articles/nav_arrow_lft_w.png") no-repeat center center;
	background-color: rgba(65, 65, 65, 0.6);
}
.article-cover-slider-container .bx-wrapper .bx-prev:hover{
	background: black url("/view/img/articles/nav_arrow_lft_b.png") no-repeat center center;
	background-color: rgba(255, 255, 255, 0.8);
}
.article-cover-slider-container .bx-wrapper .bx-next{
	right:0px;
	background: url("/view/img/articles/nav_arrow_rght_w.png") no-repeat center center;
	background-color: rgba(65, 65, 65, 0.6);
}
.article-cover-slider-container .bx-wrapper .bx-next:hover{
	background: black url("/view/img/articles/nav_arrow_rght_b.png") no-repeat center center;
	background-color: rgba(255, 255, 255, 0.8);
}
.article-cover-slider-container .bx-wrapper .bx-pager.bx-default-pager a:hover,
.article-cover-slider-container .bx-wrapper .bx-pager.bx-default-pager a.active{
	background: #fff;
}
.article-cover-slider-container .bx-controls-direction{
	width: 100%;
	margin:auto;
}
@media all and (max-width: 1000px){
	.article-cover-slider-container .bx-wrapper .bx-prev{
		left:0 !important;
	}

	.article-cover-slider-container .bx-wrapper .bx-prev,
	.article-cover-slider-container .bx-wrapper .bx-next{
		width: 54px!important;
		height: 54px !important;
	}

	.article-cover-slider-container .bx-wrapper .bx-pager,
	.article-cover-slider-container .bx-wrapper .bx-controls-auto{
		bottom: 12px;
		text-align: center;/* for inline-block elements */
	}

	.article-cover-slider-container .bx-wrapper .bx-pager .bx-pager-item{
		text-align: center; /* to override parent's setting. text-indent needs center */
	}
}
@media all and (max-width: 768px){
	.full-cover-container .full-cover-content .title h1{
    margin: 0 auto 10px;
	font-size: 32pt;
	line-height: 36pt;
	}
}


.parallax-container{
	overflow:hidden;
	height: 100vh;
}
.parallax{
	height: 200vh !important;
	position: relative;
}