';$body.appendChild($modal);$modalInner = $modal.querySelector('.inner');$modalImage = $modal.querySelector('img');$modalImage.addEventListener('load', function() {$modalImage.style.setProperty('--natural-width', $modalImage.naturalWidth + 'px');$modalImage.style.setProperty('--natural-height', $modalImage.naturalHeight + 'px');$modal.classList.add('done');setTimeout(function() {if (!$modal.classList.contains('visible'))return;$modal.classList.add('loaded');setTimeout(function() {$modal.classList.remove('switching', 'from-left', 'from-right', 'done');}, _this.delay);}, ($modal.classList.contains('switching') ? 0 : _this.delay));});$modalImage.addEventListener('contextmenu', function() {if (_this.protect)event.preventDefault();}, true);$modalImage.addEventListener('dragstart', function() {if (_this.protect)event.preventDefault();}, true);$modalCaption = $modal.querySelector('.caption');$modalNext = $modal.querySelector('.next');$modalPrevious = $modal.querySelector('.previous');switch (client.browser) {case 'safari':case 'firefox':$modalInner.style.boxShadow = 'none';break;default:break;}$modal.show = function(index, offset, direction) {var item,i, j, found;if (_this.locked)return;if (typeof index != 'number')index = _this.current;if (typeof offset == 'number') {found = false;j = 0;for (j = 0; j < _this.$links.length; j++) {index += offset;if (index < 0)index = _this.$links.length - 1; else if (index >= _this.$links.length)index = 0;if (index == _this.current)break;item = _this.$links.item(index);if (!item)break;if (item.dataset.lightboxIgnore != '1') {found = true;break;}}if (!found)return;} else {if (index < 0)index = _this.$links.length - 1; else if (index >= _this.$links.length)index = 0;if (index == _this.current)return;item = _this.$links.item(index);if (!item)return;if (item.dataset.lightboxIgnore == '1')return;}if (client.mobile)_this.zoomIntervalId = setInterval(function() {_this.zoomHandler();}, 250);_this.locked = true;if (_this.current !== null) {$modal.classList.remove('loaded');$modal.classList.add('switching');switch (direction) {case -1:$modal.classList.add('from-left');break;case 1:$modal.classList.add('from-right');break;default:break;}setTimeout(function() {_this.current = index;$modalImage.src = item.href;if (_this.captions)$modalCaption.innerHTML = item.querySelector('[data-caption]').dataset.caption;setTimeout(function() {$modal.focus();_this.locked = false;}, _this.delay);}, _this.delay);} else {_this.current = index;$modalImage.src = item.href;if (_this.captions)$modalCaption.innerHTML = item.querySelector('[data-caption]').dataset.caption;$modal.classList.add('visible');setTimeout(function() {$modal.focus();_this.locked = false;}, _this.delay);}};$modal.hide = function() {if (_this.locked)return;if (!$modal.classList.contains('visible'))return;_this.locked = true;$modal.classList.remove('visible');$modal.classList.remove('loaded');$modal.classList.remove('switching', 'from-left', 'from-right', 'done');clearInterval(_this.zoomIntervalId);setTimeout(function() {$modalImage.src = '';_this.locked = false;$body.focus();_this.current = null;}, _this.delay);};$modal.next = function(direction) {$modal.show(null, 1, direction);};$modal.previous = function(direction) {$modal.show(null, -1, direction);};$modal.first = function() {$modal.show(0);};$modal.last = function() {$modal.show(_this.$links.length - 1);};$modalInner.addEventListener('touchstart', function(event) {if (!_this.navigation)return;if (event.touches.length > 1)return;dragStart = {x: event.touches[0].clientX,y: event.touches[0].clientY};});$modalInner.addEventListener('touchmove', function(event) {var dx, dy;if (!_this.navigation)return;if (!dragStart|| event.touches.length > 1)return;dragEnd = {x: event.touches[0].clientX,y: event.touches[0].clientY};dx = dragStart.x - dragEnd.x;dy = dragStart.y - dragEnd.y;if (Math.abs(dx) < 50)return;event.preventDefault();if (dx > 0)$modal.next(-1); else if (dx < 0)$modal.previous(1);});$modalInner.addEventListener('touchend', function(event) {if (!_this.navigation)return;dragStart = null;dragEnd = null;});$modal.addEventListener('click', function(event) {if (event.target&& (event.target.tagName == 'A' || event.target.tagName == 'SPOILER-TEXT'))return;$modal.hide();});$modal.addEventListener('keydown', function(event) {if (!$modal.classList.contains('visible'))return;switch (event.keyCode) {case 39:case 32:if (!_this.navigation)break;event.preventDefault();event.stopPropagation();$modal.next();break;case 37:if (!_this.navigation)break;event.preventDefault();event.stopPropagation();$modal.previous();break;case 36:if (!_this.navigation)break;event.preventDefault();event.stopPropagation();$modal.first();break;case 35:if (!_this.navigation)break;event.preventDefault();event.stopPropagation();$modal.last();break;case 27:event.preventDefault();event.stopPropagation();$modal.hide();break;}});$modalNext.addEventListener('click', function(event) {$modal.next();});$modalPrevious.addEventListener('click', function(event) {$modal.previous();});this.$modal = $modal;this.$modalImage = $modalImage;this.$modalCaption = $modalCaption;this.$modalNext = $modalNext;this.$modalPrevious = $modalPrevious;};lightboxGallery.prototype.show = function(href, config) {this.$links = config.$links;this.navigation = config.navigation;this.captions = config.captions;this.mobile = config.mobile;this.mobileNavigation = config.mobileNavigation;this.scheme = config.scheme;this.protect = config.protect;this.$modal.classList.remove('light', 'dark');switch (this.scheme) {case 'light':this.$modal.classList.add('light');break;case 'dark':this.$modal.classList.add('dark');break;case 'auto':if (window.matchMedia('(prefers-color-scheme: light)').matches)this.$modal.classList.add('light'); else this.$modal.classList.add('dark');break;}if (this.navigation) {this.$modalNext.style.display = '';this.$modalPrevious.style.display = '';if (client.mobile&& !this.mobileNavigation) {this.$modalNext.style.display = 'none';this.$modalPrevious.style.display = 'none';}} else {this.$modalNext.style.display = 'none';this.$modalPrevious.style.display = 'none';}if (this.captions)this.$modalCaption.style.display = ''; else this.$modalCaption.style.display = 'none';if (this.protect) {this.$modalImage.style.WebkitTouchCallout = 'none';this.$modalImage.style.userSelect = 'none';} else {this.$modalImage.style.WebkitTouchCallout = '';this.$modalImage.style.userSelect = '';}if (client.mobile && !this.mobile)return;this.$modal.show(href);};lightboxGallery.prototype.zoomHandler = function() {var threshold = window.matchMedia('(orientation: portrait)').matches ? 50 : 100;if (window.outerWidth > window.innerWidth + threshold)this.$modal.classList.add('zooming'); else this.$modal.classList.remove('zooming');};var _lightboxGallery = new lightboxGallery;_lightboxGallery.init({id: 'gallery06',navigation: true,captions: false,mobile: true,mobileNavigation: true,scheme: 'dark',protect: true,});_lightboxGallery.init({id: 'gallery08',navigation: true,captions: false,mobile: true,mobileNavigation: true,scheme: 'dark',protect: true,});_lightboxGallery.init({id: 'gallery04',navigation: true,captions: false,mobile: true,mobileNavigation: true,scheme: 'dark',protect: true,});_lightboxGallery.init({id: 'gallery07',navigation: true,captions: false,mobile: true,mobileNavigation: true,scheme: 'dark',protect: true,});_lightboxGallery.init({id: 'gallery09',navigation: true,captions: false,mobile: true,mobileNavigation: true,scheme: 'dark',protect: true,});_lightboxGallery.init({id: 'gallery10',navigation: true,captions: false,mobile: true,mobileNavigation: true,scheme: 'dark',protect: true,});_lightboxGallery.init({id: 'gallery11',navigation: true,captions: false,mobile: true,mobileNavigation: true,scheme: 'dark',protect: true,});_lightboxGallery.init({id: 'gallery12',navigation: true,captions: false,mobile: true,mobileNavigation: true,scheme: 'dark',protect: true,});_lightboxGallery.init({id: 'gallery01',navigation: true,captions: false,mobile: true,mobileNavigation: true,scheme: 'dark',protect: true,});_lightboxGallery.init({id: 'gallery03',navigation: true,captions: false,mobile: true,mobileNavigation: true,scheme: 'dark',protect: true,});_lightboxGallery.init({id: 'gallery02',navigation: true,captions: false,mobile: true,mobileNavigation: true,scheme: 'dark',protect: true,});(function() {new slideshowBackground('slideshow06', {target: '#slideshow06 .bg',wrapper: '#slideshow06 .content',wait: 0,defer: true,navigation: true,order: 'default',preserveImageAspectRatio: false,transition: {style: 'instant',speed: 1000,delay: false,resume: false,},images: [{src: 'assets/images/slideshow06-696671d5.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-41e14c59.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-cd2c92f3.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-684e66a9.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-3ef0d2bb.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-5974ab51.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-c3771335.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-2de94b4e.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-56e8e2e9.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-69b84e11.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-2a7f25f4.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-de0622f6.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-d8e0a1be.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-7a953625.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-b1f9348e.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-6553a12a.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-f08ca1be.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-07e3a15b.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-1babd4c6.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-b1488e87.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-6eccddd5.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-c6fdd459.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-a413fc7f.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-b3f345a0.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-d2df1317.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-96cff157.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-8ac1ea85.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-fef9e62e.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-d72af235.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-9c2d1da6.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-a404567c.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-24e98d28.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-37f15838.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-0b8317da.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-7da3141b.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-3758d7b5.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-f7d4a99c.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-b0c3c705.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-0687e8a6.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-c7c8f1b7.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-018538ab.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-70c17d16.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-a0e78dbf.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-9a645a2a.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-96c4e72e.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-3bab64d3.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-43b9463d.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-f77779d3.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-585a9e34.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-3cf5f17d.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-9fcff6ca.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-3ed3255e.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-0e485626.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-c400b4db.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-05a72034.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-fcf3a044.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-b4d0d541.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-f56be425.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-2a6d4b56.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-1e1ac1d0.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-d80d3b4e.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-c4d04eeb.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-d6469750.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-edffa108.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-e4114666.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-9d0f921f.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-ded29879.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-c29fa0aa.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-4b683c73.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-954c3852.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-6c9bee14.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-c1ed448f.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-9f72cfcb.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-99c00330.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-891c9871.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-2345775e.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow06-eaf428f4.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},]});})();(function() {new slideshowBackground('slideshow09', {target: '#slideshow09 .bg',wrapper: '#slideshow09 .content',wait: 0,defer: false,navigation: true,order: 'default',preserveImageAspectRatio: true,transition: {style: 'instant',speed: 1000,delay: false,resume: false,},images: [{src: 'assets/images/slideshow09-c68555b7.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow09-d8c4fd9e.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow09-7bf9f21a.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow09-36f813de.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},]});})();(function() {new slideshowBackground('slideshow11', {target: '#slideshow11 .bg',wrapper: '#slideshow11 .content',wait: 0,defer: false,navigation: true,order: 'default',preserveImageAspectRatio: true,transition: {style: 'instant',speed: 1000,delay: false,resume: false,},images: [{src: 'assets/images/slideshow11-84fd8e35.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow11-81d7d685.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow11-b01052d6.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow11-741fd907.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow11-22e7f837.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow11-26918073.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow11-ae3bf7d6.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},]});})();(function() {new slideshowBackground('slideshow05', {target: '#slideshow05 .bg',wrapper: '#slideshow05 .content',wait: 0,defer: false,navigation: true,order: 'default',preserveImageAspectRatio: true,transition: {style: 'instant',speed: 1000,delay: false,resume: false,},images: [{src: 'assets/images/slideshow05-d828635a.gif?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow05-8f5d385e.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow05-9a6a6628.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},]});})();(function() {new slideshowBackground('slideshow04', {target: '#slideshow04 .bg',wrapper: '#slideshow04 .content',wait: 0,defer: false,navigation: true,order: 'default',preserveImageAspectRatio: true,transition: {style: 'instant',speed: 500,delay: false,resume: false,},images: [{src: 'assets/images/slideshow04-63a36eea.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow04-2372053f.gif?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow04-051ac576.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow04-020e6651.gif?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow04-f2ea003f.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},]});})();(function() {new slideshowBackground('slideshow10', {target: '#slideshow10 .bg',wrapper: '#slideshow10 .content',wait: 0,defer: false,navigation: true,order: 'default',preserveImageAspectRatio: true,transition: {style: 'instant',speed: 1000,delay: false,resume: false,},images: [{src: 'assets/images/slideshow10-72b47321.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow10-9c5b484a.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow10-744f6fd5.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow10-d9753321.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow10-a23cc720.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow10-47cb1dff.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},]});})();(function() {new slideshowBackground('slideshow07', {target: '#slideshow07 .bg',wrapper: '#slideshow07 .content',wait: 0,defer: false,navigation: true,order: 'default',preserveImageAspectRatio: true,transition: {style: 'instant',speed: 1000,delay: false,resume: false,},images: [{src: 'assets/images/slideshow07-c9f4d364.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow07-202c2897.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow07-8d23e22a.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},]});})();(function() {new slideshowBackground('slideshow08', {target: '#slideshow08 .bg',wrapper: '#slideshow08 .content',wait: 0,defer: false,navigation: true,order: 'default',preserveImageAspectRatio: true,transition: {style: 'instant',speed: 1000,delay: false,resume: false,},images: [{src: 'assets/images/slideshow08-b4a6f046.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow08-246c327c.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow08-52da4578.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow08-9b1ef974.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow08-cd773aa5.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow08-7d7fd244.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},]});})();(function() {new slideshowBackground('slideshow01', {target: '#slideshow01 .bg',wrapper: '#slideshow01 .content',wait: 0,defer: true,navigation: true,order: 'default',preserveImageAspectRatio: true,transition: {style: 'instant',speed: 5000,delay: false,resume: false,},images: [{src: 'assets/images/slideshow01-9f82c696.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-cc7fa326.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-cc950e7e.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-076ef3b1.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow01-32e3a45c.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},]});})();(function() {new slideshowBackground('slideshow02', {target: '#slideshow02 .bg',wrapper: '#slideshow02 .content',wait: 0,defer: true,navigation: true,order: 'default',preserveImageAspectRatio: true,transition: {style: 'instant',speed: 1000,delay: false,resume: false,},images: [{src: 'assets/images/slideshow02-fb1d096e.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-037a0669.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-a147504a.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-83c3e25d.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-31e69cd3.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-18619b99.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-e44adce7.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-153fac2c.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-fda7299c.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-9a7e3c49.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-20fa72e5.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-dbc05457.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow02-ce3ea187.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},]});})();(function() {new slideshowBackground('slideshow03', {target: '#slideshow03 .bg',wrapper: '#slideshow03 .content',wait: 0,defer: true,navigation: true,order: 'default',preserveImageAspectRatio: false,transition: {style: 'instant',speed: 500,delay: false,resume: false,},images: [{src: 'assets/images/slideshow03-a704fa11.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow03-e6fc703a.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow03-0fa74a52.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow03-1133a67c.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow03-95b5efd3.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow03-77f5cde1.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},{src: 'assets/images/slideshow03-157b6338.jpg?v=933e525e',position: 'center',motion: 'none',speed: 2,caption: 'Untitled',},]});})();ready.run();})();