/*------------------------------------*\
-------- Page Styles: Accordion
\*------------------------------------*/
.accordion p{
	font-size: 14px;
	line-height: 21px;
	text-align: justify;
}
.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;
	border-bottom:1px solid #cd9ad6;
}

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

.accordion {
	overflow:hidden;
	box-shadow:0px 1px 3px rgba(0,0,0,0.25);
	border-radius:3px;
	background:#f7f7f7;
}

/*----- Section Titles -----*/
.accordion-section-title {
	width:100%;
	padding: 7px 15px;
	display:inline-block;
	border-bottom:1px solid #fff;
	background:#6d9e31;
	transition:all linear 0.15s;
	/* Type */
	font-size:16px;
	color:#fff;
}

.accordion-section-title.active, .accordion-section-title:hover {
	background:#598720;
	color:#fff;
	/* Type */
	text-decoration:none;
}

.accordion-section:last-child .accordion-section-title {
	border-bottom:none;
	color:#fff;
}

.accordion-section-titlee {
	width:100%;
	padding: 7px 15px;
	display:inline-block;
	border-bottom:1px solid #fff;
	background:rgb(71, 164, 71) none repeat scroll 0% 0%;
	transition:all linear 0.15s;
	/* Type */
	font-size:16px;
	color:#fff;
}

.accordion-section-titlee.active, .accordion-section-titlee:hover {
	background:#3F911B;
	color:#fff;
	/* Type */
	text-decoration:none;
}
.accordion-section-titleee {		
	width:100%;		
	padding: 7px 15px;		
	display:inline-block;		
	border-bottom:1px solid #fff;		
	background:#ec3c67;		
	transition:all linear 0.15s;		
	/* Type */		
	font-size:16px;		
	color:#fff;		
}		
.accordion-section-titleee.active, .accordion-section-titleee:hover {		
	background:#d72954;		
	color:#fff;		
	/* Type */		
	text-decoration:none;		
}		

.accordion-section:last-child .accordion-section-titlee {
	border-bottom:none;
	color:#fff;
}


/*----- Section Content -----*/
.accordion-section-content {
	padding:15px;
	display:none;
	
}