/* Flexible Slide-to-top Accordion Style*/

.st-accordion{
   width:85%;
	margin-left:15%;
}
.st-accordion ul li{
    height:50px;
	margin-bottom:20px;
    overflow: hidden;
}
.st-accordion ul li:first-child{
    border-top:none;
}
.st-accordion ul li > a{
    font-size: 20px;
    display: block;
	position: relative;
    line-height: 50px;
	background-image:url(../images/05/q.png);
	background-repeat:no-repeat;
	padding:0 30px 0 50px;
	color:#444;
	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 span{
	background: transparent url(../images/down.png) no-repeat center center;
	text-indent:-9000px;
	width: 26px;
	height: 14px;
	position: absolute;
	top: 50%;
	right: 0px;
	top:20px;
	/*margin-top: -7px;*/
	opacity:1;
	-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:hover{
    color: #1693eb;
}
.st-accordion ul li > a:hover span{
	opacity:1;
	right: 0px;
}
.st-accordion ul li.st-open > a{
    color: #1693eb;
}
.st-accordion ul li.st-open > a span{
	-webkit-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
    transform:rotate(180deg);
	right:0px;
	opacity:1;
}
.st-content{
    padding: 5px 0px 5px 0px;
	background:#f0f0f0;
	margin:10px 0 0 0;
	background-image:url(../images/05/a.png);
	background-repeat:no-repeat;
}
.st-content p{
    font-size:  18px;
    line-height:  28px;
    padding:5px 4px 15px 50px; 
}
.st-content img{
    width:125px;
    border-right:1px solid #fff;
    border-bottom:1px solid #fff;
}
@media (max-width: 1024px) {
	.st-accordion{
    width:100%;
	margin-left:0%;
	margin:20px 0;
}
.st-accordion ul li > a{
    font-size: 18px;
	}
	.st-content p{
    font-size:  16px;
}
}