/* Flexible Slide-to-top Accordion Style*/

.st-accordion{
    display:block;
    clear: both;
    width:100%;
    min-width:270px;
    margin: 0 auto;
    z-index:1;
}

.randaccord{
padding: 10px;
}

.st-accordion ul li{
    height: 60px;
    border-bottom: 1px solid #c7deef;
    border-top:1px solid #fff;
    overflow: hidden;
}
.st-accordion ul li:first-child{
    border-top:none;
}
.st-accordion ul li > a{
font-family: "franklin-gothic-urw",sans-serif;	
    text-shadow: 1px 1px 1px #fff;
    font-size: 18px;
    display: block;
    padding-left: 50px;
	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;
    z-index: 10;
}
.st-accordion ul li > a span{
	background: url(down.png) no-repeat center center transparent;
	text-indent:-9000px;
	width: 18px;
	height: 14px;
	position: absolute;
	top: 50%;
	left: 10px;
	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: #c01f1b;
}
.st-accordion ul li > a:hover span{
	opacity:1;
	right: 10px;
}
.st-accordion ul li.st-open > a{
    color: #c01f1b;
}
.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-size:  16px;
font-family: "franklin-gothic-urw",sans-serif;	
    font-style: italic;
    line-height:  28px;
    padding: 0px 4px 15px 4px; 
}
.st-content img{
    width:125px;
    border-right:1px solid #fff;
    border-bottom:1px solid #fff;
}
@media screen and (max-width: 320px){
	.st-accordion ul li > a{
		font-size:36px;
