/* 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: auto;
    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 {
    background: url("../../../img/icon-arrow01.png")no-repeat 0px 0px;
    cursor: pointer;
    filter: alpha(opacity=0);
    height: 180px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    text-indent: 100%;
    top: 30%;
    white-space: nowrap;
    width: 100px;
    z-index: 1;
}
.customer-index .block-content .as-prev-arrow
{
    background: url(../../../css/Images/arrow-khachhang-prev.png)no-repeat 0px 0px;
    cursor: pointer;
    filter: alpha(opacity=0);
    height: 100px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    text-indent: 100%;
    top: 30%;
    white-space: nowrap;
    width: 20px;
    z-index: 1;
}
.customer-index .block-content .as-next-arrow {
    background: url(../../../css/Images/arrow-khachang-next.png)no-repeat 0px 0px;
    cursor: pointer;
    filter: alpha(opacity=0);
    height: 100px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    text-indent: 100%;
    top: 30%;
    white-space: nowrap;
    width: 30px;
    z-index: 1;
}
.as-prev-arrow {
    left: 0px;
}

.as-next-arrow {
    background-position: -101px 0;
    right: 0px;
}

.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 {
    background: url(../demo/img/bullets.png) no-repeat;
    height: 16px;
    display: none;
    margin: 0 1px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    width: 16px;
}

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

/* Other styles not related to AnySlider */