/* Flexible Slide-to-top Accordion Style*/

.st-accordion{
    width:100%;
    min-width:270px;
    margin: 15px auto;
	
}

.st-accordion h3 {
	font-weight:normal;
	font-size:18px;
}
.st-accordion ul li{
    height: 60px;
    overflow: hidden;
	margin-bottom:5px;
}
.st-accordion ul li:first-child{
    border-top:none;
}
.st-accordion ul li > a{
    background:#008B8B;
	width:500px;
	color:#fff;
    font-size: 20px;
	padding-left:50px;
    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;
}

.st-accordion ul li > a:hover{
    background:#FF8C00;

}

.st-accordion ul li > a span{
	background: transparent url(../../images/accordion/down.png) no-repeat center center;
	text-indent:-9000px;
	width:56px;
	height: 30px;
	position: absolute;
	//font-size:18px;
	top: 40%;
	right: -86px;
	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: #fff;
	text-decoration:none;
}
.st-accordion ul li > a:hover span{
	opacity:1;
	right: 10px;
}
.st-accordion ul li.st-open > a{

	font-weight:bold;
}
.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{

	height:270px;	
}

.st-content h5{
	padding-left:15px;
	font-size:16px;
	color:#696969;
}

.st-content p{
	text-indent:1em;
    padding: 0px 4px 15px 15px; 
	width:250px;
	display:block;
	color:#696969;	
		
}

.st-content_left {

	float:left;
	margin:5px 5px 0 0;

}

.st-content_right {

	float:right;
	margin:5px 5px 0 0;

}

.st-content img{

	width:250px;
	height:136px;	
	
}

.st-content.left img {
	float:left;

}


@media screen and (max-width: 320px){
	.st-accordion ul li > a{
		font-size:36px;
	}
}