@charset 'UTF-8';
/*!
 * animsition v4.0.1
 * A simple and easy jQuery plugin for CSS animated page transitions.
 * http://blivesta.github.io/animsition
 * License : MIT
 * Author : blivesta (http://blivesta.com/)
 */
@import url(https://fonts.googleapis.com/css?family=Josefin+Slab:600);
@import url(https://fonts.googleapis.com/css?family=Noto+Serif);
.animsition,
.animsition-overlay
{
    position: relative;

    opacity: 0;

    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
}

/**
 * overlay option
 */
.animsition-overlay-slide
{
    position: fixed;
    z-index: 1;

    width: 100%;
    height: 100%;

    background-color: #ddd;
}

/* loading option */
.animsition-loading,
.animsition-loading:after
{
    position: fixed;
    z-index: 100;
    top: 50%;
    left: 50%;

    width: 32px;
    height: 32px;
    margin-top: -16px;
    margin-left: -16px;

    border-radius: 50%;
}

.animsition-loading
{
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-animation-name: animsition-loading;
            animation-name: animsition-loading;
    -webkit-animation-duration: .8s;
            animation-duration: .8s;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;

    border-top: 5px solid rgba(0, 0, 0, .2);
    border-right: 5px solid rgba(0, 0, 0, .2);
    border-bottom: 5px solid rgba(0, 0, 0, .2);
    border-left: 5px solid #eee;
    background-color: transparent;
}

@-webkit-keyframes animsition-loading
{
    0%
    {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100%
    {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
@keyframes animsition-loading
{
    0%
    {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    100%
    {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}
@-webkit-keyframes fade-in
{
    0%
    {
        opacity: 0;
    }
    100%
    {
        opacity: 1;
    }
}
@keyframes fade-in
{
    0%
    {
        opacity: 0;
    }
    100%
    {
        opacity: 1;
    }
}
.fade-in
{
    -webkit-animation-name: fade-in;
            animation-name: fade-in;
}

@-webkit-keyframes fade-out
{
    0%
    {
        opacity: 1;
    }
    100%
    {
        opacity: 0;
    }
}
@keyframes fade-out
{
    0%
    {
        opacity: 1;
    }
    100%
    {
        opacity: 0;
    }
}
.fade-out
{
    -webkit-animation-name: fade-out;
            animation-name: fade-out;
}

@-webkit-keyframes fade-in-up
{
    0%
    {
        -webkit-transform: translateY(500px);
                transform: translateY(500px);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
}
@keyframes fade-in-up
{
    0%
    {
        -webkit-transform: translateY(500px);
                transform: translateY(500px);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
}
.fade-in-up
{
    -webkit-animation-name: fade-in-up;
            animation-name: fade-in-up;
}

@-webkit-keyframes fade-out-up
{
    0%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: translateY(-500px);
                transform: translateY(-500px);

        opacity: 0;
    }
}
@keyframes fade-out-up
{
    0%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: translateY(-500px);
                transform: translateY(-500px);

        opacity: 0;
    }
}
.fade-out-up
{
    -webkit-animation-name: fade-out-up;
            animation-name: fade-out-up;
}

@-webkit-keyframes fade-in-up-sm
{
    0%
    {
        -webkit-transform: translateY(100px);
                transform: translateY(100px);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
}
@keyframes fade-in-up-sm
{
    0%
    {
        -webkit-transform: translateY(100px);
                transform: translateY(100px);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
}
.fade-in-up-sm
{
    -webkit-animation-name: fade-in-up-sm;
            animation-name: fade-in-up-sm;
}

@-webkit-keyframes fade-out-up-sm
{
    0%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: translateY(-100px);
                transform: translateY(-100px);

        opacity: 0;
    }
}
@keyframes fade-out-up-sm
{
    0%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: translateY(-100px);
                transform: translateY(-100px);

        opacity: 0;
    }
}
.fade-out-up-sm
{
    -webkit-animation-name: fade-out-up-sm;
            animation-name: fade-out-up-sm;
}

@-webkit-keyframes fade-in-up-lg
{
    0%
    {
        -webkit-transform: translateY(1000px);
                transform: translateY(1000px);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
}
@keyframes fade-in-up-lg
{
    0%
    {
        -webkit-transform: translateY(1000px);
                transform: translateY(1000px);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
}
.fade-in-up-lg
{
    -webkit-animation-name: fade-in-up-lg;
            animation-name: fade-in-up-lg;
}

@-webkit-keyframes fade-out-up-lg
{
    0%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: translateY(-1000px);
                transform: translateY(-1000px);

        opacity: 0;
    }
}
@keyframes fade-out-up-lg
{
    0%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: translateY(-1000px);
                transform: translateY(-1000px);

        opacity: 0;
    }
}
.fade-out-up-lg
{
    -webkit-animation-name: fade-out-up-lg;
            animation-name: fade-out-up-lg;
}

@-webkit-keyframes fade-in-down
{
    0%
    {
        -webkit-transform: translateY(-500px);
                transform: translateY(-500px);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
}
@keyframes fade-in-down
{
    0%
    {
        -webkit-transform: translateY(-500px);
                transform: translateY(-500px);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
}
.fade-in-down
{
    -webkit-animation-name: fade-in-down;
            animation-name: fade-in-down;
}

@-webkit-keyframes fade-out-down
{
    0%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: translateY(500px);
                transform: translateY(500px);

        opacity: 0;
    }
}
@keyframes fade-out-down
{
    0%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: translateY(500px);
                transform: translateY(500px);

        opacity: 0;
    }
}
.fade-out-down
{
    -webkit-animation-name: fade-out-down;
            animation-name: fade-out-down;
}

@-webkit-keyframes fade-in-down-sm
{
    0%
    {
        -webkit-transform: translateY(-100px);
                transform: translateY(-100px);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
}
@keyframes fade-in-down-sm
{
    0%
    {
        -webkit-transform: translateY(-100px);
                transform: translateY(-100px);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
}
.fade-in-down-sm
{
    -webkit-animation-name: fade-in-down-sm;
            animation-name: fade-in-down-sm;
}

@-webkit-keyframes fade-out-down-sm
{
    0%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: translateY(100px);
                transform: translateY(100px);

        opacity: 0;
    }
}
@keyframes fade-out-down-sm
{
    0%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: translateY(100px);
                transform: translateY(100px);

        opacity: 0;
    }
}
.fade-out-down-sm
{
    -webkit-animation-name: fade-out-down-sm;
            animation-name: fade-out-down-sm;
}

@-webkit-keyframes fade-in-down-lg
{
    0%
    {
        -webkit-transform: translateY(-1000px);
                transform: translateY(-1000px);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
}
@keyframes fade-in-down-lg
{
    0%
    {
        -webkit-transform: translateY(-1000px);
                transform: translateY(-1000px);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
}
.fade-in-down-lg
{
    -webkit-animation-name: fade-in-down;
            animation-name: fade-in-down;
}

@-webkit-keyframes fade-out-down-lg
{
    0%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: translateY(1000px);
                transform: translateY(1000px);

        opacity: 0;
    }
}
@keyframes fade-out-down-lg
{
    0%
    {
        -webkit-transform: translateY(0);
                transform: translateY(0);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: translateY(1000px);
                transform: translateY(1000px);

        opacity: 0;
    }
}
.fade-out-down-lg
{
    -webkit-animation-name: fade-out-down-lg;
            animation-name: fade-out-down-lg;
}

@-webkit-keyframes fade-in-left
{
    0%
    {
        -webkit-transform: translateX(-500px);
                transform: translateX(-500px);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
}
@keyframes fade-in-left
{
    0%
    {
        -webkit-transform: translateX(-500px);
                transform: translateX(-500px);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
}
.fade-in-left
{
    -webkit-animation-name: fade-in-left;
            animation-name: fade-in-left;
}

@-webkit-keyframes fade-out-left
{
    0%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: translateX(-500px);
                transform: translateX(-500px);

        opacity: 0;
    }
}
@keyframes fade-out-left
{
    0%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: translateX(-500px);
                transform: translateX(-500px);

        opacity: 0;
    }
}
.fade-out-left
{
    -webkit-animation-name: fade-out-left;
            animation-name: fade-out-left;
}

@-webkit-keyframes fade-in-left-sm
{
    0%
    {
        -webkit-transform: translateX(-100px);
                transform: translateX(-100px);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
}
@keyframes fade-in-left-sm
{
    0%
    {
        -webkit-transform: translateX(-100px);
                transform: translateX(-100px);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
}
.fade-in-left-sm
{
    -webkit-animation-name: fade-in-left-sm;
            animation-name: fade-in-left-sm;
}

@-webkit-keyframes fade-out-left-sm
{
    0%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: translateX(-100px);
                transform: translateX(-100px);

        opacity: 0;
    }
}
@keyframes fade-out-left-sm
{
    0%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: translateX(-100px);
                transform: translateX(-100px);

        opacity: 0;
    }
}
.fade-out-left-sm
{
    -webkit-animation-name: fade-out-left-sm;
            animation-name: fade-out-left-sm;
}

@-webkit-keyframes fade-in-left-lg
{
    0%
    {
        -webkit-transform: translateX(-1500px);
                transform: translateX(-1500px);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
}
@keyframes fade-in-left-lg
{
    0%
    {
        -webkit-transform: translateX(-1500px);
                transform: translateX(-1500px);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
}
.fade-in-left-lg
{
    -webkit-animation-name: fade-in-left-lg;
            animation-name: fade-in-left-lg;
}

@-webkit-keyframes fade-out-left-lg
{
    0%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: translateX(-1500px);
                transform: translateX(-1500px);

        opacity: 0;
    }
}
@keyframes fade-out-left-lg
{
    0%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: translateX(-1500px);
                transform: translateX(-1500px);

        opacity: 0;
    }
}
.fade-out-left-lg
{
    -webkit-animation-name: fade-out-left-lg;
            animation-name: fade-out-left-lg;
}

@-webkit-keyframes fade-in-right
{
    0%
    {
        -webkit-transform: translateX(500px);
                transform: translateX(500px);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
}
@keyframes fade-in-right
{
    0%
    {
        -webkit-transform: translateX(500px);
                transform: translateX(500px);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
}
.fade-in-right
{
    -webkit-animation-name: fade-in-right;
            animation-name: fade-in-right;
}

@-webkit-keyframes fade-out-right
{
    0%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: translateX(500px);
                transform: translateX(500px);

        opacity: 0;
    }
}
@keyframes fade-out-right
{
    0%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: translateX(500px);
                transform: translateX(500px);

        opacity: 0;
    }
}
.fade-out-right
{
    -webkit-animation-name: fade-out-right;
            animation-name: fade-out-right;
}

@-webkit-keyframes fade-in-right-sm
{
    0%
    {
        -webkit-transform: translateX(100px);
                transform: translateX(100px);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
}
@keyframes fade-in-right-sm
{
    0%
    {
        -webkit-transform: translateX(100px);
                transform: translateX(100px);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
}
.fade-in-right-sm
{
    -webkit-animation-name: fade-in-right-sm;
            animation-name: fade-in-right-sm;
}

@-webkit-keyframes fade-out-right-sm
{
    0%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: translateX(100px);
                transform: translateX(100px);

        opacity: 0;
    }
}
@keyframes fade-out-right-sm
{
    0%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: translateX(100px);
                transform: translateX(100px);

        opacity: 0;
    }
}
.fade-out-right-sm
{
    -webkit-animation-name: fade-out-right-sm;
            animation-name: fade-out-right-sm;
}

@-webkit-keyframes fade-in-right-lg
{
    0%
    {
        -webkit-transform: translateX(1500px);
                transform: translateX(1500px);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
}
@keyframes fade-in-right-lg
{
    0%
    {
        -webkit-transform: translateX(1500px);
                transform: translateX(1500px);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
}
.fade-in-right-lg
{
    -webkit-animation-name: fade-in-right-lg;
            animation-name: fade-in-right-lg;
}

@-webkit-keyframes fade-out-right-lg
{
    0%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: translateX(1500px);
                transform: translateX(1500px);

        opacity: 0;
    }
}
@keyframes fade-out-right-lg
{
    0%
    {
        -webkit-transform: translateX(0);
                transform: translateX(0);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: translateX(1500px);
                transform: translateX(1500px);

        opacity: 0;
    }
}
.fade-out-right-lg
{
    -webkit-animation-name: fade-out-right-lg;
            animation-name: fade-out-right-lg;
}

@-webkit-keyframes rotate-in
{
    0%
    {
        -webkit-transform: rotate(-90deg);
                transform: rotate(-90deg);
        -webkit-transform-origin: center center;
                transform-origin: center center;

        opacity: 0;
    }
    100%
    {
        -webkit-transform: rotate(0);
                transform: rotate(0);
        -webkit-transform-origin: center center;
                transform-origin: center center;

        opacity: 1;
    }
}
@keyframes rotate-in
{
    0%
    {
        -webkit-transform: rotate(-90deg);
                transform: rotate(-90deg);
        -webkit-transform-origin: center center;
                transform-origin: center center;

        opacity: 0;
    }
    100%
    {
        -webkit-transform: rotate(0);
                transform: rotate(0);
        -webkit-transform-origin: center center;
                transform-origin: center center;

        opacity: 1;
    }
}
.rotate-in
{
    -webkit-animation-name: rotate-in;
            animation-name: rotate-in;
}

@-webkit-keyframes rotate-out
{
    0%
    {
        -webkit-transform: rotate(0);
                transform: rotate(0);
        -webkit-transform-origin: center center;
                transform-origin: center center;

        opacity: 1;
    }
    100%
    {
        -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
        -webkit-transform-origin: center center;
                transform-origin: center center;

        opacity: 0;
    }
}
@keyframes rotate-out
{
    0%
    {
        -webkit-transform: rotate(0);
                transform: rotate(0);
        -webkit-transform-origin: center center;
                transform-origin: center center;

        opacity: 1;
    }
    100%
    {
        -webkit-transform: rotate(90deg);
                transform: rotate(90deg);
        -webkit-transform-origin: center center;
                transform-origin: center center;

        opacity: 0;
    }
}
.rotate-out
{
    -webkit-animation-name: rotate-out;
            animation-name: rotate-out;
}

@-webkit-keyframes rotate-in-sm
{
    0%
    {
        -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
        -webkit-transform-origin: center center;
                transform-origin: center center;

        opacity: 0;
    }
    100%
    {
        -webkit-transform: rotate(0);
                transform: rotate(0);
        -webkit-transform-origin: center center;
                transform-origin: center center;

        opacity: 1;
    }
}
@keyframes rotate-in-sm
{
    0%
    {
        -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
        -webkit-transform-origin: center center;
                transform-origin: center center;

        opacity: 0;
    }
    100%
    {
        -webkit-transform: rotate(0);
                transform: rotate(0);
        -webkit-transform-origin: center center;
                transform-origin: center center;

        opacity: 1;
    }
}
.rotate-in-sm
{
    -webkit-animation-name: rotate-in-sm;
            animation-name: rotate-in-sm;
}

@-webkit-keyframes rotate-out-sm
{
    0%
    {
        -webkit-transform: rotate(0);
                transform: rotate(0);
        -webkit-transform-origin: center center;
                transform-origin: center center;

        opacity: 1;
    }
    100%
    {
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
        -webkit-transform-origin: center center;
                transform-origin: center center;

        opacity: 0;
    }
}
@keyframes rotate-out-sm
{
    0%
    {
        -webkit-transform: rotate(0);
                transform: rotate(0);
        -webkit-transform-origin: center center;
                transform-origin: center center;

        opacity: 1;
    }
    100%
    {
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
        -webkit-transform-origin: center center;
                transform-origin: center center;

        opacity: 0;
    }
}
.rotate-out-sm
{
    -webkit-animation-name: rotate-out-sm;
            animation-name: rotate-out-sm;
}

@-webkit-keyframes rotate-in-lg
{
    0%
    {
        -webkit-transform: rotate(-180deg);
                transform: rotate(-180deg);
        -webkit-transform-origin: center center;
                transform-origin: center center;

        opacity: 0;
    }
    100%
    {
        -webkit-transform: rotate(0);
                transform: rotate(0);
        -webkit-transform-origin: center center;
                transform-origin: center center;

        opacity: 1;
    }
}
@keyframes rotate-in-lg
{
    0%
    {
        -webkit-transform: rotate(-180deg);
                transform: rotate(-180deg);
        -webkit-transform-origin: center center;
                transform-origin: center center;

        opacity: 0;
    }
    100%
    {
        -webkit-transform: rotate(0);
                transform: rotate(0);
        -webkit-transform-origin: center center;
                transform-origin: center center;

        opacity: 1;
    }
}
.rotate-in-lg
{
    -webkit-animation-name: rotate-in-lg;
            animation-name: rotate-in-lg;
}

@-webkit-keyframes rotate-out-lg
{
    0%
    {
        -webkit-transform: rotate(0);
                transform: rotate(0);
        -webkit-transform-origin: center center;
                transform-origin: center center;

        opacity: 1;
    }
    100%
    {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg);
        -webkit-transform-origin: center center;
                transform-origin: center center;

        opacity: 0;
    }
}
@keyframes rotate-out-lg
{
    0%
    {
        -webkit-transform: rotate(0);
                transform: rotate(0);
        -webkit-transform-origin: center center;
                transform-origin: center center;

        opacity: 1;
    }
    100%
    {
        -webkit-transform: rotate(180deg);
                transform: rotate(180deg);
        -webkit-transform-origin: center center;
                transform-origin: center center;

        opacity: 0;
    }
}
.rotate-out-lg
{
    -webkit-animation-name: rotate-out-lg;
            animation-name: rotate-out-lg;
}

@-webkit-keyframes flip-in-x
{
    0%
    {
        -webkit-transform: perspective(550px) rotateX(90deg);
                transform: perspective(550px) rotateX(90deg);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: perspective(550px) rotateX(0deg);
                transform: perspective(550px) rotateX(0deg);

        opacity: 1;
    }
}
@keyframes flip-in-x
{
    0%
    {
        -webkit-transform: perspective(550px) rotateX(90deg);
                transform: perspective(550px) rotateX(90deg);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: perspective(550px) rotateX(0deg);
                transform: perspective(550px) rotateX(0deg);

        opacity: 1;
    }
}
.flip-in-x
{
    -webkit-animation-name: flip-in-x;
            animation-name: flip-in-x;

    -webkit-backface-visibility: visible !important;
            backface-visibility: visible !important;
}

@-webkit-keyframes flip-out-x
{
    0%
    {
        -webkit-transform: perspective(550px) rotateX(0deg);
                transform: perspective(550px) rotateX(0deg);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: perspective(550px) rotateX(90deg);
                transform: perspective(550px) rotateX(90deg);

        opacity: 0;
    }
}
@keyframes flip-out-x
{
    0%
    {
        -webkit-transform: perspective(550px) rotateX(0deg);
                transform: perspective(550px) rotateX(0deg);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: perspective(550px) rotateX(90deg);
                transform: perspective(550px) rotateX(90deg);

        opacity: 0;
    }
}
.flip-out-x
{
    -webkit-animation-name: flip-out-x;
            animation-name: flip-out-x;

    -webkit-backface-visibility: visible !important;
            backface-visibility: visible !important;
}

@-webkit-keyframes flip-in-x-nr
{
    0%
    {
        -webkit-transform: perspective(100px) rotateX(90deg);
                transform: perspective(100px) rotateX(90deg);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: perspective(100px) rotateX(0deg);
                transform: perspective(100px) rotateX(0deg);

        opacity: 1;
    }
}
@keyframes flip-in-x-nr
{
    0%
    {
        -webkit-transform: perspective(100px) rotateX(90deg);
                transform: perspective(100px) rotateX(90deg);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: perspective(100px) rotateX(0deg);
                transform: perspective(100px) rotateX(0deg);

        opacity: 1;
    }
}
.flip-in-x-nr
{
    -webkit-animation-name: flip-in-x-nr;
            animation-name: flip-in-x-nr;

    -webkit-backface-visibility: visible !important;
            backface-visibility: visible !important;
}

@-webkit-keyframes flip-out-x-nr
{
    0%
    {
        -webkit-transform: perspective(100px) rotateX(0deg);
                transform: perspective(100px) rotateX(0deg);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: perspective(100px) rotateX(90deg);
                transform: perspective(100px) rotateX(90deg);

        opacity: 0;
    }
}
@keyframes flip-out-x-nr
{
    0%
    {
        -webkit-transform: perspective(100px) rotateX(0deg);
                transform: perspective(100px) rotateX(0deg);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: perspective(100px) rotateX(90deg);
                transform: perspective(100px) rotateX(90deg);

        opacity: 0;
    }
}
.flip-out-x-nr
{
    -webkit-animation-name: flip-out-x-nr;
            animation-name: flip-out-x-nr;

    -webkit-backface-visibility: visible !important;
            backface-visibility: visible !important;
}

@-webkit-keyframes flip-in-x-fr
{
    0%
    {
        -webkit-transform: perspective(1000px) rotateX(90deg);
                transform: perspective(1000px) rotateX(90deg);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: perspective(1000px) rotateX(0deg);
                transform: perspective(1000px) rotateX(0deg);

        opacity: 1;
    }
}
@keyframes flip-in-x-fr
{
    0%
    {
        -webkit-transform: perspective(1000px) rotateX(90deg);
                transform: perspective(1000px) rotateX(90deg);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: perspective(1000px) rotateX(0deg);
                transform: perspective(1000px) rotateX(0deg);

        opacity: 1;
    }
}
.flip-in-x-fr
{
    -webkit-animation-name: flip-in-x-fr;
            animation-name: flip-in-x-fr;

    -webkit-backface-visibility: visible !important;
            backface-visibility: visible !important;
}

@-webkit-keyframes flip-out-x-fr
{
    0%
    {
        -webkit-transform: perspective(1000px) rotateX(0deg);
                transform: perspective(1000px) rotateX(0deg);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: perspective(1000px) rotateX(90deg);
                transform: perspective(1000px) rotateX(90deg);

        opacity: 0;
    }
}
@keyframes flip-out-x-fr
{
    0%
    {
        -webkit-transform: perspective(1000px) rotateX(0deg);
                transform: perspective(1000px) rotateX(0deg);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: perspective(1000px) rotateX(90deg);
                transform: perspective(1000px) rotateX(90deg);

        opacity: 0;
    }
}
.flip-out-x-fr
{
    -webkit-animation-name: flip-out-x-fr;
            animation-name: flip-out-x-fr;

    -webkit-backface-visibility: visible !important;
            backface-visibility: visible !important;
}

@-webkit-keyframes flip-in-y
{
    0%
    {
        -webkit-transform: perspective(550px) rotateY(90deg);
                transform: perspective(550px) rotateY(90deg);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: perspective(550px) rotateY(0deg);
                transform: perspective(550px) rotateY(0deg);

        opacity: 1;
    }
}
@keyframes flip-in-y
{
    0%
    {
        -webkit-transform: perspective(550px) rotateY(90deg);
                transform: perspective(550px) rotateY(90deg);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: perspective(550px) rotateY(0deg);
                transform: perspective(550px) rotateY(0deg);

        opacity: 1;
    }
}
.flip-in-y
{
    -webkit-animation-name: flip-in-y;
            animation-name: flip-in-y;

    -webkit-backface-visibility: visible !important;
            backface-visibility: visible !important;
}

@-webkit-keyframes flip-out-y
{
    0%
    {
        -webkit-transform: perspective(550px) rotateY(0deg);
                transform: perspective(550px) rotateY(0deg);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: perspective(550px) rotateY(90deg);
                transform: perspective(550px) rotateY(90deg);

        opacity: 0;
    }
}
@keyframes flip-out-y
{
    0%
    {
        -webkit-transform: perspective(550px) rotateY(0deg);
                transform: perspective(550px) rotateY(0deg);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: perspective(550px) rotateY(90deg);
                transform: perspective(550px) rotateY(90deg);

        opacity: 0;
    }
}
.flip-out-y
{
    -webkit-animation-name: flip-out-y;
            animation-name: flip-out-y;

    -webkit-backface-visibility: visible !important;
            backface-visibility: visible !important;
}

@-webkit-keyframes flip-in-y-nr
{
    0%
    {
        -webkit-transform: perspective(100px) rotateY(90deg);
                transform: perspective(100px) rotateY(90deg);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: perspective(100px) rotateY(0deg);
                transform: perspective(100px) rotateY(0deg);

        opacity: 1;
    }
}
@keyframes flip-in-y-nr
{
    0%
    {
        -webkit-transform: perspective(100px) rotateY(90deg);
                transform: perspective(100px) rotateY(90deg);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: perspective(100px) rotateY(0deg);
                transform: perspective(100px) rotateY(0deg);

        opacity: 1;
    }
}
.flip-in-y-nr
{
    -webkit-animation-name: flip-in-y-nr;
            animation-name: flip-in-y-nr;

    -webkit-backface-visibility: visible !important;
            backface-visibility: visible !important;
}

@-webkit-keyframes flip-out-y-nr
{
    0%
    {
        -webkit-transform: perspective(100px) rotateY(0deg);
                transform: perspective(100px) rotateY(0deg);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: perspective(100px) rotateY(90deg);
                transform: perspective(100px) rotateY(90deg);

        opacity: 0;
    }
}
@keyframes flip-out-y-nr
{
    0%
    {
        -webkit-transform: perspective(100px) rotateY(0deg);
                transform: perspective(100px) rotateY(0deg);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: perspective(100px) rotateY(90deg);
                transform: perspective(100px) rotateY(90deg);

        opacity: 0;
    }
}
.flip-out-y-nr
{
    -webkit-animation-name: flip-out-y-nr;
            animation-name: flip-out-y-nr;

    -webkit-backface-visibility: visible !important;
            backface-visibility: visible !important;
}

@-webkit-keyframes flip-in-y-fr
{
    0%
    {
        -webkit-transform: perspective(1000px) rotateY(90deg);
                transform: perspective(1000px) rotateY(90deg);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: perspective(1000px) rotateY(0deg);
                transform: perspective(1000px) rotateY(0deg);

        opacity: 1;
    }
}
@keyframes flip-in-y-fr
{
    0%
    {
        -webkit-transform: perspective(1000px) rotateY(90deg);
                transform: perspective(1000px) rotateY(90deg);

        opacity: 0;
    }
    100%
    {
        -webkit-transform: perspective(1000px) rotateY(0deg);
                transform: perspective(1000px) rotateY(0deg);

        opacity: 1;
    }
}
.flip-in-y-fr
{
    -webkit-animation-name: flip-in-y-fr;
            animation-name: flip-in-y-fr;

    -webkit-backface-visibility: visible !important;
            backface-visibility: visible !important;
}

@-webkit-keyframes flip-out-y-fr
{
    0%
    {
        -webkit-transform: perspective(1000px) rotateY(0deg);
                transform: perspective(1000px) rotateY(0deg);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: perspective(1000px) rotateY(90deg);
                transform: perspective(1000px) rotateY(90deg);

        opacity: 0;
    }
}
@keyframes flip-out-y-fr
{
    0%
    {
        -webkit-transform: perspective(1000px) rotateY(0deg);
                transform: perspective(1000px) rotateY(0deg);

        opacity: 1;
    }
    100%
    {
        -webkit-transform: perspective(1000px) rotateY(90deg);
                transform: perspective(1000px) rotateY(90deg);

        opacity: 0;
    }
}
.flip-out-y-fr
{
    -webkit-animation-name: flip-out-y-fr;
            animation-name: flip-out-y-fr;

    -webkit-backface-visibility: visible !important;
            backface-visibility: visible !important;
}

@-webkit-keyframes zoom-in
{
    0%
    {
        -webkit-transform: scale(.7);
                transform: scale(.7);

        opacity: 0;
    }
    100%
    {
        opacity: 1;
    }
}
@keyframes zoom-in
{
    0%
    {
        -webkit-transform: scale(.7);
                transform: scale(.7);

        opacity: 0;
    }
    100%
    {
        opacity: 1;
    }
}
.zoom-in
{
    -webkit-animation-name: zoom-in;
            animation-name: zoom-in;
}

@-webkit-keyframes zoom-out
{
    0%
    {
        -webkit-transform: scale(1);
                transform: scale(1);

        opacity: 1;
    }
    50%
    {
        -webkit-transform: scale(.7);
                transform: scale(.7);

        opacity: 0;
    }
    100%
    {
        opacity: 0;
    }
}
@keyframes zoom-out
{
    0%
    {
        -webkit-transform: scale(1);
                transform: scale(1);

        opacity: 1;
    }
    50%
    {
        -webkit-transform: scale(.7);
                transform: scale(.7);

        opacity: 0;
    }
    100%
    {
        opacity: 0;
    }
}
.zoom-out
{
    -webkit-animation-name: zoom-out;
            animation-name: zoom-out;
}

@-webkit-keyframes zoom-in-sm
{
    0%
    {
        -webkit-transform: scale(.95);
                transform: scale(.95);

        opacity: 0;
    }
    100%
    {
        opacity: 1;
    }
}
@keyframes zoom-in-sm
{
    0%
    {
        -webkit-transform: scale(.95);
                transform: scale(.95);

        opacity: 0;
    }
    100%
    {
        opacity: 1;
    }
}
.zoom-in-sm
{
    -webkit-animation-name: zoom-in-sm;
            animation-name: zoom-in-sm;
}

@-webkit-keyframes zoom-out-sm
{
    0%
    {
        -webkit-transform: scale(1);
                transform: scale(1);

        opacity: 1;
    }
    50%
    {
        -webkit-transform: scale(.95);
                transform: scale(.95);

        opacity: 0;
    }
    100%
    {
        opacity: 0;
    }
}
@keyframes zoom-out-sm
{
    0%
    {
        -webkit-transform: scale(1);
                transform: scale(1);

        opacity: 1;
    }
    50%
    {
        -webkit-transform: scale(.95);
                transform: scale(.95);

        opacity: 0;
    }
    100%
    {
        opacity: 0;
    }
}
.zoom-out-sm
{
    -webkit-animation-name: zoom-out-sm;
            animation-name: zoom-out-sm;
}

@-webkit-keyframes zoom-in-lg
{
    0%
    {
        -webkit-transform: scale(.4);
                transform: scale(.4);

        opacity: 0;
    }
    100%
    {
        opacity: 1;
    }
}
@keyframes zoom-in-lg
{
    0%
    {
        -webkit-transform: scale(.4);
                transform: scale(.4);

        opacity: 0;
    }
    100%
    {
        opacity: 1;
    }
}
.zoom-in-lg
{
    -webkit-animation-name: zoom-in-lg;
            animation-name: zoom-in-lg;
}

@-webkit-keyframes zoom-out-lg
{
    0%
    {
        -webkit-transform: scale(1);
                transform: scale(1);

        opacity: 1;
    }
    50%
    {
        -webkit-transform: scale(.4);
                transform: scale(.4);

        opacity: 0;
    }
    100%
    {
        opacity: 0;
    }
}
@keyframes zoom-out-lg
{
    0%
    {
        -webkit-transform: scale(1);
                transform: scale(1);

        opacity: 1;
    }
    50%
    {
        -webkit-transform: scale(.4);
                transform: scale(.4);

        opacity: 0;
    }
    100%
    {
        opacity: 0;
    }
}
.zoom-out-lg
{
    -webkit-animation-name: zoom-out-lg;
            animation-name: zoom-out-lg;
}

@-webkit-keyframes overlay-slide-in-top
{
    0%
    {
        height: 100%;
    }
    100%
    {
        height: 0;
    }
}
@keyframes overlay-slide-in-top
{
    0%
    {
        height: 100%;
    }
    100%
    {
        height: 0;
    }
}
.overlay-slide-in-top
{
    top: 0;

    height: 0;

    -webkit-animation-name: overlay-slide-in-top;
            animation-name: overlay-slide-in-top;
}

@-webkit-keyframes overlay-slide-out-top
{
    0%
    {
        height: 0;
    }
    100%
    {
        height: 100%;
    }
}
@keyframes overlay-slide-out-top
{
    0%
    {
        height: 0;
    }
    100%
    {
        height: 100%;
    }
}
.overlay-slide-out-top
{
    top: 0;

    height: 100%;

    -webkit-animation-name: overlay-slide-out-top;
            animation-name: overlay-slide-out-top;
}

@-webkit-keyframes overlay-slide-in-bottom
{
    0%
    {
        height: 100%;
    }
    100%
    {
        height: 0;
    }
}
@keyframes overlay-slide-in-bottom
{
    0%
    {
        height: 100%;
    }
    100%
    {
        height: 0;
    }
}
.overlay-slide-in-bottom
{
    bottom: 0;

    height: 0;

    -webkit-animation-name: overlay-slide-in-bottom;
            animation-name: overlay-slide-in-bottom;
}

@-webkit-keyframes overlay-slide-out-bottom
{
    0%
    {
        height: 0;
    }
    100%
    {
        height: 100%;
    }
}
@keyframes overlay-slide-out-bottom
{
    0%
    {
        height: 0;
    }
    100%
    {
        height: 100%;
    }
}
.overlay-slide-out-bottom
{
    bottom: 0;

    height: 100%;

    -webkit-animation-name: overlay-slide-out-bottom;
            animation-name: overlay-slide-out-bottom;
}

@-webkit-keyframes overlay-slide-in-left
{
    0%
    {
        width: 100%;
    }
    100%
    {
        width: 0;
    }
}
@keyframes overlay-slide-in-left
{
    0%
    {
        width: 100%;
    }
    100%
    {
        width: 0;
    }
}
.overlay-slide-in-left
{
    width: 0;

    -webkit-animation-name: overlay-slide-in-left;
            animation-name: overlay-slide-in-left;
}

@-webkit-keyframes overlay-slide-out-left
{
    0%
    {
        width: 0;
    }
    100%
    {
        width: 100%;
    }
}
@keyframes overlay-slide-out-left
{
    0%
    {
        width: 0;
    }
    100%
    {
        width: 100%;
    }
}
.overlay-slide-out-left
{
    left: 0;

    width: 100%;

    -webkit-animation-name: overlay-slide-out-left;
            animation-name: overlay-slide-out-left;
}

@-webkit-keyframes overlay-slide-in-right
{
    0%
    {
        width: 100%;
    }
    100%
    {
        width: 0;
    }
}
@keyframes overlay-slide-in-right
{
    0%
    {
        width: 100%;
    }
    100%
    {
        width: 0;
    }
}
.overlay-slide-in-right
{
    right: 0;

    width: 0;

    -webkit-animation-name: overlay-slide-in-right;
            animation-name: overlay-slide-in-right;
}

@-webkit-keyframes overlay-slide-out-right
{
    0%
    {
        width: 0;
    }
    100%
    {
        width: 100%;
    }
}
@keyframes overlay-slide-out-right
{
    0%
    {
        width: 0;
    }
    100%
    {
        width: 100%;
    }
}
.overlay-slide-out-right
{
    right: 0;

    width: 100%;

    -webkit-animation-name: overlay-slide-out-right;
            animation-name: overlay-slide-out-right;
}

/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox,
#cboxOverlay,
#cboxWrapper
{
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;

    overflow: hidden;
}

#cboxWrapper
{
    max-width: none;
}

#cboxOverlay
{
    position: fixed;

    width: 100%;
    height: 100%;
}

#cboxMiddleLeft,
#cboxBottomLeft
{
    clear: left;
}

#cboxContent
{
    position: relative;
}

#cboxLoadedContent
{
    overflow: auto;

    -webkit-overflow-scrolling: touch;
}

#cboxTitle
{
    margin: 0;
}

#cboxLoadingOverlay,
#cboxLoadingGraphic
{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
}

#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow
{
    cursor: pointer;
}

.cboxPhoto
{
    display: block;
    float: left;

    max-width: none;
    margin: auto;

    -ms-interpolation-mode: bicubic;
    border: 0;
}

.cboxIframe
{
    display: block;

    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;

    border: 0;
}

#colorbox,
#cboxContent,
#cboxLoadedContent
{
    -webkit-box-sizing: content-box;
       -moz-box-sizing: content-box;
            box-sizing: content-box;
}

/*
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay
{
    opacity: .9;
    background: url(images/overlay.png) repeat 0 0;

    filter: alpha(opacity=90);
}

#colorbox
{
    outline: 0;
}

/*#cboxTopLeft{width:21px; height:21px; background:url(images/controls.png) no-repeat -101px 0;}
#cboxTopRight{width:21px; height:21px; background:url(images/controls.png) no-repeat -130px 0;}
#cboxBottomLeft{width:21px; height:21px; background:url(images/controls.png) no-repeat -101px -29px;}
#cboxBottomRight{width:21px; height:21px; background:url(images/controls.png) no-repeat -130px -29px;}
#cboxMiddleLeft{width:21px; background:url(images/controls.png) left top repeat-y;}
#cboxMiddleRight{width:21px; background:url(images/controls.png) right top repeat-y;}
#cboxTopCenter{height:21px; background:url(images/border.png) 0 0 repeat-x;}
#cboxBottomCenter{height:21px; background:url(images/border.png) 0 -29px repeat-x;}*/
#cboxContent
{
    overflow: hidden;

    background: #fff;
}

.cboxIframe
{
    background: #fff;
}

#cboxError
{
    padding: 50px;

    border: 1px solid #ccc;
}

#cboxLoadedContent
{
    margin-bottom: 28px;
}

#cboxTitle
{
    position: absolute;
    bottom: 4px;
    left: 0;

    width: 100%;

    text-align: center;

    color: #949494;
}

#cboxCurrent
{
    position: absolute;
    bottom: 4px;
    left: 58px;

    color: #949494;
}

#cboxLoadingOverlay
{
    background: url(images/loading_background.png) no-repeat center center;
}

#cboxLoadingGraphic
{
    background: url(images/loading.gif) no-repeat center center;
}

/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose
{
    overflow: visible;

    width: auto;
    margin: 0;
    padding: 0;

    border: 0;
    background: none;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active
{
    outline: 0;
}

#cboxSlideshow
{
    position: absolute;
    right: 30px;
    bottom: 4px;

    color: #0092ef;
}

#cboxPrevious
{
    position: absolute;
    bottom: 0;
    left: 0;

    width: 25px;
    height: 25px;

    text-indent: -9999px;

    background: url(images/controls.png) no-repeat -75px 0;
}

#cboxPrevious:hover
{
    background-position: -75px -25px;
}

#cboxNext
{
    position: absolute;
    bottom: 0;
    left: 27px;

    width: 25px;
    height: 25px;

    text-indent: -9999px;

    background: url(images/controls.png) no-repeat -50px 0;
}

#cboxNext:hover
{
    background-position: -50px -25px;
}

#cboxClose
{
    position: absolute;
    right: 0;
    bottom: 0;

    width: 25px;
    height: 25px;

    text-indent: -9999px;

    background: url(images/controls.png) no-repeat -25px 0;
}

#cboxClose:hover
{
    background-position: -25px -25px;
}

#colorbox button
{
    outline: none;
}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight
{
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}

/* color */
/*
@font-face {
   font-family: 'Josefin Slab', serif;
   font-style: normal;
   font-weight: 500;
   src: url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Medium.woff2) format('woff2'),
        url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Medium.woff) format('woff'),
        url(//fonts.gstatic.com/ea/notosansjapanese/v6/NotoSansJP-Medium.otf) format('opentype');
 }
 */
*
{
    box-sizing: border-box;
}

html
{
    font-size: 100%;

    min-width: 100%;
    height: 100%;
}

body
{
    font-family: 'Helvetica Neue', Helvetica, Arial, Verdana, '游ゴシック', 'Yu Gothic', '游ゴシック体', 'YuGothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'Meiryo UI', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 14px;
    line-height: 1.45;

    height: 100%;
    margin: 0;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img
{
    vertical-align: bottom;
}
img.img-center
{
    margin: 0 auto;
}
img.img-responsive
{
    width: auto;
    max-width: 100%;
}

a
{
    transition: all .3s;

    color: #b51025;
}
a:hover
{
    text-decoration: none;

    color: #860c1b;
}
a img
{
    border: none;
}

p
{
    line-height: 1.6;
}

h2,
h3,
h4,
h5,
h6
{
    font-family: 'Noto Serif', serif;
    font-weight: 400;
}

.wrapper
{
    position: relative;

    height: auto !important;
    height: 100%;
    min-height: 100%;
    padding-bottom: 3em;
}
.home .wrapper
{
    display: table;

    width: 100%;
    height: 100%;

    text-align: center;
    vertical-align: middle;
}

.container
{
    position: relative;

    width: 1000px;
    margin: 0 auto;
}
@media screen and (max-width: 768px)
{
    .container
    {
        width: 100%;
        padding: 0 20px;
    }
}

.pageBody
{
    padding: 40px 0 50px;
}

div.thumbs
{
    position: relative;

    overflow: hidden;
    zoom: 1;

    margin: 20px;
}
div.thumbs:before,
div.thumbs:after
{
    display: table;

    content: '';
}
div.thumbs:after
{
    clear: both;
}
div.thumbs ul
{
    position: relative;
    left: 50%;

    float: left;

    margin: 0;
    padding: 0;

    list-style-type: none;
}
div.thumbs ul li
{
    position: relative;
    left: -50%;

    float: left;

    margin: 10px;
}
div.thumbs ul li a
{
    display: block;
    overflow: hidden;

    width: 100px;
    height: 100px;
}
div.thumbs ul li a:hover
{
    box-shadow: 0 0 3px #777;
}
div.thumbs ul li a img
{
    position: relative;
    top: 50%;
    left: 50%;

    width: auto;
    height: auto;

    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px)
{
    div.thumbs
    {
        text-align: center;
    }
    div.thumbs ul
    {
        position: static;
    }
    div.thumbs ul li
    {
        position: static;

        display: inline-block;
        float: none;
    }
}

.about
{
    width: 600px;
    margin: 0 auto 30px;
}
.about dl
{
    display: table;

    margin: 0;
}
.about dl dt,
.about dl dd
{
    display: table-cell;

    margin: 0;
    padding: 5px 0;
}
.about dl dt
{
    width: 100px;
}

.headerContainer
{
    position: relative;
    z-index: 1;

    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    padding: 20px;

    -webkit-align-items: center;
    -ms-flex-align: center;
            align-items: center;
}
.headerContainer h1
{
    margin: 0 auto 0 0;
    padding: 0;
}
.headerContainer h1 a
{
    display: block;
    overflow: hidden;

    width: 180px;
    height: 0;
    padding-top: 50px;

    background: url('../images/logo.png') 0 0 no-repeat;
}
@media (min--moz-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 2dppx)
{
    .headerContainer h1 a
    {
        background-image: url('../images/logo@2x.png');
        background-size: 180px 100px;
    }
}
@media (min--moz-device-pixel-ratio: 3), (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3), (min-resolution: 3dppx)
{
    .headerContainer h1 a
    {
        background-image: url('../images/logo@3x.png');
        background-size: 180px 100px;
    }
}
.home .headerContainer
{
    position: absolute;
    top: 50%;
    left: 50%;

    display: block;

    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}
.home .headerContainer h1
{
    margin-bottom: 20px;
}
.home .headerContainer h1 a
{
    margin: 0 auto;
}
.home .headerContainer.lighten h1 a
{
    background-position: 0 -50px;
}

.totop
{
    position: fixed;
    z-index: 999;
    right: 15px;
    bottom: 15px;
}
.totop a
{
    line-height: 40px;

    display: block;
    /*background: url($imgDir+'totop.png') 0 0 no-repeat;
  @include image-dpi('totop', 40px, 40px);*/

    width: 40px;

    text-align: center;

    opacity: .8;
    color: #333;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .15);

    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
}
.totop a:hover
{
    opacity: 1;

    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
}

.footerContainer
{
    position: absolute;
    bottom: 0;

    width: 100%;
    height: 3em;

    text-align: center;
}
.footerContainer .copyright
{
    font-size: 11px;

    color: #555;
}

.navGlobal
{
    font-family: 'Josefin Slab', serif;

    position: relative;
    z-index: 0;
}
.navGlobal ul
{
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;

    width: 100%;
    margin: 0;
    padding: 0;

    list-style-type: none;
}
.navGlobal ul li
{
    position: relative;

    margin: 0 15px;

    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.navGlobal ul li a
{
    font-size: 18px;

    position: relative;

    display: block;

    text-decoration: none;

    color: #444;
}
.navGlobal ul li a:hover
{
    color: #777;
}
.navGlobal ul li a.current:after
{
    position: absolute;
    z-index: 1;
    bottom: -4px;
    left: 50%;

    display: block;

    width: 0;
    margin-left: -2px;

    content: '';

    border-width: 4px 4px 0;
    border-style: solid;
    border-color: #333 transparent;
}
.home .navGlobal
{
    min-width: 180px;
    margin: 0;
}
.home .navGlobal ul
{
    display: block;
}
.home .navGlobal ul li
{
    margin: 0 auto 15px;
}
.home .navGlobal ul li a
{
    padding: 5px 0;

    border: 1px solid #535353;
}
.home .navGlobal ul li a:hover
{
    background-color: rgba(255, 255, 255, .5);
}
.lighten .navGlobal ul li a
{
    color: #fff;
    border: 1px solid #fff;
}
@media screen and (max-width: 768px)
{
    .navGlobal
    {
        position: absolute !important;
        z-index: 999;
        top: 100px !important;
        left: 0;

        width: 100%;

        background-color: #fff;
        box-shadow: 0 2px 3px rgba(0, 0, 0, .3);
    }
    .navGlobal .container
    {
        padding: 0 !important;
    }
    .navGlobal ul
    {
        display: none;
    }
    .navGlobal ul li
    {
        display: block;

        margin: 0;

        border-top: 1px solid #ddd;
    }
    .navGlobal ul li a
    {
        line-height: 40px;

        width: 100% !important;
        padding: 5px 20px;

        background: none;
    }
    .navGlobal ul li a:after
    {
        display: none !important;
    }
    .navGlobal ul li a.current
    {
        color: #fff;
        background-color: #333;
    }
    .home .navGlobal
    {
        position: relative !important;
        top: 0 !important;

        box-shadow: 0 0 0;
    }
    .home .navGlobal ul li a
    {
        padding: 0;
    }
}

.offcanvasToggle
{
    position: absolute;
    z-index: 999;
    top: 30px;
    right: 15px;

    display: block;

    width: 41px;
    height: 41px;

    cursor: pointer;

    border: none;
    border-radius: 3px;
    outline: none;
    background: none;
}
.offcanvasToggle:hover
{
    background-color: #fff;
}
.offcanvasToggle span
{
    position: absolute;
    left: 6px;

    display: inline-block;

    width: 26px;
    height: 3px;

    transition: all .5s ease;

    border-radius: 1px;
    background-color: #222;
}
.offcanvasToggle span:nth-of-type(1)
{
    top: 10px;
}
.offcanvasToggle span:nth-of-type(2)
{
    top: 18px;
}
.offcanvasToggle span:nth-of-type(3)
{
    top: 26px;
}
.offcanvasToggle span.g
{
    background-color: #6e4b22 !important;
}
.offcanvasToggle.active
{
    background: none;
}
.offcanvasToggle.active span:nth-of-type(1)
{
    top: 15px;

    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.offcanvasToggle.active span:nth-of-type(2)
{
    left: 50%;

    opacity: 0;
}
.offcanvasToggle.active span:nth-of-type(3)
{
    top: 15px;

    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}

.offcanvasToggle
{
    display: none;
}
@media screen and (max-width: 768px)
{
    .offcanvasToggle
    {
        position: absolute;

        display: block;
    }
}
.home .offcanvasToggle
{
    display: none !important;
}

select
{
    line-height: 24px;

    height: 24px;
    padding: 0 30px 0 10px;

    border: 1px solid #c5c5c5;
    border-radius: 3px;
    outline: none;
    background: #fff;
    background: url('../images/select_arrow.png') right 50% no-repeat #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .3);

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
@media (min--moz-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2), (min-resolution: 2dppx)
{
    select
    {
        background-image: url('../images/select_arrow@2x.png');
        background-size: 20px 8px;
    }
}
@media (min--moz-device-pixel-ratio: 3), (-webkit-min-device-pixel-ratio: 3), (min-device-pixel-ratio: 3), (min-resolution: 3dppx)
{
    select
    {
        background-image: url('../images/select_arrow@3x.png');
        background-size: 20px 8px;
    }
}

input[type='checkbox']
{
    margin: 5px;
}

input[type='text'],
input[type='password'],
input[type='tel'],
input[type='url'],
input[type='email'],
input[type='nunmber'],
input[type='search'],
textarea
{
    font-size: 16px;
    line-height: 1;

    padding: 7px;

    border: 1px solid #ddd;
    border-radius: 3px;
}
input[type='text']::-webkit-input-placeholder,
input[type='password']::-webkit-input-placeholder,
input[type='tel']::-webkit-input-placeholder,
input[type='url']::-webkit-input-placeholder,
input[type='email']::-webkit-input-placeholder,
input[type='nunmber']::-webkit-input-placeholder,
input[type='search']::-webkit-input-placeholder,
textarea::-webkit-input-placeholder
{
    line-height: 1;
}
input[type='text']::-moz-placeholder,
input[type='password']::-moz-placeholder,
input[type='tel']::-moz-placeholder,
input[type='url']::-moz-placeholder,
input[type='email']::-moz-placeholder,
input[type='nunmber']::-moz-placeholder,
input[type='search']::-moz-placeholder,
textarea::-moz-placeholder
{
    line-height: 1;
}
input[type='text']:-ms-input-placeholder,
input[type='password']:-ms-input-placeholder,
input[type='tel']:-ms-input-placeholder,
input[type='url']:-ms-input-placeholder,
input[type='email']:-ms-input-placeholder,
input[type='nunmber']:-ms-input-placeholder,
input[type='search']:-ms-input-placeholder,
textarea:-ms-input-placeholder
{
    line-height: 1;
}
input[type='text']::placeholder,
input[type='password']::placeholder,
input[type='tel']::placeholder,
input[type='url']::placeholder,
input[type='email']::placeholder,
input[type='nunmber']::placeholder,
input[type='search']::placeholder,
textarea::placeholder
{
    line-height: 1;
}

.contact
{
    padding: 20px;

    background-color: #f1f0e6;
}
.contact p
{
    margin: 0 0 15px;
}
.contact .row
{
    display: table;

    width: 100%;
    padding: 10px;

    border-top: 1px dotted #ddd;
}
.contact .row label
{
    position: relative;

    display: table-cell;

    width: 140px;

    vertical-align: middle;
}
.contact .row label .require
{
    margin-left: 5px;

    color: #c00;
}
.contact .row .item
{
    display: table-cell;
}
.contact .row .item input[type='text'],
.contact .row .item input[type='password'],
.contact .row .item input[type='tel'],
.contact .row .item input[type='url'],
.contact .row .item input[type='email'],
.contact .row .item input[type='nunmber'],
.contact .row .item input[type='search'],
.contact .row .item textarea
{
    width: 100%;
    min-width: 280px;
}
.contact .row .item input[type='text'].half,
.contact .row .item input[type='password'].half,
.contact .row .item input[type='tel'].half,
.contact .row .item input[type='url'].half,
.contact .row .item input[type='email'].half,
.contact .row .item input[type='nunmber'].half,
.contact .row .item input[type='search'].half,
.contact .row .item textarea.half
{
    width: 50%;
}
.contact .recaptcha div
{
    margin: 0 auto;
}
.contact .btn
{
    padding: 20px 0 0;

    text-align: center;
}
.contact .btn button,
.contact .btn input
{
    font-size: 16px;

    width: 120px;
    margin: 0 auto;
    padding: 10px 0;

    cursor: pointer;

    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
}
.contact .btn button:hover,
.contact .btn input:hover
{
    background-color: #f1f1f1;
}
.contact .btn button.cancel,
.contact .btn input.cancel
{
    color: #333;
    border: 1px solid #aaa;
    background-color: #fff;
}
.contact .btn button.cancel:hover,
.contact .btn input.cancel:hover
{
    background-color: #eee;
}
@media screen and (max-width: 768px)
{
    .contact p
    {
        text-align: center;
    }
    .contact .row
    {
        display: block;
    }
    .contact .row label
    {
        display: block;

        width: 100%;
        margin-bottom: 5px;

        text-align: center;
    }
    .contact .row .item
    {
        display: block;

        width: 100%;
    }
}

.wpcf7
{
    width: 600px;
    margin: 0 auto !important;
}
@media screen and (max-width: 768px)
{
    .wpcf7
    {
        width: 100%;
    }
}

div.wpcf7-response-output
{
    margin: 0 0 15px;
    padding: 10px;
}

div.wpcf7-validation-errors
{
    color: #484631;
    border: none;
    background-color: #e8d815;
}
