/* Bare minimum styles */
.slider {
    -ms-touch-action: pan-y; /* Prevent default touch actions on Windows 8. Only required for IE10 */
    overflow: auto; /* Not required but recommended for accessibility when JavaScript is turned off */
    position: relative;
    touch-action: pan-y; /* Prevent default touch actions on Windows 8. Supported in IE11+ */
}

/* AnySlider can be styled to your liking. This is just example styles */
.slider {
    border: 1px dotted #333;
    height: 250px;
    margin: 40px auto;
    padding: 5px;
    text-align: center;
    width: 100%;
}

/* The arrows can of course also be styled to your liking. This is just example styles */
.as-prev-arrow, .as-next-arrow {
    cursor: pointer;
    filter: alpha(opacity=.5);
	opacity: .5;
    height: 65px;
    overflow: hidden;
    position: absolute;
    text-indent: 100%;
    top: 95px;
    white-space: nowrap;
    width: 29px;
    z-index: 555;
	top:220px;
}

.as-prev-arrow {
	background:url(prev.png) no-repeat 0 0;
    left: 0;
	
}

.as-next-arrow {
	background:url(next.png) no-repeat;
    right: 0;
}

.slider1:hover .as-prev-arrow, 
.slider1:hover .as-next-arrow {
    filter: alpha(opacity=1);
    opacity: 1;
}
.as-nav {
    bottom: 10px;
    left: 50%;
    margin-left: -27px;
    position: absolute;
    text-align: left;
    width: 110px;
    z-index:5 !important;
 }

.as-nav a {
    background:url(bullets.png) no-repeat 0 0;
    height: 16px;
    display: inline-block;
    margin: 0 1px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    width: 16px;
}

a.as-active, .as-nav a:hover {
    background-position: 0 -16px;
}
.slider-wrapper {
    height: 275px;
    position: relative;
}
