/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */

.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  

  --pswp-root-z-index: 100000;
  
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}


/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
	display: block;
}

.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
	cursor: zoom-out;
}


/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}

.pswp__hidden {
	display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}


/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
	outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}


/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}


/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}


/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}
.pswp__dynamic-caption {
  color: #fff;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  transition: opacity 120ms linear !important; /* override default */
}

.pswp-caption-content {
  display: none;
}

.pswp__dynamic-caption a {
  color: #fff;
}

.pswp__dynamic-caption--faded {
  opacity: 0 !important;
}

.pswp__dynamic-caption--aside {
  width: auto;
  max-width: 300px;
  padding: 20px 15px 20px 20px;
  margin-top: 70px;
}

.pswp__dynamic-caption--below {
  width: auto;
  max-width: 700px;
  padding: 15px 0 0;
}

.pswp__dynamic-caption--on-hor-edge {
  padding-left: 15px;
  padding-right: 15px;
}

.pswp__dynamic-caption--mobile {
  width: 100%;
  background: rgba(0,0,0,0.5);
  padding: 10px 15px;

  right: 0;
  bottom: 0;

  /* override styles that were set via JS.
    as they interfere with size measurement */
  top: auto !important; 
  left: 0 !important;
}.nav-wrap{margin:0 auto;overflow:visible}.nav-wrap h1,.nav-wrap h2,.nav-wrap h3,.nav-wrap h4,.nav-wrap h5,.nav-wrap h6{margin-bottom:0}.nav-content{position:relative}.contained-bar{margin:0 auto}.site-title a:hover{text-decoration:none}html:not(.menulab-js) .navbar ul,html:not(.menulab-js) .navbar li{display:block!important;position:relative!important;margin:0!important;padding:0!important;left:0!important;right:0!important}html:not(.menulab-js) .navbar .ml-arrows li::after{display:none!important}html:not(.menulab-js) .navbar a{text-align:left!important}.navbar{float:none;max-height:0;overflow:hidden;transition:max-height .5s;margin:0;padding:0;list-style-type:none}.navbar ul{margin:0}.navbar li>ul li{white-space:nowrap}.navbar li{list-style-type:none;display:block;transition:background-color .3s ease}.navbar li a{display:block;text-decoration:none;padding:3px .8em;transition:color .3s ease}.navbar li.has-dropdown>.ml-dropdown{padding-left:20px}.navbar .ml-arrows .has-dropdown::after{top:12px}.ml-dropdown,.ml-dropdown *{margin:0;padding:0;list-style:none}.ml-dropdown li{position:relative}.ml-dropdown ul{display:none;top:100%;right:0;left:auto;z-index:99}html:not(.touch-stripped) .ml-dropdown li:hover>ul{display:block}html.touch-stripped .ml-dropdown li.dd-open>ul{display:block}.ml-dropdown a{display:block;position:relative}.ml-dropdown ul ul{top:0;left:100%}.expand{max-height:100vh}.ml-arrows .has-dropdown:after{content:'';position:absolute;right:6px;margin-top:0;height:0;width:0;border:5px solid transparent}.ml-arrows ul .ml-dropdown:after{margin-top:-5px;margin-right:-3px;border-color:transparent}.s-item-abs{position:absolute!important;width:100%;height:100%}


html,.palette0{--text-color-richer:rgba(0, 0, 0, 1.00);--text-color-normal:rgba(0, 0, 0, 1.00);--text-color-softer:rgba(25, 25, 25, 1.00);--accent-color:rgba(23, 42, 58, 1.00);--accent-color-hover:rgba(23, 42, 58, 1.00);--accent-text-color:rgba(250, 249, 246, 1.00);--accent-text-color-hover:rgba(225, 224, 221, 1.00);--accent-color-alt:rgba(250, 249, 246, 1.00);--link-color:rgba(51, 195, 240, 1.00); --link-color-hover:rgba(5, 95, 122, 1.00); --border-color:rgba(187, 187, 187, 0.50);--border-color-softer:rgba(237, 237, 237, 0.50);--border-color-richer:rgba(137, 137, 137, 0.50);--background-color:rgba(255, 255, 255, 1.00);--background-color-alt:rgba(204, 204, 204, 0.60);--nav-bg:rgba(255, 255, 255, 0.00);--nav-bg-hover:rgba(255, 255, 255, 1.00);--nav-link:rgba(0, 0, 0, 1.00);--nav-link-hover:rgba(0, 0, 0, 1.00);--code-background:rgba(255, 255, 255, 1.00);--code-text:rgba(38, 38, 38, 1.00);--button-primary-color:rgba(250, 249, 246, 1.00);--button-primary-color-hover:rgba(225, 224, 221, 1.00);--second-color:rgba(106, 134, 144, 1.00);--second-color-hover:rgba(125, 152, 161, 1.00);--second-color-alt:rgba(255, 255, 255, 1.00);--base-font-size:62.5%;--container-max-width:1600px;--container-max-width-alt:1400px}*{vertical-align:baseline;border:0 none;outline:0;padding:0;margin:0}html{font-size:62.5%;font-size:var(--base-font-size);-webkit-text-size-adjust:100%;box-sizing:border-box}*,*::before,*::after{box-sizing:inherit}html,body{height:100%}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{font-size:1.60rem;line-height:1.60;font-weight:normal;font-family:Optima, Segoe, 'Segoe UI', Candara, Calibri, Arial, sans-serif; color:rgba(0, 0, 0, 1.00);background-color:rgba(255, 255, 255, 1.00);color:var(--text-color-normal);background-color:var(--background-color); -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}p.lead{font-size:1.70rem}@media (min-width:600px){body{font-size:1.60rem}p.lead{font-size:1.70rem}}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:1.20rem;font-weight:400;font-style:normal;}h1,.h1{font-size:2.60rem;line-height:1.2;letter-spacing:-.1rem;}h2,.h2{font-size:1.60rem;line-height:1.25;letter-spacing:-.1rem;}h3,.h3{font-size:3.00rem;line-height:1.3;letter-spacing:-.1rem;}h4,.h4{font-size:2.40rem;line-height:1.35;letter-spacing:-.08rem;}h5,.h5{font-size:2.20rem;line-height:1.5;letter-spacing:-.05rem;}h6,.h6{font-size:2.00rem;line-height:1.6;letter-spacing:0;}@media (min-width:600px){h1,.h1{font-size:2.60rem}h2,.h2{font-size:1.60rem}h3,.h3{font-size:4.00rem}h4,.h4{font-size:3.00rem}h5,.h5{font-size:2.40rem}h6,.h6{font-size:1.60rem}}p{margin-top:0}blockquote{margin-top:10px;margin-bottom:10px;margin-left:1rem;margin-right:1rem;padding-left:1rem;border-left:3px solid var(--accent-color);color:var(--text-color-softer)}a{color:var(--link-color);text-decoration:none;transition:all .2s ease 0s}a:hover:not(.source-button):not(.button){color:var(--link-color-hover);text-decoration:none}.u-case{text-transform:uppercase}:focus{outline:none;box-shadow:0 0 0 3px rgba(21, 156, 228, 0.40)!important}.stripped-button a,.source-btn{line-height:68px;font-size:14px;border-width:1px;height:calc(68px + 2px); font-weight: bolder; text-transform: uppercase; display:inline-block;padding:0 30px;text-decoration:none;color:var(--text-color-softer);text-align:center;letter-spacing:.1rem;text-decoration:none;white-space:nowrap;background-color:transparent;border-radius:0px;border:1px solid var(--border-color);cursor:pointer;box-sizing:border-box;transition:all .2s ease 0s;max-width:100%}.button-nav a,.source-btn-nav a{color:var(--button-primary-color)!important;background-color:var(--nav-link)!important;border-color:var(--nav-link)!important}.button-nav a:hover,.button-nav a:focus,.source-btn-nav a:focus,.source-btn-nav a:hover{color:var(--button-primary-color);background-color:var(--nav-link-hover);border-color:var(--nav-link-hover)}.button-second a,.s-button-second{color:var(--second-color-alt)!important;background-color:var(--second-color)!important;border-color:var(--second-color)!important}.button-second a:hover,.button-second a:focus,.s-button-second:hover,.s-button-second:focus{color:var(--second-color-alt)!important;background-color:var(--second-color-hover)!important;border-color:var(--second-color-hover)!important}.button-primary-flip a,.s-button-primary-flip{color:var(--accent-color)!important;background-color:var(--button-primary-color)!important;border-color:var(--accent-color)!important}.button-primary-flip a:hover,.button-primary-flip a:focus,.s-button-primary-flip:hover,.s-button-primary-flip:focus{color:var(--button-primary-color)!important;background-color:var(--accent-color)!important;border-color:var(--accent-color)!important}.button-primary a,.s-button-primary{color:var(--button-primary-color)!important;background-color:var(--accent-color)!important;border-color:var(--accent-color)!important}.button-primary a:hover,.button-primary a:focus,.s-button-primary:hover,.s-button-primary:focus{color:var(--button-primary-color)!important;background-color:var(--accent-color-hover)!important;border-color:var(--accent-color-hover)!important}.button-ghost a:hover,.button-ghost a:focus{border-color:var(--border-color-richer)!important}input{font-size:14px}.quizArea label{display:inline-block}ul{list-style:circle inside}ol{list-style:decimal inside}ol,ul{padding-left:1rem;margin-top:0}ul ul,ul ol,ol ol,ol ul{margin-left:1.5rem}li{margin-bottom:0.40rem;margin-left:3rem}li ul{margin-bottom:0.40rem}code{padding:.2rem .5rem;margin:0 .2rem;font-size:95%;white-space:nowrap;background:var(--code-background);color:var(--code-text);border:1px solid var(--border-color-softer);border-radius:4px}pre>code{display:block;padding:1rem 1.5rem;white-space:pre;overflow:auto}kbd{margin:0 .1em;padding:.1em .6em;border-radius:3px;border:1px solid rgb(204,204,204);color:rgb(51,51,51);display:inline-block;box-shadow:0 1px 0 rgba(0,0,0,.2),inset 0 0 0 2px #fff;background-color:rgb(247,247,247);-moz-box-shadow:0 1px 0 rgba(0,0,0,.2),0 0 0 2px #fff inset;-webkit-box-shadow:0 1px 0 rgba(0,0,0,.2),0 0 0 2px #fff inset;-moz-border-radius:3px;-webkit-border-radius:3px;text-shadow:0 1px 0 #fff}sup{vertical-align:super}button,.source-button{margin-bottom:1rem}input,textarea,select,fieldset{margin-bottom:1.5rem}pre,blockquote,dl,figure,table,p,ul,ol,form{margin-bottom:2.50rem}.u-full-width{width:100%;box-sizing:border-box}.u-max-full-width{max-width:100%;box-sizing:border-box}.u-pull-right{float:right}.u-pull-left{float:left}.u-align-left{text-align:left}.u-align-right{text-align:right}.u-align-center{text-align:center}@media (max-width:600px){.s-align-left{text-align:left}.s-align-right{text-align:right}.s-align-center{text-align:center}}@media (min-width:600px){.m-align-left{text-align:left}.m-align-right{text-align:right}.m-align-center{text-align:center}}@media (min-width:900px){.l-align-left{text-align:left}.l-align-right{text-align:right}.l-align-center{text-align:center}}@media (min-width:1200px){.xl-align-left{text-align:left}.xl-align-right{text-align:right}.xl-align-center{text-align:center}}hr{margin-top:2rem;margin-bottom:2.5rem;border-width:0;border-top:1px solid var(--border-color)}.u-cf:before,.container:before,.row:before,.s3_row:before,.u-cf:after,.container:after,.row:after,.s3_row:after{content:"";display:table}.u-cf:after,.container:after,.row:after,.s3_row:after{clear:both}.stripped-container,.s-container-lite,.stripped-content,.stripped-outer,.stripped-wrapper,.s-grid-item,.s-cols-item,.s-coder-wrap{position:relative}.stripped-container,.stripped-content{box-sizing:border-box}img{max-width:100%}.stripped-img,.stripped-svg,.img-fit-wrap,picture{line-height:0}figure{line-height:1}.stripped-img img,.s-cols-item:not([data-sal]),.s-grid-item:not([data-sal]),.stripped-svg svg,.s-lift,.s-drop,.s-zoom,.s-zoom-big,.s-zoom-img img,.s-zoom-img-big img{transition:all .2s ease-out 0s}.s-container-lite,.s-content-center{margin-left:auto;margin-right:auto}.s-grid-item,.s-cols-item,.s-flex{display:flex;flex-direction:column;flex-wrap:wrap}.s-flow-down{flex-wrap:nowrap!important}.s-self-end{justify-self:end}.s-grid-item>.stacks_out,.s-cols-item>.stacks_out,.s-flex>.stacks_out{width:100%}.s-img-fit{object-fit:cover;width:100%!important;height:100%!important}.s-cols-container{position:relative;max-width:100%;margin:0 auto;display:flex;flex-flow:row wrap;vertical-align:top}.s-grid-link,.s-img-fit-link,.s-coder-link{display:contents}.s-button-group{display:flex;flex-wrap:wrap}.w-100{width:100%!important}.s-no-lift{transform:translateY(0)!important}.s-lift:hover{transform:translateY(-5px)!important}.s-drop:hover{transform:translateY(5px)!important}.s-zoom:hover{transform:scale(1.05)!important;z-index:10!important}.s-zoom-img:hover img{transform:scale(1.05)!important;z-index:10!important}.s-zoom-img-big:hover img{transform:scale(1.1)!important;z-index:10!important}.s-zoom-big:hover{transform:scale(1.1)!important;z-index:10!important}.s-fade{-webkit-mask:linear-gradient(to top,#fff,var(--t,#fff)) top / 100% 30%,linear-gradient(#fff,#fff) center / 100% 40%,linear-gradient(to bottom,#fff,var(--b,#fff)) bottom / 100% 30%;-webkit-mask-repeat:no-repeat;mask:linear-gradient(to top,#fff,var(--t,#fff)) top / 100% 30%,linear-gradient(#fff,#fff) center / 100% 40%,linear-gradient(to bottom,#fff,var(--b,#fff)) bottom / 100% 30%;mask-repeat:no-repeat}.s-fade-t{--t:transparent;}.s-fade-b{--b:transparent;}.s-bright{filter:brightness(70%);transition:filter 250ms ease-in-out!important}.s-bright:hover{filter:brightness(100%)}.s-dark{filter:brightness(100%);transition:filter 250ms ease-in-out!important}.s-dark:hover{filter:brightness(60%)}.s-blur{transition:filter 250ms ease-in-out!important}.s-blur:hover{filter:blur(4px)}.s-unblur{transition:filter 250ms ease-in-out!important;filter:blur(4px)}.s-unblur:hover{filter:blur(0)}.s-blur-bg{-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px)}.s-frost{background-color:rgba(255,255,255,.05);-webkit-backdrop-filter:blur(18px);backdrop-filter:blur(18px)}.s-shad{box-shadow:0 3px 15px rgba(0,0,0,.2)}.s-shad-none{box-shadow:none!important}.s-shad-hov:hover{box-shadow:0 0 18px rgba(0,0,0,.2)}@media (min-width:600px){.s-shad-m{box-shadow:0 3px 15px rgba(0,0,0,.2)}.s-shad-hov-m:hover{box-shadow:0 0 18px rgba(0,0,0,.2)}.s-shad-none-m{box-shadow:none!important}.text-rotate-up-m{writing-mode:vertical-rl;text-orientation:upright}.text-rotate-m{writing-mode:vertical-lr}.s-flip-m{transform:rotate(180deg)}.s-hide-m{pointer-events:none;transition:opacity 250ms ease-in-out!important;opacity:0}}@media (min-width:900px){.s-shad-l{box-shadow:0 3px 15px rgba(0,0,0,.2)}.s-shad-hov-l:hover{box-shadow:0 0 18px rgba(0,0,0,.2)}.s-shad-none-l{box-shadow:none!important}.text-rotate-up-l{writing-mode:vertical-rl;text-orientation:upright}.text-rotate-l{writing-mode:vertical-lr}.s-flip-l{transform:rotate(180deg)}.s-hide-l{pointer-events:none;transition:opacity 250ms ease-in-out!important;opacity:0}}@media (min-width:1200px){.s-shad-xl{box-shadow:0 3px 15px rgba(0,0,0,.2)}.s-shad-hov-xl:hover{box-shadow:0 0 18px rgba(0,0,0,.2)}.s-shad-none-xl{box-shadow:none!important}.text-rotate-up-xl{writing-mode:vertical-rl;text-orientation:upright}.text-rotate-xl{writing-mode:vertical-lr}.s-flip-xl{transform:rotate(180deg)}.s-hide-xl{pointer-events:none;transition:opacity 250ms ease-in-out!important;opacity:0}}.s-screen{mix-blend-mode:screen}.s-multiply{mix-blend-mode:multiply}.s-exclusion{mix-blend-mode:exclusion}.s-no-pointer{pointer-events:none}.s-flip{transform:rotate(180deg)}.text-rotate-up{writing-mode:vertical-rl;text-orientation:upright}.text-rotate{writing-mode:vertical-lr}html:not(.touch-stripped) .s-hide-nt,.s-hide{pointer-events:none;transition:opacity 250ms ease-in-out!important;opacity:0}.s-reveal:hover .s-hide,.s-reveal:hover .s-hide-nt,.s-reveal:hover .s-hide-m{pointer-events:auto;opacity:1}.s-hide-on-reveal{transition:opacity 250ms ease-in-out!important}.s-reveal:hover .s-hide-on-reveal{pointer-events:none;opacity:0}.repeat{background-repeat:repeat!important;background-size:unset!important}.touch-stripped .hide-touch{display:none}html:not(.touch-stripped) .hide-non-touch{display:none}.grid-container{position:relative;max-width:100%;margin:0 auto;display:grid}.hide-of{overflow:hidden}.stripped-container>.stripped-link a,.stripped-outer>.stripped-link a,.s-grid-item>.s-grid-link a,.s-cols-item>.s-grid-link a,.s-img-fit-link a,.s-coder-wrap>.s-coder-link a{position:absolute;top:3px;bottom:3px;left:3px;right:3px;content:"";z-index:998;text-decoration:none}.stacks_out{overflow:visible!important}.stacks_in{overflow:visible}.s-inliner>.stacks_out{margin:0;width:auto;display:inline-block}.mb-0{margin-bottom:0!important}.stripped-base-width,.source-base-width{max-width:1600px;max-width:var(--container-max-width);margin:0 auto}.source-base-width-alt,.s-alt-width{max-width:1400px;max-width:var(--container-max-width-alt);margin:0 auto}.alt-bg{background-color:var(--background-color-alt)!important}.page-bg{background-color:var(--background-color)!important}.page-fg{color:var(--background-color)!important}.text-bg{background-color:var(--text-color-normal)!important}.text-softer-fg{color:var(--text-color-softer)!important}.text-richer-fg{color:var(--text-color-richer)!important}.s-accent,.accent-bg{background-color:var(--accent-color)!important}.s-accent-text,.accent-alt-bg{background-color:var(--accent-text-color)!important}.s-accent-hover,.accent-hover-bg{background-color:var(--accent-color-hover)!important}.s-accent-c,.accent-fg{color:var(--accent-color)!important}.s-accent-text-c,.accent-alt-fg{color:var(--accent-text-color)!important}.s-accent-hover-c,.accent-hover-fg{color:var(--accent-color-hover)!important}.second-hover-fg{color:var(--second-color-hover)!important}.second-hover-bg{background-color:var(--second-color-hover)!important}.s-second-c,.second-fg{color:var(--second-color)!important}.s-second-text-c,.second-alt-fg{color:var(--second-color-alt)!important}.s-second,.second-bg{background-color:var(--second-color)!important}.s-second-text,.second-alt-bg{background-color:var(--second-color-alt)!important}.nav-1-bg{background-color:var(--nav-bg)!important}.nav-2-bg{background-color:var(--nav-bg-hover)!important}.nav-3-bg{background-color:var(--nav-link)!important}.nav-4-bg{background-color:var(--nav-link-hover)!important}.nav-1-fg{color:var(--nav-bg)!important}.nav-2-fg{color:var(--nav-bg-hover)!important}.nav-3-fg{color:var(--nav-link)!important}.nav-4-fg{color:var(--nav-link-hover)!important}.code-1-bg{background-color:var(--code-background)!important}.code-2-bg{background-color:var(--code-text)!important}.code-1-fg{color:var(--code-background)!important}.code-2-fg{color:var(--code-text)!important}.border-fg{color:var(--border-color)!important}.border-softer-fg{color:var(--border-color-softer)!important}.border-richer-fg{color:var(--border-color-richer)!important}.border-bg{background-color:var(--border-color)!important}.s-dark-bg{background-color:rgba(58,56,68,.5)}.s-vdark-bg{background-color:rgba(25,29,36,.80)}.s-light-bg{background-color:rgba(255,255,255,.5)}.s-vlight-bg{background-color:rgba(255,255,255,.8)}.stacks_top .iconic-caption{font-size:12px;padding:6px}.source-browser-warning{ text-align:center;width:80%;top:0;left:10%;position:fixed;margin:20px auto;padding:10px;background:#EC4D3B;color:white;border-radius:4px;z-index:9999}.source-browser-warning a{color:white;text-decoration:underline}@supports (display:grid){.source-browser-warning{display:none}}.base-pad-basic-1,.base-pb-1{padding:10px 10px 10px 10px}.base-pad-advanced-1,.base-pa-1{padding:20px 10px 20px 10px}.base-margin-basic-1,.base-mb-1{margin:0px 0px 0px 0px}.base-margin-advanced-1,.base-ma-1{margin:0 0 0 0}@media (min-width:600px){ .base-margin-advanced-1,.base-ma-1{margin:0 0 0 0} .base-pad-advanced-1,.base-pa-1{padding:40px 20px 40px 20px}}@media (min-width:900px){ .base-margin-advanced-1,.base-ma-1{margin:0 0 0 0} .base-pad-advanced-1,.base-pa-1{padding:60px 20px 60px 20px}}@media (min-width:1200px){ .base-margin-advanced-1,.base-ma-1{margin:0 0 0 0} .base-pad-advanced-1,.base-pa-1{padding:80px 20px 80px 20px}}.base-bg-1-1,.base-bg1-1{     }.base-bg-2-1,.base-bg2-1{  background-image:linear-gradient(to right top,rgba(25, 25, 25, 0.50),rgba(179, 179, 179, 0.00),rgba(255, 255, 255, 0.00))!important;   }
.shad-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)}.shad{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)}.shad-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)}.shad-none{box-shadow:none!important}.shad-1{box-shadow:0px 7px 29px 0px rgba(100, 100, 111, 0.2)}.shad-2{box-shadow:0px 4px 12px rgba(0, 0, 0, 0.1)}.txt-1{color:rgba(32, 65, 112, 1.00)}.txt-2{color:rgba(52, 195, 240, 1.00)}.txt-3{color:rgba(238, 172, 87, 1.00)}.txt-4{color:rgba(229, 229, 229, 1.00)}.bg-1{background-color:rgba(32, 65, 112, 1.00)}.bg-2{background-color:rgba(52, 195, 240, 1.00)}.bg-3{background-color:rgba(238, 172, 87, 1.00)}.bg-4{background-color:rgba(229, 229, 229, 1.00)}.rounded{border-radius:5px!important}.rounded-top{border-top-left-radius:5px!important;border-top-right-radius:5px!important}.rounded-right{border-top-right-radius:5px!important;border-bottom-right-radius:5px!important}.rounded-bottom{border-bottom-right-radius:5px!important;border-bottom-left-radius:5px!important}.rounded-left{border-top-left-radius:5px!important;border-bottom-left-radius:5px!important}.rounded-lg{border-radius:10px!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-0{border-radius:0!important}.d-none{display:none}.d-inline{display:inline}.d-inline-block{display:inline-block}.d-block{display:block}.d-table{display:table}.d-table-row{display:table-row}.d-table-cell{display:table-cell}.d-flex{display:flex}.d-inline-flex{display:inline-flex}.d-grid{display:grid}.stacks-margin-0>.stacks_out{margin-left:0;margin-right:0}.d-flex>.stacks_out,.d-inline-flex>.stacks_out{margin-left:0;margin-right:0}@media (min-width:600px){.d-m-none{display:none}.d-m-inline{display:inline}.d-m-inline-block{display:inline-block}.d-m-block{display:block}.d-m-table{display:table}.d-m-table-row{display:table-row}.d-m-table-cell{display:table-cell}.d-m-grid{display:grid}.d-m-flex{display:flex}.d-m-inline-flex{display:inline-flex}}@media (min-width:900px){.d-l-none{display:none}.d-l-inline{display:inline}.d-l-inline-block{display:inline-block}.d-l-block{display:block}.d-l-table{display:table}.d-l-table-row{display:table-row}.d-l-table-cell{display:table-cell}.d-l-grid{display:grid}.d-l-flex{display:flex}.d-l-inline-flex{display:inline-flex}}@media (min-width:1200px){.d-xl-none{display:none}.d-xl-inline{display:inline}.d-xl-inline-block{display:inline-block}.d-xl-block{display:block}.d-xl-table{display:table}.d-xl-table-row{display:table-row}.d-xl-table-cell{display:table-cell}.d-xl-flex{display:flex}.d-xl-grid{display:grid}.d-xl-inline-flex{display:inline-flex}}@media print{.d-print-none{display:none}}.w-25{width:25%}.w-50{width:50%}.w-75{width:75%}.w-100{width:100%}.w-auto{width:auto}.h-25{height:25%}.h-50{height:50%}.h-75{height:75%}.h-100{height:100%}.h-auto{height:auto}.mw-100{max-width:100%}.mh-100{max-height:100%}.min-vw-100{min-width:100vw}.min-vh-100{min-height:100vh}.vw-100{width:100vw}.vh-100{height:100vh}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:sticky!important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports (position:sticky){.sticky-top{position:sticky;top:0;z-index:1020}}.pos-tl{position:absolute;top:0;left:0}.pos-br{position:absolute;bottom:0;right:0}.pos-bl{position:absolute;bottom:0;left:0}.pos-tr{position:absolute;top:0;right:0}.pos-center{position:absolute;width:100%;text-align:center;top:50%;transform:translateY(-50%)}.o01{opacity:.01}.o02{opacity:.02}.o05{opacity:.05}.o1{opacity:.1}.o2{opacity:.2}.o3{opacity:.3}.o4{opacity:.4}.o5{opacity:.5}.o6{opacity:.6}.o7{opacity:.7}.o8{opacity:.8}.o9{opacity:.9}.o95{opacity:.95}.o98{opacity:.98}.z-1{z-index:-1!important}.z0{z-index:0!important}.z1{z-index:1!important}.z2{z-index:2!important}.z3{z-index:3!important}.z4{z-index:4!important}.z5{z-index:5!important}.z10{z-index:10!important}.z20{z-index:20!important}.z30{z-index:30!important}.z40{z-index:40!important}.z50{z-index:50!important}.z99{z-index:99!important}.z999{z-index:999!important}.z9999{z-index:9999!important}.of-visible{overflow:visible}.of-hidden{overflow:hidden}.of-auto{overflow:auto}.of-scroll{overflow:scroll}.ofx-scroll{overflow-x:scroll}.ofy-scroll{overflow-y:scroll}.ofx-visible{overflow-x:visible}.ofy-visible{overflow-y:visible}
 @font-face{font-family:'Open Sans';src:url('https://www.karlbridgeman.com/fonts/open-sans-500.woff2') format('woff2');font-weight:normal;font-style:normal;font-display: swap;}.site-title a{   font-weight:500 ;font-family:'Open Sans',sans-serif }
 @font-face{font-family:'Open Sans';src:url('https://www.karlbridgeman.com/fonts/open-sans-500.woff2') format('woff2');font-weight:normal;font-style:normal;font-display: swap;}.navbar li a{ letter-spacing:-.7px;  font-weight:500 ;font-family:'Open Sans',sans-serif }
 @font-face{font-family:'Open Sans';src:url('https://www.karlbridgeman.com/fonts/open-sans-500.woff2') format('woff2');font-weight:normal;font-style:normal;font-display: swap;}h1, h2, h3, h4, h5, h6{ letter-spacing:-.5px;  font-weight:500 ;font-family:'Open Sans',sans-serif }

#stacks_in_1035 > .chroma-scroll > .slide-head{display:none}#stacks_in_1035 > .chroma-scroll > .slide-head.is-active{display:block}#stacks_in_1035 > .chroma-scroll > .slide-head .top-bar{z-index:6000}#stacks_in_1035 > .chroma-scroll.slide-fresh{-webkit-animation-duration:1ms !important;animation-duration:1ms !important}#stacks_in_1035 > .chroma-scroll.slide-fresh > .su-content::after{-webkit-transition-duration:1ms !important;transition-duration:1ms !important}#stacks_in_1035 > .chroma-scroll.pre-load{-webkit-animation-duration:1ms !important;animation-duration:1ms !important}#stacks_in_1035 > .chroma-scroll.pre-load > .su-content::after{-webkit-transition-duration:1ms !important;transition-duration:1ms !important}#stacks_in_1035 > .chroma-scroll.pre-load .su-content{height:0px !important;padding:0px !important}@media screen and (max-width:640px){#stacks_in_1035 > .chroma-scroll > .slide-head.is-active.small-head-hide{display:none}#stacks_in_1035 > .chroma-scroll > .slide-head.is-active.small-head-show{display:block}#stacks_in_1035 > .chroma-scroll.mob-no-bg[data-style] > .su-content::after{background-color:transparent}#stacks_in_1035 > .chroma-scroll.mob-no-bg.is-fixed.fixed-shadow{-webkit-box-shadow:none;box-shadow:none}#stacks_in_1035.mob-static > .chroma-scroll.is-fixed{position:static}#stacks_in_1035.mob-static > .su-pad[style]{height:0px !important}.su-pad.mob-static.spacer-stacks_in_1035[style]{height:0px !important}}@media screen and (min-width:640px){#stacks_in_1035.large-static > .chroma-scroll.is-fixed{position:static}#stacks_in_1035.large-static > .su-pad[style]{height:0px !important}}#stacks_in_1035{overflow:visible;-webkit-overflow-scrolling:touch}.su-pad.spacer-stacks_in_1035{width:100%;min-width:100%}.su-pad.spacer-stacks_in_1035.posFixed.allow-overlay,.su-pad.spacer-stacks_in_1035.posFixed.fix-bot{height:0px !important;visibility:hidden !important}@media screen and (max-width:640px){.su-pad.spacer-stacks_in_1035.hide-below-bp{display:none}}@media screen and (min-width:640px){.su-pad.spacer-stacks_in_1035.hide-above-bp{display:none}}#stacks_in_1035.width-contain{width:auto;display:inline-block}#stacks_in_1035.width-contain > .chroma-scroll.is-fixed{border-radius:none}#stacks_in_1035.width-contain > .chroma-scroll.is-fixed.fixed-shadow{-webkit-box-shadow:none;box-shadow:none}#stacks_in_1035.width-contain > .chroma-scroll.is-fixed > .su-content::after{border-radius:0px 0px 0px 0px}#stacks_in_1035.width-contain > .chroma-scroll.is-fixed.su-right{right:0}#stacks_in_1035.width-contain > .chroma-scroll.is-fixed.su-left{left:0}#stacks_in_1035.width-contain > .chroma-scroll.is-fixed.su-center{left:0;right:0;text-align:center}#stacks_in_1035.width-contain > .chroma-scroll.is-fixed.su-center > .su-content{display:inline-block;margin:0;vertical-align:top}#stacks_in_1035 > .chroma-scroll{-webkit-overflow-scrolling:touch}#stacks_in_1035 > .chroma-scroll > .su-content::after{border-radius:0px 0px 0px 0px}#stacks_in_1035 > .chroma-scroll.is-fixed .su-content.oc-toggle{-webkit-backface-visibility:hidden;z-index:3030}#stacks_in_1035 > .chroma-scroll.is-fixed:not(.width-contain).abs-left{left:0px}#stacks_in_1035 > .chroma-scroll.header-slide.is-static{position:relative;-webkit-transition:-webkit-transform 1ms !important;transition:-webkit-transform 1ms !important;transition:transform 1ms !important;transition:transform 1ms,-webkit-transform 1ms !important}#stacks_in_1035 > .chroma-scroll.header-slide.slide-fresh{-webkit-transition:-webkit-transform 1ms !important;transition:-webkit-transform 1ms !important;transition:transform 1ms !important;transition:transform 1ms,-webkit-transform 1ms !important;-webkit-animation-duration:1ms !important;animation-duration:1ms !important;visibility:hidden;height:0 !important}#stacks_in_1035.width-contain > .chroma-scroll.su-center{border-radius:none}#stacks_in_1035.width-contain > .chroma-scroll.su-center.fixed-shadow{-webkit-box-shadow:none;box-shadow:none}#stacks_in_1035.width-contain > .chroma-scroll.su-center > .su-content::after{border-radius:0px 0px 0px 0px}#stacks_in_1035 .style-defs{display:none}#stacks_in_1035 > .chroma-scroll{-webkit-transition:padding 280ms ease-in-out,visibility 0s linear 0s,opacity 200ms,box-shadow 280ms ease,-webkit-transform 300ms;-webkit-transition:padding 280ms ease-in-out,visibility 0s linear 0s,opacity 200ms,-webkit-box-shadow 280ms ease,-webkit-transform 300ms;transition:padding 280ms ease-in-out,visibility 0s linear 0s,opacity 200ms,-webkit-box-shadow 280ms ease,-webkit-transform 300ms;transition:padding 280ms ease-in-out,visibility 0s linear 0s,opacity 200ms,box-shadow 280ms ease,transform 300ms;transition:padding 280ms ease-in-out,visibility 0s linear 0s,opacity 200ms,box-shadow 280ms ease,transform 300ms,-webkit-box-shadow 280ms ease,-webkit-transform 300ms}#stacks_in_1035 > .chroma-scroll > .su-content{-webkit-transition:padding 280ms ease-in-out;transition:padding 280ms ease-in-out}#stacks_in_1035 > .chroma-scroll > .su-content::after{z-index:-1;position:absolute;top:0;left:0;bottom:0;right:0;content:"";-webkit-transition:background 280ms linear,opacity 280ms linear;transition:background 280ms linear,opacity 280ms linear}#stacks_in_1035 > .chroma-scroll > .su-content{padding-top:0px;padding-bottom:0px;padding-left:0px;padding-right:0px}#stacks_in_1035 > .chroma-scroll > .su-content::after{background:rgba(156, 164, 166, 0.00)}@media screen and (max-width:640px){#stacks_in_1035 > .chroma-scroll > .su-content{padding:0 !important}}.chroma-scroll-pro .top-bar .title-area .title-area li.name,.chroma-scroll-pro .toggle-contents .main-title,.chroma-scroll-pro .mag-title-area,.chroma-scroll-pro .navigation_branding,.chroma-scroll-pro .bb-site-title{-webkit-transition:opacity 280ms !important;transition:opacity 280ms !important}#stacks_in_1035 > .chroma-scroll.is-fixed.fixed-shadow:not(.is-scrolled){-webkit-box-shadow:0 0 0 0 transparent;box-shadow:0 0 0 0 transparent}#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled > .su-content{padding-top:0px;padding-bottom:7px;padding-left:0px;padding-right:0px}#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled > .su-content::after{background:rgba(255, 255, 255, 1.00)}#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled{-webkit-transition:visibility 0s linear,opacity 80ms linear;transition:visibility 0s linear,opacity 80ms linear;visibility:visible;opacity:1}#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled li a:not(.button),#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .b-p:not(.custom) > .bp-text{color:rgba(0, 0, 0, 1.00) !important}#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .bb-site-title,#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .bb-site-title h1,#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .bb-site-title h2,#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .bb-site-title h3,#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .bb-site-title h4,#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .bb-site-title h5,#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .bb-site-title h6,#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .bb-site-title p{color:rgba(0, 0, 0, 1.00) !important}#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .site-title,#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .site-slogan,#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .mag-title,#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .navigation_branding a{color:rgba(0, 0, 0, 1.00) !important}#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .duck-burger:not(.toggle-open) > .burg,#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .duck-burger:not(.toggle-open) > .burg::before,#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .duck-burger:not(.toggle-open) > .burg::after{background:rgba(0, 0, 0, 1.00) !important}#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .duck-burger.toggle-open > .burg:not(.trans-duck-classic):not(.trans-stand){background:rgba(0, 0, 0, 1.00) !important}#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .duck-burger.toggle-open > .burg::before,#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .duck-burger.toggle-open > .burg::after{background:rgba(0, 0, 0, 1.00) !important}#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .toggle-icon .toggle-fa{color:rgba(0, 0, 0, 1.00) !important}#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .toggle-icon .toggle-burger.burger-wrapper > .burger > div{background:rgba(0, 0, 0, 1.00) !important}#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .toggle-text{color:rgba(0, 0, 0, 1.00) !important}#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .navigation_container .fa{color:rgba(0, 0, 0, 1.00) !important}#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .toggle-topbar.menu-icon > a > span{color:rgba(0, 0, 0, 1.00)}#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .toggle-topbar.menu-icon > a > span::after{-webkit-box-shadow:0 0 0 1px rgba(0, 0, 0, 1.00),0 7px 0 1px rgba(0, 0, 0, 1.00),0 14px 0 1px rgba(0, 0, 0, 1.00) !important;box-shadow:0 0 0 1px rgba(0, 0, 0, 1.00),0 7px 0 1px rgba(0, 0, 0, 1.00),0 14px 0 1px rgba(0, 0, 0, 1.00) !important}#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .mg-menu .menu-label{color:rgba(0, 0, 0, 1.00) !important}#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .mg-menu .burg::before,#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .mg-menu .burg::after{background-color:rgba(0, 0, 0, 1.00) !important}#stacks_in_1035 > .chroma-scroll.is-fixed.is-scrolled .mg-menu:not(.toggle-open) .burg{background-color:rgba(0, 0, 0, 1.00) !important}#stacks_in_1035 > .chroma-scroll.is-fixed{z-index:1001;}#stacks_in_1035 > .chroma-scroll.is-fixed.foc{z-index:3001}#stacks_in_1035 > .chroma-scroll .oc-toggle.facet-mb.oc-left{left:0 !important}#stacks_in_1035 > .chroma-scroll .oc-toggle.facet-mb.oc-right{right:0 !important}#stacks_in_1035 > .chroma-scroll .oc-toggle.facet-mb.oc-right:not(.toggle-button){left:0 !important}#stacks_in_1035 > .chroma-scroll.is-static{position:relative;z-index:999}#stacks_in_1035 > .chroma-scroll.is-fixed .oc-toggle{position:relative}#stacks_in_1035 > .chroma-scroll.content-right{text-align:right}@media screen and (max-width:640px){#stacks_in_1035 > .chroma-scroll.hide-below-bp{display:none}}@media screen and (min-width:640px){#stacks_in_1035 > .chroma-scroll.hide-above-bp{display:none}}#stacks_in_1035 > .chroma-scroll.is-fixed{position:fixed}#stacks_in_1035 > .chroma-scroll.is-fixed.fix-top,#stacks_in_1035 > .chroma-scroll.is-fixed:not(.fix-bot){top: 0px }#stacks_in_1035 > .chroma-scroll.is-fixed.fix-bot{bottom: 0px }#stacks_in_1035 > .chroma-scroll.is-fixed.fix-full-width{left:0;width:100% !important}@media screen and (max-width:640px){#stacks_in_1035 > .chroma-scroll.is-fixed.mob-full-width{left:0;width:100% !important}}@media screen and (min-width:640px){#stacks_in_1035 > .chroma-scroll.is-fixed.fix-top,#stacks_in_1035 > .chroma-scroll.is-fixed:not(.fix-bot){top:0px}#stacks_in_1035 > .chroma-scroll.is-fixed.fix-bot{bottom:0px}}#stacks_in_1035 > .chroma-scroll.is-fixed.animate{-webkit-animation-duration:285ms;animation-duration:285ms;-webkit-animation-fill-mode:both;animation-fill-mode:both}#stacks_in_1035 > .chroma-scroll.animate.ani-slide.slide-down{-webkit-animation-name:slideDown_stacks_in_1035;animation-name:slideDown_stacks_in_1035}#stacks_in_1035 > .chroma-scroll.animate.ani-slide.slide-down.fix-bot{-webkit-animation-name:bot-slideDown_stacks_in_1035;animation-name:bot-slideDown_stacks_in_1035}#stacks_in_1035 > .chroma-scroll.animate.ani-slide.slide-up{-webkit-animation-name:slideUp_stacks_in_1035;animation-name:slideUp_stacks_in_1035}#stacks_in_1035 > .chroma-scroll.animate.ani-slide.slide-up.fix-bot{-webkit-animation-name:bot-slideUp_stacks_in_1035;animation-name:bot-slideUp_stacks_in_1035}@-webkit-keyframes slideDown_stacks_in_1035{0%{-webkit-transform:translateY(-100%)}100%{-webkit-transform:translateY(0%)}}@keyframes slideDown_stacks_in_1035{0%{-webkit-transform:translateY(-100%);transform:translateY(-100%)}100%{-webkit-transform:translateY(0%);transform:translateY(0%)}}@-webkit-keyframes slideUp_stacks_in_1035{0%{-webkit-transform:translateY(0%)}100%{-webkit-transform:translateY(-100%)}}@keyframes slideUp_stacks_in_1035{0%{-webkit-transform:translateY(0%);transform:translateY(0%)}100%{-webkit-transform:translateY(-100%);transform:translateY(-100%)}}@-webkit-keyframes bot-slideDown_stacks_in_1035{0%{-webkit-transform:translateY(100%)}100%{-webkit-transform:translateY(0%)}}@keyframes bot-slideDown_stacks_in_1035{0%{-webkit-transform:translateY(100%);transform:translateY(100%)}100%{-webkit-transform:translateY(0%);transform:translateY(0%)}}@-webkit-keyframes bot-slideUp_stacks_in_1035{0%{-webkit-transform:translateY(0%)}100%{-webkit-transform:translateY(100%)}}@keyframes bot-slideUp_stacks_in_1035{0%{-webkit-transform:translateY(0%);transform:translateY(0%)}100%{-webkit-transform:translateY(100%);transform:translateY(100%)}}
#stacks_in_1035>.chroma-scroll.is-fixed.fixed-shadow   {-webkit-box-shadow:0px  0px  6px 0px rgba(0, 0, 0, 0.12);box-shadow:0px  0px  6px 0px rgba(0, 0, 0, 0.12)}#stacks_in_1035.width-contain>.chroma-scroll.is-fixed.fixed-shadow>.su-content::after   {-webkit-box-shadow:0px  0px  6px 0px rgba(0, 0, 0, 0.12);box-shadow:0px  0px  6px 0px rgba(0, 0, 0, 0.12)}
.s-container-stacks_in_1037{   margin-left: auto; margin-right: auto;}#s-wrapper-stacks_in_1037{margin:0;  }#s-content-stacks_in_1037{justify-content:center;   padding:0 0 0 0;}@media (min-width:600px){.s-container-stacks_in_1037{ }#s-wrapper-stacks_in_1037{}#s-content-stacks_in_1037{ padding:0 10px 0 15px;}}@media (min-width:900px){.s-container-stacks_in_1037{ }#s-wrapper-stacks_in_1037{}#s-content-stacks_in_1037{ padding:0 60px 0 60px;}}@media (min-width:1200px){.s-container-stacks_in_1037{ }#s-wrapper-stacks_in_1037{}#s-content-stacks_in_1037{ padding:0 65px 0 75px;}}.s-bg-stacks_in_1037{z-index:0}#s-outer-stacks_in_1037{border-radius:0px 0px 0px 0px}
 .s-container-stacks_in_1039{ }#s-wrapper-stacks_in_1039{margin:0; }#s-content-stacks_in_1039{justify-content:center; padding:0; }@media (min-width:600px){#s-content-stacks_in_1039{min-height:.5rem}}@media (min-width:900px){#s-content-stacks_in_1039{min-height:1rem}}.s-bg-stacks_in_1039{z-index:0}#s-outer-stacks_in_1039{border-radius:0px 0px 0px 0px}
#stacks_in_1042.nav-wrap{background-color:var(--nav-bg);width:100%;padding:5px 12px 5px 6px}#stacks_in_1042 .nav-content{z-index:999}html:not(.menulab-js) .nav-wrap{display:none}#stacks_in_1042.nav-fixed,#stacks_in_1042.nav-sticky{top:0;width:100%;z-index:999}#stacks_in_1042.nav-fixed{position:fixed;box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.12)}#stacks_in_1042.nav-sticky{position:sticky}#stacks_in_1042 .contained-bar{max-width:var(--container-max-width)}#stacks_in_1042 .navbar li>ul{background-color:var(--background-color)}#stacks_in_1042 .navbar li{list-style-type:none;display:block;border-radius:4px}#stacks_in_1042 .navbar li a{color:var(--nav-link)}#stacks_in_1042 .navbar li:hover>*:first-child,#stacks_in_1042 .navbar li.active>*:first-child{color:var(--nav-link-hover)}#stacks_in_1042 .navbar li:hover,#stacks_in_1042 .navbar li.active{background-color:var(--nav-bg-hover)}#stacks_in_1042 .logo img{vertical-align:top;height:42px;border-radius:5px;width:auto;max-width:none}#stacks_in_1042 .logo{display: none;}#stacks_in_1042 .site-title{}#stacks_in_1042 .navbar{display:block;}#stacks_in_1042 .branding{position:relative;display:flex;align-items:center;justify-content:space-between}#stacks_in_1042 .branding h4{font-size:17px;font-weight:normal;text-transform: none; padding-left:10px;padding-right:10px}#stacks_in_1042 .site-title a{color:var(--text-color-normal);}#stacks_in_1042 .site-title a:hover{color:var(--text-color-softer);}@media only screen and (max-width:1022px){#stacks_in_1042 .ml-dropdown{background-color:var(--background-color);max-height:calc(100vh - 45px);overflow-y:scroll} #stacks_in_1042 .cta{display:none} #stacks_in_1042 .navbar li{margin:3px 0}#stacks_in_1042 .branding{}}@media only screen and (min-width:1023px){ #stacks_in_1042 .logo{display: none; margin-left:0;padding-right:10px}#stacks_in_1042 .site-title{display: block;} #stacks_in_1042 .cta-small{display:none} #stacks_in_1042 .branding h4{font-size:16px;padding-left:0;}#stacks_in_1042 .grouped-cta,#stacks_in_1042 .cta{display:flex;flex-wrap:wrap;align-items:center}#stacks_in_1042 .branding{min-width:0px;justify-content: start;}#stacks_in_1042 .logo img{height:54px}#stacks_in_1042 .navbar{display:inline-block} #stacks_in_1042 .mob-icon{display:none}#stacks_in_1042.nav-wrap{padding:10px 0px 10px 0px}#stacks_in_1042 .navbar{float:right;max-height:none;overflow:visible}#stacks_in_1042 .navbar,#stacks_in_1042 .nav-content{position:relative;display:flex;align-items:center;justify-content:space-between;}#stacks_in_1042 .navbar li a{padding:0 .8em}#stacks_in_1042 .navbar li.active,#stacks_in_1042 .navbar li:hover{border-radius:4px}#stacks_in_1042 .navbar .ml-menu,#stacks_in_1042 .navbar .ml-menu ul{margin:2px 1px}#stacks_in_1042 .navbar .ml-menu li{margin:2px 1px;padding-top:3px;padding-bottom:3px}#stacks_in_1042 .navbar li>ul{box-shadow:0 0 18px rgba(0,0,0,.1)}#stacks_in_1042 .navbar .ml-menu li>ul .dd-to-left>ul{right:100%!important;left:auto!important}#stacks_in_1042 .navbar .ml-menu li>ul .dd-to-right>ul{left:100%!important;right:auto!important}#stacks_in_1042 .navbar .ml-menu ul,#stacks_in_1042 .navbar [dir=rtl] .ml-menu>.dd-to-right>ul{display:none;position:absolute;padding:6px;top:100%;left:0;right:auto;z-index:1}#stacks_in_1042 .navbar [dir=rtl] .ml-menu ul,#stacks_in_1042 .navbar .ml-menu>.dd-to-left>ul{left:auto;right:0}#stacks_in_1042 .navbar .ml-menu ul ul,#stacks_in_1042 .navbar [dir=rtl] .ml-menu ul .dd-to-right ul{top:0;left:100%;right:auto}#stacks_in_1042 .navbar [dir=rtl] .ml-menu ul ul,#stacks_in_1042 .navbar .ml-menu ul .ml-dd-to-left ul{left:auto;right:100%}#stacks_in_1042 .navbar .ml-menu li{position:relative;display:block;list-style-type:none}#stacks_in_1042 .navbar .ml-menu>li{display:inline-block}#stacks_in_1042 .navbar .ml-menu a,#stacks_in_1042 .navbar .ml-menu span{display:block;text-decoration:none;white-space:pre}#stacks_in_1042 .navbar .ml-menu li:hover>ul{display:block}#stacks_in_1042 .navbar .ml-js li:hover>ul{display:none}#stacks_in_1042 .navbar .ml-js li.dd-open>ul{display:block!important}#stacks_in_1042 .ml-arrows .has-dropdown{padding-right:16px;*padding-right:16px}}#stacks_in_1042 .ml-arrows .has-dropdown:after{border-top-color:darkgray;border-top-color:var(--nav-link)}#stacks_in_1042 .ml-arrows .has-dropdown.active:after{border-top-color:darkgray;border-top-color:var(--nav-link-hover)}#stacks_in_1042 .ml-arrows>li>.ml-dropdown:focus:after,#stacks_in_1042 .ml-arrows>li:hover>.ml-dropdown:after,#stacks_in_1042 .ml-arrows>.sfHover>.ml-dropdown:after{border-top-color:darkgray;border-top-color:var(--nav-link)}#stacks_in_1042 .ml-arrows ul .ml-dropdown:after{border-top-color:darkgray;border-left-color:var(--nav-link)}#stacks_in_1042 .ml-arrows ul li>.ml-dropdown:focus:after,#stacks_in_1042 .ml-arrows ul li:hover>.ml-dropdown:after,#stacks_in_1042 .ml-arrows ul .sfHover>.ml-dropdown:after{border-top-color:darkgray;border-left-color:var(--nav-link)}#stacks_in_1042 .mob-icon{-webkit-transform:scale(.6);-moz-transform:scale(.6);-o-transform:scale(.6);transform:scale(.6)}#stacks_in_1042 .burg{width:45px;height:45px;position:relative;-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);transition:.5s ease-in-out;cursor:pointer}#stacks_in_1042 .burg span{display:block;position:absolute;height:6px;width:100%;background:darkgray;background:var(--nav-link); border-radius:6px;opacity:1;left:0;-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);transition:.25s ease-in-out}#stacks_in_1042 .burg span:nth-child(1){top:0}#stacks_in_1042 .burg span:nth-child(2),#stacks_in_1042 .burg span:nth-child(3){top:18px}#stacks_in_1042 .burg span:nth-child(4){top:36px}#stacks_in_1042.ml-toggle.expand .burg span:nth-child(1){top:18px;width:0;left:50%}#stacks_in_1042.ml-toggle.expand .burg span:nth-child(2){-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}#stacks_in_1042.ml-toggle.expand .burg span:nth-child(3){-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg)}#stacks_in_1042.ml-toggle.expand .burg span:nth-child(4){top:18px;width:0;left:50%} #stacks_in_1042 .navbar li:not(.custom-link){display:none!important}    .chroma-mark{position:relative}#stacks_in_1049.chroma-marker{position:absolute;top:50.00px}
.s-container-stacks_in_926{   margin-left: auto; margin-right: auto;}#s-wrapper-stacks_in_926{margin:0;  }#s-content-stacks_in_926{justify-content:center;   padding:100px 20px 20px 20px;}@media (min-width:600px){.s-container-stacks_in_926{ }#s-wrapper-stacks_in_926{}#s-content-stacks_in_926{ padding:120px 30px 50px 30px;}}@media (min-width:900px){.s-container-stacks_in_926{ }#s-wrapper-stacks_in_926{}#s-content-stacks_in_926{ padding:160px 50px 0 50px;}}@media (min-width:1200px){.s-container-stacks_in_926{ }#s-wrapper-stacks_in_926{}#s-content-stacks_in_926{ padding:160px 65px 0 75px;}}.s-bg-stacks_in_926{z-index:0}#s-outer-stacks_in_926{border-radius:0px 0px 0px 0px}
h1.stacks_in_1010{        }
 .s-container-stacks_in_1026{ }#s-wrapper-stacks_in_1026{margin:0; }#s-content-stacks_in_1026{justify-content:center; padding:0; }.s-bg-stacks_in_1026{z-index:0}#s-outer-stacks_in_1026{border-radius:0px 0px 0px 0px}
h2.stacks_in_1195{        }

#stacks_in_1196 {
	display:inline-block; width:100%; line-height: 1.700000em;
}

.s-container-stacks_in_831{   margin-left: auto; margin-right: auto;}#s-wrapper-stacks_in_831{margin:0;  }#s-content-stacks_in_831{justify-content:flex-start;   padding:20px 15px 30px 15px;}@media (min-width:600px){.s-container-stacks_in_831{ }#s-wrapper-stacks_in_831{}#s-content-stacks_in_831{ padding:20px 60px 30px 60px;}}@media (min-width:900px){.s-container-stacks_in_831{ }#s-wrapper-stacks_in_831{}#s-content-stacks_in_831{ padding:50px 70px 100px 70px;}}@media (min-width:1200px){.s-container-stacks_in_831{ }#s-wrapper-stacks_in_831{}#s-content-stacks_in_831{ padding:50px 75px 100px 75px;}}.s-bg-stacks_in_831{z-index:0}#s-outer-stacks_in_831{border-radius:0px 0px 0px 0px}
#stacks_in_1602 *,
#stacks_in_1602 *:before,
#stacks_in_1602 *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#pro_gallery_thumbnails_stacks_in_1602 {
  
  margin: 0;
  
  list-style: none;
  counter-reset: thumbnail-counter;
  
  padding: 0;
  
}

#pro_gallery_thumbnails_stacks_in_1602 .pro_gallery_item {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.00rem;
  counter-increment: thumbnail-counter;
}

#pro_gallery_thumbnails_stacks_in_1602 .hidden_pro_gallery_item {
  display: none;
}

#pro_gallery_thumbnails_stacks_in_1602 .pro_gallery_item_link {
  display: inline-block;
  font-size: 0;
}



















#pro_gallery_thumbnails_stacks_in_1602 .pro_gallery_item {
  overflow: hidden;
  
  
  position: relative;
}

@media (prefers-color-scheme: dark) {
  #pro_gallery_thumbnails_stacks_in_1602 .pro_gallery_item {
    
    
  }
}









#pro_gallery_thumbnails_stacks_in_1602 .pro_gallery_item img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}



/* Disable links that don't go anywhere */
#pro_gallery_thumbnails_stacks_in_1602 li a[href=''],
#pro_gallery_thumbnails_stacks_in_1602 li a[href='#null'] {
  pointer-events: none !important;
  cursor: default !important;
}

/* Toolbar (live search, tag filter and sorting) */

#pro_gallery_toolbar_stacks_in_1602 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1.00rem;
  width: 100%;
}

#pro_gallery_toolbar_stacks_in_1602:has(div) {
  margin: 1.00rem 0;
}

@media (min-width: 768px) {
  #pro_gallery_toolbar_stacks_in_1602 {
    flex-direction: row;
    justify-content: flex-end;
  }
}

#pro_gallery_live_search_stacks_in_1602,
#pro_gallery_tag_menu_stacks_in_1602,
#pro_gallery_sort_stacks_in_1602 {
  width: 100%;
}

#pro_gallery_toolbar_stacks_in_1602 label {
  font-weight: bold;
  color: #333;
}

#progallery_live_search_box_stacks_in_1602,
#pro_gallery_tag_select_stacks_in_1602,
#pro_gallery_sort_select_stacks_in_1602,
#pro_gallery_pagination_select_stacks_in_1602 {
  display: block;
  width: 100%;
  font-size: 1.00rem;
  line-height: 1.1;
  background-color: rgba(255, 255, 255, 1.00);
  border-radius: 0.25rem;
  border: 1px solid rgba(192, 192, 192, 1.00);
  padding: 0.50rem 1.00rem;
  color: rgba(121, 121, 121, 1.00);
  outline: none;
  transition: all 300ms ease-in-out;
  caret-color: rgba(51, 51, 51, 1.00);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

#pro_gallery_tag_select_stacks_in_1602,
#pro_gallery_sort_select_stacks_in_1602,
#pro_gallery_pagination_select_stacks_in_1602 {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.50rem 1.00rem calc(0.50rem + 1px) 1.00rem;
}

#progallery_live_search_box_stacks_in_1602:focus,
#pro_gallery_tag_select_stacks_in_1602:focus,
#pro_gallery_sort_select_stacks_in_1602:focus,
#pro_gallery_pagination_select_stacks_in_1602:focus {
  outline: none;
  border-color: rgba(51, 51, 51, 1.00);
  background-color: rgba(245, 245, 245, 1.00);
  color: rgba(121, 121, 121, 1.00);
}

#pro_gallery_live_search_content_stacks_in_1602 {
  position: relative;
}

#progallery_live_search_box_stacks_in_1602 {
  padding-right: 30px;
}

#pro_gallery_live_search_reset_stacks_in_1602 {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
}

#pro_gallery_live_search_reset_stacks_in_1602 svg {
  pointer-events: none;
  width: 25px;
  height: auto;
}

#pro_gallery_live_search_reset_stacks_in_1602:focus {
  outline: none;
}

#progallery_live_search_box_stacks_in_1602::placeholder {
  color: rgba(192, 192, 192, 1.00);
}

@media (prefers-color-scheme: dark) {
  #progallery_live_search_box_stacks_in_1602,
  #pro_gallery_tag_select_stacks_in_1602,
  #pro_gallery_sort_select_stacks_in_1602,
  #pro_gallery_pagination_select_stacks_in_1602 {
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(192, 192, 192, 1.00);
    color: rgba(121, 121, 121, 1.00);
    caret-color: rgba(51, 51, 51, 1.00);
  }
  
  #progallery_live_search_box_stacks_in_1602:focus,
  #pro_gallery_tag_select_stacks_in_1602:focus,
  #pro_gallery_sort_select_stacks_in_1602:focus,
  #pro_gallery_pagination_select_stacks_in_1602:focus {
    border-color: rgba(51, 51, 51, 1.00);
    background-color: rgba(245, 245, 245, 1.00);
    color: rgba(121, 121, 121, 1.00);
  }

  #progallery_live_search_box_stacks_in_1602::placeholder {
    color: rgba(192, 192, 192, 1.00);
  }
}

@media (min-width: 768px) {
  #pro_gallery_toolbar_stacks_in_1602 {
    flex-direction: row;
  }

  

  

  
}

/* Image Counters */



/* Blackout */

#pro_gallery_thumbnails_stacks_in_1602 li.blackout .pro_gallery_lightbox_trigger,
#pro_gallery_thumbnails_stacks_in_1602 li.blackout .pro_gallery_item_content {
    opacity: 0;
    transition: 300ms;
}

#pro_gallery_thumbnails_stacks_in_1602 .pro_gallery_blackout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1.00);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 1.00);
    text-align: center;
    z-index: 2;
    border: none;
    transition: 300ms;
    cursor: pointer;
}

#pro_gallery_thumbnails_stacks_in_1602 .pro_gallery_blackout > span {
    background-color: rgba(0, 0, 0, 1.00);
    padding: 0.75rem;
    border-radius: 0.75rem;
    transition: 300ms;
}

#pro_gallery_thumbnails_stacks_in_1602 .pro_gallery_hide {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    border: none;
    transition: 300ms;
    cursor: pointer;
    background: rgba(25, 25, 25, 1.00);
    color: rgba(255, 255, 255, 1.00);
    opacity: 0;
    pointer-events: none;
    width: calc(1.25rem + 1rem);
    height: calc(1.25rem + 1rem);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#pro_gallery_thumbnails_stacks_in_1602 .pro_gallery_hide svg {
    width: auto;
    height: 1.25rem;
}

#pro_gallery_thumbnails_stacks_in_1602 .pro_gallery_blackout:hover > span {
    background: rgba(25, 25, 25, 1.00);
}

#pro_gallery_thumbnails_stacks_in_1602 .pro_gallery_blackout .pro_gallery_blackout_title {
    font-size: 1.15rem;
    line-height: 1.5;
    display: block;
}

#pro_gallery_thumbnails_stacks_in_1602 .pro_gallery_blackout .pro_gallery_blackout_message {
    font-size: 0.90rem;
    line-height: 1.5;
    display: block;
}

#pro_gallery_thumbnails_stacks_in_1602 li.blackout.reveal .pro_gallery_blackout {
  opacity: 0;
  pointer-events: none;
}

#pro_gallery_thumbnails_stacks_in_1602 li.blackout.reveal .pro_gallery_hide,
#pro_gallery_thumbnails_stacks_in_1602 li.blackout.reveal .pro_gallery_lightbox_trigger,
#pro_gallery_thumbnails_stacks_in_1602 li.blackout.reveal .pro_gallery_item_content {
    opacity: 1;
    pointer-events: auto;
}








/* Lightbox stuff */
.pro_gallery_lightbox_content,
.pro_gallery_staged_lightbox_caption {
  display: none;
}

.pswp * {
  will-change: transform;
}

.pswp__bg {
  background: #FFFFFF;
}

.pswp__top-bar {
  background-color: rgba(0, 0, 0, 0.00);
}

button.pswp__button--play-pause-audio {
  background: none !important;
  font-size: 20px;
  color: #fff;
}

button.pswp__button--play-pause-audio .bi {
  width: 32px;
  height: 32px;
}

a.added_button,
button.added_button {
  display: flex;
  justify-content: center;
  align-items: center;
}

a.added_button svg.pswp__icn.bi,
button.added_button svg.pswp__icn.bi {
  width: 20px;
  height: auto;
  position: static;
  top: auto;
  left: auto;
  line-height: 1;
  display: inline-block;
}












.pswp__icn {
  fill: #000000;
}

.pswp__counter {
  color: rgba(0, 0, 0, 1.00);
  text-shadow: 1px 1px 1px var(--pswp-icon-color-secondary);
}

.pswp img {
  border: 0.00rem solid transparent;
  outline: 0.00rem solid transparent;
  border-radius: 0rem;
  padding: 0;
  transition: border 0.5s ease-in, outline 0.5s ease-in, border-radius 0.5s ease-in, padding 0.5s ease-in;
}

body.pro-gallery-lightbox-open .pswp img {
  border: 0.00rem solid #FFFFFF;
  outline: 0.00rem solid #FFFFFF;
  border-radius: 0.00rem;
  padding: 0.00rem;
}




.pswp__dynamic-caption--below > div {
	max-width: 40.00rem;
}



.pswp__dynamic-caption--below {
  padding: 1.50rem 0;
}

.pswp__dynamic-caption--aside {
  padding: 0 1.50rem;
}

.pswp__dynamic-caption {
  background-color: rgba(255, 255, 255, 1.00);
}

.pswp__dynamic-caption,
.pswp__dynamic-caption p,
.pswp__dynamic-caption strong {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption h1,
.pswp__dynamic-caption h2,
.pswp__dynamic-caption h3,
.pswp__dynamic-caption h4,
.pswp__dynamic-caption h5,
.pswp__dynamic-caption h6 {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption a,
.pswp__dynamic-caption a:visited,
.pswp__dynamic-caption a:hover,
.pswp__dynamic-caption a:focus,
.pswp__dynamic-caption a:active {
  color: rgba(15, 128, 255, 1.00);
}

.pswp__dynamic-caption--mobile {
	max-height: 10.00vh;
  overflow: auto;
  color: rgba(0, 0, 0, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  padding: 0.50rem;
}

.pswp__dynamic-caption--mobile p,
.pswp__dynamic-caption--mobile strong {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption--mobile h1,
.pswp__dynamic-caption--mobile h2,
.pswp__dynamic-caption--mobile h3,
.pswp__dynamic-caption--mobile h4,
.pswp__dynamic-caption--mobile h5,
.pswp__dynamic-caption--mobile h6 {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption--mobile a,
.pswp__dynamic-caption--mobile a:visited,
.pswp__dynamic-caption--mobile a:hover,
.pswp__dynamic-caption--mobile a:focus,
.pswp__dynamic-caption--mobile a:active {
  color: rgba(15, 128, 255, 1.00);
}

.pswp__dynamic-caption a {
  text-decoration: underline;
}

div.stacks_in_1603{        }

#stacks_in_1603 {
	padding: 0px 0px 20px 0px;
}
div.stacks_in_1604{        }

#stacks_in_1604 {
	padding: 0px 0px 20px 0px;
}
div.stacks_in_1605{        }

#stacks_in_1605 {
	padding: 0px 0px 20px 0px;
}
#stacks_in_1825 *,
#stacks_in_1825 *:before,
#stacks_in_1825 *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#pro_gallery_thumbnails_stacks_in_1825 {
  
  margin: 0;
  
  list-style: none;
  counter-reset: thumbnail-counter;
  
  padding: 0;
  
}

#pro_gallery_thumbnails_stacks_in_1825 .pro_gallery_item {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.00rem;
  counter-increment: thumbnail-counter;
}

#pro_gallery_thumbnails_stacks_in_1825 .hidden_pro_gallery_item {
  display: none;
}

#pro_gallery_thumbnails_stacks_in_1825 .pro_gallery_item_link {
  display: inline-block;
  font-size: 0;
}



















#pro_gallery_thumbnails_stacks_in_1825 .pro_gallery_item {
  overflow: hidden;
  
  
  position: relative;
}

@media (prefers-color-scheme: dark) {
  #pro_gallery_thumbnails_stacks_in_1825 .pro_gallery_item {
    
    
  }
}









#pro_gallery_thumbnails_stacks_in_1825 .pro_gallery_item img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}



/* Disable links that don't go anywhere */
#pro_gallery_thumbnails_stacks_in_1825 li a[href=''],
#pro_gallery_thumbnails_stacks_in_1825 li a[href='#null'] {
  pointer-events: none !important;
  cursor: default !important;
}

/* Toolbar (live search, tag filter and sorting) */

#pro_gallery_toolbar_stacks_in_1825 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1.00rem;
  width: 100%;
}

#pro_gallery_toolbar_stacks_in_1825:has(div) {
  margin: 1.00rem 0;
}

@media (min-width: 768px) {
  #pro_gallery_toolbar_stacks_in_1825 {
    flex-direction: row;
    justify-content: flex-end;
  }
}

#pro_gallery_live_search_stacks_in_1825,
#pro_gallery_tag_menu_stacks_in_1825,
#pro_gallery_sort_stacks_in_1825 {
  width: 100%;
}

#pro_gallery_toolbar_stacks_in_1825 label {
  font-weight: bold;
  color: #333;
}

#progallery_live_search_box_stacks_in_1825,
#pro_gallery_tag_select_stacks_in_1825,
#pro_gallery_sort_select_stacks_in_1825,
#pro_gallery_pagination_select_stacks_in_1825 {
  display: block;
  width: 100%;
  font-size: 1.00rem;
  line-height: 1.1;
  background-color: rgba(255, 255, 255, 1.00);
  border-radius: 0.25rem;
  border: 1px solid rgba(192, 192, 192, 1.00);
  padding: 0.50rem 1.00rem;
  color: rgba(121, 121, 121, 1.00);
  outline: none;
  transition: all 300ms ease-in-out;
  caret-color: rgba(51, 51, 51, 1.00);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

#pro_gallery_tag_select_stacks_in_1825,
#pro_gallery_sort_select_stacks_in_1825,
#pro_gallery_pagination_select_stacks_in_1825 {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.50rem 1.00rem calc(0.50rem + 1px) 1.00rem;
}

#progallery_live_search_box_stacks_in_1825:focus,
#pro_gallery_tag_select_stacks_in_1825:focus,
#pro_gallery_sort_select_stacks_in_1825:focus,
#pro_gallery_pagination_select_stacks_in_1825:focus {
  outline: none;
  border-color: rgba(51, 51, 51, 1.00);
  background-color: rgba(245, 245, 245, 1.00);
  color: rgba(121, 121, 121, 1.00);
}

#pro_gallery_live_search_content_stacks_in_1825 {
  position: relative;
}

#progallery_live_search_box_stacks_in_1825 {
  padding-right: 30px;
}

#pro_gallery_live_search_reset_stacks_in_1825 {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
}

#pro_gallery_live_search_reset_stacks_in_1825 svg {
  pointer-events: none;
  width: 25px;
  height: auto;
}

#pro_gallery_live_search_reset_stacks_in_1825:focus {
  outline: none;
}

#progallery_live_search_box_stacks_in_1825::placeholder {
  color: rgba(192, 192, 192, 1.00);
}

@media (prefers-color-scheme: dark) {
  #progallery_live_search_box_stacks_in_1825,
  #pro_gallery_tag_select_stacks_in_1825,
  #pro_gallery_sort_select_stacks_in_1825,
  #pro_gallery_pagination_select_stacks_in_1825 {
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(192, 192, 192, 1.00);
    color: rgba(121, 121, 121, 1.00);
    caret-color: rgba(51, 51, 51, 1.00);
  }
  
  #progallery_live_search_box_stacks_in_1825:focus,
  #pro_gallery_tag_select_stacks_in_1825:focus,
  #pro_gallery_sort_select_stacks_in_1825:focus,
  #pro_gallery_pagination_select_stacks_in_1825:focus {
    border-color: rgba(51, 51, 51, 1.00);
    background-color: rgba(245, 245, 245, 1.00);
    color: rgba(121, 121, 121, 1.00);
  }

  #progallery_live_search_box_stacks_in_1825::placeholder {
    color: rgba(192, 192, 192, 1.00);
  }
}

@media (min-width: 768px) {
  #pro_gallery_toolbar_stacks_in_1825 {
    flex-direction: row;
  }

  

  

  
}

/* Image Counters */



/* Blackout */

#pro_gallery_thumbnails_stacks_in_1825 li.blackout .pro_gallery_lightbox_trigger,
#pro_gallery_thumbnails_stacks_in_1825 li.blackout .pro_gallery_item_content {
    opacity: 0;
    transition: 300ms;
}

#pro_gallery_thumbnails_stacks_in_1825 .pro_gallery_blackout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1.00);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 1.00);
    text-align: center;
    z-index: 2;
    border: none;
    transition: 300ms;
    cursor: pointer;
}

#pro_gallery_thumbnails_stacks_in_1825 .pro_gallery_blackout > span {
    background-color: rgba(0, 0, 0, 1.00);
    padding: 0.75rem;
    border-radius: 0.75rem;
    transition: 300ms;
}

#pro_gallery_thumbnails_stacks_in_1825 .pro_gallery_hide {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    border: none;
    transition: 300ms;
    cursor: pointer;
    background: rgba(25, 25, 25, 1.00);
    color: rgba(255, 255, 255, 1.00);
    opacity: 0;
    pointer-events: none;
    width: calc(1.25rem + 1rem);
    height: calc(1.25rem + 1rem);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#pro_gallery_thumbnails_stacks_in_1825 .pro_gallery_hide svg {
    width: auto;
    height: 1.25rem;
}

#pro_gallery_thumbnails_stacks_in_1825 .pro_gallery_blackout:hover > span {
    background: rgba(25, 25, 25, 1.00);
}

#pro_gallery_thumbnails_stacks_in_1825 .pro_gallery_blackout .pro_gallery_blackout_title {
    font-size: 1.15rem;
    line-height: 1.5;
    display: block;
}

#pro_gallery_thumbnails_stacks_in_1825 .pro_gallery_blackout .pro_gallery_blackout_message {
    font-size: 0.90rem;
    line-height: 1.5;
    display: block;
}

#pro_gallery_thumbnails_stacks_in_1825 li.blackout.reveal .pro_gallery_blackout {
  opacity: 0;
  pointer-events: none;
}

#pro_gallery_thumbnails_stacks_in_1825 li.blackout.reveal .pro_gallery_hide,
#pro_gallery_thumbnails_stacks_in_1825 li.blackout.reveal .pro_gallery_lightbox_trigger,
#pro_gallery_thumbnails_stacks_in_1825 li.blackout.reveal .pro_gallery_item_content {
    opacity: 1;
    pointer-events: auto;
}








/* Lightbox stuff */
.pro_gallery_lightbox_content,
.pro_gallery_staged_lightbox_caption {
  display: none;
}

.pswp * {
  will-change: transform;
}

.pswp__bg {
  background: #FFFFFF;
}

.pswp__top-bar {
  background-color: rgba(0, 0, 0, 0.00);
}

button.pswp__button--play-pause-audio {
  background: none !important;
  font-size: 20px;
  color: #fff;
}

button.pswp__button--play-pause-audio .bi {
  width: 32px;
  height: 32px;
}

a.added_button,
button.added_button {
  display: flex;
  justify-content: center;
  align-items: center;
}

a.added_button svg.pswp__icn.bi,
button.added_button svg.pswp__icn.bi {
  width: 20px;
  height: auto;
  position: static;
  top: auto;
  left: auto;
  line-height: 1;
  display: inline-block;
}












.pswp__icn {
  fill: #000000;
}

.pswp__counter {
  color: rgba(0, 0, 0, 1.00);
  text-shadow: 1px 1px 1px var(--pswp-icon-color-secondary);
}

.pswp img {
  border: 0.00rem solid transparent;
  outline: 0.00rem solid transparent;
  border-radius: 0rem;
  padding: 0;
  transition: border 0.5s ease-in, outline 0.5s ease-in, border-radius 0.5s ease-in, padding 0.5s ease-in;
}

body.pro-gallery-lightbox-open .pswp img {
  border: 0.00rem solid #FFFFFF;
  outline: 0.00rem solid #FFFFFF;
  border-radius: 0.00rem;
  padding: 0.00rem;
}




.pswp__dynamic-caption--below > div {
	max-width: 40.00rem;
}



.pswp__dynamic-caption--below {
  padding: 1.50rem 0;
}

.pswp__dynamic-caption--aside {
  padding: 0 1.50rem;
}

.pswp__dynamic-caption {
  background-color: rgba(255, 255, 255, 1.00);
}

.pswp__dynamic-caption,
.pswp__dynamic-caption p,
.pswp__dynamic-caption strong {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption h1,
.pswp__dynamic-caption h2,
.pswp__dynamic-caption h3,
.pswp__dynamic-caption h4,
.pswp__dynamic-caption h5,
.pswp__dynamic-caption h6 {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption a,
.pswp__dynamic-caption a:visited,
.pswp__dynamic-caption a:hover,
.pswp__dynamic-caption a:focus,
.pswp__dynamic-caption a:active {
  color: rgba(15, 128, 255, 1.00);
}

.pswp__dynamic-caption--mobile {
	max-height: 10.00vh;
  overflow: auto;
  color: rgba(0, 0, 0, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  padding: 0.50rem;
}

.pswp__dynamic-caption--mobile p,
.pswp__dynamic-caption--mobile strong {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption--mobile h1,
.pswp__dynamic-caption--mobile h2,
.pswp__dynamic-caption--mobile h3,
.pswp__dynamic-caption--mobile h4,
.pswp__dynamic-caption--mobile h5,
.pswp__dynamic-caption--mobile h6 {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption--mobile a,
.pswp__dynamic-caption--mobile a:visited,
.pswp__dynamic-caption--mobile a:hover,
.pswp__dynamic-caption--mobile a:focus,
.pswp__dynamic-caption--mobile a:active {
  color: rgba(15, 128, 255, 1.00);
}

.pswp__dynamic-caption a {
  text-decoration: underline;
}

div.stacks_in_1826{        }

#stacks_in_1826 {
	padding: 0px 0px 20px 0px;
}
div.stacks_in_1827{        }

#stacks_in_1827 {
	padding: 0px 0px 20px 0px;
}
#stacks_in_1754 *,
#stacks_in_1754 *:before,
#stacks_in_1754 *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#pro_gallery_thumbnails_stacks_in_1754 {
  
  margin: 0;
  
  list-style: none;
  counter-reset: thumbnail-counter;
  
  padding: 0;
  
}

#pro_gallery_thumbnails_stacks_in_1754 .pro_gallery_item {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.00rem;
  counter-increment: thumbnail-counter;
}

#pro_gallery_thumbnails_stacks_in_1754 .hidden_pro_gallery_item {
  display: none;
}

#pro_gallery_thumbnails_stacks_in_1754 .pro_gallery_item_link {
  display: inline-block;
  font-size: 0;
}



















#pro_gallery_thumbnails_stacks_in_1754 .pro_gallery_item {
  overflow: hidden;
  
  
  position: relative;
}

@media (prefers-color-scheme: dark) {
  #pro_gallery_thumbnails_stacks_in_1754 .pro_gallery_item {
    
    
  }
}









#pro_gallery_thumbnails_stacks_in_1754 .pro_gallery_item img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}



/* Disable links that don't go anywhere */
#pro_gallery_thumbnails_stacks_in_1754 li a[href=''],
#pro_gallery_thumbnails_stacks_in_1754 li a[href='#null'] {
  pointer-events: none !important;
  cursor: default !important;
}

/* Toolbar (live search, tag filter and sorting) */

#pro_gallery_toolbar_stacks_in_1754 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1.00rem;
  width: 100%;
}

#pro_gallery_toolbar_stacks_in_1754:has(div) {
  margin: 1.00rem 0;
}

@media (min-width: 768px) {
  #pro_gallery_toolbar_stacks_in_1754 {
    flex-direction: row;
    justify-content: flex-end;
  }
}

#pro_gallery_live_search_stacks_in_1754,
#pro_gallery_tag_menu_stacks_in_1754,
#pro_gallery_sort_stacks_in_1754 {
  width: 100%;
}

#pro_gallery_toolbar_stacks_in_1754 label {
  font-weight: bold;
  color: #333;
}

#progallery_live_search_box_stacks_in_1754,
#pro_gallery_tag_select_stacks_in_1754,
#pro_gallery_sort_select_stacks_in_1754,
#pro_gallery_pagination_select_stacks_in_1754 {
  display: block;
  width: 100%;
  font-size: 1.00rem;
  line-height: 1.1;
  background-color: rgba(255, 255, 255, 1.00);
  border-radius: 0.25rem;
  border: 1px solid rgba(192, 192, 192, 1.00);
  padding: 0.50rem 1.00rem;
  color: rgba(121, 121, 121, 1.00);
  outline: none;
  transition: all 300ms ease-in-out;
  caret-color: rgba(51, 51, 51, 1.00);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

#pro_gallery_tag_select_stacks_in_1754,
#pro_gallery_sort_select_stacks_in_1754,
#pro_gallery_pagination_select_stacks_in_1754 {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.50rem 1.00rem calc(0.50rem + 1px) 1.00rem;
}

#progallery_live_search_box_stacks_in_1754:focus,
#pro_gallery_tag_select_stacks_in_1754:focus,
#pro_gallery_sort_select_stacks_in_1754:focus,
#pro_gallery_pagination_select_stacks_in_1754:focus {
  outline: none;
  border-color: rgba(51, 51, 51, 1.00);
  background-color: rgba(245, 245, 245, 1.00);
  color: rgba(121, 121, 121, 1.00);
}

#pro_gallery_live_search_content_stacks_in_1754 {
  position: relative;
}

#progallery_live_search_box_stacks_in_1754 {
  padding-right: 30px;
}

#pro_gallery_live_search_reset_stacks_in_1754 {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
}

#pro_gallery_live_search_reset_stacks_in_1754 svg {
  pointer-events: none;
  width: 25px;
  height: auto;
}

#pro_gallery_live_search_reset_stacks_in_1754:focus {
  outline: none;
}

#progallery_live_search_box_stacks_in_1754::placeholder {
  color: rgba(192, 192, 192, 1.00);
}

@media (prefers-color-scheme: dark) {
  #progallery_live_search_box_stacks_in_1754,
  #pro_gallery_tag_select_stacks_in_1754,
  #pro_gallery_sort_select_stacks_in_1754,
  #pro_gallery_pagination_select_stacks_in_1754 {
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(192, 192, 192, 1.00);
    color: rgba(121, 121, 121, 1.00);
    caret-color: rgba(51, 51, 51, 1.00);
  }
  
  #progallery_live_search_box_stacks_in_1754:focus,
  #pro_gallery_tag_select_stacks_in_1754:focus,
  #pro_gallery_sort_select_stacks_in_1754:focus,
  #pro_gallery_pagination_select_stacks_in_1754:focus {
    border-color: rgba(51, 51, 51, 1.00);
    background-color: rgba(245, 245, 245, 1.00);
    color: rgba(121, 121, 121, 1.00);
  }

  #progallery_live_search_box_stacks_in_1754::placeholder {
    color: rgba(192, 192, 192, 1.00);
  }
}

@media (min-width: 768px) {
  #pro_gallery_toolbar_stacks_in_1754 {
    flex-direction: row;
  }

  

  

  
}

/* Image Counters */



/* Blackout */

#pro_gallery_thumbnails_stacks_in_1754 li.blackout .pro_gallery_lightbox_trigger,
#pro_gallery_thumbnails_stacks_in_1754 li.blackout .pro_gallery_item_content {
    opacity: 0;
    transition: 300ms;
}

#pro_gallery_thumbnails_stacks_in_1754 .pro_gallery_blackout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1.00);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 1.00);
    text-align: center;
    z-index: 2;
    border: none;
    transition: 300ms;
    cursor: pointer;
}

#pro_gallery_thumbnails_stacks_in_1754 .pro_gallery_blackout > span {
    background-color: rgba(0, 0, 0, 1.00);
    padding: 0.75rem;
    border-radius: 0.75rem;
    transition: 300ms;
}

#pro_gallery_thumbnails_stacks_in_1754 .pro_gallery_hide {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    border: none;
    transition: 300ms;
    cursor: pointer;
    background: rgba(25, 25, 25, 1.00);
    color: rgba(255, 255, 255, 1.00);
    opacity: 0;
    pointer-events: none;
    width: calc(1.25rem + 1rem);
    height: calc(1.25rem + 1rem);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#pro_gallery_thumbnails_stacks_in_1754 .pro_gallery_hide svg {
    width: auto;
    height: 1.25rem;
}

#pro_gallery_thumbnails_stacks_in_1754 .pro_gallery_blackout:hover > span {
    background: rgba(25, 25, 25, 1.00);
}

#pro_gallery_thumbnails_stacks_in_1754 .pro_gallery_blackout .pro_gallery_blackout_title {
    font-size: 1.15rem;
    line-height: 1.5;
    display: block;
}

#pro_gallery_thumbnails_stacks_in_1754 .pro_gallery_blackout .pro_gallery_blackout_message {
    font-size: 0.90rem;
    line-height: 1.5;
    display: block;
}

#pro_gallery_thumbnails_stacks_in_1754 li.blackout.reveal .pro_gallery_blackout {
  opacity: 0;
  pointer-events: none;
}

#pro_gallery_thumbnails_stacks_in_1754 li.blackout.reveal .pro_gallery_hide,
#pro_gallery_thumbnails_stacks_in_1754 li.blackout.reveal .pro_gallery_lightbox_trigger,
#pro_gallery_thumbnails_stacks_in_1754 li.blackout.reveal .pro_gallery_item_content {
    opacity: 1;
    pointer-events: auto;
}








/* Lightbox stuff */
.pro_gallery_lightbox_content,
.pro_gallery_staged_lightbox_caption {
  display: none;
}

.pswp * {
  will-change: transform;
}

.pswp__bg {
  background: #FFFFFF;
}

.pswp__top-bar {
  background-color: rgba(0, 0, 0, 0.00);
}

button.pswp__button--play-pause-audio {
  background: none !important;
  font-size: 20px;
  color: #fff;
}

button.pswp__button--play-pause-audio .bi {
  width: 32px;
  height: 32px;
}

a.added_button,
button.added_button {
  display: flex;
  justify-content: center;
  align-items: center;
}

a.added_button svg.pswp__icn.bi,
button.added_button svg.pswp__icn.bi {
  width: 20px;
  height: auto;
  position: static;
  top: auto;
  left: auto;
  line-height: 1;
  display: inline-block;
}












.pswp__icn {
  fill: #000000;
}

.pswp__counter {
  color: rgba(0, 0, 0, 1.00);
  text-shadow: 1px 1px 1px var(--pswp-icon-color-secondary);
}

.pswp img {
  border: 0.00rem solid transparent;
  outline: 0.00rem solid transparent;
  border-radius: 0rem;
  padding: 0;
  transition: border 0.5s ease-in, outline 0.5s ease-in, border-radius 0.5s ease-in, padding 0.5s ease-in;
}

body.pro-gallery-lightbox-open .pswp img {
  border: 0.00rem solid #FFFFFF;
  outline: 0.00rem solid #FFFFFF;
  border-radius: 0.00rem;
  padding: 0.00rem;
}




.pswp__dynamic-caption--below > div {
	max-width: 40.00rem;
}



.pswp__dynamic-caption--below {
  padding: 1.50rem 0;
}

.pswp__dynamic-caption--aside {
  padding: 0 1.50rem;
}

.pswp__dynamic-caption {
  background-color: rgba(255, 255, 255, 1.00);
}

.pswp__dynamic-caption,
.pswp__dynamic-caption p,
.pswp__dynamic-caption strong {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption h1,
.pswp__dynamic-caption h2,
.pswp__dynamic-caption h3,
.pswp__dynamic-caption h4,
.pswp__dynamic-caption h5,
.pswp__dynamic-caption h6 {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption a,
.pswp__dynamic-caption a:visited,
.pswp__dynamic-caption a:hover,
.pswp__dynamic-caption a:focus,
.pswp__dynamic-caption a:active {
  color: rgba(15, 128, 255, 1.00);
}

.pswp__dynamic-caption--mobile {
	max-height: 10.00vh;
  overflow: auto;
  color: rgba(0, 0, 0, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  padding: 0.50rem;
}

.pswp__dynamic-caption--mobile p,
.pswp__dynamic-caption--mobile strong {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption--mobile h1,
.pswp__dynamic-caption--mobile h2,
.pswp__dynamic-caption--mobile h3,
.pswp__dynamic-caption--mobile h4,
.pswp__dynamic-caption--mobile h5,
.pswp__dynamic-caption--mobile h6 {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption--mobile a,
.pswp__dynamic-caption--mobile a:visited,
.pswp__dynamic-caption--mobile a:hover,
.pswp__dynamic-caption--mobile a:focus,
.pswp__dynamic-caption--mobile a:active {
  color: rgba(15, 128, 255, 1.00);
}

.pswp__dynamic-caption a {
  text-decoration: underline;
}

div.stacks_in_1755{        }

#stacks_in_1755 {
	padding: 0px 0px 20px 0px;
}
div.stacks_in_1756{        }

#stacks_in_1756 {
	padding: 0px 0px 20px 0px;
}
div.stacks_in_1757{        }

#stacks_in_1757 {
	padding: 0px 0px 20px 0px;
}
#stacks_in_1770 *,
#stacks_in_1770 *:before,
#stacks_in_1770 *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#pro_gallery_thumbnails_stacks_in_1770 {
  
  margin: 0;
  
  list-style: none;
  counter-reset: thumbnail-counter;
  
  padding: 0;
  
}

#pro_gallery_thumbnails_stacks_in_1770 .pro_gallery_item {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.00rem;
  counter-increment: thumbnail-counter;
}

#pro_gallery_thumbnails_stacks_in_1770 .hidden_pro_gallery_item {
  display: none;
}

#pro_gallery_thumbnails_stacks_in_1770 .pro_gallery_item_link {
  display: inline-block;
  font-size: 0;
}



















#pro_gallery_thumbnails_stacks_in_1770 .pro_gallery_item {
  overflow: hidden;
  
  
  position: relative;
}

@media (prefers-color-scheme: dark) {
  #pro_gallery_thumbnails_stacks_in_1770 .pro_gallery_item {
    
    
  }
}









#pro_gallery_thumbnails_stacks_in_1770 .pro_gallery_item img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}



/* Disable links that don't go anywhere */
#pro_gallery_thumbnails_stacks_in_1770 li a[href=''],
#pro_gallery_thumbnails_stacks_in_1770 li a[href='#null'] {
  pointer-events: none !important;
  cursor: default !important;
}

/* Toolbar (live search, tag filter and sorting) */

#pro_gallery_toolbar_stacks_in_1770 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1.00rem;
  width: 100%;
}

#pro_gallery_toolbar_stacks_in_1770:has(div) {
  margin: 1.00rem 0;
}

@media (min-width: 768px) {
  #pro_gallery_toolbar_stacks_in_1770 {
    flex-direction: row;
    justify-content: flex-end;
  }
}

#pro_gallery_live_search_stacks_in_1770,
#pro_gallery_tag_menu_stacks_in_1770,
#pro_gallery_sort_stacks_in_1770 {
  width: 100%;
}

#pro_gallery_toolbar_stacks_in_1770 label {
  font-weight: bold;
  color: #333;
}

#progallery_live_search_box_stacks_in_1770,
#pro_gallery_tag_select_stacks_in_1770,
#pro_gallery_sort_select_stacks_in_1770,
#pro_gallery_pagination_select_stacks_in_1770 {
  display: block;
  width: 100%;
  font-size: 1.00rem;
  line-height: 1.1;
  background-color: rgba(255, 255, 255, 1.00);
  border-radius: 0.25rem;
  border: 1px solid rgba(192, 192, 192, 1.00);
  padding: 0.50rem 1.00rem;
  color: rgba(121, 121, 121, 1.00);
  outline: none;
  transition: all 300ms ease-in-out;
  caret-color: rgba(51, 51, 51, 1.00);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

#pro_gallery_tag_select_stacks_in_1770,
#pro_gallery_sort_select_stacks_in_1770,
#pro_gallery_pagination_select_stacks_in_1770 {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.50rem 1.00rem calc(0.50rem + 1px) 1.00rem;
}

#progallery_live_search_box_stacks_in_1770:focus,
#pro_gallery_tag_select_stacks_in_1770:focus,
#pro_gallery_sort_select_stacks_in_1770:focus,
#pro_gallery_pagination_select_stacks_in_1770:focus {
  outline: none;
  border-color: rgba(51, 51, 51, 1.00);
  background-color: rgba(245, 245, 245, 1.00);
  color: rgba(121, 121, 121, 1.00);
}

#pro_gallery_live_search_content_stacks_in_1770 {
  position: relative;
}

#progallery_live_search_box_stacks_in_1770 {
  padding-right: 30px;
}

#pro_gallery_live_search_reset_stacks_in_1770 {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
}

#pro_gallery_live_search_reset_stacks_in_1770 svg {
  pointer-events: none;
  width: 25px;
  height: auto;
}

#pro_gallery_live_search_reset_stacks_in_1770:focus {
  outline: none;
}

#progallery_live_search_box_stacks_in_1770::placeholder {
  color: rgba(192, 192, 192, 1.00);
}

@media (prefers-color-scheme: dark) {
  #progallery_live_search_box_stacks_in_1770,
  #pro_gallery_tag_select_stacks_in_1770,
  #pro_gallery_sort_select_stacks_in_1770,
  #pro_gallery_pagination_select_stacks_in_1770 {
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(192, 192, 192, 1.00);
    color: rgba(121, 121, 121, 1.00);
    caret-color: rgba(51, 51, 51, 1.00);
  }
  
  #progallery_live_search_box_stacks_in_1770:focus,
  #pro_gallery_tag_select_stacks_in_1770:focus,
  #pro_gallery_sort_select_stacks_in_1770:focus,
  #pro_gallery_pagination_select_stacks_in_1770:focus {
    border-color: rgba(51, 51, 51, 1.00);
    background-color: rgba(245, 245, 245, 1.00);
    color: rgba(121, 121, 121, 1.00);
  }

  #progallery_live_search_box_stacks_in_1770::placeholder {
    color: rgba(192, 192, 192, 1.00);
  }
}

@media (min-width: 768px) {
  #pro_gallery_toolbar_stacks_in_1770 {
    flex-direction: row;
  }

  

  

  
}

/* Image Counters */



/* Blackout */

#pro_gallery_thumbnails_stacks_in_1770 li.blackout .pro_gallery_lightbox_trigger,
#pro_gallery_thumbnails_stacks_in_1770 li.blackout .pro_gallery_item_content {
    opacity: 0;
    transition: 300ms;
}

#pro_gallery_thumbnails_stacks_in_1770 .pro_gallery_blackout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1.00);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 1.00);
    text-align: center;
    z-index: 2;
    border: none;
    transition: 300ms;
    cursor: pointer;
}

#pro_gallery_thumbnails_stacks_in_1770 .pro_gallery_blackout > span {
    background-color: rgba(0, 0, 0, 1.00);
    padding: 0.75rem;
    border-radius: 0.75rem;
    transition: 300ms;
}

#pro_gallery_thumbnails_stacks_in_1770 .pro_gallery_hide {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    border: none;
    transition: 300ms;
    cursor: pointer;
    background: rgba(25, 25, 25, 1.00);
    color: rgba(255, 255, 255, 1.00);
    opacity: 0;
    pointer-events: none;
    width: calc(1.25rem + 1rem);
    height: calc(1.25rem + 1rem);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#pro_gallery_thumbnails_stacks_in_1770 .pro_gallery_hide svg {
    width: auto;
    height: 1.25rem;
}

#pro_gallery_thumbnails_stacks_in_1770 .pro_gallery_blackout:hover > span {
    background: rgba(25, 25, 25, 1.00);
}

#pro_gallery_thumbnails_stacks_in_1770 .pro_gallery_blackout .pro_gallery_blackout_title {
    font-size: 1.15rem;
    line-height: 1.5;
    display: block;
}

#pro_gallery_thumbnails_stacks_in_1770 .pro_gallery_blackout .pro_gallery_blackout_message {
    font-size: 0.90rem;
    line-height: 1.5;
    display: block;
}

#pro_gallery_thumbnails_stacks_in_1770 li.blackout.reveal .pro_gallery_blackout {
  opacity: 0;
  pointer-events: none;
}

#pro_gallery_thumbnails_stacks_in_1770 li.blackout.reveal .pro_gallery_hide,
#pro_gallery_thumbnails_stacks_in_1770 li.blackout.reveal .pro_gallery_lightbox_trigger,
#pro_gallery_thumbnails_stacks_in_1770 li.blackout.reveal .pro_gallery_item_content {
    opacity: 1;
    pointer-events: auto;
}








/* Lightbox stuff */
.pro_gallery_lightbox_content,
.pro_gallery_staged_lightbox_caption {
  display: none;
}

.pswp * {
  will-change: transform;
}

.pswp__bg {
  background: #FFFFFF;
}

.pswp__top-bar {
  background-color: rgba(0, 0, 0, 0.00);
}

button.pswp__button--play-pause-audio {
  background: none !important;
  font-size: 20px;
  color: #fff;
}

button.pswp__button--play-pause-audio .bi {
  width: 32px;
  height: 32px;
}

a.added_button,
button.added_button {
  display: flex;
  justify-content: center;
  align-items: center;
}

a.added_button svg.pswp__icn.bi,
button.added_button svg.pswp__icn.bi {
  width: 20px;
  height: auto;
  position: static;
  top: auto;
  left: auto;
  line-height: 1;
  display: inline-block;
}












.pswp__icn {
  fill: #000000;
}

.pswp__counter {
  color: rgba(0, 0, 0, 1.00);
  text-shadow: 1px 1px 1px var(--pswp-icon-color-secondary);
}

.pswp img {
  border: 0.00rem solid transparent;
  outline: 0.00rem solid transparent;
  border-radius: 0rem;
  padding: 0;
  transition: border 0.5s ease-in, outline 0.5s ease-in, border-radius 0.5s ease-in, padding 0.5s ease-in;
}

body.pro-gallery-lightbox-open .pswp img {
  border: 0.00rem solid #FFFFFF;
  outline: 0.00rem solid #FFFFFF;
  border-radius: 0.00rem;
  padding: 0.00rem;
}




.pswp__dynamic-caption--below > div {
	max-width: 40.00rem;
}



.pswp__dynamic-caption--below {
  padding: 1.50rem 0;
}

.pswp__dynamic-caption--aside {
  padding: 0 1.50rem;
}

.pswp__dynamic-caption {
  background-color: rgba(255, 255, 255, 1.00);
}

.pswp__dynamic-caption,
.pswp__dynamic-caption p,
.pswp__dynamic-caption strong {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption h1,
.pswp__dynamic-caption h2,
.pswp__dynamic-caption h3,
.pswp__dynamic-caption h4,
.pswp__dynamic-caption h5,
.pswp__dynamic-caption h6 {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption a,
.pswp__dynamic-caption a:visited,
.pswp__dynamic-caption a:hover,
.pswp__dynamic-caption a:focus,
.pswp__dynamic-caption a:active {
  color: rgba(15, 128, 255, 1.00);
}

.pswp__dynamic-caption--mobile {
	max-height: 10.00vh;
  overflow: auto;
  color: rgba(0, 0, 0, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  padding: 0.50rem;
}

.pswp__dynamic-caption--mobile p,
.pswp__dynamic-caption--mobile strong {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption--mobile h1,
.pswp__dynamic-caption--mobile h2,
.pswp__dynamic-caption--mobile h3,
.pswp__dynamic-caption--mobile h4,
.pswp__dynamic-caption--mobile h5,
.pswp__dynamic-caption--mobile h6 {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption--mobile a,
.pswp__dynamic-caption--mobile a:visited,
.pswp__dynamic-caption--mobile a:hover,
.pswp__dynamic-caption--mobile a:focus,
.pswp__dynamic-caption--mobile a:active {
  color: rgba(15, 128, 255, 1.00);
}

.pswp__dynamic-caption a {
  text-decoration: underline;
}

div.stacks_in_1771{        }

#stacks_in_1771 {
	padding: 0px 0px 20px 0px;
}
div.stacks_in_1772{        }

#stacks_in_1772 {
	padding: 0px 0px 20px 0px;
}
#stacks_in_1785 *,
#stacks_in_1785 *:before,
#stacks_in_1785 *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#pro_gallery_thumbnails_stacks_in_1785 {
  
  margin: 0;
  
  list-style: none;
  counter-reset: thumbnail-counter;
  
  padding: 0;
  
}

#pro_gallery_thumbnails_stacks_in_1785 .pro_gallery_item {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.00rem;
  counter-increment: thumbnail-counter;
}

#pro_gallery_thumbnails_stacks_in_1785 .hidden_pro_gallery_item {
  display: none;
}

#pro_gallery_thumbnails_stacks_in_1785 .pro_gallery_item_link {
  display: inline-block;
  font-size: 0;
}



















#pro_gallery_thumbnails_stacks_in_1785 .pro_gallery_item {
  overflow: hidden;
  
  
  position: relative;
}

@media (prefers-color-scheme: dark) {
  #pro_gallery_thumbnails_stacks_in_1785 .pro_gallery_item {
    
    
  }
}









#pro_gallery_thumbnails_stacks_in_1785 .pro_gallery_item img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}



/* Disable links that don't go anywhere */
#pro_gallery_thumbnails_stacks_in_1785 li a[href=''],
#pro_gallery_thumbnails_stacks_in_1785 li a[href='#null'] {
  pointer-events: none !important;
  cursor: default !important;
}

/* Toolbar (live search, tag filter and sorting) */

#pro_gallery_toolbar_stacks_in_1785 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1.00rem;
  width: 100%;
}

#pro_gallery_toolbar_stacks_in_1785:has(div) {
  margin: 1.00rem 0;
}

@media (min-width: 768px) {
  #pro_gallery_toolbar_stacks_in_1785 {
    flex-direction: row;
    justify-content: flex-end;
  }
}

#pro_gallery_live_search_stacks_in_1785,
#pro_gallery_tag_menu_stacks_in_1785,
#pro_gallery_sort_stacks_in_1785 {
  width: 100%;
}

#pro_gallery_toolbar_stacks_in_1785 label {
  font-weight: bold;
  color: #333;
}

#progallery_live_search_box_stacks_in_1785,
#pro_gallery_tag_select_stacks_in_1785,
#pro_gallery_sort_select_stacks_in_1785,
#pro_gallery_pagination_select_stacks_in_1785 {
  display: block;
  width: 100%;
  font-size: 1.00rem;
  line-height: 1.1;
  background-color: rgba(255, 255, 255, 1.00);
  border-radius: 0.25rem;
  border: 1px solid rgba(192, 192, 192, 1.00);
  padding: 0.50rem 1.00rem;
  color: rgba(121, 121, 121, 1.00);
  outline: none;
  transition: all 300ms ease-in-out;
  caret-color: rgba(51, 51, 51, 1.00);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

#pro_gallery_tag_select_stacks_in_1785,
#pro_gallery_sort_select_stacks_in_1785,
#pro_gallery_pagination_select_stacks_in_1785 {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.50rem 1.00rem calc(0.50rem + 1px) 1.00rem;
}

#progallery_live_search_box_stacks_in_1785:focus,
#pro_gallery_tag_select_stacks_in_1785:focus,
#pro_gallery_sort_select_stacks_in_1785:focus,
#pro_gallery_pagination_select_stacks_in_1785:focus {
  outline: none;
  border-color: rgba(51, 51, 51, 1.00);
  background-color: rgba(245, 245, 245, 1.00);
  color: rgba(121, 121, 121, 1.00);
}

#pro_gallery_live_search_content_stacks_in_1785 {
  position: relative;
}

#progallery_live_search_box_stacks_in_1785 {
  padding-right: 30px;
}

#pro_gallery_live_search_reset_stacks_in_1785 {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
}

#pro_gallery_live_search_reset_stacks_in_1785 svg {
  pointer-events: none;
  width: 25px;
  height: auto;
}

#pro_gallery_live_search_reset_stacks_in_1785:focus {
  outline: none;
}

#progallery_live_search_box_stacks_in_1785::placeholder {
  color: rgba(192, 192, 192, 1.00);
}

@media (prefers-color-scheme: dark) {
  #progallery_live_search_box_stacks_in_1785,
  #pro_gallery_tag_select_stacks_in_1785,
  #pro_gallery_sort_select_stacks_in_1785,
  #pro_gallery_pagination_select_stacks_in_1785 {
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(192, 192, 192, 1.00);
    color: rgba(121, 121, 121, 1.00);
    caret-color: rgba(51, 51, 51, 1.00);
  }
  
  #progallery_live_search_box_stacks_in_1785:focus,
  #pro_gallery_tag_select_stacks_in_1785:focus,
  #pro_gallery_sort_select_stacks_in_1785:focus,
  #pro_gallery_pagination_select_stacks_in_1785:focus {
    border-color: rgba(51, 51, 51, 1.00);
    background-color: rgba(245, 245, 245, 1.00);
    color: rgba(121, 121, 121, 1.00);
  }

  #progallery_live_search_box_stacks_in_1785::placeholder {
    color: rgba(192, 192, 192, 1.00);
  }
}

@media (min-width: 768px) {
  #pro_gallery_toolbar_stacks_in_1785 {
    flex-direction: row;
  }

  

  

  
}

/* Image Counters */



/* Blackout */

#pro_gallery_thumbnails_stacks_in_1785 li.blackout .pro_gallery_lightbox_trigger,
#pro_gallery_thumbnails_stacks_in_1785 li.blackout .pro_gallery_item_content {
    opacity: 0;
    transition: 300ms;
}

#pro_gallery_thumbnails_stacks_in_1785 .pro_gallery_blackout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1.00);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 1.00);
    text-align: center;
    z-index: 2;
    border: none;
    transition: 300ms;
    cursor: pointer;
}

#pro_gallery_thumbnails_stacks_in_1785 .pro_gallery_blackout > span {
    background-color: rgba(0, 0, 0, 1.00);
    padding: 0.75rem;
    border-radius: 0.75rem;
    transition: 300ms;
}

#pro_gallery_thumbnails_stacks_in_1785 .pro_gallery_hide {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    border: none;
    transition: 300ms;
    cursor: pointer;
    background: rgba(25, 25, 25, 1.00);
    color: rgba(255, 255, 255, 1.00);
    opacity: 0;
    pointer-events: none;
    width: calc(1.25rem + 1rem);
    height: calc(1.25rem + 1rem);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#pro_gallery_thumbnails_stacks_in_1785 .pro_gallery_hide svg {
    width: auto;
    height: 1.25rem;
}

#pro_gallery_thumbnails_stacks_in_1785 .pro_gallery_blackout:hover > span {
    background: rgba(25, 25, 25, 1.00);
}

#pro_gallery_thumbnails_stacks_in_1785 .pro_gallery_blackout .pro_gallery_blackout_title {
    font-size: 1.15rem;
    line-height: 1.5;
    display: block;
}

#pro_gallery_thumbnails_stacks_in_1785 .pro_gallery_blackout .pro_gallery_blackout_message {
    font-size: 0.90rem;
    line-height: 1.5;
    display: block;
}

#pro_gallery_thumbnails_stacks_in_1785 li.blackout.reveal .pro_gallery_blackout {
  opacity: 0;
  pointer-events: none;
}

#pro_gallery_thumbnails_stacks_in_1785 li.blackout.reveal .pro_gallery_hide,
#pro_gallery_thumbnails_stacks_in_1785 li.blackout.reveal .pro_gallery_lightbox_trigger,
#pro_gallery_thumbnails_stacks_in_1785 li.blackout.reveal .pro_gallery_item_content {
    opacity: 1;
    pointer-events: auto;
}








/* Lightbox stuff */
.pro_gallery_lightbox_content,
.pro_gallery_staged_lightbox_caption {
  display: none;
}

.pswp * {
  will-change: transform;
}

.pswp__bg {
  background: #FFFFFF;
}

.pswp__top-bar {
  background-color: rgba(0, 0, 0, 0.00);
}

button.pswp__button--play-pause-audio {
  background: none !important;
  font-size: 20px;
  color: #fff;
}

button.pswp__button--play-pause-audio .bi {
  width: 32px;
  height: 32px;
}

a.added_button,
button.added_button {
  display: flex;
  justify-content: center;
  align-items: center;
}

a.added_button svg.pswp__icn.bi,
button.added_button svg.pswp__icn.bi {
  width: 20px;
  height: auto;
  position: static;
  top: auto;
  left: auto;
  line-height: 1;
  display: inline-block;
}












.pswp__icn {
  fill: #000000;
}

.pswp__counter {
  color: rgba(0, 0, 0, 1.00);
  text-shadow: 1px 1px 1px var(--pswp-icon-color-secondary);
}

.pswp img {
  border: 0.00rem solid transparent;
  outline: 0.00rem solid transparent;
  border-radius: 0rem;
  padding: 0;
  transition: border 0.5s ease-in, outline 0.5s ease-in, border-radius 0.5s ease-in, padding 0.5s ease-in;
}

body.pro-gallery-lightbox-open .pswp img {
  border: 0.00rem solid #FFFFFF;
  outline: 0.00rem solid #FFFFFF;
  border-radius: 0.00rem;
  padding: 0.00rem;
}




.pswp__dynamic-caption--below > div {
	max-width: 40.00rem;
}



.pswp__dynamic-caption--below {
  padding: 1.50rem 0;
}

.pswp__dynamic-caption--aside {
  padding: 0 1.50rem;
}

.pswp__dynamic-caption {
  background-color: rgba(255, 255, 255, 1.00);
}

.pswp__dynamic-caption,
.pswp__dynamic-caption p,
.pswp__dynamic-caption strong {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption h1,
.pswp__dynamic-caption h2,
.pswp__dynamic-caption h3,
.pswp__dynamic-caption h4,
.pswp__dynamic-caption h5,
.pswp__dynamic-caption h6 {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption a,
.pswp__dynamic-caption a:visited,
.pswp__dynamic-caption a:hover,
.pswp__dynamic-caption a:focus,
.pswp__dynamic-caption a:active {
  color: rgba(15, 128, 255, 1.00);
}

.pswp__dynamic-caption--mobile {
	max-height: 10.00vh;
  overflow: auto;
  color: rgba(0, 0, 0, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  padding: 0.50rem;
}

.pswp__dynamic-caption--mobile p,
.pswp__dynamic-caption--mobile strong {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption--mobile h1,
.pswp__dynamic-caption--mobile h2,
.pswp__dynamic-caption--mobile h3,
.pswp__dynamic-caption--mobile h4,
.pswp__dynamic-caption--mobile h5,
.pswp__dynamic-caption--mobile h6 {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption--mobile a,
.pswp__dynamic-caption--mobile a:visited,
.pswp__dynamic-caption--mobile a:hover,
.pswp__dynamic-caption--mobile a:focus,
.pswp__dynamic-caption--mobile a:active {
  color: rgba(15, 128, 255, 1.00);
}

.pswp__dynamic-caption a {
  text-decoration: underline;
}

div.stacks_in_1786{        }

#stacks_in_1786 {
	padding: 0px 0px 20px 0px;
}
#stacks_in_1795 *,
#stacks_in_1795 *:before,
#stacks_in_1795 *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#pro_gallery_thumbnails_stacks_in_1795 {
  
  margin: 0;
  
  list-style: none;
  counter-reset: thumbnail-counter;
  
  padding: 0;
  
}

#pro_gallery_thumbnails_stacks_in_1795 .pro_gallery_item {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.00rem;
  counter-increment: thumbnail-counter;
}

#pro_gallery_thumbnails_stacks_in_1795 .hidden_pro_gallery_item {
  display: none;
}

#pro_gallery_thumbnails_stacks_in_1795 .pro_gallery_item_link {
  display: inline-block;
  font-size: 0;
}



















#pro_gallery_thumbnails_stacks_in_1795 .pro_gallery_item {
  overflow: hidden;
  
  
  position: relative;
}

@media (prefers-color-scheme: dark) {
  #pro_gallery_thumbnails_stacks_in_1795 .pro_gallery_item {
    
    
  }
}









#pro_gallery_thumbnails_stacks_in_1795 .pro_gallery_item img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}



/* Disable links that don't go anywhere */
#pro_gallery_thumbnails_stacks_in_1795 li a[href=''],
#pro_gallery_thumbnails_stacks_in_1795 li a[href='#null'] {
  pointer-events: none !important;
  cursor: default !important;
}

/* Toolbar (live search, tag filter and sorting) */

#pro_gallery_toolbar_stacks_in_1795 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1.00rem;
  width: 100%;
}

#pro_gallery_toolbar_stacks_in_1795:has(div) {
  margin: 1.00rem 0;
}

@media (min-width: 768px) {
  #pro_gallery_toolbar_stacks_in_1795 {
    flex-direction: row;
    justify-content: flex-end;
  }
}

#pro_gallery_live_search_stacks_in_1795,
#pro_gallery_tag_menu_stacks_in_1795,
#pro_gallery_sort_stacks_in_1795 {
  width: 100%;
}

#pro_gallery_toolbar_stacks_in_1795 label {
  font-weight: bold;
  color: #333;
}

#progallery_live_search_box_stacks_in_1795,
#pro_gallery_tag_select_stacks_in_1795,
#pro_gallery_sort_select_stacks_in_1795,
#pro_gallery_pagination_select_stacks_in_1795 {
  display: block;
  width: 100%;
  font-size: 1.00rem;
  line-height: 1.1;
  background-color: rgba(255, 255, 255, 1.00);
  border-radius: 0.25rem;
  border: 1px solid rgba(192, 192, 192, 1.00);
  padding: 0.50rem 1.00rem;
  color: rgba(121, 121, 121, 1.00);
  outline: none;
  transition: all 300ms ease-in-out;
  caret-color: rgba(51, 51, 51, 1.00);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

#pro_gallery_tag_select_stacks_in_1795,
#pro_gallery_sort_select_stacks_in_1795,
#pro_gallery_pagination_select_stacks_in_1795 {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.50rem 1.00rem calc(0.50rem + 1px) 1.00rem;
}

#progallery_live_search_box_stacks_in_1795:focus,
#pro_gallery_tag_select_stacks_in_1795:focus,
#pro_gallery_sort_select_stacks_in_1795:focus,
#pro_gallery_pagination_select_stacks_in_1795:focus {
  outline: none;
  border-color: rgba(51, 51, 51, 1.00);
  background-color: rgba(245, 245, 245, 1.00);
  color: rgba(121, 121, 121, 1.00);
}

#pro_gallery_live_search_content_stacks_in_1795 {
  position: relative;
}

#progallery_live_search_box_stacks_in_1795 {
  padding-right: 30px;
}

#pro_gallery_live_search_reset_stacks_in_1795 {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
}

#pro_gallery_live_search_reset_stacks_in_1795 svg {
  pointer-events: none;
  width: 25px;
  height: auto;
}

#pro_gallery_live_search_reset_stacks_in_1795:focus {
  outline: none;
}

#progallery_live_search_box_stacks_in_1795::placeholder {
  color: rgba(192, 192, 192, 1.00);
}

@media (prefers-color-scheme: dark) {
  #progallery_live_search_box_stacks_in_1795,
  #pro_gallery_tag_select_stacks_in_1795,
  #pro_gallery_sort_select_stacks_in_1795,
  #pro_gallery_pagination_select_stacks_in_1795 {
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(192, 192, 192, 1.00);
    color: rgba(121, 121, 121, 1.00);
    caret-color: rgba(51, 51, 51, 1.00);
  }
  
  #progallery_live_search_box_stacks_in_1795:focus,
  #pro_gallery_tag_select_stacks_in_1795:focus,
  #pro_gallery_sort_select_stacks_in_1795:focus,
  #pro_gallery_pagination_select_stacks_in_1795:focus {
    border-color: rgba(51, 51, 51, 1.00);
    background-color: rgba(245, 245, 245, 1.00);
    color: rgba(121, 121, 121, 1.00);
  }

  #progallery_live_search_box_stacks_in_1795::placeholder {
    color: rgba(192, 192, 192, 1.00);
  }
}

@media (min-width: 768px) {
  #pro_gallery_toolbar_stacks_in_1795 {
    flex-direction: row;
  }

  

  

  
}

/* Image Counters */



/* Blackout */

#pro_gallery_thumbnails_stacks_in_1795 li.blackout .pro_gallery_lightbox_trigger,
#pro_gallery_thumbnails_stacks_in_1795 li.blackout .pro_gallery_item_content {
    opacity: 0;
    transition: 300ms;
}

#pro_gallery_thumbnails_stacks_in_1795 .pro_gallery_blackout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1.00);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 1.00);
    text-align: center;
    z-index: 2;
    border: none;
    transition: 300ms;
    cursor: pointer;
}

#pro_gallery_thumbnails_stacks_in_1795 .pro_gallery_blackout > span {
    background-color: rgba(0, 0, 0, 1.00);
    padding: 0.75rem;
    border-radius: 0.75rem;
    transition: 300ms;
}

#pro_gallery_thumbnails_stacks_in_1795 .pro_gallery_hide {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    border: none;
    transition: 300ms;
    cursor: pointer;
    background: rgba(25, 25, 25, 1.00);
    color: rgba(255, 255, 255, 1.00);
    opacity: 0;
    pointer-events: none;
    width: calc(1.25rem + 1rem);
    height: calc(1.25rem + 1rem);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#pro_gallery_thumbnails_stacks_in_1795 .pro_gallery_hide svg {
    width: auto;
    height: 1.25rem;
}

#pro_gallery_thumbnails_stacks_in_1795 .pro_gallery_blackout:hover > span {
    background: rgba(25, 25, 25, 1.00);
}

#pro_gallery_thumbnails_stacks_in_1795 .pro_gallery_blackout .pro_gallery_blackout_title {
    font-size: 1.15rem;
    line-height: 1.5;
    display: block;
}

#pro_gallery_thumbnails_stacks_in_1795 .pro_gallery_blackout .pro_gallery_blackout_message {
    font-size: 0.90rem;
    line-height: 1.5;
    display: block;
}

#pro_gallery_thumbnails_stacks_in_1795 li.blackout.reveal .pro_gallery_blackout {
  opacity: 0;
  pointer-events: none;
}

#pro_gallery_thumbnails_stacks_in_1795 li.blackout.reveal .pro_gallery_hide,
#pro_gallery_thumbnails_stacks_in_1795 li.blackout.reveal .pro_gallery_lightbox_trigger,
#pro_gallery_thumbnails_stacks_in_1795 li.blackout.reveal .pro_gallery_item_content {
    opacity: 1;
    pointer-events: auto;
}








/* Lightbox stuff */
.pro_gallery_lightbox_content,
.pro_gallery_staged_lightbox_caption {
  display: none;
}

.pswp * {
  will-change: transform;
}

.pswp__bg {
  background: #FFFFFF;
}

.pswp__top-bar {
  background-color: rgba(0, 0, 0, 0.00);
}

button.pswp__button--play-pause-audio {
  background: none !important;
  font-size: 20px;
  color: #fff;
}

button.pswp__button--play-pause-audio .bi {
  width: 32px;
  height: 32px;
}

a.added_button,
button.added_button {
  display: flex;
  justify-content: center;
  align-items: center;
}

a.added_button svg.pswp__icn.bi,
button.added_button svg.pswp__icn.bi {
  width: 20px;
  height: auto;
  position: static;
  top: auto;
  left: auto;
  line-height: 1;
  display: inline-block;
}












.pswp__icn {
  fill: #000000;
}

.pswp__counter {
  color: rgba(0, 0, 0, 1.00);
  text-shadow: 1px 1px 1px var(--pswp-icon-color-secondary);
}

.pswp img {
  border: 0.00rem solid transparent;
  outline: 0.00rem solid transparent;
  border-radius: 0rem;
  padding: 0;
  transition: border 0.5s ease-in, outline 0.5s ease-in, border-radius 0.5s ease-in, padding 0.5s ease-in;
}

body.pro-gallery-lightbox-open .pswp img {
  border: 0.00rem solid #FFFFFF;
  outline: 0.00rem solid #FFFFFF;
  border-radius: 0.00rem;
  padding: 0.00rem;
}




.pswp__dynamic-caption--below > div {
	max-width: 40.00rem;
}



.pswp__dynamic-caption--below {
  padding: 1.50rem 0;
}

.pswp__dynamic-caption--aside {
  padding: 0 1.50rem;
}

.pswp__dynamic-caption {
  background-color: rgba(255, 255, 255, 1.00);
}

.pswp__dynamic-caption,
.pswp__dynamic-caption p,
.pswp__dynamic-caption strong {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption h1,
.pswp__dynamic-caption h2,
.pswp__dynamic-caption h3,
.pswp__dynamic-caption h4,
.pswp__dynamic-caption h5,
.pswp__dynamic-caption h6 {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption a,
.pswp__dynamic-caption a:visited,
.pswp__dynamic-caption a:hover,
.pswp__dynamic-caption a:focus,
.pswp__dynamic-caption a:active {
  color: rgba(15, 128, 255, 1.00);
}

.pswp__dynamic-caption--mobile {
	max-height: 10.00vh;
  overflow: auto;
  color: rgba(0, 0, 0, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  padding: 0.50rem;
}

.pswp__dynamic-caption--mobile p,
.pswp__dynamic-caption--mobile strong {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption--mobile h1,
.pswp__dynamic-caption--mobile h2,
.pswp__dynamic-caption--mobile h3,
.pswp__dynamic-caption--mobile h4,
.pswp__dynamic-caption--mobile h5,
.pswp__dynamic-caption--mobile h6 {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption--mobile a,
.pswp__dynamic-caption--mobile a:visited,
.pswp__dynamic-caption--mobile a:hover,
.pswp__dynamic-caption--mobile a:focus,
.pswp__dynamic-caption--mobile a:active {
  color: rgba(15, 128, 255, 1.00);
}

.pswp__dynamic-caption a {
  text-decoration: underline;
}

div.stacks_in_1796{        }

#stacks_in_1796 {
	padding: 0px 0px 20px 0px;
}
div.stacks_in_1797{        }

#stacks_in_1797 {
	padding: 0px 0px 20px 0px;
}
#stacks_in_1805 *,
#stacks_in_1805 *:before,
#stacks_in_1805 *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#pro_gallery_thumbnails_stacks_in_1805 {
  
  margin: 0;
  
  list-style: none;
  counter-reset: thumbnail-counter;
  
  padding: 0;
  
}

#pro_gallery_thumbnails_stacks_in_1805 .pro_gallery_item {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.00rem;
  counter-increment: thumbnail-counter;
}

#pro_gallery_thumbnails_stacks_in_1805 .hidden_pro_gallery_item {
  display: none;
}

#pro_gallery_thumbnails_stacks_in_1805 .pro_gallery_item_link {
  display: inline-block;
  font-size: 0;
}



















#pro_gallery_thumbnails_stacks_in_1805 .pro_gallery_item {
  overflow: hidden;
  
  
  position: relative;
}

@media (prefers-color-scheme: dark) {
  #pro_gallery_thumbnails_stacks_in_1805 .pro_gallery_item {
    
    
  }
}









#pro_gallery_thumbnails_stacks_in_1805 .pro_gallery_item img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}



/* Disable links that don't go anywhere */
#pro_gallery_thumbnails_stacks_in_1805 li a[href=''],
#pro_gallery_thumbnails_stacks_in_1805 li a[href='#null'] {
  pointer-events: none !important;
  cursor: default !important;
}

/* Toolbar (live search, tag filter and sorting) */

#pro_gallery_toolbar_stacks_in_1805 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 1.00rem;
  width: 100%;
}

#pro_gallery_toolbar_stacks_in_1805:has(div) {
  margin: 1.00rem 0;
}

@media (min-width: 768px) {
  #pro_gallery_toolbar_stacks_in_1805 {
    flex-direction: row;
    justify-content: flex-end;
  }
}

#pro_gallery_live_search_stacks_in_1805,
#pro_gallery_tag_menu_stacks_in_1805,
#pro_gallery_sort_stacks_in_1805 {
  width: 100%;
}

#pro_gallery_toolbar_stacks_in_1805 label {
  font-weight: bold;
  color: #333;
}

#progallery_live_search_box_stacks_in_1805,
#pro_gallery_tag_select_stacks_in_1805,
#pro_gallery_sort_select_stacks_in_1805,
#pro_gallery_pagination_select_stacks_in_1805 {
  display: block;
  width: 100%;
  font-size: 1.00rem;
  line-height: 1.1;
  background-color: rgba(255, 255, 255, 1.00);
  border-radius: 0.25rem;
  border: 1px solid rgba(192, 192, 192, 1.00);
  padding: 0.50rem 1.00rem;
  color: rgba(121, 121, 121, 1.00);
  outline: none;
  transition: all 300ms ease-in-out;
  caret-color: rgba(51, 51, 51, 1.00);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

#pro_gallery_tag_select_stacks_in_1805,
#pro_gallery_sort_select_stacks_in_1805,
#pro_gallery_pagination_select_stacks_in_1805 {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.50rem 1.00rem calc(0.50rem + 1px) 1.00rem;
}

#progallery_live_search_box_stacks_in_1805:focus,
#pro_gallery_tag_select_stacks_in_1805:focus,
#pro_gallery_sort_select_stacks_in_1805:focus,
#pro_gallery_pagination_select_stacks_in_1805:focus {
  outline: none;
  border-color: rgba(51, 51, 51, 1.00);
  background-color: rgba(245, 245, 245, 1.00);
  color: rgba(121, 121, 121, 1.00);
}

#pro_gallery_live_search_content_stacks_in_1805 {
  position: relative;
}

#progallery_live_search_box_stacks_in_1805 {
  padding-right: 30px;
}

#pro_gallery_live_search_reset_stacks_in_1805 {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
}

#pro_gallery_live_search_reset_stacks_in_1805 svg {
  pointer-events: none;
  width: 25px;
  height: auto;
}

#pro_gallery_live_search_reset_stacks_in_1805:focus {
  outline: none;
}

#progallery_live_search_box_stacks_in_1805::placeholder {
  color: rgba(192, 192, 192, 1.00);
}

@media (prefers-color-scheme: dark) {
  #progallery_live_search_box_stacks_in_1805,
  #pro_gallery_tag_select_stacks_in_1805,
  #pro_gallery_sort_select_stacks_in_1805,
  #pro_gallery_pagination_select_stacks_in_1805 {
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(192, 192, 192, 1.00);
    color: rgba(121, 121, 121, 1.00);
    caret-color: rgba(51, 51, 51, 1.00);
  }
  
  #progallery_live_search_box_stacks_in_1805:focus,
  #pro_gallery_tag_select_stacks_in_1805:focus,
  #pro_gallery_sort_select_stacks_in_1805:focus,
  #pro_gallery_pagination_select_stacks_in_1805:focus {
    border-color: rgba(51, 51, 51, 1.00);
    background-color: rgba(245, 245, 245, 1.00);
    color: rgba(121, 121, 121, 1.00);
  }

  #progallery_live_search_box_stacks_in_1805::placeholder {
    color: rgba(192, 192, 192, 1.00);
  }
}

@media (min-width: 768px) {
  #pro_gallery_toolbar_stacks_in_1805 {
    flex-direction: row;
  }

  

  

  
}

/* Image Counters */



/* Blackout */

#pro_gallery_thumbnails_stacks_in_1805 li.blackout .pro_gallery_lightbox_trigger,
#pro_gallery_thumbnails_stacks_in_1805 li.blackout .pro_gallery_item_content {
    opacity: 0;
    transition: 300ms;
}

#pro_gallery_thumbnails_stacks_in_1805 .pro_gallery_blackout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1.00);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 1.00);
    text-align: center;
    z-index: 2;
    border: none;
    transition: 300ms;
    cursor: pointer;
}

#pro_gallery_thumbnails_stacks_in_1805 .pro_gallery_blackout > span {
    background-color: rgba(0, 0, 0, 1.00);
    padding: 0.75rem;
    border-radius: 0.75rem;
    transition: 300ms;
}

#pro_gallery_thumbnails_stacks_in_1805 .pro_gallery_hide {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    border: none;
    transition: 300ms;
    cursor: pointer;
    background: rgba(25, 25, 25, 1.00);
    color: rgba(255, 255, 255, 1.00);
    opacity: 0;
    pointer-events: none;
    width: calc(1.25rem + 1rem);
    height: calc(1.25rem + 1rem);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#pro_gallery_thumbnails_stacks_in_1805 .pro_gallery_hide svg {
    width: auto;
    height: 1.25rem;
}

#pro_gallery_thumbnails_stacks_in_1805 .pro_gallery_blackout:hover > span {
    background: rgba(25, 25, 25, 1.00);
}

#pro_gallery_thumbnails_stacks_in_1805 .pro_gallery_blackout .pro_gallery_blackout_title {
    font-size: 1.15rem;
    line-height: 1.5;
    display: block;
}

#pro_gallery_thumbnails_stacks_in_1805 .pro_gallery_blackout .pro_gallery_blackout_message {
    font-size: 0.90rem;
    line-height: 1.5;
    display: block;
}

#pro_gallery_thumbnails_stacks_in_1805 li.blackout.reveal .pro_gallery_blackout {
  opacity: 0;
  pointer-events: none;
}

#pro_gallery_thumbnails_stacks_in_1805 li.blackout.reveal .pro_gallery_hide,
#pro_gallery_thumbnails_stacks_in_1805 li.blackout.reveal .pro_gallery_lightbox_trigger,
#pro_gallery_thumbnails_stacks_in_1805 li.blackout.reveal .pro_gallery_item_content {
    opacity: 1;
    pointer-events: auto;
}








/* Lightbox stuff */
.pro_gallery_lightbox_content,
.pro_gallery_staged_lightbox_caption {
  display: none;
}

.pswp * {
  will-change: transform;
}

.pswp__bg {
  background: #FFFFFF;
}

.pswp__top-bar {
  background-color: rgba(0, 0, 0, 0.00);
}

button.pswp__button--play-pause-audio {
  background: none !important;
  font-size: 20px;
  color: #fff;
}

button.pswp__button--play-pause-audio .bi {
  width: 32px;
  height: 32px;
}

a.added_button,
button.added_button {
  display: flex;
  justify-content: center;
  align-items: center;
}

a.added_button svg.pswp__icn.bi,
button.added_button svg.pswp__icn.bi {
  width: 20px;
  height: auto;
  position: static;
  top: auto;
  left: auto;
  line-height: 1;
  display: inline-block;
}












.pswp__icn {
  fill: #000000;
}

.pswp__counter {
  color: rgba(0, 0, 0, 1.00);
  text-shadow: 1px 1px 1px var(--pswp-icon-color-secondary);
}

.pswp img {
  border: 0.00rem solid transparent;
  outline: 0.00rem solid transparent;
  border-radius: 0rem;
  padding: 0;
  transition: border 0.5s ease-in, outline 0.5s ease-in, border-radius 0.5s ease-in, padding 0.5s ease-in;
}

body.pro-gallery-lightbox-open .pswp img {
  border: 0.00rem solid #FFFFFF;
  outline: 0.00rem solid #FFFFFF;
  border-radius: 0.00rem;
  padding: 0.00rem;
}




.pswp__dynamic-caption--below > div {
	max-width: 40.00rem;
}



.pswp__dynamic-caption--below {
  padding: 1.50rem 0;
}

.pswp__dynamic-caption--aside {
  padding: 0 1.50rem;
}

.pswp__dynamic-caption {
  background-color: rgba(255, 255, 255, 1.00);
}

.pswp__dynamic-caption,
.pswp__dynamic-caption p,
.pswp__dynamic-caption strong {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption h1,
.pswp__dynamic-caption h2,
.pswp__dynamic-caption h3,
.pswp__dynamic-caption h4,
.pswp__dynamic-caption h5,
.pswp__dynamic-caption h6 {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption a,
.pswp__dynamic-caption a:visited,
.pswp__dynamic-caption a:hover,
.pswp__dynamic-caption a:focus,
.pswp__dynamic-caption a:active {
  color: rgba(15, 128, 255, 1.00);
}

.pswp__dynamic-caption--mobile {
	max-height: 10.00vh;
  overflow: auto;
  color: rgba(0, 0, 0, 1.00);
  background-color: rgba(255, 255, 255, 1.00);
  padding: 0.50rem;
}

.pswp__dynamic-caption--mobile p,
.pswp__dynamic-caption--mobile strong {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption--mobile h1,
.pswp__dynamic-caption--mobile h2,
.pswp__dynamic-caption--mobile h3,
.pswp__dynamic-caption--mobile h4,
.pswp__dynamic-caption--mobile h5,
.pswp__dynamic-caption--mobile h6 {
  color: rgba(0, 0, 0, 1.00);
}

.pswp__dynamic-caption--mobile a,
.pswp__dynamic-caption--mobile a:visited,
.pswp__dynamic-caption--mobile a:hover,
.pswp__dynamic-caption--mobile a:focus,
.pswp__dynamic-caption--mobile a:active {
  color: rgba(15, 128, 255, 1.00);
}

.pswp__dynamic-caption a {
  text-decoration: underline;
}

div.stacks_in_1806{        }

#stacks_in_1806 {
	padding: 0px 0px 20px 0px;
}
div.stacks_in_1807{        }

#stacks_in_1807 {
	padding: 0px 0px 20px 0px;
}
div.stacks_in_1808{        }

#stacks_in_1808 {
	padding: 0px 0px 20px 0px;
}
.s-container-stacks_in_1498{   margin-left: auto; margin-right: auto;}#s-wrapper-stacks_in_1498{margin:0;  }#s-content-stacks_in_1498{justify-content:center;   padding:60px 15px 30px 15px;}@media (min-width:600px){.s-container-stacks_in_1498{ }#s-wrapper-stacks_in_1498{}#s-content-stacks_in_1498{ padding:80px 30px 60px 30px;}}@media (min-width:900px){.s-container-stacks_in_1498{ }#s-wrapper-stacks_in_1498{}#s-content-stacks_in_1498{ padding:100px 50px 100px 50px;}}@media (min-width:1200px){.s-container-stacks_in_1498{ }#s-wrapper-stacks_in_1498{}#s-content-stacks_in_1498{ padding:100px 75px 100px 75px;}} .s-bg-stacks_in_1498{border-radius:0px 0px 0px 0px;    }@media (min-width:600px){.s-bg-stacks_in_1498{ }}.s-bg-stacks_in_1498{z-index:0}#s-outer-stacks_in_1498{border-radius:0px 0px 0px 0px}
.s-cols-stacks_in_1476{justify-content:space-between;align-items:stretch;}.s-cols-stacks_in_1476>.s-cols-item{border-radius:0px;margin-bottom:80px;width:100%;  padding:0px 0px 0px 0px;   }.s-cols-stacks_in_1476>.s-cols-item:hover{ }@media (min-width:600px){.s-cols-stacks_in_1476>.s-cols-item{ width:calc((100% - calc(1 * 80px)) / 2);}}#stacks_out_1476{width:100%}
.item_stacks_in_1481{justify-content:flex-start;overflow:hidden;  }
#srcererstacks_in_1485 .srcerer-inner{overflow:hidden;-webkit-transform:translateZ(0);transform:translateZ(0)}#srcererstacks_in_1485 .srcerer-img{ max-width:100%;height:auto;display:block;margin-left:auto;margin-right:auto; }#srcererstacks_in_1485{background-color:rgba(255, 255, 255, 0.00); }.srcererstacks_in_1485{pointer-events:none}#srcererstacks_in_1485 .srcerer-content{}
.item_stacks_in_1477{justify-content:center;overflow:hidden;  }
#p-stacks_in_1496 p{font-family:'Oswald';    font-weight:400;}#p-stacks_in_1496 p.lead{}#p-stacks_in_1496 a{color:var(--link-color);}#p-stacks_in_1496 a:hover{color:var(--link-color-hover); }

#stacks_in_1497 {
	font-size: 140%;
}
.item_stacks_in_1505{justify-content:flex-start;overflow:hidden;  }@media (min-width:0px){.item_stacks_in_1505{display:none!important}}
#srcererstacks_in_1509 .srcerer-inner{overflow:hidden;-webkit-transform:translateZ(0);transform:translateZ(0)}#srcererstacks_in_1509 .srcerer-img{ max-width:100%;height:auto;display:block;margin-left:auto;margin-right:auto; }#srcererstacks_in_1509{background-color:rgba(255, 255, 255, 0.00); }.srcererstacks_in_1509{pointer-events:none}#srcererstacks_in_1509 .srcerer-content{}
.s-container-stacks_in_1837{   margin-left: auto; margin-right: auto;}#s-wrapper-stacks_in_1837{margin:0;  }#s-content-stacks_in_1837{justify-content:center;   padding:60px 15px 60px 15px;}@media (min-width:600px){.s-container-stacks_in_1837{ }#s-wrapper-stacks_in_1837{}#s-content-stacks_in_1837{ padding:80px 15px 80px 15px;}}@media (min-width:900px){.s-container-stacks_in_1837{ }#s-wrapper-stacks_in_1837{}#s-content-stacks_in_1837{ padding:100px 250px 100px 250px;}}@media (min-width:1200px){.s-container-stacks_in_1837{ }#s-wrapper-stacks_in_1837{}#s-content-stacks_in_1837{ padding:100px 250px 100px 250px;}}.s-bg-stacks_in_1837{z-index:0}#s-outer-stacks_in_1837{border-radius:0px 0px 0px 0px}
#srcererstacks_in_1838 .srcerer-inner{overflow:hidden;-webkit-transform:translateZ(0);transform:translateZ(0)}#srcererstacks_in_1838 .srcerer-img{ max-width:100%;height:auto;display:block;margin-left:auto;margin-right:auto; }#srcererstacks_in_1838{background-color:rgba(255, 255, 255, 0.00); }.srcererstacks_in_1838{pointer-events:none}#srcererstacks_in_1838 .srcerer-content{}
div.stacks_in_1840{font-family:'Open Sans';    font-weight:400;    }

#stacks_in_1840 {
	padding: 10px 0px 0px 0px;
}

.s-container-stacks_in_389{   margin-left: auto; margin-right: auto;}#s-wrapper-stacks_in_389{margin:0;  }#s-content-stacks_in_389{justify-content:flex-start;   padding:40px 0 20px 0;}@media (min-width:600px){.s-container-stacks_in_389{ }#s-wrapper-stacks_in_389{}#s-content-stacks_in_389{ padding:60px 0 30px 0;}}@media (min-width:900px){.s-container-stacks_in_389{ }#s-wrapper-stacks_in_389{}#s-content-stacks_in_389{ padding:80px 70px 40px 70px;}}@media (min-width:1200px){.s-container-stacks_in_389{ }#s-wrapper-stacks_in_389{}#s-content-stacks_in_389{ padding:80px 75px 40px 75px;}}.s-bg-stacks_in_389{z-index:0}#s-outer-stacks_in_389{border-radius:0px 0px 0px 0px}
.s-grid-stacks_in_391>.s-grid-item{justify-content:flex-start; border-radius:0px;   }.s-grid-stacks_in_391>.s-grid-item:hover{ }#stacks_out_391{width:100%}
.item_stacks_in_395 {
  
}


#p-stacks_in_400 p{font-family:'Open Sans'; font-size:1.45rem;   font-weight:500;}#p-stacks_in_400 p.lead{font-size:1.45rem;}#p-stacks_in_400 a{color:var(--link-color);}#p-stacks_in_400 a:hover{color:var(--link-color-hover); }
@media (min-width:0px) {
  .item_stacks_in_395 {
     overflow: hidden;
      grid-column: span 1;
    grid-row: span 1;
         
  }

   
}


@media (min-width:900px) {
  .item_stacks_in_395 {
     overflow: hidden;
      grid-column: span 1;
    grid-row: span 1;
       justify-content: space-between !important;
    flex-direction: row; flex-wrap: wrap;     
  }

    .item_stacks_in_395>.stacks_out {
    margin: 0;
    width: auto
  }

  
}


 @media screen and (min-width:0px){.s-grid-stacks_in_391{ grid-column-gap:20px;grid-row-gap:20px;grid-template-columns:  1fr; align-items:stretch;  grid-template-areas:none}}#stacks_out_393{width:100%}
