#accordion-container {
	font-family: 'Monda', sans-serif;
	font-size: 15px;
	background: #ffffff;
	padding: 5px 10px 10px 10px;
	border: 1px solid #cccccc;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 0 5px 15px #cccccc;
	-webkit-box-shadow: 0 5px 15px #cccccc;
	box-shadow: 0 5px 15px #cccccc;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
}
.accordion-header {
	font-size: 16px;
	margin: 10px 0 0 0;
	padding: 10px 10px;
	cursor: pointer;
	font-weight:700;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
}
.active-header {
	background: url(../images/right-arrow.png) #2E3641;
	background-repeat: no-repeat;
	background-position: 95% 50%;
	color:#FFF;
	font-weight:700;
}
.active-header:hover {
	background: url(../images/down-arrow.png) #9EB2C0;
	background-repeat: no-repeat;
	background-position: 95% 50%;
	color: #464D55;
}
.inactive-header {
	background: url(../images/right-arrow.png) #2E3641;
	background-repeat: no-repeat;
	background-position: 95% 50%;
	font-weight: 600;
	color: #ffffff;
}

.inactive-header:hover {
	background: url(../images/down-arrow.png) #9EB2C0;
	background-repeat: no-repeat;
	background-position: 95% 50%;
}

.accordion-content {
	display: none;
	background: #ffffff;
	border-top: 0;
	padding: 8%;
	width: 84% !important;
}