/*------------------------------------*\
-------- 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:'';
   
}



.site-header-wrap {
	margin-bottom:30px;
	border-bottom:1px solid #f7f7f7;
}

/*------------------------------------*\
-------- DEMO Code: accordion
\*------------------------------------*/
/*----- Accordion -----*/
.accordion, .accordion * {
	-webkit-box-sizing:border-box; 
	-moz-box-sizing:border-box; 
	box-sizing:border-box;
	
}

.accordion {
	overflow:hidden;
	border-radius:3px;
	background:#f7f7f7;
}

/*----- Section Titles -----*/
.accordion-section-title {
	width:100%;
	padding:10px;
	display:inline-block;
	border-bottom:1px solid #ffffff;
	background:#eaeee8;
	/*background:#62bb47;*/
	transition:all linear 0.15s;
	
	/* Type */
	font-size:1em;
	color:#000;
}

.accordion-section-title.active, .accordion-section-title:hover {
	background:#d8ddd7;
	
	/* Type */
	text-decoration:none;
	color:#000;
}

.accordion-section:last-child .accordion-section-title {
	border-bottom:none;
	
}

/*----- Section Content -----*/
.accordion-section-content {
	padding:15px;
	display:none;
}
.sold {
	color:#c61609;
}