/** base carousel **/
.carousel ul {
	position:absolute;
	overflow:hidden;
	margin:20px 0 0 0;
	padding:0;
	list-style:none;
}

.no-js .carousel ul {position:static;}

.carousel .mask {
	position:relative;
	overflow:hidden;
	border-top: 8px solid #f2f1f1;	
	border-bottom: none;
}

.carousel ul li {
	background-image: none;
	float:left;
	width:161px;
	height:67px;
	list-style:none;
	padding: 0;
	margin: 0 35px;
}

.carousel .pagination-links {
	list-style:none;
	margin:0;
	padding:0;
}

.carousel .pagination-links li {
	display:inline;
	background-image: none;
}

.carousel .thumbs a {
	padding:0 6px;
}

.carousel .thumbs a:hover {text-decoration:none;}

.carousel .thumbs a.current {
	background:#d9d9d9;
	color:#fff;
}

.carousel .disabled {
	color:gray;
	cursor:default;
}

/** my carousel 2 **/
#carousel .mask {
	width:auto;
}

#carousel a.prev, #carousel a.next {
	position: absolute;	
	display: inline-block;
	width: 14px;
	height: 30px;
}

#carousel a.prev:hover, #carousel a.next:hover {
	text-decoration: none;
}

#carousel a.prev {
	background-image: url('../images/arr_prev.png');
	background-repeat: no-repeat;
	background-position: center center;
	left:-webkit-calc(50% - 580px);
	left:-moz-calc(50% - 580px);
	left:calc(50% - 580px);
	top: 100px;
}

#carousel a.next {
	right:-webkit-calc(50% - 580px);
	right:-moz-calc(50% - 580px);
	right:calc(50% - 580px);
	background-image: url('../images/arr_next.png');
	background-repeat: no-repeat;
	background-position: center center;	
	top: 100px;
}
