/**
 * fullPage 2.6.6
 * https://github.com/alvarotrigo/fullPage.js
 * MIT licensed
 *
 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
 */
html.fp-enabled,
.fp-enabled body {
	overflow: hidden;
    /*Avoid flicker on slides transitions for mobile phones #336 */
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

#superContainer {
	position: relative;
    /* Touch detection for Windows 8 */
	height: 100%;
	-ms-touch-action: none;
    /* IE 11 on Windows Phone 8.1*/
	touch-action: none;
}

.fp-section {
	position: relative;
	-webkit-box-sizing: border-box;
 /* Safari<=5 Android<=3 */
	-moz-box-sizing: border-box;
 /* <=28 */
	box-sizing: border-box;
}

.fp-slide {
	float: left;
}

.fp-slide, .fp-slidesContainer {
	display: block;
	height: 100%;
}

.fp-slides {
	position: relative;
	z-index: 1;
	overflow: hidden;
	height: 100%;
	-webkit-transition: all 0.3s ease-out;
 /* Safari<=6 Android<=4.3 */
	transition: all 0.3s ease-out;
}

.fp-section.fp-table, .fp-slide.fp-table {
	display: table;
	width: 100%;
	table-layout: fixed;
}

.fp-tableCell {
	display: table-cell;
	width: 100%;
	height: 100% !important;
	vertical-align: middle;
	text-align: center
}

.fp-slidesContainer {
	position: relative;
	float: left;
	animation: fadeInLeft 1s forwards ease-in;
	-webkit-animation: fadeInLeft 1s forwards ease-in;
	-moz-animation: fadeInLeft 1s forwards ease-in;
	-ms-animation: fadeInLeft 1s forwards ease-in;
	-o-animation: fadeInLeft 1s forwards ease-in
}

.fp-controlArrow {
	position: absolute;
	top: 50%;
	z-index: 4;
	margin-top: -38px;
	width: 25px;
	height: 50px;
	border-style: solid;
	cursor: pointer;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	background-repeat: no-repeat;
}

.fp-controlArrow.fp-prev {
	left: 20px;
	background-image:url('../images/left_icon.png');
}

.fp-controlArrow.fp-next {
	right: 20px;
	background-image:url('../images/right_icon.png');
}
.template_picture .fp-controlArrow.fp-prev {
	left: 20px;
	background-image:url('../images/left_icon_gray.png');
}
.template_picture .fp-controlArrow.fp-next {
	right: 20px;
	background-image:url('../images/right_icon_gray.png');
}
.fp-scrollable {
	overflow: scroll;
}

.fp-notransition {
	-webkit-transition: none !important;
	transition: none !important;
}

#fp-nav {
	position: fixed;
	top: 50%;
	z-index: 100;
	margin-top: -32px;
	opacity: 1;
	transform: translate3d(0px, 0px, 0px);
}

#fp-nav.right {
	right: 17px;
}

#fp-nav.left {
	left: 17px;
}

.fp-slidesNav {
	position: absolute;
	left: 50%;
	z-index: 4;
	opacity: 1;
}

.fp-slidesNav.fp-slidesNav-bottom {
	position:absolute;
	bottom:0;
}

.fp-slidesNav.top {
	top: 17px;
}

#fp-nav ul,
.fp-slidesNav ul {
	margin: 0;
	padding: 0;
}

#fp-nav ul li,
.fp-slidesNav ul li {
	position: relative;
	display: block;
	margin: 8px 4px;
	width: 8px;
	height: 8px;
}

.fp-slidesNav ul li {
	display: inline-block;
}

#fp-nav ul li a,
.fp-slidesNav ul li a {
    cursor: pointer;
    display: block;
    height: 100%;
    position: relative;
    text-decoration: none;
    width: 100%;
    z-index: 1;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
    background-color: #57B547;
    border-radius: 100%;
    height: 8px;
    width: 8px;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    background-color: #ffffff;
    border: 0 none;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: absolute;
    transition: all 0.5s ease-in-out 0s;
    width: 100%;
    z-index: 1;
}

#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
 	width: 8px;
	height: 8px;
	background-color: #57B547;
}

#fp-nav ul li .fp-tooltip {
	position: absolute;
	top: -2px;
	display: block;
	overflow: hidden;
	width: 0;
	max-width: 220px;
	color: #fff;
	white-space: nowrap;
	font-size: 14px;
	font-family: arial, helvetica, sans-serif;
	opacity: 0;
}

#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
	width: auto;
	opacity: 1;
	-webkit-transition: opacity 0.2s ease-in;
	transition: opacity 0.2s ease-in;
}

#fp-nav ul li .fp-tooltip.right {
	right: 20px;
}

#fp-nav ul li .fp-tooltip.left {
	left: 20px;
}

.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell {
	height: auto !important;
}