/*
        Theme controls how everything looks in Gallery CSS.
*/
.gallery {
    position: relative;
}
.gallery .item {
    overflow: hidden;
}
.gallery .controls {
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 2;
    width: 100%;
    margin-left: -50%;
    text-align: center;
}
.gallery .control-button {
    display: inline-block;
                *zoom: 1;
                *display: inline;
    margin: 0 0.02em;
    font-size: 3em;
    color: #ccc;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    text-decoration: none;
    transition: color 0.1s;
}
.gallery .control-button:hover {
    color: white;
    color: rgba(255, 255, 255, 0.8);
}