@charset "utf-8";
/* CSS Document */
#gridContainer {
    background-color:#000;	
    width:1800px;
    height:950px;
    margin: 10px auto 0;
    overflow:hidden;
    overflow-y:scroll;
/*    margin-top:50px;*/
}
.grid {
    background-color:#000;	
    width:1700px;
    height:250px;
    margin: 0 auto;
}

img {
    max-width:100%;
    max-height:100%;
}

.item {
    width: 400px;          	
    height: 300px;
    padding:0px;
    float: left;
    color: #fff;
    cursor: pointer;
}
.item img {
    width: 100%;	
    margin:0 auto;

}

/* https://css-tricks.com/custom-scrollbars-in-webkit/ */
::-webkit-scrollbar {
    width: 40px;      
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 20px;
    background-color: #111;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,1); /*  gives button look, remove for flat look*/
}

::-webkit-scrollbar-thumb {
    border-radius: 20px;
    background-color: #888;
}

.selected img{
    transform: scale(.95);
    border-style: solid;
    border-color: deepskyblue;
    border-width: 5px;
}
.imgClass {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 400px;
    height: 300px;
}
.imgTitle {
    color: #fff;
    display: block;
    position: absolute;
    text-align: center;
    width: 100%;
    height: 25px;
    top: 10px;
    text-shadow: 3px 3px 13px rgba(0, 0, 0, 0.95);
}
