/* Bare minimum styles */
#slider {
	-ms-touch-action: none; /* 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: none; /* 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 */

.slider-bg {
    display: block;
    width: 100%;
    background: #fff;
    padding: 0;
    margin-top: 0px;
    padding-bottom: 20px;
    position: relative;
    height: 400px;
}

.as-nav {
	bottom: 0px;
	left: 50%;
	margin-left: -200px;
	position: absolute;
	text-align: center;
	width: 400px;
	z-index: 1;
}

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

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

.as-arrow-container {
    width: 960px;
    height: 1px;
    position: relative;
    margin: 0 auto;
}

.as-arrow-container {
    display: none;
}

#slider:hover .as-arrow-container {
    display: block;
}

.as-arrow-container span {
    display: none;
}

.as-prev-arrow,
.as-next-arrow {
    width: 40px;
    height: 400px;
    display: block;
}

.as-prev-arrow {
    position: absolute;
    top: 0;
    left: -40px;
}

.as-next-arrow {
    position: absolute;
    top: 0;
    right: -40px;
}



.as-prev-arrow-icon ,
.as-next-arrow-icon {
    width: 40px;
    height: 40px;
    display: block;
    background: red;
    margin-top: 180px;
    background: url(/css/banner/arrows.png) left top no-repeat;
}

.as-next-arrow-icon {
    background-position: left bottom;
}

.as-prev-arrow:hover,
.as-next-arrow:hover {
    opacity: 0.7;
}