

.accordion {
	margin-top: 23px 0;
	line-height: 1.6;
	padding: 10px;
}
.accordion p {
	margin:0px;
	line-height:21px;
}
.accordion > h3 {
	position: relative;
	font-size: 14px;
	padding: 0 0 0 50px;
	margin: 0 0 5px 0;
	cursor: pointer;
	line-height: 34px;
	font-family: "opensans", Arial, sans-serif;
	color: #333;
	font-weight: normal;
	background-color: #FFF;
}

.accordion > h3::before {
	content: '+';
	display: inline-block;
	position: absolute;
	width: 34px;
	height: 100%;
	left: 0;
	background: #333;
	color: #fff;
	font-weight: bold;
	font-size: 2em;
	text-align: center;
}

.accordion > h3.opened {
	color: #07A394;
}

.accordion > h3.opened::before {
	content: '-';
	line-height: 110%;
	background: #07A394;
}

.accordion > div {
	height: 0;
	overflow: hidden;
}