/* 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 {
	height: 500px;
	text-align: center;
	width: 100%;
	min-width: 990px;
}
@media only screen and (max-width:600px) { 
.slider {
	height: 200px;
	text-align: center;
	min-width: 100px;
}
}
.slider  .txt{
	text-align: center;
	margin-top: 250px
}
.slider  .txt span{
	font-size: 60px;
	line-height:60px;
color: #FFF;
    text-shadow: 2px 2px 4px #000000;
}

/* 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=0);
	height: 40px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	text-indent: 100%;
	top: 300px;
	white-space: nowrap;
	width: 40px;
	z-index: 10;
	background-image: url(arrows.png);
	background-repeat: no-repeat;
}
@media only screen and (max-width:600px) { 
.as-next-arrow {
	top: 50px;
}
}
.as-prev-arrow {
    left: 0;
}

.as-next-arrow {
    background-position: -40px 0;
    right: 0;
}

.slider:hover .as-prev-arrow,
.slider:hover .as-next-arrow {
    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 {
	height: 16px;
	display: inline-block;
	margin: 0 1px;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	width: 16px;
	background-image: url(bullets.png);
	background-repeat: no-repeat;
}

.as-nav .as-active,
.as-nav a:hover {
    background-position: 0 -16px;
}

.slider-wrapper {
	height:200px;
}
