/* Flexible Slide-to-top Accordion Style*/
.wrapper{
	max-width: 1600px;
	margin: 0 auto;
	padding: 70px 10%;
	position: relative;
}
.st-accordion{
    width:100%;
    min-width:270px;
    margin: 0 auto;
}
.st-accordion ul li{
    height: 60px;
    border-bottom: 1px solid #c7deef;
    border-top:1px solid #fff;
    overflow: hidden;
	background: #fff;
	
}
.st-accordion ul li:first-child{
    border-top:none;
}
.st-accordion ul li > a{
    font-size: 18px;
	padding-left: 2%;
    display: block;
	position: relative;
    line-height: 60px;
	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;
	cursor: pointer;
}
.st-accordion ul li > a span{
	background: transparent url(../images/down.png) no-repeat center center;
	text-indent:-9000px;
	width: 26px;
	margin-right: 1%;
	height: 14px;
	position: absolute;
	top: 50%;
	right: -26px;
	margin-top: -7px;
	opacity:0;
	-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;
	filter: grayscale(100%);
}
.st-accordion ul li > a:hover{
    color: #051c2c;
}
.st-accordion ul li > a:hover span{
	opacity:1;
	right: 10px;
}
.st-accordion ul li.st-open > a{
    color: #051c2c;
}
.st-accordion ul li.st-open > a span{
	-webkit-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
    transform:rotate(180deg);
	right:10px;
	opacity:1;
}
.st-content{
    padding: 30px 2% 30px 2%;
	background: #f1f1f1;
}

@media only screen and (min-width:0px) and (max-width:767px){
	
.st-accordion ul li{
    height: 50px;

}

.st-accordion ul li > a{
    font-size: 16px;
	padding-left: 2%;
    line-height: 50px;
	
}	
	
.st-content{
    padding: 10px 2% 10px 2%;
	background: white;
}	
	
}

@media only screen and (min-width:767px) and (max-width:1350px){
	
.st-accordion ul li{
    height: 50px;

	
}

.st-accordion ul li > a{
    font-size: 17px;
	padding-left: 2%;
    line-height: 50px;
	
}	
	
.st-content{
    padding: 15px 2% 15px 2%;
	background: white;
}
	
}