/**
 * fullpage 1.4.5
 * https://github.com/alvarotrigo/fullpage.js
 * mit licensed
 *
 * copyright (c) 2013 alvarotrigo.com - a project by alvaro trigo
 */
html, body {
    margin: 0;
    padding: 0;
}
#supercontainer {
    height: 100%;
    position: relative;
}
.section {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.slide {
    float: left;
}
.slide, .slidescontainer {
    height: 100%;
    display: block;
}
.slides {
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.section.table, .slide.table {
    display: table;
    width: 100%;
}
.tablecell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}
.slidescontainer {
    float: left;
    position: relative;
}
.controlarrow {
    position: absolute;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
}
.controlarrow.prev {
border:none;
    left: 40px;
    width: 50px;
    height:50px;
    background: url(/uploads/image/eimages/zuo.png)  no-repeat;
}
.controlarrow.next {
border:none;
    right: 40px;
    width: 50px;
    height:50px;
    background: url(/uploads/image/eimages/you.png)  no-repeat;
}
.scrollable {
    overflow: scroll;
}
.easing {
    -webkit-transition: all 0.7s ease-out;
    -moz-transition: all 0.7s ease-out;
    -o-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
}
#fullpage-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
}
#fullpage-nav.right {
    right: 17px;
}
#fullpage-nav.left {
    left: 17px;
}
.fullpage-slidesnav {
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1;
}
.fullpage-slidesnav.bottom {
    bottom: 17px;
}
.fullpage-slidesnav.top {
    top: 17px;
}
#fullpage-nav ul,
.fullpage-slidesnav ul {
  margin: 0;
  padding: 0;
}
#fullpage-nav li,
.fullpage-slidesnav li {
    display: block;
    width: 14px;
    height: 13px;
    margin: 7px;
    position:relative;
}
.fullpage-slidesnav li {
    display: inline-block;
}
#fullpage-nav li a,
.fullpage-slidesnav li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}
#fullpage-nav li .active span,
.fullpage-slidesnav .active span {
    background: #333;
}
#fullpage-nav span,
.fullpage-slidesnav span {
    top: 2px;
    left: 2px;
    width: 8px;
    height: 8px;
    border: 1px solid #000;
    background: rgba(0, 0, 0, 0);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}
.fullpage-tooltip {
    position: absolute;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    top: -2px;
}
.fullpage-tooltip.right {
    right: 20px;
}
.fullpage-tooltip.left {
    left: 20px;
}
