/* root element for accordion. decorated with rounded borders and gradient background image */

.toolsaccordion {
    width: 100%;
}

.expandPlus a::after {
    font-family: Glyphicons Halflings;
    content: "\e257";
    margin-left: 88%;
    height: 17px;
    width: 21px;
    position: absolute;
    margin-top: -17px;
    display: flex;
    flex-flow: column-reverse;
    /* color: #be1e2d; */
    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: -22px;
    display: flex;
    flex-flow: column-reverse;
}

.toolsaccordion h3 {
    width: 100%;
    line-height: 3;
    margin: 0px;
}

.toolsaccordion h3:hover,
.toolsaccordion h3:focus {
    background: #040e8d;
}


/* 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;
}

.toolsaccordion H3 A:link,
.toolsaccordion H3 A:visited {
    color: white;
    font-family: Arial;
    font-weight: bold;
    margin-left: -15px;
    font-size: 17px;
    background: none;
}

.toolsaccordion H3 A:Hover,
.toolsaccordion div.highpane a:hover {
    color: white;
    background: #040e8d
}

.toolsaccordion div.highpane h4 a,
.toolsaccordion H4 A:visited {
    /* color: #20409a !important; */
    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;
}