﻿.accordion, .accordion * {
	-webkit-box-sizing:border-box; 
	-moz-box-sizing:border-box; 
	box-sizing:border-box;
}

.accordion {
	overflow:hidden;
	margin-bottom: 30px;
}

.accSection h4 {
	margin-bottom: 0px;
}

.accTitle {
	width: 100%;
	display: inline-block;
	border-bottom: 1px dashed #ccc;
	padding: 11px 0 9px;
}

.accTitle::before {
	content: "";
	float: left;
	display: block;
	background: url('../images/sprite.png') no-repeat -230px -188px;
	background-size: 500px 500px;
	width: 12px;
	height: 12px;
	margin: 8px 10px 0 0;
	transition: all 0.2s ease-out;
}

.accTitle:hover::before {
	background: url('../images/sprite.png') no-repeat -218px -188px;
	background-size: 500px 500px;
}

.accTitle.active {
	color: #333;
	border-bottom: 1px solid #ddd;
}
	.accTitle.active::before {
		background: url('../images/sprite.png') no-repeat -218px -188px;
		background-size: 500px 500px;
		transform: rotate(90deg);
		margin-top: 11px;
	}

.accContent {
	display:none;
	border-bottom: 1px solid #ddd;
	margin: 20px 0
}

.accSection:last-child .accContent {
	margin: 20px 0 0;
}