﻿/* page layout */


footer {
    background-color: #212121;
    bottom: 0;
    box-shadow: 0 -1px 2px #111111;
    -moz-box-shadow: 0 -1px 2px #111111;
    -webkit-box-shadow: 0 -1px 2px #111111;
    display: block;
    height: 70px;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 100;
}

    footer h2 {
        font-size: 22px;
        font-weight: normal;
        left: 50%;
        margin-left: -400px;
        padding: 22px 0;
        position: absolute;
        width: 540px;
    }

    footer a.stuts, a.stuts:visited {
        border: none;
        text-decoration: none;
        color: #fcfcfc;
        font-size: 14px;
        left: 50%;
        line-height: 31px;
        margin: 23px 0 0 110px;
        position: absolute;
        top: 0;
    }

    footer .stuts span {
        font-size: 22px;
        font-weight: bold;
        margin-left: 5px;
    }

.container {
    background: #ddd;
    margin: 20px auto;
    padding: 20px;
    position: relative;
    width: 610px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    box-shadow: 1px 1px 5px #111;
    -moz-box-shadow: 1px 1px 5px #111;
    -webkit-box-shadow: 1px 1px 5px #111;
}
/* css3 photo gallery styles */
.gallery {
    width: 610px;
    margin: 0 auto;
}

    .gallery a {
        display: inline-block;
        height: 150px;
        position: relative;
        width: 200px;
    }

        .gallery a img {
            border: 5px solid #fff;
            cursor: pointer;
            display: block;
            height: 100%;
            left: 0px;
            position: absolute;
            top: 0px;
            width: 100%;
            z-index: 1;
            -moz-user-select: none;
            -khtml-user-select: none;
            user-select: none;
            -moz-box-sizing: border-box;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            -webkit-transition-property: width, height, top, bottom, left, right, z-index, border;
            -webkit-transition-duration: 0.5s;
            -moz-transition-property: width, height, top, bottom, left, right, z-index, border;
            -moz-transition-duration: 0.5s;
            -o-transition-property: width, height, top, bottom, left, right, z-index, border;
            -o-transition-duration: 0.5s;
            transition-property: width, height, top, bottom, left, right, z-index, border;
            transition-duration: 0.5s;
        }

        .gallery a:focus img {
            width: 400%;
            height: 400%;
            position: absolute;
            top: 0;
            z-index: 4000;
            background: rgba(0,0,0,0); /* Fixes an IE bug */
            left: 0;
        }
    /* extra close layer */
    .gallery .close {
        background: transparent;
        cursor: pointer;
        display: none;
        height: 352px;
        left: 170px;
        position: absolute;
        top: 160px;
        width: 500px;
        z-index: 30;
    }

    .gallery a:focus ~ .close {
        display: block;
    }
