/*----- Accordion -----*/
.accordion, .accordion * {
    -webkit-box-sizing:border-box; 
    -moz-box-sizing:border-box; 
    box-sizing:border-box;
}
 
.accordion {
    overflow:hidden;
}
 
/*----- Section Titles -----*/
.accordion-section-title {

    padding: 0.5rem;
    display:block;

    transition:all linear 0.15s;
	border-bottom: 1px solid #CCCCCC;
}

.accordion-section-title:hover {
	background-color: #DDDDDD;
}

.accordion-section-title:before {
    content: "+";
}
 
.accordion-section-title.active:before {
    content: "-";
}
 
/*.accordion-section:last-child .accordion-section-title {
    border-bottom:none;
}*/
 
/*----- Section Content -----*/
.accordion-section-content {
    padding: 0.5rem;
    display:none;
}