/*
.accordion, .accordion * {
	-webkit-box-sizing:border-box; 
	-moz-box-sizing:border-box; 
	box-sizing:border-box;
}
*/

.accordion {
	width: 900px;
	margin-left: auto;
	margin-right: auto;
	overflow:hidden;
	//box-shadow:0px 1px 3px rgba(0,0,0,0.25);
	border-radius:3px;
	background:#F7F7F7;
}

.accordion-section-title {
	width:100%;
	padding:15px;
	display:inline-block;
	border-bottom:2px solid #FAFAFA;
	background:#3D7DCC;
	transition:all linear 0.15s;
	font-size:1.200em;
	//text-shadow:0px 1px 0px #1a1a1a;
	color:#FFFFFF;
}

.accordion-section-title.active, .accordion-section-title:hover {
	background:#4080DD;
	text-decoration:none;
}

.accordion-section:last-child .accordion-section-title {
	border-bottom:none;
}

.accordion-section-content {
	padding:15px;
	display:none;
}