/*----- Accordion -----*/
.accordion, .accordion * {
    -webkit-box-sizing:border-box; 
    -moz-box-sizing:border-box; 
    box-sizing:border-box;
}
 
.accordion {
    overflow:hidden;
    clear: both;
}
 
/*----- Section Titles -----*/
.accordion-section-title {
    width: 100%;
    display: inline-block;
    transition: all linear 0.15s;
    background: url(../images/trig.png) no-repeat 1em center;
    padding: 1em 2em;
}

.accordion-section-title.active{
    background: url(../images/trig-hover.png) no-repeat 1em center;
}
.accordion-section-title.active, .accordion-section-title:hover {
    color: #B55703;
    text-decoration:none;
}
.accordion-section-title.empty{
    background: none;
}
 
.accordion-section:last-child .accordion-section-title {
    border-bottom:none;
}
 
/*----- Section Content -----*/
.accordion-section-content {
    margin-left: 4em;
    display:none;
}