/* Flexible Slide-to-top Accordion Style*/
.wrapperaccord{
	width:100%;
	max-width:1130px;
	margin:0px auto;
}
.st-accordion{
    width:100%;
    min-width:270px;
    margin: 0 auto;
}
.st-accordion ul li{
    height: auto;
    border-bottom: 0.05em dotted silver;
    border-top: 0.00em dotted silver;
    overflow: hidden;
	margin: 0 15px 0px -25px;
	padding-bottom: 15px;
}
.st-accordion ul li:first-child{
    border-top:none;
}
.st-accordion ul li > a{
    font-size: 1.3em;
	letter-spacing: 0.03em; 
	font-weight: 550;
	color: #b07540;
    display: block;
	position: relative;
	left: -15px;
    line-height: 50px;
	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{
	background: transparent url(../../userfiles/images/ref/down.png) no-repeat center center;
	text-indent:-9000px;
	width: 18px;
	height: 10px;
	position: absolute;
	top: 30px;
	right: -0px;
	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: #b07540;
	font-weight: 600;
	text-decoration: none;
}
.st-accordion ul li > a:hover span{
	opacity:1;
	right: 10px;
}
.st-accordion ul li.st-open > a{
    color: #b07540;
}
.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;
	margin-left: -15px;
}
.st-content p{
    font-size:  1.0em;
    padding: 0px; 
}

@media screen and (max-width: 768px){
	.st-accordion ul li > a{
		font-size:1.2em;
	}
}