/* Flexible Slide-to-top Accordion Style*/
.wrapper{
	width:100%;
	max-width:960px;
	margin-bottom:20px;
}
.st-accordion{
    width:100%;
    min-width:270px;
    margin:auto;
		padding-left:0px;
		margin-left:0px;
}
.st-accordion ul li{
    height: 70px;
    border-bottom: 1px solid #d1c7bc;
    border-top:1px solid #fff;
    overflow: hidden;
		padding:0;
}
.st-accordion ul li:first-child{
    border-top:none;
}
.st-accordion ul li > a{
	padding:0;
	color: #acbec5;
	font-family: 'title', Arial, Helvetica, sans-serif;
	text-shadow: 1px 1px 1px rgba(209,199,188,0.2);
	font-size: 24px;
	display: block;
	position: relative;
	line-height: 70px;
	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{
	color: #acbec5;
	background: transparent url(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{
	/*light brown: #d1c7bc*/
	color:#d1c7bc;
}
.st-accordion ul li > a:hover span{
	opacity:1;
	right: 10px;
}
.st-accordion ul li.st-open > a{
	color:#d1c7bc;
}
.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 p{
    font-size:  12px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 16px;
    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: 900px){
	.st-accordion ul li > a{
		font-size:36px;
	}
}