#thumbs2 {
    height:353px; 
    display:inline-block;
    position:relative;
    -webkit-user-select: none;
    user-select:none;
}

#thumbs2 div.inner {
    width:auto;
    height:100%;
    box-sizing:border-box;
    position:relative;
    overflow:hidden;
    margin:0 auto;
	padding-top:11px;
}

 
#thumbs2 div.inner ul {
    
    /*the followings should not be changed */
    position:relative;
    left:0; top:0;
    list-style:none;
    font-size:0;
    padding:0;
    margin:0;
    float:left!important;
    width:auto!important;
    height:auto!important;
}

#thumbs2 ul li {
    display:block;
    border: 4px solid transparent;
    outline:1px solid transparent;
    margin:0;
    margin-bottom:9px; /* Spacing between thumbs*/
    box-sizing:content-box;
    text-align:center;
    padding:5px !important;
    position:relative;
    list-style:none;
    backface-visibility:hidden;
	width:60px !important;
	height:60px !important;
	border:1px #ddd solid;
	border-radius:6px;
}

#thumbs2 ul li.active {
   /*box-shadow:0 0 4px #999;
   border:1px #000 solid !important;*/
}

#thumbs2 li:hover {
}


#thumbs2 .thumb {
    width:60px;
    height:60px;
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center center;
    display:block;
    position:absolute;
    font-size:0;
}

/* --------- navigation controls ------- */
/* The nav id should be: slider id + ("-prev", "-next", and "-pause-play") */

#thumbs2-pause-play {display:none;} /*.pause*/

#thumbs2-prev, #thumbs2-next
{
    position: absolute;
    width:100%;
    height:24px;
    line-height:30px;
    text-align:center;
    margin:0;
    z-index:10;
    cursor:pointer;
    transition:opacity 0.6s;
    *background-color:#ccc;/*IE7 hack*/
    backface-visibility:hidden;
}

#thumbs2-prev {
    top:0px;
	left:0px;
	background: #fff;
    /*border: 1px #ddd solid;
    box-shadow: 0px 2px 2px #ddd;*/
}

#thumbs2-next {
    bottom:-6px;
	left:0px;
	background: #fff;
    /*border: 1px #ddd solid;
    box-shadow:0px 0px 2px 0px #ddd*/
}

#thumbs2-next.disabled, #thumbs2-prev.disabled {
    opacity:0.1;
    cursor:default;
}


/* arrows */
#thumbs2-prev::before, #thumbs2-next::before {
    position:absolute;
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left:-6px;
    border-left: 3px solid #7f7f7f;
    border-top: 3px solid #7f7f7f;
}

#thumbs2-prev::before {
    top:8px;
    -ms-transform:rotate(-45deg);/*IE9*/
    -webkit-transform:rotate(45deg);
    transform: rotate(45deg);
}

#thumbs2-next::before {
    bottom:8px;
    -ms-transform:rotate(135deg);/*IE9*/
    -webkit-transform:rotate(-135deg);
    transform: rotate(-135deg);
}
