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

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

/*
.juicyslider {
    height: 594px !important;
    min-width: 980px !important;
    overflow: hidden !important;
    position: relative !important;
}

.juicyslider-slides {
    height: 100% !important;
    position: absolute !important;
    width: 100% !important;
}
.juicyslider-slides .slide {
    height: 100% !important;
    overflow: hidden !important;
    position: absolute !important;
    width: 100% !important;
}
.juicyslider-slides .slide img {
    left: 50% !important;
    margin-left: -711px !important;
    position: absolute !important;
}
*/

.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%;
/*    top:36%;*/
    padding: 20px;
	opacity: .0;
/*    opacity: .3;*/
    filter: alpha(opacity=0);
    cursor: pointer;
/*    z-index: 1000;*/
    z-index: 800;
    -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;*/
    opacity: .7;
    filter: alpha(opacity=100);
}

.juicyslider .nav.next {
	right:0;
    z-index: 140;
/*    right: 3%;*/
}

.juicyslider .nav.prev {
/*    left: 3%;*/
    left:0;
    background-position: 40px 0;
}
.juicyslider .mask {
    background-image: none;
    position: absolute;
    width: 100%;
    height: 100%;
}

.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 li img {
    left: 50% !important;
    margin-left: -711px !important;
    position: absolute !important;
    overflow: hidden !important;
    min-width: 980px !important;
}
*/