/*------------------------------------*\
-------- Page Styles: Accordion
\*------------------------------------*/
body {
	position:relative;
	z-index:0;
}
.main:before {
	width:100%;
	height:100%;
	position:absolute;
	top:0px;
	left:0px;
	z-index:-1;
	content:'';
	background:-webkit-radial-gradient(30%, rgba(255,255,255,0.15), rgba(0,0,0,0)), url('img/body-bg.png');
	background:-moz-radial-gradient(30%, rgba(255,255,255,0.15), rgba(0,0,0,0)), url('img/body-bg.png');
	background:-o-radial-gradient(30%, rgba(255,255,255,0.15), rgba(0,0,0,0)), url('img/body-bg.png');
	background:radial-gradient(30%, rgba(255,255,255,0.15), rgba(0,0,0,0)), url('img/body-bg.png');
}

.site-header-wrap {
	margin-bottom:60px;
}

/*----- Accordion -----*/
.accordion, .accordion * {
	-webkit-box-sizing:border-box; 
	-moz-box-sizing:border-box; 
	box-sizing:border-box;
}

.accordion {
	overflow:hidden;
}

/*----- Section Titles -----*/
.accordion-section-title {
	width:100%;
	display:inline-block;
	padding-bottom: 15px;
	border-bottom: 1px solid #10147E;
	transition:all linear 0.15s;
	/* Type */
	font-family: 'Nunito Sans', sans-serif;
	font-weight: 600;
	color: #10147E;
}

.accordion-section-title.active, .accordion-section-title:link, .accordion-section-title:hover {
	color: #10147E;
}

/*----- Section Content -----*/
.accordion-section-content {
	padding-top: 1px;
	padding-bottom: 10px;
	display: none;
	border-bottom: 1px solid #10147E;
}