.jquery-slider {
    overflow: hidden;
    position: relative;
}
.jquery-slider-element {
    overflow: hidden;
    float:left;
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.jquery-slider-control {
    overflow: hidden;
    position: absolute;
    text-align: center;
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 30px;
    font-weight: bold;
    padding: 0;
    margin: 0;
    /* border: 1px solid #666; */
    /* background: #fff; */
    /* opacity: 0.33; */
    cursor: pointer;
    /* border-radius: 12px; */
    /* box-shadow: #666 0 0 2px; */
    text-shadow: #ccc 0 0 1px;
    color: #e92525;
}
.jquery-slider-control:hover {
    opacity: 0.33;
}
.jquery-slider-control-prev {
	left: 0px;
	bottom: 112px;
	width:44px;
	height:44px;
	text-indent: -9999px;
	background:url('../images/sprite-new-all.png') no-repeat scroll 0 0px transparent;
	/*background:url('../images/arrow-left.png') no-repeat scroll left bottom transparent;*/
}
.jquery-slider-control-next {
	margin-right:0px;
	right: 0px;
	bottom: 112px;
	width:44px;
	height:44px;
	text-indent: -9999px;
	background:url('../images/sprite-new-all.png') no-repeat scroll 0 -94px transparent;
	/*background:url('../images/arrow-right.png') no-repeat scroll left bottom transparent;*/
}

.jquery-slider-pages {
	overflow: visible;
	position: absolute;
	bottom: 0px;
	height: 20px;
	right: 10px;
	width: 160px;
}
.jquery-slider-page {
	overflow: hidden;
	position: relative;
	display: block;
	float: right;
	width: 8px;
	height: 8px;
	padding: 0px;
	background: none repeat scroll 0% 0% #ec2525;
	cursor: pointer;
	opacity: 0.33;
	margin: 0px 5px;
	border-radius: 6px;
}
.jquery-slider-page:hover {
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
}
.jquery-slider-page-current {
    opacity: 1;
}