﻿/*START - ACCORDION AND TOGGLE BOXES STYLE*/
.content-wrap .accordionHeader {
    margin-left: auto;
    margin-right: auto;
    table-layout: auto;
    color: #000000;
    background-color: #edf1f3;
    text-align: left;
    min-height: 30px;
    padding: 5px 15px 5px 0;
    margin-top: 5px;
    word-wrap: break-word;
    cursor: pointer;
    padding-left: 35px;
    background-image: url('/images/Accordion-Open.png');
    background-repeat: no-repeat;
    background-position: left;
}

.content-wrap .accordionHeaderSelected {
    margin-left: auto;
    margin-right: auto;
    table-layout: auto;
    color: #000000;
    background-color: #edf1f3;
    text-align: left;
    min-height: 30px;
    padding: 5px 15px 5px 0;
    margin-top: 5px;
    word-wrap: break-word;
    cursor: pointer;
    padding-left: 35px;
    background-image: url('/images/Accordion-Close.png');
    background-repeat: no-repeat;
    background-position: left;
}

.content-wrap .accordionContent {
    background-color: #f9f9f9;
    /*padding: 10px 10px 0px 35px;*/
    padding: 15px;
    margin-bottom: 15px;
}

.content-wrap .accordionSubHeader {
    margin-left: auto;
    margin-right: auto;
    table-layout: auto;
    color: #000000;
    background-color: #edf1f3;
    text-align: left;
    min-height: 30px;
    padding: 5px 15px 5px 0;
    margin-top: 5px;
    word-wrap: break-word;
    cursor: pointer;
    padding-left: 35px;
    background-image: url('/images/Accordion-Open.png');
    background-repeat: no-repeat;
    background-position: left;
}

.content-wrap .accordionSubHeaderSelected {
    margin-left: auto;
    margin-right: auto;
    table-layout: auto;
    color: #000000;
    background-color: #edf1f3;
    text-align: left;
    min-height: 30px;
    padding: 5px 15px 5px 0;
    margin-top: 5px;
    word-wrap: break-word;
    cursor: pointer;
    padding-left: 35px;
    background-image: url('/images/Accordion-Close.png');
    background-repeat: no-repeat;
    background-position: left;
}

.content-wrap .accordionHeader h3, .content-wrap .accordionHeaderSelected h3 {
    color: #000000;
    margin-bottom: 0px;
    font-size: 20px;
}

.content-wrap .accordionSubHeader h3, .content-wrap .accordionSubHeaderSelected h3 {
    color: #000000;
    margin-bottom: 0px;
    font-size: 16px;
}

.content-wrap .accordionSubContent {
    margin-left: 15px;
    font-size: 95%;
}

.content-wrap .masterToggleBox {
    /*padding: 10px 10px 10px 20px;*/
    padding:15px;
}

.toggleBoxSize {
    width: 90%;
    min-height: 250px;
    max-height: 490px;
    position: absolute;
    z-index: 998;
}

.masterToggleBox .roundedToggleBox {
    width: 95%;
    min-height: 250px;
    max-height: 490px;
    overflow-y: scroll;
    overflow-x: hidden;
    overflow-wrap: break-word;
    background-color: #ffffff;
    position: absolute;
    z-index: 998;
    padding: 5px;
    border: thin silver solid;
    border-radius: 10px;
}



.masterToggleBox .closeToggleBox {
    position: relative;
    top: -25px;
    right: -30px;
    float: right;
    z-index: 999;
}




.content-wrap .childOneToggleBox {
    /*padding: 10px 10px 10px 20px;*/
    padding: 15px;
}

.content-wrap .temporaryToggleBox {
    /*padding: 10px 10px 10px 20px;*/
    padding: 15px;
}

/*END - ACCORDION AND TOGGLE BOXES STYLE*/