<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#accordion-container {
	
}

.accordion-header {
	font-size: 14px;
	background: #f5f5f5;
	border: 1px solid #d8d8d8;
	margin: 5px 0 0 0;
	padding: 5px 20px;
	cursor: pointer;
	color: #3c3c3c;
	font-family: arial;
}

.active-header {
	
	background: url(images/active-header.gif) #f5f5f5;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.active-header:hover {
	background: url(images/active-header.gif) #e9e9e9 ;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.inactive-header {
	background: url(images/inactive-header.gif) #f5f5f5;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.inactive-header:hover {
	background: url(images/inactive-header.gif) #e9e9e9;
	background-repeat: no-repeat;
	background-position: right 50%;
}

.accordion-content {
	display: none;
	padding: 20px;
}</pre></body></html>