/*----- Accordion -----*/
.accordion, .accordion * {
    -webkit-box-sizing:border-box; 
    -moz-box-sizing:border-box; 
    box-sizing:border-box;
}
 
.accordion {
    overflow:hidden;
    background:#f7f7f7;
}
 
/*----- Section Titles -----*/
.accordion-section-title {
    color:#fff;
	background-color: #f9f9fa;
    border: 1px solid #dedede;
    padding-bottom: 1em;
    padding-top: 1em;
}
}
 
.accordion-section-title.active, .accordion-section-title:hover {
    background:#4c4c4c;
    /* Type */
    text-decoration:none;
}
 
.accordion-section:last-child .accordion-section-title {
    border-bottom:none;
}
 
/*----- Section Content -----*/
.accordion-section-content {
    padding:15px;
    display:none;
}
.accordion-section {
background-color: #f9f9fa;
    padding-bottom: 1em;
    padding-top: 1em;
}