
.collapsible {    
    //color: #614425;
    //color: #C69C6D;
    color: #BC8A54;
    background-color: #F6EEE6;
    background-image: url(bg/bg.png);
    padding: 5px;
    padding-top: 8px;
    padding-bottom: 8px;
    
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.0em;
    margin-bottom: 5px;
}

.active, .collapsible:hover {
    background-color: #DDC3A7;
    color: #efefef;
}

.collapsible:after {
    content: '\002B';
    color: red;
    font-weight: bold;
    float: left;
    margin-left: 5px;
    padding-right: 10px;
}

.active:after {
  content: "\2212";
}

.content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    //background-color: #f1f1f1;

    font-size: 1.0em;
    line-height: 1.4em;
    color: #614425; //#747474;
    text-align: justify;
    margin-bottom: 15px;
}
