/* res_id: cedcdab02f494822b282d7ca1115740a */

/* This is the core CSS of Tooltipster */

/* GENERAL STRUCTURE RULES (do not edit this section) */

.tooltipster-base {
	/* this ensures that a constrained height set by functionPosition,
	if greater that the natural height of the tooltip, will be enforced
	in browsers that support display:flex */
	display: flex;
	pointer-events: none;
	/* this may be overriden in JS for fixed position origins */
	position: absolute;
}

.tooltipster-box {
	/* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
	and flex-basis auto for IE11- (at least) */
	flex: 1 1 auto;
}

.tooltipster-content {
	/* prevents an overflow if the user adds padding to the div */
	box-sizing: border-box;
	/* these make sure we'll be able to detect any overflow */
	max-height: 100%;
	max-width: 100%;
	overflow: auto;
}

.tooltipster-ruler {
	/* these let us test the size of the tooltip without overflowing the window */
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: fixed;
	right: 0;
	top: 0;
	visibility: hidden;
}

/* ANIMATIONS */

/* Open/close animations */

/* fade */

.tooltipster-fade {
	opacity: 0;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	-ms-transition-property: opacity;
	transition-property: opacity;
}
.tooltipster-fade.tooltipster-show {
	opacity: 1;
}

/* grow */

.tooltipster-grow {
	-webkit-transform: scale(0,0);
	-moz-transform: scale(0,0);
	-o-transform: scale(0,0);
	-ms-transform: scale(0,0);
	transform: scale(0,0);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
	-webkit-backface-visibility: hidden;
}
.tooltipster-grow.tooltipster-show {
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

/* swing */

.tooltipster-swing {
	opacity: 0;
	-webkit-transform: rotateZ(4deg);
	-moz-transform: rotateZ(4deg);
	-o-transform: rotateZ(4deg);
	-ms-transform: rotateZ(4deg);
	transform: rotateZ(4deg);
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
}
.tooltipster-swing.tooltipster-show {
	opacity: 1;
	-webkit-transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}

/* fall */

.tooltipster-fall {
	-webkit-transition-property: top;
	-moz-transition-property: top;
	-o-transition-property: top;
	-ms-transition-property: top;
	transition-property: top;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-fall.tooltipster-initial {
	top: 0 !important;
}
.tooltipster-fall.tooltipster-show {
}
.tooltipster-fall.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	top: 0 !important;
	opacity: 0;
}

/* slide */

.tooltipster-slide {
	-webkit-transition-property: left;
	-moz-transition-property: left;
	-o-transition-property: left;
	-ms-transition-property: left;
	transition-property: left;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide.tooltipster-initial {
	left: -40px !important;
}
.tooltipster-slide.tooltipster-show {
}
.tooltipster-slide.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	left: 0 !important;
	opacity: 0;
}

/* Update animations */

/* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important */

/* fade */

@keyframes tooltipster-fading {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.tooltipster-update-fade {
	animation: tooltipster-fading 400ms;
}

/* rotate */

@keyframes tooltipster-rotating {
	25% {
		transform: rotate(-2deg);
	}
	75% {
		transform: rotate(2deg);
	}
	100% {
		transform: rotate(0);
	}
}

.tooltipster-update-rotate {
	animation: tooltipster-rotating 600ms;
}

/* scale */

@keyframes tooltipster-scaling {
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

.tooltipster-update-scale {
	animation: tooltipster-scaling 600ms;
}

/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 * 
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 */

/* .tooltipster-box */

.tooltipster-sidetip .tooltipster-box {
	background: #565656;
	border: 2px solid black;
	border-radius: 4px;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
	margin-top: 8px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
	margin-right: 8px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
	margin-left: 8px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
	margin-bottom: 8px;
}

/* .tooltipster-content */

.tooltipster-sidetip .tooltipster-content {
	color: white;
	line-height: 18px;
	padding: 6px 14px;
}

/* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */

.tooltipster-sidetip .tooltipster-arrow {
	overflow: hidden;
	position: absolute;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
	height: 10px;
	/* half the width, for centering */
	margin-left: -10px;
	top: 0;
	width: 20px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
	height: 20px;
	margin-top: -10px;
	right: 0;
	/* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
	been positioned yet */
	top: 0;
	width: 10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
	height: 20px;
	margin-top: -10px;
	left: 0;
	/* same as .tooltipster-left .tooltipster-arrow */
	top: 0;
	width: 10px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
	bottom: 0;
	height: 10px;
	margin-left: -10px;
	width: 20px;
}

/* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */

.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
	height: 0;
	position: absolute;
	width: 0;
}

/* .tooltipster-arrow-background */

.tooltipster-sidetip .tooltipster-arrow-background {
	border: 10px solid transparent;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
	border-bottom-color: #565656;
	left: 0;
	top: 3px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
	border-left-color: #565656;
	left: -3px;
	top: 0;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
	border-right-color: #565656;
	left: 3px;
	top: 0;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
	border-top-color: #565656;
	left: 0;
	top: -3px;
}

/* .tooltipster-arrow-border */

.tooltipster-sidetip .tooltipster-arrow-border {
	border: 10px solid transparent;
	left: 0;
	top: 0;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
	border-bottom-color: black;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
	border-left-color: black;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
	border-right-color: black;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
	border-top-color: black;
}

/* tooltipster-arrow-uncropped */

.tooltipster-sidetip .tooltipster-arrow-uncropped {
	position: relative;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
	top: -10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
	left: -10px;
}


.simple-marquee-container *{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	box-sizing:border-box;
}
.simple-marquee-container {
	width: 100%;
	background: grey;
	float: left;
	display: inline-block;
	overflow: hidden;
	box-sizing: border-box;
	height: 45px;
	position: relative;
	cursor: pointer;
}

.marquee-sibling {
	padding: 0;
	background: rgb(61, 61, 61);
	width: 20%;
	height: 45px;
	line-height: 42px;
	font-size: 12px;
	font-weight: normal;
	color: #ffffff;
	text-align: center;
	float: left;
	left: 0;
	z-index: 2000;
}

.marquee, *[class^="marquee"] {
	display: inline-block;
	white-space: nowrap;
	position:absolute;
}

.marquee{
  margin-left: 25%;
}

.marquee-content-items{
  display: inline-block;
  padding: 5px;
  margin: 0;
  height: 45px;
  position: relative;
}

.marquee-content-items li{
  display: inline-block;
  line-height: 35px;
  color: #fff;
}

/*
.marquee-content-items li:after{
	content: "|";
	margin: 0 1em;
}
*/


/** cookie consent **/
.cc-window {
	opacity: 1;
	transition: opacity 1s ease;


}

.cc-window.cc-invisible {
	opacity: 0;
}

.cc-animate.cc-revoke {
	transition: transform 1s ease;
}

.cc-animate.cc-revoke.cc-top {
	transform: translateY(-2em);
}

.cc-animate.cc-revoke.cc-bottom {
	transform: translateY(2em);
}

.cc-animate.cc-revoke.cc-active.cc-bottom, .cc-animate.cc-revoke.cc-active.cc-top, .cc-revoke:hover {
	transform: translateY(0);
}

.cc-grower {
	max-height: 0;
	overflow: hidden;
	transition: max-height 1s;
}

.cc-link, .cc-revoke:hover {
	text-decoration: underline;
}

.cc-revoke, .cc-window {
	position: fixed;
	overflow: hidden;
	box-sizing: border-box;
	font-family: 'Lato', sans-serif;
	font-size: 12px;
	line-height: 1.2em;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	z-index: 9999;
}

.cc-window.cc-static {
	position: static;
}

.cc-window.cc-floating {
	padding: 2em;
	max-width: 24em;
	-ms-flex-direction: column;
	flex-direction: column;
}

.cc-window.cc-banner {
	padding: 1em 1.8em;
	width: 100%;
	-ms-flex-direction: row;
	flex-direction: row;
}

.cc-revoke {
	padding: .5em;
}

.cc-header {
	font-size: 18px;
	font-weight: 700;
}

.cc-btn, .cc-close, .cc-link, .cc-revoke {
	cursor: pointer;
}

.cc-link {
	opacity: .8;
	display: inline-block;
	padding: .2em;
}

.cc-link:hover {
	opacity: 1;
}

.cc-link:active, .cc-link:visited {
	color: initial;
}

.cc-btn {
	display: block;
	padding: .4em .8em;
	font-size: .9em;
	font-weight: 700;
	border-width: 2px;
	border-style: solid;
	text-align: center;
	white-space: nowrap;
}

.cc-banner .cc-btn:last-child {
	min-width: 140px
}

.cc-highlight .cc-btn:first-child {
	background-color: transparent;
	border-color: transparent;
}

.cc-highlight .cc-btn:first-child:focus, .cc-highlight .cc-btn:first-child:hover {
	background-color: transparent;
	text-decoration: underline;
}

.cc-close {
	display: block;
	position: absolute;
	top: .5em;
	right: .5em;
	font-size: 1.6em;
	opacity: .9;
	line-height: .75
}

.cc-close:focus, .cc-close:hover {
	opacity: 1
}

.cc-revoke.cc-top {
	top: 0;
	left: 3em;
	border-bottom-left-radius: .5em;
	border-bottom-right-radius: .5em
}

.cc-revoke.cc-bottom {
	bottom: 0;
	left: 3em;
	border-top-left-radius: .5em;
	border-top-right-radius: .5em
}

.cc-revoke.cc-left {
	left: 3em;
	right: unset;
}

.cc-revoke.cc-right {
	right: 3em;
	left: unset;
}

.cc-top {
	top: 1em;
}

.cc-left {
	left: 1em;
}

.cc-right {
	right: 1em;
}

.cc-bottom {
	bottom: 1em;
}

.cc-floating > .cc-link {
	margin-bottom: 1em
}

.cc-floating .cc-message {
	display: block;
	margin-bottom: 1em;
}

.cc-window.cc-floating .cc-compliance {
	-ms-flex: 1;
	flex: 1;
}

.cc-window.cc-banner {
	-ms-flex-align: center;
	align-items: center;
}

.cc-banner.cc-top {
	left: 0;
	right: 0;
	top: 0;
}

.cc-banner.cc-bottom {
	left: 0;
	right: 0;
	bottom: 0;
}

.cc-banner .cc-message {
	-ms-flex: 1;
	flex: 1;
}

.cc-compliance {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-line-pack: justify;
	align-content: space-between;
}

.cc-compliance > .cc-btn {
	-ms-flex: 1;
	flex: 1;
}

.cc-btn + .cc-btn {
	margin-left: .5em;
}

@media print {
	.cc-revoke, .cc-window {
		display: none;
	}
}

@media screen and (max-width: 900px) {
	.cc-btn {
		white-space: normal;
	}
}

@media screen and (max-width: 414px) and (orientation: portrait), screen and (max-width: 736px) and (orientation: landscape) {
	.cc-window.cc-top {
		top: 0;
	}

	.cc-window.cc-bottom {
		bottom: 0;
	}

	.cc-window.cc-banner, .cc-window.cc-left, .cc-window.cc-right {
		left: 0;
		right: 0;
	}

	.cc-window.cc-banner {
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.cc-window.cc-banner .cc-compliance {
		-ms-flex: 1;
		flex: 1;
	}

	.cc-window.cc-floating {
		max-width: none;
	}

	.cc-window .cc-message {
		margin-bottom: 1em;
	}

	.cc-window.cc-banner {
		-ms-flex-align: unset;
		align-items: unset;
	}
}

.cc-floating.cc-theme-classic {
	padding: 1.2em;
	border-radius: 5px;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-compliance {
	text-align: center;
	display: inline;
	-ms-flex: none;
	flex: none;
}

.cc-theme-classic .cc-btn {
	border-radius: 5px;
}

.cc-theme-classic .cc-btn:last-child {
	min-width: 140px;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-btn {
	display: inline-block;
}

.cc-theme-edgeless.cc-window {
	padding: 0;
}

.cc-floating.cc-theme-edgeless .cc-message {
	margin: 2em 2em 1.5em;
}

.cc-banner.cc-theme-edgeless .cc-btn {
	margin: 0;
	padding: .8em 1.8em;
	height: 100%;
}

.cc-banner.cc-theme-edgeless .cc-message {
	margin-left: 1em;
}

.cc-floating.cc-theme-edgeless .cc-btn + .cc-btn {
	margin-left: 0;
}
/** cookie consent end **/

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.7.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}


@font-face {
  font-family: 'kundenschrift';
  src: url('../fonts/kundenschrift/alsanbol-webfont.woff2') format('woff2'), url('../fonts/kundenschrift/alsanbol-webfont.woff') format('woff'), url('../fonts/kundenschrift/alsanbol-webfont.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'kundenschrift';
  src: url('../fonts/kundenschrift/alsanlig-webfont.woff2') format('woff2'), url('../fonts/kundenschrift/alsanlig-webfont.woff') format('woff'), url('../fonts/kundenschrift/alsanlig-webfont.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: 'kundenschrift';
  src: url('../fonts/kundenschrift/alsanreg-webfont.woff2') format('woff2'), url('../fonts/kundenschrift/alsanreg-webfont.woff') format('woff'), url('../fonts/kundenschrift/alsanreg-webfont.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
/*  Responsive  ################################################# */
/*
 .sidebar
 {
 width: 33.33%;
 @include desktop() {
 width: 100%;
 }
 }
 */
/* http://meyerweb.com/eric/tools/css/reset/
 v2.0 | 20110126
 License: none (public domain)
 */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
body.rex-is-logged-in, body.rex-is-logged-out {
  border-top-width: 0 !important;
}
body.rex-is-logged-in .from-group--fullsize label, body.rex-is-logged-out .from-group--fullsize label {
  text-align: left;
  padding-bottom: 5px;
}
body.rex-is-logged-in.DEAKTIVERT .rex-nav-top, body.rex-is-logged-out.DEAKTIVERT .rex-nav-top {
  background: #910039;
}
body.rex-is-logged-in.DEAKTIVERT .nav-pills > li.active > a, body.rex-is-logged-out.DEAKTIVERT .nav-pills > li.active > a, body.rex-is-logged-in.DEAKTIVERT .nav-pills > li.active > a:hover, body.rex-is-logged-out.DEAKTIVERT .nav-pills > li.active > a:hover, body.rex-is-logged-in.DEAKTIVERT .nav-pills > li.active > a:focus, body.rex-is-logged-out.DEAKTIVERT .nav-pills > li.active > a:focus {
  background: #910039;
}
body.rex-is-logged-in.DEAKTIVERT a, body.rex-is-logged-out.DEAKTIVERT a {
  color: #910039;
}
body.rex-is-logged-in.DEAKTIVERT a .btn .rex-icon-edit, body.rex-is-logged-out.DEAKTIVERT a .btn .rex-icon-edit, body.rex-is-logged-in.DEAKTIVERT a .btn .rex-icon-delete, body.rex-is-logged-out.DEAKTIVERT a .btn .rex-icon-delete {
  color: #f9f8f5;
}
body.rex-is-logged-in.DEAKTIVERT a .btn .rex-icon-edit:hover, body.rex-is-logged-out.DEAKTIVERT a .btn .rex-icon-edit:hover, body.rex-is-logged-in.DEAKTIVERT a .btn .rex-icon-delete:hover, body.rex-is-logged-out.DEAKTIVERT a .btn .rex-icon-delete:hover, body.rex-is-logged-in.DEAKTIVERT a .btn .rex-icon-edit.active, body.rex-is-logged-out.DEAKTIVERT a .btn .rex-icon-edit.active, body.rex-is-logged-in.DEAKTIVERT a .btn .rex-icon-delete.active, body.rex-is-logged-out.DEAKTIVERT a .btn .rex-icon-delete.active {
  color: inherit;
}
body.rex-is-logged-in.DEAKTIVERT .panel-edit a .btn .rex-icon-edit, body.rex-is-logged-out.DEAKTIVERT .panel-edit a .btn .rex-icon-edit {
  color: inherit;
}
body.rex-is-logged-in.DEAKTIVERT .rex-nav-main li > a:hover, body.rex-is-logged-out.DEAKTIVERT .rex-nav-main li > a:hover {
  background: #910039;
  color: #fff;
}
body.rex-is-logged-in.DEAKTIVERT#rex-page-login, body.rex-is-logged-out.DEAKTIVERT#rex-page-login {
  background: #eee;
}
body.rex-is-logged-in.DEAKTIVERT#rex-page-login .panel-default, body.rex-is-logged-out.DEAKTIVERT#rex-page-login .panel-default {
  background: #910039;
}
body.rex-is-logged-in.DEAKTIVERT#rex-page-login .panel-default .panel-heading, body.rex-is-logged-out.DEAKTIVERT#rex-page-login .panel-default .panel-heading, body.rex-is-logged-in.DEAKTIVERT#rex-page-login .panel-default .panel-footer, body.rex-is-logged-out.DEAKTIVERT#rex-page-login .panel-default .panel-footer {
  background: #6c0623;
}
#header {
  background: white;
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  max-width: 1400px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 10px;
  /*	position:relative;
   max-width:960px;
   margin-left:auto;
   margin-right:auto;
   background:white;
   */
  min-height: 110px;
  margin-bottom: 20px;
}
@media (max-width: 960px) {
  #header {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (max-width: 960px) {
  #header {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media (max-width: 340px) {
  #header {
    padding-top: 5px;
    padding-bottom: 10px;
  }
}
@media (max-width: 800px) {
  #header {
    /*genügen Platz für Logo, falls kein Header vorhanden*/
    min-height: 0;
    padding: 5px;
  }
}
#header .main-top-navigation {
  display: block;
}
#header .header-logo-wrapper {
  text-align: center;
  position: absolute;
  left: 20px;
  /*left:20px;
   top:30px;
   width:360px;
   max-width:360px;*/
  top: 15px;
  width: 480px;
  max-width: 480px;
  z-index: 100;
  background: #fff;
}
@media (max-width: 800px) {
  #header .header-logo-wrapper {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    left: auto;
    top: auto;
    width: auto;
    margin-bottom: 0px;
    max-width: 360px;
  }
}
@media (max-width: 400px) {
  #header .header-logo-wrapper {
    max-width: 300px;
  }
}
#header .header-logo-wrapper a {
  display: block;
  padding: 30px;
  padding-bottom: 10px;
  padding-top: 20px;
  text-decoration: none;
}
#header .header-logo-wrapper a img.logo {
  width: 100%;
  height: auto;
}
#header .header-logo-wrapper a img.shadow {
  position: absolute;
  left: -2%;
  height: 20px;
  bottom: -20px;
  width: 105%;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
#header .header-logo-wrapper a .label {
  display: block;
  opacity: 0.75;
  filter: alpha(opacity=75);
  font-size: 14px;
  font-weight: 200;
  margin-bottom: 6px;
  margin-top: 6px;
  color: white;
  text-decoration: none;
}
#header .header-logo-wrapper a:hover {
  text-decoration: none;
}
#header .header-logo-wrapper a:hover .label {
  text-decoration: underline;
}
nav.main-top-navigation {
  text-align: left;
  position: relative;
  background: white;
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  max-width: 1400px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 10px;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  margin-bottom: 20px;
}
@media (max-width: 960px) {
  nav.main-top-navigation {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (max-width: 960px) {
  nav.main-top-navigation {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media (max-width: 340px) {
  nav.main-top-navigation {
    padding-top: 5px;
    padding-bottom: 10px;
  }
}
@media (max-width: 960px) {
  nav.main-top-navigation {
    background: none;
    text-align: center;
  }
}
nav.main-top-navigation ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
  margin-left: -10px;
}
@media (max-width: 800px) {
  nav.main-top-navigation ul {
    margin-left: auto;
    margin-right: auto;
  }
}
nav.main-top-navigation ul li.nav-item, nav.main-top-navigation ul li.nav-item-spacer {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  background: #fff;
  border-right: 4px solid #eee;
  /*&.nav-item-spacer
   {
   min-height:80px;
   width:4px;
   margin:0px;
   background:$mainBG;
   }*/
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.1s ease-in-out 0s;
  -moz-transition: all 0.1s ease-in-out 0s;
  -o-transition: all 0.1s ease-in-out 0s;
  -ms-transition: all 0.1s ease-in-out 0s;
  transition: all 0.1s ease-in-out 0s;
  /*.nav-item-children-wrapper
   {
   z-index:100;
   position:absolute;
   left:10px;
   top:100%;
   width:100%;
   background:none;
   display:block;
   .nav-child-item
   {
   background:$myColorA_Contrast;
   display:block;
   padding:10px 10px;
   text-align:center;
   margin-top:4px;
   border:1px solid $mainBG;
   @include MixinOpacity(0);
   @include MixinTransition(0.5s);
   @include MixinTranslate(0, 200px);
   &.nav-child-item--0
   {
   @include MixinTransition(0.2s);
   }
   &.nav-child-item--1
   {
   @include MixinTransition(0.25s);
   }
   &.nav-child-item--2
   {
   @include MixinTransition(0.3s);
   }
   &.nav-child-item--3
   {
   @include MixinTransition(0.35s);
   }
   &.nav-child-item--4
   {
   @include MixinTransition(0.4s);
   }
   &.nav-child-item--5
   {
   @include MixinTransition(0.45s);
   }
   //border:1px solid $myTextColorGrey;
   a
   {
   text-decoration:none!important;
   .label
   {
   font-size:$myFontSizeSmallerAsNormal;
   font-weight:$myFontWeightBold;
   color:$myTextColor;
   text-decoration:none !important;
   }
   }
   &:hover
   {
   cursor:pointer;
   background:$myColorA;
   a
   {
   .label
   {
   color:$myColorA_Contrast;
   }
   }
   }
   }
   }
   @include BiggerAsIPHONE()
   {
   &:hover
   {
   overflow:visible;
   .nav-item-children-wrapper
   {
   display:block;
   .nav-child-item
   {
   //@include MixinTransition(0.5s);
   @include MixinOpacity(1);
   @include MixinTranslate(0px, 0px);
   }
   }
   }
   }
   .show-submenu-icon-wrapper{
   display:none;
   }
   @include SmallerAsIPHONE()
   {
   border-width:0px;
   overflow:visible;
   margin-top:5px;
   > a{
   margin-right:50px;
   }
   .show-submenu-icon-wrapper
   {
   display:block;
   width:50px;
   height:100%;
   position:absolute;
   right:0px;
   top:0px;
   text-align:center;
   padding-top:12px;
   //background:rgba(0, 0, 0, 0.2);
   background:none;
   .show-submenu-icon--hide-btn
   {
   display:none;
   }
   .show-submenu-icon--show-btn, .show-submenu-icon--hide-btn
   {
   font-size:20px;
   cursor:pointer;
   @include MixinOpacity(0.5);
   &:hover
   {
   @include MixinOpacity(1);
   }
   }
   }
   &.show-submenu // Bei Activen Hauptmenüs das Untermenü anzeigen
   {
   .show-submenu-icon--hide-btn
   {
   display:block;
   }
   .show-submenu-icon--show-btn
   {
   display:none;
   }
   .nav-item-children-wrapper
   {
   display:block;
   position:relative;
   background:$mainBG;
   left:auto;
   top:auto;
   margin-left:0px;
   margin-bottom:0px;
   padding-left:10px;
   padding-right:0px;
   padding-bottom:10px;
   padding-top:5px;
   width:auto;
   .nav-child-item
   {
   //@include MixinTransition(0.5s);
   @include MixinOpacity(1);
   @include MixinTranslate(0px, 0px);
   text-align:left;
   }
   }
   }
   }*/
}
@media (max-width: 960px) {
  nav.main-top-navigation ul li.nav-item, nav.main-top-navigation ul li.nav-item-spacer {
    border: 4px solid #eee !important;
  }
}
@media (max-width: 340px) {
  nav.main-top-navigation ul li.nav-item, nav.main-top-navigation ul li.nav-item-spacer {
    display: block;
  }
}
nav.main-top-navigation ul li.nav-item.nav-item-with-spacer-left, nav.main-top-navigation ul li.nav-item-spacer.nav-item-with-spacer-left {
  border-right: 4px #eee solid;
}
@media (max-width: 960px) {
  nav.main-top-navigation ul li.nav-item.nav-item-with-spacer-left, nav.main-top-navigation ul li.nav-item-spacer.nav-item-with-spacer-left {
    border-right-width: 0px;
  }
}
nav.main-top-navigation ul li.nav-item:last-child, nav.main-top-navigation ul li.nav-item-spacer:last-child {
  border-right-width: 0;
}
nav.main-top-navigation ul li.nav-item > a, nav.main-top-navigation ul li.nav-item-spacer > a {
  display: block;
  position: relative;
  min-width: 146px;
  padding: 25px 22px;
  padding-bottom: 10px;
  line-height: 1;
  text-align: center;
  text-decoration: none !important;
}
@media (max-width: 960px) {
  nav.main-top-navigation ul li.nav-item > a, nav.main-top-navigation ul li.nav-item-spacer > a {
    padding: 12px 22px;
    padding-bottom: 0px;
  }
}
nav.main-top-navigation ul li.nav-item > a .label, nav.main-top-navigation ul li.nav-item-spacer > a .label {
  font-weight: 200;
  color: #222;
  font-size: 18px;
  letter-spacing: 0.3px;
  display: block;
}
nav.main-top-navigation ul li.nav-item:hover, nav.main-top-navigation ul li.nav-item-spacer:hover, nav.main-top-navigation ul li.nav-item.active, nav.main-top-navigation ul li.nav-item-spacer.active {
  background: #910039 !important;
  color: #fff;
}
nav.main-top-navigation ul li.nav-item:hover.active, nav.main-top-navigation ul li.nav-item-spacer:hover.active, nav.main-top-navigation ul li.nav-item.active.active, nav.main-top-navigation ul li.nav-item-spacer.active.active {
  border-color: #910039;
}
nav.main-top-navigation ul li.nav-item:hover > a, nav.main-top-navigation ul li.nav-item-spacer:hover > a, nav.main-top-navigation ul li.nav-item.active > a, nav.main-top-navigation ul li.nav-item-spacer.active > a, nav.main-top-navigation ul li.nav-item:hover > a .label, nav.main-top-navigation ul li.nav-item-spacer:hover > a .label, nav.main-top-navigation ul li.nav-item.active > a .label, nav.main-top-navigation ul li.nav-item-spacer.active > a .label {
  color: inherit !important;
}
nav.main-top-navigation.use-contrast-view ul li.nav-item > a .label {
  font-size: 21.6px;
  letter-spacing: 0.4px;
  color: #222;
}
/*
 nav.sub-top-navigation{
 max-width:960px;
 display:block;
 margin:0px;
 margin-left:auto;
 margin-right:auto;
 margin-top:10px;
 margin-bottom:5px;
 @include SmallerAsDESKTOP(){
 margin-left:10px;
 margin-right:10px;
 }
 a, span{
 @include MixinInline();
 font-size:$myFontSizeSmallerAsNormal;
 color:$myTextColor;
 padding:5px 5px;
 &.active{
 text-decoration:underline;
 }
 }
 span{
 @include MixinOpacity(0.5);
 }
 }*/
nav.breadcrump {
  text-align: center;
}
nav.breadcrump.use-contrast-view .link-wrapper .breadcrump-icon, nav.breadcrump.use-contrast-view .link-wrapper .breadcrump-spacer {
  font-size: 18px;
}
nav.breadcrump .link-wrapper {
  margin: 0px;
  max-width: 1350px;
  margin-left: auto;
  margin-right: auto;
  padding: 0px 20px;
  padding-bottom: 14px;
  text-align: left;
  padding-left: 80px;
}
nav.breadcrump .link-wrapper .breadcrump-icon, nav.breadcrump .link-wrapper .breadcrump-spacer {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  margin: 0px;
  font-size: 12px;
  color: #222;
}
nav.breadcrump .link-wrapper .breadcrump-spacer {
  color: #a1a4a7;
}
nav.breadcrump .link-wrapper a.breadcrump-icon {
  padding: 3px 10px;
  cursor: pointer !important;
}
nav.breadcrump .link-wrapper a.breadcrump-icon:hover {
  color: #910039;
}
nav.breadcrump .link-wrapper .breadcrump-icon--current-article {
  color: #910039;
  text-decoration: underline;
}
nav.breadcrump .link-wrapper span.breadcrump-icon {
  margin: 3px 10px;
}
.modal201-wrapper {
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 1s ease-in-out 0s;
  -moz-transition: all 1s ease-in-out 0s;
  -o-transition: all 1s ease-in-out 0s;
  -ms-transition: all 1s ease-in-out 0s;
  transition: all 1s ease-in-out 0s;
  display: none;
}
.modal201-wrapper .modal-container {
  margin-top: 100px;
  min-width: 300px;
  max-width: 420px;
  background: white;
  min-height: 200px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.7);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.7);
  position: relative;
}
@media (max-width: 440px) {
  .modal201-wrapper .modal-container {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
  }
}
.modal201-wrapper .modal-container .modal-close-btn {
  cursor: pointer;
  font-size: 24px;
  text-align: center;
  position: absolute;
  padding: 10px;
  top: 0px;
  right: 0px;
  color: #910039;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.modal201-wrapper .modal-container .modal-close-btn:hover {
  opacity: 1;
  filter: alpha(opacity=100);
}
.modal201-wrapper .modal-container .modal-content {
  padding: 10px;
}
.modal201-wrapper .modal-container .modal-content .modal-icon-wrapper {
  margin-top: 24px;
  text-align: center;
  margin-bottom: 24px;
}
.modal201-wrapper .modal-container .modal-content .modal-icon-wrapper > span {
  font-size: 60px;
  border: 3px solid #910039;
  color: #910039;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  width: 100px;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  -webkit-border-radius: 120px;
  -moz-border-radius: 120px;
  -ms-border-radius: 120px;
  border-radius: 120px;
}
.modal201-wrapper .modal-container .modal-content .modal-header {
  font-size: 28px;
  color: #910039;
  margin-bottom: 24px;
}
.modal201-wrapper .modal-container .modal-content .modal-text {
  padding: 10px;
  background: #910039;
  color: #fff;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 24px;
}
.modal201-wrapper .modal-container .modal-content .modal-text p {
  font-size: 28px;
  line-height: 1.25;
}
.modal201-wrapper .modal-container .modal-content .modal-btn-wrapper {
  text-align: center;
  margin-bottom: 24px;
}
.modal201-wrapper .modal-container .modal-content .modal-btn-wrapper > a {
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  padding: 7px 14px;
  color: #910039;
  background: #fff;
  border: 1px solid #910039;
  text-decoration: none;
  line-height: 1;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
}
.modal201-wrapper .modal-container .modal-content .modal-btn-wrapper > a:hover {
  background: #910039;
  color: #fff;
}
.modal201-wrapper .modal-container .modal-content .modal-btn-wrapper > a strong {
  font-weight: 400;
  font-size: 18px;
}
.modal201-wrapper .modal-container .modal-content .modal-btn-wrapper > a small {
  font-weight: inherit;
  font-size: 12px;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.modal201-wrapper.visible-animation {
  display: block;
}
.modal201-wrapper .modal-container {
  -webkit-transform: translate(0, -1000px);
  -ms-transform: translate(0, -1000px);
  -o-transform: translate(0, -1000px);
  transform: translate(0, -1000px);
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.5s ease-in-out 0.1s;
  -moz-transition: all 0.5s ease-in-out 0.1s;
  -o-transition: all 0.5s ease-in-out 0.1s;
  -ms-transition: all 0.5s ease-in-out 0.1s;
  transition: all 0.5s ease-in-out 0.1s;
}
.modal201-wrapper .modal-container .modal-icon-wrapper > span {
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 1s ease-in-out 0.3s;
  -moz-transition: all 1s ease-in-out 0.3s;
  -o-transition: all 1s ease-in-out 0.3s;
  -ms-transition: all 1s ease-in-out 0.3s;
  transition: all 1s ease-in-out 0.3s;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal201-wrapper.show-animation {
  background: rgba(145, 0, 57, 0.4);
}
.modal201-wrapper.show-animation .modal-container {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal201-wrapper.show-animation .modal-container .modal-icon-wrapper > span {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  opacity: 1;
  filter: alpha(opacity=100);
}
/* https://www.lockedownseo.com/social-media-colors/ */
.rex-slice-output .modul_abstandshalter_bild .image-wrapper, .rex-slice-output .modul_abstandshalter_bild .bewertungen-widget {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}
.modul_abstandshalter_bild {
  position: relative;
  z-index: 5 !important;
  text-align: center;
  background-size: cover;
  background-position: center center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.modul_abstandshalter_bild .image-wrapper {
  /* Gibt es nicht immer */
}
.modul_abstandshalter_bild .image-wrapper img {
  width: 100%;
  height: auto;
}
.modul_abstandshalter_bild .image-wrapper, .modul_abstandshalter_bild .bewertungen-widget {
  position: relative;
  margin-bottom: -100px;
  margin-top: -100px;
  margin-left: auto;
  margin-right: auto;
}
.modul_abstandshalter_bild .image-wrapper.bewertungen-widget, .modul_abstandshalter_bild .bewertungen-widget.bewertungen-widget {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 960px) {
  .modul_abstandshalter_bild .image-wrapper, .modul_abstandshalter_bild .bewertungen-widget {
    margin-bottom: -50px;
    margin-top: -50px;
  }
  .modul_abstandshalter_bild .image-wrapper.bewertungen-widget, .modul_abstandshalter_bild .bewertungen-widget.bewertungen-widget {
    padding-top: 70px;
    padding-bottom: 70px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 640px) {
  .modul_abstandshalter_bild .image-wrapper, .modul_abstandshalter_bild .bewertungen-widget {
    margin-bottom: -10px;
    margin-top: -10px;
  }
  .modul_abstandshalter_bild .image-wrapper.bewertungen-widget, .modul_abstandshalter_bild .bewertungen-widget.bewertungen-widget {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.modul_abstandshalter_bild.modul_abstandshalter_bild--SHOW_RATINGS_FROM_DB {
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  min-height: 300px;
}
.modul_abstandshalter_bild .bewertungen-widget {
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}
@media (max-width: 960px) {
  .modul_abstandshalter_bild .bewertungen-widget {
    margin-right: 10px;
    margin-left: 10px;
  }
}
.modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper, .modul_abstandshalter_bild .bewertungen-widget .button-bar {
  width: 480px;
}
@media (max-width: 640px) {
  .modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper, .modul_abstandshalter_bild .bewertungen-widget .button-bar {
    width: auto;
  }
}
.modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper {
  min-height: 260px;
}
@media (max-width: 340px) {
  .modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper {
    min-height: 360px;
  }
}
.modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper .bewertung-item {
  position: relative;
  background: #910039;
  background: rgba(145, 0, 57, 0.7);
  /* The Fallback */
  min-height: 100px;
  padding: 20px;
  color: #fff;
  text-align: left;
  display: none;
}
@media (max-width: 640px) {
  .modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper .bewertung-item {
    min-height: 100px;
  }
}
.modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper .bewertung-item.active {
  display: block;
}
.modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper .bewertung-item .bewertung-name {
  text-align: center;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper .bewertung-item .bewertung-title {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 12px;
}
.modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper .bewertung-item .bewertung-text {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 12px;
}
.modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper .bewertung-item .bewertung-more {
  text-align: center;
}
.modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper .bewertung-item .bewertung-more .more-btn {
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  padding: 7px 14px;
  color: #910039;
  background: #fff;
  border: 1px solid #910039;
  text-decoration: none;
  line-height: 1;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  background: none;
  border-color: #fff;
  color: #fff;
}
.modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper .bewertung-item .bewertung-more .more-btn:hover {
  background: #910039;
  color: #fff;
}
.modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper .bewertung-item .bewertung-more .more-btn strong {
  font-weight: 400;
  font-size: 18px;
}
.modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper .bewertung-item .bewertung-more .more-btn small {
  font-weight: inherit;
  font-size: 12px;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper .bewertung-item .bewertung-more .more-btn:hover {
  color: #910039;
  background: #fff;
}
.modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper .bewertung-item.SHOW_AS_NEXT, .modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper .bewertung-item.HIDE_FOR_PREV, .modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper .bewertung-item.HIDE_FOR_NEXT, .modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper .bewertung-item.SHOW_AS_PREV {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper .bewertung-item.HIDE_FOR_NEXT, .modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper .bewertung-item.SHOW_AS_PREV {
  -webkit-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  opacity: 0;
  filter: alpha(opacity=0);
}
.modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper .bewertung-item.SHOW_AS_NEXT, .modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper .bewertung-item.HIDE_FOR_PREV {
  -webkit-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0);
  opacity: 0;
  filter: alpha(opacity=0);
}
.modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper .bewertung-item.ANIMATE_TRANSITION_HIDE {
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.modul_abstandshalter_bild .bewertungen-widget .bewertung-item-wrapper .bewertung-item.ANIMATE_TRANSITION_SHOW {
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.modul_abstandshalter_bild .bewertungen-widget .button-bar {
  padding-top: 20px;
  padding-bottom: 20px;
}
.modul_abstandshalter_bild .bewertungen-widget .button-bar .pref-btn, .modul_abstandshalter_bild .bewertungen-widget .button-bar .next-btn {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  cursor: pointer;
  padding: 10px 20px;
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
  background: #910039;
  background: rgba(145, 0, 57, 0.7);
  /* The Fallback */
  border-color: #fff;
  color: #fff;
}
.modul_abstandshalter_bild .bewertungen-widget .button-bar .pref-btn:hover, .modul_abstandshalter_bild .bewertungen-widget .button-bar .next-btn:hover {
  background: #910039;
  background: rgba(145, 0, 57, 1);
  /* The Fallback */
}
@media (min-width: 961px) {
  .content-wrapper--with-sidebar .modul_abstandshalter_bild .image-wrapper {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
.modul_abstandshalter_mit_2_boxen {
  display: block;
  margin-top: 75px;
  margin-bottom: 75px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  color: #222;
  font-size: 14px;
}
.modul_abstandshalter_mit_2_boxen .box {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
  width: 40%;
  position: relative;
  padding: 0px 3%;
  text-align: center;
}
.modul_abstandshalter_mit_2_boxen .box img {
  width: 90%;
  height: auto;
}
@media (max-width: 768px) {
  .modul_abstandshalter_mit_2_boxen .box {
    width: auto;
    padding: 0px 20px;
    margin-bottom: 12px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}
.modul_abstandshalter_mit_2_boxen .box a {
  color: #222;
  line-height: 1.25;
}
.modul_abstandshalter_mit_2_boxen .box a strong {
  color: #910039;
  font-weight: 400;
}
.modul_abstandshalter_mit_2_boxen .box a:hover {
  text-decoration: none;
}
.modul_abstandshalter_mit_2_boxen .box a:hover strong {
  text-decoration: underline;
}
.modul_footer_karte_mit_2_standorte {
  display: block;
  padding-top: 40px;
  padding-bottom: 50px;
  position: relative;
  background: #910039;
  color: #fff;
  text-align: center;
}
.modul_footer_karte_mit_2_standorte > .map {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
  width: 48%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 14px;
}
@media (max-width: 768px) {
  .modul_footer_karte_mit_2_standorte > .map {
    width: 90%;
    margin-bottom: 60px;
  }
  .modul_footer_karte_mit_2_standorte > .map .map_content {
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
  }
}
.modul_footer_karte_mit_2_standorte > .map .map_content {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  line-height: 1.25;
}
.modul_footer_karte_mit_2_standorte > .map .map_content .map_address {
  margin-bottom: 12px;
}
.modul_footer_karte_mit_2_standorte > .map .map_content .map_address strong {
  font-weight: 600;
  letter-spacing: 0.5px;
}
.modul_footer_karte_mit_2_standorte > .map .map_content .map_address p {
  padding: 0px;
  margin: 0px;
}
.modul_footer_karte_mit_2_standorte > .map .map_content .map_info .info-label, .modul_footer_karte_mit_2_standorte > .map .map_content .map_info .info-value {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
  color: inherit;
}
.modul_footer_karte_mit_2_standorte > .map .map_content .map_info .info-label {
  width: 60px;
}
.modul_footer_karte_mit_2_standorte > .map .map_canvas_wrapper {
  position: relative;
}
.modul_footer_karte_mit_2_standorte > .map .map_canvas_wrapper .map_canvas {
  margin-top: 24px;
  width: 90%;
  height: 200px;
  margin-bottom: 6px;
  margin-left: auto;
  margin-right: auto;
}
.modul_footer_karte_mit_2_standorte > .map .map_canvas_wrapper .anti-drag-overlay-for-mobil {
  display: none;
}
@media (max-width: 640px) {
  .modul_footer_karte_mit_2_standorte > .map .map_canvas_wrapper .anti-drag-overlay-for-mobil {
    display: block;
    opacity: 0.001;
    filter: alpha(opacity=0.1);
    background: white;
    position: absolute;
    left: 0px;
    width: 100%;
    height: 100%;
    top: 0px;
  }
}
.modul_footer_karte_mit_2_standorte > .map .btn-wrapper {
  text-align: center;
  margin-top: 12px;
}
.modul_footer_karte_mit_2_standorte > .map .btn-wrapper a {
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  padding: 7px 14px;
  color: #910039;
  background: #fff;
  border: 1px solid #910039;
  text-decoration: none;
  line-height: 1;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  background: #fff;
  color: #910039;
}
.modul_footer_karte_mit_2_standorte > .map .btn-wrapper a:hover {
  background: #910039;
  color: #fff;
}
.modul_footer_karte_mit_2_standorte > .map .btn-wrapper a strong {
  font-weight: 400;
  font-size: 18px;
}
.modul_footer_karte_mit_2_standorte > .map .btn-wrapper a small {
  font-weight: inherit;
  font-size: 12px;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.modul_footer_karte_mit_2_standorte > .map .btn-wrapper a:hover {
  background: #6c0623;
  color: #fff;
}
.modul_header_mit_slider {
  text-align: center;
  background: #6c0623;
}
.modul_header_mit_slider .carousel {
  margin-left: auto;
  margin-right: auto;
}
.modul_header_mit_slider .carousel-control {
  z-index: 100;
}
.modul_header_mit_slider .carousel-indicators li {
  margin-left: 3px;
  margin-right: 3px;
}
@media (max-width: 640px) {
  .modul_header_mit_slider .carousel-indicators {
    display: none;
  }
}
.modul_header_mit_slider .carousel-inner .item {
  text-align: center;
  height: 400px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .modul_header_mit_slider .carousel-inner .item {
    padding-bottom: 70px;
  }
}
.modul_header_mit_slider .carousel-inner .item .modul-background {
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-size: cover;
}
.modul_header_mit_slider .carousel-inner .item .carousel-caption {
  bottom: auto;
  top: 45%;
}
@media (max-width: 640px) {
  .modul_header_mit_slider .carousel-inner .item .carousel-caption {
    bottom: 10px;
    top: auto;
    padding: 0px;
  }
}
.modul_header_mit_slider .icon-wrapper {
  position: absolute;
  text-align: right !important;
  bottom: 20%;
  display: block;
  left: 0px;
  right: 0px;
  width: 100%;
}
@media (max-width: 640px) {
  .modul_header_mit_slider .icon-wrapper {
    display: none;
  }
}
.modul_header_mit_slider .icon-wrapper:hover {
  text-decoration: none;
}
.modul_header_mit_slider .icon-wrapper .icon {
  text-align: center;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
}
.modul_header_mit_slider .icon-wrapper .icon .glyphicon {
  color: #fff;
  -webkit-transform: scaleY(0.6);
  -ms-transform: scaleY(0.6);
  -o-transform: scaleY(0.6);
  transform: scaleY(0.6);
  width: 50px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  font-size: 24px;
  height: 24px;
  margin-top: -31px;
}
.modul_header_kontakt_informationen {
  display: none;
}
#header .modul_header_kontakt_informationen {
  display: block;
}
@media (max-width: 800px) {
  .modul_header_kontakt_informationen {
    display: block;
  }
  #header .modul_header_kontakt_informationen {
    display: none;
  }
}
.modul_header_kontakt_informationen {
  padding-top: 8px;
  color: #222;
  font-size: 400;
  line-height: 1.25;
  margin-left: 400px;
  text-align: right;
  /* Platz für Logo*/
  position: relative;
}
@media (max-width: 800px) {
  .modul_header_kontakt_informationen {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    text-align: center;
  }
}
.modul_header_kontakt_informationen .modul-inner-wrapper {
  text-align: left;
  margin-left: auto;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  padding: 20px;
  padding-top: 30px;
}
@media (max-width: 800px) {
  .modul_header_kontakt_informationen .modul-inner-wrapper {
    /* Auf einer Linie mit dem Header*/
    padding: 0px;
  }
}
.modul_header_kontakt_informationen .modul-inner-wrapper .meta-menu-wrapper {
  margin-bottom: 6px;
}
@media (max-width: 800px) {
  .modul_header_kontakt_informationen .modul-inner-wrapper .meta-menu-wrapper {
    display: block;
    text-align: center;
  }
}
.modul_header_kontakt_informationen .modul-inner-wrapper .meta-menu-wrapper a {
  color: #222;
  text-decoration: none;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  padding: 0px 5px;
  border-right: 1px solid #a1a4a7;
  font-size: 12px;
}
.modul_header_kontakt_informationen .modul-inner-wrapper .meta-menu-wrapper a:hover {
  color: #910039;
}
.modul_header_kontakt_informationen .modul-inner-wrapper .meta-menu-wrapper a:last-child {
  border-right-width: 0px;
}
.modul_header_kontakt_informationen .modul-inner-wrapper .icon-wrapper {
  text-align: right;
}
@media (max-width: 640px) {
  .modul_header_kontakt_informationen .modul-inner-wrapper .icon-wrapper {
    text-align: center;
  }
}
.modul_header_kontakt_informationen .modul-inner-wrapper .icon-wrapper .icon-link {
  text-decoration: none;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  padding: 6px;
  background: #a1a4a7;
  color: #fff;
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  font-size: 14px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  min-width: 20px;
  text-align: center;
  margin-left: 3px;
  margin-bottom: 5px;
}
.modul_header_kontakt_informationen .modul-inner-wrapper .icon-wrapper .icon-link:hover {
  background: #910039;
}
.modul_header_kontakt_informationen .modul-inner-wrapper .link-wrapper {
  margin-top: 14px;
}
.modul_header_kontakt_informationen .modul-inner-wrapper .link-wrapper .info-link {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}
.modul_header_kontakt_informationen .modul-inner-wrapper .link-wrapper .info-link a {
  color: #910039;
  padding-left: 5px;
  text-decoration: underline;
}
.modul_header_kontakt_informationen .modul-inner-wrapper .link-wrapper .info-link a:hover {
  color: #6c0623;
}
.modul_header_kontakt_informationen.use-contrast-view .modul-inner-wrapper .meta-menu-wrapper a {
  font-size: 18px;
}
.modul_header_kontakt_informationen.use-contrast-view .modul-inner-wrapper .icon-wrapper .icon-link {
  font-size: 20px;
  min-width: 28px;
  background: #222;
}
.modul_header_kontakt_informationen.use-contrast-view .modul-inner-wrapper .icon-wrapper .icon-link:hover {
  background: #910039;
}
.modul_header_mit_2_boxen {
  display: block;
  text-align: center;
  background: #910039;
  /* Old browsers */
  background: -moz-linear-gradient(top, #910039 0%, #6c0623 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #910039), color-stop(100%, #6c0623));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #910039 0%, #6c0623 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #910039 0%, #6c0623 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #910039 0%, #6c0623 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, #910039 0%, #6c0623 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#000000',GradientType=0);
  /* IE6-9 */
  padding: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 640px) {
  .modul_header_mit_2_boxen {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.modul_header_mit_2_boxen .box-wrapper {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  color: #222;
  font-size: 14px;
}
.modul_header_mit_2_boxen .box-wrapper .box {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
  width: 40%;
  background: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  position: relative;
  margin: 0px 3%;
  text-align: center;
  min-height: 200px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
}
@media (max-width: 640px) {
  .modul_header_mit_2_boxen .box-wrapper .box {
    display: block;
    width: auto;
    margin: 20px 10px;
  }
}
.modul_header_mit_2_boxen .box-wrapper .box .image-wrapper img {
  width: 90%;
  height: auto;
}
.modul_header_mit_2_boxen .box-wrapper .box .text-wrapper-oben, .modul_header_mit_2_boxen .box-wrapper .box .text-wrapper-unten {
  display: block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.25px;
  line-height: 1.5;
  padding: 10px 15px;
  margin: 10px 15px;
  max-width: 300px;
}
@media (max-width: 768px) {
  .modul_header_mit_2_boxen .box-wrapper .box .text-wrapper-oben, .modul_header_mit_2_boxen .box-wrapper .box .text-wrapper-unten {
    padding: 10px 5px;
    margin: 10px 5px;
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  .modul_header_mit_2_boxen .box-wrapper .box .text-wrapper-oben, .modul_header_mit_2_boxen .box-wrapper .box .text-wrapper-unten {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.modul_header_mit_2_boxen .box-wrapper .box .text-wrapper-oben {
  margin-bottom: 12px;
  color: #910039;
  min-height: 100px;
}
.modul_header_mit_2_boxen .box-wrapper .box .text-wrapper-unten {
  background: #910039;
  color: #fff;
  min-height: 100px;
  margin: 10px 50px;
  margin-bottom: 20px !important;
  position: relative;
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  -o-transform: scale(0.95);
  transform: scale(0.95);
}
.modul_header_mit_2_boxen .box-wrapper .box .text-wrapper-unten:hover {
  background: #6c0623;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.modul_header_mit_2_boxen .box-wrapper .box .text-wrapper-unten img.shadow {
  position: absolute;
  left: -2%;
  height: 20px;
  bottom: -20px;
  width: 105%;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild {
  position: relative;
  text-align: center;
  background: white;
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  max-width: 1400px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 10px;
}
@media (max-width: 960px) {
  .modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (max-width: 960px) {
  .modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media (max-width: 340px) {
  .modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild {
    padding-top: 5px;
    padding-bottom: 10px;
  }
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .submodul-headline-wrapper {
  display: block;
  clear: both;
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper {
  /* background:$myColorA;
   color:$myColorWhite;*/
  text-align: left;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
  width: 44%;
  max-width: 480px;
  margin-right: auto;
  margin-left: auto;
  color: #222;
  font-size: 400;
  position: relative;
  padding: 0px 2%;
  /*  @include SmallerAsIPHONE()
   {
   width:auto;
   margin-left:auto;
   margin-right:auto;
   display:block;
   padding:30px;
   max-width:320px;
   }*/
}
@media (max-width: 960px) {
  .modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
    padding: 30px;
    max-width: 420px;
  }
}
@media (max-width: 640px) {
  .modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper {
    padding: 10px;
    text-align: left;
  }
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content {
  min-height: 90px;
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content .modul-headline {
  color: #910039;
  font-size: 18px;
  font-weight: 200;
  font-style: italic;
  text-transform: none;
  margin-bottom: 6px;
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content .modul-text {
  font-size: 14px;
  color: #222;
  text-align: justify;
  letter-spacing: 0.2px;
  line-height: 1.5;
  color: inherit;
}
@media (max-width: 640px) {
  .modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content .modul-text {
    text-align: left;
    line-height: 1.35;
  }
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content .modul-text ul {
  list-style-type: none;
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content .modul-text ul li::before {
  content: "» ";
  color: #910039;
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content .modul-text p {
  line-height: inherit;
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content .modul-image {
  text-align: center;
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content .modul-image img {
  height: auto;
  max-width: 100%;
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content .modul-image.modul-image--outline img {
  border: 3px solid #ccc;
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content .modul-image .img-caption {
  display: block;
  font-size: 14px;
  color: #222;
  text-align: justify;
  letter-spacing: 0.2px;
  line-height: 1.5;
  font-style: italic;
  padding: 5px;
  text-align: center;
}
@media (max-width: 640px) {
  .modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content .modul-image .img-caption {
    text-align: left;
    line-height: 1.35;
  }
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content .modul-image .img-caption ul {
  list-style-type: none;
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content .modul-image .img-caption ul li::before {
  content: "» ";
  color: #910039;
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content a:hover .img-caption {
  text-decoration: none;
  color: #910039;
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content .modul-sonderfunction {
  color: inherit;
  text-align: left;
  margin-bottom: 12px;
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content .modul-sonderfunction ul {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content .modul-sonderfunction ul li {
  display: block;
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content .modul-sonderfunction ul li a {
  margin-left: -5px;
  margin-right: -5px;
  font-size: 16px;
  display: block;
  color: inherit;
  padding: 5px 10px;
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  text-decoration: none;
  letter-spacing: 1px;
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content .modul-sonderfunction ul li a small {
  display: block;
  font-size: 14px;
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content .modul-sonderfunction ul li a:hover {
  background: #910039;
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content .modul-button .link-btn {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #910039;
  padding: 3px 5px;
  padding-left: 0px;
  padding-bottom: 1px;
  text-decoration: none;
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  display: block;
  text-align: left;
  margin-bottom: 6px;
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content .modul-button .link-btn.use-contrast-view {
  font-size: 21.6px;
  letter-spacing: 1px;
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content .modul-button .link-btn:hover {
  text-decoration: underline;
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper .modul-content .modul-button .link-btn .link-prefix {
  padding-right: 5px;
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild .modul-content-wrapper.modul-content-wrapper--with-background {
  background-size: 100% 100%;
  background-size: cover;
}
.modul_inhalt_2_spalten_mit_text_buttons_und_hintergrundbild.use-contrast-view .modul-content-wrapper .modul-content .modul-headline {
  font-size: 26.88px;
  font-weight: normal;
}
.modul_inhalt_leistungsuebersicht.modul--normal {
  background: white;
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  max-width: 1400px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 10px;
}
@media (max-width: 960px) {
  .modul_inhalt_leistungsuebersicht.modul--normal {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (max-width: 960px) {
  .modul_inhalt_leistungsuebersicht.modul--normal {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media (max-width: 340px) {
  .modul_inhalt_leistungsuebersicht.modul--normal {
    padding-top: 5px;
    padding-bottom: 10px;
  }
}
.modul_inhalt_leistungsuebersicht.modul--normal .box-wrapper {
  text-align: center;
}
.modul_inhalt_leistungsuebersicht.modul--normal .box-wrapper .box {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
  max-width: 270px;
  min-height: 50px;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
}
@media (max-width: 550px) {
  .modul_inhalt_leistungsuebersicht.modul--normal .box-wrapper .box {
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media (max-width: 680px) {
  .modul_inhalt_leistungsuebersicht.modul--normal .box-wrapper .box {
    max-width: 640px;
    margin-left: 10px;
    margin-right: 10px;
  }
}
.modul_inhalt_leistungsuebersicht.modul--hoverbox {
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}
@media (max-width: 960px) {
  .modul_inhalt_leistungsuebersicht.modul--hoverbox {
    margin-right: 10px;
    margin-left: 10px;
  }
}
.modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper {
  text-align: center;
}
.modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper table {
  width: 100%;
  margin: 0;
  padding: 0;
}
@media (max-width: 640px) {
  .modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper table {
    display: block;
  }
  .modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper table tr {
    display: block;
  }
  .modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper table tr td {
    display: block !important;
    width: auto !important;
    border-left-width: 0 !important;
    border-right-width: 0 !important;
    position: relative;
  }
  .modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper table tr td .box {
    min-height: 0;
  }
}
.modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper table tr {
  background: white;
}
.modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper table tr.row--1-children td {
  width: 100%;
}
.modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper table tr td:first-child {
  border-left-width: 0;
}
.modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper table tr td:last-child {
  border-right-width: 0;
}
.modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper table tr.row--2-children td {
  width: 50%;
}
.modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper table tr.row--3-children td {
  width: 33%;
}
.modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper table tr td {
  min-height: 50px;
  border: 2px solid #eee;
  position: relative;
  border-top-width: 0;
  position: relative;
  background: #fff;
}
.modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper table tr td .box {
  padding: 20px;
}
.modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper table tr td .hover-wrapper {
  position: absolute;
  display: block;
  background: #910039;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
}
.modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper table tr td .hover-wrapper .hover-label {
  display: block;
  vertical-align: middle;
  text-align: center;
  color: #fff;
  font-size: 22.4px;
  letter-spacing: 2px;
  padding-top: 70px;
}
.modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper table tr td .hover-wrapper .hover-label .show-hover-box-btn {
  display: none;
}
@media (max-width: 640px) {
  .modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper table tr td .hover-wrapper .hover-label .show-hover-box-btn {
    display: block;
    font-size: 10px;
    padding-bottom: 20px;
    padding-top: 10px;
    background: #910039;
  }
}
@media (max-width: 640px) {
  .modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper table tr td .hover-wrapper .hover-label {
    padding-top: 70px !important;
  }
}
.modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper table tr td:hover .hover-wrapper, .modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper table tr td.my-hover .hover-wrapper {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper table tr td:hover .hover-wrapper .hover-label, .modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper table tr td.my-hover .hover-wrapper .hover-label {
  /*.show-hover-box-btn{
   display:none;
   }*/
}
.modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper table tr td:hover .box a, .modul_inhalt_leistungsuebersicht.modul--hoverbox .box-wrapper table tr td.my-hover .box a {
  text-decoration: underline;
}
.modul_inhalt_leistungsuebersicht .box-wrapper .box {
  color: #222;
  line-height: 1.25;
}
.modul_inhalt_leistungsuebersicht .box-wrapper .box .box_headline {
  font-size: 18px;
  font-weight: 200;
  font-style: italic;
  letter-spacing: 0.5px;
  text-align: left;
  margin-bottom: 12px;
  color: #910039;
  display: block;
}
@media (max-width: 640px) {
  .modul_inhalt_leistungsuebersicht .box-wrapper .box .box_headline {
    font-size: 14px;
  }
}
.modul_inhalt_leistungsuebersicht .box-wrapper .box .box_content {
  font-size: 14px;
  color: #222;
  text-align: justify;
  letter-spacing: 0.2px;
  line-height: 1.5;
  text-align: left;
}
@media (max-width: 640px) {
  .modul_inhalt_leistungsuebersicht .box-wrapper .box .box_content {
    text-align: left;
    line-height: 1.35;
  }
}
.modul_inhalt_leistungsuebersicht .box-wrapper .box .box_content ul {
  list-style-type: none;
}
.modul_inhalt_leistungsuebersicht .box-wrapper .box .box_content ul li::before {
  content: "» ";
  color: #910039;
}
.modul_inhalt_leistungsuebersicht .box-wrapper .box .btn-wrapper a {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #910039;
  padding: 3px 5px;
  padding-left: 0px;
  padding-bottom: 1px;
  text-decoration: none;
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  display: block;
  text-align: left;
}
.modul_inhalt_leistungsuebersicht .box-wrapper .box .btn-wrapper a.use-contrast-view {
  font-size: 21.6px;
  letter-spacing: 1px;
}
.modul_inhalt_leistungsuebersicht .box-wrapper .box .btn-wrapper a:hover {
  text-decoration: underline;
}
.modul_inhalt_leistungsuebersicht .box-wrapper .box .btn-wrapper a .link-prefix {
  padding-right: 5px;
}
.modul_inhalt_leistungsuebersicht.use-contrast-view .box-wrapper .box .box_content {
  font-size: 21.6px;
}
.modul_inhalt_leistungsuebersicht > .btn-wrapper a {
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  padding: 7px 14px;
  color: #910039;
  background: #fff;
  border: 1px solid #910039;
  text-decoration: none;
  line-height: 1;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
}
.modul_inhalt_leistungsuebersicht > .btn-wrapper a:hover {
  background: #910039;
  color: #fff;
}
.modul_inhalt_leistungsuebersicht > .btn-wrapper a strong {
  font-weight: 400;
  font-size: 18px;
}
.modul_inhalt_leistungsuebersicht > .btn-wrapper a small {
  font-weight: inherit;
  font-size: 12px;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.modul_inhalt_buttons + .modul_inhalt_buttons {
  padding-top: 0;
  margin-top: -10px;
}
.modul_inhalt_zentriert_mit_bild_text_und_buttons + .modul_inhalt_zentriert_mit_bild_text_und_buttons {
  padding-top: 0;
  margin-top: -12px;
}
.modul_inhalt_zentriert_mit_bild_text_und_buttons {
  background: white;
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  max-width: 1400px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 10px;
  position: relative;
}
@media (max-width: 960px) {
  .modul_inhalt_zentriert_mit_bild_text_und_buttons {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (max-width: 960px) {
  .modul_inhalt_zentriert_mit_bild_text_und_buttons {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media (max-width: 340px) {
  .modul_inhalt_zentriert_mit_bild_text_und_buttons {
    padding-top: 5px;
    padding-bottom: 10px;
  }
}
.modul_inhalt_zentriert_mit_bild_text_und_buttons .modul-background {
  position: absolute;
  left: 0px;
  right: 0px;
  height: 100%;
  width: 100%;
  top: 0px;
  bottom: 0px;
  background-size: 100% 100%;
  background-size: cover;
}
.modul_inhalt_zentriert_mit_bild_text_und_buttons .headline-img {
  position: absolute;
  width: 80px;
  height: auto;
  top: 20px;
  right: 20px;
}
@media (max-width: 640px) {
  .modul_inhalt_zentriert_mit_bild_text_und_buttons .headline-img {
    width: 60px;
  }
}
@media (max-width: 340px) {
  .modul_inhalt_zentriert_mit_bild_text_und_buttons .headline-img {
    width: 40px;
  }
}
.modul_inhalt_zentriert_mit_bild_text_und_buttons .modul-image {
  text-align: center;
  position: relative;
  margin-bottom: 32px;
  padding-top: 32px;
}
.modul_inhalt_zentriert_mit_bild_text_und_buttons .modul-image img {
  max-width: 80%;
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
}
.modul_inhalt_zentriert_mit_bild_text_und_buttons .modul-image .img-caption {
  display: block;
  font-size: 14px;
  color: #222;
  text-align: justify;
  letter-spacing: 0.2px;
  line-height: 1.5;
  font-style: italic;
  padding: 5px;
  text-align: center;
}
@media (max-width: 640px) {
  .modul_inhalt_zentriert_mit_bild_text_und_buttons .modul-image .img-caption {
    text-align: left;
    line-height: 1.35;
  }
}
.modul_inhalt_zentriert_mit_bild_text_und_buttons .modul-image .img-caption ul {
  list-style-type: none;
}
.modul_inhalt_zentriert_mit_bild_text_und_buttons .modul-image .img-caption ul li::before {
  content: "» ";
  color: #910039;
}
.modul_inhalt_zentriert_mit_bild_text_und_buttons .modul-image a:hover {
  text-decoration: none;
}
.modul_inhalt_zentriert_mit_bild_text_und_buttons .modul-image a:hover img {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
  transform: scale(1.03);
}
.modul_inhalt_zentriert_mit_bild_text_und_buttons.with-headline-img .modul-content {
  margin-top: 40px;
}
.modul_inhalt_zentriert_mit_bild_text_und_buttons .modul-content {
  position: relative;
  line-height: 1.25;
  margin: 12px 0;
  text-align: left;
  padding: 0 40px;
}
@media (max-width: 640px) {
  .modul_inhalt_zentriert_mit_bild_text_und_buttons .modul-content {
    padding: 0 20px;
  }
}
@media (max-width: 340px) {
  .modul_inhalt_zentriert_mit_bild_text_und_buttons .modul-content {
    padding: 0 10px;
  }
}
.modul_inhalt_zentriert_mit_bild_text_und_buttons .link-btns-wrapper {
  text-align: center;
}
.modul_inhalt_zentriert_mit_bild_text_und_buttons .link-btns-wrapper a.link-btn {
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  padding: 7px 14px;
  color: #910039;
  background: #fff;
  border: 1px solid #910039;
  text-decoration: none;
  line-height: 1;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  margin: 5px;
  line-height: 1.25;
}
.modul_inhalt_zentriert_mit_bild_text_und_buttons .link-btns-wrapper a.link-btn:hover {
  background: #910039;
  color: #fff;
}
.modul_inhalt_zentriert_mit_bild_text_und_buttons .link-btns-wrapper a.link-btn strong {
  font-weight: 400;
  font-size: 18px;
}
.modul_inhalt_zentriert_mit_bild_text_und_buttons .link-btns-wrapper a.link-btn small {
  font-weight: inherit;
  font-size: 12px;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.modul_inhalt_zentriert_mit_bild_text_und_buttons.use-contrast-view .link-btns-wrapper a.link-btn {
  margin-top: 20px;
  font-size: 21.6px;
  letter-spacing: 1px;
}
.content-sidebar .modul_inhalt_buttons .link-btns-wrapper a.link-btn {
  font-size: 12px !important;
  padding: 2px 10px !important;
}
.content-sidebar .modul_inhalt_zentriert_mit_bild_text_und_buttons .modul-image {
  margin-top: 6px;
  margin-bottom: 6px;
}
.content-sidebar .modul_inhalt_zentriert_mit_bild_text_und_buttons .modul-image img {
  max-width: 100%;
}
.content-sidebar .modul_inhalt_zentriert_mit_bild_text_und_buttons .modul-content {
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}
.content-sidebar .modul_inhalt_zentriert_mit_bild_text_und_buttons .modul-content.text-of-html-editor p {
  font-size: 12px !important;
  text-align: left;
}
.modul_inhalt_documente_download_liste {
  position: relative;
  text-align: center;
  display: block;
  background: white;
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  max-width: 1400px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 10px;
  background: white;
  clear: both;
}
@media (max-width: 960px) {
  .modul_inhalt_documente_download_liste {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (max-width: 960px) {
  .modul_inhalt_documente_download_liste {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media (max-width: 340px) {
  .modul_inhalt_documente_download_liste {
    padding-top: 5px;
    padding-bottom: 10px;
  }
}
.modul_inhalt_documente_download_liste + .modul_inhalt_documente_download_liste {
  margin-top: -10px;
  padding-top: 0px;
  padding-bottom: 20px;
}
.modul_inhalt_documente_download_liste ul {
  margin-left: 60px !important;
}
.modul_inhalt_bilder_galerie {
  position: relative;
  text-align: center;
  background: white;
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  max-width: 1400px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 10px;
  background: white;
}
@media (max-width: 960px) {
  .modul_inhalt_bilder_galerie {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (max-width: 960px) {
  .modul_inhalt_bilder_galerie {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media (max-width: 340px) {
  .modul_inhalt_bilder_galerie {
    padding-top: 5px;
    padding-bottom: 10px;
  }
}
.modul_inhalt_bilder_galerie .image-wrapper {
  margin: 20px;
}
.modul_inhalt_bilder_galerie img {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  margin: 5px;
  height: auto;
  max-width: 90%;
}
.modul_inhalt_bilder_galerie.modul-style--1 img {
  max-width: 90%;
  margin-bottom: 20px;
}
.modul_inhalt_bilder_galerie.modul-style--2 img {
  max-width: 45%;
}
@media (max-width: 640px) {
  .modul_inhalt_bilder_galerie.modul-style--2 img {
    max-width: 90%;
  }
}
.modul_inhalt_bilder_galerie.modul-style--3 img {
  max-width: 30%;
}
@media (max-width: 640px) {
  .modul_inhalt_bilder_galerie.modul-style--3 img {
    max-width: 90%;
  }
}
.modul_inhalt_bilder_galerie.modul-style--4 img {
  max-width: 23%;
}
@media (max-width: 640px) {
  .modul_inhalt_bilder_galerie.modul-style--4 img {
    max-width: 90%;
  }
}
.modul_inhalt_bilder_galerie.modul-style--5 img {
  max-width: 18%;
}
@media (max-width: 640px) {
  .modul_inhalt_bilder_galerie.modul-style--5 img {
    max-width: 90%;
  }
}
.sidebar-wrapper .modul_inhalt_zentriert_mit_bild_text_und_buttons .modul-image {
  margin-top: 6px;
  margin-bottom: 6px;
}
.modul_inhalt_FAQ_Frage_und_Antwort {
  background: white;
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  max-width: 960px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 10px;
  background: white;
  /*&.use-contrast-view{
   .modul-content-wrapper
   {
   .answer{
   }
   }
   }*/
}
@media (max-width: 960px) {
  .modul_inhalt_FAQ_Frage_und_Antwort {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (max-width: 960px) {
  .modul_inhalt_FAQ_Frage_und_Antwort {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media (max-width: 340px) {
  .modul_inhalt_FAQ_Frage_und_Antwort {
    padding-top: 5px;
    padding-bottom: 10px;
  }
}
.modul_inhalt_FAQ_Frage_und_Antwort .modul-content-wrapper {
  margin: 6px 0;
  padding: 0 40px;
}
@media (max-width: 640px) {
  .modul_inhalt_FAQ_Frage_und_Antwort .modul-content-wrapper {
    padding: 0 20px;
  }
}
@media (max-width: 340px) {
  .modul_inhalt_FAQ_Frage_und_Antwort .modul-content-wrapper {
    padding: 0 10px;
  }
}
.modul_inhalt_FAQ_Frage_und_Antwort .modul-content-wrapper .more-btn {
  font-size: 12px;
  display: block;
  padding: 3px 5px;
  margin-left: -5px;
  cursor: pointer;
}
.modul_inhalt_FAQ_Frage_und_Antwort .modul-content-wrapper .more-btn:hover {
  color: #910039;
  text-decoration: underline;
}
.modul_inhalt_FAQ_Frage_und_Antwort .modul-content-wrapper .question {
  text-transform: none;
  color: #910039;
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 6px;
}
.modul_inhalt_FAQ_Frage_und_Antwort .modul-content-wrapper .answer {
  font-size: 14px;
  color: #222;
  text-align: justify;
  letter-spacing: 0.2px;
  line-height: 1.5;
  position: relative;
  line-height: 1.25;
  text-align: left;
  font-size: 14px;
}
@media (max-width: 640px) {
  .modul_inhalt_FAQ_Frage_und_Antwort .modul-content-wrapper .answer {
    text-align: left;
    line-height: 1.35;
  }
}
.modul_inhalt_FAQ_Frage_und_Antwort .modul-content-wrapper .answer ul {
  list-style-type: none;
}
.modul_inhalt_FAQ_Frage_und_Antwort .modul-content-wrapper .answer ul li::before {
  content: "» ";
  color: #910039;
}
.modul_inhalt_FAQ_Frage_und_Antwort .modul-content-wrapper .answer .text-of-html-editor p {
  font-size: 14px;
}
.modul_sitemap {
  background: white;
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  max-width: 1400px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 10px;
}
@media (max-width: 960px) {
  .modul_sitemap {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (max-width: 960px) {
  .modul_sitemap {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media (max-width: 340px) {
  .modul_sitemap {
    padding-top: 5px;
    padding-bottom: 10px;
  }
}
.modul_sitemap .sitemap-links-wrapper {
  text-align: center;
}
.modul_sitemap .sitemap-links-wrapper .sitemap-links {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  text-align: left;
}
.modul_sitemap .sitemap-links-wrapper .sitemap-links li {
  list-style: none;
}
.modul_sitemap .sitemap-links-wrapper .sitemap-links a {
  display: block;
  padding: 10px 20px;
  color: #910039;
  background: #fff;
  margin-bottom: 1px;
  text-decoration: none;
}
.modul_sitemap .sitemap-links-wrapper .sitemap-links a:hover {
  background: #910039;
  color: #fff;
}
.modul_sitemap .sitemap-links-wrapper .sitemap-links a.category-link {
  background: #910039;
  color: #fff;
  font-weight: 600;
}
.modul_sitemap .sitemap-links-wrapper .sitemap-links a.category-link:hover {
  color: #910039;
  background: #fff;
}
.modul_deutschland_karte {
  background: white;
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  max-width: 960px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 10px;
  background: #910039;
  color: #fff;
}
@media (max-width: 960px) {
  .modul_deutschland_karte {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (max-width: 960px) {
  .modul_deutschland_karte {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media (max-width: 340px) {
  .modul_deutschland_karte {
    padding-top: 5px;
    padding-bottom: 10px;
  }
}
@media (max-width: 640px) {
  .modul_deutschland_karte {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.modul_deutschland_karte .headline-wrapper h3 {
  margin-bottom: 50px;
  margin-top: 12px;
  font-weight: 200;
  letter-spacing: 2px;
  font-size: 28px;
  font-style: italic;
}
.modul_deutschland_karte .map-info-window {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
  width: 450px;
  text-align: left;
}
@media (max-width: 640px) {
  .modul_deutschland_karte .map-info-window {
    width: auto;
    display: block;
  }
}
.modul_deutschland_karte .map-info-window .city-item {
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
  text-align: left;
  width: 190px;
  margin: 5px;
  background: #6c0623;
  color: #fff;
  min-height: 35px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  cursor: pointer;
}
.modul_deutschland_karte .map-info-window .city-item .city-item-details {
  margin-top: 3px;
  display: none;
  font-weight: 400;
  font-size: 12px;
}
.modul_deutschland_karte .map-info-window .city-item .city-item-details .data-tel {
  display: block;
  margin-top: 6px;
}
.modul_deutschland_karte .map-info-window .city-item:hover {
  background: #fff;
  color: #910039;
}
.modul_deutschland_karte .map-info-window .city-item.active, .modul_deutschland_karte .map-info-window .city-item.hover {
  background: #fff;
  color: #910039;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.45);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.45);
}
.modul_deutschland_karte .map-info-window .city-item.active.active .city-item-details, .modul_deutschland_karte .map-info-window .city-item.hover.active .city-item-details {
  display: block;
}
@media (max-width: 640px) {
  .modul_deutschland_karte .map-info-window .city-item {
    display: none;
    width: auto;
  }
  .modul_deutschland_karte .map-info-window .city-item.active {
    display: block;
  }
}
.modul_deutschland_karte.use-contrast-view .map-info-window .city-item {
  font-size: 21.6px;
}
.modul_deutschland_karte.use-contrast-view .map-info-window .city-item .city-item-details {
  margin-top: 12px;
  font-size: 21.6px;
  color: #222;
}
.modul_deutschland_karte.use-contrast-view .map-info-window .city-item .city-item-details * {
  color: inherit;
}
.modul_deutschland_karte .canvas-wrapper {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
  width: 450px;
}
.modul_deutschland_karte .canvas-wrapper .canvas {
  width: 440px;
  height: 590px;
  position: relative;
  border: 0px solid white;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.modul_deutschland_karte .canvas-wrapper .canvas .cell {
  position: absolute;
  height: 7px;
  width: 7px;
  display: none;
}
.modul_deutschland_karte .canvas-wrapper .canvas .cell.cell-marked {
  display: block;
  opacity: 0.5;
  filter: alpha(opacity=50);
  background: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}
.modul_deutschland_karte .canvas-wrapper .canvas .city-link {
  position: absolute;
  height: 25px;
  width: 25px;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  border-radius: 40px;
  cursor: pointer;
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  background: #910039;
  border: 2px solid #fff;
}
.modul_deutschland_karte .canvas-wrapper .canvas .city-link .fa {
  margin-top: 4px;
  font-size: 18px;
  color: #fff;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modul_deutschland_karte .canvas-wrapper .canvas .city-link.main {
  height: 40px;
  width: 40px;
}
.modul_deutschland_karte .canvas-wrapper .canvas .city-link.main .fa {
  margin-top: 4px;
  font-size: 30px;
}
.modul_deutschland_karte .canvas-wrapper .canvas .city-link.active, .modul_deutschland_karte .canvas-wrapper .canvas .city-link.hover, .modul_deutschland_karte .canvas-wrapper .canvas .city-link:hover {
  background: #fff;
  border-color: #910039;
}
.modul_deutschland_karte .canvas-wrapper .canvas .city-link.active .fa, .modul_deutschland_karte .canvas-wrapper .canvas .city-link.hover .fa, .modul_deutschland_karte .canvas-wrapper .canvas .city-link:hover .fa {
  color: #910039;
  opacity: 1;
  filter: alpha(opacity=100);
}
@media (max-width: 960px) {
  .modul_deutschland_karte .canvas-wrapper {
    display: block;
    text-align: center;
    width: auto;
    overflow: hidden;
  }
  .modul_deutschland_karte .canvas-wrapper .canvas {
    margin-bottom: 20px;
    width: 308px;
    height: 413px;
    position: relative;
    border: 0px solid white;
    display: block;
  }
  .modul_deutschland_karte .canvas-wrapper .canvas .cell {
    position: absolute;
    height: 4px;
    width: 4px;
    display: none;
  }
  .modul_deutschland_karte .canvas-wrapper .canvas .cell.cell-marked {
    display: block;
    opacity: 0.5;
    filter: alpha(opacity=50);
    background: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
  }
  .modul_deutschland_karte .canvas-wrapper .canvas .city-link {
    position: absolute;
    height: 17.5px;
    width: 17.5px;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    border-radius: 40px;
    cursor: pointer;
    /* http://www.the-art-of-web.com/css/css-animation/ */
    /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
    -webkit-transition: all 0.25s ease-in-out 0s;
    -moz-transition: all 0.25s ease-in-out 0s;
    -o-transition: all 0.25s ease-in-out 0s;
    -ms-transition: all 0.25s ease-in-out 0s;
    transition: all 0.25s ease-in-out 0s;
    background: #910039;
    border: 2px solid #fff;
  }
  .modul_deutschland_karte .canvas-wrapper .canvas .city-link .fa {
    margin-top: 4px;
    font-size: 12.6px;
    color: #fff;
    opacity: 0.5;
    filter: alpha(opacity=50);
  }
  .modul_deutschland_karte .canvas-wrapper .canvas .city-link.main {
    height: 28px;
    width: 28px;
  }
  .modul_deutschland_karte .canvas-wrapper .canvas .city-link.main .fa {
    margin-top: 4px;
    font-size: 21px;
  }
  .modul_deutschland_karte .canvas-wrapper .canvas .city-link.active, .modul_deutschland_karte .canvas-wrapper .canvas .city-link.hover, .modul_deutschland_karte .canvas-wrapper .canvas .city-link:hover {
    background: #fff;
    border-color: #910039;
  }
  .modul_deutschland_karte .canvas-wrapper .canvas .city-link.active .fa, .modul_deutschland_karte .canvas-wrapper .canvas .city-link.hover .fa, .modul_deutschland_karte .canvas-wrapper .canvas .city-link:hover .fa {
    color: #910039;
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.modul_special_abstandshalter_link_zu_social_media {
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  max-width: 984px;
  display: block;
}
.modul_special_abstandshalter_link_zu_social_media.stil--logos-in-social-media-color a.box.box--fb .box-icon {
  background: #1877f2;
}
.modul_special_abstandshalter_link_zu_social_media.stil--logos-in-social-media-color a.box.box--fb:hover .box-icon {
  background: #09499b;
  color: #fff;
}
.modul_special_abstandshalter_link_zu_social_media.stil--btns-in-social-media-color a.box.box--fb {
  background: #1877f2;
}
.modul_special_abstandshalter_link_zu_social_media.stil--btns-in-social-media-color a.box.box--fb .box-icon {
  background: #fff;
  background: rgba(255, 255, 255, 0.75);
  color: #1877f2;
}
.modul_special_abstandshalter_link_zu_social_media.stil--btns-in-social-media-color a.box.box--fb:hover .box-icon {
  background: #09499b;
  color: #fff;
}
.modul_special_abstandshalter_link_zu_social_media.stil--logos-in-social-media-color a.box.box--twitter .box-icon {
  background: #1da1f2;
}
.modul_special_abstandshalter_link_zu_social_media.stil--logos-in-social-media-color a.box.box--twitter:hover .box-icon {
  background: #0967a0;
  color: #fff;
}
.modul_special_abstandshalter_link_zu_social_media.stil--btns-in-social-media-color a.box.box--twitter {
  background: #1da1f2;
}
.modul_special_abstandshalter_link_zu_social_media.stil--btns-in-social-media-color a.box.box--twitter .box-icon {
  background: #fff;
  background: rgba(255, 255, 255, 0.75);
  color: #1da1f2;
}
.modul_special_abstandshalter_link_zu_social_media.stil--btns-in-social-media-color a.box.box--twitter:hover .box-icon {
  background: #0967a0;
  color: #fff;
}
.modul_special_abstandshalter_link_zu_social_media.stil--logos-in-social-media-color a.box.box--google .box-icon {
  background: #ea4335;
}
.modul_special_abstandshalter_link_zu_social_media.stil--logos-in-social-media-color a.box.box--google:hover .box-icon {
  background: #a81d11;
  color: #fff;
}
.modul_special_abstandshalter_link_zu_social_media.stil--btns-in-social-media-color a.box.box--google {
  background: #ea4335;
}
.modul_special_abstandshalter_link_zu_social_media.stil--btns-in-social-media-color a.box.box--google .box-icon {
  background: #fff;
  background: rgba(255, 255, 255, 0.75);
  color: #ea4335;
}
.modul_special_abstandshalter_link_zu_social_media.stil--btns-in-social-media-color a.box.box--google:hover .box-icon {
  background: #a81d11;
  color: #fff;
}
.modul_special_abstandshalter_link_zu_social_media.stil--logos-in-social-media-color a.box.box--instagram .box-icon {
  background: #f46f30;
}
.modul_special_abstandshalter_link_zu_social_media.stil--logos-in-social-media-color a.box.box--instagram:hover .box-icon {
  background: #b4400a;
  color: #fff;
}
.modul_special_abstandshalter_link_zu_social_media.stil--btns-in-social-media-color a.box.box--instagram {
  background: #f46f30;
}
.modul_special_abstandshalter_link_zu_social_media.stil--btns-in-social-media-color a.box.box--instagram .box-icon {
  background: #fff;
  background: rgba(255, 255, 255, 0.75);
  color: #f46f30;
}
.modul_special_abstandshalter_link_zu_social_media.stil--btns-in-social-media-color a.box.box--instagram:hover .box-icon {
  background: #b4400a;
  color: #fff;
}
@media (max-width: 960px) {
  .modul_special_abstandshalter_link_zu_social_media {
    margin-right: 10px;
    margin-left: 10px;
  }
}
.modul_special_abstandshalter_link_zu_social_media:hover {
  z-index: 30 !important;
}
.modul_special_abstandshalter_link_zu_social_media a.box {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
  text-align: left;
  position: relative;
  min-height: 60px;
  width: 49.5%;
  min-width: 300px;
  padding: 0;
  margin: 2px 0.25%;
  background: #910039;
  color: #fff;
  line-height: 1.25;
}
.modul_special_abstandshalter_link_zu_social_media a.box .box-icon {
  float: left;
  width: 20px;
  height: 20px;
  margin: 10px;
  padding: 10px;
  text-align: center;
  color: #fff;
  background: #6c0623;
  display: block;
  font-size: 18px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
}
.modul_special_abstandshalter_link_zu_social_media a.box .box-label {
  padding: 10px;
  margin-left: 70px;
  display: block;
  margin-top: 11px;
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
}
@media (max-width: 960px) {
  .modul_special_abstandshalter_link_zu_social_media a.box .box-label {
    margin-top: 0;
  }
}
.modul_special_abstandshalter_link_zu_social_media a.box:hover .box-icon {
  color: #6c0623;
  background: #fff;
}
.modul_special_bewertungen {
  background: white;
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  max-width: 960px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 10px;
}
@media (max-width: 960px) {
  .modul_special_bewertungen {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (max-width: 960px) {
  .modul_special_bewertungen {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media (max-width: 340px) {
  .modul_special_bewertungen {
    padding-top: 5px;
    padding-bottom: 10px;
  }
}
.modul_special_bewertungen .bewertung-item-wrapper {
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}
.modul_special_bewertungen .bewertung-item-wrapper .bewertung-item {
  display: block;
  margin-bottom: 80px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 640px) {
  .modul_special_bewertungen .bewertung-item-wrapper .bewertung-item {
    margin-bottom: 40px;
  }
}
.modul_special_bewertungen .bewertung-item-wrapper .bewertung-item .bewertung-title {
  color: #910039;
  font-size: 18px;
  margin-bottom: 12px;
}
.modul_special_bewertungen .bewertung-item-wrapper .bewertung-item .bewertung-text {
  color: #222;
  font-size: 18px;
  font-weight: 200;
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.35;
}
@media (max-width: 640px) {
  .modul_special_bewertungen .bewertung-item-wrapper .bewertung-item .bewertung-text {
    font-size: 14px;
  }
}
.modul_special_bewertungen .bewertung-item-wrapper .bewertung-item .bewertung-text p + p {
  margin-top: 12px;
}
.modul_special_bewertungen .bewertung-item-wrapper .bewertung-item .bewertung-name {
  color: #910039;
  font-style: italic;
}
.modul_special_bewertungen .bewertung-item-wrapper .bewertung-item .bewertung-name a {
  color: inherit;
  text-decoration: underline;
}
.modul_special_bewertungen .bewertung-item-wrapper .bewertung-item .bewertung-name a:hover {
  color: #6c0623;
}
@media (max-width: 640px) {
  .modul_special_bewertungen .bewertung-item-wrapper .bewertung-item .bewertung-name {
    font-size: 14px;
  }
}
.rex-slice-output .modul_special_bewertungen_slider .bewertungen-widget {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}
.modul_special_bewertungen_slider {
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  max-width: 1400px;
  padding-left: 10px;
  padding-right: 10px;
  background: #910039;
  background: #910039;
  background: rgba(145, 0, 57, 1);
  /* The Fallback */
  color: #fff;
}
@media (max-width: 960px) {
  .modul_special_bewertungen_slider {
    margin-right: 10px;
    margin-left: 10px;
  }
}
.modul_special_bewertungen_slider:hover {
  z-index: 30 !important;
}
.modul_special_bewertungen_slider .button-bar .pref-btn, .modul_special_bewertungen_slider .button-bar .next-btn {
  border: 1px solid #fff;
  color: #fff;
}
.modul_special_bewertungen_slider .button-bar .pref-btn:hover, .modul_special_bewertungen_slider .button-bar .next-btn:hover {
  color: #910039;
  background: #fff;
}
.modul_special_bewertungen_slider .bewertung-more .more-btn {
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  padding: 7px 14px;
  color: #910039;
  background: #fff;
  border: 1px solid #910039;
  text-decoration: none;
  line-height: 1;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  background: none;
  border-color: #fff;
  color: #fff;
}
.modul_special_bewertungen_slider .bewertung-more .more-btn:hover {
  background: #910039;
  color: #fff;
}
.modul_special_bewertungen_slider .bewertung-more .more-btn strong {
  font-weight: 400;
  font-size: 18px;
}
.modul_special_bewertungen_slider .bewertung-more .more-btn small {
  font-weight: inherit;
  font-size: 12px;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.modul_special_bewertungen_slider .bewertung-more .more-btn:hover {
  color: #910039;
  background: #fff;
}
.modul_special_bewertungen_slider.modul-theme--white-bg {
  background: #fff;
  background: #fff;
  background: rgba(255, 255, 255, 1);
  /* The Fallback */
  color: #910039;
}
.modul_special_bewertungen_slider.modul-theme--white-bg .button-bar .pref-btn, .modul_special_bewertungen_slider.modul-theme--white-bg .button-bar .next-btn {
  border: 1px solid #910039;
  color: #910039;
}
.modul_special_bewertungen_slider.modul-theme--white-bg .button-bar .pref-btn:hover, .modul_special_bewertungen_slider.modul-theme--white-bg .button-bar .next-btn:hover {
  color: #fff;
  background: #910039;
}
.modul_special_bewertungen_slider.modul-theme--white-bg .bewertung-more .more-btn {
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  padding: 7px 14px;
  color: #910039;
  background: #fff;
  border: 1px solid #910039;
  text-decoration: none;
  line-height: 1;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  background: none;
  border-color: #910039;
  color: #910039;
}
.modul_special_bewertungen_slider.modul-theme--white-bg .bewertung-more .more-btn:hover {
  background: #910039;
  color: #fff;
}
.modul_special_bewertungen_slider.modul-theme--white-bg .bewertung-more .more-btn strong {
  font-weight: 400;
  font-size: 18px;
}
.modul_special_bewertungen_slider.modul-theme--white-bg .bewertung-more .more-btn small {
  font-weight: inherit;
  font-size: 12px;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.modul_special_bewertungen_slider.modul-theme--white-bg .bewertung-more .more-btn:hover {
  color: #fff;
  background: #910039;
}
.modul_special_bewertungen_slider.modul-theme--transparent-bg {
  background: #910039;
  background: #910039;
  background: rgba(145, 0, 57, 0.8);
  /* The Fallback */
  color: #fff;
}
.modul_special_bewertungen_slider.modul-theme--transparent-bg .button-bar .pref-btn, .modul_special_bewertungen_slider.modul-theme--transparent-bg .button-bar .next-btn {
  border: 1px solid #fff;
  color: #fff;
}
.modul_special_bewertungen_slider.modul-theme--transparent-bg .button-bar .pref-btn:hover, .modul_special_bewertungen_slider.modul-theme--transparent-bg .button-bar .next-btn:hover {
  color: #910039;
  background: #fff;
}
.modul_special_bewertungen_slider.modul-theme--transparent-bg .bewertung-more .more-btn {
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  padding: 7px 14px;
  color: #910039;
  background: #fff;
  border: 1px solid #910039;
  text-decoration: none;
  line-height: 1;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  background: none;
  border-color: #fff;
  color: #fff;
}
.modul_special_bewertungen_slider.modul-theme--transparent-bg .bewertung-more .more-btn:hover {
  background: #910039;
  color: #fff;
}
.modul_special_bewertungen_slider.modul-theme--transparent-bg .bewertung-more .more-btn strong {
  font-weight: 400;
  font-size: 18px;
}
.modul_special_bewertungen_slider.modul-theme--transparent-bg .bewertung-more .more-btn small {
  font-weight: inherit;
  font-size: 12px;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.modul_special_bewertungen_slider.modul-theme--transparent-bg .bewertung-more .more-btn:hover {
  color: #910039;
  background: #fff;
}
.modul_special_bewertungen_slider.modul-theme--grey-bg-white-font {
  background: #222;
  background: #222;
  background: rgba(34, 34, 34, 1);
  /* The Fallback */
  color: #fff;
}
.modul_special_bewertungen_slider.modul-theme--grey-bg-white-font .button-bar .pref-btn, .modul_special_bewertungen_slider.modul-theme--grey-bg-white-font .button-bar .next-btn {
  border: 1px solid #fff;
  color: #fff;
}
.modul_special_bewertungen_slider.modul-theme--grey-bg-white-font .button-bar .pref-btn:hover, .modul_special_bewertungen_slider.modul-theme--grey-bg-white-font .button-bar .next-btn:hover {
  color: #222;
  background: #fff;
}
.modul_special_bewertungen_slider.modul-theme--grey-bg-white-font .bewertung-more .more-btn {
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  padding: 7px 14px;
  color: #910039;
  background: #fff;
  border: 1px solid #910039;
  text-decoration: none;
  line-height: 1;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  background: none;
  border-color: #fff;
  color: #fff;
}
.modul_special_bewertungen_slider.modul-theme--grey-bg-white-font .bewertung-more .more-btn:hover {
  background: #910039;
  color: #fff;
}
.modul_special_bewertungen_slider.modul-theme--grey-bg-white-font .bewertung-more .more-btn strong {
  font-weight: 400;
  font-size: 18px;
}
.modul_special_bewertungen_slider.modul-theme--grey-bg-white-font .bewertung-more .more-btn small {
  font-weight: inherit;
  font-size: 12px;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.modul_special_bewertungen_slider.modul-theme--grey-bg-white-font .bewertung-more .more-btn:hover {
  color: #222;
  background: #fff;
}
.modul_special_bewertungen_slider.modul-theme--grey-bg-dark-font {
  background: #222;
  background: #222;
  background: rgba(34, 34, 34, 1);
  /* The Fallback */
  color: #222;
}
.modul_special_bewertungen_slider.modul-theme--grey-bg-dark-font .button-bar .pref-btn, .modul_special_bewertungen_slider.modul-theme--grey-bg-dark-font .button-bar .next-btn {
  border: 1px solid #222;
  color: #222;
}
.modul_special_bewertungen_slider.modul-theme--grey-bg-dark-font .button-bar .pref-btn:hover, .modul_special_bewertungen_slider.modul-theme--grey-bg-dark-font .button-bar .next-btn:hover {
  color: #222;
  background: #222;
}
.modul_special_bewertungen_slider.modul-theme--grey-bg-dark-font .bewertung-more .more-btn {
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  padding: 7px 14px;
  color: #910039;
  background: #fff;
  border: 1px solid #910039;
  text-decoration: none;
  line-height: 1;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  background: none;
  border-color: #222;
  color: #222;
}
.modul_special_bewertungen_slider.modul-theme--grey-bg-dark-font .bewertung-more .more-btn:hover {
  background: #910039;
  color: #fff;
}
.modul_special_bewertungen_slider.modul-theme--grey-bg-dark-font .bewertung-more .more-btn strong {
  font-weight: 400;
  font-size: 18px;
}
.modul_special_bewertungen_slider.modul-theme--grey-bg-dark-font .bewertung-more .more-btn small {
  font-weight: inherit;
  font-size: 12px;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.modul_special_bewertungen_slider.modul-theme--grey-bg-dark-font .bewertung-more .more-btn:hover {
  color: #222;
  background: #222;
}
.modul_special_bewertungen_slider .bewertungen-widget .bewertung-item-wrapper {
  overflow: hidden;
  min-height: 160px;
  text-align: center;
}
.modul_special_bewertungen_slider .bewertungen-widget .bewertung-item-wrapper .bewertung-item {
  /*	@include SmallerAs($breakPointSlider)
   {
   min-height:360px;
   }
   */
  position: relative;
  min-height: 140px;
  padding: 20px;
  text-align: left;
  display: none;
}
@media (max-width: 420px) {
  .modul_special_bewertungen_slider .bewertungen-widget .bewertung-item-wrapper .bewertung-item {
    min-height: 360px;
  }
}
.modul_special_bewertungen_slider .bewertungen-widget .bewertung-item-wrapper .bewertung-item.active {
  display: block;
}
.modul_special_bewertungen_slider .bewertungen-widget .bewertung-item-wrapper .bewertung-item .bewertung-name {
  text-align: right;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 6px;
  line-height: 1.25;
}
.modul_special_bewertungen_slider .bewertungen-widget .bewertung-item-wrapper .bewertung-item .bewertung-title {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 12px;
  padding-right: 100px;
}
@media (max-width: 420px) {
  .modul_special_bewertungen_slider .bewertungen-widget .bewertung-item-wrapper .bewertung-item .bewertung-title {
    padding-right: 0px;
  }
}
.modul_special_bewertungen_slider .bewertungen-widget .bewertung-item-wrapper .bewertung-item .bewertung-text {
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 12px;
  padding-right: 100px;
}
@media (max-width: 420px) {
  .modul_special_bewertungen_slider .bewertungen-widget .bewertung-item-wrapper .bewertung-item .bewertung-text {
    padding-right: 0px;
  }
}
.modul_special_bewertungen_slider .bewertungen-widget .bewertung-item-wrapper .bewertung-item .bewertung-more {
  text-align: right;
  position: absolute;
  right: 10px;
  top: 10px;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
}
@media (max-width: 420px) {
  .modul_special_bewertungen_slider .bewertungen-widget .bewertung-item-wrapper .bewertung-item .bewertung-more {
    top: auto;
    bottom: -50px;
  }
}
.modul_special_bewertungen_slider .bewertungen-widget .bewertung-item-wrapper .bewertung-item.SHOW_AS_NEXT, .modul_special_bewertungen_slider .bewertungen-widget .bewertung-item-wrapper .bewertung-item.HIDE_FOR_PREV, .modul_special_bewertungen_slider .bewertungen-widget .bewertung-item-wrapper .bewertung-item.HIDE_FOR_NEXT, .modul_special_bewertungen_slider .bewertungen-widget .bewertung-item-wrapper .bewertung-item.SHOW_AS_PREV {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modul_special_bewertungen_slider .bewertungen-widget .bewertung-item-wrapper .bewertung-item.HIDE_FOR_NEXT, .modul_special_bewertungen_slider .bewertungen-widget .bewertung-item-wrapper .bewertung-item.SHOW_AS_PREV {
  -webkit-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  opacity: 0;
  filter: alpha(opacity=0);
}
.modul_special_bewertungen_slider .bewertungen-widget .bewertung-item-wrapper .bewertung-item.SHOW_AS_NEXT, .modul_special_bewertungen_slider .bewertungen-widget .bewertung-item-wrapper .bewertung-item.HIDE_FOR_PREV {
  -webkit-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0);
  opacity: 0;
  filter: alpha(opacity=0);
}
.modul_special_bewertungen_slider .bewertungen-widget .bewertung-item-wrapper .bewertung-item.ANIMATE_TRANSITION_HIDE {
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.modul_special_bewertungen_slider .bewertungen-widget .bewertung-item-wrapper .bewertung-item.ANIMATE_TRANSITION_SHOW {
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.modul_special_bewertungen_slider .button-bar {
  padding-top: 10px;
  padding-bottom: 20px;
}
@media (max-width: 420px) {
  .modul_special_bewertungen_slider .button-bar {
    text-align: left;
  }
}
.modul_special_bewertungen_slider .button-bar .pref-btn, .modul_special_bewertungen_slider .button-bar .next-btn {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  cursor: pointer;
  padding: 10px 20px;
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
}
.modul_special_blog_overview_header {
  background: white;
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  max-width: 960px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 10px;
}
@media (max-width: 960px) {
  .modul_special_blog_overview_header {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (max-width: 960px) {
  .modul_special_blog_overview_header {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media (max-width: 340px) {
  .modul_special_blog_overview_header {
    padding-top: 5px;
    padding-bottom: 10px;
  }
}
.modul_special_blog_overview_header h3 {
  color: #910039;
  font-size: 18px;
  font-weight: 200;
  font-style: italic;
  text-transform: none;
  margin-bottom: 6px;
}
.modul_special_blog_eintrag + .modul_inhalt_zentriert_mit_bild_text_und_buttons {
  clear: both;
}
.modul_special_blog_eintrag {
  background: white;
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  max-width: 960px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 10px;
  padding-bottom: 20px !important;
}
@media (max-width: 960px) {
  .modul_special_blog_eintrag {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (max-width: 960px) {
  .modul_special_blog_eintrag {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media (max-width: 340px) {
  .modul_special_blog_eintrag {
    padding-top: 5px;
    padding-bottom: 10px;
  }
}
@media (max-width: 640px) {
  .modul_special_blog_eintrag {
    padding-bottom: 0px !important;
  }
}
.modul_special_blog_eintrag.hidden-item-for-lazy-load-btn {
  display: none !important;
}
.modul_special_blog_eintrag .submodul-headline-wrapper {
  text-align: center;
  margin-bottom: 0px;
  margin-top: 10px;
}
.modul_special_blog_eintrag .submodul-headline-wrapper .submodul-headline {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  position: relative;
}
@media (max-width: 640px) {
  .modul_special_blog_eintrag .submodul-headline-wrapper .submodul-headline {
    display: block;
  }
}
.modul_special_blog_eintrag .submodul-headline-wrapper .submodul-headline .headline {
  font-size: 28px;
  font-weight: 200;
  font-style: italic;
  padding: 0;
  margin: 0;
  color: #910039;
  margin-bottom: 6px;
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
  line-height: 1.35;
}
@media (max-width: 640px) {
  .modul_special_blog_eintrag .submodul-headline-wrapper .submodul-headline .headline {
    font-size: 20px;
  }
}
.modul_special_blog_eintrag .submodul-headline-wrapper .submodul-headline .headline-border-wrapper {
  position: relative;
  text-align: center;
  display: block;
}
.modul_special_blog_eintrag .submodul-headline-wrapper .submodul-headline .headline-border-wrapper .headline-border {
  text-align: center;
}
.modul_special_blog_eintrag .submodul-headline-wrapper .submodul-headline .headline-border-wrapper .headline-border .headline-border-box {
  width: 90%;
  height: 3px;
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  background: #910039;
  margin-left: auto;
  margin-right: auto;
}
.modul_special_blog_eintrag .submodul-headline-wrapper .submodul-headline .blog-date-info-wrapper {
  display: block;
  padding: 10px;
  margin-bottom: 12px;
}
.modul_special_blog_eintrag .submodul-headline-wrapper .submodul-headline .blog-date-info-wrapper .blog-date-info {
  font-size: 14px;
  color: #a1a4a7;
}
.modul_special_blog_eintrag .submodul-headline-wrapper.visible-in-viewport .submodul-headline .headline-border-wrapper .headline-border .headline-border-box {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}
.modul_special_blog_eintrag .modul-image {
  text-align: center;
  position: relative;
  margin-bottom: 32px;
  margin-top: 0px;
}
.modul_special_blog_eintrag .modul-image img {
  max-width: 100%;
}
.modul_special_blog_eintrag .modul-image .image-wrapper-for-title {
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  margin-left: auto;
  margin-right: auto;
}
.modul_special_blog_eintrag .modul-image .img-caption {
  display: block;
  font-size: 14px;
  color: #222;
  text-align: justify;
  letter-spacing: 0.2px;
  line-height: 1.5;
  font-style: italic;
  padding: 5px;
  text-align: center;
}
@media (max-width: 640px) {
  .modul_special_blog_eintrag .modul-image .img-caption {
    text-align: left;
    line-height: 1.35;
  }
}
.modul_special_blog_eintrag .modul-image .img-caption ul {
  list-style-type: none;
}
.modul_special_blog_eintrag .modul-image .img-caption ul li::before {
  content: "» ";
  color: #910039;
}
.modul_special_blog_eintrag .modul-image a img {
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  max-width: 100%;
}
.modul_special_blog_eintrag .modul-image a:hover {
  text-decoration: none;
}
.modul_special_blog_eintrag .modul-image a:hover img {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
  transform: scale(1.03);
}
.modul_special_blog_eintrag .modul-content {
  position: relative;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.25;
  text-align: left;
}
.modul_special_blog_eintrag .modul-content.text-of-html-editor p {
  font-size: 14px !important;
  text-align: left;
}
@media (max-width: 640px) {
  .modul_special_blog_eintrag .modul-content {
    margin: 12px 20px;
  }
}
@media (max-width: 340px) {
  .modul_special_blog_eintrag .modul-content {
    margin: 12px 10px;
  }
}
.modul_special_blog_eintrag .modul-content .link-btns-wrapper {
  text-align: center;
  margin-top: 12px;
}
.modul_special_blog_eintrag .modul-content .link-btns-wrapper a.link-btn {
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  padding: 7px 14px;
  color: #910039;
  background: #fff;
  border: 1px solid #910039;
  text-decoration: none;
  line-height: 1;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  margin: 5px;
  line-height: 1.25;
}
.modul_special_blog_eintrag .modul-content .link-btns-wrapper a.link-btn:hover {
  background: #910039;
  color: #fff;
}
.modul_special_blog_eintrag .modul-content .link-btns-wrapper a.link-btn strong {
  font-weight: 400;
  font-size: 18px;
}
.modul_special_blog_eintrag .modul-content .link-btns-wrapper a.link-btn small {
  font-weight: inherit;
  font-size: 12px;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.modul_special_blog_eintrag .modul-content .link-btns-wrapper a.link-btn.active {
  text-decoration: underline;
}
.modul_special_blog_eintrag.modul_special_blog_eintrag--vorschau-klein {
  width: 340px;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
  margin: 10px;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .modul_special_blog_eintrag.modul_special_blog_eintrag--vorschau-klein {
    /*&.modul_special_blog_eintrag--ohne-bild
     {
     width:700px;
     margin-left:auto;
     margin-right:auto;
     float:none !important;
     }*/
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    float: none !important;
  }
}
.modul_special_blog_eintrag.modul_special_blog_eintrag--vorschau-klein:nth-child(even) {
  margin-left: 0;
  float: left;
  clear: both;
}
.modul_special_blog_eintrag.modul_special_blog_eintrag--vorschau-klein:nth-child(odd) {
  margin-right: 0;
  float: right;
}
@media (max-width: 960px) {
  .modul_special_blog_eintrag.modul_special_blog_eintrag--vorschau-klein {
    margin: 10px !important;
    float: none !important;
  }
}
.modul_special_blog_eintrag.modul_special_blog_eintrag--vorschau-klein .submodul-headline-wrapper .submodul-headline .headline {
  color: #910039;
  font-size: 18px;
  font-weight: 200;
  font-style: italic;
  text-transform: none;
  margin-bottom: 6px;
  line-height: 1.35;
}
.modul_special_blog_eintrag.modul_special_blog_eintrag--vorschau-klein .submodul-headline-wrapper .headline-border-wrapper {
  display: none;
}
.modul_special_blog_eintrag.modul_special_blog_eintrag--vorschau-klein .modul-content.text-of-html-editor p {
  font-size: 12px !important;
}
.modul_special_blog_eintrag.modul_special_blog_eintrag--vorschau-klein .modul-content .link-btns-wrapper a.link-btn {
  font-size: 12px !important;
}
.modul_special_blog_eintrag.use-contrast-view .modul-content.text-of-html-editor p, .modul_special_blog_eintrag.use-contrast-view.modul_special_blog_eintrag--vorschau-klein .modul-content.text-of-html-editor p {
  font-size: 21.6px !important;
}
.modul_special_blog_sidebar_menu {
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  max-width: 960px;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 32px;
}
@media (max-width: 960px) {
  .modul_special_blog_sidebar_menu {
    margin-right: 10px;
    margin-left: 10px;
  }
}
.modul_special_blog_sidebar_menu .sidebar-menu + .sidebar-menu {
  margin-top: 32px;
}
.modul_special_blog_sidebar_menu .sidebar-menu {
  text-align: left;
  font-size: 12px;
  color: #222;
}
.modul_special_blog_sidebar_menu .sidebar-menu .sidebar-menu__headline {
  text-align: left;
  display: block;
  font-size: 14px;
  color: #910039;
  margin-bottom: 6px;
  font-style: italic;
}
.modul_special_blog_sidebar_menu .sidebar-menu ul {
  margin-left: 10px;
}
.modul_special_blog_sidebar_menu .sidebar-menu ul li {
  margin-left: 10px;
  list-style: none;
}
.modul_special_blog_sidebar_menu .sidebar-menu ul li a {
  display: block;
  padding: 4px 0px;
  font-weight: 600;
  color: inherit;
}
.modul_special_blog_sidebar_menu .sidebar-menu ul li a:hover, .modul_special_blog_sidebar_menu .sidebar-menu ul li a.active {
  text-decoration: underline;
}
.special_Downloadliste_mit_Bestellformular {
  background: white;
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  max-width: 1400px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 10px;
}
@media (max-width: 960px) {
  .special_Downloadliste_mit_Bestellformular {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (max-width: 960px) {
  .special_Downloadliste_mit_Bestellformular {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media (max-width: 340px) {
  .special_Downloadliste_mit_Bestellformular {
    padding-top: 5px;
    padding-bottom: 10px;
  }
}
.special_Downloadliste_mit_Bestellformular .download-item-wrapper {
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}
.special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item {
  display: block;
  padding: 10px;
  border-top: 1px dotted #ccc;
}
.special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-image, .special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-content {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
  position: relative;
}
.special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-image {
  text-align: center;
  background: #ccc;
  width: 30%;
  padding: 0;
}
@media (max-width: 640px) {
  .special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-image {
    width: 98%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
  }
}
.special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-image img {
  max-height: 160px;
  width: auto;
  margin: 0;
  margin-bottom: -2px;
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
}
.special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-image:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4);
}
.special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-content {
  text-align: left;
  margin-left: 1%;
  width: 68%;
  padding-top: 5px;
}
@media (max-width: 640px) {
  .special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-content {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-content .download-type {
  color: #910039;
  font-size: 12px;
  font-style: italic;
  margin-bottom: 6px;
  display: block;
}
.special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-content .download-title {
  color: #910039;
  font-size: 18px;
  font-weight: 200;
  font-style: italic;
  text-transform: none;
  margin-bottom: 6px;
}
.special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-content .download-text {
  font-size: 14px;
  color: #222;
  text-align: justify;
  letter-spacing: 0.2px;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-content .download-text {
    text-align: left;
    line-height: 1.35;
  }
}
.special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-content .download-text ul {
  list-style-type: none;
}
.special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-content .download-text ul li::before {
  content: "» ";
  color: #910039;
}
.special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-action {
  margin-top: 12px;
  margin-bottom: 12px;
  text-align: left;
}
.special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-action .form-field {
  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 5px;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
  font-size: 14px;
}
.special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-action .form-field * {
  font-size: inherit;
}
.special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-action .form-field.form-field--count {
  display: block;
  opacity: 0.75;
  filter: alpha(opacity=75);
  font-size: 12px;
}
.special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-action .form-field label, .special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-action .form-field a {
  display: block;
  color: #910039;
  min-height: 20px;
  font-size: 14px !important;
  font-weight: 14px !important;
  line-height: 1;
}
.special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-action .form-field label *, .special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-action .form-field a * {
  color: inherit;
  padding: 0;
  margin: 0;
  line-height: 1;
  font-size: 14px !important;
  font-weight: 14px !important;
}
.special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-action .form-field label input, .special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-action .form-field a input {
  margin-right: 5px;
  margin-top: -2px;
}
.special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-action .form-field label input, .special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-action .form-field a input, .special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-action .form-field label .label, .special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-action .form-field a .label {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  margin-bottom: 1px;
}
.special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-action .form-field label {
  margin-right: 24px;
}
.special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-action .form-field.use-contrast-view {
  font-size: 21.6px !important;
}
.special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-action .form-field.use-contrast-view label, .special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-action .form-field.use-contrast-view a, .special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-action .form-field.use-contrast-view label input, .special_Downloadliste_mit_Bestellformular .download-item-wrapper .download-item .download-item-action .form-field.use-contrast-view label .label {
  font-size: 21.6px !important;
}
.special_Downloadliste_mit_Bestellformular .modul-form-content {
  margin-top: 30px;
  width: 68%;
  margin-left: auto;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .special_Downloadliste_mit_Bestellformular .modul-form-content {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.special_Downloadliste_mit_Bestellformular .modul-form-content .modul-headline {
  color: #910039;
  font-size: 18px;
  font-weight: 200;
  font-style: italic;
  text-transform: none;
  margin-bottom: 6px;
  text-align: left;
  margin-bottom: 12px;
}
.special_Downloadliste_mit_Bestellformular .modul-form-content .form-group-set {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
  width: 49%;
}
@media (max-width: 640px) {
  .special_Downloadliste_mit_Bestellformular .modul-form-content .form-group-set {
    display: block;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
    margin-bottom: 32px;
  }
}
.special_Downloadliste_mit_Bestellformular .modul-form-content .form-group-set.form-group-set--full {
  display: block;
  width: auto;
  max-width: none;
}
.special_Downloadliste_mit_Bestellformular .modul-form-content .form-group-set .form-group {
  text-align: left;
  margin-bottom: 12px;
}
.special_Downloadliste_mit_Bestellformular .modul-form-content .form-group-set .form-group label {
  font-size: 12px;
  display: block;
  margin-bottom: 3px;
  color: #222;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.special_Downloadliste_mit_Bestellformular .modul-form-content .form-group-set .form-group input, .special_Downloadliste_mit_Bestellformular .modul-form-content .form-group-set .form-group textarea, .special_Downloadliste_mit_Bestellformular .modul-form-content .form-group-set .form-group select {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  padding: 3px 5px;
  border: 1px solid #ccc;
  width: 90%;
}
.special_Downloadliste_mit_Bestellformular .modul-form-content .form-group-set .form-group.form-has-error input, .special_Downloadliste_mit_Bestellformular .modul-form-content .form-group-set .form-group.form-has-error textarea, .special_Downloadliste_mit_Bestellformular .modul-form-content .form-group-set .form-group.form-has-error select {
  border-color: #9a0400;
}
.special_Downloadliste_mit_Bestellformular .modul-form-content .form-group-set .form-group.datafield--checkbox {
  text-align: left;
}
.special_Downloadliste_mit_Bestellformular .modul-form-content .form-group-set .form-group.datafield--checkbox label {
  position: relative;
  padding-left: 50px;
  min-height: 30px;
  clear: both;
}
.special_Downloadliste_mit_Bestellformular .modul-form-content .form-group-set .form-group.datafield--checkbox label input {
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 0;
}
.special_Downloadliste_mit_Bestellformular .modul-form-content .form-group-set .form-group.datafield--checkbox label span.cb_label {
  position: relative;
  display: block;
  padding-top: 8px;
  line-height: 1.125;
}
.special_Downloadliste_mit_Bestellformular .modul-form-content .form-group-set .form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.special_Downloadliste_mit_Bestellformular .modul-form-content .form-group-set .form-group.use-contrast-view {
  margin-bottom: 24px;
}
.special_Downloadliste_mit_Bestellformular .modul-form-content .form-group-set .form-group.use-contrast-view label, .special_Downloadliste_mit_Bestellformular .modul-form-content .form-group-set .form-group.use-contrast-view input, .special_Downloadliste_mit_Bestellformular .modul-form-content .form-group-set .form-group.use-contrast-view textarea, .special_Downloadliste_mit_Bestellformular .modul-form-content .form-group-set .form-group.use-contrast-view select {
  font-size: 21.6px;
}
.special_Downloadliste_mit_Bestellformular .modul-form-content button, .special_Downloadliste_mit_Bestellformular .modul-form-content input[type="submit"] {
  margin-top: 12px;
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  padding: 7px 14px;
  color: #910039;
  background: #fff;
  border: 1px solid #910039;
  text-decoration: none;
  line-height: 1;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
}
.special_Downloadliste_mit_Bestellformular .modul-form-content button:hover, .special_Downloadliste_mit_Bestellformular .modul-form-content input[type="submit"]:hover {
  background: #910039;
  color: #fff;
}
.special_Downloadliste_mit_Bestellformular .modul-form-content button strong, .special_Downloadliste_mit_Bestellformular .modul-form-content input[type="submit"] strong {
  font-weight: 400;
  font-size: 18px;
}
.special_Downloadliste_mit_Bestellformular .modul-form-content button small, .special_Downloadliste_mit_Bestellformular .modul-form-content input[type="submit"] small {
  font-weight: inherit;
  font-size: 12px;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.special_Downloadliste_mit_Bestellformular .modul-form-content button.use-contrast-view, .special_Downloadliste_mit_Bestellformular .modul-form-content input[type="submit"].use-contrast-view {
  font-size: 21.6px;
}
.special_Downloadliste_mit_Bestellformular .modul-form-content .alert {
  margin-top: 12px;
  margin-bottom: 16px;
}
.special_Downloadliste_mit_Bestellformular .modul-form-content input[type=number] {
  -moz-appearance: textfield;
}
.special_Downloadliste_mit_Bestellformular .modul-form-content input[type=number]::-webkit-inner-spin-button, .special_Downloadliste_mit_Bestellformular .modul-form-content input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.special_Downloadliste_mit_Bestellformular.use-contrast-view .download-item-wrapper .download-item .download-item-content .download-title {
  font-size: 26.88px;
}
.special_Downloadliste_mit_Bestellformular.use-contrast-view .download-item-wrapper .download-item .download-item-content .download-text {
  font-size: 21.6px;
}
.modul_special_newsticker {
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (max-width: 960px) {
  .modul_special_newsticker {
    margin-right: 10px;
    margin-left: 10px;
  }
}
.modul_special_newsticker .marquee-sibling {
  width: auto;
  float: none;
  background: #6c0623;
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 640px) {
  .modul_special_newsticker .marquee-sibling {
    display: none;
  }
}
.modul_special_newsticker .marquee-sibling, .modul_special_newsticker .simple-marquee-container {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  cursor: default;
  letter-spacing: 0.2px;
}
.modul_special_newsticker .marquee-sibling *, .modul_special_newsticker .simple-marquee-container * {
  color: inherit;
  text-decoration: none;
}
.modul_special_newsticker .simple-marquee-container {
  display: block;
  background: #910039;
  float: none;
}
.modul_special_newsticker.modul_special_newsticker--has-link .marquee-sibling, .modul_special_newsticker.modul_special_newsticker--has-link .simple-marquee-container {
  cursor: pointer;
}
.modul_special_newsticker.modul_special_newsticker--has-link .marquee-sibling:hover, .modul_special_newsticker.modul_special_newsticker--has-link .simple-marquee-container:hover {
  text-decoration: underline;
}
.modul_video {
  position: relative;
  text-align: center;
  background: white;
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  max-width: 1400px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 10px;
  background: white;
}
@media (max-width: 960px) {
  .modul_video {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (max-width: 960px) {
  .modul_video {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media (max-width: 340px) {
  .modul_video {
    padding-top: 5px;
    padding-bottom: 10px;
  }
}
.modul_video video {
  max-width: 100%;
  height: auto;
  cursor: pointer;
}
.modul_z_Footer_Kontaktinformationen {
  background: white;
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  max-width: 960px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 10px;
  text-align: center;
  background: none;
}
@media (max-width: 960px) {
  .modul_z_Footer_Kontaktinformationen {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (max-width: 960px) {
  .modul_z_Footer_Kontaktinformationen {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media (max-width: 340px) {
  .modul_z_Footer_Kontaktinformationen {
    padding-top: 5px;
    padding-bottom: 10px;
  }
}
.modul_z_Footer_Kontaktinformationen .modul-inner-wrapper .adresse-wrapper, .modul_z_Footer_Kontaktinformationen .modul-inner-wrapper .icon-wrapper {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
  width: 45%;
  min-width: 270px;
  text-align: left;
  padding: 10px;
  line-height: 1.35;
}
.modul_z_Footer_Kontaktinformationen .modul-inner-wrapper .adresse-wrapper a, .modul_z_Footer_Kontaktinformationen .modul-inner-wrapper .icon-wrapper a, .modul_z_Footer_Kontaktinformationen .modul-inner-wrapper .adresse-wrapper span, .modul_z_Footer_Kontaktinformationen .modul-inner-wrapper .icon-wrapper span {
  color: #fff;
}
.modul_z_Footer_Kontaktinformationen .modul-inner-wrapper .icon-wrapper {
  text-align: right;
}
.modul_z_Footer_Kontaktinformationen .modul-inner-wrapper .adresse-wrapper span {
  display: block;
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.modul_z_Footer_Kontaktinformationen .modul-inner-wrapper .adresse-wrapper span.call-to-action-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.modul_z_Footer_Kontaktinformationen .modul-inner-wrapper .icon-wrapper a.icon-link {
  display: block;
  text-decoration: none;
}
.modul_z_Footer_Kontaktinformationen .modul-inner-wrapper .icon-wrapper a.icon-link .icon-of-link {
  font-size: 18px;
  width: 40px;
  text-align: center;
  vertical-align: middle;
}
.modul_z_Footer_Kontaktinformationen .modul-inner-wrapper .icon-wrapper a.icon-link .label-of-link {
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 12px;
  vertical-align: middle;
}
.modul_z_Footer_Kontaktinformationen .modul-inner-wrapper .icon-wrapper a.icon-link.icon-link--email, .modul_z_Footer_Kontaktinformationen .modul-inner-wrapper .icon-wrapper a.icon-link.icon-link--phone {
  margin-bottom: 3px;
}
.modul_z_Footer_Kontaktinformationen .modul-inner-wrapper .icon-wrapper a.icon-link.icon-link--email .label-of-link, .modul_z_Footer_Kontaktinformationen .modul-inner-wrapper .icon-wrapper a.icon-link.icon-link--phone .label-of-link {
  font-size: 14px;
}
.modul_z_Footer_Kontaktinformationen .modul-inner-wrapper .icon-wrapper a.icon-link.icon-link--phone {
  margin-bottom: 6px;
}
.modul_z_Footer_Kontaktinformationen .modul-inner-wrapper .icon-wrapper a.icon-link:hover .label-of-link {
  opacity: 1;
  filter: alpha(opacity=100);
}
.modul_z_Footer_Kontaktinformationen.use-contrast-view .modul-inner-wrapper .icon-wrapper a.icon-link .label-of-link {
  opacity: 1;
  filter: alpha(opacity=100);
  font-size: 21.6px;
}
.modul_z_Footer_Kontaktinformationen.use-contrast-view .modul-inner-wrapper .icon-wrapper a.icon-link:hover .label-of-link {
  text-decoration: underline;
}
.layout_element_Untermenu {
  text-align: left;
  position: relative;
  background: white;
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  max-width: 960px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 10px;
}
@media (max-width: 960px) {
  .layout_element_Untermenu {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (max-width: 960px) {
  .layout_element_Untermenu {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media (max-width: 340px) {
  .layout_element_Untermenu {
    padding-top: 5px;
    padding-bottom: 10px;
  }
}
@media (max-width: 640px) {
  .layout_element_Untermenu {
    text-align: center;
  }
}
.layout_element_Untermenu .subnav {
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 0 40px;
}
@media (max-width: 640px) {
  .layout_element_Untermenu .subnav {
    padding: 0 20px;
  }
}
@media (max-width: 340px) {
  .layout_element_Untermenu .subnav {
    padding: 0 10px;
  }
}
.layout_element_Untermenu .subnav > a {
  font-size: 28px;
  font-weight: 200;
  font-style: italic;
  padding: 0;
  margin: 0;
  color: #910039;
  margin-bottom: 6px;
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  margin-right: 50px;
  margin-bottom: 12px;
}
@media (max-width: 640px) {
  .layout_element_Untermenu .subnav > a {
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .layout_element_Untermenu .subnav > a {
    margin-right: 20px;
    margin-left: 20px;
  }
}
.layout_element_Untermenu .subnav > a:hover, .layout_element_Untermenu .subnav > a.active {
  color: #910039;
  text-decoration: underline;
}
.layout_element_Untermenu.style--main-color-boxes-3er, .layout_element_Untermenu.style--main-color-boxes-4er {
  text-align: center;
}
.layout_element_Untermenu.style--main-color-boxes-3er .subnav, .layout_element_Untermenu.style--main-color-boxes-4er .subnav {
  padding-left: 0;
  padding-right: 0;
}
.layout_element_Untermenu.style--main-color-boxes-3er .subnav > a, .layout_element_Untermenu.style--main-color-boxes-4er .subnav > a {
  width: 24%;
  padding: 50px 3%;
  font-size: 18px;
  letter-spacing: 1px;
  margin: 5px 1%;
  min-width: 200px;
  min-height: 50px;
  line-height: 1.35;
  background: #910039;
  color: #fff;
}
@media (max-width: 640px) {
  .layout_element_Untermenu.style--main-color-boxes-3er .subnav > a, .layout_element_Untermenu.style--main-color-boxes-4er .subnav > a {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
    min-height: 0;
    padding: 20px;
  }
}
.layout_element_Untermenu.style--main-color-boxes-4er .subnav > a {
  width: 15%;
  min-width: 120px;
  font-size: 14px;
}
@media (max-width: 640px) {
  .layout_element_Untermenu.style--main-color-boxes-4er .subnav > a {
    width: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
    min-height: 0;
    padding: 20px;
  }
}
.rex-slice-output .modul_z_Sidebar_Fixed_Menue_with_Modal {
  position: relative;
}
.rex-slice-output .modul_z_Sidebar_Fixed_Menue_with_Modal .sidebar-wrapper {
  position: relative !important;
}
.modul_z_Sidebar_Fixed_Menue_with_Modal .sidebar-wrapper {
  position: fixed;
  right: 0;
  top: 50%;
  top: calc(50% - 200px);
  text-align: left;
  overflow: visible;
  /*
   @include SmallerAs(1000px)
   {
   @include HeigherSmallerAs(800px)
   {
   top:250px;
   }
   }*/
  z-index: 20;
}
@media (max-width: 768px) {
  .modul_z_Sidebar_Fixed_Menue_with_Modal .sidebar-wrapper {
    display: none;
  }
}
@media (max-height: 400px) {
  .modul_z_Sidebar_Fixed_Menue_with_Modal .sidebar-wrapper {
    top: 0;
  }
}
@media (max-height: 900px) and (max-width: 1050px) {
  .modul_z_Sidebar_Fixed_Menue_with_Modal .sidebar-wrapper {
    top: 300px;
  }
}
@media (max-height: 500px) {
  .modul_z_Sidebar_Fixed_Menue_with_Modal .sidebar-wrapper {
    display: none;
  }
}
.modul_z_Sidebar_Fixed_Menue_with_Modal .sidebar-wrapper .link-item {
  /*&:hover{
   z-index:$myZIndexSidebarmenuHovered;
   }*/
  z-index: 200;
  display: block;
  width: 200px;
  height: 50px;
  background: #a1a4a7;
  background: rgba(161, 164, 167, 0.7);
  /* The Fallback */
  overflow: hidden;
  text-decoration: none !important;
  -webkit-transform: translate(150px, 0);
  -ms-transform: translate(150px, 0);
  -o-transform: translate(150px, 0);
  transform: translate(150px, 0);
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.35s ease-in-out 0.1s;
  -moz-transition: all 0.35s ease-in-out 0.1s;
  -o-transition: all 0.35s ease-in-out 0.1s;
  -ms-transition: all 0.35s ease-in-out 0.1s;
  transition: all 0.35s ease-in-out 0.1s;
  cursor: pointer;
}
.modul_z_Sidebar_Fixed_Menue_with_Modal .sidebar-wrapper .link-item:hover {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  background: #910039;
}
.modul_z_Sidebar_Fixed_Menue_with_Modal .sidebar-wrapper .link-item .link-item__icon, .modul_z_Sidebar_Fixed_Menue_with_Modal .sidebar-wrapper .link-item .link-item__label {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
}
.modul_z_Sidebar_Fixed_Menue_with_Modal .sidebar-wrapper .link-item .link-item__icon {
  width: 50px;
  font-size: 28px;
  padding: 11px;
  text-align: center;
  padding-right: 0;
  padding-left: 0;
}
.modul_z_Sidebar_Fixed_Menue_with_Modal .sidebar-wrapper .link-item .link-item__label {
  width: 140px;
}
.modul_z_Sidebar_Fixed_Menue_with_Modal .sidebar-wrapper .link-item.link-item-less-contrast {
  display: none;
}
.modul_z_Sidebar_Fixed_Menue_with_Modal.use-contrast-view .sidebar-wrapper .link-item.link-item-more-contrast {
  display: none;
}
.modul_z_Sidebar_Fixed_Menue_with_Modal.use-contrast-view .sidebar-wrapper .link-item.link-item-less-contrast {
  display: block;
}
.modul_z_Sidebar_Fixed_Menue_with_Modal.use-contrast-view .sidebar-wrapper .link-item .link-item__label {
  font-size: 21.6px;
}
.modul_z_Smart_Rechner {
  background: white;
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  max-width: 960px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 10px;
  padding-bottom: 150px;
  z-index: auto !important;
}
@media (max-width: 960px) {
  .modul_z_Smart_Rechner {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (max-width: 960px) {
  .modul_z_Smart_Rechner {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media (max-width: 340px) {
  .modul_z_Smart_Rechner {
    padding-top: 5px;
    padding-bottom: 10px;
  }
}
.modul_z_Smart_Rechner #s_r_de_krankengeld1 #s_r_de_krankengeld2 #s_r_de_krankengeld3 #s_r_de_krankengeld4 #s_r_de_krankengeld5 #s_r_de_krankengeld .ui-widget-header, .modul_z_Smart_Rechner #s_r_de_verletztengeld1 #s_r_de_verletztengeld2 #s_r_de_verletztengeld3 #s_r_de_verletztengeld4 #s_r_de_verletztengeld5 #s_r_de_verletztengeld .ui-widget-header, .modul_z_Smart_Rechner #s_r_de_erwerbsminderungsrente1 #s_r_de_erwerbsminderungsrente2 #s_r_de_erwerbsminderungsrente3 #s_r_de_erwerbsminderungsrente4 #s_r_de_erwerbsminderungsrente5 #s_r_de_erwerbsminderungsrente .ui-widget-header, .modul_z_Smart_Rechner #s_r_de_uebergangsgeld1 #s_r_de_uebergangsgeld2 #s_r_de_uebergangsgeld3 #s_r_de_uebergangsgeld4 #s_r_de_uebergangsgeld5 #s_r_de_uebergangsgeld .ui-widget-header, .modul_z_Smart_Rechner #s_r_de_pflegegeld1 #s_r_de_pflegegeld2 #s_r_de_pflegegeld3 #s_r_de_pflegegeld4 #s_r_de_pflegegeld5 #s_r_de_pflegegeld .ui-widget-header, .modul_z_Smart_Rechner #s_r_de_zuzahlung1 #s_r_de_zuzahlung2 #s_r_de_zuzahlung3 #s_r_de_zuzahlung4 #s_r_de_zuzahlung5 #s_r_de_zuzahlung .ui-widget-header {
  background: #910039;
}
.modul-Uebersicht_Links_mit_Ueberschrift_als_Linktitel {
  background: white;
  max-width: 980px;
  padding-left: 0;
  padding-right: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  max-width: 960px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 15px;
  padding-bottom: 10px;
  padding-bottom: 50px;
  text-align: left;
}
@media (max-width: 960px) {
  .modul-Uebersicht_Links_mit_Ueberschrift_als_Linktitel {
    margin-right: 10px;
    margin-left: 10px;
  }
}
@media (max-width: 960px) {
  .modul-Uebersicht_Links_mit_Ueberschrift_als_Linktitel {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
@media (max-width: 340px) {
  .modul-Uebersicht_Links_mit_Ueberschrift_als_Linktitel {
    padding-top: 5px;
    padding-bottom: 10px;
  }
}
.modul-Uebersicht_Links_mit_Ueberschrift_als_Linktitel .link-wrapper {
  padding: 0 40px;
}
@media (max-width: 640px) {
  .modul-Uebersicht_Links_mit_Ueberschrift_als_Linktitel .link-wrapper {
    padding: 0 20px;
  }
}
@media (max-width: 340px) {
  .modul-Uebersicht_Links_mit_Ueberschrift_als_Linktitel .link-wrapper {
    padding: 0 10px;
  }
}
.modul-Uebersicht_Links_mit_Ueberschrift_als_Linktitel .link-wrapper a {
  display: block;
  padding: 10px 0;
  line-height: 1.25;
}
.modul-Uebersicht_Links_mit_Ueberschrift_als_Linktitel .link-wrapper a strong, .modul-Uebersicht_Links_mit_Ueberschrift_als_Linktitel .link-wrapper a small {
  display: block;
}
.modul-Uebersicht_Links_mit_Ueberschrift_als_Linktitel .link-wrapper a strong {
  font-size: 18px;
}
.modul-Uebersicht_Links_mit_Ueberschrift_als_Linktitel .link-wrapper a small {
  color: #222;
}
.tooltipster-sidetip.tooltipster-brand .tooltipster-box {
  border-radius: 0;
  border: 3px solid #910039;
  background: #910039;
}
.tooltipster-sidetip.tooltipster-brand .tooltipster-content {
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}
.tooltipster-sidetip.tooltipster-brand .tooltipster-arrow {
  height: 11px;
  margin-left: -11px;
  width: 22px;
  border-color: #910039;
}
.tooltipster-sidetip.tooltipster-brand .tooltipster-arrow-background {
  border: 11px solid transparent;
}
.tooltipster-sidetip.tooltipster-brand .tooltipster-arrow-border {
  border-width: 11px;
}
.tooltipster-sidetip.tooltipster-brand.tooltipster-left .tooltipster-arrow, .tooltipster-sidetip.tooltipster-brand.tooltipster-right .tooltipster-arrow {
  height: 22px;
  margin-left: 0;
  margin-top: -11px;
  width: 11px;
}
.tooltipster-sidetip.tooltipster-brand .tooltipster-arrow-background {
  border-color: transparent !important;
  background: transparent !important;
}
.tooltipster-sidetip.tooltipster-brand.tooltipster-top .tooltipster-arrow-background {
  border-top-color: #910039;
  top: -4px;
}
.tooltipster-sidetip.tooltipster-brand.tooltipster-top .tooltipster-arrow-border {
  border-top-color: #910039;
}
.tooltipster-sidetip.tooltipster-brand.tooltipster-bottom .tooltipster-arrow-background {
  border-bottom-color: #910039;
  top: 4px;
}
.tooltipster-sidetip.tooltipster-brand.tooltipster-bottom .tooltipster-arrow-border {
  border-bottom-color: #910039;
}
.tooltipster-sidetip.tooltipster-brand.tooltipster-bottom .tooltipster-arrow-uncropped {
  top: -11px;
}
.tooltipster-sidetip.tooltipster-brand.tooltipster-left .tooltipster-arrow-background {
  border-left-color: #910039;
  left: -4px;
}
.tooltipster-sidetip.tooltipster-brand.tooltipster-left .tooltipster-arrow-border {
  border-left-color: #910039;
}
.tooltipster-sidetip.tooltipster-brand.tooltipster-right .tooltipster-arrow-background {
  border-right-color: #910039;
  left: 4px;
}
.tooltipster-sidetip.tooltipster-brand.tooltipster-right .tooltipster-arrow-uncropped {
  left: -11px;
}
.tooltipster-sidetip.tooltipster-brand.tooltipster-right .tooltipster-arrow-border {
  border-right-color: #910039;
}
.cc-window {
  background: #6c0623;
  background: rgba(108, 6, 35, 0.8);
  /* The Fallback */
  color: #fff;
  font-size: 12px;
  text-align: center;
  border: 3px solid #6c0623;
}
.cc-window.cc-floating.cc-theme-edgeless {
  max-width: 30em;
}
.cc-window.cc-floating.cc-theme-edgeless .cc-message {
  margin: 1em 1em 1.5em;
  margin-bottom: 12px;
}
.cc-window.cc-floating.cc-theme-edgeless a {
  color: inherit;
  font-size: inherit;
  padding: 0px;
  margin-top: 3px;
  display: block;
}
.cc-window.cc-floating.cc-theme-edgeless a:hover {
  color: inherit;
}
.cc-window.cc-floating.cc-theme-edgeless .cc-btn {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  margin-left: auto;
  margin-right: auto;
  border-width: 0;
  background: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  color: #910039;
  flex: none;
  font-size: inherit;
  padding: 5px 30px;
  margin-bottom: 6px;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.cc-window.cc-floating.cc-theme-edgeless .cc-btn:hover {
  color: #910039 !important;
}
body {
  background: #eee;
  font-family: 'kundenschrift', sans-serif;
  border-top: 4px solid #910039;
}
@media (max-width: 340px) {
  body {
    max-width: 320px;
    overflow-x: hidden;
  }
}
h1, h2 {
  color: #910039;
}
h3, h4, h5, h6 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
h3 {
  font-size: 20px;
}
h4 {
  font-size: 16px;
}
h5 {
  font-size: 400;
}
.content-wrapper {
  text-align: center;
  min-height: 400px;
  margin-top: 20px;
}
.content-wrapper .content > div, .content-wrapper .content > section > div {
  z-index: 10;
}
.content-wrapper.content-wrapper--with-sidebar {
  text-align: center;
}
.content-wrapper.content-wrapper--with-sidebar .content {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
  width: 766px;
  position: relative;
}
.content-wrapper.content-wrapper--with-sidebar .content-sidebar {
  margin-top: 0px;
  margin-left: 10px;
  width: 200px;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: top;
}
.content-wrapper.content-wrapper--with-sidebar .content-sidebar .modul {
  background: none !important;
  padding-bottom: 5px !important;
  padding-top: 0 !important;
}
.content-wrapper.content-wrapper--with-sidebar .content-sidebar .modul img {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
  max-width: 100%;
}
@media (max-width: 960px) {
  .content-wrapper.content-wrapper--with-sidebar .content, .content-wrapper.content-wrapper--with-sidebar .content-sidebar {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .content-wrapper.content-wrapper--with-sidebar .content {
    width: auto;
  }
}
.text-of-html-editor {
  font-size: 14px;
  color: #222;
  text-align: justify;
  letter-spacing: 0.2px;
  line-height: 1.5;
  font-size: 14px;
}
.text-of-html-editor img {
  max-width: 100%;
}
.text-of-html-editor .more-btn {
  display: block;
  margin-top: 6px;
  margin-bottom: 6px;
  cursor: pointer !important;
  font-size: 12px;
  color: #910039;
}
.text-of-html-editor .more-btn:hover {
  text-decoration: underline;
}
@media (max-width: 640px) {
  .text-of-html-editor {
    text-align: left;
    line-height: 1.35;
  }
}
.text-of-html-editor ul {
  list-style-type: none;
}
.text-of-html-editor ul li::before {
  content: "» ";
  color: #910039;
}
.text-of-html-editor > strong {
  color: #910039;
  font-style: italic;
  font-size: 18px;
}
.text-of-html-editor p {
  font-size: 14px;
  color: #222;
  text-align: justify;
  letter-spacing: 0.2px;
  line-height: 1.5;
}
@media (max-width: 640px) {
  .text-of-html-editor p {
    text-align: left;
    line-height: 1.35;
  }
}
.text-of-html-editor p ul {
  list-style-type: none;
}
.text-of-html-editor p ul li::before {
  content: "» ";
  color: #910039;
}
.text-of-html-editor p > strong {
  color: #910039;
  font-style: italic;
  font-size: 18px;
}
.text-of-html-editor h1 {
  font-size: 28px;
  font-weight: 200;
  font-style: italic;
  padding: 0;
  margin: 0;
  color: #910039;
  margin-bottom: 6px;
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
}
@media (max-width: 640px) {
  .text-of-html-editor h1 {
    font-size: 20px;
  }
}
.text-of-html-editor h3 {
  color: #910039;
  font-size: 18px;
  font-weight: 200;
  font-style: italic;
  text-transform: none;
  margin-bottom: 6px;
}
.text-of-html-editor.text-format--text--left-aligned p {
  text-align: left;
}
.text-of-html-editor ul, .text-of-html-editor ol {
  margin-bottom: 6px;
  margin-top: 6px;
  margin-left: 16px;
  text-align: left;
}
.text-of-html-editor ul li, .text-of-html-editor ol li {
  margin-bottom: 12px;
  font-size: 14px;
  color: #222;
}
.text-of-html-editor.use-contrast-view ul li, .text-of-html-editor.use-contrast-view ol li, .text-of-html-editor.use-contrast-view p {
  font-size: 21.6px !important;
  color: #222;
}
.text-of-html-editor.use-contrast-view .more-btn {
  font-size: 21.6px !important;
}
.content-sidebar .text-of-html-editor p {
  font-size: 12px !important;
}
.content-sidebar .text-of-html-editor p > strong {
  font-size: 12px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  color: inherit !important;
}
.intern-anchor-link {
  font-size: 1px;
  height: 1px;
  overflow: hidden;
  display: block;
  margin-top: -1px;
}
.container {
  max-width: 970px;
}
a {
  text-decoration: none;
  color: #910039;
}
a:hover {
  text-decoration: underline;
}
.submodul-headline-wrapper {
  text-align: left;
  margin-bottom: 10px;
  margin-top: 10px;
  padding: 0 40px;
}
@media (max-width: 640px) {
  .submodul-headline-wrapper {
    padding: 0 20px;
  }
}
@media (max-width: 340px) {
  .submodul-headline-wrapper {
    padding: 0 10px;
  }
}
.submodul-headline-wrapper .submodul-headline {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  position: relative;
}
@media (max-width: 640px) {
  .submodul-headline-wrapper .submodul-headline {
    display: block;
  }
}
.submodul-headline-wrapper .submodul-headline .headline {
  font-size: 28px;
  font-weight: 200;
  font-style: italic;
  padding: 0;
  margin: 0;
  color: #910039;
  margin-bottom: 6px;
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
}
@media (max-width: 640px) {
  .submodul-headline-wrapper .submodul-headline .headline {
    font-size: 20px;
  }
}
.submodul-headline-wrapper .submodul-headline h2.headline {
  font-size: 22.4px;
}
.submodul-headline-wrapper .submodul-headline .subheadline {
  font-size: 18px;
  font-weight: 200;
  padding: 0px;
  margin: 0px;
  color: #222;
  margin-bottom: 12px;
  margin-top: 6px;
  font-style: italic;
  white-space: pre-wrap;
  /* css-3 */
  white-space: -moz-pre-wrap;
  /* Mozilla, since 1999 */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  word-wrap: break-word;
  /* Internet Explorer 5.5+ */
}
@media (max-width: 640px) {
  .submodul-headline-wrapper .submodul-headline .subheadline {
    font-size: 400;
  }
}
.submodul-headline-wrapper .submodul-headline .headline-border-wrapper {
  position: relative;
  text-align: center;
}
.submodul-headline-wrapper .submodul-headline .headline-border-wrapper .headline-border {
  text-align: center;
}
.submodul-headline-wrapper .submodul-headline .headline-border-wrapper .headline-border .headline-border-box {
  width: 90%;
  height: 3px;
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  transform: scaleX(0);
  background: #910039;
  margin-left: auto;
  margin-right: auto;
}
.submodul-headline-wrapper.visible-in-viewport .submodul-headline .headline-border-wrapper .headline-border .headline-border-box {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transform: scaleX(1);
}
.content-sidebar .submodul-headline-wrapper {
  padding: 0 !important;
}
.content-sidebar .submodul-headline-wrapper .headline {
  font-size: 14px !important;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-align: left;
}
.modul_abstandshalter_einfach {
  height: 30px;
}
.footer-wrapper {
  text-align: center;
  background: #910039;
  color: #fff;
  padding-bottom: 50px;
  padding-top: 30px;
}
.footer-wrapper #footer {
  max-width: 960px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-height: 400px;
}
.footer-wrapper #footer .map-wrapper {
  display: block;
  position: relative;
  margin-top: 10px;
  margin-bottom: 30px;
  text-align: center;
}
.footer-wrapper #footer .map-wrapper .map_image {
  width: 100%;
  max-width: 860px;
  height: auto;
}
.footer-wrapper #footer .map-wrapper .map_label {
  font-size: 30px;
  position: absolute;
  left: 20px;
  top: 20px;
  width: 20%;
  line-height: 2;
}
@media (max-width: 960px) {
  .footer-wrapper #footer .map-wrapper .map_label {
    position: relative;
    width: auto;
    left: auto;
    right: auto;
    margin-top: 12px;
    margin-bottom: 12px;
    line-height: 1.2;
  }
}
.footer-wrapper #footer .footer-link-wrapper {
  margin-top: 12px;
}
.footer-wrapper #footer .footer-link-wrapper > a, .footer-wrapper #footer .footer-link-wrapper > span {
  color: inherit;
  font-size: 14px;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  padding: 0px 10px;
  padding-right: 12px;
  line-height: 1.25;
  margin-bottom: 6px;
}
.footer-wrapper #footer .footer-link-wrapper > span {
  padding: 0px;
}
.footer-wrapper #footer .footer-link-wrapper > a {
  border-right: 1px solid #fff;
}
@media (max-width: 640px) {
  .footer-wrapper #footer .footer-link-wrapper > a {
    border-width: 0px;
  }
}
.footer-wrapper #footer .footer-link-wrapper > a:last-child {
  border-width: 0px;
}
.footer-wrapper.use-contrast-view #footer .footer-link-wrapper > a, .footer-wrapper.use-contrast-view #footer .footer-link-wrapper > span {
  font-size: 21.6px;
}
.link-to-top {
  text-align: center;
  padding: 10px;
}
.link-to-top a {
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  font-size: 12px;
  color: #222;
}
body.use-contrast-view .link-to-top a {
  font-size: 18px;
  padding: 20px;
}
#wrapper .alert {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  font-size: 14px;
  color: #222;
  margin-left: auto;
  margin-right: auto;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  padding: 5px 10px;
  border: 1px solid #ccc;
  margin-bottom: 12px;
  line-height: 1.35;
}
#wrapper .alert.hidden {
  display: none;
}
#wrapper .alert.alert-success {
  color: green;
  background: #beffa6;
  border-color: #beffa6;
}
#wrapper .alert.alert-danger {
  color: #9a0400;
  background: #fac5cd;
  border-color: #fac5cd;
}
#wrapper .alert.alert-warning {
  color: #333;
  background: #ccc;
  border-color: #333;
  letter-spacing: 0.2px;
}
#wrapper .alert.use-contrast-view {
  font-size: 21.6px;
}
.link-btns-wrapper {
  text-align: center;
  display: block;
  clear: both;
  clear-after: both;
  margin-top: 12px;
  margin-bottom: 12px;
}
.link-btns-wrapper span {
  /* http://www.the-art-of-web.com/css/css-animation/ */
  /* transition: [transition-property] [transition-duration] [transition-timing-function] [transition-delay]; */
  -webkit-transition: all 0.25s ease-in-out 0s;
  -moz-transition: all 0.25s ease-in-out 0s;
  -o-transition: all 0.25s ease-in-out 0s;
  -ms-transition: all 0.25s ease-in-out 0s;
  transition: all 0.25s ease-in-out 0s;
  display: -moz-inline-stack;
  display: inline-block;
  zoom: 1;
  *display: inline;
  vertical-align: middle;
  padding: 7px 14px;
  color: #910039;
  background: #fff;
  border: 1px solid #910039;
  text-decoration: none;
  line-height: 1;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  cursor: pointer;
}
.link-btns-wrapper span:hover {
  background: #910039;
  color: #fff;
}
.link-btns-wrapper span strong {
  font-weight: 400;
  font-size: 18px;
}
.link-btns-wrapper span small {
  font-weight: inherit;
  font-size: 12px;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
strong {
  font-weight: bold;
}


