/* 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 {
	background: #f4f4f5;
	color: #000000;
	font: normal 12px/1.8 Verdana, sans-serif;
	-webkit-text-size-adjust: none;
}
body > #PageWrapper {
	min-height: 100%;
	padding: 0 0 180px 0;
	position: relative;
}
a {
	color: #2d3762;
	font-weight: bold;
	text-decoration: none;
}
a:hover {
	color: #2d3762;
}
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: 20px 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: 1280px;
}
.wmClear:after {
	clear: both;
	content: "";
	display: block;
}

/* Webfonts */

@font-face {
	font-family: 'fontello';
	src: url('/img/webfonts/fontello.eot?39195963');
	src: url('/img/webfonts/fontello.eot?39195963#iefix') format('embedded-opentype'),
		url('/img/webfonts/fontello.woff?39195963') format('woff'),
		url('/img/webfonts/fontello.ttf?39195963') format('truetype'),
		url('/img/webfonts/fontello.svg?39195963#fontello') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {	
		font-family: 'avenir-light';
		src: url("/fonts/avenir-light.eot");
		src: local('avenir-light'),
		url("/fonts/avenir-light.otf") format("opentype"),
		url("/fonts/avenir-light.woff") format("woff"),
		url("/fonts/avenir-light.ttf") format("truetype");
}

@font-face {
	font-family: 'edwardian';
	src: url('/fonts/edwardian.eot?14547746');
	src: url('/fonts/edwardian.eot?14547746#iefix') format('embedded-opentype'),
		url('/fonts/edwardian.woff?14547746') format('woff'),
		url('/fonts/edwardian.ttf?14547746') format('truetype'),
		url('/fonts/edwardian.svg?14547746#edwardian') format('svg');
	font-weight: normal;
	font-style: normal;
}

/* Layout - Header */

#HeaderWrapper {
	background: #1e1f35;
	background: -moz-linear-gradient(top,  rgba(28,30,51,0.8) 0%, rgba(55,55,81,0.8) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(28,30,51,0.8)), color-stop(100%,rgba(55,55,81,0.8))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(28,30,51,0.8) 0%,rgba(55,55,81,0.8) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(28,30,51,0.8) 0%,rgba(55,55,81,0.8) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(28,30,51,0.8) 0%,rgba(55,55,81,0.8) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(28,30,51,0.8) 0%,rgba(55,55,81,0.8) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cc1c1e33', endColorstr='#cc373751',GradientType=0 ); /* IE6-9 */
	height: 106px;
	left: 50%;
	margin: 0 0 0 -490px;
	max-width: 980px;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 5;
}
#HeaderWrapper.mobile {
	position: absolute;
}
#HeaderWrapper.fixed {
	background: rgb(28,30,51); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(28,30,51,1) 0%, rgba(55,55,81,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(28,30,51,1)), color-stop(100%,rgba(55,55,81,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(28,30,51,1) 0%,rgba(55,55,81,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(28,30,51,1) 0%,rgba(55,55,81,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(28,30,51,1) 0%,rgba(55,55,81,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(28,30,51,1) 0%,rgba(55,55,81,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1c1e33', endColorstr='#373751',GradientType=0 ); /* IE6-9 */
}
#HeaderWrapper > div {
	height: 100%;
	margin: 0 auto;
	padding: 0 30px;
	position: relative;
}

/* Logo */

#HeaderWrapper > div > a.logo {
	left: 30px;
	position: absolute;
	top: 15px;
	z-index: 2;
}
#HeaderWrapper > div > a.logo > img {
	display: block;
}

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

	#HeaderWrapper {
		left: 0;
		margin-left: 0;
	}

}

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

	#HeaderWrapper > div > a.logo {
		top: 27px;
	}

}

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

	#HeaderWrapper {
		background: #303049;
	}

}

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

	#HeaderWrapper > div > a.logo {
		top: 32px;
	}
	#HeaderWrapper > div > a.logo > img {
		width: 150px;
	}

}

/* Layout - Header - Socialmedia */

#HeaderWrapper > div > ul.socialmedia {
	position: absolute;
	right: 30px;
	top: 28px;
}
#HeaderWrapper > div > ul.socialmedia:after {
	clear: both;
	content: "";
	display: block;
}
#HeaderWrapper > div > ul.socialmedia > li {
	float: left;
	margin: 0 0 0 8px;
}
#HeaderWrapper > div > ul.socialmedia > li > a {
	display: block;
}
#HeaderWrapper > div > ul.socialmedia > li > a.gplus {
	background: url("/img/layout/ico_gplus.png") no-repeat left top;
	height: 24px;
	width: 23px;
}
#HeaderWrapper > div > ul.socialmedia > li > a.fb {
	background: url("/img/layout/ico_fb.png") no-repeat left top;
	height: 21px;
	width: 21px;
}
#HeaderWrapper > div > ul.socialmedia > li > a.tw {
	background: url("/img/layout/ico_tw.png") no-repeat left top;
	height: 22px;
	width: 22px;
}

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

	#HeaderWrapper > div > ul.socialmedia {
		left: 30px;
		right: auto;
		top: 75px;
	}
	#HeaderWrapper > div > ul.socialmedia > li {
		margin: 0 8px 0 0;
	}

}

/* Layout - Content */

#ContentWrapper {
	overflow: hidden;
	font-size: 12px;
	position: relative;
	width: 100%;
	z-index: 3;
}
#ContentWrapper > div:before {
	clear: both;
	content: "";
	display: block;
	padding: 1px 0 0;
}
#ContentWrapper > div {
	background: #FFFFFF;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 10px;
	margin: 380px auto 20px auto;
	max-width: 980px;
	padding: 0 30px 6px 30px;
	position: relative;
}
#ContentWrapper > div > aside {
	padding: 20px 0 0 0;
	position: absolute;
	right: 30px;
	top: 0;
	width: 240px;
}
#ContentWrapper > div > aside > *:first-child {
	margin-top: 0;
}
#ContentWrapper > div > section {
	padding: 0 315px 0 0;
	width: 100%;
}
.intro #ContentWrapper > div > section {
	padding-right: 0;
}
.intro #ContentWrapper > div > aside {
	display: none;
}

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

	#ContentWrapper > div > aside {
		display: none;
	}
	#ContentWrapper > div > section {
		padding-right: 0;
	}

}

/* Layout - Content - Breadcrumb */

.breadcrumb {
	margin: 10px 0 0 0;
}
.breadcrumb > ul > li {
	display: inline-block;
	margin: 0 10px 0 0;
	position: relative;
}
.breadcrumb > ul > li:before {
	content: "|";
	display: none;
	font-size: 12px;
	position: absolute;
	right: -13px;
	top: 0;
}
.breadcrumb > ul > li.item:before {
	display: block;
}
.breadcrumb > ul > li.item:last-child:before {
	display: none;
}
.breadcrumb > ul > li.item {
	margin-right: 20px;
}
.breadcrumb > ul > li.item:last-child {
	margin-right: 0;
}
.breadcrumb > ul > li > a {
	color: #000000;
	font-weight: normal;
}

/* Layout - Content - Top 5 Adventmärkte */

#ContentWrapper > div > aside > .top5 {
	background: url("/img/market/top-adventguides.png") no-repeat center 3px #eeedf2;
	margin: 0 0 41px 0;
	padding: 80px 0 20px 0;
	position: relative;
}
#ContentWrapper > div > aside > .top5:after {
	background: #6a6a6a;
	bottom: -21px;
	content: "";
	display: block;
	height: 1px;
	position: absolute;
	width: 100%;
}
#ContentWrapper > div > aside > .top5 > h2 {
	color: #2d3762;
	font-family: "edwardian";
	font-size: 34px;
	line-height: 1;
	text-align: center;
}
#ContentWrapper > div > aside > .top5 > p,
#ContentWrapper > div > aside > .top5 > ul {
	padding: 0 20px;
}
#ContentWrapper > div > aside > .top5 > p {
	padding-top: 9px;
	padding-bottom: 3px;
}
#ContentWrapper > div > aside > .top5 > ul {
	line-height: 1.3;
}
#ContentWrapper > div > aside > .top5 > ul > li {
	margin: 10px 0;
}
#ContentWrapper > div > aside > .top5 > ul > li:first-child {
	font-weight: bold;
}
#ContentWrapper > div > aside > .top5 > ul > li > a {
	color: #000000;
	font-weight: normal;
}
#ContentWrapper > div > aside > .top5 > ul > li:first-child > a {
	font-weight: bold;
}
#ContentWrapper > div > aside > .top5 > ul > li > span {
	display: block;
}

/* Layout - Footer */

#FooterWrapper {
	bottom: 0;
	color: #FFFFFF;
	height: 195px;
	position: absolute;
	width: 100%;
	z-index: 2;
}
#FooterWrapper > div {
	background: #5b5c69;
	border-radius: 10px 10px 0 0;
	height: 100%;
	margin: 0 auto;
	max-width: 980px;
	padding: 0 100px;
	position: relative;
}
#FooterWrapper > div:after {
	clear: both;
	content: "";
	display: block;
}
#FooterWrapper > div > div {
	float: left;
	padding: 35px 8px 0 0;
	position: relative;
}
#FooterWrapper > div > div.column1 {
	width: 21.153846153846153%; /* 165 */
}
#FooterWrapper > div > div.column2 {
	width: 32.692307692307693%; /* 255 */
}
#FooterWrapper > div > div.column3 {
	width: 25%; /* 195 */
}
#FooterWrapper > div > div.column4 {
	width: 21.153846153846153%; /* 165 */
}
#FooterWrapper > div > div > h3 {
	font-size: 12px;
	font-weight: bold;
	margin: 0 0 15px;
	position: relative;
	text-transform: uppercase;
	z-index: 1;
}
#FooterWrapper > div > div.column4 > h3:before {
	background: none repeat scroll 0 0 #1a1b2d;
	border-radius: 20px;
	content: "";
	display: block;
	height: 40px;
	left: -33px;
	position: absolute;
	top: -17px;
	width: 40px;
	z-index: -1;
}
#FooterWrapper > div > div > p {
	line-height: 1.3;
}
#FooterWrapper > div > div > p > a {
	color: #FFFFFF;
	font-weight: normal;
}
#FooterWrapper > div > div > ul {
	line-height: 1.3;
}
#FooterWrapper > div > div > ul > li > a {
	color: #FFFFFF;
	font-weight: normal;
}

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

	#FooterWrapper > div {
		padding: 0 30px;
	}

}

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

	#FooterWrapper {
		height: auto;
	}
	#FooterWrapper > div {
		padding-bottom: 34px;
	}
	#FooterWrapper > div > div.column1 {
		width: 50%;
	}
	#FooterWrapper > div > div.column2 {
		width: 50%;
	}
	#FooterWrapper > div > div.column3 {
		clear: left;
		width: 50%;
	}
	#FooterWrapper > div > div.column4 {
		width: 50%;
	}

}

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

	#FooterWrapper > div > div {
		float: none !important;
		width: 100% !important;
	}
	#FooterWrapper > div > div > ul > li > a {
		display: block;
		padding: 5px 0;
	}

}

/* Layout - Animation */

#GalleryWrapper {
	height: 550px; /* fallback no js */
	left: 50%;
	margin: 0 0 0 -720px;
	position: absolute;
	top: 0;
	width: 1440px;
	z-index: 1;
}
#GalleryWrapper:after {
	background: #F4F4F5;
	background: -moz-linear-gradient(top,  rgba(244,244,245,0) 0%, rgba(244,244,245,1) 77%, rgba(244,244,245,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(244,244,245,0)), color-stop(77%,rgba(244,244,245,1)), color-stop(100%,rgba(244,244,245,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(244,244,245,0) 0%,rgba(244,244,245,1) 77%,rgba(244,244,245,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(244,244,245,0) 0%,rgba(244,244,245,1) 77%,rgba(244,244,245,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(244,244,245,0) 0%,rgba(244,244,245,1) 77%,rgba(244,244,245,1) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(244,244,245,0) 0%,rgba(244,244,245,1) 77%,rgba(244,244,245,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00f4f4f5', endColorstr='#f4f4f5',GradientType=0 ); /* IE6-9 */
	bottom: 0;
	content: "";
	display: block;
	height: 100px;
	position: absolute;
	width: 100%;
	z-index: 2;
}
#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 {
	position: absolute;
	width: 100%;
}
#GalleryWrapper > .animation > .wrapper > .textbox {
	background: #303049;
	background: rgba(48, 48, 73, 0.8);
	bottom: 110px;
	color: #FFFFFF;
	display: none;
	font-weight: bold;
	left: 50%;
	line-height: 1.3;
	margin: 0 0 0 -490px;
	padding: 10px 18px;
	position: absolute;
	width: 555px;
	z-index: 2;
}
.intro #GalleryWrapper > .animation > .wrapper > .textbox {
	display: block;
}
#GalleryWrapper > .animation > .wrapper > .textbox > .text_1 {
	margin: 0 0 6px 0;
}
#GalleryWrapper > .animation > .wrapper > .textbox > .text_2 {
	margin: 0 0 6px 0;
}

@media all and (max-width: 1440px){
	
	#GalleryWrapper {
		left: 0;
		margin-left: 0;
		width: 100%;
	}

}

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

	#GalleryWrapper > .animation > .wrapper > .textbox {
		width: 350px;
	}

}

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

	#GalleryWrapper > .animation > .wrapper > .textbox {
		left: 0;
		margin-left: 0;
	}

}

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

	#GalleryWrapper:after {
		display: none;
	}

}

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

	#GalleryWrapper {
		top: 106px;
	}
	#GalleryWrapper > .animation > .wrapper > .textbox {
		display: none;
	}

}

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

	#GalleryWrapper {
		background: #59596d;
		height: 254px !important;
	}

}

/* Layout - Anfragebox */

.requestbox {
	font-family: "avenir-light";
	margin: 0 -400px 0 0;
	position: absolute;
	right: 50%;
	top: 130px;
	width: 330px;
	z-index: 4;
}
.requestbox > form {
	background: #FFFFFF;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 10px 10px 0 0;
	padding: 25px 50px 8px;
	position: relative;
}
.requestbox > form:after {
	clear: both;
	content: "";
	display: block;
}
.requestbox > form > h3 {
	color: #99221f;
	font-size: 30px;
	font-weight: normal;
	text-transform: uppercase;
}
.requestbox > form > h3 > span {
	display: block;
	font-size: 20px;
	text-align: right;
}
.requestbox > form > .textlocation {
	font-size: 12px;
	padding: 10px 0 9px;
}
.requestbox > form > input {
	border: 1px solid #99221f;
	display: block;
	font-family: "Verdana";
	font-size: 12px;
	height: 26px;
	margin: 8px 0;
	padding: 0 0 0 8px;
	width: 100%;
}
.requestbox > form > label {
	display: block;
	float: left;
	font-size: 12px;
	font-weight: bold;
	margin: 10px 0 0;
	padding: 1px 0 0 0;
}
.requestbox > form > select {
	border: 1px solid #99221f;
	display: block;
	float: left;
	font-size: 12px;
	height: 26px;
	margin: 10px 0 0 10px;
	padding: 0 0 0 8px;
	width: 85px;
}
.requestbox > form > a {
	background: #99221f none repeat scroll 0 0;
	border: 0 none;
	color: #ffffff;
	display: block;
	float: left;
	font-size: 12px;
	font-weight: normal;
	height: 26px;
	margin: 0 8px 0 0;
	padding: 2px 12px 0;
	position: relative;
}
.requestbox > form > button {
	background: #99221f none repeat scroll 0 0;
	border: 0 none;
	color: #ffffff;
	cursor: pointer;
	float: right;
	font-size: 12px;
	height: 26px;
	margin: 0;
	padding: 2px 24px 1px 10px;
	position: relative;
}
.requestbox > form > button > i:before {
	color: #fff;
	content: "\E803";
	font-family: "fontello";
	font-size: 25px;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	position: absolute;
	right: 8px;
	top: 0;
}
.requestbox > p {
	background: #303049;
	background: rgba(48, 48, 73, 0.8);
	padding: 15px 50px;
}
.requestbox > p > a {
	color: #ffffff;
	display: table;
	font-weight: normal;
	position: relative;
	text-transform: uppercase;
}
.requestbox > p > a:after {
	content: "\E803";
	font-family: "fontello";
	font-size: 20px;
	font-weight: normal;
	line-height: 1;
	position: absolute;
	right: -12px;
	top: 0;
}

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

	.requestbox {
		margin-right: 0;
		right: 0;
	}

}

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

	.requestbox {
		left: 50%;
		margin: 0 0 0 -165px;
		right: auto;
		top: 131px;
	}

}

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

	.requestbox {
		margin-left: -150px;
		width: 300px;
	}
	.requestbox > form {
		padding-left: 35px;
		padding-right: 35px;
	}
	.requestbox > p {
		padding-left: 35px;
		padding-right: 35px;
	}

}

/* Layout - Login */

/* Header */

#HeaderWrapper > div > a.login {
	bottom: 0;
    color: #FFFFFF;
    font-family: "avenir-light";
    font-size: 14px;
    height: 42px;
    line-height: 42px;
    position: absolute;
    text-transform: uppercase;
}
#HeaderWrapper > div > a.login:hover {
    font-style: italic;
}

/* Eingeloggt */

#HeaderWrapper > div > a.maintenance {
	bottom: 0;
    color: #FFFFFF;
    font-size: 20px;
    height: 53px;
    line-height: 53px;
    position: absolute;
    text-transform: uppercase;
}
#HeaderWrapper > div > a.maintenance:after {
	content: "\E839";
	font-family: "fontello";
    position: relative;
}
#HeaderWrapper > div > a.maintenance:hover {
	opacity: 0.75;
}

/* Login - Element */

form.cmsLogin.cmsForm {
	padding-bottom: 10px;
}
form.cmsLogin.cmsForm > .row {
	padding-right: 0;
}
form.cmsLogin.cmsForm > .button {
	margin-right: 0;
}

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

	#HeaderWrapper > div > a.maintenance,
	#HeaderWrapper > div > a.login {
		display: none;
	}

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

.mobileTrigger,
.closeMenu {
	display: none;
}
nav.desktop {
	position: absolute;
	right: 20px;
	top: 67px;
	z-index: 1;
}
nav.desktop > ul:after {
	clear: both;
	content: "";
	display: block;
}
nav.desktop > ul > li {
	float: left;
	padding: 0 0 5px 0;
	position: relative;
}
nav.desktop > ul > li.mobile {
	display: none;
}
nav.desktop > ul > li > a {
	border-bottom: 2px solid transparent;
	color: #FFFFFF;
	display: block;
	font-family: "avenir-light";
	font-size: 14px;
	padding: 5px 15px;
	text-transform: uppercase;
}
nav.desktop > ul > li:hover > a,
nav.desktop > ul > li > a.selected {
	font-style: italic;
}
nav.desktop > ul > li:hover > ul {
	height: auto;
	padding: 10px 0;
	opacity: 1;
	overflow: visible;
	top: 39px;
}
nav.desktop > ul > li > ul {
	background: #1c1e33;
	background: rgba(28, 30, 51, 0.9);
	height: 0;
	left: 0;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	top: 20px;
	-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: #FFFFFF;
    display: block;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    padding: 8px 15px;
    text-transform: uppercase;
    white-space: nowrap;
}
nav.desktop > ul > li > ul > li > a:hover,
nav.desktop > ul > li > ul > li > a.selected {
	
}

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

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

}

/* Menü - Hauptmenü Mobile */

.mobileTrigger.show:before {
	content: "\E819";
	display: block;
	float: left;
	font-family: "fontello";
	font-size: 34px;
	margin: 0 10px 0 0;
}
.mobileTrigger.show {
	color: #FFFFFF;
	cursor: pointer;
	display: block;
	font-size: 16px;
	line-height: 106px;
	padding: 0 20px 0 30px;
	position: absolute;
	right: 0;
	text-transform: uppercase;
}
.closeMenu:before {
	content: "\E82A";
}
.closeMenu {
	color: #FFFFFF;
	cursor: pointer;
	display: none;
	font-family: "fontello";
	font-size: 20px;
	line-height: 1;
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 800;
}
nav.mobile {
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 700;
}
nav.mobile > ul {
	background: #1D1F35;
	height: 0;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	width: 100%;
	-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.open {
	height: auto;
	opacity: 1;
	overflow: visible;
	padding: 75px 0 50px 0;
}
nav.mobile > ul > li > ul {
	display: none;
}
nav.mobile > ul > li > ul.open {
	background: #5B5C69;
	display: block;
	margin: 10px 0 20px 0;
	padding: 10px 0;
}

/* 1. Ebene */

nav.mobile > ul > li > a {
	color: #FFFFFF;
	display: block;
	font-size: 16px;
	padding: 6px 20px;
}
nav.mobile > ul > li > a:hover,
nav.mobile > ul > li > a.selected {
	
}

/* 2. Ebene */

nav.mobile > ul > li > ul > li > a {
	color: #FFFFFF;
	display: block;
	font-size: 16px;
	padding: 6px 20px;
}
nav.mobile > ul > li > ul > li > a:hover,
nav.mobile > ul > li > ul > li > a.selected {
	
}

/* Menü - Mobile open */

body.menuopen {
	background: #1D1F35;
}
body.menuopen #ContentWrapper,
body.menuopen #FooterWrapper,
body.menuopen #GalleryWrapper,
body.menuopen .requestbox {
	display: none;
}
body.menuopen .closeMenu {
	display: block;
}
body.menuopen #HeaderWrapper > div > a {
	left: 20px;
	top: 10px;
	z-index: 750;
}

/* Menü - Metamenü */

ul.metamenu:after {
	clear: both;
	content: "";
	display: block;
}
ul.metamenu > li {
	float: left;
}
ul.metamenu > li > a {
	display: block;
	padding: 0 4px;
}
ul.metamenu > li > a:hover,
ul.metamenu > li > a.selected {
	
}

/* Elemente - Überschriften */

h1 {
	color: #2d3762;
	font-family: "edwardian";
	font-size: 45px;
	font-weight: normal;
}
h2 {
	font-size: 16px;
	font-weight: normal;
}
h3 {
	font-size: 14px;
	font-weight: normal;
}

/* Folgeüberschriften */

h1.cms + h2.cms {
	margin-top: -15px;
}
h2.cms + h3.cms {
	margin-top: -15px;
}

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

	h1 {
		font-size: 40px;
	}

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

.cmsList > h2 {
	margin: 0 0 10px 0;
}
.cmsList > ul > li:before {
	content: '\E818';
	font-family: 'fontello';
	left: 0;
	position: absolute;
}
.cmsList > ul > li {
	margin: 10px 0;
	padding: 0 0 0 15px;
	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 40px 30px 0;
	max-width: 50%;
}
.cmsImage > .right {
	float: right;
	margin: 0 0 30px 40px;
	max-width: 50%;
}
.cmsImage > p {
	position: relative;
	top: -6px;
}
.cmsImage img {
	display: block;
	max-width: 100%;
}
.cmsImage figcaption {

}

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

	.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 {
	float: left;
	margin: 0 0.78125% 20px 0; /* 0 5 20 0 */
	position: relative;
	width: 32.8125%; /* 210 */
}
.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:after { /* Overlay */
	background: rgb(0, 0, 0);
	background: rgba(0, 0, 0, 0.8);
	box-shadow: 0 0 80px 0 #111111 inset;
	content: "";
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 1;
}
.cmsGallery > li:hover > figure > a:after { /* Overlay einblenden */
	opacity: 1;
	-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;
}
.cmsGallery > li > figure > a > img {
	display: block;
	width: 100%;
}
.cmsGallery > li > figure > figcaption {
	color: #ffffff;
	cursor: pointer;
	font-size: smaller;
	left: 50%;
	line-height: 1.5;
	margin: 10px auto auto auto;
	opacity: 0;
	padding: 0 10px;
	position: absolute;
	text-align: center;
	text-shadow: 0 0 4px #000000;
	top: 50%;
	width: 100%;
	z-index: 10;
	-moz-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.cmsGallery > li:hover > figure > figcaption {
	opacity: 1;
	-webkit-transition: opacity 700ms ease-in-out;
	-moz-transition: opacity 700ms ease-in-out;
	-ms-transition: opacity 700ms ease-in-out;
	-o-transition: opacity 700ms ease-in-out;
	transition: opacity 700ms ease-in-out;
}
.cmsGallery > li > figure > figcaption:after {
	content: "\E81F";
	font-family: "fontello";
    font-size: 22px;
    left: 0;
    position: absolute;
    text-align: center;
    top: -30px;
    width: 100%;
}
.cmsGallery > li:hover > figure > a > img {
	-webkit-transition: all 150ms ease;
	-moz-transition: all 150ms ease;
	-ms-transition: all 150ms ease;
	-o-transition: all 150ms ease;
	transition: all 150ms ease 100ms;
	-moz-transform: scale(1.4);
	-webkit-transform: scale(1.4);
	-o-transform: scale(1.4);
	-ms-transform: scale(1.4);
	transform: scale(1.4);
}
.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: 550px){
	
	.cmsGallery > li {
		margin-right: 2%;
		width: 49%;
	}
	.cmsGallery > li:nth-child(3n) {
		margin-right: 2%;
	}
	.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: 380px){

	.cmsGallery > li {
		clear: both !important;
		margin-right: 0 !important;
		width: 100% !important;
	}

}

/* Elemente - Teaser */

.cmsTeaser + * {
	margin-top: -20px;
}
.cmsTeaser:after {
	clear: both;
	content: "";
	display: block;
}
.cmsTeaser > h2 {
	margin: 0 0 20px 0;
}
.cmsTeaser > article {
	float: left;
	margin: 0 9.375% 20px 0; /* 0 60 20 0 */
	position: relative;
	width: 45.3125%; /* 290 */
}
.cmsTeaser > article:nth-of-type(2n) {
	margin-right: 0;
}
.cmsTeaser > article:nth-of-type(2n) + article {
	clear: left;
}
.cmsTeaser > article > h2 {
	display: none;
}
.cmsTeaser > article > figure > a > img {
	display: block;
	width: 100%;
}
.cmsTeaser > article > figure > figcaption > a {
	color: inherit;
	display: block;
	font-weight: normal;
	margin: 8px 0 5px 0;
}
.cmsTeaser > article > figure > figcaption > p > span {
	display: block;
	line-height: 1.3;
}
.cmsTeaser > article > figure > figcaption > p > span > a {
	background: none repeat scroll 0 0 #2d3762;
	color: #ffffff;
	display: table;
	margin: 12px 0 0;
	padding: 4px 10px 6px;
}

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

	.cmsTeaser + * {
		margin-top: 20px;
	}
	.cmsTeaser > article {
		float: none;
		margin: 0 0 20px 0;
		position: relative;
		width: 100%;
	}

}

/* Element - Teaser Links/Rechts */

.cmsTeaserLeftRight > h2 {
	margin: 0 0 20px 0;
}
.cmsTeaserLeftRight > article {
	border-bottom: 1px solid #d2d2d2;
	margin: 0 0 20px 0;
	padding: 0 0 20px 0;
	position: relative;
}
.cmsTeaserLeftRight > article > h2 {
	display: none;
}
.cmsTeaserLeftRight > article > figure:after {
	clear: both;
	content: "";
	display: block;
}
.cmsTeaserLeftRight > article > figure > a {
	float: left;
	margin: 0 25px 0 0;
	width: 39.0625%; /* 250 */
}
.cmsTeaserLeftRight > article > figure > a > img {
	display: block;
	width: 100%;
}
.cmsTeaserLeftRight > article > figure > figcaption {
	padding: 8px 0 0 0;
}
.cmsTeaserLeftRight > article > figure > figcaption > a {
	display: table;
	font-size: 12px;
	font-weight: bold;
	margin: 0 0 8px;
}
.cmsTeaserLeftRight > article > figure > figcaption > p {
	line-height: 1.3;
	margin: -8px 0 0;
}
.cmsTeaserLeftRight > article > figure > figcaption > p > span.text {
	font-size: 12px;
	line-height: 18px;
}
.cmsTeaserLeftRight > article > figure > figcaption > p > span > a {
	bottom: 2px;
	font-weight: normal;
	padding: 0 5px 0 0;
	position: absolute;
	right: 0;
}
.cmsTeaserLeftRight > article > figure > figcaption > p > span > a:after {
	content: "\E803";
	font-family: "fontello";
	font-size: 16px;
	font-weight: normal;
	left: 4px;
	line-height: 1;
	position: relative;
	top: 2px;
}

/* Teaser Bild rechts */

.cmsTeaserLeftRight > article:nth-of-type(2n) > figure > a {
	float: right;
	margin: 0 0 0 25px;
}
.cmsTeaserLeftRight > article:nth-of-type(2n):not(.noImg) > figure > figcaption > p > span > a {
	padding-right: 25px;
	right: 39.0625%;
}

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

	.cmsTeaserLeftRight > article:nth-of-type(2n) > figure > a {
		float: none;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 20px;
		width: 100%;
	}
	.cmsTeaserLeftRight > article > figure > a {
		float: none;
		margin-right: 0;
		margin-bottom: 20px;
		width: 100%;
	}
	.cmsTeaserLeftRight > article > figure > figcaption {
		display: block;
		margin-top: 8px;
	}
	.cmsTeaserLeftRight > article:nth-of-type(2n) > figure > figcaption > p > span > a {
		padding-right: 0;
		right: 0;
	}

}

/* Element - Teaser (nur Titel) */

.cmsTeaserTitle:after {
	clear: both;
	content: "";
	display: block;
}
.cmsTeaserTitle > h2 {
	margin: 0 0 20px 0;
}
.cmsTeaserTitle > article {
	float: left;
	margin: 0 0.78125% 20px 0; /* 0 5 20 0 */
	width: 32.8125%; /* 210 */
}
.cmsTeaserTitle > article:nth-of-type(3n){
	margin-right: 0;
}
.cmsTeaserTitle > article:nth-of-type(3n) + article {
	clear: left;
}
.cmsTeaserTitle > article > h2 {
	display: none;
}
.cmsTeaserTitle > article > figure > a > img {
	display: block;
	width: 100%;
}
.cmsTeaserTitle > article > figure > figcaption {
	position: relative;
}
.cmsTeaserTitle > article > figure > figcaption > a {
	bottom: 0;
	color: #ffffff;
	font-style: italic;
	line-height: 1.3;
	padding: 0 5px 5px 5px;
	position: absolute;
	right: 0;
	text-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

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

	.cmsTeaserTitle > article {
		margin-right: 2%;
		width: 49%;
	}
	.cmsTeaserTitle > article:nth-of-type(3n){
		margin-right: 2%;
	}
	.cmsTeaserTitle > article:nth-of-type(3n) + article {
		clear: none;
	}
	.cmsTeaserTitle > article:nth-of-type(2n){
		margin-right: 0;
	}
	.cmsTeaserTitle > article:nth-of-type(2n) + article {
		clear: left;
	}

}

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

	.cmsTeaserTitle > article {
		clear: both;
		float: none;
		margin-right: 0;
		width: 100%;
	}

}

/* Element - Teaser 2 nebeneinander */

.cmsTeaser2Columns:after {
	clear: both;
	content: "";
	display: block;
}
.cmsTeaser2Columns > article {
	float: left;
	margin: 0 4.347826086956522% 20px 0; /* 0 40 20 0 */
	width: 47.826086956521742%; /* 440 */
}
.cmsTeaser2Columns > article:nth-child(2n) {
	margin-right: 0;
}
.cmsTeaser2Columns > article:nth-child(2n) + article {
	clear: left;
}
.cmsTeaser2Columns > article > h2 {
	display: none;
}
.cmsTeaser2Columns > article img {
	display: block;
	width: 100%;
}
.cmsTeaser2Columns > article > figure:after {
	clear: both;
	content: "";
	display: block;
}
.cmsTeaser2Columns > article > figure > figcaption > h3 {
	font-family: "edwardian";
	font-size: 40px;
	line-height: 1;
	margin: 0 0 18px 0;
}
.cmsTeaser2Columns > article > figure > figcaption > h3 > span {
	display: block;
	font-family: "Verdana";
	font-size: 15px;
	text-transform: uppercase;
	text-align: right;
}
.cmsTeaser2Columns > article > figure > figcaption > p {
	line-height: 1.3;
}
.cmsTeaser2Columns > article > figure > figcaption > p a {
	font-weight: normal;
}
.cmsTeaser2Columns > article > figure > figcaption > p a:after {
	content: "\E803";
	font-family: "fontello";
	font-size: 16px;
	font-weight: normal;
	left: 4px;
	line-height: 1;
	position: relative;
	top: 2px;
}
.cmsTeaser2Columns > article > figure > a {
	display: block;
	float: right;
	margin: 0 0 0 6.818181818181818%; /* 0 0 0 30 */
	width: 56.81818181818182%; /* 250 */
}

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

	.cmsTeaser2Columns > article {
		clear: both !important;
		float: none !important;
		margin-right: 0 !important;
		width: 100% !important;
	}
	.cmsTeaser2Columns > article > figure > figcaption {
		width: 56.962025316455694%; /* 450 */
	}
	.cmsTeaser2Columns > article > figure > figcaption > h3 > span {
		text-align: left;
	}
	.cmsTeaser2Columns > article > figure > a {
		margin-left: 6.329113924050633%; /* 50 */
		width: 36.708860759493668%; /* 290 */
	}

}

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

	.cmsTeaser2Columns > article > figure > a {
		float: none;
		margin-left: 0;
		width: 100%;
	}
	.cmsTeaser2Columns > article > figure > figcaption {
		margin: 20px 0 0 0;
		width: 100%;
	}

}

/* Element - Teaser 2 nebeneinander (groß) */

.cmsTeaser2ColumnsBig:after {
	clear: both;
	content: "";
	display: block;
}
.cmsTeaser2ColumnsBig > article {
	float: left;
	margin: 0 4.347826086956522% 20px 0; /* 0 40 20 0 */
	width: 47.826086956521742%; /* 440 */
}
.cmsTeaser2ColumnsBig > article:nth-child(2n) {
	margin-right: 0;
}
.cmsTeaser2ColumnsBig > article:nth-child(2n) + article {
	clear: left;
}
.cmsTeaser2ColumnsBig > article > h2 {
	display: none;
}
.cmsTeaser2ColumnsBig > article img {
	display: block;
	width: 100%;
}
.cmsTeaser2ColumnsBig > article > figure > figcaption {
	padding: 0 0 28px;
}
.cmsTeaser2ColumnsBig > article > figure > figcaption:after {
	clear: both;
	content: "";
	display: block;
}
.cmsTeaser2ColumnsBig > article > figure > figcaption > h3 {
	float: left;
	font-family: "edwardian";
	font-size: 40px;
	line-height: 1;
	width: 36.363636363636367%; /* 160 */
}
.cmsTeaser2ColumnsBig > article > figure > figcaption > h3 > span {
	display: block;
	font-family: "Verdana";
	font-size: 15px;
	text-transform: uppercase;
	text-align: right;
}
.cmsTeaser2ColumnsBig > article > figure > figcaption > p {
	float: left;
	line-height: 1.3;
	margin: 0 0 0 6.818181818181818%; /* 0 0 0 30 */
	width: 56.81818181818182%; /* 250 */
}
.cmsTeaser2ColumnsBig > article > figure > figcaption > p a {
	font-weight: normal;
}
.cmsTeaser2ColumnsBig > article > figure > figcaption > p a:after {
	content: "\E803";
	font-family: "fontello";
	font-size: 16px;
	font-weight: normal;
	left: 4px;
	line-height: 1;
	position: relative;
	top: 2px;
}
.cmsTeaser2ColumnsBig > article > figure > a {
	clear: both;
	display: block;
}

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

	.cmsTeaser2ColumnsBig > article > figure > figcaption > h3 {
		float: none;
		width: 100%;
	}
	.cmsTeaser2ColumnsBig > article > figure > figcaption > h3 > span {
		text-align: left;
	}
	.cmsTeaser2ColumnsBig > article > figure > figcaption > p {
		float: none;
		margin-left: 0;
		margin-top: 20px;
		width: 100%;
	}

}

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

	.cmsTeaser2ColumnsBig > article {
		clear: both !important;
		float: none !important;
		margin-right: 0 !important;
		width: 100% !important;
	}

}

/* Element - Teaser untereinander */

.cmsTeaserSingleRow > h2 {
	display: none;
}
.cmsTeaserSingleRow > article:after {
	clear: both;
	content: "";
	display: block;
}
.cmsTeaserSingleRow > article {
	border-bottom: 1px solid #d2d2d2;
	line-height: 1.3;
	margin: 0 0 20px;
	padding: 0 0 20px;
	position: relative;
}
.cmsTeaserSingleRow > article > h2 {
	display: none;
}
.cmsTeaserSingleRow > article > figure > a {
	float: left;
	margin: 0 4.6875% 0 0; /* 0 30 0 0 */
	width: 39.0625%; /* 250 */
}
.cmsTeaserSingleRow > article > figure > a > img {
	display: block;
	width: 100%;
}
.cmsTeaserSingleRow > article > figure > figcaption {
	float: left;
	padding: 8px 0 0 0;
	width: 56.25%; /* 360 */
}
.cmsTeaserSingleRow > article > figure > figcaption > a {
	display: table;
	font-size: 12px;
	font-weight: bold;
	margin: 0 0 4px 0;
}
.cmsTeaserSingleRow > article > figure > figcaption > p.addition {
	margin: 10px 0;
}
.cmsTeaserSingleRow > article > figure > figcaption > p > span.text {
	font-size: 12px;
	line-height: 18px;
}
.cmsTeaserSingleRow > article > figure > figcaption > p > span > a {
	display: none;
}
.cmsTeaserSingleRow > article > figure > figcaption > span.rate {
	background: url("/img/market/rating.png") repeat top left;
    display: block;
    height: 19px;
    margin: 0 0 12px;
    position: relative;
    width: 108px;
}
.cmsTeaserSingleRow > article > figure > figcaption > span.rate:after {
	background: url("/img/market/rating.png") repeat 0 -20px;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 0;
}
.cmsTeaserSingleRow > article > figure > figcaption > span.rate.star05:after {
	width: 10px;
}
.cmsTeaserSingleRow > article > figure > figcaption > span.rate.star10:after {
	width: 20px;
}
.cmsTeaserSingleRow > article > figure > figcaption > span.rate.star15:after {
	width: 32px;
}
.cmsTeaserSingleRow > article > figure > figcaption > span.rate.star20:after {
	width: 42px;
}
.cmsTeaserSingleRow > article > figure > figcaption > span.rate.star25:after {
	width: 54px;
}
.cmsTeaserSingleRow > article > figure > figcaption > span.rate.star30:after {
	width: 64px;
}
.cmsTeaserSingleRow > article > figure > figcaption > span.rate.star35:after {
	width: 76px;
}
.cmsTeaserSingleRow > article > figure > figcaption > span.rate.star40:after {
	width: 86px;
}
.cmsTeaserSingleRow > article > figure > figcaption > span.rate.star45:after {
	width: 98px;
}
.cmsTeaserSingleRow > article > figure > figcaption > span.rate.star50:after {
	width: 108px;
}

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

	.cmsTeaserSingleRow > article > figure > figcaption {
		padding-top: 10px;
	}

}

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

	.cmsTeaserSingleRow > article > figure > a {
		float: none;
		margin-right: 0;
		width: 100%;
	}
	.cmsTeaserSingleRow > article > figure > figcaption {
		float: none;
		width: 100%;
	}

}

/* Element - Einzelteaser */

.cmsTeaserSingle > article {
	margin-right: 0;
	width: 100%;
}

/* Element - Externer Teaser */

.cmsTeaserExtern > article > h2 {
	display: none;
}
.cmsTeaserExtern > article > figure > figcaption > a {
	color: #000000;
	display: block;
	font-weight: normal;
	margin: 10px 0;
}
.cmsTeaserExtern > article > figure > figcaption > p > span > a {
	display: block;
	margin: 10px 0 0 0;
}
.cmsTeaserExtern > article > figure > figcaption > p > span > a > i {
	background: none repeat scroll 0 0 #2d3762;
	color: #ffffff;
	display: inline-block;
	font-style: normal;
	padding: 2px 5px 3px;
}
.cmsTeaserExtern img {
	display: block;
	width: 100%;
}

/* Element - Externe Teaser */

.cmsTeaserExternSmall {
	width: 45.3125%; /* 290 */
}
.cmsTeaserExternSmall > article > h2 {
	display: none;
}
.cmsTeaserExternSmall > article > figure > figcaption > a {
	color: #000000;
	display: block;
	font-weight: normal;
	margin: 10px 0;
}
.cmsTeaserExternSmall > article > figure > figcaption > p > span > a {
	display: block;
	margin: 10px 0 0 0;
}
.cmsTeaserExternSmall > article > figure > figcaption > p > span > a > i {
	background: none repeat scroll 0 0 #2d3762;
	color: #ffffff;
	display: inline-block;
	font-style: normal;
	padding: 2px 5px 3px;
}
.cmsTeaserExternSmall img {
	display: block;
	width: 100%;
}

/* Elemente - Tabelle */

.cmsTable > h2 {
	margin: 0 0 10px 0;
}
.cmsTable > table {
	width: 100%;
}
.cmsTable > table > tbody > tr {
	background: #FFFFFF;
}
.cmsTable > table > tbody > tr.val2 {
	background: #d3d4db;
}
.cmsTable > table > tbody > tr > td {
	line-height: 30px;
	padding: 0 10px;
}
.cmsTable > p {
	font-size: smaller;
	padding: 5px 10px 0 10px;
}

/* Responsive */

.cmsTable.responsive > table,
.cmsTable.responsive tbody,
.cmsTable.responsive tr,
.cmsTable.responsive td { 
	display: block; 
}
.cmsTable.responsive tr:first-child { 
	left: -9999px;
	position: absolute;
	top: -9999px;
}
.cmsTable.responsive tr { 
	border-bottom: 1px solid #cfcfcf;
}
.cmsTable.responsive td:before {
	content: attr(data-title);
	font-weight: bold;
	left: 10px;
	overflow: hidden;
	padding-right: 10px;
	position: absolute;
	text-overflow: ellipsis;
	top: 0;
	white-space: nowrap;
	width: 45%;
}
.cmsTable.responsive td {
	border: medium none;
	padding-left: 50%;
	position: relative;
	text-align: left !important;
	width: auto !important;
}

/* Elemente - Verlinkungen */

/* Links (intern & extern) */

.cmsLink > a {
	background: #2d3762;
	color: #FFFFFF;
	display: inline-block;
	padding: 2px 10px 3px;
	position: relative;
	-webkit-transition: padding 600ms ease-out;
	-moz-transition: padding 600ms ease-out;
	-ms-transition: padding 600ms ease-out;
	-o-transition: padding 600ms ease-out;
	transition: padding 600ms ease-out;
}
.cmsLink > a:hover {
	padding-left: 16px;
	padding-right: 16px;
}

/* Verweisliste */

.cmsRefs > h2 {
	margin: 0 0 10px 0;
}
.cmsRefs > ul {
	background: #2d3762;
	display: inline-block;
}
.cmsRefs > ul > li > a {
	color: #FFFFFF;
	display: inline-block;
	padding: 2px 10px 3px;
	position: relative;
}
.cmsRefs > a:hover {
	padding-left: 16px;
	padding-right: 16px;
}

/* E-Mail */

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

.cmsDrop {
	background: #F2F2F2;
	padding: 10px;
}
.cmsDrop > h3:before {
	content: '\E807';
	font-family: 'fontello';
	font-weight: normal;
	margin: 0 16px 0 0;
}
.cmsDrop > h3 {
	cursor: pointer;
	display: inline-block;
}
.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 */

.cmsFile > a:before {
	content: '\E82B';
	font-family: 'fontello';
	font-size: 22px;
	font-weight: normal;
	margin: 0 8px 0 0;
	vertical-align: middle;
}
.cmsFile > a {
	display: inline-block;
}
.cmsFile + .cmsFile {
	margin-top: -30px;
}

/* Elemente - Formular */

.cmsForm {
	background: #f2f2f2;
	padding: 20px;
}
.cmsForm > h2 {
	margin: 0 0 10px 0;
}
.cmsForm > .row {
	margin: 10px 0;
	padding: 0 24px 0 0;
	position: relative;
}
.cmsForm > .row:after {
	clear: both;
	content: "";
	display: block;
}
.cmsForm > .row.validation:before {
	content: '\E823';
	font-family: 'fontello';
	line-height: 26px;
	position: absolute;
	right: 0;
	top: 0;
}
.cmsForm > .row > label {
	display: block;
	float: left;
	line-height: 26px;
	padding: 0 10px 0 0;
	width: 30%;
}
.cmsForm > .row > .field {
	background: #FFFFFF;
	border: 1px solid #cfcfcf;
	height: 26px;
	outline: medium none;
	padding: 0 10px;
	width: 70%;
}
.cmsForm > .row > .field:focus {
	border: 1px solid #93C8FF;
	box-shadow: 0 0 4px #1983F0;
}
.cmsForm > .row > textarea.field {
	height: 100px;
	line-height: 1.3;
	padding-top: 10px;
	padding-bottom: 10px;
}
.cmsForm > .row.event > textarea.field {
	height: 320px;
}
.cmsForm > .row > select.field {
	padding: 0 0 0 6px;
}
.cmsForm > .row > input[type='file'].field {
	border: 1px solid #cfcfcf;
	height: auto;
	line-height: 1;
	padding: 3px 10px;
}
.cmsForm > .row > input[type='file'].field:focus {
	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: 26px;
}
.cmsForm > .infotext {
	line-height: 1.3;
}
.cmsForm > .row > .datepicker {
	cursor: pointer;
	width: 130px;
}
.cmsForm > .row > .calicon {
	background: none repeat scroll 0 0 #f9f9f9;
	border-left: 1px solid #cfcfcf;
	cursor: pointer;
	display: inline-block;
	font-size: 12px;
	height: 24px;
	line-height: 24px;
	margin: 0 0 0 -35px;
	padding: 0 11px 0 11px;
	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 #CFCFCF;
	float: left;
	padding: 15px;
	position: relative;
	width: 70%;
}
.cmsForm > .row > .spm:after {
	content: '\e826';
	font-family: 'fontello';
	font-size: 20px;
	left: 122px;
	position: absolute;
	top: 10px;
}
.cmsForm > .row > .spm > img {
	border: 1px solid #cfcfcf;
	float: left;
	height: 26px;
}
.cmsForm > .row > .spm > img + input {
	float: left;
	height: 26px;
	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 24px 20px 0;
	position: relative;
	text-align: right;
}
.cmsForm > .button > input { /* Sende-Button */
	background: #2d3762;
	border: 0;
	color: #FFFFFF;
	cursor: pointer;
	line-height: 26px;
	padding: 0 20px;
	font-weight: bold;
	text-transform: uppercase;
}
.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: 550px){
	
	.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 {
		margin-left: -31px;
		padding: 0 7px 0 9px;
		top: 32px;
	}
	.cmsForm > .row > .spm {
		width: 100%;
	}
	.cmsForm > .button {
		margin-right: 0;
	}
	.cmsForm .error {
		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: 36px;
	}
	.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 {
		text-align: left;
	}

}

/* Element - Trennlinie */

.cmsSeperator:before {
	background: url("/img/cms/seperator.png") no-repeat left top;
	content: "";
	display: block;
	height: 9px;
	left: 50%;
	margin: 0 0 0 -18px;
	position: absolute;
	top: -4px;
	width: 37px;
}
.cmsSeperator {
	background: #6a6a68;
	height: 1px;
	position: relative;
	width: 100%;
}

/* Element - Rezept */

.recipe > h1 {
	color: #30366a;
	margin: 30px 0 5px;
}
.recipe > .content:before {
	background: #d2d2d2;
	content: "";
	display: block;
	height: 100%;
	left: 31.25%; /* 200 */
	position: absolute;
	top: 0;
	width: 1px;
}
.recipe > .content {
	font-size: 12px;
	margin: 20px 0 0 0;
	padding: 10px 0 0 0;
	position: relative;
}
.recipe > .content:after {
	clear: both;
	content: "";
	display: block;
}
.recipe > .content > .ingredients {
	color: #2d3762;
	float: left;
	margin: 0 4.6875% 0 0; /* 0 30 0 0 */
	padding: 0 10px 0 0;
	width: 31.25%; /* 200 */
}
.recipe > .content > .preparation {
	float: left;
	width: 64.0625%; /* 410 */
}
.recipe > .content h3 {
	margin: 0 0 10px 0;
}

/* Bewertung */

.recipe > .rate {
	padding: 0 0 15px;
}
.recipe > .rate:after {
	clear: both;
	content: "";
	display: block;
}
.recipe > .rate > div {
	background: url("/img/market/rating.png") repeat top left;
    float: left;
	height: 19px;
	margin: 3px 0;
	width: 108px;
	position: relative;
}
.recipe > .rate > div:after {
	background: url("/img/market/rating.png") repeat 0 -20px;
	content: "";
	left: 0;
	height: 100%;
	position: absolute;
	width: 0;
}
.recipe > .rate > div:not(.disabled):hover:after {
	display: none;
}
.recipe > .rate > div > span {
	display: block;
	left: 0;
	height: 100%;
	position: absolute;
	top: 0;
	width: 0;
}
.recipe > .rate > div > span:not(.disabled):hover {
	background: url("/img/market/rating.png") repeat 0 -20px;
	cursor: pointer;
}
.recipe > .rate > div > span.star10,
.recipe > .rate > div[data-rate='star10']:after {
	width: 10px;
	z-index: 10;
}
.recipe > .rate > div > span.star20,
.recipe > .rate > div[data-rate='star20']:after {
	width: 20px;
	z-index: 9;
}
.recipe > .rate > div > span.star30,
.recipe > .rate > div[data-rate='star30']:after {
	width: 32px;
	z-index: 8;
}
.recipe > .rate > div > span.star40,
.recipe > .rate > div[data-rate='star40']:after {
	width: 42px;
	z-index: 7;
}
.recipe > .rate > div > span.star50,
.recipe > .rate > div[data-rate='star50']:after {
	width: 54px;
	z-index: 6;
}
.recipe > .rate > div > span.star60,
.recipe > .rate > div[data-rate='star60']:after {
	width: 64px;
	z-index: 5;
}
.recipe > .rate > div > span.star70,
.recipe > .rate > div[data-rate='star70']:after {
	width: 76px;
	z-index: 4;
}
.recipe > .rate > div > span.star80,
.recipe > .rate > div[data-rate='star80']:after {
	width: 86px;
	z-index: 3;
}
.recipe > .rate > div > span.star90,
.recipe > .rate > div[data-rate='star90']:after {
	width: 98px;
	z-index: 2;
}
.recipe > .rate > div > span.star100,
.recipe > .rate > div[data-rate='star100']:after {
	width: 108px;
	z-index: 1;
}

/* Abstimmen */

.recipe > .rate > a {
    background: #F79E1F;
    color: #FFFFFF;
    float: left;
    height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
	right: 15px;
    text-transform: uppercase;
    top: 1px;
    width: 0;
    -moz-transition: right 300ms ease-in-out, opacity 300ms ease-in-out;
    -o-transition: right 300ms ease-in-out, opacity 300ms ease-in-out;
    -webkit-transition: right 300ms ease-in-out, opacity 300ms ease-in-out;
    transition: right 300ms ease-in-out, opacity 300ms ease-in-out;
}
.recipe > .rate > a.show {
	height: auto;
	margin: 2px 0 0 18px;
	opacity: 1;
	padding: 0 15px;
	right: 0;
	width: auto;
}
.recipe > .rate > a:hover {
	background: #E99011;
}
.recipe > .rate > p {
	display: inline-block;
	font-size: 12px;
	margin: 3px 0 0 10px;
	opacity: 0;
	-webkit-transition: opacity 300ms ease-out;
	-moz-transition: opacity 300ms ease-out;
	-ms-transition: opacity 300ms ease-out;
	-o-transition: opacity 300ms ease-out;
	transition: opacity 300ms ease-out;
}
.recipe > .rate > p.show {
	opacity: 1;
}

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

	.recipe > .content:before {
		display: none;
	}
	.recipe > .content > .ingredients {
		float: none;
		margin-bottom: 20px;
		margin-right: 0;
		padding-right: 0;
		width: 100%;
	}
	.recipe > .content > .preparation {
		float: none;
		width: 100%;
	}

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

	.recipe > .rate {
		padding-top: 5px;
	}
	.recipe > .rate > div {
		display: table;
		float: none;
		margin-left: auto;
		margin-right: auto;
	}
	.recipe > .rate > a {
		border-radius: 0;
		display: none;
		float: none;
		height: auto;
		margin: 15px auto;
		right: auto;
		width: auto;
	}
	.recipe > .rate > div.recipe > .rated + a {
		display: table;
		height: auto;
		margin: 15px auto 2px;
		opacity: 1;
		padding: 4px 15px;
		right: auto;
		width: auto;
	}
	.recipe > .rate > p {
		display: block;
		margin: 9px 0 0 0;
		text-align: center;
	}

}

/* Element - Bewertung (Geschichte) */

.contentRating > .rate {
	padding: 0 0 15px;
}
.contentRating > .rate:after {
	clear: both;
	content: "";
	display: block;
}
.contentRating > .rate > div {
	background: url("/img/market/rating.png") repeat top left;
    float: left;
	height: 19px;
	margin: 3px 0;
	width: 108px;
	position: relative;
}
.contentRating > .rate > div:after {
	background: url("/img/market/rating.png") repeat 0 -20px;
	content: "";
	left: 0;
	height: 100%;
	position: absolute;
	width: 0;
}
.contentRating > .rate > div:not(.disabled):hover:after {
	display: none;
}
.contentRating > .rate > div > span {
	display: block;
	left: 0;
	height: 100%;
	position: absolute;
	top: 0;
	width: 0;
}
.contentRating > .rate > div > span:not(.disabled):hover {
	background: url("/img/market/rating.png") repeat 0 -20px;
	cursor: pointer;
}
.contentRating > .rate > div > span.star10,
.contentRating > .rate > div[data-rate='star10']:after {
	width: 10px;
	z-index: 10;
}
.contentRating > .rate > div > span.star20,
.contentRating > .rate > div[data-rate='star20']:after {
	width: 20px;
	z-index: 9;
}
.contentRating > .rate > div > span.star30,
.contentRating > .rate > div[data-rate='star30']:after {
	width: 32px;
	z-index: 8;
}
.contentRating > .rate > div > span.star40,
.contentRating > .rate > div[data-rate='star40']:after {
	width: 42px;
	z-index: 7;
}
.contentRating > .rate > div > span.star50,
.contentRating > .rate > div[data-rate='star50']:after {
	width: 54px;
	z-index: 6;
}
.contentRating > .rate > div > span.star60,
.contentRating > .rate > div[data-rate='star60']:after {
	width: 64px;
	z-index: 5;
}
.contentRating > .rate > div > span.star70,
.contentRating > .rate > div[data-rate='star70']:after {
	width: 76px;
	z-index: 4;
}
.contentRating > .rate > div > span.star80,
.contentRating > .rate > div[data-rate='star80']:after {
	width: 86px;
	z-index: 3;
}
.contentRating > .rate > div > span.star90,
.contentRating > .rate > div[data-rate='star90']:after {
	width: 98px;
	z-index: 2;
}
.contentRating > .rate > div > span.star100,
.contentRating > .rate > div[data-rate='star100']:after {
	width: 108px;
	z-index: 1;
}

/* Abstimmen */

.contentRating > .rate > a {
    background: #F79E1F;
    color: #FFFFFF;
    float: left;
    height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
	right: 15px;
    text-transform: uppercase;
    top: 1px;
    width: 0;
    -moz-transition: right 300ms ease-in-out, opacity 300ms ease-in-out;
    -o-transition: right 300ms ease-in-out, opacity 300ms ease-in-out;
    -webkit-transition: right 300ms ease-in-out, opacity 300ms ease-in-out;
    transition: right 300ms ease-in-out, opacity 300ms ease-in-out;
}
.contentRating > .rate > a.show {
	height: auto;
	margin: 2px 0 0 18px;
	opacity: 1;
	padding: 0 15px;
	right: 0;
	width: auto;
}
.contentRating > .rate > a:hover {
	background: #E99011;
}
.contentRating > .rate > p {
	display: inline-block;
	font-size: 12px;
	margin: 3px 0 0 10px;
	opacity: 0;
	-webkit-transition: opacity 300ms ease-out;
	-moz-transition: opacity 300ms ease-out;
	-ms-transition: opacity 300ms ease-out;
	-o-transition: opacity 300ms ease-out;
	transition: opacity 300ms ease-out;
}
.contentRating > .rate > p.show {
	opacity: 1;
}

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

	.contentRating > .rate {
		padding-top: 5px;
	}
	.contentRating > .rate > div {
		display: table;
		float: none;
		margin-left: auto;
		margin-right: auto;
	}
	.contentRating > .rate > a {
		border-radius: 0;
		display: none;
		float: none;
		height: auto;
		margin: 15px auto;
		right: auto;
		width: auto;
	}
	.contentRating > .rate > div.contentRating > .rated + a {
		display: table;
		height: auto;
		margin: 15px auto 2px;
		opacity: 1;
		padding: 4px 15px;
		right: auto;
		width: auto;
	}
	.contentRating > .rate > p {
		display: block;
		margin: 9px 0 0 0;
		text-align: center;
	}

}

/* Element - Kontext - Teaser */

#ContentWrapper > div > aside > .default > div {
	margin-top: 0;
}
.cmsCTeaser > article {
	border-bottom: 1px solid #6a6a68;
	margin: 0 0 20px;
	padding: 0 0 20px;
}
.cmsCTeaser > article:last-child {
	border-bottom: 0;
}
.cmsCTeaser > article > h2 {
	display: none;
}
.cmsCTeaser > h2:before {
	border-radius: 21px;
	color: #ffffff;
	font-size: 26px;
	height: 42px;
	left: 50%;
	line-height: 1;
	margin: 0 0 0 -21px;
	padding: 6px 0 0;
	position: absolute;
	text-align: center;
	top: 0;
	width: 42px;
}
.cmsCTeaser > h2 {
	font-size: 14px;
	padding: 58px 0 17px;
	position: relative;
	text-align: center;
	text-transform: uppercase;
}
.cmsCTeaser > article > figure > a > img {
	display: block;
	width: 100%;
}
.cmsCTeaser > article > figure > figcaption > a {
	display: block;
	font-size: 14px;
	font-weight: normal;
	margin: 7px 0 6px 0;
}
.cmsCTeaser > article > figure > figcaption > p {
	line-height: 1.3;
}
.cmsCTeaser > article > figure > figcaption > p > span > a {
	font-weight: normal;
}
.cmsCTeaser > article > figure > figcaption > p > span > a:after {
	content: "\E803";
	font-family: "fontello";
	font-size: 16px;
	font-weight: normal;
	left: 4px;
	line-height: 1;
	position: relative;
	top: 2px;
}

/* Hotel & Gastronomie */

.cmsCTeaser.hotel > h2:before {
	background: none repeat scroll 0 0 #ab0909;
	content: "H";
}
.cmsCTeaser.hotel > h2 {
	color: #ab0909;
}
.cmsCTeaser.hotel > article > figure > figcaption > a {
	color: #ab0909;
}
.cmsCTeaser.hotel > article > figure > figcaption > p > span > a {
	color: #ab0909;
}

/* Geschenkideen */

.cmsCTeaser.ideas > h2:before {
	background: none repeat scroll 0 0 #5d824f;
	content: "G";
}
.cmsCTeaser.ideas > h2 {
	color: #5d824f;
}
.cmsCTeaser.ideas > article > figure > figcaption > a {
	color: #5d824f;
}
.cmsCTeaser.ideas > article > figure > figcaption > p > span > a {
	color: #5d824f;
}

/* Veranstaltungen */

.cmsCTeaser.events > h2:before {
	background: none repeat scroll 0 0 #451571;
	content: "V";
}
.cmsCTeaser.events > h2 {
	color: #451571;
}
.cmsCTeaser.events > article {
	padding-left: 43px;
	padding-right: 43px;
}
.cmsCTeaser.events > article > figure > figcaption > a:before {
	background: url("/img/cms/event2.png") no-repeat left top;
	content: "";
	display: block;
	height: 28px;
	left: -35px;
	position: absolute;
	top: 8px;
	width: 28px;
}
.cmsCTeaser.events > article > figure > figcaption > a {
	color: #451571;
	font-weight: bold;
	position: relative;
}
.cmsCTeaser.events > article > figure > figcaption > p > a {
	color: #451571;
}

/* Element - Auflistung Events */

.eventsSearch {
	position: relative;
}
.eventsSearch > a {
	position: absolute;
	right: -12px;
	top: -88px;
}
.eventsSearch > a > img {
	display: block;
}
.eventsSearch > .cmsForm {
	background: rgba(45, 55, 98, 0.4);
	padding: 4px 36px 12px 12px;
	position: relative;
}
.eventsSearch > .cmsForm > .row {
	float: left;
	margin: 0 4% 6px 0;
	padding-right: 0;
	width: 48%;
}
.eventsSearch > .cmsForm > .row:nth-child(2n){
	margin-right: 0;
}
.eventsSearch > .cmsForm > .button {
	clear: both;
	margin: 0;
	position: relative;
	text-align: right;
}
.eventsSearch > .cmsForm > .row .datepicker {
	width: 100%;
}
.eventsSearch > .cmsForm > .row > .field {
	border: 1px solid #293662;
}
.eventsSearch > .cmsForm > .row > select.field {
	width: 100%;
}
.eventsSearch > .cmsForm > .row > label {
	color: #FFFFFF;
	float: none;
	font-size: 12px;
	font-weight: bold;
	width: auto;
}
.eventsSearch > .cmsForm > .row > .calicon {
	bottom: 1px;
	top: auto;
}
.eventsSearch > .cmsForm > a {
	background: #2d3762 none repeat scroll 0 0;
	border: 0 none;
	bottom: 12px;
	color: #ffffff;
	cursor: pointer;
	display: none;
	font-weight: bold;
	line-height: 26px;
	padding: 0 20px;
	position: absolute;
	text-transform: uppercase;
}
.eventsSearch > .cmsForm > a.show {
	display: block;
}

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

	.eventsSearch > a {
		display: table;
		margin: 0 auto;
		position: relative;
		right: auto;
		top: auto;
	}

}

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

	.eventsSearch > .cmsForm {
		padding: 10px 20px;
	}
	.eventsSearch > .cmsForm > .row {
		float: none;
		margin: 0 0 10px 0;
		width: 100%;
	}
	.eventsSearch > .cmsForm > .button > input {
		width: 100%;
	}
	.eventsSearch > .cmsForm > a {
		bottom: auto;
		margin: 10px 0;
		position: relative;
		text-align: center;
		width: 100%;
	}

}

/* Element - Märkte suchen */

.marketFilter > .map {
	min-height: 220px;
	position: relative;
}
.marketFilter > .map > p {
	padding: 20px 303px 20px 0;
}
.marketFilter > .map > img {
	position: absolute;
	right: 0;
	top: 0;
}
.marketFilter > .cmsForm {
	position: relative;
}
.marketFilter > .cmsForm > a {
	background: #2d3762 none repeat scroll 0 0;
	border: 0 none;
	bottom: 40px;
	color: #ffffff;
	cursor: pointer;
	display: none;
	font-weight: bold;
	line-height: 26px;
	padding: 0 20px;
	position: absolute;
	text-transform: uppercase;
}
.marketFilter > .cmsForm > a.show {
	display: block;
}

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

	.marketFilter > .map > p {
		padding: 0;
	}
	.marketFilter > .map > img {
		display: block;
		left: 50%;
		margin: 20px 0 20px -147px;
		position: relative;
	}

}

/* Element - Auflistung Märkte */

.marketFilter > .content {
	padding: 60px 0 10px;
}
.marketFilter > .content > li {
	border-bottom: 1px solid #D1D1D1;
    font-size: 12px;
    line-height: 1.3;
    margin: 0 0 20px;
    padding: 0 0 20px;
}
.marketFilter > .content > li:last-child {
	border-bottom: 0;
}
.marketFilter > .content > li > article {
	position: relative;
}
.marketFilter > .content > li > article > h2 {
	display: none;
}
.marketFilter > .content > li > article > figure:after {
	clear: both;
	content: "";
	display: block;
}
.marketFilter > .content > li > article > figure > a {
    float: left;
    margin: 0 4.958677685950414% 0 0; /* 30 */
    width: 42.148760330578511%; /* 255 */
}
.marketFilter > .content > li > article > figure > a > img {
    display: block;
    width: 100%;
}
.marketFilter > .content > li > article > figure > figcaption {
    float: left;
    padding: 10px 0 20px 0;
    width: 52.892561983471076%; /* 320 */	
}
.marketFilter > .content > li > article > figure > figcaption > a.title {
    display: table;
    font-weight: bold;
    margin: 0 0 4px;
}
.marketFilter > .content > li > article > figure > figcaption > p.distance {
	margin: 5px 0 15px 0;
	text-align: right;
}
.marketFilter > .content > li > article > figure > figcaption > .rated {
	background: url("/img/market/rating.png") repeat top left;
	height: 19px;
	margin: 10px 0 0 0;
	width: 108px;
	position: relative;
}
.marketFilter > .content > li > article > figure > figcaption > .rated:after {
	background: url("/img/market/rating.png") repeat 0 -20px;
	content: "";
	left: 0;
	height: 100%;
	position: absolute;
	width: 0;
}
.marketFilter > .content > li > article > figure > figcaption > .rated > span {
	display: block;
	left: 0;
	height: 100%;
	position: absolute;
	top: 0;
	width: 0;
}
.marketFilter > .content > li > article > figure > figcaption > .rated > span.star10,
.marketFilter > .content > li > article > figure > figcaption > .rated[data-rate='star10']:after {
	width: 10px;
	z-index: 10;
}
.marketFilter > .content > li > article > figure > figcaption > .rated > span.star20,
.marketFilter > .content > li > article > figure > figcaption > .rated[data-rate='star20']:after {
	width: 20px;
	z-index: 9;
}
.marketFilter > .content > li > article > figure > figcaption > .rated > span.star30,
.marketFilter > .content > li > article > figure > figcaption > .rated[data-rate='star30']:after {
	width: 32px;
	z-index: 8;
}
.marketFilter > .content > li > article > figure > figcaption > .rated > span.star40,
.marketFilter > .content > li > article > figure > figcaption > .rated[data-rate='star40']:after {
	width: 42px;
	z-index: 7;
}
.marketFilter > .content > li > article > figure > figcaption > .rated > span.star50,
.marketFilter > .content > li > article > figure > figcaption > .rated[data-rate='star50']:after {
	width: 54px;
	z-index: 6;
}
.marketFilter > .content > li > article > figure > figcaption > .rated > span.star60,
.marketFilter > .content > li > article > figure > figcaption > .rated[data-rate='star60']:after {
	width: 64px;
	z-index: 5;
}
.marketFilter > .content > li > article > figure > figcaption > .rated > span.star70,
.marketFilter > .content > li > article > figure > figcaption > .rated[data-rate='star70']:after {
	width: 76px;
	z-index: 4;
}
.marketFilter > .content > li > article > figure > figcaption > .rated > span.star80,
.marketFilter > .content > li > article > figure > figcaption > .rated[data-rate='star80']:after {
	width: 86px;
	z-index: 3;
}
.marketFilter > .content > li > article > figure > figcaption > .rated > span.star90,
.marketFilter > .content > li > article > figure > figcaption > .rated[data-rate='star90']:after {
	width: 98px;
	z-index: 2;
}
.marketFilter > .content > li > article > figure > figcaption > .rated > span.star100,
.marketFilter > .content > li > article > figure > figcaption > .rated[data-rate='star100']:after {
	width: 108px;
	z-index: 1;
}
.marketFilter > .content > li > article > figure > figcaption > a.more {
	bottom: 0;
	font-weight: normal;
	position: absolute;
}
.marketFilter > .content > li > article > figure > figcaption > a.more:after {
	content: ">";
	padding: 0 0 0 5px;
}

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

	.marketFilter > .content > li > article > figure > figcaption {
		padding-top: 10px;
	}

}

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

	.marketFilter > .content > li > article > figure > a {
		float: none;
		margin-right: 0;
		width: 100%;
	}
	.marketFilter > .content > li > article > figure > figcaption {
		float: none;
		padding-bottom: 20px;
		width: 100%;
	}

}

/* Element - Beste Märkte (Slider) */

.cmsTeaserSlider {
	margin: 0 -5px;
}
.cmsTeaserSlider:after {
	clear: both;
	content: "";
	display: block;
}
.cmsTeaserSlider article {
	padding: 0 5px;
}
.cmsTeaserSlider article > h2 {
	display: none;
}
.cmsTeaserSlider article > figure > a:before {
	bottom: -10px;
	content: "";
	display: block;
	height: 71px;
	position: absolute;
	right: 0;
	width: 125px;
	z-index: 2;
}
.cmsTeaserSlider article.item0 > figure > a:before {
	background: url("/img/market/stern_platz_1.png") no-repeat left top;
}
.cmsTeaserSlider article.item1 > figure > a:before {
	background: url("/img/market/stern_platz_2.png") no-repeat left top;
}
.cmsTeaserSlider article.item2 > figure > a:before {
	background: url("/img/market/stern_platz_3.png") no-repeat left top;
}
.cmsTeaserSlider article > figure > a {
	display: block;
	position: relative;
}
.cmsTeaserSlider article > figure > a > img {
	display: block;
	width: 100%;
}
.cmsTeaserSlider article > figure > figcaption > p {
	line-height: 1.3;
	padding: 10px 0;
}
.cmsTeaserSlider article > figure > figcaption > p > .text > a.title {
	display: table;
	margin: 0 0 9px;
}
.cmsTeaserSlider article > figure > figcaption > p > .text > a.more {
	background: none repeat scroll 0 0 #2d3762;
	color: #ffffff;
	display: table;
	margin: 12px 0 0;
	padding: 4px 10px 6px;
}
.cmsTeaserSlider .slick-prev:before {
	color: #FFFFFF;
	content: "\E802";
	font-family: "fontello";
	font-size: 30px;
	left: 12px;
	line-height: 1;
	position: absolute;
	text-indent: 0 !important;
	top: 2px;
}
.cmsTeaserSlider .slick-prev {
	background: rgb(198, 198, 198);
	background: rgba(198, 198, 198, 0.7);
	border: 0 none;
	border-radius: 17px;
	cursor: pointer;
	height: 34px;
	left: 11px;
	position: absolute;
	text-indent: -9999px;
	top: 50%;
	width: 34px;
}
.cmsTeaserSlider .slick-next:before {
	color: #FFFFFF;
	content: "\E803";
	font-family: "fontello";
	font-size: 30px;
	left: 13px;
	line-height: 1;
	position: absolute;
	text-indent: 0 !important;
	top: 2px;
}
.cmsTeaserSlider .slick-next {
	background: rgb(198, 198, 198);
	background: rgba(198, 198, 198, 0.7);
	border: 0 none;
	border-radius: 17px;
	cursor: pointer;
	height: 34px;
	position: absolute;
	right: 11px;
	text-indent: -9999px;
	top: 50%;
	width: 34px;
}

/* Element - Veranstaltungen */

.eventsSearch > form {
	margin: 20px 0;
}
.eventsSearch > ul > li {
	border-bottom: 1px solid #cfcfcf;
	margin: 10px 0;
	padding: 5px 0 17px 0;
	position: relative;
}
.eventsSearch > ul > li > article:after {
	clear: both;
	content: "";
	display: block;
}
.eventsSearch > ul > li > article > p.date {
	font-weight: bold;
	left: 0;
	position: absolute;
	top: 5px;
	width: 110px;
}
.eventsSearch > ul > li > article > div {
	padding: 0 0 0 135px;
}
.eventsSearch > ul > li > article > div > p.title {
	font-weight: bold;
}
.eventsSearch > ul > li > article > .location {
	font-weight: bold;
	padding: 20px 0 0 135px;
}

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

	.eventsSearch > ul > li > article > p.date {
		position: static;
		width: auto;
	}
	.eventsSearch > ul > li > article > div {
		padding-left: 0;
	}
	.eventsSearch > ul > li > article > .location {
		padding-left: 0;
	}

}

/* Framework - User Market Connection Check */

.checkUserMarketConnection {
	padding: 40px 30px 10px 30px;
}
.checkUserMarketConnection form {
	margin: 0 0 20px 0;
}
.checkUserMarketConnection input {
	padding: 6px 10px;
	width: 200px;
}
.checkUserMarketConnection button {
	background: #2d3762;
	border: 0;
	color: #FFFFFF;
	cursor: pointer;
	padding: 6px 10px;
	width: 66px;
}
.checkUserMarketConnection ul li {
	line-height: 1.4;
	margin: 15px 0;
}

/*! jQuery UI - v1.10.2 - 2013-03-17
* http://jqueryui.com
* Includes: jquery.ui.core.css, jquery.ui.datepicker.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=&fwDefault=&fsDefault=&cornerRadius=4px&bgColorHeader=%23cccccc&bgTextureHeader=highlight_soft&bgImgOpacityHeader=75&borderColorHeader=%23aaaaaa&fcHeader=%23222222&iconColorHeader=%23222222&bgColorContent=%23ffffff&bgTextureContent=flat&bgImgOpacityContent=75&borderColorContent=%23aaaaaa&fcContent=%23222222&iconColorContent=%23222222&bgColorDefault=%23e6e6e6&bgTextureDefault=glass&bgImgOpacityDefault=75&borderColorDefault=%23d3d3d3&fcDefault=%23555555&iconColorDefault=%23888888&bgColorHover=%23dadada&bgTextureHover=glass&bgImgOpacityHover=75&borderColorHover=%23999999&fcHover=%23212121&iconColorHover=%23454545&bgColorActive=%23ffffff&bgTextureActive=glass&bgImgOpacityActive=65&borderColorActive=%23aaaaaa&fcActive=%23212121&iconColorActive=%23454545&bgColorHighlight=%23fbf9ee&bgTextureHighlight=glass&bgImgOpacityHighlight=55&borderColorHighlight=%23fcefa1&fcHighlight=%23363636&iconColorHighlight=%232e83ff&bgColorError=fef1ec&bgTextureError=glass&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=%23aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=%23aaaaaa&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
* Copyright 2013 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;
	filter:Alpha(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-year {
	width: 100%;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
	width: 49%;
}
.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;
}

/* Component containers
----------------------------------*/
.ui-widget {
	font-family: inherit;
	font-size: ;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: inherit;
	font-size: 1em;
}
.ui-widget-content {
	border: 1px solid #aaaaaa;
	background: #ffffff url("/img/jquery-ui/ui-bg_flat_75_ffffff_40x100.png") 50% 50% repeat-x;
	color: #222222;
}
.ui-widget-content a {
	color: #222222;
}
.ui-widget-header {
	border: 1px solid #aaaaaa;
	background: #cccccc url("/img/jquery-ui/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50% repeat-x;
	color: #222222;
	font-weight: bold;
}
.ui-widget-header a {
	color: #222222;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
	border: 1px solid #d3d3d3;
	background: #e6e6e6 url("/img/jquery-ui/ui-bg_glass_75_e6e6e6_1x400.png") 50% 50% repeat-x;
	font-weight: ;
	color: #555555;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
	color: #555555;
	text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
	border: 1px solid #999999;
	background: #dadada url("/img/jquery-ui/ui-bg_glass_75_dadada_1x400.png") 50% 50% repeat-x;
	font-weight: ;
	color: #212121;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited {
	color: #212121;
	text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
	border: 1px solid #aaaaaa;
	background: #ffffff url("/img/jquery-ui/ui-bg_glass_65_ffffff_1x400.png") 50% 50% repeat-x;
	font-weight: ;
	color: #212121;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #212121;
	text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
	border: 1px solid #fcefa1;
	background: #fbf9ee url("/img/jquery-ui/ui-bg_glass_55_fbf9ee_1x400.png") 50% 50% repeat-x;
	color: #363636;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
	color: #363636;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
	border: 1px solid #cd0a0a;
	background: #fef1ec url("/img/jquery-ui/ui-bg_glass_95_fef1ec_1x400.png") 50% 50% repeat-x;
	color: #cd0a0a;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
	color: #cd0a0a;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
	color: #cd0a0a;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
	font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
	opacity: .7;
	filter:Alpha(Opacity=70);
	font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
	opacity: .35;
	filter:Alpha(Opacity=35);
	background-image: none;
}
.ui-state-disabled .ui-icon {
	filter:Alpha(Opacity=35); /* For IE8 - See #6059 */
}

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

/* states and images */
.ui-icon {
	width: 16px;
	height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
	background-image: url("/img/jquery-ui/ui-icons_222222_256x240.png");
}
.ui-widget-header .ui-icon {
	background-image: url("/img/jquery-ui/ui-icons_222222_256x240.png");
}
.ui-state-default .ui-icon {
	background-image: url("/img/jquery-ui/ui-icons_888888_256x240.png");
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
	background-image: url("/img/jquery-ui/ui-icons_454545_256x240.png");
}
.ui-state-active .ui-icon {
	background-image: url("/img/jquery-ui/ui-icons_454545_256x240.png");
}
.ui-state-highlight .ui-icon {
	background-image: url("/img/jquery-ui/ui-icons_2e83ff_256x240.png");
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
	background-image: url("/img/jquery-ui/ui-icons_cd0a0a_256x240.png");
}

/* positioning */
.ui-icon-blank { background-position: 16px 16px; }
.ui-icon-carat-1-n { background-position: 0 0; }
.ui-icon-carat-1-ne { background-position: -16px 0; }
.ui-icon-carat-1-e { background-position: -32px 0; }
.ui-icon-carat-1-se { background-position: -48px 0; }
.ui-icon-carat-1-s { background-position: -64px 0; }
.ui-icon-carat-1-sw { background-position: -80px 0; }
.ui-icon-carat-1-w { background-position: -96px 0; }
.ui-icon-carat-1-nw { background-position: -112px 0; }
.ui-icon-carat-2-n-s { background-position: -128px 0; }
.ui-icon-carat-2-e-w { background-position: -144px 0; }
.ui-icon-triangle-1-n { background-position: 0 -16px; }
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
.ui-icon-triangle-1-e { background-position: -32px -16px; }
.ui-icon-triangle-1-se { background-position: -48px -16px; }
.ui-icon-triangle-1-s { background-position: -64px -16px; }
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
.ui-icon-triangle-1-w { background-position: -96px -16px; }
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
.ui-icon-arrow-1-n { background-position: 0 -32px; }
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
.ui-icon-arrow-1-e { background-position: -32px -32px; }
.ui-icon-arrow-1-se { background-position: -48px -32px; }
.ui-icon-arrow-1-s { background-position: -64px -32px; }
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
.ui-icon-arrow-1-w { background-position: -96px -32px; }
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
.ui-icon-arrow-4 { background-position: 0 -80px; }
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
.ui-icon-extlink { background-position: -32px -80px; }
.ui-icon-newwin { background-position: -48px -80px; }
.ui-icon-refresh { background-position: -64px -80px; }
.ui-icon-shuffle { background-position: -80px -80px; }
.ui-icon-transfer-e-w { background-position: -96px -80px; }
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
.ui-icon-folder-collapsed { background-position: 0 -96px; }
.ui-icon-folder-open { background-position: -16px -96px; }
.ui-icon-document { background-position: -32px -96px; }
.ui-icon-document-b { background-position: -48px -96px; }
.ui-icon-note { background-position: -64px -96px; }
.ui-icon-mail-closed { background-position: -80px -96px; }
.ui-icon-mail-open { background-position: -96px -96px; }
.ui-icon-suitcase { background-position: -112px -96px; }
.ui-icon-comment { background-position: -128px -96px; }
.ui-icon-person { background-position: -144px -96px; }
.ui-icon-print { background-position: -160px -96px; }
.ui-icon-trash { background-position: -176px -96px; }
.ui-icon-locked { background-position: -192px -96px; }
.ui-icon-unlocked { background-position: -208px -96px; }
.ui-icon-bookmark { background-position: -224px -96px; }
.ui-icon-tag { background-position: -240px -96px; }
.ui-icon-home { background-position: 0 -112px; }
.ui-icon-flag { background-position: -16px -112px; }
.ui-icon-calendar { background-position: -32px -112px; }
.ui-icon-cart { background-position: -48px -112px; }
.ui-icon-pencil { background-position: -64px -112px; }
.ui-icon-clock { background-position: -80px -112px; }
.ui-icon-disk { background-position: -96px -112px; }
.ui-icon-calculator { background-position: -112px -112px; }
.ui-icon-zoomin { background-position: -128px -112px; }
.ui-icon-zoomout { background-position: -144px -112px; }
.ui-icon-search { background-position: -160px -112px; }
.ui-icon-wrench { background-position: -176px -112px; }
.ui-icon-gear { background-position: -192px -112px; }
.ui-icon-heart { background-position: -208px -112px; }
.ui-icon-star { background-position: -224px -112px; }
.ui-icon-link { background-position: -240px -112px; }
.ui-icon-cancel { background-position: 0 -128px; }
.ui-icon-plus { background-position: -16px -128px; }
.ui-icon-plusthick { background-position: -32px -128px; }
.ui-icon-minus { background-position: -48px -128px; }
.ui-icon-minusthick { background-position: -64px -128px; }
.ui-icon-close { background-position: -80px -128px; }
.ui-icon-closethick { background-position: -96px -128px; }
.ui-icon-key { background-position: -112px -128px; }
.ui-icon-lightbulb { background-position: -128px -128px; }
.ui-icon-scissors { background-position: -144px -128px; }
.ui-icon-clipboard { background-position: -160px -128px; }
.ui-icon-copy { background-position: -176px -128px; }
.ui-icon-contact { background-position: -192px -128px; }
.ui-icon-image { background-position: -208px -128px; }
.ui-icon-video { background-position: -224px -128px; }
.ui-icon-script { background-position: -240px -128px; }
.ui-icon-alert { background-position: 0 -144px; }
.ui-icon-info { background-position: -16px -144px; }
.ui-icon-notice { background-position: -32px -144px; }
.ui-icon-help { background-position: -48px -144px; }
.ui-icon-check { background-position: -64px -144px; }
.ui-icon-bullet { background-position: -80px -144px; }
.ui-icon-radio-on { background-position: -96px -144px; }
.ui-icon-radio-off { background-position: -112px -144px; }
.ui-icon-pin-w { background-position: -128px -144px; }
.ui-icon-pin-s { background-position: -144px -144px; }
.ui-icon-play { background-position: 0 -160px; }
.ui-icon-pause { background-position: -16px -160px; }
.ui-icon-seek-next { background-position: -32px -160px; }
.ui-icon-seek-prev { background-position: -48px -160px; }
.ui-icon-seek-end { background-position: -64px -160px; }
.ui-icon-seek-start { background-position: -80px -160px; }
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first { background-position: -80px -160px; }
.ui-icon-stop { background-position: -96px -160px; }
.ui-icon-eject { background-position: -112px -160px; }
.ui-icon-volume-off { background-position: -128px -160px; }
.ui-icon-volume-on { background-position: -144px -160px; }
.ui-icon-power { background-position: 0 -176px; }
.ui-icon-signal-diag { background-position: -16px -176px; }
.ui-icon-signal { background-position: -32px -176px; }
.ui-icon-battery-0 { background-position: -48px -176px; }
.ui-icon-battery-1 { background-position: -64px -176px; }
.ui-icon-battery-2 { background-position: -80px -176px; }
.ui-icon-battery-3 { background-position: -96px -176px; }
.ui-icon-circle-plus { background-position: 0 -192px; }
.ui-icon-circle-minus { background-position: -16px -192px; }
.ui-icon-circle-close { background-position: -32px -192px; }
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
.ui-icon-circle-zoomin { background-position: -176px -192px; }
.ui-icon-circle-zoomout { background-position: -192px -192px; }
.ui-icon-circle-check { background-position: -208px -192px; }
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
.ui-icon-circlesmall-close { background-position: -32px -208px; }
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
.ui-icon-squaresmall-close { background-position: -80px -208px; }
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }


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

/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 4px;
}

/* Overlays */
.ui-widget-overlay {
	background: #aaaaaa url("/img/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;
	opacity: .3;
	filter: Alpha(Opacity=30);
}
.ui-widget-shadow {
	margin: -8px 0 0 -8px;
	padding: 8px;
	background: #aaaaaa url("/img/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png") 50% 50% repeat-x;
	opacity: .3;
	filter: Alpha(Opacity=30);
	border-radius: 8px;
}

/* jQuery UI Kalender Styles Micado */

/* Datepicker */

/* benutzerdefinierte Styles */

.ui-datepicker {
	font-size: 12px;
	width: 20em;
}
.ui-datepicker-header {
	background: #5B5C69 !important;
	color: #FFFFFF !important;
	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: #5B5C69 !important;
	color: #FFFFFF !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 {
	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: #FFFFFF !important;
	width: auto !important;
	height: auto !important;
	margin: 9px 0 0 0 !important;
	top: -3px !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(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;
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;

    -moz-box-sizing: border-box;
         box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}

/* Privacy 1.0.0 */

/* Default */

.privacyCookie {
	background: rgba(255, 255, 255, 0.95);
	font-size: 13px;
	padding: 10px 0;
	width: 100%;
}
.privacyCookie > div > p {
	float: left;
	margin: 0 10px 0 0;
}
.privacyCookie > div > a.button {
	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;
	}

}

/* Extension - eCard */

/* Formular */

.eCardForm {
	background: #FFFFFF;
	-moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	opacity: 0;
	left: 50%;
	margin: -157px 0 0 -350px;
	padding: 20px;
	position: fixed;
	top: 50%;
	width: 700px;
	z-index: 8011;
}
.eCardForm.show {
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	-ms-transition: all 300ms ease-in-out;
	-o-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	opacity: 1;
}
.eCardForm > form {
	display: table;
	height: 274px;
	width: 100%;
}
.eCardForm > form:after {
	clear: both;
	content: "";
	display: block;
}
.eCardForm > form h2 {
	margin: 0 0 15px;
}
.eCardForm > form h3 {
	font-size: 12px;
	margin: 14px 0 0;
}
.eCardForm > form > .col1 {
	border-right: 1px solid #A4A4A4;
	display: table-cell;
	width: 50%;
	padding: 0 20px 0 0;
	vertical-align: top;
}
.eCardForm > form > .col2 > .image {
	margin: 0 0 10px;
	text-align: right;
}
.eCardForm > form > .col2 > .image > img {
	border: 1px solid #CFCFCF;
	display: inline-block;
	height: 60px;
	padding: 3px;
}
.eCardForm > form > .col2 {
	display: table-cell;
	width: 50%;
	padding: 0 0 0 20px;
	vertical-align: top;
}
.eCardForm > form > div > .row {
	margin: 5px 0;
	position: relative;
}
.eCardForm > form > .col2 > .row {
	margin-bottom: 0;
}
.eCardForm > form > div > .row:after {
	clear: both;
	content: "";
	display: block;
}
.eCardForm > form > div > .row.validation {
	padding: 0 20px 0 0;
}
.eCardForm > form > div > .row.validation:before {
	background: url("/img/cms/cms.png") no-repeat left -800px;
	content: "";
	height: 14px;
	position: absolute;
	right: 0;
	top: 10px;
	width: 14px;
}
.eCardForm > form > div > .row > label {
	display: block;
	float: left;
	padding: 6px 0 0 0;
	width: 40%;
}
.eCardForm > form > .col2 > .row > label {
	float: none;
	padding-bottom: 6px;
	width: 100%;
}
.eCardForm > form > div > .row > .field {
	border: 1px solid #CFCFCF;
	outline: medium none;
	padding: 7px 5px 8px 5px;
	width: 60%;
}
.eCardForm > form > div > .row > .field:focus {
	border: 1px solid #93C8FF !important;
	box-shadow: 0 0 4px #1983F0;
	color: #323E46;
}
.eCardForm > form > div > .row > textarea.field {
	height: 163px;
	line-height: 1.3;
	margin: 0;
	width: 100%;
}
.eCardForm > form > div > .button {
	padding: 0 20px 0 0;
	position: relative;
	text-align: right;
}
.eCardForm > form > div > .button > input {
	background: #EB3838;
	border: 0;
	color: #FFFFFF;
	cursor: pointer;
	display: inline-block;
	font-weight: bold;
	padding: 8px 15px;
	text-transform: uppercase;
	width: 60%;
}
.eCardForm > form > div > .button > input:hover {
	background: #CC2222;
}
.eCardForm > form .msg {
	display: none;
	line-height: 1.3;
	margin: 10px 20px 0 0;
	padding: 4px 10px;
}
.eCardForm > form .msg.show {
	display: block;
}
.eCardForm > form .error {
	border: 1px solid #EB3838 !important;
	box-shadow: 0 0 3px #FF0000;
	color: #EB3838;
}
.eCardForm > form .success {
	border: 1px solid #3b9400 !important;
	box-shadow: 0 0 3px #3b9400;
	color: #3b9400;
}
.eCardForm > .close {
	background: url("/img/fancybox/fancybox_sprite.png") scroll no-repeat left top;
	cursor: pointer;
	height: 36px;
	position: absolute;
	right: -18px;
	top: -18px;
	width: 36px;
}

/* Button */

.eCardBtn {
	bottom: 3px;
	color: #FFFFFF;
	font-weight: normal;
	padding: 5px 10px;
	position: absolute;
	right: 5px;
	z-index: 8051;
}

/* Fancybox */

.fancybox-outer, 
.fancybox-inner {
	z-index: 1;
}

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

	.eCardForm {
		margin-left: -140px;
		width: 280px;
	}
	.eCardForm > form > .col1 {
		border-right: 0;
		display: block;
		padding-right: 0;
		width: 100%;
	}
	.eCardForm > form > .col2 {
		display: none;
		padding-left: 0;
		width: 100%;
	}

}

/* Extension eCard - Custom */

a.eCardBtn {
    background: #30366A;
    bottom: -40px;
    padding: 3px 15px 5px;
    right: 0;	
}
a.eCardBtn:hover {
	background: #444C84;
	color: #FFFFFF;
}
.eCardForm {
	height: 415px;
	margin-left: -290px;
	margin-top: -207px;
	width: 580px;
}
.eCardForm > form h2 {
	font-size: 15px;
}
.eCardForm > form h3 {
	font-weight: bold;
}
.eCardForm > form > .col1 {
	padding-top: 3px;
}
.eCardForm > form > div > .button {
	padding-right: 0;
	padding-top: 15px;
}
.eCardForm > form > div > .button > input {
    background: #30366A;
}
.eCardForm > form > div > .button > input:hover {
	background: #444C84;
}
.eCardForm > form > div > .row > label,
.eCardForm > form > div > .row > .field {
	width: 100%;
}
.eCardForm > form > div > .row > .field {
	padding: 4px 10px 5px;
}
.eCardForm > form > div > .row > textarea.field {
	height: 238px;
}
.eCardForm > form > div > .row.validation {
	padding-right: 0;
}
.eCardForm > form .success {
    border: 1px solid #99221F !important;
    bottom: 43px;
    box-shadow: 0 0 3px #99221F;
    color: #99221F;
    left: 327px;
    position: absolute;
    right: 17px;
    z-index: 1;
}

@media all and (max-width: 720px){

	.eCardForm {
		height: auto;
	}
	.eCardForm > form .success {
		bottom: auto;
		left: auto;
		margin: 20px 0 0;
		position: relative;
		right: auto;
	}

}