/* ---------------------------------

		A C C O R D I A N      

--------------------------------- */

.accordion{
	border-radius: 6px;
	overflow: hidden;
	border: 0px solid #6495ED;
}

a.accordion-panel__heading:link
{
	color:#333;
}
a.accordion-panel__heading:visited
{
	color:#F00;
}
a.accordion-panel__heading:hover
{
	color:#F00;
}
a.accordion-panel__heading:active
{
	color:#F00;
}


.accordion-panel__heading
{
	position: relative;
	padding: 20px;
	display: block;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #6495ED;
	background: #f5f5f5;
	/*
	font-family: 'Source Sans Pro', sans-serif;
	*/
	font-size: 16px;
	font-weight: 600;
	/*
	border-bottom: 1px solid #6495ED;
	*/
	border-bottom: 1px solid #CCC;
	transition: all .6s;
	cursor:pointer;
}
.accordion-panel__heading:before{
	transition: all .6s .2s ease;
	content: "";
	border: 0px #6495ED solid;
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
}
.accordion-panel__heading.active:before{
	transition: all .2s .6s;
	border-left: 15px #6495ED solid;
	color:#FC3;
}
.accordion-panel__heading:HOVER{
	color: #333;
	background: #f1f1f1;
	transition: all .2s;
}
.accordion-panel__heading.active:HOVER,
.accordion-panel__heading.active {
	transition: all .2s;
	color: #333;
	background: #f5f5f5;
	border-bottom: 0;
	padding: 20px 20px 20px 40px;
}
.accordion-panel__content{
	transition: all .6s;
	position: relative;
	padding: 0 20px 0 20px;
	background: #f1f1f1;
    max-height: 0;
    overflow: hidden;
}
.accordion-panel__content:before{
	transition: all .6s .2s ease;
	content: "";
	border: 0px #6495ED solid;
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 100%;
}
.accordion-panel__content.active:before{
	transition: all .2s .6s;
	border-left: 15px #6495ED solid;
}
.accordion-panel__content.active {
	transition: all .2s;
	
    max-height: 500px;
    background: #fff;
   padding: 10px 20px 15px 40px;
}
