/* Contao Open Source CMS, (c) 2005-2016 Leo Feyer, LGPL license */
body,form,figure{margin:0;padding:0}img{border:0}header,footer,nav,section,aside,article,figure,figcaption{display:block}body{font-size:100.01%}select,input,textarea{font-size:99%}#container,.inside{position:relative}#main,#left,#right{float:left;position:relative}#main{width:100%}#left{margin-left:-100%}#right{margin-right:-100%}#footer{clear:both}#main .inside{min-height:1px}.ce_gallery>ul{margin:0;padding:0;overflow:hidden;list-style:none}.ce_gallery>ul li{float:left}.ce_gallery>ul li.col_first{clear:left}.float_left{float:left}.float_right{float:right}.block{overflow:hidden}.clear,#clear{height:.1px;font-size:.1px;line-height:.1px;clear:both}.invisible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.custom{display:block}#container:after,.custom:after{content:"";display:table;clear:both}
/* Contao Open Source CMS, (c) 2005-2016 Leo Feyer, LGPL license */
@media (max-width:767px){#wrapper{margin:0;width:auto}#container{padding-left:0;padding-right:0}#main,#left,#right{float:none;width:auto}#left{right:0;margin-left:0}#right{margin-right:0}}img{max-width:100%;height:auto}.ie7 img{-ms-interpolation-mode:bicubic}.ie8 img{width:auto}
/*
 * Nivo Lightbox v1.2.0
 * http://dev7studios.com/nivo-lightbox
 *
 * Copyright 2013, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

.nivo-lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99998;
	width: 100%;
	height: 100%;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.nivo-lightbox-overlay.nivo-lightbox-open {
	visibility: visible;
	opacity: 1;
}
.nivo-lightbox-wrap  {
	position: absolute;
	top: 10%;
	bottom: 10%;
	left: 10%;
	right: 10%;
}
.nivo-lightbox-content {
	width: 100%;
	height: 100%;
}
.nivo-lightbox-title-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 99999;
	text-align: center;
}
.nivo-lightbox-nav { display: none; }
.nivo-lightbox-prev {
	position: absolute;
	top: 50%;
	left: 0;
}
.nivo-lightbox-next {
	position: absolute;
	top: 50%;
	right: 0;
}
.nivo-lightbox-close {
	position: absolute;
	top: 2%;
	right: 2%;
}

.nivo-lightbox-image { text-align: center; }
.nivo-lightbox-image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	vertical-align: middle;
}
.nivo-lightbox-content iframe {
	width: 100%;
	height: 100%;
}
.nivo-lightbox-inline,
.nivo-lightbox-ajax {
	max-height: 100%;
	overflow: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/* https://bugzilla.mozilla.org/show_bug.cgi?id=308801 */
}
.nivo-lightbox-error {
	display: table;
	text-align: center;
	width: 100%;
	height: 100%;
	color: #fff;
	text-shadow: 0 1px 1px #000;
}
.nivo-lightbox-error p {
	display: table-cell;
	vertical-align: middle;
}

/* Effects
 **********************************************/
.nivo-lightbox-notouch .nivo-lightbox-effect-fade,
.nivo-lightbox-notouch .nivo-lightbox-effect-fadeScale,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideLeft,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideRight,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideUp,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideDown,
.nivo-lightbox-notouch .nivo-lightbox-effect-fall {
	-webkit-transition: all 0.2s ease-in-out;
	   -moz-transition: all 0.2s ease-in-out;
	    -ms-transition: all 0.2s ease-in-out;
	     -o-transition: all 0.2s ease-in-out;
	        transition: all 0.2s ease-in-out;
}

/* fadeScale */
.nivo-lightbox-effect-fadeScale .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	     -o-transition: all 0.3s;
	        transition: all 0.3s;
	-webkit-transform: scale(0.7);
	   -moz-transform: scale(0.7);
	    -ms-transform: scale(0.7);
	        transform: scale(0.7);
}
.nivo-lightbox-effect-fadeScale.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: scale(1);
	   -moz-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}

/* slideLeft / slideRight / slideUp / slideDown */
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	   -moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	    -ms-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	     -o-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	        transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap {
	-webkit-transform: translateX(-10%);
	   -moz-transform: translateX(-10%);
	    -ms-transform: translateX(-10%);
	        transform: translateX(-10%);
}
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap {
	-webkit-transform: translateX(10%);
	   -moz-transform: translateX(10%);
	    -ms-transform: translateX(10%);
	        transform: translateX(10%);
}
.nivo-lightbox-effect-slideLeft.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateX(0);
	   -moz-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
}
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
	-webkit-transform: translateY(-10%);
	   -moz-transform: translateY(-10%);
	    -ms-transform: translateY(-10%);
	        transform: translateY(-10%);
}
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap {
	-webkit-transform: translateY(10%);
	   -moz-transform: translateY(10%);
	    -ms-transform: translateY(10%);
	        transform: translateY(10%);
}
.nivo-lightbox-effect-slideUp.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateY(0);
	   -moz-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}

/* fall */
.nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall {
	-webkit-perspective: 1000px;
	   -moz-perspective: 1000px;
	        perspective: 1000px;
}
.nivo-lightbox-effect-fall .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	    -ms-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;
	-webkit-transform: translateZ(300px);
	   -moz-transform: translateZ(300px);
	    -ms-transform: translateZ(300px);
	        transform: translateZ(300px);
}
.nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
	    -ms-transform: translateZ(0);
	        transform: translateZ(0);
}

/*
 * Nivo Lightbox Default Theme v1.0
 * http://dev7studios.com/nivo-lightbox
 *
 * Copyright 2013, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
 
.nivo-lightbox-theme-default.nivo-lightbox-overlay { 
	background: #666;
	background: rgba(0,0,0,0.6); 
}
.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading { background: url("../../system/modules/nivo_lightbox/assets/themes/default/loading.gif") no-repeat 50% 50%; }

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}
.nivo-lightbox-theme-default .nivo-lightbox-nav:hover { 
	opacity: 1; 
	background-color: rgba(0,0,0,0.5);
}
.nivo-lightbox-theme-default .nivo-lightbox-prev { 
	background-image: url("../../system/modules/nivo_lightbox/assets/themes/default/prev.png"); 
	border-radius: 0 3px 3px 0;
}
.nivo-lightbox-theme-default .nivo-lightbox-next { 
	background-image: url("../../system/modules/nivo_lightbox/assets/themes/default/next.png"); 
	border-radius: 3px 0 0 3px;
}

.nivo-lightbox-theme-default .nivo-lightbox-close {
	display: block;
	background: url("../../system/modules/nivo_lightbox/assets/themes/default/close.png") no-repeat 5px 5px;
	width: 16px;
	height: 16px;
	text-indent: -9999px;
	padding: 5px;
	opacity: 0.5;
}
.nivo-lightbox-theme-default .nivo-lightbox-close:hover { opacity: 1; }

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { bottom: -7%; }
.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 14px/20px 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-image img {
	background: #fff;
	-webkit-box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
	   -moz-box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
	        box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
}
.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	background: #fff;
	padding: 40px;
	-webkit-box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
	   -moz-box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
	        box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
}

@media (-webkit-min-device-pixel-ratio: 1.3),
       (-o-min-device-pixel-ratio: 2.6/2),
       (min--moz-device-pixel-ratio: 1.3),
       (min-device-pixel-ratio: 1.3),
       (min-resolution: 1.3dppx) {

	.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading { 
		background-image: url("../../system/modules/nivo_lightbox/assets/themes/default/loading@2x.gif"); 
		background-size: 32px 32px;
	}
	.nivo-lightbox-theme-default .nivo-lightbox-prev { 
		background-image: url("../../system/modules/nivo_lightbox/assets/themes/default/prev@2x.png"); 
		background-size: 48px 48px;
	}
	.nivo-lightbox-theme-default .nivo-lightbox-next { 
		background-image: url("../../system/modules/nivo_lightbox/assets/themes/default/next@2x.png"); 
		background-size: 48px 48px;
	}
	.nivo-lightbox-theme-default .nivo-lightbox-close { 
		background-image: url("../../system/modules/nivo_lightbox/assets/themes/default/close@2x.png"); 
		background-size: 16px 16px;
	}
	
}
/*
$color--link = #b92346;
font: https://fontlibrary.org/de/font/cmu-serif#CMU Serif-Roman
*/

@font-face {
  font-family: "Moderat-Regular";
  src: url("../../files/fpa/css/./fonts/Moderat-Regular.eot"); /* IE9 Compat Modes */
  src: url("../../files/fpa/css/./fonts/Moderat-Regular.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("../../files/fpa/css/./fonts/Moderat-Regular.otf") format("opentype"), /* Open Type Font */
    url("../../files/fpa/css/./fonts/Moderat-Regular.svg") format("svg"), /* Legacy iOS */
    url("../../files/fpa/css/./fonts/Moderat-Regular.ttf") format("truetype"), /* Safari, Android, iOS */
    url("../../files/fpa/css/./fonts/Moderat-Regular.woff") format("woff"), /* Modern Browsers */
    url("../../files/fpa/css/./fonts/Moderat-Regular.woff2") format("woff2"); /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Moderat-Bold";
  src: url("../../files/fpa/css/./fonts/Moderat-Bold.eot"); /* IE9 Compat Modes */
  src: url("../../files/fpa/css/./fonts/Moderat-Bold.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("../../files/fpa/css/./fonts/Moderat-Bold.otf") format("opentype"), /* Open Type Font */
    url("../../files/fpa/css/./fonts/Moderat-Bold.svg") format("svg"), /* Legacy iOS */
    url("../../files/fpa/css/./fonts/Moderat-Bold.ttf") format("truetype"), /* Safari, Android, iOS */
    url("../../files/fpa/css/./fonts/Moderat-Bold.woff") format("woff"), /* Modern Browsers */
    url("../../files/fpa/css/./fonts/Moderat-Bold.woff2") format("woff2"); /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Moderat-RegularItalic";
  src: url("../../files/fpa/css/./fonts/Moderat-Regular-Italic.eot"); /* IE9 Compat Modes */
  src: url("../../files/fpa/css/./fonts/Moderat-Regular-Italic.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("../../files/fpa/css/./fonts/Moderat-Regular-Italic.otf") format("opentype"), /* Open Type Font */
    url("../../files/fpa/css/./fonts/Moderat-Regular-Italic.svg") format("svg"), /* Legacy iOS */
    url("../../files/fpa/css/./fonts/Moderat-Regular-Italic.ttf") format("truetype"), /* Safari, Android, iOS */
    url("../../files/fpa/css/./fonts/Moderat-Regular-Italic.woff") format("woff"), /* Modern Browsers */
    url("../../files/fpa/css/./fonts/Moderat-Regular-Italic.woff2") format("woff2"); /* Modern Browsers */
  font-weight: normal;
  font-style: normal;
}

.teaser div,
.teaser p
{
display:inline;
    font-size:1.1em;
}



body{
    /*font-family: 'CMUSerifRoman',serif;*/
    font-family: 'Source Sans Pro', sans-serif;
    font-family: 'Merriweather', serif;
    font-family: "Moderat-Regular";
    font-size: 14px;
    color: #2c3e50;
    color: #000;
}

h2{
    font-size: 1.4em;
}

header#header div a h2,header#header div a h1{ 
    font-family: 'CMUSerifRoman',serif;
    /*font-family: 'CMUSerifExtraBoldNonextended',serif;*/
    text-align: center;
    font-weight: bold;
    height: 1.0em;
    color: black;
     text-align: center;
    font-size: 1.8em;
    /*margin: 0;*/
    /*height: 28px;*/
    padding: 0;
    height: 0.5em;
    /*margin: 0;*/
    
}
header#header div a h1{
    margin-top: 18px
}
header#header div a h2{ 
    padding-bottom: 18px;
}
td{  
/* font-size: 1.2em;*/
    vertical-align: top;
}
div#personen td{  
 font-size: 1.2em;
    vertical-align: top;
}
p{  
 font-size: 1.1em;
}
h1 h2 h3{  
 /*font-family: 'CMUSerifExtraBoldNonextended',serif;*/
 font-weight: bold;
}
div#container{  
    border-bottom-style: solid;
    border-bottom-width: 1px;
}
header {
    padding-top:5px;
    background-image: url("../../files/fpa/pics/line_yellow.png");
    background-size: 100% 70%;
    background-repeat: repeat-x;
    
    }

header div a{
     display: block;
    color: black;
    text-decoration: none;
    font-weight: bold;
    padding: 0;
    margin: 0;
}

nav.mod_navigation{
    z-index: 100;
    position: relative;
}
nav.mod_navigation.block{
  overflow: visible;
}
nav#navSideBar .mod_navigation.block{
  overflow:hidden;
     
}
nav#navSideBar {
   z-index:1;  
}

a {
    text-decoration: none;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #00ff00;
    color: cadetblue;
    color: #b92346;
    border-bottom: none;
    display: inline-block;
}
nav  a {
    text-decoration: none;
    color:black;
    border-bottom-style:none;
    /*font-family: 'CMUSerifExtraBoldNonextended',serif;*/
    font-weight: bold;
    font-size: 1.3em;
}


/* active menu with activaed submenu*/
nav ul li.forward span.forward {
    background-color: #2c3e50;
    background-color: black;
    color:#fff;
   } 
 nav ul li a.trail {
    background-color: #2c3e50;
     background-color: black;
    color:#fff;
}  
div#medien ul  {
    /*list-style: none;*/
    margin-top:5px;
} 
 div#medien ul li  {
    margin-bottom: 15px;   
} 
/* no text-decoration for home link */
header div h1 a {
    text-decoration: none;
    color:black;
    border-bottom: none;
    display: inline-block;
}

/* center active menus */
nav ul {
  font-size: 1.52em;
  list-style: none;
  padding: 0;
  margin: 0;
    /*
  background: #1bc2a2;
  background:#00ff00;
    */
  color: #000;
   
}
nav#defaultNavFpa ul {
  border-bottom: 1px solid black;
}
nav ul li {
  display: block;
  position: relative;
  float: left;
    /*
  background: #1bc2a2;
  background:#00ff00;  
    */
  /*height: 2.2em;*/
   
}
nav#navSideBar ul li {
  border-bottom: 1px solid black;
    overflow: hidden;
}
nav#navSideBar ul li:hover {
  background-color: black;
    color:white;
}
/* last menu level 1 entry, fill navbar 100% */
nav ul li.last {
  float: right;
}

nav ul li ul{
  font-size: 1.0em;
}

/* This hides the dropdowns */

nav li ul { display: none; }

/*menu level 1 */
nav ul li a, nav ul li span {
  display: block;
  padding: 0.6em;
  text-decoration: none;
  white-space: nowrap;
    /*
    height: 1.4em;
    */
    color: #000;
    padding-top: 0.3em;
    padding-bottom: 0px;
    /*font-family: 'CMUSerifExtraBoldNonextended',serif;*/
    font-weight: bold;
    font-size: 0.9em;
}


nav ul li span.active{
    color: #fff;
    background: #E87C48;
    background: #2c3e50;
    background:black;
    
   /* font-size:1.3em;*/
}

nav ul li a:hover, nav ul li span:hover { 
    background: #5a3a50;
    background: #E87C48;
    background: #2c3e50;
    background: black;
    color: #fff; 

    /*height:100%;*/
   /* font-size:1.3em;*/
}
/*
nav ul li.forward span.forward{ 
    color: #000; 
}
*/
/* Display the dropdown */

nav li:hover > ul {
  display: block;
  position: absolute;
}


nav li:hover li { float: none; }

nav li:hover a { background: #1bc2a2; background:#00ff00;}
nav li:hover span { background: #1bc2a2; background:#00ff00;}

nav li:hover li a:hover { 
    background: #2c3e50; 
    background: black;
}
nav li:hover li span:hover { 
    background: #2c3e50; 
    background: black;
}

nav ul.level_1 li ul li { 
    border-top: 0;
    font-size: 0.75em; /*merryweather*/
    text-align: left;
}
/*.main-navigation li ul li { border-top: 0; }
*/
nav ul:before,
nav ul:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

nav ul:after { clear: both; }

nav#defaultNavFpa ul ul.level_2 { 
    width: 100%;
}



nav#defaultNavFpa > ul > li span {
  padding-bottom: 10px;
    padding-top: 10px;
}

/* menu level 2 rechts*/
nav#navSideBar{ 
    /*margin-top:20px;*/
    padding-top:    20px;
    margin-left: 0%;
}
nav#navSideBar ul {
  font-size: 1.2em;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #1bc2a2;
  background:#00ff00;
     background: transparent;
  color: #000;
   
}

nav#navSideBar ul li {
  display: block;
  position: relative;
  float: left;
    width:100%;
    text-align: right;
    /*
  background: #1bc2a2;
  background:#00ff00;  
    */
    background: transparent;
/*  height: 2.3em; menus 2. level können mehrzeilig sein*/
}
nav#navSideBar ul li.active {
  color:white;
    background-color: black;
}
nav#navSideBar ul li.forward {
  color:white;
    background-color: black;
}
nav#navSideBar ul li.trail {
  color:white;
    background-color: black;
}
nav#navSideBar ul {
    padding-right: 10px;
}

nav#navSideBar ul li a, nav#navSideBar ul li span {
  text-align: right;
    padding-left:0;
    padding-right: 5px;
   
        white-space: normal;
    display: inline-block;
 /*   text-align: right;*/
    
}
nav#navSideBar ul li:hover a{
  background-color: black;
    color:white;
    width:100%;
    position: relative;
    right:5px;
}



nav#defaultNavFpa > ul {
  padding: 0;
  margin: 0;
  display: table;
  list-style: none;
  position: absolute;
  width: 100%;
} 

nav#defaultNavFpa > ul > li {
  display: table-cell;
  text-align: center;
    float:none;
} 

nav#defaultNavFpa > ul > li:first {
  text-align: left;
} 

nav#defaultNavFpa > ul > li:last {
  text-align: right;
}

nav#defaultNavFpa > ul > li a {
  display: block;
    padding-top:10px;
    padding-bottom: 10px;
 /* padding: 10px 10px;*/
}

nav#defaultNavFpa > ul > li > ul.level_2 > li {
  padding-top:0px;
    padding-bottom: 0px;
 /* padding: 10px 10px;*/
}


/* content aktuell 
div.mod_article div.ce_text div.content-date  {
  font-style: italic;
}
*/
/* link Weiterbildung */
div#angebot a{
  font-size: 1.2em;
  font-weight: bold;
  margin-top:20px;
}


div#angebot a::before {
    content: "→ ";
}

/* link anmeldeformular rundbrief*/

a#AnmeldungRundbriefe {
  font-size: 1.2em;
  font-weight: bold;
  margin-top:20px;
}


a#AnmeldungRundbriefe::before {
    content: "→ ";
}

#RundbriefFormular{
    display: none;
}


/* link anmeldeformular mitglied*/
a#AnmeldungMitglied {
  font-size: 1.2em;
    font-weight: bold;
    margin-top:20px;
    margin-bottom: 20px;
}


a#AnmeldungMitglied::before {
    content: "→ ";
}
#MitgliedFormular{
    display: none;
}
/* link anmeldeformular spenden*/
a#JetztSpenden {
  font-size: 1.2em;
    font-weight: bold;
    margin-top:20px;
    margin-bottom: 20px;
}


#MitgliedFormular{
    display: none;
}

div#jubilaeumsbuch ul li { 
/*font-family: 'CMUSerifRoman',serif;*/
    font-size: 1.2em;
    color: #000;
}




a#JetztSpenden::before {
    content: "→ ";
}
#SpendenFormular{
    display: none;
}
/* nur für accordion: 
section.AnmeldungMitglied div.toggler {
  font-size: 1.2em;
    font-weight: bold;
    margin-top:20px;
}


section.AnmeldungMitglied div.toggler::before {
    content: "→ ";
}
*/

/*facebook like kontakt and footer */
img#fbImage{
    vertical-align: bottom;
    width:16px;
    /*width: 2%;*/
}
a#facebookLink{
   border-bottom: none;
}

/* margin-right for text in main.inside, keep distance to sidebar */
div#main div.inside{
    margin-left:15px;
    margin-top:15px;
    
    margin-right: 10px;
  /*margin-right: 2%;*/
}
aside#right{
  margin-left: 5px;
    width: 145px;
    width: 220px;
}

/*div#aktuell.mod_article div.ce_text a{ 
*/
div.mod_article div.ce_text a { 
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #00ff00;
    display: inline-block;
    text-decoration: none;
    border-bottom: none;   
    
    vertical-align: text-top;
 }

h1{ 
    text-align: left;
 }

/*spalten layout, h1 links */
/*div#aktuell.mod_article div.ce_text h1{*/
div.mod_article div.ce_text h1{
    /*width: 25%;
    margin-right:  75%;
    
    position: absolute;
    margin-top:0px;
    */
    font-size: 1.4em;
}
/*div#aktuell.mod_article div.ce_text p{*/
div.mod_article div.ce_text > p{
    /*margin-left: 30%;*/
    /*font-size: 1.5em;*/
}
div.mod_article div.ce_text > table{
    /*margin-left: 30%;*/
    /*font-size: 1.5em;*/
}
/*div#aktuell.mod_article div.ce_text ul{*/
div.mod_article div.ce_text > ul{
   /* margin-left: 30%;*/
    /*font-size: 1.5em;*/
}
p.contact{
  line-height: 1.5;
}
/*
div.mod_newslist h2{
  margin-bottom:5px;
}
div.mod_newsreader h1{
  margin-bottom:5px;
}
*/
/*
div.mod_newsreader h2{
  font-size: 1.3em;
    margin-top:0px;
}
*/
/*
div.mod_article div.mod_newsreader div.ce_text{
    margin-top:0px;
}
*/
/*
div#beitrag-lesen div.mod_newsreader div.ce_text > p{
  color:darkgray
}
div#beitrag-lesen div.mod_newsreader div.ce_text > p ~ p {
   color:black;
}
*/

/*
div.mod_article div.mod_newsreader div.ce_text p{
   margin-bottom:20px;
    color:red;
}
*/

/*
div#aktuell.mod_article div.ce_text div.content-date{
*/
/*
div.mod_article div.teaser > div.content-date{
   color:darkgray;
}
*/
div#home.mod_article div.ce_text p{
    margin-left: 0;
}
div#home.mod_article div.ce_text p.homeIntro{
    font-size: 1em;
    margin-top: 0;
}  
div#home.mod_article div.ce_text p.homeText{
    font-size: 1.2em;
    line-height: 1.4em;
    font-weight: bold;
    margin-bottom: 0;
}  
div#home.mod_article div.ce_text{    
    margin-bottom: 0;
}  
/* Abstand zw. Texten:*/
/*div#aktuell.mod_article div.ce_text {*/
div#home.mod_article div.ce_text {
    margin-bottom: 20px;
    margin-top:0px;
}
div#home.mod_article div.ce_text h1{
    font-size: 2.6em;
    margin-top: 0px;
}
/*
div.mod_article div.ce_text p{
    margin-bottom: 20px;
    margin-top:0px;
}
div#aktuell.mod_article div.ce_text {
    margin-bottom: 20px;
    margin-top:20px;
}
*/
div.mod_article div.ce_text p{
    margin-bottom: 20px;
    margin-top:20px;
    margin-top:0px;
}

/* gelbe linie zwischen short news artikel aktuell */
div#liste-aktuell.mod_article div.layout_short:not(:last-child)::after{
    content: "";
    display: block;
    height: 1px;
    margin-top:15px;
    margin-bottom:5px;
    /*margin: 10px;*/
    /*margin-left:30%;*/
    width: 90%;    
    background: #00ff00;
}

div#liste-aktuell-archiv.mod_article div.layout_short:not(:last-child)::after{
    content: "";
    display: block;
    height: 1px;
    margin-top:15px;
    margin-bottom:5px;
    /*margin: 10px;*/
    /*margin-left:30%;*/
    width: 90%;    
    background: #00ff00;
}


div#liste-aktuell.mod_article div.layout_short:last-child::after{
    content: "";
    margin-bottom:30px;
    display: block;
    
}   
div#liste-aktuell-archiv.mod_article div.layout_short:last-child::after{
    content: "";
    margin-bottom:30px;
    display: block;
    
} 
div#mitglied-werden.mod_article div.ce_text::after{
    content: "";
    display: block;
    height: 0px;
    margin-top:10px;
    /*margin: 10px;*/
    /*margin-left:30%; */
    
}
/* gelbe linie zwischen h1 übrige texte */
/*
div.mod_article div.ce_text h1::after{
      border-top-style: solid;
    border-top-width: 1px;
    border-top-color: red;
}
*/
/* styling home, text ohne banner */
 div#titleHome{
        display:block;
}
    
div#titleHomeMobile{
    display:none;
}
    

div#home div.titleLeft{
    width: 720px;
    float:left;
}
div#home div.titleLeft p{
    width: 700px;
}


/*aktuell liste*/
div#aktuell.mod_article div.ce_text ul{
    /*
    font-size: 1em;
    padding-left: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    margin-left: 30%;
    background: transparent;
    */
}

/* listen allgmein */
div.mod_article div.ce_text ul{  
    
    /*font-size: 1.2em;*/
    
    /*
    padding-left: 0px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    background: transparent;
    */
}
div.mod_article div.ce_text ul li{
    font-size: 1.1em;
    /*
    height: 1.4em;
    list-style: none;
    margin: 0;
    padding: 0;
    border: 0;
    */
    /*
    background: transparent;
    clear: both;
    white-space: nowrap;
    */
    
    
}
/*
div.mod_article div.ce_text ul li em{
    font-style: italic;
}
div.mod_article div.ce_text ul li::before {
    content: "→ ";
}
*/
/*ulle
div#id-2014 div.ce_text ul li::before {
    content: "";
    }
*/

div.id-2014 div.ce_text ul li a::before {
    /*content: "vv-" " " attr(href) " ";*/
    /* content: url("../../files/fpa/css/bild.gif") " " attr(href) " "; */
}




/* spenden, liste*/
div#jetzt-spenden.mod_article div.ce_text ul li{
    font-size: 1.2em;
}
div#jetzt-spenden.mod_article div.ce_text ul li a#JetztSpenden{
    font-size: 1.0em;
    margin-top:0;
    font-weight: normal;
    margin-bottom: 0;
}

/* pdf in page*/
.viewPdfInPage{
    position: relative;
    display: block;
   /* height: 0;*/
    padding: 0;
    /*overflow: hidden;*/
}
.viewPdfInPage2{
   width:100%; float:left; height:auto; border:1px solid #5694cf;
   /* 
    height: 0;
    padding: 0;
*/
}

div#personen table{
    width: 100%;
}
div#liste-aktuell h2 a, div#liste-weiterbildungen h2 a{
    color:black;
}
div#liste-weiterbildungen div.mod_newslist div.layout_short {
    margin-bottom: 20px;
}


div#liste-aktuell h2 a, div#liste-fallbeispiele h2 a{
    color:black;
}

div#liste-fallbeispiele:after {
        margin-top:20px;
        margin-bottom: 0px;
        content: '* Name geändert';
        display: block;
        height: 40px;
        width: 100%;
    }

img#fpaTitleLogo{
    margin-top:17px;
    margin-bottom: 16px;
    max-width: 100%;
    height: auto;
    height: 70px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}


div#liste-weiterbildungen:after {
        margin-top:20px;
        content: '';
        display: block;
        height: 10px;
        width: 100%;
    }

#footer p{
    font-size:0.9em; /*15px;*/
    font-weight: bold;
    text-align: center;
}
#footer hr{
    color: black;
}
footer#footer div.inside{
    padding-top:   1px;
    max-width:1600px; 
    margin: 0 auto;
}


/*sticky footer*/
div#container {
min-height: calc(100vh - 185px);/*185*/
}
footer#footer div.inside{
    height: 60px;   
}
footer#footer img#fb1{
    width: 3%;
    vertical-align: bottom;
}
footer#footer img#fb2{
    width: 2%;
}
footer#footer a{
    display: inline;
    text-decoration: none;
    color:black;
    border-bottom: none;
    /*display: inline-block;   OPTION, DISPLAYED ON SEPARATE LINE */
}
/* sidebar spenden*/
div#sideBar {
    background-image: url("../../files/fpa/pics/spendenNeu.png");
    background-repeat: no-repeat;
    background-size: 115px 115px;
    height: 115px;
   /* margin-top: 100px;*/
    width: 115px;
    top:250px;
    left:10px;
    background-position: center;
    position: absolute;
}
/* sidebar spenden home*/
a#sideBarHomeLink{
    position: relative;
    border-bottom: none;
    left:300px;
    
}

.infoAktuelles{
    color: darkgray;
    font-size: 1em;
    margin-bottom:0px;
}

div#liste-aktuell div.mod_newslist div.layout_short h2 {
   margin-top:0px;
}
div#liste-aktuell-archiv div.mod_newslist div.layout_short h2 {
   margin-top:0px;
}
div#sideBarHome {
    /*
    background-image: url("../../files/fpa/pics/spendenNeu.png");
    background-repeat: no-repeat;
    background-position: center;
    
    background-size: 115px 115px;
    height: 115px;
    width: 115px;
    bottom:10px;
    left:0px;
    position: relative;
    margin: auto;
    width: 50%;
    padding-left: 3px;    
    
    background-size: 160px 160px;
    height: 160px;
    bottom:10px;
    left:0px;
    position: relative;
    margin: auto;
    width: 180px;
    padding-left: 3px;   */
}

div#sideBarHome img{
    width: 70%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
  

div#liste-aktuell h2 a, div#wie-unterstuetzen h2 a,div#liste-aktuell-archiv h2 a {
    color: black;
}


a#sideBarLink{
background-color:white;
    border: 8px solid #00ff00;
    margin-top:10px;
    width: 200px;
padding-bottom: 12px;
}

/* wenn ..nav li.SpendenLinkSeite dann display:none
*/
a#sideBarLink h1{
color:black;
        margin-left: 5px;
    margin-right: 5px;
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 1.3em;
     font-family: 'Source Sans Pro', sans-serif;
    text-align: center;
}

/* FORM */

/* Position und Grundeigenschaften des Formulars definieren */
.ce_form .form-css3
{
	margin:0 0 0 80px;
	padding:20px 0 0 20px;
	/*font-family:verdana,arial,sans-serif;*/
}

/* Fieldsets definieren */
.ce_form .form-css3 fieldset
{
	width:80%;
	margin:0 0 30px;
	padding:10px;
	border:1px solid #dfdfdf;
}

/* Fieldset Legenden definieren */
.ce_form .form-css3 fieldset legend
{
	margin:-8px 0 0 -5px;
	padding:0 5px;
	font-weight:bold;
	font-size:1.2em;
	color:#999;
    color: #000;
    color:#2c3e50;
	letter-spacing:.1em;
}
/* Labels definieren */
.ce_form .form-css3 label
{
	display:block;
	padding:10px 0 4px;
	font-weight:bold;
	font-size:1.2em;
	color:#999;
    color: #000;
    color:#2c3e50;
}
.ce_form .form-css3 h1
{
	font-size: 1.6em;
}
/* einzeilige Textfelder definieren */
.ce_form .form-css3 .text
{
	width:300px;
	margin:0 0 4px;
	padding:6px;
	border:1px solid #efefef;
	font-size:1.3em;
	/* Gecko-Browser (Firefox) */
	-moz-box-shadow:inset 3px 3px 6px #cfcfcf;
	/* Webkit-Browser (Safari, Chrome) */
	-webkit-box-shadow:inset 3px 3px 6px #cfcfcf;
	/* allgemein CSS3 */
	box-shadow:inset 3px 3px 6px #cfcfcf;
}
/* mehrzeilige Textfelder definieren */
.ce_form .form-css3 .textarea
{
	width:300px;
	height:100px;
	margin:0 0 4px;
	padding:6px;
	border:1px solid #efefef;
	/*font-family:verdana,arial,sans-serif;*/
	font-size:1.3em;
	line-height:1.6;
	/* Gecko-Browser (Firefox) */
	-moz-box-shadow:inset 3px 3px 6px #cfcfcf;
	/* Webkit-Browser (Safari, Chrome) */
	-webkit-box-shadow:inset 3px 3px 6px #cfcfcf;
	/* allgemein CSS3 */
	box-shadow:inset 3px 3px 6px #cfcfcf;
}
/* Captcha-Feld definieren */
.ce_form .form-css3 .captcha
{
	width:100px;
	margin:0 0 4px;
	padding:6px;
	border:1px solid #efefef;
	font-size:1.2em;
	/* Gecko-Browser (Firefox) */
	-moz-box-shadow:inset 3px 3px 6px #cfcfcf;
	/* Webkit-Browser (Safari, Chrome) */
	-webkit-box-shadow:inset 3px 3px 6px #cfcfcf;
	/* allgemein CSS3 */
	box-shadow:inset 3px 3px 6px #cfcfcf;
}
/* Captcha Textbeschreibung definieren */
.ce_form .form-css3 .captcha_text
{
	margin:0;
	padding:0 0 0 20px;
	font-size:1.3em;
}
/* Absendeknopf definieren */
.ce_form .form-css3 .submit
{
	width:310px;
	margin:10px 0;
	padding:5px 0;
	font-size:1.6em;
	color:#777;
    color:#999;
	/*text-shadow:1px 1px 1px #fff;
	letter-spacing:.2em;*/
	border:none;
	/* Gecko-Browser (Firefox) */
    /*
	-moz-border-radius:6px;
	-moz-box-shadow:1px 1px 1px #888;
    */
	/* Webkit-Browser (Safari, Chrome) */
    /*
	-webkit-border-radius:6px;
	-webkit-box-shadow:1px 1px 1px #888;
    */
	/* allgemein CSS3 */
    /*
	box-shadow:1px 1px 1px #888;
	border-radius:6px;
	text-shadow:2px 2px 2px #fff;
    */
	background:#cfcfcf;
    padding:5px;
    
    padding:5px 15px; background:#ccc; border:0 none;
    cursor:pointer;
    -webkit-border-radius: 5px;
    border-radius: 5px; 
    color:#dfdfdf;
    background-color:#5694cf;
    margin-bottom:20px;

}
/* Fehleranzeige definieren */
.ce_form .form-css3 p.error
{
	width:70%;
	margin:10px 0;
	padding:5px 0 5px 10px;
	font-size:1.2em;
	color:#fff;
	background:#f30;
	/* Gecko-Browser (Firefox) */
	-moz-border-radius:7px;
	/* Webkit-Browser (Safari, Chrome) */
	-webkit-border-radius:7px;
	/* allgemein CSS3 */
	border-radius:7px;
}
/* Hoverzustand ein- und mehrzeilige Textfelder definieren */
.ce_form .form-css3 .text:hover,
.ce_form .form-css3 .textarea:hover
{
	border:1px solid #CF9B9B;
	background:#efefef;
}
/* Fokuszustand einzeiliges Textfeld definieren */
.ce_form .form-css3 .text:focus
{
	width:95%;
	border:1px solid #CF9B9B;
	font-size:1.5em;
	font-size:normal;
	letter-spacing:.1em;
	background:#efefef;
}
/* Fokuszustand mehrzeiliges Textfeld definieren */
.ce_form .form-css3 .textarea:focus
{
	width:95%;
	height:200px;
	border:1px solid #CF9B9B;
	font-size:2em;
	font-size:normal;
	background:#efefef;
}
.ce_form select
{
	font-size: 2em;
}
.ce_form
{
	background-color: lightgray;
}


/* mitgliedschaft */
.ce_form input#opt_3_0
{
	float:left;
    width:30px;
    margin-top:13px;
}
/* newsletter*/
.ce_form input#opt_7_0
{
	float:left;
    width:30px;
    margin-top:13px;
}
.ce_form p.confidentP
{
	font-size: 1em;
}
/*

aside#right div > div{
    margin-top:10px;
    margin-bottom: 10px;
    background-color: #00ff00;
}
div.BannerHome{
    margin-top:15px;
    margin-bottom: 10px;
    padding:0px;
    right:0px;
    top:0px;
    position:relative;
    background-color: #00ff00;
    width: 150px;
    border:0px solid blue;
    
}
div.BannerHome h1{
    margin-left:10px;
    margin-right:10px;
    font-size: 1.4em;
    text-align: left;
}
div.BannerHome p{
    margin-left:10px;
    margin-right:10px;
    font-size: 1em;
    text-align: left;   
}

*/
/*banner*/

div#bannerhome.mod_article > div.BannerHome
{
	color:#000;
    background-color: #00ff00;
   /* margin-top:40px;*/
    margin-bottom:0px;
    
    /*
    width:190px;
    */
}
div#bannerhome.mod_article > .BannerHome ~ .BannerHome {
    color:#000;
    background-color: #00ff00;
    margin-top:10px;
    margin-bottom:0px;
}

aside#right {
     margin-left: 0px;
    margin-top:20px;
    margin-bottom: 20px;
}


div#bannerhome.mod_article >  #mainBanner{
    color:#000;
    background-color: white;
    margin-top:10px;
    border: 8px solid #00ff00;
    margin-bottom:0px;
}


div#bannerhome.mod_article > div.BannerHome h1
{
	font-size: 1.3em;
    position: relative;
    margin-left: 5px;
    margin-right: 5px;
    margin-top:5px;
    text-align: center;
    text-align: left;
}
div#bannerhome.mod_article > div#mainBanner.BannerHome h1
{
	font-size: 1.3em;
    position: relative;
    margin-left: 5px;
    margin-right: 5px;
    margin-top:5px;
    text-align: center;
}

div#bannerhome.mod_article > div.BannerHome p
{
	font-size: 1.0em;
    /*position: relative;*/
    margin-left: 5px;
    margin-right: 5px;
    margin-top:5px;
    margin-bottom:5px;
}
div#bannerhome.mod_article > div.BannerHome a
{
	text-decoration: none;
    color:#000;
    padding-bottom: 12px;
}



div#mainBanner a h1{
     font-family: 'Source Sans Pro', sans-serif;
}




form.formBuch input[type="number"] {
   width:100px;
}




div.layout_short div.teaser{
    margin-bottom: 20px;
}






/*------------------------------------*\
-------- DEMO Code: accordion
\*------------------------------------*/
/*----- Accordion -----*/
.accordion h1  {
	font-size: 1.4em;
}

/*
.accordion-section-title-more{
	font-size: 1.1em;
}
*/
.accordion, .accordion * {
	-webkit-box-sizing:border-box; 
	-moz-box-sizing:border-box; 
	box-sizing:border-box;
}

.accordion {
	overflow:hidden;
    /*
	box-shadow:0px 1px 3px rgba(0,0,0,0.25);
	border-radius:3px;
	background:#f7f7f7;
    */
}

/*----- Section Titles -----*/
.accordion-section-title{
    color:black;
    
}
.accordion-section-title_ {
	width:100%;
	padding:15px;
	display:inline-block;
	border-bottom:1px solid #1a1a1a;
	background:#333;
	transition:all linear 0.15s;
	/* Type */
	font-size:1.200em;
	text-shadow:0px 1px 0px #1a1a1a;
	color:#fff;
}
/*
.accordion-section-title.active, .accordion-section-title:hover {
	background:#4c4c4c;
	text-decoration:none;
}
*/
.accordion-section:last-child .accordion-section-title {
	border-bottom:none;
}

/*----- Section Content -----*/
.accordion-section-content {
	/*padding:15px;*/
	display:none;
}

.hideTeaser {
	display:none;
}
.showTeaser {
	display:block;
}






/*banner*/
/*
div.mod_fpabanner_list {
    margin-left: 0px;
    margin-top: 20px;
    margin-bottom: 20px;

    margin-left: 5px;
    width: 145px;
    width: 220px;
    margin-right: -100%;
}
*/

div.mod_fpabanner_list > div.BannerHome
{
	color:#000;
    background-color: #00ff00;
   /* margin-top:40px;*/
    margin-bottom:0px;
    
    /*
    width:190px;
    */
}

div.mod_fpabanner_list > .BannerHome ~ .BannerHome {
    color:#000;
    background-color: #00ff00;
    margin-top:10px;
    margin-bottom:0px;
}

/*
aside#right {
     margin-left: 0px;
    margin-top:20px;
    margin-bottom: 20px;
}
*/

div.mod_fpabanner_list >  #mainBanner{
    color:#000;
    background-color: white;
    margin-top:10px;
    border: 8px solid #00ff00;
    margin-bottom:0px;
}


div.mod_fpabanner_list > div.BannerHome h1
{
	font-size: 1.3em;
    position: relative;
    margin-left: 5px;
    margin-right: 5px;
    margin-top:5px;
    text-align: center;
    text-align: left;
}
div.mod_fpabanner_list > div#mainBanner.BannerHome h1
{
	font-size: 1.3em;
    position: relative;
    margin-left: 5px;
    margin-right: 5px;
    margin-top:5px;
    text-align: center;
}

div.mod_fpabanner_list > div.BannerHome p
{
	font-size: 1.0em;
    /*position: relative;*/
    margin-left: 5px;
    margin-right: 5px;
    margin-top:5px;
    margin-bottom:5px;
}
div.mod_fpabanner_list > div.BannerHome a
{
	text-decoration: none;
    color:#000;
    padding-bottom: 12px;
    width: 100%;
}







@media (min-width: 100px) and (max-width: 600px) { /* Kompaktes Layout */ 
    header {
        background-size: 100% 100%;
        background-repeat: repeat-x;    
    }
    
    header > div > a#a_fpaTitleLogo{
        position: absolute;
        width:75%;
        left:12.5%;
    }
    
    div.mod_article div.mod_newsreader h1{
        font-size: 1.4em;
    }
    
    div.mod_article div.mod_newsreader h2{
        font-size: 1.2em;
    }
    
    div#main div.inside{
        margin-right: 15px;         
    }
    
    a#mmenuNavId {
       position: absolute;
        top:20px;
        right:5px;
    }


    img#fpaTitleLogo{
        height: auto;
    }


    a#mmenuNavId img{
        width:20px;
    }

    
    form.formBuch p.input-user-field label.lableBlock{
       display:block;
    }
    
    form.formBuch p label.amountFirstSection{
        width: 0px;
    }
    
    form.formBuch p input#opt_paymentPf, input#donationOther{
        margin-left: 6px;
    }
    
     form.formBuch p input#opt_paymentPf, input#donationOther, input#priceReg{
        margin-left: 6px;
    }
    
    form.formBuch p input[type="radio"]{
        margin-left: 0px;
    }
    form.formBuch p label.newsletter{
        width: 80%;
    }
    
    div#home.mod_article div.ce_text h1{
        font-size: 1.5em;
    }
    div#home.mod_article div.ce_text{
        width: 100%;
    }
      div#titleHome{
        display:none;
    }
    
    div#titleHomeMobile{
        display:block;
    }
    
    div#home div.titleLeft p {
        width: 100%;
    }
    
    #footer{
        margin-top:5px;
        margin-bottom: 5px;
    }
    #footer p {
        font-family: arial;
        margin:0px;
        font-size: 0.8em;
    }
    
    footer#footer div.inside{
        height: auto;
    }
    
    
    div#mainBanner{
        display:none;
    }
    
    aside#right{
        margin-left: 15px;
        margin-right: 15px;
        width: auto;
    }
    
    nav ul li, nav ul li.last{
        float:none;
    }
    
    
    /* rundbriefe */
    div#medien ul{
        padding-left: 20px;
    }
    
      
    a#sideBarLink{
        border: 5px solid #00ff00;
         margin-top: 10px;
        width: initial;
    padding-right: 15px;
    padding-bottom: 0px;
    }
    
    a#sideBarLink h1{
        font-size: 1em;
        width:60%;
        float:left;
        color: black;
        margin-left:5px;
    }
    /*
    a#sideBarLink{
        border: 5px solid #00ff00;
       
    }
    */
    
    

    a#sideBarLink h1{
        text-align: left;
    }

    div#sideBarHome {
        display:flex;
        width: 35%;       
        background-image:none;
        height: inherit;
        margin-bottom: 0px;
        padding-bottom: 0px;
    }
    
    div#sideBarHome img{
        width: 100%;
        height: 100%;
        margin-top: 5px;
        margin-bottom: 5px;
    }
    
    /*
    a#sideBarLinkMobile{
        border: 5px solid #00ff00;
    }
    
    a#sideBarLinkMobile h1{
        font-size: 1em;
        width:60%;
        float:left;
        color: black;
        margin-left:5px;
    }
    div#sideBarHomeMobile {
        display:flex;
        width: 35%;       
    }
    
    div#sideBarHomeMobile img{
        width: 100%;
        height: 100%;
        margin-top: 5px;
        margin-bottom: 5px;
    }
*/
    
    
    nav.mod_mmenu ul{
        color:white;
    }
    
    nav.mod_mmenu ul li span.active, nav.mod_mmenu ul li.forward span.forward{
         color:#00ff00;
    }
    
    nav.mod_mmenu li:hover a{
        background-color: none;
    }
    
    li a.spendenMenuMobile, nav.mod_mmenu ul li.spendenMenuMobile span.active, nav.mod_mmenu ul li.forward.spendenMenuMobile span.forward{
        background-color: #00ff00;
        color:black;
    }
}
