/* ===========================================================
 * pagepiling.js 0.0.1 (Beta)
 *
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 *
 * ========================================================== */

html{
overflow-x:hidden;
}

html {
    margin:0;
    padding:0;

    /*Avoid flicker on slides transitions for mobile phones #336 */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.pp-section {
    height:100%;
    position:relative;
    width:100%;
    background-color:#ffffff;
    overflow: hidden;
}
.pp-easing {
    -webkit-transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
    -moz-transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
    -o-transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
    transition: all 1000ms cubic-bezier(0.550, 0.085, 0.000, 0.990);
    /* custom */
    -webkit-transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990);
    -moz-transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990);
    -o-transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990);
    transition-timing-function: cubic-bezier(0.550, 0.085, 0.000, 0.990);
    /* custom */
}
#pp-nav {
    position: fixed;
    z-index: 4;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
}
#pp-nav.right {
right: 1.6%;
}
#pp-nav.left {
    left: 17px;
}
.pp-section.pp-table{
    display: table;
}
.pp-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}
.pp-slidesNav{
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1;
}
.pp-slidesNav.bottom {
    bottom: 17px;
}
.pp-slidesNav.top {
    top: 17px;
}
#pp-nav ul,
.pp-slidesNav ul {
  margin: 0;
  padding: 0;
}
#pp-nav .arrow{
display:block;
width:18px;
height:18px;	
margin: 0 auto;
}
#pp-nav .ardown{
background:url('../images/sliderbottom.png') no-repeat center bottom;
}
#pp-nav .arup{
background:url('../images/sliderbottom.png') no-repeat center bottom;
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
}
#pp-nav li,
.pp-slidesNav li {
    display: block;
    width: 19px;
    height: 19px;
    margin: 7px;
    position:relative;
}
.pp-slidesNav li {
    display: inline-block;
}
#pp-nav li a,
.pp-slidesNav li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}
#pp-nav li .active span,
.pp-slidesNav .active span {
    background: #ff0000;
}
#pp-nav span,
.pp-slidesNav span {
    top: 2px;
    left: 2px;
    width: 10px;
    height: 10px;
    border: 2px solid #000;
    background: rgba(148, 149, 154, 1);
    border-radius: 50%;
    position: absolute;
    z-index: 1;
-webkit-box-shadow: 1px 1px 1px 1px rgba(125,125,124,0.5);
box-shadow: 1px 1px 1px 1px rgba(125,125,124,0.5);
}

.pp-tooltip {
position: absolute;
top: -3px;
color: #fff;
font-size: 0.7em;
font-family:'Montserrat', Arial, sans-serif;
white-space: nowrap;
max-width: 220px;
height: 25px;
line-height: 25px;
background: url('../images/labelbg.png') repeat-x;
background-size: auto 100%;
text-transform:uppercase;
padding:0px 10px;
}
.pp-tooltip:before{
content:'';
display:block;
width:10px;
height:25px;
background:url('../images/labelleft.png') no-repeat right center;
background-size: auto 100%;
position:absolute;
left:-10px;
}
.pp-tooltip:after{
content:'';
display:block;
width:12px;
height:25px;
background:url('../images/labelright.png') no-repeat left center;
background-size: auto 100%;
position:absolute;
right:-10px;
top:0px;
}
.pp-tooltip.right {
    right: 30px;
}
.pp-tooltip.left {
    left: 20px;
}
