/* downloads and faq, add to pshared when done */


.downloads_item{ padding: 14px 0px; border-bottom: 1px solid #dedede; }
.downloads_item:first-child{ padding-top: 7px; }
.downloads_item:last-child{ border-bottom: 0px solid #fff; padding-bottom: 7px; }
.downloads_item a{
    color: #585858;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    background: url(/images/icon_downloads_pdf.png) no-repeat center left;
    padding: 20px 0px 20px 43px;
}
.downloads_item a:hover{ text-decoration: underline; }

.faq_item{ padding: 40px 0px; border-bottom: 1px solid #dedede; }
.faq_item:first-child{ padding-top: 20px; }
.faq_item:last-child{ border-bottom: 0px solid #fff; padding-bottom: 20px; }

.faq_label{ font-size: 16px; text-transform: uppercase; font-weight: 500; }
.faq_value.faq_q{ color: #1e44b0; }

@media screen and (min-width: 950px) {
    .faq_item > div{ display: inline-block; vertical-align: top; }
    .faq_label{ width: 126px; padding-right: 0px; }
    .faq_q{ padding-bottom: 24px; }
    .faq_value.faq_a{ width: 85%; }
}

/* accordion */

a.item_accordion_title, a.item_accordion_title:hover{
    display: block;
    position: relative;
    background-color: #213266;

    border-bottom: 1px solid #eaeaea;

    padding: 10px 20px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;

    padding: 5px 20px;
    font-size: 18px;
    font-weight: 500;
}
.item_accordion_title::before, .item_accordion_title::after{
    content: '';
    position: absolute;
    top: 21px;
    right: 15px;
    height: 2px;
    width: 14px;
    background-color: #fff;
}
.item_accordion_title::after{ transform: rotate(90deg); transition: all .1s linear; }
.item_accordion_title.active::after{ transform: rotate(180deg); }

.item_accordion_content{
    display: none;
    background-color: #fff;
    border-left: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    padding: 20px 24px;
    overflow-x: auto;
}

/* end accordion */