.jquery-slider {
    overflow: hidden;
    position: relative;
}
.jquery-slider-element {
    overflow: hidden;
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.jquery-slider-control {
	width:35px;
	height:32px;
    overflow: hidden;
    position: absolute;
    padding: 0;
    margin: -32px 0px 0px 0px;
    cursor: pointer;
	text-indent:-999px;
}
.jquery-slider-control:hover {
	background-color: #666666;
	opacity:0.9;
}
.jquery-slider-control-prev {
	left: 0px;
	top: 50%;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(/e/calendar/common/img/btn_thum_left.png);
}
.jquery-slider-control-next {
    right: 0px;
    top: 50%;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url(/e/calendar/common/img/btn_thum_right.png);
}
.jquery-slider-pages {
	display:none;
}
.jquery-slider-page {
    overflow: hidden;
    position: relative;
    display: block;
    float: right;
    width: 12px;
    height: 12px;
    padding: 0;
    margin: 0;
    background: #999;
	cursor: pointer;
    opacity: 0.33;
    margin: 3px;
    border-radius: 6px;
    box-shadow: #333 0 0 2px;
}
.jquery-slider-page:hover {
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
}
.jquery-slider-page-current {
    opacity: 1;
}


