/* Flexible Slide-to-top Accordion Style*/

.st-accordion{
    width:100%;
    margin-bottom: 25px;
}
.st-accordion ul li{
    border-bottom: 1px solid #c7c7c7;
    overflow: hidden;
    background: none !important;
    padding:0px !important;
}
.st-accordion ul li:first-child{
    border-top:none;
    height:auto !important;
}
.st-accordion ul li > a{
    font-size: 16px;
    display: block;
    cursor: pointer;
	position: relative;
    line-height: 35px;
	padding-left:12px; height: 35px;
	outline:none;
	text-transform: uppercase;
	color: #515151 !important;
	background-color: #E9E9E9;
    -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:#68543C; 
	color: #fff;
}
.st-accordion ul li a:hover{
	background:#68543C !important; 
	text-decoration:none;
	color: #fff!important;
}
.st-accordion ul li > a span{
	background: transparent url(../uploads/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 span{
	opacity:1;
	right: 10px;
}
.st-accordion ul li.st-open > a{
	text-shadow: 1px 1px 0px #000;
    color: #FFF!important; 
    background: #68543C;
    height:auto !important;
}
.st-accordion ul li > a.st-open{
	text-shadow: 1px 1px 0px #000;
    color: #FFF!important; 
    background: #68543C;
    height:auto !important;
}
.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: 25px 0px 30px 0px;
}
.st-content p{
	padding-bottom: 10px;
}
.st-content h3{
	margin-bottom: 5px!important;
	margin-top: 15px;
	color: #7E8A64;
}
.item .st-content ul li{
	border-bottom: 5px;
	background: url('../uploads/images/lst.png')no-repeat 0px 5px !important;
	padding-left: 15px !important;
	padding-bottom: 5px !important;
}
.st-content img{
    width: 100%;
	margin-right: 13px;
	float:left;
	margin-bottom:15px; 
}
@media screen and (max-width: 320px){
	.st-accordion ul li > a{
		font-size:13px;
	}
}