/* 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: 0px dotted #333;
    height: 560px;
    margin: 0px;
    padding: 0px;
    text-align: left;
    width: 100%;
}

/* The arrows can of course also be styled to your liking. This is just example styles */
.as-prev-arrow, .as-next-arrow {
    background: url(../demo/img/arrows30.png) no-repeat;
    cursor: pointer;
    filter: alpha(opacity=0);
    height: 30px;
    opacity: 1;
    overflow: hidden;
    position: absolute;
    text-indent: 100%;
    top: 135px;
    white-space: nowrap;
    width: 30px;
    z-index: 11;
}

.as-prev-arrow {
    left: 0;
}
.as-prev-arrow:hover {
	background: url(../demo/img/arrows30_s2.png) no-repeat;
}


.as-next-arrow {
    background-position: -40px 0;
    right: 0;
}
.as-next-arrow:hover {
	background: url(../demo/img/arrows30_s2.png) no-repeat;
    background-position: -40px 0;
}

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


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

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

/* Other styles not related to AnySlider
body {
    background: #fff;
    color: #333;
    font: 12px "Lato", sans-serif;
    margin: 0;
    padding: 0 0 0px;
}
 */
section {
    display: block;
}

.content {
    margin: 0 auto;
    position: relative;
    width: 1240px;
}

h1 {
    font-size: 20px;
    margin: 10px 0;
}

p {
    margin: 10px 0;
}

ul {
    margin: 0;
    padding: 0;
}

.slider-wrapper {
    height: 560px;
    position: relative;
}
