/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v40-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/open-sans-v40-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* open-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v40-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
    font-family: 'Droid Serif';
    src: url('../fonts/DroidSerif.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Droid Serif';
    src: url('../fonts/DroidSerif-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Droid Serif';
    src: url('../fonts/DroidSerif-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

/** 
 * main.css
 * 
 * 1. General HTML tags
 * 2. Masthead area
 * 3. Main content and sidebar
 * 4. Footer
 * 5. Media queries for responsive layout
 * 
 */

/*********************************************************************
 * 1. General HTML tags
 *
 */

*::after, *::before {
    box-sizing: border-box;
}


body {
	padding: 0;
	margin: 0; 
	color: #464749;
	background-color: #F2F2F2;
	font-family: 'Open Sans', sans-serif;
	font-size: 14px; 
	line-height: 25px;
}


img {
	max-width: 100%; 
}

a {
	color: #333;
	text-decoration: underline;
}
	a:hover,
	.nav a:hover {
		color: #008149;
		border-color: #aaa; 
	}

blockquote {
	margin-left: 0;
	padding-left: 1.5em;
	padding-right: 2em; 
	border-left: 4px solid #ddd; 
	font-style: italic; 
	color: #777; 
}

pre, code {
	background: #eee; 
	border: 1px solid #ddd; 
}

pre {
	font-size: 14px; 
	line-height: 1.4em;
	padding: 1em;
	border-left: 4px solid #ddd; 
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}
.container_small {
	max-width: 950px;
	margin: 0 auto;
}



/*********************************************************************
 * 2. Masthead area
 *
 */
header {
	background-color: #fff;
}
.branding {
	align-items: center;
	display: flex;
	font-size: 0;
	line-height: 0;
	padding-bottom: 30px;
	padding-top: 30px;
	max-width: 360px;
}
@media (max-width: 991px) {
	.branding img {
		position: absolute;
		left: 70px;
		top: 20px;
		width: 80%;
		max-width: 350px;
		height: auto;
	}
}
@media (max-width: 431px) {
	.branding img {
		top: 16px;
	}
}

.header-bar {
	align-content: stretch;
  	align-items: stretch;
  	display: flex;
  	justify-content: space-between;
  	position: relative;
  	flex-flow: row nowrap;
	min-height: 100px;
}

@media (min-width: 992px) {
	ul.topnav { 
		list-style-type: none;
		margin: 5px 0 0 400px; 
		padding: 0;
		max-width: 200px;
		width: 230px;

		align-content: stretch;
	  	align-items: stretch;
		flex-grow: 10;
	  	justify-content: space-around;
		display: flex;
		flex-flow: column;
		flex-basis: auto; /* default value */
	  	flex-grow: 1;
	}
	ul.topnav li {  
		justify-content: left; 
		flex-grow: 1;
		display: flex;
		position: relative; 

		-ms-justify-content: center;
		-ms-flex-grow 1;
		-ms-display: flex;	
	}
	.topnav a {
		color: #707173; 
		display: block;
		font-size: 13px;
		font-weight: 700;
		letter-spacing: 1px;
		padding: 0;
		text-decoration: none; 
		text-transform: uppercase;
	}
	.topnav a:hover {
		color: #008149;
	}
	.topnav li i { display: none; }
	.topnav li.active a { color: #008149; }
	.topnav li.edit a {
		background: none; 
	}
	
	.topnav li ul.sub-nav {
		visibility: hidden;
	  background-color: #ffffff;
	  width: auto;
	  /*box-shadow: 0 0 4px rgba(0, 0, 0, 0.2); */
		border-top: 2px solid #464749;
	  padding: 10px 10px 0 10px;
	  position: absolute;
		left: 0;
		top: 40px;
	  z-index: 200;
	}
	.topnav li ul.sub-nav > li {
		display: block;
		width: 100%;
		text-align: left;
	}
	.topnav li ul.sub-nav > li > a {
	    margin: 0;
	    padding: 8px 10px;
		color: #262b2e;
		font-size: 12px;
		font-weight: 400;
		line-height: 17px;
		display: block;
		text-transform: none; 
		letter-spacing: 0;
	}
	.topnav li ul.sub-nav > li > a:hover,
	.topnav li ul.sub-nav > li.active > a {
		color: #94C11C;
	}

	.topnav li:hover  ul.sub-nav {
		visibility: visible;
	}
}


@media (max-width: 991px) {
 	#menu-opener {
		background: transparent url(../img/responsive-menu-close.png) top right no-repeat;
		cursor: pointer;
		height: 21px;
		left: 5px;
		position: absolute;
		top: 39px;
		width: 25px;
	}
	#menu-opener.active {
		background: transparent url(../img/responsive-menu-open.png) top right no-repeat;		
		height: 30px;
	  	width: 30px;
		top: 0;
		left: 270px;
		z-index: 1000;
		position: fixed;
	}
	#mobile-sticky-header-overlay {
		opacity: 0;
		visibility: hidden;
		transition: all 0.4s ease 0s;
	  	position: fixed;
	 	top: 0;
	 	left: 0;
	 	width: 100%;
	 	height: 100%;
	 	z-index:200;
	  	background-color: rgba(17, 17, 17, 0.4);
	}
	#mobile-sticky-header-overlay.active {
		visibility: visible;
		opacity: 1;
	}
	ul.topnav { 
		background-color: #fff;
		display: none;
		top: 0;
		left: 0;
		margin-top: 0;
    	max-width: 100%;
    	padding: 30px 30px 0;
    	position: fixed;
		transition: transform 0.5s ease 0s;
    	width: 300px;
		z-index: 201;
	}
	ul.topnav.active {
		display: block;
	}

	ul.topnav li { display: block; }

	ul.topnav li a {  
		padding: 16px 30px 16px 0;
		display: block;
		border-top: 1px solid #e0e1e1;
		text-transform: uppercase; 
		font-size: 16px; color: #262b2e; font-weight: 600; line-height: 20px; text-decoration: none;
	}
	ul.topnav li.first > a { border-top: 0;} 

	ul.topnav li i { float: right; color: #262b2e; padding: 21px 15px 11px 15px; cursor: pointer; }

	ul.topnav li.active a,
	ul.topnav li a:hover { color: #008149;  }

	ul.topnav li.has-children a { padding: 16px 30px 13px 0; }
	ul.topnav li.has-children i:hover { color: #94C11C; }
	ul.topnav li.has-children.active i { color: #94C11C; }

	
	ul.topnav li ul.sub-nav { display: none; padding-left: 20px; padding-bottom: 10px; }
	ul.topnav li.active ul.sub-nav { display: block; }	
	
	ul.topnav li ul.sub-nav li a { font-size: 13px; color: #262b2e; padding: 0 0 5px 0; border-top: none; text-transform: none; }	
	ul.topnav li ul.sub-nav li a:hover { color: #94C11C; }
	ul.topnav li ul.sub-nav li.active a { color: #94C11C; }	
	
}	

/*********************************************************************
 * 3. Main content and sidebar
 *
 */

#main {
	clear: both; 
}
body.home #main,
body.person #main,
body.kontakt #main,
body.beratung #main,
body.datenschutz #main,
body.impressum #main {
	border-top: 15px solid #008149;
}
body.kunsttherapie #main {
	border-top: 15px solid #dfad00;
}
#bildheader-container {
}

/* Zitate */
.zitat { 
	font-family: 'Droid Serif', serif; 
	font-style: italic; 
	font-weight: 400;
	font-size: 32px;
	line-height: 54px;
	letter-spacing: 1px;
	color: #008149;
	margin-top: 0px;
	text-align: center;	
}

@media screen and (max-width: 1100px) {
	.zitat { 
		font-size: 28px;
		line-height: 44px;
	}
}

.zitat span.autor {
	text-transform: uppercase;
	font-style: normal;
	font-size: 13px;
	font-family: 'Open Sans', sans-serif;
	letter-spacing: 2px;
	padding-left: 20px;
}

.content.white {
	background-color: #fff;
}
.content.grey {
	background-color: #ECEAEA;
}
.content.green {
	background-color: #e9f4f0;
	padding-top: 0px;
  padding-bottom: 0px;
}
.content.green .bild_text img {
	border-top: 15px solid #008149;
	display: block;
}
.content.yellow {
	background-color: #fcf7e6;
	padding-top: 0px;
  padding-bottom: 0px;
}
.content.yellow .bild_text img {
	border-top: 15px solid #dfad00;
	display: block;
}
.content-trenner h2 {
	background-color: #94C11C;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0;
	padding: 0;
}

#content {
	padding-top: 0; 
	padding-bottom: 2em; 
	margin-top: 20px;
}
.content {
	padding-top: 37px;
	padding-bottom: 37px;
}
.content h2 {
	color: #008149;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0;
	padding: 0;
}
.content h2.border {
	border-bottom: 1px solid #008149;
	text-align: left;
}
body.basic-page .content h2,
body.datenschutz .content h2 {
	text-align: left;
}

.content h3 {
	color: #464749;
	font-size: 14px;
	line-height: 25px;
	font-weight: 700;
	text-align: center;
	margin: 20px 0 30px 0;
	padding: 0;
}

.content h4 {
	color: #464749;
	font-size: 14px;
	line-height: 25px;
	font-weight: 700;
	font-family: "Droid Serif",serif;
	margin: 20px 0 0 0;
	padding: 0;
}
.content h4.normal {
	font-weight: 400;
}
.content h5 {
	color: #464749;
	font-family: "Droid Serif",serif;
	font-size: 18px;
	line-height: 25px;
	font-weight: 400;
	margin: 10px auto 5px auto;
	padding: 0;
	text-align: center;
	max-width: 700px;
}
body.basic-page .content h5 {
	text-align: left;
	max-width: none;
}

.content p {
	margin: 0 0 17px 0;
}
.content span.green {
	color: #008149;
	font-weight: bold;
	letter-spacing: 0.05em;
}
.content ul {
	list-style-type: none;
  	margin: 0; 
	padding: 0 0 20px 0;
}
.content ul li {
	padding: 6px 0px 0px 20px;
	background: transparent url(../img/ul_li.png) 0px 11px no-repeat;
	line-height: 20px;
}
body.kunsttherapie .content ul li {
	background-image: url(../img/ul_li_gelb.png);
}


@media screen and (max-width: 992px) {
	.content .praevention {
		margin-bottom: 20px;
	}
}
.content .praevention .inner {
	/* Bild */
}
.content .praevention h2 {
	border-bottom: 1px solid #94C11C;
	text-align: left;
	padding-bottom: 5px;
}

.content .beratung h2 {
	border-bottom: 1px solid #94C11C;
	padding-bottom: 5px;
	margin-bottom: 10px;
}

@media screen and (max-width: 992px) {
	.content .therapie {
		margin-bottom: 20px;
	}
}

.content .therapie h2 {
	border-bottom: 1px solid #94C11C;
	text-align: left;
	padding-bottom: 5px;
}

.content .therapie .inner {
	min-height: 10em;
}

.content .seminare h2 {
	border-bottom: 1px solid #94C11C;
	padding-bottom: 5px;
}



/* Referenzen*/
.content .referenzen {
	margin-bottom: 0 !important;
	padding-top: 20px;
	padding-bottom: 30px;
}
.content .referenz .sub_wrapper {
	text-align: center;
	max-width: 80%;
	margin: 0 auto 20px auto;
}

.content .referenz .sub_wrapper img.foto {
	border-bottom-left-radius: 50%;
   border-bottom-right-radius: 50%;
   border-top-left-radius: 50%;
   border-top-right-radius: 50%;
   box-shadow: none;
   overflow-x: hidden;
   overflow-y: hidden;
	display: inline;
}

/* Kontakt-Seite */
.assistive-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
}
form.contact-form 
.form-fields {
	margin-bottom: 10px;
}
.form-fields input,
.form-fields textarea {
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	line-height: 24px;
	border-radius: 3px;
	-moz-appearance: none;
	width: 100%;
	background-color: #fbfcfc;
  border: 1px solid #e0e1e1;
  color: #262b2e;
  padding: 7px 15px;	
}
.form-fields textarea {
	height: 158px;
}
iframe {
	margin-bottom: 20px;
}

input.dt-btn {
	margin-bottom: 10px;
	background-color: #008149;
	border: medium none;
	border-radius: 5px;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
	color: #fff;
	cursor:  pointer;
	font-weight: 600;
	font-size: 16px;
	line-height: 32px;
	margin-right: 0;
	padding-left: 18px;
	padding-right: 18px;
	transform: translateZ(0px);
	transition: box-shadow 0.2s ease-out 0s;
}
input.dt-btn:hover {
	box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px rgba(0, 0, 0, 0.15);
}


.nav {
	margin-left: 0;
	padding-left: 0;
	list-style: none; 
}
	.nav .nav {
		padding-left: 1.5em;
		list-style: disc;
	}
	.nav li {
		margin: 1em 0;
	}

	.nav-tree li {
		margin-top: 0;
		margin-bottom: 0;
	}

	.nav a {
		font-weight: bold;
	}

	.nav-tree li a {
		color: #777; 
	}

	.nav .current > a {
		color: #333; 
	}
	
/* Termine auf Startseite */
.termine-overlay {
	position:fixed;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	opacity: 0;
	background: rgba(0,0,0,.5);
	transition: width 0s .5s, height, 0s .5s, opacity .5s 0s;
	z-index: 9408;
}
.termine-overlay.active {
  opacity: 1;
	transition:width 0s 0s, height, 0s 0s, opacity .5s 0s;
  width: 100%;
  height: 100%;
}
.termine-panel {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
    font-size: 14px;
    font-stretch: normal;
    font-style: normal;
    font-weight: normal;
    line-height: 26px;
    min-height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    transition-delay: 0s;
    transition-duration: 0.5s;
    transition-property: width;
    transition-timing-function: ease;
    width: 0;
    z-index: 9409;	
}
.switch-panel {
    background-attachment: scroll;
    background-clip: border-box;
    background-color: #fff;
    background-image: none;
    background-origin: padding-box;
    background-position-x: 0;
    background-position-y: 0;
    background-repeat: repeat;
    background-size: auto auto;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
    display: block;
    height: 50px;
    left: -50px;
    position: absolute;
    top: 50%; /* 100px */
    width: 50px;
}
.switch-panel a:first-child::after {
    bottom: -1px;
    content: "";
    height: 1px;
    left: 8px;
    position: absolute;
    width: 30px;
}
.switch-panel a {
    align-items: center;
    display: flex;
    height: 50px;
    justify-content: center;
    position: relative;
    width: 50px;
}
.switch-panel a img {
    height: 46px;
    opacity: 0.7;
    transition-delay: 0s;
    transition-duration: 0.2s;
    transition-property: all;
    transition-timing-function: ease;
    width: 46px;
}
.switch-panel a:hover img{ 
	width: 44px;
	height: 44px;
	opacity:1 
}
.content-panel {
    background-attachment: scroll;
    background-clip: border-box;
    background-color: #fff;
    background-image: none;
    background-origin: padding-box;
    background-position-x: 0;
    background-position-y: 0;
    background-repeat: repeat;
    background-size: auto auto;
    height: 100%;
    overflow-y: scroll;
    position: absolute;
    width: 100%;
}
.content-panel .termin {
	padding: 10px 20px;
}
.content-panel .termin h2 {
	margin: 0;
	padding: 0 0 5px 0;
	border-bottom: 1px solid #94C11C;
	color: #94C11C;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Gallery */
.gallery {
  max-width: 500px;
  margin: 0 auto;
}
div.img {
}
div.img img {
	max-width: 96%;
	height: auto;
	padding: 2%;
	margin: 10px 10px 0 10px;
} 
div.img span {
	display: block;
/*	background-color: #fff; */
	font-size: 14px;	
	line-height: 26px;
	padding: 2%;
	margin: 0 10px 10px 10px;
	font-weight: 700;
}


.align_left {
	/* for images placed in rich text editor */ 
	float: left;
	margin: 0 1em 0.5em 0; 
	position: relative;
	top: 0.5em;
	max-width: 50%; 
}

.align_right {
	/* for images placed in rich text editor */ 
	float: right;
	margin: 0 0 0.5em 1em;
	max-width: 50%; 
}

.align_center {
	/* for images placed in rich text editor */ 
	display: block;
	margin: 1em auto; 
	position: relative;
	top: 0.5em;
}

figure {
	text-align: center;
	margin: 1em 0;
	width: 100%;
}

figure img {
	display: inline-block;
	margin-bottom: 0.5em;
}

/*
 * Grid-System 
 */

* {
    box-sizing: border-box;
}
*::after, *::before {
    box-sizing: border-box;
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container_small:before,
.container_small:after,
.row:before,
.row:after {
  display: table;
  content: " ";
}
.clearfix::after,
.container::after,
.container_small::after,
.row:after {
  clear: both;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}


.container,
.container_small {
  padding-right: 10px;
  padding-left: 10px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1270px) {
  .container {
    width: 1250px;
  }
}

.row {
  margin-right: -10px;
  margin-left: -10px;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

/*********************************************************************
 * 4. Footer
 *
 */

#footer {
	clear: both; 
	font-size: 80%; 
	background-color: #fff;	
	padding: 20px 0;
	font-size: 12px;
	line-height: 20px;
}
#footer address {
	font-style: normal;
}
#footer address strong {
	color: #008149;
	letter-spacing: 0.05em;
}

#footer div.nav {
	text-align: right;
}
#footer div.nav a {
	font-weight: normal;
	text-decoration: none;
}
@media screen and (max-width: 992px) {
	#footer div.nav {
		text-align: right;
	}
} 


#footer a.top.active {
    bottom: 100px;
    opacity: 0.9;
}
#footer a.top {
    bottom: -60px;
    color: #fff;
    display: block;
    font-size: 20px;
    height: 30px;
    line-height: 50px;
    opacity: 0;
    position: fixed;
    right: 0;
    text-align: center;
    transition: background-color 0.3s ease 0s, opacity 0.3s ease 0s, bottom 0.3s ease 0s;
    width: 30px;
    z-index: 100;
}
#footer a.top:hover {
	border-bottom: none;
}


/*********************************************************************
 * 5a. Home-Seite ganz anders
 *
 */
/*@media screen and (min-width: 768px) {
	body.home { background: #94c11c url(../img/home_800.png) 100% 40px no-repeat;  }
	body.home header { display: none;}
}
@media screen and (max-width: 767px) {
	body.home { background: #94c11c url(../img/home_400.png) 100% 120px no-repeat;  }
}
body.home #footer { position: fixed; bottom: 0; width: 100%;}*/

/*********************************************************************
 * 5. Media queries for responsive layout
 *
 */

@media screen and (max-width: 767px) {
	#content {
		width: 100%; 
		float: none;
		padding: 0; 
	}
	.align_left, .align_right, .align_center {
		display: block;
		float: none; 
		margin: 1em auto;
		max-width: 100%; 
	}

}
