.nbs-flexisel-container {
    position:relative;
    max-width:100%;
}
.nbs-flexisel-ul {
    position:relative;
    width:9999px;
    margin:0px;
    padding:0px;
    list-style-type:none;   
    text-align:center;  
}

.nbs-flexisel-inner {
    overflow:hidden;
    width:100%;
}

.nbs-flexisel-item {
    float:left;
    margin:0px;
    padding:0px;
    cursor:pointer;
    position:relative;
    clear: initial !important;
    clear: none !important;
}


/*** Navigation ***/

.nbs-flexisel-nav-left,
.nbs-flexisel-nav-right {
    width: 30px;
    height: 30px; 
    position: absolute;
    cursor: pointer;
    z-index: 100;
    background-color: #333;
    background-repeat: no-repeat;
    background-position: center;
}

.nbs-flexisel-nav-left {
    left: 10px;
    background-image: url(img/button-previous.png);
}

.nbs-flexisel-nav-right {
    right: 5px;
    background-image: url(img/button-next.png);
}


.rtl .nbs-flexisel-nav-left {
    left: auto;
    right: 10px;
    background-image: url(img/button-next.png);
}

.rtl .nbs-flexisel-nav-right {
    right: auto;
    left: 5px;
     background-image: url(img/button-previous.png);
}