/**
 * Juicy Slider styles sheet
 *
 * (c) 2013 by Van Ting
 *
 */

html,
body {
    /* CSS reset */
    margin: 0;
    padding: 0;
    border: 0;
}

.juicyslider {
    position: relative;
    padding: 0;
    margin: 0;
    border: 0;
}

.juicyslider ul {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    list-style: none outside none;
    padding: 0;
    margin: 0;
}

.juicyslider li {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    display: none;
    /* all hidden initially */
}

.juicyslider li:first-child {
    display: block;
}

.juicyslider .nav {
    position: absolute;
    top: 45%;
    padding: 20px;
    opacity: 0;
    filter: alpha(opacity=0);
    cursor: pointer;
    z-index: 1000;
    -webkit-transition: all 200ms ease-in-out;
    -moz-transition: all 200ms ease-in-out;
    -o-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    background-image: url(../img/nav-40.png);
}

.juicyslider:hover .nav {
    opacity: .5;
    filter: alpha(opacity=50);
}

.juicyslider .nav.next {
    right: 3%;
}

.juicyslider .nav.prev {
    left: 3%;
    background-position: 40px 0;
}

.juicyslider .mask {
    background-image: none;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 500;
}

.juicyslider img.maxw {
    width: 100%;
    height: auto;
    max-height: none;
    position: absolute;
    filter: inherit;
    /* for ie8 to inherit parent opacity */
}

.juicyslider img.maxh {
    width: auto;
    max-width: none;
    height: 100%;
    position: absolute;
    filter: inherit;
    /* for ie8 to inherit parent opacity */
}

.juicyslider h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 10px 0;
    font-size: 2.2em;
    width: 100%;
    text-align: center;
    font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "游明朝", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}