/*------------------------------------*\
-------- Page Styles: Accordion
\*------------------------------------*/

/*------------------------------------*\
-------- 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:4px;
}

/*----- Section Titles -----*/
.accordion-section-title {
	width:100%;
	padding:10px 15px;
	text-decoration: none;
	margin-bottom:10px;
	display:inline-block;
	background:url(../images/menu_bg.png);
	background-size:cover;
	font-size: 16px;
    text-transform: uppercase;
    color: #512c1a;
}

.accordion-section-title.active, .accordion-section-title:hover {
	background:url(../images/menu_bg.png);
	color: #8e2e00;
	text-decoration:none;
}

.accordion-section:last-child .accordion-section-title {
	border-bottom:none;
}

/*----- Section Content -----*/
.accordion-section-content {
	padding:0px 15px 15px 15px;
	display:none;
}