/*-- slider player --*/
.SlidePlayer {
	width:800px;
	height:285px;
	position:relative;
	overflow: hidden;
}
.SlidePlayer ul {
	position:relative;
	list-style:none;
	margin:0;
	padding:0;
}
.SlidePlayer-List li {
	position:absolute;
	top:0;
	left:0;
}
.SlidePlayer-List li.selected {
	display:block;
}
ul.SlidePlayer-Trigger {
	position:absolute;
	bottom:10px;
	right:20px;
	z-index:11;
}
.SlidePlayer-Trigger li {
	float:left;
	margin:0 0 0 2px;
	width:15px;
	height:15px;
	cursor:pointer;
	font:Arial;
	background-color:#4e9600;
	color:#fff;
	font-size:12px;
	text-align:center;
	line-height:15px;
	border:1px solid #DCDCDC;
}
.SlidePlayer-Trigger li.selected {
	background-color:#fff;
	border:1px solid #e4e4e4;
	color:#000;
	font-size:13px;
	font-weight:bold;
}
.SlidePlayer-List img {
	border:0;
}
