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}
/* 
WHW edits
- Remove retina @media block at the bottom
- Remove '.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading { background: url(icons/loading.gif) no-repeat 50% 50%; }'
- Remove 'background-image: url(icons/next.png);'
- Remove 'background-image: url(icons/prev.png);'
- Remove 'background: url(icons/close.png) no-repeat 5px 5px;'
- Remove default theme
*/


/*
 * Nivo Lightbox v1.2.0
 * http://dev7studios.com/nivo-lightbox
 *
 * Copyright 2013, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

.nivo-lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99998;
	width: 100%;
	height: 100%;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.nivo-lightbox-overlay.nivo-lightbox-open {
	visibility: visible;
	opacity: 1;
}
.nivo-lightbox-wrap  {
	position: absolute;
	top: 10%;
	bottom: 10%;
	left: 10%;
	right: 10%;
}
.nivo-lightbox-content {
	width: 100%;
	height: 100%;
}
.nivo-lightbox-title-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 99999;
	text-align: center;
}
.nivo-lightbox-nav { display: none; }
.nivo-lightbox-prev {
	position: absolute;
	top: 50%;
	left: 0;
}
.nivo-lightbox-next {
	position: absolute;
	top: 50%;
	right: 0;
}
.nivo-lightbox-close {
	position: absolute;
	top: 2%;
	right: 2%;
}

.nivo-lightbox-image { text-align: center; }
.nivo-lightbox-image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	vertical-align: middle;
}

.nivo-lightbox-html5audio {
	width: 100%;
}

.nivo-lightbox-html5video {
	background: #000;
}

.nivo-lightbox-html5audio,
.nivo-lightbox-html5video {
	position: absolute;
	z-index: 99999;
	max-width: 100%;
	max-height: 100%;
	display: inline-block;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	-ms-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	vertical-align: middle;
}

.nivo-lightbox-content iframe {
	width: 100%;
	height: 100%;
}
.nivo-lightbox-inline,
.nivo-lightbox-ajax {
	max-height: 100%;
	overflow: auto;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	/* https://bugzilla.mozilla.org/show_bug.cgi?id=308801 */
}
.nivo-lightbox-error {
	display: table;
	text-align: center;
	width: 100%;
	height: 100%;
	color: #fff;
	text-shadow: 0 1px 1px #000;
}
.nivo-lightbox-error p {
	display: table-cell;
	vertical-align: middle;
}

/* Effects
 **********************************************/
.nivo-lightbox-notouch .nivo-lightbox-effect-fade,
.nivo-lightbox-notouch .nivo-lightbox-effect-fadeScale,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideLeft,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideRight,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideUp,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideDown,
.nivo-lightbox-notouch .nivo-lightbox-effect-fall {
	-webkit-transition: all 0.2s ease-in-out;
	   -moz-transition: all 0.2s ease-in-out;
	    -ms-transition: all 0.2s ease-in-out;
	     -o-transition: all 0.2s ease-in-out;
	        transition: all 0.2s ease-in-out;
}

/* fadeScale */
.nivo-lightbox-effect-fadeScale .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	     -o-transition: all 0.3s;
	        transition: all 0.3s;
	-webkit-transform: scale(0.7);
	   -moz-transform: scale(0.7);
	    -ms-transform: scale(0.7);
	        transform: scale(0.7);
}
.nivo-lightbox-effect-fadeScale.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: scale(1);
	   -moz-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}

/* slideLeft / slideRight / slideUp / slideDown */
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	   -moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	    -ms-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	     -o-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	        transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap {
	-webkit-transform: translateX(-10%);
	   -moz-transform: translateX(-10%);
	    -ms-transform: translateX(-10%);
	        transform: translateX(-10%);
}
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap {
	-webkit-transform: translateX(10%);
	   -moz-transform: translateX(10%);
	    -ms-transform: translateX(10%);
	        transform: translateX(10%);
}
.nivo-lightbox-effect-slideLeft.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateX(0);
	   -moz-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
}
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
	-webkit-transform: translateY(-10%);
	   -moz-transform: translateY(-10%);
	    -ms-transform: translateY(-10%);
	        transform: translateY(-10%);
}
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap {
	-webkit-transform: translateY(10%);
	   -moz-transform: translateY(10%);
	    -ms-transform: translateY(10%);
	        transform: translateY(10%);
}
.nivo-lightbox-effect-slideUp.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateY(0);
	   -moz-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}

/* fall */
.nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall {
	-webkit-perspective: 1000px;
	   -moz-perspective: 1000px;
	        perspective: 1000px;
}
.nivo-lightbox-effect-fall .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	    -ms-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;
	-webkit-transform: translateZ(300px);
	   -moz-transform: translateZ(300px);
	    -ms-transform: translateZ(300px);
	        transform: translateZ(300px);
}
.nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
	    -ms-transform: translateZ(0);
	        transform: translateZ(0);
}.com_bigwhiteduck_stacks_FoundationButtonPlus2_stack{position:relative}.b-p.icon-only{-webkit-box-sizing:content-box!important;box-sizing:content-box!important}.bp-wrap.bp-txt-left>.b-p:not(.icon-only){text-align:left!important}.bp-wrap.bp-txt-center>.b-p:not(.icon-only){text-align:center!important}.bp-wrap.bp-txt-right>.b-p:not(.icon-only){text-align:right!important}.bp-wrap.noclick-active>.b-p.active{pointer-events:none!important} .bp-wrap.inline-wrap{display:inline-block}
 .popdrop-tip-data{display:none} .dropem:not(.popdrop-live):not(.no-pop)[style]{display:none!important}.popdrop-popover-content{display:none}.popdrop-popover-rtl{direction:rtl;text-align:right}html.popdrop-open.popdrop-modal .popdrop-popover.in{max-height:100vh;max-width:99.9%;margin-top:0!important}html.popdrop-open.popdrop-touch .popdrop-popover.in .popdrop-popover-content{overflow-y:scroll;-webkit-overflow-scrolling:touch}.popdrop-popover{position:absolute;top:0;left:0;display:none;padding:1px;text-align:left;white-space:normal;background-color:#fff;background-clip:padding-box;border:1px solid #929292;border:1px solid rgba(0,0,0,0.2);border-radius:6px}.popdrop-popover:not(.popover-flat){-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2)}.popdrop-popover.popover-flat .popdrop-popover-title{border-bottom-width:0}.popdrop-popover.popover-flat .popdrop-close{text-shadow:none}.popdrop-popover.top,.popdrop-popover.top-left,.popdrop-popover.top-right{margin-top:-10px}.popdrop-popover.right,.popdrop-popover.right-top,.popdrop-popover.right-bottom{margin-left:10px}.popdrop-popover.bottom,.popdrop-popover.bottom-left,.popdrop-popover.bottom-right{margin-top:10px}.popdrop-popover.left,.popdrop-popover.left-top,.popdrop-popover.left-bottom{margin-left:-10px}.popdrop-popover.pop{-webkit-transform:scale(0.8);transform:scale(0.8);-webkit-transition-property:-webkit-transform;transition-property:-webkit-transform;transition-property:transform;transition-property:transform,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(0.3,0,0,1.5);transition-timing-function:cubic-bezier(0.3,0,0,1.5);opacity:0}.popdrop-popover.pop-out{-webkit-transition-property:opacity,-webkit-transform;transition-property:opacity,-webkit-transform;transition-property:opacity,transform;transition-property:opacity,transform,-webkit-transform;-webkit-transition-timing-function:linear;transition-timing-function:linear;opacity:0}.popdrop-popover.fade,.popdrop-popover.fade-out{-webkit-transition-property:opacity;transition-property:opacity;-webkit-transition-timing-function:linear;transition-timing-function:linear;opacity:0}.popdrop-popover.out{opacity:0}.popdrop-popover.in{-webkit-transform:none;transform:none;opacity:1}.popdrop-popover .popdrop-popover-content{display:block}.popdrop-popover-inner .popdrop-close{font-family:arial;margin:4px 3px 0 0;float:right;font-size:24px;font-weight:bold;line-height:24px;color:#7b7b7b;opacity:1;text-decoration:none}.popdrop-popover-inner .popdrop-close:after{content:"\00D7";width:.8em;height:.8em;padding:4px;position:relative}.popdrop-popover-title{padding:8px 14px;margin:0;font-size:16px;font-weight:bold;line-height:18px;color:#333;background-color:#fff;border-bottom:1px solid rgba(0,0,0,0.2);border-radius:5px 5px 0 0}.popdrop-popover-content{overflow:auto;display:none}.popdrop-popover-inverse{background-color:#333;color:#fff}.popdrop-popover-inverse .popdrop-popover-title{background:#333;border-bottom:1px solid silver;color:#fff}.popdrop-popover-inverse .popdrop-close{color:#f3f3f3}.popdrop-popover-bluegrey{background-color:#282f39;color:#dadedf}.popdrop-popover-bluegrey .popdrop-popover-title{background:#56666c;border-bottom:1px solid #a9b2b4;color:#dadedf}.popdrop-popover-bluegrey .popdrop-close{color:#f3f3f3}.popdrop-popover-alert{background-color:#fffdfd;color:#413131}.popdrop-popover-alert .popdrop-popover-title{background:#d32f2f;border-bottom:1px solid #eca5a5;color:#fff}.popdrop-popover-alert .popdrop-close{color:#fff}.popdrop-popover-success{background-color:#effefd;color:#313131}.popdrop-popover-success .popdrop-popover-title{background:#11b8ab;border-bottom:1px solid #0e9c91;color:#fff}.popdrop-popover-success .popdrop-close{color:#fff}.popdrop-no-padding .popdrop-popover-content{padding:0}.popdrop-no-padding .list-group-item{border-right:0;border-left:none}.popdrop-no-padding .list-group-item:first-child{border-top:0}.popdrop-no-padding .list-group-item:last-child{border-bottom:0}.popdrop-popover>.popdrop-arrow,.popdrop-popover>.popdrop-arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popdrop-popover>.popdrop-arrow{border-width:11px}.popdrop-popover>.popdrop-arrow:after{border-width:10px;content:""}.popdrop-popover.top>.popdrop-arrow,.popdrop-popover.top-right>.popdrop-arrow,.popdrop-popover.top-left>.popdrop-arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#aaa;border-top-color:rgba(0,0,0,0.2);border-bottom-width:0}.popdrop-popover.top>.popdrop-arrow:after,.popdrop-popover.top-right>.popdrop-arrow:after,.popdrop-popover.top-left>.popdrop-arrow:after{content:" ";bottom:1px;margin-left:-10px;border-top-color:#fff;border-bottom-width:0}.popdrop-popover.right>.popdrop-arrow,.popdrop-popover.right-top>.popdrop-arrow,.popdrop-popover.right-bottom>.popdrop-arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#aaa;border-right-color:rgba(0,0,0,0.2)}
.popdrop-popover.right>.popdrop-arrow:after,.popdrop-popover.right-top>.popdrop-arrow:after,.popdrop-popover.right-bottom>.popdrop-arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popdrop-popover.bottom>.popdrop-arrow,.popdrop-popover.bottom-right>.popdrop-arrow,.popdrop-popover.bottom-left>.popdrop-arrow{top:-11px;left:50%;margin-left:-11px;border-bottom-color:#aaa;border-bottom-color:rgba(0,0,0,0.2);border-top-width:0}.popdrop-popover.bottom>.popdrop-arrow:after,.popdrop-popover.bottom-right>.popdrop-arrow:after,.popdrop-popover.bottom-left>.popdrop-arrow:after{content:" ";top:1px;margin-left:-10px;border-bottom-color:#fff;border-top-width:0}.popdrop-popover.left>.popdrop-arrow,.popdrop-popover.left-top>.popdrop-arrow,.popdrop-popover.left-bottom>.popdrop-arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#aaa;border-left-color:rgba(0,0,0,0.2)}.popdrop-popover.left>.popdrop-arrow:after,.popdrop-popover.left-top>.popdrop-arrow:after,.popdrop-popover.left-bottom>.popdrop-arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.popdrop-popover-inverse.top>.popdrop-arrow,.popdrop-popover-inverse.top>.popdrop-arrow:after,.popdrop-popover-inverse.top-left>.popdrop-arrow,.popdrop-popover-inverse.top-left>.popdrop-arrow:after,.popdrop-popover-inverse.top-right>.popdrop-arrow,.popdrop-popover-inverse.top-right>.popdrop-arrow:after{border-top-color:#333}.popdrop-popover-inverse.right>.popdrop-arrow,.popdrop-popover-inverse.right>.popdrop-arrow:after,.popdrop-popover-inverse.right-top>.popdrop-arrow,.popdrop-popover-inverse.right-top>.popdrop-arrow:after,.popdrop-popover-inverse.right-bottom>.popdrop-arrow,.popdrop-popover-inverse.right-bottom>.popdrop-arrow:after{border-right-color:#333}.popdrop-popover-inverse.bottom>.popdrop-arrow,.popdrop-popover-inverse.bottom>.popdrop-arrow:after,.popdrop-popover-inverse.bottom-left>.popdrop-arrow,.popdrop-popover-inverse.bottom-left>.popdrop-arrow:after,.popdrop-popover-inverse.bottom-right>.popdrop-arrow,.popdrop-popover-inverse.bottom-right>.popdrop-arrow:after{border-bottom-color:#333}.popdrop-popover-inverse.left>.popdrop-arrow,.popdrop-popover-inverse.left>.popdrop-arrow:after,.popdrop-popover-inverse.left-top>.popdrop-arrow,.popdrop-popover-inverse.left-top>.popdrop-arrow:after,.popdrop-popover-inverse.left-bottom>.popdrop-arrow,.popdrop-popover-inverse.left-bottom>.popdrop-arrow:after{border-left-color:#333}.popdrop-popover-bluegrey.top>.popdrop-arrow,.popdrop-popover-bluegrey.top>.popdrop-arrow:after,.popdrop-popover-bluegrey.top-left>.popdrop-arrow,.popdrop-popover-bluegrey.top-left>.popdrop-arrow:after,.popdrop-popover-bluegrey.top-right>.popdrop-arrow,.popdrop-popover-bluegrey.top-right>.popdrop-arrow:after{border-top-color:#282f39}.popdrop-popover-bluegrey.right>.popdrop-arrow,.popdrop-popover-bluegrey.right>.popdrop-arrow:after,.popdrop-popover-bluegrey.right-top>.popdrop-arrow,.popdrop-popover-bluegrey.right-top>.popdrop-arrow:after,.popdrop-popover-bluegrey.right-bottom>.popdrop-arrow,.popdrop-popover-bluegrey.right-bottom>.popdrop-arrow:after{border-right-color:#282f39}.popdrop-popover-bluegrey.bottom>.popdrop-arrow,.popdrop-popover-bluegrey.bottom>.popdrop-arrow:after,.popdrop-popover-bluegrey.bottom-left>.popdrop-arrow,.popdrop-popover-bluegrey.bottom-left>.popdrop-arrow:after,.popdrop-popover-bluegrey.bottom-right>.popdrop-arrow,.popdrop-popover-bluegrey.bottom-right>.popdrop-arrow:after{border-bottom-color:#282f39}.popdrop-popover-bluegrey.left>.popdrop-arrow,.popdrop-popover-bluegrey.left>.popdrop-arrow:after,.popdrop-popover-bluegrey.left-top>.popdrop-arrow,.popdrop-popover-bluegrey.left-top>.popdrop-arrow:after,.popdrop-popover-bluegrey.left-bottom>.popdrop-arrow,.popdrop-popover-bluegrey.left-bottom>.popdrop-arrow:after{border-left-color:#282f39}.popdrop-popover-alert.top>.popdrop-arrow:after,.popdrop-popover-alert.top-left>.popdrop-arrow:after,.popdrop-popover-alert.top-right>.popdrop-arrow:after{border-top-color:#fffdfd}.popdrop-popover-alert.right>.popdrop-arrow:after,.popdrop-popover-alert.right-top>.popdrop-arrow:after,.popdrop-popover-alert.right-bottom>.popdrop-arrow:after{border-right-color:#fffdfd}.popdrop-popover-alert.bottom>.popdrop-arrow:after,.popdrop-popover-alert.bottom-left>.popdrop-arrow:after,.popdrop-popover-alert.bottom-right>.popdrop-arrow:after{border-bottom-color:#fffdfd}.popdrop-popover-alert.left>.popdrop-arrow:after,.popdrop-popover-alert.left-top>.popdrop-arrow:after,.popdrop-popover-alert.left-bottom>.popdrop-arrow:after{border-left-color:#fffdfd}.popdrop-popover-success.top>.popdrop-arrow:after,.popdrop-popover-success.top-left>.popdrop-arrow:after,.popdrop-popover-success.top-right>.popdrop-arrow:after{border-top-color:#effefd}.popdrop-popover-success.right>.popdrop-arrow:after,.popdrop-popover-success.right-top>.popdrop-arrow:after,.popdrop-popover-success.right-bottom>.popdrop-arrow:after{border-right-color:#effefd}
.popdrop-popover-success.bottom>.popdrop-arrow:after,.popdrop-popover-success.bottom-left>.popdrop-arrow:after,.popdrop-popover-success.bottom-right>.popdrop-arrow:after{border-bottom-color:#effefd}.popdrop-popover-success.left>.popdrop-arrow:after,.popdrop-popover-success.left-top>.popdrop-arrow:after,.popdrop-popover-success.left-bottom>.popdrop-arrow:after{border-left-color:#effefd}.popdrop-popover i.icon-refresh:before{content:""}.popdrop-popover i.icon-refresh{display:block;width:30px;height:30px;font-size:20px;top:50%;left:50%;position:absolute;margin-left:-15px;margin-right:-15px}.popdrop-popover-backdrop{width:100%;height:100%;position:fixed;top:0;left:0}.popdrop-popover .dropdown-menu{display:block;position:relative;top:0;border:0;-webkit-box-shadow:none;box-shadow:none;float:none}.popdrop-open .joeyOpenLabel{display:none}.bp-wrap:not(.popdrop-open) .joeyCloseLabel{display:none}.popdrop-open .openIcon{display:none}.bp-wrap:not(.popdrop-open) .closeIcon{display:none}

.com_bigwhiteduck_stacks_paragraphpro_stack p.text-center{text-align:center}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-left{text-align:left}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-right{text-align:right}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-justify{text-align:justify}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-inherit{text-align:inherit}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_paragraphpro_stack p.small-only-text-center{text-align:center}.com_bigwhiteduck_stacks_paragraphpro_stack p.small-only-text-center+ul{display:table;margin:0 auto;text-align:left}}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_paragraphpro_stack p.text-justify.small-only-just-left{text-align:left!important}}
.blu-wrap.bwd{overflow:visible}.blu-wrap.bwd>.blueprint-col{padding-top:.1px;padding-bottom:.1px}.blu-wrap.bwd>.blueprint-col,.blu-wrap.bwd>.blueprint-col>.blucol-content{position:relative}.blu-wrap.bwd>.blueprint-col>.blucol-content[class*="style-pro-stacks"].has-z{z-index:1}.blu-wrap.bwd>.blueprint-col>.blucol-content[class*="style-pro-stacks"]::before{z-index:-1}.blu-wrap.bwd>.blueprint-col>.blucol-content[class*="style-pro-stacks"]:not(.full-ovl)::after{z-index:-1}.blu-wrap.bwd>.blueprint-col .blu-cf::before,.blu-wrap.bwd>.blueprint-col .blu-cf::after{content:" ";display:table}.blu-wrap.bwd>.blueprint-col .blu-cf::after{clear:both}.blu-wrap.bwd>.blueprint-col>.blu-link>a{position:absolute;top:0;bottom:0;left:0;right:0;content:"";z-index:999}
*{min-height:0;min-width:0}.blu-sidebar,.blu-sidebar .flex-col{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.blu-sidebar .flex-col>.stacks_out{width:100%}.blu-sidebar,.blu-sidebar>.blu-side,.blu-sidebar>.blu-side>.blu-side__wrap,.blu-sidebar>.blu-content,.blu-sidebar>.blu-gutter{position:relative}.blu-sidebar.eq-bpo .blu-side__wrap>.blu-wrap,.blu-sidebar.eq-bpo .blu-side__wrap>.blu-wrap>.blueprint-col,.blu-sidebar.eq-bpo .blu-side__wrap>.blu-wrap>.blueprint-col>.blucol-content,.blu-sidebar.eq-bpo .blu-content__wrap>.blu-wrap,.blu-sidebar.eq-bpo .blu-content__wrap>.blu-wrap>.blueprint-col,.blu-sidebar.eq-bpo .blu-content__wrap>.blu-wrap>.blueprint-col>.blucol-content{position:static!important}.blu-sidebar>.blu-gutter{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}
.com_bigwhiteduck_stacks_headerpro_stack .text-center{text-align:center}.com_bigwhiteduck_stacks_headerpro_stack .text-left{text-align:left}.com_bigwhiteduck_stacks_headerpro_stack .text-right{text-align:right}.com_bigwhiteduck_stacks_headerpro_stack .text-justify{text-align:justify}.com_bigwhiteduck_stacks_headerpro_stack .text-inherit{text-align:inherit}
  .theme-version{display:block}.theme-version.number-110,#stacks_in_28_page31{display:none}.stacks_out{overflow:visible !important}.stacks_in{overflow:visible}::-moz-selection{color:rgba(255, 255, 255, 1.00);background:rgba(0, 140, 186, 1.00);}::selection{color:rgba(255, 255, 255, 1.00);background:rgba(0, 140, 186, 1.00);}::-moz-selection{color:rgba(255, 255, 255, 1.00);background:rgba(0, 140, 186, 1.00);}body,.font-family-text{font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;font-weight:400;}h1,.font-family-h1{font-family:"Gordita-Bold",sans-serif;font-style:normal;font-weight:300;}h1 a,.font-family-h1 a{font-family:inherit}h2,h3,h4,h5,h6,.font-family-h2{font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;font-style:normal;font-weight:500;}h2 a,h3 a,h4 a,h5 a,h6 a,.font-family-h2 a{font-family:inherit}body{background-color:#FFFFFF;}.hide-for-touch,.show-for-touch{display:none}.no-js .hide-for-touch{display:block}.vegas-loading{display:none}.vegas-background{-ms-interpolation-mode:bicubic;image-rendering:optimizeQuality;max-width:none !important}.vegas-overlay,.vegas-background{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.hide-overflow{overflow:hidden !important}.columns > .equalizer.small-up{height:100%}@media only screen and (min-width:40.063em){.columns > .equalizer.medium-up{height:100%}}@media only screen and (min-width:62.563em){.columns > .equalizer.large-up{height:100%}}@media only screen and (max-width:40em){.row.collapse-small > .columns{padding-left:0;padding-right:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){.row.collapse-medium > .columns{padding-left:0;padding-right:0}}@media only screen and (max-width:40em){.row .row.collapse-small{margin:0;width:auto}.row .row.collapse-small::before,.row .row.collapse-small::after{content:" ";display:table}.row .row.collapse-small::after{clear:both}}@media only screen and (min-width:40.063em) and (max-width:62.5em){.row .row.collapse-medium{margin:0;width:auto}.row .row.collapse-medium::before,.row .row.collapse-medium::after{content:" ";display:table}.row .row.collapse-medium::after{clear:both}}.column,.columns{padding-left:0.94rem;padding-right:0.94rem}.row .row{margin:0 -0.94rem}.row.divider > .columns:not(:first-child):before{content:" ";margin:0 -0.94rem;position:absolute}@media only screen and (max-width:40em){.row.divider-medium-up > .columns::before,.row.divider-large-up > .columns::before,.small-12::before{display:none}}@media only screen and (min-width:40.063em) and (max-width:62.5em){.row.divider-large-up > .columns::before,.medium-12::before{display:none}}@media only screen and (min-width:62.563em){.large-12:before{display:none}}.floating-body.radius{border-radius:3px}.floating-body.radius > .columns > .stacks_out:first-child > .stacks_in > .top-bar-wrapper:not(.fixed){border-top-right-radius:3px;border-top-left-radius:3px}.floating-body .top-bar-wrapper.contain-to-grid.fixed{max-width:1000px;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%)}.radius{background-clip:padding-box}img{color:#FFFFFF}img.radius{border-radius:3px}img.round{border-radius:1000px}.row{max-width:1000px !important;}.row.max-edge{max-width:100% !important}body{color:rgba(34, 34, 34, 1.00)}a{color:rgba(0, 140, 186, 1.00);-webkit-text-decoration:none;text-decoration:none;font-weight:inherit}a:hover,a:focus{color:rgba(0, 102, 136, 1.00)}a.close,a.close-reveal-modal{text-decoration:none}.alt{color:rgba(255, 255, 255, 1.00)}.alt a{color:rgba(0, 140, 186, 1.00);-webkit-text-decoration:none;text-decoration:none}.alt a:hover,.alt a:focus{color:rgba(0, 102, 136, 1.00)}.alt small{color:rgba(255, 255, 255, 1.00)}h1,h2,h3,h4,h5,h6{color:rgba(34, 34, 34, 1.00);margin-top:0}h1.alt,h2.alt,h3.alt,h4.alt,h5.alt,h6.alt{color:rgba(74, 74, 74, 1.00)}h1.subheader,h2.subheader,h3.subheader,h4.subheader,h5.subheader,h6.subheader{color:rgba(44, 44, 44, 1.00)}h1.subheader.alt,h2.subheader.alt,h3.subheader.alt,h4.subheader.alt,h5.subheader.alt,h6.subheader.alt{color:rgba(96, 96, 96, 1.00)}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-size:40%;color:rgba(44, 44, 44, 1.00)}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:inherit !important}h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover,h6 a:hover{opacity:0.8;color:inherit !important}h1{font-size:1.12rem}h2{font-size:1.69rem}h3{font-size:1.38rem}h4{font-size:1.12rem}h5{font-size:1.12rem}h6{font-size:1.00rem}p,ul li,ol li{font-size:1.00rem}@media only screen and (min-width:40.063em){h1{font-size:2.75rem}h2{font-size:2.31rem}h3{font-size:1.69rem}h4{font-size:1.44rem}h5{font-size:1.12rem}h6{font-size:1.00rem}p,ul li,ol li{font-size:1.00rem}}code{color:rgba(204, 55, 30, 1.00)}hr,blockquote,abbr,acronym,.vcard{border-color:rgba(221, 221, 221, 1.00)}hr.alt,blockquote.alt,abbr.alt,acronym.alt,.vcard.alt{border-color:rgba(221, 221, 221, 1.00)}hr.primary,blockquote.primary,abbr.primary,acronym.primary,.vcard.primary{border-color:rgba(0, 140, 186, 1.00)}hr.primary,blockquote.primary,abbr.primary,acronym.primary,.vcard.primary{border-color:rgba(0, 140, 186, 1.00)}hr.secondary,blockquote.secondary,abbr.secondary,acronym.secondary,.vcard.secondary{border-color:rgba(231, 231, 231, 1.00)}hr.swatch1,blockquote.swatch1,abbr.swatch1,acronym.swatch1,.vcard.swatch1{border-color:rgba(34, 34, 34, 1.00)}hr.swatch2,blockquote.swatch2,abbr.swatch2,acronym.swatch2,.vcard.swatch2{border-color:rgba(34, 34, 34, 1.00)}hr.swatch3,blockquote.swatch3,abbr.swatch3,acronym.swatch3,.vcard.swatch3{border-color:rgba(34, 34, 34, 1.00)}hr.swatch4,blockquote.swatch4,abbr.swatch4,acronym.swatch4,.vcard.swatch4{border-color:rgba(248, 248, 248, 1.00)}hr.swatch5,blockquote.swatch5,abbr.swatch5,acronym.swatch5,.vcard.swatch5{border-color:rgba(248, 248, 248, 1.00)}hr.swatch6,blockquote.swatch6,abbr.swatch6,acronym.swatch6,.vcard.swatch6{border-color:rgba(248, 248, 248, 1.00)}blockquote,blockquote p{color:rgba(44, 44, 44, 1.00)}blockquote cite,blockquote cite a,blockquote p cite,blockquote p cite a{color:rgba(40, 40, 40, 1.00)}blockquote.alt,blockquote.alt p,blockquote p.alt,blockquote p.alt p{color:rgba(255, 255, 255, 1.00)}blockquote.alt cite,blockquote.alt cite a,blockquote.alt p cite,blockquote.alt p cite a,blockquote p.alt cite,blockquote p.alt cite a,blockquote p.alt p cite,blockquote p.alt p cite a{color:rgba(255, 255, 255, 1.00)}.flex-video{margin-bottom:0}.contain-to-grid .top-bar{max-width:1000px}.top-bar .top-bar-section ul li > a.button{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00)}.top-bar .top-bar-section ul li > a.button:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 133, 176, 1.00)}.top-bar .top-bar-section ul li > a.button.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.top-bar .top-bar-section ul li > a.button.secondary:hover{color:rgba(51, 51, 51, 1.00);background-color:rgba(219, 219, 219, 1.00)}.top-bar .top-bar-section ul li > a.button.alert{background-color:rgba(240, 65, 36, 1.00)}.top-bar .top-bar-section ul li > a.button.alert:hover{background-color:rgba(228, 61, 34, 1.00)}.top-bar .top-bar-section ul li > a.button.success{background-color:rgba(67, 172, 106, 1.00)}.top-bar .top-bar-section ul li > a.button.success:hover{background-color:rgba(63, 163, 100, 1.00)}.top-bar .top-bar-section ul li > a.button.radius{border-radius:3px}.top-bar-wrapper.fn-scheme-primary{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00)}.top-bar-wrapper.fn-scheme-primary ul:not(.title-area) ul.dropdown{background-color:rgba(0, 140, 186, 1.00)}.top-bar-wrapper.fn-scheme-primary .site-title,.top-bar-wrapper.fn-scheme-primary .site-title small,.top-bar-wrapper.fn-scheme-primary a:not(.button){color:rgba(255, 255, 255, 1.00) !important}.top-bar-wrapper.fn-scheme-primary .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(255, 255, 255, 1.00),0 7px 0 1px rgba(255, 255, 255, 1.00),0 14px 0 1px rgba(255, 255, 255, 1.00);box-shadow:0 0 0 1px rgba(255, 255, 255, 1.00),0 7px 0 1px rgba(255, 255, 255, 1.00),0 14px 0 1px rgba(255, 255, 255, 1.00)}.top-bar-wrapper.fn-scheme-secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.top-bar-wrapper.fn-scheme-secondary ul:not(.title-area) ul.dropdown{background-color:rgba(231, 231, 231, 1.00)}.top-bar-wrapper.fn-scheme-secondary .site-title,.top-bar-wrapper.fn-scheme-secondary .site-title small,.top-bar-wrapper.fn-scheme-secondary a:not(.button){color:rgba(51, 51, 51, 1.00) !important}.top-bar-wrapper.fn-scheme-secondary .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(51, 51, 51, 1.00),0 7px 0 1px rgba(51, 51, 51, 1.00),0 14px 0 1px rgba(51, 51, 51, 1.00);box-shadow:0 0 0 1px rgba(51, 51, 51, 1.00),0 7px 0 1px rgba(51, 51, 51, 1.00),0 14px 0 1px rgba(51, 51, 51, 1.00)}.top-bar-wrapper.fn-scheme-swatch1{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch1 ul:not(.title-area) ul.dropdown{background-color:rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch1 .site-title,.top-bar-wrapper.fn-scheme-swatch1 .site-title small,.top-bar-wrapper.fn-scheme-swatch1 a:not(.button){color:rgba(248, 248, 248, 1.00) !important}.top-bar-wrapper.fn-scheme-swatch1 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(248, 248, 248, 1.00),0 7px 0 1px rgba(248, 248, 248, 1.00),0 14px 0 1px rgba(248, 248, 248, 1.00);box-shadow:0 0 0 1px rgba(248, 248, 248, 1.00),0 7px 0 1px rgba(248, 248, 248, 1.00),0 14px 0 1px rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch2{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch2 ul:not(.title-area) ul.dropdown{background-color:rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch2 .site-title,.top-bar-wrapper.fn-scheme-swatch2 .site-title small,.top-bar-wrapper.fn-scheme-swatch2 a:not(.button){color:rgba(248, 248, 248, 1.00) !important}.top-bar-wrapper.fn-scheme-swatch2 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(248, 248, 248, 1.00),0 7px 0 1px rgba(248, 248, 248, 1.00),0 14px 0 1px rgba(248, 248, 248, 1.00);box-shadow:0 0 0 1px rgba(248, 248, 248, 1.00),0 7px 0 1px rgba(248, 248, 248, 1.00),0 14px 0 1px rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch3{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch3 ul:not(.title-area) ul.dropdown{background-color:rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch3 .site-title,.top-bar-wrapper.fn-scheme-swatch3 .site-title small,.top-bar-wrapper.fn-scheme-swatch3 a:not(.button){color:rgba(248, 248, 248, 1.00) !important}.top-bar-wrapper.fn-scheme-swatch3 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(248, 248, 248, 1.00),0 7px 0 1px rgba(248, 248, 248, 1.00),0 14px 0 1px rgba(248, 248, 248, 1.00);box-shadow:0 0 0 1px rgba(248, 248, 248, 1.00),0 7px 0 1px rgba(248, 248, 248, 1.00),0 14px 0 1px rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch4{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch4 ul:not(.title-area) ul.dropdown{background-color:rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch4 .site-title,.top-bar-wrapper.fn-scheme-swatch4 .site-title small,.top-bar-wrapper.fn-scheme-swatch4 a:not(.button){color:rgba(34, 34, 34, 1.00) !important}.top-bar-wrapper.fn-scheme-swatch4 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(34, 34, 34, 1.00),0 7px 0 1px rgba(34, 34, 34, 1.00),0 14px 0 1px rgba(34, 34, 34, 1.00);box-shadow:0 0 0 1px rgba(34, 34, 34, 1.00),0 7px 0 1px rgba(34, 34, 34, 1.00),0 14px 0 1px rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch5{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch5 ul:not(.title-area) ul.dropdown{background-color:rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch5 .site-title,.top-bar-wrapper.fn-scheme-swatch5 .site-title small,.top-bar-wrapper.fn-scheme-swatch5 a:not(.button){color:rgba(34, 34, 34, 1.00) !important}.top-bar-wrapper.fn-scheme-swatch5 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(34, 34, 34, 1.00),0 7px 0 1px rgba(34, 34, 34, 1.00),0 14px 0 1px rgba(34, 34, 34, 1.00);box-shadow:0 0 0 1px rgba(34, 34, 34, 1.00),0 7px 0 1px rgba(34, 34, 34, 1.00),0 14px 0 1px rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch6{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.top-bar-wrapper.fn-scheme-swatch6 ul:not(.title-area) ul.dropdown{background-color:rgba(248, 248, 248, 1.00)}.top-bar-wrapper.fn-scheme-swatch6 .site-title,.top-bar-wrapper.fn-scheme-swatch6 .site-title small,.top-bar-wrapper.fn-scheme-swatch6 a:not(.button){color:rgba(34, 34, 34, 1.00) !important}.top-bar-wrapper.fn-scheme-swatch6 .top-bar .toggle-topbar.menu-icon a span::after{-webkit-box-shadow:0 0 0 1px rgba(34, 34, 34, 1.00),0 7px 0 1px rgba(34, 34, 34, 1.00),0 14px 0 1px rgba(34, 34, 34, 1.00);box-shadow:0 0 0 1px rgba(34, 34, 34, 1.00),0 7px 0 1px rgba(34, 34, 34, 1.00),0 14px 0 1px rgba(34, 34, 34, 1.00)}.alert-box{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00);border-color:rgba(0, 133, 176, 1.00)}.alert-box a:not(.close){color:rgba(255, 255, 255, 1.00);text-decoration:underline}.alert-box.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00);border-color:rgba(219, 219, 219, 1.00)}.alert-box.alert{background-color:rgba(240, 65, 36, 1.00);border-color:rgba(228, 61, 34, 1.00)}.alert-box.success{background-color:rgba(67, 172, 106, 1.00);border-color:rgba(63, 163, 100, 1.00)}.alert-box.warning{background-color:rgba(240, 138, 36, 1.00);border-color:rgba(228, 131, 34, 1.00)}.alert-box.info{background-color:rgba(160, 211, 232, 1.00);color:rgba(76, 76, 76, 1.00);border-color:rgba(152, 200, 220, 1.00)}.alert-box.radius{border-radius:3px}.breadcrumbs{background-color:rgba(231, 231, 231, 1.00);border-color:rgba(219, 219, 219, 1.00);color:rgba(51, 51, 51, 1.00)}.breadcrumbs .current a{color:rgba(51, 51, 51, 1.00)}.breadcrumbs.radius{border-radius:3px}.breadcrumbs header{display:inline}.breadcrumbs .fa{font-size:1em}.breadcrumbs .unavailable{color:rgba(51, 51, 51, 1.00)}.breadcrumbs li:before{color:rgba(76, 76, 76, 1.00)}.breadcrumbs *:first-child:before{margin:0 .75rem}.button{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00)}.button:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 133, 176, 1.00)}.button.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.button.secondary:hover{color:rgba(51, 51, 51, 1.00);background-color:rgba(219, 219, 219, 1.00)}.button.alert{background-color:rgba(240, 65, 36, 1.00)}.button.alert:hover{background-color:rgba(228, 61, 34, 1.00)}.button.success{background-color:rgba(67, 172, 106, 1.00)}.button.success:hover{background-color:rgba(63, 163, 100, 1.00)}.button.radius{border-radius:3px}.button.ghost{background-color:transparent;border-width:1px;border-color:rgba(0, 140, 186, 1.00);color:rgba(0, 140, 186, 1.00)}.button.ghost:hover{color:rgba(255, 255, 255, 1.00);border-color:rgba(0, 133, 176, 1.00);background-color:rgba(0, 133, 176, 1.00)}.button.ghost.secondary{border-color:rgba(231, 231, 231, 1.00);color:rgba(231, 231, 231, 1.00)}.button.ghost.secondary:hover{color:rgba(51, 51, 51, 1.00);border-color:rgba(219, 219, 219, 1.00);background-color:rgba(219, 219, 219, 1.00)}.button.ghost.alert{border-color:rgba(240, 65, 36, 1.00);color:rgba(240, 65, 36, 1.00)}.button.ghost.alert:hover{color:rgba(255, 255, 255, 1.00);border-color:rgba(228, 61, 34, 1.00);background-color:rgba(228, 61, 34, 1.00)}.button.ghost.success{border-color:rgba(67, 172, 106, 1.00);color:rgba(67, 172, 106, 1.00)}.button.ghost.success:hover{color:rgba(255, 255, 255, 1.00);border-color:rgba(63, 163, 100, 1.00);background-color:rgba(63, 163, 100, 1.00)}.split.button.radius span{border-top-right-radius:3px;border-bottom-right-radius:3px}.split.button span::after{border-top-color:rgba(255, 255, 255, 1.00)}.split.button.secondary span::after{border-top-color:rgba(51, 51, 51, 1.00)}.button-group.radius > *:first-child,.button-group.radius > *:first-child > a,.button-group.radius > *:first-child > button,.button-group.radius > *:first-child > .button{border-bottom-left-radius:3px;border-top-left-radius:3px}.button-group.radius > *:last-child,.button-group.radius > *:last-child > a,.button-group.radius > *:last-child > button,.button-group.radius > *:last-child > .button{border-top-right-radius:3px;border-bottom-right-radius:3px}.button-group.stack > li .button,.button-group.stack-for-small > li .button{border-top:1px solid rgba(255,255,255,0.5)}.icon-bar{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00)}.icon-bar > .item{cursor:pointer;color:rgba(255, 255, 255, 1.00)}.icon-bar > .item label,.icon-bar > .item i{color:rgba(255, 255, 255, 1.00)}.icon-bar > .item:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 133, 176, 1.00)}.icon-bar.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.icon-bar.secondary > .item{color:rgba(51, 51, 51, 1.00)}.icon-bar.secondary > .item label,.icon-bar.secondary > .item i{color:rgba(51, 51, 51, 1.00)}.icon-bar.secondary > .item:hover{background-color:rgba(219, 219, 219, 1.00);color:rgba(51, 51, 51, 1.00)}form[data-abide] .error label{color:rgba(240, 65, 36, 1.00)}form[data-abide] .error small.error,form[data-abide] .error span.error{background-color:rgba(240, 65, 36, 1.00);color:rgba(255, 255, 255, 1.00)}input[type="radio"]{margin-left:1px}form input[type="text"],form input[type="password"],form input[type="date"],form input[type="datetime"],form input[type="datetime-local"],form input[type="month"],form input[type="week"],form input[type="email"],form input[type="number"],form input[type="search"],form input[type="tel"],form input[type="time"],form input[type="url"],form textarea,form select{font-size:16px;color:rgba(34, 34, 34, 1.00)}form input[type="text"]:focus,form input[type="password"]:focus,form input[type="date"]:focus,form input[type="datetime"]:focus,form input[type="datetime-local"]:focus,form input[type="month"]:focus,form input[type="week"]:focus,form input[type="email"]:focus,form input[type="number"]:focus,form input[type="search"]:focus,form input[type="tel"]:focus,form input[type="time"]:focus,form input[type="url"]:focus,form textarea:focus,form select:focus{border-color:rgba(0, 140, 186, 1.00)}form fieldset{border-color:rgba(221, 221, 221, 1.00)}form legend{background-color:#FFFFFF}form label{color:rgba(40, 40, 40, 1.00)}form.radius input[type="text"],form.radius input[type="password"],form.radius input[type="date"],form.radius input[type="datetime"],form.radius input[type="datetime-local"],form.radius input[type="month"],form.radius input[type="week"],form.radius input[type="email"],form.radius input[type="number"],form.radius input[type="search"],form.radius input[type="tel"],form.radius input[type="time"],form.radius input[type="url"],form.radius textarea,form.radius select,form.radius small.error{border-radius:3px}form.radius span.prefix,form.radius label.prefix{border-bottom-left-radius:3px;border-top-left-radius:3px}form.radius span.postfix,form.radius label.postfix{border-top-right-radius:3px;border-bottom-right-radius:3px}form.radius .input-group > *:first-child,form.radius .input-group > *:first-child *{border-bottom-left-radius:3px;border-top-left-radius:3px}form.radius .input-group > *:last-child,form.radius .input-group > *:last-child *{border-top-right-radius:3px;border-bottom-right-radius:3px}.range-slider,.range-slider.radius,.range-slider.round{background-color:rgba(255, 255, 255, 1.00);border-color:rgba(225, 225, 225, 1.00)}.range-slider .range-slider-handle,.range-slider.radius .range-slider-handle,.range-slider.round .range-slider-handle{background-color:rgba(0, 140, 186, 1.00)}.range-slider .range-slider-handle:hover,.range-slider.radius .range-slider-handle:hover,.range-slider.round .range-slider-handle:hover{background-color:rgba(0, 133, 176, 1.00)}.range-slider .range-slider-active-segment,.range-slider.radius .range-slider-active-segment,.range-slider.round .range-slider-active-segment{background-color:rgba(225, 225, 225, 1.00)}.range-slider.secondary,.range-slider.radius.secondary,.range-slider.round.secondary{background-color:rgba(51, 51, 51, 1.00);border-color:rgba(21, 21, 21, 1.00)}.range-slider.secondary .range-slider-handle,.range-slider.radius.secondary .range-slider-handle,.range-slider.round.secondary .range-slider-handle{background-color:rgba(231, 231, 231, 1.00)}.range-slider.secondary .range-slider-handle:hover,.range-slider.radius.secondary .range-slider-handle:hover,.range-slider.round.secondary .range-slider-handle:hover{background-color:rgba(219, 219, 219, 1.00)}.range-slider.secondary .range-slider-active-segment,.range-slider.radius.secondary .range-slider-active-segment,.range-slider.round.secondary .range-slider-active-segment{background-color:rgba(21, 21, 21, 1.00)}.slider-display{display:block;margin-top:16px}fieldset.switch label{background-color:#e6e6e6}fieldset.switch label::after{background-color:rgba(255, 255, 255, 1.00)}fieldset.switch input:checked + label{background-color:rgba(0, 140, 186, 1.00)}fieldset.switch.secondary label::after{background-color:rgba(51, 51, 51, 1.00)}fieldset.switch.secondary input:checked + label{background-color:rgba(231, 231, 231, 1.00)}fieldset.switch.alert input:checked + label{background-color:rgba(240, 65, 36, 1.00)}fieldset.switch.success input:checked + label{background-color:rgba(67, 172, 106, 1.00)}.label{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00);margin-bottom:0}.label.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.label.alert{background-color:rgba(240, 65, 36, 1.00)}.label.success{background-color:rgba(67, 172, 106, 1.00)}.label.radius{border-radius:3px}.alert-box .close{opacity:0.5}.slideshow-wrapper{min-height:50px;z-index:10}.orbit-container .orbit-bullets li{cursor:pointer;background:rgba(231, 231, 231, 1.00)}.orbit-container .orbit-bullets li.active,.orbit-container .orbit-bullets li:hover{background:rgba(0, 140, 186, 1.00)}.accordion .accordion-navigation > a{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00)}.accordion .accordion-navigation > a:hover{background-color:rgba(0, 133, 176, 1.00)}.accordion .accordion-navigation > a.radius{border-radius:3px}.accordion .accordion-navigation > a.round{border-radius:1000px}.accordion .accordion-navigation.active > a{background-color:rgba(0, 133, 176, 1.00)}.accordion .accordion-navigation > .content{background-color:transparent !important}.accordion.secondary .accordion-navigation > a{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.accordion.secondary .accordion-navigation > a:hover{background-color:rgba(219, 219, 219, 1.00)}.accordion.secondary .accordion-navigation.active > a{background-color:rgba(219, 219, 219, 1.00)}.tabs li.tab-title > a{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00)}.tabs li.tab-title > a:hover{background-color:rgba(0, 133, 176, 1.00)}.tabs li.tab-title.active > a{color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 133, 176, 1.00)}.tabs.secondary li.tab-title > a{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.tabs.secondary li.tab-title > a:hover{background-color:rgba(219, 219, 219, 1.00)}.tabs.secondary li.tab-title.active > a{color:rgba(51, 51, 51, 1.00);background-color:rgba(219, 219, 219, 1.00)}.tabs.swatch1 li.tab-title > a{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.tabs.swatch1 li.tab-title > a:hover{background-color:rgba(32, 32, 32, 1.00)}.tabs.swatch1 li.tab-title.active > a{color:rgba(248, 248, 248, 1.00);background-color:rgba(32, 32, 32, 1.00)}.tabs.swatch2 li.tab-title > a{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.tabs.swatch2 li.tab-title > a:hover{background-color:rgba(32, 32, 32, 1.00)}.tabs.swatch2 li.tab-title.active > a{color:rgba(248, 248, 248, 1.00);background-color:rgba(32, 32, 32, 1.00)}.tabs.swatch3 li.tab-title > a{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.tabs.swatch3 li.tab-title > a:hover{background-color:rgba(32, 32, 32, 1.00)}.tabs.swatch3 li.tab-title.active > a{color:rgba(248, 248, 248, 1.00);background-color:rgba(32, 32, 32, 1.00)}.tabs.swatch4 li.tab-title > a{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.tabs.swatch4 li.tab-title > a:hover{background-color:rgba(235, 235, 235, 1.00)}.tabs.swatch4 li.tab-title.active > a{color:rgba(34, 34, 34, 1.00);background-color:rgba(235, 235, 235, 1.00)}.tabs.swatch5 li.tab-title > a{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.tabs.swatch5 li.tab-title > a:hover{background-color:rgba(235, 235, 235, 1.00)}.tabs.swatch5 li.tab-title.active > a{color:rgba(34, 34, 34, 1.00);background-color:rgba(235, 235, 235, 1.00)}.tabs.swatch6 li.tab-title > a{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.tabs.swatch6 li.tab-title > a:hover{background-color:rgba(235, 235, 235, 1.00)}.tabs.swatch6 li.tab-title.active > a{color:rgba(34, 34, 34, 1.00);background-color:rgba(235, 235, 235, 1.00)}.tabs.radius li.tab-title:first-child a{border-bottom-left-radius:3px;border-top-left-radius:3px}.tabs.radius li.tab-title:last-child a{border-top-right-radius:3px;border-bottom-right-radius:3px}.th.radius{border-radius:3px}.th:hover,.th:focus{-webkit-box-shadow:0 0 6px 1px rgba(0, 70, 93, 1.00);box-shadow:0 0 6px 1px rgba(0, 70, 93, 1.00)}.f-dropdown,.f-dropdown.content{background-color:rgba(255, 255, 255, 1.00);border-color:rgba(204, 204, 204, 1.00);color:rgba(51, 51, 51, 1.00)}.f-dropdown::before,.f-dropdown.content::before{border-color:transparent transparent rgba(255, 255, 255, 1.00) transparent}.f-dropdown::after,.f-dropdown.content::after{border-color:transparent transparent rgba(204, 204, 204, 1.00) transparent}.f-dropdown li a,.f-dropdown.content li a{color:rgba(51, 51, 51, 1.00)}.f-dropdown li:hover,.f-dropdown.content li:hover{background-color:rgba(0,0,0,0.1)}.f-dropdown.radius,.f-dropdown.content.radius{border-radius:3px}.tooltip{border-radius:3px;background-color:rgba(51, 51, 51, 1.00);color:rgba(255, 255, 255, 1.00)}.panel{background-color:rgba(242, 242, 242, 1.00);border-color:rgba(219, 219, 219, 1.00)}.panel.radius{border-radius:3px}.panel p{color:rgba(34, 34, 34, 1.00)}.panel p a{color:rgba(0, 140, 186, 1.00)}.panel p.alt{color:rgba(255, 255, 255, 1.00)}.panel p.alt a{color:rgba(0, 140, 186, 1.00)}.panel p.alt a:hover{color:rgba(0, 102, 136, 1.00)}.panel p.alt small{color:rgba(255, 255, 255, 1.00)}.panel h1,.panel h2,.panel h3,.panel h4,.panel h5,.panel h6{color:rgba(34, 34, 34, 1.00)}.panel h1.alt,.panel h2.alt,.panel h3.alt,.panel h4.alt,.panel h5.alt,.panel h6.alt{color:rgba(74, 74, 74, 1.00)}.panel h1.subheader,.panel h2.subheader,.panel h3.subheader,.panel h4.subheader,.panel h5.subheader,.panel h6.subheader{color:rgba(44, 44, 44, 1.00)}.panel h1.subheader.alt,.panel h2.subheader.alt,.panel h3.subheader.alt,.panel h4.subheader.alt,.panel h5.subheader.alt,.panel h6.subheader.alt{color:rgba(96, 96, 96, 1.00)}.pricing-table.primary .title{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00)}.pricing-table.primary .price{color:rgba(34, 34, 34, 1.00)}.pricing-table.primary .description{color:rgba(34, 34, 34, 1.00)}.pricing-table.primary .bullet-item{color:rgba(34, 34, 34, 1.00)}.pricing-table.secondary .title{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.pricing-table.secondary .price{color:rgba(34, 34, 34, 1.00)}.pricing-table.secondary .description{color:rgba(34, 34, 34, 1.00)}.pricing-table.secondary .bullet-item{color:rgba(34, 34, 34, 1.00)}.pricing-table.radius{border-radius:3px}.pricing-table.radius .title{border-top-right-radius:3px;border-top-left-radius:3px}.pricing-table.radius .cta-button{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.side-nav li a:not(.button){color:rgba(0, 140, 186, 1.00)}.side-nav li a:not(.button):hover{background-color:rgba(243, 243, 243, 1.00);color:rgba(0, 102, 136, 1.00)}.side-nav li.active > a:first-child:not(.button){color:rgba(0, 140, 186, 1.00)}.side-nav li.active:not(.has-dropdown) a:not(.button){color:rgba(0, 119, 158, 1.00)}.side-nav header{color:rgba(34, 34, 34, 1.00);margin-top:1rem;margin-bottom:0.5rem}.side-nav label{color:rgba(40, 40, 40, 1.00)}.side-nav li.divider{border-top-color:rgba(221, 221, 221, 1.00)}.side-nav.alt li a:not(.button){color:rgba(0, 140, 186, 1.00)}.side-nav.alt li a:not(.button):hover{background-color:rgba(243, 243, 243, 1.00);color:rgba(0, 102, 136, 1.00)}.side-nav.alt li.active > a:first-child:not(.button){color:rgba(0, 140, 186, 1.00)}.side-nav.alt li.active:not(.has-dropdown) a:not(.button){color:rgba(0, 119, 158, 1.00)}.side-nav.alt header{color:rgba(255, 255, 255, 1.00)}.side-nav.alt label{color:rgba(255, 255, 255, 1.00)}.side-nav.alt li.divider{border-top-color:rgba(221, 221, 221, 1.00)}.sub-nav dt,.sub-nav dd,.sub-nav li{float:none;display:inline-block}.sub-nav dt a:not(.button),.sub-nav dd a:not(.button),.sub-nav li a:not(.button){color:rgba(0, 140, 186, 1.00)}.sub-nav dt a:not(.button):hover,.sub-nav dd a:not(.button):hover,.sub-nav li a:not(.button):hover{color:rgba(0, 133, 176, 1.00)}.sub-nav dt.active a:not(.button),.sub-nav dd.active a:not(.button),.sub-nav li.active a:not(.button){color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 140, 186, 1.00)}.sub-nav dt.active a:not(.button):hover,.sub-nav dd.active a:not(.button):hover,.sub-nav li.active a:not(.button):hover{background-color:rgba(0, 133, 176, 1.00)}.sub-nav dt.active a:not(.button).secondary,.sub-nav dd.active a:not(.button).secondary,.sub-nav li.active a:not(.button).secondary{color:rgba(51, 51, 51, 1.00);background-color:rgba(231, 231, 231, 1.00)}.sub-nav dt.active a:not(.button).secondary:hover,.sub-nav dd.active a:not(.button).secondary:hover,.sub-nav li.active a:not(.button).secondary:hover{background-color:rgba(219, 219, 219, 1.00)}.sub-nav.secondary dt a:not(.button),.sub-nav.secondary dd a:not(.button),.sub-nav.secondary li a:not(.button){color:rgba(231, 231, 231, 1.00)}.sub-nav.secondary dt a:not(.button):hover,.sub-nav.secondary dd a:not(.button):hover,.sub-nav.secondary li a:not(.button):hover{color:rgba(219, 219, 219, 1.00)}.sub-nav.secondary dt.active a:not(.button),.sub-nav.secondary dd.active a:not(.button),.sub-nav.secondary li.active a:not(.button){color:rgba(51, 51, 51, 1.00);background-color:rgba(231, 231, 231, 1.00)}.sub-nav.secondary dt.active a:not(.button):hover,.sub-nav.secondary dd.active a:not(.button):hover,.sub-nav.secondary li.active a:not(.button):hover{background-color:rgba(219, 219, 219, 1.00)}.reveal-modal{z-index:9999;background-color:rgba(255, 255, 255, 1.00);color:rgba(51, 51, 51, 1.00);border:none;border-radius:0}@media screen and (max-width:39.9375em){.reveal-modal{border-radius:0 !important}}.reveal-modal.fullscreen{position:fixed;top:0px !important;width:100vw;height:100vh;overflow-y:scroll}.reveal-modal.fullscreen .close-reveal-modal{position:fixed}.reveal-modal.radius{border-radius:3px}.reveal-modal .close-reveal-modal{color:rgba(170, 170, 170, 1.00);font-weight:normal;z-index:99999}.reveal-modal-bg{z-index:9998;background:rgba(0, 0, 0, 0.45)}nav.inline-nav ul.inline-list{margin-left:0}nav.inline-nav ul.inline-list li{float:none;display:inline-block}nav.inline-nav ul.inline-list li:first-child{margin-left:0}nav.inline-nav ul.inline-list li.active{border-width:0 0 1px 0;border-style:solid;border-bottom-color:rgba(0, 140, 186, 1.00)}nav.inline-nav ul.inline-list.alt li.active{border-bottom-color:rgba(0, 140, 186, 1.00)}.clearing-blackout{background-color:rgba(255, 255, 255, 1.00)}.clearing-assembled .clearing-container .visible-img,.clearing-assembled .clearing-container .clearing-caption{background-color:rgba(255, 255, 255, 1.00)}.clearing-assembled .clearing-container .carousel{background-color:rgba(242, 242, 242, 1.00)}.clearing-assembled .clearing-container .clearing-close{color:rgba(170, 170, 170, 1.00)}.clearing-assembled .clearing-container .clearing-close:hover,.clearing-assembled .clearing-container .clearing-close:focus{color:rgba(170, 170, 170, 1.00)}.clearing-assembled .clearing-container .clearing-main-next > span{border-color:transparent;border-left-color:rgba(51, 51, 51, 1.00)}.clearing-assembled .clearing-container .clearing-main-prev > span{border-color:transparent;border-right-color:rgba(51, 51, 51, 1.00)}.clearing-assembled .clearing-container .clearing-caption{color:rgba(51, 51, 51, 1.00)}.copyright{color:rgba(34, 34, 34, 1.00);font-size:0.9rem}.copyright a{color:rgba(0, 140, 186, 1.00)}.copyright a:hover{color:rgba(0, 102, 136, 1.00)}.stacks_s_hidden,.stacks_m_hidden,.stacks_l_hidden{display:block !important}@media only screen and (max-width:40em){.stacks_s_hidden{display:none !important}}@media only screen and (min-width:40.063em) and (max-width:62.5em){.stacks_m_hidden{display:none !important}}@media only screen and (min-width:62.563em){.stacks_l_hidden{display:none !important}}.fn-text-header{color:rgba(34, 34, 34, 1.00)}.fn-text-link a{color:rgba(0, 140, 186, 1.00)}.fn-text-link a:hover{color:rgba(0, 102, 136, 1.00)}.fn-text-text{color:rgba(34, 34, 34, 1.00)}.fn-text-text p,.fn-text-text div{color:rgba(34, 34, 34, 1.00)}.fn-text-accent{color:rgba(221, 221, 221, 1.00)}.fn-text-code-text{color:rgba(204, 55, 30, 1.00)}.fn-text-header-alt{color:rgba(74, 74, 74, 1.00)}.fn-text-link-alt a{color:rgba(0, 140, 186, 1.00)}.fn-text-link-alt a:hover{color:rgba(0, 102, 136, 1.00)}.fn-text-accent-alt{color:rgba(221, 221, 221, 1.00)}.fn-text-primary{color:rgba(0, 140, 186, 1.00)}.fn-text-primary-text{color:rgba(255, 255, 255, 1.00)}.fn-text-primary-text p,.fn-text-primary-text div{color:rgba(255, 255, 255, 1.00)}.fn-text-secondary{color:rgba(231, 231, 231, 1.00)}.fn-text-secondary-text{color:rgba(51, 51, 51, 1.00)}.fn-text-secondary-text p,.fn-text-secondary-text div{color:rgba(51, 51, 51, 1.00)}.fn-text-alert{color:rgba(240, 65, 36, 1.00)}.fn-text-success{color:rgba(67, 172, 106, 1.00)}.fn-text-warning{color:rgba(240, 138, 36, 1.00)}.fn-text-info{color:rgba(160, 211, 232, 1.00)}.fn-text-modal{color:rgba(255, 255, 255, 1.00)}.fn-text-modal-close{color:rgba(170, 170, 170, 1.00)}.fn-text-modal-text{color:rgba(51, 51, 51, 1.00)}.fn-text-modal-text p,.fn-text-modal-text div{color:rgba(51, 51, 51, 1.00)}.fn-text-text-alt{color:rgba(255, 255, 255, 1.00)}.fn-text-text-alt p,.fn-text-text-alt div{color:rgba(255, 255, 255, 1.00)}.fn-text-text-alt h1,.fn-text-text-alt h2,.fn-text-text-alt h3,.fn-text-text-alt h4,.fn-text-text-alt h5,.fn-text-text-alt h6{color:rgba(74, 74, 74, 1.00)}.fn-text-text-alt h1 a,.fn-text-text-alt h2 a,.fn-text-text-alt h3 a,.fn-text-text-alt h4 a,.fn-text-text-alt h5 a,.fn-text-text-alt h6 a{color:rgba(74, 74, 74, 1.00)}.fn-text-text-alt h1 a:hover,.fn-text-text-alt h2 a:hover,.fn-text-text-alt h3 a:hover,.fn-text-text-alt h4 a:hover,.fn-text-text-alt h5 a:hover,.fn-text-text-alt h6 a:hover{color:rgba(96, 96, 96, 1.00)}.fn-text-text-alt h1 small,.fn-text-text-alt h2 small,.fn-text-text-alt h3 small,.fn-text-text-alt h4 small,.fn-text-text-alt h5 small,.fn-text-text-alt h6 small{color:rgba(74, 74, 74, 1.00)}.fn-text-text-alt a{color:rgba(0, 140, 186, 1.00)}.fn-text-text-alt a:hover{color:rgba(0, 102, 136, 1.00)}.fn-text-sw1c1{color:rgba(34, 34, 34, 1.00)}.fn-text-sw1c1 p,.fn-text-sw1c1 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw1c1 h1,.fn-text-sw1c1 h2,.fn-text-sw1c1 h3,.fn-text-sw1c1 h4,.fn-text-sw1c1 h5,.fn-text-sw1c1 h6,.fn-text-sw1c1 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw1c1 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-text-sw1c2{color:rgba(248, 248, 248, 1.00)}.fn-text-sw1c2 p,.fn-text-sw1c2 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw1c2 h1,.fn-text-sw1c2 h2,.fn-text-sw1c2 h3,.fn-text-sw1c2 h4,.fn-text-sw1c2 h5,.fn-text-sw1c2 h6,.fn-text-sw1c2 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw1c2 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw2c1{color:rgba(34, 34, 34, 1.00)}.fn-text-sw2c1 p,.fn-text-sw2c1 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw2c1 h1,.fn-text-sw2c1 h2,.fn-text-sw2c1 h3,.fn-text-sw2c1 h4,.fn-text-sw2c1 h5,.fn-text-sw2c1 h6,.fn-text-sw2c1 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw2c1 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-text-sw2c2{color:rgba(248, 248, 248, 1.00)}.fn-text-sw2c2 p,.fn-text-sw2c2 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw2c2 h1,.fn-text-sw2c2 h2,.fn-text-sw2c2 h3,.fn-text-sw2c2 h4,.fn-text-sw2c2 h5,.fn-text-sw2c2 h6,.fn-text-sw2c2 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw2c2 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw3c1{color:rgba(34, 34, 34, 1.00)}.fn-text-sw3c1 p,.fn-text-sw3c1 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw3c1 h1,.fn-text-sw3c1 h2,.fn-text-sw3c1 h3,.fn-text-sw3c1 h4,.fn-text-sw3c1 h5,.fn-text-sw3c1 h6,.fn-text-sw3c1 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw3c1 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-text-sw3c2{color:rgba(248, 248, 248, 1.00)}.fn-text-sw3c2 p,.fn-text-sw3c2 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw3c2 h1,.fn-text-sw3c2 h2,.fn-text-sw3c2 h3,.fn-text-sw3c2 h4,.fn-text-sw3c2 h5,.fn-text-sw3c2 h6,.fn-text-sw3c2 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw3c2 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw4c1{color:rgba(248, 248, 248, 1.00)}.fn-text-sw4c1 p,.fn-text-sw4c1 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw4c1 h1,.fn-text-sw4c1 h2,.fn-text-sw4c1 h3,.fn-text-sw4c1 h4,.fn-text-sw4c1 h5,.fn-text-sw4c1 h6,.fn-text-sw4c1 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw4c1 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw4c2{color:rgba(34, 34, 34, 1.00)}.fn-text-sw4c2 p,.fn-text-sw4c2 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw4c2 h1,.fn-text-sw4c2 h2,.fn-text-sw4c2 h3,.fn-text-sw4c2 h4,.fn-text-sw4c2 h5,.fn-text-sw4c2 h6,.fn-text-sw4c2 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw4c2 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-text-sw5c1{color:rgba(248, 248, 248, 1.00)}.fn-text-sw5c1 p,.fn-text-sw5c1 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw5c1 h1,.fn-text-sw5c1 h2,.fn-text-sw5c1 h3,.fn-text-sw5c1 h4,.fn-text-sw5c1 h5,.fn-text-sw5c1 h6,.fn-text-sw5c1 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw5c1 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw5c2{color:rgba(34, 34, 34, 1.00)}.fn-text-sw5c2 p,.fn-text-sw5c2 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw5c2 h1,.fn-text-sw5c2 h2,.fn-text-sw5c2 h3,.fn-text-sw5c2 h4,.fn-text-sw5c2 h5,.fn-text-sw5c2 h6,.fn-text-sw5c2 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw5c2 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-text-sw6c1{color:rgba(248, 248, 248, 1.00)}.fn-text-sw6c1 p,.fn-text-sw6c1 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw6c1 h1,.fn-text-sw6c1 h2,.fn-text-sw6c1 h3,.fn-text-sw6c1 h4,.fn-text-sw6c1 h5,.fn-text-sw6c1 h6,.fn-text-sw6c1 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw6c1 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw6c2{color:rgba(34, 34, 34, 1.00)}.fn-text-sw6c2 p,.fn-text-sw6c2 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw6c2 h1,.fn-text-sw6c2 h2,.fn-text-sw6c2 h3,.fn-text-sw6c2 h4,.fn-text-sw6c2 h5,.fn-text-sw6c2 h6,.fn-text-sw6c2 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw6c2 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw1c1{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw1c1 p,.panel .fn-text-sw1c1 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw1c1 h1,.panel .fn-text-sw1c1 h2,.panel .fn-text-sw1c1 h3,.panel .fn-text-sw1c1 h4,.panel .fn-text-sw1c1 h5,.panel .fn-text-sw1c1 h6,.panel .fn-text-sw1c1 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw1c1 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw1c2{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw1c2 p,.panel .fn-text-sw1c2 div{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw1c2 h1,.panel .fn-text-sw1c2 h2,.panel .fn-text-sw1c2 h3,.panel .fn-text-sw1c2 h4,.panel .fn-text-sw1c2 h5,.panel .fn-text-sw1c2 h6,.panel .fn-text-sw1c2 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw1c2 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw2c1{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw2c1 p,.panel .fn-text-sw2c1 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw2c1 h1,.panel .fn-text-sw2c1 h2,.panel .fn-text-sw2c1 h3,.panel .fn-text-sw2c1 h4,.panel .fn-text-sw2c1 h5,.panel .fn-text-sw2c1 h6,.panel .fn-text-sw2c1 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw2c1 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw2c2{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw2c2 p,.panel .fn-text-sw2c2 div{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw2c2 h1,.panel .fn-text-sw2c2 h2,.panel .fn-text-sw2c2 h3,.panel .fn-text-sw2c2 h4,.panel .fn-text-sw2c2 h5,.panel .fn-text-sw2c2 h6,.panel .fn-text-sw2c2 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw2c2 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw3c1{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw3c1 p,.panel .fn-text-sw3c1 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw3c1 h1,.panel .fn-text-sw3c1 h2,.panel .fn-text-sw3c1 h3,.panel .fn-text-sw3c1 h4,.panel .fn-text-sw3c1 h5,.panel .fn-text-sw3c1 h6,.panel .fn-text-sw3c1 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw3c1 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw3c2{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw3c2 p,.panel .fn-text-sw3c2 div{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw3c2 h1,.panel .fn-text-sw3c2 h2,.panel .fn-text-sw3c2 h3,.panel .fn-text-sw3c2 h4,.panel .fn-text-sw3c2 h5,.panel .fn-text-sw3c2 h6,.panel .fn-text-sw3c2 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw3c2 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw4c1{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw4c1 p,.panel .fn-text-sw4c1 div{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw4c1 h1,.panel .fn-text-sw4c1 h2,.panel .fn-text-sw4c1 h3,.panel .fn-text-sw4c1 h4,.panel .fn-text-sw4c1 h5,.panel .fn-text-sw4c1 h6,.panel .fn-text-sw4c1 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw4c1 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw4c2{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw4c2 p,.panel .fn-text-sw4c2 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw4c2 h1,.panel .fn-text-sw4c2 h2,.panel .fn-text-sw4c2 h3,.panel .fn-text-sw4c2 h4,.panel .fn-text-sw4c2 h5,.panel .fn-text-sw4c2 h6,.panel .fn-text-sw4c2 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw4c2 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw5c1{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw5c1 p,.panel .fn-text-sw5c1 div{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw5c1 h1,.panel .fn-text-sw5c1 h2,.panel .fn-text-sw5c1 h3,.panel .fn-text-sw5c1 h4,.panel .fn-text-sw5c1 h5,.panel .fn-text-sw5c1 h6,.panel .fn-text-sw5c1 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw5c1 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw5c2{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw5c2 p,.panel .fn-text-sw5c2 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw5c2 h1,.panel .fn-text-sw5c2 h2,.panel .fn-text-sw5c2 h3,.panel .fn-text-sw5c2 h4,.panel .fn-text-sw5c2 h5,.panel .fn-text-sw5c2 h6,.panel .fn-text-sw5c2 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw5c2 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw6c1{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw6c1 p,.panel .fn-text-sw6c1 div{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw6c1 h1,.panel .fn-text-sw6c1 h2,.panel .fn-text-sw6c1 h3,.panel .fn-text-sw6c1 h4,.panel .fn-text-sw6c1 h5,.panel .fn-text-sw6c1 h6,.panel .fn-text-sw6c1 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw6c1 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw6c2{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw6c2 p,.panel .fn-text-sw6c2 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw6c2 h1,.panel .fn-text-sw6c2 h2,.panel .fn-text-sw6c2 h3,.panel .fn-text-sw6c2 h4,.panel .fn-text-sw6c2 h5,.panel .fn-text-sw6c2 h6,.panel .fn-text-sw6c2 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw6c2 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-bg-header{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-text{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-link{background-color:rgba(0, 140, 186, 1.00)}.fn-bg-link-hover{background-color:rgba(0, 102, 136, 1.00)}.fn-bg-accent{background-color:rgba(221, 221, 221, 1.00)}.fn-bg-code-text{background-color:rgba(204, 55, 30, 1.00)}.fn-bg-modal-text{background-color:rgba(51, 51, 51, 1.00)}.fn-bg-header-alt{background-color:rgba(74, 74, 74, 1.00)}.fn-bg-text-alt{background-color:rgba(255, 255, 255, 1.00)}.fn-bg-link-alt{background-color:rgba(0, 140, 186, 1.00)}.fn-bg-link-hover-alt{background-color:rgba(0, 102, 136, 1.00)}.fn-bg-accent-alt{background-color:rgba(221, 221, 221, 1.00)}.fn-bg-primary{background-color:rgba(0, 140, 186, 1.00)}.fn-bg-primary-text{background-color:rgba(255, 255, 255, 1.00)}.fn-bg-secondary{background-color:rgba(231, 231, 231, 1.00)}.fn-bg-secondary-text{background-color:rgba(51, 51, 51, 1.00)}.fn-bg-alert{background-color:rgba(240, 65, 36, 1.00)}.fn-bg-success{background-color:rgba(67, 172, 106, 1.00)}.fn-bg-warning{background-color:rgba(240, 138, 36, 1.00)}.fn-bg-info{background-color:rgba(160, 211, 232, 1.00)}.fn-bg-modal{background-color:rgba(255, 255, 255, 1.00)}.fn-bg-modal-close{background-color:rgba(170, 170, 170, 1.00)}.fn-bg-sw1c1{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-sw1c2{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw2c1{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-sw2c2{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw3c1{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-sw3c2{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw4c1{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw4c2{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-sw5c1{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw5c2{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-sw6c1{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw6c2{background-color:rgba(34, 34, 34, 1.00)}.fn-backdrop{background-color:rgba(0, 0, 0, 0.45)}.fn-backdrop-solid{background-color:rgba(0, 0, 0, 0.45)}.fn-scheme-primary{background-color:rgba(0, 140, 186, 1.00);color:rgba(255, 255, 255, 1.00)}.fn-scheme-primary div,.fn-scheme-primary p{color:rgba(255, 255, 255, 1.00)}.fn-scheme-primary.button:hover{background-color:rgba(0, 133, 176, 1.00)}.fn-scheme-secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.fn-scheme-secondary div,.fn-scheme-secondary p{color:rgba(51, 51, 51, 1.00)}.fn-scheme-secondary.button:hover{background-color:rgba(219, 219, 219, 1.00)}.fn-scheme-modal{background-color:rgba(255, 255, 255, 1.00);color:rgba(51, 51, 51, 1.00)}.fn-scheme-modal div,.fn-scheme-modal p{color:rgba(51, 51, 51, 1.00)}.fn-scheme-modal .close{color:rgba(170, 170, 170, 1.00)}.fn-scheme-swatch1{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch1 div,.fn-scheme-swatch1 p{color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch1.switch{background-color:transparent}.fn-scheme-swatch1.switch label::after{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch1.switch input:checked + label{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch1.button:hover{background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch1.ghost{background-color:transparent;border-color:rgba(34, 34, 34, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch1.ghost.button:hover{color:rgba(248, 248, 248, 1.00);border-color:rgba(32, 32, 32, 1.00);background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch2{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch2 div,.fn-scheme-swatch2 p{color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch2.switch{background-color:transparent}.fn-scheme-swatch2.switch label::after{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch2.switch input:checked + label{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch2.button:hover{background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch2.ghost{background-color:transparent;border-color:rgba(34, 34, 34, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch2.ghost.button:hover{color:rgba(248, 248, 248, 1.00);border-color:rgba(32, 32, 32, 1.00);background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch3{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch3 div,.fn-scheme-swatch3 p{color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch3.switch{background-color:transparent}.fn-scheme-swatch3.switch label::after{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch3.switch input:checked + label{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch3.button:hover{background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch3.ghost{background-color:transparent;border-color:rgba(34, 34, 34, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch3.ghost.button:hover{color:rgba(248, 248, 248, 1.00);border-color:rgba(32, 32, 32, 1.00);background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch4{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch4 div,.fn-scheme-swatch4 p{color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch4.switch{background-color:transparent}.fn-scheme-swatch4.switch label::after{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch4.switch input:checked + label{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch4.switch label::after{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch4.switch input:checked + label{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch4.button:hover{background-color:rgba(235, 235, 235, 1.00)}.fn-scheme-swatch4.ghost{background-color:transparent;border-color:rgba(248, 248, 248, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch4.ghost.button:hover{color:rgba(34, 34, 34, 1.00);border-color:rgba(235, 235, 235, 1.00);background-color:rgba(235, 235, 235, 1.00)}.fn-scheme-swatch5{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch5 div,.fn-scheme-swatch5 p{color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch5.button:hover{background-color:rgba(235, 235, 235, 1.00)}.fn-scheme-swatch5.switch{background-color:transparent}.fn-scheme-swatch5.switch label::after{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch5.switch input:checked + label{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch5.ghost{background-color:transparent;border-color:rgba(248, 248, 248, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch5.ghost.button:hover{color:rgba(34, 34, 34, 1.00);border-color:rgba(235, 235, 235, 1.00);background-color:rgba(235, 235, 235, 1.00)}.fn-scheme-swatch6{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch6 div,.fn-scheme-swatch6 p{color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch6.switch{background-color:transparent}.fn-scheme-swatch6.switch label::after{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch6.switch input:checked + label{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch6.button:hover{background-color:rgba(235, 235, 235, 1.00)}.fn-scheme-swatch6.ghost{background-color:transparent;border-color:rgba(248, 248, 248, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch6.ghost.button:hover{color:rgba(34, 34, 34, 1.00);border-color:rgba(235, 235, 235, 1.00);background-color:rgba(235, 235, 235, 1.00)}
.customcss {/*customcss*/}
#stacks_in_5994_page31 .none {}


 ul,ul li,ol,ol li,dl,dl dd, p:not(.custom-font),.font-family-text,.text_stack:not(.custom-font), .font-style-1,.font-style-1 > li,.font-style-1 > *, .fontpro-stacks_in_5892_page31{line-height:1.75 ;letter-spacing:0.00em ;word-spacing:0.00em ;text-indent:0.00em ;margin-left:0.00em ;margin-right:0.00em ; font-size:10.00px ; }p:not(.custom-font),p.font-family-text:not(.custom-font),.text_stack:not(.custom-font){line-height:1.75 ;letter-spacing:0.00em ;word-spacing:0.00em ;text-indent:0.00em ;margin-left:0.00em ;margin-right:0.00em ; font-size:10.00px ; }
    p:not(.custom-font)>br,.font-family-text>br,.text_stack:not(.custom-font)>br,    ul>br,ul li>br,ol>br,ol li>br,dl>br,dl dd>br, .font-style-1>br,.font-style-1>br > li,.font-style-1 > *>br, .fontpro-stacks_in_5892_page31 > br{display:block;content:' ';padding-bottom:0.00em }
  
  @media only screen and (min-width:25.875000em){ ul,ul li,ol,ol li,dl,dl dd, p:not(.custom-font),.font-family-text,.text_stack:not(.custom-font), .font-style-1,.font-style-1 > li,.font-style-1 > *, .fontpro-stacks_in_5892_page31{font-size:14.00px }p:not(.custom-font),p.font-family-text:not(.custom-font),.text_stack:not(.custom-font){font-size:14.00px }} 
  @media only screen and (min-width:48.000000em){ ul,ul li,ol,ol li,dl,dl dd, p:not(.custom-font),.font-family-text,.text_stack:not(.custom-font), .font-style-1,.font-style-1 > li,.font-style-1 > *, .fontpro-stacks_in_5892_page31{font-size:16.00px }p:not(.custom-font),p.font-family-text:not(.custom-font),.text_stack:not(.custom-font){font-size:16.00px }} 
  @media only screen and (min-width:62.500000em){ ul,ul li,ol,ol li,dl,dl dd, p:not(.custom-font),.font-family-text,.text_stack:not(.custom-font), .font-style-1,.font-style-1 > li,.font-style-1 > *, .fontpro-stacks_in_5892_page31{font-size:16.00px }p:not(.custom-font),p.font-family-text:not(.custom-font),.text_stack:not(.custom-font){font-size:16.00px }} 
/*
 * Typography: Core
 * Author: Jeremy Hawes
 * Version: 1.0.0
 * URL: http://onelittledesigner.com
 * Description: Typography Core stack for RapidWeaver 5+ Stack 2+
 */

#typography_stacks_in_5_page31,
#typography_stacks_in_5_page31 * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#typography_stacks_in_5_page31 .fontImport {
	border: solid 2px #e0e0e0;
	background: #f0f0f0;
	border-radius: 4px;
	padding: 12px;
}



	/* Typography - Text Global Styles */
	#typography_stacks_in_5_page31 .typography_text,
	#typography_stacks_in_5_page31 .typography_text div,
	#typography_stacks_in_5_page31 .typography_text p,
	#typography_stacks_in_5_page31 .typography_text blockquote,
	#typography_stacks_in_5_page31 .typography_text address,
	#typography_stacks_in_5_page31 .typography_text details {
		color: #333333;
	}
	
		#typography_stacks_in_5_page31 .typography_text,
		#typography_stacks_in_5_page31 .typography_text div,
		#typography_stacks_in_5_page31 .typography_text p,
		#typography_stacks_in_5_page31 .typography_text blockquote,
		#typography_stacks_in_5_page31 .typography_text address,
		#typography_stacks_in_5_page31 .typography_text details {
			font-size: 14px;
			
		}
		#typography_stacks_in_5_page31 h1.typography_headers {
			font-size: 34px;
			
		}
		#typography_stacks_in_5_page31 h2.typography_headers {
			font-size: 24px;
			
		}
		#typography_stacks_in_5_page31 h3.typography_headers {
			font-size: 20px;
			
		}
		#typography_stacks_in_5_page31 h4.typography_headers {
			font-size: 16px;
			
		}
		#typography_stacks_in_5_page31 h5.typography_headers {
			font-size: 12px;
			
		}
		#typography_stacks_in_5_page31 h6.typography_headers {
			font-size: 12px;
			
		}
	
	
		#typography_stacks_in_5_page31 h1.typography_headers,
		#typography_stacks_in_5_page31 h2.typography_headers,
		#typography_stacks_in_5_page31 h3.typography_headers,
		#typography_stacks_in_5_page31 h4.typography_headers,
		#typography_stacks_in_5_page31 h5.typography_headers,
		#typography_stacks_in_5_page31 h6.typography_headers {
			color: #111111;
		}
	
	
	#typography_stacks_in_5_page31 .typography_text a,
	#typography_stacks_in_5_page31 .typography_headers a,
	#typography_stacks_in_5_page31 a .typography_headers {
		color: #0276FD;
	}
	#typography_stacks_in_5_page31 .typography_text a:hover,
	#typography_stacks_in_5_page31 .typography_headers a:hover,
	#typography_stacks_in_5_page31 a:hover .typography_headers,
	#typography_stacks_in_5_page31 .typography_text a:active,
	#typography_stacks_in_5_page31 .typography_headers a:active,
	#typography_stacks_in_5_page31 a:active .typography_headers {
		color: #60AFFE;
	}
	#typography_stacks_in_5_page31.linkDecorationInherit .typography_text a {
		text-decoration: inherit;
	}
	#typography_stacks_in_5_page31.linkDecorationNone .typography_text a {
		text-decoration: none;
		font-weight: normal;
	}
	#typography_stacks_in_5_page31.linkDecorationUnderline .typography_text a {
		text-decoration: underline;
		font-weight: normal;
	}
	#typography_stacks_in_5_page31.linkDecorationBold .typography_text a {
		text-decoration: none;
		font-weight: bold;
	}
	#typography_stacks_in_5_page31.linkDecorationItalic .typography_text a {
		text-decoration: none;
		font-weight: none;
		font-style: italic;
	}
	
	#typography_stacks_in_5_page31.linkDecorationHoverInherit .typography_text a:hover,
	#typography_stacks_in_5_page31.linkDecorationHoverInherit .typography_text a:active {
		text-decoration: inherit;
	}
	#typography_stacks_in_5_page31.linkDecorationHoverNone .typography_text a:hover,
	#typography_stacks_in_5_page31.linkDecorationHoverNone .typography_text a:active {
		text-decoration: none;
		font-weight: normal;
	}
	#typography_stacks_in_5_page31.linkDecorationHoverUnderline .typography_text a:hover,
	#typography_stacks_in_5_page31.linkDecorationHoverUnderline .typography_text a:active {
		text-decoration: underline;
	}
	#typography_stacks_in_5_page31.linkDecorationHoverBold .typography_text a:hover,
	#typography_stacks_in_5_page31.linkDecorationHoverBold .typography_text a:active {
		font-weight: bold;
	}
	#typography_stacks_in_5_page31.linkDecorationHoverItalic .typography_text a:hover,
	#typography_stacks_in_5_page31.linkDecorationHoverItalic .typography_text a:active {\
		font-style: italic;
	}
	
		
		
		
		
		
			@media (max-width: 320px) {
				#typography_stacks_in_5_page31 .typography_text {
					font-size: 14px;
				}
				#typography_stacks_in_5_page31 h1.typography_headers {
					font-size: 16px;
				}
				#typography_stacks_in_5_page31 h2.typography_headers {
					font-size: 24px;
				}
				#typography_stacks_in_5_page31 h3.typography_headers {
					font-size: 20px;
				}
				#typography_stacks_in_5_page31 h4.typography_headers {
					font-size: 18px;
				}
				#typography_stacks_in_5_page31 h5.typography_headers {
					font-size: 12px;
				}
				#typography_stacks_in_5_page31 h6.typography_headers {
					font-size: 10px;
				}
			}
		
	

/*
 * Typography: Font Importer
 * Author: Jeremy Hawes
 * Version: 1.0.0
 * URL: http://onelittledesigner.com
 * Description: Typography Core stack for RapidWeaver 5+ Stack 2+
 */


 @media(hover:hover){#stacks_in_p6407_n16_page31.blu-sidebar>.blu-side .my-titles{-webkit-transition:-webkit-transform 120ms ease;transition:-webkit-transform 120ms ease;transition:transform 120ms ease;transition:transform 120ms ease,-webkit-transform 120ms ease}#stacks_in_p6407_n16_page31.blu-sidebar>.blu-side.med-left .my-titles{-webkit-transform:translateX(-100%);transform:translateX(-100%)}#stacks_in_p6407_n16_page31.blu-sidebar>.blu-side.med-right .my-titles{-webkit-transform:translateX(100%);transform:translateX(100%)}#stacks_in_p6407_n16_page31.blu-sidebar>.blu-side:hover .my-titles{-webkit-transform:translateX(0%);transform:translateX(0%)}}@media(hover:hover){#stacks_in_p6407_n16_page31.blu-sidebar>.blu-side .my-icons{-webkit-transition:-webkit-filter 120ms ease;transition:-webkit-filter 120ms ease;transition:filter 120ms ease;transition:filter 120ms ease,-webkit-filter 120ms ease}#stacks_in_p6407_n16_page31.blu-sidebar>.blu-side .my-icons{-webkit-filter:grayscale(100%);filter:grayscale(100%)}#stacks_in_p6407_n16_page31.blu-sidebar>.blu-side:hover .my-icons{-webkit-filter:grayscale(0%);filter:grayscale(0%)}}@media screen and (min-width:640px){#stacks_in_p6407_n16_page31.blu-sidebar.full-height{height:100vh}#stacks_in_p6407_n16_page31.blu-sidebar.full-height>.blu-content>.blu-blu-content__wrap,#stacks_in_p6407_n16_page31.blu-sidebar.full-height>.blu-side>.blu-side__wrap{max-height:100vh;-webkit-transition:none;transition:none}#stacks_in_p6407_n16_page31.blu-sidebar.full-height>.blu-content>.blu-blu-content__wrap,#stacks_in_p6407_n16_page31.blu-sidebar.full-height>.blu-side>.blu-side__wrap{overflow-x:hidden}#stacks_in_p6407_n16_page31.blu-sidebar.full-height>.blu-content>.blu-content__wrap{overflow-y:auto;-webkit-overflow-scrolling:touch}#stacks_in_p6407_n16_page31.blu-sidebar.full-height>.blu-side>.blu-side__wrap{overflow-y:auto;-webkit-overflow-scrolling:touch}} #stacks_in_p6407_n16_page31.blu-sidebar>.blu-side{-webkit-transition:-webkit-flex-basis 180ms ease-in-out;transition:-webkit-flex-basis 180ms ease-in-out;transition:flex-basis 180ms ease-in-out;transition:flex-basis 180ms ease-in-out,-webkit-flex-basis 180ms ease-in-out,-ms-flex-preferred-size 180ms ease-in-out}#stacks_in_p6407_n16_page31.blu-sidebar>.blu-gutter{border-left:0px solid rgba(204, 204, 204, 1.00);margin-left:0.00px;margin-right:0.00px}#stacks_in_p6407_n16_page31.blu-sidebar>.blu-side>.blu-side__wrap.flex-col{-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start}#stacks_in_p6407_n16_page31.blu-sidebar>.blu-content>.blu-content__wrap.flex-col{-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start}@media screen and (max-height:0px){#stacks_in_p6407_n16_page31.blu-sidebar>.blu-side>.blu-side__wrap.flex-col{display:block}}@media screen and (max-height:0px){#stacks_in_p6407_n16_page31.blu-sidebar>.blu-content>.blu-content__wrap.flex-col{display:block}}@media all and (max-width:640px){#stacks_in_p6407_n16_page31.blu-sidebar>.blu-side.sm-top{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}#stacks_in_p6407_n16_page31.blu-sidebar>.blu-side.sm-bot{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}#stacks_in_p6407_n16_page31.blu-sidebar>.blu-side.sm-hide{display:none}#stacks_in_p6407_n16_page31.blu-sidebar>.blu-side>.blu-gutter{display:none}#stacks_in_p6407_n16_page31.blu-sidebar.stacked-gutter>.blu-side.sm-top{margin-bottom:12.00px}#stacks_in_p6407_n16_page31.blu-sidebar.stacked-gutter>.blu-content.side-sm-bot{margin-bottom:12.00px}}@media all and (min-width:640px){#stacks_in_p6407_n16_page31.blu-sidebar.med-left>.blu-side{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}#stacks_in_p6407_n16_page31.blu-sidebar.med-left>.blu-content{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}#stacks_in_p6407_n16_page31.blu-sidebar.med-right>.blu-side{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}#stacks_in_p6407_n16_page31.blu-sidebar.med-right>.blu-content{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}}@media all and (min-width:640px){#stacks_in_p6407_n16_page31.blu-sidebar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}#stacks_in_p6407_n16_page31.blu-sidebar>.blu-content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1}#stacks_in_p6407_n16_page31.blu-sidebar>.blu-content>.blu-content__wrap{width:100%}#stacks_in_p6407_n16_page31.blu-sidebar>.blu-side{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:1;flex-shrink:1;-ms-flex-preferred-size:calc(10% - 0px);flex-basis:calc(10% - 0px);max-width:9999px;min-width:100px}
#stacks_in_p6407_n16_page31.blu-sidebar>.blu-side>.blu-side__wrap{-webkit-box-flex:1;-ms-flex:1;flex:1;width:100%}}  #stacks_in_p6407_n16_page31.blu-sidebar>.blu-content{padding: 0px ;border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_p6407_n16_page31.blu-sidebar>.blu-content::before,#stacks_in_p6407_n16_page31.blu-sidebar>.blu-content::after{border-radius:calc(0px - 0px)}#stacks_in_p6407_n16_page31.blu-sidebar>.blu-side{padding: 0px ;border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_p6407_n16_page31.blu-sidebar>.blu-side::before,#stacks_in_p6407_n16_page31.blu-sidebar>.blu-side::after{border-radius:calc(0px - 0px)} 
/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_p6407_n22_page31 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_p6407_n22_page31 {
		display: none !important;
	}
}
/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_p6407_n1_page31 {
      margin: 0px;      
    }

    #stacks_in_p6407_n1_page31 {
      padding: 0px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_p6407_n1_page31 {
      margin: 0px;      
    }

    #stacks_in_p6407_n1_page31 {
      padding: 0px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_p6407_n1_page31 {
      margin: 0px;      
    }

    #stacks_in_p6407_n1_page31 {
      padding: 0px;      
    }


    

    
  

}





#gatorWrapperstacks_in_p6407_n2_page31 {
	max-width: 1500;
	margin: 0 auto;
}

#gatorstacks_in_p6407_n2_page31 {
	width: calc(100% - 0 - 30);
	padding: 0;
	z-index: 1;
	position: relative;
	min-height: 1rem;
	line-height: 1rem;
	border-radius: 0px;
	margin: 0px 0 0 30;
}

#gatorBarFillstacks_in_p6407_n2_page31 {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	z-index: 20;
	height: 100%;
	display: block;
	
	

	

	

  	border-radius: 0px;
}

#gatorNavBarWrapstacks_in_p6407_n2_page31 {
	position: relative;
	width: 100%;
	display: block;
	z-index: 40;
}

#gatorContentstacks_in_p6407_n2_page31 {
	width: 100%;
	z-index: 201;
	position: relative;
}

#gatorNavstacks_in_p6407_n2_page31 {
	transition: max-height 500ms;
	-webkit-transition: max-height 500ms;
	-moz-transition: max-height 500ms;
	overflow: hidden;
	z-index: 30;
	width: 100%;
}

#gatorNavstacks_in_p6407_n2_page31 ul {
	padding: 0;
	margin: 0;
	list-style: none;
	width: 100%;
	display: block;
}

#gatorNavstacks_in_p6407_n2_page31 li {
	padding: 0;
	margin: 0;
	position: relative;
}

#gatorNavstacks_in_p6407_n2_page31 ul li a {
	display: block;
	text-decoration: none;
	transition: all 300ms ease-in-out;
	width: 100%;
	text-align: left;
	min-height: 4.1rem;
	padding: 1rem 0rem 1rem 1.50rem;
	color: rgba(0, 0, 0, 0.50);
	line-height: 1.4;
	font-size: .70rem;
	border-bottom: 1px solid rgba(25, 25, 25, 1.00);

	
	background: rgba(255, 255, 255, 1.00);
	

	

	
}

#gatorNavstacks_in_p6407_n2_page31 ul li a.parent-link {
	padding-right: 4rem; /* Give parent links extra right padding for the reveal button */
}

#gatorNavstacks_in_p6407_n2_page31 li:first-child {
	border-top: 1px solid rgba(25, 25, 25, 1.00);
}

#gatorNavstacks_in_p6407_n2_page31 ul li a:hover {
	color: rgba(255, 255, 255, 1.00);
	
	background-color: rgba(52, 58, 64, 1.00);
	
}

#gatorNavstacks_in_p6407_n2_page31 ul li a:active {
	color: rgba(255, 255, 255, 1.00);
	
	background-color: rgba(52, 58, 64, 1.00);
	
}

#gatorNavstacks_in_p6407_n2_page31 ul li a.current,
#gatorNavstacks_in_p6407_n2_page31 ul li a.currentAncestor {
	color: rgba(255, 255, 255, 1.00);
	font-weight: bold;
	
	
	
	
	background-color: rgba(52, 58, 64, 1.00);
	
}

#gatorNavstacks_in_p6407_n2_page31 ul li a i {
	display: none;
}



#gatorNavstacks_in_p6407_n2_page31 ul li a:active {
	outline: none;
}

#gatorNavstacks_in_p6407_n2_page31 li ul {
	display: block;
	max-height: 0;
	overflow: hidden;
	transition: all 300ms ease-in-out;
}

#gatorNavstacks_in_p6407_n2_page31 ul ul li:first-child {
	border-top: none;
}

#gatorNavstacks_in_p6407_n2_page31 ul ul li a {
	padding-left: calc(1.50rem * 2);
}

#gatorNavstacks_in_p6407_n2_page31 ul ul ul li a {
	padding-left: calc(1.50rem * 3);
}

#gatorNavstacks_in_p6407_n2_page31 ul ul ul ul li a {
	padding-left: calc(1.50rem * 4);
}

#gatorNavstacks_in_p6407_n2_page31 ul ul ul ul ul li a {
	padding-left: calc(1.50rem * 5);
}

#mobileNavButtonstacks_in_p6407_n2_page31 {
	text-align: left;
	height: 1rem;
	line-height: 1rem;
	font-size: 100%;
	display: block;
	width: 100%;
	cursor: pointer;
	padding-left: 1.50rem;
	position: relative;
	font-size: .70rem;
	color: rgba(0, 0, 0, 1.00);
	transition: all 300ms ease-in-out;
}

#mobileNavButtonstacks_in_p6407_n2_page31:hover {
	color: rgba(53, 206, 255, 1.00);
}

#menuToggleTitlestacks_in_p6407_n2_page31:before {
	content: 'Menu';
}

#gatorContentstacks_in_p6407_n2_page31.gator-closed-state #mobileNavButtonstacks_in_p6407_n2_page31 .fas.fa-minus {
	display: none;
}

#gatorContentstacks_in_p6407_n2_page31.gator-closed-state #mobileNavButtonstacks_in_p6407_n2_page31 .fas.fa-bars {
	display: inline;
}

#gatorContentstacks_in_p6407_n2_page31.gator-opened-state #mobileNavButtonstacks_in_p6407_n2_page31 .fas.fa-minus {
	display: inline;
}

#gatorContentstacks_in_p6407_n2_page31.gator-opened-state #mobileNavButtonstacks_in_p6407_n2_page31 .fas.fa-bars {
	display: none;
}

#gatorContentstacks_in_p6407_n2_page31.gator-closed-state #gatorNavstacks_in_p6407_n2_page31 {
	max-height: 0px;
	overflow: hidden !important;
}

#gatorContentstacks_in_p6407_n2_page31.gator-opened-state #gatorNavstacks_in_p6407_n2_page31,
#gatorNavstacks_in_p6407_n2_page31 .gator-open > ul {
	max-height: 2000px;
	overflow: hidden !important;
}

#gatorNavstacks_in_p6407_n2_page31 .gator-more {
	position: absolute;
	top: 0.25rem;
	right: 0.25rem;
	min-width: 1rem;
	height: 1rem;
	line-height: 1rem;
	text-align: center;
	cursor: pointer;
	color: rgba(74, 74, 74, 1.00);
	border: 1px solid rgba(25, 25, 25, 1.00);
	background: rgba(51, 51, 51, 1.00);
	font-size: 1rem;
	transition: color 300ms ease-in-out;
}

#gatorNavstacks_in_p6407_n2_page31 .gator-more:hover {
	color: rgba(255, 255, 255, 1.00);
}

#gatorNavstacks_in_p6407_n2_page31 .gator-more i {
	transition: transform 0.3s;
}

#gatorNavstacks_in_p6407_n2_page31 li.gator-open > .gator-more i {
	transform: rotate(-180deg);
}

/* Styling applied on screens 996px and wider */
@media screen and (min-width: 996px){

	#gatorstacks_in_p6407_n2_page31 {
		min-height: calc(1rem + 100px + 20px);
	}

	

	

	#mobileNavButtonstacks_in_p6407_n2_page31 {
		display: none;
	}
	
	#gatorContentstacks_in_p6407_n2_page31.gator-closed-state #gatorNavstacks_in_p6407_n2_page31,
	#gatorContentstacks_in_p6407_n2_page31.gator-opened-state #gatorNavstacks_in_p6407_n2_page31 {
		max-height: 2000px;
		overflow: visible !important;
	}
	
	#gatorNavBarWrapstacks_in_p6407_n2_page31 {
		display: block;
		position: relative;
		z-index: 40;
	}
	
	#gatorContentstacks_in_p6407_n2_page31 {
		z-index: 201;
		position: relative;
		display: block;
		width: auto;
		float: right;
	}
	
	#gatorNavstacks_in_p6407_n2_page31 {
		background: none;
		margin-bottom: 0;
		font-size: 100%;
		min-height: 0px;
		overflow: visible;
		display: flex;
	}

	#navButtonstacks_in_p6407_n2_page31,
	#gatorNavstacks_in_p6407_n2_page31 .gator-more {
		display: none !important;
	}		
	
	#gatorNavstacks_in_p6407_n2_page31 ul li {
		display: block;
		float: left;
		margin: 0;
		position: relative;
		white-space: no-wrap;
	}

	#gatorNavstacks_in_p6407_n2_page31 li:first-child {
		border-top: none;
	}

	#gatorNavstacks_in_p6407_n2_page31 li {
		border-right: 0 solid rgba(25, 25, 25, 1.00);
	}

	/* Remove inherited background styling from the mobile menu */
	#gatorNavstacks_in_p6407_n2_page31 ul li a,
	#gatorNavstacks_in_p6407_n2_page31 ul li a:hover,
	#gatorNavstacks_in_p6407_n2_page31 ul li a:active,
	#gatorNavstacks_in_p6407_n2_page31 ul li a.current,
	#gatorNavstacks_in_p6407_n2_page31 ul li a.currentAncestor {
		background: none;
	}
		
	#gatorNavstacks_in_p6407_n2_page31 ul li a {
		text-align: left;
		height: auto;
		width: auto;
		height: auto;
		padding: 0 0.8rem;
		position: relative;
		font-size: 0.9rem;
		border-bottom: none;
		border-radius: 0rem;
		margin: 100px 0 20px 0;
		color: rgba(0, 0, 0, 1.00);
		background-color: rgba(255, 255, 255, 0.00);
		min-height: 0;
		line-height: 1rem;
	}

	#gatorNavstacks_in_p6407_n2_page31 ul li a.parent-link {
		padding: 0 0.8rem;
	}

	#gatorNavstacks_in_p6407_n2_page31 ul li a:hover {
		color: rgba(0, 0, 0, 0.40);
		background-color: rgba(255, 255, 255, 0.00);
	}

	#gatorNavstacks_in_p6407_n2_page31 ul li a:active {
		color: rgba(0, 0, 0, 1.00);
		background-color: rgba(255, 255, 255, 0.00);
	}

	#gatorNavstacks_in_p6407_n2_page31 ul li a.current,
	#gatorNavstacks_in_p6407_n2_page31 ul li a.currentAncestor {
		color: rgba(0, 0, 0, 1.00);
		background-color: rgba(255, 255, 255, 0.00);
	}
	
	#gatorNavstacks_in_p6407_n2_page31 ul li a i {
		display: inline-block;
		font-size: 1.25rem;
		padding-left: 5px;
		margin-bottom: -3px;
	}
	
	#gatorNavstacks_in_p6407_n2_page31 ul ul {
		position: absolute;
		top: 100%;
		left: -1px;
    	width: 200px;
		padding: 0;
		margin: 0;
    	z-index: 149;
    	border: 1px solid rgba(25, 25, 25, 1.00);
		max-height: none;
		opacity: 0;
		visibility: hidden;
		-webkit-transform: translateZ(0); /* Fixes missing elements when the parent is fixed-positioned */
		overflow: visible;
		border-radius: 0px;
		font-size: inherit;
		background-color: rgba(255, 255, 255, 1.00);
		box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.75);
		transition: all 300ms ease-in-out;
		
		

		
	}
	
	#gatorNavstacks_in_p6407_n2_page31 ul ul li {
		display: block;
		position: relative;
		width: 100%;
		border-bottom: rgba(25, 25, 25, 1.00) solid 0;
		border-left: none;
		border-right: none;
		white-space: normal;
	}
	
	#gatorNavstacks_in_p6407_n2_page31 ul ul li:first-child {
		border-left: none;
	}

	#gatorNavstacks_in_p6407_n2_page31 ul ul li:last-child {
		border-bottom: none;
	}
  
	#gatorNavstacks_in_p6407_n2_page31 ul ul li a {
		color: rgba(0, 0, 0, 1.00);
		
		background-color: rgba(255, 255, 255, 1.00);
		
		display: block;
		position: relative;
		width: 100%;
		margin: 0;
		border-radius: 0;
		text-align: left !important;
		
		
		
	}

	#gatorNavstacks_in_p6407_n2_page31 ul ul li:last-child a {
		border-bottom: none;
	}

	#gatorNavstacks_in_p6407_n2_page31 ul ul li a:hover {
		color: rgba(0, 0, 0, 0.40);
		
		background-color: rgba(255, 255, 255, 0.40);
		
	}

	#gatorNavstacks_in_p6407_n2_page31 ul ul li a:active {
		color: rgba(0, 0, 0, 1.00);
		
		background-color: rgba(52, 58, 64, 1.00);
		
	}

	#gatorNavstacks_in_p6407_n2_page31 ul ul li a.current,
	#gatorNavstacks_in_p6407_n2_page31 ul ul li a.currentAncestor {
		color: rgba(0, 0, 0, 1.00);
		
		background-color: rgba(52, 58, 64, 1.00);
		
	}
	
	#gatorNavstacks_in_p6407_n2_page31 ul ul ul {
		top: 0;
		left: 100%;
		margin: 0;
	}

	#gatorNavstacks_in_p6407_n2_page31 ul ul > li {
		display: block;
		margin: 0;
		position: relative;
	}

	#gatorNavstacks_in_p6407_n2_page31 ul ul i {
		font-size: 1.25rem;
		position: absolute;
		right: 1.5rem;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	#gatorNavstacks_in_p6407_n2_page31 ul ul li a,
	#gatorNavstacks_in_p6407_n2_page31 ul ul ul li a,
	#gatorNavstacks_in_p6407_n2_page31 ul ul ul ul li a,
	#gatorNavstacks_in_p6407_n2_page31 ul ul ul ul ul li a,
	#gatorNavstacks_in_p6407_n2_page31 ul ul ul ul ul ul li a {
		float: none;
		display: block;
		padding: 1rem 1.5rem 1rem 1.5rem;
		line-height: 1.2;
	}

	#gatorNavstacks_in_p6407_n2_page31 ul ul li a.parent-link,
	#gatorNavstacks_in_p6407_n2_page31 ul ul ul li a.parent-link,
	#gatorNavstacks_in_p6407_n2_page31 ul ul ul ul li a.parent-link,
	#gatorNavstacks_in_p6407_n2_page31 ul ul ul ul ul li a.parent-link,
	#gatorNavstacks_in_p6407_n2_page31 ul ul ul ul ul ul ul li a.parent-link,
	#gatorNavstacks_in_p6407_n2_page31 ul ul ul ul ul ul ul ul li a.parent-link {
		padding: 1rem 1.5rem 1rem 1.5rem;
	}

	#gatorNavstacks_in_p6407_n2_page31 ul ul {
		margin-top: 1.5rem;
	}

	#gatorNavstacks_in_p6407_n2_page31 ul ul ul {
		margin-left: 1.5rem;
	}

	#gatorNavstacks_in_p6407_n2_page31>ul>li:hover>ul,
	#gatorNavstacks_in_p6407_n2_page31 ul ul.gator-focused {
		opacity: 1.00;
		visibility: visible;
		margin-top: 0;
	}
	
	#gatorNavstacks_in_p6407_n2_page31>ul>li>ul>li:hover>ul, 
	#gatorNavstacks_in_p6407_n2_page31>ul>li>ul>li>ul>li:hover>ul, 
	#gatorNavstacks_in_p6407_n2_page31>ul>li>ul>li>ul>li>ul>li:hover>ul {
		opacity: 1.00;
		visibility: visible;
		margin-top: -1px;
		margin-left: 0;
	}
	
	.isTouchDevice #gatorNavstacks_in_p6407_n2_page31 ul ul {	
		opacity: 1.00;
		visibility: visible;
		-webkit-transition: none;
		transition: none;
		display: none;
	}
	
	.isTouchDevice #gatorNavstacks_in_p6407_n2_page31>ul>li:hover>ul,
	.isTouchDevice #gatorNavstacks_in_p6407_n2_page31>ul>li>ul>li:hover>ul, 
	.isTouchDevice #gatorNavstacks_in_p6407_n2_page31>ul>li>ul>li>ul>li:hover>ul, 
	.isTouchDevice #gatorNavstacks_in_p6407_n2_page31>ul>li>ul>li>ul>li>ul>li:hover>ul {
		opacity: 1.00;
		visibility: visible;
		display: block;
	}
	
	
	#gatorContentstacks_in_p6407_n2_page31 {
		float: left;
	}
	
	#gatorNavstacks_in_p6407_n2_page31 ul li:first-child a {
		border-left: none;
	}
	
	
	
  
  	
  
  	

	

	

	

	

	

	
}

/* Additional content  */
#gatorPreContentstacks_in_p6407_n2_page31,
#gatorPostContentstacks_in_p6407_n2_page31 {
	display: none;
	white-space: nowrap;
}


#gatorPreContentstacks_in_p6407_n2_page31 {
	display: block;
	padding-left: 3.5rem;
	padding-right: 3.5rem;
	font-size: 125%;
	font-weight: bold;
	
	
	;
	color: rgba(255, 255, 255, 1.00);
}

@media screen and (min-width: 996px){
	#gatorPreContentstacks_in_p6407_n2_page31 {
		display: flex;
		
		border-right: 0 solid rgba(25, 25, 25, 1.00);
		
	}
}

#gatorPreContentstacks_in_p6407_n2_page31 a,
#gatorPreContentstacks_in_p6407_n2_page31 a:visited {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	font-weight: bold;
	
	
	;
	transition: all 300ms ease-in-out;
}

#gatorPreContentstacks_in_p6407_n2_page31 a:hover,
#gatorPreContentstacks_in_p6407_n2_page31 a:active {
	color: rgba(255, 255, 255, 0.50)
	text-decoration: none;
	font-weight: bold;
	
	
	;
}





/* Hide the stack in print and PDF output */
@media print {
	#gatorstacks_in_p6407_n2_page31 {
		display: none;
	}
}



#stacks_out_p6407_n5_page31 {
	width: 250px;
}

#stacks_in_p6407_n5_page31 {
	margin: 72px 45px 10px 0px;
}

#stacks_out_p6407_n9_page31 {
	width: 100px;
	margin-left:0;
}

#stacks_in_p6407_n9_page31 {
	margin: 72px 0px 1px 15px;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_831_page31 {
      margin: 0px;      
    }

    #stacks_in_831_page31 {
      padding: 0px;      
    }


     
      #stacks_in_831_page31 {
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 50px;
        margin-bottom: 10px;
      }
    

    
  


 
    #stacks_in_831_page31 {
      margin: 0px;      
    }

    #stacks_in_831_page31 {
      padding: 0px;      
    }


     
      #stacks_in_831_page31 {
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 30px;
        margin-bottom: 20px;
      }
    

    
 


 
    #stacks_in_831_page31 {
      margin: 0px;      
    }

    #stacks_in_831_page31 {
      padding: 0px;      
    }


     
      #stacks_in_831_page31 {
        margin-left: 100px;
        margin-right: 70px;
        margin-top: 50px;
        margin-bottom: 40px;
      }
    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_831_page31 {
      margin: 0px;      
    }

    #stacks_in_831_page31 {
      padding: 0px;      
    }


     
      #stacks_in_831_page31 {
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 50px;
        margin-bottom: 10px;
      }
    

    
  


 
    #stacks_in_831_page31 {
      margin: 0px;      
    }

    #stacks_in_831_page31 {
      padding: 0px;      
    }


     
      #stacks_in_831_page31 {
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 30px;
        margin-bottom: 20px;
      }
    

    
 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_831_page31 {
      margin: 0px;      
    }

    #stacks_in_831_page31 {
      padding: 0px;      
    }


     
      #stacks_in_831_page31 {
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 50px;
        margin-bottom: 10px;
      }
    

    
  

}

/* 
 * Typography: Headers
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/typography/
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.0.0
 */

#typography_headers_stacks_in_8_page31,
#typography_headers_stacks_in_8_page31 span.type-wrap,
h1#typography_headers_stacks_in_8_page31,
h2#typography_headers_stacks_in_8_page31,
h3#typography_headers_stacks_in_8_page31,
h4#typography_headers_stacks_in_8_page31,
h5#typography_headers_stacks_in_8_page31,
h6#typography_headers_stacks_in_8_page31 {
	margin: 0;
	padding: 0;
	text-align: left;
	letter-spacing: -0.75px;
	font-family: Gordita-Bold;
	font-weight: 400;
	
	-webkit-transform: scale(1.00,1.00);
	-moz-transform: scale(1.00,1.00);
	transform: scale(1.00,1.00);
	
	-webkit-transform: rotate(0deg) skew(0deg, 0deg);
	-moz-transform: rotate(0deg) skew(0deg, 0deg);
	transform: rotate(0deg) skew(0deg, 0deg);
}









/*
 * Typography: Text
 * Author: Jeremy Hawes
 * Version: 1.0.0
 * URL: http://onelittledesigner.com
 * Description: Typography Text stack for RapidWeaver 5+ Stack 2+
 */

.typography_core #typography_text_stacks_in_10_page31,
.typography_core p#typography_text_stacks_in_10_page31,
.typography_core div#typography_text_stacks_in_10_page31,
.typography_core blockquote#typography_text_stacks_in_10_page31,
.typography_core address#typography_text_stacks_in_10_page31,
.typography_core details#typography_text_stacks_in_10_page31 {
	width: 100%;
	font-family: inherit;
	padding: 0;
	margin: 0;
	text-align: left;
	display: block;
	
	
	
	-webkit-transform: scale(1.00,1.00);
	-moz-transform: scale(1.00,1.00);
	transform: scale(1.00,1.00);
}

#typography_text_stacks_in_10_page31.layoutColumns {
	-webkit-column-count: 1;
	-moz-column-count: 1;
	column-count: 1;
	-webkit-column-fill: auto;
	-webkit-column-gap: 10px;
	-moz-column-gap: 10px;
	column-gap: 10px;
	-webkit-column-rule: 0px outset #E0E0E0;
	-moz-column-rule: 0px outset #E0E0E0;
	column-rule: 0px outset #E0E0E0;
}
#typography_text_stacks_in_10_page31.dropCap1 .dropCap {
	font-family: inherit;
	font-size: 40px;
	color: #CD3333;
	padding-top: 12px;
	padding-right: 8px;
	padding-bottom: 4px;
	padding-left: 0px;
	display: inline-block;
	float: left;
}




#stacks_in_11_page31 {
	display:inline-block; width:100%; line-height: 1.220000em;
	font-size: 150%;
}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_4512_page31 {
      margin: 0px;      
    }

    #stacks_in_4512_page31 {
      padding: 0px;      
    }


     
      #stacks_in_4512_page31 {
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
      }
    

    
  


 
    #stacks_in_4512_page31 {
      margin: 0px;      
    }

    #stacks_in_4512_page31 {
      padding: 0px;      
    }


     
      #stacks_in_4512_page31 {
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 0px;
        margin-bottom: 0px;
      }
    

    
 


 
    #stacks_in_4512_page31 {
      margin: 0px;      
    }

    #stacks_in_4512_page31 {
      padding: 0px;      
    }


     
      #stacks_in_4512_page31 {
        margin-left: 100px;
        margin-right: 70px;
        margin-top: 0px;
        margin-bottom: 0px;
      }
    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_4512_page31 {
      margin: 0px;      
    }

    #stacks_in_4512_page31 {
      padding: 0px;      
    }


     
      #stacks_in_4512_page31 {
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
      }
    

    
  


 
    #stacks_in_4512_page31 {
      margin: 0px;      
    }

    #stacks_in_4512_page31 {
      padding: 0px;      
    }


     
      #stacks_in_4512_page31 {
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 0px;
        margin-bottom: 0px;
      }
    

    
 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_4512_page31 {
      margin: 0px;      
    }

    #stacks_in_4512_page31 {
      padding: 0px;      
    }


     
      #stacks_in_4512_page31 {
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
      }
    

    
  

}

 @media(hover:hover){#stacks_in_5035_page31.blu-sidebar>.blu-side .my-titles{-webkit-transition:-webkit-transform 120ms ease;transition:-webkit-transform 120ms ease;transition:transform 120ms ease;transition:transform 120ms ease,-webkit-transform 120ms ease}#stacks_in_5035_page31.blu-sidebar>.blu-side.med-left .my-titles{-webkit-transform:translateX(-100%);transform:translateX(-100%)}#stacks_in_5035_page31.blu-sidebar>.blu-side.med-right .my-titles{-webkit-transform:translateX(100%);transform:translateX(100%)}#stacks_in_5035_page31.blu-sidebar>.blu-side:hover .my-titles{-webkit-transform:translateX(0%);transform:translateX(0%)}}@media(hover:hover){#stacks_in_5035_page31.blu-sidebar>.blu-side .my-icons{-webkit-transition:-webkit-filter 120ms ease;transition:-webkit-filter 120ms ease;transition:filter 120ms ease;transition:filter 120ms ease,-webkit-filter 120ms ease}#stacks_in_5035_page31.blu-sidebar>.blu-side .my-icons{-webkit-filter:grayscale(100%);filter:grayscale(100%)}#stacks_in_5035_page31.blu-sidebar>.blu-side:hover .my-icons{-webkit-filter:grayscale(0%);filter:grayscale(0%)}}@media screen and (min-width:640px){#stacks_in_5035_page31.blu-sidebar.full-height{height:100vh}#stacks_in_5035_page31.blu-sidebar.full-height>.blu-content>.blu-blu-content__wrap,#stacks_in_5035_page31.blu-sidebar.full-height>.blu-side>.blu-side__wrap{max-height:100vh;-webkit-transition:none;transition:none}#stacks_in_5035_page31.blu-sidebar.full-height>.blu-content>.blu-blu-content__wrap,#stacks_in_5035_page31.blu-sidebar.full-height>.blu-side>.blu-side__wrap{overflow-x:hidden}#stacks_in_5035_page31.blu-sidebar.full-height>.blu-content>.blu-content__wrap{overflow-y:auto;-webkit-overflow-scrolling:touch}#stacks_in_5035_page31.blu-sidebar.full-height>.blu-side>.blu-side__wrap{overflow-y:auto;-webkit-overflow-scrolling:touch}} #stacks_in_5035_page31.blu-sidebar>.blu-side{-webkit-transition:-webkit-flex-basis 180ms ease-in-out;transition:-webkit-flex-basis 180ms ease-in-out;transition:flex-basis 180ms ease-in-out;transition:flex-basis 180ms ease-in-out,-webkit-flex-basis 180ms ease-in-out,-ms-flex-preferred-size 180ms ease-in-out}#stacks_in_5035_page31.blu-sidebar>.blu-gutter{border-left:0px solid rgba(204, 204, 204, 1.00);margin-left:30.00px;margin-right:30.00px}#stacks_in_5035_page31.blu-sidebar>.blu-side>.blu-side__wrap.flex-col{-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start}#stacks_in_5035_page31.blu-sidebar>.blu-content>.blu-content__wrap.flex-col{-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start}@media screen and (max-height:0px){#stacks_in_5035_page31.blu-sidebar>.blu-side>.blu-side__wrap.flex-col{display:block}}@media screen and (max-height:0px){#stacks_in_5035_page31.blu-sidebar>.blu-content>.blu-content__wrap.flex-col{display:block}}@media all and (max-width:640px){#stacks_in_5035_page31.blu-sidebar>.blu-side.sm-top{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}#stacks_in_5035_page31.blu-sidebar>.blu-side.sm-bot{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}#stacks_in_5035_page31.blu-sidebar>.blu-side.sm-hide{display:none}#stacks_in_5035_page31.blu-sidebar>.blu-side>.blu-gutter{display:none}#stacks_in_5035_page31.blu-sidebar.stacked-gutter>.blu-side.sm-top{margin-bottom:12.00px}#stacks_in_5035_page31.blu-sidebar.stacked-gutter>.blu-content.side-sm-bot{margin-bottom:12.00px}}@media all and (min-width:640px){#stacks_in_5035_page31.blu-sidebar.med-left>.blu-side{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}#stacks_in_5035_page31.blu-sidebar.med-left>.blu-content{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}#stacks_in_5035_page31.blu-sidebar.med-right>.blu-side{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}#stacks_in_5035_page31.blu-sidebar.med-right>.blu-content{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}}@media all and (min-width:640px){#stacks_in_5035_page31.blu-sidebar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}#stacks_in_5035_page31.blu-sidebar>.blu-content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1}#stacks_in_5035_page31.blu-sidebar>.blu-content>.blu-content__wrap{width:100%}#stacks_in_5035_page31.blu-sidebar>.blu-side{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:1;flex-shrink:1;-ms-flex-preferred-size:calc(38% - 0px);flex-basis:calc(38% - 0px);max-width:9999px;min-width:100px}
#stacks_in_5035_page31.blu-sidebar>.blu-side>.blu-side__wrap{-webkit-box-flex:1;-ms-flex:1;flex:1;width:100%}}  #stacks_in_5035_page31.blu-sidebar>.blu-content{padding: 0px ;border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_5035_page31.blu-sidebar>.blu-content::before,#stacks_in_5035_page31.blu-sidebar>.blu-content::after{border-radius:calc(0px - 0px)}#stacks_in_5035_page31.blu-sidebar>.blu-side{padding: 0px ;border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_5035_page31.blu-sidebar>.blu-side::before,#stacks_in_5035_page31.blu-sidebar>.blu-side::after{border-radius:calc(0px - 0px)} 
#stacks_in_5195_page31 .panel{padding:0.00rem}#stacks_in_5195_page31 .panel{border-width:0}#stacks_in_5195_page31 .panel{background-color:rgba(255, 255, 255, 1.00);border-color:rgba(229, 229, 229, 1.00)}#stacks_in_5195_page31 .panel{margin-bottom:0}

#stacks_in_5195_page31 {
	background-color: rgba(255, 255, 255, 1.00);
}
    #stacks_in_5196_page31.blu-wrap.flex-bot{margin-top:auto!important}    #stacks_in_5196_page31.blu-wrap{background-color:rgba(255, 255, 255, 0.00)}#stacks_in_5196_page31.blu-wrap>.blueprint-col{}#stacks_in_5196_page31.blu-wrap>.blueprint-col.flex-width.sb-sm-left{margin-right:auto}#stacks_in_5196_page31.blu-wrap>.blueprint-col.flex-width.sb-sm-center{margin-right:auto;margin-left:auto}#stacks_in_5196_page31.blu-wrap>.blueprint-col.flex-width.sb-sm-right{margin-left:auto}#stacks_in_5196_page31.blu-wrap>.blueprint-col>.blucol-content{margin: 0px ;padding: 0px }#stacks_in_5196_page31.blu-wrap>.blueprint-col>.blucol-content.bg-color{background-color:rgba(248, 248, 248, 1.00)} @media screen and (min-width:640px){#stacks_in_5196_page31.blu-wrap>.blueprint-col{ }#stacks_in_5196_page31.blu-wrap>.blueprint-col.med-flex-width.sb-med-left{margin-right:auto;margin-left:0}#stacks_in_5196_page31.blu-wrap>.blueprint-col.med-flex-width.sb-med-center{margin-right:auto;margin-left:auto}#stacks_in_5196_page31.blu-wrap>.blueprint-col.med-flex-width.sb-med-right{margin-left:auto;margin-right:0}#stacks_in_5196_page31.blu-wrap>.blueprint-col.med-fill-width{width:100%;margin-left:0;margin-right:0}}  @media screen and (min-width:1000px){#stacks_in_5196_page31.blu-wrap>.blueprint-col{ }
#stacks_in_5196_page31.blu-wrap>.blueprint-col.lg-flex-width.sb-lg-left,#stacks_in_5196_page31.blu-wrap>.blueprint-col.med-flex-width.lg-flex-width.sb-lg-left{margin-right:auto;margin-left:0}#stacks_in_5196_page31.blu-wrap>.blueprint-col.lg-flex-width.sb-lg-center,#stacks_in_5196_page31.blu-wrap>.blueprint-col.med-flex-width.lg-flex-width.sb-lg-center{margin-right:auto;margin-left:auto}#stacks_in_5196_page31.blu-wrap>.blueprint-col.lg-flex-width.sb-lg-right,#stacks_in_5196_page31.blu-wrap>.blueprint-col.med-flex-width.lg-flex-width.sb-lg-right{margin-left:auto;margin-right:0}#stacks_in_5196_page31.blu-wrap>.blueprint-col.lg-fill-width,#stacks_in_5196_page31.blu-wrap>.blueprint-col.med-fill-width,#stacks_in_5196_page31.blu-wrap>.blueprint-col .lg-fill-width{width:100%;max-width:none;margin-left:0;margin-right:0}}     
/*
 * Typography: Core
 * Author: Jeremy Hawes
 * Version: 1.0.0
 * URL: http://onelittledesigner.com
 * Description: Typography Core stack for RapidWeaver 5+ Stack 2+
 */

#typography_stacks_in_5197_page31,
#typography_stacks_in_5197_page31 * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#typography_stacks_in_5197_page31 .fontImport {
	border: solid 2px #e0e0e0;
	background: #f0f0f0;
	border-radius: 4px;
	padding: 12px;
}



	/* Typography - Text Global Styles */
	#typography_stacks_in_5197_page31 .typography_text,
	#typography_stacks_in_5197_page31 .typography_text div,
	#typography_stacks_in_5197_page31 .typography_text p,
	#typography_stacks_in_5197_page31 .typography_text blockquote,
	#typography_stacks_in_5197_page31 .typography_text address,
	#typography_stacks_in_5197_page31 .typography_text details {
		color: #333333;
	}
	
		#typography_stacks_in_5197_page31 .typography_text,
		#typography_stacks_in_5197_page31 .typography_text div,
		#typography_stacks_in_5197_page31 .typography_text p,
		#typography_stacks_in_5197_page31 .typography_text blockquote,
		#typography_stacks_in_5197_page31 .typography_text address,
		#typography_stacks_in_5197_page31 .typography_text details {
			font-size: 14px;
			
		}
		#typography_stacks_in_5197_page31 h1.typography_headers {
			font-size: 28px;
			
		}
		#typography_stacks_in_5197_page31 h2.typography_headers {
			font-size: 24px;
			
		}
		#typography_stacks_in_5197_page31 h3.typography_headers {
			font-size: 20px;
			
		}
		#typography_stacks_in_5197_page31 h4.typography_headers {
			font-size: 16px;
			
		}
		#typography_stacks_in_5197_page31 h5.typography_headers {
			font-size: 12px;
			
		}
		#typography_stacks_in_5197_page31 h6.typography_headers {
			font-size: 12px;
			
		}
	
	
		#typography_stacks_in_5197_page31 h1.typography_headers,
		#typography_stacks_in_5197_page31 h2.typography_headers,
		#typography_stacks_in_5197_page31 h3.typography_headers,
		#typography_stacks_in_5197_page31 h4.typography_headers,
		#typography_stacks_in_5197_page31 h5.typography_headers,
		#typography_stacks_in_5197_page31 h6.typography_headers {
			color: #111111;
		}
	
	
	#typography_stacks_in_5197_page31 .typography_text a,
	#typography_stacks_in_5197_page31 .typography_headers a,
	#typography_stacks_in_5197_page31 a .typography_headers {
		color: #0276FD;
	}
	#typography_stacks_in_5197_page31 .typography_text a:hover,
	#typography_stacks_in_5197_page31 .typography_headers a:hover,
	#typography_stacks_in_5197_page31 a:hover .typography_headers,
	#typography_stacks_in_5197_page31 .typography_text a:active,
	#typography_stacks_in_5197_page31 .typography_headers a:active,
	#typography_stacks_in_5197_page31 a:active .typography_headers {
		color: #60AFFE;
	}
	#typography_stacks_in_5197_page31.linkDecorationInherit .typography_text a {
		text-decoration: inherit;
	}
	#typography_stacks_in_5197_page31.linkDecorationNone .typography_text a {
		text-decoration: none;
		font-weight: normal;
	}
	#typography_stacks_in_5197_page31.linkDecorationUnderline .typography_text a {
		text-decoration: underline;
		font-weight: normal;
	}
	#typography_stacks_in_5197_page31.linkDecorationBold .typography_text a {
		text-decoration: none;
		font-weight: bold;
	}
	#typography_stacks_in_5197_page31.linkDecorationItalic .typography_text a {
		text-decoration: none;
		font-weight: none;
		font-style: italic;
	}
	
	#typography_stacks_in_5197_page31.linkDecorationHoverInherit .typography_text a:hover,
	#typography_stacks_in_5197_page31.linkDecorationHoverInherit .typography_text a:active {
		text-decoration: inherit;
	}
	#typography_stacks_in_5197_page31.linkDecorationHoverNone .typography_text a:hover,
	#typography_stacks_in_5197_page31.linkDecorationHoverNone .typography_text a:active {
		text-decoration: none;
		font-weight: normal;
	}
	#typography_stacks_in_5197_page31.linkDecorationHoverUnderline .typography_text a:hover,
	#typography_stacks_in_5197_page31.linkDecorationHoverUnderline .typography_text a:active {
		text-decoration: underline;
	}
	#typography_stacks_in_5197_page31.linkDecorationHoverBold .typography_text a:hover,
	#typography_stacks_in_5197_page31.linkDecorationHoverBold .typography_text a:active {
		font-weight: bold;
	}
	#typography_stacks_in_5197_page31.linkDecorationHoverItalic .typography_text a:hover,
	#typography_stacks_in_5197_page31.linkDecorationHoverItalic .typography_text a:active {\
		font-style: italic;
	}
	
		
		
		
		
		
			@media (max-width: 320px) {
				#typography_stacks_in_5197_page31 .typography_text {
					font-size: 14px;
				}
				#typography_stacks_in_5197_page31 h1.typography_headers {
					font-size: 16px;
				}
				#typography_stacks_in_5197_page31 h2.typography_headers {
					font-size: 24px;
				}
				#typography_stacks_in_5197_page31 h3.typography_headers {
					font-size: 20px;
				}
				#typography_stacks_in_5197_page31 h4.typography_headers {
					font-size: 18px;
				}
				#typography_stacks_in_5197_page31 h5.typography_headers {
					font-size: 12px;
				}
				#typography_stacks_in_5197_page31 h6.typography_headers {
					font-size: 10px;
				}
			}
		
	

/*
 * Typography: Font Importer
 * Author: Jeremy Hawes
 * Version: 1.0.0
 * URL: http://onelittledesigner.com
 * Description: Typography Core stack for RapidWeaver 5+ Stack 2+
 */


#stacks_in_5200_page31{overflow:hidden}#stacks_in_5200_page31 hr{opacity:1.00;border-top-style:solid;border-top-width:1px;margin:0.50rem 0;}#stacks_in_5200_page31 hr.custom{border-color:rgba(0, 0, 0, 1.00)}
                @media only screen and (min-width:0px){#stacks_in_6085_page31{ }
} 


#stacks_in_6085_page31 {
	padding: 10px 12px 0px 12px;
}

#stacks_in_6086_page31 {
	display:inline-block; width:100%; line-height: 1.200000em;
	font-size: 120%;
}
/*  */

.spacerStack {
	height: 1.00px;
}

#spacerStackstacks_in_6084_page31 {
	height: 1.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_6084_page31 {
		display: none !important;
	}
}
/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_6005_page31 {
      margin: 0px;      
    }

    #stacks_in_6005_page31 {
      padding: 0px;      
    }


     
      #stacks_in_6005_page31 {
        margin-left: 5px;
        margin-right: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
      }
    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_6005_page31 {
      margin: 0px;      
    }

    #stacks_in_6005_page31 {
      padding: 0px;      
    }


     
      #stacks_in_6005_page31 {
        margin-left: 5px;
        margin-right: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
      }
    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_6005_page31 {
      margin: 0px;      
    }

    #stacks_in_6005_page31 {
      padding: 0px;      
    }


     
      #stacks_in_6005_page31 {
        margin-left: 5px;
        margin-right: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
      }
    

    
  

}

/* 
 * Typography: Headers
 * Author: Jeremy Hawes
 * Website: http://onelittledesigner.com/rapidweaver-stack/typography/
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.0.0
 */

#typography_headers_stacks_in_6006_page31,
#typography_headers_stacks_in_6006_page31 span.type-wrap,
h1#typography_headers_stacks_in_6006_page31,
h2#typography_headers_stacks_in_6006_page31,
h3#typography_headers_stacks_in_6006_page31,
h4#typography_headers_stacks_in_6006_page31,
h5#typography_headers_stacks_in_6006_page31,
h6#typography_headers_stacks_in_6006_page31 {
	margin: 0;
	padding: 0;
	text-align: left;
	letter-spacing: -0.70px;
	font-family: Gordita-Bold;
	font-weight: 400;
	
	-webkit-transform: scale(1.00,1.00);
	-moz-transform: scale(1.00,1.00);
	transform: scale(1.00,1.00);
	
	-webkit-transform: rotate(0deg) skew(0deg, 0deg);
	-moz-transform: rotate(0deg) skew(0deg, 0deg);
	transform: rotate(0deg) skew(0deg, 0deg);
}









/*  */

.spacerStack {
	height: 1.00px;
}

#spacerStackstacks_in_6083_page31 {
	height: 1.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_6083_page31 {
		display: none !important;
	}
}                @media only screen and (min-width:0px){#stacks_in_6080_page31{ }
} 


#stacks_in_6080_page31 {
	padding: 10px 12px 0px 12px;
}
/*  */

.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_6014_page31 {
	height: 25.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_6014_page31 {
		display: none !important;
	}
}
/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_6425_page31 {
      margin: 0px;      
    }

    #stacks_in_6425_page31 {
      padding: 0px;      
    }


    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_6425_page31 {
      margin: 0px;      
    }

    #stacks_in_6425_page31 {
      padding: 0px;      
    }


    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_6425_page31 {
      margin: 0px;      
    }

    #stacks_in_6425_page31 {
      padding: 0px;      
    }


    

    
  

}


#stacks_out_6425_page31 {
	width: 475px;
	margin-left:0;
}
/*  */

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_5205_page31 {
	height: 10.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_5205_page31 {
		display: none !important;
	}
}                @media only screen and (min-width:0px){#stacks_in_p6421_n1_page31{ }
} 


#stacks_in_p6421_n1_page31 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	padding: 10px 12px 0px 12px;
}
/*  */

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_5215_page31 {
	height: 20.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_5215_page31 {
		display: none !important;
	}
}#stacks_in_5219_page31{overflow:hidden}#stacks_in_5219_page31 hr{opacity:1.00;border-top-style:solid;border-top-width:1px;margin:0.50rem 0;}#stacks_in_5219_page31 hr.custom{border-color:rgba(0, 0, 0, 1.00)}
 @media(hover:hover){#stacks_in_6298_page31.blu-sidebar>.blu-side .my-titles{-webkit-transition:-webkit-transform 120ms ease;transition:-webkit-transform 120ms ease;transition:transform 120ms ease;transition:transform 120ms ease,-webkit-transform 120ms ease}#stacks_in_6298_page31.blu-sidebar>.blu-side.med-left .my-titles{-webkit-transform:translateX(-100%);transform:translateX(-100%)}#stacks_in_6298_page31.blu-sidebar>.blu-side.med-right .my-titles{-webkit-transform:translateX(100%);transform:translateX(100%)}#stacks_in_6298_page31.blu-sidebar>.blu-side:hover .my-titles{-webkit-transform:translateX(0%);transform:translateX(0%)}}@media(hover:hover){#stacks_in_6298_page31.blu-sidebar>.blu-side .my-icons{-webkit-transition:-webkit-filter 120ms ease;transition:-webkit-filter 120ms ease;transition:filter 120ms ease;transition:filter 120ms ease,-webkit-filter 120ms ease}#stacks_in_6298_page31.blu-sidebar>.blu-side .my-icons{-webkit-filter:grayscale(100%);filter:grayscale(100%)}#stacks_in_6298_page31.blu-sidebar>.blu-side:hover .my-icons{-webkit-filter:grayscale(0%);filter:grayscale(0%)}}@media screen and (min-width:640px){#stacks_in_6298_page31.blu-sidebar.full-height{height:100vh}#stacks_in_6298_page31.blu-sidebar.full-height>.blu-content>.blu-blu-content__wrap,#stacks_in_6298_page31.blu-sidebar.full-height>.blu-side>.blu-side__wrap{max-height:100vh;-webkit-transition:none;transition:none}#stacks_in_6298_page31.blu-sidebar.full-height>.blu-content>.blu-blu-content__wrap,#stacks_in_6298_page31.blu-sidebar.full-height>.blu-side>.blu-side__wrap{overflow-x:hidden}#stacks_in_6298_page31.blu-sidebar.full-height>.blu-content>.blu-content__wrap{overflow-y:auto;-webkit-overflow-scrolling:touch}#stacks_in_6298_page31.blu-sidebar.full-height>.blu-side>.blu-side__wrap{overflow-y:auto;-webkit-overflow-scrolling:touch}} #stacks_in_6298_page31.blu-sidebar>.blu-side{-webkit-transition:-webkit-flex-basis 180ms ease-in-out;transition:-webkit-flex-basis 180ms ease-in-out;transition:flex-basis 180ms ease-in-out;transition:flex-basis 180ms ease-in-out,-webkit-flex-basis 180ms ease-in-out,-ms-flex-preferred-size 180ms ease-in-out}#stacks_in_6298_page31.blu-sidebar>.blu-gutter{border-left:0px solid rgba(204, 204, 204, 1.00);margin-left:0.00px;margin-right:0.00px}#stacks_in_6298_page31.blu-sidebar>.blu-side>.blu-side__wrap.flex-col{-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start}#stacks_in_6298_page31.blu-sidebar>.blu-content>.blu-content__wrap.flex-col{-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start}@media screen and (max-height:0px){#stacks_in_6298_page31.blu-sidebar>.blu-side>.blu-side__wrap.flex-col{display:block}}@media screen and (max-height:0px){#stacks_in_6298_page31.blu-sidebar>.blu-content>.blu-content__wrap.flex-col{display:block}}@media all and (max-width:640px){#stacks_in_6298_page31.blu-sidebar>.blu-side.sm-top{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}#stacks_in_6298_page31.blu-sidebar>.blu-side.sm-bot{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}#stacks_in_6298_page31.blu-sidebar>.blu-side.sm-hide{display:none}#stacks_in_6298_page31.blu-sidebar>.blu-side>.blu-gutter{display:none}#stacks_in_6298_page31.blu-sidebar.stacked-gutter>.blu-side.sm-top{margin-bottom:12.00px}#stacks_in_6298_page31.blu-sidebar.stacked-gutter>.blu-content.side-sm-bot{margin-bottom:12.00px}}@media all and (min-width:640px){#stacks_in_6298_page31.blu-sidebar.med-left>.blu-side{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}#stacks_in_6298_page31.blu-sidebar.med-left>.blu-content{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}#stacks_in_6298_page31.blu-sidebar.med-right>.blu-side{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}#stacks_in_6298_page31.blu-sidebar.med-right>.blu-content{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}}@media all and (min-width:640px){#stacks_in_6298_page31.blu-sidebar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}#stacks_in_6298_page31.blu-sidebar>.blu-content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1}#stacks_in_6298_page31.blu-sidebar>.blu-content>.blu-content__wrap{width:100%}#stacks_in_6298_page31.blu-sidebar>.blu-side{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:1;flex-shrink:1;-ms-flex-preferred-size:calc(70% - 0px);flex-basis:calc(70% - 0px);max-width:9999px;min-width:100px}
#stacks_in_6298_page31.blu-sidebar>.blu-side>.blu-side__wrap{-webkit-box-flex:1;-ms-flex:1;flex:1;width:100%}}  #stacks_in_6298_page31.blu-sidebar>.blu-content{padding: 0px ;border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_6298_page31.blu-sidebar>.blu-content::before,#stacks_in_6298_page31.blu-sidebar>.blu-content::after{border-radius:calc(0px - 0px)}#stacks_in_6298_page31.blu-sidebar>.blu-side{padding: 0px ;border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_6298_page31.blu-sidebar>.blu-side::before,#stacks_in_6298_page31.blu-sidebar>.blu-side::after{border-radius:calc(0px - 0px)} 
                @media only screen and (min-width:0px){#stacks_in_6299_page31{ }
} 


#stacks_in_6299_page31 {
	margin: 0px 0px 0px 15px;
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .83);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 2%;
	right: 2%;
	top: 2%;
	bottom: 2%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 0px;
	border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
}


.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline,
.nivo-lightbox-theme-default .nivo-lightbox-image img,
.nivo-lightbox-theme-default .nivo-lightbox-html5video {
	box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
}















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: rgba(255, 255, 255, 1.00);
background: -moz-radial-gradient(center, ellipse cover,  rgba(255, 255, 255, 1.00) 0%, rgba(255, 255, 255, 1.00) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255, 255, 255, 1.00)), color-stop(100%,rgba(255, 255, 255, 1.00)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 100%);
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 100%);
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_6303_page31 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}


/* TopBox Indicator icon */
#topBoxIndicatorWrapperstacks_in_6303_page31 {
	z-index: 7;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: block;
	text-align: center;
}

#topBoxIndicatorIconstacks_in_6303_page31 {
	display: inline;
	margin: auto;
	padding: 5px;
	text-align: center;
	font-size: 70px;
	opacity: 0.50;
	color: rgba(255, 255, 255, 1.00);
	transition: opacity 300ms ease-in-out;
}

#topBoxIndicatorIconstacks_in_6303_page31 [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
}

#topBoxTriggerRegionstacks_in_6303_page31:hover #topBoxIndicatorIconstacks_in_6303_page31 {
	opacity: 0.90;
}





/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_6303_page31 #topBoxTriggerstacks_in_6303_page31 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_6303_page31 #topBoxTriggerContentstacks_in_6303_page31 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_6303_page31 #topBoxTriggerContentstacks_in_6303_page31 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_6303_page31 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_6303_page31 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_6303_page31 h1,
#topBoxContentWrapperstacks_in_6303_page31 h2,
#topBoxContentWrapperstacks_in_6303_page31 h3,
#topBoxContentWrapperstacks_in_6303_page31 h4,
#topBoxContentWrapperstacks_in_6303_page31 h5,
#topBoxContentWrapperstacks_in_6303_page31 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_6303_page31 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_6303_page31 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_6303_page31 a:hover,
#topBoxContentWrapperstacks_in_6303_page31 a:focus,
#topBoxContentWrapperstacks_in_6303_page31 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_6303_page31 .topBoxAudio,
#topBoxContentWrapperstacks_in_6303_page31 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_6303_page31.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_6303_page31 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_6303_page31 .trackName,
#topBoxContentWrapperstacks_in_6303_page31 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_6303_page31 {
	display: none;
}








#stacks_in_6303_page31 {
	background-color: rgba(255, 255, 255, 1.00);
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .85);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 20px;
	border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
}


.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline,
.nivo-lightbox-theme-default .nivo-lightbox-image img,
.nivo-lightbox-theme-default .nivo-lightbox-html5video {
	box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
}















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: rgba(255, 255, 255, 1.00);
background: -moz-radial-gradient(center, ellipse cover,  rgba(255, 255, 255, 1.00) 0%, rgba(234, 234, 234, 1.00) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255, 255, 255, 1.00)), color-stop(100%,rgba(234, 234, 234, 1.00)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_6310_page31 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_6310_page31 #topBoxTriggerstacks_in_6310_page31 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_6310_page31 #topBoxTriggerContentstacks_in_6310_page31 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_6310_page31 #topBoxTriggerContentstacks_in_6310_page31 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_6310_page31 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_6310_page31 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_6310_page31 h1,
#topBoxContentWrapperstacks_in_6310_page31 h2,
#topBoxContentWrapperstacks_in_6310_page31 h3,
#topBoxContentWrapperstacks_in_6310_page31 h4,
#topBoxContentWrapperstacks_in_6310_page31 h5,
#topBoxContentWrapperstacks_in_6310_page31 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_6310_page31 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_6310_page31 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_6310_page31 a:hover,
#topBoxContentWrapperstacks_in_6310_page31 a:focus,
#topBoxContentWrapperstacks_in_6310_page31 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_6310_page31 .topBoxAudio,
#topBoxContentWrapperstacks_in_6310_page31 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_6310_page31.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_6310_page31 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_6310_page31 .trackName,
#topBoxContentWrapperstacks_in_6310_page31 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_6310_page31 {
	display: none;
}







.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .50);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 0px;
	border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
}


.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline,
.nivo-lightbox-theme-default .nivo-lightbox-image img,
.nivo-lightbox-theme-default .nivo-lightbox-html5video {
	box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
}















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: rgba(255, 255, 255, 1.00);
background: -moz-radial-gradient(center, ellipse cover,  rgba(255, 255, 255, 1.00) 0%, rgba(234, 234, 234, 1.00) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255, 255, 255, 1.00)), color-stop(100%,rgba(234, 234, 234, 1.00)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_6311_page31 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_6311_page31 #topBoxTriggerstacks_in_6311_page31 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_6311_page31 #topBoxTriggerContentstacks_in_6311_page31 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_6311_page31 #topBoxTriggerContentstacks_in_6311_page31 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_6311_page31 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_6311_page31 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_6311_page31 h1,
#topBoxContentWrapperstacks_in_6311_page31 h2,
#topBoxContentWrapperstacks_in_6311_page31 h3,
#topBoxContentWrapperstacks_in_6311_page31 h4,
#topBoxContentWrapperstacks_in_6311_page31 h5,
#topBoxContentWrapperstacks_in_6311_page31 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_6311_page31 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_6311_page31 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_6311_page31 a:hover,
#topBoxContentWrapperstacks_in_6311_page31 a:focus,
#topBoxContentWrapperstacks_in_6311_page31 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_6311_page31 .topBoxAudio,
#topBoxContentWrapperstacks_in_6311_page31 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_6311_page31.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_6311_page31 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_6311_page31 .trackName,
#topBoxContentWrapperstacks_in_6311_page31 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_6311_page31 {
	display: none;
}







.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .85);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 20px;
	border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
}


.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline,
.nivo-lightbox-theme-default .nivo-lightbox-image img,
.nivo-lightbox-theme-default .nivo-lightbox-html5video {
	box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
}















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: rgba(255, 255, 255, 1.00);
background: -moz-radial-gradient(center, ellipse cover,  rgba(255, 255, 255, 1.00) 0%, rgba(234, 234, 234, 1.00) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255, 255, 255, 1.00)), color-stop(100%,rgba(234, 234, 234, 1.00)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_6304_page31 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_6304_page31 #topBoxTriggerstacks_in_6304_page31 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_6304_page31 #topBoxTriggerContentstacks_in_6304_page31 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_6304_page31 #topBoxTriggerContentstacks_in_6304_page31 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_6304_page31 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_6304_page31 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_6304_page31 h1,
#topBoxContentWrapperstacks_in_6304_page31 h2,
#topBoxContentWrapperstacks_in_6304_page31 h3,
#topBoxContentWrapperstacks_in_6304_page31 h4,
#topBoxContentWrapperstacks_in_6304_page31 h5,
#topBoxContentWrapperstacks_in_6304_page31 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_6304_page31 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_6304_page31 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_6304_page31 a:hover,
#topBoxContentWrapperstacks_in_6304_page31 a:focus,
#topBoxContentWrapperstacks_in_6304_page31 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_6304_page31 .topBoxAudio,
#topBoxContentWrapperstacks_in_6304_page31 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_6304_page31.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_6304_page31 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_6304_page31 .trackName,
#topBoxContentWrapperstacks_in_6304_page31 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_6304_page31 {
	display: none;
}








#stacks_in_6304_page31 {
	background-color: rgba(255, 255, 255, 1.00);
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .85);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 20px;
	border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
}


.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline,
.nivo-lightbox-theme-default .nivo-lightbox-image img,
.nivo-lightbox-theme-default .nivo-lightbox-html5video {
	box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
}















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: rgba(255, 255, 255, 1.00);
background: -moz-radial-gradient(center, ellipse cover,  rgba(255, 255, 255, 1.00) 0%, rgba(234, 234, 234, 1.00) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255, 255, 255, 1.00)), color-stop(100%,rgba(234, 234, 234, 1.00)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_6305_page31 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_6305_page31 #topBoxTriggerstacks_in_6305_page31 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_6305_page31 #topBoxTriggerContentstacks_in_6305_page31 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_6305_page31 #topBoxTriggerContentstacks_in_6305_page31 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_6305_page31 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_6305_page31 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_6305_page31 h1,
#topBoxContentWrapperstacks_in_6305_page31 h2,
#topBoxContentWrapperstacks_in_6305_page31 h3,
#topBoxContentWrapperstacks_in_6305_page31 h4,
#topBoxContentWrapperstacks_in_6305_page31 h5,
#topBoxContentWrapperstacks_in_6305_page31 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_6305_page31 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_6305_page31 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_6305_page31 a:hover,
#topBoxContentWrapperstacks_in_6305_page31 a:focus,
#topBoxContentWrapperstacks_in_6305_page31 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_6305_page31 .topBoxAudio,
#topBoxContentWrapperstacks_in_6305_page31 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_6305_page31.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_6305_page31 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_6305_page31 .trackName,
#topBoxContentWrapperstacks_in_6305_page31 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_6305_page31 {
	display: none;
}








#stacks_in_6305_page31 {
	background-color: rgba(255, 255, 255, 1.00);
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .85);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 20px;
	border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
}


.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline,
.nivo-lightbox-theme-default .nivo-lightbox-image img,
.nivo-lightbox-theme-default .nivo-lightbox-html5video {
	box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
}















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: rgba(255, 255, 255, 1.00);
background: -moz-radial-gradient(center, ellipse cover,  rgba(255, 255, 255, 1.00) 0%, rgba(234, 234, 234, 1.00) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255, 255, 255, 1.00)), color-stop(100%,rgba(234, 234, 234, 1.00)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_6306_page31 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_6306_page31 #topBoxTriggerstacks_in_6306_page31 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_6306_page31 #topBoxTriggerContentstacks_in_6306_page31 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_6306_page31 #topBoxTriggerContentstacks_in_6306_page31 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_6306_page31 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_6306_page31 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_6306_page31 h1,
#topBoxContentWrapperstacks_in_6306_page31 h2,
#topBoxContentWrapperstacks_in_6306_page31 h3,
#topBoxContentWrapperstacks_in_6306_page31 h4,
#topBoxContentWrapperstacks_in_6306_page31 h5,
#topBoxContentWrapperstacks_in_6306_page31 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_6306_page31 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_6306_page31 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_6306_page31 a:hover,
#topBoxContentWrapperstacks_in_6306_page31 a:focus,
#topBoxContentWrapperstacks_in_6306_page31 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_6306_page31 .topBoxAudio,
#topBoxContentWrapperstacks_in_6306_page31 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_6306_page31.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_6306_page31 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_6306_page31 .trackName,
#topBoxContentWrapperstacks_in_6306_page31 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_6306_page31 {
	display: none;
}








#stacks_in_6306_page31 {
	background-color: rgba(255, 255, 255, 1.00);
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .85);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 20px;
	border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
}


.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline,
.nivo-lightbox-theme-default .nivo-lightbox-image img,
.nivo-lightbox-theme-default .nivo-lightbox-html5video {
	box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
}















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: rgba(255, 255, 255, 1.00);
background: -moz-radial-gradient(center, ellipse cover,  rgba(255, 255, 255, 1.00) 0%, rgba(234, 234, 234, 1.00) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255, 255, 255, 1.00)), color-stop(100%,rgba(234, 234, 234, 1.00)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_6307_page31 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_6307_page31 #topBoxTriggerstacks_in_6307_page31 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_6307_page31 #topBoxTriggerContentstacks_in_6307_page31 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_6307_page31 #topBoxTriggerContentstacks_in_6307_page31 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_6307_page31 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_6307_page31 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_6307_page31 h1,
#topBoxContentWrapperstacks_in_6307_page31 h2,
#topBoxContentWrapperstacks_in_6307_page31 h3,
#topBoxContentWrapperstacks_in_6307_page31 h4,
#topBoxContentWrapperstacks_in_6307_page31 h5,
#topBoxContentWrapperstacks_in_6307_page31 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_6307_page31 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_6307_page31 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_6307_page31 a:hover,
#topBoxContentWrapperstacks_in_6307_page31 a:focus,
#topBoxContentWrapperstacks_in_6307_page31 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_6307_page31 .topBoxAudio,
#topBoxContentWrapperstacks_in_6307_page31 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_6307_page31.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_6307_page31 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_6307_page31 .trackName,
#topBoxContentWrapperstacks_in_6307_page31 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_6307_page31 {
	display: none;
}








#stacks_in_6307_page31 {
	background-color: rgba(255, 255, 255, 1.00);
}
 @media(hover:hover){#stacks_in_6334_page31.blu-sidebar>.blu-side .my-titles{-webkit-transition:-webkit-transform 120ms ease;transition:-webkit-transform 120ms ease;transition:transform 120ms ease;transition:transform 120ms ease,-webkit-transform 120ms ease}#stacks_in_6334_page31.blu-sidebar>.blu-side.med-left .my-titles{-webkit-transform:translateX(-100%);transform:translateX(-100%)}#stacks_in_6334_page31.blu-sidebar>.blu-side.med-right .my-titles{-webkit-transform:translateX(100%);transform:translateX(100%)}#stacks_in_6334_page31.blu-sidebar>.blu-side:hover .my-titles{-webkit-transform:translateX(0%);transform:translateX(0%)}}@media(hover:hover){#stacks_in_6334_page31.blu-sidebar>.blu-side .my-icons{-webkit-transition:-webkit-filter 120ms ease;transition:-webkit-filter 120ms ease;transition:filter 120ms ease;transition:filter 120ms ease,-webkit-filter 120ms ease}#stacks_in_6334_page31.blu-sidebar>.blu-side .my-icons{-webkit-filter:grayscale(100%);filter:grayscale(100%)}#stacks_in_6334_page31.blu-sidebar>.blu-side:hover .my-icons{-webkit-filter:grayscale(0%);filter:grayscale(0%)}}@media screen and (min-width:640px){#stacks_in_6334_page31.blu-sidebar.full-height{height:100vh}#stacks_in_6334_page31.blu-sidebar.full-height>.blu-content>.blu-blu-content__wrap,#stacks_in_6334_page31.blu-sidebar.full-height>.blu-side>.blu-side__wrap{max-height:100vh;-webkit-transition:none;transition:none}#stacks_in_6334_page31.blu-sidebar.full-height>.blu-content>.blu-blu-content__wrap,#stacks_in_6334_page31.blu-sidebar.full-height>.blu-side>.blu-side__wrap{overflow-x:hidden}#stacks_in_6334_page31.blu-sidebar.full-height>.blu-content>.blu-content__wrap{overflow-y:auto;-webkit-overflow-scrolling:touch}#stacks_in_6334_page31.blu-sidebar.full-height>.blu-side>.blu-side__wrap{overflow-y:auto;-webkit-overflow-scrolling:touch}} #stacks_in_6334_page31.blu-sidebar>.blu-side{-webkit-transition:-webkit-flex-basis 180ms ease-in-out;transition:-webkit-flex-basis 180ms ease-in-out;transition:flex-basis 180ms ease-in-out;transition:flex-basis 180ms ease-in-out,-webkit-flex-basis 180ms ease-in-out,-ms-flex-preferred-size 180ms ease-in-out}#stacks_in_6334_page31.blu-sidebar>.blu-gutter{border-left:0px solid rgba(204, 204, 204, 1.00);margin-left:0.00px;margin-right:0.00px}#stacks_in_6334_page31.blu-sidebar>.blu-side>.blu-side__wrap.flex-col{-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start}#stacks_in_6334_page31.blu-sidebar>.blu-content>.blu-content__wrap.flex-col{-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start}@media screen and (max-height:0px){#stacks_in_6334_page31.blu-sidebar>.blu-side>.blu-side__wrap.flex-col{display:block}}@media screen and (max-height:0px){#stacks_in_6334_page31.blu-sidebar>.blu-content>.blu-content__wrap.flex-col{display:block}}@media all and (max-width:640px){#stacks_in_6334_page31.blu-sidebar>.blu-side.sm-top{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}#stacks_in_6334_page31.blu-sidebar>.blu-side.sm-bot{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}#stacks_in_6334_page31.blu-sidebar>.blu-side.sm-hide{display:none}#stacks_in_6334_page31.blu-sidebar>.blu-side>.blu-gutter{display:none}#stacks_in_6334_page31.blu-sidebar.stacked-gutter>.blu-side.sm-top{margin-bottom:12.00px}#stacks_in_6334_page31.blu-sidebar.stacked-gutter>.blu-content.side-sm-bot{margin-bottom:12.00px}}@media all and (min-width:640px){#stacks_in_6334_page31.blu-sidebar.med-left>.blu-side{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}#stacks_in_6334_page31.blu-sidebar.med-left>.blu-content{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}#stacks_in_6334_page31.blu-sidebar.med-right>.blu-side{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}#stacks_in_6334_page31.blu-sidebar.med-right>.blu-content{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}}@media all and (min-width:640px){#stacks_in_6334_page31.blu-sidebar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}#stacks_in_6334_page31.blu-sidebar>.blu-content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1}#stacks_in_6334_page31.blu-sidebar>.blu-content>.blu-content__wrap{width:100%}#stacks_in_6334_page31.blu-sidebar>.blu-side{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:1;flex-shrink:1;-ms-flex-preferred-size:calc(70% - 0px);flex-basis:calc(70% - 0px);max-width:9999px;min-width:100px}
#stacks_in_6334_page31.blu-sidebar>.blu-side>.blu-side__wrap{-webkit-box-flex:1;-ms-flex:1;flex:1;width:100%}}  #stacks_in_6334_page31.blu-sidebar>.blu-content{padding: 0px ;border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_6334_page31.blu-sidebar>.blu-content::before,#stacks_in_6334_page31.blu-sidebar>.blu-content::after{border-radius:calc(0px - 0px)}#stacks_in_6334_page31.blu-sidebar>.blu-side{padding: 0px ;border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_6334_page31.blu-sidebar>.blu-side::before,#stacks_in_6334_page31.blu-sidebar>.blu-side::after{border-radius:calc(0px - 0px)} 
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .83);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 2%;
	right: 2%;
	top: 2%;
	bottom: 2%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 0px;
	border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
}


.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline,
.nivo-lightbox-theme-default .nivo-lightbox-image img,
.nivo-lightbox-theme-default .nivo-lightbox-html5video {
	box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
}















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: rgba(255, 255, 255, 1.00);
background: -moz-radial-gradient(center, ellipse cover,  rgba(255, 255, 255, 1.00) 0%, rgba(255, 255, 255, 1.00) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255, 255, 255, 1.00)), color-stop(100%,rgba(255, 255, 255, 1.00)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 100%);
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 100%);
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_6339_page31 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}


/* TopBox Indicator icon */
#topBoxIndicatorWrapperstacks_in_6339_page31 {
	z-index: 7;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: block;
	text-align: center;
}

#topBoxIndicatorIconstacks_in_6339_page31 {
	display: inline;
	margin: auto;
	padding: 5px;
	text-align: center;
	font-size: 70px;
	opacity: 0.50;
	color: rgba(255, 255, 255, 1.00);
	transition: opacity 300ms ease-in-out;
}

#topBoxIndicatorIconstacks_in_6339_page31 [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
}

#topBoxTriggerRegionstacks_in_6339_page31:hover #topBoxIndicatorIconstacks_in_6339_page31 {
	opacity: 0.90;
}





/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_6339_page31 #topBoxTriggerstacks_in_6339_page31 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_6339_page31 #topBoxTriggerContentstacks_in_6339_page31 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_6339_page31 #topBoxTriggerContentstacks_in_6339_page31 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_6339_page31 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_6339_page31 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_6339_page31 h1,
#topBoxContentWrapperstacks_in_6339_page31 h2,
#topBoxContentWrapperstacks_in_6339_page31 h3,
#topBoxContentWrapperstacks_in_6339_page31 h4,
#topBoxContentWrapperstacks_in_6339_page31 h5,
#topBoxContentWrapperstacks_in_6339_page31 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_6339_page31 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_6339_page31 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_6339_page31 a:hover,
#topBoxContentWrapperstacks_in_6339_page31 a:focus,
#topBoxContentWrapperstacks_in_6339_page31 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_6339_page31 .topBoxAudio,
#topBoxContentWrapperstacks_in_6339_page31 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_6339_page31.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_6339_page31 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_6339_page31 .trackName,
#topBoxContentWrapperstacks_in_6339_page31 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_6339_page31 {
	display: none;
}








#stacks_in_6339_page31 {
	background-color: rgba(255, 255, 255, 1.00);
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .85);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 20px;
	border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
}


.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline,
.nivo-lightbox-theme-default .nivo-lightbox-image img,
.nivo-lightbox-theme-default .nivo-lightbox-html5video {
	box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
}















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: rgba(255, 255, 255, 1.00);
background: -moz-radial-gradient(center, ellipse cover,  rgba(255, 255, 255, 1.00) 0%, rgba(234, 234, 234, 1.00) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255, 255, 255, 1.00)), color-stop(100%,rgba(234, 234, 234, 1.00)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_6346_page31 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_6346_page31 #topBoxTriggerstacks_in_6346_page31 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_6346_page31 #topBoxTriggerContentstacks_in_6346_page31 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_6346_page31 #topBoxTriggerContentstacks_in_6346_page31 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_6346_page31 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_6346_page31 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_6346_page31 h1,
#topBoxContentWrapperstacks_in_6346_page31 h2,
#topBoxContentWrapperstacks_in_6346_page31 h3,
#topBoxContentWrapperstacks_in_6346_page31 h4,
#topBoxContentWrapperstacks_in_6346_page31 h5,
#topBoxContentWrapperstacks_in_6346_page31 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_6346_page31 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_6346_page31 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_6346_page31 a:hover,
#topBoxContentWrapperstacks_in_6346_page31 a:focus,
#topBoxContentWrapperstacks_in_6346_page31 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_6346_page31 .topBoxAudio,
#topBoxContentWrapperstacks_in_6346_page31 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_6346_page31.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_6346_page31 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_6346_page31 .trackName,
#topBoxContentWrapperstacks_in_6346_page31 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_6346_page31 {
	display: none;
}







.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .50);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 0px;
	border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
}


.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline,
.nivo-lightbox-theme-default .nivo-lightbox-image img,
.nivo-lightbox-theme-default .nivo-lightbox-html5video {
	box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
}















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: rgba(255, 255, 255, 1.00);
background: -moz-radial-gradient(center, ellipse cover,  rgba(255, 255, 255, 1.00) 0%, rgba(234, 234, 234, 1.00) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255, 255, 255, 1.00)), color-stop(100%,rgba(234, 234, 234, 1.00)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_6347_page31 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_6347_page31 #topBoxTriggerstacks_in_6347_page31 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_6347_page31 #topBoxTriggerContentstacks_in_6347_page31 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_6347_page31 #topBoxTriggerContentstacks_in_6347_page31 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_6347_page31 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_6347_page31 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_6347_page31 h1,
#topBoxContentWrapperstacks_in_6347_page31 h2,
#topBoxContentWrapperstacks_in_6347_page31 h3,
#topBoxContentWrapperstacks_in_6347_page31 h4,
#topBoxContentWrapperstacks_in_6347_page31 h5,
#topBoxContentWrapperstacks_in_6347_page31 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_6347_page31 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_6347_page31 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_6347_page31 a:hover,
#topBoxContentWrapperstacks_in_6347_page31 a:focus,
#topBoxContentWrapperstacks_in_6347_page31 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_6347_page31 .topBoxAudio,
#topBoxContentWrapperstacks_in_6347_page31 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_6347_page31.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_6347_page31 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_6347_page31 .trackName,
#topBoxContentWrapperstacks_in_6347_page31 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_6347_page31 {
	display: none;
}







.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .85);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 20px;
	border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
}


.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline,
.nivo-lightbox-theme-default .nivo-lightbox-image img,
.nivo-lightbox-theme-default .nivo-lightbox-html5video {
	box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
}















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: rgba(255, 255, 255, 1.00);
background: -moz-radial-gradient(center, ellipse cover,  rgba(255, 255, 255, 1.00) 0%, rgba(234, 234, 234, 1.00) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255, 255, 255, 1.00)), color-stop(100%,rgba(234, 234, 234, 1.00)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_6340_page31 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_6340_page31 #topBoxTriggerstacks_in_6340_page31 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_6340_page31 #topBoxTriggerContentstacks_in_6340_page31 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_6340_page31 #topBoxTriggerContentstacks_in_6340_page31 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_6340_page31 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_6340_page31 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_6340_page31 h1,
#topBoxContentWrapperstacks_in_6340_page31 h2,
#topBoxContentWrapperstacks_in_6340_page31 h3,
#topBoxContentWrapperstacks_in_6340_page31 h4,
#topBoxContentWrapperstacks_in_6340_page31 h5,
#topBoxContentWrapperstacks_in_6340_page31 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_6340_page31 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_6340_page31 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_6340_page31 a:hover,
#topBoxContentWrapperstacks_in_6340_page31 a:focus,
#topBoxContentWrapperstacks_in_6340_page31 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_6340_page31 .topBoxAudio,
#topBoxContentWrapperstacks_in_6340_page31 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_6340_page31.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_6340_page31 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_6340_page31 .trackName,
#topBoxContentWrapperstacks_in_6340_page31 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_6340_page31 {
	display: none;
}








#stacks_in_6340_page31 {
	background-color: rgba(255, 255, 255, 1.00);
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .85);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 20px;
	border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
}


.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline,
.nivo-lightbox-theme-default .nivo-lightbox-image img,
.nivo-lightbox-theme-default .nivo-lightbox-html5video {
	box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
}















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: rgba(255, 255, 255, 1.00);
background: -moz-radial-gradient(center, ellipse cover,  rgba(255, 255, 255, 1.00) 0%, rgba(234, 234, 234, 1.00) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255, 255, 255, 1.00)), color-stop(100%,rgba(234, 234, 234, 1.00)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_6341_page31 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_6341_page31 #topBoxTriggerstacks_in_6341_page31 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_6341_page31 #topBoxTriggerContentstacks_in_6341_page31 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_6341_page31 #topBoxTriggerContentstacks_in_6341_page31 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_6341_page31 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_6341_page31 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_6341_page31 h1,
#topBoxContentWrapperstacks_in_6341_page31 h2,
#topBoxContentWrapperstacks_in_6341_page31 h3,
#topBoxContentWrapperstacks_in_6341_page31 h4,
#topBoxContentWrapperstacks_in_6341_page31 h5,
#topBoxContentWrapperstacks_in_6341_page31 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_6341_page31 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_6341_page31 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_6341_page31 a:hover,
#topBoxContentWrapperstacks_in_6341_page31 a:focus,
#topBoxContentWrapperstacks_in_6341_page31 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_6341_page31 .topBoxAudio,
#topBoxContentWrapperstacks_in_6341_page31 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_6341_page31.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_6341_page31 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_6341_page31 .trackName,
#topBoxContentWrapperstacks_in_6341_page31 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_6341_page31 {
	display: none;
}








#stacks_in_6341_page31 {
	background-color: rgba(255, 255, 255, 1.00);
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .85);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 20px;
	border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
}


.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline,
.nivo-lightbox-theme-default .nivo-lightbox-image img,
.nivo-lightbox-theme-default .nivo-lightbox-html5video {
	box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
}















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: rgba(255, 255, 255, 1.00);
background: -moz-radial-gradient(center, ellipse cover,  rgba(255, 255, 255, 1.00) 0%, rgba(234, 234, 234, 1.00) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255, 255, 255, 1.00)), color-stop(100%,rgba(234, 234, 234, 1.00)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_6342_page31 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_6342_page31 #topBoxTriggerstacks_in_6342_page31 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_6342_page31 #topBoxTriggerContentstacks_in_6342_page31 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_6342_page31 #topBoxTriggerContentstacks_in_6342_page31 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_6342_page31 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_6342_page31 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_6342_page31 h1,
#topBoxContentWrapperstacks_in_6342_page31 h2,
#topBoxContentWrapperstacks_in_6342_page31 h3,
#topBoxContentWrapperstacks_in_6342_page31 h4,
#topBoxContentWrapperstacks_in_6342_page31 h5,
#topBoxContentWrapperstacks_in_6342_page31 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_6342_page31 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_6342_page31 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_6342_page31 a:hover,
#topBoxContentWrapperstacks_in_6342_page31 a:focus,
#topBoxContentWrapperstacks_in_6342_page31 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_6342_page31 .topBoxAudio,
#topBoxContentWrapperstacks_in_6342_page31 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_6342_page31.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_6342_page31 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_6342_page31 .trackName,
#topBoxContentWrapperstacks_in_6342_page31 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_6342_page31 {
	display: none;
}








#stacks_in_6342_page31 {
	background-color: rgba(255, 255, 255, 1.00);
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .85);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 20px;
	border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
}


.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline,
.nivo-lightbox-theme-default .nivo-lightbox-image img,
.nivo-lightbox-theme-default .nivo-lightbox-html5video {
	box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
}















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: rgba(255, 255, 255, 1.00);
background: -moz-radial-gradient(center, ellipse cover,  rgba(255, 255, 255, 1.00) 0%, rgba(234, 234, 234, 1.00) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255, 255, 255, 1.00)), color-stop(100%,rgba(234, 234, 234, 1.00)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_6343_page31 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_6343_page31 #topBoxTriggerstacks_in_6343_page31 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_6343_page31 #topBoxTriggerContentstacks_in_6343_page31 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_6343_page31 #topBoxTriggerContentstacks_in_6343_page31 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_6343_page31 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_6343_page31 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_6343_page31 h1,
#topBoxContentWrapperstacks_in_6343_page31 h2,
#topBoxContentWrapperstacks_in_6343_page31 h3,
#topBoxContentWrapperstacks_in_6343_page31 h4,
#topBoxContentWrapperstacks_in_6343_page31 h5,
#topBoxContentWrapperstacks_in_6343_page31 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_6343_page31 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_6343_page31 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_6343_page31 a:hover,
#topBoxContentWrapperstacks_in_6343_page31 a:focus,
#topBoxContentWrapperstacks_in_6343_page31 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_6343_page31 .topBoxAudio,
#topBoxContentWrapperstacks_in_6343_page31 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_6343_page31.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_6343_page31 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_6343_page31 .trackName,
#topBoxContentWrapperstacks_in_6343_page31 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_6343_page31 {
	display: none;
}








#stacks_in_6343_page31 {
	background-color: rgba(255, 255, 255, 1.00);
}
 @media(hover:hover){#stacks_in_6348_page31.blu-sidebar>.blu-side .my-titles{-webkit-transition:-webkit-transform 120ms ease;transition:-webkit-transform 120ms ease;transition:transform 120ms ease;transition:transform 120ms ease,-webkit-transform 120ms ease}#stacks_in_6348_page31.blu-sidebar>.blu-side.med-left .my-titles{-webkit-transform:translateX(-100%);transform:translateX(-100%)}#stacks_in_6348_page31.blu-sidebar>.blu-side.med-right .my-titles{-webkit-transform:translateX(100%);transform:translateX(100%)}#stacks_in_6348_page31.blu-sidebar>.blu-side:hover .my-titles{-webkit-transform:translateX(0%);transform:translateX(0%)}}@media(hover:hover){#stacks_in_6348_page31.blu-sidebar>.blu-side .my-icons{-webkit-transition:-webkit-filter 120ms ease;transition:-webkit-filter 120ms ease;transition:filter 120ms ease;transition:filter 120ms ease,-webkit-filter 120ms ease}#stacks_in_6348_page31.blu-sidebar>.blu-side .my-icons{-webkit-filter:grayscale(100%);filter:grayscale(100%)}#stacks_in_6348_page31.blu-sidebar>.blu-side:hover .my-icons{-webkit-filter:grayscale(0%);filter:grayscale(0%)}}@media screen and (min-width:640px){#stacks_in_6348_page31.blu-sidebar.full-height{height:100vh}#stacks_in_6348_page31.blu-sidebar.full-height>.blu-content>.blu-blu-content__wrap,#stacks_in_6348_page31.blu-sidebar.full-height>.blu-side>.blu-side__wrap{max-height:100vh;-webkit-transition:none;transition:none}#stacks_in_6348_page31.blu-sidebar.full-height>.blu-content>.blu-blu-content__wrap,#stacks_in_6348_page31.blu-sidebar.full-height>.blu-side>.blu-side__wrap{overflow-x:hidden}#stacks_in_6348_page31.blu-sidebar.full-height>.blu-content>.blu-content__wrap{overflow-y:auto;-webkit-overflow-scrolling:touch}#stacks_in_6348_page31.blu-sidebar.full-height>.blu-side>.blu-side__wrap{overflow-y:auto;-webkit-overflow-scrolling:touch}} #stacks_in_6348_page31.blu-sidebar>.blu-side{-webkit-transition:-webkit-flex-basis 180ms ease-in-out;transition:-webkit-flex-basis 180ms ease-in-out;transition:flex-basis 180ms ease-in-out;transition:flex-basis 180ms ease-in-out,-webkit-flex-basis 180ms ease-in-out,-ms-flex-preferred-size 180ms ease-in-out}#stacks_in_6348_page31.blu-sidebar>.blu-gutter{border-left:0px solid rgba(204, 204, 204, 1.00);margin-left:0.00px;margin-right:0.00px}#stacks_in_6348_page31.blu-sidebar>.blu-side>.blu-side__wrap.flex-col{-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start}#stacks_in_6348_page31.blu-sidebar>.blu-content>.blu-content__wrap.flex-col{-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start}@media screen and (max-height:0px){#stacks_in_6348_page31.blu-sidebar>.blu-side>.blu-side__wrap.flex-col{display:block}}@media screen and (max-height:0px){#stacks_in_6348_page31.blu-sidebar>.blu-content>.blu-content__wrap.flex-col{display:block}}@media all and (max-width:640px){#stacks_in_6348_page31.blu-sidebar>.blu-side.sm-top{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}#stacks_in_6348_page31.blu-sidebar>.blu-side.sm-bot{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}#stacks_in_6348_page31.blu-sidebar>.blu-side.sm-hide{display:none}#stacks_in_6348_page31.blu-sidebar>.blu-side>.blu-gutter{display:none}#stacks_in_6348_page31.blu-sidebar.stacked-gutter>.blu-side.sm-top{margin-bottom:12.00px}#stacks_in_6348_page31.blu-sidebar.stacked-gutter>.blu-content.side-sm-bot{margin-bottom:12.00px}}@media all and (min-width:640px){#stacks_in_6348_page31.blu-sidebar.med-left>.blu-side{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}#stacks_in_6348_page31.blu-sidebar.med-left>.blu-content{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}#stacks_in_6348_page31.blu-sidebar.med-right>.blu-side{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}#stacks_in_6348_page31.blu-sidebar.med-right>.blu-content{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}}@media all and (min-width:640px){#stacks_in_6348_page31.blu-sidebar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}#stacks_in_6348_page31.blu-sidebar>.blu-content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1}#stacks_in_6348_page31.blu-sidebar>.blu-content>.blu-content__wrap{width:100%}#stacks_in_6348_page31.blu-sidebar>.blu-side{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:1;flex-shrink:1;-ms-flex-preferred-size:calc(70% - 0px);flex-basis:calc(70% - 0px);max-width:9999px;min-width:100px}
#stacks_in_6348_page31.blu-sidebar>.blu-side>.blu-side__wrap{-webkit-box-flex:1;-ms-flex:1;flex:1;width:100%}}  #stacks_in_6348_page31.blu-sidebar>.blu-content{padding: 0px ;border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_6348_page31.blu-sidebar>.blu-content::before,#stacks_in_6348_page31.blu-sidebar>.blu-content::after{border-radius:calc(0px - 0px)}#stacks_in_6348_page31.blu-sidebar>.blu-side{padding: 0px ;border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_6348_page31.blu-sidebar>.blu-side::before,#stacks_in_6348_page31.blu-sidebar>.blu-side::after{border-radius:calc(0px - 0px)} 
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .83);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 2%;
	right: 2%;
	top: 2%;
	bottom: 2%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 0px;
	border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
}


.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline,
.nivo-lightbox-theme-default .nivo-lightbox-image img,
.nivo-lightbox-theme-default .nivo-lightbox-html5video {
	box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
}















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: rgba(255, 255, 255, 1.00);
background: -moz-radial-gradient(center, ellipse cover,  rgba(255, 255, 255, 1.00) 0%, rgba(255, 255, 255, 1.00) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255, 255, 255, 1.00)), color-stop(100%,rgba(255, 255, 255, 1.00)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 100%);
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1.00) 0%,rgba(255, 255, 255, 1.00) 100%);
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_6353_page31 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}


/* TopBox Indicator icon */
#topBoxIndicatorWrapperstacks_in_6353_page31 {
	z-index: 7;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	display: block;
	text-align: center;
}

#topBoxIndicatorIconstacks_in_6353_page31 {
	display: inline;
	margin: auto;
	padding: 5px;
	text-align: center;
	font-size: 70px;
	opacity: 0.50;
	color: rgba(255, 255, 255, 1.00);
	transition: opacity 300ms ease-in-out;
}

#topBoxIndicatorIconstacks_in_6353_page31 [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
}

#topBoxTriggerRegionstacks_in_6353_page31:hover #topBoxIndicatorIconstacks_in_6353_page31 {
	opacity: 0.90;
}





/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_6353_page31 #topBoxTriggerstacks_in_6353_page31 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_6353_page31 #topBoxTriggerContentstacks_in_6353_page31 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_6353_page31 #topBoxTriggerContentstacks_in_6353_page31 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_6353_page31 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_6353_page31 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_6353_page31 h1,
#topBoxContentWrapperstacks_in_6353_page31 h2,
#topBoxContentWrapperstacks_in_6353_page31 h3,
#topBoxContentWrapperstacks_in_6353_page31 h4,
#topBoxContentWrapperstacks_in_6353_page31 h5,
#topBoxContentWrapperstacks_in_6353_page31 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_6353_page31 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_6353_page31 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_6353_page31 a:hover,
#topBoxContentWrapperstacks_in_6353_page31 a:focus,
#topBoxContentWrapperstacks_in_6353_page31 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_6353_page31 .topBoxAudio,
#topBoxContentWrapperstacks_in_6353_page31 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_6353_page31.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_6353_page31 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_6353_page31 .trackName,
#topBoxContentWrapperstacks_in_6353_page31 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_6353_page31 {
	display: none;
}








#stacks_in_6353_page31 {
	background-color: rgba(255, 255, 255, 1.00);
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .85);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 20px;
	border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
}


.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline,
.nivo-lightbox-theme-default .nivo-lightbox-image img,
.nivo-lightbox-theme-default .nivo-lightbox-html5video {
	box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
}















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: rgba(255, 255, 255, 1.00);
background: -moz-radial-gradient(center, ellipse cover,  rgba(255, 255, 255, 1.00) 0%, rgba(234, 234, 234, 1.00) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255, 255, 255, 1.00)), color-stop(100%,rgba(234, 234, 234, 1.00)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_6360_page31 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_6360_page31 #topBoxTriggerstacks_in_6360_page31 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_6360_page31 #topBoxTriggerContentstacks_in_6360_page31 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_6360_page31 #topBoxTriggerContentstacks_in_6360_page31 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_6360_page31 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_6360_page31 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_6360_page31 h1,
#topBoxContentWrapperstacks_in_6360_page31 h2,
#topBoxContentWrapperstacks_in_6360_page31 h3,
#topBoxContentWrapperstacks_in_6360_page31 h4,
#topBoxContentWrapperstacks_in_6360_page31 h5,
#topBoxContentWrapperstacks_in_6360_page31 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_6360_page31 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_6360_page31 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_6360_page31 a:hover,
#topBoxContentWrapperstacks_in_6360_page31 a:focus,
#topBoxContentWrapperstacks_in_6360_page31 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_6360_page31 .topBoxAudio,
#topBoxContentWrapperstacks_in_6360_page31 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_6360_page31.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_6360_page31 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_6360_page31 .trackName,
#topBoxContentWrapperstacks_in_6360_page31 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_6360_page31 {
	display: none;
}







.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .50);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 0px;
	border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
}


.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline,
.nivo-lightbox-theme-default .nivo-lightbox-image img,
.nivo-lightbox-theme-default .nivo-lightbox-html5video {
	box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
}















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: rgba(255, 255, 255, 1.00);
background: -moz-radial-gradient(center, ellipse cover,  rgba(255, 255, 255, 1.00) 0%, rgba(234, 234, 234, 1.00) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255, 255, 255, 1.00)), color-stop(100%,rgba(234, 234, 234, 1.00)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_6361_page31 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_6361_page31 #topBoxTriggerstacks_in_6361_page31 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_6361_page31 #topBoxTriggerContentstacks_in_6361_page31 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_6361_page31 #topBoxTriggerContentstacks_in_6361_page31 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_6361_page31 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_6361_page31 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_6361_page31 h1,
#topBoxContentWrapperstacks_in_6361_page31 h2,
#topBoxContentWrapperstacks_in_6361_page31 h3,
#topBoxContentWrapperstacks_in_6361_page31 h4,
#topBoxContentWrapperstacks_in_6361_page31 h5,
#topBoxContentWrapperstacks_in_6361_page31 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_6361_page31 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_6361_page31 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_6361_page31 a:hover,
#topBoxContentWrapperstacks_in_6361_page31 a:focus,
#topBoxContentWrapperstacks_in_6361_page31 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_6361_page31 .topBoxAudio,
#topBoxContentWrapperstacks_in_6361_page31 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_6361_page31.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_6361_page31 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_6361_page31 .trackName,
#topBoxContentWrapperstacks_in_6361_page31 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_6361_page31 {
	display: none;
}







.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .85);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 20px;
	border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
}


.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline,
.nivo-lightbox-theme-default .nivo-lightbox-image img,
.nivo-lightbox-theme-default .nivo-lightbox-html5video {
	box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
}















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: rgba(255, 255, 255, 1.00);
background: -moz-radial-gradient(center, ellipse cover,  rgba(255, 255, 255, 1.00) 0%, rgba(234, 234, 234, 1.00) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255, 255, 255, 1.00)), color-stop(100%,rgba(234, 234, 234, 1.00)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_6354_page31 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_6354_page31 #topBoxTriggerstacks_in_6354_page31 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_6354_page31 #topBoxTriggerContentstacks_in_6354_page31 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_6354_page31 #topBoxTriggerContentstacks_in_6354_page31 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_6354_page31 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_6354_page31 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_6354_page31 h1,
#topBoxContentWrapperstacks_in_6354_page31 h2,
#topBoxContentWrapperstacks_in_6354_page31 h3,
#topBoxContentWrapperstacks_in_6354_page31 h4,
#topBoxContentWrapperstacks_in_6354_page31 h5,
#topBoxContentWrapperstacks_in_6354_page31 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_6354_page31 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_6354_page31 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_6354_page31 a:hover,
#topBoxContentWrapperstacks_in_6354_page31 a:focus,
#topBoxContentWrapperstacks_in_6354_page31 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_6354_page31 .topBoxAudio,
#topBoxContentWrapperstacks_in_6354_page31 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_6354_page31.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_6354_page31 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_6354_page31 .trackName,
#topBoxContentWrapperstacks_in_6354_page31 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_6354_page31 {
	display: none;
}








#stacks_in_6354_page31 {
	background-color: rgba(255, 255, 255, 1.00);
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .85);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 20px;
	border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
}


.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline,
.nivo-lightbox-theme-default .nivo-lightbox-image img,
.nivo-lightbox-theme-default .nivo-lightbox-html5video {
	box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
}















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: rgba(255, 255, 255, 1.00);
background: -moz-radial-gradient(center, ellipse cover,  rgba(255, 255, 255, 1.00) 0%, rgba(234, 234, 234, 1.00) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255, 255, 255, 1.00)), color-stop(100%,rgba(234, 234, 234, 1.00)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_6355_page31 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_6355_page31 #topBoxTriggerstacks_in_6355_page31 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_6355_page31 #topBoxTriggerContentstacks_in_6355_page31 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_6355_page31 #topBoxTriggerContentstacks_in_6355_page31 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_6355_page31 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_6355_page31 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_6355_page31 h1,
#topBoxContentWrapperstacks_in_6355_page31 h2,
#topBoxContentWrapperstacks_in_6355_page31 h3,
#topBoxContentWrapperstacks_in_6355_page31 h4,
#topBoxContentWrapperstacks_in_6355_page31 h5,
#topBoxContentWrapperstacks_in_6355_page31 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_6355_page31 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_6355_page31 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_6355_page31 a:hover,
#topBoxContentWrapperstacks_in_6355_page31 a:focus,
#topBoxContentWrapperstacks_in_6355_page31 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_6355_page31 .topBoxAudio,
#topBoxContentWrapperstacks_in_6355_page31 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_6355_page31.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_6355_page31 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_6355_page31 .trackName,
#topBoxContentWrapperstacks_in_6355_page31 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_6355_page31 {
	display: none;
}








#stacks_in_6355_page31 {
	background-color: rgba(255, 255, 255, 1.00);
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .85);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 20px;
	border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
}


.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline,
.nivo-lightbox-theme-default .nivo-lightbox-image img,
.nivo-lightbox-theme-default .nivo-lightbox-html5video {
	box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
}















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: rgba(255, 255, 255, 1.00);
background: -moz-radial-gradient(center, ellipse cover,  rgba(255, 255, 255, 1.00) 0%, rgba(234, 234, 234, 1.00) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255, 255, 255, 1.00)), color-stop(100%,rgba(234, 234, 234, 1.00)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_6356_page31 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_6356_page31 #topBoxTriggerstacks_in_6356_page31 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_6356_page31 #topBoxTriggerContentstacks_in_6356_page31 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_6356_page31 #topBoxTriggerContentstacks_in_6356_page31 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_6356_page31 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_6356_page31 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_6356_page31 h1,
#topBoxContentWrapperstacks_in_6356_page31 h2,
#topBoxContentWrapperstacks_in_6356_page31 h3,
#topBoxContentWrapperstacks_in_6356_page31 h4,
#topBoxContentWrapperstacks_in_6356_page31 h5,
#topBoxContentWrapperstacks_in_6356_page31 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_6356_page31 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_6356_page31 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_6356_page31 a:hover,
#topBoxContentWrapperstacks_in_6356_page31 a:focus,
#topBoxContentWrapperstacks_in_6356_page31 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_6356_page31 .topBoxAudio,
#topBoxContentWrapperstacks_in_6356_page31 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_6356_page31.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_6356_page31 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_6356_page31 .trackName,
#topBoxContentWrapperstacks_in_6356_page31 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_6356_page31 {
	display: none;
}








#stacks_in_6356_page31 {
	background-color: rgba(255, 255, 255, 1.00);
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .85);
	
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 10%;
	right: 10%;
	top: 10%;
	bottom: 10%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 20px;
	border-radius: 5px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
}


.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline,
.nivo-lightbox-theme-default .nivo-lightbox-image img,
.nivo-lightbox-theme-default .nivo-lightbox-html5video {
	box-shadow: 0px 0px 5px  rgba(0, 0, 0, 0.40);
}















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: rgba(255, 255, 255, 1.00);
background: -moz-radial-gradient(center, ellipse cover,  rgba(255, 255, 255, 1.00) 0%, rgba(234, 234, 234, 1.00) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255, 255, 255, 1.00)), color-stop(100%,rgba(234, 234, 234, 1.00)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
background: radial-gradient(ellipse at center, rgba(255, 255, 255, 1.00) 0%,rgba(234, 234, 234, 1.00) 100%);
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -7%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 15px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(255, 255, 255, 1.00);
	background: rgba(0, 0, 0, 1.00);
	padding: 8px 16px;
	border-radius: 5px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 50px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 50px;
	height: 50px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(255, 255, 255, 1.00);
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(255, 255, 255, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_6357_page31 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_6357_page31 #topBoxTriggerstacks_in_6357_page31 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_6357_page31 #topBoxTriggerContentstacks_in_6357_page31 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_6357_page31 #topBoxTriggerContentstacks_in_6357_page31 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_6357_page31 {
	color: rgba(66, 66, 66, 1.00);
}

#topBoxContentWrapperstacks_in_6357_page31 img {
	max-height: 100%;
	max-width: 100%;
	height: auto;
	width: auto;
}

#topBoxContentWrapperstacks_in_6357_page31 h1,
#topBoxContentWrapperstacks_in_6357_page31 h2,
#topBoxContentWrapperstacks_in_6357_page31 h3,
#topBoxContentWrapperstacks_in_6357_page31 h4,
#topBoxContentWrapperstacks_in_6357_page31 h5,
#topBoxContentWrapperstacks_in_6357_page31 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_6357_page31 a {
	color: rgba(0, 80, 221, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_6357_page31 a:visited {
	color: rgba(0, 80, 221, 1.00);
}

#topBoxContentWrapperstacks_in_6357_page31 a:hover,
#topBoxContentWrapperstacks_in_6357_page31 a:focus,
#topBoxContentWrapperstacks_in_6357_page31 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_6357_page31 .topBoxAudio,
#topBoxContentWrapperstacks_in_6357_page31 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_6357_page31.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_6357_page31 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_6357_page31 .trackName,
#topBoxContentWrapperstacks_in_6357_page31 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_6357_page31 {
	display: none;
}








#stacks_in_6357_page31 {
	background-color: rgba(255, 255, 255, 1.00);
}
/*  */

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_6284_page31 {
	height: 20.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_6284_page31 {
		display: none !important;
	}
}#stacks_in_p6285_n1_page31 .panel{padding:0.00rem}#stacks_in_p6285_n1_page31 .panel{background-color:rgba(255, 255, 255, 1.00);border-color:rgba(229, 229, 229, 1.00)}

#stacks_in_p6285_n1_page31 {
	background-color: rgba(255, 255, 255, 1.00);
}
 p a[data-pop-drop]:not(.pop-nostyle),.text_stack a[data-pop-drop]:not(.pop-nostyle){  cursor:inherit}p a[data-pop-drop]:not(.pop-nostyle):hover,.text_stack a[data-pop-drop]:not(.pop-nostyle):hover{color:rgba(44, 177, 168, 1.00)}p a[data-pop-drop]:not(.pop-nostyle):hover,.text_stack a[data-pop-drop]:not(.pop-nostyle):hover{border-bottom:1px dotted rgba(41, 41, 41, 1.00)}

#stacks_in_p6285_n47_page31 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_p6285_n47_page31 > .row > .columns{margin-top:0.00rem;margin-bottom:0.00rem}#stacks_in_p6285_n47_page31 > .row.divider > .columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(0, 0, 0, 1.00)}

#stacks_out_p6285_n47_page31 {
	width: 370px;
}
#portholeStackstacks_in_p6285_n48_page31 {	
	width: 100%;
	padding-bottom: 100%;
	display: block;
	position: relative;
	z-index: 0;
}

#portholeStackstacks_in_p6285_n48_page31 *,
#portholeStackstacks_in_p6285_n48_page31 *:before,
#portholeStackstacks_in_p6285_n48_page31 *:after {	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#portholeFillstacks_in_p6285_n48_page31 {
	width: 100%;
	height: 100%;
	border-radius: 500px;
	-webkit-border-radius: 500px;
	-moz-border-radius: 500px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	opacity: 0.99;
	border: 1px solid #000000;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	box-shadow: inset 0 0 0 0 rgba(0,0,0, 0.4), inset 0 0 0 10px rgba(255,255,255,1.00), 0 1px 2px rgba(0,0,0,0.1);
}

#portholeStackstacks_in_p6285_n48_page31:hover #portholeFillstacks_in_p6285_n48_page31 {
	opacity: 0.99;
	border: 1px solid #000000;
	box-shadow: inset 0 0 0 0 rgba(0,0,0, 0.4), inset 0 0 0 10px rgba(255,255,255,1.00), 0 1px 2px rgba(0,0,0,0.1);
}

#portholeContentAbsolutestacks_in_p6285_n48_page31 {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	z-index: 3;
	width: 100%;
	display: block;
}

#portholeContentstacks_in_p6285_n48_page31 {
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	position: relative;
	width: 75%;
	margin: 0 auto;
	display: block;
	text-align: center;
	color: #ffffff;
}

#portholeContentLargestacks_in_p6285_n48_page31 {
	font-family: 'Droid Sans', sans-serif;
	line-height: 1.25em;
	font-weight: 400;
	color: #000000;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	z-index: 4;
	position: relative;
	opacity: 0.99;
	text-transform: none;
}

#portholeStackstacks_in_p6285_n48_page31:hover #portholeContentLargestacks_in_p6285_n48_page31 {
	color: #000000;
	opacity: 0.99;
}

/*  */

/*  */
#portholeContentLargestacks_in_p6285_n48_page31 {
	font-size: 10px;
}

#portholeStackstacks_in_p6285_n48_page31:hover #portholeContentLargestacks_in_p6285_n48_page31 {
	font-size: 10px;
}
/*  */

/*  */

#portholeContentSmallstacks_in_p6285_n48_page31 {
	font-family: 'Droid Sans', sans-serif;
	line-height: 1.25em;
	font-weight: 400;
	color: #000000;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	z-index: 4;
	position: relative;
	opacity: 0.99;
	text-transform: none;
}

#portholeStackstacks_in_p6285_n48_page31:hover #portholeContentSmallstacks_in_p6285_n48_page31 {
	color: #000000;
	opacity: 0.99;
}

/*  */
#portholeContentSmallstacks_in_p6285_n48_page31 {
	font-size: 150%;
}

#portholeStackstacks_in_p6285_n48_page31:hover #portholeContentSmallstacks_in_p6285_n48_page31 {
	font-size: 150%;
}
/*  */

/*  */

/*  */

/* Icons */

#portholeContentLargestacks_in_p6285_n48_page31 [class^="fa fa-"] {
	color: #000000;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

#portholeStackstacks_in_p6285_n48_page31:hover #portholeContentLargestacks_in_p6285_n48_page31 [class^="fa fa-"] {
	color: #000000;
}

#portholeContentSmallstacks_in_p6285_n48_page31 [class^="fa fa-"] {
	color: #000000;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

#portholeStackstacks_in_p6285_n48_page31:hover #portholeContentSmallstacks_in_p6285_n48_page31 [class^="fa fa-"] {
	color: #000000;
}

#portholeLinkstacks_in_p6285_n48_page31 a {
	display: block;
	border: none;
	text-decoration: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 101;
	background: transparent;
}




/* Solid colour fill */
#portholeFillstacks_in_p6285_n48_page31 {
	background: #FFFFFF;
	background-attachment: scroll;
}

#portholeStackstacks_in_p6285_n48_page31:hover #portholeFillstacks_in_p6285_n48_page31 {
	background: #FFFFFF;
}


















@media print {
	#portholeFillstacks_in_p6285_n48_page31 {
		display: none;
	}
	
	#portholeStackstacks_in_p6285_n48_page31 {	
		padding-bottom: 0;
	}
	
	#portholeContentstacks_in_p6285_n48_page31 {
		width: 100%;
	}
	
	#portholeLinkstacks_in_p6285_n48_page31 a,
	#portholeContentAbsolutestacks_in_p6285_n48_page31 {
		position: relative;
		top: auto;
		left: auto;
	}
	
	#portholeContentSmallstacks_in_p6285_n48_page31,
	#portholeContentLargestacks_in_p6285_n48_page31 {
		font-size: 14pt;
		line-height: 1.50em;
		opacity: 1.00;
		color: #000000;
		text-align: left;
	}
}
#stacks_in_p6285_n50_page31 {
	display:inline-block; width:100%; line-height: 1.100000em;
	font-size: 70%;
}
#portholeStackstacks_in_p6285_n52_page31 {	
	width: 100%;
	padding-bottom: 100%;
	display: block;
	position: relative;
	z-index: 0;
}

#portholeStackstacks_in_p6285_n52_page31 *,
#portholeStackstacks_in_p6285_n52_page31 *:before,
#portholeStackstacks_in_p6285_n52_page31 *:after {	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#portholeFillstacks_in_p6285_n52_page31 {
	width: 100%;
	height: 100%;
	border-radius: 500px;
	-webkit-border-radius: 500px;
	-moz-border-radius: 500px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	opacity: 0.99;
	border: 1px solid #000000;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	box-shadow: inset 0 0 0 0 rgba(0,0,0, 0.4), inset 0 0 0 10px rgba(255,255,255,1.00), 0 1px 2px rgba(0,0,0,0.1);
}

#portholeStackstacks_in_p6285_n52_page31:hover #portholeFillstacks_in_p6285_n52_page31 {
	opacity: 0.99;
	border: 1px solid #000000;
	box-shadow: inset 0 0 0 0 rgba(0,0,0, 0.4), inset 0 0 0 10px rgba(255,255,255,1.00), 0 1px 2px rgba(0,0,0,0.1);
}

#portholeContentAbsolutestacks_in_p6285_n52_page31 {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	z-index: 3;
	width: 100%;
	display: block;
}

#portholeContentstacks_in_p6285_n52_page31 {
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	position: relative;
	width: 75%;
	margin: 0 auto;
	display: block;
	text-align: center;
	color: #ffffff;
}

#portholeContentLargestacks_in_p6285_n52_page31 {
	font-family: 'Droid Sans', sans-serif;
	line-height: 1.25em;
	font-weight: 400;
	color: #000000;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	z-index: 4;
	position: relative;
	opacity: 0.99;
	text-transform: none;
}

#portholeStackstacks_in_p6285_n52_page31:hover #portholeContentLargestacks_in_p6285_n52_page31 {
	color: #000000;
	opacity: 0.99;
}

/*  */

/*  */
#portholeContentLargestacks_in_p6285_n52_page31 {
	font-size: 10px;
}

#portholeStackstacks_in_p6285_n52_page31:hover #portholeContentLargestacks_in_p6285_n52_page31 {
	font-size: 10px;
}
/*  */

/*  */

#portholeContentSmallstacks_in_p6285_n52_page31 {
	font-family: 'Droid Sans', sans-serif;
	line-height: 1.25em;
	font-weight: 400;
	color: #000000;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	z-index: 4;
	position: relative;
	opacity: 0.99;
	text-transform: none;
}

#portholeStackstacks_in_p6285_n52_page31:hover #portholeContentSmallstacks_in_p6285_n52_page31 {
	color: #000000;
	opacity: 0.99;
}

/*  */
#portholeContentSmallstacks_in_p6285_n52_page31 {
	font-size: 150%;
}

#portholeStackstacks_in_p6285_n52_page31:hover #portholeContentSmallstacks_in_p6285_n52_page31 {
	font-size: 150%;
}
/*  */

/*  */

/*  */

/* Icons */

#portholeContentLargestacks_in_p6285_n52_page31 [class^="fa fa-"] {
	color: #000000;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

#portholeStackstacks_in_p6285_n52_page31:hover #portholeContentLargestacks_in_p6285_n52_page31 [class^="fa fa-"] {
	color: #000000;
}

#portholeContentSmallstacks_in_p6285_n52_page31 [class^="fa fa-"] {
	color: #000000;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

#portholeStackstacks_in_p6285_n52_page31:hover #portholeContentSmallstacks_in_p6285_n52_page31 [class^="fa fa-"] {
	color: #000000;
}

#portholeLinkstacks_in_p6285_n52_page31 a {
	display: block;
	border: none;
	text-decoration: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 101;
	background: transparent;
}




/* Solid colour fill */
#portholeFillstacks_in_p6285_n52_page31 {
	background: #FFFFFF;
	background-attachment: scroll;
}

#portholeStackstacks_in_p6285_n52_page31:hover #portholeFillstacks_in_p6285_n52_page31 {
	background: #FFFFFF;
}


















@media print {
	#portholeFillstacks_in_p6285_n52_page31 {
		display: none;
	}
	
	#portholeStackstacks_in_p6285_n52_page31 {	
		padding-bottom: 0;
	}
	
	#portholeContentstacks_in_p6285_n52_page31 {
		width: 100%;
	}
	
	#portholeLinkstacks_in_p6285_n52_page31 a,
	#portholeContentAbsolutestacks_in_p6285_n52_page31 {
		position: relative;
		top: auto;
		left: auto;
	}
	
	#portholeContentSmallstacks_in_p6285_n52_page31,
	#portholeContentLargestacks_in_p6285_n52_page31 {
		font-size: 14pt;
		line-height: 1.50em;
		opacity: 1.00;
		color: #000000;
		text-align: left;
	}
}
#stacks_in_p6285_n54_page31 {
	display:inline-block; width:100%; line-height: 1.100000em;
	font-size: 70%;
}
#portholeStackstacks_in_p6285_n56_page31 {	
	width: 100%;
	padding-bottom: 100%;
	display: block;
	position: relative;
	z-index: 0;
}

#portholeStackstacks_in_p6285_n56_page31 *,
#portholeStackstacks_in_p6285_n56_page31 *:before,
#portholeStackstacks_in_p6285_n56_page31 *:after {	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#portholeFillstacks_in_p6285_n56_page31 {
	width: 100%;
	height: 100%;
	border-radius: 500px;
	-webkit-border-radius: 500px;
	-moz-border-radius: 500px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	opacity: 0.99;
	border: 1px solid #000000;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	box-shadow: inset 0 0 0 0 rgba(0,0,0, 0.4), inset 0 0 0 10px rgba(255,255,255,1.00), 0 1px 2px rgba(0,0,0,0.1);
}

#portholeStackstacks_in_p6285_n56_page31:hover #portholeFillstacks_in_p6285_n56_page31 {
	opacity: 0.99;
	border: 1px solid #000000;
	box-shadow: inset 0 0 0 0 rgba(0,0,0, 0.4), inset 0 0 0 10px rgba(255,255,255,1.00), 0 1px 2px rgba(0,0,0,0.1);
}

#portholeContentAbsolutestacks_in_p6285_n56_page31 {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	z-index: 3;
	width: 100%;
	display: block;
}

#portholeContentstacks_in_p6285_n56_page31 {
	font-family: "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	position: relative;
	width: 75%;
	margin: 0 auto;
	display: block;
	text-align: center;
	color: #ffffff;
}

#portholeContentLargestacks_in_p6285_n56_page31 {
	font-family: 'Droid Sans', sans-serif;
	line-height: 1.25em;
	font-weight: 400;
	color: #000000;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	z-index: 4;
	position: relative;
	opacity: 0.99;
	text-transform: none;
}

#portholeStackstacks_in_p6285_n56_page31:hover #portholeContentLargestacks_in_p6285_n56_page31 {
	color: #000000;
	opacity: 0.99;
}

/*  */

/*  */
#portholeContentLargestacks_in_p6285_n56_page31 {
	font-size: 10px;
}

#portholeStackstacks_in_p6285_n56_page31:hover #portholeContentLargestacks_in_p6285_n56_page31 {
	font-size: 10px;
}
/*  */

/*  */

#portholeContentSmallstacks_in_p6285_n56_page31 {
	font-family: 'Droid Sans', sans-serif;
	line-height: 1.25em;
	font-weight: 400;
	color: #000000;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
	z-index: 4;
	position: relative;
	opacity: 0.99;
	text-transform: none;
}

#portholeStackstacks_in_p6285_n56_page31:hover #portholeContentSmallstacks_in_p6285_n56_page31 {
	color: #000000;
	opacity: 0.99;
}

/*  */
#portholeContentSmallstacks_in_p6285_n56_page31 {
	font-size: 150%;
}

#portholeStackstacks_in_p6285_n56_page31:hover #portholeContentSmallstacks_in_p6285_n56_page31 {
	font-size: 150%;
}
/*  */

/*  */

/*  */

/* Icons */

#portholeContentLargestacks_in_p6285_n56_page31 [class^="fa fa-"] {
	color: #000000;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

#portholeStackstacks_in_p6285_n56_page31:hover #portholeContentLargestacks_in_p6285_n56_page31 [class^="fa fa-"] {
	color: #000000;
}

#portholeContentSmallstacks_in_p6285_n56_page31 [class^="fa fa-"] {
	color: #000000;
	-webkit-transition: all 300ms linear;
	transition: all 300ms linear;
}

#portholeStackstacks_in_p6285_n56_page31:hover #portholeContentSmallstacks_in_p6285_n56_page31 [class^="fa fa-"] {
	color: #000000;
}

#portholeLinkstacks_in_p6285_n56_page31 a {
	display: block;
	border: none;
	text-decoration: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 101;
	background: transparent;
}




/* Solid colour fill */
#portholeFillstacks_in_p6285_n56_page31 {
	background: #FFFFFF;
	background-attachment: scroll;
}

#portholeStackstacks_in_p6285_n56_page31:hover #portholeFillstacks_in_p6285_n56_page31 {
	background: #FFFFFF;
}


















@media print {
	#portholeFillstacks_in_p6285_n56_page31 {
		display: none;
	}
	
	#portholeStackstacks_in_p6285_n56_page31 {	
		padding-bottom: 0;
	}
	
	#portholeContentstacks_in_p6285_n56_page31 {
		width: 100%;
	}
	
	#portholeLinkstacks_in_p6285_n56_page31 a,
	#portholeContentAbsolutestacks_in_p6285_n56_page31 {
		position: relative;
		top: auto;
		left: auto;
	}
	
	#portholeContentSmallstacks_in_p6285_n56_page31,
	#portholeContentLargestacks_in_p6285_n56_page31 {
		font-size: 14pt;
		line-height: 1.50em;
		opacity: 1.00;
		color: #000000;
		text-align: left;
	}
}
#stacks_in_p6285_n58_page31 {
	display:inline-block; width:100%; line-height: 1.100000em;
	font-size: 70%;
}
  #com_bigwhiteduck_stacks_popdrop_stack .dropem{display:none!important}
 [data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover{z-index:9999;min-width:50px;min-height:32px;-webkit-transition-duration:150ms;transition-duration:150ms}@media screen and (min-width:640px){[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover{min-width:32px}}[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover .popdrop-popover-content{padding:4px 6px}[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover .popdrop-popover-title{text-align:left;font-weight:bold;text-transform:none}[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style{border:1px solid rgba(0, 0, 0, 0.20);-webkit-box-shadow:0px 0px 8px 4px rgba(0, 0, 0, 0.20);box-shadow:0px 0px 8px 4px rgba(0, 0, 0, 0.20);background-color:rgba(255, 255, 255, 1.00);border-radius:6px}[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style .popdrop-popover-title{color:rgba(255, 255, 255, 1.00);background:rgba(57, 73, 171, 1.00);border-bottom:1px solid rgba(245, 245, 245, 1.00);border-radius:calc(6px - 1px) calc(6px - 1px) 0 0}[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style .popdrop-close{color:rgba(140, 140, 140, 1.00);text-shadow:0 1px 0 #fff}[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style.top>.popdrop-arrow,[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style.top-left>.popdrop-arrow,[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style.top-right>.popdrop-arrow{border-top-color:rgba(0, 0, 0, 0.20)}[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style.top>.popdrop-arrow:after,[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style.top-left>.popdrop-arrow:after,[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style.top-right>.popdrop-arrow:after{border-top-color:rgba(255, 255, 255, 1.00)}[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style.right>.popdrop-arrow,[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style.right-top>.popdrop-arrow,[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style.right-bottom>.popdrop-arrow{border-right-color:rgba(0, 0, 0, 0.20)}[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style.right>.popdrop-arrow:after,[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style.right-top>.popdrop-arrow:after,[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style.right-bottom>.popdrop-arrow:after{border-right-color:rgba(255, 255, 255, 1.00)}[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style.bottom>.popdrop-arrow,[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style.bottom-left>.popdrop-arrow,[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style.bottom-right>.popdrop-arrow{border-bottom-color:rgba(0, 0, 0, 0.20)}[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style.bottom>.popdrop-arrow:after,[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style.bottom-left>.popdrop-arrow:after,[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style.bottom-right>.popdrop-arrow:after{border-bottom-color:rgba(255, 255, 255, 1.00)}[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style.left>.popdrop-arrow,[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style.left-top>.popdrop-arrow,[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style.left-bottom>.popdrop-arrow{border-left-color:rgba(0, 0, 0, 0.20)}
[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style.left>.popdrop-arrow:after,[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style.left-top>.popdrop-arrow:after,[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style.left-bottom>.popdrop-arrow:after{border-left-color:rgba(255, 255, 255, 1.00)}[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style .popdrop-custom-padding .popdrop-popover-content{padding:4px 6px;overflow:scroll}[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style .popdrop-custom-padding .list-group-item{border-right:0;border-left:none}[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style .popdrop-custom-padding .list-group-item:first-child{border-top:0}[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover.popdrop-popover-custom-style .popdrop-custom-padding .list-group-item:last-child{border-bottom:0}[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover .popdrop-popover-backdrop{background-color:rgba(0,0,0,0.65);z-index:9998}[data-pop-source="stacks_in_p6285_n18_page31"].popdrop-popover .popdrop-popover .dropdown-menu{display:block;position:relative;top:0;border:0;-webkit-box-shadow:none;box-shadow:none;float:none}
    #stacks_in_p6285_n18_page31.dropem,.popdrop-popover-inner.pop-stacks_in_p6285_n18_page31{max-width:280px}@media screen and (min-width:640px){#stacks_in_p6285_n18_page31.dropem,.popdrop-popover-inner.pop-stacks_in_p6285_n18_page31{max-width:360px}}   .popdrop-popover[data-pop-source="stacks_in_p6285_n18_page31"] .popdrop-popover-content{overflow:auto} #stacks_in_p6285_n18_page31.dropem{display:none}
           #stacks_in_p6285_n19_page31 p,#stacks_in_p6285_n19_page31 div,#stacks_in_p6285_n19_page31 ul,#stacks_in_p6285_n19_page31 ol,#stacks_in_p6285_n19_page31 dl{color:rgba(102, 102, 102, 1.00)}#stacks_in_p6285_n19_page31 a{color:rgba(0, 140, 186, 1.00)}#stacks_in_p6285_n19_page31 a:hover{color:rgba(0, 102, 153, 1.00)}      @media only screen and (min-width:0px){#stacks_in_p6285_n19_page31{ }
} 


  #com_bigwhiteduck_stacks_popdrop_stack .dropem{display:none!important}
 [data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover{z-index:9999;min-width:50px;min-height:32px;-webkit-transition-duration:150ms;transition-duration:150ms}@media screen and (min-width:640px){[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover{min-width:32px}}[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover .popdrop-popover-content{padding:4px 6px}[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover .popdrop-popover-title{text-align:left;font-weight:bold;text-transform:none}[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style{border:1px solid rgba(0, 0, 0, 0.20);-webkit-box-shadow:0px 0px 8px 4px rgba(0, 0, 0, 0.20);box-shadow:0px 0px 8px 4px rgba(0, 0, 0, 0.20);background-color:rgba(255, 255, 255, 1.00);border-radius:6px}[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style .popdrop-popover-title{color:rgba(255, 255, 255, 1.00);background:rgba(57, 73, 171, 1.00);border-bottom:1px solid rgba(245, 245, 245, 1.00);border-radius:calc(6px - 1px) calc(6px - 1px) 0 0}[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style .popdrop-close{color:rgba(140, 140, 140, 1.00);text-shadow:0 1px 0 #fff}[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style.top>.popdrop-arrow,[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style.top-left>.popdrop-arrow,[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style.top-right>.popdrop-arrow{border-top-color:rgba(0, 0, 0, 0.20)}[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style.top>.popdrop-arrow:after,[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style.top-left>.popdrop-arrow:after,[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style.top-right>.popdrop-arrow:after{border-top-color:rgba(255, 255, 255, 1.00)}[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style.right>.popdrop-arrow,[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style.right-top>.popdrop-arrow,[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style.right-bottom>.popdrop-arrow{border-right-color:rgba(0, 0, 0, 0.20)}[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style.right>.popdrop-arrow:after,[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style.right-top>.popdrop-arrow:after,[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style.right-bottom>.popdrop-arrow:after{border-right-color:rgba(255, 255, 255, 1.00)}[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style.bottom>.popdrop-arrow,[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style.bottom-left>.popdrop-arrow,[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style.bottom-right>.popdrop-arrow{border-bottom-color:rgba(0, 0, 0, 0.20)}[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style.bottom>.popdrop-arrow:after,[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style.bottom-left>.popdrop-arrow:after,[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style.bottom-right>.popdrop-arrow:after{border-bottom-color:rgba(255, 255, 255, 1.00)}[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style.left>.popdrop-arrow,[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style.left-top>.popdrop-arrow,[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style.left-bottom>.popdrop-arrow{border-left-color:rgba(0, 0, 0, 0.20)}
[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style.left>.popdrop-arrow:after,[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style.left-top>.popdrop-arrow:after,[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style.left-bottom>.popdrop-arrow:after{border-left-color:rgba(255, 255, 255, 1.00)}[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style .popdrop-custom-padding .popdrop-popover-content{padding:4px 6px;overflow:scroll}[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style .popdrop-custom-padding .list-group-item{border-right:0;border-left:none}[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style .popdrop-custom-padding .list-group-item:first-child{border-top:0}[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover.popdrop-popover-custom-style .popdrop-custom-padding .list-group-item:last-child{border-bottom:0}[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover .popdrop-popover-backdrop{background-color:rgba(0,0,0,0.65);z-index:9998}[data-pop-source="stacks_in_p6285_n24_page31"].popdrop-popover .popdrop-popover .dropdown-menu{display:block;position:relative;top:0;border:0;-webkit-box-shadow:none;box-shadow:none;float:none}
    #stacks_in_p6285_n24_page31.dropem,.popdrop-popover-inner.pop-stacks_in_p6285_n24_page31{max-width:280px}@media screen and (min-width:640px){#stacks_in_p6285_n24_page31.dropem,.popdrop-popover-inner.pop-stacks_in_p6285_n24_page31{max-width:360px}}   .popdrop-popover[data-pop-source="stacks_in_p6285_n24_page31"] .popdrop-popover-content{overflow:auto} #stacks_in_p6285_n24_page31.dropem{display:none}
           #stacks_in_p6285_n25_page31 p,#stacks_in_p6285_n25_page31 div,#stacks_in_p6285_n25_page31 ul,#stacks_in_p6285_n25_page31 ol,#stacks_in_p6285_n25_page31 dl{color:rgba(102, 102, 102, 1.00)}#stacks_in_p6285_n25_page31 a{color:rgba(0, 140, 186, 1.00)}#stacks_in_p6285_n25_page31 a:hover{color:rgba(0, 102, 153, 1.00)}      @media only screen and (min-width:0px){#stacks_in_p6285_n25_page31{ }
} 


  #com_bigwhiteduck_stacks_popdrop_stack .dropem{display:none!important}
 [data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover{z-index:9999;min-width:50px;min-height:32px;-webkit-transition-duration:150ms;transition-duration:150ms}@media screen and (min-width:640px){[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover{min-width:32px}}[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover .popdrop-popover-content{padding:4px 6px}[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover .popdrop-popover-title{text-align:left;font-weight:bold;text-transform:none}[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style{border:1px solid rgba(0, 0, 0, 0.20);-webkit-box-shadow:0px 0px 8px 4px rgba(0, 0, 0, 0.20);box-shadow:0px 0px 8px 4px rgba(0, 0, 0, 0.20);background-color:rgba(255, 255, 255, 1.00);border-radius:6px}[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style .popdrop-popover-title{color:rgba(255, 255, 255, 1.00);background:rgba(57, 73, 171, 1.00);border-bottom:1px solid rgba(245, 245, 245, 1.00);border-radius:calc(6px - 1px) calc(6px - 1px) 0 0}[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style .popdrop-close{color:rgba(140, 140, 140, 1.00);text-shadow:0 1px 0 #fff}[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style.top>.popdrop-arrow,[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style.top-left>.popdrop-arrow,[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style.top-right>.popdrop-arrow{border-top-color:rgba(0, 0, 0, 0.20)}[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style.top>.popdrop-arrow:after,[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style.top-left>.popdrop-arrow:after,[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style.top-right>.popdrop-arrow:after{border-top-color:rgba(255, 255, 255, 1.00)}[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style.right>.popdrop-arrow,[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style.right-top>.popdrop-arrow,[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style.right-bottom>.popdrop-arrow{border-right-color:rgba(0, 0, 0, 0.20)}[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style.right>.popdrop-arrow:after,[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style.right-top>.popdrop-arrow:after,[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style.right-bottom>.popdrop-arrow:after{border-right-color:rgba(255, 255, 255, 1.00)}[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style.bottom>.popdrop-arrow,[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style.bottom-left>.popdrop-arrow,[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style.bottom-right>.popdrop-arrow{border-bottom-color:rgba(0, 0, 0, 0.20)}[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style.bottom>.popdrop-arrow:after,[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style.bottom-left>.popdrop-arrow:after,[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style.bottom-right>.popdrop-arrow:after{border-bottom-color:rgba(255, 255, 255, 1.00)}[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style.left>.popdrop-arrow,[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style.left-top>.popdrop-arrow,[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style.left-bottom>.popdrop-arrow{border-left-color:rgba(0, 0, 0, 0.20)}
[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style.left>.popdrop-arrow:after,[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style.left-top>.popdrop-arrow:after,[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style.left-bottom>.popdrop-arrow:after{border-left-color:rgba(255, 255, 255, 1.00)}[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style .popdrop-custom-padding .popdrop-popover-content{padding:4px 6px;overflow:scroll}[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style .popdrop-custom-padding .list-group-item{border-right:0;border-left:none}[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style .popdrop-custom-padding .list-group-item:first-child{border-top:0}[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover.popdrop-popover-custom-style .popdrop-custom-padding .list-group-item:last-child{border-bottom:0}[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover .popdrop-popover-backdrop{background-color:rgba(0,0,0,0.65);z-index:9998}[data-pop-source="stacks_in_p6285_n30_page31"].popdrop-popover .popdrop-popover .dropdown-menu{display:block;position:relative;top:0;border:0;-webkit-box-shadow:none;box-shadow:none;float:none}
    #stacks_in_p6285_n30_page31.dropem,.popdrop-popover-inner.pop-stacks_in_p6285_n30_page31{max-width:280px}@media screen and (min-width:640px){#stacks_in_p6285_n30_page31.dropem,.popdrop-popover-inner.pop-stacks_in_p6285_n30_page31{max-width:360px}}   .popdrop-popover[data-pop-source="stacks_in_p6285_n30_page31"] .popdrop-popover-content{overflow:auto} #stacks_in_p6285_n30_page31.dropem{display:none}
           #stacks_in_p6285_n31_page31 p,#stacks_in_p6285_n31_page31 div,#stacks_in_p6285_n31_page31 ul,#stacks_in_p6285_n31_page31 ol,#stacks_in_p6285_n31_page31 dl{color:rgba(102, 102, 102, 1.00)}#stacks_in_p6285_n31_page31 a{color:rgba(0, 140, 186, 1.00)}#stacks_in_p6285_n31_page31 a:hover{color:rgba(0, 102, 153, 1.00)}      @media only screen and (min-width:0px){#stacks_in_p6285_n31_page31{ }
} 


#stacks_in_5041_page31 a{display:block}#stacks_in_5041_page31 img{width:100%;}

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_5063_page31 {
      margin: 0px;      
    }

    #stacks_in_5063_page31 {
      padding: 0px;      
    }


     
      #stacks_in_5063_page31 {
        margin-left: 5px;
        margin-right: 5px;
        margin-top: 0px;
        margin-bottom: 0px;
      }
    

    
  


 


 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_5063_page31 {
      margin: 0px;      
    }

    #stacks_in_5063_page31 {
      padding: 0px;      
    }


     
      #stacks_in_5063_page31 {
        margin-left: 5px;
        margin-right: 5px;
        margin-top: 0px;
        margin-bottom: 0px;
      }
    

    
  


 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_5063_page31 {
      margin: 0px;      
    }

    #stacks_in_5063_page31 {
      padding: 0px;      
    }


     
      #stacks_in_5063_page31 {
        margin-left: 5px;
        margin-right: 5px;
        margin-top: 0px;
        margin-bottom: 0px;
      }
    

    
  

}

#stacks_in_5075_page31{overflow:hidden}#stacks_in_5075_page31 hr{opacity:1.00;border-top-style:solid;border-top-width:2px;margin:0.25rem 0;}#stacks_in_5075_page31 hr.custom{border-color:rgba(221, 221, 221, 1.00)}
                @media only screen and (min-width:0px){#stacks_in_5079_page31{ }
} 


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

#stacks_in_5080_page31 {
	font-size: 130%;
}

     #stacks_in_6408_page31 .button.b-p>.bp-icon>.bp-glyph{color:rgba(204, 204, 204, 1.00)}#stacks_in_6408_page31 .button.b-p>.bp-icon>.bp-glyph{-webkit-transition:color 200ms ease,-webkit-transform 200ms ease;transition:color 200ms ease,-webkit-transform 200ms ease;transition:transform 200ms ease,color 200ms ease;transition:transform 200ms ease,color 200ms ease,-webkit-transform 200ms ease} #stacks_in_6408_page31 .button.b-p:hover>.bp-icon>.bp-glyph{color:rgba(186, 186, 186, 1.00)}     #stacks_in_6408_page31 .button.b-p:not(.icon-only):not(.fobbin){padding-top:0.00rem!important;padding-bottom:0.00rem!important}#stacks_in_6408_page31 .button.b-p:not(.icon-only)>.bp-icon>.bp-glyph,#stacks_in_6408_page31 .button.b-p .bp-text{vertical-align:middle}#stacks_in_6408_page31 .button.b-p:not(.icon-only)>.bp-icon>.bp-glyph{font-size:1.00rem!important}@media screen and (min-width:641px){#stacks_in_6408_page31 .button.b-p:not(.icon-only)>.bp-icon>.bp-glyph{font-size:2.80rem!important}}   #stacks_in_6408_page31.bp-wrap:not(.block-icon) .button.b-p>.bp-icon{padding-left:5.56px}#stacks_in_6408_page31.bp-wrap.block-icon .button.b-p>.bp-icon{display:block;width:100%;padding-top:5.56px}       #stacks_in_6408_page31>.button.b-p,#stacks_in_6408_page31>.dd-wrap>.button.b-p{margin-bottom:0}   #stacks_in_6408_page31>.button.b-p.fobbin,#stacks_in_6408_page31>.dd-wrap>.button.b-p.fobbin{padding:0.30rem 0.55rem 0.30rem 0.55rem!important} @media screen and (max-width:641px){#stacks_in_6408_page31>.button.b-p.expand-mob:not(.icon-only),#stacks_in_6408_page31>.dd-wrap>.button.b-p.expand-mob:not(.icon-only){width:100%!important}}@media screen and (min-width:641px){#stacks_in_6408_page31 .button.b-p.expand-large:not(.icon-only),#stacks_in_6408_page31>.dd-wrap>.button.b-p.expand-large:not(.icon-only){width:100%!important}}
            #stacks_in_6408_page31 .button.b-p{font-size:1.20rem}#stacks_in_6408_page31 .button.b-p.icon-only{width:calc(1.20rem + 0.50rem);height:calc(1.20rem + 0.50rem)}#stacks_in_6408_page31 .button.b-p.icon-only .bp-glyph:before{line-height:calc(1.20rem + 0.50rem)}@media all and (max-width:640px){#stacks_in_6408_page31 .button.b-p{font-size:0.95rem}#stacks_in_6408_page31 .button.b-p.icon-only{width:calc(0.95rem + 0.50rem);height:calc(0.95rem + 0.50rem)}#stacks_in_6408_page31 .button.b-p.icon-only .bp-glyph:before{line-height:calc(0.95rem + 0.50rem)}} 
  #stacks_in_6408_page31 .button.b-p.custom{border:1px solid rgba(0, 0, 0, 1.00)}#stacks_in_6408_page31 .button.b-p.custom:hover{border:1px solid rgba(0, 0, 0, 1.00)} #stacks_in_6408_page31 .button.b-p{color:rgba(0, 0, 0, 1.00);background-color:rgba(255, 255, 255, 1.00)}#stacks_in_6408_page31 .button.b-p:not(.d-hov){-webkit-transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;-webkit-transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease}  #stacks_in_6408_page31 .button.b-p:not(.bp-hover):hover{color:rgba(0, 0, 0, 1.00)!important; background-color:rgba(255, 255, 255, 1.00);}     

/* We use this media query to add styles to any device that supports media queries */
@media only screen {
   
    #stacks_in_p6410_n1_page31 {
      margin: 0px;      
    }

    #stacks_in_p6410_n1_page31 {
      padding: 0px;      
    }


     
      #stacks_in_p6410_n1_page31 {
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
      }
    

    
  


 
    #stacks_in_p6410_n1_page31 {
      margin: 0px;      
    }

    #stacks_in_p6410_n1_page31 {
      padding: 0px;      
    }


     
      #stacks_in_p6410_n1_page31 {
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 0px;
        margin-bottom: 0px;
      }
    

    
 


 
    #stacks_in_p6410_n1_page31 {
      margin: 0px;      
    }

    #stacks_in_p6410_n1_page31 {
      padding: 0px;      
    }


     
      #stacks_in_p6410_n1_page31 {
        margin-left: 100px;
        margin-right: 70px;
        margin-top: 0px;
        margin-bottom: 0px;
      }
    

    
 


}


@media only screen and (max-width: 1024px) {
   
    #stacks_in_p6410_n1_page31 {
      margin: 0px;      
    }

    #stacks_in_p6410_n1_page31 {
      padding: 0px;      
    }


     
      #stacks_in_p6410_n1_page31 {
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
      }
    

    
  


 
    #stacks_in_p6410_n1_page31 {
      margin: 0px;      
    }

    #stacks_in_p6410_n1_page31 {
      padding: 0px;      
    }


     
      #stacks_in_p6410_n1_page31 {
        margin-left: 20px;
        margin-right: 20px;
        margin-top: 0px;
        margin-bottom: 0px;
      }
    

    
 
}



@media only screen and (max-width: 480px) {
   
    #stacks_in_p6410_n1_page31 {
      margin: 0px;      
    }

    #stacks_in_p6410_n1_page31 {
      padding: 0px;      
    }


     
      #stacks_in_p6410_n1_page31 {
        margin-left: 0px;
        margin-right: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
      }
    

    
  

}

/*  */

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_p6410_n2_page31 {
	height: 20.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_p6410_n2_page31 {
		display: none !important;
	}
}       #stacks_in_p6410_n3_page31 div,#stacks_in_p6410_n3_page31 .hTxt:not(.segment) div{font-size:1.20rem}@media all and (max-width:640px){#stacks_in_p6410_n3_page31 div,#stacks_in_p6410_n3_page31 .hTxt:not(.segment) div{font-size:0.95rem}}    @media only screen and (min-width:0px){#stacks_in_p6410_n3_page31 div,#stacks_in_p6410_n3_page31 div{letter-spacing:-0.77px}} #stacks_in_p6410_n3_page31 .header-pro.text-center .hTxt{margin-right:1px}    #stacks_in_p6410_n3_page31 div,#stacks_in_p6410_n3_page31 div{color:rgba(74, 74, 74, 1.00)}#stacks_in_p6410_n3_page31 div a,#stacks_in_p6410_n3_page31 div a{color:rgba(74, 74, 74, 1.00)}#stacks_in_p6410_n3_page31 div a:hover,#stacks_in_p6410_n3_page31 div a:hover{color:rgba(55, 55, 55, 1.00)}#stacks_in_p6410_n3_page31 small,#stacks_in_p6410_n3_page31 small div{color:rgba(111, 111, 111, 1.00)}          #stacks_in_p6410_n3_page31 div span,#stacks_in_p6410_n3_page31 div span,.no-default:not(.custom-font) div span,.no-default:not(.custom-font) div span{ font-family:"Gordita-Bold",sans-serif ;}        


#stacks_in_p6410_n6_page31 {
	letter-spacing: -1px;
	font-size: 140%;
}
/*
 * Typography: Text
 * Author: Jeremy Hawes
 * Version: 1.0.0
 * URL: http://onelittledesigner.com
 * Description: Typography Text stack for RapidWeaver 5+ Stack 2+
 */

.typography_core #typography_text_stacks_in_p6410_n7_page31,
.typography_core p#typography_text_stacks_in_p6410_n7_page31,
.typography_core div#typography_text_stacks_in_p6410_n7_page31,
.typography_core blockquote#typography_text_stacks_in_p6410_n7_page31,
.typography_core address#typography_text_stacks_in_p6410_n7_page31,
.typography_core details#typography_text_stacks_in_p6410_n7_page31 {
	width: 100%;
	font-family: inherit;
	padding: 0;
	margin: 0;
	text-align: left;
	display: block;
	
	
	
	-webkit-transform: scale(1.00,1.00);
	-moz-transform: scale(1.00,1.00);
	transform: scale(1.00,1.00);
}

#typography_text_stacks_in_p6410_n7_page31.layoutColumns {
	-webkit-column-count: 1;
	-moz-column-count: 1;
	column-count: 1;
	-webkit-column-fill: auto;
	-webkit-column-gap: 10px;
	-moz-column-gap: 10px;
	column-gap: 10px;
	-webkit-column-rule: 0px outset #E0E0E0;
	-moz-column-rule: 0px outset #E0E0E0;
	column-rule: 0px outset #E0E0E0;
}
#typography_text_stacks_in_p6410_n7_page31.dropCap1 .dropCap {
	font-family: inherit;
	font-size: 40px;
	color: #CD3333;
	padding-top: 12px;
	padding-right: 8px;
	padding-bottom: 4px;
	padding-left: 0px;
	display: inline-block;
	float: left;
}




#stacks_in_p6410_n8_page31 {
	display:inline-block; width:100%; line-height: 1.220000em;
	font-size: 150%;
}
#stacks_in_p6410_n9_page31>.s3_row {
	margin: 0 -10px;
}

#stacks_in_p6410_n9_page31>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_p6410_n9_page31>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_p6410_n9_page31>.s3_row>.s3_column_right {
	width: 33.33%;
}




#stacks_in_p6410_n9_page31>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {




}



@media only screen and (max-width: 400px) {


	#stacks_in_p6410_n9_page31>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_p6410_n9_page31>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}





       #stacks_in_p6410_n10_page31 div,#stacks_in_p6410_n10_page31 .hTxt:not(.segment) div{font-size:1.20rem}@media all and (max-width:640px){#stacks_in_p6410_n10_page31 div,#stacks_in_p6410_n10_page31 .hTxt:not(.segment) div{font-size:0.95rem}}    @media only screen and (min-width:0px){#stacks_in_p6410_n10_page31 div,#stacks_in_p6410_n10_page31 div{letter-spacing:-0.77px}} #stacks_in_p6410_n10_page31 .header-pro.text-center .hTxt{margin-right:1px}    #stacks_in_p6410_n10_page31 div,#stacks_in_p6410_n10_page31 div{color:rgba(74, 74, 74, 1.00)}#stacks_in_p6410_n10_page31 div a,#stacks_in_p6410_n10_page31 div a{color:rgba(74, 74, 74, 1.00)}#stacks_in_p6410_n10_page31 div a:hover,#stacks_in_p6410_n10_page31 div a:hover{color:rgba(55, 55, 55, 1.00)}#stacks_in_p6410_n10_page31 small,#stacks_in_p6410_n10_page31 small div{color:rgba(111, 111, 111, 1.00)}          #stacks_in_p6410_n10_page31 div span,#stacks_in_p6410_n10_page31 div span,.no-default:not(.custom-font) div span,.no-default:not(.custom-font) div span{ font-family:"Gordita-Bold",sans-serif ;}        


#stacks_in_p6410_n10_page31 {
	margin: 5px 0px 10px 0px;
}

#stacks_in_p6410_n13_page31 {
	display:inline-block; width:100%; line-height: 1.300000em;
	letter-spacing: -1px;
	font-size: 125%;
}
/*
 * Typography: Text
 * Author: Jeremy Hawes
 * Version: 1.0.0
 * URL: http://onelittledesigner.com
 * Description: Typography Text stack for RapidWeaver 5+ Stack 2+
 */

.typography_core #typography_text_stacks_in_p6410_n18_page31,
.typography_core p#typography_text_stacks_in_p6410_n18_page31,
.typography_core div#typography_text_stacks_in_p6410_n18_page31,
.typography_core blockquote#typography_text_stacks_in_p6410_n18_page31,
.typography_core address#typography_text_stacks_in_p6410_n18_page31,
.typography_core details#typography_text_stacks_in_p6410_n18_page31 {
	width: 100%;
	font-family: inherit;
	padding: 0;
	margin: 0;
	text-align: left;
	display: block;
	
	
	
	-webkit-transform: scale(1.00,1.00);
	-moz-transform: scale(1.00,1.00);
	transform: scale(1.00,1.00);
}

#typography_text_stacks_in_p6410_n18_page31.layoutColumns {
	-webkit-column-count: 1;
	-moz-column-count: 1;
	column-count: 1;
	-webkit-column-fill: auto;
	-webkit-column-gap: 10px;
	-moz-column-gap: 10px;
	column-gap: 10px;
	-webkit-column-rule: 0px outset #E0E0E0;
	-moz-column-rule: 0px outset #E0E0E0;
	column-rule: 0px outset #E0E0E0;
}
#typography_text_stacks_in_p6410_n18_page31.dropCap1 .dropCap {
	font-family: inherit;
	font-size: 40px;
	color: #CD3333;
	padding-top: 12px;
	padding-right: 8px;
	padding-bottom: 4px;
	padding-left: 0px;
	display: inline-block;
	float: left;
}




#stacks_in_p6410_n18_page31 {
	margin: 5px 0px 0px 0px;
}

#stacks_in_p6410_n19_page31 {
	display:inline-block; width:100%; line-height: 1.220000em;
	font-size: 136%;
	font-weight: bold;
}
                @media only screen and (min-width:0px){#stacks_in_p6410_n20_page31{ }
} 


#stacks_in_p6410_n21_page31 {
	font-size: 120%;
}

  #stacks_in_p6410_n22_page31{text-align:center}       #stacks_in_p6410_n22_page31>.button.b-p,#stacks_in_p6410_n22_page31>.dd-wrap>.button.b-p{-webkit-box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.78);box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.78)}#stacks_in_p6410_n22_page31>.button.b-p:hover,#stacks_in_p6410_n22_page31>.dd-wrap>.button.b-p:hover{-webkit-box-shadow:0px 3px 4px -4px rgba(0, 0, 0, 0.78);box-shadow:0px 3px 4px -4px rgba(0, 0, 0, 0.78)}    #stacks_in_p6410_n22_page31>.button.b-p.fobbin,#stacks_in_p6410_n22_page31>.dd-wrap>.button.b-p.fobbin{padding:0.30rem 0.75rem 0.30rem 0.75rem!important} @media screen and (max-width:641px){#stacks_in_p6410_n22_page31>.button.b-p.expand-mob:not(.icon-only),#stacks_in_p6410_n22_page31>.dd-wrap>.button.b-p.expand-mob:not(.icon-only){width:100%!important}}@media screen and (min-width:641px){#stacks_in_p6410_n22_page31 .button.b-p.expand-large:not(.icon-only),#stacks_in_p6410_n22_page31>.dd-wrap>.button.b-p.expand-large:not(.icon-only){width:100%!important}}
            #stacks_in_p6410_n22_page31 .button.b-p{font-size:1.20rem}#stacks_in_p6410_n22_page31 .button.b-p.icon-only{width:calc(1.20rem + 0.50rem);height:calc(1.20rem + 0.50rem)}#stacks_in_p6410_n22_page31 .button.b-p.icon-only .bp-glyph:before{line-height:calc(1.20rem + 0.50rem)}@media all and (max-width:640px){#stacks_in_p6410_n22_page31 .button.b-p{font-size:0.95rem}#stacks_in_p6410_n22_page31 .button.b-p.icon-only{width:calc(0.95rem + 0.50rem);height:calc(0.95rem + 0.50rem)}#stacks_in_p6410_n22_page31 .button.b-p.icon-only .bp-glyph:before{line-height:calc(0.95rem + 0.50rem)}} 
  #stacks_in_p6410_n22_page31 .button.b-p.custom{border:1px solid rgba(0, 0, 0, 1.00)}#stacks_in_p6410_n22_page31 .button.b-p.custom:hover{border:1px solid rgba(0, 0, 0, 1.00)} #stacks_in_p6410_n22_page31 .button.b-p{color:rgba(0, 0, 0, 1.00);background-color:rgba(255, 255, 255, 1.00)}#stacks_in_p6410_n22_page31 .button.b-p:not(.d-hov){-webkit-transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;-webkit-transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease}  #stacks_in_p6410_n22_page31 .button.b-p:not(.bp-hover):hover{color:rgba(0, 0, 0, 0.44)!important; background-color:rgba(255, 255, 255, 1.00);}     
       #stacks_in_p6410_n24_page31 div,#stacks_in_p6410_n24_page31 .hTxt:not(.segment) div{font-size:1.20rem}@media all and (max-width:640px){#stacks_in_p6410_n24_page31 div,#stacks_in_p6410_n24_page31 .hTxt:not(.segment) div{font-size:0.95rem}}    @media only screen and (min-width:0px){#stacks_in_p6410_n24_page31 div,#stacks_in_p6410_n24_page31 div{letter-spacing:-0.77px}} #stacks_in_p6410_n24_page31 .header-pro.text-center .hTxt{margin-right:1px}    #stacks_in_p6410_n24_page31 div,#stacks_in_p6410_n24_page31 div{color:rgba(74, 74, 74, 1.00)}#stacks_in_p6410_n24_page31 div a,#stacks_in_p6410_n24_page31 div a{color:rgba(74, 74, 74, 1.00)}#stacks_in_p6410_n24_page31 div a:hover,#stacks_in_p6410_n24_page31 div a:hover{color:rgba(55, 55, 55, 1.00)}#stacks_in_p6410_n24_page31 small,#stacks_in_p6410_n24_page31 small div{color:rgba(111, 111, 111, 1.00)}          #stacks_in_p6410_n24_page31 div span,#stacks_in_p6410_n24_page31 div span,.no-default:not(.custom-font) div span,.no-default:not(.custom-font) div span{ font-family:"Gordita-Bold",sans-serif ;}        


#stacks_in_p6410_n24_page31 {
	margin: 5px 0px 10px 0px;
}

#stacks_in_p6410_n27_page31 {
	display:inline-block; width:100%; line-height: 1.300000em;
	letter-spacing: -1px;
	font-size: 125%;
}
/*
 * Typography: Text
 * Author: Jeremy Hawes
 * Version: 1.0.0
 * URL: http://onelittledesigner.com
 * Description: Typography Text stack for RapidWeaver 5+ Stack 2+
 */

.typography_core #typography_text_stacks_in_p6410_n32_page31,
.typography_core p#typography_text_stacks_in_p6410_n32_page31,
.typography_core div#typography_text_stacks_in_p6410_n32_page31,
.typography_core blockquote#typography_text_stacks_in_p6410_n32_page31,
.typography_core address#typography_text_stacks_in_p6410_n32_page31,
.typography_core details#typography_text_stacks_in_p6410_n32_page31 {
	width: 100%;
	font-family: inherit;
	padding: 0;
	margin: 0;
	text-align: left;
	display: block;
	
	
	
	-webkit-transform: scale(1.00,1.00);
	-moz-transform: scale(1.00,1.00);
	transform: scale(1.00,1.00);
}

#typography_text_stacks_in_p6410_n32_page31.layoutColumns {
	-webkit-column-count: 1;
	-moz-column-count: 1;
	column-count: 1;
	-webkit-column-fill: auto;
	-webkit-column-gap: 10px;
	-moz-column-gap: 10px;
	column-gap: 10px;
	-webkit-column-rule: 0px outset #E0E0E0;
	-moz-column-rule: 0px outset #E0E0E0;
	column-rule: 0px outset #E0E0E0;
}
#typography_text_stacks_in_p6410_n32_page31.dropCap1 .dropCap {
	font-family: inherit;
	font-size: 40px;
	color: #CD3333;
	padding-top: 12px;
	padding-right: 8px;
	padding-bottom: 4px;
	padding-left: 0px;
	display: inline-block;
	float: left;
}




#stacks_in_p6410_n32_page31 {
	margin: 5px 0px 0px 0px;
}

#stacks_in_p6410_n33_page31 {
	display:inline-block; width:100%; line-height: 1.220000em;
	font-size: 136%;
	font-weight: bold;
}
                @media only screen and (min-width:0px){#stacks_in_p6410_n34_page31{ }
} 


#stacks_in_p6410_n35_page31 {
	font-size: 120%;
}

  #stacks_in_p6410_n36_page31{text-align:center}       #stacks_in_p6410_n36_page31>.button.b-p,#stacks_in_p6410_n36_page31>.dd-wrap>.button.b-p{-webkit-box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.78);box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.78)}#stacks_in_p6410_n36_page31>.button.b-p:hover,#stacks_in_p6410_n36_page31>.dd-wrap>.button.b-p:hover{-webkit-box-shadow:0px 3px 4px -4px rgba(0, 0, 0, 0.78);box-shadow:0px 3px 4px -4px rgba(0, 0, 0, 0.78)}    #stacks_in_p6410_n36_page31>.button.b-p.fobbin,#stacks_in_p6410_n36_page31>.dd-wrap>.button.b-p.fobbin{padding:0.30rem 0.75rem 0.30rem 0.75rem!important} @media screen and (max-width:641px){#stacks_in_p6410_n36_page31>.button.b-p.expand-mob:not(.icon-only),#stacks_in_p6410_n36_page31>.dd-wrap>.button.b-p.expand-mob:not(.icon-only){width:100%!important}}@media screen and (min-width:641px){#stacks_in_p6410_n36_page31 .button.b-p.expand-large:not(.icon-only),#stacks_in_p6410_n36_page31>.dd-wrap>.button.b-p.expand-large:not(.icon-only){width:100%!important}}
            #stacks_in_p6410_n36_page31 .button.b-p{font-size:1.20rem}#stacks_in_p6410_n36_page31 .button.b-p.icon-only{width:calc(1.20rem + 0.50rem);height:calc(1.20rem + 0.50rem)}#stacks_in_p6410_n36_page31 .button.b-p.icon-only .bp-glyph:before{line-height:calc(1.20rem + 0.50rem)}@media all and (max-width:640px){#stacks_in_p6410_n36_page31 .button.b-p{font-size:0.95rem}#stacks_in_p6410_n36_page31 .button.b-p.icon-only{width:calc(0.95rem + 0.50rem);height:calc(0.95rem + 0.50rem)}#stacks_in_p6410_n36_page31 .button.b-p.icon-only .bp-glyph:before{line-height:calc(0.95rem + 0.50rem)}} 
  #stacks_in_p6410_n36_page31 .button.b-p.custom{border:1px solid rgba(0, 0, 0, 1.00)}#stacks_in_p6410_n36_page31 .button.b-p.custom:hover{border:1px solid rgba(0, 0, 0, 1.00)} #stacks_in_p6410_n36_page31 .button.b-p{color:rgba(0, 0, 0, 1.00);background-color:rgba(255, 255, 255, 1.00)}#stacks_in_p6410_n36_page31 .button.b-p:not(.d-hov){-webkit-transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;-webkit-transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease}  #stacks_in_p6410_n36_page31 .button.b-p:not(.bp-hover):hover{color:rgba(0, 0, 0, 0.44)!important; background-color:rgba(255, 255, 255, 1.00);}     
       #stacks_in_p6410_n38_page31 div,#stacks_in_p6410_n38_page31 .hTxt:not(.segment) div{font-size:1.20rem}@media all and (max-width:640px){#stacks_in_p6410_n38_page31 div,#stacks_in_p6410_n38_page31 .hTxt:not(.segment) div{font-size:0.95rem}}    @media only screen and (min-width:0px){#stacks_in_p6410_n38_page31 div,#stacks_in_p6410_n38_page31 div{letter-spacing:-0.77px}} #stacks_in_p6410_n38_page31 .header-pro.text-center .hTxt{margin-right:1px}    #stacks_in_p6410_n38_page31 div,#stacks_in_p6410_n38_page31 div{color:rgba(74, 74, 74, 1.00)}#stacks_in_p6410_n38_page31 div a,#stacks_in_p6410_n38_page31 div a{color:rgba(74, 74, 74, 1.00)}#stacks_in_p6410_n38_page31 div a:hover,#stacks_in_p6410_n38_page31 div a:hover{color:rgba(55, 55, 55, 1.00)}#stacks_in_p6410_n38_page31 small,#stacks_in_p6410_n38_page31 small div{color:rgba(111, 111, 111, 1.00)}          #stacks_in_p6410_n38_page31 div span,#stacks_in_p6410_n38_page31 div span,.no-default:not(.custom-font) div span,.no-default:not(.custom-font) div span{ font-family:"Gordita-Bold",sans-serif ;}        


#stacks_in_p6410_n38_page31 {
	margin: 5px 0px 10px 0px;
}

#stacks_in_p6410_n41_page31 {
	display:inline-block; width:100%; line-height: 1.300000em;
	letter-spacing: -1px;
	font-size: 125%;
}
/*
 * Typography: Text
 * Author: Jeremy Hawes
 * Version: 1.0.0
 * URL: http://onelittledesigner.com
 * Description: Typography Text stack for RapidWeaver 5+ Stack 2+
 */

.typography_core #typography_text_stacks_in_p6410_n46_page31,
.typography_core p#typography_text_stacks_in_p6410_n46_page31,
.typography_core div#typography_text_stacks_in_p6410_n46_page31,
.typography_core blockquote#typography_text_stacks_in_p6410_n46_page31,
.typography_core address#typography_text_stacks_in_p6410_n46_page31,
.typography_core details#typography_text_stacks_in_p6410_n46_page31 {
	width: 100%;
	font-family: inherit;
	padding: 0;
	margin: 0;
	text-align: left;
	display: block;
	
	
	
	-webkit-transform: scale(1.00,1.00);
	-moz-transform: scale(1.00,1.00);
	transform: scale(1.00,1.00);
}

#typography_text_stacks_in_p6410_n46_page31.layoutColumns {
	-webkit-column-count: 1;
	-moz-column-count: 1;
	column-count: 1;
	-webkit-column-fill: auto;
	-webkit-column-gap: 10px;
	-moz-column-gap: 10px;
	column-gap: 10px;
	-webkit-column-rule: 0px outset #E0E0E0;
	-moz-column-rule: 0px outset #E0E0E0;
	column-rule: 0px outset #E0E0E0;
}
#typography_text_stacks_in_p6410_n46_page31.dropCap1 .dropCap {
	font-family: inherit;
	font-size: 40px;
	color: #CD3333;
	padding-top: 12px;
	padding-right: 8px;
	padding-bottom: 4px;
	padding-left: 0px;
	display: inline-block;
	float: left;
}




#stacks_in_p6410_n46_page31 {
	margin: 5px 0px 0px 0px;
}

#stacks_in_p6410_n47_page31 {
	display:inline-block; width:100%; line-height: 1.220000em;
	font-size: 136%;
	font-weight: bold;
}
                @media only screen and (min-width:0px){#stacks_in_p6410_n48_page31{ }
} 


#stacks_in_p6410_n49_page31 {
	font-size: 120%;
}

  #stacks_in_p6410_n50_page31{text-align:center}       #stacks_in_p6410_n50_page31>.button.b-p,#stacks_in_p6410_n50_page31>.dd-wrap>.button.b-p{-webkit-box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.78);box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0.78)}#stacks_in_p6410_n50_page31>.button.b-p:hover,#stacks_in_p6410_n50_page31>.dd-wrap>.button.b-p:hover{-webkit-box-shadow:0px 3px 4px -4px rgba(0, 0, 0, 0.78);box-shadow:0px 3px 4px -4px rgba(0, 0, 0, 0.78)}    #stacks_in_p6410_n50_page31>.button.b-p.fobbin,#stacks_in_p6410_n50_page31>.dd-wrap>.button.b-p.fobbin{padding:0.30rem 0.75rem 0.30rem 0.75rem!important} @media screen and (max-width:641px){#stacks_in_p6410_n50_page31>.button.b-p.expand-mob:not(.icon-only),#stacks_in_p6410_n50_page31>.dd-wrap>.button.b-p.expand-mob:not(.icon-only){width:100%!important}}@media screen and (min-width:641px){#stacks_in_p6410_n50_page31 .button.b-p.expand-large:not(.icon-only),#stacks_in_p6410_n50_page31>.dd-wrap>.button.b-p.expand-large:not(.icon-only){width:100%!important}}
            #stacks_in_p6410_n50_page31 .button.b-p{font-size:1.20rem}#stacks_in_p6410_n50_page31 .button.b-p.icon-only{width:calc(1.20rem + 0.50rem);height:calc(1.20rem + 0.50rem)}#stacks_in_p6410_n50_page31 .button.b-p.icon-only .bp-glyph:before{line-height:calc(1.20rem + 0.50rem)}@media all and (max-width:640px){#stacks_in_p6410_n50_page31 .button.b-p{font-size:0.95rem}#stacks_in_p6410_n50_page31 .button.b-p.icon-only{width:calc(0.95rem + 0.50rem);height:calc(0.95rem + 0.50rem)}#stacks_in_p6410_n50_page31 .button.b-p.icon-only .bp-glyph:before{line-height:calc(0.95rem + 0.50rem)}} 
  #stacks_in_p6410_n50_page31 .button.b-p.custom{border:1px solid rgba(0, 0, 0, 1.00)}#stacks_in_p6410_n50_page31 .button.b-p.custom:hover{border:1px solid rgba(0, 0, 0, 1.00)} #stacks_in_p6410_n50_page31 .button.b-p{color:rgba(0, 0, 0, 1.00);background-color:rgba(255, 255, 255, 1.00)}#stacks_in_p6410_n50_page31 .button.b-p:not(.d-hov){-webkit-transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;-webkit-transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease;transition:color 200ms ease,background-color 200ms ease,box-shadow 200ms ease,border 200ms ease,-webkit-box-shadow 200ms ease}  #stacks_in_p6410_n50_page31 .button.b-p:not(.bp-hover):hover{color:rgba(0, 0, 0, 0.44)!important; background-color:rgba(255, 255, 255, 1.00);}     
#stacks_in_5776_page31{overflow:hidden}#stacks_in_5776_page31 hr{opacity:1.00;border-top-style:solid;border-top-width:2px;margin:1.25rem 0;}#stacks_in_5776_page31 hr.custom{border-color:rgba(221, 221, 221, 1.00)}
/*  */

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_p6018_n30_page31 {
	height: 80.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_p6018_n30_page31 {
		display: none !important;
	}
} @media(hover:hover){#stacks_in_p6018_n2_page31.blu-sidebar>.blu-side .my-titles{-webkit-transition:-webkit-transform 120ms ease;transition:-webkit-transform 120ms ease;transition:transform 120ms ease;transition:transform 120ms ease,-webkit-transform 120ms ease}#stacks_in_p6018_n2_page31.blu-sidebar>.blu-side.med-left .my-titles{-webkit-transform:translateX(-100%);transform:translateX(-100%)}#stacks_in_p6018_n2_page31.blu-sidebar>.blu-side.med-right .my-titles{-webkit-transform:translateX(100%);transform:translateX(100%)}#stacks_in_p6018_n2_page31.blu-sidebar>.blu-side:hover .my-titles{-webkit-transform:translateX(0%);transform:translateX(0%)}}@media(hover:hover){#stacks_in_p6018_n2_page31.blu-sidebar>.blu-side .my-icons{-webkit-transition:-webkit-filter 120ms ease;transition:-webkit-filter 120ms ease;transition:filter 120ms ease;transition:filter 120ms ease,-webkit-filter 120ms ease}#stacks_in_p6018_n2_page31.blu-sidebar>.blu-side .my-icons{-webkit-filter:grayscale(100%);filter:grayscale(100%)}#stacks_in_p6018_n2_page31.blu-sidebar>.blu-side:hover .my-icons{-webkit-filter:grayscale(0%);filter:grayscale(0%)}}@media screen and (min-width:640px){#stacks_in_p6018_n2_page31.blu-sidebar.full-height{height:100vh}#stacks_in_p6018_n2_page31.blu-sidebar.full-height>.blu-content>.blu-blu-content__wrap,#stacks_in_p6018_n2_page31.blu-sidebar.full-height>.blu-side>.blu-side__wrap{max-height:100vh;-webkit-transition:none;transition:none}#stacks_in_p6018_n2_page31.blu-sidebar.full-height>.blu-content>.blu-blu-content__wrap,#stacks_in_p6018_n2_page31.blu-sidebar.full-height>.blu-side>.blu-side__wrap{overflow-x:hidden}#stacks_in_p6018_n2_page31.blu-sidebar.full-height>.blu-content>.blu-content__wrap{overflow-y:auto;-webkit-overflow-scrolling:touch}#stacks_in_p6018_n2_page31.blu-sidebar.full-height>.blu-side>.blu-side__wrap{overflow-y:auto;-webkit-overflow-scrolling:touch}} #stacks_in_p6018_n2_page31.blu-sidebar>.blu-side{-webkit-transition:-webkit-flex-basis 180ms ease-in-out;transition:-webkit-flex-basis 180ms ease-in-out;transition:flex-basis 180ms ease-in-out;transition:flex-basis 180ms ease-in-out,-webkit-flex-basis 180ms ease-in-out,-ms-flex-preferred-size 180ms ease-in-out}#stacks_in_p6018_n2_page31.blu-sidebar>.blu-gutter{border-left:0px solid rgba(204, 204, 204, 1.00);margin-left:27.60px;margin-right:27.60px}#stacks_in_p6018_n2_page31.blu-sidebar>.blu-side>.blu-side__wrap.flex-col{-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start}#stacks_in_p6018_n2_page31.blu-sidebar>.blu-content>.blu-content__wrap.flex-col{-webkit-box-pack:flex-start;-ms-flex-pack:flex-start;justify-content:flex-start}@media screen and (max-height:0px){#stacks_in_p6018_n2_page31.blu-sidebar>.blu-side>.blu-side__wrap.flex-col{display:block}}@media screen and (max-height:0px){#stacks_in_p6018_n2_page31.blu-sidebar>.blu-content>.blu-content__wrap.flex-col{display:block}}@media all and (max-width:640px){#stacks_in_p6018_n2_page31.blu-sidebar>.blu-side.sm-top{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}#stacks_in_p6018_n2_page31.blu-sidebar>.blu-side.sm-bot{-webkit-box-ordinal-group:6;-ms-flex-order:5;order:5}#stacks_in_p6018_n2_page31.blu-sidebar>.blu-side.sm-hide{display:none}#stacks_in_p6018_n2_page31.blu-sidebar>.blu-side>.blu-gutter{display:none}#stacks_in_p6018_n2_page31.blu-sidebar.stacked-gutter>.blu-side.sm-top{margin-bottom:12.00px}#stacks_in_p6018_n2_page31.blu-sidebar.stacked-gutter>.blu-content.side-sm-bot{margin-bottom:12.00px}}@media all and (min-width:640px){#stacks_in_p6018_n2_page31.blu-sidebar.med-left>.blu-side{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}#stacks_in_p6018_n2_page31.blu-sidebar.med-left>.blu-content{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}#stacks_in_p6018_n2_page31.blu-sidebar.med-right>.blu-side{-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}#stacks_in_p6018_n2_page31.blu-sidebar.med-right>.blu-content{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}}@media all and (min-width:640px){#stacks_in_p6018_n2_page31.blu-sidebar{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}#stacks_in_p6018_n2_page31.blu-sidebar>.blu-content{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-ms-flex:1;flex:1}#stacks_in_p6018_n2_page31.blu-sidebar>.blu-content>.blu-content__wrap{width:100%}#stacks_in_p6018_n2_page31.blu-sidebar>.blu-side{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:1;flex-shrink:1;-ms-flex-preferred-size:calc(12% - 0px);flex-basis:calc(12% - 0px);max-width:9999px;min-width:100px}
#stacks_in_p6018_n2_page31.blu-sidebar>.blu-side>.blu-side__wrap{-webkit-box-flex:1;-ms-flex:1;flex:1;width:100%}}  #stacks_in_p6018_n2_page31.blu-sidebar>.blu-content{padding: 0px ;border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_p6018_n2_page31.blu-sidebar>.blu-content::before,#stacks_in_p6018_n2_page31.blu-sidebar>.blu-content::after{border-radius:calc(0px - 0px)}#stacks_in_p6018_n2_page31.blu-sidebar>.blu-side{padding: 0px ;border:0px solid rgba(204, 204, 204, 1.00);border-radius:0px}#stacks_in_p6018_n2_page31.blu-sidebar>.blu-side::before,#stacks_in_p6018_n2_page31.blu-sidebar>.blu-side::after{border-radius:calc(0px - 0px)} 

#stacks_out_p6018_n3_page31 {
	width: 100px;
}
/*  */

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_p6018_n6_page31 {
	height: 80.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_p6018_n6_page31 {
		display: none !important;
	}
}
#stacks_in_p6018_n60_page31 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_p6018_n60_page31 > .row > .columns{margin-top:0.00rem;margin-bottom:0.00rem}#stacks_in_p6018_n60_page31 > .row.divider > .columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(0, 0, 0, 1.00)}

#stacks_in_p6018_n60_page31 {
	margin: 0px 100px 0px 0px;
}
           #stacks_in_p6018_n11_page31 p,#stacks_in_p6018_n11_page31 div,#stacks_in_p6018_n11_page31 ul,#stacks_in_p6018_n11_page31 ol,#stacks_in_p6018_n11_page31 dl{color:rgba(34, 34, 34, 1.00)}#stacks_in_p6018_n11_page31 a{color:rgba(0, 140, 186, 1.00)}#stacks_in_p6018_n11_page31 a:hover{color:rgba(0, 102, 153, 1.00)}      @media only screen and (min-width:0px){#stacks_in_p6018_n11_page31{ }
}      #stacks_in_p6018_n11_page31,#stacks_in_p6018_n11_page31 div,#stacks_in_p6018_n11_page31 p,#stacks_in_p6018_n11_page31 ul,#stacks_in_p6018_n11_page31 ul li,#stacks_in_p6018_n11_page31 ol li,#stacks_in_p6018_n11_page31 ol,#stacks_in_p6018_n11_page31 dl,#stacks_in_p6018_n11_page31 a,.no-default:not(.custom-font),.no-default:not(.custom-font) div,.no-default:not(.custom-font) p,.no-default:not(.custom-font) ul,.no-default:not(.custom-font) ul li,.no-default:not(.custom-font) ol li,.no-default:not(.custom-font) ol,.no-default:not(.custom-font) dl,.no-default:not(.custom-font) a{ font-family:"Arial-Bold",sans-serif ;}  

           #stacks_in_p6018_n67_page31 p,#stacks_in_p6018_n67_page31 div,#stacks_in_p6018_n67_page31 ul,#stacks_in_p6018_n67_page31 ol,#stacks_in_p6018_n67_page31 dl{color:rgba(34, 34, 34, 1.00)}#stacks_in_p6018_n67_page31 a{color:rgba(0, 140, 186, 1.00)}#stacks_in_p6018_n67_page31 a:hover{color:rgba(0, 102, 153, 1.00)}      @media only screen and (min-width:0px){#stacks_in_p6018_n67_page31{ }
}      #stacks_in_p6018_n67_page31,#stacks_in_p6018_n67_page31 div,#stacks_in_p6018_n67_page31 p,#stacks_in_p6018_n67_page31 ul,#stacks_in_p6018_n67_page31 ul li,#stacks_in_p6018_n67_page31 ol li,#stacks_in_p6018_n67_page31 ol,#stacks_in_p6018_n67_page31 dl,#stacks_in_p6018_n67_page31 a,.no-default:not(.custom-font),.no-default:not(.custom-font) div,.no-default:not(.custom-font) p,.no-default:not(.custom-font) ul,.no-default:not(.custom-font) ul li,.no-default:not(.custom-font) ol li,.no-default:not(.custom-font) ol,.no-default:not(.custom-font) dl,.no-default:not(.custom-font) a{ font-family:"Arial-Bold",sans-serif ;}  

                @media only screen and (min-width:0px){#stacks_in_p6018_n14_page31{ }
}      #stacks_in_p6018_n14_page31,#stacks_in_p6018_n14_page31 div,#stacks_in_p6018_n14_page31 p,#stacks_in_p6018_n14_page31 ul,#stacks_in_p6018_n14_page31 ul li,#stacks_in_p6018_n14_page31 ol li,#stacks_in_p6018_n14_page31 ol,#stacks_in_p6018_n14_page31 dl,#stacks_in_p6018_n14_page31 a,.no-default:not(.custom-font),.no-default:not(.custom-font) div,.no-default:not(.custom-font) p,.no-default:not(.custom-font) ul,.no-default:not(.custom-font) ul li,.no-default:not(.custom-font) ol li,.no-default:not(.custom-font) ol,.no-default:not(.custom-font) dl,.no-default:not(.custom-font) a{ font-family:"Arial-Bold",sans-serif ;}  

                @media only screen and (min-width:0px){#stacks_in_p6018_n17_page31{ }
}      #stacks_in_p6018_n17_page31,#stacks_in_p6018_n17_page31 div,#stacks_in_p6018_n17_page31 p,#stacks_in_p6018_n17_page31 ul,#stacks_in_p6018_n17_page31 ul li,#stacks_in_p6018_n17_page31 ol li,#stacks_in_p6018_n17_page31 ol,#stacks_in_p6018_n17_page31 dl,#stacks_in_p6018_n17_page31 a,.no-default:not(.custom-font),.no-default:not(.custom-font) div,.no-default:not(.custom-font) p,.no-default:not(.custom-font) ul,.no-default:not(.custom-font) ul li,.no-default:not(.custom-font) ol li,.no-default:not(.custom-font) ol,.no-default:not(.custom-font) dl,.no-default:not(.custom-font) a{ font-family:"Arial-Bold",sans-serif ;}  

                @media only screen and (min-width:0px){#stacks_in_p6018_n20_page31{ }
}      #stacks_in_p6018_n20_page31,#stacks_in_p6018_n20_page31 div,#stacks_in_p6018_n20_page31 p,#stacks_in_p6018_n20_page31 ul,#stacks_in_p6018_n20_page31 ul li,#stacks_in_p6018_n20_page31 ol li,#stacks_in_p6018_n20_page31 ol,#stacks_in_p6018_n20_page31 dl,#stacks_in_p6018_n20_page31 a,.no-default:not(.custom-font),.no-default:not(.custom-font) div,.no-default:not(.custom-font) p,.no-default:not(.custom-font) ul,.no-default:not(.custom-font) ul li,.no-default:not(.custom-font) ol li,.no-default:not(.custom-font) ol,.no-default:not(.custom-font) dl,.no-default:not(.custom-font) a{ font-family:"Arial-Bold",sans-serif ;}  

                @media only screen and (min-width:0px){#stacks_in_p6018_n23_page31{ }
}      #stacks_in_p6018_n23_page31,#stacks_in_p6018_n23_page31 div,#stacks_in_p6018_n23_page31 p,#stacks_in_p6018_n23_page31 ul,#stacks_in_p6018_n23_page31 ul li,#stacks_in_p6018_n23_page31 ol li,#stacks_in_p6018_n23_page31 ol,#stacks_in_p6018_n23_page31 dl,#stacks_in_p6018_n23_page31 a,.no-default:not(.custom-font),.no-default:not(.custom-font) div,.no-default:not(.custom-font) p,.no-default:not(.custom-font) ul,.no-default:not(.custom-font) ul li,.no-default:not(.custom-font) ol li,.no-default:not(.custom-font) ol,.no-default:not(.custom-font) dl,.no-default:not(.custom-font) a{ font-family:"Arial-Bold",sans-serif ;}  

/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_p6018_n26_page31 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_p6018_n26_page31 {
		display: none !important;
	}
}                @media only screen and (min-width:0px){#stacks_in_p6018_n27_page31{ }
}      #stacks_in_p6018_n27_page31,#stacks_in_p6018_n27_page31 div,#stacks_in_p6018_n27_page31 p,#stacks_in_p6018_n27_page31 ul,#stacks_in_p6018_n27_page31 ul li,#stacks_in_p6018_n27_page31 ol li,#stacks_in_p6018_n27_page31 ol,#stacks_in_p6018_n27_page31 dl,#stacks_in_p6018_n27_page31 a,.no-default:not(.custom-font),.no-default:not(.custom-font) div,.no-default:not(.custom-font) p,.no-default:not(.custom-font) ul,.no-default:not(.custom-font) ul li,.no-default:not(.custom-font) ol li,.no-default:not(.custom-font) ol,.no-default:not(.custom-font) dl,.no-default:not(.custom-font) a{ font-family:"Arial",sans-serif ;}  


#stacks_in_p6018_n27_page31 {
	margin: 0px 0px 0px 50px;
}

#stacks_in_p6018_n28_page31 {
	font-size: 80%;
}
