div.jkcubeslideshow{ /* main container */
	background: white;
	display: block;
	width: 180px; /* default width of main container */
	height: auto; /* default height of main container */
	position: relative;
	-webkit-perspective: 1000px; /* Greater the value, less pronounced the 3D effect */
	perspective: 1000px; /* Greater the value, less pronounced the 3D effect */;
}

div.side1, div.side2 { /* two panels that make up cube effect */
	width: 100%;
	height: 100%;
	position: absolute;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	backface-visibility: hidden; /* hide backface of DIVs */
	transition: all 1s ease-in-out; /* CSS transition. Actual duration set by script */;
}

div.side1 img, div.side2 img { /* how should slideshow images be sized inside panels? */
	width: 100%;
	height: auto;
}

#wapper{
width:183px;
height:auto;
display:block;
float:left;
}
#btn_l{
	width: 20px;
	height: 20px;
	display: block;
	float: left;
	margin-top: -100px;
	position: absolute;
	z-index: 100;
}

#btn_r{
	width: 20px;
	height: 20px;
	display: block;
	float: right;
	margin-top: -100px;
	margin-left: 163px;
	position: absolute;
	z-index: 100;
}

#btn_l img{width:20px;filter:alpha(opacity=70); -moz-opacity:0.7; opacity:0.7;}

#btn_r img{width:20px;filter:alpha(opacity=70); -moz-opacity:0.7; opacity:0.7;}
