@charset "utf-8";
/* CSS Document */

.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 {
    overflow: hidden;
    position: absolute;
    text-align: center;
    width: 66px;
    height: 66px;
    line-height: 24px;
    font-size: 16px;
    font-weight: bold;
    padding: 0;
    margin: 40% 0 0 0;
    opacity: 0.33;
    cursor: pointer;
}
.jquery-slider-control:hover {
    opacity: 1;
}
.jquery-slider-control-prev {
/*	background-image:url(../img/index/arrow_left.png);
	background-repeat:no-repeat;
*/    left: 5px;
    top: 5px;
	z-index:9999;
}
.jquery-slider-control-next {
/*	background-image:url(../img/index/arrow_right.png);
	background-repeat:no-repeat;
*/    right: 5px;
    top: 5px;
	z-index:9998;
}
.jquery-slider-pages {
    overflow: visible;
    position: absolute;
    left: 5px;
    bottom: 5px;
    height: 20px;
    right: 5px;
}
.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;
}