body {
background:#fff;
font-family:Arial, sans-serif;
}

p {
margin-bottom:20px;
}

.clearout {
height:20px;
clear:both;
}

#flexiselDemo1, #flexiselDemo2, #flexiselDemo3 {
display:none;
}

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

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .nbs-flexisel-ul {
        width: 700px;
    }
}

.nbs-flexisel-inner {
    position: relative;
    overflow: hidden;
    float:left;
    width:100%;
    height: 125px;
    border-radius:5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;  
}

.nbs-flexisel-item {
    float:left;
    margin:0px;
    padding:0px;
    height: 125px;
    width: 23%;
    cursor:pointer;
    position:relative;
    line-height:0px;
    overflow: hidden;
}
.nbs-flexisel-item img {
    width: 95% !important;
    cursor: pointer;
    position: relative;
}

/*** Navigation ***/

.nbs-flexisel-nav-left,
.nbs-flexisel-nav-right {
    position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        width: 5%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        top: 10px;
        cursor: pointer;
}

.nbs-flexisel-nav-left {
    border-left: 5px solid white;
    left: 0;
}

.nbs-flexisel-nav-right {
    border-right: 5px solid white;
    right: 0;
}

.nbs-flexisel-nav-left {
    background-image: url(../images/arrow_left.png);
    background-repeat: no-repeat;
    background-position: center;
}

.nbs-flexisel-nav-right {
    background-image: url(../images/arrow_right.png);
    background-repeat: no-repeat;
    background-position: center;
}