/*!
 * fullpage 2.7.8
 * https://github.com/alvarotrigo/fullpage.js
 * mit licensed
 *
 * copyright (c) 2013 alvarotrigo.com - a project by alvaro trigo
 */
 html.fp-enabled,
 .fp-enabled 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; /* safari<=5 android<=3 */ /* <=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<=6 android<=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;
		 
		 width: 100%;
		 height: 100%;
 }
 .fp-slidescontainer {
		 float: left;
		 position: relative;
 }
 .fp-controlarrow {
		 -webkit-user-select: none; /* webkit (safari, chrome) browsers */
		 -moz-user-select: none; /* mozilla browsers */
		 -khtml-user-select: none; /* webkit (konqueror) browsers */
		 -ms-user-select: none; /* ie10  */
		 position: absolute;
		 z-index: 4;
		 top: 50%;
		 cursor: pointer;
		 width: 0;
		 height: 0;
		 border-style: solid;
		 margin-top: -38px;
		 -webkit-transform: translate3d(0,0,0);
		 transform: translate3d(0,0,0);
 }
 .fp-controlarrow.fp-prev {
		 background-position: -176px -197px;
                width: 54px;
                height: 54px;
                display: block;
                position: absolute;
                left: 90px;
								top: 570px;
								border: 0;
								margin-top: 0;
								z-index: 11111;
							

 }

 .fp-controlarrow.fp-prev:hover {
	background-position: -174px -266px;
}
 .fp-controlarrow.fp-next {
	background-position: -281px -197px;
	width: 54px;
	height: 54px;
	display: block;
	position: absolute;
	right: 20px;
	top: 570px;
	border: 0;
	margin-top: 0;
	z-index: 1111;
 }
 .fp-controlarrow.fp-prev:hover {
	background-position: -279px -266px;
}

 .fp-scrollable {
		 overflow: scroll;
 }
 .fp-notransition {
		 -webkit-transition: none !important;
		 transition: none !important;
 }
 #fp-nav {
		 position: fixed;
		 z-index: 100;
		 margin-top: -32px;
		 top: 50%;
		 opacity: 1;
		 -webkit-transform: translate3d(0,0,0);
 }
 #fp-nav.right {
		 right: 17px;
 }
 #fp-nav.left {
		 left: 17px;
 }
 .fp-slidesnav{
		 position: absolute;
		 z-index: 4;
		 left: 50%;
		 opacity: 1;
 }

 .section6 .fp-slidesnav {
	 opacity: 0;
 }
 .fp-slidesnav.bottom {
		 bottom: 130px;
 }
 .fp-slidesnav.top {
		 top: 17px;
 }
 #fp-nav ul,
 .fp-slidesnav ul {
	 margin: 0;
	 padding: 0;
 }
 #fp-nav ul li,
 .fp-slidesnav ul li {
		 display: block;
		 width: 81px;
		 height: 13px;
		 
		 position:relative;
 }
 .fp-slidesnav ul li {
		 display: inline-block;
 }
 #fp-nav ul li a,
 .fp-slidesnav ul li a {
		 display: block;
		 position: relative;
		 z-index: 1;
		 width: 100%;
		 height: 100%;
		 cursor: pointer;
		 text-decoration: none;
 }
 #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{
		 height: 13px;
		 width: 81px;
		 background: url(/uploads/image/cimg/ind-icon.png) no-repeat -4px -506px;
	}
 #fp-nav ul li a span,
 .fp-slidesnav ul li a span {
		 position: absolute;
		 z-index: 1;
		 width: 81px;
     height: 13px;
		 border: 0;
		 background: url(/uploads/image/cimg/ind-icon.png) no-repeat -4px -529px;
 }

 #fp-nav ul li:hover a span,
 .fp-slidesnav ul li:hover a span{
		 width: 81px;
		 height: 13px;
		 opacity: 0.8;
 }
 #fp-nav ul li .fp-tooltip {
		 position: absolute;
		 top: -2px;
		 color: #fff;
		 font-size: 14px;
		 font-family: arial, helvetica, sans-serif;
		 white-space: nowrap;
		 max-width: 220px;
		 overflow: hidden;
		 display: block;
		 opacity: 0;
		 width: 0;
		 cursor: pointer;
 }
 #fp-nav ul li:hover .fp-tooltip,
 #fp-nav.fp-show-active a.active   .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 {
		 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;
 }