/* root element for accordion. decorated with rounded borders and gradient background image */

.toolsaccordion {
    position: relative;
    width: 100%;
    z-index: 1;
}

.expandPlus a::after {
    font-family: Glyphicons Halflings;
    content: "\e257";
    margin-left: 88%;
    height: 25px;
    width: 21px;
    position: absolute;
    margin-top: -17px;
    display: flex;
    flex-flow: column-reverse;
    transition: transform .25s linear;
    left: 0;
}

@media (max-width: 1090px) {
    .expandPlus a::after {
        margin-top: -24px;
    }
    .toolsaccordion a,
    .toolsaccordion A:visited,
    .toolsaccordion A:active {
        padding-left: 6px;
    }
}

@media (max-width: 1090px) {
    .toolsaccordion H3 A:link,
    .toolsaccordion H3 A:visited {
        font-size: 15px;
    }
}

.starredBlock a::after {
    transition: transform .25s linear;
    transform: rotate(-90deg);
    font-family: Glyphicons Halflings;
    content: "\e257";
    margin-left: 88%;
    height: 17px;
    width: 21px;
    position: absolute;
    margin-top: -22px;
    display: flex;
    flex-flow: column-reverse;
    left: 0;
}

.toolsaccordion h3 {
    width: 100%;
    line-height: 3;
    margin: 0px;
    background: rgba(90, 1, 5, 0.9);
}


/* accordion pane */

.toolsaccordion div>.highpane {
    font-size: 13px;
    width: 100%;
    display: none;
}

.toolsaccordion div:target>.highpane {
    display: block;
}

.toolsaccordion div>.lowpane {
    font-size: 13px;
    width: 100%;
    display: none;
}

.toolsaccordion div:target>.lowpane {
    display: block;
}

.toolsaccordion a,
.toolsaccordion A:visited,
.toolsaccordion A:active {
    text-decoration: none;
    padding-left: 22px;
    padding-bottom: 5px;
    padding-top: 5px;
    width: 100%;
    padding-right: 10px;
}

.toolsaccordion div.highpane a {
    color: white;
    font-weight: bold;
    background: rgba(90, 1, 5, 0.9);
}

.toolsaccordion H3 A:link,
.toolsaccordion H3 A:visited {
    color: white;
    font-family: Arial;
    font-weight: bold;
    margin-left: 0px;
    font-size: 17px;
    background: none;
}

.toolsaccordion div.highpane h4 a,
.toolsaccordion H4 A:visited {
    font-family: Arial;
    font-weight: bold;
    margin-left: -15px;
    font-size: 15px;
    background: none;
}

.toolsaccordion H4 A:Hover,
.toolsaccordion div.lowpane a:hover {
    color: #be1e2d;
}

@media (max-width: 767px) {
    .toolsaccordion h3 {
        width: 100%;
        line-height: 3;
        display: table;
        height: 90px;
        text-align: center;
        margin: 5px 0px;
        background: rgba(35, 121, 161, .9);
    }
    .home {
        width: 90%;
        line-height: 3;
        display: table;
        height: 90px;
        text-align: center;
        margin: 5px 0px;
        background: rgba(35, 121, 161, .9);
        margin-left: 5%;
    }
    .home a {
        color: white;
        vertical-align: middle;
        display: table-cell;
        font-family: Arial;
        font-weight: bold;
        font-size: 17px;
        background: none;
    }
    .home a:hover,
    .home a:focus {
        color: white;
    }
    .toolsaccordion div.highpane a {
        font-size: 1.3em;
        color: #253F56;
        font-weight: bold;
        background: white;
        padding-left: 60px;
    }
    .toolsaccordion div.highpane a:first-child {
        padding-top: 20px;
    }
    .toolsaccordion div.highpane a:hover,
    .toolsaccordion div.highpane a:focus {
        color: #943135;
    }
    .toolsaccordion H3 A:link,
    .toolsaccordion H3 A:visited {
        display: table-cell;
        vertical-align: middle;
    }
    .accordionDiv {
        width: 90%;
        margin-left: 5%;
    }
}