.accordion {
    cursor: pointer;
    /*width: 100%;*/
    outline: none;
    border: 1px solid #DCDCDC;
    padding: 8px 5px;
    font-size: 12px;
    color: #000;
    text-align: left;
    margin:5px auto;
    transition: 0.4s;
}

    /*.accordion.active, .accordion:hover {
        background-color: #ddd;
    }*/

    /*.accordion:after {
        content: '\02795';
        font-size: 13px;
        color: #777;
        float: right;
        margin-left: 5px;
    }

    .accordion.active:after {
        content: "\2796";
    }*/

.panel {
    background-color: white;
    height: 0;
    overflow: hidden;
    transition: 0.6s ease-in-out;
    opacity: 0;
    border: 0px;
}

    .panel.show {
        opacity: 1;
        height: auto;
        border: 1px solid #DCDCDC;
    }


.accordion-blue .accordion {
    background: #0C6DAA;
    color: #ffffff;
}

    /*.accordion-blue .accordion:after {
        color: #ffffff;
    }*/


.accordion .icon {
    outline: none;
    top: 0px;
    float: right;
    height: 16px;
    width: 16px;
    background: url(../../webimages/plus_btn.gif) no-repeat center center;
}

.accordion.active .icon {
    background: url(../../webimages/minus_btn.gif) no-repeat center center;
}
