/*------------------------------------*\
-------- 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:rgba(0 url('img/body-bg.png') 255 0))
}

/*.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:10px;
	background:#f7f7f7;
	width:98%;
	margin: 15px auto auto 0px;
}

/*----- Section Titles -----*/
.accordion-section-title {
	width:100%;
	padding:10px;
	display:inline-block;
	border-bottom:1px solid #f7f7f7;  /* old 1a1a1a */
	background:#dedede;  /* old 333 */
	transition:all linear 0.15s;
	/* Type */
	font-size:1.200em;
	/*text-shadow:0px 1px 0px #1a1a1a;*/
	color:#000;   /* old fff */
}

.accordion-section-title.active, .accordion-section-title:hover {
	background:#4c4c4c;
	/* Type */
	text-decoration:none;
	text-shadow:0px 1px 0px #1a1a1a;
	color:#fff;
}

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

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