
/* root element for accordion. decorated with rounded borders and gradient background image */
.toolsaccordion {
	width: 91%;
    margin-left: 16px;
	margin-top: 14px;
}

.toolsaccordion h3 {
	background: #2A2C43;
    width: 91%;
    line-height: 2;
    margin: 0 0 0 15px;
}
     
/* accordion pane */
.toolsaccordion div > .pane {
	display: none;
    background-color: #6C0215;
	font-size:16px;
    width: 91%;
    margin-left: 15px;
}

    .toolsaccordion div:target > .pane {
        display: block;
    }

.toolsaccordion A:link,  .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.pane a {
    color: white;
    line-height: 2;
}
   
.toolsaccordion H3 A:link, .toolsaccordion H3 A:visited {
	color: #ffffff;
    font-family: Arial;
    margin-left: -15px;
    font-size: 16px;
    background:none;
}




