
.clearout { height:20px; clear:both;}


.nbs-flexisel-container {
    position:relative;
    max-width:100%;
	float:left;
}
.nbs-flexisel-ul {
    position:relative;
    width:9999px;
    margin:0px;
    padding:20px 0;
    list-style-type:none;   
    text-align:center;
	float:left;
}

.nbs-flexisel-inner {
    overflow:hidden;
    float:left;
    width:100%;
}

.nbs-flexisel-item {
    float:left;
    margin:0px;
    padding:0;
    position:relative;
}
.nbs-flexisel-item img {
    max-width: 100%;
    cursor: pointer;
    position: relative;
	padding:0 10px;
}

/*** Navigation ***/

.nbs-flexisel-nav-left,
.nbs-flexisel-nav-right {
    width:50px;
    height:50px; 
    position: absolute;
    cursor: pointer;
    z-index: 100;
    opacity: 0.7;
}

.nbs-flexisel-nav-left {
    left:-5px;
    background: url(../imgs/button-previous.jpg) no-repeat;
	transition:all 0.5s ease-in-out;
}
.nbs-flexisel-nav-left:hover {
    left:-20px;
    background: url(../imgs/button-previous.jpg) no-repeat;
	opacity: 1;
	transition:all 0.5s ease-in-out;
}


.nbs-flexisel-nav-right {
    right:-5px;
    background: url(../imgs/button-next.jpg) no-repeat;
	transition:all 0.5s ease-in-out;
}
.nbs-flexisel-nav-right:hover {
    right:-20px;
    background: url(../imgs/button-next.jpg) no-repeat;
	opacity: 1;
	transition:all 0.5s ease-in-out;
}

@media (max-width:768px) {
	.nbs-flexisel-nav-left,
.nbs-flexisel-nav-right {
    width:30px;
    height:30px; 
    opacity: 0.7;
}
.nbs-flexisel-nav-left { left:15px; background-size:100%;}
.nbs-flexisel-nav-left:hover { left:0px; background-size:100%;}


.nbs-flexisel-nav-right { right:15px; background-size:100%;}
.nbs-flexisel-nav-right:hover { right:0px;; background-size:100%;}
	
	
}