.accordion {
	overflow: hidden;
    border-radius: 3px;
    background: #f9f9f9;
    font-family: arial;
    width: 100%;
    border: 1px solid #f9f9f9;
    box-shadow: 0px 0px 1px 1px #4f4f4f;
}
.accordion-section-title {
	width:100%;
	padding:12px;
	display:inline-block;
	border-bottom:1px solid #1a1a1a;
	/*background:#4F4F4F;*/
	transition:all linear 0.15s;
	font-size:1.2em;
	text-shadow:0px 1px 0px #1a1a1a;
	/*color:#fff;*/
	text-decoration:none;
	/*font-weight: 600;*/
	cursor:pointer
}
.accordion-section-title.active, .accordion-section-title:hover {
	/*background:#404040;
	color:#10d603*/
}
.accordion-section:last-child .accordion-section-title {
	border-bottom:none;
}
.accordion-section-content {
	padding:0 15px;
	line-height: 1.4;
	display:none;
}