/*----- Accordion -----*/
.accordion, .accordion * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.accordion {
    overflow: hidden;
    background: #f7f7f7;
}

.accordion-section {
    margin-bottom: 4px;
}

/*----- Section Titles -----*/
.accordion-section-title {
    width: 100%;
    padding: 15px;
    display: inline-block;
    transition: all linear 0.15s;
}

.accordion-section-title.active, .accordion-section-title:hover {
    background: #ccc;
    /* 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-content, .accordion-section-content table tr td, .accordion-section-content table tr td div {
    overflow-wrap: break-word;
    word-wrap: break-word;
    /*-ms-word-break: break-all;*/
    word-break: break-word;
}

/*@supports (-ms-accelerator:true) {*/
/*.accordion-section-content, .accordion-section-content table tr td, .accordion-section-content table tr td div {*/
/*word-break: break-all;*/
/*}*/
/*}*/

.accordion-arrow {
    display: inline-block;
    width: 13px;
    height: 11px;
    float: right;
    margin-top: 5px;
}

.accordion-arrow-white.active {
    background: url("/admin2/adminfiles/grfx/accordion_arrow_down_white.png") no-repeat;
}

.accordion-arrow-white {
    background: url("/admin2/adminfiles/grfx/accordion_arrow_right_white.png") no-repeat;
}

.accordion-arrow-black.active {
    background: url("/admin2/adminfiles/grfx/accordion_arrow_down_black.png") no-repeat;
}

.accordion-arrow-black {
    background: url("/admin2/adminfiles/grfx/accordion_arrow_right_black.png") no-repeat;
}
