.header-link{
    text-decoration: none;
    font-size: 15pt;
    color: white;
    margin-right: 20px;
    margin-left: 20px;
}

.img-right {
    float: right;
    text-align: center;
    margin-left: 1em;
}
p{
    font-size: 12pt;
}
#FAQ {
	list-style: none;
}

@media screen and (max-width: 800px) {
#FAQ {
	margin-left: 1em;
	padding-left: 0;
}
}
.question {
	font-weight: bold;
	display: inline-block;
	width: 100%;
	border-bottom: 2px solid gray;
	position: relative;
	padding-top: 1em;
	padding-bottom: 1em;
	cursor: pointer;
        font-size: 18pt;
        line-height: 1.75rem;
}
.question:before {
	content: ' ';
	border: solid #505050;
	border-width: 0 3px 3px 0;
	display: inline-block;
	padding: 3px;
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	position: absolute;
	left: -17px;
	bottom: 45%;
	transition: all 0.25s;
}
.question.active:before {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}
.answer {
	display: inline-block;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.25s ease-in;
        font-size: 12pt;
        margin-top: .5rem;
        line-height: 1.5rem;
}
.answer.hidden {
}
.answer.visible {
	max-height: 1000px;
}






