﻿

#main-img
{
    background-color: #F2F2F2;
    padding: 10px;
    max-height: 350px;    
    box-shadow: 0px 25px 19px -18px #545454;
    -webkit-box-shadow: 0px 25px 19px -18px #545454;
    -moz-box-shadow: 0px 25px 19px -18px #545454;
    -o-box-shadow: 0px 25px 19px -18px #545454;
}

#imageContainer
{
    width: 596px;
    margin: 30px auto 10px auto;
    position: relative;
}

#imageContainer:before
{
    content: '';
    width: 30px;
    box-shadow: 20px 0 20px -10px #000000;
    position: absolute;
    top: -10px;
    left: -30px;
    bottom: -10px;
    z-index: 2;
    cursor:pointer;
}

#imageContainer:after
{
    content: '';
    width: 30px;
    box-shadow: -20px 0 20px -10px #000000;
    position: absolute;
    top: -10px;
    right: -30px;
    bottom: -10px;
    z-index: 2;
    cursor:pointer;
}

#imageBox
{
    padding: 10px;
    background-color: rgba(0,0,0,0.2);
    list-style: none;
    white-space: nowrap;    
    overflow-x: scroll;
}

#imageBox li
{
    display: inline-block;
    margin: 0 10px 0 0;
}
#imageBox img
{
    height: 80px;
    cursor: pointer;
    border: 4px solid #FFFFFF;
}


#imageContainer ::-webkit-scrollbar
{
    height: 8px;
    background-color: rgba(100,0,0,0.3);
    border-radius: 5px;
    cursor:pointer;
}
#imageContainer ::-webkit-scrollbar-thumb
{
    background: red;
    cursor:pointer;
}
#imageContainer ::-webkit-scrollbar-thumb:window-inactive
{
    background: #aaa;
    cursor:pointer;
}