a.block-link{display:block;text-decoration:none !important;padding:0;margin:0;color:inherit}a.block-link:link,a.block-link:visited,a.block-link:hover,a.block-link:active{color:inherit}
a.anchor{height:0 !important;font-size:0 !important;line-height:0 !important;padding:0 !important;margin:0 !important;display:block !important}
/*! 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;
}.hr-align-left hr{text-align:left;margin-left:0;margin-right:auto}.hr-align-right hr{text-align:right;margin-right:0;margin-left:auto}.hr-align-center hr{text-align:center;margin-left:auto;margin-right:auto}@media (max-width:600px){.hr-s-align-left hr{text-align:left;margin-left:0;margin-right:auto}.hr-s-align-right hr{text-align:right;margin-right:0;margin-left:auto}.hr-s-align-center hr{text-align:center;margin-left:auto;margin-right:auto}}@media (min-width:600px){.hr-m-align-left hr{text-align:left;margin-left:0;margin-right:auto}.hr-m-align-right hr{text-align:right;margin-right:0;margin-left:auto}.hr-m-align-center hr{text-align:center;margin-left:auto;margin-right:auto}}@media (min-width:900px){.hr-l-align-left hr{text-align:left;margin-left:0;margin-right:auto}.hr-l-align-right hr{text-align:right;margin-right:0;margin-left:auto}.hr-l-align-center hr{text-align:center;margin-left:auto;margin-right:auto}}@media (min-width:1200px){.hr-xl-align-left hr{text-align:left;margin-left:0;margin-right:auto}.hr-xl-align-right hr{text-align:right;margin-right:0;margin-left:auto}.hr-xl-align-center hr{text-align:center;margin-left:auto;margin-right:auto}}
.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}.today_wrapper{margin:0 auto;padding:0;position:relative;overflow:visible;text-align:center}.today_wrapper .desk_board{position:relative}.today_wrapper a{text-decoration:none;display:block;width:100%}.today_wrapper .serif{font-family:serif}.today_wrapper .sansserif{font-family:sans-serif}.today_wrapper .today_inner{margin:0 auto;padding:0;position:relative;overflow:visible;text-align:center;background-color:#fff}.today_wrapper .today_month,.today_wrapper .today_month a,.today_wrapper .today_month a:hover{color:#ffffff}.today_wrapper .today_month{vertical-align:center;position:relative;border-style:solid;font-weight:bold;text-shadow:rgba(0,0,0,0.3) -1px 0,rgba(0,0,0,0.3) 0 -1px,rgba(255,255,255,0.3) 0 1px,rgba(0,0,0,0.3) -1px -2px}.today_wrapper .today_day,.today_wrapper .today_day a,.today_wrapper .today_day a:hover{color:#333}.today_wrapper .today_day{margin:0;vertical-align:center;position:relative;border-color:#fff;border-style:solid;font-weight:bold;text-shadow:rgba(0,0,0,0.5) -1px 0,rgba(0,0,0,0.3) 0 -1px,rgba(255,255,255,0.5) 0 1px,rgba(0,0,0,0.3) -1px -2px;background-color:#fff}.today_wrapper .flat .today_day,.today_wrapper .flat .today_month{box-shadow:none !important;border-style:none !important;text-shadow:none !important}.today_wrapper.align-right .square,.today_wrapper.align-right .rounded,.today_wrapper.align-right .desk_board{margin-right:0 !important}.today_wrapper.align-left .square,.today_wrapper.align-left .rounded,.today_wrapper.align-left .desk_board{margin-left:0 !important}.today_wrapper.xsmall .today_month{height:15px;line-height:15px;font-size:12px;border-width:1px;border-bottom-width:2px;text-shadow:none}.today_wrapper.xsmall .today_day{height:46px;line-height:46px;font-size:35px;border-width:1px;text-shadow:rgba(0,0,0,0.5) -1px 0,rgba(0,0,0,0.3) 0 -1px,rgba(255,255,255,0.5) 0 1px,rgba(0,0,0,0.3) -1px -1px;box-shadow:inset 0px 1px 5px #cccccc}.today_wrapper.xsmall .rounded .today_month{border-top-left-radius:12px;border-top-right-radius:12px}.today_wrapper.xsmall .rounded .today_day{border-bottom-left-radius:12px;border-bottom-right-radius:12px}.today_wrapper.xsmall .square,.today_wrapper.xsmall .rounded,.today_wrapper.xsmall .desk_board{width:64px;margin:3px auto;box-shadow:1px 1px 3px #000}.today_wrapper.xsmall .rounded{border-radius:12px !important}.today_wrapper.xsmall .desk_board{padding:5px;border-radius:3px}.today_wrapper.small .today_month{height:24px;line-height:24px;font-size:15px;border-width:1px;border-bottom-width:2px;text-shadow:none}.today_wrapper.small .today_day{height:70px;line-height:70px;font-size:60px;border-width:1px;text-shadow:rgba(0,0,0,0.5) -1px 0,rgba(0,0,0,0.3) 0 -1px,rgba(255,255,255,0.5) 0 1px,rgba(0,0,0,0.3) -1px -1px;box-shadow:inset 0px 2px 7px #cccccc}.today_wrapper.small .rounded{margin:4px auto;border-radius:20px;box-shadow:1px 1px 4px #000}.today_wrapper.small .rounded .today_month{border-top-left-radius:20px;border-top-right-radius:20px}.today_wrapper.small .rounded .today_day{border-bottom-left-radius:20px;border-bottom-right-radius:20px}.today_wrapper.small .square,.today_wrapper.small .rounded,.today_wrapper.small .desk_board{width:96px;margin:4px auto;box-shadow:1px 1px 4px #000}.today_wrapper.small .rounded{border-radius:20px !important}.today_wrapper.small .desk_board{padding:7px;border-radius:3px}.today_wrapper.medium .today_month{height:30px;line-height:30px;font-size:18px;border-width:1px;border-bottom-width:3px}.today_wrapper.medium .today_day{height:95px;line-height:95px;font-size:80px;border-width:1px;box-shadow:inset 0px 3px 10px #cccccc}.today_wrapper.medium .rounded .today_month{border-top-left-radius:25px;border-top-right-radius:25px}.today_wrapper.medium .rounded .today_day{border-bottom-left-radius:25px;border-bottom-right-radius:25px}.today_wrapper.medium .square,.today_wrapper.medium .rounded,.today_wrapper.medium .desk_board{width:128px;margin:5px auto;box-shadow:1px 1px 5px #000}.today_wrapper.medium .rounded{border-radius:25px !important}.today_wrapper.medium .desk_board{padding:10px;border-radius:3px}.today_wrapper.large .today_month{height:45px;line-height:45px;font-size:30px;border-width:2px;border-bottom-width:4px}.today_wrapper.large .today_day{height:140px;line-height:140px;font-size:120px;border-width:2px;box-shadow:inset 0px 4px 15px #cccccc}.today_wrapper.large .rounded .today_month{border-top-left-radius:40px;border-top-right-radius:40px}.today_wrapper.large .rounded .today_day{border-bottom-left-radius:40px;border-bottom-right-radius:40px}.today_wrapper.large .square,.today_wrapper.large .rounded,.today_wrapper.large .desk_board{width:192px;margin:8px auto;box-shadow:2px 2px 8px #000}.today_wrapper.large .rounded{border-radius:40px !important}.today_wrapper.large .desk_board{padding:12px;border-radius:5px}.today_wrapper.xlarge .today_month{height:60px;line-height:60px;font-size:40px;border-width:2px;border-bottom-width:4px}.today_wrapper.xlarge .today_day{height:186px;line-height:186px;font-size:165px;border-width:2px;box-shadow:inset 0px 5px 20px #cccccc}.today_wrapper.xlarge .rounded .today_month{border-top-left-radius:50px;border-top-right-radius:50px}.today_wrapper.xlarge .rounded .today_day{border-bottom-left-radius:50px;border-bottom-right-radius:50px}.today_wrapper.xlarge .square,.today_wrapper.xlarge .rounded,.today_wrapper.xlarge .desk_board{width:256px;margin:10px auto;box-shadow:2px 2px 10px #000}.today_wrapper.xlarge .rounded{border-radius:50px !important}.today_wrapper.xlarge .desk_board{padding:15px;border-radius:5px}
/* Start dooMontage 2 stack page CSS code *//*! * Justified Gallery - v3.6.1 * http://miromannino.github.io/Justified-Gallery/ * Copyright (c) 2015 Miro Mannino * Licensed under the MIT license. */@-webkit-keyframes justified-gallery-show-doocaption-animation{from{opacity:0}to{opacity:.7}}@-moz-keyframes justified-gallery-show-doocaption-animation{from{opacity:0}to{opacity:.7}}@-o-keyframes justified-gallery-show-doocaption-animation{from{opacity:0}to{opacity:.7}}@keyframes justified-gallery-show-doocaption-animation{from{opacity:0}to{opacity:.7}}@-webkit-keyframes justified-gallery-show-entry-animation{from{opacity:0}to{opacity:1}}@-moz-keyframes justified-gallery-show-entry-animation{from{opacity:0}to{opacity:1}}@-o-keyframes justified-gallery-show-entry-animation{from{opacity:0}to{opacity:1}}@keyframes justified-gallery-show-entry-animation{from{opacity:0}to{opacity:1}}.justified-gallery{width:100%;position:relative;overflow:hidden}.justified-gallery>a,.justified-gallery>div{position:absolute;display:inline-block;overflow:hidden;opacity:0;filter:alpha(opacity=0)}.justified-gallery>a>img,.justified-gallery>div>img,.justified-gallery>a>a>img,.justified-gallery>div>a>img{position:absolute;top:50%;left:50%;margin:0;padding:0;border:0}.justified-gallery>a>.doocaption,.justified-gallery>div>.doocaption{display:none;position:absolute;bottom:0;padding:5px;background-color:#000;left:0;right:0;margin:0;color:#fff;font-size:12px;font-weight:600;font-family:sans-serif}.justified-gallery>a>.doocaption.doocaption-visible,.justified-gallery>div>.doocaption.doocaption-visible{display:initial;opacity:.7;filter:"alpha(opacity=70)";-webkit-animation:justified-gallery-show-doocaption-animation 500ms 0 ease;-moz-animation:justified-gallery-show-doocaption-animation 500ms 0 ease;-ms-animation:justified-gallery-show-doocaption-animation 500ms 0 ease}.justified-gallery>.entry-visible{opacity:1;filter:alpha(opacity=100);-webkit-animation:justified-gallery-show-entry-animation 500ms 0 ease;-moz-animation:justified-gallery-show-entry-animation 500ms 0 ease;-ms-animation:justified-gallery-show-entry-animation 500ms 0 ease}.justified-gallery>.jg-filtered{display:none}.justified-gallery>.spinner{position:absolute;bottom:0;margin-left:-24px;padding:10px 0;left:50%;opacity:initial;filter:initial;overflow:initial}.justified-gallery>.spinner>span{display:inline-block;opacity:0;filter:alpha(opacity=0);width:8px;height:8px;margin:0 4px;background-color:#000;border-top-left-radius:6px;border-top-right-radius:6px;border-bottom-right-radius:6px;border-bottom-left-radius:6px}/* End dooMontage 2 stack page CSS code */.btn-group-rounded .button-group-btn:first-of-type a{border-top-left-radius:50px!important;border-bottom-left-radius:50px!important}.btn-group-rounded .button-group-btn:last-of-type a{border-top-right-radius:50px!important;border-bottom-right-radius:50px!important}@media only screen and (min-width:600px){.btn-group-rounded-m .button-group-btn:first-of-type a{border-top-left-radius:50px!important;border-bottom-left-radius:50px!important}.btn-group-rounded-m .button-group-btn:last-of-type a{border-top-right-radius:50px!important;border-bottom-right-radius:50px!important}}
@font-face{font-family:'Raleway';src:url('../rw_common/plugins/stacks/fontAssets/fonts/Raleway-Regular.woff2') format('woff2');font-weight:400;font-style:normal;font-display: auto;}@font-face{font-family:'Raleway';src:url('../rw_common/plugins/stacks/fontAssets/fonts/Raleway-Italic.woff2') format('woff2');font-weight:400;font-style:italic;font-display: auto;}@font-face{font-family:'Raleway';src:url('../rw_common/plugins/stacks/fontAssets/fonts/Raleway-Bold.woff2') format('woff2');font-weight:bold;font-style:normal;font-display: auto;}@font-face{font-family:'Raleway';src:url('../rw_common/plugins/stacks/fontAssets/fonts/Raleway-BoldItalic.woff2') format('woff2');font-weight:bold;font-style:italic;font-display: auto;}body{   font-weight:400 ;font-family:Raleway,'HelveticaNeue','Helvetica Neue',Helvetica,Arial,sans-serif }

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_3039 {
	height: 80.00px;
}




























@media print {
	#spacerStackstacks_in_3039 {
		display: none !important;
	}
}
/* 2.0.1
- improves overall performance on retina devices
- fixes performance issue in safari when using the Frosted Glass effect
- fixes a loading bug with the parallax effect
 */
#stacks_in_3032.btr-bg-outer .btr-bg-inner {
  
  min-height: 700px;
  
}
#stacks_in_3032.btr-bg-gradient .btr-bg-inner ,
#stacks_in_3032.btr-bg-animated .btr-bg-inner ,
#stacks_in_3032.btr-bg-blur .btr-bg-inner ,
#stacks_in_3032.btr-bg-mouse .btr-bg-inner ,
#stacks_in_3032.btr-bg-pan .btr-bg-inner ,
#stacks_in_3032.btr-bg-parallax .btr-bg-inner ,
#stacks_in_3032.btr-bg-transition .btr-bg-inner ,
#stacks_in_3032.btr-bg-none .btr-bg-inner  {
  padding: 120px 0px 0px 0px;
}
#stacks_in_3032.btr-bg-none {
background-repeat: no-repeat;
background-color: rgba(0, 0, 128, 0.00);
}
#stacks_in_3032.btr-bg-outer:after {
  background: rgba(0, 0, 0, 0.00);
}
#stacks_in_3032.btr-bg-outer {
  background-image : url(../files/backgroundImageBlur-3032.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: contain;
  -webkit-transform:translateZ(0);
}
#stacks_in_3032.btr-bg-outer .btr-bg-inner .btr-bg-content {
  position: relative;
  background-color : rgba(255, 255, 255, 0.00);
  overflow: hidden;
  padding: 24px 24px 24px 24px;
  margin: 0 auto;
  max-width: 960px;
  width: 100%;
  
}
#stacks_in_3032.btr-bg-outer .btr-bg-inner .btr-bg-header,
#stacks_in_3032.btr-bg-outer .btr-bg-inner .btr-bg-footer {
  
  pointer-events: none;
  opacity: 0;
  
}




/* Parallax */
#stacks_in_3032.btr-bg-parallax {
  background: none;
  transform: none;
}
#stacks_in_3032.btr-bg-parallax > .btr-bg-parallax-bg {
  background-image : url(../files/backgroundImageBlur-3032.png);
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 128, 0.00);
  background-position: center top;
  background-size: contain;
  left: 0;
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  z-index: -1;
  -webkit-transform:translateZ(0);
  will-change: transform;
}
#stacks_in_3032.btr-bg-parallax.btr-bg-disabled:before {
  background-attachment: scroll;
  background-position: bottom center !important;
}






#stacks_in_3040 {
	background-color: rgba(0, 0, 128, 1.00);
}
#stacks_in_1369.nav-wrap{background-color:var(--nav-bg);width:100%;padding:5px 5px 10px 5px}#stacks_in_1369 .nav-content{z-index:25}html:not(.menulab-js) .nav-wrap{display:none}#stacks_in_1369.nav-fixed,#stacks_in_1369.nav-sticky{top:0;width:100%;z-index:25}#stacks_in_1369.nav-fixed{position:fixed;}#stacks_in_1369.nav-sticky{position:sticky}#stacks_in_1369 .contained-bar{max-width:var(--container-max-width)}#stacks_in_1369 .navbar li>ul{background-color:var(--nav-bg)}#stacks_in_1369 .navbar li{list-style-type:none;display:block;border-radius:0px}#stacks_in_1369 .navbar li a{color:var(--nav-link)}#stacks_in_1369 .navbar li:hover>*:first-child,#stacks_in_1369 .navbar li.active>*:first-child{color:var(--nav-link-hover)}#stacks_in_1369 .navbar li:hover,#stacks_in_1369 .navbar li.active{background-color:var(--nav-bg-hover)}#stacks_in_1369 .logo img{vertical-align:top;height:42px;border-radius:5px;width:auto;max-width:none}#stacks_in_1369 .logo{display: none;}#stacks_in_1369 .site-title{}#stacks_in_1369 .navbar{display:block;}#stacks_in_1369 .navbar .ml-arrows .has-dropdown::after{top:16px}#stacks_in_1369 .navbar{font-size:16px}#stacks_in_1369 .branding{position:relative;display:flex;align-items:center;justify-content:space-between}#stacks_in_1369 .branding h4{font-size:20px;font-weight:normal;text-transform: uppercase; padding-left:10px;padding-right:10px}#stacks_in_1369 .site-title a{color:#FFFFFF;}#stacks_in_1369 .site-title a:hover{color:#E6E6E6;}@media only screen and (max-width:599px){#stacks_in_1369 .ml-dropdown{background-color:var(--nav-bg);max-height:calc(100vh - 45px);overflow-y:scroll} #stacks_in_1369 .cta{display:none} #stacks_in_1369 .navbar li{margin:3px 0}#stacks_in_1369 .branding{}}@media only screen and (min-width:600px){ #stacks_in_1369 .logo{display: block; margin-left:0;padding-right:10px}#stacks_in_1369 .site-title{display: block;} #stacks_in_1369 .cta-small{display:none} #stacks_in_1369 .branding h4{font-size:22px;padding-left:0;}#stacks_in_1369 .grouped-cta,#stacks_in_1369 .cta{display:flex;flex-wrap:wrap;align-items:center}#stacks_in_1369 .branding{min-width:0px;justify-content: start;}#stacks_in_1369 .logo img{height:54px}#stacks_in_1369 .navbar{display:inline-block} #stacks_in_1369 .navbar .ml-arrows .has-dropdown::after{top:18px}#stacks_in_1369 .navbar{font-size:16px} #stacks_in_1369 .mob-icon{display:none}#stacks_in_1369.nav-wrap{padding:12px 12px 12px 12px}#stacks_in_1369 .navbar{float:right;max-height:none;overflow:visible}#stacks_in_1369 .navbar,#stacks_in_1369 .nav-content{position:relative;display:flex;align-items:center;justify-content:space-between;}#stacks_in_1369 .navbar li a{padding:0 .8em}#stacks_in_1369 .navbar li.active,#stacks_in_1369 .navbar li:hover{border-radius:0px}#stacks_in_1369 .navbar .ml-menu,#stacks_in_1369 .navbar .ml-menu ul{margin:2px 1px}#stacks_in_1369 .navbar .ml-menu li{margin:2px 1px;padding-top:3px;padding-bottom:3px}#stacks_in_1369 .navbar li>ul{box-shadow:0 0 18px rgba(0,0,0,.1)}#stacks_in_1369 .navbar .ml-menu li>ul .dd-to-left>ul{right:100%!important;left:auto!important}#stacks_in_1369 .navbar .ml-menu li>ul .dd-to-right>ul{left:100%!important;right:auto!important}#stacks_in_1369 .navbar .ml-menu ul,#stacks_in_1369 .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_1369 .navbar [dir=rtl] .ml-menu ul,#stacks_in_1369 .navbar .ml-menu>.dd-to-left>ul{left:auto;right:0}#stacks_in_1369 .navbar .ml-menu ul ul,#stacks_in_1369 .navbar [dir=rtl] .ml-menu ul .dd-to-right ul{top:0;left:100%;right:auto}#stacks_in_1369 .navbar [dir=rtl] .ml-menu ul ul,#stacks_in_1369 .navbar .ml-menu ul .ml-dd-to-left ul{left:auto;right:100%}#stacks_in_1369 .navbar .ml-menu li{position:relative;display:block;list-style-type:none}#stacks_in_1369 .navbar .ml-menu>li{display:inline-block}#stacks_in_1369 .navbar .ml-menu a,#stacks_in_1369 .navbar .ml-menu span{display:block;text-decoration:none;white-space:pre}#stacks_in_1369 .navbar .ml-menu li:hover>ul{display:block}#stacks_in_1369 .navbar .ml-js li:hover>ul{display:none}#stacks_in_1369 .navbar .ml-js li.dd-open>ul{display:block!important}#stacks_in_1369 .ml-arrows .has-dropdown{padding-right:16px;*padding-right:16px}}#stacks_in_1369 .ml-arrows .has-dropdown:after{border-top-color:darkgray;border-top-color:var(--nav-link)}#stacks_in_1369 .ml-arrows .has-dropdown.active:after{border-top-color:darkgray;border-top-color:var(--nav-link-hover)}#stacks_in_1369 .ml-arrows>li>.ml-dropdown:focus:after,#stacks_in_1369 .ml-arrows>li:hover>.ml-dropdown:after,#stacks_in_1369 .ml-arrows>.sfHover>.ml-dropdown:after{border-top-color:darkgray;border-top-color:var(--nav-link)}#stacks_in_1369 .ml-arrows ul .ml-dropdown:after{border-top-color:darkgray;border-left-color:var(--nav-link)}#stacks_in_1369 .ml-arrows ul li>.ml-dropdown:focus:after,#stacks_in_1369 .ml-arrows ul li:hover>.ml-dropdown:after,#stacks_in_1369 .ml-arrows ul .sfHover>.ml-dropdown:after{border-top-color:darkgray;border-left-color:var(--nav-link)}#stacks_in_1369 .mob-icon{-webkit-transform:scale(.6);-moz-transform:scale(.6);-o-transform:scale(.6);transform:scale(.6)}#stacks_in_1369 .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_1369 .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_1369 .burg span:nth-child(1){top:0}#stacks_in_1369 .burg span:nth-child(2),#stacks_in_1369 .burg span:nth-child(3){top:18px}#stacks_in_1369 .burg span:nth-child(4){top:36px}#stacks_in_1369.ml-toggle.expand .burg span:nth-child(1){top:18px;width:0;left:50%}#stacks_in_1369.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_1369.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_1369.ml-toggle.expand .burg span:nth-child(4){top:18px;width:0;left:50%}    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(255, 255, 255, 1.00);--accent-color-hover:rgba(255, 255, 10, 1.00);--accent-text-color:rgba(255, 255, 255, 1.00);--accent-text-color-hover:rgba(230, 230, 230, 1.00);--accent-color-alt:rgba(255, 255, 255, 1.00);--link-color:rgba(255, 255, 255, 1.00); --link-color-hover:rgba(251, 2, 7, 1.00); --border-color:rgba(187, 187, 187, 1.00);--border-color-softer:rgba(237, 237, 237, 1.00);--border-color-richer:rgba(137, 137, 137, 1.00);--background-color:rgba(255, 255, 255, 1.00);--background-color-alt:rgba(51, 51, 51, 0.00);--nav-bg:rgba(0, 0, 255, 0.86);--nav-bg-hover:rgba(0, 0, 128, 1.00);--nav-link:rgba(255, 255, 255, 1.00);--nav-link-hover:rgba(255, 255, 102, 1.00);--code-background:rgba(0, 0, 0, 1.00);--code-text:rgba(255, 255, 255, 1.00);--button-primary-color:rgba(255, 255, 255, 1.00);--button-primary-color-hover:rgba(230, 230, 230, 1.00);--second-color:rgba(255, 255, 255, 1.00);--second-color-hover:rgba(255, 255, 255, 1.00);--second-color-alt:rgba(255, 255, 255, 1.00);--base-font-size:62.5%;--container-max-width:1920px;--container-max-width-alt:1440px}*{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; 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.80rem}@media (min-width:600px){body{font-size:1.60rem}p.lead{font-size:1.80rem}}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:1.20rem;font-weight:normal;font-style:normal;font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;}h1,.h1{font-size:4.00rem;line-height:1.2;letter-spacing:-.1rem;}h2,.h2{font-size:3.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:1.80rem;line-height:1.5;letter-spacing:-.05rem;}h6,.h6{font-size:1.60rem;line-height:1.6;letter-spacing:0;}@media (min-width:600px){h1,.h1{font-size:5.00rem}h2,.h2{font-size:4.20rem}h3,.h3{font-size:3.60rem}h4,.h4{font-size:3.00rem}h5,.h5{font-size:2.40rem}h6,.h6{font-size:2.00rem}}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:underline}.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:38px;font-size:12px;border-width:1px;height:calc(38px + 2px); font-weight: bolder;  display:inline-block;padding:0 0px;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:5px;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.50rem;margin-left:3rem}li ul{margin-bottom:0.50rem}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:1920px;max-width:var(--container-max-width);margin:0 auto}.source-base-width-alt,.s-alt-width{max-width:1440px;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}}/* @group Generic Styles */

#ruleStackstacks_in_17,
#ruleStackstacks_in_17:before,
#ruleStackstacks_in_17:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#ruleStackstacks_in_17 {
	position: relative;
	overflow: hidden;
	margin: 3.00% 0;
	width: %;
}

/*  */

/*  */

/*  */
#ruleStackstacks_in_17 {
	width: 75%;
	margin-left: auto; margin-right: auto;
}
/*  */

#ruleStackstacks_in_17 [class^="fa fa-"] {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	text-align: center;
	color: rgba(204, 204, 204, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_17 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */

/*  */

/*  */
#ruleStackstacks_in_17 {
	text-align: left;
}

#ruleStackstacks_in_17:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	left: 0;
	min-height: 2px;
	border-top: 2px solid rgba(255, 0, 0, 1.00);
}

#ruleStackstacks_in_17 [class^="fa fa-"] {
	visibility: hidden;
}

/*  */
/*  *//*
1.0.4.6
- new option to use warehoused image for header image
- added new option to contain the header image instead of cover and crop
- add new header image bg color that shows when containing an image
- added settings to change font sizes
- uses unique data attribute names to prevent conflicts with foundation and other frameworks
- added compatability with assemble
- mobile address bar no longer triggers resize event
*/
#stacks_in_2930.expd-card,
#stacks_in_2930.expd-card * {
  box-sizing: border-box;
}

#stacks_in_2930 .expd-truncate {
  position: relative;
  display: inline-block;
  width: 100%;
}

 #stacks_in_2930.expd-card .click-all {
  height: 100%;
}

  #stacks_in_2930.expd-card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
     background: -moz-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  bottom: 0px;
   pointer-events: none;
}

#stacks_in_2930.expd-card.expd-active:after {
  display: none;
}

 #stacks_in_2930_wrap.wrap-expd-card {
   width: 980px;
  height: 500px;
   margin: 20px auto;
  max-width: 100%;
  position: relative;
}

#stacks_in_2930.expd-card.fadeIn {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

#stacks_in_2930.expd-card {
  font-family: inherit;
  text-align: left;
  will-change: top, left, right, bottom;
    color: rgba(103, 103, 103, 1.00);
     background: rgba(255, 255, 255, 1.00);
    height: 500px;
  width: 980px;
  visibility: hidden;
   border: 0px solid #ccc;
  overflow: hidden;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  border-radius: 0px;
   
}

 #stacks_in_2930.expd-card * {
  pointer-events: none;
}

#stacks_in_2930.expd-card .expd-open,
#stacks_in_2930.expd-card [data-expanse-open='1'],
#stacks_in_2930.expd-card.expd-active * {
  pointer-events: all;
}

 #stacks_in_2930.expd-card h1,
#stacks_in_2930.expd-card h2,
#stacks_in_2930.expd-card h3,
#stacks_in_2930.expd-card h4,
#stacks_in_2930.expd-card h5,
#stacks_in_2930.expd-card h6 {
  font-family: inherit;
}

#stacks_in_2930.expd-card.expd-active {
  position: fixed;
  z-index: 99;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  width: calc(100vw - 10px);
  height: calc(100vh - 10px);
  overflow: scroll;
  overflow-x: hidden;
  border: 0px solid transparent;
  box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.4);
   -webkit-transform-origin: center center;
  transform-origin: center center;
  margin: 0;
  transform: scale(1);
}

#stacks_in_2930.expd-card [data-expanse-close='1'] {
  display: none;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_2930.expd-card [data-expanse-open='1'] {
  display: block;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_2930.expd-card .expd-card-button {
  background: #CCCCCC;
  color: #676767;
   background: rgba(96, 53, 148, 1.00);
  color: rgba(255, 255, 255, 1.00);
   display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, .2);
  transition: 300ms all linear;
  cursor: pointer;
}

#stacks_in_2930.expd-card .expd-card-button[data-expanse-open='1'] {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 4px;
}

#stacks_in_2930.expd-card .expd-card-button:hover,
#stacks_in_2930.expd-card .expd-card-button[data-expanse-open='1']:hover {
  opacity: .8;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
}

#stacks_in_2930.expd-card .expd-card-body-wrap {
  max-width: 1920px;
  margin: 0 auto;
}
.fixed-closestacks_in_2930 {
  display: block;
  pointer-events: none;
  transition: opacity 300ms linear;
  
  transition-delay: 300ms;
  
  opacity: 0;
  cursor: pointer;
  z-index: 200;
  position: fixed;
  width: 40px;
  height: 40px;
  top: 15px;
  right: 15px;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
    color: rgba(103, 103, 103, 1.00);
     background: rgba(255, 255, 255, 1.00);
   border-radius: 4px;
}
.expd-body .fixed-closestacks_in_2930 {
  pointer-events: all;
  
}

#stacks_in_2930.expd-card .expd-card-body-wrap .expd-card-img {
  height: 0px;
  padding-bottom: 56.25%;
  background-color: #bbb;
  background-size: cover;
  background-position: center center;
  
  background-image: url();
  
  
  background-color: rgba(230, 230, 230, 1.00);
  background-size: contain;
  background-repeat: no-repeat;
  
}

#stacks_in_2930.expd-card .expd-card-body-wrap .expd-card-content {
  padding: 18px 16px;
  position: relative;
  perspective: 1200;
}

#stacks_in_2930.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  padding: 20px 20px;
}

#stacks_in_2930.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  position: absolute;
  cursor: pointer;
  height: 40px;
  width: 40px;
  background: rgba(88, 236, 88, 1.00);
  right: 20px;
  top: -20px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
  text-align: center;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  transition: all ease 300ms;
}

#stacks_in_2930.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:hover {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.3);
}

#stacks_in_2930.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:active {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.6);
  transition: all ease 100ms;
}

#stacks_in_2930.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa {
  line-height: 34px;
  position: absolute;
  width: 34px;
  height: 34px;
  font-size: 24px;
  top: 0;
  left: 0;
  text-align: center;
}

#stacks_in_2930.expd-card .expd-card-body-wrap .expd-card-content {
  font-size: 12px;
  line-height: 16px;
}

#stacks_in_2930.expd-card .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  color: rgba(66, 66, 66, 1.00);
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}

#stacks_in_2930.expd-card .expd-card-body-wrap .expd-card-content .expd-heading strong {
  color: rgba(88, 88, 88, 1.00);
  font-size: 14px;
  line-height: 16px;
  display: block;
  margin-bottom: 5px;
}

#stacks_in_2930.expd-card .expd-card-body-wrap .expd-card-content p {
  margin: 10px 0px;
}

#stacks_in_2930.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  font-size: 16px;
  line-height: 22px;
}

#stacks_in_2930.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  font-size: 26px;
  line-height: 32px;
}

#stacks_in_2930.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading strong {
  font-size: 20px;
  line-height: 22px;
  margin: 5px 0px 20px 0px;
}

.expd-body {
  overflow: hidden;
}

#stacks_in_2930.expd-card.expd-pre-anim {
  position: fixed;
  z-index: 99;
}

#stacks_in_2930.expd-card.expd-active [data-expanse-close='1'] {
  display: inline-block;
}

#stacks_in_2930.expd-card.expd-active .expd-open[data-expanse-open='1'] {
  display: block;
  cursor: auto;
}

#stacks_in_2930.expd-card.expd-active .expd-card-button[data-expanse-open='1'] {
  display: none;
}

#stacks_in_2930.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  background: rgba(236, 88, 88, 1.00);
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
}

#stacks_in_2930.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  line-height: 34px;
}

#stacks_in_2930.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  content: "\f00d";
}

   @media all and (max-width: 600px) {
  #stacks_in_2930.expd-card.expd-active {
    top: 1.250000px;
    bottom: 1.250000px;
    left: 1.250000px;
    right: 1.250000px;
    width: calc(100vw - 2.500000px);
    height: calc(100vh - 2.500000px);
  }
}


#shady_stack_stacks_in_2931 {
	max-width: none;
	
  margin: 0 auto;
  
}

#shady_stack_shadow_stacks_in_2931 {
	box-shadow:  0rem 0rem 0.8rem 0.4rem rgba(153, 153, 153, 1.00);
	border-radius: 0rem;
	overflow: hidden;
	padding: 1.0rem;
	margin: 1.0rem;
	border: none 0.10rem rgba(51, 51, 51, 1.00);
}

@media print {
	#shady_stack_shadow_stacks_in_2931 {
		margin: 0;
		padding: 0;
		box-shadow: none;
		border-radius: 0px;
	}
}

#stacks_in_2996 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
}
#p-stacks_in_2960 p{font-family:'Raleway';   color:rgba(34, 34, 34, 1.00); font-weight:normal;}#p-stacks_in_2960 p.lead{}#p-stacks_in_2960 a{color:var(--link-color);}#p-stacks_in_2960 a:hover{color:var(--link-color-hover); }

#stacks_in_2960 {
	margin: 5px 20px 5px 20px;
}
/* @group Generic Styles */

#ruleStackstacks_in_2962,
#ruleStackstacks_in_2962:before,
#ruleStackstacks_in_2962:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#ruleStackstacks_in_2962 {
	position: relative;
	overflow: hidden;
	margin: 3.00% 0;
	width: %;
}

/*  */

/*  */

/*  */
#ruleStackstacks_in_2962 {
	width: 75%;
	margin-left: auto; margin-right: auto;
}
/*  */

#ruleStackstacks_in_2962 [class^="fa fa-"] {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	text-align: center;
	color: rgba(204, 204, 204, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_2962 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */

/*  */

/*  */
#ruleStackstacks_in_2962 {
	text-align: left;
}

#ruleStackstacks_in_2962:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	left: 0;
	min-height: 2px;
	border-top: 2px solid rgba(255, 0, 0, 1.00);
}

#ruleStackstacks_in_2962 [class^="fa fa-"] {
	visibility: hidden;
}

/*  */
/*  *//*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_2715 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_2715 .theDivider1,
#simpleDivider_stacks_in_2715 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_2715 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_2715.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_2715.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_2715 .theDivider2 {
	height: 8px;
}
#simpleDivider_stacks_in_2715.transparentOff .theDivider2 {
	background-color: #0000FF;
}
#simpleDivider_stacks_in_2715.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_2715.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_2715.bgImageOn .theDivider1 img {
	display: block;
}


#stacks_in_2715 {
	padding: 0px 30px 0px 30px;
}

#stacks_out_2715 {
	width: 78%;
}

#stacks_in_2875 {
	margin: 0px 0px 0px 20px;
	padding: 0px 0px 0px 20px;
}
/* ProGallery Grid */

#mygalleryJuly2025 {
	display: block;
	width: 100%;
  %[if ]%text-align: left;%[endif]%
  %[if ]%text-align: center;%[endif]%
  %[if ]%text-align: right;%[endif]%
}

#mygalleryJuly2025 ul#proGalleryThumbsstacks_in_2891 {
	padding: 0;
	margin: 0;
	list-style: none;
}

#mygalleryJuly2025 li.proGalleryItem {
	position: relative;
	-webkit-transform: translateZ(0);
}

#mygalleryJuly2025 li .proGalleryItemInner {
  border: 5px hidden rgba(0, 0, 0, 1.00);
  border-radius: 0rem;
	background-color: rgba(255, 255, 255, 1.00);
	padding: 5px;
	position: relative;
	margin: 10px;
	
}

#mygalleryJuly2025 li.proGalleryItem a {
	display: block;
  cursor: zoom-in;
  margin: ;
  outline: none;
}


#mygalleryJuly2025 li .proGalleryItemInner a:focus {
    outline: 2px dotted #0000FF;
}


#mygalleryJuly2025 li.proGalleryItem img {
	max-height: 100%;
	max-width: 100%;
	width: auto;
	height: auto;
  border-radius: 0rem;
  display: block;
  border: 1px groove rgba(234, 234, 234, 1.00);
	padding: 5px;
	margin: 10px;
	
}

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


/* Captions */
#mygalleryJuly2025 .proGalleryItemTitle {
	display: block;
	transition: opacity 300ms ease-in-out;
	padding: 0rem;
	margin: 5px;
	font-size: 1rem;
	letter-spacing: 0px;
	border-radius: 0rem;
	color: rgba(102, 102, 102, 1.00);
	line-height: 1.5;
  background: rgba(255, 255, 255, 1.00);
  font-weight: bold;
  
  
	
	
}

/* Override for caption titles */
#mygalleryJuly2025 .proGalleryItemTitle strong {
	
	font-size: 1rem;
	letter-spacing: 0px;
	color: rgba(102, 102, 102, 1.00);
	line-height: 1.5;
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
  font-weight: bold;
  
  
  
}

#mygalleryJuly2025 .proGalleryItemTitle div {
  
  color: rgba(102, 102, 102, 1.00);
  font-size: 1rem;
}

#mygalleryJuly2025.titlesBelowLeft .proGalleryItemTitle {
	text-align: left;
	opacity: 1.00;
}

#mygalleryJuly2025.titlesBelowCentre .proGalleryItemTitle {
	text-align: center;
	opacity: 1.00;
}

#mygalleryJuly2025.titlesBelowRight .proGalleryItemTitle {
	text-align: right;
	opacity: 1.00;
}

#mygalleryJuly2025.titlesHoverTopLeft .proGalleryItemTitle {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	text-align: left;
}

#mygalleryJuly2025.titlesHoverTopCentre .proGalleryItemTitle {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	text-align: center;
}

#mygalleryJuly2025.titlesTopRight .proGalleryItemTitle {
	position: absolute;
	top: 0;
	right: 0;
	text-align: right;
	opacity: 0;
}

#mygalleryJuly2025.titlesHoverMiddleLeft .proGalleryItemTitle {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	opacity: 0;
	text-align: left;
}

#mygalleryJuly2025.titlesHoverMiddleCentre .proGalleryItemTitle {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	width: 100%;
	text-align: center;
	opacity: 0;
}

#mygalleryJuly2025.titlesHoverMiddleRight .proGalleryItemTitle {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
	opacity: 0;
	text-align: right;
}

#mygalleryJuly2025.titlesHoverBottomLeft .proGalleryItemTitle {
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0;
	text-align: left;
}

#mygalleryJuly2025.titlesHoverBottomCentre .proGalleryItemTitle {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	opacity: 0;
}

#mygalleryJuly2025.titlesHoverBottomRight .proGalleryItemTitle {
	position: absolute;
	bottom: 0;
	right: 0;
	opacity: 0;
	text-align: right;
}

#mygalleryJuly2025 li:hover .proGalleryItemTitle {
	opacity: 1.00;
}

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

#mygalleryJuly2025 a img {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-backface-visibility: hidden; /* Fixes bug in Chrome, with images inside columns vanishing */
}

#mygalleryJuly2025 a:hover img {
	-webkit-transform: rotate(3deg);
	-moz-transform: rotate(3deg);
	-o-transform: rotate(3deg);
	-ms-transform: rotate(3deg);
	transform: rotate(3deg);
}

/*  */

/*  */

/*  */

/*  */

/* @end */





#stacks_in_2891 {
	background-color: rgba(255, 255, 255, 1.00);
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	margin:  3px;
	padding:  3px;
}

/* ProGallery Regimented Grid Layout */
#mygalleryJuly2025 .proGalleryThumbs {
  display: grid;
  place-content: center;
}

#mygalleryJuly2025 .proGalleryThumbs li {
  overflow: hidden;
}

@media screen and (min-width: 0px) {
  #mygalleryJuly2025 .proGalleryThumbs {
    grid-template-columns: repeat(auto-fit, 15em);
    grid-gap: 0.75em;
  }
  
  #mygalleryJuly2025 .proGalleryThumbs li {
    height: 15em;
  }
}

@media screen and (min-width: 568px) {
	#mygalleryJuly2025 .proGalleryThumbs {
    grid-template-columns: repeat(auto-fit, 15em);
    grid-gap: 0.75em;
  }
  
  #mygalleryJuly2025 .proGalleryThumbs li {
    height: 15em;
  }
}

@media screen and (min-width: 992px) {
	#mygalleryJuly2025 .proGalleryThumbs {
    grid-template-columns: repeat(auto-fit, 15em);
    grid-gap: 0.75em;
  }
  
  #mygalleryJuly2025 .proGalleryThumbs li {
    height: 15em;
  }
}

@media screen and (min-width: 1200px) {
	#mygalleryJuly2025 .proGalleryThumbs {
    grid-template-columns: repeat(auto-fit, 15em);
    grid-gap: 0.75em;
  }
  
  #mygalleryJuly2025 .proGalleryThumbs li {
    height: 15em;
  }
}

#mygalleryJuly2025 .proGalleryItemInner,
#mygalleryJuly2025 .proGalleryThumbs a {
  width: 100%;
  height: 100%;	
}

#mygalleryJuly2025 .proGalleryThumbs img {
	width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover;
}





#mygalleryJuly2025 .proGalleryItemTitle {
display: none !important;	
}
/* Photobox lightbox */
#pbOverlay *,#pbOverlay :before,#pbOverlay :after{-moz-box-sizing:content-box;box-sizing:content-box}#pbOverlay.show{opacity:1;pointer-events:auto}#pbOverlay{opacity:0;overflow:hidden;width:100%;height:100%;position:fixed;z-index:9999;left:0;top:0;text-align:center;pointer-events:none;-moz-user-select:none;background:rgba(0,0,0,.90);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e2000000',endColorstr='#e2000000');-webkit-transform:translate3d(0);transition:opacity 300ms ease}#pbOverlay.msie{background-color:rgba(0,0,0,.6)}.msie.pbLoading .pbWrapper{background:url(../images/loading.gif) no-repeat center center}@keyframes pbLoaderFrames{50%{height:5px}}@-webkit-keyframes pbLoaderFrames{50%{height:5px}}.pbLoader{display:none;width:100px;height:100px;position:absolute;z-index:999;top:0;left:0;right:0;bottom:0;margin:auto;text-align:center;border-radius:100%;box-shadow:15px 32px 60px -20px #FFF inset,1px 1px 3px 1px #FFF inset,0 0 20px;transition:.3s}.thumbs .pbLoader{-webkit-transform:translateY(-50px);transform:translateY(-50px)}.pbLoading:not(.msie):not(.error) .pbLoader{display:block}.pbLoader b{display:inline-block;vertical-align:middle;margin:0 2px;width:8px;height:60px;border-radius:5px;background:rgba(255,255,255,.8);box-shadow:0 0 10px rgba(0,0,0,.5);-webkit-animation:.9s pbLoaderFrames infinite linear;animation:.9s pbLoaderFrames infinite linear}.pbLoader b:nth-child(2){-webkit-animation-delay:.3s;animation-delay:.3s}.pbLoader b:nth-child(3){-webkit-animation-delay:.6s;animation-delay:.6s}.mobile.pbLoading .pbLoader{transform:none;transition:0}.pbWrapper:after,#pbCaption .pbThumbs ul:after,#pbOverlay .prevNext:after,#pbOverlay .pbLoader:before{content:"";display:inline-block;height:100%;margin-right:-.25em;vertical-align:middle}@keyframes deadImage{50%{text-shadow:0 0 25px rgba(255,255,255,.5);transform:scale(.85)}}@-webkit-keyframes deadImage{50%{text-shadow:0 0 25px rgba(255,255,255,.5);-webkit-transform:scale(.85)}}#pbOverlay button{outline:0!important;box-shadow:0}.pbWrapper{-moz-box-sizing:border-box;box-sizing:border-box;transform:rotate(0deg);vertical-align:middle;height:100%;perspective:1200px;position:relative}.video > .pbWrapper{z-index:11;display:inline-block}.pbLoading .pbWrapper{display:inline-block\9;width:100%}.pbWrapper:before{content:'\2716';color:transparent;text-shadow:0 2px 35px rgba(255,255,255,0);font-size:0;vertical-align:middle;cursor:default;transition:text-shadow .7s ease-out}.error .pbWrapper:before{font-size:22em;text-shadow:0 0 0 #FFF;-webkit-animation:2s 1s deadImage infinite linear;animation:2s 1s deadImage infinite linear}.thumbs .pbWrapper{padding:0;margin:0}.error .pbWrapperr img{width:0}.pbWrapper > div{display:none;width:624px;height:351px;vertical-align:middle;border-radius:5px;background:rgba(0,0,0,.5)}.video > .pbWrapper > div{display:inline-block}#pbOverlay iframe,#pbOverlay embed,#pbOverlay object{display:block;width:100%;height:100%;opacity:1;transition:.5s}.pbWrapper .pbHide iframe{opacity:0}.pbWrapper > div,.pbWrapper > img{transition:.5s .5s cubic-bezier(.1,.87,.48,1);-webkit-transform:none;-ms-transform:none;transform:none;-webkit-backface-visibility:hidden;box-shadow:0 0 20px #000;opacity:1}.mobile.show .pbWrapper > div,.mobile.show .pbWrapper > img{transition:30ms}.pbWrapper > *,.pbHide .pbWrapper > .prepare{opacity:0;vertical-align:middle;-webkit-transform:scale(.2) rotateX(80deg);-ms-transform:scale(.2) rotateX(80deg);transform:scale(.2) rotateX(80deg);border-radius:6px;border:none;max-height:95%;max-width:100%}.on .pbWrapper > *{transition-delay:0}.pbWrapper .zoomable{-webkit-transition:0;transition:0;position:relative;z-index:9}.pbWrapper .rotating{-webkit-transition:.25s cubic-bezier(.4,.04,0,1);transition:.25s cubic-bezier(.4,.04,0,1)}.pbHide .pbWrapper > *{-webkit-transform:scale(1.2);transform:scale(1.2);transform:none\9;opacity:0;transition:.4s ease-out}#pbCloseBtn,#pbAutoplayBtn{position:absolute;top:-50px;right:-50px;z-index:999;display:block;padding:0 0 20px 20px;text-align:center;cursor:pointer;color:#FFF;transition:.3s .3s ease-out}.pbHide #pbCloseBtn{top:-50px;right:-50px}.on #pbCloseBtn{top:-2px;right:-2px}#pbCloseBtn:before{content:'\00D7';font:bold 1em/1 arial}#pbCloseBtn:before,#pbAutoplayBtn:before{display:inline-block;height:35px;width:35px;padding:8px 8px 12px 12px;font-size:2em;opacity:.8;vertical-align:middle;background:rgba(255,255,255,.2);border-radius:0 0 0 70px;transition:.1s ease-out}#pbCloseBtn:hover:before{padding:15px 10px 24px 24px;background:rgba(255,100,100,.4)}#pbAutoplayBtn{display:none;right:auto;left:-50px;padding:0;width:50px;height:50px;font-size:13px}.hasAutoplay #pbAutoplayBtn{display:block}#pbAutoplayBtn:hover{width:60px;height:60px}.on #pbAutoplayBtn{top:0;left:0;transition:.1s ease-out}#pbAutoplayBtn:before{content:'\2016';width:100%;height:100%;border-radius:0 0 70px 0;font-weight:700;padding:0;text-indent:-6px;line-height:1.6}#pbAutoplayBtn:active:before{text-shadow:0 0 3px #FFF,0 0 6px #FFF}#pbAutoplayBtn.play:before{content:'\25BA'}#pbAutoplayBtn .pbProgress{display:none\9;width:100%;height:100%;overflow:hidden;position:absolute;padding:6px;top:0;left:0;opacity:.2;transform:rotateZ(0deg);-webkit-transform:rotateZ(0deg);-ms-transform:rotateZ(0deg);-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-transition:.3s;transition:.3s}.mobile #pbAutoplayBtn .pbProgress{-webkit-transition:0;transition:0}#pbAutoplayBtn.playing .pbProgress{-webkit-transform:rotateZ(90deg);-ms-transform:rotateZ(90deg);transform:rotateZ(90deg)}#pbAutoplayBtn .pbProgress:before{content:'';position:absolute;right:0;bottom:0;width:200%;height:200%;border-radius:50%;box-shadow:0 0 0 8px #FFF inset}#pbCaption,.pbHide #pbCaption{position:absolute;z-index:999;margin-bottom:5px;bottom:-120px;width:100%;overflow:hidden;transform:translateZ(0px);transition:.4s}.show.on #pbCaption{bottom:0;transition-delay:.5s}#pbOverlay.thumbs #pbCaption label{display:block}#pbCaption label{display:none;float:right;margin:0 1em;color:#FFF;opacity:.3;transition:.2s;cursor:pointer}#pbCaption label:after{content:'\276F';font-size:30px;line-height:30px;display:inline-block;transform:rotate(-90deg);transition:.2s ease-out}#pbCaption label:hover{opacity:1}#pbCaption .title,#pbCaption .counter{display:inline-block;color:#FFF;margin:0 6px}#pbCaption .counter{display:none;opacity:.55}.hasCounter #pbCaption .counter{display:inline-block}.pbCaptionText{display:inline-block;transition:.3s;opacity:.9;font-weight:700;vertical-align:middle;text-shadow:1px 1px 1px rgba(0,0,0,.5);padding-left:60px}.pbCaptionText.change{-webkit-transform:translateY(25px);transform:translateY(25px);opacity:0}#pbCaption .rotateBtn{display:none;background:none;border:0;font:800 1.7em/0 Arial;vertical-align:middle;color:rgba(255,255,255,.5);width:1.1em;height:1.1em;padding:0;border-radius:50%;background:rgba(0,0,0,.2);cursor:pointer;transition:.15s ease-out}#pbCaption .rotateBtn.show{display:block;float:right}#pbCaption .rotateBtn:hover{color:rgba(255,255,255,.7)}#pbCaption .rotateBtn:active{color:#fff;background:rgba(0,0,0,.4)}.mobile #pbCaption label{display:none;z-index:-1;color:red}.mobile .pbCaptionText{padding:0}#pbThumbsToggler:checked ~ #pbCaption .pbThumbs{margin:0}#pbThumbsToggler:checked ~ #pbCaption label:after{transform:rotate(90deg)}#pbThumbsToggler:checked ~ .pbWrapper{margin-top:-50px;padding:50px 0}.pbThumbs{display:none;transition:.35s;-webkit-overflow-scrolling:touch}.thumbs .pbThumbs{display:block;width:100%;padding:5px 0 2px;margin-bottom:-100px;overflow:hidden}.mobile .pbThumbs{overflow:auto}.pbThumbs:hover{clear:both}.pbThumbs ul{display:inline-block;position:relative;list-style:none;height:80px;padding:0 5px;margin:0;white-space:pre;transition:.2s}.pbThumbs ul:after{vertical-align:bottom}.pbThumbs li{display:inline-block;vertical-align:bottom;height:70%;opacity:.6;text-align:center;position:relative;transition:.15s}.pbThumbs li.active{height:100%;opacity:1}.pbThumbs li:hover{height:100%;opacity:1}.pbThumbs li.video::before{content:'\25BA';color:#FFF;font-size:20px;height:20px;width:20px;line-height:.9;position:absolute;bottom:4px;left:7px;background:rgba(0,0,0,.4);box-shadow:0 0 0 3px rgba(0,0,0,.4);border-radius:0 3px 0 0;pointer-events:none}.pbThumbs a{height:100%;padding:0 2px;display:block;-moz-user-select:none}.pbThumbs img{height:96%;min-height:95.9%;border:2px solid #FFF;max-width:none;border-radius:0;transition:.15s}.pbThumbs li:hover img{min-height:96%}.pbThumbs li.fast a img{transition:none}.pbThumbs li.active a img{border-color:#D8FF16;min-height:96%}#pbOverlay .prevNext{display:none;background:rgba(0,0,0,0);position:absolute;z-index:10;height:100%;width:35%;padding:80px 0;opacity:0;box-sizing:border-box;-moz-box-sizing:border-box;top:0;transition:.2s ease-out;text-shadow:0 0 12px #000,0 0 10px #FFF;user-select:none;filter:alpha(opacity=0);cursor:pointer}#pbOverlay.hasArrows .prevNext{display:block}#pbOverlay .prevNext.pbHide{display:none}#pbOverlay.on .prevNext:hover{opacity:.5;filter:alpha(opacity=50)}#pbOverlay.on .prevNext:hover:active{transition:80ms;opacity:1;filter:alpha(opacity=100);text-shadow:0 0 16px #FFF,0 0 10px #000}.prevNext b{display:inline-block;vertical-align:middle;transition:.2s ease-in}.prevNext:hover b{transition:.2s cubic-bezier(.095,.870,.485,.985)}#pbPrevBtn b{transform:scale(.4) translateX(350px);-webkit-transform:scale(.4) translateX(350px)}#pbNextBtn b{transform:scale(.4) translateX(-350px);-webkit-transform:scale(.4) translateX(-350px)}#pbPrevBtn b:before,#pbNextBtn b:after{display:inline;line-height:.3;font-size:18em;font-weight:400;color:#FFF;font-family:Arial}#pbPrevBtn b:before{content:'\2039'}#pbNextBtn b:after{content:'\203A'}.on #pbPrevBtn:hover b{transform:scale(1) translateX(20px);-webkit-transform:scale(1) translateX(20px)}.on #pbNextBtn:hover b{transform:scale(1) translateX(-20px);-webkit-transform:scale(1) translateX(-20px)}.show #pbPrevBtn{left:0;text-align:left}.show #pbNextBtn{right:0;text-align:right}@media all and (max-width:700px){.pbWrapper img,.pbHide .pbWrapper img.prepare{max-height:100%}.thumbs .pbWrapper{padding:0;margin:0}.pbThumbs{margin-bottom:-60px}.pbThumbs.show{margin:0}.pbThumbs ul{height:50px}.pbThumbs li{height:100%;opacity:1}.pbThumbs li img{min-height:96.5%}}@media all and (max-width:710px){.pbThumbs li.active a img{min-height:96%}}

/* Custom styling */
#pbOverlay {
  background: rgba(0, 0, 0, 0.90);
}
.pbWrapper > * {
  border-radius: 6px;
}
.pbCaptionText .title {
  color: rgba(255, 255, 255, 1.00);
}
.pbCaptionText .counter {
  opacity: 1;
  color: rgba(125, 127, 127, 1.00);
}
.pbThumbs li a img {
  border-color: rgba(255, 255, 255, 1.00);
}
.pbThumbs li.active a img {
  border-color: rgba(216, 255, 22, 1.00);
}/* @group Generic Styles */

#ruleStackstacks_in_2879,
#ruleStackstacks_in_2879:before,
#ruleStackstacks_in_2879:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#ruleStackstacks_in_2879 {
	position: relative;
	overflow: hidden;
	margin: 3.00% 0;
	width: %;
}

/*  */

/*  */

/*  */
#ruleStackstacks_in_2879 {
	width: 75%;
	margin-left: auto; margin-right: auto;
}
/*  */

#ruleStackstacks_in_2879 [class^="fa fa-"] {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	text-align: center;
	color: rgba(204, 204, 204, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_2879 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */

/*  */

/*  */
#ruleStackstacks_in_2879 {
	text-align: left;
}

#ruleStackstacks_in_2879:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	left: 0;
	min-height: 2px;
	border-top: 2px solid rgba(0, 0, 255, 1.00);
}

#ruleStackstacks_in_2879 [class^="fa fa-"] {
	visibility: hidden;
}

/*  */
/*  */
#stacks_in_2880 {
	margin: 0px 0px 0px 20px;
	padding: 0px 0px 0px 20px;
}

#stacks_in_1634 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	margin:  5px;
	padding:  5px;
}


/* AnchorPoint CSS code */


#july2025 {
	height: 0px;
	opacity: 0;
	overflow: hidden;
}







.stacks_in_1592 .source-button{ font-size:19px;line-height:48px;border-radius:4px;padding:0 30px;border-width:1px;height:calc(48px + 2px); font-weight:bold; text-transform:none;   }#stacks_in_1592 .button-group-btn:not(:last-child) .source-button{margin-bottom:0}#stacks_in_1592 .button-group-btn:last-child .source-button{}.stacks_in_1592 .source-button,#stacks_in_1592 .s-button-group{display:block}#stacks_in_1592 .s-button-group .button-group-btn{padding-right:0!important;padding-bottom:1px}.stacks_in_1592 a{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 0, 128, 1.00);border-color:rgba(255, 255, 255, 1.00)}.stacks_in_1592 a:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(251, 2, 7, 1.00);border-color:rgba(0, 0, 0, 1.00)}#stacks_in_1592 .s-button-group{justify-content:center}#stacks_in_1592 .s-button-group .button-group-btn:not(:last-child){padding-right:1px}@media only screen and (max-width:0px){#stacks_in_1592 .s-button-group .button-group-btn{padding-right:0!important;padding-left:0}}#stacks_in_1592 .s-button-group .button-group-btn{padding-bottom:1px}
/*
1.0.4.6
- new option to use warehoused image for header image
- added new option to contain the header image instead of cover and crop
- add new header image bg color that shows when containing an image
- added settings to change font sizes
- uses unique data attribute names to prevent conflicts with foundation and other frameworks
- added compatability with assemble
- mobile address bar no longer triggers resize event
*/
#stacks_in_1596.expd-card,
#stacks_in_1596.expd-card * {
  box-sizing: border-box;
}

#stacks_in_1596 .expd-truncate {
  position: relative;
  display: inline-block;
  width: 100%;
}

 #stacks_in_1596.expd-card .click-all {
  height: 100%;
}

  #stacks_in_1596.expd-card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
     background: -moz-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  bottom: 0px;
   pointer-events: none;
}

#stacks_in_1596.expd-card.expd-active:after {
  display: none;
}

 #stacks_in_1596_wrap.wrap-expd-card {
   width: 980px;
  height: 500px;
   margin: 20px auto;
  max-width: 100%;
  position: relative;
}

#stacks_in_1596.expd-card.fadeIn {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

#stacks_in_1596.expd-card {
  font-family: inherit;
  text-align: left;
  will-change: top, left, right, bottom;
    color: rgba(103, 103, 103, 1.00);
     background: rgba(255, 255, 255, 1.00);
    height: 500px;
  width: 980px;
  visibility: hidden;
   border: 0px solid #ccc;
  overflow: hidden;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  border-radius: 0px;
   
}

 #stacks_in_1596.expd-card * {
  pointer-events: none;
}

#stacks_in_1596.expd-card .expd-open,
#stacks_in_1596.expd-card [data-expanse-open='1'],
#stacks_in_1596.expd-card.expd-active * {
  pointer-events: all;
}

 #stacks_in_1596.expd-card h1,
#stacks_in_1596.expd-card h2,
#stacks_in_1596.expd-card h3,
#stacks_in_1596.expd-card h4,
#stacks_in_1596.expd-card h5,
#stacks_in_1596.expd-card h6 {
  font-family: inherit;
}

#stacks_in_1596.expd-card.expd-active {
  position: fixed;
  z-index: 99;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  width: calc(100vw - 10px);
  height: calc(100vh - 10px);
  overflow: scroll;
  overflow-x: hidden;
  border: 0px solid transparent;
  box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.4);
   -webkit-transform-origin: center center;
  transform-origin: center center;
  margin: 0;
  transform: scale(1);
}

#stacks_in_1596.expd-card [data-expanse-close='1'] {
  display: none;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_1596.expd-card [data-expanse-open='1'] {
  display: block;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_1596.expd-card .expd-card-button {
  background: #CCCCCC;
  color: #676767;
   background: rgba(96, 53, 148, 1.00);
  color: rgba(255, 255, 255, 1.00);
   display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, .2);
  transition: 300ms all linear;
  cursor: pointer;
}

#stacks_in_1596.expd-card .expd-card-button[data-expanse-open='1'] {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 4px;
}

#stacks_in_1596.expd-card .expd-card-button:hover,
#stacks_in_1596.expd-card .expd-card-button[data-expanse-open='1']:hover {
  opacity: .8;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
}

#stacks_in_1596.expd-card .expd-card-body-wrap {
  max-width: 1920px;
  margin: 0 auto;
}
.fixed-closestacks_in_1596 {
  display: block;
  pointer-events: none;
  transition: opacity 300ms linear;
  
  transition-delay: 300ms;
  
  opacity: 0;
  cursor: pointer;
  z-index: 200;
  position: fixed;
  width: 40px;
  height: 40px;
  top: 15px;
  right: 15px;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
    color: rgba(103, 103, 103, 1.00);
     background: rgba(255, 255, 255, 1.00);
   border-radius: 4px;
}
.expd-body .fixed-closestacks_in_1596 {
  pointer-events: all;
  
}

#stacks_in_1596.expd-card .expd-card-body-wrap .expd-card-img {
  height: 0px;
  padding-bottom: 56.25%;
  background-color: #bbb;
  background-size: cover;
  background-position: center center;
  
  background-image: url();
  
  
  background-color: rgba(230, 230, 230, 1.00);
  background-size: contain;
  background-repeat: no-repeat;
  
}

#stacks_in_1596.expd-card .expd-card-body-wrap .expd-card-content {
  padding: 18px 16px;
  position: relative;
  perspective: 1200;
}

#stacks_in_1596.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  padding: 20px 20px;
}

#stacks_in_1596.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  position: absolute;
  cursor: pointer;
  height: 40px;
  width: 40px;
  background: rgba(88, 236, 88, 1.00);
  right: 20px;
  top: -20px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
  text-align: center;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  transition: all ease 300ms;
}

#stacks_in_1596.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:hover {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.3);
}

#stacks_in_1596.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:active {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.6);
  transition: all ease 100ms;
}

#stacks_in_1596.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa {
  line-height: 34px;
  position: absolute;
  width: 34px;
  height: 34px;
  font-size: 24px;
  top: 0;
  left: 0;
  text-align: center;
}

#stacks_in_1596.expd-card .expd-card-body-wrap .expd-card-content {
  font-size: 12px;
  line-height: 16px;
}

#stacks_in_1596.expd-card .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  color: rgba(66, 66, 66, 1.00);
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}

#stacks_in_1596.expd-card .expd-card-body-wrap .expd-card-content .expd-heading strong {
  color: rgba(88, 88, 88, 1.00);
  font-size: 14px;
  line-height: 16px;
  display: block;
  margin-bottom: 5px;
}

#stacks_in_1596.expd-card .expd-card-body-wrap .expd-card-content p {
  margin: 10px 0px;
}

#stacks_in_1596.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  font-size: 16px;
  line-height: 22px;
}

#stacks_in_1596.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  font-size: 26px;
  line-height: 32px;
}

#stacks_in_1596.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading strong {
  font-size: 20px;
  line-height: 22px;
  margin: 5px 0px 20px 0px;
}

.expd-body {
  overflow: hidden;
}

#stacks_in_1596.expd-card.expd-pre-anim {
  position: fixed;
  z-index: 99;
}

#stacks_in_1596.expd-card.expd-active [data-expanse-close='1'] {
  display: inline-block;
}

#stacks_in_1596.expd-card.expd-active .expd-open[data-expanse-open='1'] {
  display: block;
  cursor: auto;
}

#stacks_in_1596.expd-card.expd-active .expd-card-button[data-expanse-open='1'] {
  display: none;
}

#stacks_in_1596.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  background: rgba(236, 88, 88, 1.00);
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
}

#stacks_in_1596.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  line-height: 34px;
}

#stacks_in_1596.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  content: "\f00d";
}

   @media all and (max-width: 600px) {
  #stacks_in_1596.expd-card.expd-active {
    top: 1.250000px;
    bottom: 1.250000px;
    left: 1.250000px;
    right: 1.250000px;
    width: calc(100vw - 2.500000px);
    height: calc(100vh - 2.500000px);
  }
}


#shady_stack_stacks_in_1597 {
	max-width: none;
	
  margin: 0 auto;
  
}

#shady_stack_shadow_stacks_in_1597 {
	box-shadow:  0rem 0rem 0.8rem 0.4rem rgba(153, 153, 153, 1.00);
	border-radius: 0rem;
	overflow: hidden;
	padding: 1.0rem;
	margin: 1.0rem;
	border: none 0.10rem rgba(51, 51, 51, 1.00);
}

@media print {
	#shady_stack_shadow_stacks_in_1597 {
		margin: 0;
		padding: 0;
		box-shadow: none;
		border-radius: 0px;
	}
}
/* ProGallery Grid */

#mygallery1 {
	display: block;
	width: 100%;
  %[if ]%text-align: left;%[endif]%
  %[if ]%text-align: center;%[endif]%
  %[if ]%text-align: right;%[endif]%
}

#mygallery1 ul#proGalleryThumbsstacks_in_2654 {
	padding: 0;
	margin: 0;
	list-style: none;
}

#mygallery1 li.proGalleryItem {
	position: relative;
	-webkit-transform: translateZ(0);
}

#mygallery1 li .proGalleryItemInner {
  border: 5px hidden rgba(0, 0, 0, 1.00);
  border-radius: 0rem;
	background-color: rgba(255, 255, 255, 1.00);
	padding: 5px;
	position: relative;
	margin: 10px;
	
}

#mygallery1 li.proGalleryItem a {
	display: block;
  cursor: zoom-in;
  margin: ;
  outline: none;
}


#mygallery1 li .proGalleryItemInner a:focus {
    outline: 2px dotted #0000FF;
}


#mygallery1 li.proGalleryItem img {
	max-height: 100%;
	max-width: 100%;
	width: auto;
	height: auto;
  border-radius: 0rem;
  display: block;
  border: 1px groove rgba(234, 234, 234, 1.00);
	padding: 5px;
	margin: 10px;
	
}

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


/* Captions */
#mygallery1 .proGalleryItemTitle {
	display: block;
	transition: opacity 300ms ease-in-out;
	padding: 0rem;
	margin: 5px;
	font-size: 1rem;
	letter-spacing: 0px;
	border-radius: 0rem;
	color: rgba(102, 102, 102, 1.00);
	line-height: 1.5;
  background: rgba(255, 255, 255, 1.00);
  font-weight: bold;
  
  
	
	
}

/* Override for caption titles */
#mygallery1 .proGalleryItemTitle strong {
	
	font-size: 1rem;
	letter-spacing: 0px;
	color: rgba(102, 102, 102, 1.00);
	line-height: 1.5;
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
  font-weight: bold;
  
  
  
}

#mygallery1 .proGalleryItemTitle div {
  
  color: rgba(102, 102, 102, 1.00);
  font-size: 1rem;
}

#mygallery1.titlesBelowLeft .proGalleryItemTitle {
	text-align: left;
	opacity: 1.00;
}

#mygallery1.titlesBelowCentre .proGalleryItemTitle {
	text-align: center;
	opacity: 1.00;
}

#mygallery1.titlesBelowRight .proGalleryItemTitle {
	text-align: right;
	opacity: 1.00;
}

#mygallery1.titlesHoverTopLeft .proGalleryItemTitle {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	text-align: left;
}

#mygallery1.titlesHoverTopCentre .proGalleryItemTitle {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	text-align: center;
}

#mygallery1.titlesTopRight .proGalleryItemTitle {
	position: absolute;
	top: 0;
	right: 0;
	text-align: right;
	opacity: 0;
}

#mygallery1.titlesHoverMiddleLeft .proGalleryItemTitle {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	opacity: 0;
	text-align: left;
}

#mygallery1.titlesHoverMiddleCentre .proGalleryItemTitle {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	width: 100%;
	text-align: center;
	opacity: 0;
}

#mygallery1.titlesHoverMiddleRight .proGalleryItemTitle {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
	opacity: 0;
	text-align: right;
}

#mygallery1.titlesHoverBottomLeft .proGalleryItemTitle {
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0;
	text-align: left;
}

#mygallery1.titlesHoverBottomCentre .proGalleryItemTitle {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	opacity: 0;
}

#mygallery1.titlesHoverBottomRight .proGalleryItemTitle {
	position: absolute;
	bottom: 0;
	right: 0;
	opacity: 0;
	text-align: right;
}

#mygallery1 li:hover .proGalleryItemTitle {
	opacity: 1.00;
}

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

#mygallery1 a img {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-backface-visibility: hidden; /* Fixes bug in Chrome, with images inside columns vanishing */
}

#mygallery1 a:hover img {
	-webkit-transform: rotate(3deg);
	-moz-transform: rotate(3deg);
	-o-transform: rotate(3deg);
	-ms-transform: rotate(3deg);
	transform: rotate(3deg);
}

/*  */

/*  */

/*  */

/*  */

/* @end */





#stacks_in_2654 {
	background-color: rgba(255, 255, 255, 1.00);
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	margin:  3px;
	padding:  3px;
}

/* ProGallery Columns Layout */

#mygallery1 .proGalleryThumbs {
  -moz-column-gap: 1rem;
  -webkit-column-gap: 1rem;
  column-gap: 1rem;
}


/* This CSS aims to fix the issue of images missing in Safari, within CSS columns, with animations applied */
#mygallery1 .proGalleryThumbs li img {
  will-change: transform;
}


@media screen and (min-width: 0px) {
  #mygallery1 .proGalleryThumbs {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }
}

@media screen and (min-width: 568px) {
	#mygallery1 .proGalleryThumbs {
		-moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
	}
}

@media screen and (min-width: 992px) {
	#mygallery1 .proGalleryThumbs {
		-moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
	}
}

@media screen and (min-width: 1200px) {
	#mygallery1 .proGalleryThumbs {
		-moz-column-count: 4;
    -webkit-column-count: 4;
    column-count: 4;
	}
}

#mygallery1 .proGalleryThumbs li.proGalleryItem {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  border-bottom: 1rem solid transparent;
}
/* Photobox lightbox */
#pbOverlay *,#pbOverlay :before,#pbOverlay :after{-moz-box-sizing:content-box;box-sizing:content-box}#pbOverlay.show{opacity:1;pointer-events:auto}#pbOverlay{opacity:0;overflow:hidden;width:100%;height:100%;position:fixed;z-index:9999;left:0;top:0;text-align:center;pointer-events:none;-moz-user-select:none;background:rgba(0,0,0,.90);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#e2000000',endColorstr='#e2000000');-webkit-transform:translate3d(0);transition:opacity 300ms ease}#pbOverlay.msie{background-color:rgba(0,0,0,.6)}.msie.pbLoading .pbWrapper{background:url(../images/loading.gif) no-repeat center center}@keyframes pbLoaderFrames{50%{height:5px}}@-webkit-keyframes pbLoaderFrames{50%{height:5px}}.pbLoader{display:none;width:100px;height:100px;position:absolute;z-index:999;top:0;left:0;right:0;bottom:0;margin:auto;text-align:center;border-radius:100%;box-shadow:15px 32px 60px -20px #FFF inset,1px 1px 3px 1px #FFF inset,0 0 20px;transition:.3s}.thumbs .pbLoader{-webkit-transform:translateY(-50px);transform:translateY(-50px)}.pbLoading:not(.msie):not(.error) .pbLoader{display:block}.pbLoader b{display:inline-block;vertical-align:middle;margin:0 2px;width:8px;height:60px;border-radius:5px;background:rgba(255,255,255,.8);box-shadow:0 0 10px rgba(0,0,0,.5);-webkit-animation:.9s pbLoaderFrames infinite linear;animation:.9s pbLoaderFrames infinite linear}.pbLoader b:nth-child(2){-webkit-animation-delay:.3s;animation-delay:.3s}.pbLoader b:nth-child(3){-webkit-animation-delay:.6s;animation-delay:.6s}.mobile.pbLoading .pbLoader{transform:none;transition:0}.pbWrapper:after,#pbCaption .pbThumbs ul:after,#pbOverlay .prevNext:after,#pbOverlay .pbLoader:before{content:"";display:inline-block;height:100%;margin-right:-.25em;vertical-align:middle}@keyframes deadImage{50%{text-shadow:0 0 25px rgba(255,255,255,.5);transform:scale(.85)}}@-webkit-keyframes deadImage{50%{text-shadow:0 0 25px rgba(255,255,255,.5);-webkit-transform:scale(.85)}}#pbOverlay button{outline:0!important;box-shadow:0}.pbWrapper{-moz-box-sizing:border-box;box-sizing:border-box;transform:rotate(0deg);vertical-align:middle;height:100%;perspective:1200px;position:relative}.video > .pbWrapper{z-index:11;display:inline-block}.pbLoading .pbWrapper{display:inline-block\9;width:100%}.pbWrapper:before{content:'\2716';color:transparent;text-shadow:0 2px 35px rgba(255,255,255,0);font-size:0;vertical-align:middle;cursor:default;transition:text-shadow .7s ease-out}.error .pbWrapper:before{font-size:22em;text-shadow:0 0 0 #FFF;-webkit-animation:2s 1s deadImage infinite linear;animation:2s 1s deadImage infinite linear}.thumbs .pbWrapper{padding:0;margin:0}.error .pbWrapperr img{width:0}.pbWrapper > div{display:none;width:624px;height:351px;vertical-align:middle;border-radius:5px;background:rgba(0,0,0,.5)}.video > .pbWrapper > div{display:inline-block}#pbOverlay iframe,#pbOverlay embed,#pbOverlay object{display:block;width:100%;height:100%;opacity:1;transition:.5s}.pbWrapper .pbHide iframe{opacity:0}.pbWrapper > div,.pbWrapper > img{transition:.5s .5s cubic-bezier(.1,.87,.48,1);-webkit-transform:none;-ms-transform:none;transform:none;-webkit-backface-visibility:hidden;box-shadow:0 0 20px #000;opacity:1}.mobile.show .pbWrapper > div,.mobile.show .pbWrapper > img{transition:30ms}.pbWrapper > *,.pbHide .pbWrapper > .prepare{opacity:0;vertical-align:middle;-webkit-transform:scale(.2) rotateX(80deg);-ms-transform:scale(.2) rotateX(80deg);transform:scale(.2) rotateX(80deg);border-radius:6px;border:none;max-height:95%;max-width:100%}.on .pbWrapper > *{transition-delay:0}.pbWrapper .zoomable{-webkit-transition:0;transition:0;position:relative;z-index:9}.pbWrapper .rotating{-webkit-transition:.25s cubic-bezier(.4,.04,0,1);transition:.25s cubic-bezier(.4,.04,0,1)}.pbHide .pbWrapper > *{-webkit-transform:scale(1.2);transform:scale(1.2);transform:none\9;opacity:0;transition:.4s ease-out}#pbCloseBtn,#pbAutoplayBtn{position:absolute;top:-50px;right:-50px;z-index:999;display:block;padding:0 0 20px 20px;text-align:center;cursor:pointer;color:#FFF;transition:.3s .3s ease-out}.pbHide #pbCloseBtn{top:-50px;right:-50px}.on #pbCloseBtn{top:-2px;right:-2px}#pbCloseBtn:before{content:'\00D7';font:bold 1em/1 arial}#pbCloseBtn:before,#pbAutoplayBtn:before{display:inline-block;height:35px;width:35px;padding:8px 8px 12px 12px;font-size:2em;opacity:.8;vertical-align:middle;background:rgba(255,255,255,.2);border-radius:0 0 0 70px;transition:.1s ease-out}#pbCloseBtn:hover:before{padding:15px 10px 24px 24px;background:rgba(255,100,100,.4)}#pbAutoplayBtn{display:none;right:auto;left:-50px;padding:0;width:50px;height:50px;font-size:13px}.hasAutoplay #pbAutoplayBtn{display:block}#pbAutoplayBtn:hover{width:60px;height:60px}.on #pbAutoplayBtn{top:0;left:0;transition:.1s ease-out}#pbAutoplayBtn:before{content:'\2016';width:100%;height:100%;border-radius:0 0 70px 0;font-weight:700;padding:0;text-indent:-6px;line-height:1.6}#pbAutoplayBtn:active:before{text-shadow:0 0 3px #FFF,0 0 6px #FFF}#pbAutoplayBtn.play:before{content:'\25BA'}#pbAutoplayBtn .pbProgress{display:none\9;width:100%;height:100%;overflow:hidden;position:absolute;padding:6px;top:0;left:0;opacity:.2;transform:rotateZ(0deg);-webkit-transform:rotateZ(0deg);-ms-transform:rotateZ(0deg);-webkit-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;-webkit-transition:.3s;transition:.3s}.mobile #pbAutoplayBtn .pbProgress{-webkit-transition:0;transition:0}#pbAutoplayBtn.playing .pbProgress{-webkit-transform:rotateZ(90deg);-ms-transform:rotateZ(90deg);transform:rotateZ(90deg)}#pbAutoplayBtn .pbProgress:before{content:'';position:absolute;right:0;bottom:0;width:200%;height:200%;border-radius:50%;box-shadow:0 0 0 8px #FFF inset}#pbCaption,.pbHide #pbCaption{position:absolute;z-index:999;margin-bottom:5px;bottom:-120px;width:100%;overflow:hidden;transform:translateZ(0px);transition:.4s}.show.on #pbCaption{bottom:0;transition-delay:.5s}#pbOverlay.thumbs #pbCaption label{display:block}#pbCaption label{display:none;float:right;margin:0 1em;color:#FFF;opacity:.3;transition:.2s;cursor:pointer}#pbCaption label:after{content:'\276F';font-size:30px;line-height:30px;display:inline-block;transform:rotate(-90deg);transition:.2s ease-out}#pbCaption label:hover{opacity:1}#pbCaption .title,#pbCaption .counter{display:inline-block;color:#FFF;margin:0 6px}#pbCaption .counter{display:none;opacity:.55}.hasCounter #pbCaption .counter{display:inline-block}.pbCaptionText{display:inline-block;transition:.3s;opacity:.9;font-weight:700;vertical-align:middle;text-shadow:1px 1px 1px rgba(0,0,0,.5);padding-left:60px}.pbCaptionText.change{-webkit-transform:translateY(25px);transform:translateY(25px);opacity:0}#pbCaption .rotateBtn{display:none;background:none;border:0;font:800 1.7em/0 Arial;vertical-align:middle;color:rgba(255,255,255,.5);width:1.1em;height:1.1em;padding:0;border-radius:50%;background:rgba(0,0,0,.2);cursor:pointer;transition:.15s ease-out}#pbCaption .rotateBtn.show{display:block;float:right}#pbCaption .rotateBtn:hover{color:rgba(255,255,255,.7)}#pbCaption .rotateBtn:active{color:#fff;background:rgba(0,0,0,.4)}.mobile #pbCaption label{display:none;z-index:-1;color:red}.mobile .pbCaptionText{padding:0}#pbThumbsToggler:checked ~ #pbCaption .pbThumbs{margin:0}#pbThumbsToggler:checked ~ #pbCaption label:after{transform:rotate(90deg)}#pbThumbsToggler:checked ~ .pbWrapper{margin-top:-50px;padding:50px 0}.pbThumbs{display:none;transition:.35s;-webkit-overflow-scrolling:touch}.thumbs .pbThumbs{display:block;width:100%;padding:5px 0 2px;margin-bottom:-100px;overflow:hidden}.mobile .pbThumbs{overflow:auto}.pbThumbs:hover{clear:both}.pbThumbs ul{display:inline-block;position:relative;list-style:none;height:80px;padding:0 5px;margin:0;white-space:pre;transition:.2s}.pbThumbs ul:after{vertical-align:bottom}.pbThumbs li{display:inline-block;vertical-align:bottom;height:70%;opacity:.6;text-align:center;position:relative;transition:.15s}.pbThumbs li.active{height:100%;opacity:1}.pbThumbs li:hover{height:100%;opacity:1}.pbThumbs li.video::before{content:'\25BA';color:#FFF;font-size:20px;height:20px;width:20px;line-height:.9;position:absolute;bottom:4px;left:7px;background:rgba(0,0,0,.4);box-shadow:0 0 0 3px rgba(0,0,0,.4);border-radius:0 3px 0 0;pointer-events:none}.pbThumbs a{height:100%;padding:0 2px;display:block;-moz-user-select:none}.pbThumbs img{height:96%;min-height:95.9%;border:2px solid #FFF;max-width:none;border-radius:0;transition:.15s}.pbThumbs li:hover img{min-height:96%}.pbThumbs li.fast a img{transition:none}.pbThumbs li.active a img{border-color:#D8FF16;min-height:96%}#pbOverlay .prevNext{display:none;background:rgba(0,0,0,0);position:absolute;z-index:10;height:100%;width:35%;padding:80px 0;opacity:0;box-sizing:border-box;-moz-box-sizing:border-box;top:0;transition:.2s ease-out;text-shadow:0 0 12px #000,0 0 10px #FFF;user-select:none;filter:alpha(opacity=0);cursor:pointer}#pbOverlay.hasArrows .prevNext{display:block}#pbOverlay .prevNext.pbHide{display:none}#pbOverlay.on .prevNext:hover{opacity:.5;filter:alpha(opacity=50)}#pbOverlay.on .prevNext:hover:active{transition:80ms;opacity:1;filter:alpha(opacity=100);text-shadow:0 0 16px #FFF,0 0 10px #000}.prevNext b{display:inline-block;vertical-align:middle;transition:.2s ease-in}.prevNext:hover b{transition:.2s cubic-bezier(.095,.870,.485,.985)}#pbPrevBtn b{transform:scale(.4) translateX(350px);-webkit-transform:scale(.4) translateX(350px)}#pbNextBtn b{transform:scale(.4) translateX(-350px);-webkit-transform:scale(.4) translateX(-350px)}#pbPrevBtn b:before,#pbNextBtn b:after{display:inline;line-height:.3;font-size:18em;font-weight:400;color:#FFF;font-family:Arial}#pbPrevBtn b:before{content:'\2039'}#pbNextBtn b:after{content:'\203A'}.on #pbPrevBtn:hover b{transform:scale(1) translateX(20px);-webkit-transform:scale(1) translateX(20px)}.on #pbNextBtn:hover b{transform:scale(1) translateX(-20px);-webkit-transform:scale(1) translateX(-20px)}.show #pbPrevBtn{left:0;text-align:left}.show #pbNextBtn{right:0;text-align:right}@media all and (max-width:700px){.pbWrapper img,.pbHide .pbWrapper img.prepare{max-height:100%}.thumbs .pbWrapper{padding:0;margin:0}.pbThumbs{margin-bottom:-60px}.pbThumbs.show{margin:0}.pbThumbs ul{height:50px}.pbThumbs li{height:100%;opacity:1}.pbThumbs li img{min-height:96.5%}}@media all and (max-width:710px){.pbThumbs li.active a img{min-height:96%}}

/* Custom styling */
#pbOverlay {
  background: rgba(0, 0, 0, 0.90);
}
.pbWrapper > * {
  border-radius: 6px;
}
.pbCaptionText .title {
  color: rgba(255, 255, 255, 1.00);
}
.pbCaptionText .counter {
  opacity: 1;
  color: rgba(125, 127, 127, 1.00);
}
.pbThumbs li a img {
  border-color: rgba(255, 255, 255, 1.00);
}
.pbThumbs li.active a img {
  border-color: rgba(216, 255, 22, 1.00);
}#p-stacks_in_2825 p{    }#p-stacks_in_2825 p.lead{}#p-stacks_in_2825 a{color:var(--link-color);}#p-stacks_in_2825 a:hover{color:var(--link-color-hover); }

#stacks_in_2825 {
	margin: 5px 20px 5px 20px;
}

#stacks_in_2833 {
	font-weight: bold;
}
/* @group Generic Styles */

#ruleStackstacks_in_2826,
#ruleStackstacks_in_2826:before,
#ruleStackstacks_in_2826:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#ruleStackstacks_in_2826 {
	position: relative;
	overflow: hidden;
	margin: 3.00% 0;
	width: %;
}

/*  */

/*  */

/*  */
#ruleStackstacks_in_2826 {
	width: 75%;
	margin-left: auto; margin-right: auto;
}
/*  */

#ruleStackstacks_in_2826 [class^="fa fa-"] {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	text-align: center;
	color: rgba(204, 204, 204, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_2826 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */

/*  */

/*  */
#ruleStackstacks_in_2826 {
	text-align: left;
}

#ruleStackstacks_in_2826:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	left: 0;
	min-height: 2px;
	border-top: 2px solid rgba(255, 0, 0, 1.00);
}

#ruleStackstacks_in_2826 [class^="fa fa-"] {
	visibility: hidden;
}

/*  */
/*  */#p-stacks_in_2828 p{    }#p-stacks_in_2828 p.lead{}#p-stacks_in_2828 a{color:var(--link-color);}#p-stacks_in_2828 a:hover{color:var(--link-color-hover); }

#stacks_in_2828 {
	margin: 5px 20px 5px 20px;
}
/* @group Generic Styles */

#ruleStackstacks_in_2829,
#ruleStackstacks_in_2829:before,
#ruleStackstacks_in_2829:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#ruleStackstacks_in_2829 {
	position: relative;
	overflow: hidden;
	margin: 3.00% 0;
	width: %;
}

/*  */

/*  */

/*  */
#ruleStackstacks_in_2829 {
	width: 75%;
	margin-left: auto; margin-right: auto;
}
/*  */

#ruleStackstacks_in_2829 [class^="fa fa-"] {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	text-align: center;
	color: rgba(204, 204, 204, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_2829 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */

/*  */

/*  */
#ruleStackstacks_in_2829 {
	text-align: left;
}

#ruleStackstacks_in_2829:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	left: 0;
	min-height: 2px;
	border-top: 2px solid rgba(255, 0, 0, 1.00);
}

#ruleStackstacks_in_2829 [class^="fa fa-"] {
	visibility: hidden;
}

/*  */
/*  *//* @group Generic Styles */

#ruleStackstacks_in_2852,
#ruleStackstacks_in_2852:before,
#ruleStackstacks_in_2852:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#ruleStackstacks_in_2852 {
	position: relative;
	overflow: hidden;
	margin: 3.00% 0;
	width: %;
}

/*  */

/*  */

/*  */
#ruleStackstacks_in_2852 {
	width: 75%;
	margin-left: auto; margin-right: auto;
}
/*  */

#ruleStackstacks_in_2852 [class^="fa fa-"] {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	text-align: center;
	color: rgba(204, 204, 204, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_2852 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */

/*  */

/*  */
#ruleStackstacks_in_2852 {
	text-align: left;
}

#ruleStackstacks_in_2852:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	left: 0;
	min-height: 2px;
	border-top: 2px solid rgba(255, 0, 0, 1.00);
}

#ruleStackstacks_in_2852 [class^="fa fa-"] {
	visibility: hidden;
}

/*  */
/*  */#p-stacks_in_2594 p{    }#p-stacks_in_2594 p.lead{}#p-stacks_in_2594 a{color:var(--link-color);}#p-stacks_in_2594 a:hover{color:var(--link-color-hover); }

#stacks_in_2594 {
	margin: 5px 20px 5px 20px;
}
/* @group Generic Styles */

#ruleStackstacks_in_2821,
#ruleStackstacks_in_2821:before,
#ruleStackstacks_in_2821:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#ruleStackstacks_in_2821 {
	position: relative;
	overflow: hidden;
	margin: 3.00% 0;
	width: %;
}

/*  */

/*  */

/*  */
#ruleStackstacks_in_2821 {
	width: 75%;
	margin-left: auto; margin-right: auto;
}
/*  */

#ruleStackstacks_in_2821 [class^="fa fa-"] {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	text-align: center;
	color: rgba(204, 204, 204, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_2821 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */

/*  */

/*  */
#ruleStackstacks_in_2821 {
	text-align: left;
}

#ruleStackstacks_in_2821:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	left: 0;
	min-height: 2px;
	border-top: 2px solid rgba(255, 0, 0, 1.00);
}

#ruleStackstacks_in_2821 [class^="fa fa-"] {
	visibility: hidden;
}

/*  */
/*  */#p-stacks_in_2696 p{    }#p-stacks_in_2696 p.lead{}#p-stacks_in_2696 a{color:var(--link-color);}#p-stacks_in_2696 a:hover{color:var(--link-color-hover); }

#stacks_in_2696 {
	margin: 5px 20px 5px 20px;
}

/* Start doobox vimeo pop css */

.stacks_in_2575manifesttrigger img{
display: block;
}


.stacks_in_2575loader{
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -8px;
	margin-left: -64px;
}


	

.stacks_in_2575manifestbox{
position: relative;
width: 75%;
max-width: 10000px;
display: table;
margin: 10px auto 14px auto;
padding: 10px;
background: #FFFFFF;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
-moz-box-shadow: 0 0 10px rgba(0,0,0,.4);
-webkit-box-shadow: 0 0 10px rgba(0,0,0,.4);
-box-shadow: 0 0 10px rgba(0,0,0,.4);
}


  /* ------------------------------------- if the large thumbnail is selected */
.stacks_in_2575playbutton{
display: block;
position: absolute;
top: 50%;
left: 50%;
width: 52px;
height: 32px;
margin-top: -16px;
margin-left: -26px;
background: url(../files/youtubepop_files/play1.png);
}


.stacks_in_2575videothumb{
width: 100%;
background: #e6e6e6;
}

.stacks_in_2575manifesttrigger{
position: relative; 
padding: 0px;
background: #CCCCCC;
max-width: 200px;
margin: 0 auto 0 auto;
cursor: pointer;
}








  /* end if in edit mode */






 /* -------------------------------------------------- if in preview mode */

.stacks_in_2575manifestbox{
display: none;
}

.stacks_in_2575videothumbpreview{
display: none;
}
 /* ------------------------------------------------- end if in preview mode */





/* ---------------------------------------------------------------- start misc styles */

.stacks_in_2575manifestclose{
position: absolute;
top:-11px;
left: -12px;
width: 26px;
height: 26px;
background: url(../files/youtubepop_files/thex.png);
cursor: pointer;
}


.stacks_in_2575clearer{
clear: both;
height: 0px;
margin: 0;
padding: 0;
}

.stacks_in_2575editvideotip{
color: #ffffff;
padding-top: 5px;
padding-bottom: 10px;
}




/* end doobox vimeo pop css */


#stacks_in_2575 {
	margin: 30px 0px 30px 0px;
}
/* @group Generic Styles */

#ruleStackstacks_in_2838,
#ruleStackstacks_in_2838:before,
#ruleStackstacks_in_2838:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#ruleStackstacks_in_2838 {
	position: relative;
	overflow: hidden;
	margin: 3.00% 0;
	width: %;
}

/*  */

/*  */

/*  */
#ruleStackstacks_in_2838 {
	width: 75%;
	margin-left: auto; margin-right: auto;
}
/*  */

#ruleStackstacks_in_2838 [class^="fa fa-"] {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	text-align: center;
	color: rgba(204, 204, 204, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_2838 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */

/*  */

/*  */
#ruleStackstacks_in_2838 {
	text-align: left;
}

#ruleStackstacks_in_2838:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	left: 0;
	min-height: 2px;
	border-top: 2px solid rgba(255, 0, 0, 1.00);
}

#ruleStackstacks_in_2838 [class^="fa fa-"] {
	visibility: hidden;
}

/*  */
/*  */#p-stacks_in_2847 p{    }#p-stacks_in_2847 p.lead{}#p-stacks_in_2847 a{color:var(--link-color);}#p-stacks_in_2847 a:hover{color:var(--link-color-hover); }

#stacks_in_2847 {
	margin: 5px 20px 5px 20px;
}
/* @group Generic Styles */

#ruleStackstacks_in_2842,
#ruleStackstacks_in_2842:before,
#ruleStackstacks_in_2842:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#ruleStackstacks_in_2842 {
	position: relative;
	overflow: hidden;
	margin: 3.00% 0;
	width: %;
}

/*  */

/*  */

/*  */
#ruleStackstacks_in_2842 {
	width: 75%;
	margin-left: auto; margin-right: auto;
}
/*  */

#ruleStackstacks_in_2842 [class^="fa fa-"] {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	text-align: center;
	color: rgba(204, 204, 204, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_2842 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */

/*  */

/*  */
#ruleStackstacks_in_2842 {
	text-align: left;
}

#ruleStackstacks_in_2842:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	left: 0;
	min-height: 2px;
	border-top: 2px solid rgba(255, 0, 0, 1.00);
}

#ruleStackstacks_in_2842 [class^="fa fa-"] {
	visibility: hidden;
}

/*  */
/*  */#p-stacks_in_2849 p{    }#p-stacks_in_2849 p.lead{}#p-stacks_in_2849 a{color:var(--link-color);}#p-stacks_in_2849 a:hover{color:var(--link-color-hover); }

#stacks_in_2849 {
	margin: 5px 20px 5px 20px;
}
/* @group Generic Styles */

#ruleStackstacks_in_2844,
#ruleStackstacks_in_2844:before,
#ruleStackstacks_in_2844:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#ruleStackstacks_in_2844 {
	position: relative;
	overflow: hidden;
	margin: 3.00% 0;
	width: %;
}

/*  */

/*  */

/*  */
#ruleStackstacks_in_2844 {
	width: 75%;
	margin-left: auto; margin-right: auto;
}
/*  */

#ruleStackstacks_in_2844 [class^="fa fa-"] {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	text-align: center;
	color: rgba(204, 204, 204, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_2844 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */

/*  */

/*  */
#ruleStackstacks_in_2844 {
	text-align: left;
}

#ruleStackstacks_in_2844:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	left: 0;
	min-height: 2px;
	border-top: 2px solid rgba(255, 0, 0, 1.00);
}

#ruleStackstacks_in_2844 [class^="fa fa-"] {
	visibility: hidden;
}

/*  */
/*  */#p-stacks_in_1619 p{    }#p-stacks_in_1619 p.lead{}#p-stacks_in_1619 a{color:var(--link-color);}#p-stacks_in_1619 a:hover{color:var(--link-color-hover); }

#stacks_in_1619 {
	margin: 5px 20px 5px 20px;
}

#stacks_in_2490 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	margin:  5px;
	padding:  5px;
}


/* AnchorPoint CSS code */


#july2025 {
	height: 0px;
	opacity: 0;
	overflow: hidden;
}







.stacks_in_2492 .source-button{ font-size:19px;line-height:48px;border-radius:4px;padding:0 30px;border-width:1px;height:calc(48px + 2px); font-weight:bold; text-transform:none;   }#stacks_in_2492 .button-group-btn:not(:last-child) .source-button{margin-bottom:0}#stacks_in_2492 .button-group-btn:last-child .source-button{}.stacks_in_2492 .source-button,#stacks_in_2492 .s-button-group{display:block}#stacks_in_2492 .s-button-group .button-group-btn{padding-right:0!important;padding-bottom:1px}.stacks_in_2492 a{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 0, 128, 1.00);border-color:rgba(255, 255, 255, 1.00)}.stacks_in_2492 a:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(251, 2, 7, 1.00);border-color:rgba(0, 0, 0, 1.00)}#stacks_in_2492 .s-button-group{justify-content:center}#stacks_in_2492 .s-button-group .button-group-btn:not(:last-child){padding-right:1px}@media only screen and (max-width:0px){#stacks_in_2492 .s-button-group .button-group-btn{padding-right:0!important;padding-left:0}}#stacks_in_2492 .s-button-group .button-group-btn{padding-bottom:1px}
/*
1.0.4.6
- new option to use warehoused image for header image
- added new option to contain the header image instead of cover and crop
- add new header image bg color that shows when containing an image
- added settings to change font sizes
- uses unique data attribute names to prevent conflicts with foundation and other frameworks
- added compatability with assemble
- mobile address bar no longer triggers resize event
*/
#stacks_in_2494.expd-card,
#stacks_in_2494.expd-card * {
  box-sizing: border-box;
}

#stacks_in_2494 .expd-truncate {
  position: relative;
  display: inline-block;
  width: 100%;
}

 #stacks_in_2494.expd-card .click-all {
  height: 100%;
}

  #stacks_in_2494.expd-card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
     background: -moz-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  bottom: 0px;
   pointer-events: none;
}

#stacks_in_2494.expd-card.expd-active:after {
  display: none;
}

 #stacks_in_2494_wrap.wrap-expd-card {
   width: 410px;
  height: 450px;
   margin: 20px auto;
  max-width: 100%;
  position: relative;
}

#stacks_in_2494.expd-card.fadeIn {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

#stacks_in_2494.expd-card {
  font-family: inherit;
  text-align: left;
  will-change: top, left, right, bottom;
    color: rgba(103, 103, 103, 1.00);
     background: rgba(255, 255, 255, 1.00);
    height: 450px;
  width: 410px;
  visibility: hidden;
   border: 0px solid #ccc;
  overflow: hidden;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  border-radius: 0px;
   
}

 #stacks_in_2494.expd-card * {
  pointer-events: none;
}

#stacks_in_2494.expd-card .expd-open,
#stacks_in_2494.expd-card [data-expanse-open='1'],
#stacks_in_2494.expd-card.expd-active * {
  pointer-events: all;
}

 #stacks_in_2494.expd-card h1,
#stacks_in_2494.expd-card h2,
#stacks_in_2494.expd-card h3,
#stacks_in_2494.expd-card h4,
#stacks_in_2494.expd-card h5,
#stacks_in_2494.expd-card h6 {
  font-family: inherit;
}

#stacks_in_2494.expd-card.expd-active {
  position: fixed;
  z-index: 99;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  width: calc(100vw - 10px);
  height: calc(100vh - 10px);
  overflow: scroll;
  overflow-x: hidden;
  border: 0px solid transparent;
  box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.4);
   -webkit-transform-origin: center center;
  transform-origin: center center;
  margin: 0;
  transform: scale(1);
}

#stacks_in_2494.expd-card [data-expanse-close='1'] {
  display: none;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_2494.expd-card [data-expanse-open='1'] {
  display: block;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_2494.expd-card .expd-card-button {
  background: #CCCCCC;
  color: #676767;
   background: rgba(96, 53, 148, 1.00);
  color: rgba(255, 255, 255, 1.00);
   display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, .2);
  transition: 300ms all linear;
  cursor: pointer;
}

#stacks_in_2494.expd-card .expd-card-button[data-expanse-open='1'] {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 4px;
}

#stacks_in_2494.expd-card .expd-card-button:hover,
#stacks_in_2494.expd-card .expd-card-button[data-expanse-open='1']:hover {
  opacity: .8;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
}

#stacks_in_2494.expd-card .expd-card-body-wrap {
  max-width: 1920px;
  margin: 0 auto;
}
.fixed-closestacks_in_2494 {
  display: block;
  pointer-events: none;
  transition: opacity 300ms linear;
  
  transition-delay: 300ms;
  
  opacity: 0;
  cursor: pointer;
  z-index: 200;
  position: fixed;
  width: 40px;
  height: 40px;
  top: 15px;
  right: 15px;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
    color: rgba(103, 103, 103, 1.00);
     background: rgba(255, 255, 255, 1.00);
   border-radius: 4px;
}
.expd-body .fixed-closestacks_in_2494 {
  pointer-events: all;
  
}

#stacks_in_2494.expd-card .expd-card-body-wrap .expd-card-img {
  height: 0px;
  padding-bottom: 56.25%;
  background-color: #bbb;
  background-size: cover;
  background-position: center center;
  
  background-image: url();
  
  
  background-color: rgba(230, 230, 230, 1.00);
  background-size: contain;
  background-repeat: no-repeat;
  
}

#stacks_in_2494.expd-card .expd-card-body-wrap .expd-card-content {
  padding: 18px 16px;
  position: relative;
  perspective: 1200;
}

#stacks_in_2494.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  padding: 20px 20px;
}

#stacks_in_2494.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  position: absolute;
  cursor: pointer;
  height: 40px;
  width: 40px;
  background: rgba(88, 236, 88, 1.00);
  right: 20px;
  top: -20px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
  text-align: center;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  transition: all ease 300ms;
}

#stacks_in_2494.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:hover {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.3);
}

#stacks_in_2494.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:active {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.6);
  transition: all ease 100ms;
}

#stacks_in_2494.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa {
  line-height: 34px;
  position: absolute;
  width: 34px;
  height: 34px;
  font-size: 24px;
  top: 0;
  left: 0;
  text-align: center;
}

#stacks_in_2494.expd-card .expd-card-body-wrap .expd-card-content {
  font-size: 12px;
  line-height: 16px;
}

#stacks_in_2494.expd-card .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  color: rgba(66, 66, 66, 1.00);
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}

#stacks_in_2494.expd-card .expd-card-body-wrap .expd-card-content .expd-heading strong {
  color: rgba(88, 88, 88, 1.00);
  font-size: 14px;
  line-height: 16px;
  display: block;
  margin-bottom: 5px;
}

#stacks_in_2494.expd-card .expd-card-body-wrap .expd-card-content p {
  margin: 10px 0px;
}

#stacks_in_2494.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  font-size: 16px;
  line-height: 22px;
}

#stacks_in_2494.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  font-size: 26px;
  line-height: 32px;
}

#stacks_in_2494.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading strong {
  font-size: 20px;
  line-height: 22px;
  margin: 5px 0px 20px 0px;
}

.expd-body {
  overflow: hidden;
}

#stacks_in_2494.expd-card.expd-pre-anim {
  position: fixed;
  z-index: 99;
}

#stacks_in_2494.expd-card.expd-active [data-expanse-close='1'] {
  display: inline-block;
}

#stacks_in_2494.expd-card.expd-active .expd-open[data-expanse-open='1'] {
  display: block;
  cursor: auto;
}

#stacks_in_2494.expd-card.expd-active .expd-card-button[data-expanse-open='1'] {
  display: none;
}

#stacks_in_2494.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  background: rgba(236, 88, 88, 1.00);
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
}

#stacks_in_2494.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  line-height: 34px;
}

#stacks_in_2494.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  content: "\f00d";
}

   @media all and (max-width: 600px) {
  #stacks_in_2494.expd-card.expd-active {
    top: 1.250000px;
    bottom: 1.250000px;
    left: 1.250000px;
    right: 1.250000px;
    width: calc(100vw - 2.500000px);
    height: calc(100vh - 2.500000px);
  }
}


#shady_stack_stacks_in_2495 {
	max-width: none;
	
  margin: 0 auto;
  
}

#shady_stack_shadow_stacks_in_2495 {
	box-shadow:  0rem 0rem 0.8rem 0.4rem rgba(153, 153, 153, 1.00);
	border-radius: 0rem;
	overflow: hidden;
	padding: 1.0rem;
	margin: 1.0rem;
	border: none 0.10rem rgba(51, 51, 51, 1.00);
}

@media print {
	#shady_stack_shadow_stacks_in_2495 {
		margin: 0;
		padding: 0;
		box-shadow: none;
		border-radius: 0px;
	}
}

#stacks_in_2598 {
	margin: 5px 20px 5px 20px;
}
#p-stacks_in_2599 p{    }#p-stacks_in_2599 p.lead{}#p-stacks_in_2599 a{color:var(--link-color);}#p-stacks_in_2599 a:hover{color:var(--link-color-hover); }

#stacks_in_2599 {
	margin: 5px 20px 5px 20px;
}

/* Start doobox vimeo pop css */

.stacks_in_2573manifesttrigger img{
display: block;
}


.stacks_in_2573loader{
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -8px;
	margin-left: -64px;
}


	

.stacks_in_2573manifestbox{
position: relative;
width: 75%;
max-width: 10000px;
display: table;
margin: 10px auto 14px auto;
padding: 10px;
background: #FFFFFF;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px;
-moz-box-shadow: 0 0 10px rgba(0,0,0,.4);
-webkit-box-shadow: 0 0 10px rgba(0,0,0,.4);
-box-shadow: 0 0 10px rgba(0,0,0,.4);
}


  /* ------------------------------------- if the large thumbnail is selected */
.stacks_in_2573playbutton{
display: block;
position: absolute;
top: 50%;
left: 50%;
width: 52px;
height: 32px;
margin-top: -16px;
margin-left: -26px;
background: url(../files/youtubepop_files/play1.png);
}


.stacks_in_2573videothumb{
width: 100%;
background: #e6e6e6;
}

.stacks_in_2573manifesttrigger{
position: relative; 
padding: 0px;
background: #CCCCCC;
max-width: 200px;
margin: 0 auto 0 auto;
cursor: pointer;
}








  /* end if in edit mode */






 /* -------------------------------------------------- if in preview mode */

.stacks_in_2573manifestbox{
display: none;
}

.stacks_in_2573videothumbpreview{
display: none;
}
 /* ------------------------------------------------- end if in preview mode */





/* ---------------------------------------------------------------- start misc styles */

.stacks_in_2573manifestclose{
position: absolute;
top:-11px;
left: -12px;
width: 26px;
height: 26px;
background: url(../files/youtubepop_files/thex.png);
cursor: pointer;
}


.stacks_in_2573clearer{
clear: both;
height: 0px;
margin: 0;
padding: 0;
}

.stacks_in_2573editvideotip{
color: #ffffff;
padding-top: 5px;
padding-bottom: 10px;
}




/* end doobox vimeo pop css */


#stacks_in_2573 {
	margin: 30px 0px 30px 0px;
}
/* ProGallery Grid */

#mygallery {
	display: block;
	width: 100%;
  %[if ]%text-align: left;%[endif]%
  %[if ]%text-align: center;%[endif]%
  %[if ]%text-align: right;%[endif]%
}

#mygallery ul#proGalleryThumbsstacks_in_2668 {
	padding: 0;
	margin: 0;
	list-style: none;
}

#mygallery li.proGalleryItem {
	position: relative;
	-webkit-transform: translateZ(0);
}

#mygallery li .proGalleryItemInner {
  border: 5px hidden rgba(0, 0, 0, 1.00);
  border-radius: 0rem;
	background-color: rgba(255, 255, 255, 1.00);
	padding: 5px;
	position: relative;
	margin: 10px;
	
}

#mygallery li.proGalleryItem a {
	display: block;
  cursor: zoom-in;
  margin: ;
  outline: none;
}


#mygallery li .proGalleryItemInner a:focus {
    outline: 2px dotted #0000FF;
}


#mygallery li.proGalleryItem img {
	max-height: 100%;
	max-width: 100%;
	width: auto;
	height: auto;
  border-radius: 0rem;
  display: block;
  border: 1px groove rgba(234, 234, 234, 1.00);
	padding: 5px;
	margin: 10px;
	
}

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


/* Captions */
#mygallery .proGalleryItemTitle {
	display: block;
	transition: opacity 300ms ease-in-out;
	padding: 0rem;
	margin: 5px;
	font-size: 1rem;
	letter-spacing: 0px;
	border-radius: 0rem;
	color: rgba(102, 102, 102, 1.00);
	line-height: 1.5;
  background: rgba(255, 255, 255, 1.00);
  font-weight: bold;
  
  
	
	
}

/* Override for caption titles */
#mygallery .proGalleryItemTitle strong {
	
	font-size: 1rem;
	letter-spacing: 0px;
	color: rgba(102, 102, 102, 1.00);
	line-height: 1.5;
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
  font-weight: bold;
  
  
  
}

#mygallery .proGalleryItemTitle div {
  
  color: rgba(102, 102, 102, 1.00);
  font-size: 1rem;
}

#mygallery.titlesBelowLeft .proGalleryItemTitle {
	text-align: left;
	opacity: 1.00;
}

#mygallery.titlesBelowCentre .proGalleryItemTitle {
	text-align: center;
	opacity: 1.00;
}

#mygallery.titlesBelowRight .proGalleryItemTitle {
	text-align: right;
	opacity: 1.00;
}

#mygallery.titlesHoverTopLeft .proGalleryItemTitle {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	text-align: left;
}

#mygallery.titlesHoverTopCentre .proGalleryItemTitle {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	text-align: center;
}

#mygallery.titlesTopRight .proGalleryItemTitle {
	position: absolute;
	top: 0;
	right: 0;
	text-align: right;
	opacity: 0;
}

#mygallery.titlesHoverMiddleLeft .proGalleryItemTitle {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	opacity: 0;
	text-align: left;
}

#mygallery.titlesHoverMiddleCentre .proGalleryItemTitle {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	width: 100%;
	text-align: center;
	opacity: 0;
}

#mygallery.titlesHoverMiddleRight .proGalleryItemTitle {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
	opacity: 0;
	text-align: right;
}

#mygallery.titlesHoverBottomLeft .proGalleryItemTitle {
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0;
	text-align: left;
}

#mygallery.titlesHoverBottomCentre .proGalleryItemTitle {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	opacity: 0;
}

#mygallery.titlesHoverBottomRight .proGalleryItemTitle {
	position: absolute;
	bottom: 0;
	right: 0;
	opacity: 0;
	text-align: right;
}

#mygallery li:hover .proGalleryItemTitle {
	opacity: 1.00;
}

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

#mygallery a img {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-backface-visibility: hidden; /* Fixes bug in Chrome, with images inside columns vanishing */
}

#mygallery a:hover img {
	-webkit-transform: rotate(3deg);
	-moz-transform: rotate(3deg);
	-o-transform: rotate(3deg);
	-ms-transform: rotate(3deg);
	transform: rotate(3deg);
}

/*  */

/*  */

/*  */

/*  */

/* @end */





#stacks_in_2668 {
	background-color: rgba(255, 255, 255, 1.00);
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	margin:  3px;
	padding:  3px;
}

/* ProGallery Columns Layout */

#mygallery .proGalleryThumbs {
  -moz-column-gap: 1rem;
  -webkit-column-gap: 1rem;
  column-gap: 1rem;
}


/* This CSS aims to fix the issue of images missing in Safari, within CSS columns, with animations applied */
#mygallery .proGalleryThumbs li img {
  will-change: transform;
}


@media screen and (min-width: 0px) {
  #mygallery .proGalleryThumbs {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }
}

@media screen and (min-width: 568px) {
	#mygallery .proGalleryThumbs {
		-moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
	}
}

@media screen and (min-width: 992px) {
	#mygallery .proGalleryThumbs {
		-moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
	}
}

@media screen and (min-width: 1200px) {
	#mygallery .proGalleryThumbs {
		-moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
	}
}

#mygallery .proGalleryThumbs li.proGalleryItem {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  border-bottom: 1rem solid transparent;
}
/* Lightcase lightbox */

/**
 * Lightcase - jQuery Plugin
 * The smart and flexible Lightbox Plugin.
 *
 * @author		Cornel Boppart <cornel@bopp-art.com>
 * @copyright	Author
 *
 * @version		2.4.0 (09/04/2017)
 */
 @font-face {
  font-family: 'lightcase';
  src: url("../files/lightcase-assets/lightcase.eot?55356177");
  src: url("../files/lightcase-assets/lightcase.eot?55356177#iefix") format("embedded-opentype"), url("../files/lightcase-assets/lightcase.woff?55356177") format("woff"), url("../files/lightcase-assets/lightcase.ttf?55356177") format("truetype"), url("../files/lightcase-assets/lightcase.svg?55356177#lightcase") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class*='mygallery-icon-']:before {
  font-family: 'lightcase', sans-serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

/* Codes */
.mygallery-icon-play:before {
  content: '\e800';
}

.mygallery-icon-pause:before {
  content: '\e801';
}

.mygallery-icon-close:before {
  content: '\e802';
}

.mygallery-icon-prev:before {
  content: '\e803';
}

.mygallery-icon-next:before {
  content: '\e804';
}

.mygallery-icon-spin:before {
  content: '\e805';
}

/**
 * Mixin providing icon defaults to be used on top of font-lightcase.
 *
 * Example usage:
 * @include icon(#e9e9e9)
 */
/**
 * Mixin providing icon defaults including a hover status to be used
 * on top of font-lightcase.
 *
 * Example usage:
 * @include icon-hover(#e9e9e9, #fff)
 */
/**
 * Provides natural content overflow behavior and scrolling support
 * even so for touch devices.
 *
 * Example usage:
 * @include overflow()
 */
/**
 * Neutralizes/resets dimensions including width, height, position as well as margins,
 * paddings and styles. Used to enforce a neutral and unstyled look and behavoir!
 *
 * Example usage:
 * @include clear(true)
 *
 * @param boolean $important
 */
@-webkit-keyframes mygallery-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-moz-keyframes mygallery-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-o-keyframes mygallery-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-ms-keyframes mygallery-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes mygallery-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

#mygallery-case {
  display: none;
  position: fixed;
  z-index: 2002;
  top: 50%;
  left: 50%;
  font-family: arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 640px) {
  html[data-lc-type=inline] #mygallery-case,
  html[data-lc-type=ajax] #mygallery-case {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 55px 0 70px 0;
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important;
  }
}

@media screen and (min-width: 641px) {
  html:not([data-lc-type=error]) #mygallery-content {
    position: relative;
    z-index: 1;
    text-shadow: none;
    background-color: #fff;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    -webkit-backface-visibility: hidden;
  }
}
@media screen and (min-width: 641px) {
  html[data-lc-type=image] #mygallery-content,
  html[data-lc-type=video] #mygallery-content {
    background-color: #333;
  }
}

html[data-lc-type=inline] #mygallery-content,
html[data-lc-type=ajax] #mygallery-content,
html[data-lc-type=error] #mygallery-content {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

@media screen and (max-width: 640px) {
  html[data-lc-type=inline] #mygallery-content,
  html[data-lc-type=ajax] #mygallery-content,
  html[data-lc-type=error] #mygallery-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }
}

html[data-lc-type=inline] #mygallery-content .mygallery-contentInner,
html[data-lc-type=ajax] #mygallery-content .mygallery-contentInner,
html[data-lc-type=error] #mygallery-content .mygallery-contentInner {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  html[data-lc-type=inline] #mygallery-content .mygallery-contentInner,
  html[data-lc-type=ajax] #mygallery-content .mygallery-contentInner,
  html[data-lc-type=error] #mygallery-content .mygallery-contentInner {
    padding: 15px;
  }

  html[data-lc-type=inline] #mygallery-content .mygallery-contentInner,
  html[data-lc-type=inline] #mygallery-content .mygallery-contentInner > *,
  html[data-lc-type=ajax] #mygallery-content .mygallery-contentInner,
  html[data-lc-type=ajax] #mygallery-content .mygallery-contentInner > *,
  html[data-lc-type=error] #mygallery-content .mygallery-contentInner,
  html[data-lc-type=error] #mygallery-content .mygallery-contentInner > * {
    width: 100% !important;
    max-width: none !important;
  }

  html[data-lc-type=inline] #mygallery-content .mygallery-contentInner > *:not(iframe),
  html[data-lc-type=ajax] #mygallery-content .mygallery-contentInner > *:not(iframe),
  html[data-lc-type=error] #mygallery-content .mygallery-contentInner > *:not(iframe) {
    height: auto !important;
    max-height: none !important;
  }
}
@media screen and (max-width: 640px) {
  html.mygallery-isMobileDevice[data-lc-type=iframe] #mygallery-content .mygallery-contentInner iframe {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 640px) and (min-width: 641px) {
  html[data-lc-type=image] #mygallery-content .mygallery-contentInner,
  html[data-lc-type=video] #mygallery-content .mygallery-contentInner {
    line-height: 0.75;
  }
}

html[data-lc-type=image] #mygallery-content .mygallery-contentInner {
  position: relative;
  overflow: hidden !important;
}

@media screen and (max-width: 640px) {
  html[data-lc-type=inline] #mygallery-content .mygallery-contentInner .mygallery-inlineWrap,
  html[data-lc-type=ajax] #mygallery-content .mygallery-contentInner .mygallery-inlineWrap,
  html[data-lc-type=error] #mygallery-content .mygallery-contentInner .mygallery-inlineWrap {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }
}

@media screen and (min-width: 641px) {
  html:not([data-lc-type=error]) #mygallery-content .mygallery-contentInner .mygallery-inlineWrap {
    padding: 30px;
    overflow: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 640px) {
  #mygallery-content h1,
  #mygallery-content h2,
  #mygallery-content h3,
  #mygallery-content h4,
  #mygallery-content h5,
  #mygallery-content h6,
  #mygallery-content p {
    color: #aaa;
  }
}

@media screen and (min-width: 641px) {
  #mygallery-content h1,
  #mygallery-content h2,
  #mygallery-content h3,
  #mygallery-content h4,
  #mygallery-content h5,
  #mygallery-content h6,
  #mygallery-content p {
    color: #333;
  }
}

#mygallery-case p.mygallery-error {
  margin: 0;
  font-size: 17px;
  text-align: center;
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
  color: #aaa;
}

@media screen and (max-width: 640px) {
  #mygallery-case p.mygallery-error {
    padding: 30px 0;
  }
}

@media screen and (min-width: 641px) {
  #mygallery-case p.mygallery-error {
    padding: 0;
  }
}

.mygallery-open body {
  overflow: hidden;
}

.mygallery-isMobileDevice .mygallery-open body {
  max-width: 100%;
  max-height: 100%;
}

#mygallery-info {
  position: absolute;
  padding-top: 15px;
}

#mygallery-info #mygallery-title,
#mygallery-info #mygallery-caption {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-weight: normal;
  text-overflow: ellipsis;
}

#mygallery-info #mygallery-title {
  font-size: 17px;
  color: #aaa;
}

@media screen and (max-width: 640px) {
  #mygallery-info #mygallery-title {
    position: fixed;
    top: 10px;
    left: 0;
    max-width: 87.5%;
    padding: 5px 15px;
    /* background: #333; */
    background: none;
  }
}

#mygallery-info #mygallery-caption {
  clear: both;
  font-size: 13px;
  color: #aaa;
}

#mygallery-info #mygallery-sequenceInfo {
  font-size: 11px;
  color: #aaa;
}

@media screen and (max-width: 640px) {
  .mygallery-fullScreenMode #mygallery-info {
    padding-left: 15px;
    padding-right: 15px;
  }

  html:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #mygallery-info {
    position: static;
  }
}

#mygallery-loading {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  position: fixed;
  z-index: 2001;
  top: 50%;
  left: 50%;
  margin-top: -0.5em;
  margin-left: -0.5em;
  opacity: 1;
  font-size: 32px;
  text-shadow: 0 0 15px #fff;
  -moz-transform-origin: 50% 53%;
  -webkit-animation: mygallery-spin 0.5s infinite linear;
  -moz-animation: mygallery-spin 0.5s infinite linear;
  -o-animation: mygallery-spin 0.5s infinite linear;
  animation: mygallery-spin 0.5s infinite linear;
}

#mygallery-loading, #mygallery-loading:focus {
  text-decoration: none;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  -moz-transition: color, opacity, ease-in-out 0.25s;
  -o-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s;
}

#mygallery-loading > span {
  display: inline-block;
  text-indent: -9999px;
}

a[class*='mygallery-icon-'] {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  outline: none;
  cursor: pointer;
}

a[class*='mygallery-icon-'],
a[class*='mygallery-icon-']:focus {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  -moz-transition: color, opacity, ease-in-out 0.25s;
  -o-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s;
}

a[class*='mygallery-icon-'] > span {
  display: inline-block;
  text-indent: -9999px;
}

a[class*='mygallery-icon-']:hover {
  color: white;
  text-shadow: 0 0 15px white;
}

.mygallery-isMobileDevice a[class*='mygallery-icon-']:hover {
  color: #aaa;
  text-shadow: none;
}

a[class*='mygallery-icon-'].mygallery-icon-close {
  position: fixed;
  top: 15px;
  right: 15px;
  bottom: auto;
  margin: 0;
  opacity: 0;
  outline: none;
}

a[class*='mygallery-icon-'].mygallery-icon-prev {
  left: 15px;
}

a[class*='mygallery-icon-'].mygallery-icon-next {
  right: 15px;
}

a[class*='mygallery-icon-'].mygallery-icon-pause,
a[class*='mygallery-icon-'].mygallery-icon-play {
  left: 50%;
  margin-left: -0.5em;
}

@media screen and (min-width: 641px) {
  a[class*='mygallery-icon-'].mygallery-icon-pause,
  a[class*='mygallery-icon-'].mygallery-icon-play {
    opacity: 0;
  }
}

@media screen and (max-width: 640px) {
  a[class*='mygallery-icon-'] {
    bottom: 15px;
    font-size: 24px;
  }
}

@media screen and (min-width: 641px) {
  a[class*='mygallery-icon-'] {
    bottom: 50%;
    margin-bottom: -0.5em;
  }

  a[class*='mygallery-icon-']:hover,
  #mygallery-case:hover ~ a[class*='mygallery-icon-'] {
    opacity: 1;
  }
}

#mygallery-overlay {
  display: none;
  width: 100%;
  min-height: 100%;
  position: fixed;
  z-index: 2000;
  top: -9999px;
  bottom: -9999px;
  left: 0;
  background: #333;
}

@media screen and (max-width: 640px) {
  #mygallery-overlay {
    opacity: 1 !important;
  }
}

/* Modifications made by WHW */
a[class*='mygallery-icon-'],
a[class*='mygallery-icon-']:focus {
    color: rgba(255, 255, 255, 0.60);
}

@media screen and (max-width: 640px) {
  a[class*='mygallery-icon-'] {
    bottom: 0px;
    font-size: 24px;
    padding: 15px;
    width: auto;
  }
  a[class*='mygallery-icon-'].mygallery-icon-close {
    top: 0px;
    right: 0px;
  }
  a[class*='mygallery-icon-'].mygallery-icon-next {
    right: 0px;
  }
  a[class*='mygallery-icon-'].mygallery-icon-prev {
    left: 0px;
  }
  .mygallery-isMobileDevice a[class*='mygallery-icon-']:hover {
    color: rgba(255, 255, 255, 0.60);
    text-shadow: none;
  }
}

a[class*='mygallery-icon-']:hover {
    color: rgba(255, 255, 255, 1.00);
    text-shadow: 0 0 15px rgba(255, 255, 255, 1.00);
}

#mygallery-case {
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.50);
}

#mygallery-content img {
	width: auto;
	height: auto;
}

#mygallery-overlay {
    opacity: 1.00 !important;
    background: rgba(51, 51, 51, 0.95) !important;
}

#mygallery-info #mygallery-sequenceInfo,
#mygallery-info #mygallery-title,
#mygallery-info #mygallery-caption {
    color: rgba(170, 170, 170, 1.00);
}

#mygallery-info #mygallery-title {
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
  font-weight: bold;
  
  
  
}

#mygallery-info #mygallery-caption {
  
  
  
  
}

/* @end */

/* Social icons in the lightbox */

#social-mygallery {
	position: fixed;
	top: 15px;
	left: 15px;
	z-index: 99999;
	line-height: 1;
	display: none;
}

@media screen and (min-width: 641px) {
	/* Only show social media buttons on wider screens */
	#social-mygallery {
		display: block;
	}
}

#social-mygallery a {
	color: rgba(255, 255, 255, 0.60);
	padding: 0px;
	display: none;
	text-align: center;
	font-size: 26px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 40px;
	transition: all 300ms ease-in-out;
}

#social-mygallery a:hover {
	color: rgba(255, 255, 255, 1.00);
	text-shadow: 0 0 15px white;
}

/*  */

/*  */

/* Lightbox image borders and padding */

@media screen and (min-width: 641px) {
  html[data-lc-type=image] #mygallery-content,
  html[data-lc-type=video] #mygallery-content {
    background: transparent;
  }
}

#mygallery-content img {
  border: 0px solid rgba(255, 255, 255, 1.00);
  padding: 0px;
  border-radius: 0px;
}

/* Checkbox to switch lightbox layout to flexbox */



#p-stacks_in_2529 p{    }#p-stacks_in_2529 p.lead{}#p-stacks_in_2529 a{color:var(--link-color);}#p-stacks_in_2529 a:hover{color:var(--link-color-hover); }

#stacks_in_2529 {
	margin: 5px 20px 5px 20px;
}


/* AnchorPoint CSS code */


#may-july {
	height: 0px;
	opacity: 0;
	overflow: hidden;
}







.s-cols-stacks_in_2175{justify-content:space-between;align-items:stretch;}.s-cols-stacks_in_2175>.s-cols-item{border-radius:0px;margin-bottom:20px;width:100%;  padding:0px 0px 0px 0px;   }.s-cols-stacks_in_2175>.s-cols-item:hover{ }@media (min-width:600px){.s-cols-stacks_in_2175>.s-cols-item{ width:calc((100% - calc(2 * 20px)) / 3);}}@media (min-width:900px){.s-cols-stacks_in_2175>.s-cols-item{ width:calc((100% - calc(2 * 20px)) / 3);}}#stacks_out_2175{width:100%}
.item_stacks_in_2176{justify-content:flex-start;overflow:hidden;  }

#stacks_in_1636 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	margin:  5px;
	padding:  5px;
}


/* AnchorPoint CSS code */


#june2025 {
	height: 0px;
	opacity: 0;
	overflow: hidden;
}







.stacks_in_1451 .source-button{ font-size:19px;line-height:48px;border-radius:4px;padding:0 30px;border-width:1px;height:calc(48px + 2px); font-weight:bold; text-transform:none;   }#stacks_in_1451 .button-group-btn:not(:last-child) .source-button{margin-bottom:0}#stacks_in_1451 .button-group-btn:last-child .source-button{}.stacks_in_1451 .source-button,#stacks_in_1451 .s-button-group{display:block}#stacks_in_1451 .s-button-group .button-group-btn{padding-right:0!important;padding-bottom:1px}.stacks_in_1451 a{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 0, 128, 1.00);border-color:rgba(255, 255, 255, 1.00)}.stacks_in_1451 a:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(251, 2, 7, 1.00);border-color:rgba(0, 0, 0, 1.00)}#stacks_in_1451 .s-button-group{justify-content:center}#stacks_in_1451 .s-button-group .button-group-btn:not(:last-child){padding-right:1px}@media only screen and (max-width:0px){#stacks_in_1451 .s-button-group .button-group-btn{padding-right:0!important;padding-left:0}}#stacks_in_1451 .s-button-group .button-group-btn{padding-bottom:1px}
/*
1.0.4.6
- new option to use warehoused image for header image
- added new option to contain the header image instead of cover and crop
- add new header image bg color that shows when containing an image
- added settings to change font sizes
- uses unique data attribute names to prevent conflicts with foundation and other frameworks
- added compatability with assemble
- mobile address bar no longer triggers resize event
*/
#stacks_in_1395.expd-card,
#stacks_in_1395.expd-card * {
  box-sizing: border-box;
}

#stacks_in_1395 .expd-truncate {
  position: relative;
  display: inline-block;
  width: 100%;
}

 #stacks_in_1395.expd-card .click-all {
  height: 100%;
}

  #stacks_in_1395.expd-card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
     background: -moz-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  bottom: 0px;
   pointer-events: none;
}

#stacks_in_1395.expd-card.expd-active:after {
  display: none;
}

 #stacks_in_1395_wrap.wrap-expd-card {
   width: 410px;
  height: 450px;
   margin: 20px auto;
  max-width: 100%;
  position: relative;
}

#stacks_in_1395.expd-card.fadeIn {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

#stacks_in_1395.expd-card {
  font-family: inherit;
  text-align: left;
  will-change: top, left, right, bottom;
    color: rgba(103, 103, 103, 1.00);
     background: rgba(255, 255, 255, 1.00);
    height: 450px;
  width: 410px;
  visibility: hidden;
   border: 0px solid #ccc;
  overflow: hidden;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  border-radius: 0px;
   
}

 #stacks_in_1395.expd-card * {
  pointer-events: none;
}

#stacks_in_1395.expd-card .expd-open,
#stacks_in_1395.expd-card [data-expanse-open='1'],
#stacks_in_1395.expd-card.expd-active * {
  pointer-events: all;
}

 #stacks_in_1395.expd-card h1,
#stacks_in_1395.expd-card h2,
#stacks_in_1395.expd-card h3,
#stacks_in_1395.expd-card h4,
#stacks_in_1395.expd-card h5,
#stacks_in_1395.expd-card h6 {
  font-family: inherit;
}

#stacks_in_1395.expd-card.expd-active {
  position: fixed;
  z-index: 99;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: calc(100vw - 0px);
  height: calc(100vh - 0px);
  overflow: scroll;
  overflow-x: hidden;
  border: 0px solid transparent;
  box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.4);
   border-radius: 0px;
   -webkit-transform-origin: center center;
  transform-origin: center center;
  margin: 0;
  transform: scale(1);
}

#stacks_in_1395.expd-card [data-expanse-close='1'] {
  display: none;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_1395.expd-card [data-expanse-open='1'] {
  display: block;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_1395.expd-card .expd-card-button {
  background: #CCCCCC;
  color: #676767;
   background: rgba(96, 53, 148, 1.00);
  color: rgba(255, 255, 255, 1.00);
   display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, .2);
  transition: 300ms all linear;
  cursor: pointer;
}

#stacks_in_1395.expd-card .expd-card-button[data-expanse-open='1'] {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 4px;
}

#stacks_in_1395.expd-card .expd-card-button:hover,
#stacks_in_1395.expd-card .expd-card-button[data-expanse-open='1']:hover {
  opacity: .8;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
}

#stacks_in_1395.expd-card .expd-card-body-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.fixed-closestacks_in_1395 {
  display: block;
  pointer-events: none;
  transition: opacity 300ms linear;
  
  transition-delay: 300ms;
  
  opacity: 0;
  cursor: pointer;
  z-index: 200;
  position: fixed;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
    color: rgba(103, 103, 103, 1.00);
     background: rgba(255, 255, 255, 1.00);
   border-radius: 4px;
}
.expd-body .fixed-closestacks_in_1395 {
  pointer-events: all;
  
}

#stacks_in_1395.expd-card .expd-card-body-wrap .expd-card-img {
  height: 0px;
  padding-bottom: 56.25%;
  background-color: #bbb;
  background-size: cover;
  background-position: center center;
  
  background-image: url();
  
  
}

#stacks_in_1395.expd-card .expd-card-body-wrap .expd-card-content {
  padding: 18px 16px;
  position: relative;
  perspective: 1200;
}

#stacks_in_1395.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  padding: 20px 20px;
}

#stacks_in_1395.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  position: absolute;
  cursor: pointer;
  height: 40px;
  width: 40px;
  background: rgba(88, 236, 88, 1.00);
  right: 20px;
  top: -20px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
  text-align: center;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  transition: all ease 300ms;
}

#stacks_in_1395.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:hover {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.3);
}

#stacks_in_1395.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:active {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.6);
  transition: all ease 100ms;
}

#stacks_in_1395.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa {
  line-height: 34px;
  position: absolute;
  width: 34px;
  height: 34px;
  font-size: 24px;
  top: 0;
  left: 0;
  text-align: center;
}

#stacks_in_1395.expd-card .expd-card-body-wrap .expd-card-content {
  font-size: 12px;
  line-height: 16px;
}

#stacks_in_1395.expd-card .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  color: rgba(66, 66, 66, 1.00);
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}

#stacks_in_1395.expd-card .expd-card-body-wrap .expd-card-content .expd-heading strong {
  color: rgba(88, 88, 88, 1.00);
  font-size: 14px;
  line-height: 16px;
  display: block;
  margin-bottom: 5px;
}

#stacks_in_1395.expd-card .expd-card-body-wrap .expd-card-content p {
  margin: 10px 0px;
}

#stacks_in_1395.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  font-size: 16px;
  line-height: 22px;
}

#stacks_in_1395.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  font-size: 26px;
  line-height: 32px;
}

#stacks_in_1395.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading strong {
  font-size: 20px;
  line-height: 22px;
  margin: 5px 0px 20px 0px;
}

.expd-body {
  overflow: hidden;
}

#stacks_in_1395.expd-card.expd-pre-anim {
  position: fixed;
  z-index: 99;
}

#stacks_in_1395.expd-card.expd-active [data-expanse-close='1'] {
  display: inline-block;
}

#stacks_in_1395.expd-card.expd-active .expd-open[data-expanse-open='1'] {
  display: block;
  cursor: auto;
}

#stacks_in_1395.expd-card.expd-active .expd-card-button[data-expanse-open='1'] {
  display: none;
}

#stacks_in_1395.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  background: rgba(236, 88, 88, 1.00);
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
}

#stacks_in_1395.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  line-height: 34px;
}

#stacks_in_1395.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  content: "\f00d";
}

   @media all and (max-width: 600px) {
  #stacks_in_1395.expd-card.expd-active {
    top: 0.000000px;
    bottom: 0.000000px;
    left: 0.000000px;
    right: 0.000000px;
    width: calc(100vw - 0.000000px);
    height: calc(100vh - 0.000000px);
  }
}


#shady_stack_stacks_in_1396 {
	max-width: none;
	
  margin: 0 auto;
  
}

#shady_stack_shadow_stacks_in_1396 {
	box-shadow:  0rem 0rem 0.8rem 0.4rem rgba(153, 153, 153, 1.00);
	border-radius: 0rem;
	overflow: hidden;
	padding: 1.0rem;
	margin: 1.0rem;
	border: none 0.10rem rgba(51, 51, 51, 1.00);
}

@media print {
	#shady_stack_shadow_stacks_in_1396 {
		margin: 0;
		padding: 0;
		box-shadow: none;
		border-radius: 0px;
	}
}

#stacks_in_1400 {
	margin:  20px;
}
#stacks_in_1405 *,
#stacks_in_1405 *:before,
#stacks_in_1405 *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

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

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

#pro_gallery_thumbnails_stacks_in_1405 .hidden_pro_gallery_item {
  display: none;
}










#pro_gallery_thumbnails_stacks_in_1405 {
  display: grid;
  grid-column-gap: 1.50rem;
  grid-row-gap: 1.50rem;
  
}

@media (min-width: 0px) {
  #pro_gallery_thumbnails_stacks_in_1405 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 576px) {
  #pro_gallery_thumbnails_stacks_in_1405 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 992px) {
  #pro_gallery_thumbnails_stacks_in_1405 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  #pro_gallery_thumbnails_stacks_in_1405 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1400px) {
  #pro_gallery_thumbnails_stacks_in_1405 {
    grid-template-columns: repeat(3, 1fr);
  }
}








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

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






/* Overlay captions */
#pro_gallery_thumbnails_stacks_in_1405 .pro_gallery_item_content {
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  padding: 0.50rem;
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(0, 0, 0, 0.80);
  
  
}

#pro_gallery_thumbnails_stacks_in_1405 .pro_gallery_item_content a,
#pro_gallery_thumbnails_stacks_in_1405 .pro_gallery_item_content button {
  pointer-events: auto;
}








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


#pro_gallery_thumbnails_stacks_in_1405 .pro_gallery_item_link {
  display: inline-block;
  position: relative;
  overflow: visible;
  outline: none;
}

#pro_gallery_thumbnails_stacks_in_1405 .pro_gallery_item_link:focus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0.30rem solid rgba(0, 150, 255, 1.00);
  z-index: 1;
  pointer-events: none;
}


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

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

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

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

@media (min-width: 768px) {
  #pro_gallery_toolbar_stacks_in_1405 {
    flex-direction: row;
    justify-content: space-around;
  }
}

#pro_gallery_live_search_stacks_in_1405,
#pro_gallery_tag_menu_stacks_in_1405,
#pro_gallery_sort_stacks_in_1405 {
  width: 100%;
}

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

#progallery_live_search_box_stacks_in_1405,
#pro_gallery_tag_select_stacks_in_1405,
#pro_gallery_sort_select_stacks_in_1405,
#pro_gallery_pagination_select_stacks_in_1405 {
  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(255, 255, 255, 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_1405,
#pro_gallery_sort_select_stacks_in_1405,
#pro_gallery_pagination_select_stacks_in_1405 {
  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_1405:focus,
#pro_gallery_tag_select_stacks_in_1405:focus,
#pro_gallery_sort_select_stacks_in_1405:focus,
#pro_gallery_pagination_select_stacks_in_1405:focus {
  outline: none;
  border-color: rgba(51, 51, 51, 1.00);
  background-color: rgba(245, 245, 245, 1.00);
  color: rgba(255, 255, 255, 1.00);
}

#pro_gallery_live_search_content_stacks_in_1405 {
  position: relative;
}

#progallery_live_search_box_stacks_in_1405 {
  padding-right: 30px;
}

#pro_gallery_live_search_reset_stacks_in_1405 {
  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_1405 svg {
  pointer-events: none;
  width: 25px;
  height: auto;
}

#pro_gallery_live_search_reset_stacks_in_1405:focus {
  outline: none;
}

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

@media (prefers-color-scheme: dark) {
  #progallery_live_search_box_stacks_in_1405,
  #pro_gallery_tag_select_stacks_in_1405,
  #pro_gallery_sort_select_stacks_in_1405,
  #pro_gallery_pagination_select_stacks_in_1405 {
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(192, 192, 192, 1.00);
    color: rgba(255, 255, 255, 1.00);
    caret-color: rgba(51, 51, 51, 1.00);
  }
  
  #progallery_live_search_box_stacks_in_1405:focus,
  #pro_gallery_tag_select_stacks_in_1405:focus,
  #pro_gallery_sort_select_stacks_in_1405:focus,
  #pro_gallery_pagination_select_stacks_in_1405:focus {
    border-color: rgba(51, 51, 51, 1.00);
    background-color: rgba(245, 245, 245, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

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

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

  

  

  
}

/* Image Counters */



/* Blackout */

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

#pro_gallery_thumbnails_stacks_in_1405 .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_1405 .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_1405 .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_1405 .pro_gallery_hide svg {
    width: auto;
    height: 1.25rem;
}

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

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

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

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

#pro_gallery_thumbnails_stacks_in_1405 li.blackout.reveal .pro_gallery_hide,
#pro_gallery_thumbnails_stacks_in_1405 li.blackout.reveal .pro_gallery_lightbox_trigger,
#pro_gallery_thumbnails_stacks_in_1405 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__bg {
  background: #000000;
}

.pswp__top-bar {
  background-color: rgba(0, 0, 128, 1.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: #FFFFFF;
}

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

.pswp__img {
  border: 0.00rem solid #FFFFFF;
  border-radius: 0.00rem;
  padding: 0.00rem;
}

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


.pswp__dynamic-caption--below {
  left: auto !important;
  width: 100% !important;	
  max-width: none !important;
}

.pswp__dynamic-caption--below > div {
  max-width: 40rem;
  margin: auto;	
}


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

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

.pswp__dynamic-caption {
  background-color: rgba(0, 0, 0, 0.00);
}

.pswp__dynamic-caption,
.pswp__dynamic-caption p,
.pswp__dynamic-caption strong {
  color: rgba(234, 234, 234, 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(255, 255, 255, 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(192, 192, 192, 1.00);
}

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

.pswp__dynamic-caption--mobile p,
.pswp__dynamic-caption--mobile strong {
  color: rgba(234, 234, 234, 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(255, 255, 255, 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(192, 192, 192, 1.00);
}

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

#p-stacks_in_1407 p{    }#p-stacks_in_1407 p.lead{}#p-stacks_in_1407 a{color:var(--link-color);}#p-stacks_in_1407 a:hover{color:var(--link-color-hover); }
#p-stacks_in_1411 p{    }#p-stacks_in_1411 p.lead{}#p-stacks_in_1411 a{color:var(--link-color);}#p-stacks_in_1411 a:hover{color:var(--link-color-hover); }
#p-stacks_in_1415 p{    }#p-stacks_in_1415 p.lead{}#p-stacks_in_1415 a{color:var(--link-color);}#p-stacks_in_1415 a:hover{color:var(--link-color-hover); }
#p-stacks_in_1428 p{    }#p-stacks_in_1428 p.lead{}#p-stacks_in_1428 a{color:var(--link-color);}#p-stacks_in_1428 a:hover{color:var(--link-color-hover); }
#p-stacks_in_1432 p{    }#p-stacks_in_1432 p.lead{}#p-stacks_in_1432 a{color:var(--link-color);}#p-stacks_in_1432 a:hover{color:var(--link-color-hover); }
#p-stacks_in_1436 p{    }#p-stacks_in_1436 p.lead{}#p-stacks_in_1436 a{color:var(--link-color);}#p-stacks_in_1436 a:hover{color:var(--link-color-hover); }
#p-stacks_in_710 p{    }#p-stacks_in_710 p.lead{}#p-stacks_in_710 a{color:var(--link-color);}#p-stacks_in_710 a:hover{color:var(--link-color-hover); }
.item_stacks_in_2183{justify-content:flex-start;overflow:hidden;  }

#stacks_in_1638 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	margin:  5px;
	padding:  5px;
}


/* AnchorPoint CSS code */


#may2025 {
	height: 0px;
	opacity: 0;
	overflow: hidden;
}







.stacks_in_1455 .source-button{ font-size:19px;line-height:48px;border-radius:4px;padding:0 30px;border-width:1px;height:calc(48px + 2px); font-weight:bold; text-transform:none;   }#stacks_in_1455 .button-group-btn:not(:last-child) .source-button{margin-bottom:0}#stacks_in_1455 .button-group-btn:last-child .source-button{}.stacks_in_1455 .source-button,#stacks_in_1455 .s-button-group{display:block}#stacks_in_1455 .s-button-group .button-group-btn{padding-right:0!important;padding-bottom:1px}.stacks_in_1455 a{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 0, 128, 1.00);border-color:rgba(255, 255, 255, 1.00)}.stacks_in_1455 a:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(251, 2, 7, 1.00);border-color:rgba(0, 0, 0, 1.00)}#stacks_in_1455 .s-button-group{justify-content:center}#stacks_in_1455 .s-button-group .button-group-btn:not(:last-child){padding-right:1px}@media only screen and (max-width:0px){#stacks_in_1455 .s-button-group .button-group-btn{padding-right:0!important;padding-left:0}}#stacks_in_1455 .s-button-group .button-group-btn{padding-bottom:1px}
/*
1.0.4.6
- new option to use warehoused image for header image
- added new option to contain the header image instead of cover and crop
- add new header image bg color that shows when containing an image
- added settings to change font sizes
- uses unique data attribute names to prevent conflicts with foundation and other frameworks
- added compatability with assemble
- mobile address bar no longer triggers resize event
*/
#stacks_in_1459.expd-card,
#stacks_in_1459.expd-card * {
  box-sizing: border-box;
}

#stacks_in_1459 .expd-truncate {
  position: relative;
  display: inline-block;
  width: 100%;
}

 #stacks_in_1459.expd-card .click-all {
  height: 100%;
}

  #stacks_in_1459.expd-card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
     background: -moz-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  bottom: 0px;
   pointer-events: none;
}

#stacks_in_1459.expd-card.expd-active:after {
  display: none;
}

 #stacks_in_1459_wrap.wrap-expd-card {
   width: 410px;
  height: 450px;
   margin: 20px auto;
  max-width: 100%;
  position: relative;
}

#stacks_in_1459.expd-card.fadeIn {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

#stacks_in_1459.expd-card {
  font-family: inherit;
  text-align: left;
  will-change: top, left, right, bottom;
    color: rgba(103, 103, 103, 1.00);
     background: rgba(255, 255, 255, 1.00);
    height: 450px;
  width: 410px;
  visibility: hidden;
   border: 0px solid #ccc;
  overflow: hidden;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  border-radius: 0px;
   
}

 #stacks_in_1459.expd-card * {
  pointer-events: none;
}

#stacks_in_1459.expd-card .expd-open,
#stacks_in_1459.expd-card [data-expanse-open='1'],
#stacks_in_1459.expd-card.expd-active * {
  pointer-events: all;
}

 #stacks_in_1459.expd-card h1,
#stacks_in_1459.expd-card h2,
#stacks_in_1459.expd-card h3,
#stacks_in_1459.expd-card h4,
#stacks_in_1459.expd-card h5,
#stacks_in_1459.expd-card h6 {
  font-family: inherit;
}

#stacks_in_1459.expd-card.expd-active {
  position: fixed;
  z-index: 99;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: calc(100vw - 0px);
  height: calc(100vh - 0px);
  overflow: scroll;
  overflow-x: hidden;
  border: 0px solid transparent;
  box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.4);
   border-radius: 0px;
   -webkit-transform-origin: center center;
  transform-origin: center center;
  margin: 0;
  transform: scale(1);
}

#stacks_in_1459.expd-card [data-expanse-close='1'] {
  display: none;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_1459.expd-card [data-expanse-open='1'] {
  display: block;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_1459.expd-card .expd-card-button {
  background: #CCCCCC;
  color: #676767;
   background: rgba(96, 53, 148, 1.00);
  color: rgba(255, 255, 255, 1.00);
   display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, .2);
  transition: 300ms all linear;
  cursor: pointer;
}

#stacks_in_1459.expd-card .expd-card-button[data-expanse-open='1'] {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 4px;
}

#stacks_in_1459.expd-card .expd-card-button:hover,
#stacks_in_1459.expd-card .expd-card-button[data-expanse-open='1']:hover {
  opacity: .8;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
}

#stacks_in_1459.expd-card .expd-card-body-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.fixed-closestacks_in_1459 {
  display: block;
  pointer-events: none;
  transition: opacity 300ms linear;
  
  transition-delay: 300ms;
  
  opacity: 0;
  cursor: pointer;
  z-index: 200;
  position: fixed;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
    color: rgba(103, 103, 103, 1.00);
     background: rgba(255, 255, 255, 1.00);
   border-radius: 4px;
}
.expd-body .fixed-closestacks_in_1459 {
  pointer-events: all;
  
}

#stacks_in_1459.expd-card .expd-card-body-wrap .expd-card-img {
  height: 0px;
  padding-bottom: 56.25%;
  background-color: #bbb;
  background-size: cover;
  background-position: center center;
  
  background-image: url();
  
  
}

#stacks_in_1459.expd-card .expd-card-body-wrap .expd-card-content {
  padding: 18px 16px;
  position: relative;
  perspective: 1200;
}

#stacks_in_1459.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  padding: 20px 20px;
}

#stacks_in_1459.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  position: absolute;
  cursor: pointer;
  height: 40px;
  width: 40px;
  background: rgba(88, 236, 88, 1.00);
  right: 20px;
  top: -20px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
  text-align: center;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  transition: all ease 300ms;
}

#stacks_in_1459.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:hover {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.3);
}

#stacks_in_1459.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:active {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.6);
  transition: all ease 100ms;
}

#stacks_in_1459.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa {
  line-height: 34px;
  position: absolute;
  width: 34px;
  height: 34px;
  font-size: 24px;
  top: 0;
  left: 0;
  text-align: center;
}

#stacks_in_1459.expd-card .expd-card-body-wrap .expd-card-content {
  font-size: 12px;
  line-height: 16px;
}

#stacks_in_1459.expd-card .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  color: rgba(66, 66, 66, 1.00);
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}

#stacks_in_1459.expd-card .expd-card-body-wrap .expd-card-content .expd-heading strong {
  color: rgba(88, 88, 88, 1.00);
  font-size: 14px;
  line-height: 16px;
  display: block;
  margin-bottom: 5px;
}

#stacks_in_1459.expd-card .expd-card-body-wrap .expd-card-content p {
  margin: 10px 0px;
}

#stacks_in_1459.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  font-size: 16px;
  line-height: 22px;
}

#stacks_in_1459.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  font-size: 26px;
  line-height: 32px;
}

#stacks_in_1459.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading strong {
  font-size: 20px;
  line-height: 22px;
  margin: 5px 0px 20px 0px;
}

.expd-body {
  overflow: hidden;
}

#stacks_in_1459.expd-card.expd-pre-anim {
  position: fixed;
  z-index: 99;
}

#stacks_in_1459.expd-card.expd-active [data-expanse-close='1'] {
  display: inline-block;
}

#stacks_in_1459.expd-card.expd-active .expd-open[data-expanse-open='1'] {
  display: block;
  cursor: auto;
}

#stacks_in_1459.expd-card.expd-active .expd-card-button[data-expanse-open='1'] {
  display: none;
}

#stacks_in_1459.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  background: rgba(236, 88, 88, 1.00);
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
}

#stacks_in_1459.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  line-height: 34px;
}

#stacks_in_1459.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  content: "\f00d";
}

   @media all and (max-width: 600px) {
  #stacks_in_1459.expd-card.expd-active {
    top: 0.000000px;
    bottom: 0.000000px;
    left: 0.000000px;
    right: 0.000000px;
    width: calc(100vw - 0.000000px);
    height: calc(100vh - 0.000000px);
  }
}


#shady_stack_stacks_in_1460 {
	max-width: none;
	
  margin: 0 auto;
  
}

#shady_stack_shadow_stacks_in_1460 {
	box-shadow:  0rem 0rem 0.8rem 0.4rem rgba(153, 153, 153, 1.00);
	border-radius: 0rem;
	overflow: hidden;
	padding: 1.0rem;
	margin: 1.0rem;
	border: none 0.10rem rgba(51, 51, 51, 1.00);
}

@media print {
	#shady_stack_shadow_stacks_in_1460 {
		margin: 0;
		padding: 0;
		box-shadow: none;
		border-radius: 0px;
	}
}

#stacks_in_1464 {
	margin:  20px;
}
#stacks_in_1468 *,
#stacks_in_1468 *:before,
#stacks_in_1468 *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

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

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

#pro_gallery_thumbnails_stacks_in_1468 .hidden_pro_gallery_item {
  display: none;
}










#pro_gallery_thumbnails_stacks_in_1468 {
  display: grid;
  grid-column-gap: 1.50rem;
  grid-row-gap: 1.50rem;
  
}

@media (min-width: 0px) {
  #pro_gallery_thumbnails_stacks_in_1468 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 576px) {
  #pro_gallery_thumbnails_stacks_in_1468 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 992px) {
  #pro_gallery_thumbnails_stacks_in_1468 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  #pro_gallery_thumbnails_stacks_in_1468 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1400px) {
  #pro_gallery_thumbnails_stacks_in_1468 {
    grid-template-columns: repeat(3, 1fr);
  }
}








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

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






/* Overlay captions */
#pro_gallery_thumbnails_stacks_in_1468 .pro_gallery_item_content {
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  padding: 0.50rem;
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(0, 0, 0, 0.80);
  
  
}

#pro_gallery_thumbnails_stacks_in_1468 .pro_gallery_item_content a,
#pro_gallery_thumbnails_stacks_in_1468 .pro_gallery_item_content button {
  pointer-events: auto;
}








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


#pro_gallery_thumbnails_stacks_in_1468 .pro_gallery_item_link {
  display: inline-block;
  position: relative;
  overflow: visible;
  outline: none;
}

#pro_gallery_thumbnails_stacks_in_1468 .pro_gallery_item_link:focus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0.30rem solid rgba(0, 150, 255, 1.00);
  z-index: 1;
  pointer-events: none;
}


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

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

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

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

@media (min-width: 768px) {
  #pro_gallery_toolbar_stacks_in_1468 {
    flex-direction: row;
    justify-content: space-around;
  }
}

#pro_gallery_live_search_stacks_in_1468,
#pro_gallery_tag_menu_stacks_in_1468,
#pro_gallery_sort_stacks_in_1468 {
  width: 100%;
}

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

#progallery_live_search_box_stacks_in_1468,
#pro_gallery_tag_select_stacks_in_1468,
#pro_gallery_sort_select_stacks_in_1468,
#pro_gallery_pagination_select_stacks_in_1468 {
  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(255, 255, 255, 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_1468,
#pro_gallery_sort_select_stacks_in_1468,
#pro_gallery_pagination_select_stacks_in_1468 {
  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_1468:focus,
#pro_gallery_tag_select_stacks_in_1468:focus,
#pro_gallery_sort_select_stacks_in_1468:focus,
#pro_gallery_pagination_select_stacks_in_1468:focus {
  outline: none;
  border-color: rgba(51, 51, 51, 1.00);
  background-color: rgba(245, 245, 245, 1.00);
  color: rgba(255, 255, 255, 1.00);
}

#pro_gallery_live_search_content_stacks_in_1468 {
  position: relative;
}

#progallery_live_search_box_stacks_in_1468 {
  padding-right: 30px;
}

#pro_gallery_live_search_reset_stacks_in_1468 {
  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_1468 svg {
  pointer-events: none;
  width: 25px;
  height: auto;
}

#pro_gallery_live_search_reset_stacks_in_1468:focus {
  outline: none;
}

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

@media (prefers-color-scheme: dark) {
  #progallery_live_search_box_stacks_in_1468,
  #pro_gallery_tag_select_stacks_in_1468,
  #pro_gallery_sort_select_stacks_in_1468,
  #pro_gallery_pagination_select_stacks_in_1468 {
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(192, 192, 192, 1.00);
    color: rgba(255, 255, 255, 1.00);
    caret-color: rgba(51, 51, 51, 1.00);
  }
  
  #progallery_live_search_box_stacks_in_1468:focus,
  #pro_gallery_tag_select_stacks_in_1468:focus,
  #pro_gallery_sort_select_stacks_in_1468:focus,
  #pro_gallery_pagination_select_stacks_in_1468:focus {
    border-color: rgba(51, 51, 51, 1.00);
    background-color: rgba(245, 245, 245, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

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

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

  

  

  
}

/* Image Counters */



/* Blackout */

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

#pro_gallery_thumbnails_stacks_in_1468 .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_1468 .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_1468 .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_1468 .pro_gallery_hide svg {
    width: auto;
    height: 1.25rem;
}

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

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

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

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

#pro_gallery_thumbnails_stacks_in_1468 li.blackout.reveal .pro_gallery_hide,
#pro_gallery_thumbnails_stacks_in_1468 li.blackout.reveal .pro_gallery_lightbox_trigger,
#pro_gallery_thumbnails_stacks_in_1468 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__bg {
  background: #000000;
}

.pswp__top-bar {
  background-color: rgba(0, 0, 128, 1.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: #FFFFFF;
}

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

.pswp__img {
  border: 0.00rem solid #FFFFFF;
  border-radius: 0.00rem;
  padding: 0.00rem;
}

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


.pswp__dynamic-caption--below {
  left: auto !important;
  width: 100% !important;	
  max-width: none !important;
}

.pswp__dynamic-caption--below > div {
  max-width: 40rem;
  margin: auto;	
}


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

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

.pswp__dynamic-caption {
  background-color: rgba(0, 0, 0, 0.00);
}

.pswp__dynamic-caption,
.pswp__dynamic-caption p,
.pswp__dynamic-caption strong {
  color: rgba(234, 234, 234, 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(255, 255, 255, 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(192, 192, 192, 1.00);
}

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

.pswp__dynamic-caption--mobile p,
.pswp__dynamic-caption--mobile strong {
  color: rgba(234, 234, 234, 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(255, 255, 255, 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(192, 192, 192, 1.00);
}

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

#p-stacks_in_1470 p{    }#p-stacks_in_1470 p.lead{}#p-stacks_in_1470 a{color:var(--link-color);}#p-stacks_in_1470 a:hover{color:var(--link-color-hover); }
#p-stacks_in_1474 p{    }#p-stacks_in_1474 p.lead{}#p-stacks_in_1474 a{color:var(--link-color);}#p-stacks_in_1474 a:hover{color:var(--link-color-hover); }
#p-stacks_in_1478 p{    }#p-stacks_in_1478 p.lead{}#p-stacks_in_1478 a{color:var(--link-color);}#p-stacks_in_1478 a:hover{color:var(--link-color-hover); }
#p-stacks_in_1482 p{    }#p-stacks_in_1482 p.lead{}#p-stacks_in_1482 a{color:var(--link-color);}#p-stacks_in_1482 a:hover{color:var(--link-color-hover); }
#p-stacks_in_1486 p{    }#p-stacks_in_1486 p.lead{}#p-stacks_in_1486 a{color:var(--link-color);}#p-stacks_in_1486 a:hover{color:var(--link-color-hover); }
#p-stacks_in_1490 p{    }#p-stacks_in_1490 p.lead{}#p-stacks_in_1490 a{color:var(--link-color);}#p-stacks_in_1490 a:hover{color:var(--link-color-hover); }
#p-stacks_in_1521 p{    }#p-stacks_in_1521 p.lead{}#p-stacks_in_1521 a{color:var(--link-color);}#p-stacks_in_1521 a:hover{color:var(--link-color-hover); }
.item_stacks_in_2426{justify-content:flex-start;overflow:hidden;  }

#stacks_in_2427 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	margin:  5px;
	padding:  5px;
}


/* AnchorPoint CSS code */


#apr2025 {
	height: 0px;
	opacity: 0;
	overflow: hidden;
}







.stacks_in_2430 .source-button{ font-size:19px;line-height:48px;border-radius:4px;padding:0 30px;border-width:1px;height:calc(48px + 2px); font-weight:bold; text-transform:none;   }#stacks_in_2430 .button-group-btn:not(:last-child) .source-button{margin-bottom:0}#stacks_in_2430 .button-group-btn:last-child .source-button{}.stacks_in_2430 .source-button,#stacks_in_2430 .s-button-group{display:block}#stacks_in_2430 .s-button-group .button-group-btn{padding-right:0!important;padding-bottom:1px}.stacks_in_2430 a{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 0, 128, 1.00);border-color:rgba(255, 255, 255, 1.00)}.stacks_in_2430 a:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(251, 2, 7, 1.00);border-color:rgba(0, 0, 0, 1.00)}#stacks_in_2430 .s-button-group{justify-content:center}#stacks_in_2430 .s-button-group .button-group-btn:not(:last-child){padding-right:1px}@media only screen and (max-width:0px){#stacks_in_2430 .s-button-group .button-group-btn{padding-right:0!important;padding-left:0}}#stacks_in_2430 .s-button-group .button-group-btn{padding-bottom:1px}
/*
1.0.4.6
- new option to use warehoused image for header image
- added new option to contain the header image instead of cover and crop
- add new header image bg color that shows when containing an image
- added settings to change font sizes
- uses unique data attribute names to prevent conflicts with foundation and other frameworks
- added compatability with assemble
- mobile address bar no longer triggers resize event
*/
#stacks_in_2432.expd-card,
#stacks_in_2432.expd-card * {
  box-sizing: border-box;
}

#stacks_in_2432 .expd-truncate {
  position: relative;
  display: inline-block;
  width: 100%;
}

 #stacks_in_2432.expd-card .click-all {
  height: 100%;
}

  #stacks_in_2432.expd-card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
     background: -moz-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  bottom: 0px;
   pointer-events: none;
}

#stacks_in_2432.expd-card.expd-active:after {
  display: none;
}

 #stacks_in_2432_wrap.wrap-expd-card {
   width: 410px;
  height: 450px;
   margin: 20px auto;
  max-width: 100%;
  position: relative;
}

#stacks_in_2432.expd-card.fadeIn {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

#stacks_in_2432.expd-card {
  font-family: inherit;
  text-align: left;
  will-change: top, left, right, bottom;
    color: rgba(103, 103, 103, 1.00);
     background: rgba(255, 255, 255, 1.00);
    height: 450px;
  width: 410px;
  visibility: hidden;
   border: 0px solid #ccc;
  overflow: hidden;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  border-radius: 0px;
   
}

 #stacks_in_2432.expd-card * {
  pointer-events: none;
}

#stacks_in_2432.expd-card .expd-open,
#stacks_in_2432.expd-card [data-expanse-open='1'],
#stacks_in_2432.expd-card.expd-active * {
  pointer-events: all;
}

 #stacks_in_2432.expd-card h1,
#stacks_in_2432.expd-card h2,
#stacks_in_2432.expd-card h3,
#stacks_in_2432.expd-card h4,
#stacks_in_2432.expd-card h5,
#stacks_in_2432.expd-card h6 {
  font-family: inherit;
}

#stacks_in_2432.expd-card.expd-active {
  position: fixed;
  z-index: 99;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: calc(100vw - 0px);
  height: calc(100vh - 0px);
  overflow: scroll;
  overflow-x: hidden;
  border: 0px solid transparent;
  box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.4);
   border-radius: 0px;
   -webkit-transform-origin: center center;
  transform-origin: center center;
  margin: 0;
  transform: scale(1);
}

#stacks_in_2432.expd-card [data-expanse-close='1'] {
  display: none;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_2432.expd-card [data-expanse-open='1'] {
  display: block;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_2432.expd-card .expd-card-button {
  background: #CCCCCC;
  color: #676767;
   background: rgba(96, 53, 148, 1.00);
  color: rgba(255, 255, 255, 1.00);
   display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, .2);
  transition: 300ms all linear;
  cursor: pointer;
}

#stacks_in_2432.expd-card .expd-card-button[data-expanse-open='1'] {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 4px;
}

#stacks_in_2432.expd-card .expd-card-button:hover,
#stacks_in_2432.expd-card .expd-card-button[data-expanse-open='1']:hover {
  opacity: .8;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
}

#stacks_in_2432.expd-card .expd-card-body-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.fixed-closestacks_in_2432 {
  display: block;
  pointer-events: none;
  transition: opacity 300ms linear;
  
  transition-delay: 300ms;
  
  opacity: 0;
  cursor: pointer;
  z-index: 200;
  position: fixed;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
    color: rgba(103, 103, 103, 1.00);
     background: rgba(255, 255, 255, 1.00);
   border-radius: 4px;
}
.expd-body .fixed-closestacks_in_2432 {
  pointer-events: all;
  
}

#stacks_in_2432.expd-card .expd-card-body-wrap .expd-card-img {
  height: 0px;
  padding-bottom: 56.25%;
  background-color: #bbb;
  background-size: cover;
  background-position: center center;
  
  background-image: url();
  
  
}

#stacks_in_2432.expd-card .expd-card-body-wrap .expd-card-content {
  padding: 18px 16px;
  position: relative;
  perspective: 1200;
}

#stacks_in_2432.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  padding: 20px 20px;
}

#stacks_in_2432.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  position: absolute;
  cursor: pointer;
  height: 40px;
  width: 40px;
  background: rgba(88, 236, 88, 1.00);
  right: 20px;
  top: -20px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
  text-align: center;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  transition: all ease 300ms;
}

#stacks_in_2432.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:hover {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.3);
}

#stacks_in_2432.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:active {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.6);
  transition: all ease 100ms;
}

#stacks_in_2432.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa {
  line-height: 34px;
  position: absolute;
  width: 34px;
  height: 34px;
  font-size: 24px;
  top: 0;
  left: 0;
  text-align: center;
}

#stacks_in_2432.expd-card .expd-card-body-wrap .expd-card-content {
  font-size: 12px;
  line-height: 16px;
}

#stacks_in_2432.expd-card .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  color: rgba(66, 66, 66, 1.00);
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}

#stacks_in_2432.expd-card .expd-card-body-wrap .expd-card-content .expd-heading strong {
  color: rgba(88, 88, 88, 1.00);
  font-size: 14px;
  line-height: 16px;
  display: block;
  margin-bottom: 5px;
}

#stacks_in_2432.expd-card .expd-card-body-wrap .expd-card-content p {
  margin: 10px 0px;
}

#stacks_in_2432.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  font-size: 16px;
  line-height: 22px;
}

#stacks_in_2432.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  font-size: 26px;
  line-height: 32px;
}

#stacks_in_2432.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading strong {
  font-size: 20px;
  line-height: 22px;
  margin: 5px 0px 20px 0px;
}

.expd-body {
  overflow: hidden;
}

#stacks_in_2432.expd-card.expd-pre-anim {
  position: fixed;
  z-index: 99;
}

#stacks_in_2432.expd-card.expd-active [data-expanse-close='1'] {
  display: inline-block;
}

#stacks_in_2432.expd-card.expd-active .expd-open[data-expanse-open='1'] {
  display: block;
  cursor: auto;
}

#stacks_in_2432.expd-card.expd-active .expd-card-button[data-expanse-open='1'] {
  display: none;
}

#stacks_in_2432.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  background: rgba(236, 88, 88, 1.00);
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
}

#stacks_in_2432.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  line-height: 34px;
}

#stacks_in_2432.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  content: "\f00d";
}

   @media all and (max-width: 600px) {
  #stacks_in_2432.expd-card.expd-active {
    top: 0.000000px;
    bottom: 0.000000px;
    left: 0.000000px;
    right: 0.000000px;
    width: calc(100vw - 0.000000px);
    height: calc(100vh - 0.000000px);
  }
}


#shady_stack_stacks_in_1560 {
	max-width: none;
	
  margin: 0 auto;
  
}

#shady_stack_shadow_stacks_in_1560 {
	box-shadow:  0rem 0rem 0.8rem 0.4rem rgba(153, 153, 153, 1.00);
	border-radius: 0rem;
	overflow: hidden;
	padding: 1.0rem;
	margin: 1.0rem;
	border: none 0.10rem rgba(51, 51, 51, 1.00);
}

@media print {
	#shady_stack_shadow_stacks_in_1560 {
		margin: 0;
		padding: 0;
		box-shadow: none;
		border-radius: 0px;
	}
}

#stacks_in_1561 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_1564 {
	margin:  20px;
}
#p-stacks_in_1565 p{    }#p-stacks_in_1565 p.lead{}#p-stacks_in_1565 a{color:var(--link-color);}#p-stacks_in_1565 a:hover{color:var(--link-color-hover); }
/* ProGallery Grid */

#april25 {
	display: block;
	width: 100%;
  %[if ]%text-align: left;%[endif]%
  %[if ]%text-align: center;%[endif]%
  %[if ]%text-align: right;%[endif]%
}

#april25 ul#proGalleryThumbsstacks_in_1568 {
	padding: 0;
	margin: 0;
	list-style: none;
}

#april25 li.proGalleryItem {
	position: relative;
	-webkit-transform: translateZ(0);
}

#april25 li .proGalleryItemInner {
  border: 0rem none rgba(234, 234, 234, 1.00);
  border-radius: 0rem;
	background-color: rgba(255, 255, 255, 1.00);
	padding: 0rem;
	position: relative;
	margin: 8px;
	
}

#april25 li.proGalleryItem a {
	display: block;
  cursor: pointer;
  margin: ;
  outline: none;
}



#april25 li.proGalleryItem img {
	max-height: 100%;
	max-width: 100%;
	width: auto;
	height: auto;
  border-radius: 0rem;
  display: block;
  border: 0rem none rgba(234, 234, 234, 1.00);
	padding: 5px;
	margin: 5px;
	
}

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


/* Captions */
#april25 .proGalleryItemTitle {
	display: block;
	transition: opacity 300ms ease-in-out;
	padding: 0rem;
	margin: 0rem;
	font-size: 1rem;
	letter-spacing: 0px;
	border-radius: 0rem;
	color: rgba(251, 2, 7, 1.00);
	line-height: 1.5;
  background: rgba(255, 255, 255, 1.00);
  font-weight: bold;
  
  
	
	
}

/* Override for caption titles */
#april25 .proGalleryItemTitle strong {
	
	font-size: 1rem;
	letter-spacing: 0px;
	color: rgba(0, 0, 255, 1.00);
	line-height: 1.5;
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
  font-weight: bold;
  
  
  
}

#april25 .proGalleryItemTitle div {
  
  color: rgba(251, 2, 7, 1.00);
  font-size: 1rem;
}

#april25.titlesBelowLeft .proGalleryItemTitle {
	text-align: left;
	opacity: 1.00;
}

#april25.titlesBelowCentre .proGalleryItemTitle {
	text-align: center;
	opacity: 1.00;
}

#april25.titlesBelowRight .proGalleryItemTitle {
	text-align: right;
	opacity: 1.00;
}

#april25.titlesHoverTopLeft .proGalleryItemTitle {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	text-align: left;
}

#april25.titlesHoverTopCentre .proGalleryItemTitle {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	text-align: center;
}

#april25.titlesTopRight .proGalleryItemTitle {
	position: absolute;
	top: 0;
	right: 0;
	text-align: right;
	opacity: 0;
}

#april25.titlesHoverMiddleLeft .proGalleryItemTitle {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	opacity: 0;
	text-align: left;
}

#april25.titlesHoverMiddleCentre .proGalleryItemTitle {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	width: 100%;
	text-align: center;
	opacity: 0;
}

#april25.titlesHoverMiddleRight .proGalleryItemTitle {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 0;
	opacity: 0;
	text-align: right;
}

#april25.titlesHoverBottomLeft .proGalleryItemTitle {
	position: absolute;
	bottom: 0;
	left: 0;
	opacity: 0;
	text-align: left;
}

#april25.titlesHoverBottomCentre .proGalleryItemTitle {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	opacity: 0;
}

#april25.titlesHoverBottomRight .proGalleryItemTitle {
	position: absolute;
	bottom: 0;
	right: 0;
	opacity: 0;
	text-align: right;
}

#april25 li:hover .proGalleryItemTitle {
	opacity: 1.00;
}

/* @end */

/* @group Special Effects */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

#april25 a img {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-backface-visibility: hidden; /* Fixes bug in Chrome, with images inside columns vanishing */
}

#april25 a:hover img {
	-webkit-transform: rotate(5deg);
	-moz-transform: rotate(5deg);
	-o-transform: rotate(5deg);
	-ms-transform: rotate(5deg);
	transform: rotate(5deg);
}

/*  */

/*  */

/*  */

/*  */

/* @end */





#stacks_in_1568 {
	margin:  2px;
	padding:  2px;
}

/* ProGallery Flexbox Layout */

#april25 .proGalleryThumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

#april25 .proGalleryThumbs li {
  padding: 0.25em;
  align-self: flex-start;
}

@media screen and (min-width: 0px) {
  #april25 .proGalleryThumbs li {
    width: 100%;
    
    
    
    
    
    
    
    
    
    
    
  }
}

@media screen and (min-width: 568px) {
	#april25 .proGalleryThumbs li {
		
    width: 50%;
    
    
    
    
    
    
    
    
    
    
	}
}

@media screen and (min-width: 992px) {
	#april25 .proGalleryThumbs li {
		
    
    width: 33.333%;
    
    
    
    
    
    
    
    
    
	}
}

@media screen and (min-width: 1200px) {
	#april25 .proGalleryThumbs li {
		
    
    
    width: 25%;
    
    
    
    
    
    
    
    
	}
}
/* Lightcase lightbox */

/**
 * Lightcase - jQuery Plugin
 * The smart and flexible Lightbox Plugin.
 *
 * @author		Cornel Boppart <cornel@bopp-art.com>
 * @copyright	Author
 *
 * @version		2.4.0 (09/04/2017)
 */
 @font-face {
  font-family: 'lightcase';
  src: url("../files/lightcase-assets/lightcase.eot?55356177");
  src: url("../files/lightcase-assets/lightcase.eot?55356177#iefix") format("embedded-opentype"), url("../files/lightcase-assets/lightcase.woff?55356177") format("woff"), url("../files/lightcase-assets/lightcase.ttf?55356177") format("truetype"), url("../files/lightcase-assets/lightcase.svg?55356177#lightcase") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class*='april25-icon-']:before {
  font-family: 'lightcase', sans-serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

/* Codes */
.april25-icon-play:before {
  content: '\e800';
}

.april25-icon-pause:before {
  content: '\e801';
}

.april25-icon-close:before {
  content: '\e802';
}

.april25-icon-prev:before {
  content: '\e803';
}

.april25-icon-next:before {
  content: '\e804';
}

.april25-icon-spin:before {
  content: '\e805';
}

/**
 * Mixin providing icon defaults to be used on top of font-lightcase.
 *
 * Example usage:
 * @include icon(#e9e9e9)
 */
/**
 * Mixin providing icon defaults including a hover status to be used
 * on top of font-lightcase.
 *
 * Example usage:
 * @include icon-hover(#e9e9e9, #fff)
 */
/**
 * Provides natural content overflow behavior and scrolling support
 * even so for touch devices.
 *
 * Example usage:
 * @include overflow()
 */
/**
 * Neutralizes/resets dimensions including width, height, position as well as margins,
 * paddings and styles. Used to enforce a neutral and unstyled look and behavoir!
 *
 * Example usage:
 * @include clear(true)
 *
 * @param boolean $important
 */
@-webkit-keyframes april25-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-moz-keyframes april25-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-o-keyframes april25-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-ms-keyframes april25-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes april25-spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

#april25-case {
  display: none;
  position: fixed;
  z-index: 2002;
  top: 50%;
  left: 50%;
  font-family: arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 640px) {
  html[data-lc-type=inline] #april25-case,
  html[data-lc-type=ajax] #april25-case {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 55px 0 70px 0;
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important;
  }
}

@media screen and (min-width: 641px) {
  html:not([data-lc-type=error]) #april25-content {
    position: relative;
    z-index: 1;
    text-shadow: none;
    background-color: #fff;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    -webkit-backface-visibility: hidden;
  }
}
@media screen and (min-width: 641px) {
  html[data-lc-type=image] #april25-content,
  html[data-lc-type=video] #april25-content {
    background-color: #333;
  }
}

html[data-lc-type=inline] #april25-content,
html[data-lc-type=ajax] #april25-content,
html[data-lc-type=error] #april25-content {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

@media screen and (max-width: 640px) {
  html[data-lc-type=inline] #april25-content,
  html[data-lc-type=ajax] #april25-content,
  html[data-lc-type=error] #april25-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }
}

html[data-lc-type=inline] #april25-content .april25-contentInner,
html[data-lc-type=ajax] #april25-content .april25-contentInner,
html[data-lc-type=error] #april25-content .april25-contentInner {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  html[data-lc-type=inline] #april25-content .april25-contentInner,
  html[data-lc-type=ajax] #april25-content .april25-contentInner,
  html[data-lc-type=error] #april25-content .april25-contentInner {
    padding: 15px;
  }

  html[data-lc-type=inline] #april25-content .april25-contentInner,
  html[data-lc-type=inline] #april25-content .april25-contentInner > *,
  html[data-lc-type=ajax] #april25-content .april25-contentInner,
  html[data-lc-type=ajax] #april25-content .april25-contentInner > *,
  html[data-lc-type=error] #april25-content .april25-contentInner,
  html[data-lc-type=error] #april25-content .april25-contentInner > * {
    width: 100% !important;
    max-width: none !important;
  }

  html[data-lc-type=inline] #april25-content .april25-contentInner > *:not(iframe),
  html[data-lc-type=ajax] #april25-content .april25-contentInner > *:not(iframe),
  html[data-lc-type=error] #april25-content .april25-contentInner > *:not(iframe) {
    height: auto !important;
    max-height: none !important;
  }
}
@media screen and (max-width: 640px) {
  html.april25-isMobileDevice[data-lc-type=iframe] #april25-content .april25-contentInner iframe {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 640px) and (min-width: 641px) {
  html[data-lc-type=image] #april25-content .april25-contentInner,
  html[data-lc-type=video] #april25-content .april25-contentInner {
    line-height: 0.75;
  }
}

html[data-lc-type=image] #april25-content .april25-contentInner {
  position: relative;
  overflow: hidden !important;
}

@media screen and (max-width: 640px) {
  html[data-lc-type=inline] #april25-content .april25-contentInner .april25-inlineWrap,
  html[data-lc-type=ajax] #april25-content .april25-contentInner .april25-inlineWrap,
  html[data-lc-type=error] #april25-content .april25-contentInner .april25-inlineWrap {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }
}

@media screen and (min-width: 641px) {
  html:not([data-lc-type=error]) #april25-content .april25-contentInner .april25-inlineWrap {
    padding: 30px;
    overflow: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 640px) {
  #april25-content h1,
  #april25-content h2,
  #april25-content h3,
  #april25-content h4,
  #april25-content h5,
  #april25-content h6,
  #april25-content p {
    color: #aaa;
  }
}

@media screen and (min-width: 641px) {
  #april25-content h1,
  #april25-content h2,
  #april25-content h3,
  #april25-content h4,
  #april25-content h5,
  #april25-content h6,
  #april25-content p {
    color: #333;
  }
}

#april25-case p.april25-error {
  margin: 0;
  font-size: 17px;
  text-align: center;
  /* white-space: nowrap; */
  overflow: hidden;
  text-overflow: ellipsis;
  color: #aaa;
}

@media screen and (max-width: 640px) {
  #april25-case p.april25-error {
    padding: 30px 0;
  }
}

@media screen and (min-width: 641px) {
  #april25-case p.april25-error {
    padding: 0;
  }
}

.april25-open body {
  overflow: hidden;
}

.april25-isMobileDevice .april25-open body {
  max-width: 100%;
  max-height: 100%;
}

#april25-info {
  position: absolute;
  padding-top: 15px;
}

#april25-info #april25-title,
#april25-info #april25-caption {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-weight: normal;
  text-overflow: ellipsis;
}

#april25-info #april25-title {
  font-size: 17px;
  color: #aaa;
}

@media screen and (max-width: 640px) {
  #april25-info #april25-title {
    position: fixed;
    top: 10px;
    left: 0;
    max-width: 87.5%;
    padding: 5px 15px;
    /* background: #333; */
    background: none;
  }
}

#april25-info #april25-caption {
  clear: both;
  font-size: 13px;
  color: #aaa;
}

#april25-info #april25-sequenceInfo {
  font-size: 11px;
  color: #aaa;
}

@media screen and (max-width: 640px) {
  .april25-fullScreenMode #april25-info {
    padding-left: 15px;
    padding-right: 15px;
  }

  html:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #april25-info {
    position: static;
  }
}

#april25-loading {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  position: fixed;
  z-index: 2001;
  top: 50%;
  left: 50%;
  margin-top: -0.5em;
  margin-left: -0.5em;
  opacity: 1;
  font-size: 32px;
  text-shadow: 0 0 15px #fff;
  -moz-transform-origin: 50% 53%;
  -webkit-animation: april25-spin 0.5s infinite linear;
  -moz-animation: april25-spin 0.5s infinite linear;
  -o-animation: april25-spin 0.5s infinite linear;
  animation: april25-spin 0.5s infinite linear;
}

#april25-loading, #april25-loading:focus {
  text-decoration: none;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  -moz-transition: color, opacity, ease-in-out 0.25s;
  -o-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s;
}

#april25-loading > span {
  display: inline-block;
  text-indent: -9999px;
}

a[class*='april25-icon-'] {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  outline: none;
  cursor: pointer;
}

a[class*='april25-icon-'],
a[class*='april25-icon-']:focus {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  -moz-transition: color, opacity, ease-in-out 0.25s;
  -o-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s;
}

a[class*='april25-icon-'] > span {
  display: inline-block;
  text-indent: -9999px;
}

a[class*='april25-icon-']:hover {
  color: white;
  text-shadow: 0 0 15px white;
}

.april25-isMobileDevice a[class*='april25-icon-']:hover {
  color: #aaa;
  text-shadow: none;
}

a[class*='april25-icon-'].april25-icon-close {
  position: fixed;
  top: 15px;
  right: 15px;
  bottom: auto;
  margin: 0;
  opacity: 0;
  outline: none;
}

a[class*='april25-icon-'].april25-icon-prev {
  left: 15px;
}

a[class*='april25-icon-'].april25-icon-next {
  right: 15px;
}

a[class*='april25-icon-'].april25-icon-pause,
a[class*='april25-icon-'].april25-icon-play {
  left: 50%;
  margin-left: -0.5em;
}

@media screen and (min-width: 641px) {
  a[class*='april25-icon-'].april25-icon-pause,
  a[class*='april25-icon-'].april25-icon-play {
    opacity: 0;
  }
}

@media screen and (max-width: 640px) {
  a[class*='april25-icon-'] {
    bottom: 15px;
    font-size: 24px;
  }
}

@media screen and (min-width: 641px) {
  a[class*='april25-icon-'] {
    bottom: 50%;
    margin-bottom: -0.5em;
  }

  a[class*='april25-icon-']:hover,
  #april25-case:hover ~ a[class*='april25-icon-'] {
    opacity: 1;
  }
}

#april25-overlay {
  display: none;
  width: 100%;
  min-height: 100%;
  position: fixed;
  z-index: 2000;
  top: -9999px;
  bottom: -9999px;
  left: 0;
  background: #333;
}

@media screen and (max-width: 640px) {
  #april25-overlay {
    opacity: 1 !important;
  }
}

/* Modifications made by WHW */
a[class*='april25-icon-'],
a[class*='april25-icon-']:focus {
    color: rgba(255, 255, 255, 1.00);
}

@media screen and (max-width: 640px) {
  a[class*='april25-icon-'] {
    bottom: 0px;
    font-size: 24px;
    padding: 15px;
    width: auto;
  }
  a[class*='mygallery-icon-'].mygallery-icon-close {
    top: 0px;
    right: 0px;
  }
  a[class*='mygallery-icon-'].mygallery-icon-next {
    right: 0px;
  }
  a[class*='mygallery-icon-'].mygallery-icon-prev {
    left: 0px;
  }
  .mygallery-isMobileDevice a[class*='mygallery-icon-']:hover {
    color: rgba(255, 255, 255, 1.00);
    text-shadow: none;
  }
}

a[class*='april25-icon-']:hover {
    color: rgba(255, 255, 10, 1.00);
    text-shadow: 0 0 15px rgba(255, 255, 10, 1.00);
}

#april25-case {
  text-shadow: 0 0 10px rgba(0, 0, 0, 1.00);
}

#april25-content img {
	width: auto;
	height: auto;
}

#april25-overlay {
    opacity: 1.00 !important;
    background: rgba(0, 0, 0, 1.00) !important;
}

#april25-info #april25-sequenceInfo,
#april25-info #april25-title,
#april25-info #april25-caption {
    color: rgba(255, 255, 255, 1.00);
}

#april25-info #april25-title {
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
  font-weight: bold;
  
  
  
}

#april25-info #april25-caption {
  font-weight: bold;
  
  
  
}

/* @end */

/* Social icons in the lightbox */

#social-april25 {
	position: fixed;
	top: 15px;
	left: 15px;
	z-index: 99999;
	line-height: 1;
	display: none;
}

@media screen and (min-width: 641px) {
	/* Only show social media buttons on wider screens */
	#social-april25 {
		display: block;
	}
}

#social-april25 a {
	color: rgba(255, 255, 255, 1.00);
	padding: 0px;
	display: none;
	text-align: center;
	font-size: 26px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 40px;
	transition: all 300ms ease-in-out;
}

#social-april25 a:hover {
	color: rgba(255, 255, 10, 1.00);
	text-shadow: 0 0 15px white;
}

/*  */

/*  */

/* Lightbox image borders and padding */

@media screen and (min-width: 641px) {
  html[data-lc-type=image] #april25-content,
  html[data-lc-type=video] #april25-content {
    background: transparent;
  }
}

#april25-content img {
  border: 0px solid rgba(255, 255, 255, 1.00);
  padding: 0px;
  border-radius: 0px;
}

/* Checkbox to switch lightbox layout to flexbox */



.item_stacks_in_2189{justify-content:flex-start;overflow:hidden;  }

#stacks_in_1949 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	margin:  5px;
	padding:  5px;
}
.stacks_in_1950 .source-button{ font-size:19px;line-height:48px;border-radius:4px;padding:0 30px;border-width:1px;height:calc(48px + 2px); font-weight:bold; text-transform:none;   }#stacks_in_1950 .button-group-btn:not(:last-child) .source-button{margin-bottom:0}#stacks_in_1950 .button-group-btn:last-child .source-button{}.stacks_in_1950 .source-button,#stacks_in_1950 .s-button-group{display:block}#stacks_in_1950 .s-button-group .button-group-btn{padding-right:0!important;padding-bottom:1px}.stacks_in_1950 a{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 0, 128, 1.00);border-color:rgba(255, 255, 255, 1.00)}.stacks_in_1950 a:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(251, 2, 7, 1.00);border-color:rgba(0, 0, 0, 1.00)}#stacks_in_1950 .s-button-group{justify-content:center}#stacks_in_1950 .s-button-group .button-group-btn:not(:last-child){padding-right:1px}@media only screen and (max-width:0px){#stacks_in_1950 .s-button-group .button-group-btn{padding-right:0!important;padding-left:0}}#stacks_in_1950 .s-button-group .button-group-btn{padding-bottom:1px}
/*
1.0.4.6
- new option to use warehoused image for header image
- added new option to contain the header image instead of cover and crop
- add new header image bg color that shows when containing an image
- added settings to change font sizes
- uses unique data attribute names to prevent conflicts with foundation and other frameworks
- added compatability with assemble
- mobile address bar no longer triggers resize event
*/
#stacks_in_1952.expd-card,
#stacks_in_1952.expd-card * {
  box-sizing: border-box;
}

#stacks_in_1952 .expd-truncate {
  position: relative;
  display: inline-block;
  width: 100%;
}

 #stacks_in_1952.expd-card .click-all {
  height: 100%;
}

  #stacks_in_1952.expd-card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
     background: -moz-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  bottom: 0px;
   pointer-events: none;
}

#stacks_in_1952.expd-card.expd-active:after {
  display: none;
}

 #stacks_in_1952_wrap.wrap-expd-card {
   width: 410px;
  height: 450px;
   margin: 10px auto;
  max-width: 100%;
  position: relative;
}

#stacks_in_1952.expd-card.fadeIn {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

#stacks_in_1952.expd-card {
  font-family: inherit;
  text-align: left;
  will-change: top, left, right, bottom;
    color: rgba(103, 103, 103, 1.00);
     background: rgba(255, 255, 255, 1.00);
    height: 450px;
  width: 410px;
  visibility: hidden;
   border: 0px solid #ccc;
  overflow: hidden;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  border-radius: 0px;
   
}

 #stacks_in_1952.expd-card * {
  pointer-events: none;
}

#stacks_in_1952.expd-card .expd-open,
#stacks_in_1952.expd-card [data-expanse-open='1'],
#stacks_in_1952.expd-card.expd-active * {
  pointer-events: all;
}

 #stacks_in_1952.expd-card h1,
#stacks_in_1952.expd-card h2,
#stacks_in_1952.expd-card h3,
#stacks_in_1952.expd-card h4,
#stacks_in_1952.expd-card h5,
#stacks_in_1952.expd-card h6 {
  font-family: inherit;
}

#stacks_in_1952.expd-card.expd-active {
  position: fixed;
  z-index: 99;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: calc(100vw - 0px);
  height: calc(100vh - 0px);
  overflow: scroll;
  overflow-x: hidden;
  border: 0px solid transparent;
  box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.4);
   border-radius: 0px;
   -webkit-transform-origin: center center;
  transform-origin: center center;
  margin: 0;
  transform: scale(1);
}

#stacks_in_1952.expd-card [data-expanse-close='1'] {
  display: none;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_1952.expd-card [data-expanse-open='1'] {
  display: block;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_1952.expd-card .expd-card-button {
  background: #CCCCCC;
  color: #676767;
   background: rgba(96, 53, 148, 1.00);
  color: rgba(255, 255, 255, 1.00);
   display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, .2);
  transition: 300ms all linear;
  cursor: pointer;
}

#stacks_in_1952.expd-card .expd-card-button[data-expanse-open='1'] {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 4px;
}

#stacks_in_1952.expd-card .expd-card-button:hover,
#stacks_in_1952.expd-card .expd-card-button[data-expanse-open='1']:hover {
  opacity: .8;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
}

#stacks_in_1952.expd-card .expd-card-body-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.fixed-closestacks_in_1952 {
  display: block;
  pointer-events: none;
  transition: opacity 300ms linear;
  
  transition-delay: 300ms;
  
  opacity: 0;
  cursor: pointer;
  z-index: 200;
  position: fixed;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
    color: rgba(103, 103, 103, 1.00);
     background: rgba(255, 255, 255, 1.00);
   border-radius: 4px;
}
.expd-body .fixed-closestacks_in_1952 {
  pointer-events: all;
  
}

#stacks_in_1952.expd-card .expd-card-body-wrap .expd-card-img {
  height: 0px;
  padding-bottom: 56.25%;
  background-color: #bbb;
  background-size: cover;
  background-position: center center;
  
  background-image: url();
  
  
}

#stacks_in_1952.expd-card .expd-card-body-wrap .expd-card-content {
  padding: 18px 16px;
  position: relative;
  perspective: 1200;
}

#stacks_in_1952.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  padding: 20px 20px;
}

#stacks_in_1952.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  position: absolute;
  cursor: pointer;
  height: 40px;
  width: 40px;
  background: rgba(88, 236, 88, 1.00);
  right: 20px;
  top: -20px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
  text-align: center;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  transition: all ease 300ms;
}

#stacks_in_1952.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:hover {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.3);
}

#stacks_in_1952.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:active {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.6);
  transition: all ease 100ms;
}

#stacks_in_1952.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa {
  line-height: 34px;
  position: absolute;
  width: 34px;
  height: 34px;
  font-size: 24px;
  top: 0;
  left: 0;
  text-align: center;
}

#stacks_in_1952.expd-card .expd-card-body-wrap .expd-card-content {
  font-size: 12px;
  line-height: 16px;
}

#stacks_in_1952.expd-card .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  color: rgba(66, 66, 66, 1.00);
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}

#stacks_in_1952.expd-card .expd-card-body-wrap .expd-card-content .expd-heading strong {
  color: rgba(88, 88, 88, 1.00);
  font-size: 14px;
  line-height: 16px;
  display: block;
  margin-bottom: 5px;
}

#stacks_in_1952.expd-card .expd-card-body-wrap .expd-card-content p {
  margin: 10px 0px;
}

#stacks_in_1952.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  font-size: 16px;
  line-height: 22px;
}

#stacks_in_1952.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  font-size: 26px;
  line-height: 32px;
}

#stacks_in_1952.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading strong {
  font-size: 20px;
  line-height: 22px;
  margin: 5px 0px 20px 0px;
}

.expd-body {
  overflow: hidden;
}

#stacks_in_1952.expd-card.expd-pre-anim {
  position: fixed;
  z-index: 99;
}

#stacks_in_1952.expd-card.expd-active [data-expanse-close='1'] {
  display: inline-block;
}

#stacks_in_1952.expd-card.expd-active .expd-open[data-expanse-open='1'] {
  display: block;
  cursor: auto;
}

#stacks_in_1952.expd-card.expd-active .expd-card-button[data-expanse-open='1'] {
  display: none;
}

#stacks_in_1952.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  background: rgba(236, 88, 88, 1.00);
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
}

#stacks_in_1952.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  line-height: 34px;
}

#stacks_in_1952.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  content: "\f00d";
}

   @media all and (max-width: 600px) {
  #stacks_in_1952.expd-card.expd-active {
    top: 0.000000px;
    bottom: 0.000000px;
    left: 0.000000px;
    right: 0.000000px;
    width: calc(100vw - 0.000000px);
    height: calc(100vh - 0.000000px);
  }
}


#shady_stack_stacks_in_1953 {
	max-width: none;
	
  margin: 0 auto;
  
}

#shady_stack_shadow_stacks_in_1953 {
	box-shadow:  0rem 0rem 0.8rem 0.4rem rgba(153, 153, 153, 1.00);
	border-radius: 0rem;
	overflow: hidden;
	padding: 1.0rem;
	margin: 1.0rem;
	border: none 0.10rem rgba(51, 51, 51, 1.00);
}

@media print {
	#shady_stack_shadow_stacks_in_1953 {
		margin: 0;
		padding: 0;
		box-shadow: none;
		border-radius: 0px;
	}
}

#stacks_in_2198 {
	margin:  6px;
	padding:  5px;
}
/* 
 * Simple Text
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.8.2
 */

#simpleText_stacks_in_2201 {
	position: relative;
	color: #333333;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_2201.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_2201.fontSizeInheritOff {
	font-size: 14px;
	line-height: 14px;
}
#simpleText_stacks_in_2201.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_2201.lineHeightOn {
	line-height: 14px;
}
#simpleText_stacks_in_2201.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_2201.inheritOff a, #simpleText_stacks_in_2201.inheritOff a:link {
	color: #169EE6;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_2201.inheritOff a:visited {
	color: #169EE6;
}
#simpleText_stacks_in_2201.inheritOff a:hover {
	color: #FF6600;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_2201.inheritOff a:active {
	color: #FF6600;
}
#simpleText_stacks_in_2201.inheritOff a:focus {
	color: #FF6600;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_2201.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_2201.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_2201.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_2201.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_2201.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}

#stacks_in_2201 {
	margin:  5px;
	padding:  5px;
}
#stacks_in_2203 *,
#stacks_in_2203 *:before,
#stacks_in_2203 *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

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

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

#pro_gallery_thumbnails_stacks_in_2203 .hidden_pro_gallery_item {
  display: none;
}










#pro_gallery_thumbnails_stacks_in_2203 {
  display: grid;
  grid-column-gap: 1.50rem;
  grid-row-gap: 1.50rem;
  
}

@media (min-width: 0px) {
  #pro_gallery_thumbnails_stacks_in_2203 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 576px) {
  #pro_gallery_thumbnails_stacks_in_2203 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  #pro_gallery_thumbnails_stacks_in_2203 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  #pro_gallery_thumbnails_stacks_in_2203 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1400px) {
  #pro_gallery_thumbnails_stacks_in_2203 {
    grid-template-columns: repeat(2, 1fr);
  }
}








#pro_gallery_thumbnails_stacks_in_2203 .pro_gallery_item {
  overflow: hidden;
  
  text-align: left;
  font-family: Raleway;
  font-size: 12;
  letter-spacing: inheritrem;
  line-height: inherit;
  border: 0.10rem solid rgba(0, 0, 128, 1.00);
  border-radius: 0.00rem;
  padding: 5.00rem;
  margin: 1.00rem;
  background-color: rgba(255, 255, 255, 1.00);
  
  
  position: relative;
}

@media (prefers-color-scheme: dark) {
  #pro_gallery_thumbnails_stacks_in_2203 .pro_gallery_item {
    
    border-color: rgba(0, 0, 0, 1.00);
    background-color: rgba(255, 255, 255, 1.00);
    
    
  }
}









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


#pro_gallery_thumbnails_stacks_in_2203 .pro_gallery_item_link {
  display: inline-block;
  position: relative;
  overflow: visible;
  outline: none;
}

#pro_gallery_thumbnails_stacks_in_2203 .pro_gallery_item_link:focus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0.30rem solid rgba(0, 0, 0, 1.00);
  z-index: 1;
  pointer-events: none;
}


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

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

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

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

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

#pro_gallery_live_search_stacks_in_2203,
#pro_gallery_tag_menu_stacks_in_2203,
#pro_gallery_sort_stacks_in_2203 {
  width: 100%;
}

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

#progallery_live_search_box_stacks_in_2203,
#pro_gallery_tag_select_stacks_in_2203,
#pro_gallery_sort_select_stacks_in_2203,
#pro_gallery_pagination_select_stacks_in_2203 {
  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_2203,
#pro_gallery_sort_select_stacks_in_2203,
#pro_gallery_pagination_select_stacks_in_2203 {
  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_2203:focus,
#pro_gallery_tag_select_stacks_in_2203:focus,
#pro_gallery_sort_select_stacks_in_2203:focus,
#pro_gallery_pagination_select_stacks_in_2203: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_2203 {
  position: relative;
}

#progallery_live_search_box_stacks_in_2203 {
  padding-right: 30px;
}

#pro_gallery_live_search_reset_stacks_in_2203 {
  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_2203 svg {
  pointer-events: none;
  width: 25px;
  height: auto;
}

#pro_gallery_live_search_reset_stacks_in_2203:focus {
  outline: none;
}

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

@media (prefers-color-scheme: dark) {
  #progallery_live_search_box_stacks_in_2203,
  #pro_gallery_tag_select_stacks_in_2203,
  #pro_gallery_sort_select_stacks_in_2203,
  #pro_gallery_pagination_select_stacks_in_2203 {
    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_2203:focus,
  #pro_gallery_tag_select_stacks_in_2203:focus,
  #pro_gallery_sort_select_stacks_in_2203:focus,
  #pro_gallery_pagination_select_stacks_in_2203: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_2203::placeholder {
    color: rgba(192, 192, 192, 1.00);
  }
}

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

  

  

  
}

/* Image Counters */



/* Blackout */

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

#pro_gallery_thumbnails_stacks_in_2203 .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_2203 .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_2203 .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_2203 .pro_gallery_hide svg {
    width: auto;
    height: 1.25rem;
}

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

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

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

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

#pro_gallery_thumbnails_stacks_in_2203 li.blackout.reveal .pro_gallery_hide,
#pro_gallery_thumbnails_stacks_in_2203 li.blackout.reveal .pro_gallery_lightbox_trigger,
#pro_gallery_thumbnails_stacks_in_2203 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__bg {
  background: #000000;
}

.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: #FFFFFF;
}

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

.pswp__img {
  border: 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(0, 0, 0, 0.00);
}

.pswp__dynamic-caption,
.pswp__dynamic-caption p,
.pswp__dynamic-caption strong {
  color: rgba(234, 234, 234, 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(255, 255, 255, 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(192, 192, 192, 1.00);
}

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

.pswp__dynamic-caption--mobile p,
.pswp__dynamic-caption--mobile strong {
  color: rgba(234, 234, 234, 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(255, 255, 255, 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(192, 192, 192, 1.00);
}

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


#stacks_in_2203 {
	margin:  2px;
	padding:  3px;
}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_2238 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_2238 .theDivider1,
#simpleDivider_stacks_in_2238 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_2238 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_2238.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_2238.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_2238 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_2238.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_2238.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_2238.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_2238.bgImageOn .theDivider1 img {
	display: block;
}

/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_2247 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_2247 .theDivider1,
#simpleDivider_stacks_in_2247 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_2247 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_2247.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_2247.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_2247 .theDivider2 {
	height: 8px;
}
#simpleDivider_stacks_in_2247.transparentOff .theDivider2 {
	background-color: #0000FF;
}
#simpleDivider_stacks_in_2247.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_2247.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_2247.bgImageOn .theDivider1 img {
	display: block;
}


#stacks_in_2247 {
	padding: 0px 30px 0px 30px;
}

#stacks_out_2247 {
	width: 78%;
}
.item_stacks_in_2321{justify-content:flex-start;overflow:hidden;  }

#stacks_in_2322 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	margin:  5px;
	padding:  5px;
}
.stacks_in_2324 .source-button{ font-size:19px;line-height:48px;border-radius:4px;padding:0 30px;border-width:1px;height:calc(48px + 2px); font-weight:bold; text-transform:none;   }#stacks_in_2324 .button-group-btn:not(:last-child) .source-button{margin-bottom:0}#stacks_in_2324 .button-group-btn:last-child .source-button{}.stacks_in_2324 .source-button,#stacks_in_2324 .s-button-group{display:block}#stacks_in_2324 .s-button-group .button-group-btn{padding-right:0!important;padding-bottom:1px}.stacks_in_2324 a{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 0, 128, 1.00);border-color:rgba(255, 255, 255, 1.00)}.stacks_in_2324 a:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(251, 2, 7, 1.00);border-color:rgba(0, 0, 0, 1.00)}#stacks_in_2324 .s-button-group{justify-content:center}#stacks_in_2324 .s-button-group .button-group-btn:not(:last-child){padding-right:1px}@media only screen and (max-width:0px){#stacks_in_2324 .s-button-group .button-group-btn{padding-right:0!important;padding-left:0}}#stacks_in_2324 .s-button-group .button-group-btn{padding-bottom:1px}
/*
1.0.4.6
- new option to use warehoused image for header image
- added new option to contain the header image instead of cover and crop
- add new header image bg color that shows when containing an image
- added settings to change font sizes
- uses unique data attribute names to prevent conflicts with foundation and other frameworks
- added compatability with assemble
- mobile address bar no longer triggers resize event
*/
#stacks_in_2326.expd-card,
#stacks_in_2326.expd-card * {
  box-sizing: border-box;
}

#stacks_in_2326 .expd-truncate {
  position: relative;
  display: inline-block;
  width: 100%;
}

 #stacks_in_2326.expd-card .click-all {
  height: 100%;
}

  #stacks_in_2326.expd-card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
     background: -moz-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  bottom: 0px;
   pointer-events: none;
}

#stacks_in_2326.expd-card.expd-active:after {
  display: none;
}

 #stacks_in_2326_wrap.wrap-expd-card {
   width: 410px;
  height: 450px;
   margin: 10px auto;
  max-width: 100%;
  position: relative;
}

#stacks_in_2326.expd-card.fadeIn {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

#stacks_in_2326.expd-card {
  font-family: inherit;
  text-align: left;
  will-change: top, left, right, bottom;
    color: rgba(103, 103, 103, 1.00);
     background: rgba(255, 255, 255, 1.00);
    height: 450px;
  width: 410px;
  visibility: hidden;
   border: 0px solid #ccc;
  overflow: hidden;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  border-radius: 0px;
   
}

 #stacks_in_2326.expd-card * {
  pointer-events: none;
}

#stacks_in_2326.expd-card .expd-open,
#stacks_in_2326.expd-card [data-expanse-open='1'],
#stacks_in_2326.expd-card.expd-active * {
  pointer-events: all;
}

 #stacks_in_2326.expd-card h1,
#stacks_in_2326.expd-card h2,
#stacks_in_2326.expd-card h3,
#stacks_in_2326.expd-card h4,
#stacks_in_2326.expd-card h5,
#stacks_in_2326.expd-card h6 {
  font-family: inherit;
}

#stacks_in_2326.expd-card.expd-active {
  position: fixed;
  z-index: 99;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: calc(100vw - 0px);
  height: calc(100vh - 0px);
  overflow: scroll;
  overflow-x: hidden;
  border: 0px solid transparent;
  box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.4);
   border-radius: 0px;
   -webkit-transform-origin: center center;
  transform-origin: center center;
  margin: 0;
  transform: scale(1);
}

#stacks_in_2326.expd-card [data-expanse-close='1'] {
  display: none;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_2326.expd-card [data-expanse-open='1'] {
  display: block;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_2326.expd-card .expd-card-button {
  background: #CCCCCC;
  color: #676767;
   background: rgba(96, 53, 148, 1.00);
  color: rgba(255, 255, 255, 1.00);
   display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, .2);
  transition: 300ms all linear;
  cursor: pointer;
}

#stacks_in_2326.expd-card .expd-card-button[data-expanse-open='1'] {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 4px;
}

#stacks_in_2326.expd-card .expd-card-button:hover,
#stacks_in_2326.expd-card .expd-card-button[data-expanse-open='1']:hover {
  opacity: .8;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
}

#stacks_in_2326.expd-card .expd-card-body-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.fixed-closestacks_in_2326 {
  display: block;
  pointer-events: none;
  transition: opacity 300ms linear;
  
  transition-delay: 300ms;
  
  opacity: 0;
  cursor: pointer;
  z-index: 200;
  position: fixed;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
    color: rgba(103, 103, 103, 1.00);
     background: rgba(255, 255, 255, 1.00);
   border-radius: 4px;
}
.expd-body .fixed-closestacks_in_2326 {
  pointer-events: all;
  
}

#stacks_in_2326.expd-card .expd-card-body-wrap .expd-card-img {
  height: 0px;
  padding-bottom: 56.25%;
  background-color: #bbb;
  background-size: cover;
  background-position: center center;
  
  background-image: url();
  
  
}

#stacks_in_2326.expd-card .expd-card-body-wrap .expd-card-content {
  padding: 18px 16px;
  position: relative;
  perspective: 1200;
}

#stacks_in_2326.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  padding: 20px 20px;
}

#stacks_in_2326.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  position: absolute;
  cursor: pointer;
  height: 40px;
  width: 40px;
  background: rgba(88, 236, 88, 1.00);
  right: 20px;
  top: -20px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
  text-align: center;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  transition: all ease 300ms;
}

#stacks_in_2326.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:hover {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.3);
}

#stacks_in_2326.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:active {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.6);
  transition: all ease 100ms;
}

#stacks_in_2326.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa {
  line-height: 34px;
  position: absolute;
  width: 34px;
  height: 34px;
  font-size: 24px;
  top: 0;
  left: 0;
  text-align: center;
}

#stacks_in_2326.expd-card .expd-card-body-wrap .expd-card-content {
  font-size: 12px;
  line-height: 16px;
}

#stacks_in_2326.expd-card .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  color: rgba(66, 66, 66, 1.00);
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}

#stacks_in_2326.expd-card .expd-card-body-wrap .expd-card-content .expd-heading strong {
  color: rgba(88, 88, 88, 1.00);
  font-size: 14px;
  line-height: 16px;
  display: block;
  margin-bottom: 5px;
}

#stacks_in_2326.expd-card .expd-card-body-wrap .expd-card-content p {
  margin: 10px 0px;
}

#stacks_in_2326.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  font-size: 16px;
  line-height: 22px;
}

#stacks_in_2326.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  font-size: 26px;
  line-height: 32px;
}

#stacks_in_2326.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading strong {
  font-size: 20px;
  line-height: 22px;
  margin: 5px 0px 20px 0px;
}

.expd-body {
  overflow: hidden;
}

#stacks_in_2326.expd-card.expd-pre-anim {
  position: fixed;
  z-index: 99;
}

#stacks_in_2326.expd-card.expd-active [data-expanse-close='1'] {
  display: inline-block;
}

#stacks_in_2326.expd-card.expd-active .expd-open[data-expanse-open='1'] {
  display: block;
  cursor: auto;
}

#stacks_in_2326.expd-card.expd-active .expd-card-button[data-expanse-open='1'] {
  display: none;
}

#stacks_in_2326.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  background: rgba(236, 88, 88, 1.00);
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
}

#stacks_in_2326.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  line-height: 34px;
}

#stacks_in_2326.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  content: "\f00d";
}

   @media all and (max-width: 600px) {
  #stacks_in_2326.expd-card.expd-active {
    top: 0.000000px;
    bottom: 0.000000px;
    left: 0.000000px;
    right: 0.000000px;
    width: calc(100vw - 0.000000px);
    height: calc(100vh - 0.000000px);
  }
}


#shady_stack_stacks_in_2327 {
	max-width: none;
	
  margin: 0 auto;
  
}

#shady_stack_shadow_stacks_in_2327 {
	box-shadow:  0rem 0rem 0.8rem 0.4rem rgba(153, 153, 153, 1.00);
	border-radius: 0rem;
	overflow: hidden;
	padding: 1.0rem;
	margin: 1.0rem;
	border: none 0.10rem rgba(51, 51, 51, 1.00);
}

@media print {
	#shady_stack_shadow_stacks_in_2327 {
		margin: 0;
		padding: 0;
		box-shadow: none;
		border-radius: 0px;
	}
}

#stacks_in_2383 {
	margin:  6px;
	padding:  5px;
}
/* 
 * Simple Text
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.8.2
 */

#simpleText_stacks_in_2390 {
	position: relative;
	color: #333333;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_2390.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_2390.fontSizeInheritOff {
	font-size: 14px;
	line-height: 14px;
}
#simpleText_stacks_in_2390.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_2390.lineHeightOn {
	line-height: 14px;
}
#simpleText_stacks_in_2390.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_2390.inheritOff a, #simpleText_stacks_in_2390.inheritOff a:link {
	color: #169EE6;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_2390.inheritOff a:visited {
	color: #169EE6;
}
#simpleText_stacks_in_2390.inheritOff a:hover {
	color: #FF6600;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_2390.inheritOff a:active {
	color: #FF6600;
}
#simpleText_stacks_in_2390.inheritOff a:focus {
	color: #FF6600;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_2390.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_2390.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_2390.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_2390.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_2390.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
.s-cols-stacks_in_2392{justify-content:space-between;align-items:stretch;}.s-cols-stacks_in_2392>.s-cols-item{border-radius:0px;margin-bottom:20px;width:100%;  padding:0px 0px 0px 0px;   }.s-cols-stacks_in_2392>.s-cols-item:hover{ }@media (min-width:600px){.s-cols-stacks_in_2392>.s-cols-item{ width:calc((100% - calc(1 * 20px)) / 2);}}@media (min-width:900px){.s-cols-stacks_in_2392>.s-cols-item{ width:calc((100% - calc(3 * 20px)) / 4);}}#stacks_out_2392{width:100%}
.item_stacks_in_2393{justify-content:flex-start;overflow:hidden;  }
/* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code */.item_stacks_in_2399{justify-content:flex-start;overflow:hidden;  }
/* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code */.item_stacks_in_2404{justify-content:flex-start;overflow:hidden;  }
/* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code */.item_stacks_in_2409{justify-content:flex-start;overflow:hidden;  }
/* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code */.item_stacks_in_2414{justify-content:flex-start;overflow:hidden;  }
/* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code */.item_stacks_in_2419{justify-content:flex-start;overflow:hidden;  }
/* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code */.item_stacks_in_2248{justify-content:flex-start;overflow:hidden;  }

#stacks_in_2249 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	margin:  5px;
	padding:  5px;
}
.stacks_in_2251 .source-button{ font-size:19px;line-height:48px;border-radius:4px;padding:0 30px;border-width:1px;height:calc(48px + 2px); font-weight:bold; text-transform:none;   }#stacks_in_2251 .button-group-btn:not(:last-child) .source-button{margin-bottom:0}#stacks_in_2251 .button-group-btn:last-child .source-button{}.stacks_in_2251 .source-button,#stacks_in_2251 .s-button-group{display:block}#stacks_in_2251 .s-button-group .button-group-btn{padding-right:0!important;padding-bottom:1px}.stacks_in_2251 a{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 0, 128, 1.00);border-color:rgba(255, 255, 255, 1.00)}.stacks_in_2251 a:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(251, 2, 7, 1.00);border-color:rgba(0, 0, 0, 1.00)}#stacks_in_2251 .s-button-group{justify-content:center}#stacks_in_2251 .s-button-group .button-group-btn:not(:last-child){padding-right:1px}@media only screen and (max-width:0px){#stacks_in_2251 .s-button-group .button-group-btn{padding-right:0!important;padding-left:0}}#stacks_in_2251 .s-button-group .button-group-btn{padding-bottom:1px}
/*
1.0.4.6
- new option to use warehoused image for header image
- added new option to contain the header image instead of cover and crop
- add new header image bg color that shows when containing an image
- added settings to change font sizes
- uses unique data attribute names to prevent conflicts with foundation and other frameworks
- added compatability with assemble
- mobile address bar no longer triggers resize event
*/
#stacks_in_2253.expd-card,
#stacks_in_2253.expd-card * {
  box-sizing: border-box;
}

#stacks_in_2253 .expd-truncate {
  position: relative;
  display: inline-block;
  width: 100%;
}

 #stacks_in_2253.expd-card .click-all {
  height: 100%;
}

  #stacks_in_2253.expd-card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
     background: -moz-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  bottom: 0px;
   pointer-events: none;
}

#stacks_in_2253.expd-card.expd-active:after {
  display: none;
}

 #stacks_in_2253_wrap.wrap-expd-card {
   width: 410px;
  height: 450px;
   margin: 10px auto;
  max-width: 100%;
  position: relative;
}

#stacks_in_2253.expd-card.fadeIn {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

#stacks_in_2253.expd-card {
  font-family: inherit;
  text-align: left;
  will-change: top, left, right, bottom;
    color: rgba(103, 103, 103, 1.00);
     background: rgba(255, 255, 255, 1.00);
    height: 450px;
  width: 410px;
  visibility: hidden;
   border: 0px solid #ccc;
  overflow: hidden;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  border-radius: 0px;
   
}

 #stacks_in_2253.expd-card * {
  pointer-events: none;
}

#stacks_in_2253.expd-card .expd-open,
#stacks_in_2253.expd-card [data-expanse-open='1'],
#stacks_in_2253.expd-card.expd-active * {
  pointer-events: all;
}

 #stacks_in_2253.expd-card h1,
#stacks_in_2253.expd-card h2,
#stacks_in_2253.expd-card h3,
#stacks_in_2253.expd-card h4,
#stacks_in_2253.expd-card h5,
#stacks_in_2253.expd-card h6 {
  font-family: inherit;
}

#stacks_in_2253.expd-card.expd-active {
  position: fixed;
  z-index: 99;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: calc(100vw - 0px);
  height: calc(100vh - 0px);
  overflow: scroll;
  overflow-x: hidden;
  border: 0px solid transparent;
  box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.4);
   border-radius: 0px;
   -webkit-transform-origin: center center;
  transform-origin: center center;
  margin: 0;
  transform: scale(1);
}

#stacks_in_2253.expd-card [data-expanse-close='1'] {
  display: none;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_2253.expd-card [data-expanse-open='1'] {
  display: block;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_2253.expd-card .expd-card-button {
  background: #CCCCCC;
  color: #676767;
   background: rgba(96, 53, 148, 1.00);
  color: rgba(255, 255, 255, 1.00);
   display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, .2);
  transition: 300ms all linear;
  cursor: pointer;
}

#stacks_in_2253.expd-card .expd-card-button[data-expanse-open='1'] {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 4px;
}

#stacks_in_2253.expd-card .expd-card-button:hover,
#stacks_in_2253.expd-card .expd-card-button[data-expanse-open='1']:hover {
  opacity: .8;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
}

#stacks_in_2253.expd-card .expd-card-body-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.fixed-closestacks_in_2253 {
  display: block;
  pointer-events: none;
  transition: opacity 300ms linear;
  
  transition-delay: 300ms;
  
  opacity: 0;
  cursor: pointer;
  z-index: 200;
  position: fixed;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
    color: rgba(103, 103, 103, 1.00);
     background: rgba(255, 255, 255, 1.00);
   border-radius: 4px;
}
.expd-body .fixed-closestacks_in_2253 {
  pointer-events: all;
  
}

#stacks_in_2253.expd-card .expd-card-body-wrap .expd-card-img {
  height: 0px;
  padding-bottom: 56.25%;
  background-color: #bbb;
  background-size: cover;
  background-position: center center;
  
  background-image: url();
  
  
}

#stacks_in_2253.expd-card .expd-card-body-wrap .expd-card-content {
  padding: 18px 16px;
  position: relative;
  perspective: 1200;
}

#stacks_in_2253.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  padding: 20px 20px;
}

#stacks_in_2253.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  position: absolute;
  cursor: pointer;
  height: 40px;
  width: 40px;
  background: rgba(88, 236, 88, 1.00);
  right: 20px;
  top: -20px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
  text-align: center;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  transition: all ease 300ms;
}

#stacks_in_2253.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:hover {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.3);
}

#stacks_in_2253.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:active {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.6);
  transition: all ease 100ms;
}

#stacks_in_2253.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa {
  line-height: 34px;
  position: absolute;
  width: 34px;
  height: 34px;
  font-size: 24px;
  top: 0;
  left: 0;
  text-align: center;
}

#stacks_in_2253.expd-card .expd-card-body-wrap .expd-card-content {
  font-size: 12px;
  line-height: 16px;
}

#stacks_in_2253.expd-card .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  color: rgba(66, 66, 66, 1.00);
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}

#stacks_in_2253.expd-card .expd-card-body-wrap .expd-card-content .expd-heading strong {
  color: rgba(88, 88, 88, 1.00);
  font-size: 14px;
  line-height: 16px;
  display: block;
  margin-bottom: 5px;
}

#stacks_in_2253.expd-card .expd-card-body-wrap .expd-card-content p {
  margin: 10px 0px;
}

#stacks_in_2253.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  font-size: 16px;
  line-height: 22px;
}

#stacks_in_2253.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  font-size: 26px;
  line-height: 32px;
}

#stacks_in_2253.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading strong {
  font-size: 20px;
  line-height: 22px;
  margin: 5px 0px 20px 0px;
}

.expd-body {
  overflow: hidden;
}

#stacks_in_2253.expd-card.expd-pre-anim {
  position: fixed;
  z-index: 99;
}

#stacks_in_2253.expd-card.expd-active [data-expanse-close='1'] {
  display: inline-block;
}

#stacks_in_2253.expd-card.expd-active .expd-open[data-expanse-open='1'] {
  display: block;
  cursor: auto;
}

#stacks_in_2253.expd-card.expd-active .expd-card-button[data-expanse-open='1'] {
  display: none;
}

#stacks_in_2253.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  background: rgba(236, 88, 88, 1.00);
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
}

#stacks_in_2253.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  line-height: 34px;
}

#stacks_in_2253.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  content: "\f00d";
}

   @media all and (max-width: 600px) {
  #stacks_in_2253.expd-card.expd-active {
    top: 0.000000px;
    bottom: 0.000000px;
    left: 0.000000px;
    right: 0.000000px;
    width: calc(100vw - 0.000000px);
    height: calc(100vh - 0.000000px);
  }
}


#shady_stack_stacks_in_2254 {
	max-width: none;
	
  margin: 0 auto;
  
}

#shady_stack_shadow_stacks_in_2254 {
	box-shadow:  0rem 0rem 0.8rem 0.4rem rgba(153, 153, 153, 1.00);
	border-radius: 0rem;
	overflow: hidden;
	padding: 1.0rem;
	margin: 1.0rem;
	border: none 0.10rem rgba(51, 51, 51, 1.00);
}

@media print {
	#shady_stack_shadow_stacks_in_2254 {
		margin: 0;
		padding: 0;
		box-shadow: none;
		border-radius: 0px;
	}
}

#stacks_in_2255 {
	margin:  20px;
}
#stacks_in_2262 *,
#stacks_in_2262 *:before,
#stacks_in_2262 *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

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

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

#pro_gallery_thumbnails_stacks_in_2262 .hidden_pro_gallery_item {
  display: none;
}










#pro_gallery_thumbnails_stacks_in_2262 {
  display: grid;
  grid-column-gap: 1.50rem;
  grid-row-gap: 1.50rem;
  
}

@media (min-width: 0px) {
  #pro_gallery_thumbnails_stacks_in_2262 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 576px) {
  #pro_gallery_thumbnails_stacks_in_2262 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 992px) {
  #pro_gallery_thumbnails_stacks_in_2262 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  #pro_gallery_thumbnails_stacks_in_2262 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1400px) {
  #pro_gallery_thumbnails_stacks_in_2262 {
    grid-template-columns: repeat(3, 1fr);
  }
}








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

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






/* Overlay captions */
#pro_gallery_thumbnails_stacks_in_2262 .pro_gallery_item_content {
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  padding: 0.50rem;
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(0, 0, 0, 0.80);
  
  
}

#pro_gallery_thumbnails_stacks_in_2262 .pro_gallery_item_content a,
#pro_gallery_thumbnails_stacks_in_2262 .pro_gallery_item_content button {
  pointer-events: auto;
}








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


#pro_gallery_thumbnails_stacks_in_2262 .pro_gallery_item_link {
  display: inline-block;
  position: relative;
  overflow: visible;
  outline: none;
}

#pro_gallery_thumbnails_stacks_in_2262 .pro_gallery_item_link:focus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0.30rem solid rgba(0, 150, 255, 1.00);
  z-index: 1;
  pointer-events: none;
}


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

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

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

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

@media (min-width: 768px) {
  #pro_gallery_toolbar_stacks_in_2262 {
    flex-direction: row;
    justify-content: space-around;
  }
}

#pro_gallery_live_search_stacks_in_2262,
#pro_gallery_tag_menu_stacks_in_2262,
#pro_gallery_sort_stacks_in_2262 {
  width: 100%;
}

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

#progallery_live_search_box_stacks_in_2262,
#pro_gallery_tag_select_stacks_in_2262,
#pro_gallery_sort_select_stacks_in_2262,
#pro_gallery_pagination_select_stacks_in_2262 {
  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(255, 255, 255, 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_2262,
#pro_gallery_sort_select_stacks_in_2262,
#pro_gallery_pagination_select_stacks_in_2262 {
  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_2262:focus,
#pro_gallery_tag_select_stacks_in_2262:focus,
#pro_gallery_sort_select_stacks_in_2262:focus,
#pro_gallery_pagination_select_stacks_in_2262:focus {
  outline: none;
  border-color: rgba(51, 51, 51, 1.00);
  background-color: rgba(245, 245, 245, 1.00);
  color: rgba(255, 255, 255, 1.00);
}

#pro_gallery_live_search_content_stacks_in_2262 {
  position: relative;
}

#progallery_live_search_box_stacks_in_2262 {
  padding-right: 30px;
}

#pro_gallery_live_search_reset_stacks_in_2262 {
  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_2262 svg {
  pointer-events: none;
  width: 25px;
  height: auto;
}

#pro_gallery_live_search_reset_stacks_in_2262:focus {
  outline: none;
}

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

@media (prefers-color-scheme: dark) {
  #progallery_live_search_box_stacks_in_2262,
  #pro_gallery_tag_select_stacks_in_2262,
  #pro_gallery_sort_select_stacks_in_2262,
  #pro_gallery_pagination_select_stacks_in_2262 {
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(192, 192, 192, 1.00);
    color: rgba(255, 255, 255, 1.00);
    caret-color: rgba(51, 51, 51, 1.00);
  }
  
  #progallery_live_search_box_stacks_in_2262:focus,
  #pro_gallery_tag_select_stacks_in_2262:focus,
  #pro_gallery_sort_select_stacks_in_2262:focus,
  #pro_gallery_pagination_select_stacks_in_2262:focus {
    border-color: rgba(51, 51, 51, 1.00);
    background-color: rgba(245, 245, 245, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

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

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

  

  

  
}

/* Image Counters */



/* Blackout */

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

#pro_gallery_thumbnails_stacks_in_2262 .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_2262 .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_2262 .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_2262 .pro_gallery_hide svg {
    width: auto;
    height: 1.25rem;
}

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

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

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

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

#pro_gallery_thumbnails_stacks_in_2262 li.blackout.reveal .pro_gallery_hide,
#pro_gallery_thumbnails_stacks_in_2262 li.blackout.reveal .pro_gallery_lightbox_trigger,
#pro_gallery_thumbnails_stacks_in_2262 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__bg {
  background: #000000;
}

.pswp__top-bar {
  background-color: rgba(0, 0, 128, 1.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: #FFFFFF;
}

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

.pswp__img {
  border: 0.00rem solid #FFFFFF;
  border-radius: 0.00rem;
  padding: 0.00rem;
}

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


.pswp__dynamic-caption--below {
  left: auto !important;
  width: 100% !important;	
  max-width: none !important;
}

.pswp__dynamic-caption--below > div {
  max-width: 40rem;
  margin: auto;	
}


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

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

.pswp__dynamic-caption {
  background-color: rgba(0, 0, 0, 0.00);
}

.pswp__dynamic-caption,
.pswp__dynamic-caption p,
.pswp__dynamic-caption strong {
  color: rgba(234, 234, 234, 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(255, 255, 255, 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(192, 192, 192, 1.00);
}

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

.pswp__dynamic-caption--mobile p,
.pswp__dynamic-caption--mobile strong {
  color: rgba(234, 234, 234, 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(255, 255, 255, 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(192, 192, 192, 1.00);
}

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

#p-stacks_in_2264 p{    }#p-stacks_in_2264 p.lead{}#p-stacks_in_2264 a{color:var(--link-color);}#p-stacks_in_2264 a:hover{color:var(--link-color-hover); }
#p-stacks_in_2268 p{    }#p-stacks_in_2268 p.lead{}#p-stacks_in_2268 a{color:var(--link-color);}#p-stacks_in_2268 a:hover{color:var(--link-color-hover); }
#p-stacks_in_2272 p{    }#p-stacks_in_2272 p.lead{}#p-stacks_in_2272 a{color:var(--link-color);}#p-stacks_in_2272 a:hover{color:var(--link-color-hover); }

#stacks_in_2272 {
	margin: 0px 0px 20px 0px;
}
#p-stacks_in_2276 p{    }#p-stacks_in_2276 p.lead{}#p-stacks_in_2276 a{color:var(--link-color);}#p-stacks_in_2276 a:hover{color:var(--link-color-hover); }

#stacks_in_2276 {
	margin: 0px 0px 20px 0px;
}
#p-stacks_in_2280 p{    }#p-stacks_in_2280 p.lead{}#p-stacks_in_2280 a{color:var(--link-color);}#p-stacks_in_2280 a:hover{color:var(--link-color-hover); }

#stacks_in_2280 {
	margin: 0px 0px 20px 0px;
}
#p-stacks_in_2284 p{    }#p-stacks_in_2284 p.lead{}#p-stacks_in_2284 a{color:var(--link-color);}#p-stacks_in_2284 a:hover{color:var(--link-color-hover); }

#stacks_in_2284 {
	margin: 0px 0px 20px 0px;
}
#p-stacks_in_2288 p{    }#p-stacks_in_2288 p.lead{}#p-stacks_in_2288 a{color:var(--link-color);}#p-stacks_in_2288 a:hover{color:var(--link-color-hover); }

#stacks_in_2288 {
	margin: 0px 0px 20px 0px;
}
#p-stacks_in_2292 p{    }#p-stacks_in_2292 p.lead{}#p-stacks_in_2292 a{color:var(--link-color);}#p-stacks_in_2292 a:hover{color:var(--link-color-hover); }

#stacks_in_2292 {
	margin: 0px 0px 20px 0px;
}
/* 
 * Simple Text
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.8.2
 */

#simpleText_stacks_in_2298 {
	position: relative;
	color: #333333;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_2298.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_2298.fontSizeInheritOff {
	font-size: 14px;
	line-height: 14px;
}
#simpleText_stacks_in_2298.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_2298.lineHeightOn {
	line-height: 14px;
}
#simpleText_stacks_in_2298.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_2298.inheritOff a, #simpleText_stacks_in_2298.inheritOff a:link {
	color: #169EE6;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_2298.inheritOff a:visited {
	color: #169EE6;
}
#simpleText_stacks_in_2298.inheritOff a:hover {
	color: #FF6600;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_2298.inheritOff a:active {
	color: #FF6600;
}
#simpleText_stacks_in_2298.inheritOff a:focus {
	color: #FF6600;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_2298.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_2298.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_2298.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_2298.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_2298.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* @group Generic Styles */

#ruleStackstacks_in_2300,
#ruleStackstacks_in_2300:before,
#ruleStackstacks_in_2300:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#ruleStackstacks_in_2300 {
	position: relative;
	overflow: hidden;
	margin: 3.00% 0;
	width: %;
}

/*  */

/*  */

/*  */
#ruleStackstacks_in_2300 {
	width: 75%;
	margin-left: auto; margin-right: auto;
}
/*  */

#ruleStackstacks_in_2300 [class^="fa fa-"] {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	text-align: center;
	color: rgba(204, 204, 204, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_2300 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */

/*  */

/*  */
#ruleStackstacks_in_2300 {
	text-align: left;
}

#ruleStackstacks_in_2300:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	left: 0;
	min-height: 2px;
	border-top: 2px solid rgba(255, 0, 0, 1.00);
}

#ruleStackstacks_in_2300 [class^="fa fa-"] {
	visibility: hidden;
}

/*  */
/*  */.item_stacks_in_2191{justify-content:flex-start;overflow:hidden;  }

#stacks_in_1811 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	margin:  5px;
	padding:  5px;
}
.stacks_in_1812 .source-button{ font-size:19px;line-height:48px;border-radius:4px;padding:0 30px;border-width:1px;height:calc(48px + 2px); font-weight:bold; text-transform:none;   }#stacks_in_1812 .button-group-btn:not(:last-child) .source-button{margin-bottom:0}#stacks_in_1812 .button-group-btn:last-child .source-button{}.stacks_in_1812 .source-button,#stacks_in_1812 .s-button-group{display:block}#stacks_in_1812 .s-button-group .button-group-btn{padding-right:0!important;padding-bottom:1px}.stacks_in_1812 a{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 0, 128, 1.00);border-color:rgba(255, 255, 255, 1.00)}.stacks_in_1812 a:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(251, 2, 7, 1.00);border-color:rgba(0, 0, 0, 1.00)}#stacks_in_1812 .s-button-group{justify-content:center}#stacks_in_1812 .s-button-group .button-group-btn:not(:last-child){padding-right:1px}@media only screen and (max-width:0px){#stacks_in_1812 .s-button-group .button-group-btn{padding-right:0!important;padding-left:0}}#stacks_in_1812 .s-button-group .button-group-btn{padding-bottom:1px}
/*
1.0.4.6
- new option to use warehoused image for header image
- added new option to contain the header image instead of cover and crop
- add new header image bg color that shows when containing an image
- added settings to change font sizes
- uses unique data attribute names to prevent conflicts with foundation and other frameworks
- added compatability with assemble
- mobile address bar no longer triggers resize event
*/
#stacks_in_1836.expd-card,
#stacks_in_1836.expd-card * {
  box-sizing: border-box;
}

#stacks_in_1836 .expd-truncate {
  position: relative;
  display: inline-block;
  width: 100%;
}

 #stacks_in_1836.expd-card .click-all {
  height: 100%;
}

  #stacks_in_1836.expd-card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
     background: -moz-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  bottom: 0px;
   pointer-events: none;
}

#stacks_in_1836.expd-card.expd-active:after {
  display: none;
}

 #stacks_in_1836_wrap.wrap-expd-card {
   width: 410px;
  height: 450px;
   margin: 10px auto;
  max-width: 100%;
  position: relative;
}

#stacks_in_1836.expd-card.fadeIn {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

#stacks_in_1836.expd-card {
  font-family: inherit;
  text-align: left;
  will-change: top, left, right, bottom;
    color: rgba(103, 103, 103, 1.00);
     background: rgba(255, 255, 255, 1.00);
    height: 450px;
  width: 410px;
  visibility: hidden;
   border: 0px solid #ccc;
  overflow: hidden;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  border-radius: 0px;
   
}

 #stacks_in_1836.expd-card * {
  pointer-events: none;
}

#stacks_in_1836.expd-card .expd-open,
#stacks_in_1836.expd-card [data-expanse-open='1'],
#stacks_in_1836.expd-card.expd-active * {
  pointer-events: all;
}

 #stacks_in_1836.expd-card h1,
#stacks_in_1836.expd-card h2,
#stacks_in_1836.expd-card h3,
#stacks_in_1836.expd-card h4,
#stacks_in_1836.expd-card h5,
#stacks_in_1836.expd-card h6 {
  font-family: inherit;
}

#stacks_in_1836.expd-card.expd-active {
  position: fixed;
  z-index: 99;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: calc(100vw - 0px);
  height: calc(100vh - 0px);
  overflow: scroll;
  overflow-x: hidden;
  border: 0px solid transparent;
  box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.4);
   border-radius: 0px;
   -webkit-transform-origin: center center;
  transform-origin: center center;
  margin: 0;
  transform: scale(1);
}

#stacks_in_1836.expd-card [data-expanse-close='1'] {
  display: none;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_1836.expd-card [data-expanse-open='1'] {
  display: block;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_1836.expd-card .expd-card-button {
  background: #CCCCCC;
  color: #676767;
   background: rgba(96, 53, 148, 1.00);
  color: rgba(255, 255, 255, 1.00);
   display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, .2);
  transition: 300ms all linear;
  cursor: pointer;
}

#stacks_in_1836.expd-card .expd-card-button[data-expanse-open='1'] {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 4px;
}

#stacks_in_1836.expd-card .expd-card-button:hover,
#stacks_in_1836.expd-card .expd-card-button[data-expanse-open='1']:hover {
  opacity: .8;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
}

#stacks_in_1836.expd-card .expd-card-body-wrap {
  max-width: 960px;
  margin: 0 auto;
}
.fixed-closestacks_in_1836 {
  display: block;
  pointer-events: none;
  transition: opacity 300ms linear;
  
  transition-delay: 300ms;
  
  opacity: 0;
  cursor: pointer;
  z-index: 200;
  position: fixed;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
    color: rgba(103, 103, 103, 1.00);
     background: rgba(255, 255, 255, 1.00);
   border-radius: 4px;
}
.expd-body .fixed-closestacks_in_1836 {
  pointer-events: all;
  
}

#stacks_in_1836.expd-card .expd-card-body-wrap .expd-card-img {
  height: 0px;
  padding-bottom: 56.25%;
  background-color: #bbb;
  background-size: cover;
  background-position: center center;
  
  background-image: url();
  
  
}

#stacks_in_1836.expd-card .expd-card-body-wrap .expd-card-content {
  padding: 18px 16px;
  position: relative;
  perspective: 1200;
}

#stacks_in_1836.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  padding: 20px 20px;
}

#stacks_in_1836.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  position: absolute;
  cursor: pointer;
  height: 40px;
  width: 40px;
  background: rgba(88, 236, 88, 1.00);
  right: 20px;
  top: -20px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
  text-align: center;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  transition: all ease 300ms;
}

#stacks_in_1836.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:hover {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.3);
}

#stacks_in_1836.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:active {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.6);
  transition: all ease 100ms;
}

#stacks_in_1836.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa {
  line-height: 34px;
  position: absolute;
  width: 34px;
  height: 34px;
  font-size: 24px;
  top: 0;
  left: 0;
  text-align: center;
}

#stacks_in_1836.expd-card .expd-card-body-wrap .expd-card-content {
  font-size: 12px;
  line-height: 16px;
}

#stacks_in_1836.expd-card .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  color: rgba(66, 66, 66, 1.00);
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}

#stacks_in_1836.expd-card .expd-card-body-wrap .expd-card-content .expd-heading strong {
  color: rgba(88, 88, 88, 1.00);
  font-size: 14px;
  line-height: 16px;
  display: block;
  margin-bottom: 5px;
}

#stacks_in_1836.expd-card .expd-card-body-wrap .expd-card-content p {
  margin: 10px 0px;
}

#stacks_in_1836.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  font-size: 16px;
  line-height: 22px;
}

#stacks_in_1836.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  font-size: 26px;
  line-height: 32px;
}

#stacks_in_1836.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading strong {
  font-size: 20px;
  line-height: 22px;
  margin: 5px 0px 20px 0px;
}

.expd-body {
  overflow: hidden;
}

#stacks_in_1836.expd-card.expd-pre-anim {
  position: fixed;
  z-index: 99;
}

#stacks_in_1836.expd-card.expd-active [data-expanse-close='1'] {
  display: inline-block;
}

#stacks_in_1836.expd-card.expd-active .expd-open[data-expanse-open='1'] {
  display: block;
  cursor: auto;
}

#stacks_in_1836.expd-card.expd-active .expd-card-button[data-expanse-open='1'] {
  display: none;
}

#stacks_in_1836.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  background: rgba(236, 88, 88, 1.00);
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
}

#stacks_in_1836.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  line-height: 34px;
}

#stacks_in_1836.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  content: "\f00d";
}

   @media all and (max-width: 600px) {
  #stacks_in_1836.expd-card.expd-active {
    top: 0.000000px;
    bottom: 0.000000px;
    left: 0.000000px;
    right: 0.000000px;
    width: calc(100vw - 0.000000px);
    height: calc(100vh - 0.000000px);
  }
}


#shady_stack_stacks_in_1856 {
	max-width: none;
	
  margin: 0 auto;
  
}

#shady_stack_shadow_stacks_in_1856 {
	box-shadow:  0rem 0rem 0.8rem 0.4rem rgba(153, 153, 153, 1.00);
	border-radius: 0rem;
	overflow: hidden;
	padding: 1.0rem;
	margin: 1.0rem;
	border: none 0.10rem rgba(51, 51, 51, 1.00);
}

@media print {
	#shady_stack_shadow_stacks_in_1856 {
		margin: 0;
		padding: 0;
		box-shadow: none;
		border-radius: 0px;
	}
}

#stacks_in_1860 {
	margin:  20px;
}
#stacks_in_1864 *,
#stacks_in_1864 *:before,
#stacks_in_1864 *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

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

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

#pro_gallery_thumbnails_stacks_in_1864 .hidden_pro_gallery_item {
  display: none;
}










#pro_gallery_thumbnails_stacks_in_1864 {
  display: grid;
  grid-column-gap: 1.50rem;
  grid-row-gap: 1.50rem;
  
}

@media (min-width: 0px) {
  #pro_gallery_thumbnails_stacks_in_1864 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 576px) {
  #pro_gallery_thumbnails_stacks_in_1864 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (min-width: 992px) {
  #pro_gallery_thumbnails_stacks_in_1864 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  #pro_gallery_thumbnails_stacks_in_1864 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1400px) {
  #pro_gallery_thumbnails_stacks_in_1864 {
    grid-template-columns: repeat(3, 1fr);
  }
}








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

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






/* Overlay captions */
#pro_gallery_thumbnails_stacks_in_1864 .pro_gallery_item_content {
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  padding: 0.50rem;
  color: rgba(255, 255, 255, 1.00);
  background-color: rgba(0, 0, 0, 0.80);
  
  
}

#pro_gallery_thumbnails_stacks_in_1864 .pro_gallery_item_content a,
#pro_gallery_thumbnails_stacks_in_1864 .pro_gallery_item_content button {
  pointer-events: auto;
}








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


#pro_gallery_thumbnails_stacks_in_1864 .pro_gallery_item_link {
  display: inline-block;
  position: relative;
  overflow: visible;
  outline: none;
}

#pro_gallery_thumbnails_stacks_in_1864 .pro_gallery_item_link:focus::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0.30rem solid rgba(0, 150, 255, 1.00);
  z-index: 1;
  pointer-events: none;
}


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

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

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

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

@media (min-width: 768px) {
  #pro_gallery_toolbar_stacks_in_1864 {
    flex-direction: row;
    justify-content: space-around;
  }
}

#pro_gallery_live_search_stacks_in_1864,
#pro_gallery_tag_menu_stacks_in_1864,
#pro_gallery_sort_stacks_in_1864 {
  width: 100%;
}

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

#progallery_live_search_box_stacks_in_1864,
#pro_gallery_tag_select_stacks_in_1864,
#pro_gallery_sort_select_stacks_in_1864,
#pro_gallery_pagination_select_stacks_in_1864 {
  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(255, 255, 255, 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_1864,
#pro_gallery_sort_select_stacks_in_1864,
#pro_gallery_pagination_select_stacks_in_1864 {
  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_1864:focus,
#pro_gallery_tag_select_stacks_in_1864:focus,
#pro_gallery_sort_select_stacks_in_1864:focus,
#pro_gallery_pagination_select_stacks_in_1864:focus {
  outline: none;
  border-color: rgba(51, 51, 51, 1.00);
  background-color: rgba(245, 245, 245, 1.00);
  color: rgba(255, 255, 255, 1.00);
}

#pro_gallery_live_search_content_stacks_in_1864 {
  position: relative;
}

#progallery_live_search_box_stacks_in_1864 {
  padding-right: 30px;
}

#pro_gallery_live_search_reset_stacks_in_1864 {
  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_1864 svg {
  pointer-events: none;
  width: 25px;
  height: auto;
}

#pro_gallery_live_search_reset_stacks_in_1864:focus {
  outline: none;
}

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

@media (prefers-color-scheme: dark) {
  #progallery_live_search_box_stacks_in_1864,
  #pro_gallery_tag_select_stacks_in_1864,
  #pro_gallery_sort_select_stacks_in_1864,
  #pro_gallery_pagination_select_stacks_in_1864 {
    background-color: rgba(255, 255, 255, 1.00);
    border-color: rgba(192, 192, 192, 1.00);
    color: rgba(255, 255, 255, 1.00);
    caret-color: rgba(51, 51, 51, 1.00);
  }
  
  #progallery_live_search_box_stacks_in_1864:focus,
  #pro_gallery_tag_select_stacks_in_1864:focus,
  #pro_gallery_sort_select_stacks_in_1864:focus,
  #pro_gallery_pagination_select_stacks_in_1864:focus {
    border-color: rgba(51, 51, 51, 1.00);
    background-color: rgba(245, 245, 245, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

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

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

  

  

  
}

/* Image Counters */



/* Blackout */

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

#pro_gallery_thumbnails_stacks_in_1864 .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_1864 .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_1864 .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_1864 .pro_gallery_hide svg {
    width: auto;
    height: 1.25rem;
}

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

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

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

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

#pro_gallery_thumbnails_stacks_in_1864 li.blackout.reveal .pro_gallery_hide,
#pro_gallery_thumbnails_stacks_in_1864 li.blackout.reveal .pro_gallery_lightbox_trigger,
#pro_gallery_thumbnails_stacks_in_1864 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__bg {
  background: #000000;
}

.pswp__top-bar {
  background-color: rgba(0, 0, 128, 1.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: #FFFFFF;
}

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

.pswp__img {
  border: 0.00rem solid #FFFFFF;
  border-radius: 0.00rem;
  padding: 0.00rem;
}

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


.pswp__dynamic-caption--below {
  left: auto !important;
  width: 100% !important;	
  max-width: none !important;
}

.pswp__dynamic-caption--below > div {
  max-width: 40rem;
  margin: auto;	
}


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

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

.pswp__dynamic-caption {
  background-color: rgba(0, 0, 0, 0.00);
}

.pswp__dynamic-caption,
.pswp__dynamic-caption p,
.pswp__dynamic-caption strong {
  color: rgba(234, 234, 234, 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(255, 255, 255, 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(192, 192, 192, 1.00);
}

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

.pswp__dynamic-caption--mobile p,
.pswp__dynamic-caption--mobile strong {
  color: rgba(234, 234, 234, 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(255, 255, 255, 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(192, 192, 192, 1.00);
}

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

#p-stacks_in_1915 p{    }#p-stacks_in_1915 p.lead{}#p-stacks_in_1915 a{color:var(--link-color);}#p-stacks_in_1915 a:hover{color:var(--link-color-hover); }
#p-stacks_in_1866 p{    }#p-stacks_in_1866 p.lead{}#p-stacks_in_1866 a{color:var(--link-color);}#p-stacks_in_1866 a:hover{color:var(--link-color-hover); }
#p-stacks_in_1886 p{    }#p-stacks_in_1886 p.lead{}#p-stacks_in_1886 a{color:var(--link-color);}#p-stacks_in_1886 a:hover{color:var(--link-color-hover); }
#p-stacks_in_1920 p{    }#p-stacks_in_1920 p.lead{}#p-stacks_in_1920 a{color:var(--link-color);}#p-stacks_in_1920 a:hover{color:var(--link-color-hover); }
#p-stacks_in_1925 p{    }#p-stacks_in_1925 p.lead{}#p-stacks_in_1925 a{color:var(--link-color);}#p-stacks_in_1925 a:hover{color:var(--link-color-hover); }
#p-stacks_in_1931 p{    }#p-stacks_in_1931 p.lead{}#p-stacks_in_1931 a{color:var(--link-color);}#p-stacks_in_1931 a:hover{color:var(--link-color-hover); }
#p-stacks_in_1935 p{    }#p-stacks_in_1935 p.lead{}#p-stacks_in_1935 a{color:var(--link-color);}#p-stacks_in_1935 a:hover{color:var(--link-color-hover); }
#p-stacks_in_1940 p{    }#p-stacks_in_1940 p.lead{}#p-stacks_in_1940 a{color:var(--link-color);}#p-stacks_in_1940 a:hover{color:var(--link-color-hover); }
#p-stacks_in_1945 p{    }#p-stacks_in_1945 p.lead{}#p-stacks_in_1945 a{color:var(--link-color);}#p-stacks_in_1945 a:hover{color:var(--link-color-hover); }
#p-stacks_in_1890 p{    }#p-stacks_in_1890 p.lead{}#p-stacks_in_1890 a{color:var(--link-color);}#p-stacks_in_1890 a:hover{color:var(--link-color-hover); }
.item_stacks_in_2195{justify-content:flex-start;overflow:hidden;  }
/* @group Generic Styles */

#ruleStackstacks_in_1759,
#ruleStackstacks_in_1759:before,
#ruleStackstacks_in_1759:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#ruleStackstacks_in_1759 {
	position: relative;
	overflow: hidden;
	margin: 3.00% 0;
	width: %;
}

/*  */
#ruleStackstacks_in_1759 {
	width: 100%;
}
/*  */

/*  */

/*  */

#ruleStackstacks_in_1759 [class^="fa fa-"] {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	text-align: center;
	color: rgba(0, 0, 255, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_1759 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */
#ruleStackstacks_in_1759 {
	text-align: center;
}

#ruleStackstacks_in_1759:before,
#ruleStackstacks_in_1759:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	right: 40px;
	height: 0px;
	border-top: 2px solid rgba(255, 0, 0, 1.00);
}

#ruleStackstacks_in_1759:before {
	left: -50%;
	margin-left: -20px;
}

#ruleStackstacks_in_1759:after {
	left: 50%;
	margin-left: 20px;
}

#ruleStackstacks_in_1759 a {
	left: 50%;
	margin-left: -20px;
}
/*  */

/*  */

/*  */
/*  */
#stacks_in_1808 {
	background-color: rgba(7, 64, 128, 1.00);
	margin:  2px;
	padding:  3px;
}
/* @group Generic Styles */

#ruleStackstacks_in_1115,
#ruleStackstacks_in_1115:before,
#ruleStackstacks_in_1115:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#ruleStackstacks_in_1115 {
	position: relative;
	overflow: hidden;
	margin: 3.00% 0;
	width: %;
}

/*  */

/*  */

/*  */
#ruleStackstacks_in_1115 {
	width: 75%;
	margin-left: auto; margin-right: auto;
}
/*  */

#ruleStackstacks_in_1115 [class^="fa fa-"] {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	text-align: center;
	color: rgba(204, 204, 204, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_1115 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */

/*  */

/*  */
#ruleStackstacks_in_1115 {
	text-align: left;
}

#ruleStackstacks_in_1115:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	left: 0;
	min-height: 2px;
	border-top: 2px solid rgba(255, 0, 0, 1.00);
}

#ruleStackstacks_in_1115 [class^="fa fa-"] {
	visibility: hidden;
}

/*  */
/*  *//*
1.0.4.6
- new option to use warehoused image for header image
- added new option to contain the header image instead of cover and crop
- add new header image bg color that shows when containing an image
- added settings to change font sizes
- uses unique data attribute names to prevent conflicts with foundation and other frameworks
- added compatability with assemble
- mobile address bar no longer triggers resize event
*/
#stacks_in_2136.expd-card,
#stacks_in_2136.expd-card * {
  box-sizing: border-box;
}

#stacks_in_2136 .expd-truncate {
  position: relative;
  display: inline-block;
  width: 100%;
}

 #stacks_in_2136.expd-card .click-all {
  height: 100%;
}

  #stacks_in_2136.expd-card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
     background: -moz-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  bottom: 0px;
   pointer-events: none;
}

#stacks_in_2136.expd-card.expd-active:after {
  display: none;
}

 #stacks_in_2136_wrap.wrap-expd-card {
   width: 1200px;
  height: 750px;
   margin: 10px auto;
  max-width: 100%;
  position: relative;
}

#stacks_in_2136.expd-card.fadeIn {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

#stacks_in_2136.expd-card {
  font-family: inherit;
  text-align: left;
  will-change: top, left, right, bottom;
    color: rgba(103, 103, 103, 1.00);
     background: rgba(255, 255, 255, 1.00);
    height: 750px;
  width: 1200px;
  visibility: hidden;
   border: 0px solid #ccc;
  overflow: hidden;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  border-radius: 0px;
   
}

 #stacks_in_2136.expd-card * {
  pointer-events: none;
}

#stacks_in_2136.expd-card .expd-open,
#stacks_in_2136.expd-card [data-expanse-open='1'],
#stacks_in_2136.expd-card.expd-active * {
  pointer-events: all;
}

 #stacks_in_2136.expd-card h1,
#stacks_in_2136.expd-card h2,
#stacks_in_2136.expd-card h3,
#stacks_in_2136.expd-card h4,
#stacks_in_2136.expd-card h5,
#stacks_in_2136.expd-card h6 {
  font-family: inherit;
}

#stacks_in_2136.expd-card.expd-active {
  position: fixed;
  z-index: 99;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: calc(100vw - 0px);
  height: calc(100vh - 0px);
  overflow: scroll;
  overflow-x: hidden;
  border: 0px solid transparent;
  box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.4);
   border-radius: 0px;
   -webkit-transform-origin: center center;
  transform-origin: center center;
  margin: 0;
  transform: scale(1);
}

#stacks_in_2136.expd-card [data-expanse-close='1'] {
  display: none;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_2136.expd-card [data-expanse-open='1'] {
  display: block;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_2136.expd-card .expd-card-button {
  background: #CCCCCC;
  color: #676767;
   background: rgba(96, 53, 148, 1.00);
  color: rgba(255, 255, 255, 1.00);
   display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, .2);
  transition: 300ms all linear;
  cursor: pointer;
}

#stacks_in_2136.expd-card .expd-card-button[data-expanse-open='1'] {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 4px;
}

#stacks_in_2136.expd-card .expd-card-button:hover,
#stacks_in_2136.expd-card .expd-card-button[data-expanse-open='1']:hover {
  opacity: .8;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
}

#stacks_in_2136.expd-card .expd-card-body-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.fixed-closestacks_in_2136 {
  display: block;
  pointer-events: none;
  transition: opacity 300ms linear;
  
  transition-delay: 300ms;
  
  opacity: 0;
  cursor: pointer;
  z-index: 200;
  position: fixed;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
    color: rgba(103, 103, 103, 1.00);
     background: rgba(255, 255, 255, 1.00);
   border-radius: 4px;
}
.expd-body .fixed-closestacks_in_2136 {
  pointer-events: all;
  
}

#stacks_in_2136.expd-card .expd-card-body-wrap .expd-card-img {
  height: 0px;
  padding-bottom: 56.25%;
  background-color: #bbb;
  background-size: cover;
  background-position: center center;
  
  background-image: url();
  
  
}

#stacks_in_2136.expd-card .expd-card-body-wrap .expd-card-content {
  padding: 18px 16px;
  position: relative;
  perspective: 1200;
}

#stacks_in_2136.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  padding: 20px 20px;
}

#stacks_in_2136.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  position: absolute;
  cursor: pointer;
  height: 40px;
  width: 40px;
  background: rgba(88, 236, 88, 1.00);
  right: 20px;
  top: -20px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
  text-align: center;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  transition: all ease 300ms;
}

#stacks_in_2136.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:hover {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.3);
}

#stacks_in_2136.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:active {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.6);
  transition: all ease 100ms;
}

#stacks_in_2136.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa {
  line-height: 34px;
  position: absolute;
  width: 34px;
  height: 34px;
  font-size: 24px;
  top: 0;
  left: 0;
  text-align: center;
}

#stacks_in_2136.expd-card .expd-card-body-wrap .expd-card-content {
  font-size: 12px;
  line-height: 16px;
}

#stacks_in_2136.expd-card .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  color: rgba(66, 66, 66, 1.00);
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}

#stacks_in_2136.expd-card .expd-card-body-wrap .expd-card-content .expd-heading strong {
  color: rgba(88, 88, 88, 1.00);
  font-size: 14px;
  line-height: 16px;
  display: block;
  margin-bottom: 5px;
}

#stacks_in_2136.expd-card .expd-card-body-wrap .expd-card-content p {
  margin: 10px 0px;
}

#stacks_in_2136.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  font-size: 16px;
  line-height: 22px;
}

#stacks_in_2136.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  font-size: 26px;
  line-height: 32px;
}

#stacks_in_2136.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading strong {
  font-size: 20px;
  line-height: 22px;
  margin: 5px 0px 20px 0px;
}

.expd-body {
  overflow: hidden;
}

#stacks_in_2136.expd-card.expd-pre-anim {
  position: fixed;
  z-index: 99;
}

#stacks_in_2136.expd-card.expd-active [data-expanse-close='1'] {
  display: inline-block;
}

#stacks_in_2136.expd-card.expd-active .expd-open[data-expanse-open='1'] {
  display: block;
  cursor: auto;
}

#stacks_in_2136.expd-card.expd-active .expd-card-button[data-expanse-open='1'] {
  display: none;
}

#stacks_in_2136.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  background: rgba(236, 88, 88, 1.00);
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
}

#stacks_in_2136.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  line-height: 34px;
}

#stacks_in_2136.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  content: "\f00d";
}

   @media all and (max-width: 600px) {
  #stacks_in_2136.expd-card.expd-active {
    top: 0.000000px;
    bottom: 0.000000px;
    left: 0.000000px;
    right: 0.000000px;
    width: calc(100vw - 0.000000px);
    height: calc(100vh - 0.000000px);
  }
}


.stacks_in_1544 .source-button{ font-size:19px;line-height:48px;border-radius:4px;padding:0 30px;border-width:1px;height:calc(48px + 2px); font-weight:bold; text-transform:none;   }#stacks_in_1544 .button-group-btn:not(:last-child) .source-button{margin-bottom:0}#stacks_in_1544 .button-group-btn:last-child .source-button{}.stacks_in_1544 .source-button,#stacks_in_1544 .s-button-group{display:block}#stacks_in_1544 .s-button-group .button-group-btn{padding-right:0!important;padding-bottom:1px}.stacks_in_1544 a{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 0, 128, 1.00);border-color:rgba(255, 255, 255, 1.00)}.stacks_in_1544 a:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(251, 2, 7, 1.00);border-color:rgba(0, 0, 0, 1.00)}#stacks_in_1544 .s-button-group{justify-content:center}#stacks_in_1544 .s-button-group .button-group-btn:not(:last-child){padding-right:1px}@media only screen and (max-width:0px){#stacks_in_1544 .s-button-group .button-group-btn{padding-right:0!important;padding-left:0}}#stacks_in_1544 .s-button-group .button-group-btn{padding-bottom:1px}
/*
1.0.4.6
- new option to use warehoused image for header image
- added new option to contain the header image instead of cover and crop
- add new header image bg color that shows when containing an image
- added settings to change font sizes
- uses unique data attribute names to prevent conflicts with foundation and other frameworks
- added compatability with assemble
- mobile address bar no longer triggers resize event
*/
#stacks_in_2148.expd-card,
#stacks_in_2148.expd-card * {
  box-sizing: border-box;
}

#stacks_in_2148 .expd-truncate {
  position: relative;
  display: inline-block;
  width: 100%;
}

 #stacks_in_2148.expd-card .click-all {
  height: 100%;
}

  #stacks_in_2148.expd-card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
     background: -moz-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  background: -webkit-linear-gradient(top, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 1.00) 50px);
  bottom: 0px;
   pointer-events: none;
}

#stacks_in_2148.expd-card.expd-active:after {
  display: none;
}

 #stacks_in_2148_wrap.wrap-expd-card {
   width: 430px;
  height: 400px;
   margin: 10px auto;
  max-width: 100%;
  position: relative;
}

#stacks_in_2148.expd-card.fadeIn {
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 0ms;
  animation-delay: 0ms;
}

#stacks_in_2148.expd-card {
  font-family: inherit;
  text-align: left;
  will-change: top, left, right, bottom;
    color: rgba(103, 103, 103, 1.00);
     background: rgba(255, 255, 255, 1.00);
    height: 400px;
  width: 430px;
  visibility: hidden;
   border: 0px solid #ccc;
  overflow: hidden;
  -webkit-animation-duration: 300ms;
  animation-duration: 300ms;
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-transform-origin: top left;
  transform-origin: top left;
  border-radius: 0px;
   
}

 #stacks_in_2148.expd-card * {
  pointer-events: none;
}

#stacks_in_2148.expd-card .expd-open,
#stacks_in_2148.expd-card [data-expanse-open='1'],
#stacks_in_2148.expd-card.expd-active * {
  pointer-events: all;
}

 #stacks_in_2148.expd-card h1,
#stacks_in_2148.expd-card h2,
#stacks_in_2148.expd-card h3,
#stacks_in_2148.expd-card h4,
#stacks_in_2148.expd-card h5,
#stacks_in_2148.expd-card h6 {
  font-family: inherit;
}

#stacks_in_2148.expd-card.expd-active {
  position: fixed;
  z-index: 99;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: calc(100vw - 0px);
  height: calc(100vh - 0px);
  overflow: scroll;
  overflow-x: hidden;
  border: 0px solid transparent;
  box-shadow: 0px 10px 25px 5px rgba(0, 0, 0, 0.4);
   border-radius: 0px;
   -webkit-transform-origin: center center;
  transform-origin: center center;
  margin: 0;
  transform: scale(1);
}

#stacks_in_2148.expd-card [data-expanse-close='1'] {
  display: none;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_2148.expd-card [data-expanse-open='1'] {
  display: block;
  cursor: pointer;
  z-index: 199;
}

#stacks_in_2148.expd-card .expd-card-button {
  background: #CCCCCC;
  color: #676767;
   background: rgba(96, 53, 148, 1.00);
  color: rgba(255, 255, 255, 1.00);
   display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, .2);
  transition: 300ms all linear;
  cursor: pointer;
}

#stacks_in_2148.expd-card .expd-card-button[data-expanse-open='1'] {
  position: absolute;
  bottom: 15px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  border-radius: 4px;
}

#stacks_in_2148.expd-card .expd-card-button:hover,
#stacks_in_2148.expd-card .expd-card-button[data-expanse-open='1']:hover {
  opacity: .8;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, .3);
}

#stacks_in_2148.expd-card .expd-card-body-wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.fixed-closestacks_in_2148 {
  display: block;
  pointer-events: none;
  transition: opacity 300ms linear;
  
  transition-delay: 300ms;
  
  opacity: 0;
  cursor: pointer;
  z-index: 200;
  position: fixed;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  font-size: 30px;
  line-height: 40px;
  text-align: center;
    color: rgba(103, 103, 103, 1.00);
     background: rgba(255, 255, 255, 1.00);
   border-radius: 4px;
}
.expd-body .fixed-closestacks_in_2148 {
  pointer-events: all;
  
}

#stacks_in_2148.expd-card .expd-card-body-wrap .expd-card-img {
  height: 0px;
  padding-bottom: 56.25%;
  background-color: #bbb;
  background-size: cover;
  background-position: center center;
  
  background-image: url();
  
  
}

#stacks_in_2148.expd-card .expd-card-body-wrap .expd-card-content {
  padding: 18px 16px;
  position: relative;
  perspective: 1200;
}

#stacks_in_2148.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  padding: 20px 20px;
}

#stacks_in_2148.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  position: absolute;
  cursor: pointer;
  height: 40px;
  width: 40px;
  background: rgba(88, 236, 88, 1.00);
  right: 20px;
  top: -20px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
  text-align: center;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.4);
  transition: all ease 300ms;
}

#stacks_in_2148.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:hover {
  box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.3);
}

#stacks_in_2148.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle:active {
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.6);
  transition: all ease 100ms;
}

#stacks_in_2148.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa {
  line-height: 34px;
  position: absolute;
  width: 34px;
  height: 34px;
  font-size: 24px;
  top: 0;
  left: 0;
  text-align: center;
}

#stacks_in_2148.expd-card .expd-card-body-wrap .expd-card-content {
  font-size: 12px;
  line-height: 16px;
}

#stacks_in_2148.expd-card .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  color: rgba(66, 66, 66, 1.00);
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}

#stacks_in_2148.expd-card .expd-card-body-wrap .expd-card-content .expd-heading strong {
  color: rgba(88, 88, 88, 1.00);
  font-size: 14px;
  line-height: 16px;
  display: block;
  margin-bottom: 5px;
}

#stacks_in_2148.expd-card .expd-card-body-wrap .expd-card-content p {
  margin: 10px 0px;
}

#stacks_in_2148.expd-card.expd-active .expd-card-body-wrap .expd-card-content {
  font-size: 16px;
  line-height: 22px;
}

#stacks_in_2148.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading h2 {
  font-size: 26px;
  line-height: 32px;
}

#stacks_in_2148.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-heading strong {
  font-size: 20px;
  line-height: 22px;
  margin: 5px 0px 20px 0px;
}

.expd-body {
  overflow: hidden;
}

#stacks_in_2148.expd-card.expd-pre-anim {
  position: fixed;
  z-index: 99;
}

#stacks_in_2148.expd-card.expd-active [data-expanse-close='1'] {
  display: inline-block;
}

#stacks_in_2148.expd-card.expd-active .expd-open[data-expanse-open='1'] {
  display: block;
  cursor: auto;
}

#stacks_in_2148.expd-card.expd-active .expd-card-button[data-expanse-open='1'] {
  display: none;
}

#stacks_in_2148.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle {
  background: rgba(236, 88, 88, 1.00);
  color: rgba(255, 255, 255, 1.00);
  border: 3px solid rgba(255, 255, 255, 1.00);
}

#stacks_in_2148.expd-card .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  line-height: 34px;
}

#stacks_in_2148.expd-card.expd-active .expd-card-body-wrap .expd-card-content .expd-card-toggle i.fa.fa-plus:before {
  content: "\f00d";
}

   @media all and (max-width: 600px) {
  #stacks_in_2148.expd-card.expd-active {
    top: 0.000000px;
    bottom: 0.000000px;
    left: 0.000000px;
    right: 0.000000px;
    width: calc(100vw - 0.000000px);
    height: calc(100vh - 0.000000px);
  }
}


.stacks_in_2147 .source-button{ font-size:19px;line-height:48px;border-radius:4px;padding:0 30px;border-width:1px;height:calc(48px + 2px); font-weight:bold; text-transform:none;   }#stacks_in_2147 .button-group-btn:not(:last-child) .source-button{margin-bottom:0}#stacks_in_2147 .button-group-btn:last-child .source-button{}.stacks_in_2147 .source-button,#stacks_in_2147 .s-button-group{display:block}#stacks_in_2147 .s-button-group .button-group-btn{padding-right:0!important;padding-bottom:1px}.stacks_in_2147 a{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 0, 128, 1.00);border-color:rgba(255, 255, 255, 1.00)}.stacks_in_2147 a:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(251, 2, 7, 1.00);border-color:rgba(0, 0, 0, 1.00)}#stacks_in_2147 .s-button-group{justify-content:center}#stacks_in_2147 .s-button-group .button-group-btn:not(:last-child){padding-right:1px}@media only screen and (max-width:0px){#stacks_in_2147 .s-button-group .button-group-btn{padding-right:0!important;padding-left:0}}#stacks_in_2147 .s-button-group .button-group-btn{padding-bottom:1px}
.stacks_in_1753 .source-button{ font-size:11px;line-height:32px;border-radius:4px;padding:0 30px;border-width:1px;height:calc(32px + 2px); font-weight:bold; text-transform:none;   }#stacks_in_1753 .button-group-btn:not(:last-child) .source-button{margin-bottom:0}#stacks_in_1753 .button-group-btn:last-child .source-button{}.stacks_in_1753 .source-button,#stacks_in_1753 .s-button-group{display:block}#stacks_in_1753 .s-button-group .button-group-btn{padding-right:0!important;padding-bottom:1px}.stacks_in_1753 a{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 0, 128, 1.00);border-color:rgba(255, 255, 255, 1.00)}.stacks_in_1753 a:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(251, 2, 7, 1.00);border-color:rgba(0, 0, 0, 1.00)}#stacks_in_1753 .s-button-group{justify-content:center}#stacks_in_1753 .s-button-group .button-group-btn:not(:last-child){padding-right:1px}@media only screen and (max-width:0px){#stacks_in_1753 .s-button-group .button-group-btn{padding-right:0!important;padding-left:0}}#stacks_in_1753 .s-button-group .button-group-btn{padding-bottom:1px}
#divstacks_in_1743 hr{border-top-style:solid;border-top-width:11px;border-top-color:rgba(0, 0, 255, 1.00); width:100%;max-width:100%;margin-top:1.50rem;margin-bottom:1.50rem}


#stacks_out_105 {
  background-color: #FFFFFF;
  background-image: url();
  background-repeat: no-repeat;
  background-position: center center;
  
  background-size: 100% auto;
  
  
  
  
}
/* CaptionOnImage Stack v1.2.5 */#stacks_in_106 {	box-sizing: border-box;}#stacks_in_106 *, #stacks_in_106 *:before, #stacks_in_106 *:after {	box-sizing: inherit;}#stacks_in_106 .coi-wrapper {	position: relative;	margin: 0px;}#stacks_in_106 .coi-wrapper > a {	outline: 0px solid rgba(0, 0, 238, 1.00) !important;	background-color: rgba(0, 0, 238, 0.00);}#stacks_in_106 .coi-wrapper > div {	position: relative;	overflow: hidden;}#stacks_in_106 .coi-wrapper:hover > a,#stacks_in_106 .coi-wrapper:focus-within > a {	outline: 0px solid rgba(255, 255, 0, 1.00) !important;	background-color: rgba(255, 255, 0, 0.00);}#stacks_in_106 .coi-wrapper img {	
	z-index: 0 !important;}/* SHOW EFFECT STATIC */#stacks_in_106 .coi-wrapper:hover img,#stacks_in_106 .coi-wrapper:focus-within img {				}#stacks_in_106 .coi-wrapper > a {	position: absolute;	z-index: 1;	display: block;	width: 100%;	height: 100%;}#stacks_in_106 .coi-inner > a {	position: absolute;	z-index: 1;	display: block;	top: -0px;	right: -0px;	bottom: -0px;	left: -0px;	border-radius: 0px;}#stacks_in_106 .coi-wrapper:hover img a:active {	position: static; /* for foundation? */}#stacks_in_106 .coi-inner {	z-index: 1;	position: absolute;	/* @group SHOW CAPTION both 1 */		/* caption position bottom */	bottom: 0px;			right: 0px;	left: 0px;/* @end */	}#stacks_in_106 .coi-wrapper:hover .coi-inner,#stacks_in_106 .coi-wrapper:focus-within .coi-inner {}#stacks_in_106 .coi-inner,#stacks_in_106 .coi-wrapper:hover .coi-inner {	max-height: 100%;	overflow: hidden;}#stacks_in_106 .coi-wrapper > a,#stacks_in_106 .coi-wrapper img,#stacks_in_106 .coi-wrapper .coi-inner {	-webkit-transition: all 150ms ease;	        transition: all 150ms ease;
}#stacks_in_106 .coi-wrapper .coi-inner p {  margin: 0;}/* @group new caption options *//* show caption both */#stacks_in_106 .coi-inner {			}#stacks_in_106:hover .coi-inner {			}#stacks_in_106 .coi-inner,#stacks_in_106:hover .coi-inner {    border-radius: 0px;    backface-visibility: hidden;}#stacks_in_106 .coi-inner > div > div a {		}#stacks_in_106 .coi-inner > div > div a:visited {		}#stacks_in_106 .coi-inner > div > div a:hover {		}#stacks_in_106 .coi-inner > div > div a:active {		}/* @end *//* End of CaptionOnImage Stack */
#stacks_in_106 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  3px;
	-moz-border-radius:  2px;
	-webkit-border-radius:  2px;
	border-radius:  2px;
	margin: 50px 9px 9px 9px;
	padding:  6px;
}
#shady_stack_stacks_in_110 {
	max-width: none;
	
  margin: 0 auto;
  
}

#shady_stack_shadow_stacks_in_110 {
	box-shadow:  0rem 0rem 0.8rem 0.4rem rgba(153, 153, 153, 1.00);
	border-radius: 0rem;
	overflow: hidden;
	padding: 1.0rem;
	margin: 1.0rem;
	border: none 0.10rem rgba(51, 51, 51, 1.00);
}

@media print {
	#shady_stack_shadow_stacks_in_110 {
		margin: 0;
		padding: 0;
		box-shadow: none;
		border-radius: 0px;
	}
}
/* Centerer styles */
/* Copyright Bryn Owen Design, 2015 */

#stacks_in_116 {
	text-align: center;
	}

.Centerer_stacks_in_116 {
	text-align: center;
	position: relative;
	}

.Centerer_stacks_in_116 div {
	position: relative;
	}

.Centerer_Inner_stacks_in_116 {
	width: 100%;
	position: absolute;
	}


/* Centerer main container div styles */

#Centerer_Stack1_stacks_in_116 {
	
	
	opacity: 1.00;
	
	
	text-align: center !important;
	
	
	}






/* Centerer inner div overrides */

#Centerer_Stack1_stacks_in_116 div {
	display: inline-block;
	float: none !important;
	
	}





/* Centerer inner text overrides for alignment */

#Centerer_Stack1_stacks_in_116 div div {
	
	}




#shady_stack_stacks_in_117 {
	max-width: none;
	
  margin: 0 auto;
  
}

#shady_stack_shadow_stacks_in_117 {
	box-shadow:  0rem 0rem 0.8rem 0.4rem rgba(153, 153, 153, 1.00);
	border-radius: 0rem;
	overflow: hidden;
	padding: 1.0rem;
	margin: 1.0rem;
	border: none 0.10rem rgba(51, 51, 51, 1.00);
}

@media print {
	#shady_stack_shadow_stacks_in_117 {
		margin: 0;
		padding: 0;
		box-shadow: none;
		border-radius: 0px;
	}
}

#stacks_in_118 {
	background-color: rgba(230, 230, 230, 1.00);
}
.stacks_in_123 .desk_board{background-image:url(../rw_common/plugins/stacks/today-images/p1.jpg)}.stacks_in_123 .today_month{border-color:rgba(255, 111, 97, 1.00);border-bottom-color:rgba(119, 0, 0, 1.00);background-color:rgba(249, 96, 82, 1.00);background:linear-gradient(rgba(249, 96, 82, 1.00),rgba(149, 0, 0, 1.00));}.stacks_in_123 .today_inner{box-shadow:1px 1px 5px rgba(0, 0, 0, 1.00)}.stacks_in_123.xsmall .square,.stacks_in_123.xsmall .rounded,.stacks_in_123.xsmall .desk_board{box-shadow:1px 1px 3px rgba(0, 0, 0, 1.00)}.stacks_in_123.small .square,.stacks_in_123.small .rounded,.stacks_in_123.small .desk_board{box-shadow:1px 1px 4px rgba(0, 0, 0, 1.00)}.stacks_in_123.medium .square,.stacks_in_123.medium .rounded,.stacks_in_123.medium .desk_board{box-shadow:1px 1px 5px rgba(0, 0, 0, 1.00)}.stacks_in_123.large .square,.stacks_in_123.large .rounded,.stacks_in_123.large .desk_board{box-shadow:2px 2px 8px rgba(0, 0, 0, 1.00)}.stacks_in_123.xlarge .square,.stacks_in_123.xlarge .rounded,.stacks_in_123.xlarge .desk_board{box-shadow:2px 2px 10px rgba(0, 0, 0, 1.00)}
/* @group Generic Styles */

#ruleStackstacks_in_548,
#ruleStackstacks_in_548:before,
#ruleStackstacks_in_548:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#ruleStackstacks_in_548 {
	position: relative;
	overflow: hidden;
	margin: 3.00% 0;
	width: %;
}

/*  */

/*  */

/*  */
#ruleStackstacks_in_548 {
	width: 75%;
	margin-left: auto; margin-right: auto;
}
/*  */

#ruleStackstacks_in_548 [class^="fa fa-"] {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	text-align: center;
	color: rgba(204, 204, 204, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_548 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */

/*  */

/*  */
#ruleStackstacks_in_548 {
	text-align: left;
}

#ruleStackstacks_in_548:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	left: 0;
	min-height: 2px;
	border-top: 2px solid rgba(255, 0, 0, 1.00);
}

#ruleStackstacks_in_548 [class^="fa fa-"] {
	visibility: hidden;
}

/*  */
/*  */#toggleWrapper_stacks_in_2587 {
	position: relative;
	display: block;
}

#toggleTrigger_stacks_in_2587 {
	padding: 20px;
	margin: 0;
	background: #EAEAEA;
	font-weight: normal;
	display: block;
	position: relative;
	color: #666666;
	text-decoration: none;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	font-size: 100%;
}
	
#toggleTrigger_stacks_in_2587:hover { 
	color: #999999;
	cursor: pointer; 
}

#toggleContainer_stacks_in_2587 {
	display: none;
	margin-top: 5px;
	padding: 20px;
	overflow: hidden;
	background: #EAEAEA;
	color: #666666;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}

@media print {
	#toggleTrigger_stacks_in_2587 a:link:after,
	#toggleTrigger_stacks_in_2587 a:visited:after {
		display: none;
	}
	
	#toggleContainer_stacks_in_2587 {
		display: block !important;
	}
}

#stacks_in_128 {
	background-color: rgba(204, 204, 204, 1.00);
}
#shady_stack_stacks_in_132 {
	max-width: none;
	
  margin: 0 auto;
  
}

#shady_stack_shadow_stacks_in_132 {
	box-shadow:  0rem 0rem 0.8rem 0.4rem rgba(153, 153, 153, 1.00);
	border-radius: 0rem;
	overflow: hidden;
	padding: 1.0rem;
	margin: 1.0rem;
	border: none 0.10rem rgba(51, 51, 51, 1.00);
}

@media print {
	#shady_stack_shadow_stacks_in_132 {
		margin: 0;
		padding: 0;
		box-shadow: none;
		border-radius: 0px;
	}
}
/* 
 * Simple Text
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/simple-text/
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.8.2
 */

#simpleText_stacks_in_133 {
	position: relative;
	color: #333333;
	text-shadow: ;
	-webkit-text-shadow: ;
	-moz-text-shadow: ;
	-o-text-shadow: ;
	-ms-text-shadow: ;
}
#simpleText_stacks_in_133.fontSizeInheritOn {
	font-size: inherit;
}
#simpleText_stacks_in_133.fontSizeInheritOff {
	font-size: 14px;
	line-height: 14px;
}
#simpleText_stacks_in_133.letterSpacingOn {
	letter-spacing: 0px;
}
#simpleText_stacks_in_133.lineHeightOn {
	line-height: 14px;
}
#simpleText_stacks_in_133.rotateOn .insideText {
	-webkit-transform:rotate(270deg);
	-moz-transform:rotate(270deg);
	-o-transform:rotate(270deg);
	-ms-transform:rotate(270deg);
	display: inline-block;
}
#simpleText_stacks_in_133.inheritOff a, #simpleText_stacks_in_133.inheritOff a:link {
	color: #169EE6;
	text-decoration: inherit;
	font-style: inherit;
	font-weight: normal;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;	
}
#simpleText_stacks_in_133.inheritOff a:visited {
	color: #169EE6;
}
#simpleText_stacks_in_133.inheritOff a:hover {
	color: #FF6600;
	transition: 0s all ease-in-out;
	-webkit-transition: 0s all ease-in-out;
	-moz-transition: 0s all ease-in-out;
	-o-transition: 0s all ease-in-out;
	-ms-transition: 0s all ease-in-out;
}
#simpleText_stacks_in_133.inheritOff a:active {
	color: #FF6600;
}
#simpleText_stacks_in_133.inheritOff a:focus {
	color: #FF6600;
	outline: none !important; /*For browsers that add an outline by default*/
} 
#simpleText_stacks_in_133.optJustify {
	text-align: justify;
}

/* iPad Landscape */
@media (max-width : 1024px) {
	#simpleText_stacks_in_133.reFontSizeOn {
		font-size: px;
		line-height: px;
	}
}
/* iPad Portrait */
@media (max-width : 768px) {
	#simpleText_stacks_in_133.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Landscape */
@media (max-width : 480px) {
	#simpleText_stacks_in_133.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* iPhone Portrait */
@media (max-width : 320px) {
	#simpleText_stacks_in_133.reFontSizeOn {
		font-size: 14px;
		line-height: 14px;
	}
}
/* Centerer styles */
/* Copyright Bryn Owen Design, 2015 */

#stacks_in_135 {
	text-align: center;
	}

.Centerer_stacks_in_135 {
	text-align: center;
	position: relative;
	}

.Centerer_stacks_in_135 div {
	position: relative;
	}

.Centerer_Inner_stacks_in_135 {
	width: 100%;
	position: absolute;
	}


/* Centerer main container div styles */

#Centerer_Stack1_stacks_in_135 {
	
	
	opacity: 1.00;
	
	
	text-align: center !important;
	
	
	}






/* Centerer inner div overrides */

#Centerer_Stack1_stacks_in_135 div {
	display: inline-block;
	float: none !important;
	
	}





/* Centerer inner text overrides for alignment */

#Centerer_Stack1_stacks_in_135 div div {
	
	}





#stacks_in_136 {
	margin: 0px 0px 30px 0px;
}
/* Start dooMontage 2 stack each CSS code */.stacks_in_139sl-overlay{position:fixed;left:0;right:0;top:0;bottom:0;background:#000;opacity:.9;display:none;z-index:100006}.stacks_in_139sl-wrapper{z-index:1000000}.stacks_in_139sl-wrapper button{border:0;background:0 0;font-size:24px;padding:0;cursor:pointer}.stacks_in_139sl-wrapper button:hover{opacity:.7}.stacks_in_139sl-wrapper .stacks_in_139sl-close{display:none;position:fixed;right:30px;top:30px;z-index:100015;color:#fff}.stacks_in_139sl-wrapper .stacks_in_139sl-counter{display:none;position:fixed;top:30px;left:30px;z-index:100015;color:#fff}.stacks_in_139sl-wrapper .stacks_in_139sl-navigation{width:100%;display:none}.stacks_in_139sl-wrapper .stacks_in_139sl-navigation button{position:fixed;top:50%;margin-top:-10px;height:30px;width:30px;line-height:30px;text-algin:center;display:block;z-index:100015}.stacks_in_139sl-wrapper .stacks_in_139sl-navigation button.stacks_in_139sl-next{right:40px;color:#fff}.stacks_in_139sl-wrapper .stacks_in_139sl-navigation button.stacks_in_139sl-prev{left:40px;color:#fff}.stacks_in_139sl-wrapper .stacks_in_139sl-image{position:fixed;-ms-touch-action:none;touch-action:none;z-index:1000000}.stacks_in_139sl-wrapper .stacks_in_139sl-image img{margin:0;padding:0;display:block}.stacks_in_139sl-wrapper .stacks_in_139sl-image .stacks_in_139sl-caption{display:none;padding:10px;color:#fff;background:#000;opacity:0;position:absolute;bottom:0;left:0;right:0;-webkit-transition: opacity 300ms ease-out;-moz-transition: opacity 300ms ease-out;-o-transition: opacity 300ms ease-out;transition: opacity 300ms ease-out;}.stacks_in_139sl-wrapper .stacks_in_139sl-image .stacks_in_139sl-download{display:none;position:absolute;bottom:5px;right:5px;color:#fff;z-index:100005}.stacks_in_139sl-spinner{display:none;border:5px solid #333;border-radius:40px;height:40px;left:50%;margin:-20px 0 0 -20px;opacity:0;position:fixed;top:50%;width:40px;z-index:100007;-webkit-animation:pulsate 1s ease-out infinite;-moz-animation:pulsate 1s ease-out infinite;-ms-animation:pulsate 1s ease-out infinite;-o-animation:pulsate 1s ease-out infinite;animation:pulsate 1s ease-out infinite}@-webkit-keyframes pulsate{0%{transform:scale(.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2);opacity:0}}@keyframes pulsate{0%{transform:scale(.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2);opacity:0}}@-moz-keyframes pulsate{0%{transform:scale(.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2);opacity:0}}@-o-keyframes pulsate{0%{transform:scale(.1);opacity:0}50%{opacity:1}100%{transform:scale(1.2);opacity:0}}@-ms-keyframes pulsate{0%,100%{opacity:0}0%{transform:scale(.1)}50%{opacity:1}100%{transform:scale(1.2)}}.stacks_in_139sl-image:hover > .stacks_in_139sl-caption{	opacity: 0.8;}	.stacks_in_139sl-caption{		opacity: 0.8 !important;	}.dooMasterImage, .jg-entry, .followMontageLink{-webkit-transform-style: preserve-3d;-webkit-transform:translate3d(0,0,0);-webkit-backface-visibility: hidden;-webkit-font-smoothing: antialiased}#stacks_in_139Montage{	background: rgba(255, 255, 255, 1.00);	z-index: 100;}#stacks_in_139 .montageImageTitle{	display: none;}.stacks_in_139green{	background: #37332f;	color: #fff;	padding: 0 5px 0 5px;}.stacks_in_139centerbox {	background-color: #ffffff;	-webkit-border-radius: 3px;	padding: 10px;	border: 1px solid #D3D3D3;}#stacks_in_139 .montageImageTitle{	display: none !important;}	#stacks_in_139 .montageImageTitle{		display: block !important;	}/* End Edit Mode UI Style                  *//* ####################################### *//* %[endif]% *//* End dooMontage 2 stack each CSS code *//* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code *//* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code *//* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code *//* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code *//* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code *//* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code *//* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code *//* Start dooMontageImage stack each CSS code *//* Edit Mode UI Style                      *//* ####################################### *//* End dooMontageImage stack each CSS code */#shady_stack_stacks_in_2590 {
	max-width: none;
	
  margin: 0 auto;
  
}

#shady_stack_shadow_stacks_in_2590 {
	box-shadow:  0rem 0rem 0.8rem 0.4rem rgba(153, 153, 153, 1.00);
	border-radius: 0rem;
	overflow: hidden;
	padding: 1.0rem;
	margin: 1.0rem;
	border: none 0.10rem rgba(51, 51, 51, 1.00);
}

@media print {
	#shady_stack_shadow_stacks_in_2590 {
		margin: 0;
		padding: 0;
		box-shadow: none;
		border-radius: 0px;
	}
}

#stacks_in_2591 {
	margin: 10px 0px 30px 0px;
}
