/* 2022 ND mit akkordeon  */



/*@import url _akkordeon.css;
@import url _akkordeon_lehrgang.css;
@import url _akkordeon_glossar.css;  
@import url __fonts_2022.css;*/


html {
	scroll-behavior: smooth;
}
  
body {
	/* hyphens */
   -moz-hyphens: auto;
   -o-hyphens: auto;
   -webkit-hyphens: auto;
   -ms-hyphens: auto;
   hyphens: auto; 
}

p {
	font-size: 16px;
	line-height: 1.6em;
	font-style: normal;
	font-weight: normal;
	text-align: left;
	}

Header {
    float: right;
}





/*###########################################################################*/ 
/* CSS erweitern um MENÜ-Button und entsprechende Steuerung */
/*	Menü-Button oben rechts einblenden bei kleiner als 800px */


Header {
	float: left;
	width: 100vw;
}

#bereichlogo {
	color: white;
	background-color: black;		
	display: block;
	padding: 0em;
	text-decoration: none;
	text-align: center;	
}

#bereichlogo {
	width:100%;
}


#steuerung a:hover {
	color: black;
	background: orange;
}

#steuerung {
	margin-top: 0px;
	display: block;
	width:0px;
	height: 0px;
	transition: all 0.5s ease-in-out;
}


#menurahmen{
	width: 90%;
	margin: 24px 0px 20px 12px;
	/*transition: all 0.9s ease-in-out;*/	
	display: inline-block;
	background: #fff;
	border: solid 1px #AFAFAF;
	margin: 0px 0px 0px 0px;	
	opacity:1;		
}




/*
#menubutton-absolute {
z-index: 300;
position: fixed;
}*/	
	


.menue-button {
	display: block;
	height: 24px;
	width: 24px;
	background: white; 
	float: right;
	border-style: solid;
	border-color: grey;
	border-radius: 35px; 
	margin-top: 2px;
	margin-right: 2px;
	/*box-shadow: 1px 1px 5px grey;*/
	position: absolute;
	right: 3px;
	top: 85px;
	padding: 0.5em;
	color: white;
	cursor: pointer;
	text-decoration: none;
}


/* von https://www.mediaevent.de/tutorial/css-transform.html */
.line { 
   color: #279126;
   position: absolute; 
   left:8px;
   height: 4px; 
   width: 25px; 
   background: grey;
   border-radius: 2px;
   display: block; 
   transition: 0.5s; 
   transform-origin: center; 
}
.lineup { 
   color: #279126;
   position: absolute; 
   left: 7px;
   top: 8px;
   height: 3px; 
   width: 25px; 
   background: grey; 
   border-radius: 2px;
   display: block; 
   transition: 0.5s; 
   transform-origin: center; 
}

.line:nth-child(1) { top: 10px; }
.line:nth-child(2) { top: 19px; }
.line:nth-child(3) { top: 28px; }


.menue-button-close:target: .line:nth-child(1){
   transform: translateY(9px) rotate(-45deg);
}

.menue-button-close:target: .line:nth-child(2){
   opacity:0;
}

.menue-button-close:target:.line:nth-child(3){
   transform: translateY(-9px) rotate(45deg);
}

.menue-button:hover {
	color: white;
	text-decoration: none;
}

#nav-menue:target #steuerung {
    display: block;
    width: 100vw;
    height: 100%;
    max-width: 800px;
}



#nav-menue:target .menue-button-beschr-open {
			display: none ; 
}

#nav-menue:target #kapitelmenu {
			display: inline;
}


.button-up {
	display: none;
}

.button-up-container{
	position: fixed;
	bottom: 800px;
	right: calc(50vw - 25px);
    z-index: 100000;
	visibility: hidden;
	opacity: 0;
	transition: 2s;
}


/* per Hover animierte Eigenanzeige im Zentrum 20190317
	 https://www.w3schools.com/howto/howto_css_image_overlay.asp */

.tost_innercont_pict {
	float: left;
	position: relative;
	width:100%;
	max-width: 710px;
	margin: 0px 10px 18px 0px;
	/*border: 2px solid #e5e5e5;
	background-color: #e5e5e5;
	box-shadow: 2px 2px rgba(0,0,0,.05);
	background-image: url("https://www.fotoschule-ruhr.de/images/anzeigen/aktuell.jpg");
	background-size: Cover;*/

}

.tost_innercont_image {
	  display: block;
	  width: 100%;
	  height: auto;
}

.tost_innercont_pict:hover .tost_innercont_overlay {
	  opacity: 0.9;
}

.tost_innercont_overlay {
	  position: absolute;
	  top: 0;
	  bottom: 0;
	  left: 0;
	  right: 0;
	  height: 100%;
	  width: 100%;
	  opacity: 0;
	  transition: .5s ease;
	  background-color: #008CBA;
}

.tost_innercont_text {
	  color: white;
	  font-size: 2rem;
	  line-height: 2.2rem;
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  opacity: 1;
	  -webkit-transform: translate(-50%, -50%);
	  -ms-transform: translate(-50%, -50%);
	  transform: translate(-50%, -50%);
	  text-align: center;
}


@media screen and (max-width: 800px) {
    #sticky {
        position: -webkit-sticky;
        position: fixed;
        top: calc(40vh);
        right: 0;
        /*background-color: white; */
        font-size: 14px;
        z-index: 300;
        max-width: 600px;
        margin: 0px auto;
    }


.button-up-container.active{
	bottom: 10px;
	visibility: visible;
	opacity: 1;
	opacity: 0.8;
}
    
.button-up {
	display: block;
	height: 50px;
	width: 50px;
	background: white; 
	float: right;
	border-style: solid;
	border-color: grey;
	border-radius: 50px; 
	margin-top: 2px;
	margin-right: 0px;
	/*box-shadow: 1px 1px 5px grey;*/
	box-shadow: 2px 6px 25px rgba(0, 0, 0, .3);
	position: relative;
	/*right: 3px;
	top: 65vh;
	padding: 0.5em;*/
	color: white;
	cursor: pointer;
	text-decoration: none;
	z-index: 500;
	
	-webkit-transition: -webkit-transform .25s ease-in-out;
    transition: -webkit-transform .25s ease-in-out;
    -o-transition: -o-transform .25s ease-in-out;
    transition: transform .25s ease-in-out;
    transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out, -o-transform .25s ease-in-out;
}    


.button-up:hover {
    -webkit-transform: scale(1.4);
    -o-transform: scale(1.4);
    transform:scale(1.4)
}

}




/*+++++++++++ Sidebar Navi Start*/


#sidebar {
      display: none;
}

.sidebar-menu {
	 padding: 10px 0px 0px 0px;
     float: right; 
     width: 100%;
     background: #ffffff;

 }
 .sidebar-menu ul {
     list-style: none; padding-left: 0; margin-left: 0;
 }
 .sidebar-menu li {
     margin-bottom: 1px; padding: 2px 0 2px 12px; border-bottom:1px solid #eed;
     background: url(img/listen-icon.gif) no-repeat left 9px;
}


#hauptmenu {
	float: left;
	width: calc(50% - 4px);
	font-size: 1.0em;
	line-height: 1.7em;
	display: inline;
	margin: 0px 0px 0px 0px;
    padding-top: 0px;
    background: #fff;
    border-right: solid 1px #AFAFAF;
}


#hauptmenu ul {
	list-style: none;
	margin: 0 0 0px 0;
	padding: 0;
}

#hauptmenu ul li {
	display: inline;
	margin:0;
	padding:0;
}
#hauptmenu li{
	list-style: none;
}

#hauptmenu ul li a {
	color: #777777;
	display: block;
	text-decoration: none !important;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 10px;
	background-repeat: no-repeat;
	background-position: 10px 50%
}

#hauptmenu ul li a:hover{
	color: #000000;
	background-color: #F8F8F8;
}


#kapitelmenu {
    font-color: #000000;
    float: left;
    width: calc(50% - 5px);
    font-size: 1.0em;
    line-height: 1.2em;
    display: none;
    margin: 0px 0px 0px 0px;
    padding: 0px;
    padding-top: 0px;
    background: #fff;
    /*border-left: solid 1px #AFAFAF;*/
}

	#kapitelmenu a {
	margin-bottom: 0.2em;
	padding-top: 0.8em;
	}


#kapitelmenu ul {
	list-style: none;
	margin: 0 0 0px 0;
	padding: 0;
}

#kapitelmenu ul li {
	display: inline;
	margin:0;
	padding:0;
}
#kapitelmenu li{
	list-style: none;
}

#kapitelmenu ul li a {
    color: #777777;
	display: block;
	text-decoration: none !important;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 10px;
	background-repeat: no-repeat;
	background-position: 10px 50%;
    width: 99%;
}


#kapitelmenu ul li a.ausgewaehlt2 {
    color: #000;
	display: block;
	text-decoration: none !important;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 10px;
	background-repeat: no-repeat;
	background-position: 10px 50%;
    width: 99%;
}


#kapitelmenu ul li a:hover{
	color: #000000;
	background-color: #F8F8F8;
}




.menukopf {
	color: white;
	display: block;
	font-weight: bold;
	text-decoration: none !important;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 10px;
	background-repeat: no-repeat;
	background-position: 30px 50%;
    background-color: #2e2e2e;
    border-bottom: solid 1px white;
    font-size: 14px;
    line-height: 1.7em;
    width: 99%;
}


.ausgewaehlt2 a:hover{
	color: #000;
	background-color: #AFAFAF;
}

.ausgewaehlt {
	color: #000;
	display: block;
	 font-weight: bold;
	text-decoration: none !important;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 10px;
	background-repeat: no-repeat;
	background-position: 30px 50%;
    background-color: #EAEAEA;
}

.ausgewaehlt2 {
	color: #fff;
	display: block;
     font-weight: bold;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 10px;
	background-repeat: no-repeat;
	background-position: 0px 50%;
         background-color: #EAEAEA;
}


.ausgewaehlt3 {
	color: #000000;
	display: block;
     font-weight: bold;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 10px;
	background-repeat: no-repeat;
	background-position: 0px 50%;
     background-color: #ffffff;

}


.sidebartext {
    text-align: left;
    width: 100%;
    font-size: 1.2em;
    line-height: 1.5em;
    padding-top: 0px;
    padding-right: 10px;
    padding-bottom: 0px;
}

#sidebar h2 {
    color: #279126;
    /*color: #FFEA00;*/
    float: left;
	/*width: 260px;*/
	line-height: 1.7em;
	display:inline;
	margin: 20px 0px 0px 0px;
	padding-left: 0px;
}

/*++++++++++++ Sidebar Navi Ende */


/*++++++++++++ Newsletter_Anfang */
#newsletter_anmeldung_phone {
display: block;
float: left;
width: 100vw;
margin-bottom: 20px;	
}

#newsletter_anmeldung_phone p {
font-size: 16px; 
margin: 3px;
}

textarea
{
    font-family: inherit;    
}

form {
    border: 1px solid #afafaf;
    width: 90%;
    background-color: #f3f3f3;
    margin: 0 auto;
    padding: 0 1em;
}



form label {
    display: block;
    font-size: 1em;
    font-weight: 800;
    color: darkslategrey;
    padding-left: 0px;    
}

input,
textarea
{
    width: 95%;
    font-size: 1.1em; 
    padding: 4px;
    font-family: inherit;
    font-weight: lighter;
    border:1px solid gray;
    outline: none;
    border-radius: 0.3em;
}    

input#spamschutz, 
textarea
{
  width: 35%;
}

input:focus,
textarea:focus { 
    border:1px solid orange;
}

input[type=submit] {
    background-color: #279126;
    cursor: pointer;
    width: 100%;
    padding: .3em 0;
    border-radius: 0.7em;
    color: white;
}

input[type=submit]:hover {
    background-color: yellow;
    box-shadow: 2px 2px 2px grey;
    color: black;
}
/*++++++++++++ Newsletter_Ende */


/*################*/
body {
    /*background: url(images/bg_grau_kamera.jpg) repeat fixed;*/
     /*background: #FAFAFA url(img/body.gif) repeat-x;*/
     color: #333;
     margin: 0; padding: 0;
     /*font: 65%/1.5 'lucida grande', verdana, sans-serif;*/
     font:  16px 'Open Sans', verdana, sans-serif;
      /* font-family: 'Droid Sans', sans-serif;*/
     text-align: center; /* Zentriert den Inhalt für ältere Browser*/ 
}


.nowrap { 
	white-space:nowrap;
	}


.small {
  font-size: 12px; /* 75% of the baseline */
}

.large {
  font-size: 20px; /* 125% of the baseline */
}



/*++++++++++ TOP Bereich */

#topcontainer {
    background-color: #000;
    padding: 0px; 
    /* position:fixed; */ 
    /* top:0px; */ 
    margin:auto; 
    z-index:100000; 
    width:100%;
    max-width: 960%;
}

#topbild {
display: none;
}


#mobiltopcontainer {
    background-color: #000;
    padding: 0px; 
    /*position:fixed; */
    top:0px; 
    margin:auto; 
    height: 0px;
}

#mobiltopbild {
    display: inline;
    width: 320px;
}

#mobiltopmenu {
text-align: left;
	float: left;
	width: 100%;
    height: 33px;
    background: #fff;
    padding: 1px; 
    margin: 0px; 
   /* margin-top: -10px;*/
    letter-spacing: 0.5px;
    color: #279126;
 }


#mobiltopmenu ul {
     display: inline;
     padding: 0 25px; margin: 0;
     list-style: none;
     height: 38px; 
     line-height: 38px;
     /*background: url(img/hauptnavi-bg.gif) no-repeat;*/
 }

#mobiltopmenu a {
    color: #279126;
    text-decoration: none;
}


#mobiltopmenu  a:hover, 
#mobiltopmenu  a:aktiv {
    text-decoration: none;
} 


#topmenu {
    width: 100%;
    height: 0px;
    background: #000;
    padding: 0px; 
    margin: 0 auto; 
     letter-spacing: 2px;
     color: #279126;
 }


#topmenu ul {
     display: inline;
     padding: 0 25px; margin: 0;
     list-style: none;
     height: 38px; line-height: 38px;
     /*background: url(img/hauptnavi-bg.gif) no-repeat;*/
 }

#topmenu a {
    color: #279126;
    text-decoration: none;
    margin-right: 17px;
}


#topmenu  a:hover, 
#topmenu  .aktiv {
    text-decoration: underline;
} 


.menu-toggle {
font-size: 40px;
}

#topzeile {
     font: 16px 'Open Sans', verdana, sans-serif;
     color: #4C4C4C;
     margin-bottom: -12px; 
     margin-right: 24px;
     line-height: 18px;
     margin-top: 10px;
     display: block;
     background-repeat: no-repeat;
     background-position: 10px 50%;
     background-color: #F8F8F8;
}

#hauptnavi {
	display: none;
	}
	
	

/*++++++++++ CONTAINER BEREICH */
	
	
#container-container {
    margin: 0 auto; 
    text-align: right;
    width: 100vw;
    padding: 0px; 
    background: #fff;
    position: relative;
}


#container {
    margin: 0px auto;
    text-align: left;
    width: 100vw;
    padding: 0px;
    background: none repeat scroll 0% 0% #FFF;
    position: relative;
    max-width:899px;
}




/*++++++++++ Mittelbereich Start  */


#mittelbereich {
    padding: 0px 0px 0px 0px;
    clear: left;
    background: #fff;
}


#mittelbereich h2 {
     margin: 0;
     font: 26px Open Sans, serif;
     letter-spacing: 1px;
     color: #444;
     background: #fff /*url(img/rahmen-linie.gif)*/ repeat-x bottom;
     	/*text-shadow: 2px 1px 1px #afafaf;*/
}

#mittelbereich p, #mittelbereich ul, #mittelbereich ol,
#mittelbereich dl, #mittelbereich form {
     margin-top: 7px; 
     margin-bottom: 17px;
 }

#mittelbereich ul {
     margin-top: 0; 
}

#mittelbereich a {
     color: #279126; text-decoration: none;
}

#mittelbereich a:hover {
     color: #333; text-decoration: underline;
 }


#mittelbereich .clearer {
     clear: both;
}


#obenad {
     display: none;
	}

#anmerkung {
    text-align: left;
    font-size: 15px;
    clear: left;
    background: #fff;
}
    
/*++++++++++ Mittelbereich Ende  */



/*++++++++++Inhalt */


.inhalt {
	float: left;
	/*font-size: 14px;*/
	line-height: 1.6em;
	/*width: 300px;*/
	width: 95%;
	padding: 0px 10px 20px 10px;
	/*margin-left: 5%;
	margin-right: 5%;*/
	background: #fff;
	/*border-right: 1px #000 solid;*/
 }
 
 
 
 
  @media only screen and (max-width:800px) {
 .inhalt {
	padding: 2px 10px 20px 10px;
 }
 														}

.inhalt_footer_black {
	float: left;
	line-height: 1.6em;
	width: 100%;
	background: #000;
	text-align: center;
	color: #a6a6a6;
 }

/*.inhalt h1 {
	font: 34px 'Open Sans', verdana, sans-serif;
	line-height: 42px;
	margin-bottom: 0px;
	font-weight:bold;
	text-align: left;
 }*/
 
 .inhalt h1 {
    font: 25px 'Open Sans', verdana, sans-serif;
    line-height: 32px;
    margin: 20px 0 15px 0;
    font-weight: bold;
    text-align: left;
    /* text-shadow: 2px 1px 1px #CCC; */
}
 
.inhalt h3 {
     font: 22px 'Open Sans', verdana, sans-serif; margin-bottom: 0px; 
     /*text-shadow: 2px 1px 1px #ccc;*/
 }

.inhalt h4 {
     font: bold 13px 'Open Sans', verdana, sans-serif; margin-bottom:
-3px; }

.inhalt h5 {
     font: 12px 'Open Sans', verdana, sans-serif; margin-bottom:
-3px; }




#kapitelname h5 {
     font: 12px 'Open Sans', verdana, sans-serif; 
     margin-bottom: -15px; 
     line-height: 12px;
     margin-top: 12px;
}


.aufz {
    padding: 0px;
    margin: 0px 0px 0px 30px;
}

#inhalt .clearer {
     clear: both;
} 







#tomtext {
    font-size: 16px;
    line-height: 1.4em;
    margin: 0 auto;
    /* margin-right: 10px; */
    text-align: left;
    /* width: 100%; */
    padding: 0px 5px 10px 10px;
    background: #EDEDED;
}

#tomtext h1 {
	font: 24px 'Open Sans', verdana, sans-serif;
	line-height: 30px;
	padding-top: 5px;
	margin-bottom: 3px;
	/*font-weight:bold;*/
	text-align: left;
    text-shadow: 2px 1px 1px #CCC;
 }
 
   #tomtext p {
 	margin-bottom: 0px;
  }


@media only screen and (max-width:800px) {
  
  #tomtext p {
  	font-size: 16px;
  	margin-bottom: 5px;
  }
 #tomtext h1 {
	font: 24px 'Open Sans', verdana, sans-serif;
	line-height: 30px;
	margin-bottom: 10px;
 }
}

/*++++++++++++ Bilder Illustrationen */

#bild_alleine {
    width: 519px;
	float: left;
	text-align: left;
	padding-bottom: 20px;
	padding-bottom: 20px;
}

.bild {
    width: 100%;
	float: left;
	text-align: left;
	padding: 10px 10px 10px 0px;
}

.bildlegende {
		font-weight:bold;
         font-size:0.8em;
         line-height:1.2em;
         float: left;
         text-align: left;
}

.bildlegende_links {
width: 300px;
	font-weight:bold;
         font-size:0.85em;
         line-height:1em;
         float: left;
         	text-align: left;
}

.illustration   {
	line-height: 1em;
	padding: 10px 0px 10px 0px;
	text-align: right;
	width:300px;
}

.illulegende {
	    font-weight:bold;
        font-size:0.8em;
        line-height:1.2em;
        padding-bottom: 10px;

}

/*++++++++++++ Bilder Illustrationen */


/*+++++++++++Inhalt Ende */



/*++++++++++++ Pseudoformate*/
a:name { color:#000000; text-decoration:none; }
a:link { color:#3F3F3F; text-decoration:underline; }
a:visited { color:#3F3F3F; text-decoration:underline; }
a:hover { color:#000000; text-decoration:underline; }
a:active { color:#AFAFAF; text-decoration:none; }
/*++++++++++++ Pseudoformate Ende*/


/*++++++++++++ Linkformate */

a.inhalt[href ^="http://"] {
    background: url(images/external.png) center right no-repeat;
    color:#000000;
    padding-right: 13px;
}

a.inhalt[href ^="http://www.fotoschule"] {
    background: url(images/internal.png) center right no-repeat;
    color:#000000;
    background-color:#FFDF00;
    padding-right: 13px;
}

a.inhalt[href ^="http://www.striewisch"] {
    background: url(images/internal.png) center right no-repeat;
    color:#000000;
    padding-right: 13px;
}

a.inhalt[href ^="http://www.fotolehrgang"] {
    background: url(images/internal.png) center right no-repeat;
    color:#000000;
    padding-right: 13px;
}

a.inhalt[href ^="http://www.amazon"] {
    background: url(images/dot_tran.gif) center right no-repeat;
    color:#000000;
    padding-right: 0px;
}

a.various_1 {
    font-style: italic;
    color: rgb(0, 0, 0);
    background-color: rgb(192, 255, 0);
    text-decoration: underline;
    padding: 0.08em;

}

a.various_scroll {
    font-style: italic;
    color: rgb(0, 0, 0);
    background-color: rgb(192, 255, 0);
    text-decoration: underline;
    padding: 0.08em;

}


a.link_gruen {
color: #279126;
}


/*++++++++++++ Linkformate Ende*/




/*++++++++++++ Textteile Ende */


.inhalt
	{
	width: calc(100vw - 14px);
	padding: 0px 7px 20px 7px;
 	}
		
.inhalt_footer_black {
		width: 100%;
		margin: 0px auto;
		}


.anleitungs_box {
			/*width: 489px;*/
			text-align: justify;
			margin: 10px 0px 0px 0px;
	
			padding: 20px;
			background-color:#F3F3F3;
			border: solid 1px #AFAFAF;
		}
	


.kurstext_frame {
	float: left;
	width: 100%;
	padding-top: 30px;
	padding-bottom: 30px;
	text-align: center;
	}
	
	
.kurstext_footer {
    float: left;
    line-height: 1.3em;
    width: calc(100vw - 60px);
    background: #000;
    text-align: justify;
    color: #a6a6a6;
    padding: 5px 30px 5px 30px;
    text-align: left;
    font-size: 16px;
}

#footer_impressum {
	width: 100%;
	text-align: center;
	height: 50px;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-bottom: 10px;
	background-color: black;
	color: white;
}



.footer-main {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    display: inline-block;
    font-size: 1rem;
    line-height: 20px;
    font-family: Helvetica,Arial,sans-serif;
    text-rendering: optimizelegibility;
    color: grey;
    background-color: black;
    padding-top: 20px;
    padding-bottom: 20px;
    vertical-align: top;

}













































































/* Minimum width of 800 pixels. *//* Minimum width of 800 pixels. *//* Minimum width of 800 pixels. */
/* Minimum width of 800 pixels. *//* Minimum width of 800 pixels. *//* Minimum width of 800 pixels. */
/* Minimum width of 800 pixels. *//* Minimum width of 800 pixels. *//* Minimum width of 800 pixels. */
/* Minimum width of 800 pixels. *//* Minimum width of 800 pixels. *//* Minimum width of 800 pixels. */

@media screen and (min-width: 801px) {


	#container-container {
			/* top:150px; */
			float: left;
		}

	.inhalt {
		/*width: 410px;*/
		width: calc(100% - 360px);
	}

		#mobiltopcontainer {
			display: none;
		}
		
		#mobiltopmenu {
			display: none;
 }


		.menu-toggle {
			display: none;
		}

		.nav-menu-toggle {
			display: inline;
		}


	   #topbild {
		   width: 100vw;
		   display: inline;
		   /*background: #000;*/
		   padding: 0px;
		   margin: 0 auto;
		   max-width: 899px;
	   }


		#topcontainer2 {
			background-color: #fff;
			padding: 0px; 
			/* position:fixed;  */
			top:100px; 
			z-index:99999; 
			width:100%;
		}


	   #topmenu {
		   display: block;
		   width: 100vw;
		   background: #fff;
		   padding-left: 35px;
		   margin: 0 auto;
		   letter-spacing: 2px;
		   color: #279126;
		   max-width: 899px;
	   }


		#topmenu ul {
			 display: inline;
			 padding: 0px; 
			 margin: 0;
			 list-style: none;
			 height: 38px; line-height: 38px;
			 /*background: url(img/hauptnavi-bg.gif) no-repeat;*/
		 }

		#topmenu li {
		float: left;

		}

		#tompmenu li a {
			color: #279126;
			text-decoration: none;
			margin-right: 17px;
		}

		#tompmenu li a:hover, 
		#tompmenu .aktiv {
			text-decoration: underline;
		} 

		#topzeile {
			 font: 12px 'Open Sans', verdana, sans-serif;
		}


		#obenad {
    	 		display: block;
    	 		/* height: 120px; */
    	 		margin: 0px 0px 0px 0px;
    	 		background-color: #ACACAC;
    	 		  	 		
		}

		￼￼￼￼

     
		#kopf {
				margin: 0; 
				padding: 0; 
	
		}

		h1#kopf {
				margin: 0; 
				padding: 0; 
				background: #FFEA00 url(images/header_0.png) repeat-x;
				height: 168px;
	
		}
		￼￼￼￼￼￼￼￼
		#kopfbereich {
			background: #31363E;

		}
		
		h1#kopfbereich {
			margin: 0; 
			padding: 0; 
			height: 133px;
			/*border-bottom: 1px solid #fff;*/
			background: #31363E url(images/header_0_5.png) repeat-x;
			color: #fff;
		}
		
		h1#kopfbereich a {
			display: block; width: 440px; 
			height: 130px;
			background: url(img/peruns-logo.gif) no-repeat;
			text-indent: -9999px;
		} 

	   /*#nav-menue:target #steuerung {
			display: block;
			width: 300px;
			height: 100%;
			max-width: 335px;
       }*/
       
       #nav-menue:target #steuerung {
			display: block;
			width: 100vw;
			height: auto;
			max-width: 335px;
}

		#hauptnavi {
			 
			 display: inline;
			 letter-spacing: 2px;
			 color: #279126;
		 }

		#hauptnavi ul {
			 padding: 0px; 
			 margin: 0;
			 list-style: none;
			 height: 38px; line-height: 38px;
			 /*background: url(img/hauptnavi-bg.gif) no-repeat;*/
		 }

		#hauptnavi li {
		display: inline;
		float: left;
		}

		#hauptnavi li a {
			color: #279126;
			text-decoration: none;
			margin-right: 17px;
		}

		#hauptnavi li a:hover, 
		#hauptnavi .aktiv {
			text-decoration: underline;
		} 

		.menukopf {
			width: 140px;
		}
		
			#sidebar {
		  display: inline;
	   }

	   #sidebar-menu {
		display: block;
		float: right; 
		width: 300px;
		margin-left: 0px;
		padding-right: 10px;
		}
	 
		#menuknopfrahmen {
		display: none;
		}
	 
	   .menue-button {
	   display: none;
	   }

	 

	   #hauptmenu {
		   font-color: #989898;
		   float: left;
		   width: 147px;
		   font-size: 1.0em;
		   line-height: 1.7em;
		   display:inline;
		   margin: 0px 0px 0px 0px;
		   padding-top: 0px;
		   background: #fff;
		   border-right: solid 1px #AFAFAF;
		   }


	   #kapitelmenu {
		   font-color: #000000;
		   float: left;
		   width: 151px;
		   font-size: 1.0em;
		   line-height: 1.3em;
		   display:inline;
			margin: 0px 0px 0px 0px;
			padding: 0px;
			padding-top: 0px;
			background: #fff;
			border-left: solid 1px #AFAFAF;
	   }



		#kapitelmenu ul li a {
		padding-bottom: 5px;
		padding-top: 5px;
		width: 140px;
		}
	
		#kapitelmenu ul li a {
		    width: 140px;
		}
	
		#kapitelmenu ul li a.ausgewaehlt2 {
 		   width: 140px;
		}

	   .illustration {
		   text-align: right;
		   width: 100%;
		}

		#sidebar {
			 font-size: 12px;
			 float: right; 
			 width: 300px;
			 margin-left: 0px;
			 padding-right: 10px;
  			position: -webkit-sticky;
  			position: sticky;
  			top: 0;
		 }

	   #bereichlogo {
		   color: white;
		   background-color: black;		
		   display: none;
		   padding: 0em;
		   text-decoration: none;
		   text-align: center;	
	   }

	   #bereichlogo {
		   width:100%;
	   }


		#geschenkxmas {
		position: sticky;
		top: 0;
		font-size: 16px;
		}

	   div.sticky {
		 position: -webkit-sticky;
		 position: sticky;
		 top: 0;
		 background-color: yellow;
		 padding: 50px;
		 font-size: 20px;
        font-size: 12px;
        float: right;
        width: 300px;
        margin-left: 0px;
        padding-right: 10px;
        position: -webkit-sticky;
        position: sticky;
        top: 0;
    }

	  #sidebar-menu {
		  display: block;
		  float: right;
		  width: 300px;
		  margin-right: 10px;
		  padding-right: 0px;
	  }

	  #steuerung {
		  margin-top: 0px;
		  display: block;
		  width: 336px;
		  height: auto;
		  transition: all 0.5s ease-in-out; 
	  }

/*	  #menurahmen {
		  width: 300px;
		  margin: 24px 0px 20px 12px;
		  transition: all 0.9s ease-in-out;
		  display: inline-block;
		  background: #fff;
		  border: solid 1px #AFAFAF;
		  margin: 0px 0px 0px -10px;
	  }*/
	  
	  
	  Header {
       width: 300px;
     }
     
     img {
     max-width: 839px;
     }

    .kurstext_footer {
        float: left;
        width: calc(33vw - 50px);
        padding: 0px 20px;
    }
    
	
	/*++++++++++++ Newsletter_Anfang */
	#newsletter_anmeldung_phone {
	display: none;
	 }
	
	 #newsletter_anmeldung p {
	 font-size: 13px; 
	 margin: 3px;
	 }

	 textarea
	 {
		 font-family: inherit;    
	 }

	 form {
		 /*border: 1px solid black; Ü B E R N E H M E N*/
		 width: 90%;
		 /*background-color: whitesmoke; Ü B E R N E H M E N*/
		 margin: 0 auto;
		 padding: 0 1em;
	 }



	 form label {
		 display: block;
		 font-size: 1em;
		 font-weight: 800;
		 color: darkslategrey;
		 padding-left: 0px;    
	 }

	 input,
	 textarea
	 {
		 width: 95%;
		 font-size: 1.1em; 
		 padding: 4px;
		 font-family: inherit;
		 font-weight: lighter;
		 border:1px solid gray;
		 outline: none;
		 border-radius: 0.3em;
	 }    

	 input#spamschutz, 
	 textarea
	 {
	   width: 35%;
	 }

	 input:focus,
	 textarea:focus { 
		 border:1px solid orange;
	 }

	 input[type=submit] {
		 background-color: #279126;
		 cursor: pointer;
		 width: 100%;
		 padding: .3em 0;
		 border-radius: 0.7em;
		 color: white;
	 }

	 input[type=submit]:hover {
		 background-color: yellow;
		 box-shadow: 2px 2px 2px grey;
		 color: black;
	 }
	 /*++++++++++++ Newsletter_Ende */

}	


































	
@media screen and (min-width: 4000px) {	
	
	#geschenkxmas {
		font-size: 16px;
		}

    #geschenkrahmen {
		float: left;
		width: 90%;
		padding: 10px 5% 10px 5%;
		margin-bottom: 20px;
		border: 1px black solid;
		background-color: gold;
		}


     #geschenkxmas h2 {
			color: #990423;
			width: 260px;
			line-height: 1.7em;
			display:inline;
			margin: 0px 0px 0px 0px;
			padding-left: 0px;
			font-weight: bold;
			text-align: center;
			background-color: gold;
		}

	#geschenkxmas p {
			margin: 0px 0px 0px 0px;
			padding-left: 0px;
		}
	

	#container-container {
			/* top:150px; */
			float: left;
		}

	.inhalt {
		/*width: 410px;*/
		width: calc(100vw - 330px);
	}

		#mobiltopcontainer {
			display: none;
		}
		
		#mobiltopmenu {
			display: none;
 		}


		.menu-toggle {
			display: none;
		}

		.nav-menu-toggle {
			display: inline;
		}



		#topbild {
			width: 890px;
			display: inline;
			background: #000;
			padding: 0px; 
			margin: 0 auto; 
		}

		#topcontainer2 {
			background-color: #fff;
			padding: 0px; 
			/* position:fixed;  */
			top:100px; 
			z-index:99999; 
			width:100%;
		}

		#topmenu {
		    display: block;
			width: 890px;
			background: #fff;
			padding-left: 35px; 
			margin: 0 auto; 
			 letter-spacing: 2px;
			 color: #279126;
		 }

		#topmenu ul {
			 display: inline;
			 padding: 0px; 
			 margin: 0;
			 list-style: none;
			 height: 38px; line-height: 38px;
			 /*background: url(img/hauptnavi-bg.gif) no-repeat;*/
		 }

		#topmenu li {
		float: left;

		}

		#tompmenu li a {
			color: #279126;
			text-decoration: none;
			margin-right: 17px;
		}

		#tompmenu li a:hover, 
		#tompmenu .aktiv {
			text-decoration: underline;
		} 

		#topzeile {
			 font: 12px 'Open Sans', verdana, sans-serif;
		}


		#obenad {
    	 		display: block;
    	 		/* height: 120px; */
    	 		margin: 0px 0px 0px 0px;
    	 		background-color: #ACACAC;
    	 		  	 		
		}

		￼￼￼￼

     
		#kopf {
				margin: 0; 
				padding: 0; 
	
		}

		h1#kopf {
				margin: 0; 
				padding: 0; 
				background: #FFEA00 url(images/header_0.png) repeat-x;
				height: 168px;
	
		}
		￼￼￼￼￼￼￼￼
		#kopfbereich {
			background: #31363E;

		}
		
		h1#kopfbereich {
			margin: 0; 
			padding: 0; 
			height: 133px;
			/*border-bottom: 1px solid #fff;*/
			background: #31363E url(images/header_0_5.png) repeat-x;
			color: #fff;
		}
		
		h1#kopfbereich a {
			display: block; width: 440px; 
			height: 130px;
			background: url(img/peruns-logo.gif) no-repeat;
			text-indent: -9999px;
		} 



		#hauptnavi {
			 
			 display: inline;
			 letter-spacing: 2px;
			 color: #279126;
		 }

		#hauptnavi ul {
			 padding: 0px; 
			 margin: 0;
			 list-style: none;
			 height: 38px; line-height: 38px;
			 /*background: url(img/hauptnavi-bg.gif) no-repeat;*/
		 }

		#hauptnavi li {
		display: inline;
		float: left;
		}

		#hauptnavi li a {
			color: #279126;
			text-decoration: none;
			margin-right: 17px;
		}

		#hauptnavi li a:hover, 
		#hauptnavi .aktiv {
			text-decoration: underline;
		} 

		.menukopf {
			width: 140px;
		}
	
		#kapitelmenu ul li a {
		    width: 140px;
		}
	
		#kapitelmenu ul li a.ausgewaehlt2 {
 		   width: 140px;
		}

	   .illustration {
		   text-align: right;
		   width: 100%;
		}

		#sidebar {
			 font-size: 12px;
			 float: right; 
			 width: 300px;
			 margin-left: 0px;
			 padding-right: 10px;
		 }


 	.kurstext_frame {
		display: none;
		}	
		
	#footer_impressum {
		display: block;
		}	
		
		
			/* Werbeblock eigenwerbung weihnachten */
	.boxbox {
     float: left;
     width: 100%;
     margin: 30px 0px 30px 0px;
     border-top: black solid 1px;
     border-bottom: black solid 1px;
	}

	.box {
     float: left;
     width: 50%;
     padding: 20px;
     /*background: #aaa;*/
     box-sizing: border-box;
	}

	h3.boxtitle {
	font-size: 1.7em;
	line-height: 1em;
	padding: 0px 0px 10px 0px;
	margin: 0px;
	}
}		

/* End of Minimum width of 800 pixels. */
/* End of Minimum width of 800 pixels. */
/* End of Minimum width of 800 pixels. */
/* End of Minimum width of 800 pixels. */




#kurse_seitenleiste h2 {
			color: #990423;
			width: 300px;
			line-height: 1.7em;
			display:inline;
			margin: 0px 0px 0px 0px;
			padding-left: 0px;
			font-weight: bold;
			text-align: center;
			background-color: gold;
		}

#kurse_seitenleiste p {
			margin: 0px 0px 0px 0px;
			padding-left: 0px;
		}
		
#kurse_seitenleiste img {
    max-width: 100%;
    height: auto;
}		

@import url('menutoggle.css');