/* Flexible Slide-to-top Accordion Style*/

.st-accordion{
    width:720px;
    min-width:270px;
    margin:0;
}
.st-accordion ul li{
    height: 95px;
    border: 2px solid #c7deef;
	text-indent:18px;
    overflow: hidden;
	margin-bottom:20px;
	/* rounded corner */
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	/* box shadow */
	-webkit-box-shadow: 0 0 8px rgba(0,0,0,.5);
	-moz-box-shadow: 0 0 8px rgba(0,0,0,.5);
	box-shadow:  0 0 8px rgba(0,0,0,.5);
}

li.st_ac_li01{
	background: url(../owner/images/ow_li_bg01.png) no-repeat;
}

li.st_ac_li02{
	background: url(../owner/images/ow_li_bg02.png) no-repeat;
}


.st-accordion ul li:first-child{
    border-top:;
}

.st-accordion ul li > a{
	color:#fff;
	font-weight:bold;
    font-size: 24px;
    display: block;
	position: relative;
    line-height: 95px;
	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;
	/* text shadow */
	text-shadow: 2px 2px 2px #000000;
}

.st-accordion ul li a{
	
}

.st-accordion ul li > a span{
	background: transparent url(../images/ow_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{
    color: #00389a;
}
.st-accordion ul li > a:hover span{
	opacity:1;
	right: 10px;
}
.st-accordion ul li.st-open > a{
    color: #00389a;
}
.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 18px 20px 18px;
}
.st-content p{
	text-indent:0;
	border:#fff solid 2px;
	display:inline-block;
	margin-bottom:10px;
	float:left;
	/* rounded corner */
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	/* box shadow */
	-webkit-box-shadow: 0 0 8px rgba(0,0,0,.5);
	-moz-box-shadow: 0 0 8px rgba(0,0,0,.5);
	box-shadow:  0 0 8px rgba(0,0,0,.5);
}
.st-content img{
	
}
