/* Flexible Slide-to-top Accordion Style*/

.st-accordion{
    width:100%;
    min-width:270px;
    margin: 0 auto 60px auto;
}
.st-accordion ul { padding: 0;}
.st-accordion ul li{ margin-bottom: 20px;
    border-bottom: 1px solid #e9e9e4; height: auto !important;
    border-top:0px solid #fff;
    overflow: hidden;
}
.st-accordion ul li:first-child{
    border-top:none;
}
.icon-q {font-size: 30px; color: #ea5a13; font-weight: 500; display: inline-block; margin-right: 10px; position: absolute; top: 0px; left: 5px;}
.st-accordion ul li > a{
    font-family: 'Raleway', serif; color: #ea5a13; padding: 0 40px 20px 50px; font-weight: 500; line-height: 170%;
    font-size: 24px;
    display: block;
	position: relative;
	outline:none;
    -webkit-transition:  color 0.2s ease-in-out;
	-moz-transition:  color 0.2s ease-in-out;
	-o-transition:  color 0.2s ease-in-out;
	-ms-transition:  color 0.2s ease-in-out;
	transition:  color 0.2s ease-in-out;
}
.st-accordion ul li > a:after { position: absolute; width: 100%; height: 1px; background: #e9e9e4; left: 0; bottom: 0;}
.st-accordion ul li > a span{ position: absolute; right: 10px; top: 10px; display: block; text-indent: -9999px;
	-webkit-transition:  all 0.2s ease-in-out;
	-moz-transition:  all 0.2s ease-in-out;
	-o-transition:  all 0.2s ease-in-out;
	-ms-transition:  all 0.2s ease-in-out;
	transition:  all 0.2s ease-in-out;
}
.st-accordion ul li > a span:before { content: ""; position: absolute; width: 24px; height: 2px; background: #ea6413; top:15px; right: 0px;}
.st-accordion ul li > a span:after { content: ""; position: absolute; width: 2px; height: 24px; background: #ea6413; top:4px; right: 11px;transition:  all 0.2s ease-in-out;}
.st-accordion ul li > a:hover{
    color: #ea5a13;
}
.st-accordion ul li > a:hover span{
	opacity:1;
	right: 10px;
}
.st-accordion ul li.st-open > a{
    color: #ea5a13; 
}
.st-accordion ul li.st-open > a span:after{
	transform:rotate(-90deg);
}
.st-content{
    padding: 0px 25px 25px 50px;  color: #222; font-size: 16px; line-height: 30px;
}
.st-content:before { position: absolute; width: 20px; height: 20px; border-width: 1px 1px 0 0; border-style: solid; border-color: #2660ad; background: #fff; transform: rotate(-45deg); left: 55px; top:-11px;}
.st-content p{
}
.st-content img{
    width:125px;
    border-right:1px solid #fff;
    border-bottom:1px solid #fff;
}
@media screen and (max-width: 320px){
	.st-accordion ul li > a{
		font-size:36px;
	}
}