@charset "utf-8";
/* CSS Document */

/* nieuwsbericht als uitvouwbaar weergeven */

.accordion {
	background-color: #F2F2F2;
	color: #669999;
	cursor: pointer;
	padding: 18px;
	width: 90%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 110%;
	transition: 0.4s;
	font-weight:bold;
	font-style: italic;
}

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

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

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

.panel {
  padding: 0 18px;
  font-size: 90%;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
	width: 90%;
}

.panel.content {
  color:#669999;
  font-size:100%;
  padding-bottom:15px;
  padding-top:15px;
  line-height:1.5;
}

.panel.titel {
  color:#999966;
  font-size:110%;
	font-weight:bold;
  padding-bottom:15px;
  padding-top:15px;
}
