/*html5*/
article,aside,dialog,footer,header,section,footer,nav,figure,menu{display:block}



  
/*****************************************/
/* svpicture */
/*****************************************/

.svpicture {
	margin: 0 auto;
	position: relative;
	margin-bottom: 40px;
	max-width: 100%;
}

.svpicture-small {
	width: 650px;
	height: 290px;
}

.svpicture-fullwidth {
	width: 100%;
	height: 600px;
	margin-bottom: 0;
	background: #333;
}

.svpicture-transparent {
	width: 900px;
	height: 500px;
}

.svpicture > ul {
	width: 100%;
	max-width: 100%;
	height: 100%;
	position: relative;
	list-style: none;
	padding: 0;
	margin: 0 auto;
}

.svpicture-small > ul {
	width: 450px;
}

.svpicture-fullwidth > ul {
	/*overflow: hidden;*/
}

.svpicture-transparent > ul {
	width: 112px;
}

.svpicture li {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	opacity: 0;
	z-index: 999;
}

.svpicture-fullwidth li {
	overflow: hidden;
}

.svpicture .current {
	opacity: 1;
	pointer-events: auto;
	z-index: 1000;
}

.svpicture li img {
	display: block;
	max-width: 100%;
}

.svpicture-fullwidth li img {
	min-width: 100%;
	max-width: none;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.svpicture nav {
    display:block;
}

.svpicture nav a {
	position: absolute;
	width: 60px;
	height: 60px;
	color: skyblue;
	outline: none;
	overflow: hidden;
	text-align: center;
	line-height: 200px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.svpicture-small nav a.prev,
.svpicture-transparent nav a.prev {
	left: 0px;
}

.svpicture-small nav a.next,
.svpicture-transparent nav a.next {
	right: 0px;
}

.svpicture-fullwidth nav a {
	top: 100%;
	margin-top: 25px;
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
	z-index: 999;
}

.svpicture-fullwidth nav a.prev {
	margin-left: 20px;
}

.svpicture-fullwidth nav a.next {
	left: 100%;
	margin-left: -80px;
}

.svpicture nav a::before {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	line-height: 60px;
	height: 100%;
	font-family: 'fontawesome';
	font-size: 60px;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	opacity: 0.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.svpicture nav a:hover::before {
	opacity: 1;
}

a.prev::before {
	content: "\f104";
}

a.next::before {
	content: "\f105";
}

@media screen and (max-width: 35.5em) {
	.svpicture-small nav a {
		top: 100%;
		margin-top: 10px;
		-webkit-transform: translateY(0%);
		transform: translateY(0%);
	}

	.svpicture-small nav a.prev {
		left: 50%;
		margin-left: -80px;
	}

	.svpicture-small nav a.next {
		margin-left: 20px;
		right: auto;
		left: 50%;
	}
}


/*****************************************/
/* slide */
/*****************************************/

#slide {
    width: 100%;
    overflow: hidden;
}
#slide .slidesections, .section {
}
#slide, .sections {
    height:20em;
    position: relative;
}
#slide .section {
    background-color: #000;
    background-size: cover;
	background-position: 50% 50%;
    text-align: center;
    color: white;
}



/*****************************************/
/* Swipe */
/*****************************************/

.fxSwipe .navOutNext {
	-webkit-animation: decreaseHeight 0.8s forwards ease-in-out;
	animation: decreaseHeight 0.8s forwards ease-in-out;
}

.fxSwipe .navInNext {
	-webkit-animation: show 0.8s forwards ease-in-out;
	animation: show 0.8s forwards ease-in-out;
}

.fxSwipe .navOutPrev {
	-webkit-animation: hide 0.8s forwards ease-in-out;
	animation: hide 0.8s forwards ease-in-out;
}

.fxSwipe .navInPrev {
	z-index: 1001;
	opacity: 1;
	-webkit-animation: increaseHeight 0.8s forwards ease-in-out;
	animation: increaseHeight 0.8s forwards ease-in-out;
}

@-webkit-keyframes decreaseHeight {
	from {} /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
	to {
		height: 0;
	}
}

@keyframes decreaseHeight {
	from {} /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
	to {
		height: 0;
	}
}

@-webkit-keyframes show {
	0% {
		opacity: 0;
	}
	1%,100% {
		opacity: 1;
	}
}

@keyframes show {
	0% {
		opacity: 0;
	}
	1%,100% {
		opacity: 1;
	}
}

@-webkit-keyframes hide {
	0%,99% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes hide {
	0%,99% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@-webkit-keyframes increaseHeight {
	from {
		height: 0;
	}
	to {
		height: 100%;
	}
}

@keyframes increaseHeight {
	from {
		height: 0;
	}
	to {
		height: 100%;
	}
}


/*****************************************/
/* page-bulls */
/*****************************************/

 .page-bulls {
	position:fixed;
	top:50%;
	right:0;
	z-index:20;
	margin-top:-55px
}
.page-bulls nav {
	text-align:right;
	margin-right:20px
}
.page-bulls nav a {
	display:block;
	text-decoration:none;
	position:relative;
	width:20px;
	opacity:.6;
	height:28px;
	text-align:center
}
.page-bulls nav a span {
	font-family:"Open Sans",sans-serif;
	font-size:14px;
	font-weight:100;
	display:block;
	position:absolute;
	top:50%;
	right:0;
	opacity:0;
	white-space:nowrap;
	padding:8px 8px 8px 16px;
	border-radius:3px 0 0 3px;
	background:rgba(0,0,0,.76);
	color:#4cff00;
	margin-top:-14px;
	line-height:1em;
	-webkit-transition:all 300ms;
	-moz-transition:all 300ms;
	-ms-transition:all 300ms;
	-o-transition:all 300ms;
	transition:all 300ms
}
.page-bulls nav a span:before {
	content:'';
	display:block;
	position:absolute;
	right:-30px;
	top:50%;
	margin-top:-15px;
	border:15px solid transparent;
	border-left-color:rgba(0,0,0,.76)
}
.page-bulls nav a:after {
	position:absolute;
	content:'';
	display:inline-block;
	width:10px;
	height:10px;
	border-radius:50%;
	background:rgba(0,0,0,.5);
	margin-left:-5px;
	margin-top:-5px;
	top:50%;
	left:50%
}
.page-bulls nav a:hover {
	opacity:1
}
.page-bulls nav a:hover span {
	right:36px;
	opacity:1
}
.page-bulls nav a.active {
	color:#333;
	opacity:1
}
.page-bulls nav a.active:after {
	background:#4cff00;
	box-shadow:0 0 0 5px rgba(255,255,255,.2);
	border:1px solid transparent
}




/*****************************************/
/* pt-page */
/*****************************************/

.pt-perspective {
	position: relative;
	width: 100%;
	height: 100%;
	-webkit-perspective: 1200px;
	-moz-perspective: 1200px;
	perspective: 1200px;
}

    .pt-perspective image {
        border-color: #949494;
        border-width: 1px;
        border-style: solid;
        width: 10em;
        height: 6em;
    }

.pt-page {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	visibility: hidden;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.pt-page-current,
.no-js .pt-page {
	visibility: visible;
	z-index: 1;
}

.no-js body {
	overflow: auto;
}

.pt-page-ontop {
	z-index: 999;
}



/* Triggers (menu and button) */

.pt-triggers {
    text-align:center;
	position: absolute;
	width: 20em;
	z-index: 999999;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%); 
	transform: translateX(-50%);
    bottom:0;
}

.no-js .pt-triggers {
	display: none;
}

.pt-triggers .dl-menuwrapper button,
.pt-touch-button {
	border: none;
	font-size: 1em;
	font-weight: 700;
	text-transform: uppercase;
	margin: 10px 0 20px;
	padding: 0px 20px;
	line-height: 50px;
	height: 50px;
	letter-spacing: 1px;
	width: 100%;
	cursor: pointer;
	display: block;
	font-family: 'Lato', Calibri, Arial, sans-serif;
	box-shadow: 0 3px 0 rgba(0,0,0,0.1);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pt-touch-button {
	background: #fff;
	color: #aaa;
}

.pt-triggers .dl-menuwrapper button {
	margin-bottom: 0;
}

.pt-touch-button:active {
	box-shadow: 0 1px 0 rgba(0,0,0,0.1);
}

.touch .pt-triggers .dl-menuwrapper {
	display: none;
}

.pt-message {
	display: none;
	position: absolute;
	z-index: 99999;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #da475c;
	color: #fff;
	text-align: center;
}

.pt-message p {
	margin: 0;
	line-height: 60px;
	font-size: 26px;
}

.no-cssanimations .pt-message {
	display: block;
}

@media screen and (max-width: 47.4375em) {
	.pt-page h1 {
		font-size: 3em;
	}

	.pt-triggers .dl-menuwrapper {
		display: none;
	}
}

@media screen and (max-height: 45.9em) {
	.pt-triggers .dl-menuwrapper li a {
		padding-top: 2px;
		padding-bottom: 2px;
	}
	.pt-triggers .dl-menuwrapper li.dl-back:after, .dl-menuwrapper li > a:not(:only-child):after {
		line-height: 24px;
	}
}

@media screen and (max-height: 38em) { 
	.pt-triggers .dl-menuwrapper {
		display: none;
	}
}


