/*!
 * pagepiling.js 1.5.4
 *
 * https://github.com/alvarotrigo/pagePiling.js
 * @license MIT licensed
 *
 * Copyright (C) 2016 alvarotrigo.com - A project by Alvaro Trigo
 */
html, body {
    overflow:hidden;
    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:absolute;
    width:100%;
}
.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: 11;
    top: 50%;
    opacity: 1;
}
#pp-nav.right {
    right: 20px;
}
#pp-nav.left {
    left: 0;
}
.pp-section.pp-table{
    display: table;
}
.pp-tableCell {
    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 li,
.pp-slidesNav li {
    display: block;
    right: 0;
    width:60px;
    height:20px;
    margin:30px 0;
    position:relative;
    vertical-align: middle;
    -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;
    /* text-shadow: 0 0 1px #000; */
    /* border: 5px solid #000; */
    /* background-color: #fcfcf6; */
}
.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 {
    right: 10;
    background: #EE4125;
    text-shadow: 0 0 1px #000;
    border-bottom: 0.1px solid #fcfcf6;
    width: 5.5vw;
    -webkit-transform: translate3d(-30px, 0px, 0px);
    -moz-transform: translate3d(-30px, 0px, 0px);
    -ms-transform: translate3d(-30px, 0px, 0px);
    transform: translate3d(-30px, 0px, 0px);
}
#pp-nav li .active span.active,
.pp-slidesNav .active span.active {
		-webkit-transform: translate3d(-30px, 0px, 0px);
		-moz-transform: translate3d(-30px, 0px, 0px);
		-ms-transform:translate3d(-30px, 0px, 0px);
		transform: translate3d(-30px, 0px, 0px);
}
#pp-nav span,.pp-slidesNav span {
    width: 50px;
    border-radius: 0%;
    position: fixed;
    margin: 0;
    right: 0;
    opacity: 0.9;
    transition-property: background,width;
    transition-duration: 1s;
    transition-timing-function: ease;
    background-color: #171715;
    height: 10px;
    border-bottom: 0.1px solid #fcfcf6;
    /*border: 3px solid #000; */
    /* background-color: #fcfcf6; */
    /* z-index: 0; */
    /* padding: 3px 0; */
    /* height: 15px; */
    /* border: none; */
    /* background: rgba(0, 0, 0, 0); */
}
.pp-tooltip {
    position: absolute;
	display: block;
	right:100;
    top:0;
    color: #171715;
    font-size: 30px;
	font-family:"Helvetica", sans-serif,"Book Antiqua","Arial";
	text-shadow: 0 0 1px #000;
	max-width: 500px;
	padding-right: 50px;
	    -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;
}
.pp-tooltip:hover {
		-webkit-transform: translate3d(-30px, 0px, 0px);
		-moz-transform: translate3d(-30px, 0px, 0px);
		-ms-transform:translate3d(-30px, 0px, 0px);
		transform: translate3d(-30px, 0px, 0px);
}
.pp-tooltip.right {
    right: 20px;
}
.pp-tooltip.left {
    left: 20px;
}
.pp-scrollable{
    overflow-y: scroll;
    height: 100%;
}