/* von http://www.webdesign-klamonfra.de/codeschnipsel/accordion-effekt.php#Artikel11 ?? */   

.akkordeon_lehrgang {
    width: auto;
    margin: 0px 0px 10px 0px;
}

.akkordeon_lehrgang [type=radio],
.akkordeon_lehrgang [type=checkbox] {
    display: none;
}

.akkordeon_lehrgang label {
	font-weight: bold;
	font-style: italic;
	background: #d5d5d5;
	color: #000000;
	border: 1px solid #fff;
    /*border-bottom: 0;*/
    border-radius: 5px 5px 5px 5px;
    /*display: block;*/
    display: block;
    padding: 10px 10px 10px 25px;
    margin: 0 0 0px 0px;
    /*

	background: #1a9fff;
	color: white;
    box-shadow: 0 1px 1px #000;*/
    transition: all 0.3s ease-in;
}

.akkordeon_lehrgang label:hover {
    cursor: pointer;
    color: #444;
}

.akkordeon_lehrgang [type=radio]:checked ~ label,
.akkordeon_lehrgang [type=checkbox]:checked ~ label {
    /*color: #279126;*/
}

.akkordeon_lehrgang [type=radio]:checked ~ label:hover,
.akkordeon_lehrgang [type=checkbox]:checked ~ label:hover {
    color: #444;
}



/*.akkordeon_lehrgang label:before {
    content: '»';
    padding: 0 12px 0 5px;
}

.akkordeon_lehrgang [type=radio]:checked ~ label:before,
.akkordeon_lehrgang [type=checkbox]:checked ~ label:before {
    content: '-';
    padding: 0 14px 0 7px;
}
*/

.akkordeon_lehrgang label:after {
	width: 1.3em;
    content: "+";
    font-size: 1.2em;
    float: right;
    /*background: darkgrey;'*/
     text-align: center;
     border: 1px solid white;
     
     
     display: none;
}

.akkordeon_lehrgang [type=checkbox]:checked ~ label:after {
    width: 1.3em;
    content: '-';
    font-size: 1.2em;
    float: right;
    /*background: darkgray;*/
    text-align: center;
    border: 1px solid white;
    
    
    display: none;
}

.akkordeon_lehrgang [type=radio]:checked ~ label + div,
.akkordeon_lehrgang [type=checkbox]:checked ~ label + div {
    overflow: auto;
    height: auto;
    /*border-top: 1px solid #279126;
    border-left: 1px solid #279126;
    border-right: 1px solid #279126;
    border-bottom: 10px solid #279126;*/
    border-radius: 5px;
    padding: 0 10px;
}

.akkordeon_lehrgang div {
    overflow: auto;
    height: auto;
    /*border-top: 1px solid #d5d5d5;
    border-left: 3px solid #d5d5d5;
    border-right: 3px solid #d5d5d5;
    border-bottom: 25px solid #d5d5d5;*/
    border-radius: 5px;
    padding: 0 10px 0 25px;
    margin: 0 0 35px 0px;
    background: #ededed;
}

.akkordeon_lehrgang_altersetzt div {
    height: 0;
    padding: 0 9px;
    overflow: hidden;
    background: #fff;
    /*border-bottom: 1px solid #929ba5;*/
    transition: all 0.3s ease-in;
}

.akkordeon_lehrgang p {
    color: #333;
}

.akkordeon_lehrgang h3 {
    color: #444;
    font-weight: bold;
    text-shadow: 1px 1px 1px #fff;
    padding: 5px 10px;
}

.akkordeon_lehrgang img {
    max-width: 100%;
    height: auto;
}