<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*------------------------------------*\
-------- Page Styles: Accordion
\*------------------------------------*/
body {
	position:relative;
	z-index:0;
}
.main{	
	text-align:left;	
}
.main:before {
	width:100%;
	height:100%;
	position:absolute;
	top:0px;
	left:0px;
	z-index:-1;
	content:'';
}

.site-header-wrap {
	margin-bottom:60px;
	border-bottom:1px solid #cd9ad6;
}

/*------------------------------------*\
-------- DEMO Code: accordion
\*------------------------------------*/
/*----- Accordion -----*/
.accordion, .accordion * {
	-webkit-box-sizing:border-box; 
	-moz-box-sizing:border-box; 
	box-sizing:border-box;
}

.accordion {
	overflow:hidden;
	/*box-shadow:0px 1px 3px rgba(0,0,0,0.25);*/
	
	background:#FFF;
	/*border:1px solid #d8d8d8;*/
	margin-bottom: 20px;
}

/*----- Section Titles -----*/
.accordion-section-title {
	width:100%;
	padding: 15px 60px 15px 20px;
	display:inline-table;
	border: 1px solid #E4E4E4;
	margin-top: -1px;
	background: #E4E4E4;
	transition:all linear 0.15s;
	/* Type */
	font-size: 1em;
	font-weight: 600;
	text-decoration:none;
	color: #079bcc;
	line-height: 1em;
	background-image:url(../img/arrow2.png);
	background-repeat:no-repeat;
	background-position:center right 3%;
}

.accordion-section-title.active, .accordion-section-title:hover {
	/*background:#D08BCA;*/
	/* Type */
	text-decoration:none;
	/*color:#C505B2;*/
	/*text-shadow:0px 1px 0px #D219C0;*/
	/*background-image:url(../img/arrow1.png);
	background-repeat:no-repeat;
	background-position:center right 3%;*/
}

.accordion-section-title.active{
	background-image:url(../img/arrow.png);
	background-repeat:no-repeat;
	background-position:center right 3%;
	text-decoration:none;
	color: #474747;
	background-color:#f8f8f8;
	/*border-bottom:none;*/
	font-size: 1em;
}

.accordion-section:last-child .accordion-section-title {
	/*border-bottom:none;*/
}

/*----- Section Content -----*/
.accordion-section-content {
	/*padding:0px 0px 15px 0px;*/
	/*display:none;*/
	/*border-bottom: 1px solid #d8d8d8;*/
	
}

.accordion-section-content table{
	border: 1px solid #e5e5e5;
	font-size:12px;
	line-height:20px;
	    margin-top: -1px;
}

.FaqArrow{
	position:absolute;
	top:21px;
	right:24px;
	display:inline-block;
	*display:inline;
	*zoom:1;
	width:19px;
	height:11px;
	/*overflow:hidden;*/
	padding:0;
	border:0;
	background:url(images/arrow.png);
	text-align:left;
	text-indent:-9999px;
	*text-indent:0;
	*line-height:9999px;
	*word-wrap:normal
}
.note{
	padding:10px;
	background-color:#E0ECFF;
	border-radius:6px;
	font-size:12px;
	margin-top:10px;
	word-wrap: break-word;
}
.new {
    color: white;
    font-size: 12px;
    margin-left: 5px;
    padding: 0 5px;    
    font-weight: 400;
    background-color: #09F;
}
.new2 {
    color: red;
    font-size: 12px;
    margin-left: 5px;
    padding: 0 5px;    
    font-weight: 400;

}
.list_head{
	text-align:left; 
	padding-left:15px;
	background:rgba(10, 154, 243, 0.3);
	line-height:24px;
}
</pre></body></html>