#accordion-container {
	display:table;
	width:100%;
	border-bottom: 1px solid #000;
}

.accordion-header {
	font-size: 15px;
	font-family:Raleway;
	line-height:30px;
	letter-spacing:0.15em;
	text-transform:uppercase;
	padding: 20px 0px;
	border-top: 1px solid #000;
	cursor: pointer;
	color: #000;
}

.active-header {
	background: url(images/active-header.png);
	background-repeat: no-repeat;
	background-position: right 50%;
}

.active-header:hover {
	background: url(images/active-header.png);
	background-repeat: no-repeat;
	background-position: right 50%;
}

.inactive-header {
	background: url(images/inactive-header.png);
	background-repeat: no-repeat;
	background-position: right 50%;
}

.inactive-header:hover {
	background: url(images/inactive-header.png);
	background-repeat: no-repeat;
	background-position: right 50%;
}

.accordion-content {
	display: none;
	padding: 45px 210px 55px;
	border-top: 0;
}

.accordion-content ul li {
	font-size: 14px; 
	color: #000; 
	letter-spacing:0.05em;
	line-height:25px;
	margin-bottom:10px;
	padding-left:47px;
	position:relative;
}

.accordion-content ul li:after {
	content:"";
	width:8px;
	height:8px;
	border-radius:50%;
	background:#000;
	position:absolute;
	top:10px;
	left:0;
}

