.ProductTabDsp .title {
	position: relative;
	cursor: pointer;
	padding-left: 30px;
	padding-top: 2px;
	line-height: 100%;
	min-height: 20px;
}
.ProductTabDsp .title:before {
	display: inline-block;
	position: absolute;
	left: 0;
	content: '+';
	text-align: center;
	width: 16px;
	height: 16px;
	border-radius: 3px;
	box-sizing: border-box;
	background: #f47920;
	color: #fff;
	box-shadow: 0px 0px 3px rgba(0,0,0,0.5);
	transition: all 200ms;
}
.ProductTabDsp .item.open .title:before {
	content: '-';
	background: slategray;
}

.ProductTabDsp .title h2 {
	margin-bottom: 11px;
}

.ProductTabDsp .item {
	padding-bottom: 11px;
}

.ProductTabDsp .item .description {
	display: none;
}
.ProductTabDsp .item.open .description {
	display: block;
	border-bottom: 1px solid #D9DADB;
}

.ProductTabDsp .item.last .title,
.ProductTabDsp .item.last .description {
	border: none;
}