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

.akkordeon_glossar {
    width: auto;
    margin: 0px 0px 10px 0px;
    display: inline;
}

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

.akkordeon_glossar label {
	color: #279126;
	display: inline;
}

.akkordeon_glossar label:hover {
    color: #444;
    text-decoration: underline;
}

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

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


.akkordeon_glossar [type=radio]:checked ~ label + div,
.akkordeon_glossar [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_glossar div {
    height: 0;
    padding: 0 9px;
    overflow: hidden;
    background: #fff;
    /*border-bottom: 1px solid #929ba5;*/
    transition: all 0.3s ease-in;
}

.akkordeon_glossar p {
    color: #333;
}

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