.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: 16px;
    height: 16px;
    line-height: 14px;
    font-size: 12px;
    font-weight: bold;
    padding: 0;
    margin: 0;
    border: 1px solid #666;
    background: #fff;
    opacity: 0.33;
   -ms-filter: "alpha(opacity=33)"; /* ie 8 */
   *filter: alpha(opacity=33); /* ie lt 7 */
    cursor: pointer;

    -moz-border-radius:12px;
    -webkit-border-radius:12px;
     border-radius:12px;

   -moz-box-shadow: #666 0 0 2px; /* Firefox */
   -webkit-box-shadow: #666 0 0 2px; /* Safari and Chrome */
    box-shadow: #666 0 0 2px; /* Opera 10.5+, future browsers and IE6+ using IE-CSS3 */

    text-shadow: #fff 0 0 1px;
}
.jquery-slider-control:hover {
    opacity: 1;
   -ms-filter: "alpha(opacity=100)"; /* ie 8 */
   *filter: alpha(opacity=100); /* ie lt 7 */
}
.jquery-slider-control-prev {
    left: 5px;
    top: 2px;
}
.jquery-slider-control-next {
    right: 5px;
    top: 2px;
}
.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;
   -ms-filter: "alpha(opacity=33)"; /* ie 8 */
   *filter: alpha(opacity=33); /* ie lt 7 */
    margin: 3px;

   -moz-border-radius:6px;
   -webkit-border-radius:6px;
    border-radius: 6px;

   -moz-box-shadow: #333 0 0 2px; /* Firefox */
   -webkit-box-shadow: #333 0 0 2px; /* Safari and Chrome */
    box-shadow: #333 0 0 2px;

}

.jquery-slider-page:hover {
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-o-transform: scale(1.5);
	-ms-transform: scale(1.5);
	transform: scale(1.5);

	/* IE8+ - must be on one line, unfortunately */
	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod='auto expand')";
	/* IE6 and 7 */
	filter: progid:DXImageTransform.Microsoft.Matrix( M11=1.5, M12=0, M21=0, M22=1.5, SizingMethod='auto expand');
}
.jquery-slider-page-current {
    opacity: 1;
   -ms-filter: "alpha(opacity=100)"; /* ie 8 */
   *filter: alpha(opacity=100); /* ie lt 7 */
}