/* Flexible Slide-to-top Accordion Style*/
.wrapper{
	width:100%;
	margin:0 auto;
}
.st-accordion{
    margin: 0 auto;
}
.st-accordion ul{
    margin-left:0 !important;
}
.st-accordion ul li{
    height: 40px;
    border-bottom: 1px solid #ccc;
    border-top:1px solid #eee;
    overflow: visible;
	margin-left:0 !important;
	padding-left:0 !important;
}
.st-accordion ul li:first-child{
    border-top:none;
}
.st-accordion ul li > a{
    font-family: 'DroidSansRegular', Arial, sans-serif;
    text-shadow: 1px 1px 1px #fff;
    font-size: 14px;
    display: block;
	position: relative;
    line-height: 40px;
	width:540px;
	outline:none;
	text-decoration: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(../img/down.png) no-repeat center center;
	text-indent:-9000px;
	width: 26px;
	height: 14px;
	position: absolute;
	top: 50%;
	right: -5px;
	margin-top: -7px;
	-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: #0087E8;
}
.st-accordion ul li > a:hover span{
	opacity:1;
	right: 10px;
}
.st-accordion ul li.st-open > a{
    color: #333333;
	padding-left:5px;
	background-color:#efefef;
}
.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 30px 0px;
}
.st-content p{
    font-family: 'DroidSansRegular', Arial, sans-serif;
    line-height:  20px;
	font-size:14px;
    padding: 0 20px 0 0; 
}
.st-content ul{
    font-family: 'DroidSansRegular', Arial, sans-serif;
	font-size:14px;
    padding: 0px 4px 15px 4px; 
	margin-top:0;
}
.st-content ul li{
	border:0;
	padding-left:25px !important;
	height:auto;
	padding-top:5px;
	background: transparent url(../img/lista.png) 0 2px no-repeat;
}
.st-content img{
    float:right;
	margin-left:20px;
}
@media screen and (max-width: 320px){
	.st-accordion ul li > a{
		font-size:36px;
	}
}