/* 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:#338de3;
	padding:5px 0 5px 0px;
    cursor: pointer;
    position: absolute;
    white-space: nowrap;
    z-index: 10;
	bottom:0; 
    filter: alpha(opacity=1);
    opacity:1;    
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    border-color:transparent;
    border-image: none;
    border-style: solid;
    border-width: 0px 0px 10px 0px; 
	width:30px;
	text-align:center;   
}

.as-prev-arrow {
    right:22.5%;
    border-right-width:0;

}

.as-next-arrow {
    right:19%;
	padding:5px 0px 5px 0px;  
    border-left-width:0;  
}

.as-prev-arrow:hover,
.as-next-arrow:hover {
	color:#fff;
	background-color:#338de3;
    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;
}
