/* root element for accordion. decorated with rounded borders and gradient background image */

.toolsaccordion {
    width: 100%;
}

.expandPlus a::after {
    content: "\e114";
    font-family: "Glyphicons Halflings";
    margin-left: 5px;
    height: 10px;
    width: 18px;
    position: absolute;
    margin-top: 4px;
    font-size: 0.7em;
}

.toolsaccordion h3 {
    background: transparent;
    width: 100%;
    line-height: 1.2;
    margin: 0 0 0 0;
    font-variant: normal;
    padding: 10px 0 10px 15px;
    font-size: 1.1em;
}


/* accordion pane */

.toolsaccordion div>.pane {
    display: none;
    background-color: #EDEEEE;
    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 {
    font-family: 'Times New Roman', Times, serif;
    color: black;
    line-height: 2;
    margin-left: 15px;
}

.toolsaccordion div.pane a:hover {}

.toolsaccordion H3 A:link,
.toolsaccordion H3 A:visited {
    color: black;
    font-family: 'Times New Roman', Times, serif;
    background: none;
}