#gallery_img,
#gallery_nav
{
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
}

#gallery_img img
{
    background-color: #000000;
    border: 0 none;
    float: left;
    height: 100%;
    margin: 0px;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    width: 100%;
}

#gallery_nav
{
    height: 30px;
}

#gallery_nav a
{
    background-position: 0px 0px;
    background-repeat: no-repeat;
    border: 0px none;
    bottom: 0px;
    color: #B5B5B5;
    display: block;
    float: left;
    font-size: 1.5em;
    height: 30px;
    line-height: 30px;
    margin: 0px 5px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.8);
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    width: 30px;
}

#gallery_nav a:active,
#gallery_nav a:hover
{
    color: #7F7F7F;
}

#gallery_nav a:last-child
{
    float: right;
}

#gallery_nav span
{
    display: none;
}

#gallery_overlay,
#gallery_popup
{
    display: block;
    left: 0px;
    opacity: 0;
    position: fixed;
    top: 0px;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    z-index: -1;
}

#gallery_overlay
{
    background-color: #000000;
    height: 100%;
    margin: 0px;
    width: 100%;
}

#gallery_overlay.active
{
    opacity: 0.7;
    z-index: 10;
}

#gallery_popup
{
    background-color: #FFFFFF;
    border-radius: 5px;
    box-shadow: 3px 3px 4px #000000;
    margin: 0px;
    overflow: hidden;
}

#gallery_popup.active
{
    opacity: 1.0;
    z-index: 15;
}

