/* 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 {
	font-family: "fontello"; 
/*    background: url(img/arrows.png) no-repeat; */
/*	text-indent: 100%; */
	font-size:20px;
	color:#ffffff;
	border:1px solid #fff;
	padding:5px 12px 5px 9px;
    cursor: pointer;
    position: absolute;
    white-space: nowrap;
    z-index: 10;
	top:48%;
	top: -webkit-calc(50% - 15px); /** Safari 6, Chrome 19-25 **/	
	top:calc(50% - 15px);    
    filter: alpha(opacity=0.5);
    opacity:0.5;    
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.as-prev-arrow {
    left:2%;
}

.as-next-arrow {
    right:2%;
	padding:5px 10px 5px 11px;    
}

.as-prev-arrow:hover,
.as-next-arrow:hover {
	color:#fff;
    filter: alpha(opacity=1);
    opacity: 1;
}

/* The same rules for styling apply here. Style to your liking */
.as-nav {
    bottom: -10px;
    left: 50%;
    margin-left: -27px;
    position: absolute;
    text-align: left;
    width: 54px;
    z-index: 1;
}

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

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