/* Flexible Slide-to-top Accordion Style*/
.clr{
	clear:both;
}
.wrapper{
	width:100%;
	padding:0;
	margin:0px;	
}
.st-accordion{
    width:100%;
    min-width:270px;
	padding:0;
	margin:0px;
	float:left;
}
.st-accordion ul li{
margin-bottom:1%;   
   padding:0;
    overflow: hidden;
	-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
.st-accordion ul li:first-child{
    border-top:none;
}
.st-accordion ul li > a{
background-color:#c9c9c9;
    font-family: 'NewsGothCnBTRegular';
	color:#000000;
	padding-left:3%;
	text-transform:uppercase;   
    font-size:20px;
    display: block;
	position: relative;
	margin:0;
    line-height:50px;
	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: -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;
}
.st-accordion ul li > a:hover{
    color: #c9c9c9;
	background: #455763; /* Old browsers */
	background: -moz-linear-gradient(top, #455763 0%, #141c20 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #455763), color-stop(100%, #141c20)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #455763 0%, #141c20 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #455763 0%, #141c20 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #455763 0%, #141c20 100%); /* IE10+ */
	background: linear-gradient(to bottom, #455763 0%, #141c20 100%); /* W3C */
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#455763', endColorstr='#141c20', GradientType=0 ); /* IE6-9 */
}
.st-accordion ul li > a:hover span{
	opacity:1;
	right: 10px;
}
.st-accordion ul li.st-open > a{
    color: #c9c9c9;
	background: #455763; /* Old browsers */
	background: -moz-linear-gradient(top, #455763 0%, #141c20 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #455763), color-stop(100%, #141c20)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #455763 0%, #141c20 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #455763 0%, #141c20 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #455763 0%, #141c20 100%); /* IE10+ */
	background: linear-gradient(to bottom, #455763 0%, #141c20 100%); /* W3C */
 filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#455763', endColorstr='#141c20', GradientType=0 ); /* IE6-9 */
}
.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: 5px 0px 10px 0px;
}

.st-content_img{
margin:2%;
float:left;

    
    
}

@media screen and (max-width: 320px){
	.st-accordion ul li > a{
		font-size:20px;
	}
}