div.video
{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 853px;
    height: 480px;
}

/*image gallery*/
div.gallery_row
{
    margin:2px;    
    text-align:center;
    
    //background-color:green;
    max-width: 100%;
}

div.gallery_row a.galleryItem
{
    display:inline-block;
    margin:10px;
    height:216px;
    width:384px;
    max-width: 80%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    border:3px solid #191919;
    
    border-radius:4px;
    -moz-border-radius:4px; /* Firefox 3.6 and earlier */
    
    cursor:pointer;
    
    /*Compatibility hacks*/
    zoom: 1;
    *display: inline;
    _height: 150px;
    
    box-shadow: 0px 4px 4px black; 
    -moz-box-shadow: 0px 4px 4px black;
    background-color: #191919;
}

div.gallery_row a:hover
{
    background-color: #3f3f3f;
    border-color: #3f3f3f;
}

div.gallery_row_desc
{
    width:100%;
    text-align: center;
}

div.gallery_item_desc
{
    display:inline-block;
    text-align:center;
    font-weight:normal;
    width:200px;
    margin:0px auto;
    
    max-width: 100%;
    
    /*Compatibility hacks*/
    display:-moz-inline-stack;
    zoom: 1;
    *display: inline;
}