#flexiselDemo1, #flexiselDemo2, #flexiselDemo3 {
display:none;

}

.nbs-flexisel-container {
    position:relative;
    width:100%;	
	margin:0px auto;	
	z-index:1;
}
.nbs-flexisel-ul {
	width:100%;
    position:relative;
    width:9999px;
    margin:0px;
    padding:0px;
    list-style-type:none; 
    
}

.nbs-flexisel-inner {
    overflow:hidden;
    margin:auto;
	float:none;
    width:90%;    
}

.nbs-flexisel-item {
    float:left;
    margin:0px;
    padding:0px;
	box-sizing:border-box;   
}

/*** Navigation ***/

.nbs-flexisel-nav-left,
.nbs-flexisel-nav-right {		
    width: 48px;
    height: 48px; 
    position: absolute;   
    z-index: 100;	  
}

.nbs-flexisel-nav-left {	
    left:0px;
    background: url(../images/button-previous.png) no-repeat center center;
	opacity:0.5;
}
.nbs-flexisel-nav-left:hover {
    left:0px;
    background: url(../images/button-previous.png) no-repeat center center;
	opacity:1;
	cursor:pointer;
}

.nbs-flexisel-nav-right {
    right:0px;
    background: url(../images/button-next.png) no-repeat center center;
	opacity:0.5;
}
.nbs-flexisel-nav-right:hover {
    right:0px;
    background: url(../images/button-next.png) no-repeat center center;
	opacity:1;
	cursor:pointer;
}
@media screen and (max-width:639px) {
.nbs-flexisel-inner {
    overflow:hidden;
    margin:auto;
    width:80%;    
}
}
@media screen and (max-width:479px) {
.nbs-flexisel-inner {
    overflow:hidden;
    margin:auto;
    width:70%;    
}
}