@charset "utf-8";
/* CSS Document */

 /* Style the buttons that are used to open and close the accordion panel */
.accordion {
	background-color: #eee;
	color: #000000;
	cursor: pointer;
	padding: 18px;
	width: 90%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 22px;
	transition: 0.4s;
	margin-left: 5%;
}

.active, .accordion:hover {
	background-color: #ccc;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
	content: "\2212";
}

.panel {
	background-color: white;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	padding-top: 0;
	padding-right: 18px;
	padding-bottom: 0;
	padding-left: 18px;
	margin-bottom: 10px;
	margin-top: 10px;
	width: 90%;
	margin-left: 20px;
}
