
/* root element for accordion. decorated with rounded borders and gradient background image */
.toolsaccordion {
	width: 100%;
}

.toolsaccordion h3 {
	border-bottom: 1px #6091b5 solid;
    width: 100%;
    line-height: 1.2;
    margin: 0 0 0 0;
    font-variant: normal;
    font-size:1.8em;
}
     
/* accordion pane */
.toolsaccordion div > .pane {
	display: none;
    background-color:  #eeeded;
	font-size:1.6em;
    width: 100%;
    padding-left:16%;
}


    .toolsaccordion div:target > .pane {
        display: block;
    }

.toolsaccordion A:link,  .toolsaccordion A:visited, .toolsaccordion A:active{    	
    text-decoration: none;
    color: #bf2441,;
    padding-bottom: 5px;
    padding-top: 5px;
    width:100%;
    padding-right:10px;
}



.toolsaccordion div.pane a {
    color:  #bf2441;
    line-height: 1.5;
}

.toolsaccordion div.pane a:hover{
    color: #636363;
   
}
   
.toolsaccordion H3 A:link, .toolsaccordion H3 A:visited {
	color: #ffffff;
    font-family: Arial;
    padding-left:15%;
    width:100%;
    
    background:none;
    font-weight:normal;
    line-height:1.2;
    display:block;
    background:#0c5489;
    padding-top:10px;
    padding-bottom:10px;
}






