@charset "utf-8";
/* CSS Document */

#flexiselDemo1 {
	display:none;
}

.nbs-flexisel-container {
    position:relative;
    max-width:80%;
	float:right; 
}
.nbs-flexisel-ul {
    position:relative;
    width:9999px;
    margin:0px;
    padding:0px;
    list-style-type:none;   
    text-align:center;  
}

.nbs-flexisel-inner {
    overflow:hidden;
    width:90%;
	margin:0 auto;
}

.nbs-flexisel-item {
	float:left;
    margin:0px;
    padding:0px;
    cursor:pointer;
    position:relative;
    line-height:0px;
}
.nbs-flexisel-item img {
    cursor: pointer;
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
    max-width:200px;
   /* max-height:100px;*/
}

/*** Navigation ***/

.nbs-flexisel-nav-left,
.nbs-flexisel-nav-right {
	top:50% !important;
	margin:-24px 0 0 0;
    width: 48px;
    height: 48px; 
    position: absolute;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
	transition:all ease-in .3s;
}

.nbs-flexisel-nav-left {
    left: 0;
	background:url(../img/left-arr.png) no-repeat;
}

.nbs-flexisel-nav-right {
    right: 0;
    background:url(../img/right-arr.png) no-repeat;
}
.nbs-flexisel-container:hover .nbs-flexisel-nav-right, .nbs-flexisel-container:hover .nbs-flexisel-nav-left{
	opacity: 1;
}

@media (max-width: 1024px) {
	.nbs-flexisel-container{ max-width:80%;}
	.nbs-flexisel-inner{ width:100%; float:none !important; margin:0 auto;}
}
@media (max-width: 980px) {
	.nbs-flexisel-container{ max-width:100%; float:none; margin:20px 0 0 0;}
	.nbs-flexisel-inner{ width:80%; float:none !important; margin:0 auto;}
	.nbs-flexisel-item img{ max-width:100%;}
}
@media (max-width: 320px) {
	.nbs-flexisel-inner{ width:60%;}
	.nbs-flexisel-item img{ max-width:100%;}
	.nbs-flexisel-nav-left {
    left: 5px;
}
.nbs-flexisel-nav-right {
    right: 5px;
}
 }