/* root element for accordion. decorated with rounded borders and gradient background image */

.toolsaccordion {
    width: 100%;
    background: rgba(242, 242, 241, .95);
}

.expandPlus a::after {
    font-family: Glyphicons Halflings;
    content: "\e257";
    margin-left: 88%;
    height: 17px;
    width: 21px;
    position: absolute;
    margin-top: -36px;
    display: flex;
    flex-flow: column-reverse;
    color: #112F5F;
    transition: transform .25s linear;
    
}

.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: -36px;
    display: flex;
    flex-flow: column-reverse;
    color: #AC1F23;
}

.accordionDiv {
    font-family: trajan-pro-3, serif;
}

.toolsaccordion h3 {
    background: transparent;
    width: 100%;
    line-height: 1.2;
    margin: 0 0 10px 0;
    font-variant: normal;
    padding-left: 15px;
    font-size: 1.1em;
    border-bottom: 2px solid #ad1f23;
    float: left;
    text-transform: capitalize;
    font-family: trajan-pro-3, serif;
    font-size: 1.7em;
    color: #3a3a3a;
    margin-top: 25px;
}

/* accordion pane */

.toolsaccordion div>.pane {
    display: none;
    /* background: rgba(242, 242, 241, .9); */
    font-size: 1em;
    width: 100%;
}

.toolsaccordion div:target>.pane {
    display: block;
}

.toolsaccordion A:link, .toolsaccordion A:visited, .toolsaccordion A:active {
    text-decoration: none;
    color: black;
    padding-bottom: 5px;
    padding-top: 5px;
    width: 100%;
    padding-right: 10px;
}

.toolsaccordion h3 a {
    color: black;
}

.toolsaccordion div.pane a {
    color: black;
    line-height: 30px;
    margin-left: 15px;
    width: 45%;
    float: left;
    font-size: 1.4em;
    margin-bottom: 10px;
    font-family: Arial, Helvetica, sans-serif;
}

.toolsaccordion div.pane a:hover {}

.toolsaccordion H3 A:link, .toolsaccordion H3 A:visited {}

@media (max-width: 767px) {
    .toolsaccordion h3, .toolsaccordion div.pane a {
        clear: float;
        width: 100%;
    }
}