.faq-list {
	 min-width: 150px;
	 margin: 30px auto 0;
	 list-style-type: none;
}
 .faq-list > li {
	 width: 100%;
	 background-color: #f5f5f5;
	 margin-bottom: 10px;
	 overflow: hidden;
}
 .faq-list > li.open .list-header:after {
	 transform: rotate(180deg);
}
 .faq-list > li.open .list-content {
	 min-height: 500px;
	 overflow:scroll;
	 -webkit-transition: max-height 0.5s ease-in;
	 -moz-transition: max-height 0.5s ease-in;
	 -ms-transition: max-height 0.5s ease-in;
	 -o-transition: max-height 0.5s ease-in;
	 transition: max-height 0.5s ease-in;
}
 .faq-list .list-header {
	 position: relative;
	 padding: 20px 0 20px 30px;
	 line-height: 30px;
	 cursor: pointer;
	 margin-left: 35%;
	 font-size: 20px;
}
 .faq-list .list-header:after {
	 content: "";
	 width: 0;
	 height: 0;
	 position: absolute;
	 top: 15px;
	 right: 15px;
	 border-style: solid;
	 border-width: 18px 12px 0 12px;
	 border-color: #757575 transparent transparent transparent;
	 -webkit-transition: transform 0.5s ease-in;
	 -moz-transition: transform 0.5s ease-in;
	 -ms-transition: transform 0.5s ease-in;
	 -o-transition: transform 0.5s ease-in;
	 transition: transform 0.5s ease-in;
}
 .faq-list .list-content {
	 max-height: 0;
	 -webkit-transition: max-height 1s cubic-bezier(0, 1.05, 0, 1);
	 -moz-transition: max-height 1s cubic-bezier(0, 1.05, 0, 1);
	 -ms-transition: max-height 1s cubic-bezier(0, 1.05, 0, 1);
	 -o-transition: max-height 1s cubic-bezier(0, 1.05, 0, 1);
	 transition: max-height 1s cubic-bezier(0, 1.05, 0, 1);
}
 .faq-list .list-content-inner {
	 padding: 0 35px 20px;
}
 .faq-list .list-content-inner > p {
	 text-indent: 20px;
}
 