#faq {
	max-width:800px;
}
#faq li {
	list-style: none;
	box-shadow:0px 0px 5px #1d1d1d;
	background:#e6e6e6;
	margin-bottom:10px;
}
#faq ul li {
	box-shadow:none;
}
#faq .question {
	background:#e6e6e6;
	font-size: 16px;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	text-align: left;
	border: none;
	outline: none;
	transition: 0.4s;
}
#faq .answer {
	padding: 0px;
	background-color: #e6e6e6;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	border-top:1px solid lightgray;
}
#faq .answer p,
#faq ul {
	padding:18px;
}
#faq ul li {
	list-style: initial;
	margin-left:10px;
}
#faq .answer a {
	text-decoration: underline;
}
#faq .active, .question:hover {
	background-color: #e6e6e6;
}

#faq .question:after {
	content: "\02795";
	font-size: 13px;
	color: #fff;
	float: right;
	margin-left: 5px;
}

#faq .active:after {
	content: "\2796";
}