.accordion-header {
	font-size: 16px;
	background: #ebebeb;
	margin: 5px 0 0 0;
	padding: 20px 20px;
	border: 0px solid #d01f06;
	cursor: pointer;
	color: #ffffff;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	position: relative;
}
.accordion-header:after {
	content: '[+]';
	color: white;	
	position: absolute;
	top: 5px;
	right: 10px;
}

.active-header {
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
	background: #7ecc30;
}
.active-header:after {
	content: '[-]';
}

.active-header:hover {
	background: #7ecc30;
}

.inactive-header {
	background: #d01f06;
}

.inactive-header:hover {
	background: #7ecc30;

}

.accordion-content {
	display: none;
	font-size: 16px;
	padding: 0px;
	background: #ffffff;
	border: 0px solid #cccccc;
	border-top: 0;
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
}