/*------------------------------------*\
-------- Page Styles: Accordion
\*------------------------------------*/
body {
	position:relative;
	z-index: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;
	background:#fff;
    padding-bottom: 20px
}

.rechts {padding-bottom: 0}
/*----- Section Titles -----*/

.accordion-section-title::before {
content: url("../images/list-down.png");
position: relative; float: left; 
    transition: all .3s ease;
    margin-right: 11px
}

.accordion-section-title.active::before {
-moz-transform: rotate(180deg); /* Firefox 3.6 Firefox 4 */
-webkit-transform: rotate(180deg); /* Safari */
-o-transform: rotate(180deg); /* Opera */
-ms-transform: rotate(180deg); /* IE9 */
transform: rotate(180deg); /* W3C */
    
}


.accordion-section-title {
	width:100%;
	display:inline-block;
	background:#fff;
	transition:all linear 0.15s;
	/* Type */
	font-size:15px;
	color:#828282;
    text-decoration: none
}

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

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

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