/** Back to galleries link */
div#gallery_back {
    text-align:left;
    padding: 16px 0px 8px 18px;
}

div#gallery_back a {
    color: #08adff;
}


#gallery_container_div {
    display: flex;
    align-content: center
}

/** Gallery nav arrows */
a.gallery_left_arrow {
    display: block;
    width: 40px;
    height: 100%;
    background: url(../../images/oa/main/gall_left.gif) no-repeat;
    text-decoration: none;
    background-position: center;
}

a:hover.gallery_left_arrow {
    background: url(../../images/oa/main/gall_left_f2.gif) no-repeat;
    background-position: center;
    background-color: #ffffff30;
}

a.gallery_right_arrow {
    display: block;
    width: 40px;
    height: 100%;
    background: url(../../images/oa/main/gall_right.gif) no-repeat;
    text-decoration: none;
    background-position: center;
}

a:hover.gallery_right_arrow {
    background: url(../../images/oa/main/gall_right_f2.gif) no-repeat;
    background-position: center;
    background-color: #ffffff30;
}


/** Main image display area  */
div.gallery_center_div
{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}
div.image {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;

    width: 300px;
    height: 250px;

    padding: 20px;
    margin: 20px;

    background-color: #a0a0a0;
}

div.image a {
    display: flex;
    justify-content: center;

    flex: 1 1 auto;

    width: 100%;
}

div.image a img {
    align-self: center;
    max-height: 175px;
}

span.gallery_caption {
    width: 100%;
    max-height: 75px;
}

