/*----- Accordion -----*/
.accordion-puestos, .accordion-puestos * {
    -webkit-box-sizing:border-box; 
    -moz-box-sizing:border-box; 
    box-sizing:border-box;
    
}
 
.accordion-puestos {
    overflow:hidden;
    background:#f7f7f7;
    margin-bottom: 2em;
}
 
/*----- Section Titles -----*/
.accordion-section-title {
    width:100%;
    padding:8px;
    display:inline-block;
    border-bottom:1px solid #fff;
    background:#1288EB;
    transition:all linear 0.15s;
    /* Type */
    color:#fff;
}
 
.accordion-section-title.active, .accordion-section-title:hover {
    background:#0C5092;
    color: #fff;
    /* Type */
    text-decoration:none;
}
 
.accordion-section:last-child .accordion-section-title {
    border-bottom:none;
}
 
/*----- Section Content -----*/
.accordion-section-content {
    padding:15px;
    display:none;
}