.jquery-slider {
    overflow: hidden;
    position: relative;
}
.jquery-slider-element {
    overflow: hidden;
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.jquery-slider-element.current-item {
	z-index: 10;
}
/*.jquery-slider-control {
    overflow: hidden;
    position: absolute;
    text-align: center;
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 16px;
    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: #fff 0 0 1px;
}
.jquery-slider-control:hover {
    opacity: 1;
}
.jquery-slider-control-prev {
    left: 5px;
    top: 5px;
}
.jquery-slider-control-next {
    right: 5px;
    top: 5px;
}*/
.jquery-slider-control {
    overflow: hidden;
    position: absolute;
    width: 36px;
    height: 25px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    opacity: 0.8;
    z-index: 20;
}
.jquery-slider:hover .jquery-slider-control,
.jquery-slider-control:hover {
    opacity: 1;
}
.jquery-slider:hover .jquery-slider-control,
.jquery-slider-control:hover,
.transition {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.jquery-slider-control-prev {
    left: 1px;
    bottom: 1px;
    background: url(../images/left-arrow.png) no-repeat center center;
}
.jquery-slider-control-next {
    right: 1px;
    bottom: 1px;
    background: url(../images/right-arrow.png) no-repeat center center;
}
.jquery-slider-pages {
    overflow: visible;
    position: absolute;
    left: 5px;
    bottom: 5px;
    height: 20px;
    right: 5px;
}
.jquery-slider-page {
    overflow: hidden;
    position: relative;
    display: inline-block;
    padding: 0;
    margin: 0;
	cursor: pointer;
    float: right;
}
.unordered .jquery-slider-page {
	width: 12px;
    height: 12px;
    background: #999;
    border-radius: 6px;
    opacity: 0.33;
    box-shadow: #333 0 0 2px;
    margin: 3px;
}
.ordered .jquery-slider-page {
	color: #FFF;	
	background-color: #000;
	font-size: 10px;
	padding: 4px 5px 2px;
	margin: 3px 2px;
	line-height: 9px;
}
.ordered .jquery-slider-page:nth-child(1) {
	background-color: #BBB;
}
.ordered .jquery-slider-page:nth-child(2) {
	background-color: #AAA;
}
.ordered .jquery-slider-page:nth-child(3) {
	background-color: #999;
}
.ordered .jquery-slider-page:nth-child(4) {
	background-color: #888;
}
.ordered .jquery-slider-page:nth-child(5) {
	background-color: #777;
}
.ordered .jquery-slider-page:nth-child(6) {
	background-color: #666;
}
.ordered .jquery-slider-page:nth-child(7) {
	background-color: #555;
}
.ordered .jquery-slider-page:nth-child(9) {
	background-color: #444;
}
.ordered .jquery-slider-page:nth-child(9) {
	background-color: #333;
}
.ordered .jquery-slider-page:nth-child(10) {
	background-color: #222;
}
.ordered .jquery-slider-page:nth-child(11) {
	background-color: #111;
}
.jquery-slider-page-current,
.jquery-slider-page:hover {
	-webkit-transform: scale(1.3);
	-moz-transform: scale(1.3);
}
.jquery-slider-page-current {
    opacity: 1;
}