/* CSS Document */

.carousel{
	height:120px;
	overflow:hidden;
	display:block;
	position:relative;
	background-color:#0093dd;
}
.carousel .carousel-content{
	width:373px;
	height:120px;
	margin:0 auto;
	position:relative;
	z-index:90;
	white-space:nowrap;
	overflow:hidden;
	background-color:#fff;
}
.carousel .carousel-right{
	width:373px;
	height:120px;
	left:50%;
	position:absolute;
	top:0;
	margin-left:186px;
	z-index:100;
	white-space:nowrap;
	overflow:hidden;
}
.carousel .carousel-left{
	width:373px;
	height:120px;
	right:50%;
	position:absolute;
	top:0;
	overflow:hidden;
	margin-right:186px;
	z-index:100;
	white-space:nowrap;
}
.carousel .blue-cover{
	width:373px;
	height:120px;
	background-color:#0093dd;
	opacity:0.85;
	position:absolute;
	top:0;
	left:0;
	z-index:100;
}
.carousel .item-list{
	background-color:#fff;
	position:relative;
	width:373px;
	height:120px;
	z-index:90;
}
.carousel .item{
	width:100%;
	height:100%;
	background-color:#fff;
	text-align:center;
	display:inline-block;
	float:right;
	display:none;
	position:absolute;
	top:0;
	left:0;
	overflow:hidden;
}
.carousel .item img{
	height:100%;
}
.carousel .next-btn{
	width:20px;
	height:20px;
	background:url(../images/carousel-btn.png) right center no-repeat;
	position:absolute;
	right:10px;
	bottom:10px;
	z-index:100;
	cursor:pointer;
}
.carousel .previous-btn{
	width:20px;
	height:20px;
	background:url(../images/carousel-btn.png) left center no-repeat;
	position:absolute;
	right:35px;
	bottom:10px;
	z-index:100;
	cursor:pointer;
}