/* 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: #2D343E;
	font: 300 18px/1.8 'Open Sans', sans-serif;;
	overflow-y: scroll;
	-webkit-text-size-adjust: none;
}
body > #PageWrapper {
	min-height: 100%;
	padding: 0 0 180px 0;
	position: relative;
}
a {
	color: #2D343E;
	text-decoration: none;
}
a:hover {
	color: #4E6A92;
}
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'] {
	-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;
}
.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?89627841');
	src: url('/img/webfonts/fontello.eot?89627841#iefix') format('embedded-opentype'),
		url('/img/webfonts/fontello.woff?89627841') format('woff'),
		url('/img/webfonts/fontello.ttf?89627841') format('truetype'),
		url('/img/webfonts/fontello.svg?89627841#fontello') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* Layout - Header */

#HeaderWrapper {
	background: #4E6A93;
	height: 100px;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 4;
}
#HeaderWrapper:after {
	background: rgba(255, 254, 254, 0.5);
	bottom: -5px;
	content: "";
	height: 5px;
	left: 0;
	position: absolute;
	width: 100%;
}
#HeaderWrapper.mobile {
	position: absolute;
}
#HeaderWrapper > div {
	height: 100%;
	margin: 0 auto;
	max-width: 1240px;
	padding: 0 20px;
	position: relative;
}

/* Logo */

#HeaderWrapper > div > a.logo {
	background: #FFFFFF;
	border-radius: 0 0 8px 8px;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
	padding: 17px 30px 25px;
	position: absolute;
	right: 20px;
	top: 0;
	z-index: 999999;
}
#HeaderWrapper > div > a.logo > img {
	display: block;
	width: 100%;
}

/* Sprachauswahl */

#HeaderWrapper > div > .lang {
    border-radius: 4px;
    left: 65px;
    overflow: hidden;
    position: absolute;
    top: 12px;
}
#HeaderWrapper > div > .lang:after {
	clear: both;
	content: "";
	display: block;
}
#HeaderWrapper > div > .lang > a {
	background: #809DC5;
	color: #FFFFFF;
	display: block;
	float: left;
    font: 600 13px/1 'Open Sans', sans-serif;;
    height: 21px;
    line-height: 20px;
	margin: 0 0 0 1px;
	padding: 0 6px;
}
#HeaderWrapper > div > .lang > a:first-child {
	margin-left: 0;
}
#HeaderWrapper > div > .lang > a:hover,
#HeaderWrapper > div > .lang > a.selected {
	background: #FFFFFF;
	color: #4E6A93;
}

/* Mobile Telefon */

#HeaderWrapper > div > a.phone {
	display: none;
}

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

	#HeaderWrapper > div > a.logo {
		padding-left: 20px;
		padding-right: 20px;
		width: 188px;
	}
		
}
@media all and (max-width: 900px){

	#HeaderWrapper {
		height: 80px;
	}
	#HeaderWrapper > div > a.logo {
		left: 20px;
		right: auto;
		width: 161px;
	}
	#HeaderWrapper > div > a.phone {
		color: #FFFFFF;
		display: block;
		font-size: 21px;
		font-weight: bold;
		height: 80px;
		left: 50%;
		line-height: 80px;
		margin: 0 0 0 -11px;
		padding: 0 10px;
		position: absolute;
	}
	#HeaderWrapper > div > a.phone:before {
		content: "\E83E";
		font-family: "fontello";
		font-weight: normal;
		padding: 0 8px 0 0;
	}
	#HeaderWrapper > div > .lang {
		left: 201px;
		top: 27px;
	}
	#HeaderWrapper > div > .lang > a {
		font-size: 15px;
		height: 26px;
		line-height: 26px;
		padding-left: 8px;
		padding-right: 8px;
	}

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

	#HeaderWrapper > div > .lang {
		top: 13px;
	}
	#HeaderWrapper > div > a.phone {
		bottom: 6px;
		height: 30px;
		left: 190px;
		line-height: 30px;
		margin-left: 0;
	}

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

	#HeaderWrapper > div > a.logo {
		width: 153px;
	}
	#HeaderWrapper > div > .lang {
		left: 193px;
		top: 27px;
	}
	#HeaderWrapper > div > a.phone {
		font-size: 31px;
		height: 80px;
		left: auto;
		line-height: 80px;
		overflow: hidden;
		padding: 0;
		right: 58px;
		text-align: center;
		text-indent: -9999px;
		top: 0;
		width: 70px;
	}
	#HeaderWrapper > div > a.phone:before {
		display: block;
		padding-right: 0;
		text-indent: 0;
	}

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

	#HeaderWrapper {
		height: 65px;
	}
	#HeaderWrapper > div > a.logo {
		padding: 12px 18px 18px;
		width: 130px;
	}
	#HeaderWrapper > div > .lang {
		display: none;
	}
	#HeaderWrapper > div > a.phone {
		height: 65px;
		left: 151px;
		line-height: 65px;
	}

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

	#HeaderWrapper > div > a.phone {
		left: 50%;
		margin: 0 0 0 13px;
	}

}

/* Layout - Content */

#ContentWrapper {
	background: #FFFFFF;
	overflow: hidden;
	position: relative;
	width: 100%;
	z-index: 1;
}
#ContentWrapper > div:before {
	clear: both;
	content: "";
	display: block;
	padding: 1px 0 0;
}
#ContentWrapper > div {
	margin: 80px auto 0;
	max-width: 1150px;
	padding: 27px 20px 20px;
	position: relative;
}

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

	#ContentWrapper > div {
		padding-top: 0;
	}

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

	#ContentWrapper > div {
		margin-top: 80px !important;
	}
	#ContentWrapper > div {
		padding-top: 20px;
	}

}

/* Layout - Footer */

#FooterWrapper {
	background: #E8E2D5;
	border-top: 5px solid #CEBA88;
	bottom: 0;
	height: 205px;
	position: absolute;
	width: 100%;
	z-index: 2;
}
#FooterWrapper:after {
	background: #CEBA88;
	border-top: 5px solid#FFFFFF;
	bottom: 0;
	content: "";
	height: 37px;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: -1;
}
#FooterWrapper > div {
	height: 100%;
	margin: 0 auto;
	max-width: 1150px;	
	padding: 38px 20px 0;
	position: relative;
}
#FooterWrapper > div:after {
	clear: both;
	content: "";
	display: block;
}
#FooterWrapper > div > div:after {
	clear: both;
	content: "";
	display: block;
}

/* Kontakt */

#FooterWrapper > div > div > p {
	float: left;
	font: 300 17px/1.4 'Open Sans', sans-serif;;
}
#FooterWrapper > div > div > p > span {
	border-bottom: 1px solid #4E6A93;
	color: #4E6A93;
	display: table;
	font: 600 18px/1.4 'Open Sans', sans-serif;;
	margin: 0 0 4px;
	padding: 0 0 6px;
	text-transform: uppercase;
}

/* Socialmedia */

#FooterWrapper > div > div > .social {
	margin: 50px 0 0 0;
	position: absolute;
	right: 0;
	top: 0;
}
#FooterWrapper > div > div > .social:after {
	clear: left;
	content: "";
	display: block;
}
#FooterWrapper > div > div > .social > a {
	background: #FFFFFF;
	border-radius: 8px;
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	color: #4E6A93;
	float: left;
	font-weight: normal;
	height: 65px;
	line-height: 65px;
	margin: 0 0 0 12px;
	position: relative;
	text-align: center;
	width: 65px;
}
#FooterWrapper > div > div > .social > a:hover {
	background: #4E6A93;
	color: #FFFFFF;
}
#FooterWrapper > div > div > .social > a:after {
	font-family: "fontello";
	font-size: 35px;
}
#FooterWrapper > div > div > .social > a.fb:after {
	content: "\E83B";
}
#FooterWrapper > div > div > .social > a.ta:hover {
	background: #FFFFFF;
}
#FooterWrapper > div > div > .social > a.ta:after {
	background: url("/img/layout/ico-tripadvisor.png") no-repeat left top;
	background-size: 44px auto;
	content: "";
	display: block;
	height: 44px;
	left: 10px;
	position: absolute;
	width: 44px;
	top: 20px;
}
#FooterWrapper > div > div > .social > a:first-child {
	margin-left: 0;
}


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

	#FooterWrapper > div > div > .social {
		left: auto;
		margin-left: 0;
		right: 20px;
	}

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

	#FooterWrapper {
		height: auto;
	}
	#FooterWrapper > div {
		padding-bottom: 70px;
		padding-top: 27px;
	}
	#FooterWrapper > div > div > p {
		float: none;
		display: table;
		margin: 0 auto;
		text-align: center;
	}
	#FooterWrapper > div > div > p > span {
		display: block;
	}
	#FooterWrapper > div > div > .social {
		display: table;
		margin: 28px auto 0;
		position: relative;
		right: auto;
	}

}

/* Layout - Animation */

#GalleryWrapper {
	height: 550px; /* fallback no js */
	left: 0;
	margin: 100px 0 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}
#GalleryWrapper:after {
	background: rgba(255, 254, 254, 0.5);
	bottom: 1px;
	content: "";
	height: 5px;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: 1;
}
#GalleryWrapper > .animation {
	height: 100%;
	overflow: hidden;
	position: relative;
	z-index: 1;
}
#GalleryWrapper > .animation > .wrapper {
	height: 100%;
	position: absolute;
	width: 100%;
}
#GalleryWrapper > .animation > .wrapper > img.animate {
	height: auto !important;
	position: absolute;
	width: 100%;
}

/* Animationstexte */

#GalleryWrapper > .animation > .wrapper > .text {
	font-weight: bold;
    height: auto !important;
    position: absolute;
    text-transform: uppercase;
    width: auto !important;
    z-index: 4;
}
#GalleryWrapper > .animation > .wrapper > .text_1 {
	font-size: 40px !important;
	font-weight: bold;
}
#GalleryWrapper > .animation > .wrapper > .text_2 {
	font-size: 24px !important;
}

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

	#GalleryWrapper > .animation > .wrapper > .text	{
		display: none !important;
	}

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

	#GalleryWrapper {
		margin-top: 80px;
	}
	#GalleryWrapper:after {
		height: 2px;
	}

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

	#GalleryWrapper {
		display: none;
	}

}

/* Layout - Animation - Anfrage */

#GalleryWrapper > .bookingbox {
	bottom: -29px;
	left: 50%;
	margin: 0 0 0 -620px;
	padding: 0 20px;
	position: absolute;
	width: 1240px;
	z-index: 2;
}
#GalleryWrapper > .bookingbox > div {
	background: #4E6A93;
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 0 0 8px 8px;
	padding: 0 45px;
	height: 65px;
	z-index: 2;
}
#GalleryWrapper > .bookingbox > div:after {
	clear: both;
	content: "";
	display: block;
}

/* Moving Pictures */

#GalleryWrapper > .bookingbox > div > .virtualTour {
	color: #FFFFFF;
	float: left;
	line-height: 1.08;
	margin: 0 42px 0 0;
	padding: 8px 0 0 52px;
	position: relative;
	text-transform: uppercase;
}
#GalleryWrapper > .bookingbox > div > .virtualTour:before {
	content: "\E851";
    font-family: "fontello";
    font-size: 35px;
    left: 0;
    position: absolute;
    top: 13px;
}
#GalleryWrapper > .bookingbox > div > .virtualTour > span {
    font-size: 14px;
    opacity: 0.5;
}
#GalleryWrapper > .bookingbox > div > .virtualTour > strong {
	color: #FFFFFF;
	display: table;
	font-size: 24px;
	font-weight: bold;
}

/* Kontakt */

#GalleryWrapper > .bookingbox > div > p {
	color: #FFFFFF;
	float: left;
	line-height: 1.08;
	padding: 8px 0 0 52px;
	position: relative;
}
#GalleryWrapper > .bookingbox > div > p:before {
	content: "\E83E";
	font-family: "fontello";
	font-size: 35px;
	left: 0;
	position: absolute;
	top: 13px;
}
#GalleryWrapper > .bookingbox > div > p > span {
	font-size: 14px;
	opacity: 0.5;
	text-transform: uppercase;
}
#GalleryWrapper > .bookingbox > div > p > a {
	color: #FFFFFF;
	display: table;
	font-size: 24px;
	font-weight: bold;
}

/* Formular */

#GalleryWrapper > .bookingbox > div > form {
	float: right;
	padding: 14px 0 0;
}
#GalleryWrapper > .bookingbox > div > form:after {
	clear: both;
	content: "";
	display: block;
}
#GalleryWrapper > .bookingbox > div > form > div {
	color: #FFFFFF;
	float: left;
	font-size: 16px;
	position: relative;
	text-transform: uppercase;
}
#GalleryWrapper > .bookingbox > div > form > .date > label {
	font-weight: bold;
	height: 35px;
	line-height: 35px;
}
#GalleryWrapper > .bookingbox > div > form > .date > input {
	background: rgba(255, 255, 255, 0.25);
	border: 0;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 600;
	height: 35px;
	line-height: 35px;
	margin: 0 18px;
	padding: 0 35px 0 0;
	text-align: center;
	width: 140px;
}
#GalleryWrapper > .bookingbox > div > form > .date > .calicon {
	background: #FFFFFF;
	border-radius: 0 5px 5px 0;
	cursor: pointer;
	height: 35px;
    line-height: 32px;
    position: absolute;
    right: 18px;
    text-align: center;
    top: 0;
    width: 35px;
}
#GalleryWrapper > .bookingbox > div > form > .date > .calicon:after {
	color: #4E6A93;
	content: "\E83D";
	font-family: "fontello";
	font-size: 13px;
}
#GalleryWrapper > .bookingbox > div > form > .submit > input {
	background: #FFFFFF;
	border: 0;
	border-radius: 5px;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
	color: #4E6A93;
	cursor: pointer;
	font-weight: bold;
	height: 35px;
	line-height: 35px;
	padding: 0 16px;
	text-transform: uppercase;
}
#GalleryWrapper > .bookingbox > div > form > .submit > input:hover {
	opacity: 0.9;
}

/* Prozente-Button */

#GalleryWrapper > .bookingbox > .discount {
	background: rgb(255,48,25);
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmMzAxOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjZjA0MDQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  rgba(255,48,25,1) 0%, rgba(207,4,4,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,48,25,1)), color-stop(100%,rgba(207,4,4,1)));
	background: -webkit-linear-gradient(top,  rgba(255,48,25,1) 0%,rgba(207,4,4,1) 100%);
	background: -o-linear-gradient(top,  rgba(255,48,25,1) 0%,rgba(207,4,4,1) 100%);
	background: -ms-linear-gradient(top,  rgba(255,48,25,1) 0%,rgba(207,4,4,1) 100%);
	background: linear-gradient(to bottom,  rgba(255,48,25,1) 0%,rgba(207,4,4,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff3019', endColorstr='#cf0404',GradientType=0 );
    border: 1px solid rgb(255,48,25);
    border-radius: 5px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    display: block;
    height: 38px;
    line-height: 33px;
    padding: 0 20px;
    position: absolute;
    right: 110px;
    top: -32px;
	-moz-transform: rotate(-3deg);
	-webkit-transform: rotate(-3deg);
	-o-transform: rotate(-3deg);
	-ms-transform: rotate(-3deg);
	transform: rotate(-3deg);
}

/* Mobile Button */

#GalleryWrapper > a.mobile {
	display: none;
}

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

	#GalleryWrapper > .bookingbox {
		left: 0;
		margin-left: 0;
		width: 100%;
	}

}
@media all and (max-width: 1200px){

	#GalleryWrapper > .bookingbox > div > .virtualTour {
		padding: 0;
	}
	#GalleryWrapper > .bookingbox > div > .virtualTour:before {
		position: relative;
	}
	#GalleryWrapper > .bookingbox > div > .virtualTour > * {
		display: none !important;
	}

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

	#GalleryWrapper > .bookingbox > div {
		padding-left: 20px;
		padding-right: 20px;
	}
	#GalleryWrapper > .bookingbox > div > .virtualTour {
		margin-right: 20px;
	}
	#GalleryWrapper > .bookingbox > div > form > div {
		font-size: 16px;
	}
	#GalleryWrapper > .bookingbox > div > form > .date > input {
		width: 130px;
	}

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

	#GalleryWrapper > .bookingbox {
		display: none;
	}
	#GalleryWrapper > a.mobile {
		background: #FFFFFF;
		background: rgba(255, 255, 255, 0.5);
		border-radius: 60px;
		bottom: 20px;
		box-shadow: 0 0 3px rgba(0, 0, 0, 0.75);
		color: #98191F;
		display: block;
		font-size: 17px;
		font-weight: bold;
		height: 119px;
		letter-spacing: -0.5px;
		line-height: 1.4;
		overflow: hidden;
		padding: 33px 10px 0;
		position: absolute;
		right: 20px;
		text-align: center;
		text-transform: uppercase;
		width: 119px;
		z-index: 2;
	}
	#GalleryWrapper > a.mobile:after {
		background: #FFFFFF;
		border-radius: 55px;
		box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
		content: "";
		height: 105px;
		left: 7px;
		position: absolute;
		top: 7px;
		width: 105px;
		z-index: -1;
	}
	#GalleryWrapper > a.mobile > .pen {
		left: 50%;
		top: 50%;
		position: absolute;
		margin: -29px 0 0 -17px;
	}
	#GalleryWrapper > a.mobile > .pen:after {
		color: #2D343E;
		content: '\E83F';
		font-family: "fontello";
		font-size: 42px;
		opacity: 0;
		transform: scale(0.5);
		position: absolute;
		-moz-transition: transform 280ms ease-in-out 0s, opacity 250ms ease-in-out 0s;
		-o-transition: transform 280ms ease-in-out 0s, opacity 250ms ease-in-out 0s;
		-webkit-transition: transform 280ms ease-in-out 0s, opacity 250ms ease-in-out 0s;
		transition: transform 280ms ease-in-out 0s, opacity 250ms ease-in-out 0s;
	}
	#GalleryWrapper > a.mobile:hover > .pen:after {
		-moz-transform: scale(1);
		-o-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
	#GalleryWrapper > a.mobile > .text {
		display: block;
		opacity: 1;
		position: relative;
		-moz-transition: transform 280ms ease-in-out 0s, opacity 250ms ease-in-out 0s;
		-o-transition: transform 280ms ease-in-out 0s, opacity 250ms ease-in-out 0s;
		-webkit-transition: transform 280ms ease-in-out 0s, opacity 250ms ease-in-out 0s;
		transition: transform 280ms ease-in-out 0s, opacity 250ms ease-in-out 0s;
	}
	#GalleryWrapper > a.mobile:hover > .text {
		-moz-transform: scale(3);
		-o-transform: scale(3);
		-webkit-transform: scale(3);
		transform: scale(3);
		opacity: 0;
	}

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

	#GalleryWrapper > a.mobile {
		display: none;
	}

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

.mobileTrigger {
	display: none;
}
nav.desktop {
	position: absolute;
	left: 45px;
	top: 45px;
	z-index: 1;
}
nav.desktop > ul:after {
	clear: both;
	content: "";
	display: block;
}
nav.desktop > ul > li {
	float: left;
	padding: 0 0 10px;
	position: relative;
}
nav.desktop > ul > li.mobile {
	display: none;
}
nav.desktop > ul > li > a {
	border-radius: 5px 5px 0 0;
	color: #FFFFFF;
	display: block;
	font: 600 17px/1.8 'Open Sans', sans-serif;;
	height: 55px;
	line-height: 55px;
	padding: 0 20px;
	text-transform: uppercase;
}
nav.desktop > ul > li:hover > a,
nav.desktop > ul > li > a.selected {
	background: #FFFFFF;
	color: #4E6A93;
}
nav.desktop > ul > li:hover > ul {
	height: auto;
	padding: 20px 0;
	opacity: 1;
	overflow: visible;
	top: 61px;
}
nav.desktop > ul > li > ul {
	background: rgba(255, 255, 255, 0.9);
	height: 0;
	left: 0;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	top: 71px;
	-webkit-transition: opacity 500ms ease-in-out, top 200ms ease-out;
	-moz-transition: opacity 500ms ease-in-out, top 200ms ease-out;
	-ms-transition: opacity 500ms ease-in-out, top 200ms ease-out;
	-o-transition: opacity 500ms ease-in-out, top 200ms ease-out;
	transition: opacity 500ms ease-in-out, top 200ms ease-out;
}
nav.desktop > ul > li.last > ul {
	left: auto;
	right: 0;
}
nav.desktop > ul > li > ul > li > a {
	color: #2D343E;
	display: block;
	font: 300 17px/1 'Open Sans', sans-serif;;
	margin: 1px 0 0;
	padding: 6px 20px 7px;
	position: relative;
	white-space: nowrap;
}
nav.desktop > ul > li > ul > li > a:hover,
nav.desktop > ul > li > ul > li > a.selected {
	background: #4E6A93;
	color: #FFFFFF;
}
nav.desktop > ul > li > ul > li > a:after {
	background: #4E6A93;
    content: "";
    height: 1px;
    left: 20px;
    opacity: 0.25;
    position: absolute;
    right: 20px;
    top: -1px;
}
nav.desktop > ul > li > ul > li > a:hover:after,
nav.desktop > ul > li > ul > li > a.selected:after,
nav.desktop > ul > li > ul > li.active + li > a:after,
nav.desktop > ul > li > ul > li:hover + li > a:after {
	display: none;
}
nav.desktop > ul > li > ul > li > ul {
	display: none;
}

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

	nav.desktop {
		left: 20px;
	}

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

	nav.desktop > ul > li > a {
		padding-left: 12px;
		padding-right: 12px;
	}

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

	nav.desktop > ul > li > a {
		font-size: 15px;
	}

}

/* Menü - Hauptmenü Mobile */

.mobileTrigger.show:before {
	content: "\E819";
	display: block;
	float: left;
	font-family: "fontello";
	font-size: 30px;
	margin: 0 8px 0 0;
}
.mobileTrigger.show {
	color: #FFFFFF;
	cursor: pointer;
	display: block;
	font-size: 21px;
	font-weight: bold;
	height: 80px;
	line-height: 80px;
	padding: 0 20px 0 30px;
	position: absolute;
	right: 0;
	text-transform: uppercase;
}
nav.mobile {
	position: absolute;
	right: 0;
	top: 80px;
	width: 100%;
	z-index: 99999;
}
nav.mobile > ul {
	background: #FFFFFF;
	height: 0;
	opacity: 0;
	padding: 30px 0 15px;
	overflow: hidden;
	width: 100%;
}
nav.mobile > ul.open {
	height: auto;
	opacity: 1;
	overflow: visible;
	padding: 50px 0 25px;
	-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: #F9F9F2;
	border: 1px solid #EAE9E3;
	display: block;
	margin: 13px 0;
	padding: 15px 0;
}
nav.mobile > ul > li > ul > li > ul {
	display: none;
}

/* 1. Ebene */

nav.mobile > ul > li.mobile {
	display: none;
}
nav.mobile > ul > li > a {
	display: block;
	font-size: 22px;
	padding: 6px 20px;
}
nav.mobile > ul > li > a:hover,
nav.mobile > ul > li > a.selected {
	
}

/* 2. Ebene */

nav.mobile > ul > li > ul > li > a {
	display: block;
	padding: 6px 20px;
}
nav.mobile > ul > li > ul > li > a:hover,
nav.mobile > ul > li > ul > li > a.selected {
	
}

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

	.mobileTrigger.show {
		padding: 0;
		text-align: center;
		text-indent: -99999px;
		width: 74px;
	}
	.mobileTrigger.show::before {
		float: none;
		font-size: 50px;
		margin-right: 0;
		text-indent: 0;
	}

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

	.mobileTrigger.show {
		height: 65px;
		line-height: 65px;
	}
	nav.mobile {
		top: 65px;
	}
	nav.mobile > ul.open {
		padding-top: 36px;
	}
	nav.mobile > ul > li.mobile {
		display: block;
	}

}

/* Menü - Metamenü */

ul.metamenu {
    bottom: 0;
    position: absolute;
}
ul.metamenu:after {
	clear: both;
	content: "";
	display: block;
}
ul.metamenu > li {
	float: left;
}
ul.metamenu > li > a {
	color: #2D343E;
	display: block;
	font: 600 14px/1 'Open Sans', sans-serif;
    height: 32px;
    line-height: 32px;
    margin: 0 0 0 30px;
    text-transform: uppercase;
}
ul.metamenu > li:first-child > a {
	margin-left: 0;
}
ul.metamenu > li > a:hover,
ul.metamenu > li > a.selected {
	color: #4E6A93;
}

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

	ul.metamenu {
		left: 0;
		text-align: center;
		width: 100%;
	}
	ul.metamenu > li {
		display: inline-block;
		float: none
	}
	ul.metamenu > li > a {
		margin: 0;
		padding: 0 8px;
	}

}

/* Elemente - Überschriften */

h1 {
	border-bottom: 1px solid #4E6A93;
	color: #4E6A93;
	display: table;
	font: 600 24px/1.2 'Open Sans', sans-serif;;
	padding: 0 0 5px;
	text-transform: uppercase;
}
h2 {
	font: 24px/1.8 'Open Sans', sans-serif;;
	letter-spacing: -0.8px;
}
h3 {
	font: 24px/1.8 'Open Sans', sans-serif;;
	letter-spacing: -0.8px;
}

/* Folgeüberschriften */

h1.cms + h2.cms {
	margin-top: -36px;
	font: 24px/1.8 'Open Sans', sans-serif;;
	letter-spacing: 0;
}

/* Elemente - Textinhalt */

h3.cms + p.cmsMargin {
	margin-top: -30px;
}

.cmsText a,
.cmsText strong {
	font-weight: 600;
}

/* Elemente - Aufzählung */

.cmsList > h2 {
	margin: 0 0 8px 0;
}
.cmsList > ul > li:before {
	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: 700px){

	.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%;
}
.cmsImage > .right {
	float: right;
	margin: 0 0 10px 20px;
	max-width: 50%;
}
.cmsImage img {
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	display: block;
	width: 100%;
}
.cmsImage figcaption {
	font-size: smaller;
	font-style: italic;
	line-height: 1.5;
	margin: 8px 0 0 0;
}

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

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

.cmsGallery:after {
	clear: both;
	content: "";
	display: block;
}
.cmsGallery + * {
	margin-top: -10px;
}
.cmsGallery > li {
	box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	float: left;
	margin: 0 3.636363636363636% 3.636363636363636% 0; /* 0 40 40 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 > figure {
	overflow: hidden;
	position: relative;
}
.cmsGallery > li > figure > a {
	display: block;
}
.cmsGallery > li > figure > a > img {
	display: block;
	width: 100%;
}
.cmsGallery > li > figure > figcaption:before {
	content: "\E83C";
	display: block;
	font-family: "fontello";
    font-size: 33px;
    left: 0;
    position: absolute;
    text-align: center;
    width: 65px;
}
.cmsGallery > li > figure > figcaption {
	background: #4E6A93;
	border-radius: 8px 0 0 0;
	bottom: 0;
	color: #FFFFFF;
	cursor: pointer;
    height: 65px;
    line-height: 65px;
    overflow: hidden;
    padding: 0 0 0 65px;
    position: absolute;
    right: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 65px;
    z-index: 10;
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}
.cmsGallery > li > figure > figcaption:not(.noText):hover {
	border-radius: 0;
	opacity: 0.9;
	padding-right: 10px;
	width: 100%;
}
.cmsGallery > li > figure > figcaption.noText:hover {
	opacity: 0.8;
}
.fancybox-wrap .fancydownload:before {
	content: '\e801';
	font-family: 'fontello';
	font-size: 18px;
	font-weight: normal;
	margin: 0 10px 0 0;
}
.fancybox-wrap .fancydownload {
	background: #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: 850px){

	.cmsGallery > li {
		margin: 0 4% 4% 0;
		width: 48%;
	}
	.cmsGallery > li:nth-child(3n) {
		margin-right: 4%;
	}
	.cmsGallery > li:nth-child(3n) + li {
		clear: none;
	}
	.cmsGallery > li:nth-child(2n) {
		margin-right: 0;
	}
	.cmsGallery > li:nth-child(2n) + li {
		clear: left;
	}

}

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

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

.cmsTeaser + * {
	margin-top: -20px;
}
.cmsTeaser:after {
	clear: both;
	content: "";
	display: block;
}
.cmsTeaser > h2 {
	display: none;
}
.cmsTeaser > article {
	border-radius: 0 0 8px 8px;
	box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
	float: left;
	margin: 0 4.054054054054055% 4.054054054054055% 0; /* 0 40 40 0 */
	overflow: hidden;
	position: relative;
	width: 30.63063063063063%; /* 340 */
}
.cmsTeaser > article:nth-of-type(3n) {
	margin-right: 0;
}
.cmsTeaser > article:nth-of-type(3n) + article {
	clear: left;
}
.cmsTeaser > article > h2 {
	display: none;
}
.cmsTeaser > article > figure > a > img {
	display: block;
	width: 100%;
}
.cmsTeaser > article > figure > figcaption {
	background: #FFFFFF;
	border-radius: 0 0 8px 8px;
	padding: 24px;
	position: relative;
}
.cmsTeaser > article > figure > figcaption > a {
	color: #4E6A93;
    display: table;
    font: 600 21px/1.2 'Open Sans', sans-serif;;
    text-transform: uppercase;
}
.cmsTeaser > article > figure > figcaption > a:hover {
	color: #2C2C3D;
}
.cmsTeaser > article > figure > figcaption > p > span {
    display: block;
    font: 300 16px/1.5 'Open Sans', sans-serif;;
}
.cmsTeaser > article > figure > figcaption > p > .addition {
	background: #4E6A93;
    border-radius: 8px 0 0;
	color: #FFFFFF;
    font: 600 12px/1.5 'Open Sans', sans-serif;;
    height: 65px;
	padding: 10px 0 0;
    position: absolute;
    right: 0;
    text-align: center;
    text-transform: uppercase;
    top: -65px;
    width: 65px;
}
.cmsTeaser > article > figure > figcaption > p > .addition > .price {
	display: block;
    font-size: 20px;
}
.cmsTeaser > article > figure > figcaption > p > .addition > .text {
	opacity: 0.5;
}
.cmsTeaser > article > figure > figcaption > p > .text {
    padding: 6px 0 0;
}
.cmsTeaser > article > figure > figcaption > p > .text > a {
	display: none;
}
.cmsTeaser > article > figure > figcaption > p > .date {
    font-size: 18px;
    font-weight: 600;
    margin: 5px 0 -8px;
}

/* Einzelteaser */

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

	.cmsTeaser.singleTeaser + * {
		margin-top: auto;
	}
	.cmsTeaser.singleTeaser > article {
		background: #FFFFFF;
		float: none;
		margin: 0;
		width: 100%;	
	}
	.cmsTeaser.singleTeaser > article > figure > a {
		float: left;
		max-width: 31%;
		overflow: hidden;
		width: 340px;
	}
	.cmsTeaser.singleTeaser > article > figure > figcaption {
		border-top: 0;
		margin-left: 31%;
		min-height: 200px;
		padding: 20px;
	}
	.cmsTeaser.singleTeaser > article > figure > a > img {
		display: block;
		left: 50%;
		margin: 0 0 0 -170px;
		position: relative;
		width: 340px;
	}
	.cmsTeaser.singleTeaser > article > figure > figcaption > p {
		padding: 5px 0 0;
	}
	.cmsTeaser.singleTeaser > article > figure > figcaption > p > .date {
		float: left;
		margin: 0;
	}
	.cmsTeaser.singleTeaser > article > figure > figcaption > p > .date + .addition:before {
		content: ", ";
		padding: 0 5px 0 0;
	}
	.cmsTeaser.singleTeaser > article > figure > figcaption > p > .addition {
		background: none;
		color: #000000;
		height: auto;
		font-size: 18px;
		padding: 0;
		position: relative;
		right: auto;
		text-align: left;
		top: auto;
		width: auto;
	}
	.cmsTeaser.singleTeaser > article > figure > figcaption > p > .addition > .price {
		display: inline;
		font-size: 18px;
	}
	.cmsTeaser.singleTeaser > article > figure > figcaption > p > .addition > .text {
		opacity: 1;
		padding: 0 8px 0 0;
	}
	.cmsTeaser.singleTeaser > article > figure > figcaption > p > .text {
		padding-top: 4px;
	}

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

	.cmsTeaser.singleTeaser > article > figure > figcaption > p > .date {
		float: none;
	}
	.cmsTeaser.singleTeaser > article > figure > figcaption > p > .date + .addition:before {
		display: none;
	}
	.cmsTeaser.singleTeaser > article > figure > figcaption > p > .date + .addition {
		margin: -5px 0 0;
	}

}
@media all and (min-width: 800px) and (max-width: 850px), (min-width: 5000px) and (max-width: 550px){

	.cmsTeaser > article > figure > figcaption {
		padding-left: 12px;
		padding-right: 12px;
	}

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

	.cmsTeaser > article {
		margin: 0 4% 5% 0;
		width: 48%;
	}
	.cmsTeaser > article:nth-of-type(3n) {
		margin-right: 4%;
	}
	.cmsTeaser > article:nth-of-type(3n) + li {
		clear: none;
	}
	.cmsTeaser > article:nth-of-type(2n) {
		margin-right: 0;
	}
	.cmsTeaser > article:nth-of-type(2n) + li {
		clear: left;
	}

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

	.cmsTeaser.singleTeaser > article > figure > a {
		max-width: 40%;
	}
	.cmsTeaser.singleTeaser > article > figure > figcaption {
		margin-left: 40%;
	}

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

}

/* Elemente - Tabelle */

.cmsTable > h2 {
	margin: 0 0 5px 0;
}
.cmsTable > table {
	width: 100%;
}
.cmsTable > table > tbody > tr.val2 {
	background: #F2F1EA;
	border-bottom: 1px solid #E0D9C7;
}
.cmsTable > table > tbody > tr > td {
	line-height: 40px;
	padding: 0 10px;
}
.cmsTable > p {
	font-size: smaller;
	padding: 5px 10px 0 10px;
}

/* Elemente - Verlinkungen */

/* Links (intern & extern) */

.cmsLink > a:before {
	content: '\E808';
	font-family: 'fontello';
	font-weight: normal;
	left: 0;
	position: absolute;
}
.cmsLink > a {
	display: inline-block;
	font-weight: bold;
	padding: 0 0 0 20px;
	position: relative;
}

/* Verweisliste */

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

/* E-Mail */

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

.cmsDrop {
	padding: 13px 0 14px;
	position: relative;
}
.cmsDrop:after {
	background: #F2F1EA;
	border-bottom: 1px solid #E0D8C5;
	content: "";
	height: 100%;
	left: -5000px;
	position: absolute;
	top: 0;
	width: 10000px;
	z-index: -1;
}
.cmsDrop > h3:before {
	content: '\E807';
	font-family: 'fontello';
	font-size: 30px;
	font-weight: normal;
	left: 0;
	position: absolute;
	top: -4px;
}
.cmsDrop > h3 {
	cursor: pointer;
	display: inline-block;
	font: 24px/1.8 'Open Sans', sans-serif;;
	padding: 0 0 0 40px;
	position: relative;
}
.cmsDrop > h3.contentHide:before {
	content: '\E805';
}
.cmsDrop > h3.contentHide + div {
	display: none;
}
.cmsDrop > h3 + div {
	overflow: hidden;
}

/* Elemente - HTML */

/* Elemente - Youtube */

.cmsYoutube > h2 {
	margin: 0 0 5px 0;
}
.cmsYoutube > div {
	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 {
	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: 4px;
	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 {
	position: relative;
	padding: 40px 0;
}
.cmsForm:after {
	background: #F2F1EA;
	border: 1px solid #E0D9C7;
	content: "";
	height: 100%;
	left: -5000px;
	position: absolute;
	top: 0;
	width: 10000px;
	z-index: -1;
}
.cmsForm > h2 {
	margin: 0 0 20px 0;
}
.cmsForm > .row {
	margin: 20px 0;
	padding: 0 25px 0 0;
	position: relative;
}
.cmsForm > .row:after {
	clear: both;
	content: "";
	display: block;
}
.cmsForm > .row.validation:before {
	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 #E0D9C7;
	height: 44px;
	outline: medium none;
	padding: 0 10px;
	width: 70%;
}
.cmsForm > .row > .field:focus {
	border: 1px solid #4E6A92;
	box-shadow: 0 0 2px #4E6A92;
}
.cmsForm > .row > textarea.field {
	height: 100px;
	line-height: 1.3;
	padding-top: 10px;
	padding-bottom: 10px;
}
.cmsForm > .row > select.field {
	padding: 7px 25px 7px 6px;
}
.cmsForm > .row > input[type='file'].field {
	border: 1px solid #E0D9C7 !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;
	padding: 20px 0;
}
.cmsForm > .row > .datepicker {
	cursor: pointer;
	text-align: cneter;
	width: 115px !important;
}
.cmsForm > .row > .calicon {
	cursor: pointer;
	display: inline-block;
	font-size: 18px;
	height: 42px;
	line-height: 42px;
	padding: 0 7px 0 9px;
	position: absolute;
	top: 1px;
}
.cmsForm > .row > .calicon:before {
	content: "\E800";
	font-family: "fontello";
}
.cmsForm > .row > .spm {
	background: #FFFFFF;
	border: 1px solid #E0D9C7;
	float: left;
	padding: 15px;
	position: relative;
	width: 70%;
}
.cmsForm > .row > .spm:after {
	content: '\e826';
	font-family: 'fontello';
	font-size: 20px;
	left: 146px;
	position: absolute;
	top: 13px;
}
.cmsForm > .row > .spm > img {
	border: 1px solid #E0D9C7;
	float: left;
}
.cmsForm > .row > .spm > img + input {
	border: 1px solid #E0D9C7;
	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: 40px 25px 20px 0;
	position: relative;
	text-align: right;
}
.cmsForm > .button > input { /* Sende-Button */
	background: #4E6A92;
	border: 0;
	border-radius: 5px;
	color: #FFFFFF;
	cursor: pointer;
	line-height: 34px;
	padding: 2px 25px 4px;
	font-weight: 600;
	text-transform: uppercase;
}
.cmsForm > .button > input:hover {
	opacity: 0.9;
}
.cmsForm > .msg {
	line-height: 1.3;
	margin: 0 25px 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: 600px){
	
	.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 > .datepicker {
		width: calc(100% - 26px) !important;
	}
	.cmsForm > .row > .spm {
		width: 100%;
	}
	.cmsForm > .button {
		margin-right: 0;
	}
	.cmsForm > .msg {
		margin-right: 0;
	}

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

	.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;
	}

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

	.cmsForm > .button > input {
		text-align: center;
		width: 100%;
	}

}

/* Element - Seperator */

.cmsSeperator {
	background: url("/img/layout/sun.png") no-repeat center center;
	display: block;
	height: 100px;
	position: relative;
	width: 100%;
}
.cmsSeperator:before {
	background: #2D343E;
	content: "";
	height: 5px;
	left: 0;
	margin: -2px 0 0;
	opacity: 0.15;
	position: absolute;
	top: 50%;
	width: 100%;
	z-index: -1;
}
.cmsSeperator:after {
	background: #FFFFFF;
	content: "";
	height: 100%;
	left: 50%;
	margin: 0 0 0 -85px;
	position: absolute;
	top: 0;
	width: 170px;
	z-index: -1;
}

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

	.cmsSeperator:after {
		margin-left: -70px;
		width: 140px;
	}

}

/*! 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 #9f9f9f;
	font-size: 16px;
}
.ui-datepicker-header {
	background: #E0D8C7 !important;
	border: 1px solid #9f9f9f;
	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: #EAE9E3 !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 {
	color: #2D343E;
	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 {
	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: #f9f9f9;
	color: #444;
	text-shadow: none;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
	        border-radius: 4px;
}

.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, .fancybox-close, .fancybox-prev span, .fancybox-next span {
	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 {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url('/img/fancybox/blank.gif'); /* helps IE */
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: 8040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 8040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 10px;
	background-position: 0 -72px;
}

.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 {
	overflow: hidden;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 8010;
	background: url('/img/fancybox/fancybox_overlay.png');
}

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

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px;
	position: relative;
	text-shadow: none;
	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-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

#fancybox-buttons {
	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(68,68,68);
	background: -moz-linear-gradient(left,  rgba(68,68,68,1) 0%, rgba(52,52,52,1) 50%, rgba(41,41,41,1) 50%, rgba(51,51,51,1) 100%);
	background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(68,68,68,1)), color-stop(50%,rgba(52,52,52,1)), color-stop(50%,rgba(41,41,41,1)), color-stop(100%,rgba(51,51,51,1)));
	background: -webkit-linear-gradient(left,  rgba(68,68,68,1) 0%,rgba(52,52,52,1) 50%,rgba(41,41,41,1) 50%,rgba(51,51,51,1) 100%);
	background: -o-linear-gradient(left,  rgba(68,68,68,1) 0%,rgba(52,52,52,1) 50%,rgba(41,41,41,1) 50%,rgba(51,51,51,1) 100%);
	background: -ms-linear-gradient(left,  rgba(68,68,68,1) 0%,rgba(52,52,52,1) 50%,rgba(41,41,41,1) 50%,rgba(51,51,51,1) 100%);
	background: linear-gradient(to right,  rgba(68,68,68,1) 0%,rgba(52,52,52,1) 50%,rgba(41,41,41,1) 50%,rgba(51,51,51,1) 100%);
}

#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;
}

/* Privacy 1.0.0 */

/* Default */

.privacyCookie {
	background: #4E6A93;
	font-size: 15px;
	padding: 10px 0;
	width: 100%;
}
.privacyCookie > div > p {
	color: #FFFFFF;
	float: left;
	margin: 0 10px 0 0;
}
.privacyCookie > div > p > a {
	color: #FFFFFF;
	font-weight: bold;
}
.privacyCookie > div > a.button {
	color: #FFFFFF;
	float: right;
	font-weight: bold;
	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;
	}

}