
.thumbelina {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    white-space: nowrap;
    font-size: 0;
    
    /* prevent annoying iPad cut/paste actions */
    -webkit-touch-callout: none; 
    -webkit-user-select: none;     
}

/* Style for the list items that surround the thumbnails */
.thumbelina li {
   padding: 0 3px;
   line-height: 0;
   margin: 0;
}

/* Add a border to the thumbnails. */
.thumbelina li img {
    /* border: 1px solid #ccc;*/
    height: 200px;
}

/* Hover effect for the images */
.thumbelina li img:hover {
     /*border: 1px solid #aaa;*/
}


/* Common style for the buttons */
.thumbelina-but {
    position: absolute;
    background-color: rgba(32, 30, 14, 0.68);
    box-shadow: 0 0 8px rgba(0,0,0,0.25);
    z-index: 1;
    cursor: pointer;
    
    /* Font related items for the symbols used on buttons */
    /* Obviously not needed if you're just using images */
    color: #bebebe;
    text-align: center;
    vertical-align: middle;
    font-size: 30px;
    font-weight: bold;
    font-family: monospace;
}

/* Hover style for active button */    
.thumbelina-but:hover {
    color: #fff;
    box-shadow: 0 0 8px rgba(0,0,0,0.5);
}

/* Disabled style when button is not active due to extents being reached. */
/* You could do other things e.g. make buttons dissapear completely. */
.thumbelina-but.disabled,
.thumbelina-but.disabled:hover {
    background-color: rgba(255, 255, 255, 0.4);
    color: #ccc;
    cursor: default;
    box-shadow: none;
}

/* Horizontal buttons. */
.thumbelina-but.horiz {
    width: 40px;
    height: 200px;
    line-height: 200px;
    top: 0;

}
/* Left edge button. */
.thumbelina-but.horiz.left {
    left: 0;
}
/* Right edge button */
.thumbelina-but.horiz.right {
    right: 0;
}

/* Vertical buttons. */  
.thumbelina-but.vert {
    left: -1px;
    height: 20px;
    line-height: 20px;
    width: 93px
}

/* Top edge button. */
.thumbelina-but.vert.top {
    top: -22px;
    border-radius: 5px 5px 0 0;
}

/* Bottom edge button. */
.thumbelina-but.vert.bottom {
    bottom: -22px;
    border-radius: 0 0 5px 5px;
}

 #slider1 {
    position: relative;
    width: 100%;
    height: 200px;
}

#slider2 {
    position: relative;
    margin-left: 20px;
    width: 75%;
    height: 120px;
    border-top: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
}

#slider3 {
    position: relative;
    margin-top: 40px;
    width: 93px;
    height: 256px;
    border-left: 1px solid #aaa;
    border-right: 1px solid #aaa;
    margin-bottom: 40px;
}

.sliderS{
    position: relative;
    width: 100%;
    height: 200px;
    margin: 20px 0;
}