﻿body
{
    margin: 0;
    font-family: proxima-nova, 'Helvetica' , sans-serif;
    font-size: 14px;
}

#page_container
{
    position: relative;
    margin: 0px;
    margin-bottom: 20px;
}

#gallery_container
{
    width: 100%;
    height: 480px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    top: 15px;
    left: 0px;
    background: rgba(0,0,0,.1);
    box-shadow: inset 0px 0px 10px rgba(0,0,0,.3);
    border-bottom: 1px solid rgba(255,255,255,.2);
    border-radius: 4px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}
#gallery_inner
{
    width: 2000px;
    height: 380px;
    clear: both;
    cursor: move;
    left: 50px;
    top: 30px;
}

.gallery_item
{
    float: left;
    margin: 0px;
    padding: 0px;
    position: relative;
}

.gallery_item a
{
    display: block; /* box-shadow: inset 0px 0px 30px rgb(0,0,0); */
}

.gallery_item img
{
    display: block;
    background: #FFF;
    padding: 10px;
    border: 1px solid rgba(0,0,0,.2);
    margin: 10px;
    opacity: 1;
    -webkit-transition: opacity .3s ease-in-out;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,.3);
    cursor: move;
}

.gallery_item img:hover
{
}

.gallery_item a
{
    display: block;
    position: absolute;
    top: 0;
    background: url('/Code/controls/Widgets/Mosaic/images/play_large.png') no-repeat center;
    height: 100%;
    width: 100%;
    color: #FFF;
    text-decoration: none;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s ease-in-out;
}

.gallery_item a:hover
{
    opacity: 1;
}

.gallery_item_desc
{
    position: absolute;
    left: 21px;
    bottom: 20px;
    text-align: center;
    color: #FFF;
    text-decoration: none;
    background: rgba(0,0,0,.4);
    line-height: 2em;
    -webkit-transition: bottom .3s ease-in-out;
}

.gallery_item a:hover .gallery_item_desc
{
}

