.list_carousel{
	position: relative;
	top:-9px;
	top: -12px;
	left: 30px;
	width: 640px;
	height: 480px;
	cursor: pointer;
	border:1px solid rgba(148, 134, 86, .9);
	border-radius: 3px;
	margin-bottom: 30px;
}

.list_carousel ul{
	margin: 0;
	padding: 0;
	list-style: none;
	display: block;
}

.list_carousel li{
	float: left;
	display: block;
	width: 640px;
	height: 480px;
	overflow: hidden;
}

.list_carousel li img{
	text-align: center;
	border-radius: 2px;
	float: left;
}

.btn_left{
	position: absolute;
	left: -32px;
	top: 210px;
}

.btn_right{
	position: absolute;
	right: -32px;
	top: 210px;
}

.prev {
	width: 30px;
	height: 52px;
	display: block;
	text-indent: -9999px;
	background: url("../_img/btn_slider_left.png") top no-repeat;
	opacity: .5;
	-o-transition: background 0.2s ease-out;
	-moz-transition: background 0.2s ease-out;
	-webkit-transition: background 0.2s ease-out;
	transition: background 0.2s ease-out;
}

.prev:hover {
	background: url("../_img/btn_slider_left_h.png") top no-repeat;
	opacity: 1 !important;
}

.next {
	width: 30px;
	height: 52px;
	display: block;
	text-indent: -9999px;
	background: url("../_img/btn_slider_right.png") top no-repeat;
	opacity: .5;
	-o-transition: background 0.2s ease-out;
	-moz-transition: background 0.2s ease-out;
	-webkit-transition: background 0.2s ease-out;
	transition: background 0.2s ease-out;
}

.next:hover {
	background: url("../_img/btn_slider_right_h.png") top no-repeat;
	opacity: 1 !important;
}

.pager {
	width: 120px;
	overflow: hidden;
	text-align: center;
	margin: 9px auto;
}

.pager a {
	text-decoration: none;
	width: 12px;
	height: 12px;
	display: block;
	float: left;
	text-indent: -9999px;
	background: #e8e2d7;
 	border-radius:60px;
 	margin: 0 1.5px;
 	-webkit-box-shadow: inset 1px 1px 1px #b3a284;
	box-shadow: inset 1px 1px 1px #b3a284;
}

.pager a.selected {
	background:#c0b094; 
	box-shadow: inset 1px 1px 1px #594d39;
	-webkit-box-shadow: inset 1px 1px 2px #594d39;
}

@media print{
	.list_carousel{
		width: 320px !important;
		height: 240px !important;
	}
	
	.pager, .prev, .next {
		display: none !important;
	}
}
}