section.faq{text-align:center;}
.faq-answer {
	animation-name:faq-out;
	animation-duration: .3s;
	visibility:hidden;
	margin-top:-24px;
	height:0;
}
.faq-answer.read {animation-name:faq-in;animation-duration:.3s;visibility:visible;margin-top:0;height:auto;}
.faq-question h3:after {
    content: '+';
    font-size: 22px;
    font-weight: 200;
    display: inline-block;
    margin-left: 50px;
		transform: .3s ease-in;
}
.faq-question.open h3:after {
	content: '-';
	transform: .3s ease-out;
}
section.faq:last-child {
    margin-bottom: 80px;
}
section.faq h3 {
    font-size: 14px;
}

section.faq h1 {
    font-size: 22px;
}
section.faq {
    padding: 20px 0 40px 0;
}

@keyframes faq-in {
	  0% {visibility:hidden;margin-top:-24px;height:0;}
   50% {visibility:visible;}
	100% {height: auto; margin-top: 0;} 
}

@keyframes faq-out {
	   0% {height:auto;margin-top:0;visibility:visible;}
		50% {visibility:hidden;}
	 100% {height: 0; margin-top: -24px;}
}