/* 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: #bfff00;
	color: #279126;
	border: 1px solid #fff;
    /*border-bottom: 0;*/
    border-radius: 5px 5px 5px 5px;
    display: block;
    margin: 0px 0 0;
    padding: 10px;
    /*

	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;
}

.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;
}

.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: 1px solid #279126;
    border-radius: 5px;
}

.akkordeon_lehrgang 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;
}