<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**

 * fullPage 2.4.6

 * https://github.com/alvarotrigo/fullPage.js

 * MIT licensed

 *

 * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo

 */

html, body {

    margin: 0;

    padding: 0;

    overflow:hidden;



    /*Avoid flicker on slides transitions for mobile phones #336 */

    -webkit-tap-highlight-color: rgba(0,0,0,0);

}

#superContainer {

    height: 100%;

    position: relative;



    /* Touch detection for Windows 8 */

    -ms-touch-action: none;



    /* IE 11 on Windows Phone 8.1*/

    touch-action: none;

}

.fp-section {

    position: relative;

    -webkit-box-sizing: border-box; /* Safari&lt;=5 Android&lt;=3 */

    -moz-box-sizing: border-box; /* &lt;=28 */

    box-sizing: border-box;

}

.fp-slide {

    float: left;

}

.fp-slide, .fp-slidesContainer {

    height: 100%;

    display: block;

}

.fp-slides {

    z-index:1;

    height: 100%;

    overflow: hidden;

    position: relative;

    -webkit-transition: all 0.3s ease-out; /* Safari&lt;=6 Android&lt;=4.3 */

    transition: all 0.3s ease-out;

}

.fp-section.fp-table, .fp-slide.fp-table {

    display: table;

    table-layout:fixed;

    width: 100%;

}

.fp-tableCell {

    display: table-cell;

    vertical-align: middle;

    width: 100%;

    height: 100% !important;

}

.fp-slidesContainer {

    float: left;

    position: relative;
	top:0px;

}

.fp-controlArrow {

    position: absolute;

    z-index: 4;

    cursor: pointer;

    width: 0;

    height: 0;

    border-style: solid;

    margin-top:-100px;

}

.fp-controlArrow.fp-prev {
    width: 101px;
    height:37px;
	position:absolute;
	left:50%;
	border-bottom:10%;
	margin-left:-120px;
    text-align:center;
    padding-top:17px;
	border:none;
	transition:all 500ms ease-in-out 0;
    background:url(../images/an_38.png) no-repeat center;

}
.fp-controlArrow.fp-prev:hover {
	transform:rotate(360deg);
	-ms-transform:rotate(360deg);
	-o-transform:rotate(360deg);
	-moz-transform:rotate(360deg);
	-webkit-transform:rotate(360deg);
    background:url(../images/an1_38.png) no-repeat center;

}
.fp-controlArrow.fp-next {

    width: 101px;
    height:37px;
	position:absolute;
	right:50%;
	border-bottom:10%;
	margin-right:-120px;
    text-align:center;
    padding-top:17px;
	border:none;
	transition:all 500ms ease-in-out 0;
    background:url(../images/an_39.png) no-repeat center;

}
.fp-controlArrow.fp-next:hover {
	transform:rotate(360deg);
	-ms-transform:rotate(360deg);
	-o-transform:rotate(360deg);
	-moz-transform:rotate(360deg);
	-webkit-transform:rotate(360deg);
    background:url(../images/an1_39.png) no-repeat center;}
.fp-scrollable {

    overflow: scroll;



}

.fp-notransition {

    -webkit-transition: none !important;

    transition: none !important;

}

#fp-nav {

    position: fixed;

    z-index: 10000;

    margin-top: -32px;

    top: 50%;

    opacity: 1;

}



#fp-nav.left {

    left: 17px;

}

.fp-slidesNav{

    position: absolute;

    z-index: 4;

    left: 50%;

    opacity: 1;

}

.fp-slidesNav.bottom {

    bottom: 17px;

}

.fp-slidesNav.top {

    top: 17px;

}


.fp-slidesNav ul {

  margin: 0;

  padding: 0;

}


.fp-slidesNav ul li {

    display: block;

    width: 14px;

    height: 13px;

    margin: 7px;

    position:relative;

}

.fp-slidesNav ul li {

    display: inline-block;

}


.fp-slidesNav ul li a {

    display: block;

    position: relative;

    z-index: 1;

    width: 100%;

    height: 100%;

    cursor: pointer;

    text-decoration: none;

}


.fp-slidesNav ul li a.active span {

	margin-left: -2px;

	width: 8px;

    height: 8px;

	background: 0 0;

    border: #fff solid 1px;

}



.fp-slidesNav ul li a span {

    top: 2px;

    left: 2px;

    width: 6px;

    height: 6px;

    background: #fff;

    border-radius: 50%;

    position: absolute;

    z-index: 1;

}



#fp-nav ul li:hover .fp-tooltip {

    -webkit-transition: opacity 0.2s ease-in;

    transition: opacity 0.2s ease-in;

    width: auto;

    opacity: 1;

}

#fp-nav ul li .fp-tooltip.right {

    left: 20px;

}

#fp-nav ul li .fp-tooltip.left {

    left: 20px;

}

</pre></body></html>