/* Flexible Slide-to-top Accordion Style*/
.wrapper{
	width:90%;
	max-width:500px;
	margin:50px auto;
}
.st-accordion{
    width:100%;
    margin: 0 auto;
}
.st-accordion ul li{
   	height: 47px;
    	border:1px solid #c7deef;
	border-radius:10px;
	overflow: hidden;
}
.st-accordion ul li:first-child{
    border-top:1px solid #c7deef;
}
.st-accordion ul li > a{
    font-family: 'Josefin Slab',Georgia, serif;
 	color: #06F;
	margin-left:10px;
	text-shadow: 1px 1px 1px #06F;
    font-size: 22px;
	font-weight:600;
    display: block;
	position: relative;
    line-height: 47px;
	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(../images/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: #000;
}
.st-accordion ul li > a:hover span{
	opacity:1;
	right: 10px;
}
.st-accordion ul li > a img{
	
	width:30px;
	height:20px;
	
	-webkit-transition:  all 0.2s ease-in;
	-moz-transition:  all 0.2s ease-in;
	-o-transition:  all 0.2s ease-in;
	-ms-transition:  all 0.2s ease-in;
	transition:  all 0.2s ease-in;
	
}

.st-accordion ul li > a:hover img{
	background: transparent url(../images/right1.png) no-repeat center center;
	width:30px;
	height:20px;
	
	-webkit-transition:  all 0.2s ease-in;
	-moz-transition:  all 0.2s ease-in;
	-o-transition:  all 0.2s ease-in;
	-ms-transition:  all 0.2s ease-in;
	transition:  all 0.2s ease-in;
}
.st-accordion ul li.st-open > a{
    color: #1693eb;
}
.st-accordion ul li.st-open > a span{
	-webkit-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
    transform:rotate(180deg);
	right:10px;
	opacity:1;
}
.st-accordion ul li.st-open > a img{
	-webkit-transform:rotate(90deg);
	-moz-transform:rotate(90deg);
    transform:rotate(90deg);
	right:10px;
	opacity:1;
}
.st-content{
    padding: 5px 0px 30px 0px;
}
.st-content p{
    font-size:  16px;
    font-family:  Georgia, 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;
}
#Button1{
	font-family:Georgia, "Times New Roman", Times, serif;
	font-size:18px;
	background: #d11717 url(../images/bkg-1.jpg);
  	background-position: 0 0;
/*	background:#CCC;*/
	width:150px;
	height:40px;
	color:#FFF;
	
	 /*Transition*/
  -webkit-transition: All 0.8s ease;
  -moz-transition: All 0.8s ease;
  -o-transition: All 0.8s ease;
  -ms-transition: All 0.8s ease;
  transition: All 0.8s ease;
  /*Rounded Corners*/
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  
  /*Shadow*/
  -webkit-box-shadow: 0px 3px 1px #E5E5E5;
  -moz-box-shadow: 0px 3px 1px #E5E5E5;
  box-shadow: 0px 3px 1px #E5E5E5;
}
#Button1:hover{
	background-position: 0px 150px;
/*	background:#CF0;
	width:110px;
	height:32px;*/
}

#ban_label
{
	font-size:36px;
	font-weight:500;
	
	text-shadow:
	0 1px 0px #378ab4,
    1px 0 0px #5dabcd,
    1px 2px 1px #378ab4,
    2px 1px 1px #5dabcd,
    2px 3px 2px #378ab4,
    3px 2px 2px #5dabcd,
    3px 4px 2px #378ab4,
    4px 3px 3px #5dabcd,
    4px 5px 3px #378ab4,
    5px 4px 2px #5dabcd,
    5px 6px 2px #378ab4;
	
	color:#CCC;
	text-align:center;
	letter-spacing:2px;
}

@media screen and (max-width: 320px){
	.st-accordion ul li > a{
		font-size:36px;
	}
}