.accordion-section {
	position: relative;
}
.accordion-content {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: max-height 0.6s ease-out, opacity 0.4s;
	-moz-transition: max-height 0.6s ease-out, opacity 0.4s;
	transition: max-height 0.6s ease-out, opacity 0.4s;
}
.accordion-section.active .accordion-content {
	/* Set max-height to height of tallest section.
		   Large values will cause an animation delay
		   when collapsing shorter sections. */
	max-height: none;
	opacity: 1;
	-webkit-transition: max-height 1s, opacity 1.2s;
	-moz-transition: max-height 1s, opacity 1.2s;
	transition: max-height 1s, opacity 1.2s;
}
.accordion-headline {
	width: 100%;
	display: block;
	cursor: pointer
}
.accordion-arrow,
.accordion-arrow-white {
    content: '';
    width: .66em;
    height: .66em;
    -webkit-transform-origin: .33em;
    transform-origin: .33em;
    display: inline-block;
    vertical-align: bottom;
    border: 0 solid #101116;
    border-bottom-width: 2px;
    border-right-width: 2px;
    -webkit-transform: translateX(-.1em) rotate(45deg);
    transform: translateX(-.1em) rotate(45deg);
    translateX(-.1em) rotate(45deg): ;
    margin-left: .66em;
    transition: 0.4s;
	position: relative;
	top: .33em;
}
.accordion-arrow-white { 
    border-color: #ffffff;
}
.accordion-section.active .accordion-arrow,
.accordion-section.active .accordion-arrow-white {
	-webkit-transform: rotate(225deg);
	-ms-transform: rotate(225deg);
	transform: rotate(225deg);
}

.cl-accordion-section {
	position: relative;
	width: 100%;
	padding: 10px;
	text-align: left;
	border-top: 1px solid #cccccc;
	background: #f5f5f5;
	margin-bottom: 10px;
}
.cl-accordion-content {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: max-height 0.6s ease-out, opacity 0.4s;
	-moz-transition: max-height 0.6s ease-out, opacity 0.4s;
	transition: max-height 0.6s ease-out, opacity 0.4s;
}
.cl-accordion-section.active .cl-accordion-content {
	/* Set max-height to height of tallest section.
		   Large values will cause an animation delay
		   when collapsing shorter sections. */
	max-height: 1000px;
	opacity: 1;
	-webkit-transition: max-height 1s, opacity 1.2s;
	-moz-transition: max-height 1s, opacity 1.2s;
	transition: max-height 1s, opacity 1.2s;
}
.cl-accordion-headline {
	width: 100%;
	display: block;
	cursor: pointer
}
.cl-accordion-arrow {
	position: absolute;
	right: 10px;
	top: 20px;
	width: 14px;
	height: 7px;
	background-image: url('arrow2.png');
	-webkit-transition: transform 0.4s;
	-moz-transition: transform 0.4s;
	transition: transform 0.4s;
}
.cl-accordion-section.active .cl-accordion-arrow {
	-webkit-transform: translateY(.3em) rotate(180deg);
	-ms-transform: translateY(.3em) rotate(180deg);
	transform: translateY(.3em) rotate(180deg);
}
