.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;
    width: 200px;
    height: 450px;
    padding: 0;
    margin: 0;
    opacity: 1;
    cursor: pointer;
    text-indent: -9999px;
}
.jquery-slider-control-prev {
    left: 0px;
    top: 0px;
    background: url( ../images/slider_arrow_l.png ) 10px 220px no-repeat;
}
.jquery-slider-control-next {
    right: 0px;
    top: 0px;
    background: url( ../images/slider_arrow_r.png ) 155px 220px no-repeat;
}
.jquery-slider-control-prev:hover {
    opacity: 1;
    background: url( ../images/slider_arrow_l_o.png ) 10px 220px no-repeat;
}
.jquery-slider-control-next:hover {
    opacity: 1;
    background: url( ../images/slider_arrow_r_o.png ) 155px 220px no-repeat;
}
.jquery-slider-pages {
    overflow: visible;
    position: absolute;
    left: 5px;
    bottom: 5px;
    height: 20px;
    right: 5px;
    visibility: hidden;
}
.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;
}