div.elements.Accordion div.items div.item div.title {
	text-transform: uppercase;
	color: white;
	font-size: 140%;
	font-weight: normal;
	background: #4e4e4e;
	padding: 15px 10px;
	cursor: pointer;
	margin: 0px 0 2px 0;
	position: relative;
}

div.elements.Accordion div.items div.item div.title:after {
	content: '\f077';
	font-family: 'FontAwesome';
	font-size: 22px;
	width: 30px;
	height: 30px;
	color: white;
	right: 10px;
	position: absolute;
	
}

div.elements.Accordion div.items div.item.active div.title:after {
	content: '\f078';
}

div.elements.Accordion div.items div.item div.descr {
	background: linear-gradient(#f9f9f9,#f0f0f0);
	padding: 15px 10px;
	display: none;
}

div.elements.Accordion div.items div.item.active div.descr {
	display: block;
}