.q {
	background-color: #eee;
	color: #125d9a;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 24px;
	font-weight: 400;
	transition: 0.4s;
	margin-bottom: 4px;
}
.q:hover {
	background-color: #ddd;
}
.q:after {
	content: '\002B';
	color: #777;
	font-weight: bold;
	float: right;
	margin-left: 5px;
}
.a {
	padding: 0 18px;
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	font-size: 18px;
}
.active {
	background-color: #e0e9f3;
}
.active:after {
	content: "\2212";
}
p.par {color: #125d9a; font-weight: 600; font-size: 24px;}