/* 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+ */
}

/* The arrows can of course also be styled to your liking. This is just example styles */
.as-prev-arrow, .as-next-arrow {
    background:none;
    cursor: pointer;
    height: 40px;
    overflow: hidden;
    position: absolute;
    text-indent: 100%;
    top:50%;
	margin-top:-20px;
    white-space: nowrap;
    width: 40px;
    z-index: 3;
	display:none;
}

.as-prev-arrow {
    left: 0;
	display:none;
}

.as-next-arrow {
    background-position: -40px 0;
    right: 0;
	display:none;
}

.slider:hover .as-prev-arrow{
    background: url(../images/arrows.png) no-repeat;
	left: 0;
	display:none;
}

.slider:hover .as-next-arrow {
    background: url(../images/arrows.png) no-repeat;
    background-position: -40px 0;
    right: 0;
	display:none;
}

/* The same rules for styling apply here. Style to your liking */
.slider-wrapper1 .as-nav{
	top:85%;
    left:60px;
	margin-top:-11px;
    position: absolute;
    z-index: 3;
}

.slider-wrapper2 .as-nav{
	right:10px;
    bottom:10px;
    position: absolute;
    z-index: 3;
}

.as-nav a {
    background: url(../images/bullets.png) no-repeat;
    height: 22px;
    display: inline-block;
    margin: 0 3px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    width: 22px;
}

a.as-active, .as-nav a:hover {
    background-position: 0 -22px;
}

/* Other styles not related to AnySlider */

.slider-wrapper1, .slider-wrapper2{
    position: relative;
}