button.accordion {
	background-color: #eee;
	color: #444;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: center;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
}

button.accordion.active, button.accordion:hover {
	background-color: #ccc;
}

button.accordion:after {
	content: '\002B';
	color: #777;
	font-weight: bold;
	float: right;
	margin-left: 5px;
}

button.accordion.active:after {
	content: "\2212";
}

div.panel {
	background-color: white;
	max-height: 0;
	width : 80%;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

div.sections {
	width: 80%;
}

#content {
	text-align : -webkit-center;
}

.searchDiv {
	padding-bottom: 50px;
	padding-top: 20px;
}

.searchInput input[type="text"] {
	padding: 10px;
	border: solid 1px #dcdcdc;
	transition: box-shadow 0.3s, border 0.3s;
	width: 70%;
}
.searchInput input[type="text"]:focus,
.searchInput input[type="text"].focus {
	border: solid 1px #707070;
	box-shadow: 0 0 5px 1px #969696;
	width: 70%;
}

.qa {
	padding-bottom: 20px;
}
