<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#faqlist ul li {
	overflow: hidden;
	position: relative;
	padding: 10px 20px;
	border-bottom: 1px #dcd9d9 solid;
}

#faqlist ul li h3 {
	position: relative;
    color: #686868;
	z-index: 2;
	font-size: 20px;
	font-weight: normal;
}

#faqlist ul li.current h3 {
	margin-bottom: 10px;
}

#faqlist ul li:hover h3 {
	color: #282623;
}

#faqlist ul li h3 i {
	margin-right: 10px;
	vertical-align: initial;
}

#faqlist ul li .menu_body {
	position: relative;
	display: none;
	-moz-transition: none;
	-o-transition: none;
	-webkit-transition: none;
	transition: none;
	z-index: 2;
	font-size: 16px;
}

#faqlist ul li:after {
	position: absolute;
	width: 0;
	height: 100%;
	display: block;
    background: #eefaf9;
	top: 0;
	left: 0;
	content: "";
	z-index: 1;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	opacity: 0;
}

#faqlist ul li.current:after ,
#faqlist ul li:hover:after {
	width: 100%;
	opacity: 1;
}</pre></body></html>