/* Resets */
html, body, div, span, h1, h2, h3, h4, h5, h6, a, p, em, strong, b, u, i, 
img, form, label, ul, ol, li, iframe, table, tbody, thead, tr, th, td,
object, blockquote, pre, abbr, address, cite, code, del, dfn, ins, kbd,
q, s, samp, small, sub, sup, var, dl, dt, dd, fieldset, legend, caption,
article, aside, canvas, details, embed, figure, figcaption, footer, header, 
hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	border: 0 none;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
/* HTML5 hack alte Browser */
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
	display: block;
}
/* weitere Resets */
h1, h2, h3, h4, h5, h6 {
	line-height: 1.2;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input::-moz-focus-inner { /* entfernt unerwünschten Abstand (z.B. Formular Sendebutton) */
	border: 0;
	padding: 0;
}

/* Grundlegende Angaben */

html, body {
	height: 100%;
}
body {
	color: #383838;
	color: rgba(0, 0, 0, 0.7);
	font: 300 17px/1.8 'PT Sans', sans-serif;
	overflow-y: scroll;
	-webkit-text-size-adjust: none;
}
body > #PageWrapper {
	background: #D8D0D0;
	min-height: 100%;
	padding: 0 0 180px 0;
	position: relative;
}
a {
	color: #C03139;
	font-weight: normal;
	text-decoration: none;
}
a:hover {
	color: #AF1F15;
}
input, textarea, select, button {
	border: 1px solid #CFCFCF;
	border-radius: 0;
	color: inherit;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
}
input[type='submit'],
input[type='text'],
input[type='email'],
textarea,
button,
select {
	-webkit-appearance: none;
}
input::-ms-clear {
	display: none;
}
input[type="text"]:disabled {
    background: inherit;
} 
ol, ul {
	list-style: none;
}
.cmsMargin {
	margin: 40px 0;
}
*, *:before, *:after {
	-moz-box-sizing: border-box; 
	-webkit-box-sizing: border-box; 
	box-sizing: border-box;
}
.preload * {
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-ms-transition: none !important;
	-o-transition: none !important;
}
strong {
	font-weight: bold;
}
.wmWrapper {
	position: relative;
}
.wmMargin {
	margin-top: 60px;
	margin-bottom: 60px;
}
.wmPadding {
	padding-left: 20px;
	padding-right: 20px;
}
.wmMaxWidth {
	margin-left: auto;
	margin-right: auto;
	max-width: 1240px;
}
.wmClear:after {
	clear: both;
	content: "";
	display: block;
}

/* Webfonts */

@font-face {
	font-family: 'fontello';
	src: url('/img/webfonts/fontello.eot?41255072');
	src: url('/img/webfonts/fontello.eot?41255072#iefix') format('embedded-opentype'),
		url('/img/webfonts/fontello.woff2?41255072') format('woff2'),
		url('/img/webfonts/fontello.woff?41255072') format('woff'),
		url('/img/webfonts/fontello.ttf?41255072') format('truetype'),
		url('/img/webfonts/fontello.svg?41255072#fontello') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* Layout - Header */

#HeaderWrapper {
	background: #FFFFFF;
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 50%, rgba(252,252,252,1) 100%);
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 50%,rgba(252,252,252,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,1) 50%,rgba(252,252,252,1) 100%);
	border-bottom: 1px solid #E5E5E5;
	border-top: 3px solid #E10707;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
	height: 150px;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 4;
	-webkit-transition: height 150ms ease-out, top 150ms ease-out;
	-moz-transition: height 150ms ease-out, top 150ms ease-out;
	-ms-transition: height 150ms ease-out, top 150ms ease-out;
	-o-transition: height 150ms ease-out, top 150ms ease-out;
	transition: height 150ms ease-out, top 150ms ease-out;
}
#HeaderWrapper.mobile {
	position: absolute;
}
#HeaderWrapper.fixed:not(.mobile) {
	background: rgba(255, 255, 255, 0.97);
	height: 115px;
	top: -50px;
}
#HeaderWrapper.mobile {
	position: absolute;
}
#HeaderWrapper:before {
	background: #E5E5E5;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	top: 47px;
	width: 100%;
}
#HeaderWrapper > div {
	height: 100%;
	margin: 0 auto;
	max-width: 1140px;
	padding: 0 20px;
	position: relative;
}

/* Logo */

#HeaderWrapper > div > a.logo {
	bottom: 13px;
	left: 20px;
	position: absolute;
	z-index: 2;
	-webkit-transition: bottom 150ms ease-out;
	-moz-transition: bottom 150ms ease-out;
	-ms-transition: bottom 150ms ease-out;
	-o-transition: bottom 150ms ease-out;
	transition: bottom 150ms ease-out;
}
#HeaderWrapper.fixed > div > a.logo {
	bottom: 4px;
}
#HeaderWrapper > div > a.logo > img {
	display: block;
	width: 180px;
	-webkit-transition: width 150ms ease-out;
	-moz-transition: width 150ms ease-out;
	-ms-transition: width 150ms ease-out;
	-o-transition: width 150ms ease-out;
	transition: width 150ms ease-out;
}
#HeaderWrapper.fixed > div > a.logo > img {
	width: 130px;
}

/* Kontakt */

#HeaderWrapper > div > .contact {
	position: absolute;
	top: 0px;
	right: 13px;
}
#HeaderWrapper > div > .contact:after {
	clear: both;
	content: "";
	display: block;
}
#HeaderWrapper > div > .contact > li {
	float: left;
}
#HeaderWrapper > div > .contact > li > a {
	color: #747474;
    display: block;
    font-size: 13px;
    height: 47px;
    line-height: 45px;
    padding: 0 7px;
    position: relative;
}
#HeaderWrapper > div > .contact > li > a:before {
	background: #747474;
	content: "";
	height: 10px;
	left: 0;
	position: absolute;
	top: 18px;
	width: 1px;
}
#HeaderWrapper > div > .contact > li:first-child > a:before {
	display: none;
}

/* Facebook */

#HeaderWrapper > div > a.fb {
	color: #BEBDBD;
    font-size: 16px;
    font-weight: normal;
    height: 47px;
    left: 0;
    line-height: 46px;
    padding: 0 20px;
    position: absolute;
    top: 0;
}
#HeaderWrapper > div > a.fb:after {
	content: "\E812";
	font-family: "fontello";
}
#HeaderWrapper > div > a.fb:hover {
	color: #46629E;
}

/* Suche */

#HeaderWrapper > div > .search {
    position: absolute;
    right: 0;
    top: 48px;
	z-index: 2;
}
#HeaderWrapper > div > .search > a {
    color: #333333;
    display: block;
    font-size: 15px;
    line-height: 96px;
    padding: 0 20px;
    position: relative;
	-webkit-transition: line-height 150ms ease-out;
	-moz-transition: line-height 150ms ease-out;
	-ms-transition: line-height 150ms ease-out;
	-o-transition: line-height 150ms ease-out;
	transition: line-height 150ms ease-out;
}
#HeaderWrapper.fixed > div > .search > a {
	line-height: 63px;
}
#HeaderWrapper > div > .search > a:before {
	background: #E10707;
	content: "";
	display: none;
	height: 3px;
	left: 50%;
	margin: 0 0 0 -8px;
	position: absolute;
	top: 0;
	width: 16px;
}
#HeaderWrapper > div > .search > a:after {
	content: "\E84F";
	font-family: "fontello";
}
#HeaderWrapper > div > .search > a:hover {
	color: #E10707;
}
#HeaderWrapper > div > .search > a:hover:before {
	display: block;
}
#HeaderWrapper > div > .search > form {
	display: none;
}
#HeaderWrapper > div > .search > form:after {
	clear: both;
	content: "";
	dispaly: block;
}
#HeaderWrapper > div > .search > form.show {
	background: #FCFCFC;
	border: 1px solid #DCDADB;
    display: block;
    padding: 25px;
    position: absolute;
    right: 20px;
    top: 98px;
    width: 300px;
	-webkit-transition: top 150ms ease-out;
	-moz-transition: top 150ms ease-out;
	-ms-transition: top 150ms ease-out;
	-o-transition: top 150ms ease-out;
	transition: top 150ms ease-out;
}
#HeaderWrapper.fixed > div > .search > form.show {
	top: 63px;
}
#HeaderWrapper > div > .search > form > input.field {
	background: #FFFFFF;
	border: 1px solid #D2D2D2;
    float: left;
    height: 33px;
    line-height: 30px;
    padding: 0 15px 1px;
    width: 214px;
}
body.isSafari #HeaderWrapper > div > .search > form > input.field {
    line-height: 33px;
}
#HeaderWrapper > div > .search > form > button {
	background: #000000;
	border: none;
    color: #FFFFFF;
    cursor: pointer;
    display: block;
    float: left;
    height: 33px;
    line-height: 31px;
	margin: 0;
	padding: 0;
    position: relative;
    text-align: center;
    width: 33px;
}
body.isSafari #HeaderWrapper > div > .search > form > button {
	line-height: 33px;
}
#HeaderWrapper > div > .search > form > button > span:after {
	content: "\E84F";
	display: block;
	font-family: "fontello";
    text-align: center;
    width: 100%;
}

/* Sprachauswahl */

#HeaderWrapper > div > a.lang {
	color: #BEBDBD;
	position: absolute;
	left: 50px;
	font-weight: 600;
	top: 0;
	line-height: 45px;
	text-transform: uppercase;
}
#HeaderWrapper > div > a.lang:hover {
	color: #e10707;
}
#HeaderWrapper > div > a.lang > .mobile {
	display: none;
}

@media all and (max-width: 1150px){

	#HeaderWrapper {
		height: 130px;
	}
	#HeaderWrapper > div > a.logo {
		bottom: 8px;
	}
	#HeaderWrapper > div > a.logo > img {
		width: 150px;
	}
	#HeaderWrapper > div > .search > a {
		line-height: 77px;
	}
	#HeaderWrapper > div > .search > form.show {
		top: 78px;
	}

}
@media all and (max-width: 900px){

	#HeaderWrapper > div > .search {
		left: 40px;
		right: auto;
		top: 0;
	}
	#HeaderWrapper > div > .search > a {
		color: #BEBDBD;
		line-height: 47px;
	}
	#HeaderWrapper > div > .search > a:before {
		display: none !important;
	}
	#HeaderWrapper > div > .search > form.show {
		left: -40px;
		padding: 22px 20px 23px;
		right: auto;
		top: 47px;
	}
	#HeaderWrapper > div > a.lang {
		left: 100px;
	}

}
@media all and (max-width: 500px){

	#HeaderWrapper {
		height: 120px;
	}
	#HeaderWrapper > div > a.logo {
		bottom: 7px;
	}
	#HeaderWrapper > div > a.logo > img {
		width: 130px;
	}
	#HeaderWrapper > div > .contact {
		margin: 0 -106px 0 0;
		right: 50%;
	}
	#HeaderWrapper > div > .contact > li > a {
		color: #BEBDBD;
		line-height: 47px;
		padding: 0;
		text-indent: -99999px;
		width: 50px;
	}
	#HeaderWrapper > div > .contact > li > a:before {
		display: none;
	}
	#HeaderWrapper > div > .contact > li > a:after {
		float: left;
		font-family: "fontello";
		font-size: 20px;
		text-align: center;
		text-indent: 0;
		width: 100%;
	}
	#HeaderWrapper > div > .contact > li > a.tel:after {
		content: "\E811";
	}
	#HeaderWrapper > div > .contact > li > a.mail:after {
		content: "\E833";
	}
	#HeaderWrapper > div > .search {
		left: auto;
		position: static;
	}
	#HeaderWrapper > div > .search > a {
		color: #BEBDBD;
		font-size: 20px;
		left: 50%;
		margin: 0 0 0 -44px;
		position: absolute;
	}
	#HeaderWrapper > div > .search > form.show {
		left: 0;
		padding-bottom: 17px;
		padding-top: 18px;
		position: absolute;
		width: 100%;
		z-index: 2;
	}
	#HeaderWrapper > div > .search > form > input.field {
		width: 100%;
	}
	body.isSafari #HeaderWrapper > div > .search > form > input.field {
		line-height: 32px;
	}
	#HeaderWrapper > div > .search > form > button {
		float: none;
		position: absolute;
		right: 20px;
	}
	#HeaderWrapper > div > a.fb {
	    font-size: 20px;
		left: 50%;
		margin: 0 0 0 -77px;
	}
	#HeaderWrapper > div > a.lang {
		left: 50%;
		margin-left: -100px;
	}
	#HeaderWrapper > div > a.lang > .mobile {
		display: block;
	}
	#HeaderWrapper > div > a.lang > .desktop {
		display: none;
	}

}

/* Layout - Animation */

#GalleryWrapper {
	background: #FFFFFF;
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.2), 0 0 8px rgba(0, 0, 0, 0.3);
	position: relative;
	width: 100%;
	z-index: 3;
}
#GalleryWrapper > .animation {
	position: relative;
	height: 548px;
}
#GalleryWrapper > .animation:before,
#GalleryWrapper > .animation:after {
    background: #FFFFFF;
    bottom: 15px;
    box-shadow: 0 15px 10px #777777;
    content: "";
    left: 10px;
    max-width: 300px;
    position: absolute;
    top: 80%;
    width: 50%;
    z-index: -1;
	-moz-transform: rotate(-3deg);
	-webkit-transform: rotate(-3deg);
	-o-transform: rotate(-3deg);
	-ms-transform: rotate(-3deg);
	transform: rotate(-3deg);
}
#GalleryWrapper > .animation:after {
    left: auto;
    right: 10px;
	-moz-transform: rotate(3deg);
	-webkit-transform: rotate(3deg);
	-o-transform: rotate(3deg);
	-ms-transform: rotate(3deg);
	transform: rotate(3deg);
}
#GalleryWrapper > .animation > .micAnimation {
	background: #FFFFFF;
	overflow: hidden;
	position: relative;
}
#GalleryWrapper > .animation > .micAnimation:before {
	background: #FFFFFF;
    bottom: 0;
    content: "";
    height: 5px;
    left: 0;
    opacity: 0.25;
    position: absolute;
    width: 100%;
    z-index: 4;
}

/* Link zur Altholz Schermer Seite */

.preload #GalleryWrapper .link {
	position: absolute;
	transform: translate(0, -20px);
	bottom: 50px;
	left: 50%;
	opacity: 0;
	margin-left: 397px;
	display: block;
	transition: all 1500ms ease;
	z-index: 10;
}
#GalleryWrapper .link {
	position: absolute;
	bottom: 50px;
	left: 50%;
	margin-left: 397px;
	display: block;
	z-index: 10;
	opacity: 1;
	transition: all 1500ms ease;
	transform: translate(0, 0);
}
#GalleryWrapper .link img {
	display: block;
	width: 152px;
}

@media all and (max-width: 1300px){

	#GalleryWrapper > .animation {
		height: 470px;
	}

}
@media all and (max-width: 1150px){

	#GalleryWrapper .link {
		bottom: 45px;
		left: auto;
		margin-left: 0;
		right: 20px;
	}
	#GalleryWrapper .link img {
		width: 100px;
	}


}
@media all and (max-width: 1100px){

	#GalleryWrapper > .animation {
		height: 430px;
	}

}
@media all and (max-width: 900px){

	#GalleryWrapper > .animation {
		height: 405px;
	}

}
@media all and (max-width: 700px){

	#GalleryWrapper > .animation {
		height: 375px;
	}

}
@media all and (max-width: 500px){

	#GalleryWrapper {
		padding: 80px 0 0 0;
	}
	#GalleryWrapper .link {
		bottom: 20px;
	}
	#GalleryWrapper .link img {
		width: 70px;
	}

}

/* Layout - Content */

#ContentWrapper {
	overflow: hidden;
	position: relative;
	width: 100%;
	z-index: 2;
}
#ContentWrapper > section {
	margin: 0 auto;
	max-width: 1140px;
	padding: 0 20px 40px;
	position: relative;
}

/* Scroll to top */

#ContentWrapper > a.scrolltop {
    background-color: #333333;
    border-radius: 4px 4px 0 0;
    bottom: 0;
    color: #FFFFFF;
    font-size: 20px;
    height: 35px;
    line-height: 35px;
    opacity: 0.8;
    position: fixed;
    right: 20px;
    text-align: center;
    width: 48px;
    z-index: 999;
	-webkit-transition: opacity 300ms ease-in-out;
	-moz-transition: opacity 300ms ease-in-out;
	-ms-transition: opacity 300ms ease-in-out;
	-o-transition: opacity 300ms ease-in-out;
	transition: opacity 300ms ease-in-out;
}
#HeaderWrapper:not(.fixed) + #GalleryWrapper + #ContentWrapper > a.scrolltop {
	cursor: default;
	opacity: 0;
}
#HeaderWrapper.fixed + #GalleryWrapper + #ContentWrapper > a.scrolltop {
    opacity: 0.8;
}
#HeaderWrapper.fixed + #GalleryWrapper + #ContentWrapper > a.scrolltop:hover {
	opacity: 1;
}
#ContentWrapper > a.scrolltop:after {
	content: "\E807";
	font-family: "fontello";
}

@media all and (max-width: 900px){

	#ContentWrapper > a.scrolltop {
		display: none;
	}

}

/* Layout - Footer */

#FooterWrapper {
	background: #363839;
	border-top: 12px solid #939393;
	bottom: 0;
	color: #FFFFFF;
	font-size: 15px;
	position: absolute;
	width: 100%;
	z-index: 1;
}
#FooterWrapper:after {
	background: #282A2B;
	border-top: 1px solid #4B4C4D;
	bottom: 0;
	content: "";
	height: 70px;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: -1;
}
#FooterWrapper > div {
	height: 100%;
	margin: 0 auto;
	max-width: 1140px;
	padding: 0 20px;
	position: relative;
}
#FooterWrapper > .row1 {
    padding-bottom: 25px;
    padding-top: 25px;
}
#FooterWrapper > div:after {
	clear: both;
	content: "";
	display: block;
}

#FooterWrapper > .row1 > .contact > strong,
#FooterWrapper > .row1 > .metamenu > strong {
    border-bottom: 1px solid #5E6061;
    display: block;
    font-weight: normal;
    margin: 0 0 12px;
    padding: 0 0 2px;
    text-transform: uppercase;
}

/* Kontakt */

#FooterWrapper > .row1 > .contact {
    float: left;
    line-height: 2.5;
    padding: 0 35px 0 0;
    position: relative;
    width: 360px;
	z-index: 2;
}
#FooterWrapper > .row1 > .contact > a {
	color: #FFFFFF;
	display: block;
}
#FooterWrapper > .row1 > .contact > a:hover {
	opacity: 0.8;
}
#FooterWrapper > .row1 > .contact > .location {
	display: block;
}
#FooterWrapper > .row1 > .contact > a,
#FooterWrapper > .row1 > .contact > .location {
	padding: 0 0 0 40px;
	position: relative;
}
#FooterWrapper > .row1 > .contact > a.tel + a.tel {
	margin-top: -10px;
}
#FooterWrapper > .row1 > .contact > a:before,
#FooterWrapper > .row1 > .contact > .location:before {
	font-family: "fontello";
	font-size: 19px;
	left: 0;
	opacity: 0.5;
	position: absolute;
	top: -3px;
}
#FooterWrapper > .row1 > .contact > a.tel:first-of-type:before {
	content: "\E811";
	left: 2px;
	top: 4px;
}
#FooterWrapper > .row1 > .contact > a.mail:before {
	content: "\E833";
	font-size: 14px;
	top: 0;
}
#FooterWrapper > .row1 > .contact > .location:before {
	content: "\E80A";
	left: 2px;
	top: -7px;
}

/* Metamenu */

#FooterWrapper > .row1 > .metamenu {
	float: left;
	line-height: 2.5;
	position: relative;
	width: 150px;
	z-index: 2;
}

/* Karte */

#FooterWrapper > .row1 > .location {
    left: 0;
    padding: 37px 20px 0 565px;
    position: absolute;
    top: 0;
    width: 100%;
	z-index: 1;	
}
#FooterWrapper > .row1 > .location > iframe {
	border: 0;
}

/* Copyrights */

#FooterWrapper > .row2 > .copyrights {
	line-height: 70px;
}

/* Facebook */

#FooterWrapper > .row2 > a.fb {
	color: #BEBDBD;
    font-size: 16px;
    font-weight: normal;
    height: 70px;
    line-height: 70px;
    padding: 0 20px;
    position: absolute;
    right: 0;
    top: 0;
}
#FooterWrapper > .row2 > a.fb:after {
	content: "\E812";
	font-family: "fontello";
}
#FooterWrapper > .row2 > a.fb:hover {
	color: #46629E;
}

@media all and (max-width: 900px){

	#FooterWrapper > .row1 {
		display: table;
		margin: 0 auto;
	}
	#FooterWrapper > .row1 > .location {
		display: none;
	}

}
@media all and (max-width: 550px){

	#FooterWrapper {
		font-size: 13px;
	}
	#FooterWrapper > .row1 {
		padding-bottom: 95px;
	}
	#FooterWrapper > .row1 > .contact,
	#FooterWrapper > .row1 > .metamenu {
		float: none;
		text-align: center;
		width: auto;
	}
	#FooterWrapper > .row1 > .contact {
		padding-bottom: 15px;
		padding-right: 0;
	}
	#FooterWrapper > .row1 > .contact > a,
	#FooterWrapper > .row1 > .contact > .location {
		display: table;
		margin: 0 auto;
	}
	#FooterWrapper > .row2 > a.fb {
		display: none;
	}
	#FooterWrapper > .row2 > .copyrights {
		bottom: 0;
		left: 0;
		line-height: 20px;
		padding: 14px 20px;
		position: absolute;
		text-align: center;
	}

}

/* Menü - Hauptmenü - Desktop */

.mobileTrigger {
	display: none;
}
nav.desktop {
	bottom: -4px;
	padding: 0 39px 0 0;
	position: absolute;
	right: 20px;
	z-index: 1;
}
nav.desktop > ul:after {
	clear: both;
	content: "";
	display: block;
}
nav.desktop > ul > li {
	float: left;
	padding: 0 22px 5px 22px;
	position: relative;
}
nav.desktop > ul > li > a {
	color: #383838;
	color: rgba(0, 0, 0, 0.7);
	display: block;
	line-height: 98px;
	position: relative;
	-webkit-transition: line-height 150ms ease-out;
	-moz-transition: line-height 150ms ease-out;
	-ms-transition: line-height 150ms ease-out;
	-o-transition: line-height 150ms ease-out;
	transition: line-height 150ms ease-out;
}
#HeaderWrapper.fixed nav.desktop > ul > li > a {
	line-height: 63px;
}
nav.desktop > ul > li > a:before {
	background: #E10707;
	content: "";
	display: none;
	height: 3px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
nav.desktop > ul > li:hover > a,
nav.desktop > ul > li > a.selected {
	color: #C03139;
}
nav.desktop > ul > li:hover > a:before,
nav.desktop > ul > li > a.selected:before {
	display: block;
}
nav.desktop > ul > li:hover > ul {
	height: auto;
	opacity: 1;
	overflow: visible;
	-webkit-transition: opacity 500ms ease-in-out, top 150ms ease-in-out;
	-moz-transition: opacity 500ms ease-in-out, top 150ms ease-in-out;
	-ms-transition: opacity 500ms ease-in-out, top 150ms ease-in-out;
	-o-transition: opacity 500ms ease-in-out, top 150ms ease-in-out;
	transition: opacity 500ms ease-in-out, top 150ms ease-in-out;
}
nav.desktop > ul > li > ul {
	border-top: 3px solid #E10707;
	height: 0;
	left: 0;
	min-width: 250px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	top: 97px;
}
#HeaderWrapper.fixed nav.desktop > ul > li > ul {
	top: 62px;
}
nav.desktop > ul > li.last > ul {
	left: auto;
	right: 0;
}
nav.desktop > ul > li > ul > li > a {
	background: #FCFCFC;
	border-bottom: 1px solid #DCDADB;
	color: #383838;
	display: block;
	font-size: 16px;
	font-weight: normal;
	line-height: 1;
	padding: 11px 20px 12px;
	white-space: nowrap;
}
nav.desktop > ul > li > ul > li > a:hover,
nav.desktop > ul > li > ul > li > a.selected {
	background: #F4F4F4;
}

@media all and (max-width: 1150px){

	nav.desktop {
		padding-right: 32px;
	}
	nav.desktop > ul > li {
		padding-left: 15px;
		padding-right: 15px;
	}
	nav.desktop > ul > li > a {
		line-height: 77px;
	}
	nav.desktop > ul > li > ul {
		top: 76px;
	}

}

/* Menü - Hauptmenü Mobile */

.mobileTrigger.show:before {
	content: "\E819";
	display: block;
	float: left;
	font-family: "fontello";
	font-size: 34px;
}
.mobileTrigger.show {
    cursor: pointer;
    display: block;
    line-height: 77px;
    padding: 0 20px 0 30px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
    top: 48px;
}
nav.mobile {
	position: absolute;
	right: 0;
	top: 127px;
	width: 100%;
	z-index: 99999;
}
nav.mobile > ul {
	height: 0;
	opacity: 0;
	overflow: hidden;
	width: 100%;
}
nav.mobile > ul.open {
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.08);
	height: auto;
	opacity: 1;
	overflow: visible;
	-webkit-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	transition: all 300ms ease-in;
}
nav.mobile > ul > li > ul {
	display: none;
}
nav.mobile > ul > li > ul.open {
	background: #FFFFFF;
	border-bottom: 1px solid #DCDADB;
    display: block;
    padding: 13px 0;
}

/* 1. Ebene */

nav.mobile > ul > li > a {
	background: #F2EFEF;
	border-bottom: 1px solid #DCDADB;
	color: #383838;
    display: block;
    line-height: 1.5;
    padding: 13px 20px 14px;
}

/* 2. Ebene */

nav.mobile > ul > li > ul > li > a {
	color: #383838;
    display: block;
    font-size: 16px;
    line-height: 1.5;
    padding: 7px 40px;
}

@media all and (max-width: 420px){

	nav.mobile {
		top: 117px;
	}
	.mobileTrigger.show {
		line-height: 67px;
	}

}

/* Menü - Metamenü */

ul.metamenu:after {
	clear: both;
	content: "";
	display: block;
}
ul.metamenu > li > a {
	color: #FFFFFF;
    display: block;
    line-height: 1.65;
    padding: 7px 0;
}
ul.metamenu > li > a:hover,
ul.metamenu > li > a.selected {
	opacity: 0.8;
}

/* Elemente - Überschriften */

h1 {
    color: #C03139;
    font-size: 42px;
    font-weight: normal;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.25);
}
h2 {
	font-size: 28px;
    font-weight: normal;
}
h3 {
	font-size: 24px;
}

/* Folgeüberschriften */

h1.cms + h2.cms {
	margin-top: -36px;
}
h2.cms + h3.cms {
	margin-top: -36px;
}

@media all and (max-width: 600px){

	h1 {
		font-size: 35px;
		line-height: 1.1;
	}
	h2 {
		font-size: 26px;
	}

}
@media all and (max-width: 420px){

	h1 {
		font-size: 32px;
	}
	h1.cms + h2.cms {
		font-size: 21px;
	}

}

/* Elemente - Textinhalt */

/* Elemente - Aufzählung */

.cmsList > h2 {
	margin: 0 0 20px 0;
}
.cmsList > ul > li:before {
	color: #C03139;
	content: '\E818';
	font-family: 'fontello';
	left: 0;
	position: absolute;
}
.cmsList > ul > li {
	margin: 0 0 10px 0;
	padding: 0 0 0 22px;
	position: relative;
}

/* 2-spaltig */

.cmsList2Columns > ul > li {
	float: left;
	width: 50%;
}
.cmsList2Columns > ul > li:nth-child(2n+1) {
	padding-right: 20px;
}
.cmsList2Columns > ul > li:nth-child(2n) + li {
	clear: left;
}
.cmsList2Columns:after {
	clear: both;
	content: "";
	display: block;
}

@media all and (max-width: 750px){

	.cmsList2Columns > ul > li {
		clear: none !important;
		padding-right: 0 !important;
		width: 100%;
	}

}

/* Elemente - Bild-Text */

.cmsImage:after {
	clear: both;
	content: "";
	display: block;
}
.cmsImage > .left {
	float: left;
	margin: 0 20px 10px 0;
	max-width: 50%;
	position: relative;
}
.cmsImage > .right {
	float: right;
	margin: 0 0 10px 20px;
	max-width: 50%;
	position: relative;
}
.cmsImage img {
	display: block;
	width: 100%;
}
.cmsImage div.frame {
	position: relative;
}
.cmsImage div.frame:before {
	border: 5px solid rgba(255, 255, 255, 0.25);
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	top: 0;
	width: 100%;
}
.cmsImageWidth,
.cmsImage > figure {
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	position: relative;
}
.cmsImageWidth:after,
.cmsImageWidth:before,
.cmsImage > figure:after,
.cmsImage > figure:before {
    background: #777777;
    bottom: 16px;
    box-shadow: 0 15px 10px #777777;
    content: "";
    left: 10px;
    max-width: 300px;
    position: absolute;
    top: 80%;
    width: 50%;
    z-index: -1;
	-moz-transform: rotate(-3deg);
	-webkit-transform: rotate(-3deg);
	-o-transform: rotate(-3deg);
	-ms-transform: rotate(-3deg);
	transform: rotate(-3deg);
}
.cmsImageWidth:after,
.cmsImage > figure:after {
    left: auto;
    right: 10px;
	-moz-transform: rotate(3deg);
	-webkit-transform: rotate(3deg);
	-o-transform: rotate(3deg);
	-ms-transform: rotate(3deg);
	transform: rotate(3deg);
}
.cmsImage figcaption {
	background: #000000;
    background: rgba(0, 0, 0, 0.4);
    bottom: 0;
    color: #FFFFFF;
    display: block;
    line-height: 1.5;
    margin: 8px 0 0;
    padding: 15px 30px;
    position: absolute;
    width: 100%;
    z-index: 1;
}

@media all and (max-width: 700px){

	.cmsImage > .left,
	.cmsImage > .right {
		float: none;
		margin: 0 0 20px 0;
		max-width: none;
	}
	
}

/* Elemente - Bildergalerie */

.cmsGallery:after {
	clear: both;
	content: "";
	display: block;
}
.cmsGallery + * {
	margin-top: -40px;
}
.cmsGallery li {
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
	float: left;
	margin: 0 3.63636363636365% 3.63636363636365% 0; /* 0 45 45 0 */
	position: relative;
	width: 30.90909090909091%; /* 340 */
}
.cmsGallery li:nth-child(3n) {
	margin-right: 0;
}
.cmsGallery li:nth-child(3n) + li {
	clear: left;
}
.cmsGallery li:after,
.cmsGallery li:before {
    background: #777777;
    bottom: 16px;
    box-shadow: 0 15px 10px #777777;
    content: "";
    left: 10px;
    max-width: 300px;
    position: absolute;
    top: 80%;
    width: 50%;
    z-index: -1;
	-moz-transform: rotate(-3deg);
	-webkit-transform: rotate(-3deg);
	-o-transform: rotate(-3deg);
	-ms-transform: rotate(-3deg);
	transform: rotate(-3deg);
}
.cmsGallery li:after {
    left: auto;
    right: 10px;
	-moz-transform: rotate(3deg);
	-webkit-transform: rotate(3deg);
	-o-transform: rotate(3deg);
	-ms-transform: rotate(3deg);
	transform: rotate(3deg);
}
.cmsGallery li > figure {
	overflow: hidden;
	position: relative;
}
.cmsGallery li > figure > a:before {
	border: 5px solid rgba(255, 255, 255, 0.35);
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	top: 0;
	width: 100%;
}
.cmsGallery li > figure > a {
	display: block;
	position: relative;
}
.cmsGallery li > figure > a > img {
	display: block;
	width: 100%;
}
.cmsGallery li > figure > a > span:before {
	content: "\E81C";
	font-family: "fontello";
	color: #ffffff;
	font-size: 30px;
	font-weight: normal;
}
.cmsGallery li > figure > a > span {
	background: rgba(255, 255, 255, 0.25);
	bottom: 6px;
	display: block;
	height: 38px;
	line-height: 38px;
	position: absolute;
	right: 6px;
	text-align: center;
	width: 38px;
	z-index: 2;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}
.cmsGallery li.noText > figure > a > span:hover {
	background: rgba(255, 255, 255, 0.5);
}
.cmsGallery li:not(.noText):hover > figure > a > span {
	bottom: -45px;
}
.cmsGallery li > figure > figcaption {
	background: rgba(0, 0, 0, 0.4);
	bottom: 0;
	color: #FFFFFF;
	cursor: pointer;
    font-size: 14px;
    font-weight: 300;
    left: -100%;
    line-height: 1.3;
    opacity: 0;
    padding: 12px 15px 14px;
	position: absolute;
	width: 100%;
	z-index: 10;
	-webkit-transition: all 300ms ease-out;
	-moz-transition: all 300ms ease-out;
	-ms-transition: all 300ms ease-out;
	-o-transition: all 300ms ease-out;
	transition: all 300ms ease-out;
}
.cmsGallery li:hover > figure > figcaption {
	left: 0;
	opacity: 1;
}
.cmsGallery li > figure:after {
	content: "\E809";
	font-family: "fontello";
    font-size: 36px;
    left: 0;
    position: absolute;
    text-align: center;
    top: -50px;
    width: 100%;
}
.fancybox-wrap .fancydownload:before {
	content: '\E801';
	font-family: 'fontello';
	font-size: 18px;
	font-weight: normal;
	margin: 0 10px 0 0;
}
.fancybox-wrap .fancydownload {
	background: none repeat scroll 0 0 #000000;
	border-radius: 4px;
	color: #ffffff;
	cursor: pointer;
	font-size: 14px;
	padding: 5px;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	z-index: 1;
}

@media all and (max-width: 770px){

	.cmsGallery li {
		margin-bottom: 6.4516129032258%;
		margin-right: 6.4516129032258%;
		width: 46.7741935483871%;
	}
	.cmsGallery li:nth-child(3n) {
		margin-right: 6.4516129032258%;
	}
	.cmsGallery li:nth-child(2n) {
		margin-right: 0;
	}
	.cmsGallery li:nth-child(3n) + li {
		clear: none;
	}
	.cmsGallery li:nth-child(2n) + li {
		clear: both;
	}

}
@media all and (max-width: 450px){

	.cmsGallery + * {
		margin-top: auto;
	}
	.cmsGallery li {
		clear: both !important;
		float: none !important;
		margin: 0 0 20px 0 !important;
		width: 100% !important;
	}
	
}

/* Element - Bildergalerie Slider */

.cmsGalleryWrapper.slider {
	margin: 0 -20px;
}
.cmsGalleryWrapper li {
    float: none;
    margin: 0 !important;
    width: 100%;
}
.owl-carousel .owl-item {
	padding: 5px 20px 50px;
}

/* Pagination */

.owl-controls > .owl-pagination {
	bottom: 0;
	left: 0;
	position: absolute;
	text-align: center;
	width: 100%;
}
.owl-controls > .owl-pagination > div {
	background: #CCCCCC;
	border: 3px solid #F0F0F0;
	border-radius: 50%;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.25) inset;
	cursor: pointer;
	display: inline-block;
	height: 18px;
	margin: 0 3px;
	width: 18px;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.owl-controls > .owl-pagination > div.active,
.owl-controls > .owl-pagination > div:hover {
	background: #636363;
}

/* Pfeile */

.owl-controls > .owl-buttons > div {
	color: #FFFFFF;
	display: block;
	font-family: "fontello";
	font-size: 45px;
	font-weight: normal;
	line-height: 1;
	margin: -45px 0 0;
	position: absolute;
	text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
	top: 50%;
	z-index: 2;
	-webkit-transition: all 800ms ease 500ms;
	-moz-transition: all 800ms ease 500ms;
	-ms-transition: all 800ms ease 500ms;
	-o-transition: all 800ms ease 500ms;
	transition: all 800ms ease 500ms;
}
.owl-controls > .owl-buttons > div.owl-prev:before {
	content: "\E806";
	display: block;
}
.owl-controls > .owl-buttons > div.owl-prev {
	left: -20px;
}
.owl-controls > .owl-buttons > div.owl-next:before {
	content: "\E808";
	display: block;
}
.owl-controls > .owl-buttons > div.owl-next {
	right: -20px;
}
.owl-controls > .owl-buttons > div.owl-prev:hover,
.owl-controls > .owl-buttons > div.owl-next:hover {
	color: #FFFFFF;
	opacity: 1;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

@media all and (max-width: 1220px){

	.owl-controls > .owl-buttons {
		display: none;
	}

}
@media all and (max-width: 480px){

	.owl-carousel .owl-item {
		padding-bottom: 65px;
	}
	.owl-controls > .owl-pagination {
		display: none;
	}
	.owl-controls > .owl-buttons {
		display: block;
	}
	.owl-controls > .owl-buttons > div {
		bottom: 0;
		margin-top: 0;
		top: auto;
	}
	.owl-controls > .owl-buttons > div.owl-prev {
		left: 50%;
		margin: 0 0 0 -45px;
	}
	.owl-controls > .owl-buttons > div.owl-next {
		margin: 0 -45px 0 0;
		right: 50%;
	}

}

/* Elemente - Teaser */

.cmsTeaser + * {
	margin-top: -20px;
}
.cmsTeaser:after {
	clear: both;
	content: "";
	display: block;
}
.cmsTeaser > h2 {
	margin: 0 0 20px 0;
}
.cmsTeaser article {
	background: #FCFCFC;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	float: left;
	margin: 0 3.63636363636365% 3.63636363636365% 0; /* 0 45 45 0 */
	position: relative;
	width: 30.90909090909091%; /* 340 */
	-webkit-transition: background 300ms ease-in-out;
	-moz-transition: background 300ms ease-in-out;
	-ms-transition: background 300ms ease-in-out;
	-o-transition: background 300ms ease-in-out;
	transition: background 300ms ease-in-out;
}
.cmsTeaser article:nth-of-type(3n) {
	margin-right: 0;
}
.cmsTeaser article:nth-of-type(3n) + article {
	clear: left;
}
.cmsTeaser article:hover {
	background: #FFFFFF;
}
.cmsTeaser article > h2 {
	display: none;
}
.cmsTeaser article > figure > a {
	display: block;
	position: relative;
}
.cmsTeaser article > figure > a:before {
	border: 5px solid rgba(255, 255, 255, 0.25);
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	top: 0;
	width: 100%;
}
.cmsTeaser article > figure > a > img {
	display: block;
	width: 100%;
}
.cmsTeaser article > figure > figcaption {
    font-size: 18px;
    line-height: 1.5;
    padding: 20px;
}
.cmsTeaser article > figure > figcaption > a {
    display: table;
    font-size: 26px;
    font-weight: 300;
}
.cmsTeaser article > figure > figcaption > p > span {
	display: block;
}
.cmsTeaser article > figure > figcaption > p > span.addition,
.cmsTeaser article > figure > figcaption > p > span.date {
	font-weight: bold;
}

@media all and (max-width: 800px){

	.cmsTeaser article {
		margin-bottom: 6.4516129032258%;
		margin-right: 6.4516129032258%;
		width: 46.7741935483871%;
	}
	.cmsTeaser article:nth-of-type(3n) {
		margin-right: 6.4516129032258%;
	}
	.cmsTeaser article:nth-of-type(2n) {
		margin-right: 0;
	}
	.cmsTeaser article:nth-of-type(3n) + article {
		clear: none;
	}
	.cmsTeaser article:nth-of-type(2n) + article {
		clear: both;
	}

}
@media all and (max-width: 550px){
	
	.cmsTeaser + * {
		margin-top: auto;
	}
	.cmsTeaser article {
		clear: both !important;
		float: none !important;
		margin: 0 0 30px 0 !important;
		width: 100% !important;
	}
	.cmsTeaser article > figure > figcaption {
		min-height: 0 !important;
	}

}

/* Elemente - Tabelle */

.cmsTable > h2 {
	margin: 0 0 5px 0;
}
.cmsTable > table {
	width: 100%;
}
.cmsTable > table > tbody > tr {
	background: #FCFCFC;
}
.cmsTable > table > tbody > tr.val2 {
	background: #D8D0D0;
}
.cmsTable > table > tbody > tr > td {
    line-height: 1.5;
    padding: 8px 10px 9px;
	position: relative;
}
.cmsTable > p {
	font-size: smaller;
	padding: 5px 10px 0 10px;
}

/* Elemente - Verlinkungen */

/* Links (intern & extern) */

.cmsLink > a:before {
	color: #C03139;
	content: '\E808';
	font-family: 'fontello';
	font-weight: normal;
	left: 0;
	position: absolute;
}
.cmsLink > a {
	color: #383838;
	display: inline-block;
	padding: 0 0 0 20px;
	position: relative;
}
.cmsLink > a:hover,
.cmsRefs > ul > li > a:hover,
.cmsMail > a:hover {
	color: #C03139; 
}

/* Verweisliste */

.cmsRefs > h2 {
	margin: 0 0 20px 0;
}
.cmsRefs > ul > li > a:before {
	color: #C03139;
	content: '\E808';
	font-family: 'fontello';
	font-weight: normal;
	left: 0;
	position: absolute;
}
.cmsRefs > ul > li > a {
	color: #383838;
	display: inline-block;
	padding: 0 0 0 20px;
	position: relative;
}

/* E-Mail */

.cmsMail > a:before {
	color: #C03139;
	content: '\E833';
	font-family: 'fontello';
	font-weight: normal;
	left: 0;
	position: absolute;
}
.cmsMail > a {
	color: #383838;
	display: inline-block;
	padding: 0 0 0 40px;
	position: relative;
}

/* Elemente - Dropdown */

.cmsDrop {
	background: #FCFCFC;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	padding: 12px 10px;
}
.cmsDrop > h3:before {
	content: '\E807';
	font-family: 'fontello';
    font-weight: normal;
    left: 10px;
    position: absolute;
    top: 1px;
}
.cmsDrop > h3 {
	cursor: pointer;
	display: inline-block;
	font-size: 28px;
	font-weight: normal;
	padding: 0 0 0 53px;
	position: relative;
}
.cmsDrop > h3.contentHide:before {
	content: '\E805';
}
.cmsDrop > h3.contentHide + div {
	display: none;
}
.cmsDrop > h3 + div {
	overflow: hidden;
	padding: 0 20px;
}

@media all and (max-width: 600px){

	.cmsDrop > h3 {
		font-size: 26px;
	}

}
@media all and (max-width: 420px){

	.cmsDrop {
		margin-left: -20px;
		margin-right: -20px;
	}	

}

/* Elemente - HTML */

/* Elemente - Youtube */

.cmsYoutube > h2 {
	margin: 0 0 5px 0;
}
.cmsYoutube > div:before {
	color: #ADADAD;
	content: '\E839';
	font-family: 'fontello';
	font-size: 75px;
	height: 60px;
	left: 50%;
	line-height: 60px;
	margin: -30px 0 0 -40px;
	position: absolute;
	text-align: center;
	top: 50%;
	width: 80px;
}
.cmsYoutube > div {
	background: #F1F1F2;
	height: 0;
	overflow: hidden;
	padding: 30px 0 56.25% 0;
	position: relative;
}
.cmsYoutube > div > iframe {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.cmsYoutube > p {
	line-height: 1.3;
	margin: 10px 0 0 0;
}

/* Elemente - Iframe */

.cmsIframe {
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}		
.cmsIframe > iframe {
	width: 100%;
}

/* Elemente - Downloads */

.cmsDownload + .cmsDownload {
	margin-top: -20px;
}
.cmsDownload {
	position: relative;
}
.cmsDownload > a {
	color: #383838;
	display: inline-block;
	font-weight: normal;
	padding: 0 0 0 65px;
}
.cmsDownload > a:hover {
	color: #E57D26;
}
.cmsDownload > a:before {
	background: #e57d26 none repeat scroll 0 0;
	color: #ffffff;
	content: "FILE";
	display: block;
	font-size: small;
	font-weight: bold;
	height: 27px;
	left: 0;
	line-height: 27px;
	position: absolute;
	text-align: center;
	top: 2px;
	width: 50px;
}
.cmsExcel > a:hover {
	color: #4CB86D;
}
.cmsExcel > a:before {
	background: #4CB86D;
	content: "XLS";
}
.cmsPDF > a:hover {
	color: #E84C3D;
}
.cmsPDF > a:before {
	background: #E84C3D;
	content: "PDF";
}
.cmsWord > a:hover {
	color: #3896D3;
}
.cmsWord > a:before {
	background: #3896D3;
	content: "DOC";
}

/* Elemente - Formular */

.cmsForm {
	background: #FCFCFC;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	padding: 30px 20px;
}
.cmsForm > h2 {
	margin: 0 0 20px 0;
}
.cmsForm > .row {
	margin: 20px 0;
	padding: 0 40px 0 0;
	position: relative;
}
.cmsForm > .row:after {
	clear: both;
	content: "";
	display: block;
}
.cmsForm > .row.validation:before {
	color: #C03139;
	content: '\E823';
	font-family: 'fontello';
	line-height: 44px;
	position: absolute;
	right: 0;
	top: 0;
}
.cmsForm > .row > label {
	display: block;
	float: left;
	line-height: 44px;
	padding: 0 10px 0 0;
	width: 30%;
}
.cmsForm > .row > .field {
	background: #FFFFFF;
	border: 1px solid #E0E0E0;
	height: 44px;
	outline: medium none;
	padding: 0 10px;
	width: 70%;
}
.cmsForm > .row > .field:focus {
	border: 1px solid #D8D0D0;
}
.cmsForm > .row > textarea.field {
	height: 100px;
	line-height: 1.3;
	padding-top: 10px;
	padding-bottom: 10px;
}
.cmsForm > .row > select.field {
	padding: 7px 10px 7px 6px;
}
.cmsForm > .row > input[type='file'].field {
	border: 1px solid #E0E0E0 !important;
	height: auto;
	line-height: 1;
	padding: 8px 10px;
}
.cmsForm > .row > input[type='file'].field:focus {
	border: 0;
	box-shadow: none;
}
.cmsForm > .row > .checkbox {
	border: 0 none;
	margin: 0 8px 0 0;
	padding: 0;
	width: auto;
}
.cmsForm > .row > p {
	display: inline-block;
	line-height: 44px;
}
.cmsForm > .infotext {
	line-height: 1.3;
}
.cmsForm > .row > .datepicker {
	cursor: pointer;
	width: 143px;
}
.cmsForm > .row > .calicon {
	border-left: 1px solid #E0E0E0;
	cursor: pointer;
	display: inline-block;
	font-size: 18px;
	height: 42px;
	line-height: 42px;
    margin: 0 0 0 -37px;
    padding: 0 9px;
	position: absolute;
	top: 1px;
}
.cmsForm > .row > .calicon:before {
	content: "\E800";
	font-family: "fontello";
}
.cmsForm > .row > .spm {
	background: none repeat scroll 0 0 #FFFFFF;
	border: 1px solid #E0E0E0;
	float: left;
	padding: 15px;
	position: relative;
	width: 70%;
}
.cmsForm > .row > .spm:after {
	content: '\e826';
	font-family: 'fontello';
	font-size: 20px;
	left: 150px;
	position: absolute;
	top: 13px;
}
.cmsForm > .row > .spm > img {
	border: 1px solid #E0E0E0;
	float: left;
}
.cmsForm > .row > .spm > img + input {
	border: 1px solid #E0E0E0;
	float: left;
	height: 32px;
	margin: 0 0 0 30px;
	padding: 0 8px;
	text-align: center;
	width: 90px;
}
.cmsForm > .row > .spm > p {
	clear: both;
	padding: 8px 0 0 0;
}
.cmsForm > .button {
	margin: 20px 40px 20px 0;
	position: relative;
	text-align: right;
}
.cmsForm > .button > input { /* Sende-Button */
	background: #C03139;
	border: 0;
	color: #FFFFFF;
	cursor: pointer;
    height: 40px;
    padding: 0 22px 1px;
	font-weight: bold;
	text-transform: uppercase;
}
.cmsForm > .button > input:hover {
	background: #D3373E;
}
.cmsForm > .msg {
	line-height: 1.3;
	margin: 0 40px 10px 0;
	padding: 4px 10px;
}
.cmsForm .error {
	background: #FFFFFF;
	border: 1px solid #FFA3A3 !important;
	box-shadow: 0 0 3px #FF0000;
}

@media all and (max-width: 900px){
	
	.cmsForm > .row {
		padding-right: 0;
	}
	.cmsForm > .row > label {
		float: none;
		margin-bottom: 5px;
		padding-right: 20px;
		width: 100%;
	}
	.cmsForm > .row > .field {
		width: 100%;
	}
	.cmsForm > .row > .calicon {
		top: 50px;
	}
	.cmsForm > .row > .spm {
		width: 100%;
	}
	.cmsForm > .button {
		margin-right: 0;
	}
	.cmsForm > .msg {
		margin-right: 0;
	}

}

@media all and (max-width: 420px){

	.cmsForm {
		margin-left: -20px;
		margin-right: -20px;
	}
	.cmsForm > .row > .spm {
		text-align: center;
	}
	.cmsForm > .row > .spm:after {
		content: "\e824";
		left: 50%;
		margin: 0 0 0 -5px;
		top: 43px;
	}
	.cmsForm > .row > .spm > img {
		float: none;
		margin: 0 0 20px;
	}
	.cmsForm > .row > .spm > img + input {
		display: block;
		float: none;
		left: 50%;
		margin-left: -60px;
		position: relative;
		width: 120px;
	}
	.cmsForm > .row > .spm > p {
		font-size: 15px;
		text-align: left;
	}

}

/* Extension - Suchergebnisse */

.cmsSingleTeaser article {
	background: #FCFCFC;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    margin: 0 0 20px;
    padding: 0 0 4px 340px;
    position: relative;
    width: 100%;
	-webkit-transition: background 300ms ease-in-out;
	-moz-transition: background 300ms ease-in-out;
	-ms-transition: background 300ms ease-in-out;
	-o-transition: background 300ms ease-in-out;
	transition: background 300ms ease-in-out;
}
.cmsSingleTeaser article:hover {
	background: #FFFFFF;
}
.cmsSingleTeaser article.hasImg {
    min-height: 220px;
}
.cmsSingleTeaser article > h2 {
	display: none;
}
.cmsSingleTeaser article > figure > a {
    display: block;
    left: 0;
    position: absolute;
    top: 0;
}
.cmsSingleTeaser article > figure > a:before {
	border: 5px solid rgba(255, 255, 255, 0.25);
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	top: 0;
	width: 100%;
}
.cmsSingleTeaser article > figure > a > img {
	display: block;
	width: 100%;
}
.cmsSingleTeaser article > figure > figcaption {
    font-size: 18px;
    line-height: 1.5;
    padding: 20px;
}
.cmsSingleTeaser article > figure > figcaption > a {
    display: table;
    font-size: 26px;
    font-weight: 300;
}
.cmsSingleTeaser article > figure > figcaption > p > span {
	display: block;
}
.cmsSingleTeaser article > figure > figcaption > p > span.addition,
.cmsSingleTeaser article > figure > figcaption > p > span.date {
	font-weight: bold;
}

/* Pagination */

.pagenav {
	text-align: center;
}
.pagenav > li {
    background: #CCCCCC;
    border: 3px solid #F0F0F0;
    border-radius: 50%;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.25) inset;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    height: 32px;
    margin: 0 5px;
    width: 32px;
}
body.isSafari .pagenav > li {
	line-height: 28px;
}
.pagenav > li > a {
	color: rgba(0, 0, 0, 0.7);
	display: block;
}

/* Erneute Suche */

.searchList > form {
    background: #FCFCFC;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    padding: 20px;
    position: relative;
}
.searchList > form > input.field {
    background: #FFFFFF;
    border: 1px solid #D2D2D2;
    height: 40px;
    line-height: 40px;
    padding: 0 15px 1px;
    width: 100%;
}
.searchList > form > input.button {
    background: #C03139;
    border: 0 none;
    color: #FFFFFF;
    cursor: pointer;
    font-weight: bold;
    height: 40px;
    padding: 0 22px 1px;
    position: absolute;
    right: 20px;
    text-transform: uppercase;
    top: 20px;
}
.searchList > form > input.button:hover {
	background: #D3373E;
}

@media all and (max-width: 750px){

	.cmsSingleTeaser article {
		padding-left: 0;
	}
	.cmsSingleTeaser article.hasImg {
		padding-left: 45%;
	}
	.cmsSingleTeaser article > figure > a {
		width: 45%;
	}

}
@media all and (max-width: 550px){

	.cmsSingleTeaser {
		margin-bottom: 0;
		margin-top: 30px;
	}
	.cmsSingleTeaser article > figure > a {
		position: relative;
		width: 100%;
	}
	.cmsSingleTeaser article.hasImg {
		padding-left: 0;
	}
	.searchList > form {
		margin-left: -20px;
		margin-right: -20px;
		padding-bottom: 30px;
		padding-top: 30px;
	}
	.searchList > form > input.field {
		text-align: center;
	}
	.searchList > form > input.button {
		margin: -1px 0 0;
		position: relative;
		right: auto;
		top: auto;
		width: 100%;
	}

}

/* Micado Ext. - Kalender 1.0 - Required */

.micCal {
	position: relative;
	-ms-user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.micCal:after {
	clear: both;
	content: "";
	display: block;
}
.micCal > div {
	float: left;
	width: 17em;
}
.micCal.micCalInline > div {
	margin: 0 0 2%;
	width: 32%;
}
.micCal.micCalInline > div:nth-of-type(3n+2) {
	margin-left: 2%;
	margin-right: 2%;
}
.micCal > div > .header {
	text-align: center;
	text-transform: uppercase;
}
.micCal > div > .daysH:after {
	clear: both;
	content: "";
	display: block;
}
.micCal > div > .daysH > div {
	float: left;
	text-align: center;
	text-transform: uppercase;
	width: 14.28571428571429%;
}
.micCal > div > .days:after {
	clear: both;
	content: "";
	display: block;
}
.micCal > div > .days > div {
	float: left;
	padding: 0.286em 0; /* 4 0 */
	text-align: center;
	width: 14.28571428571429%;
	-webkit-transition: background 300ms ease-out;
	-moz-transition: background 300ms ease-out;
	-ms-transition: background 300ms ease-out;
	-o-transition: background 300ms ease-out;
	transition: background 300ms ease-out;
}
.micCal > div > .days > div:hover,
.micCal > div > .days > div.selected {
	color: inherit;
	cursor: pointer;
}
.micCal > div > .days > div.locked:hover {
	background: inherit;
	cursor: inherit;
	font-weight: inherit;
}
.micCal > div > .days > div:nth-child(7n) + div {
	clear: left;
}
.micCal > .prev {
	color: inherit;
	font-size: 18px;
	font-weight: normal;
	line-height: 1;
	position: absolute;
}
.micCal > .next {
	color: inherit;
	font-size: 18px;
	font-weight: normal;
	line-height: 1;
	position: absolute;
}
.micCal > a:hover {
	text-decoration: none;
}
.micCal > ul.legend {
	clear: both;
}
.micCal > ul.legend > li {
	margin: 0.143em 0; /* 2 0 */
}
.micCal > ul.legend > li > span.marker {
	display: inline-block;
	vertical-align: middle;
}
.micCal > ul.legend > li > span.title {
	font-size: 0.786em; /* 11 */
	font-weight: bold;
}

@media all and (max-width: 900px){

	.micCal.micCalInline.calBasic > div {
		width: 49%;
	}
	.micCal.micCalInline > div:nth-of-type(3n+2) {
		margin-right: 0;
	}

}
@media all and (max-width: 600px){

	.micCal.micCalInline.calBasic > div {
		width: 100%;
	}

}
@media all and (max-width: 420px){

	.micCal > .prev,
	.micCal > .next {
		font-size: 13px;
	}

}

/* Micado Ext. - Kalender 1.0 - Template "calBasic" */

.micCal.calBasic > div {
	background: #FFFFFF;
	padding: 0;
}
.micCal.calBasic > div > .header {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid #cdd4dc;
	border-bottom: 0;
	margin: 0;
	padding: 0.429em 0.714em; /* 6 10 */
	font-weight: bold;
}
.micCal.calBasic > div > .daysH {
	border-right: 1px solid #cdd4dc;
}
.micCal.calBasic > div > .daysH > div {
	border-top: 1px solid #cdd4dc;
	border-left: 1px solid #cdd4dc;
	color: #888888;
	font-size: 0.786em; /* 11 */
	padding: 0.545em 0 0.364em 0; /* 6 0 4 0 */
}
.micCal.calBasic > div > .days {
	border: 1px solid #cdd4dc;
	border-top: 0;
	border-left: 0;
}
.micCal.calBasic > div > .days > div {
	border-top: 1px solid #cdd4dc;
	border-left: 1px solid #cdd4dc;
}
.micCal.calBasic > div > .days > div.today {
	font-weight: bold;
}
.micCal.calBasic > div > .days > div.locked {
	color: #CFCFCF;
}
.micCal.calBasic > div > .days > div.locked:hover {
	background: inherit;
	font-weight: inherit;
}
.micCal.calBasic > .prev {
	left: 16px;
	top: 14px;
}
.micCal.calBasic > .next {
	right: 16px;
	top: 14px;
}
.micCal.calBasic > ul.legend {
	padding: 0.500em 0; /* 7 */
}
.micCal.calBasic > ul.legend > li > span.marker {
	height: 1.071em; /* 15 */
	margin: 0 0.357em 0 0; /* 0 5 0 0 */
	width: 1.071em; /* 15 */
}

@media all and (max-width: 420px){

	.micCal.calBasic > .prev,
	.micCal.calBasic > .next {
		top: 17px;
	}

}

/*! jQuery UI - v1.11.4 - 2015-07-09
* http://jqueryui.com
* Includes: core.css, datepicker.css
* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */

/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
	display: none;
}
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse;
}
.ui-helper-clearfix:after {
	clear: both;
}
.ui-helper-clearfix {
	min-height: 0; /* support: IE7 */
}
.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
}

.ui-front {
	z-index: 100;
}


/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
	cursor: default !important;
}


/* Icons
----------------------------------*/

/* states and images */
.ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.ui-datepicker {
	width: 17em;
	padding: .2em .2em 0;
	display: none;
}
.ui-datepicker .ui-datepicker-header {
	position: relative;
	padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	position: absolute;
	top: 2px;
	width: 1.8em;
	height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
	top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
	left: 2px;
}
.ui-datepicker .ui-datepicker-next {
	right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
	left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
	right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
	display: block;
	position: absolute;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
	margin: 0 2.3em;
	line-height: 1.8em;
	text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
	font-size: 1em;
	margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 45%;
}
.ui-datepicker table {
	width: 100%;
	font-size: .9em;
	border-collapse: collapse;
	margin: 0 0 .4em;
}
.ui-datepicker th {
	padding: .7em .3em;
	text-align: center;
	font-weight: bold;
	border: 0;
}
.ui-datepicker td {
	border: 0;
	padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
	display: block;
	padding: .2em;
	text-align: right;
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
	background-image: none;
	margin: .7em 0 0 0;
	padding: 0 .2em;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
	float: right;
	margin: .5em .2em .4em;
	cursor: pointer;
	padding: .2em .6em .3em .6em;
	width: auto;
	overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
	float: left;
}

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
	width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
	float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
	width: 95%;
	margin: 0 auto .4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
	width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
	width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
	width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
	border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
	clear: left;
}
.ui-datepicker-row-break {
	clear: both;
	width: 100%;
	font-size: 0;
}

/* RTL support */
.ui-datepicker-rtl {
	direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
	right: 2px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
	left: 2px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
	right: 1px;
	left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
	left: 1px;
	right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
	clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
	float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
	float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
	border-right-width: 0;
	border-left-width: 1px;
}

/* jQuery UI Kalender Styles Micado */

/* Datepicker */

/* benutzerdefinierte Styles */

.ui-datepicker {
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
	font-size: 15px;
	margin: -1px 0 0;
}
.ui-datepicker-header {
	background: #D8D0D0 !important;
	border: 1px solid #CCCCCC;
	margin: -11px -11px 0 -11px !important;
	padding: 0.4em !important;
}
.ui-datepicker td {
	border: 1px solid #CFCFCF !important;
	padding: 0 !important;
}
.ui-state-default {
	background: none !important;
	border: 0 !important;
	color: inherit !important;
	text-align: center !important;
	font-weight: normal !important;
	padding: 0.3em !important;
}
.ui-state-active, .ui-state-hover {
	background: #D8D0D0 !important;
}
.ui-datepicker-month, .ui-datepicker-year {
	font-size: 1em !important;
}
/* benutzerdefinierte Styles Ende */

/* generelle Vererbungen */

.ui-datepicker {
	padding: 10px !important;
}
.ui-corner-all {
	border-radius: 0 !important;
}
.ui-icon {
	background: none !important;
	text-indent: 0 !important;
	width: auto !important;
	height: auto !important;
}
.ui-datepicker-title {
	font-weight: bold;
	margin: 0 4.5em !important;
	font-size: 0.9em !important;
}
.ui-datepicker th {
	padding: 0.5em 0 !important
}
.ui-datepicker-calendar span {
	font-size: 0.9em !important;
}
.ui-datepicker-prev, .ui-datepicker-next {
	width: auto !important;
	height: auto !important;
	margin: 7px 0 0 0 !important;
	top: 0 !important;
	border: 0 !important;
	background: none !important;
	padding: 0 !important;
	cursor: pointer !important;
}
.ui-datepicker-prev {
	left: 5px !important;
}
.ui-datepicker-next {
	right: 5px !important;
}
.ui-datepicker-prev span, .ui-datepicker-next span {
	color: rgba(0, 0, 0, 0.7) !important;
	left: auto !important;
	margin: 0 !important;
	top: auto !important;
	position: static !important;
	font-size: 0.8em !important;
}

/*! fancyBox v2.1.4 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8020;
}

.fancybox-skin {
	position: relative;
	background: #FFFFFF;
	color: #444;
	text-shadow: none;
}

.fancybox-opened {
	z-index: 8030;
}

.fancybox-opened .fancybox-skin {
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	   -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
	position: relative;
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading {
	background-image: url('/img/fancybox/fancybox_sprite.png');
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: 0.8;
	cursor: pointer;
	z-index: 8060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url('/img/fancybox/fancybox_loading.gif') center center no-repeat;
}

.fancybox-close {
	background: #000000;
	background: rgba(0, 0, 0, 0.75);
	cursor: pointer;
	height: 50px;
	position: absolute;
	right: 0;
	text-align: center;
	top: 0;
	width: 50px;
	z-index: 8040;
}

.fancybox-close:hover {
	background: #000000;
}

.fancybox-close:before {
	color: #FFFFFF;
	content: '\E82A';
	font-family: 'fontello';
	font-size: 35px;
	font-weight: normal;
	line-height: 50px;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.fancybox-nav {
	background: transparent url('/img/fancybox/blank.gif'); /* helps IE */
	cursor: pointer;
	height: 100%;
	position: fixed;
	text-decoration: none;
	top: 0;
	width: 30%;
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	background: #000000;
	background: rgba(0, 0, 0, 0.75);
	cursor: pointer;
	height: 100px;
	margin-top: -50px;
	position: absolute;
	text-align: center;
	top: 50%;
	transition: opacity 200ms ease-in-out 0s;
	width: 55px;
	z-index: 8040;
}

.fancybox-nav:hover span {
	background: #000000;
}

.fancybox-prev span {
	left: 0;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.fancybox-prev span:before {
	color: #FFFFFF;
	content: '\E806';
	font-family: 'fontello';
	font-size: 40px;
	font-weight: normal;
	line-height: 100px;
	margin: 0 10px 0 0;
	opacity: 1;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	-webkit-transition: opacity 200ms ease-in-out;
	-moz-transition: opacity 200ms ease-in-out;
	-ms-transition: opacity 200ms ease-in-out;
	-o-transition: opacity 200ms ease-in-out;
	transition: opacity 200ms ease-in-out;
}

.fancybox-next span {
	right: 0;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.fancybox-next span:before {
	color: #FFFFFF;
	content: '\E808';
	font-family: 'fontello';
	font-size: 40px;
	font-weight: normal;
	line-height: 100px;
	margin: 0 0 0 10px;
	opacity: 1;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	-webkit-transition: opacity 200ms ease-in-out;
	-moz-transition: opacity 200ms ease-in-out;
	-ms-transition: opacity 200ms ease-in-out;
	-o-transition: opacity 200ms ease-in-out;
	transition: opacity 200ms ease-in-out;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	visibility: hidden;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
	margin-right: 0 !important;
	overflow-x: hidden;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
	background: rgb(0, 0, 0);
	background: rgba(0, 0, 0, 0.8);
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow-x: auto;
}

/* Title helper */

.fancybox-title {
	background: #000000;
	background: rgba(0, 0, 0, 0.75);
	bottom: 0;
	color: #ffffff;
	font-weight: normal;
	overflow: hidden;
	padding-right: 145px !important;
	position: absolute;
	text-overflow: ellipsis;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
	visibility: hidden;
	white-space: nowrap;
	width: 100%;
	z-index: 8050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 8050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, 0.8);
	-webkit-border-radius: 15px;
	   -moz-border-radius: 15px;
	        border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #FFF;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding: 10px 15px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

#fancybox-buttons {
	display: none !important;
	position: fixed;
	left: 0;
	width: 100%;
	z-index: 8050;
}

#fancybox-buttons.top {
	top: 10px;
}

#fancybox-buttons.bottom {
	bottom: 10px;
}

#fancybox-buttons ul {
	display: block;
	width: 166px;
	height: 30px;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	border: 1px solid #111;
	border-radius: 3px;
	-webkit-box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
	   -moz-box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
	        box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
	background: rgb(50,50,50);
	background: -moz-linear-gradient(top, rgb(68,68,68) 0%, rgb(52,52,52) 50%, rgb(41,41,41) 50%, rgb(51,51,51) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgb(68,68,68)), color-stop(50%,rgb(52,52,52)), color-stop(50%,rgb(41,41,41)), color-stop(100%,rgb(51,51,51)));
	background: -webkit-linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
	background: -o-linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
	background: -ms-linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
	background: linear-gradient(top, rgb(68,68,68) 0%,rgb(52,52,52) 50%,rgb(41,41,41) 50%,rgb(51,51,51) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#444444', endColorstr='#222222',GradientType=0 );
}

#fancybox-buttons ul li {
	float: left;
	margin: 0;
	padding: 0;
}

#fancybox-buttons a {
	display: block;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
	background-image: url('/img/fancybox/fancybox_buttons.png');
	background-repeat: no-repeat;
	outline: none;
	opacity: 0.8;
}

#fancybox-buttons a:hover {
	opacity: 1;
}

#fancybox-buttons a.btnPrev {
	background-position: 5px 0;
}

#fancybox-buttons a.btnNext {
	background-position: -33px 0;
	border-right: 1px solid #3e3e3e;
}

#fancybox-buttons a.btnPlay {
	background-position: 0 -30px;
}

#fancybox-buttons a.btnPlayOn {
	background-position: -30px -30px;
}

#fancybox-buttons a.btnToggle {
	background-position: 3px -60px;
	border-left: 1px solid #111;
	border-right: 1px solid #3e3e3e;
	width: 35px
}

#fancybox-buttons a.btnToggleOn {
	background-position: -27px -60px;
}

#fancybox-buttons a.btnClose {
	border-left: 1px solid #111;
	width: 35px;
	background-position: -56px 0px;
}

#fancybox-buttons a.btnDisabled {
	opacity : 0.4;
	cursor: default;
}

/* Animation */

.micAnimation {
	height: 100%;
	width: 100%;
}
.micAnimation > ul {
    height: 100%;
    position: relative;
    z-index: 1;
}
.micAnimation > ul > .slide {
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
	-webkit-transition: opacity 500ms ease-in;
    -moz-transition: opacity 500ms ease-in;
    -o-transition: opacity 500ms ease-in;
    -ms-transition: opacity 500ms ease-in;
    transition: opacity 500ms ease-in;
}
.micAnimation > ul > .slide.animated {
	opacity: 1;
}
.micAnimation > ul > .slide > img {
	display: block;
	height: auto;
	position: absolute;
	width: 100%;
	z-index: 1;
}

/* Text mit TextWrapper */

.micAnimation > ul > .slide > .textBox.textWrap {
	position: absolute;
	z-index: 2;
}

/* Text ohne TextWrapper */

.micAnimation > ul > .slide > .textBox:not(.textWrap) > p {
    position: absolute;
    z-index: 2;
}
.micAnimation > ul > .slide > .textBox:not(.textWrap) > p:last-child {
    z-index: 3;
}

/* Navigation - Pfeile */

.micAnimation > .arrows > a {
	color: #FFFFFF;
	display: block;
	font-family: "fontello";
	font-size: 45px;
	font-weight: normal;
	line-height: 1;
	margin: 52px 0 0;
	opacity: 0;
	position: absolute;
	text-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
	top: 50%;
	z-index: 2;
	-webkit-transition: all 800ms ease 500ms;
	-moz-transition: all 800ms ease 500ms;
	-ms-transition: all 800ms ease 500ms;
	-o-transition: all 800ms ease 500ms;
	transition: all 800ms ease 500ms;
}
.micAnimation > .arrows > a.prev:before {
	content: "\E806";
	display: block;
}
.micAnimation > .arrows > a.prev {
	left: -60px;
}
.micAnimation > .arrows.animated > a.prev {
	left: 20px;
	opacity: 0.75;
}
.micAnimation > .arrows > a.next:before {
	content: "\E808";
	display: block;
}
.micAnimation > .arrows > a.next {
	right: -60px;
}
.micAnimation > .arrows.animated > a.next {
	opacity: 0.75;
	right: 20px;
}
.micAnimation > .arrows > a.prev:hover,
.micAnimation > .arrows > a.next:hover {
	color: #FFFFFF;
	opacity: 1;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

/* Navigation - Bullets */

.micAnimation > .bullets > ul {
	bottom: -20px;
	display: block;
	line-height: 1;
	opacity: 0;
	position: absolute;
	text-align: center;
	width: 100%;
	z-index: 3;
	-webkit-transition: all 800ms ease-out 1200ms;
	-moz-transition: all 800ms ease-out 1200ms;
	-ms-transition: all 800ms ease-out 1200ms;
	-o-transition: all 800ms ease-out 1200ms;
	transition: all 800ms ease-out 1200ms;
}
.micAnimation > .bullets.animated > ul {
	bottom: 20px;
	opacity: 1;
}
.micAnimation > .bullets > ul > li {
	background: #CCCCCC;
	border: 3px solid #F0F0F0;
	border-radius: 50%;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.25) inset;
	cursor: pointer;
	display: inline-block;
	height: 18px;
	margin: 0 3px;
	width: 18px;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}
.micAnimation > .bullets > ul > li:hover,
.micAnimation > .bullets > ul > li.selected {
	background: #636363;
}

@media all and (max-width: 1150px){

	.micAnimation > .arrows > a {
		margin-top: 42px;
	}

}
@media all and (max-width: 500px){

	.micAnimation > .arrows > a {
		margin-top: 2px;
	}

}
@media all and (max-width: 420px){

	.micAnimation > .arrows {
		display: none;
	}
	.micAnimation > .bullets.animated > ul {
		bottom: 15px;
		opacity: 0.9;
	}

}

/* Animation - Custom */

.micAnimation > ul > .slide > .textBox {
	display: table;
	line-height: 1.3;
	text-align: center;
}
.micAnimation > ul > .slide > .textBox > .text0 {
    color: #FFFFFF;
    font-size: 45px;
    font-weight: 300;
    line-height: 0.9;
    margin: 0 0 8px;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}
.micAnimation > ul > .slide > .textBox > .text1 {
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 300;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}

@media all and (max-width: 900px){

	.micAnimation > ul > .slide > .textBox > .text0 {
		font-size: 32px;
	}
	.micAnimation > ul > .slide > .textBox > .text1 {
		font-size: 22px;
	}

}
@media all and (max-width: 500px){

	.micAnimation > ul > .slide > .textBox {
		display: none;
	}

}

/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */

/* clearfix */
.owl-carousel .owl-wrapper:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
/* display none until init */
.owl-carousel{
	display: none;
	position: relative;
	width: 100%;
	-ms-touch-action: pan-y;
}
.owl-carousel .owl-wrapper{
	display: none;
	position: relative;
	-webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper-outer{
	overflow: hidden;
	position: relative;
	width: 100%;
}
.owl-carousel .owl-wrapper-outer.autoHeight{
	-webkit-transition: height 500ms ease-in-out;
	-moz-transition: height 500ms ease-in-out;
	-ms-transition: height 500ms ease-in-out;
	-o-transition: height 500ms ease-in-out;
	transition: height 500ms ease-in-out;
}
	
.owl-carousel .owl-item{
	float: left;
}
.owl-controls .owl-page,
.owl-controls .owl-buttons div{
	cursor: pointer;
}
.owl-controls {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* fix */
.owl-carousel  .owl-wrapper,
.owl-carousel  .owl-item{
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
}

/* Privacy 1.0.0 */

/* Default */

.privacyCookie {
	background: #E10707;
	color: #FFFFFF;
	font-size: 15px;
	padding: 10px 0;
	width: 100%;
}
.privacyCookie > div > p {
	float: left;
	margin: 0 10px 0 0;
}
.privacyCookie > div > p > a {
	color: #FFFFFF;
}
.privacyCookie > div > a.button {
	color: #FFFFFF;
	float: right;
	position: relative;
}

/* Direction Top */

.privacyCookie.top {
	margin: -300px 0 0 0;
	position: absolute;
	transition: margin 300ms ease;
	z-index: 5;
}
.showPrivacyCookie .privacyCookie.top {
	margin-top: 0 !important;
	position: relative;
}

/* Direction Bottom */

.privacyCookie.bottom {
	left: -10000px;
	position: fixed;
	transition: bottom 300ms ease;
	z-index: 9999;
}
.showPrivacyCookie .privacyCookie.bottom {
	bottom: 0 !important;
}

@media all and (max-width: 1300px){

	.privacyCookie {
		padding-top: 18px;
	}
	.privacyCookie > div > p {
		float: none;
		margin-right: 0;
	}
	.privacyCookie > div > a.button {
		float: none;
		padding: 8px 0;
		display: block;
	}

}