
/* root element for accordion. decorated with rounded borders and gradient background image */
.toolsaccordion {
	background:#333333 url(hmmm.png) 0 0;
	width: 100%;
	border: 1px solid #666666;
	border-top: none;
	margin-bottom: 20px;
}

/* accordion header */
.toolsaccordion h3 {
	background:#333333 url(/images/grad30gray.png);
	margin:0;
	padding:5px 15px;
	font-size:14px;
	font-weight:normal;
	border-top:1px solid #666666;
	border-bottom:1px solid #666666;
	cursor:pointer;		
}

/* currently active header */
.toolsaccordion h3.current {
	cursor:default;
	background:#FD3514 url(/images/grad30orange.png);
	background-color:#FD3514;
}

/* accordion pane */
.toolsaccordion div.pane 
{
    background:#CCCCCC url(/images/grad200gray.png);
    background-repeat: repeat-x;
	/*background-color: #CCCCCC;*/
	display:none;
	padding:15px;
	padding-top:10px;
	color:#ffffff;
	font-size:12px;
}

/* entry inside pane with no link */
.toolsaccordion div.pane div {
	color:#ffffff;
}

/* a title inside pane */
.toolsaccordion div.pane h3 {
	font-weight:normal;
	margin:0 0 -5px 0;
	font-size:16px;
	color:#999999;
}

.toolsaccordion A:link, .toolsaccordion A:visited, .toolsaccordion A:active {
	color: #333333;
	text-decoration: none;
}

.toolsaccordion a:hover 
{
    text-decoration: underline;
}

.toolsaccordion H3 A:link, .toolsaccordion H3 A:visited, .toolsaccordion H3 A:active {
	color: #FFFFFF;
}
