/* 
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);
}@media screen and (min-width:40em){.row.collapse-tablet-up .columns{padding-left:0!important;padding-right:0!important}}
.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}}
.infix{z-index:9990;position:fixed;top:0;right:0;bottom:0;left:0;white-space:nowrap;outline:none !important;overflow:hidden}.infix.infix-section{z-index:999}.infix *{-webkit-box-sizing:border-box;box-sizing:border-box}.infix-wrap{z-index:9990;top:0;right:0;bottom:0;left:0;text-align:center;outline:none !important}.infix.infix-body{position:fixed}.infix.no-nav > .infix-wrap > .infix-nav{display:none}.infix.infix-body .infix-wrap{position:fixed}.infix.infix-section{position:absolute}.infix.infix-section .infix-wrap{position:absolute}.infix-wrap:before{content:'';display:inline-block;height:100%;vertical-align:middle}.splb-loader{z-index:99999;color:#fff;position:absolute;top:50%;margin-top:-0.8em;width:100%;text-align:center;font-size:14px;font-family:Arial,Helvetica,sans-serif;opacity:0;-webkit-transition:opacity .6s ease;transition:opacity .6s ease}.infix-loading .splb-loader{opacity:1}.infix-container{z-index:9992;position:relative;text-align:left;vertical-align:middle;display:inline-block;white-space:normal;max-width:100%;max-height:100%;outline:none !important}.infix.stacks-v-top .infix-container{vertical-align:top}.infix.stacks-v-bottom .infix-container{vertical-align:bottom}.infix.infix-section .infix-container{position:static}.infix.infix-section.infix-inline .infix-container{position:static}.infix-content{z-index:9993;width:100%}.infix-content::after{content:'';position:absolute;left:0;top:0;bottom:0;display:block;right:0;z-index:-1}.infix-body .infix-close{position:fixed}.infix-body.infix-inline .infix-container{width:96%;max-width:1000px}.infix-body.cross-overlay .infix-close{position:fixed}.infix-body.cross-inside .infix-close{position:absolute}.infix-section .infix-close{position:absolute}.infix-closed:not(.infix-closing){z-index:-99 !important;height:0 !important}.infix-close{display:none;cursor:pointer;text-decoration:none;text-align:center;font-style:normal;border:0;-webkit-appearance:none;outline:none;background:none;-webkit-box-shadow:none;box-shadow:none}.infix-close,[data-infix-next],[data-infix-prev]{cursor:pointer}.infix-close.icon-tr{right:0;top:0}.infix-close.icon-tl{left:0;top:0}.infix-close.icon-br{right:0;bottom:0}.infix-close.icon-bl{left:0;bottom:0}.infix-close::-moz-focus-inner{border:0;padding:0}.infix-img{max-width:100%;margin:0 auto;display:block;line-height:0;border:0}.infix-section.size-target.infix-image .infix-img[style],.infix-section.size-native.infix-image .infix-img[style]{max-height:none !important}.infix.infix-section.size-native{overflow:visible}.infix.infix-section.size-native,.infix.infix-section.size-native > .infix-wrap,.infix.infix-section.size-native > .infix-wrap > .infix-container{position:relative;width:100%}.infix.infix-section.size-native.infix-closing{display:none !important}.infix.size-native > .infix-wrap > .infix-container > .infix-content > .splb{max-height:none !important}.infix-iframe .infix-container{width:100%}.infix-body.infix-iframe .infix-container{max-width:1000px}.infix-section.infix-iframe.full-frame .infix-container{max-width:100%}.infix-section.infix-iframe.auto-size-section .infix-iframe-container{max-height:none !important}.size-target:not(.lightbox-open)[style]{max-height:initial !important;min-height:initial !important}.infix-iframe-container{width:100%;height:0;padding-top:56.25%;overflow:auto;pointer-events:auto;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-overflow-scrolling:touch}.infix-iframe-container iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%}.infix-htmlvideo video{position:absolute;top:0px;width:100%}.infix-instagram .infix-content{margin:0 auto;width:100%}.infix-instagram .infix-content .infix-iframe-container{padding-top:113.0719%}.infix-error{text-align:center}.infix-err-txt{color:black;background-color:rgba(255,255,255,0.4);padding:3px 6px}.spl-lightbox,.spl-lightbox::before,.spl-lightbox::after{display:none}.limelight-launcher{cursor:pointer}.limelight-launcher:not(.allowclicks) *{pointer-events:none}[data-cms-launch][data-cms-id=""].ll-empty-noclick{pointer-events:none !important}[data-cms-launch][data-cms-id=""].ll-empty-hide{display:none !important}.ll-count{display:none}.ll-overlay[class*="s-"][class*="-bg"]::before{display:none}

.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}
 .no-js #foundation-loader{display:none}#foundation-loader{display:block;background-color:rgba(255, 255, 255, 1.00)}#foundation-loader .loader-inner{margin-left:0px}#foundation-loader .loader-inner > div{background-color:rgba(131, 114, 96, 1.00)}#foundation-loader .ball-grid-pulse,#foundation-loader .ball-grid-beat,#foundation-loader .semi-circle-spin{margin:0 auto;transform:translateY(40%)}#foundation-loader .loader-inner > div,#foundation-loader .ball-rotate > div:before,#foundation-loader .ball-rotate > div:after,#foundation-loader .ball-clip-rotate-pulse > div:first-child,#foundation-loader .pacman > div:nth-child(3),#foundation-loader .pacman > div:nth-child(4),#foundation-loader .pacman > div:nth-child(5),#foundation-loader .pacman > div:nth-child(6){background-color:rgba(131, 114, 96, 1.00)}#foundation-loader .square-spin > div,#foundation-loader .ball-clip-rotate > div{background-color:rgba(131, 114, 96, 1.00);border-color:rgba(131, 114, 96, 1.00)}#foundation-loader .ball-clip-rotate > div{border-bottom-color:transparent}#foundation-loader .ball-clip-rotate-pulse > div:last-child,#foundation-loader .ball-clip-rotate-multiple > div:last-child{background-color:transparent;border-color:rgba(131, 114, 96, 1.00) transparent rgba(131, 114, 96, 1.00) transparent}#foundation-loader .ball-clip-rotate-multiple > div{background-color:transparent;border-color:transparent rgba(131, 114, 96, 1.00) transparent rgba(131, 114, 96, 1.00)}#foundation-loader .ball-scale-ripple > div,#foundation-loader .ball-scale-ripple-multiple > div,#foundation-loader .ball-triangle-path > div{background-color:transparent;border-color:rgba(131, 114, 96, 1.00)}#foundation-loader .triangle-skew-spin > div{background-color:transparent;border-left-color:transparent;border-right-color:transparent;border-bottom-color:rgba(131, 114, 96, 1.00)}#foundation-loader .pacman > div:first-of-type,#foundation-loader .pacman > div:nth-child(2){background-color:transparent;border-right-color:transparent;border-top-color:rgba(131, 114, 96, 1.00);border-left-color:rgba(131, 114, 96, 1.00);border-bottom-color:rgba(131, 114, 96, 1.00)}#foundation-loader .semi-circle-spin > div{width:35px;height:35px;background-color:transparent;background-image:linear-gradient(transparent 0%,transparent 70%,rgba(131, 114, 96, 1.00) 30%,rgba(131, 114, 96, 1.00) 100%)}.stacks_top{opacity:0} .theme-version{display:block}.theme-version.number-110,#stacks_in_615_1{display:none}.stacks_out{overflow:visible !important}.stacks_in{overflow:visible}::selection{color:rgba(102, 102, 102, 1.00);background:rgba(255, 255, 255, 1.00);}::-moz-selection{color:rgba(102, 102, 102, 1.00);background:rgba(255, 255, 255, 1.00);}body,.font-family-text{font-family:'Helvetica Neue', Helvetica, Arial, sans-serif;font-weight:400;}h1,.font-family-h1{font-family:'Open Sans',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:'Open Sans',sans-serif;font-style:normal;font-weight:600;}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{image-rendering:optimizeQuality;max-width:none !important}.vegas-overlay,.vegas-background{-webkit-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:0px}.floating-body.radius > .columns > .stacks_out:first-child > .stacks_in > .top-bar-wrapper:not(.fixed){border-top-right-radius:0px;border-top-left-radius:0px}.floating-body .top-bar-wrapper.contain-to-grid.fixed{max-width:1440px;left:50%;transform:translateX(-50%)}.radius{background-clip:padding-box}img{color:#FFFFFF}img.radius{border-radius:0px}img.round{border-radius:1000px}.row{max-width:1440px !important;}.row.max-edge{max-width:100% !important}body{color:rgba(102, 102, 102, 1.00)}a{color:rgba(187, 98, 71, 1.00);-webkit-text-decoration:none;text-decoration:none;font-weight:inherit}a:hover,a:focus{color:rgba(187, 98, 71, 1.00)}a.close,a.close-reveal-modal{text-decoration:none}.alt{color:rgba(255, 255, 255, 1.00)}.alt a{color:rgba(168, 88, 63, 1.00);-webkit-text-decoration:none;text-decoration:none}.alt a:hover,.alt a:focus{color:rgba(168, 88, 63, 1.00)}.alt small{color:rgba(255, 255, 255, 1.00)}h1,h2,h3,h4,h5,h6{color:rgba(152, 134, 115, 1.00);margin-top:0}h1.alt,h2.alt,h3.alt,h4.alt,h5.alt,h6.alt{color:rgba(255, 255, 255, 1.00)}h1.subheader,h2.subheader,h3.subheader,h4.subheader,h5.subheader,h6.subheader{color:rgba(197, 174, 149, 1.00)}h1.subheader.alt,h2.subheader.alt,h3.subheader.alt,h4.subheader.alt,h5.subheader.alt,h6.subheader.alt{color:rgba(255, 255, 255, 1.00)}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-size:30%;color:rgba(132, 132, 132, 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:2.12rem}h2{font-size:1.69rem}h3{font-size:1.43rem}h4{font-size:1.25rem}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.80rem}h4{font-size:1.65rem}h5{font-size:1.12rem}h6{font-size:1.00rem}p,ul li,ol li{font-size:1.10rem}}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(255, 255, 255, 1.00)}hr.primary,blockquote.primary,abbr.primary,acronym.primary,.vcard.primary{border-color:rgba(255, 255, 255, 1.00)}hr.secondary,blockquote.secondary,abbr.secondary,acronym.secondary,.vcard.secondary{border-color:rgba(230, 230, 230, 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(132, 132, 132, 1.00)}blockquote cite,blockquote cite a,blockquote p cite,blockquote p cite a{color:rgba(122, 122, 122, 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:1440px}.top-bar .top-bar-section ul li > a.button{background-color:rgba(255, 255, 255, 1.00);color:rgba(102, 102, 102, 1.00)}.top-bar .top-bar-section ul li > a.button:hover{color:rgba(102, 102, 102, 1.00);background-color:rgba(242, 242, 242, 1.00)}.top-bar .top-bar-section ul li > a.button.secondary{background-color:rgba(230, 230, 230, 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(218, 218, 218, 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:0px}.top-bar-wrapper.fn-scheme-primary{background-color:rgba(255, 255, 255, 1.00);color:rgba(102, 102, 102, 1.00)}.top-bar-wrapper.fn-scheme-primary ul:not(.title-area) ul.dropdown{background-color:rgba(255, 255, 255, 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(102, 102, 102, 1.00) !important}.top-bar-wrapper.fn-scheme-primary .top-bar .toggle-topbar.menu-icon a span::after{box-shadow:0 0 0 1px rgba(102, 102, 102, 1.00),0 7px 0 1px rgba(102, 102, 102, 1.00),0 14px 0 1px rgba(102, 102, 102, 1.00)}.top-bar-wrapper.fn-scheme-secondary{background-color:rgba(230, 230, 230, 1.00);color:rgba(51, 51, 51, 1.00)}.top-bar-wrapper.fn-scheme-secondary ul:not(.title-area) ul.dropdown{background-color:rgba(230, 230, 230, 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{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{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{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{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{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{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{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(255, 255, 255, 1.00);color:rgba(102, 102, 102, 1.00);border-color:rgba(242, 242, 242, 1.00)}.alert-box a:not(.close){color:rgba(102, 102, 102, 1.00);text-decoration:underline}.alert-box.secondary{background-color:rgba(230, 230, 230, 1.00);color:rgba(51, 51, 51, 1.00);border-color:rgba(218, 218, 218, 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:0px}.breadcrumbs{background-color:rgba(230, 230, 230, 1.00);border-color:rgba(218, 218, 218, 1.00);color:rgba(51, 51, 51, 1.00)}.breadcrumbs .current a{color:rgba(51, 51, 51, 1.00)}.breadcrumbs.radius{border-radius:0px}.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(255, 255, 255, 1.00);color:rgba(102, 102, 102, 1.00)}.button:hover{color:rgba(102, 102, 102, 1.00);background-color:rgba(242, 242, 242, 1.00)}.button.secondary{background-color:rgba(230, 230, 230, 1.00);color:rgba(51, 51, 51, 1.00)}.button.secondary:hover{color:rgba(51, 51, 51, 1.00);background-color:rgba(218, 218, 218, 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:0px}.button.ghost{background-color:transparent;border-width:1px;border-color:rgba(255, 255, 255, 1.00);color:rgba(255, 255, 255, 1.00)}.button.ghost:hover{color:rgba(102, 102, 102, 1.00);border-color:rgba(242, 242, 242, 1.00);background-color:rgba(242, 242, 242, 1.00)}.button.ghost.secondary{border-color:rgba(230, 230, 230, 1.00);color:rgba(230, 230, 230, 1.00)}.button.ghost.secondary:hover{color:rgba(51, 51, 51, 1.00);border-color:rgba(218, 218, 218, 1.00);background-color:rgba(218, 218, 218, 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(102, 102, 102, 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(102, 102, 102, 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:0px;border-bottom-right-radius:0px}.split.button span::after{border-top-color:rgba(102, 102, 102, 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:0px;border-top-left-radius:0px}.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:0px;border-bottom-right-radius:0px}.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(255, 255, 255, 1.00);color:rgba(102, 102, 102, 1.00)}.icon-bar > .item{cursor:pointer;color:rgba(102, 102, 102, 1.00)}.icon-bar > .item label,.icon-bar > .item i{color:rgba(102, 102, 102, 1.00)}.icon-bar > .item:hover{color:rgba(102, 102, 102, 1.00);background-color:rgba(242, 242, 242, 1.00)}.icon-bar.secondary{background-color:rgba(230, 230, 230, 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(218, 218, 218, 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(102, 102, 102, 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(102, 102, 102, 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(255, 255, 255, 1.00)}form fieldset{border-color:rgba(221, 221, 221, 1.00)}form legend{background-color:#FFFFFF}form label{color:rgba(122, 122, 122, 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:0px}form.radius span.prefix,form.radius label.prefix{border-bottom-left-radius:0px;border-top-left-radius:0px}form.radius span.postfix,form.radius label.postfix{border-top-right-radius:0px;border-bottom-right-radius:0px}form.radius .input-group > *:first-child,form.radius .input-group > *:first-child *{border-bottom-left-radius:0px;border-top-left-radius:0px}form.radius .input-group > *:last-child,form.radius .input-group > *:last-child *{border-top-right-radius:0px;border-bottom-right-radius:0px}.range-slider,.range-slider.radius,.range-slider.round{background-color:rgba(102, 102, 102, 1.00);border-color:rgba(72, 72, 72, 1.00)}.range-slider .range-slider-handle,.range-slider.radius .range-slider-handle,.range-slider.round .range-slider-handle{background-color:rgba(255, 255, 255, 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(242, 242, 242, 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(72, 72, 72, 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(230, 230, 230, 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(218, 218, 218, 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(102, 102, 102, 1.00)}fieldset.switch input:checked + label{background-color:rgba(255, 255, 255, 1.00)}fieldset.switch.secondary label::after{background-color:rgba(51, 51, 51, 1.00)}fieldset.switch.secondary input:checked + label{background-color:rgba(230, 230, 230, 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(255, 255, 255, 1.00);color:rgba(102, 102, 102, 1.00);margin-bottom:0}.label.secondary{background-color:rgba(230, 230, 230, 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:0px}.alert-box .close{opacity:0.5}.slideshow-wrapper{min-height:50px;z-index:10}.orbit-container .orbit-bullets li{cursor:pointer;background:rgba(230, 230, 230, 1.00)}.orbit-container .orbit-bullets li.active,.orbit-container .orbit-bullets li:hover{background:rgba(255, 255, 255, 1.00)}.accordion .accordion-navigation > a{background-color:rgba(255, 255, 255, 1.00);color:rgba(102, 102, 102, 1.00)}.accordion .accordion-navigation > a:hover{background-color:rgba(242, 242, 242, 1.00)}.accordion .accordion-navigation > a.radius{border-radius:0px}.accordion .accordion-navigation > a.round{border-radius:1000px}.accordion .accordion-navigation.active > a{background-color:rgba(242, 242, 242, 1.00)}.accordion .accordion-navigation > .content{background-color:transparent !important}.accordion.secondary .accordion-navigation > a{background-color:rgba(230, 230, 230, 1.00);color:rgba(51, 51, 51, 1.00)}.accordion.secondary .accordion-navigation > a:hover{background-color:rgba(218, 218, 218, 1.00)}.accordion.secondary .accordion-navigation.active > a{background-color:rgba(218, 218, 218, 1.00)}.tabs li.tab-title > a{background-color:rgba(255, 255, 255, 1.00);color:rgba(102, 102, 102, 1.00)}.tabs li.tab-title > a:hover{background-color:rgba(242, 242, 242, 1.00)}.tabs li.tab-title.active > a{color:rgba(102, 102, 102, 1.00);background-color:rgba(242, 242, 242, 1.00)}.tabs.secondary li.tab-title > a{background-color:rgba(230, 230, 230, 1.00);color:rgba(51, 51, 51, 1.00)}.tabs.secondary li.tab-title > a:hover{background-color:rgba(218, 218, 218, 1.00)}.tabs.secondary li.tab-title.active > a{color:rgba(51, 51, 51, 1.00);background-color:rgba(218, 218, 218, 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:0px;border-top-left-radius:0px}.tabs.radius li.tab-title:last-child a{border-top-right-radius:0px;border-bottom-right-radius:0px}.th.radius{border-radius:0px}.th:hover,.th:focus{box-shadow:0 0 6px 1px rgba(127, 127, 127, 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:0px}.tooltip{border-radius:0px;background-color:rgba(51, 51, 51, 1.00);color:rgba(255, 255, 255, 1.00)}.panel{background-color:rgba(241, 241, 241, 1.00);border-color:rgba(218, 218, 218, 1.00)}.panel.radius{border-radius:0px}.panel p{color:rgba(102, 102, 102, 1.00)}.panel p a{color:rgba(187, 98, 71, 1.00)}.panel p.alt{color:rgba(255, 255, 255, 1.00)}.panel p.alt a{color:rgba(168, 88, 63, 1.00)}.panel p.alt a:hover{color:rgba(168, 88, 63, 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(152, 134, 115, 1.00)}.panel h1.alt,.panel h2.alt,.panel h3.alt,.panel h4.alt,.panel h5.alt,.panel h6.alt{color:rgba(255, 255, 255, 1.00)}.panel h1.subheader,.panel h2.subheader,.panel h3.subheader,.panel h4.subheader,.panel h5.subheader,.panel h6.subheader{color:rgba(197, 174, 149, 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(255, 255, 255, 1.00)}.pricing-table.primary .title{background-color:rgba(255, 255, 255, 1.00);color:rgba(102, 102, 102, 1.00)}.pricing-table.primary .price{color:rgba(102, 102, 102, 1.00)}.pricing-table.primary .description{color:rgba(102, 102, 102, 1.00)}.pricing-table.primary .bullet-item{color:rgba(102, 102, 102, 1.00)}.pricing-table.secondary .title{background-color:rgba(230, 230, 230, 1.00);color:rgba(51, 51, 51, 1.00)}.pricing-table.secondary .price{color:rgba(102, 102, 102, 1.00)}.pricing-table.secondary .description{color:rgba(102, 102, 102, 1.00)}.pricing-table.secondary .bullet-item{color:rgba(102, 102, 102, 1.00)}.pricing-table.radius{border-radius:0px}.pricing-table.radius .title{border-top-right-radius:0px;border-top-left-radius:0px}.pricing-table.radius .cta-button{border-bottom-right-radius:0px;border-bottom-left-radius:0px}.side-nav li a:not(.button){color:rgba(187, 98, 71, 1.00)}.side-nav li a:not(.button):hover{background-color:rgba(243, 243, 243, 1.00);color:rgba(187, 98, 71, 1.00)}.side-nav li.active > a:first-child:not(.button){color:rgba(187, 98, 71, 1.00)}.side-nav li.active:not(.has-dropdown) a:not(.button){color:rgba(158, 83, 60, 1.00)}.side-nav header{color:rgba(102, 102, 102, 1.00);margin-top:1rem;margin-bottom:0.5rem}.side-nav label{color:rgba(122, 122, 122, 1.00)}.side-nav li.divider{border-top-color:rgba(221, 221, 221, 1.00)}.side-nav.alt li a:not(.button){color:rgba(168, 88, 63, 1.00)}.side-nav.alt li a:not(.button):hover{background-color:rgba(243, 243, 243, 1.00);color:rgba(168, 88, 63, 1.00)}.side-nav.alt li.active > a:first-child:not(.button){color:rgba(168, 88, 63, 1.00)}.side-nav.alt li.active:not(.has-dropdown) a:not(.button){color:rgba(142, 74, 53, 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(255, 255, 255, 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(242, 242, 242, 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(102, 102, 102, 1.00);background-color:rgba(255, 255, 255, 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(242, 242, 242, 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(230, 230, 230, 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(218, 218, 218, 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(230, 230, 230, 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(218, 218, 218, 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(230, 230, 230, 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(218, 218, 218, 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:0px}.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(187, 98, 71, 1.00)}nav.inline-nav ul.inline-list.alt li.active{border-bottom-color:rgba(168, 88, 63, 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(102, 102, 102, 1.00);font-size:0.9rem}.copyright a{color:rgba(187, 98, 71, 1.00)}.copyright a:hover{color:rgba(187, 98, 71, 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(152, 134, 115, 1.00)}.fn-text-link a{color:rgba(187, 98, 71, 1.00)}.fn-text-link a:hover{color:rgba(187, 98, 71, 1.00)}.fn-text-text{color:rgba(102, 102, 102, 1.00)}.fn-text-text p,.fn-text-text div{color:rgba(102, 102, 102, 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(255, 255, 255, 1.00)}.fn-text-link-alt a{color:rgba(168, 88, 63, 1.00)}.fn-text-link-alt a:hover{color:rgba(168, 88, 63, 1.00)}.fn-text-accent-alt{color:rgba(221, 221, 221, 1.00)}.fn-text-primary{color:rgba(255, 255, 255, 1.00)}.fn-text-primary-text{color:rgba(102, 102, 102, 1.00)}.fn-text-primary-text p,.fn-text-primary-text div{color:rgba(102, 102, 102, 1.00)}.fn-text-secondary{color:rgba(230, 230, 230, 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(255, 255, 255, 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(255, 255, 255, 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(255, 255, 255, 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(255, 255, 255, 1.00)}.fn-text-text-alt a{color:rgba(168, 88, 63, 1.00)}.fn-text-text-alt a:hover{color:rgba(168, 88, 63, 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(152, 134, 115, 1.00)}.fn-bg-text{background-color:rgba(102, 102, 102, 1.00)}.fn-bg-link{background-color:rgba(187, 98, 71, 1.00)}.fn-bg-link-hover{background-color:rgba(187, 98, 71, 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(255, 255, 255, 1.00)}.fn-bg-text-alt{background-color:rgba(255, 255, 255, 1.00)}.fn-bg-link-alt{background-color:rgba(168, 88, 63, 1.00)}.fn-bg-link-hover-alt{background-color:rgba(168, 88, 63, 1.00)}.fn-bg-accent-alt{background-color:rgba(221, 221, 221, 1.00)}.fn-bg-primary{background-color:rgba(255, 255, 255, 1.00)}.fn-bg-primary-text{background-color:rgba(102, 102, 102, 1.00)}.fn-bg-secondary{background-color:rgba(230, 230, 230, 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(255, 255, 255, 1.00);color:rgba(102, 102, 102, 1.00)}.fn-scheme-primary div,.fn-scheme-primary p{color:rgba(102, 102, 102, 1.00)}.fn-scheme-primary.button:hover{background-color:rgba(242, 242, 242, 1.00)}.fn-scheme-secondary{background-color:rgba(230, 230, 230, 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(218, 218, 218, 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)}
/* PMBeautifier stack v1.0.7 */body #rapidweaver_privacy_message {	display: -webkit-box;	display: -ms-flexbox;	       display: flex;		left: 0;	background-color: rgba(25, 25, 25, 1.00);		box-shadow: -2px 0px 4px 6px rgba(0, 0, 0, 0.10);										border-top: 1px solid rgba(255, 255, 255, 1.00);}body #rapidweaver_privacy_message p:not(button) {	width: 100%;	font-size: 75%;			color: #FFFFFF !important;	text-align:center;					margin: 6px 10px 6px 20px;		}body #rapidweaver_privacy_message p:not(button) span {	color: #FFFFFF !important;}body #rapidweaver_privacy_message p a:link {	color: #988673;	}body #rapidweaver_privacy_message p a:visited {	color: #988673;	}body #rapidweaver_privacy_message p a:hover {	color: #988673;	}body #rapidweaver_privacy_message p a:active {	color: #988673;	}body #rapidweaver_privacy_message button {	font-size: 75%;			color: #FFFFFF;					margin: 6px 20px 6px 10px;			border-radius: 0px;	background-color: rgba(152, 134, 115, 1.00);		font-weight: bold;		}body #rapidweaver_privacy_message button:hover {	filter: saturate(100%);	color: #FFFFFF;	background-color: rgba(152, 134, 115, 1.00);	}body #rapidweaver_privacy_message button:active {	color: #FFFFFF;	background-color: rgba(152, 134, 115, 1.00);	}body #rapidweaver_privacy_message a,body #rapidweaver_privacy_message button {	-webkit-transition: color 500ms, background-color 500ms, border-color 500ms;
	        transition: color 500ms, background-color 500ms, border-color 500ms;}/* End of PMBeautifier stack */
	.protected_stacks_in_631{
	-webkit-user-select: none!important;
	 -khtml-user-select: none!important;
	   -moz-user-select: none!important;
	     -o-user-select: none!important;
	        user-select: none!important;    
	}


	#stacks_in_631{
		display: none;	
	}
#toTop{--elevator-image:url(../files/image-619.png);--elevator-size:51px;display:none;text-decoration:none;position:fixed;bottom:10px;right:10px;overflow:hidden;width:var(--elevator-size);height:var(--elevator-size);border:none;text-indent:-9999px;background-image:var(--elevator-image);background-repeat:no-repeat;background-position:left top;z-index:9988}#toTop:active,#toTop:focus{outline:none}#toTop:hover{background-position:left calc(var(--elevator-size) * -1)}


/*This is because the show-for-small class is had coded in the Top Bar JS*/
#stacks_in_462 ul.dropdown .parent-link.show-for-small {
	display:block!important;
}

ul.zone {
	float:left;
}


meta.foundation-mq-topbar {
  font-family:"/only screen and (min-width:1000px)/"!important;
  width:1000px!important;
}
@media only screen and (min-width:1000px) {


	

	.contain-to-grid.matchPadding .top-bar {
		padding-left:0.9375rem;
		padding-right:0.9375rem;
	}

	.menu-align-right.zone-align-left ul.menu,
	.menu-align-left.zone-align-right ul.zone,
	.menu-align-centered.zone-align-right ul.zone,
	.menu-align-right.zone-align-right .top-bar-section {
		float:right;
	}

	.menu-align-centered.full-width .zone,
	.menu-align-centered.full-width .title-area .name {
		display:none!important;
	}
	.top-bar .title-area {
		margin-right:1.1rem;
	}
	.top-bar .title-area.title-area-hide {
		margin-right:0;
	}

	#stacks_in_462 ul.dropdown .parent-link.show-for-small {
		display:none!important;
	}

	.top-bar {overflow: visible; }
	  .top-bar:before, .top-bar:after {
	    content: " ";
	    display: table; }
	  .top-bar:after {
	    clear: both; }
	  .top-bar .toggle-topbar {
	    display: none; }
	  .top-bar .title-area {
	    float: left; }
	  .top-bar .name .site-title a {
	    width: auto; }
	  .top-bar input, .top-bar .button, .top-bar button {
	    font-size: 0.875rem;
	    position: relative;
	    top: 7px; }
	.top-bar-section {
	  transition: none 0 0;
	  left: 0 !important; }
/*
.top-bar-section.align-right {
	  position: absolute;
	  left:auto!important;
	  right:0 !important; }
*/
	.top-bar-section ul {
	    width: auto;
	    height: auto !important;
	    display: inline; }
	    .top-bar-section ul li {
	      float: left; }

	    *[dir="rtl"] .top-bar-section ul li {float:right}

	      .top-bar-section ul li .js-generated {
	        display: none; }
	  .top-bar-section li:not(.has-form) a:not(.button) {
	    padding: 0 15px;
	    line-height: 60px;}
	  .top-bar-section li.active:not(.has-form) a:not(.button) {
	    padding: 0 15px;
	    line-height: 60px;
	    color: white;}
	  .top-bar-section .has-dropdown > a {
	    padding-right: 35px !important; }
	  *[dir="rtl"] .top-bar-section .has-dropdown > a {
	    padding-right: 15px !important;
	    padding-left: 35px !important; }
	    .top-bar-section .has-dropdown > a:after {
	      content: "";
	      display: block;
	      width: 0;
	      height: 0;
	      border: solid 5px;
	      margin-top: -2.5px;
	      top: 22.5px; }
	  .top-bar-section .has-dropdown.moved {
	    position: relative; }
	    .top-bar-section .has-dropdown.moved > .dropdown {
	      display: block;
	      position: absolute !important;
	      height: 1px;
	      width: 1px;
	      overflow: hidden;
	      clip: rect(1px, 1px, 1px, 1px); }
	  .top-bar-section .has-dropdown.hover > .dropdown, .top-bar-section .has-dropdown.not-click:hover > .dropdown {
	    display: block;
	    position: static !important;
	    height: auto;
	    width: auto;
	    overflow: visible;
	    clip: auto;
	    position: absolute !important; }
	  .top-bar-section .has-dropdown .dropdown li.has-dropdown > a:after {
	    border: none;
	    content: "\00bb";
	    top: 1rem;
	    margin-top: -1px;
	    right: 5px;
	    line-height: 1.2; }
	  .top-bar-section .dropdown {
	    left: 0;
	    top: auto;
	    background: transparent;
	    min-width: 100%; }
	   *[dir="rtl"] .top-bar-section .dropdown {
	      left: auto;
	      right:0; }
	    .top-bar-section .dropdown li a {
	      color: white;
	      line-height: 60px;
	      white-space: nowrap;
	      padding: 12px 15px;}
	    .top-bar-section .dropdown li label {
	      white-space: nowrap;}
	    .top-bar-section .dropdown li .dropdown {
	      left: 100%;
	      top: 0; }
	   /* Updated below selector to support Magellan div */
	  .top-bar-section > div > ul > .divider, .top-bar-section > ul > .divider, .top-bar-section > ul > [role="separator"] {
	    border-bottom: none;
	    border-top: none;
	    border-right: solid 1px #4e4e4e;
	    clear: none;
	    height: 60px;
	    width: 0; }
	  .top-bar-section .has-form {
	    padding: 0 15px;
	    height: 60px; }
	  .top-bar-section .right li .dropdown {
	    left: auto;
	    right: 0; }
	    .top-bar-section .right li .dropdown li .dropdown {
	      right: 100%; }
	  .top-bar-section .left li .dropdown {
	    right: auto;
	    left: 0; }
	    .top-bar-section .left li .dropdown li .dropdown {
	      left: 100%; }
	.no-js .top-bar-section .has-dropdown:hover > .dropdown {
	  display: block;
	  position: static !important;
	  height: auto;
	  width: auto;
	  overflow: visible;
	  clip: auto;
	  position: absolute !important; }

	#stacks_in_462 .menu-align-centered ul.menu {
		display:block;
		text-align:center;
		position: absolute;
		top:0;
		left:0;
		width:100%;
	}
	#stacks_in_462 .menu-align-centered ul.menu >li {
		float:none;
		display:inline-block;
		vertical-align:top;
	}
	#stacks_in_462 .menu-align-centered.full-width ul.menu >li {
		float:left;
	}
	#stacks_in_462 .top-bar .name .site-title small{
		display:inline!important;
	}

 
	#stacks_in_462 .top-bar-section > ul > .divider,
	#stacks_in_462 .top-bar-section > ul > [role="separator"] {
		height: 60px;
	}

	#stacks_in_462 .top-bar-section li:not(.has-form) a:not(.button) {
	    padding: 0 15px;
	    line-height: 60px;
	}

	#stacks_in_462 .top-bar-section .has-dropdown > a{
		padding-right: 35px !important;
	}
	#stacks_in_462 .top-bar-section .has-dropdown > a:after {
		top:50%;
	}
	#stacks_in_462 .top-bar-section .has-dropdown .dropdown li a{
    	line-height:60px !important;
		padding:0 15px !important;
	}
	#stacks_in_462 .top-bar-section .has-dropdown .dropdown li.has-dropdown > a:after{
		top: 1rem;
	}
	#stacks_in_462 .top-bar-section .has-dropdown .dropdown label {
		padding: 8px 15px 2px;
	}
	#stacks_in_462 .top-bar-section .has-form {
		padding: 0 15px;
		height: 60px;
	}

}

*[dir="rtl"] .top-bar .toggle-topbar.menu-icon a{padding:0 .9375rem 0 2.5rem;text-indent:0}*[dir="rtl"] .top-bar-section ul li > a{padding:12px 0.9375rem}#stacks_in_462{overflow:visible}#stacks_in_462 [data-magellan-expedition],#stacks_in_462 [data-magellan-expedition-clone]{background:none;padding:0 !important}#stacks_in_462 .contain-to-grid .top-bar{margin:0 auto}#stacks_in_462 .top-bar-wrapper{z-index:1999}#stacks_in_462 .top-bar-wrapper .top-bar-section .dropdown{z-index:1999}#stacks_in_462 .top-bar .site-title small{font-size:60%;display:inline}#stacks_in_462 .top-bar .top-bar-section ul li{background:none !important}#stacks_in_462 .top-bar .top-bar-section ul li > a.button{padding-top:0.35rem;position:relative}#stacks_in_462 a:not(.button){text-decoration:none}#stacks_in_462 .top-bar-section .has-form{background:inherit}#stacks_in_462 .top-bar .fa{vertical-align:middle}#stacks_in_462 .top-bar ul.title-area,#stacks_in_462 .top-bar ul.zone{z-index:2000}#stacks_in_462 .top-bar ul.zone{position:relative}#stacks_in_462 .top-bar .name{display:block;position:relative;padding:0 0.9375rem}#stacks_in_462 .top-bar .name.collapse{padding:0}#stacks_in_462 .top-bar .name a{height:45px;display:inline-block}#stacks_in_462 .top-bar .name span{height:100%}#stacks_in_462 .top-bar .name img{display:inline-block;vertical-align:top;height:100%;width:auto}#stacks_in_462 .top-bar .name .site-title{display:inline-block;color:rgba(255, 255, 255, 1.00);height:45px;padding:0;margin:0;line-height:45px;font-size:1.0625rem}#stacks_in_462 .top-bar .name .site-title small{color:rgba(229, 229, 229, 1.00)}#stacks_in_462 .top-bar,#stacks_in_462 .title-area,#stacks_in_462 a:not(.button){background:transparent}#stacks_in_462 ul:not(.title-area) .dropdown label{color:rgba(255, 255, 255, 0.40)}#stacks_in_462 ul:not(.title-area) li:hover > a:not(.button),#stacks_in_462 ul:not(.title-area) li.has-dropdown > a.hovered:not(.button){background-color:rgba(255, 255, 255, 0.15);color:rgba(255, 255, 255, 1.00)}#stacks_in_462 .top-bar-section .divider,#stacks_in_462 .top-bar-section [role="separator"]{border-color:rgba(255, 255, 255, 0.40)}#stacks_in_462 .top-bar-section .has-dropdown > a:after{border-color:rgba(255, 255, 255, 0.40) transparent transparent transparent}#stacks_in_462 .top-bar.expanded .toggle-topbar a span{box-shadow:none}#stacks_in_462 .top-bar-wrapper:not(.swatch) .site-title{color:rgba(255, 255, 255, 1.00)}#stacks_in_462 .top-bar-wrapper:not(.swatch) .site-title small{color:rgba(229, 229, 229, 1.00)}#stacks_in_462 .top-bar-wrapper:not(.swatch) .back > h5,#stacks_in_462 .top-bar-wrapper:not(.swatch) .back > h5 > a,#stacks_in_462 .top-bar-wrapper:not(.swatch) a:not(.button){color:rgba(255, 255, 255, 1.00)}#stacks_in_462 .top-bar-wrapper:not(.swatch) .top-bar .toggle-topbar.menu-icon a span::after{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);height:1px;background-color:rgba(255, 255, 255, 1.00)}#stacks_in_462 .top-bar-wrapper:not(.swatch) ul:not(.title-area) ul.dropdown{background:rgba(152, 134, 115, 1.00)}#stacks_in_462 .top-bar-wrapper.fixed{top:0px}#stacks_in_462 .top-bar-wrapper.fixed.fixedShadow{box-shadow:rgba(0,0,0,0.40) 0 1px 5px}#stacks_in_462 .top-bar-wrapper.solid{background:rgba(152, 134, 115, 1.00)}#stacks_in_462 .top-bar-wrapper.twotone{background-color:rgba(135, 135, 135, 1.00);background-image:linear-gradient(to bottom,rgba(135, 135, 135, 1.00) 0%,rgba(125, 125, 125, 1.00) 45%,rgba(120, 120, 120, 1.00) 50%,rgba(152, 134, 115, 1.00) 50%,rgba(142, 124, 105, 1.00) 100%)}#stacks_in_462 .top-bar-wrapper.onecolor{background-color:rgba(192, 174, 155, 1.00);background-image:linear-gradient(to bottom,rgba(192, 174, 155, 1.00),rgba(152, 134, 115, 1.00) 85%)}#stacks_in_462 .top-bar-wrapper.twocolor{background-color:rgba(115, 115, 115, 1.00);background-image:linear-gradient(to bottom,rgba(115, 115, 115, 1.00),rgba(152, 134, 115, 1.00) 85%)}#stacks_in_462 .top-bar-wrapper.styleActive li.active > a{background:rgba(51, 51, 51, 1.00);color:rgba(255, 255, 255, 1.00)}#stacks_in_462 .top-bar-wrapper.stickyLogo.sticky .top-bar .title-area li.name{visibility:hidden;opacity:0;transition:visibility 0s linear 0.5s,opacity 0.5s linear}#stacks_in_462 .top-bar-wrapper.stickyLogo.fixed .top-bar .title-area li.name{opacity:1;visibility:visible;transition-delay:0s}#stacks_in_462 .top-bar-wrapper.sticky.sticky-hide{opacity:0;transition:opacity 0.1s ease}#stacks_in_462 .top-bar-wrapper.sticky.sticky-hide.fixed{opacity:1;height:60px;transition:opacity 0.5s ease}#stacks_in_462 .top-bar-wrapper.sticky.sticky-hide.expanded{height:auto}#stacks_in_462 .top-bar-wrapper:not(.submenuIndicator) .top-bar-section .has-dropdown > a{padding-right:15px !important}#stacks_in_462 .top-bar-wrapper:not(.submenuIndicator) .top-bar-section .has-dropdown > a::after{display:none}.f-topbar-fixed{padding-top:60px !important}#stacks_in_462 .expanded:not(.top-bar) .top-bar-section{margin-top:60px}#stacks_in_462 .top-bar{height:60px;line-height:60px}#stacks_in_462 .top-bar.expanded{height:auto;line-height:inherit}#stacks_in_462 .top-bar .name{height:60px;padding:0 15px}#stacks_in_462 .top-bar .name .site-title,#stacks_in_462 .top-bar .name a,#stacks_in_462 .top-bar .name span{height:60px;line-height:60px;font-size:1.50rem}#stacks_in_462 .toggle-topbar a{font-size:1.00rem}#stacks_in_462 .toggle-topbar.menu-icon{right:15px}#stacks_in_462 .top-bar-section ul li > a{padding-left:15px;font-size:1.00rem}#stacks_in_462 .top-bar-section ul li > a.button{font-size:1.00rem;padding-right:15px;padding-left:15px}#stacks_in_462 .top-bar-section .has-form{padding:0 15px}#stacks_in_462 .top-bar-section .dropdown li{font-size:1.00rem}#stacks_in_462 .top-bar-section .dropdown li a{padding:8px 15px}#stacks_in_462 .top-bar-section .dropdown li.has-form{padding:8px 15px}#stacks_in_462 .top-bar-section .dropdown label{padding:8px 15px 2px;font-size:80%}
  #stacks_in_3>.row.max-width-full .row:not(.max-width-custom){margin:0 auto!important}   #stacks_in_3>.row.hide-overflow{overflow:hidden!important}#stacks_in_3>.row.collapse{padding-left:0;padding-right:0}  @media only screen and (min-width:0em){#stacks_in_3>.row.col-pad-custom>.columns{padding-left:10.00%;padding-right:10.00%}}@media only screen and (min-width:0em){#stacks_in_3>.row.col-pad-custom>.columns{padding-top:0.00rem;padding-bottom:0.00rem}}     #stacks_in_3>.row{padding-top:2.00rem;padding-bottom:2.00rem}      @media only screen and (min-width:40.063em){  } 


.lb-master_stacks_in_9.bg-vault.bg-color.style-pro-stacks_in_9{background-color:rgba(0, 0, 0, 0.85)}.lb-master_stacks_in_9.close-vis-never .infix-close{display:none !important}.ll-overlay#ovl_stacks_in_9.bg-color{background-color:rgba(0, 0, 0, 0.85)}@media screen and (max-width:640px){.ll-overlay#ovl_stacks_in_9.small-bg-color{background-color:rgba(0, 0, 0, 0.78)}.ll-overlay#ovl_stacks_in_9.small-bg-color::before{background-color:transparent !important;background-image:none !important}}body > .ll-overlay#ovl_stacks_in_9{position:fixed}.ll-open-stacks_in_9 > .ll-overlay#ovl_stacks_in_9{z-index:9989}.ll-open-stacks_in_9.sectionsPro1 > .ll-overlay#ovl_stacks_in_9{z-index:998}@media screen and (min-width:640px){.lb-master_stacks_in_9.close-vis-small-only .infix-close{display:none !important}}@media screen and (max-width:640px){.lb-master_stacks_in_9.close-vis-large-only .infix-close{display:none !important}}#stacks_in_9 .infix-close.lb-close-master{display:none !important}@media screen and (min-width:640px){#ovl_stacks_in_9.large-hide-overlay{background-color:transparent !important}}@media screen and (min-width:640px){.lb-master_stacks_in_9.infix-section.large-hide-overlay{background-color:transparent !important}}@media screen and (max-width:640px){.lb-master_stacks_in_9.infix-section.sm-hide-borders .infix-content{border-radius:0 !important;border:none !important}}[data-ll-target="obecni_symboly"].sectionsPro1.size-target.lightbox-open.ll-open-stacks_in_9 > .shear-wrapper{position:absolute}[data-ll-target="obecni_symboly"].sectionsPro1 > .shear-wrapper{overflow:hidden}[data-ll-target="obecni_symboly"].sectionsPro1 > .shear-wrapper > .shear-inner{-webkit-transform:scale(1);transform:scale(1);opacity:1;-webkit-transition:opacity 30ms ease,-webkit-transform 300ms ease;transition:opacity 30ms ease,-webkit-transform 300ms ease;transition:transform 300ms ease,opacity 30ms ease;transition:transform 300ms ease,opacity 30ms ease,-webkit-transform 300ms ease}[data-ll-target="obecni_symboly"].sectionsPro1 > .content-wrap{overflow:hidden}[data-ll-target="obecni_symboly"].sectionsPro1 > .content-wrap > .core-content{-webkit-transform:scale(1);transform:scale(1);opacity:1;-webkit-transition:opacity 30ms ease,-webkit-transform 300ms ease;transition:opacity 30ms ease,-webkit-transform 300ms ease;transition:transform 300ms ease,opacity 30ms ease;transition:transform 300ms ease,opacity 30ms ease,-webkit-transform 300ms ease}[data-ll-target="obecni_symboly"].sectionsPro1.lightbox-open > .shear-wrapper > .shear-inner{-webkit-transform:scale(1.15);transform:scale(1.15);opacity:0;-webkit-transition:opacity 300ms ease,-webkit-transform 300ms ease;transition:opacity 300ms ease,-webkit-transform 300ms ease;transition:transform 300ms ease,opacity 300ms ease;transition:transform 300ms ease,opacity 300ms ease,-webkit-transform 300ms ease}[data-ll-target="obecni_symboly"].sectionsPro1.lightbox-open > .content-wrap > .core-content{-webkit-transform:scale(1.15);transform:scale(1.15);opacity:0;-webkit-transition:opacity 300ms ease,-webkit-transform 300ms ease;transition:opacity 300ms ease,-webkit-transform 300ms ease;transition:transform 300ms ease,opacity 300ms ease;transition:transform 300ms ease,opacity 300ms ease,-webkit-transform 300ms ease}.lb-master_stacks_in_9.maxw-frame:not(.infix-image):not(.custom-size) .infix-container{width:90%}@media screen and (max-width:640px){.lb-master_stacks_in_9.maxw-frame:not(.infix-image):not(.custom-size) .infix-container{width:90%}}.lb-master_stacks_in_9.maxw-frame.infix-image:not(.custom-size) .infix-container > .infix-content{margin:0 auto;width:90%}@media screen and (max-width:640px){.lb-master_stacks_in_9.maxw-frame.infix-image:not(.custom-size) .infix-container > .infix-content{width:90%}}.lb-master_stacks_in_9.maxw-frame:not(.custom-size) .infix-container{max-width:1400px}@media screen and (max-width:640px){.lb-master_stacks_in_9.maxw-frame:not(.custom-size) .infix-container{max-width:1400px}}.lb-master_stacks_in_9.prop-height.infix-body:not(.vid-letterbox):not(.infix-image) .infix-iframe-container{padding-top:60vh}@media screen and (min-width:640px){.lb-master_stacks_in_9.prop-height.infix-body:not(.vid-letterbox):not(.infix-image) .infix-iframe-container{padding-top:60vh}}.lb-master_stacks_in_9.prop-height.infix-body:not(.vid-letterbox):not(.infix-image).infix-inline .infix-container,.lb-master_stacks_in_9.prop-height.infix-body:not(.vid-letterbox):not(.infix-image).infix-inline .infix-content,.lb-master_stacks_in_9.prop-height.infix-body:not(.vid-letterbox):not(.infix-image).infix-inline .splb{height:60vh !important;max-height:60vh !important}@media screen and (min-width:640px){.lb-master_stacks_in_9.prop-height.infix-body:not(.vid-letterbox):not(.infix-image).infix-inline .infix-container,.lb-master_stacks_in_9.prop-height.infix-body:not(.vid-letterbox):not(.infix-image).infix-inline .infix-content,.lb-master_stacks_in_9.prop-height.infix-body:not(.vid-letterbox):not(.infix-image).infix-inline .splb{height:60vh !important;max-height:60vh !important}}.lb-master_stacks_in_9.prop-height.infix-section:not(.vid-letterbox):not(.infix-image) .infix-container{top:calc((100% - 60%) / 2) !important;height:60% !important}@media screen and (min-width:640px){.lb-master_stacks_in_9.prop-height.infix-section:not(.vid-letterbox):not(.infix-image) .infix-container{top:calc((100% - 60%) / 2) !important;height:60% !important}}.lb-master_stacks_in_9.prop-height.infix-section:not(.vid-letterbox):not(.infix-image).infix-inline .infix-container{height:60% !important;max-height:60% !important}@media screen and (min-width:640px){.lb-master_stacks_in_9.prop-height.infix-section:not(.vid-letterbox):not(.infix-image).infix-inline .infix-container{height:60% !important;max-height:60% !important}}.lb-master_stacks_in_9.prop-height.infix-section:not(.vid-letterbox):not(.infix-image).infix-inline .infix-content,.lb-master_stacks_in_9.prop-height.infix-section:not(.vid-letterbox):not(.infix-image).infix-inline .splb{height:100% !important;max-height:100% !important}.lb-master_stacks_in_9.infix-iframe.infix-section .infix-container,.lb-master_stacks_in_9.infix-iframe.infix-section .infix-content,.lb-master_stacks_in_9.infix-iframe.infix-section .infix-iframe-container{position:static;top:0;left:0;height:100%;width:100%}.lb-master_stacks_in_9.infix-iframe.infix-section.size-float .infix-iframe-container{padding-top:0}.lb-master_stacks_in_9 .infix-content::after{-webkit-box-shadow:0 0 36px 0px rgba(0, 0, 0, 0.30);box-shadow:0 0 36px 0px rgba(0, 0, 0, 0.30)}.lb-master_stacks_in_9 .infix-close{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-line-pack:center;align-content:center;z-index:9999;padding:8px;border-radius:0% 0% 0% 0%;background:rgba(0, 0, 0, 0.00)}html.bwd-touch .lb-master_stacks_in_9 .infix-close{opacity:1 !important}.lb-master_stacks_in_9 .infix-close > .close-wrap{position:relative;width:40px;height:40px;opacity:0.94}.lb-master_stacks_in_9 .infix-close > .close-wrap:hover,html.bwd-touch .lb-master_stacks_in_9 .infix-close > .close-wrap{opacity:1 !important}.lb-master_stacks_in_9 .infix-close > .close-wrap.close-text-only{width:auto;height:auto;color:rgba(255, 255, 255, 0.96);font-size:12px;line-height:1}.lb-master_stacks_in_9 .infix-close > .close-wrap.close-text-only .text-border{padding:8px;border:1px solid rgba(255, 255, 255, 0.00);border-radius:8px;background-color:rgba(255, 255, 255, 0.00);text-align:center}.lb-master_stacks_in_9 .infix-close > .close-wrap > svg{width:40px;height:40px;-webkit-transform-origin:50% 50%;transform-origin:50% 50%}.lb-master_stacks_in_9 .infix-close > .close-wrap > svg circle.bg{fill:rgba(255, 255, 255, 0.00)}.lb-master_stacks_in_9 .infix-close > .close-wrap > svg .ring{stroke:rgba(255, 255, 255, 0.00);stroke-width:4px}.lb-master_stacks_in_9 .infix-close > .close-wrap > svg .action-icon path{stroke:rgba(255, 255, 255, 0.96);stroke-width:4px;fill:none}.lb-master_stacks_in_9 .infix-close > .close-wrap > svg .ring,.lb-master_stacks_in_9 .infix-close > .close-wrap > svg .action-icon path{-webkit-transition:stroke 200ms ease-out;transition:stroke 200ms ease-out}.lb-master_stacks_in_9 .infix-close > .close-wrap > svg circle.bg{-webkit-transition:fill 220ms ease-out;transition:fill 220ms ease-out}.lb-master_stacks_in_9 .infix-close:hover,html.bwd-touch .lb-master_stacks_in_9 .infix-close{background:rgba(0, 0, 0, 0.00)}.lb-master_stacks_in_9 .infix-close:hover > .close-wrap > svg circle.bg,html.bwd-touch .lb-master_stacks_in_9 .infix-close > .close-wrap > svg circle.bg{fill:rgba(255, 255, 255, 0.00)}.lb-master_stacks_in_9 .infix-close:hover > .close-wrap > svg .ring,html.bwd-touch .lb-master_stacks_in_9 .infix-close > .close-wrap > svg .ring{stroke:rgba(255, 255, 255, 1.00)}.lb-master_stacks_in_9 .infix-close:hover > .close-wrap > svg .action-icon path,html.bwd-touch .lb-master_stacks_in_9 .infix-close > .close-wrap > svg .action-icon path{stroke:rgba(255, 255, 255, 1.00);fill:none}.lb-master_stacks_in_9 .infix-close:hover > .close-wrap.close-text-only,html.bwd-touch .lb-master_stacks_in_9 .infix-close > .close-wrap.close-text-only{color:rgba(255, 255, 255, 1.00)}.lb-master_stacks_in_9 .infix-close i.fa,.lb-master_stacks_in_9 .infix-close svg,.lb-master_stacks_in_9 .infix-close .simple-icon,.lb-master_stacks_in_9 .infix-close .close-wrap,.lb-master_stacks_in_9 .infix-close .text-border{pointer-events:none}@media screen and (min-width:640px){.lb-master_stacks_in_9 .infix-close .close-wrap,.lb-master_stacks_in_9 .infix-close .close-wrap > svg{width:40px;height:40px}.lb-master_stacks_in_9 .infix-close .close-wrap.close-text-only{font-size:16px}}.lb-master_stacks_in_9 .infix-close .action-icon > g{display:none}.lb-master_stacks_in_9 .infix-close.close-cross .action-icon > g#cross{display:block}.lb-master_stacks_in_9 .infix-close.close-small-cross .action-icon > g#smallcross{display:block}.lb-master_stacks_in_9 .infix-close.close-left-arrow .action-icon > g#arrow{display:block}.lb-master_stacks_in_9 .infix-close.close-hamburger .action-icon > g#burger{display:block}@media screen and (min-width:640px){.lb-master_stacks_in_9.close-bg-small-only .infix-close{background:none}}.lb-master_stacks_in_9 .splb-loader > .loader-message{position:absolute;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);display:block;margin-top:100px;padding:16px;border-radius:6px;background:rgba(76, 106, 140, 0.80);color:rgba(255, 255, 255, 1.00);font-size:30px}.lb-master_stacks_in_9 .splb-loader{position:absolute;width:100px;left:50%;top:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%)}.lb-master_stacks_in_9 .splb-loader:before{content:'';display:block;padding-top:100%}.lb-master_stacks_in_9 .splb-loader .circular{-webkit-animation:sb-rotate 1.6s linear infinite;animation:sb-rotate 1.6s linear infinite;height:100%;-webkit-transform-origin:center center;transform-origin:center center;width:100%;position:absolute;top:0;bottom:0;left:0;right:0;margin:auto}.lb-master_stacks_in_9 .splb-loader .path{stroke-dasharray:1,200;stroke-dashoffset:0;stroke-width:4px;-webkit-animation:sb-dash 1.5s ease-in-out infinite,sb-color 1s ease-in-out infinite;animation:sb-dash 1.5s ease-in-out infinite,sb-color 1s ease-in-out infinite;stroke-linecap:round}@-webkit-keyframes sb-rotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes sb-rotate{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes sb-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}100%{stroke-dasharray:89,200;stroke-dashoffset:-124px}}@keyframes sb-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}100%{stroke-dasharray:89,200;stroke-dashoffset:-124px}}@-webkit-keyframes sb-color{100%,0%{stroke:rgba(214, 45, 32, 1.00)}40%{stroke:rgba(0, 87, 231, 1.00)}66%{stroke:rgba(0, 135, 68, 1.00)}80%,90%{stroke:rgba(255, 167, 0, 1.00)}}@keyframes sb-color{100%,0%{stroke:rgba(214, 45, 32, 1.00)}40%{stroke:rgba(0, 87, 231, 1.00)}66%{stroke:rgba(0, 135, 68, 1.00)}80%,90%{stroke:rgba(255, 167, 0, 1.00)}}
.infix-image .infix-content.bg-vault.bg-color.style-pro-stacks_in_10{background-color:rgba(255, 255, 255, 0.00)}#splb_stacks_in_10.lb-master_stacks_in_9 .infix-content{padding:0px}.ll-link-ovl{display:none}#stacks_in_10{display:none}.infix-opened #stacks_in_10,.infix-closed #stacks_in_10{display:block}.ll-link-ovl{position:absolute;top:0;left:0;width:100%;height:100%;z-index:9998}#splb_stacks_in_10 a.ll-link-ovl{cursor:alias}.obecni_symbol_1{cursor:pointer}#splb_stacks_in_10 .infix-container::after{position:relative;display:inline-block;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:100%;text-align:center;content:"Pečeť 1723";z-index:9999;bottom:0px;padding:4px 8px 4px 8px;border-radius:0px 0px 0px 0px;color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 0, 0, 0.00);font-size:14.00px}@media screen and (min-width:640px){#splb_stacks_in_10 .infix-container::after{font-size:16.00px}}#splb_stacks_in_10.infix-section .infix-container::after{position:absolute}#splb_stacks_in_10.infix-section .infix-img{padding-bottom:calc((14.00px + 4px) * 1.9)}@media screen and (min-width:640px){#splb_stacks_in_10.infix-section .infix-img{padding-bottom:calc((16.00px + 4px) * 1.9)}}#splb_stacks_in_10.infix-section .infix-content::after{bottom:calc((14.00px + 4px) * 1.9)}@media screen and (min-width:640px){#splb_stacks_in_10.infix-section .infix-content::after{bottom:calc((16.00px + 4px) * 1.9)}}
.infix-image .infix-content.bg-vault.bg-color.style-pro-stacks_in_11{background-color:rgba(255, 255, 255, 0.00)}#splb_stacks_in_11.lb-master_stacks_in_9 .infix-content{padding:0px}.ll-link-ovl{display:none}#stacks_in_11{display:none}.infix-opened #stacks_in_11,.infix-closed #stacks_in_11{display:block}.ll-link-ovl{position:absolute;top:0;left:0;width:100%;height:100%;z-index:9998}#splb_stacks_in_11 a.ll-link-ovl{cursor:alias}.obecni_symbol_2{cursor:pointer}#splb_stacks_in_11 .infix-container::after{position:relative;display:inline-block;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:100%;text-align:center;content:"Pečeť 1776";z-index:9999;bottom:0px;padding:4px 8px 4px 8px;border-radius:0px 0px 0px 0px;color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 0, 0, 0.00);font-size:14.00px}@media screen and (min-width:640px){#splb_stacks_in_11 .infix-container::after{font-size:16.00px}}#splb_stacks_in_11.infix-section .infix-container::after{position:absolute}#splb_stacks_in_11.infix-section .infix-img{padding-bottom:calc((14.00px + 4px) * 1.9)}@media screen and (min-width:640px){#splb_stacks_in_11.infix-section .infix-img{padding-bottom:calc((16.00px + 4px) * 1.9)}}#splb_stacks_in_11.infix-section .infix-content::after{bottom:calc((14.00px + 4px) * 1.9)}@media screen and (min-width:640px){#splb_stacks_in_11.infix-section .infix-content::after{bottom:calc((16.00px + 4px) * 1.9)}}
.infix-image .infix-content.bg-vault.bg-color.style-pro-stacks_in_12{background-color:rgba(255, 255, 255, 0.00)}#splb_stacks_in_12.lb-master_stacks_in_9 .infix-content{padding:0px}.ll-link-ovl{display:none}#stacks_in_12{display:none}.infix-opened #stacks_in_12,.infix-closed #stacks_in_12{display:block}.ll-link-ovl{position:absolute;top:0;left:0;width:100%;height:100%;z-index:9998}#splb_stacks_in_12 a.ll-link-ovl{cursor:alias}.obecni_symbol_3{cursor:pointer}#splb_stacks_in_12 .infix-container::after{position:relative;display:inline-block;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:100%;text-align:center;content:"Znak 1909";z-index:9999;bottom:0px;padding:4px 8px 4px 8px;border-radius:0px 0px 0px 0px;color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 0, 0, 0.00);font-size:14.00px}@media screen and (min-width:640px){#splb_stacks_in_12 .infix-container::after{font-size:16.00px}}#splb_stacks_in_12.infix-section .infix-container::after{position:absolute}#splb_stacks_in_12.infix-section .infix-img{padding-bottom:calc((14.00px + 4px) * 1.9)}@media screen and (min-width:640px){#splb_stacks_in_12.infix-section .infix-img{padding-bottom:calc((16.00px + 4px) * 1.9)}}#splb_stacks_in_12.infix-section .infix-content::after{bottom:calc((14.00px + 4px) * 1.9)}@media screen and (min-width:640px){#splb_stacks_in_12.infix-section .infix-content::after{bottom:calc((16.00px + 4px) * 1.9)}}
.infix-image .infix-content.bg-vault.bg-color.style-pro-stacks_in_13{background-color:rgba(255, 255, 255, 0.00)}#splb_stacks_in_13.lb-master_stacks_in_9 .infix-content{padding:0px}.ll-link-ovl{display:none}#stacks_in_13{display:none}.infix-opened #stacks_in_13,.infix-closed #stacks_in_13{display:block}.ll-link-ovl{position:absolute;top:0;left:0;width:100%;height:100%;z-index:9998}#splb_stacks_in_13 a.ll-link-ovl{cursor:alias}.obecni_symbol_4{cursor:pointer}#splb_stacks_in_13 .infix-container::after{position:relative;display:inline-block;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:100%;text-align:center;content:"Znak 1909 (variace)";z-index:9999;bottom:0px;padding:4px 8px 4px 8px;border-radius:0px 0px 0px 0px;color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 0, 0, 0.00);font-size:14.00px}@media screen and (min-width:640px){#splb_stacks_in_13 .infix-container::after{font-size:16.00px}}#splb_stacks_in_13.infix-section .infix-container::after{position:absolute}#splb_stacks_in_13.infix-section .infix-img{padding-bottom:calc((14.00px + 4px) * 1.9)}@media screen and (min-width:640px){#splb_stacks_in_13.infix-section .infix-img{padding-bottom:calc((16.00px + 4px) * 1.9)}}#splb_stacks_in_13.infix-section .infix-content::after{bottom:calc((14.00px + 4px) * 1.9)}@media screen and (min-width:640px){#splb_stacks_in_13.infix-section .infix-content::after{bottom:calc((16.00px + 4px) * 1.9)}}
.infix-image .infix-content.bg-vault.bg-color.style-pro-stacks_in_14{background-color:rgba(255, 255, 255, 0.00)}#splb_stacks_in_14.lb-master_stacks_in_9 .infix-content{padding:0px}.ll-link-ovl{display:none}#stacks_in_14{display:none}.infix-opened #stacks_in_14,.infix-closed #stacks_in_14{display:block}.ll-link-ovl{position:absolute;top:0;left:0;width:100%;height:100%;z-index:9998}#splb_stacks_in_14 a.ll-link-ovl{cursor:alias}.obecni_symbol_5{cursor:pointer}#splb_stacks_in_14 .infix-container::after{position:relative;display:inline-block;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:100%;text-align:center;content:"Znak 1909 (variace)";z-index:9999;bottom:0px;padding:4px 8px 4px 8px;border-radius:0px 0px 0px 0px;color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 0, 0, 0.00);font-size:14.00px}@media screen and (min-width:640px){#splb_stacks_in_14 .infix-container::after{font-size:16.00px}}#splb_stacks_in_14.infix-section .infix-container::after{position:absolute}#splb_stacks_in_14.infix-section .infix-img{padding-bottom:calc((14.00px + 4px) * 1.9)}@media screen and (min-width:640px){#splb_stacks_in_14.infix-section .infix-img{padding-bottom:calc((16.00px + 4px) * 1.9)}}#splb_stacks_in_14.infix-section .infix-content::after{bottom:calc((14.00px + 4px) * 1.9)}@media screen and (min-width:640px){#splb_stacks_in_14.infix-section .infix-content::after{bottom:calc((16.00px + 4px) * 1.9)}}
.infix-image .infix-content.bg-vault.bg-color.style-pro-stacks_in_15{background-color:rgba(255, 255, 255, 0.00)}#splb_stacks_in_15.lb-master_stacks_in_9 .infix-content{padding:0px}.ll-link-ovl{display:none}#stacks_in_15{display:none}.infix-opened #stacks_in_15,.infix-closed #stacks_in_15{display:block}.ll-link-ovl{position:absolute;top:0;left:0;width:100%;height:100%;z-index:9998}#splb_stacks_in_15 a.ll-link-ovl{cursor:alias}.obecni_symbol_6{cursor:pointer}#splb_stacks_in_15 .infix-container::after{position:relative;display:inline-block;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:100%;text-align:center;content:"Znak 1909 (variace)";z-index:9999;bottom:0px;padding:4px 8px 4px 8px;border-radius:0px 0px 0px 0px;color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 0, 0, 0.00);font-size:14.00px}@media screen and (min-width:640px){#splb_stacks_in_15 .infix-container::after{font-size:16.00px}}#splb_stacks_in_15.infix-section .infix-container::after{position:absolute}#splb_stacks_in_15.infix-section .infix-img{padding-bottom:calc((14.00px + 4px) * 1.9)}@media screen and (min-width:640px){#splb_stacks_in_15.infix-section .infix-img{padding-bottom:calc((16.00px + 4px) * 1.9)}}#splb_stacks_in_15.infix-section .infix-content::after{bottom:calc((14.00px + 4px) * 1.9)}@media screen and (min-width:640px){#splb_stacks_in_15.infix-section .infix-content::after{bottom:calc((16.00px + 4px) * 1.9)}}
.infix-image .infix-content.bg-vault.bg-color.style-pro-stacks_in_16{background-color:rgba(255, 255, 255, 0.00)}#splb_stacks_in_16.lb-master_stacks_in_9 .infix-content{padding:0px}.ll-link-ovl{display:none}#stacks_in_16{display:none}.infix-opened #stacks_in_16,.infix-closed #stacks_in_16{display:block}.ll-link-ovl{position:absolute;top:0;left:0;width:100%;height:100%;z-index:9998}#splb_stacks_in_16 a.ll-link-ovl{cursor:alias}.obecni_symbol_7{cursor:pointer}#splb_stacks_in_16 .infix-container::after{position:relative;display:inline-block;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:100%;text-align:center;content:"Pečeť 1940";z-index:9999;bottom:0px;padding:4px 8px 4px 8px;border-radius:0px 0px 0px 0px;color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 0, 0, 0.00);font-size:14.00px}@media screen and (min-width:640px){#splb_stacks_in_16 .infix-container::after{font-size:16.00px}}#splb_stacks_in_16.infix-section .infix-container::after{position:absolute}#splb_stacks_in_16.infix-section .infix-img{padding-bottom:calc((14.00px + 4px) * 1.9)}@media screen and (min-width:640px){#splb_stacks_in_16.infix-section .infix-img{padding-bottom:calc((16.00px + 4px) * 1.9)}}#splb_stacks_in_16.infix-section .infix-content::after{bottom:calc((14.00px + 4px) * 1.9)}@media screen and (min-width:640px){#splb_stacks_in_16.infix-section .infix-content::after{bottom:calc((16.00px + 4px) * 1.9)}}
.infix-image .infix-content.bg-vault.bg-color.style-pro-stacks_in_17{background-color:rgba(255, 255, 255, 0.00)}#splb_stacks_in_17.lb-master_stacks_in_9 .infix-content{padding:0px}.ll-link-ovl{display:none}#stacks_in_17{display:none}.infix-opened #stacks_in_17,.infix-closed #stacks_in_17{display:block}.ll-link-ovl{position:absolute;top:0;left:0;width:100%;height:100%;z-index:9998}#splb_stacks_in_17 a.ll-link-ovl{cursor:alias}.obecni_symbol_8{cursor:pointer}#splb_stacks_in_17 .infix-container::after{position:relative;display:inline-block;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:100%;text-align:center;content:"Znak 1940";z-index:9999;bottom:0px;padding:4px 8px 4px 8px;border-radius:0px 0px 0px 0px;color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 0, 0, 0.00);font-size:14.00px}@media screen and (min-width:640px){#splb_stacks_in_17 .infix-container::after{font-size:16.00px}}#splb_stacks_in_17.infix-section .infix-container::after{position:absolute}#splb_stacks_in_17.infix-section .infix-img{padding-bottom:calc((14.00px + 4px) * 1.9)}@media screen and (min-width:640px){#splb_stacks_in_17.infix-section .infix-img{padding-bottom:calc((16.00px + 4px) * 1.9)}}#splb_stacks_in_17.infix-section .infix-content::after{bottom:calc((14.00px + 4px) * 1.9)}@media screen and (min-width:640px){#splb_stacks_in_17.infix-section .infix-content::after{bottom:calc((16.00px + 4px) * 1.9)}}
.infix-image .infix-content.bg-vault.bg-color.style-pro-stacks_in_18{background-color:rgba(255, 255, 255, 0.00)}#splb_stacks_in_18.lb-master_stacks_in_9 .infix-content{padding:0px}.ll-link-ovl{display:none}#stacks_in_18{display:none}.infix-opened #stacks_in_18,.infix-closed #stacks_in_18{display:block}.ll-link-ovl{position:absolute;top:0;left:0;width:100%;height:100%;z-index:9998}#splb_stacks_in_18 a.ll-link-ovl{cursor:alias}.obecni_symbol_9{cursor:pointer}#splb_stacks_in_18 .infix-container::after{position:relative;display:inline-block;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);width:100%;text-align:center;content:"Znak 1940 (variace)";z-index:9999;bottom:0px;padding:4px 8px 4px 8px;border-radius:0px 0px 0px 0px;color:rgba(255, 255, 255, 1.00);background-color:rgba(0, 0, 0, 0.00);font-size:14.00px}@media screen and (min-width:640px){#splb_stacks_in_18 .infix-container::after{font-size:16.00px}}#splb_stacks_in_18.infix-section .infix-container::after{position:absolute}#splb_stacks_in_18.infix-section .infix-img{padding-bottom:calc((14.00px + 4px) * 1.9)}@media screen and (min-width:640px){#splb_stacks_in_18.infix-section .infix-img{padding-bottom:calc((16.00px + 4px) * 1.9)}}#splb_stacks_in_18.infix-section .infix-content::after{bottom:calc((14.00px + 4px) * 1.9)}@media screen and (min-width:640px){#splb_stacks_in_18.infix-section .infix-content::after{bottom:calc((16.00px + 4px) * 1.9)}}
.style-pro-stacks_in_9::before{position:absolute;top:0;bottom:0;left:0;right:0;content:"";z-index:-1}.style-pro-stacks_in_9:not(.bg-vault):not(.bg-featured)::before{background-color:rgba(126, 167, 227, 1.00)}

#ovl_stacks_in_9.ll-overlay {
  z-index: -99;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: opacity 600ms ease, z-index 0ms 600ms, visibility 0ms 600ms ease; }

.ll-open-stacks_in_9 > #ovl_stacks_in_9.ll-overlay {
  transition: opacity 300ms ease;
  opacity: 1;
  visibility: visible; }

.lb-master_stacks_in_9, .lb-master_stacks_in_9.infix-closed {
  opacity: 0;
  visibility: hidden; }

.lb-master_stacks_in_9.infix-opened {
  opacity: 1;
  visibility: visible; }

.lb-master_stacks_in_9 [data-infix-close]:not(.infix-wrap), .lb-master_stacks_in_9.infix-closed [data-infix-close]:not(.infix-wrap) {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  transition: opacity 40ms cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0ms 100ms cubic-bezier(0.25, 0.46, 0.45, 0.94) transform 40ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.lb-master_stacks_in_9.infix-opened [data-infix-close]:not(.infix-wrap) {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition: opacity 200ms 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0ms, transform 200ms 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.lb-master_stacks_in_9.close-on-hover.infix-opened [data-infix-close]:not(.infix-wrap) {
  opacity: 0;
  transition: all 200ms ease-out; }

.lb-master_stacks_in_9.close-on-hover.infix-opened:hover [data-infix-close]:not(.infix-wrap) {
  opacity: 1; }

.lb-master_stacks_in_9.infix-closed .infix-container::after, .lb-master_stacks_in_9.infix-loading .infix-container::after {
  opacity: 0;
  transition: opacity 80ms cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s 680ms; }

.lb-master_stacks_in_9.infix-opened .infix-container::after {
  opacity: 1;
  transition: opacity 80ms 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s; }

.lb-master_stacks_in_9, .lb-master_stacks_in_9.infix-closed {
  transition: opacity 120ms cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.lb-master_stacks_in_9.infix-opened {
  transition: opacity 120ms cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s 0s; }

.lb-master_stacks_in_9.infix-loading .infix-content, .lb-master_stacks_in_9.infix-closed .infix-content {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.lb-master_stacks_in_9.infix-opened .infix-content {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  transition: opacity 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.lb-master_stacks_in_9.infix.hide-nav .infix-nav {
  display: none; }

.lb-master_stacks_in_9.infix.no-loop.ll-first [data-infix-prev] {
  display: none; }

.lb-master_stacks_in_9.infix.no-loop.ll-last [data-infix-next] {
  display: none; }

.lb-master_stacks_in_9 [data-infix-next], .lb-master_stacks_in_9 [data-infix-prev] {
  position: absolute;
  z-index: 9999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: calc(50% + 25px);
  margin-top: -25px;
  border: 2px solid rgba(255, 255, 255, 0.00);
  opacity: 1;
  background: rgba(255, 255, 255, 0.00);
  transition: opacity 200ms ease-out, background 200ms ease-out, transform 0.8s cubic-bezier(0, 1.01, 0.22, 1), border 0.3s ease-out; }

.lb-master_stacks_in_9 html:not(.bwd-touch) [data-infix-next], .lb-master_stacks_in_9 html:not(.bwd-touch) [data-infix-prev] {
  opacity: 0; }

.lb-master_stacks_in_9 html:not(.bwd-touch) [data-infix-next] {
  transform: translate(-15px, -50%) scale(0.6); }

.lb-master_stacks_in_9 html:not(.bwd-touch) [data-infix-prev] {
  transform: translate(15px, -50%) scale(0.6); }

.lb-master_stacks_in_9 html.infix:not(.bwd-touch):hover [data-infix-next], .lb-master_stacks_in_9 html.infix:not(.bwd-touch):hover [data-infix-prev] {
  transform: translate(0, -50%) rotate(0deg) scale(1);
  opacity: 1; }

.lb-master_stacks_in_9 [data-infix-next] {
  right: 15px; }

.lb-master_stacks_in_9 [data-infix-prev] {
  left: 15px; }

.lb-master_stacks_in_9 [data-infix-next]::before,
.lb-master_stacks_in_9 [data-infix-next]::after,
.lb-master_stacks_in_9 [data-infix-prev]::before,
.lb-master_stacks_in_9 [data-infix-prev]::after {
  background: rgba(255, 255, 255, 0.96);
  top: 50%;
  left: 0;
  width: 2px;
  height: 17px;
  content: '';
  position: absolute;
  margin: -14px 23px; }

.lb-master_stacks_in_9 html.bwd-touch [data-infix-next], .lb-master_stacks_in_9 [data-infix-next]:hover,
.lb-master_stacks_in_9 html.bwd-touch [data-infix-prev], .lb-master_stacks_in_9 [data-infix-prev]:hover {
  border: 2px solid rgba(255, 255, 255, 1.00);
  background: rgba(255, 255, 255, 0.00); }
  .lb-master_stacks_in_9 html.bwd-touch [data-infix-next]::before, .lb-master_stacks_in_9 html.bwd-touch [data-infix-next]::after, .lb-master_stacks_in_9 [data-infix-next]:hover::before, .lb-master_stacks_in_9 [data-infix-next]:hover::after,
  .lb-master_stacks_in_9 html.bwd-touch [data-infix-prev]::before,
  .lb-master_stacks_in_9 html.bwd-touch [data-infix-prev]::after, .lb-master_stacks_in_9 [data-infix-prev]:hover::before, .lb-master_stacks_in_9 [data-infix-prev]:hover::after {
    background: rgba(255, 255, 255, 1.00); }

.lb-master_stacks_in_9 [data-infix-next]::after,
.lb-master_stacks_in_9 [data-infix-prev]::after {
  margin-top: -3px; }

.lb-master_stacks_in_9 [data-infix-prev]::after, .lb-master_stacks_in_9 [data-infix-prev]::before {
  left: -3px; }

.lb-master_stacks_in_9 [data-infix-next]::after {
  transform: rotate(45deg); }

.lb-master_stacks_in_9 [data-infix-next]::before {
  transform: rotate(-45deg); }

.lb-master_stacks_in_9 [data-infix-prev]::after {
  transform: rotate(315deg); }

.lb-master_stacks_in_9 [data-infix-prev]::before {
  transform: rotate(-315deg); }
/* @group Basics */

#switcherstacks_in_24,
#switcherstacks_in_24 * {
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box; 
    box-sizing: border-box;
}

#switcherstacks_in_24 {
	display: none;
}

/* Reset for lists within Switcher */

#switcherstacks_in_24 ul ul {
	list-style-type: disc;
}

/* @end */

/* @group Accordion */

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

ul#accordionInterfacestacks_in_24>li {
	padding: 0;
	margin: 0;
	list-style: none;
}

/* Static accordion */

#accordionInterfacestacks_in_24 .accordion-toggle,
#mydiv .accordion-toggle {
	margin-top: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
	cursor: pointer;
	background: rgba(230, 230, 230, 1.00);
	line-height: 45px;
	display: block;
	font-size: 18px;
	text-decoration: none;
	border-radius: 0px 0px 0px 0px;
	text-align: left;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	padding-right: 10px;
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	transition: all 500ms ease-in-out;
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	color: rgba(102, 102, 102, 1.00);
	position: relative;
	z-index: 10;
	outline: none;
}

#accordionInterfacestacks_in_24 .accordion-toggle [class^="fa fa-"],
#mydiv .accordion-toggle [class^="fa fa-"],
#accordionInterfacestacks_in_24 .accordion-toggle i,
#mydiv .accordion-toggle i {
	font-size: 18px;
	color: rgba(255, 255, 255, 1.00);
	width: 25px;
	transition: all 500ms ease-in-out;
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	display: inline-block;
	text-align: center;
	overflow: hidden;
	line-height: 1;
	vertical-align: middle;
}

/* Hovered accordion */

#accordionInterfacestacks_in_24 .accordion-toggle:hover,
#mydiv .accordion-toggle:hover {
	background: rgba(153, 153, 153, 1.00);
	color: rgba(255, 255, 255, 1.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-radius: 0px 0px 0px 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	padding-right: 10px;
	
	margin-top: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
}

#accordionInterfacestacks_in_24 .accordion-toggle:hover [class^="fa fa-"],
#mydiv .accordion-toggle:hover [class^="fa fa-"],
#accordionInterfacestacks_in_24 .accordion-toggle:hover i,
#mydiv .accordion-toggle:hover i {
	color: rgba(255, 255, 255, 1.00);
}

/* Clicked accordion */

#accordionInterfacestacks_in_24 .accordion-toggle:active,
#mydiv .accordion-toggle:active {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(153, 153, 153, 1.00);
}

#accordionInterfacestacks_in_24 .accordion-toggle:active [class^="fa fa-"],
#mydiv .accordion-toggle:active [class^="fa fa-"],
#accordionInterfacestacks_in_24 .accordion-toggle:active i,
#mydiv .accordion-toggle:active i {
	color: rgba(255, 255, 255, 1.00);
}

/* Active accordion */

#accordionInterfacestacks_in_24 .accordion-toggle.ui-state-active,
#mydiv .accordion-toggle.ui-state-active {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(152, 134, 115, 1.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-radius: 0px 0px 0px 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	padding-right: 10px;
	
	margin-top: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
}

#accordionInterfacestacks_in_24 .accordion-toggle.ui-state-active [class^="fa fa-"],
#mydiv .accordion-toggle.ui-state-active [class^="fa fa-"],
#accordionInterfacestacks_in_24 .accordion-toggle.ui-state-active i,
#mydiv .accordion-toggle.ui-state-active i {
	color: rgba(255, 255, 255, 1.00);
}

/* @group Open and closed floating icons */

#accordionInterfacestacks_in_24 .accordion-toggle .closedIcon,
#mydiv .accordion-toggle .closedIcon {
	float: right;
	display: inline;
}

#accordionInterfacestacks_in_24 .accordion-toggle .openedIcon,
#mydiv .accordion-toggle .openedIcon {
	float: right;
	display: none;
}

#accordionInterfacestacks_in_24 .accordion-toggle.ui-state-active .closedIcon,
#mydiv .accordion-toggle.ui-state-active .closedIcon {
	display: none;
}

#accordionInterfacestacks_in_24 .accordion-toggle.ui-state-active .openedIcon,
#mydiv .accordion-toggle.ui-state-active .openedIcon {
	display: inline;
}

/* @end */

/* @end */

/* @group Tabs */

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

ul#tabbedInterfacestacks_in_24>li {
	padding: 0;
	margin: 0;
	list-style: none;
}

ul#switcherTabsstacks_in_24 {
	display: block;
	text-align: left;
	padding: 0;
	margin: 0;
	list-style: none;
}

ul#switcherTabsstacks_in_24 li.switcherTab {
	display: inline-block;
	list-style: none;
	width: 14.28%;
}



/* Static tabs */

ul#switcherTabsstacks_in_24 li.switcherTab.ui-state-default a {
	display: block;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 1px !important;
	cursor: pointer;
	background: rgba(230, 230, 230, 1.00);
	padding-top: 5px;
	padding-bottom: 25px;
	padding-left: 5px;
	padding-right: 5px;
	font-size: 16px;
	line-height: 0.80em;
	text-align: center;
	text-decoration: none;
	border-radius: 0px 0px 0px 0px;
	color: rgba(102, 102, 102, 1.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	position: relative;
	z-index: 10;
	outline: none;
	
	/* Animate selected elements */
	transition: background 500ms, 
				color 500ms, 
				border 500ms, 
				border-radius 500ms;
	-webkit-transition: background 500ms, 
				color 500ms,
				border 500ms,
				border-radius 500ms;
	-moz-transition: background 500ms, 
				color 500ms,
				border 500ms,
				border-radius 500ms;
}

ul#switcherTabsstacks_in_24 li.switcherTab.ui-state-default a [class^="fa fa-"],
ul#switcherTabsstacks_in_24 li.switcherTab.ui-state-default a i {
	display: block;
	font-size: 45px;
	text-align: center;
	color: rgba(255, 255, 255, 0.00);
	line-height: 1;
	vertical-align: middle;
	margin-top: -25px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
	
	/* Animate selected elements */
	transition: background 500ms, 
				color 500ms, 
				border 500ms, 
				border-radius 500ms;
	-webkit-transition: background 500ms, 
				color 500ms,
				border 500ms,
				border-radius 500ms;
	-moz-transition: background 500ms, 
				color 500ms,
				border 500ms,
				border-radius 500ms;
}

/* Hovered Tabs */

ul#switcherTabsstacks_in_24 li.switcherTab.ui-state-default a:hover {
	background: rgba(153, 153, 153, 1.00);
	color: rgba(255, 255, 255, 1.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-radius: 0px 0px 0px 0px;
	padding-top: 5px;
	padding-bottom: 25px;
	padding-left: 5px;
	padding-right: 5px;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 1px !important;
}

ul#switcherTabsstacks_in_24 li.switcherTab.ui-state-default a:hover [class^="fa fa-"],
ul#switcherTabsstacks_in_24 li.switcherTab.ui-state-default a:hover i {
	color: rgba(255, 255, 255, 0.00);
}

/* Clicked tabs */

ul#switcherTabsstacks_in_24 li.switcherTab.ui-state-default a:active {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(153, 153, 153, 1.00);
}

ul#switcherTabsstacks_in_24 li.switcherTab.ui-state-default [class^="fa fa-"],
ul#switcherTabsstacks_in_24 li.switcherTab.ui-state-default i {
	color: rgba(255, 255, 255, 0.00);
}

/* Active Tabs */

ul#switcherTabsstacks_in_24 li.switcherTab.ui-tabs-active.ui-state-active a {
	background: rgba(141, 121, 102, 1.00);
	color: rgba(255, 255, 255, 1.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-radius: 0px 0px 0px 0px;
	padding-top: 5px;
	padding-bottom: 25px;
	padding-left: 5px;
	padding-right: 5px;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 1px !important;
}

ul#switcherTabsstacks_in_24 li.switcherTab.ui-tabs-active.ui-state-active a [class^="fa fa-"],
ul#switcherTabsstacks_in_24 li.switcherTab.ui-tabs-active.ui-state-active a i {
	color: rgba(255, 255, 255, 1.00);
}

/* Hide accordion toggle headings */

#tabPanesstacks_in_24 a.accordion-toggle {
	display: none;
}

/* Hide accordion, when in tabbed mode */

#switcherstacks_in_24.tabbed-layout #accordionInterfacestacks_in_24 {
	display: none;
}

/* Display tabbed interface, when in tabs mode */

#switcherstacks_in_24.tabbed-layout #tabbedInterfacestacks_in_24 {
	display: block;
}

/* Hide tabbed interface, when in accordion mode */

#switcherstacks_in_24.accordion-layout #tabbedInterfacestacks_in_24 {
	display: none;
}


/* Hide open / close accordion heading icons */

ul#switcherTabsstacks_in_24 .closedIcon,
ul#switcherTabsstacks_in_24 .openedIcon {
	display: none;
}

/* @end */

/* @group Content Panels */

#tabbedInterfacestacks_in_24 .accordion-content,
#accordionInterfacestacks_in_24 .accordion-content {
	display: none;
	list-style: none;
	padding: 0;
	text-align: left;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
}

#tabbedInterfacestacks_in_24 .accordion-content .contentInner,
#accordionInterfacestacks_in_24 .accordion-content .contentInner {
	color: rgba(102, 102, 102, 1.00);
	background: rgba(255, 255, 255, 1.00);
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
	padding-right: 15px;
	border-radius: 0px 0px 0px 0px;
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
}

/* @end */

/* @group Left / Right Tab Positioning */





/* @end */

/* @group Responsive Behavior */

/* On screens less than our breakpoint, make tabs an accordion */
@media screen and (max-width: 970px) {
	#switcherstacks_in_24 #accordionInterfacestacks_in_24 {
		display: block !important;
	}
	
	#switcherstacks_in_24 #tabbedInterfacestacks_in_24 {
		display: none !important;
	}
}

/* @end */

/* @group Print style settings */

@media print {
	#switcherTabsstacks_in_24 {
		display: none !important;
	}
	
	#switcherWrapperstacks_in_24,
	#switcherstacks_in_24.tabbed-layout .accordion-toggle {
		display: block !important;
	}
	
	#switcherstacks_in_24 .accordion-content {
		display: block !important;
		height: auto !important;
	}
	
	#switcherstacks_in_24 .accordion-content .contentInner {
		border: none !important;
	}
}

/* @end */

/* @group Advanced Settings */

/**/

/**/

/**/

/* @end */

/* @group Edit Mode Styling */

/*  */

/* @end *//* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

/* @end */       @media only screen and (min-width:0em){#stacks_in_27>.row.col-pad-custom>.columns:first-child{padding-left:0!important;padding-right:0!important}#stacks_in_27>.row.col-pad-custom>.columns:first-child>.vc-outer>.vc-inner,#stacks_in_27>.row.col-pad-custom>.columns:first-child>.equalizer>.vc-outer>.vc-inner{padding-left:0.94rem;padding-right:1.50rem}}@media only screen and (min-width:0em){#stacks_in_27>.row.col-pad-custom>.columns:first-child{padding-top:0.00rem;padding-bottom:0.00rem}}    @media only screen and (min-width:0em){#stacks_in_27>.row.col2-pad-custom>.columns:last-child{padding-left:0!important;padding-right:0!important}#stacks_in_27>.row.col2-pad-custom>.columns:last-child>.vc-outer>.vc-inner,#stacks_in_27>.row.col2-pad-custom>.columns:last-child>.equalizer>.vc-outer>.vc-inner{padding-left:1.50rem;padding-right:0.94rem}}@media only screen and (min-width:0em){#stacks_in_27>.row.col2-pad-custom>.columns:last-child{padding-top:0.00rem;padding-bottom:0.00rem}}  

 #stacks_in_27>.row{padding-top:2.00rem;padding-bottom:1.00rem} #stacks_in_27>.row>.columns{margin-top:0.00rem}



@media only screen and (min-width:0px){#stacks_in_38{}}

       @media only screen and (min-width:0em){#stacks_in_42>.row.col-pad-custom>.columns:first-child{padding-left:0!important;padding-right:0!important}#stacks_in_42>.row.col-pad-custom>.columns:first-child>.vc-outer>.vc-inner,#stacks_in_42>.row.col-pad-custom>.columns:first-child>.equalizer>.vc-outer>.vc-inner{padding-left:0.94rem;padding-right:1.50rem}}@media only screen and (min-width:0em){#stacks_in_42>.row.col-pad-custom>.columns:first-child{padding-top:0.00rem;padding-bottom:0.00rem}}    @media only screen and (min-width:0em){#stacks_in_42>.row.col2-pad-custom>.columns:last-child{padding-left:0!important;padding-right:0!important}#stacks_in_42>.row.col2-pad-custom>.columns:last-child>.vc-outer>.vc-inner,#stacks_in_42>.row.col2-pad-custom>.columns:last-child>.equalizer>.vc-outer>.vc-inner{padding-left:1.50rem;padding-right:0.94rem}}@media only screen and (min-width:0em){#stacks_in_42>.row.col2-pad-custom>.columns:last-child{padding-top:0.00rem;padding-bottom:0.00rem}}  

 #stacks_in_42>.row{padding-top:1.00rem;padding-bottom:1.00rem} #stacks_in_42>.row>.columns{margin-top:0.00rem}



@media only screen and (min-width:0px){#stacks_in_53{}}

       @media only screen and (min-width:0em){#stacks_in_57>.row.col-pad-custom>.columns:first-child{padding-left:0!important;padding-right:0!important}#stacks_in_57>.row.col-pad-custom>.columns:first-child>.vc-outer>.vc-inner,#stacks_in_57>.row.col-pad-custom>.columns:first-child>.equalizer>.vc-outer>.vc-inner{padding-left:0.94rem;padding-right:1.50rem}}@media only screen and (min-width:0em){#stacks_in_57>.row.col-pad-custom>.columns:first-child{padding-top:0.00rem;padding-bottom:0.00rem}}    @media only screen and (min-width:0em){#stacks_in_57>.row.col2-pad-custom>.columns:last-child{padding-left:0!important;padding-right:0!important}#stacks_in_57>.row.col2-pad-custom>.columns:last-child>.vc-outer>.vc-inner,#stacks_in_57>.row.col2-pad-custom>.columns:last-child>.equalizer>.vc-outer>.vc-inner{padding-left:1.50rem;padding-right:0.94rem}}@media only screen and (min-width:0em){#stacks_in_57>.row.col2-pad-custom>.columns:last-child{padding-top:0.00rem;padding-bottom:0.00rem}}  

 #stacks_in_57>.row{padding-top:1.00rem;padding-bottom:1.00rem} #stacks_in_57>.row>.columns{margin-top:0.00rem}



@media only screen and (min-width:0px){#stacks_in_68{}}

       @media only screen and (min-width:0em){#stacks_in_72>.row.col-pad-custom>.columns:first-child{padding-left:0!important;padding-right:0!important}#stacks_in_72>.row.col-pad-custom>.columns:first-child>.vc-outer>.vc-inner,#stacks_in_72>.row.col-pad-custom>.columns:first-child>.equalizer>.vc-outer>.vc-inner{padding-left:0.94rem;padding-right:1.50rem}}@media only screen and (min-width:0em){#stacks_in_72>.row.col-pad-custom>.columns:first-child{padding-top:0.00rem;padding-bottom:0.00rem}}    @media only screen and (min-width:0em){#stacks_in_72>.row.col2-pad-custom>.columns:last-child{padding-left:0!important;padding-right:0!important}#stacks_in_72>.row.col2-pad-custom>.columns:last-child>.vc-outer>.vc-inner,#stacks_in_72>.row.col2-pad-custom>.columns:last-child>.equalizer>.vc-outer>.vc-inner{padding-left:1.50rem;padding-right:0.94rem}}@media only screen and (min-width:0em){#stacks_in_72>.row.col2-pad-custom>.columns:last-child{padding-top:0.00rem;padding-bottom:0.00rem}}  

 #stacks_in_72>.row{padding-top:1.00rem;padding-bottom:1.00rem} #stacks_in_72>.row>.columns{margin-top:0.00rem}



@media only screen and (min-width:0px){#stacks_in_83{}}

       @media only screen and (min-width:0em){#stacks_in_87>.row.col-pad-custom>.columns:first-child{padding-left:0!important;padding-right:0!important}#stacks_in_87>.row.col-pad-custom>.columns:first-child>.vc-outer>.vc-inner,#stacks_in_87>.row.col-pad-custom>.columns:first-child>.equalizer>.vc-outer>.vc-inner{padding-left:0.94rem;padding-right:1.50rem}}@media only screen and (min-width:0em){#stacks_in_87>.row.col-pad-custom>.columns:first-child{padding-top:0.00rem;padding-bottom:0.00rem}}    @media only screen and (min-width:0em){#stacks_in_87>.row.col2-pad-custom>.columns:last-child{padding-left:0!important;padding-right:0!important}#stacks_in_87>.row.col2-pad-custom>.columns:last-child>.vc-outer>.vc-inner,#stacks_in_87>.row.col2-pad-custom>.columns:last-child>.equalizer>.vc-outer>.vc-inner{padding-left:1.50rem;padding-right:0.94rem}}@media only screen and (min-width:0em){#stacks_in_87>.row.col2-pad-custom>.columns:last-child{padding-top:0.00rem;padding-bottom:0.00rem}}  

 #stacks_in_87>.row{padding-top:1.00rem;padding-bottom:1.00rem} #stacks_in_87>.row>.columns{margin-top:0.00rem}



@media only screen and (min-width:0px){#stacks_in_98{}}

       @media only screen and (min-width:0em){#stacks_in_102>.row.col-pad-custom>.columns:first-child{padding-left:0!important;padding-right:0!important}#stacks_in_102>.row.col-pad-custom>.columns:first-child>.vc-outer>.vc-inner,#stacks_in_102>.row.col-pad-custom>.columns:first-child>.equalizer>.vc-outer>.vc-inner{padding-left:0.94rem;padding-right:1.50rem}}@media only screen and (min-width:0em){#stacks_in_102>.row.col-pad-custom>.columns:first-child{padding-top:0.00rem;padding-bottom:0.00rem}}    @media only screen and (min-width:0em){#stacks_in_102>.row.col2-pad-custom>.columns:last-child{padding-left:0!important;padding-right:0!important}#stacks_in_102>.row.col2-pad-custom>.columns:last-child>.vc-outer>.vc-inner,#stacks_in_102>.row.col2-pad-custom>.columns:last-child>.equalizer>.vc-outer>.vc-inner{padding-left:1.50rem;padding-right:0.94rem}}@media only screen and (min-width:0em){#stacks_in_102>.row.col2-pad-custom>.columns:last-child{padding-top:0.00rem;padding-bottom:0.00rem}}  

 #stacks_in_102>.row{padding-top:1.00rem;padding-bottom:1.00rem} #stacks_in_102>.row>.columns{margin-top:0.00rem}



@media only screen and (min-width:0px){#stacks_in_113{}}

       @media only screen and (min-width:0em){#stacks_in_117>.row.col-pad-custom>.columns:first-child{padding-left:0!important;padding-right:0!important}#stacks_in_117>.row.col-pad-custom>.columns:first-child>.vc-outer>.vc-inner,#stacks_in_117>.row.col-pad-custom>.columns:first-child>.equalizer>.vc-outer>.vc-inner{padding-left:0.94rem;padding-right:1.50rem}}@media only screen and (min-width:0em){#stacks_in_117>.row.col-pad-custom>.columns:first-child{padding-top:0.00rem;padding-bottom:0.00rem}}    @media only screen and (min-width:0em){#stacks_in_117>.row.col2-pad-custom>.columns:last-child{padding-left:0!important;padding-right:0!important}#stacks_in_117>.row.col2-pad-custom>.columns:last-child>.vc-outer>.vc-inner,#stacks_in_117>.row.col2-pad-custom>.columns:last-child>.equalizer>.vc-outer>.vc-inner{padding-left:1.50rem;padding-right:0.94rem}}@media only screen and (min-width:0em){#stacks_in_117>.row.col2-pad-custom>.columns:last-child{padding-top:0.00rem;padding-bottom:0.00rem}}  

 #stacks_in_117>.row{padding-top:1.00rem;padding-bottom:1.00rem} #stacks_in_117>.row>.columns{margin-top:0.00rem}



@media only screen and (min-width:0px){#stacks_in_128{}}

       @media only screen and (min-width:0em){#stacks_in_132>.row.col-pad-custom>.columns:first-child{padding-left:0!important;padding-right:0!important}#stacks_in_132>.row.col-pad-custom>.columns:first-child>.vc-outer>.vc-inner,#stacks_in_132>.row.col-pad-custom>.columns:first-child>.equalizer>.vc-outer>.vc-inner{padding-left:0.94rem;padding-right:1.50rem}}@media only screen and (min-width:0em){#stacks_in_132>.row.col-pad-custom>.columns:first-child{padding-top:0.00rem;padding-bottom:0.00rem}}    @media only screen and (min-width:0em){#stacks_in_132>.row.col2-pad-custom>.columns:last-child{padding-left:0!important;padding-right:0!important}#stacks_in_132>.row.col2-pad-custom>.columns:last-child>.vc-outer>.vc-inner,#stacks_in_132>.row.col2-pad-custom>.columns:last-child>.equalizer>.vc-outer>.vc-inner{padding-left:1.50rem;padding-right:0.94rem}}@media only screen and (min-width:0em){#stacks_in_132>.row.col2-pad-custom>.columns:last-child{padding-top:0.00rem;padding-bottom:0.00rem}}  

 #stacks_in_132>.row{padding-top:1.00rem;padding-bottom:1.00rem} #stacks_in_132>.row>.columns{margin-top:0.00rem}



@media only screen and (min-width:0px){#stacks_in_143{}}

       @media only screen and (min-width:0em){#stacks_in_147>.row.col-pad-custom>.columns:first-child{padding-left:0!important;padding-right:0!important}#stacks_in_147>.row.col-pad-custom>.columns:first-child>.vc-outer>.vc-inner,#stacks_in_147>.row.col-pad-custom>.columns:first-child>.equalizer>.vc-outer>.vc-inner{padding-left:0.94rem;padding-right:1.50rem}}@media only screen and (min-width:0em){#stacks_in_147>.row.col-pad-custom>.columns:first-child{padding-top:0.00rem;padding-bottom:0.00rem}}    @media only screen and (min-width:0em){#stacks_in_147>.row.col2-pad-custom>.columns:last-child{padding-left:0!important;padding-right:0!important}#stacks_in_147>.row.col2-pad-custom>.columns:last-child>.vc-outer>.vc-inner,#stacks_in_147>.row.col2-pad-custom>.columns:last-child>.equalizer>.vc-outer>.vc-inner{padding-left:1.50rem;padding-right:0.94rem}}@media only screen and (min-width:0em){#stacks_in_147>.row.col2-pad-custom>.columns:last-child{padding-top:0.00rem;padding-bottom:0.00rem}}  

 #stacks_in_147>.row{padding-top:1.00rem;padding-bottom:1.00rem} #stacks_in_147>.row>.columns{margin-top:0.00rem}



@media only screen and (min-width:0px){#stacks_in_158{}}

/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

/* @end */.clearing-blackout{z-index:9999}#clearing_stacks_in_862 a.th{border-color:rgba(255, 255, 255, 1.00);border-width:4px}#stacks_in_862 .clearing-blackout{background-color:rgba(51, 51, 51, 1.00)}#stacks_in_862 .clearing-assembled .clearing-container .visible-img,#stacks_in_862 .clearing-assembled .clearing-container .clearing-caption{background-color:rgba(51, 51, 51, 1.00)}#stacks_in_862 .clearing-assembled .clearing-container .clearing-close{color:rgba(204, 204, 204, 1.00)}#stacks_in_862 .clearing-assembled .clearing-container .clearing-close:hover,#stacks_in_862 .clearing-assembled .clearing-container .clearing-close:focus{color:rgba(204, 204, 204, 1.00)}#stacks_in_862 .clearing-assembled .clearing-container .clearing-main-next > span{border-color:transparent;border-left-color:rgba(204, 204, 204, 1.00)}#stacks_in_862 .clearing-assembled .clearing-container .clearing-main-prev > span{border-color:transparent;border-right-color:rgba(204, 204, 204, 1.00)}#stacks_in_862 .clearing-assembled .clearing-container .clearing-caption{color:rgba(204, 204, 204, 1.00)}#stacks_in_862 .clearing-assembled .clearing-container .carousel{background-color:rgba(48, 48, 48, 1.00)}#clearing_stacks_in_862{display:block !important;margin:0 -0.625em !important;padding:0 !important}#clearing_stacks_in_862 li{margin-right:0 !important}#clearing_stacks_in_862 li img{width:100% !important;height:auto !important}#stacks_in_862 .clearing-blackout li{clear:inherit !important}
/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

/* @end */@media only screen and (min-width:0px){#stacks_in_165{}}


#stacks_in_165 {
	padding: 25px 0px 0px 0px;
}
.clearing-blackout{z-index:9999}#clearing_stacks_in_168 a.th{border-color:rgba(76, 76, 76, 1.00);border-width:5px}#stacks_in_168 .clearing-blackout{background-color:rgba(0, 0, 0, 0.85)}#stacks_in_168 .clearing-assembled .clearing-container .visible-img,#stacks_in_168 .clearing-assembled .clearing-container .clearing-caption{background-color:rgba(0, 0, 0, 0.85)}#stacks_in_168 .clearing-assembled .clearing-container .clearing-close{color:rgba(255, 255, 255, 1.00)}#stacks_in_168 .clearing-assembled .clearing-container .clearing-close:hover,#stacks_in_168 .clearing-assembled .clearing-container .clearing-close:focus{color:rgba(255, 255, 255, 1.00)}#stacks_in_168 .clearing-assembled .clearing-container .clearing-main-next > span{border-color:transparent;border-left-color:rgba(255, 255, 255, 1.00)}#stacks_in_168 .clearing-assembled .clearing-container .clearing-main-prev > span{border-color:transparent;border-right-color:rgba(255, 255, 255, 1.00)}#stacks_in_168 .clearing-assembled .clearing-container .clearing-caption{color:rgba(255, 255, 255, 1.00)}#stacks_in_168 .clearing-assembled .clearing-container .carousel{background-color:rgba(0, 0, 0, 0.85)}#clearing_stacks_in_168{display:block !important;margin:0 -0.625em !important;padding:0 !important}#clearing_stacks_in_168 li{margin-right:0 !important}#clearing_stacks_in_168 li img{width:100% !important;height:auto !important}#stacks_in_168 .clearing-blackout li{clear:inherit !important}

#stacks_in_168 {
	padding: 20px 0px 20px 0px;
}
/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

/* @end */@media only screen and (min-width:0px){#stacks_in_245{}}


#stacks_in_245 {
	padding: 25px 0px 0px 0px;
}
       @media only screen and (min-width:0em){#stacks_in_248>.row.col-pad-custom>.columns:first-child{padding-left:0!important;padding-right:0!important}#stacks_in_248>.row.col-pad-custom>.columns:first-child>.vc-outer>.vc-inner,#stacks_in_248>.row.col-pad-custom>.columns:first-child>.equalizer>.vc-outer>.vc-inner{padding-left:0.94rem;padding-right:1.50rem}}@media only screen and (min-width:0em){#stacks_in_248>.row.col-pad-custom>.columns:first-child{padding-top:0.00rem;padding-bottom:0.00rem}}    @media only screen and (min-width:0em){#stacks_in_248>.row.col2-pad-custom>.columns:last-child{padding-left:0!important;padding-right:0!important}#stacks_in_248>.row.col2-pad-custom>.columns:last-child>.vc-outer>.vc-inner,#stacks_in_248>.row.col2-pad-custom>.columns:last-child>.equalizer>.vc-outer>.vc-inner{padding-left:1.50rem;padding-right:0.94rem}}@media only screen and (min-width:0em){#stacks_in_248>.row.col2-pad-custom>.columns:last-child{padding-top:0.00rem;padding-bottom:0.00rem}}  

 #stacks_in_248>.row{padding-top:2.00rem;padding-bottom:1.00rem} #stacks_in_248>.row>.columns{margin-top:0.00rem}
#stacks_in_252 h4.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_252 {
	border: solid rgba(152, 134, 115, 1.00);
	border-width: 0px 0px 1px 0px;
}
#stacks_in_257 h6,#stacks_in_257 div{color:rgba(102, 102, 102, 1.00)}#stacks_in_257 h6 a,#stacks_in_257 div a{color:rgba(102, 102, 102, 1.00)}#stacks_in_257 h6 a:hover,#stacks_in_257 div a:hover{color:rgba(76, 76, 76, 1.00)}#stacks_in_257 small,#stacks_in_257 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_257 {
	padding: 5px 0px 0px 0px;
}
@media only screen and (min-width:0px){#stacks_in_262{}}

@media only screen and (min-width:0px){#stacks_in_265{}}

       @media only screen and (min-width:0em){#stacks_in_269>.row.col-pad-custom>.columns:first-child{padding-left:0!important;padding-right:0!important}#stacks_in_269>.row.col-pad-custom>.columns:first-child>.vc-outer>.vc-inner,#stacks_in_269>.row.col-pad-custom>.columns:first-child>.equalizer>.vc-outer>.vc-inner{padding-left:0.94rem;padding-right:1.50rem}}@media only screen and (min-width:0em){#stacks_in_269>.row.col-pad-custom>.columns:first-child{padding-top:0.00rem;padding-bottom:0.00rem}}    @media only screen and (min-width:0em){#stacks_in_269>.row.col2-pad-custom>.columns:last-child{padding-left:0!important;padding-right:0!important}#stacks_in_269>.row.col2-pad-custom>.columns:last-child>.vc-outer>.vc-inner,#stacks_in_269>.row.col2-pad-custom>.columns:last-child>.equalizer>.vc-outer>.vc-inner{padding-left:1.50rem;padding-right:0.94rem}}@media only screen and (min-width:0em){#stacks_in_269>.row.col2-pad-custom>.columns:last-child{padding-top:0.00rem;padding-bottom:0.00rem}}  

 #stacks_in_269>.row{padding-top:2.00rem;padding-bottom:1.00rem} #stacks_in_269>.row>.columns{margin-top:0.00rem}
#stacks_in_273 h4.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_273 {
	border: solid rgba(152, 134, 115, 1.00);
	border-width: 0px 0px 1px 0px;
}
#stacks_in_278 h6,#stacks_in_278 div{color:rgba(102, 102, 102, 1.00)}#stacks_in_278 h6 a,#stacks_in_278 div a{color:rgba(102, 102, 102, 1.00)}#stacks_in_278 h6 a:hover,#stacks_in_278 div a:hover{color:rgba(76, 76, 76, 1.00)}#stacks_in_278 small,#stacks_in_278 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_278 {
	padding: 5px 0px 0px 0px;
}
@media only screen and (min-width:0px){#stacks_in_283{}}

@media only screen and (min-width:0px){#stacks_in_286{}}

       @media only screen and (min-width:0em){#stacks_in_290>.row.col-pad-custom>.columns:first-child{padding-left:0!important;padding-right:0!important}#stacks_in_290>.row.col-pad-custom>.columns:first-child>.vc-outer>.vc-inner,#stacks_in_290>.row.col-pad-custom>.columns:first-child>.equalizer>.vc-outer>.vc-inner{padding-left:0.94rem;padding-right:1.50rem}}@media only screen and (min-width:0em){#stacks_in_290>.row.col-pad-custom>.columns:first-child{padding-top:0.00rem;padding-bottom:0.00rem}}    @media only screen and (min-width:0em){#stacks_in_290>.row.col2-pad-custom>.columns:last-child{padding-left:0!important;padding-right:0!important}#stacks_in_290>.row.col2-pad-custom>.columns:last-child>.vc-outer>.vc-inner,#stacks_in_290>.row.col2-pad-custom>.columns:last-child>.equalizer>.vc-outer>.vc-inner{padding-left:1.50rem;padding-right:0.94rem}}@media only screen and (min-width:0em){#stacks_in_290>.row.col2-pad-custom>.columns:last-child{padding-top:0.00rem;padding-bottom:0.00rem}}  

 #stacks_in_290>.row{padding-top:2.00rem;padding-bottom:1.00rem} #stacks_in_290>.row>.columns{margin-top:0.00rem}
#stacks_in_294 h4.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_294 {
	border: solid rgba(152, 134, 115, 1.00);
	border-width: 0px 0px 1px 0px;
}
#stacks_in_299 h6,#stacks_in_299 div{color:rgba(102, 102, 102, 1.00)}#stacks_in_299 h6 a,#stacks_in_299 div a{color:rgba(102, 102, 102, 1.00)}#stacks_in_299 h6 a:hover,#stacks_in_299 div a:hover{color:rgba(76, 76, 76, 1.00)}#stacks_in_299 small,#stacks_in_299 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_299 {
	padding: 5px 0px 0px 0px;
}
@media only screen and (min-width:0px){#stacks_in_304{}}

@media only screen and (min-width:0px){#stacks_in_307{}}

       @media only screen and (min-width:0em){#stacks_in_311>.row.col-pad-custom>.columns:first-child{padding-left:0!important;padding-right:0!important}#stacks_in_311>.row.col-pad-custom>.columns:first-child>.vc-outer>.vc-inner,#stacks_in_311>.row.col-pad-custom>.columns:first-child>.equalizer>.vc-outer>.vc-inner{padding-left:0.94rem;padding-right:1.50rem}}@media only screen and (min-width:0em){#stacks_in_311>.row.col-pad-custom>.columns:first-child{padding-top:0.00rem;padding-bottom:0.00rem}}    @media only screen and (min-width:0em){#stacks_in_311>.row.col2-pad-custom>.columns:last-child{padding-left:0!important;padding-right:0!important}#stacks_in_311>.row.col2-pad-custom>.columns:last-child>.vc-outer>.vc-inner,#stacks_in_311>.row.col2-pad-custom>.columns:last-child>.equalizer>.vc-outer>.vc-inner{padding-left:1.50rem;padding-right:0.94rem}}@media only screen and (min-width:0em){#stacks_in_311>.row.col2-pad-custom>.columns:last-child{padding-top:0.00rem;padding-bottom:0.00rem}}  

 #stacks_in_311>.row{padding-top:2.00rem;padding-bottom:1.00rem} #stacks_in_311>.row>.columns{margin-top:0.00rem}
#stacks_in_315 h4.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_315 {
	border: solid rgba(152, 134, 115, 1.00);
	border-width: 0px 0px 1px 0px;
}
#stacks_in_320 h6,#stacks_in_320 div{color:rgba(102, 102, 102, 1.00)}#stacks_in_320 h6 a,#stacks_in_320 div a{color:rgba(102, 102, 102, 1.00)}#stacks_in_320 h6 a:hover,#stacks_in_320 div a:hover{color:rgba(76, 76, 76, 1.00)}#stacks_in_320 small,#stacks_in_320 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_320 {
	padding: 5px 0px 0px 0px;
}
@media only screen and (min-width:0px){#stacks_in_325{}}

@media only screen and (min-width:0px){#stacks_in_328{}}

       @media only screen and (min-width:0em){#stacks_in_332>.row.col-pad-custom>.columns:first-child{padding-left:0!important;padding-right:0!important}#stacks_in_332>.row.col-pad-custom>.columns:first-child>.vc-outer>.vc-inner,#stacks_in_332>.row.col-pad-custom>.columns:first-child>.equalizer>.vc-outer>.vc-inner{padding-left:0.94rem;padding-right:1.50rem}}@media only screen and (min-width:0em){#stacks_in_332>.row.col-pad-custom>.columns:first-child{padding-top:0.00rem;padding-bottom:0.00rem}}    @media only screen and (min-width:0em){#stacks_in_332>.row.col2-pad-custom>.columns:last-child{padding-left:0!important;padding-right:0!important}#stacks_in_332>.row.col2-pad-custom>.columns:last-child>.vc-outer>.vc-inner,#stacks_in_332>.row.col2-pad-custom>.columns:last-child>.equalizer>.vc-outer>.vc-inner{padding-left:1.50rem;padding-right:0.94rem}}@media only screen and (min-width:0em){#stacks_in_332>.row.col2-pad-custom>.columns:last-child{padding-top:0.00rem;padding-bottom:0.00rem}}  

 #stacks_in_332>.row{padding-top:2.00rem;padding-bottom:1.00rem} #stacks_in_332>.row>.columns{margin-top:0.00rem}
#stacks_in_336 h4.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_336 {
	border: solid rgba(152, 134, 115, 1.00);
	border-width: 0px 0px 1px 0px;
}
#stacks_in_341 h6,#stacks_in_341 div{color:rgba(102, 102, 102, 1.00)}#stacks_in_341 h6 a,#stacks_in_341 div a{color:rgba(102, 102, 102, 1.00)}#stacks_in_341 h6 a:hover,#stacks_in_341 div a:hover{color:rgba(76, 76, 76, 1.00)}#stacks_in_341 small,#stacks_in_341 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_341 {
	padding: 5px 0px 0px 0px;
}
@media only screen and (min-width:0px){#stacks_in_346{}}

@media only screen and (min-width:0px){#stacks_in_349{}}

       @media only screen and (min-width:0em){#stacks_in_353>.row.col-pad-custom>.columns:first-child{padding-left:0!important;padding-right:0!important}#stacks_in_353>.row.col-pad-custom>.columns:first-child>.vc-outer>.vc-inner,#stacks_in_353>.row.col-pad-custom>.columns:first-child>.equalizer>.vc-outer>.vc-inner{padding-left:0.94rem;padding-right:1.50rem}}@media only screen and (min-width:0em){#stacks_in_353>.row.col-pad-custom>.columns:first-child{padding-top:0.00rem;padding-bottom:0.00rem}}    @media only screen and (min-width:0em){#stacks_in_353>.row.col2-pad-custom>.columns:last-child{padding-left:0!important;padding-right:0!important}#stacks_in_353>.row.col2-pad-custom>.columns:last-child>.vc-outer>.vc-inner,#stacks_in_353>.row.col2-pad-custom>.columns:last-child>.equalizer>.vc-outer>.vc-inner{padding-left:1.50rem;padding-right:0.94rem}}@media only screen and (min-width:0em){#stacks_in_353>.row.col2-pad-custom>.columns:last-child{padding-top:0.00rem;padding-bottom:0.00rem}}  

 #stacks_in_353>.row{padding-top:2.00rem;padding-bottom:1.00rem} #stacks_in_353>.row>.columns{margin-top:0.00rem}
#stacks_in_357 h4.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_357 {
	border: solid rgba(152, 134, 115, 1.00);
	border-width: 0px 0px 1px 0px;
}
#stacks_in_362 h6,#stacks_in_362 div{color:rgba(102, 102, 102, 1.00)}#stacks_in_362 h6 a,#stacks_in_362 div a{color:rgba(102, 102, 102, 1.00)}#stacks_in_362 h6 a:hover,#stacks_in_362 div a:hover{color:rgba(76, 76, 76, 1.00)}#stacks_in_362 small,#stacks_in_362 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_362 {
	padding: 5px 0px 0px 0px;
}
@media only screen and (min-width:0px){#stacks_in_367{}}

@media only screen and (min-width:0px){#stacks_in_370{}}

       @media only screen and (min-width:0em){#stacks_in_374>.row.col-pad-custom>.columns:first-child{padding-left:0!important;padding-right:0!important}#stacks_in_374>.row.col-pad-custom>.columns:first-child>.vc-outer>.vc-inner,#stacks_in_374>.row.col-pad-custom>.columns:first-child>.equalizer>.vc-outer>.vc-inner{padding-left:0.94rem;padding-right:1.50rem}}@media only screen and (min-width:0em){#stacks_in_374>.row.col-pad-custom>.columns:first-child{padding-top:0.00rem;padding-bottom:0.00rem}}    @media only screen and (min-width:0em){#stacks_in_374>.row.col2-pad-custom>.columns:last-child{padding-left:0!important;padding-right:0!important}#stacks_in_374>.row.col2-pad-custom>.columns:last-child>.vc-outer>.vc-inner,#stacks_in_374>.row.col2-pad-custom>.columns:last-child>.equalizer>.vc-outer>.vc-inner{padding-left:1.50rem;padding-right:0.94rem}}@media only screen and (min-width:0em){#stacks_in_374>.row.col2-pad-custom>.columns:last-child{padding-top:0.00rem;padding-bottom:0.00rem}}  

 #stacks_in_374>.row{padding-top:2.00rem;padding-bottom:1.00rem} #stacks_in_374>.row>.columns{margin-top:0.00rem}
#stacks_in_378 h4.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_378 {
	border: solid rgba(152, 134, 115, 1.00);
	border-width: 0px 0px 1px 0px;
}
#stacks_in_383 h6,#stacks_in_383 div{color:rgba(102, 102, 102, 1.00)}#stacks_in_383 h6 a,#stacks_in_383 div a{color:rgba(102, 102, 102, 1.00)}#stacks_in_383 h6 a:hover,#stacks_in_383 div a:hover{color:rgba(76, 76, 76, 1.00)}#stacks_in_383 small,#stacks_in_383 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_383 {
	padding: 5px 0px 0px 0px;
}
@media only screen and (min-width:0px){#stacks_in_388{}}

@media only screen and (min-width:0px){#stacks_in_391{}}

       @media only screen and (min-width:0em){#stacks_in_395>.row.col-pad-custom>.columns:first-child{padding-left:0!important;padding-right:0!important}#stacks_in_395>.row.col-pad-custom>.columns:first-child>.vc-outer>.vc-inner,#stacks_in_395>.row.col-pad-custom>.columns:first-child>.equalizer>.vc-outer>.vc-inner{padding-left:0.94rem;padding-right:1.50rem}}@media only screen and (min-width:0em){#stacks_in_395>.row.col-pad-custom>.columns:first-child{padding-top:0.00rem;padding-bottom:0.00rem}}    @media only screen and (min-width:0em){#stacks_in_395>.row.col2-pad-custom>.columns:last-child{padding-left:0!important;padding-right:0!important}#stacks_in_395>.row.col2-pad-custom>.columns:last-child>.vc-outer>.vc-inner,#stacks_in_395>.row.col2-pad-custom>.columns:last-child>.equalizer>.vc-outer>.vc-inner{padding-left:1.50rem;padding-right:0.94rem}}@media only screen and (min-width:0em){#stacks_in_395>.row.col2-pad-custom>.columns:last-child{padding-top:0.00rem;padding-bottom:0.00rem}}  

 #stacks_in_395>.row{padding-top:2.00rem;padding-bottom:1.00rem} #stacks_in_395>.row>.columns{margin-top:0.00rem}
#stacks_in_399 h4.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_399 {
	border: solid rgba(152, 134, 115, 1.00);
	border-width: 0px 0px 1px 0px;
}
#stacks_in_404 h6,#stacks_in_404 div{color:rgba(102, 102, 102, 1.00)}#stacks_in_404 h6 a,#stacks_in_404 div a{color:rgba(102, 102, 102, 1.00)}#stacks_in_404 h6 a:hover,#stacks_in_404 div a:hover{color:rgba(76, 76, 76, 1.00)}#stacks_in_404 small,#stacks_in_404 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_404 {
	padding: 5px 0px 0px 0px;
}
@media only screen and (min-width:0px){#stacks_in_409{}}

@media only screen and (min-width:0px){#stacks_in_412{}}

       @media only screen and (min-width:0em){#stacks_in_416>.row.col-pad-custom>.columns:first-child{padding-left:0!important;padding-right:0!important}#stacks_in_416>.row.col-pad-custom>.columns:first-child>.vc-outer>.vc-inner,#stacks_in_416>.row.col-pad-custom>.columns:first-child>.equalizer>.vc-outer>.vc-inner{padding-left:0.94rem;padding-right:1.50rem}}@media only screen and (min-width:0em){#stacks_in_416>.row.col-pad-custom>.columns:first-child{padding-top:0.00rem;padding-bottom:0.00rem}}    @media only screen and (min-width:0em){#stacks_in_416>.row.col2-pad-custom>.columns:last-child{padding-left:0!important;padding-right:0!important}#stacks_in_416>.row.col2-pad-custom>.columns:last-child>.vc-outer>.vc-inner,#stacks_in_416>.row.col2-pad-custom>.columns:last-child>.equalizer>.vc-outer>.vc-inner{padding-left:1.50rem;padding-right:0.94rem}}@media only screen and (min-width:0em){#stacks_in_416>.row.col2-pad-custom>.columns:last-child{padding-top:0.00rem;padding-bottom:0.00rem}}  

 #stacks_in_416>.row{padding-top:2.00rem;padding-bottom:1.00rem} #stacks_in_416>.row>.columns{margin-top:0.00rem}

#stacks_in_617 {
	background-color: rgba(102, 102, 102, 1.00);
}

#stacks_out_617 {
	margin-left:0;
}
#stacks_in_420 h4.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_420 {
	border: solid rgba(152, 134, 115, 1.00);
	border-width: 0px 0px 1px 0px;
}
#stacks_in_425 h6,#stacks_in_425 div{color:rgba(102, 102, 102, 1.00)}#stacks_in_425 h6 a,#stacks_in_425 div a{color:rgba(102, 102, 102, 1.00)}#stacks_in_425 h6 a:hover,#stacks_in_425 div a:hover{color:rgba(76, 76, 76, 1.00)}#stacks_in_425 small,#stacks_in_425 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_425 {
	padding: 5px 0px 0px 0px;
}
/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

/* @end */#stacks_in_434 .primary,#stacks_in_434 .hp-img{display:inline-block}#stacks_in_434 .hp-img.leader{vertical-align:middle;margin-top:0px;margin-right:15px;height:45px}@media screen and (min-width:640px){#stacks_in_434 .hp-img.leader{height:90px}}#stacks_in_434 .hp-img.leader.toggle-off,#stacks_in_434 .hp-img.leader.toggle-Off,#stacks_in_434 .hp-img.leader.toggle-OFF,#stacks_in_434 .hp-img.leader.toggle-NO,#stacks_in_434 .hp-img.leader.toggle-No,#stacks_in_434 .hp-img.leader.toggle-no,#stacks_in_434 .hp-img.leader.toggle-false{display:none}


#stacks_in_434 {
	padding: 25px 0px 0px 0px;
}
@media only screen and (min-width:0px){#stacks_in_439{}}


#stacks_in_439 {
	padding: 20px 0px 0px 0px;
}
#stacks_in_442 h4.margin-collapse{margin-top:0 !important;margin-bottom:0 !important}


#stacks_in_442 {
	border: solid rgba(152, 134, 115, 1.00);
	border-width: 0px 0px 1px 0px;
}
@media only screen and (min-width:0px){#stacks_in_447{}}


#stacks_in_447 {
	padding: 25px 0px 0px 0px;
}
/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

/* @end */


#stacks_in_700 {
	border: solid rgba(204, 204, 204, 1.00);
	border-width: 0px 0px 1px 0px;
	padding: 25px 0px 0px 0px;
}
@media only screen and (min-width:0px){#stacks_in_705{}}


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



#stacks_in_710 {
	border: solid rgba(204, 204, 204, 1.00);
	border-width: 0px 0px 1px 0px;
}
@media only screen and (min-width:0px){#stacks_in_743{}}


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



#stacks_in_738 {
	border: solid rgba(204, 204, 204, 1.00);
	border-width: 0px 0px 1px 0px;
}
@media only screen and (min-width:0px){#stacks_in_715{}}


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



#stacks_in_780 {
	border: solid rgba(204, 204, 204, 1.00);
	border-width: 0px 0px 1px 0px;
}
@media only screen and (min-width:0px){#stacks_in_785{}}


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



#stacks_in_770 {
	border: solid rgba(204, 204, 204, 1.00);
	border-width: 0px 0px 1px 0px;
}
@media only screen and (min-width:0px){#stacks_in_775{}}


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



#stacks_in_720 {
	border: solid rgba(204, 204, 204, 1.00);
	border-width: 0px 0px 1px 0px;
}
@media only screen and (min-width:0px){#stacks_in_725{}}


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



#stacks_in_730 {
	border: solid rgba(204, 204, 204, 1.00);
	border-width: 0px 0px 1px 0px;
}
@media only screen and (min-width:0px){#stacks_in_735{}}


#stacks_in_735 {
	padding: 10px 0px 0px 0px;
}
/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

/* @end */#stacks_in_636 > ul > li{padding:0.62rem 1.25rem}

#stacks_in_636 {
	padding: 25px 0px 0px 0px;
}
#stacks_in_807 a{display:block}#stacks_in_807 img{}

#stacks_in_807 {
	border: solid rgba(102, 102, 102, 1.00);
	border-width:  1px;
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .95);
	
	
	
}

.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: 0px;
}

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






/* Solid colour fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
	background: rgba(0, 0, 0, 1.00);
}
















.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(0, 0, 0, 1.00);
	background: rgba(255, 255, 255, 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: 'Načítám obsah...';
	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_828 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}


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

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

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

#topBoxTriggerRegionstacks_in_828:hover #topBoxIndicatorIconstacks_in_828 {
	opacity: 0.90;
}





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


#topBoxTriggerRegionstacks_in_828 #topBoxTriggerContentstacks_in_828 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_828 #topBoxTriggerContentstacks_in_828 img {
	display: block;
	margin: 0 auto;
}

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

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

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

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

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

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

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

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

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



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


#topBoxContentWrapperstacks_in_828 {
	display: none;
}







@media only screen and (min-width:0px){#stacks_in_808{}}
@media only screen and (max-width:480.00px){#stacks_in_808,#stacks_in_808 div,#stacks_in_808 p,#stacks_in_808 ol,#stacks_in_808 ul li,#stacks_in_808 ol li,#stacks_in_808 ol,#stacks_in_808 dl{font-size:0.90rem!important}}@media only screen and (min-width:480.00px) and (max-width:640.00px){#stacks_in_808,#stacks_in_808 div,#stacks_in_808 p,#stacks_in_808 ol,#stacks_in_808 ul li,#stacks_in_808 ol li,#stacks_in_808 ol,#stacks_in_808 dl{font-size:0.90rem!important}}@media only screen and (min-width:640.00px) and (max-width:2000.00px){#stacks_in_808,#stacks_in_808 div,#stacks_in_808 p,#stacks_in_808 ol,#stacks_in_808 ul li,#stacks_in_808 ol li,#stacks_in_808 ol,#stacks_in_808 dl{font-size:0.90rem!important}}@media only screen and (min-width:2000.00px){#stacks_in_808,#stacks_in_808 div,#stacks_in_808 p,#stacks_in_808 ol,#stacks_in_808 ul li,#stacks_in_808 ol li,#stacks_in_808 ol,#stacks_in_808 dl{font-size:0.90rem!important}}

#stacks_in_808 {
	margin: 5px 0px 0px 0px;
}
@media only screen and (min-width:0px){#stacks_in_809{}}
@media only screen and (max-width:480.00px){#stacks_in_809,#stacks_in_809 div,#stacks_in_809 p,#stacks_in_809 ol,#stacks_in_809 ul li,#stacks_in_809 ol li,#stacks_in_809 ol,#stacks_in_809 dl{font-size:0.90rem!important}}@media only screen and (min-width:480.00px) and (max-width:640.00px){#stacks_in_809,#stacks_in_809 div,#stacks_in_809 p,#stacks_in_809 ol,#stacks_in_809 ul li,#stacks_in_809 ol li,#stacks_in_809 ol,#stacks_in_809 dl{font-size:0.90rem!important}}@media only screen and (min-width:640.00px) and (max-width:2000.00px){#stacks_in_809,#stacks_in_809 div,#stacks_in_809 p,#stacks_in_809 ol,#stacks_in_809 ul li,#stacks_in_809 ol li,#stacks_in_809 ol,#stacks_in_809 dl{font-size:0.90rem!important}}@media only screen and (min-width:2000.00px){#stacks_in_809,#stacks_in_809 div,#stacks_in_809 p,#stacks_in_809 ol,#stacks_in_809 ul li,#stacks_in_809 ol li,#stacks_in_809 ol,#stacks_in_809 dl{font-size:0.90rem!important}}
#stacks_in_676 a{display:block}#stacks_in_676 img{}

#stacks_in_676 {
	border: solid rgba(102, 102, 102, 1.00);
	border-width:  1px;
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .95);
	
	
	
}

.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: 0px;
}

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






/* Solid colour fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
	background: rgba(0, 0, 0, 1.00);
}
















.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(0, 0, 0, 1.00);
	background: rgba(255, 255, 255, 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: 'Načítám obsah...';
	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_829 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}


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

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

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

#topBoxTriggerRegionstacks_in_829:hover #topBoxIndicatorIconstacks_in_829 {
	opacity: 0.90;
}





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


#topBoxTriggerRegionstacks_in_829 #topBoxTriggerContentstacks_in_829 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_829 #topBoxTriggerContentstacks_in_829 img {
	display: block;
	margin: 0 auto;
}

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

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

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

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

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

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

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

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

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



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


#topBoxContentWrapperstacks_in_829 {
	display: none;
}







#stacks_in_650 p,#stacks_in_650 div{margin-bottom:0}@media only screen and (min-width:0px){#stacks_in_650{}}
@media only screen and (max-width:480.00px){#stacks_in_650,#stacks_in_650 div,#stacks_in_650 p,#stacks_in_650 ol,#stacks_in_650 ul li,#stacks_in_650 ol li,#stacks_in_650 ol,#stacks_in_650 dl{font-size:0.90rem!important}}@media only screen and (min-width:480.00px) and (max-width:640.00px){#stacks_in_650,#stacks_in_650 div,#stacks_in_650 p,#stacks_in_650 ol,#stacks_in_650 ul li,#stacks_in_650 ol li,#stacks_in_650 ol,#stacks_in_650 dl{font-size:0.90rem!important}}@media only screen and (min-width:640.00px) and (max-width:2000.00px){#stacks_in_650,#stacks_in_650 div,#stacks_in_650 p,#stacks_in_650 ol,#stacks_in_650 ul li,#stacks_in_650 ol li,#stacks_in_650 ol,#stacks_in_650 dl{font-size:0.90rem!important}}@media only screen and (min-width:2000.00px){#stacks_in_650,#stacks_in_650 div,#stacks_in_650 p,#stacks_in_650 ol,#stacks_in_650 ul li,#stacks_in_650 ol li,#stacks_in_650 ol,#stacks_in_650 dl{font-size:0.90rem!important}}

#stacks_in_650 {
	margin: 5px 0px 0px 0px;
}
@media only screen and (min-width:0px){#stacks_in_658{}}
@media only screen and (max-width:480.00px){#stacks_in_658,#stacks_in_658 div,#stacks_in_658 p,#stacks_in_658 ol,#stacks_in_658 ul li,#stacks_in_658 ol li,#stacks_in_658 ol,#stacks_in_658 dl{font-size:0.90rem!important}}@media only screen and (min-width:480.00px) and (max-width:640.00px){#stacks_in_658,#stacks_in_658 div,#stacks_in_658 p,#stacks_in_658 ol,#stacks_in_658 ul li,#stacks_in_658 ol li,#stacks_in_658 ol,#stacks_in_658 dl{font-size:0.90rem!important}}@media only screen and (min-width:640.00px) and (max-width:2000.00px){#stacks_in_658,#stacks_in_658 div,#stacks_in_658 p,#stacks_in_658 ol,#stacks_in_658 ul li,#stacks_in_658 ol li,#stacks_in_658 ol,#stacks_in_658 dl{font-size:0.90rem!important}}@media only screen and (min-width:2000.00px){#stacks_in_658,#stacks_in_658 div,#stacks_in_658 p,#stacks_in_658 ol,#stacks_in_658 ul li,#stacks_in_658 ol li,#stacks_in_658 ol,#stacks_in_658 dl{font-size:0.90rem!important}}
#stacks_in_682 a{display:block}#stacks_in_682 img{}

#stacks_in_682 {
	border: solid rgba(102, 102, 102, 1.00);
	border-width:  1px;
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .95);
	
	
	
}

.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: 0px;
}

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






/* Solid colour fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
	background: rgba(0, 0, 0, 1.00);
}
















.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(0, 0, 0, 1.00);
	background: rgba(255, 255, 255, 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: 'Načítám obsah...';
	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_683 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}


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

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

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

#topBoxTriggerRegionstacks_in_683:hover #topBoxIndicatorIconstacks_in_683 {
	opacity: 0.90;
}





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


#topBoxTriggerRegionstacks_in_683 #topBoxTriggerContentstacks_in_683 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_683 #topBoxTriggerContentstacks_in_683 img {
	display: block;
	margin: 0 auto;
}

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

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

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

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

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

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

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

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

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



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


#topBoxContentWrapperstacks_in_683 {
	display: none;
}







#stacks_in_673 p,#stacks_in_673 div{margin-bottom:0}@media only screen and (min-width:0px){#stacks_in_673{}}
@media only screen and (max-width:480.00px){#stacks_in_673,#stacks_in_673 div,#stacks_in_673 p,#stacks_in_673 ol,#stacks_in_673 ul li,#stacks_in_673 ol li,#stacks_in_673 ol,#stacks_in_673 dl{font-size:0.90rem!important}}@media only screen and (min-width:480.00px) and (max-width:640.00px){#stacks_in_673,#stacks_in_673 div,#stacks_in_673 p,#stacks_in_673 ol,#stacks_in_673 ul li,#stacks_in_673 ol li,#stacks_in_673 ol,#stacks_in_673 dl{font-size:0.90rem!important}}@media only screen and (min-width:640.00px) and (max-width:2000.00px){#stacks_in_673,#stacks_in_673 div,#stacks_in_673 p,#stacks_in_673 ol,#stacks_in_673 ul li,#stacks_in_673 ol li,#stacks_in_673 ol,#stacks_in_673 dl{font-size:0.90rem!important}}@media only screen and (min-width:2000.00px){#stacks_in_673,#stacks_in_673 div,#stacks_in_673 p,#stacks_in_673 ol,#stacks_in_673 ul li,#stacks_in_673 ol li,#stacks_in_673 ol,#stacks_in_673 dl{font-size:0.90rem!important}}

#stacks_in_673 {
	margin: 5px 0px 0px 0px;
}
@media only screen and (min-width:0px){#stacks_in_670{}}
@media only screen and (max-width:480.00px){#stacks_in_670,#stacks_in_670 div,#stacks_in_670 p,#stacks_in_670 ol,#stacks_in_670 ul li,#stacks_in_670 ol li,#stacks_in_670 ol,#stacks_in_670 dl{font-size:0.90rem!important}}@media only screen and (min-width:480.00px) and (max-width:640.00px){#stacks_in_670,#stacks_in_670 div,#stacks_in_670 p,#stacks_in_670 ol,#stacks_in_670 ul li,#stacks_in_670 ol li,#stacks_in_670 ol,#stacks_in_670 dl{font-size:0.90rem!important}}@media only screen and (min-width:640.00px) and (max-width:2000.00px){#stacks_in_670,#stacks_in_670 div,#stacks_in_670 p,#stacks_in_670 ol,#stacks_in_670 ul li,#stacks_in_670 ol li,#stacks_in_670 ol,#stacks_in_670 dl{font-size:0.90rem!important}}@media only screen and (min-width:2000.00px){#stacks_in_670,#stacks_in_670 div,#stacks_in_670 p,#stacks_in_670 ol,#stacks_in_670 ul li,#stacks_in_670 ol li,#stacks_in_670 ol,#stacks_in_670 dl{font-size:0.90rem!important}}
#stacks_in_686 a{display:block}#stacks_in_686 img{}

#stacks_in_686 {
	border: solid rgba(102, 102, 102, 1.00);
	border-width:  1px;
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .95);
	
	
	
}

.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: 0px;
}

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






/* Solid colour fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
	background: rgba(0, 0, 0, 1.00);
}
















.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(0, 0, 0, 1.00);
	background: rgba(255, 255, 255, 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: 'Načítám obsah...';
	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_687 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}


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

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

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

#topBoxTriggerRegionstacks_in_687:hover #topBoxIndicatorIconstacks_in_687 {
	opacity: 0.90;
}





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


#topBoxTriggerRegionstacks_in_687 #topBoxTriggerContentstacks_in_687 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_687 #topBoxTriggerContentstacks_in_687 img {
	display: block;
	margin: 0 auto;
}

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

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

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

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

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

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

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

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

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



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


#topBoxContentWrapperstacks_in_687 {
	display: none;
}







#stacks_in_661 p,#stacks_in_661 div{margin-bottom:0}@media only screen and (min-width:0px){#stacks_in_661{}}
@media only screen and (max-width:480.00px){#stacks_in_661,#stacks_in_661 div,#stacks_in_661 p,#stacks_in_661 ol,#stacks_in_661 ul li,#stacks_in_661 ol li,#stacks_in_661 ol,#stacks_in_661 dl{font-size:0.90rem!important}}@media only screen and (min-width:480.00px) and (max-width:640.00px){#stacks_in_661,#stacks_in_661 div,#stacks_in_661 p,#stacks_in_661 ol,#stacks_in_661 ul li,#stacks_in_661 ol li,#stacks_in_661 ol,#stacks_in_661 dl{font-size:0.90rem!important}}@media only screen and (min-width:640.00px) and (max-width:2000.00px){#stacks_in_661,#stacks_in_661 div,#stacks_in_661 p,#stacks_in_661 ol,#stacks_in_661 ul li,#stacks_in_661 ol li,#stacks_in_661 ol,#stacks_in_661 dl{font-size:0.90rem!important}}@media only screen and (min-width:2000.00px){#stacks_in_661,#stacks_in_661 div,#stacks_in_661 p,#stacks_in_661 ol,#stacks_in_661 ul li,#stacks_in_661 ol li,#stacks_in_661 ol,#stacks_in_661 dl{font-size:0.90rem!important}}

#stacks_in_661 {
	margin: 5px 0px 0px 0px;
}
@media only screen and (min-width:0px){#stacks_in_667{}}
@media only screen and (max-width:480.00px){#stacks_in_667,#stacks_in_667 div,#stacks_in_667 p,#stacks_in_667 ol,#stacks_in_667 ul li,#stacks_in_667 ol li,#stacks_in_667 ol,#stacks_in_667 dl{font-size:0.90rem!important}}@media only screen and (min-width:480.00px) and (max-width:640.00px){#stacks_in_667,#stacks_in_667 div,#stacks_in_667 p,#stacks_in_667 ol,#stacks_in_667 ul li,#stacks_in_667 ol li,#stacks_in_667 ol,#stacks_in_667 dl{font-size:0.90rem!important}}@media only screen and (min-width:640.00px) and (max-width:2000.00px){#stacks_in_667,#stacks_in_667 div,#stacks_in_667 p,#stacks_in_667 ol,#stacks_in_667 ul li,#stacks_in_667 ol li,#stacks_in_667 ol,#stacks_in_667 dl{font-size:0.90rem!important}}@media only screen and (min-width:2000.00px){#stacks_in_667,#stacks_in_667 div,#stacks_in_667 p,#stacks_in_667 ol,#stacks_in_667 ul li,#stacks_in_667 ol li,#stacks_in_667 ol,#stacks_in_667 dl{font-size:0.90rem!important}}
#stacks_in_792 a{display:block}#stacks_in_792 img{}

#stacks_in_792 {
	border: solid rgba(102, 102, 102, 1.00);
	border-width:  1px;
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .95);
	
	
	
}

.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: 0px;
}

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






/* Solid colour fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
	background: rgba(0, 0, 0, 1.00);
}
















.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(0, 0, 0, 1.00);
	background: rgba(255, 255, 255, 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: 'Načítám obsah...';
	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_793 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}


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

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

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

#topBoxTriggerRegionstacks_in_793:hover #topBoxIndicatorIconstacks_in_793 {
	opacity: 0.90;
}





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


#topBoxTriggerRegionstacks_in_793 #topBoxTriggerContentstacks_in_793 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_793 #topBoxTriggerContentstacks_in_793 img {
	display: block;
	margin: 0 auto;
}

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

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

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

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

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

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

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

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

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



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


#topBoxContentWrapperstacks_in_793 {
	display: none;
}







@media only screen and (min-width:0px){#stacks_in_794{}}
@media only screen and (max-width:480.00px){#stacks_in_794,#stacks_in_794 div,#stacks_in_794 p,#stacks_in_794 ol,#stacks_in_794 ul li,#stacks_in_794 ol li,#stacks_in_794 ol,#stacks_in_794 dl{font-size:0.90rem!important}}@media only screen and (min-width:480.00px) and (max-width:640.00px){#stacks_in_794,#stacks_in_794 div,#stacks_in_794 p,#stacks_in_794 ol,#stacks_in_794 ul li,#stacks_in_794 ol li,#stacks_in_794 ol,#stacks_in_794 dl{font-size:0.90rem!important}}@media only screen and (min-width:640.00px) and (max-width:2000.00px){#stacks_in_794,#stacks_in_794 div,#stacks_in_794 p,#stacks_in_794 ol,#stacks_in_794 ul li,#stacks_in_794 ol li,#stacks_in_794 ol,#stacks_in_794 dl{font-size:0.90rem!important}}@media only screen and (min-width:2000.00px){#stacks_in_794,#stacks_in_794 div,#stacks_in_794 p,#stacks_in_794 ol,#stacks_in_794 ul li,#stacks_in_794 ol li,#stacks_in_794 ol,#stacks_in_794 dl{font-size:0.90rem!important}}

#stacks_in_794 {
	margin: 5px 0px 0px 0px;
}
@media only screen and (min-width:0px){#stacks_in_797{}}
@media only screen and (max-width:480.00px){#stacks_in_797,#stacks_in_797 div,#stacks_in_797 p,#stacks_in_797 ol,#stacks_in_797 ul li,#stacks_in_797 ol li,#stacks_in_797 ol,#stacks_in_797 dl{font-size:0.90rem!important}}@media only screen and (min-width:480.00px) and (max-width:640.00px){#stacks_in_797,#stacks_in_797 div,#stacks_in_797 p,#stacks_in_797 ol,#stacks_in_797 ul li,#stacks_in_797 ol li,#stacks_in_797 ol,#stacks_in_797 dl{font-size:0.90rem!important}}@media only screen and (min-width:640.00px) and (max-width:2000.00px){#stacks_in_797,#stacks_in_797 div,#stacks_in_797 p,#stacks_in_797 ol,#stacks_in_797 ul li,#stacks_in_797 ol li,#stacks_in_797 ol,#stacks_in_797 dl{font-size:0.90rem!important}}@media only screen and (min-width:2000.00px){#stacks_in_797,#stacks_in_797 div,#stacks_in_797 p,#stacks_in_797 ol,#stacks_in_797 ul li,#stacks_in_797 ol li,#stacks_in_797 ol,#stacks_in_797 dl{font-size:0.90rem!important}}
#stacks_in_616_1 > .row{padding-top:3.00rem;padding-bottom:3.00rem}#stacks_in_616_1 > .row.collapse{padding-left:0;padding-right:0}#stacks_in_616_1 > .row.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_616_1 > .row > .maxwidth{max-width:500px}#stacks_in_616_1 > .hide-overflow{overflow:hidden !important}


#stacks_in_616_1 {
	background-color: rgba(51, 51, 51, 1.00);
}

#stacks_in_616_2 > .row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_616_2 > .row > .columns{margin-top:1.00rem}#stacks_in_616_2 > .row > .columns:not(:first-child):before{content:" ";margin:0 -0.9375rem;position:absolute;top:0px;bottom:0px;width:1px;background:rgba(154, 154, 154, 1.00)}@media only screen and (max-width:40em){.small-12:before{display:none}}@media only screen and (min-width:40.063em) and (max-width:62.5em){.medium-12:before{display:none}}@media only screen and (min-width:62.563em){.large-12:before{display:none}}

  

   #stacks_in_616_6 p,#stacks_in_616_6 div,#stacks_in_616_6 ul,#stacks_in_616_6 ol,#stacks_in_616_6 dl{color:#9A9A9A;line-height:1.60;font-size:0.90rem;letter-spacing:0.00rem;word-spacing:0.00rem}#stacks_in_616_6 a{color:#FFFFFF}#stacks_in_616_6 a:hover{color:#FFFFFF}    

  
 #stacks_in_616_10 h1,#stacks_in_616_10 h2,#stacks_in_616_10 h3,#stacks_in_616_10 h4,#stacks_in_616_10 h5,#stacks_in_616_10 h6,#stacks_in_616_10 div{color:#988673;font-size:1.10rem;font-weight:700}#stacks_in_616_10 h1 a,#stacks_in_616_10 h2 a,#stacks_in_616_10 h3 a,#stacks_in_616_10 h4 a,#stacks_in_616_10 h5 a,#stacks_in_616_10 h6 a,#stacks_in_616_10 div a{color:#988673;font-size:1.10rem}#stacks_in_616_10 h1 a:hover,#stacks_in_616_10 h2 a:hover,#stacks_in_616_10 h3 a:hover,#stacks_in_616_10 h4 a:hover,#stacks_in_616_10 h5 a:hover,#stacks_in_616_10 h6 a:hover,#stacks_in_616_10 div a:hover{color:#726456}@media only screen and (min-width:40.063em){#stacks_in_616_10 h1 a,#stacks_in_616_10 h2 a,#stacks_in_616_10 h3 a,#stacks_in_616_10 h4 a,#stacks_in_616_10 h5 a,#stacks_in_616_10 h6 a,#stacks_in_616_10 div a{font-size:0.90rem}}@media only screen and (min-width:40.063em){#stacks_in_616_10 h1,#stacks_in_616_10 h2,#stacks_in_616_10 h3,#stacks_in_616_10 h4,#stacks_in_616_10 h5,#stacks_in_616_10 h6,#stacks_in_616_10 div{font-size:0.90rem}}#stacks_in_616_10 small,#stacks_in_616_10 small div{font-size:60%;color:#988673}   #stacks_in_616_10 .tb-margin-collapse{margin-top:0!important;margin-bottom:0!important}            
   #stacks_in_616_12 p,#stacks_in_616_12 div,#stacks_in_616_12 ul,#stacks_in_616_12 ol,#stacks_in_616_12 dl{color:#9A9A9A;line-height:1.60;font-size:0.80rem;letter-spacing:0.00rem;word-spacing:0.00rem}#stacks_in_616_12 a{color:#FFFFFF}#stacks_in_616_12 a:hover{color:#FFFFFF}    

  

   #stacks_in_616_19 p,#stacks_in_616_19 div,#stacks_in_616_19 ul,#stacks_in_616_19 ol,#stacks_in_616_19 dl{color:#9A9A9A;line-height:1.60;font-size:0.90rem;letter-spacing:0.00rem;word-spacing:0.00rem}#stacks_in_616_19 a{color:#FFFFFF}#stacks_in_616_19 a:hover{color:#FFFFFF}    

  
 #stacks_in_616_23 h1,#stacks_in_616_23 h2,#stacks_in_616_23 h3,#stacks_in_616_23 h4,#stacks_in_616_23 h5,#stacks_in_616_23 h6,#stacks_in_616_23 div{color:#988673;font-size:1.10rem;font-weight:700}#stacks_in_616_23 h1 a,#stacks_in_616_23 h2 a,#stacks_in_616_23 h3 a,#stacks_in_616_23 h4 a,#stacks_in_616_23 h5 a,#stacks_in_616_23 h6 a,#stacks_in_616_23 div a{color:#988673;font-size:1.10rem}#stacks_in_616_23 h1 a:hover,#stacks_in_616_23 h2 a:hover,#stacks_in_616_23 h3 a:hover,#stacks_in_616_23 h4 a:hover,#stacks_in_616_23 h5 a:hover,#stacks_in_616_23 h6 a:hover,#stacks_in_616_23 div a:hover{color:#726456}@media only screen and (min-width:40.063em){#stacks_in_616_23 h1 a,#stacks_in_616_23 h2 a,#stacks_in_616_23 h3 a,#stacks_in_616_23 h4 a,#stacks_in_616_23 h5 a,#stacks_in_616_23 h6 a,#stacks_in_616_23 div a{font-size:0.90rem}}@media only screen and (min-width:40.063em){#stacks_in_616_23 h1,#stacks_in_616_23 h2,#stacks_in_616_23 h3,#stacks_in_616_23 h4,#stacks_in_616_23 h5,#stacks_in_616_23 h6,#stacks_in_616_23 div{font-size:0.90rem}}#stacks_in_616_23 small,#stacks_in_616_23 small div{font-size:60%;color:#988673}   #stacks_in_616_23 .tb-margin-collapse{margin-top:0!important;margin-bottom:0!important}            
   #stacks_in_616_25 p,#stacks_in_616_25 div,#stacks_in_616_25 ul,#stacks_in_616_25 ol,#stacks_in_616_25 dl{color:#9A9A9A;line-height:1.60;font-size:0.80rem;letter-spacing:0.00rem;word-spacing:0.00rem}#stacks_in_616_25 a{color:#FFFFFF}#stacks_in_616_25 a:hover{color:#FFFFFF}    

  

   #stacks_in_616_32 p,#stacks_in_616_32 div,#stacks_in_616_32 ul,#stacks_in_616_32 ol,#stacks_in_616_32 dl{color:#9A9A9A;line-height:1.60;font-size:0.90rem;letter-spacing:0.00rem;word-spacing:0.00rem}#stacks_in_616_32 a{color:#FFFFFF}#stacks_in_616_32 a:hover{color:#FFFFFF}    

  
 #stacks_in_616_36 h1,#stacks_in_616_36 h2,#stacks_in_616_36 h3,#stacks_in_616_36 h4,#stacks_in_616_36 h5,#stacks_in_616_36 h6,#stacks_in_616_36 div{color:#988673;font-size:1.10rem;font-weight:700}#stacks_in_616_36 h1 a,#stacks_in_616_36 h2 a,#stacks_in_616_36 h3 a,#stacks_in_616_36 h4 a,#stacks_in_616_36 h5 a,#stacks_in_616_36 h6 a,#stacks_in_616_36 div a{color:#988673;font-size:1.10rem}#stacks_in_616_36 h1 a:hover,#stacks_in_616_36 h2 a:hover,#stacks_in_616_36 h3 a:hover,#stacks_in_616_36 h4 a:hover,#stacks_in_616_36 h5 a:hover,#stacks_in_616_36 h6 a:hover,#stacks_in_616_36 div a:hover{color:#726456}@media only screen and (min-width:40.063em){#stacks_in_616_36 h1 a,#stacks_in_616_36 h2 a,#stacks_in_616_36 h3 a,#stacks_in_616_36 h4 a,#stacks_in_616_36 h5 a,#stacks_in_616_36 h6 a,#stacks_in_616_36 div a{font-size:0.90rem}}@media only screen and (min-width:40.063em){#stacks_in_616_36 h1,#stacks_in_616_36 h2,#stacks_in_616_36 h3,#stacks_in_616_36 h4,#stacks_in_616_36 h5,#stacks_in_616_36 h6,#stacks_in_616_36 div{font-size:0.90rem}}#stacks_in_616_36 small,#stacks_in_616_36 small div{font-size:60%;color:#988673}   #stacks_in_616_36 .tb-margin-collapse{margin-top:0!important;margin-bottom:0!important}            
   #stacks_in_616_38 p,#stacks_in_616_38 div,#stacks_in_616_38 ul,#stacks_in_616_38 ol,#stacks_in_616_38 dl{color:#9A9A9A;line-height:1.60;font-size:0.80rem;letter-spacing:0.00rem;word-spacing:0.00rem}#stacks_in_616_38 a{color:#FFFFFF}#stacks_in_616_38 a:hover{color:#FFFFFF}    

  

   #stacks_in_616_45 p,#stacks_in_616_45 div,#stacks_in_616_45 ul,#stacks_in_616_45 ol,#stacks_in_616_45 dl{color:#9A9A9A;line-height:1.60;font-size:0.90rem;letter-spacing:0.00rem;word-spacing:0.00rem}#stacks_in_616_45 a{color:#FFFFFF}#stacks_in_616_45 a:hover{color:#FFFFFF}    

  
 #stacks_in_616_49 h1,#stacks_in_616_49 h2,#stacks_in_616_49 h3,#stacks_in_616_49 h4,#stacks_in_616_49 h5,#stacks_in_616_49 h6,#stacks_in_616_49 div{color:#988673;font-size:1.10rem;font-weight:700}#stacks_in_616_49 h1 a,#stacks_in_616_49 h2 a,#stacks_in_616_49 h3 a,#stacks_in_616_49 h4 a,#stacks_in_616_49 h5 a,#stacks_in_616_49 h6 a,#stacks_in_616_49 div a{color:#988673;font-size:1.10rem}#stacks_in_616_49 h1 a:hover,#stacks_in_616_49 h2 a:hover,#stacks_in_616_49 h3 a:hover,#stacks_in_616_49 h4 a:hover,#stacks_in_616_49 h5 a:hover,#stacks_in_616_49 h6 a:hover,#stacks_in_616_49 div a:hover{color:#726456}@media only screen and (min-width:40.063em){#stacks_in_616_49 h1 a,#stacks_in_616_49 h2 a,#stacks_in_616_49 h3 a,#stacks_in_616_49 h4 a,#stacks_in_616_49 h5 a,#stacks_in_616_49 h6 a,#stacks_in_616_49 div a{font-size:0.90rem}}@media only screen and (min-width:40.063em){#stacks_in_616_49 h1,#stacks_in_616_49 h2,#stacks_in_616_49 h3,#stacks_in_616_49 h4,#stacks_in_616_49 h5,#stacks_in_616_49 h6,#stacks_in_616_49 div{font-size:0.90rem}}#stacks_in_616_49 small,#stacks_in_616_49 small div{font-size:60%;color:#988673}   #stacks_in_616_49 .tb-margin-collapse{margin-top:0!important;margin-bottom:0!important}            
   #stacks_in_616_51 p,#stacks_in_616_51 div,#stacks_in_616_51 ul,#stacks_in_616_51 ol,#stacks_in_616_51 dl{color:#9A9A9A;line-height:1.60;font-size:0.80rem;letter-spacing:0.00rem;word-spacing:0.00rem}#stacks_in_616_51 a{color:#FFFFFF}#stacks_in_616_51 a:hover{color:#FFFFFF}    
