.hidden {
    display: none;
}

.accordion-plain {
    background-color: #F4F8FB;
    color: black;
    cursor: pointer;
    width: 100%;
    text-align: left;
    outline: none;
    transition: 0.4s;
    font-size: 18px;
    font-weight: bold;
}

.accordion-plain.active,
.accordion-plain:hover {
    background-color: #F4F8FB;
    color: #333 !important;
}

.accordion-plain:after {
    width: 20px;
    height: 20px;
    content: "";
    background: url('../../img/bluebgdown.png');
    background-size: 100%;
    color: #333;
    font-weight: bold;
    margin-left: 5px;
    font-size: 18px;
    float: right;
    background-color: #F4F8FB;
    margin-top: -23px;
    margin-right: 25px;
}

.accordion-plain.active:after {
    width: 20px;
    height: 20px;
    margin-left: 5px;
    content: "";
    background: url('../../img/bluebgdown.png');
    font-size: 18px;
    background-size: 100%;
    z-index: 999;
    margin-top: -23px;
    margin-right: 25px;
    -ms-transform: rotate(180deg); /* IE 9 */
    transform: rotate(180deg);
}

.accordion-plain-panel {
    padding-top: 5px;
    background-color: #F4F8FB;
    max-height: 0;
    width: 100%;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion-plain-background-div {
    border: 0px solid #333;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 5px 5px 5px 0px;
}

.introLink {
    padding-left: 20px;
    text-decoration: underline;
}

.accordion-plain-inner {
    padding: 5px;
}

.accordion-plain-outer {
    padding-top: 5px;
    padding-bottom: 10px;
}
.accordion-plain-text{
    text-decoration: underline;
}