div.gallery
{
    min-width: 840px;
    width: 80%;
    max-width: 1080px;
    height: 700px;
    margin: 30px auto 0 auto;
    position: relative;
}

div.gallery div.gallery-image-nav
{
    width: 100%;
    height: 500px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

div.gallery div.gallery-image-nav div.gallery-nav-left
{
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;

    width: 70px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    background: url('../images/interface/icons/arrow-to-left.png') no-repeat center;
    background-size: 36px auto;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

div.gallery div.gallery-image-nav div.gallery-nav-left:hover
{
    background: rgba(0, 0, 0, 0.05) url('../images/interface/icons/arrow-to-left.png') no-repeat center;
    background-size: 36px auto;
}

div.gallery div.gallery-image-nav div.gallery-nav-left:active
{
    background: rgba(0, 0, 0, 0.1) url('../images/interface/icons/arrow-to-left.png') no-repeat center;
    background-size: 36px auto;
}

div.gallery div.gallery-image-nav div.gallery-nav-right
{
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;

    width: 70px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    background: url('../images/interface/icons/arrow-to-right.png') no-repeat center;
    background-size: 36px auto;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

div.gallery div.gallery-image-nav div.gallery-nav-right:hover
{
    background: rgba(0, 0, 0, 0.05) url('../images/interface/icons/arrow-to-right.png') no-repeat center;
    background-size: 36px auto;
}

div.gallery div.gallery-image-nav div.gallery-nav-right:active
{
    background: rgba(0, 0, 0, 0.1) url('../images/interface/icons/arrow-to-right.png') no-repeat center;
    background-size: 36px auto;
}

div.gallery-image-container
{
    width: 700px;
    height: 500px;
    margin: 0 auto;
    padding-bottom: 25px;
    overflow: hidden;
}

div.gallery-image-container div.gallery-image-array
{
    position: relative;
}

div.gallery-image-container div.gallery-image
{
    display: inline-block;
    width: 700px;
    height: 500px;
    text-align: center;
}

div.gallery-image-container span
{
    display: inline-block;
    position: relative;
    vertical-align: middle;
    z-index: 10;
}

div.gallery-image-container span:before
{
    -webkit-transform: rotate(-5deg);
    -moz-transform: rotate(-5deg);
    -o-transform: rotate(-5deg);
    transform: rotate(-5deg);

    content: '';

    display: block;
    width: 50%;
    height: 20px;
    position: absolute;
    left: 15px;
    bottom: 20px;
    z-index: -1;
    -webkit-box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
    -o-box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
}

div.gallery-image-container span:after
{
    -webkit-transform: rotate(5deg);
    -moz-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg);

    content: '';

    display: block;
    width: 50%;
    height: 20px;
    position: absolute;
    right: 15px;
    bottom: 20px;
    z-index: -1;
    -webkit-box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
    -o-box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
}

div.gallery-image-container span img
{
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
}

div.gallery-thumbs-container
{
    height: 150px;
    overflow: hidden;
}

div.gallery-thumbs-container img
{
    -webkit-transition: all 0.2s ease-out 0s;
    -moz-transition: all 0.2s ease-out 0s;
    -o-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;

    display: inline-block;
    margin-right: 20px;
    cursor: pointer;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    opacity: 0.8
}

div.gallery-thumbs-container img:hover
{
    display: inline-block;
    margin-right: 20px;
    cursor: pointer;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    opacity: 0.6
}

div.gallery-thumbs-container img:active
{
    opacity: 1
}

div.gallery-thumbs-container img.current
{
    cursor: default;
    opacity: 1;
}