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




.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: 35%;
    padding: 20px;
    cursor: pointer;
    z-index: 1000;
    background-image: url(http://demo.renklisayfa.net/form-floor/wp-content/themes/form-floor/images/as.png);
		width:27px; height:30px;
}


.juicyslider:hover .nav {

}

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

.juicyslider .nav.prev {
    left: 12%;
    background-position: 67px 0;
}

.juicyslider .mask {
    background-image: none;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 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 */
}