.js-box-wrap {
	margin: 0 0 25px 0;
}
.js-box-title {
	position: relative;
}

.js-box-title h2 {
	background: #000;
	color: #fff;
	font-weight: 100;
	padding: 16px 42px 16px 16px;
	margin: 0 0 0px 0;
	cursor: pointer;
}

.js-box-content {
	background: #f9f9f9;
	border-bottom: 1px solid #ccc;
}

.js-box-content-inner {
	padding: 16px;
}

.js-box-title h2:after {
	content:'+';
	width: 30px;
	height: 30px;
	padding: 0px !important;
	background-color: transparent;
	border: 1px solid white;
	color: white;
	position: absolute;
	right: 10px;
	top: -2px;
	bottom: 0;
	margin: auto;
	text-align: center;
	cursor: pointer;
	line-height: 27px;
	vertical-align: middle;
	font-size: 24px;
}

.js-box-title.active h2:after {
	content:'–';
}