@charset "utf-8";
/* CSS Document */
.wrapper {
	/*position: absolute;*/
	padding: 5px;
}
.list_carousel {
	margin: 0 25px 0px 25px;
}
.list_carousel ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: block;
}
.list_carousel li {
	width: 50px;
	height: 50px;
	margin: 3px;
	display: block;
	float: left;
}
#prev, #next {
	background: transparent url('carousel_nav.png') no-repeat 0 0;
	display: block;
	width: 19px;
	height: 20px;
	margin-top: -10px;
	position: absolute;
	top:50%;
	cursor:pointer;
}
#prev {
	background-position: 0 0;
	left: 10%;
}
#next {
	background-position: -19px 0;
	right: 10%;
}
#prev:hover {
	background-position: 0 -20px;
}
#next:hover {
	background-position: -19px -20px;
}
#prev.disabled, #next.disabled {
	display: none !important;
}