
/********
Gallery
*********/

h1 {
    text-transform: none;
}

div.gallery {
    margin-bottom: 0px;
    overflow: hidden;
    position: relative;
    width: auto;
}

.gallery .gallery-stage {
    float: left;
    width: 100%;
}

.gallery .gallery-stage img {
    max-width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.gallery-controls {
    background: none;
    float: left;
    width: 100%;
}

.gallery div.gallery-pages {
    float: none;
    height: 19px;
    margin: 0px;
    clear: left;
}

.gallery div.gallery-pages ul {
    display: block;
    height: 20px;
    padding: 0px;
    margin: 0px;
}

.gallery div.gallery-pages li {
    float: left;
    list-style: none;
    margin-right: 10px;
}

.gallery div.gallery-pages a.selected {
    text-decoration: underline;
}

.gallery ul.gallery-thumbnails {
    float: left;
    width: 100%;
    height: 170px;
    margin: 0px;
    padding: 0px;
}

.gallery .gallery-thumbnails li {
    list-style: none;
    float: left;
    padding: 0px;
    margin: 18px 9px;
}

.gallery .gallery-thumbnails li a img {
    display: block;
    margin: 0;
    opacity: 0.7;
    transition: opacity 0.2s ease, box-shadow 0.2s ease;
    -moz-transition: opacity 0.2s ease, box-shadow 0.2s ease;
    -webkit-transition: opacity 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.gallery .gallery-thumbnails li a img:hover {
    box-shadow: 0px 0px 5px #666;
    -moz-box-shadow: 0px 0px 5px #666;
    -webkit-box-shadow: 0px 0px 5px #666;
    opacity: 1;
}

.gallery div.gallery-caption {
    position: relative;
}

.gallery div.gallery-caption .gallery-caption-content {
    background: rgba(0,0,0,0.4);
    color: white;
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 1005px;
    padding: 5px 65px 5px 20px;
    margin: 0px 0px 5px 0px;
}

.gallery div.gallery-caption a {
    color: white;
    padding: 10px;
    position: absolute;
    bottom: 0;
    right: 0;
}

/* Portrait Smartphones */
@media handheld, only screen and (max-width: 320px)
{
    .gallery .gallery-controls
    {
        height: auto;
    }

    .gallery .gallery-controls ul.gallery-thumbnails
    {
        margin-top: 0px;
    }

    .gallery .gallery-controls ul.gallery-thumbnails li
    {
        height: auto;
    }

    .gallery .gallery-thumbnails li a img
    {
    }
}



