/* Elastislide Style */
.es-carousel-wrapper{
	background: #f5f5f5;
	padding:10px 27px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	position:relative;
	position:relative;
	margin-bottom:20px;
    border:1px #eee solid;
}
.es-carousel{
	overflow:hidden;
}
.es-carousel ul{
	display:none;
}
.es-carousel ul li{
	float:left;
	display:block;
    text-align:center;
}
.es-carousel ul li a{
	display:block;
	border-style:solid;
	border-color:#fff;
	opacity:0.8;
	-webkit-touch-callout:none;
	/* option */
	-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;
}
.es-carousel ul li.selected a{
	border-color:#06A7E1;
	opacity:1.0;
}
.es-carousel ul li a img{
    border-radius:0px;
	display:block;
	border:none;
    max-width: 65px;
	max-height:45px;
    width: expression(this.width > 65 && this.width / 65 >= this.height / 45 ? 65 : true);
    height: expression(this.height > 45 && this.width / 65 < this.height / 45 ? 65 : true);
}
.es-nav span{
	position:absolute;
	top:50%;
	left:8px;
	background:transparent url(nav_thumbs.png) no-repeat top left;
	width:14px;
	height:26px;
	margin-top:-13px;
	text-indent:-9000px;
	cursor:pointer;
	opacity:0.8;
}
.es-nav span.es-nav-next{
	right:8px;
	left:auto;
	background-position:top right;
}
.es-nav span:hover{
	opacity:1.0;
}