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

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

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

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

/* fall */
.nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall {
	-webkit-perspective: 1000px;
	   -moz-perspective: 1000px;
	        perspective: 1000px;
}
.nivo-lightbox-effect-fall .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	    -ms-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;
	-webkit-transform: translateZ(300px);
	   -moz-transform: translateZ(300px);
	    -ms-transform: translateZ(300px);
	        transform: translateZ(300px);
}
.nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
	    -ms-transform: translateZ(0);
	        transform: translateZ(0);
}.com_joeworkman_stacks_fontawesome_stack .jw-wrapper{margin:0;text-align:left}.com_joeworkman_stacks_fontawesome_stack .jw-wrapper.jw-center{text-align:center}.com_joeworkman_stacks_fontawesome_stack .jw-wrapper.jw-right{text-align:right}.com_joeworkman_stacks_fontawesome_stack i.fa,.com_joeworkman_stacks_fontawesome_stack .fa-stack{-webkit-transition:color 300ms ease 0s;-moz-transition:color 300ms ease 0s;transition:color 300ms ease 0s}.com_joeworkman_stacks_fontawesome_stack i.fa.fa-spin,.com_joeworkman_stacks_fontawesome_stack .fa-stack.fa-spin{padding:.2em;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.com_joeworkman_stacks_fontawesome_stack i.fa.fa-rotate-45,.com_joeworkman_stacks_fontawesome_stack .fa-stack.fa-rotate-45{padding:.2em;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.com_joeworkman_stacks_fontawesome_stack i.fa.fa-rotate-135,.com_joeworkman_stacks_fontawesome_stack .fa-stack.fa-rotate-135{padding:.2em;-webkit-transform:rotate(135deg);-moz-transform:rotate(135deg);-ms-transform:rotate(135deg);-o-transform:rotate(135deg);transform:rotate(135deg)}.com_joeworkman_stacks_fontawesome_stack i.fa.fa-rotate-225,.com_joeworkman_stacks_fontawesome_stack .fa-stack.fa-rotate-225{padding:.2em;-webkit-transform:rotate(225deg);-moz-transform:rotate(225deg);-ms-transform:rotate(225deg);-o-transform:rotate(225deg);transform:rotate(225deg)}.com_joeworkman_stacks_fontawesome_stack i.fa.fa-rotate-315,.com_joeworkman_stacks_fontawesome_stack .fa-stack.fa-rotate-315{padding:.2em;-webkit-transform:rotate(315deg);-moz-transform:rotate(315deg);-ms-transform:rotate(315deg);-o-transform:rotate(315deg);transform:rotate(315deg)}.com_joeworkman_stacks_fontawesome_stack .fa-stack.fa-border{padding:0}.com_joeworkman_stacks_fontawesome_stack a{text-decoration:none}
    .theme-version{display:block}.theme-version.number-110,#stacks_in_148_page0{display:none}.stacks_out{overflow:visible!important}.stacks_in{overflow:visible}::selection{ color:rgba(255, 255, 255, 1.00);background:rgba(218, 219, 217, 1.00);}::-moz-selection{ color:rgba(255, 255, 255, 1.00);background:rgba(218, 219, 217, 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{-ms-interpolation-mode:bicubic;image-rendering:optimizeQuality;max-width:none!important}.vegas-overlay,.vegas-background{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none} .hide-overflow{overflow:hidden!important} .columns>.equalizer.small-up{height:100%}@media only screen and (min-width:40.063em){.columns>.equalizer.medium-up{height:100%}}@media only screen and (min-width:62.563em){.columns>.equalizer.large-up{height:100%}} @media only screen and (max-width:40em){.row.collapse-small>.columns{padding-left:0;padding-right:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){.row.collapse-medium>.columns{padding-left:0;padding-right:0}}@media only screen and (max-width:40em){.row .row.collapse-small{margin:0;width:auto}.row .row.collapse-small::before,.row .row.collapse-small::after{content:" ";display:table}.row .row.collapse-small::after{clear:both}}@media only screen and (min-width:40.063em) and (max-width:62.5em){.row .row.collapse-medium{margin:0;width:auto}.row .row.collapse-medium::before,.row .row.collapse-medium::after{content:" ";display:table}.row .row.collapse-medium::after{clear:both}}.column,.columns{padding-left:0.94rem;padding-right:0.94rem}.row .row{margin:0 -0.94rem}.row.divider>.columns:not(:first-child):before{content:" ";margin:0 -0.94rem;position:absolute}@media only screen and (max-width:40em){.row.divider-medium-up>.columns::before,.row.divider-large-up>.columns::before,.small-12::before{display:none}}@media only screen and (min-width:40.063em) and (max-width:62.5em){.row.divider-large-up>.columns::before,.medium-12::before{display:none}}@media only screen and (min-width:62.563em){.large-12:before{display:none}}.floating-body.radius{border-radius:3px}.floating-body.radius>.columns>.stacks_out:first-child>.stacks_in>.top-bar-wrapper:not(.fixed){border-top-right-radius:3px;border-top-left-radius:3px}.floating-body .top-bar-wrapper.contain-to-grid.fixed{max-width:1000px;left:50%;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-ms-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%)}.radius{background-clip:padding-box}img{color:#FFFFFF}img.radius{border-radius:3px}img.round{border-radius:1000px}.row{ max-width:1000px!important;}.row.max-edge{max-width:100%!important}body{color:rgba(34, 34, 34, 1.00)}a{color:rgba(58, 163, 79, 1.00);text-decoration:none;font-weight:inherit}a:hover{color:rgba(34, 97, 48, 1.00)}a.close,a.close-reveal-modal{text-decoration:none}.alt{color:rgba(255, 255, 255, 1.00)}.alt a{color:rgba(58, 163, 79, 1.00);text-decoration:none}.alt a:hover{color:rgba(34, 97, 48, 1.00)}.alt small{color:rgba(255, 255, 255, 1.00)}h1,h2,h3,h4,h5,h6{color:rgba(34, 34, 34, 1.00);margin-top:0}h1.alt,h2.alt,h3.alt,h4.alt,h5.alt,h6.alt{color:rgba(255, 255, 255, 1.00)}h1.subheader,h2.subheader,h3.subheader,h4.subheader,h5.subheader,h6.subheader{color:rgba(44, 44, 44, 1.00)}h1.subheader.alt,h2.subheader.alt,h3.subheader.alt,h4.subheader.alt,h5.subheader.alt,h6.subheader.alt{color:rgba(255, 255, 255, 1.00)}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-size:30%;color:rgba(44, 44, 44, 1.00)}h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:inherit!important}h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover,h6 a:hover{opacity:.8;color:inherit!important}h1{font-size:2.12rem}h2{font-size:1.69rem}h3{font-size:1.38rem}h4{font-size:1.12rem}h5{font-size:1.12rem}h6{font-size:1.00rem}p,ul li,ol li{font-size:1.00rem}@media only screen and (min-width:40.063em){h1{font-size:2.75rem}h2{font-size:2.31rem}h3{font-size:1.69rem}h4{font-size:1.44rem}h5{font-size:1.12rem}h6{font-size:1.00rem}p,ul li,ol li{font-size:1.00rem}}code{color:rgba(204, 55, 30, 1.00)}hr,blockquote,abbr,acronym,.vcard{border-color:rgba(221, 221, 221, 1.00)}hr.alt,blockquote.alt,abbr.alt,acronym.alt,.vcard.alt{border-color:rgba(221, 221, 221, 1.00)}hr.primary,blockquote.primary,abbr.primary,acronym.primary,.vcard.primary{border-color:rgba(218, 219, 217, 1.00)}hr.primary,blockquote.primary,abbr.primary,acronym.primary,.vcard.primary{border-color:rgba(218, 219, 217, 1.00)}hr.secondary,blockquote.secondary,abbr.secondary,acronym.secondary,.vcard.secondary{border-color:rgba(231, 231, 231, 1.00)}hr.swatch1,blockquote.swatch1,abbr.swatch1,acronym.swatch1,.vcard.swatch1{border-color:rgba(34, 34, 34, 1.00)}hr.swatch2,blockquote.swatch2,abbr.swatch2,acronym.swatch2,.vcard.swatch2{border-color:rgba(34, 34, 34, 1.00)}
hr.swatch3,blockquote.swatch3,abbr.swatch3,acronym.swatch3,.vcard.swatch3{border-color:rgba(34, 34, 34, 1.00)}hr.swatch4,blockquote.swatch4,abbr.swatch4,acronym.swatch4,.vcard.swatch4{border-color:rgba(248, 248, 248, 1.00)}hr.swatch5,blockquote.swatch5,abbr.swatch5,acronym.swatch5,.vcard.swatch5{border-color:rgba(248, 248, 248, 1.00)}hr.swatch6,blockquote.swatch6,abbr.swatch6,acronym.swatch6,.vcard.swatch6{border-color:rgba(248, 248, 248, 1.00)}blockquote,blockquote p{color:rgba(44, 44, 44, 1.00)}blockquote cite,blockquote cite a,blockquote p cite,blockquote p cite a{color:rgba(40, 40, 40, 1.00)}blockquote.alt,blockquote.alt p,blockquote p.alt,blockquote p.alt p{color:rgba(255, 255, 255, 1.00)}blockquote.alt cite,blockquote.alt cite a,blockquote.alt p cite,blockquote.alt p cite a,blockquote p.alt cite,blockquote p.alt cite a,blockquote p.alt p cite,blockquote p.alt p cite a{color:rgba(255, 255, 255, 1.00)}.flex-video{margin-bottom:0}.contain-to-grid .top-bar{max-width:1000px}.top-bar .top-bar-section ul li>a.button{background-color:rgba(218, 219, 217, 1.00);color:rgba(255, 255, 255, 1.00)}.top-bar .top-bar-section ul li>a.button:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(207, 208, 206, 1.00)}.top-bar .top-bar-section ul li>a.button.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.top-bar .top-bar-section ul li>a.button.secondary:hover{color:rgba(51, 51, 51, 1.00);background-color:rgba(219, 219, 219, 1.00)}.top-bar .top-bar-section ul li>a.button.alert{background-color:rgba(240, 65, 36, 1.00)}.top-bar .top-bar-section ul li>a.button.alert:hover{background-color:rgba(228, 61, 34, 1.00)}.top-bar .top-bar-section ul li>a.button.success{background-color:rgba(67, 172, 106, 1.00)}.top-bar .top-bar-section ul li>a.button.success:hover{background-color:rgba(63, 163, 100, 1.00)}.top-bar .top-bar-section ul li>a.button.radius{border-radius:3px}.top-bar-wrapper.fn-scheme-primary{background-color:rgba(218, 219, 217, 1.00);color:rgba(255, 255, 255, 1.00)}.top-bar-wrapper.fn-scheme-primary ul:not(.title-area) ul.dropdown{background-color:rgba(218, 219, 217, 1.00)}.top-bar-wrapper.fn-scheme-primary .site-title,.top-bar-wrapper.fn-scheme-primary .site-title small,.top-bar-wrapper.fn-scheme-primary a:not(.button){color:rgba(255, 255, 255, 1.00)!important}.top-bar-wrapper.fn-scheme-primary .top-bar .toggle-topbar.menu-icon a span::after{box-shadow:0 0 0 1px rgba(255, 255, 255, 1.00),0 7px 0 1px rgba(255, 255, 255, 1.00),0 14px 0 1px rgba(255, 255, 255, 1.00)}.top-bar-wrapper.fn-scheme-secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.top-bar-wrapper.fn-scheme-secondary ul:not(.title-area) ul.dropdown{background-color:rgba(231, 231, 231, 1.00)}.top-bar-wrapper.fn-scheme-secondary .site-title,.top-bar-wrapper.fn-scheme-secondary .site-title small,.top-bar-wrapper.fn-scheme-secondary a:not(.button){color:rgba(51, 51, 51, 1.00)!important}.top-bar-wrapper.fn-scheme-secondary .top-bar .toggle-topbar.menu-icon a span::after{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(218, 219, 217, 1.00);color:rgba(255, 255, 255, 1.00);border-color:rgba(207, 208, 206, 1.00)}.alert-box a:not(.close){color:rgba(255, 255, 255, 1.00);text-decoration:underline}.alert-box.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00);border-color:rgba(219, 219, 219, 1.00)}.alert-box.alert{background-color:rgba(240, 65, 36, 1.00);border-color:rgba(228, 61, 34, 1.00)}.alert-box.success{background-color:rgba(67, 172, 106, 1.00);border-color:rgba(63, 163, 100, 1.00)}.alert-box.warning{background-color:rgba(240, 138, 36, 1.00);border-color:rgba(228, 131, 34, 1.00)}.alert-box.info{background-color:rgba(160, 211, 232, 1.00);color:rgba(76, 76, 76, 1.00);border-color:rgba(152, 200, 220, 1.00)}.alert-box.radius{border-radius:3px}.breadcrumbs{background-color:rgba(231, 231, 231, 1.00);border-color:rgba(219, 219, 219, 1.00);color:rgba(51, 51, 51, 1.00)}.breadcrumbs .current a{color:rgba(51, 51, 51, 1.00)}.breadcrumbs.radius{border-radius:3px}.breadcrumbs header{display:inline}.breadcrumbs .fa{font-size:1em}.breadcrumbs .unavailable{color:rgba(51, 51, 51, 1.00)}.breadcrumbs li:before{color:rgba(76, 76, 76, 1.00)}.breadcrumbs *:first-child:before{margin:0 .75rem}.button{background-color:rgba(218, 219, 217, 1.00);color:rgba(255, 255, 255, 1.00)}.button:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(207, 208, 206, 1.00)}.button.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.button.secondary:hover{color:rgba(51, 51, 51, 1.00);background-color:rgba(219, 219, 219, 1.00)}.button.alert{background-color:rgba(240, 65, 36, 1.00)}.button.alert:hover{background-color:rgba(228, 61, 34, 1.00)}.button.success{background-color:rgba(67, 172, 106, 1.00)}.button.success:hover{background-color:rgba(63, 163, 100, 1.00)}.button.radius{border-radius:3px}.button.ghost{background-color:transparent;border-width:1px;border-color:rgba(218, 219, 217, 1.00);color:rgba(218, 219, 217, 1.00)}.button.ghost:hover{color:rgba(255, 255, 255, 1.00);border-color:rgba(207, 208, 206, 1.00);background-color:rgba(207, 208, 206, 1.00)}.button.ghost.secondary{border-color:rgba(231, 231, 231, 1.00);color:rgba(231, 231, 231, 1.00)}.button.ghost.secondary:hover{color:rgba(51, 51, 51, 1.00);border-color:rgba(219, 219, 219, 1.00);background-color:rgba(219, 219, 219, 1.00)}.button.ghost.alert{border-color:rgba(240, 65, 36, 1.00);color:rgba(240, 65, 36, 1.00)}.button.ghost.alert:hover{color:rgba(255, 255, 255, 1.00);border-color:rgba(228, 61, 34, 1.00);background-color:rgba(228, 61, 34, 1.00)}.button.ghost.success{border-color:rgba(67, 172, 106, 1.00);color:rgba(67, 172, 106, 1.00)}.button.ghost.success:hover{color:rgba(255, 255, 255, 1.00);border-color:rgba(63, 163, 100, 1.00);background-color:rgba(63, 163, 100, 1.00)}.split.button.radius span{border-top-right-radius:3px;border-bottom-right-radius:3px}.split.button span::after{border-top-color:rgba(255, 255, 255, 1.00)}.split.button.secondary span::after{border-top-color:rgba(51, 51, 51, 1.00)}.button-group.radius>*:first-child,.button-group.radius>*:first-child>a,.button-group.radius>*:first-child>button,.button-group.radius>*:first-child>.button{border-bottom-left-radius:3px;border-top-left-radius:3px}.button-group.radius>*:last-child,.button-group.radius>*:last-child>a,.button-group.radius>*:last-child>button,.button-group.radius>*:last-child>.button{border-top-right-radius:3px;border-bottom-right-radius:3px}.button-group.stack>li .button,.button-group.stack-for-small>li .button{border-top:1px solid rgba(255,255,255,0.5)}.icon-bar{background-color:rgba(218, 219, 217, 1.00);color:rgba(255, 255, 255, 1.00)}.icon-bar>.item{cursor:pointer;color:rgba(255, 255, 255, 1.00)}.icon-bar>.item label,.icon-bar>.item i{color:rgba(255, 255, 255, 1.00)}
.icon-bar>.item:hover{color:rgba(255, 255, 255, 1.00);background-color:rgba(207, 208, 206, 1.00)}.icon-bar.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.icon-bar.secondary>.item{color:rgba(51, 51, 51, 1.00)}.icon-bar.secondary>.item label,.icon-bar.secondary>.item i{color:rgba(51, 51, 51, 1.00)}.icon-bar.secondary>.item:hover{background-color:rgba(219, 219, 219, 1.00);color:rgba(51, 51, 51, 1.00)}form[data-abide] .error label{color:rgba(240, 65, 36, 1.00)}form[data-abide] .error small.error,form[data-abide] .error span.error{background-color:rgba(240, 65, 36, 1.00);color:rgba(255, 255, 255, 1.00)}input[type="radio"]{margin-left:1px}form input[type="text"],form input[type="password"],form input[type="date"],form input[type="datetime"],form input[type="datetime-local"],form input[type="month"],form input[type="week"],form input[type="email"],form input[type="number"],form input[type="search"],form input[type="tel"],form input[type="time"],form input[type="url"],form textarea,form select{color:rgba(34, 34, 34, 1.00)}form input[type="text"]:focus,form input[type="password"]:focus,form input[type="date"]:focus,form input[type="datetime"]:focus,form input[type="datetime-local"]:focus,form input[type="month"]:focus,form input[type="week"]:focus,form input[type="email"]:focus,form input[type="number"]:focus,form input[type="search"]:focus,form input[type="tel"]:focus,form input[type="time"]:focus,form input[type="url"]:focus,form textarea:focus,form select:focus{border-color:rgba(218, 219, 217, 1.00)}form fieldset{border-color:rgba(221, 221, 221, 1.00)}form legend{background-color:#FFFFFF}form label{color:rgba(40, 40, 40, 1.00)}form.radius input[type="text"],form.radius input[type="password"],form.radius input[type="date"],form.radius input[type="datetime"],form.radius input[type="datetime-local"],form.radius input[type="month"],form.radius input[type="week"],form.radius input[type="email"],form.radius input[type="number"],form.radius input[type="search"],form.radius input[type="tel"],form.radius input[type="time"],form.radius input[type="url"],form.radius textarea,form.radius select,form.radius small.error{border-radius:3px}form.radius span.prefix,form.radius label.prefix{border-bottom-left-radius:3px;border-top-left-radius:3px}form.radius span.postfix,form.radius label.postfix{border-top-right-radius:3px;border-bottom-right-radius:3px}form.radius .input-group>*:first-child,form.radius .input-group>*:first-child *{border-bottom-left-radius:3px;border-top-left-radius:3px}form.radius .input-group>*:last-child,form.radius .input-group>*:last-child *{border-top-right-radius:3px;border-bottom-right-radius:3px}.range-slider{background-color:rgba(255, 255, 255, 1.00);border-color:rgba(225, 225, 225, 1.00)}.range-slider .range-slider-handle{background-color:rgba(218, 219, 217, 1.00)}.range-slider .range-slider-handle:hover{background-color:rgba(207, 208, 206, 1.00)}.range-slider .range-slider-active-segment{background-color:rgba(225, 225, 225, 1.00)}.range-slider.secondary{background-color:rgba(51, 51, 51, 1.00);border-color:rgba(21, 21, 21, 1.00)}.range-slider.secondary .range-slider-handle{background-color:rgba(231, 231, 231, 1.00)}.range-slider.secondary .range-slider-handle:hover{background-color:rgba(219, 219, 219, 1.00)}.range-slider.secondary .range-slider-active-segment{background-color:rgba(21, 21, 21, 1.00)}.slider-display{display:block;margin-top:20px}fieldset.switch label{background-color:#e6e6e6}fieldset.switch label::after{background-color:rgba(255, 255, 255, 1.00)}fieldset.switch input:checked+label{background-color:rgba(218, 219, 217, 1.00)}fieldset.switch.secondary label::after{background-color:rgba(51, 51, 51, 1.00)}fieldset.switch.secondary input:checked+label{background-color:rgba(231, 231, 231, 1.00)}fieldset.switch.alert input:checked+label{background-color:rgba(240, 65, 36, 1.00)}
fieldset.switch.success input:checked+label{background-color:rgba(67, 172, 106, 1.00)}.label{background-color:rgba(218, 219, 217, 1.00);color:rgba(255, 255, 255, 1.00);margin-bottom:0}.label.secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.label.alert{background-color:rgba(240, 65, 36, 1.00)}.label.success{background-color:rgba(67, 172, 106, 1.00)}.label.radius{border-radius:3px}.alert-box .close{opacity:.5}.slideshow-wrapper{min-height:50px;z-index:10}.orbit-container .orbit-bullets li{cursor:pointer;background:rgba(231, 231, 231, 1.00)}.orbit-container .orbit-bullets li.active,.orbit-container .orbit-bullets li:hover{background:rgba(218, 219, 217, 1.00)}.accordion .accordion-navigation>a{background-color:rgba(218, 219, 217, 1.00);color:rgba(255, 255, 255, 1.00)}.accordion .accordion-navigation>a:hover{background-color:rgba(207, 208, 206, 1.00)}.accordion .accordion-navigation>a.radius{border-radius:3px}.accordion .accordion-navigation>a.round{border-radius:1000px}.accordion .accordion-navigation.active>a{background-color:rgba(207, 208, 206, 1.00)}.accordion .accordion-navigation>.content{background-color:transparent!important}.accordion.secondary .accordion-navigation>a{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.accordion.secondary .accordion-navigation>a:hover{background-color:rgba(219, 219, 219, 1.00)}.accordion.secondary .accordion-navigation.active>a{background-color:rgba(219, 219, 219, 1.00)}.tabs li.tab-title>a{background-color:rgba(218, 219, 217, 1.00);color:rgba(255, 255, 255, 1.00)}.tabs li.tab-title>a:hover{background-color:rgba(207, 208, 206, 1.00)}.tabs li.tab-title.active>a{color:rgba(255, 255, 255, 1.00);background-color:rgba(207, 208, 206, 1.00)}.tabs.secondary li.tab-title>a{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.tabs.secondary li.tab-title>a:hover{background-color:rgba(219, 219, 219, 1.00)}.tabs.secondary li.tab-title.active>a{color:rgba(51, 51, 51, 1.00);background-color:rgba(219, 219, 219, 1.00)}.tabs.radius li.tab-title:first-child a{border-bottom-left-radius:3px;border-top-left-radius:3px}.tabs.radius li.tab-title:last-child a{border-top-right-radius:3px;border-bottom-right-radius:3px}.th.radius{border-radius:3px}.th:hover,.th:focus{box-shadow:0 0 6px 1px rgba(109, 109, 108, 1.00)}.f-dropdown,.f-dropdown.content{background-color:rgba(255, 255, 255, 1.00);border-color:rgba(204, 204, 204, 1.00);color:rgba(51, 51, 51, 1.00)}.f-dropdown::before,.f-dropdown.content::before{border-color:transparent transparent rgba(255, 255, 255, 1.00) transparent}.f-dropdown::after,.f-dropdown.content::after{border-color:transparent transparent rgba(204, 204, 204, 1.00) transparent}.f-dropdown li a,.f-dropdown.content li a{color:rgba(51, 51, 51, 1.00)}.f-dropdown li:hover,.f-dropdown.content li:hover{background-color:rgba(0,0,0,0.1)}.f-dropdown.radius,.f-dropdown.content.radius{border-radius:3px}.tooltip{border-radius:3px;background-color:rgba(51, 51, 51, 1.00);color:rgba(255, 255, 255, 1.00)}.panel{background-color:rgba(242, 242, 242, 1.00);border-color:rgba(219, 219, 219, 1.00)}.panel.radius{border-radius:3px}.panel p{color:rgba(34, 34, 34, 1.00)}.panel p a{color:rgba(58, 163, 79, 1.00)}.panel p.alt{color:rgba(255, 255, 255, 1.00)}.panel p.alt a{color:rgba(58, 163, 79, 1.00)}.panel p.alt a:hover{color:rgba(34, 97, 48, 1.00)}.panel p.alt small{color:rgba(255, 255, 255, 1.00)}.panel h1,.panel h2,.panel h3,.panel h4,.panel h5,.panel h6{color:rgba(34, 34, 34, 1.00)}.panel h1.alt,.panel h2.alt,.panel h3.alt,.panel h4.alt,.panel h5.alt,.panel h6.alt{color:rgba(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(44, 44, 44, 1.00)}.panel h1.subheader.alt,.panel h2.subheader.alt,.panel h3.subheader.alt,.panel h4.subheader.alt,.panel h5.subheader.alt,.panel h6.subheader.alt{color:rgba(255, 255, 255, 1.00)}.pricing-table.primary .title{background-color:rgba(218, 219, 217, 1.00);color:rgba(255, 255, 255, 1.00)}.pricing-table.primary .price{color:rgba(34, 34, 34, 1.00)}.pricing-table.primary .description{color:rgba(34, 34, 34, 1.00)}.pricing-table.primary .bullet-item{color:rgba(34, 34, 34, 1.00)}.pricing-table.secondary .title{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.pricing-table.secondary .price{color:rgba(34, 34, 34, 1.00)}.pricing-table.secondary .description{color:rgba(34, 34, 34, 1.00)}.pricing-table.secondary .bullet-item{color:rgba(34, 34, 34, 1.00)}.pricing-table.radius{border-radius:3px}.pricing-table.radius .title{border-top-right-radius:3px;border-top-left-radius:3px}.pricing-table.radius .cta-button{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.side-nav li a:not(.button){color:rgba(58, 163, 79, 1.00)}.side-nav li a:not(.button):hover{background-color:rgba(243, 243, 243, 1.00);color:rgba(34, 97, 48, 1.00)}.side-nav li.active>a:first-child:not(.button){color:rgba(58, 163, 79, 1.00)}.side-nav li.active:not(.has-dropdown) a:not(.button){color:rgba(49, 138, 67, 1.00)}
.side-nav header{color:rgba(34, 34, 34, 1.00);margin-top:1rem;margin-bottom:.5rem}.side-nav label{color:rgba(40, 40, 40, 1.00)}.side-nav li.divider{border-top-color:rgba(221, 221, 221, 1.00)}.side-nav.alt li a:not(.button){color:rgba(58, 163, 79, 1.00)}.side-nav.alt li a:not(.button):hover{background-color:rgba(243, 243, 243, 1.00);color:rgba(34, 97, 48, 1.00)}.side-nav.alt li.active>a:first-child:not(.button){color:rgba(58, 163, 79, 1.00)}.side-nav.alt li.active:not(.has-dropdown) a:not(.button){color:rgba(49, 138, 67, 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(218, 219, 217, 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(207, 208, 206, 1.00)}.sub-nav dt.active a:not(.button),.sub-nav dd.active a:not(.button),.sub-nav li.active a:not(.button){color:rgba(255, 255, 255, 1.00);background-color:rgba(218, 219, 217, 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(207, 208, 206, 1.00)}.sub-nav dt.active a:not(.button).secondary,.sub-nav dd.active a:not(.button).secondary,.sub-nav li.active a:not(.button).secondary{color:rgba(51, 51, 51, 1.00);background-color:rgba(231, 231, 231, 1.00)}.sub-nav dt.active a:not(.button).secondary:hover,.sub-nav dd.active a:not(.button).secondary:hover,.sub-nav li.active a:not(.button).secondary:hover{background-color:rgba(219, 219, 219, 1.00)}.sub-nav.secondary dt a:not(.button),.sub-nav.secondary dd a:not(.button),.sub-nav.secondary li a:not(.button){color:rgba(231, 231, 231, 1.00)}.sub-nav.secondary dt a:not(.button):hover,.sub-nav.secondary dd a:not(.button):hover,.sub-nav.secondary li a:not(.button):hover{color:rgba(219, 219, 219, 1.00)}.sub-nav.secondary dt.active a:not(.button),.sub-nav.secondary dd.active a:not(.button),.sub-nav.secondary li.active a:not(.button){color:rgba(51, 51, 51, 1.00);background-color:rgba(231, 231, 231, 1.00)}.sub-nav.secondary dt.active a:not(.button):hover,.sub-nav.secondary dd.active a:not(.button):hover,.sub-nav.secondary li.active a:not(.button):hover{background-color:rgba(219, 219, 219, 1.00)}.reveal-modal{z-index:9999;background-color:rgba(255, 255, 255, 1.00);color:rgba(51, 51, 51, 1.00);border:0}.reveal-modal.fullscreen{position:fixed;top:0!important;width:100vw;height:100vh;overflow-y:scroll}.reveal-modal.fullscreen .close-reveal-modal{position:fixed}.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 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(58, 163, 79, 1.00)}nav.inline-nav ul.inline-list.alt li.active{border-bottom-color:rgba(58, 163, 79, 1.00)}.clearing-blackout{background-color:rgba(255, 255, 255, 1.00)}.clearing-assembled .clearing-container .visible-img,.clearing-assembled .clearing-container .clearing-caption{background-color:rgba(255, 255, 255, 1.00)}.clearing-assembled .clearing-container .carousel{background-color:rgba(242, 242, 242, 1.00)}.clearing-assembled .clearing-container .clearing-close{color:rgba(170, 170, 170, 1.00)}.clearing-assembled .clearing-container .clearing-close:hover,.clearing-assembled .clearing-container .clearing-close:focus{color:rgba(170, 170, 170, 1.00)}.clearing-assembled .clearing-container .clearing-main-next>span{border-color:transparent;border-left-color:rgba(51, 51, 51, 1.00)}.clearing-assembled .clearing-container .clearing-main-prev>span{border-color:transparent;border-right-color:rgba(51, 51, 51, 1.00)}.clearing-assembled .clearing-container .clearing-caption{color:rgba(51, 51, 51, 1.00)}.copyright{color:rgba(34, 34, 34, 1.00);font-size:.9rem}.copyright a{color:rgba(58, 163, 79, 1.00)}.copyright a:hover{color:rgba(34, 97, 48, 1.00)}.stacks_s_hidden,.stacks_m_hidden,.stacks_l_hidden{display:block!important}@media only screen and (max-width:40em){.stacks_s_hidden{display:none!important}}@media only screen and (min-width:40.063em) and (max-width:62.5em){.stacks_m_hidden{display:none!important}}@media only screen and (min-width:62.563em){.stacks_l_hidden{display:none!important}}.fn-text-header{color:rgba(34, 34, 34, 1.00)}.fn-text-link a{color:rgba(58, 163, 79, 1.00)}.fn-text-link a:hover{color:rgba(34, 97, 48, 1.00)}.fn-text-text{color:rgba(34, 34, 34, 1.00)}.fn-text-text p,.fn-text-text div{color:rgba(34, 34, 34, 1.00)}.fn-text-accent{color:rgba(221, 221, 221, 1.00)}.fn-text-code-text{color:rgba(204, 55, 30, 1.00)}.fn-text-header-alt{color:rgba(255, 255, 255, 1.00)}.fn-text-link-alt a{color:rgba(58, 163, 79, 1.00)}.fn-text-link-alt a:hover{color:rgba(34, 97, 48, 1.00)}.fn-text-accent-alt{color:rgba(221, 221, 221, 1.00)}.fn-text-primary{color:rgba(218, 219, 217, 1.00)}
.fn-text-primary-text{color:rgba(255, 255, 255, 1.00)}.fn-text-primary-text p,.fn-text-primary-text div{color:rgba(255, 255, 255, 1.00)}.fn-text-secondary{color:rgba(231, 231, 231, 1.00)}.fn-text-secondary-text{color:rgba(51, 51, 51, 1.00)}.fn-text-secondary-text p,.fn-text-secondary-text div{color:rgba(51, 51, 51, 1.00)}.fn-text-alert{color:rgba(240, 65, 36, 1.00)}.fn-text-success{color:rgba(67, 172, 106, 1.00)}.fn-text-warning{color:rgba(240, 138, 36, 1.00)}.fn-text-info{color:rgba(160, 211, 232, 1.00)}.fn-text-modal{color:rgba(255, 255, 255, 1.00)}.fn-text-modal-close{color:rgba(170, 170, 170, 1.00)}.fn-text-modal-text{color:rgba(51, 51, 51, 1.00)}.fn-text-modal-text p,.fn-text-modal-text div{color:rgba(51, 51, 51, 1.00)}.fn-text-text-alt{color:rgba(255, 255, 255, 1.00)}.fn-text-text-alt p,.fn-text-text-alt div{color:rgba(255, 255, 255, 1.00)}.fn-text-text-alt h1,.fn-text-text-alt h2,.fn-text-text-alt h3,.fn-text-text-alt h4,.fn-text-text-alt h5,.fn-text-text-alt h6{color:rgba(255, 255, 255, 1.00)}.fn-text-text-alt a{color:rgba(58, 163, 79, 1.00)}.fn-text-text-alt a:hover{color:rgba(34, 97, 48, 1.00)}.fn-text-sw1c1{color:rgba(34, 34, 34, 1.00)}.fn-text-sw1c1 p,.fn-text-sw1c1 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw1c1 h1,.fn-text-sw1c1 h2,.fn-text-sw1c1 h3,.fn-text-sw1c1 h4,.fn-text-sw1c1 h5,.fn-text-sw1c1 h6,.fn-text-sw1c1 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw1c1 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-text-sw1c2{color:rgba(248, 248, 248, 1.00)}.fn-text-sw1c2 p,.fn-text-sw1c2 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw1c2 h1,.fn-text-sw1c2 h2,.fn-text-sw1c2 h3,.fn-text-sw1c2 h4,.fn-text-sw1c2 h5,.fn-text-sw1c2 h6,.fn-text-sw1c2 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw1c2 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw2c1{color:rgba(34, 34, 34, 1.00)}.fn-text-sw2c1 p,.fn-text-sw2c1 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw2c1 h1,.fn-text-sw2c1 h2,.fn-text-sw2c1 h3,.fn-text-sw2c1 h4,.fn-text-sw2c1 h5,.fn-text-sw2c1 h6,.fn-text-sw2c1 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw2c1 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-text-sw2c2{color:rgba(248, 248, 248, 1.00)}.fn-text-sw2c2 p,.fn-text-sw2c2 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw2c2 h1,.fn-text-sw2c2 h2,.fn-text-sw2c2 h3,.fn-text-sw2c2 h4,.fn-text-sw2c2 h5,.fn-text-sw2c2 h6,.fn-text-sw2c2 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw2c2 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw3c1{color:rgba(34, 34, 34, 1.00)}.fn-text-sw3c1 p,.fn-text-sw3c1 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw3c1 h1,.fn-text-sw3c1 h2,.fn-text-sw3c1 h3,.fn-text-sw3c1 h4,.fn-text-sw3c1 h5,.fn-text-sw3c1 h6,.fn-text-sw3c1 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw3c1 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-text-sw3c2{color:rgba(248, 248, 248, 1.00)}.fn-text-sw3c2 p,.fn-text-sw3c2 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw3c2 h1,.fn-text-sw3c2 h2,.fn-text-sw3c2 h3,.fn-text-sw3c2 h4,.fn-text-sw3c2 h5,.fn-text-sw3c2 h6,.fn-text-sw3c2 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw3c2 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw4c1{color:rgba(248, 248, 248, 1.00)}.fn-text-sw4c1 p,.fn-text-sw4c1 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw4c1 h1,.fn-text-sw4c1 h2,.fn-text-sw4c1 h3,.fn-text-sw4c1 h4,.fn-text-sw4c1 h5,.fn-text-sw4c1 h6,.fn-text-sw4c1 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw4c1 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw4c2{color:rgba(34, 34, 34, 1.00)}.fn-text-sw4c2 p,.fn-text-sw4c2 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw4c2 h1,.fn-text-sw4c2 h2,.fn-text-sw4c2 h3,.fn-text-sw4c2 h4,.fn-text-sw4c2 h5,.fn-text-sw4c2 h6,.fn-text-sw4c2 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw4c2 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-text-sw5c1{color:rgba(248, 248, 248, 1.00)}.fn-text-sw5c1 p,.fn-text-sw5c1 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw5c1 h1,.fn-text-sw5c1 h2,.fn-text-sw5c1 h3,.fn-text-sw5c1 h4,.fn-text-sw5c1 h5,.fn-text-sw5c1 h6,.fn-text-sw5c1 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw5c1 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw5c2{color:rgba(34, 34, 34, 1.00)}.fn-text-sw5c2 p,.fn-text-sw5c2 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw5c2 h1,.fn-text-sw5c2 h2,.fn-text-sw5c2 h3,.fn-text-sw5c2 h4,.fn-text-sw5c2 h5,.fn-text-sw5c2 h6,.fn-text-sw5c2 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw5c2 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-text-sw6c1{color:rgba(248, 248, 248, 1.00)}.fn-text-sw6c1 p,.fn-text-sw6c1 div{color:rgba(248, 248, 248, 1.00)}.fn-text-sw6c1 h1,.fn-text-sw6c1 h2,.fn-text-sw6c1 h3,.fn-text-sw6c1 h4,.fn-text-sw6c1 h5,.fn-text-sw6c1 h6,.fn-text-sw6c1 a{color:rgba(34, 34, 34, 1.00)}.fn-text-sw6c1 a:hover{color:rgba(32, 32, 32, 1.00)}.fn-text-sw6c2{color:rgba(34, 34, 34, 1.00)}.fn-text-sw6c2 p,.fn-text-sw6c2 div{color:rgba(34, 34, 34, 1.00)}.fn-text-sw6c2 h1,.fn-text-sw6c2 h2,.fn-text-sw6c2 h3,.fn-text-sw6c2 h4,.fn-text-sw6c2 h5,.fn-text-sw6c2 h6,.fn-text-sw6c2 a{color:rgba(248, 248, 248, 1.00)}.fn-text-sw6c2 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw1c1{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw1c1 p,.panel .fn-text-sw1c1 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw1c1 h1,.panel .fn-text-sw1c1 h2,.panel .fn-text-sw1c1 h3,.panel .fn-text-sw1c1 h4,.panel .fn-text-sw1c1 h5,.panel .fn-text-sw1c1 h6,.panel .fn-text-sw1c1 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw1c1 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw1c2{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw1c2 p,.panel .fn-text-sw1c2 div{color:rgba(248, 248, 248, 1.00)}
.panel .fn-text-sw1c2 h1,.panel .fn-text-sw1c2 h2,.panel .fn-text-sw1c2 h3,.panel .fn-text-sw1c2 h4,.panel .fn-text-sw1c2 h5,.panel .fn-text-sw1c2 h6,.panel .fn-text-sw1c2 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw1c2 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw2c1{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw2c1 p,.panel .fn-text-sw2c1 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw2c1 h1,.panel .fn-text-sw2c1 h2,.panel .fn-text-sw2c1 h3,.panel .fn-text-sw2c1 h4,.panel .fn-text-sw2c1 h5,.panel .fn-text-sw2c1 h6,.panel .fn-text-sw2c1 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw2c1 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw2c2{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw2c2 p,.panel .fn-text-sw2c2 div{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw2c2 h1,.panel .fn-text-sw2c2 h2,.panel .fn-text-sw2c2 h3,.panel .fn-text-sw2c2 h4,.panel .fn-text-sw2c2 h5,.panel .fn-text-sw2c2 h6,.panel .fn-text-sw2c2 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw2c2 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw3c1{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw3c1 p,.panel .fn-text-sw3c1 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw3c1 h1,.panel .fn-text-sw3c1 h2,.panel .fn-text-sw3c1 h3,.panel .fn-text-sw3c1 h4,.panel .fn-text-sw3c1 h5,.panel .fn-text-sw3c1 h6,.panel .fn-text-sw3c1 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw3c1 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw3c2{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw3c2 p,.panel .fn-text-sw3c2 div{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw3c2 h1,.panel .fn-text-sw3c2 h2,.panel .fn-text-sw3c2 h3,.panel .fn-text-sw3c2 h4,.panel .fn-text-sw3c2 h5,.panel .fn-text-sw3c2 h6,.panel .fn-text-sw3c2 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw3c2 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw4c1{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw4c1 p,.panel .fn-text-sw4c1 div{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw4c1 h1,.panel .fn-text-sw4c1 h2,.panel .fn-text-sw4c1 h3,.panel .fn-text-sw4c1 h4,.panel .fn-text-sw4c1 h5,.panel .fn-text-sw4c1 h6,.panel .fn-text-sw4c1 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw4c1 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw4c2{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw4c2 p,.panel .fn-text-sw4c2 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw4c2 h1,.panel .fn-text-sw4c2 h2,.panel .fn-text-sw4c2 h3,.panel .fn-text-sw4c2 h4,.panel .fn-text-sw4c2 h5,.panel .fn-text-sw4c2 h6,.panel .fn-text-sw4c2 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw4c2 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw5c1{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw5c1 p,.panel .fn-text-sw5c1 div{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw5c1 h1,.panel .fn-text-sw5c1 h2,.panel .fn-text-sw5c1 h3,.panel .fn-text-sw5c1 h4,.panel .fn-text-sw5c1 h5,.panel .fn-text-sw5c1 h6,.panel .fn-text-sw5c1 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw5c1 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw5c2{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw5c2 p,.panel .fn-text-sw5c2 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw5c2 h1,.panel .fn-text-sw5c2 h2,.panel .fn-text-sw5c2 h3,.panel .fn-text-sw5c2 h4,.panel .fn-text-sw5c2 h5,.panel .fn-text-sw5c2 h6,.panel .fn-text-sw5c2 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw5c2 a:hover{color:rgba(235, 235, 235, 1.00)}.panel .fn-text-sw6c1{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw6c1 p,.panel .fn-text-sw6c1 div{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw6c1 h1,.panel .fn-text-sw6c1 h2,.panel .fn-text-sw6c1 h3,.panel .fn-text-sw6c1 h4,.panel .fn-text-sw6c1 h5,.panel .fn-text-sw6c1 h6,.panel .fn-text-sw6c1 a{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw6c1 a:hover{color:rgba(32, 32, 32, 1.00)}.panel .fn-text-sw6c2{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw6c2 p,.panel .fn-text-sw6c2 div{color:rgba(34, 34, 34, 1.00)}.panel .fn-text-sw6c2 h1,.panel .fn-text-sw6c2 h2,.panel .fn-text-sw6c2 h3,.panel .fn-text-sw6c2 h4,.panel .fn-text-sw6c2 h5,.panel .fn-text-sw6c2 h6,.panel .fn-text-sw6c2 a{color:rgba(248, 248, 248, 1.00)}.panel .fn-text-sw6c2 a:hover{color:rgba(235, 235, 235, 1.00)}.fn-bg-header{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-text{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-link{background-color:rgba(58, 163, 79, 1.00)}.fn-bg-link-hover{background-color:rgba(34, 97, 48, 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(58, 163, 79, 1.00)}.fn-bg-link-hover-alt{background-color:rgba(34, 97, 48, 1.00)}.fn-bg-accent-alt{background-color:rgba(221, 221, 221, 1.00)}.fn-bg-primary{background-color:rgba(218, 219, 217, 1.00)}.fn-bg-primary-text{background-color:rgba(255, 255, 255, 1.00)}.fn-bg-secondary{background-color:rgba(231, 231, 231, 1.00)}.fn-bg-secondary-text{background-color:rgba(51, 51, 51, 1.00)}.fn-bg-alert{background-color:rgba(240, 65, 36, 1.00)}.fn-bg-success{background-color:rgba(67, 172, 106, 1.00)}.fn-bg-warning{background-color:rgba(240, 138, 36, 1.00)}.fn-bg-info{background-color:rgba(160, 211, 232, 1.00)}
.fn-bg-modal{background-color:rgba(255, 255, 255, 1.00)}.fn-bg-modal-close{background-color:rgba(170, 170, 170, 1.00)}.fn-bg-sw1c1{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-sw1c2{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw2c1{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-sw2c2{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw3c1{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-sw3c2{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw4c1{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw4c2{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-sw5c1{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw5c2{background-color:rgba(34, 34, 34, 1.00)}.fn-bg-sw6c1{background-color:rgba(248, 248, 248, 1.00)}.fn-bg-sw6c2{background-color:rgba(34, 34, 34, 1.00)}.fn-backdrop{background-color:rgba(0, 0, 0, 0.45)}.fn-backdrop-solid{background-color:rgba(0, 0, 0, 0.45)}.fn-scheme-primary{background-color:rgba(218, 219, 217, 1.00);color:rgba(255, 255, 255, 1.00)}.fn-scheme-primary div,.fn-scheme-primary p{color:rgba(255, 255, 255, 1.00)}.fn-scheme-primary.button:hover{background-color:rgba(207, 208, 206, 1.00)}.fn-scheme-secondary{background-color:rgba(231, 231, 231, 1.00);color:rgba(51, 51, 51, 1.00)}.fn-scheme-secondary div,.fn-scheme-secondary p{color:rgba(51, 51, 51, 1.00)}.fn-scheme-secondary.button:hover{background-color:rgba(219, 219, 219, 1.00)}.fn-scheme-modal{background-color:rgba(255, 255, 255, 1.00);color:rgba(51, 51, 51, 1.00)}.fn-scheme-modal div,.fn-scheme-modal p{color:rgba(51, 51, 51, 1.00)}.fn-scheme-modal .close{color:rgba(170, 170, 170, 1.00)}.fn-scheme-swatch1{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch1 div,.fn-scheme-swatch1 p{color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch1.switch{background-color:transparent}.fn-scheme-swatch1.switch label::after{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch1.switch input:checked+label{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch1.button:hover{background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch1.ghost{background-color:transparent;border-color:rgba(34, 34, 34, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch1.ghost.button:hover{color:rgba(248, 248, 248, 1.00);border-color:rgba(32, 32, 32, 1.00);background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch2{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch2 div,.fn-scheme-swatch2 p{color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch2.switch{background-color:transparent}.fn-scheme-swatch2.switch label::after{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch2.switch input:checked+label{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch2.button:hover{background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch2.ghost{background-color:transparent;border-color:rgba(34, 34, 34, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch2.ghost.button:hover{color:rgba(248, 248, 248, 1.00);border-color:rgba(32, 32, 32, 1.00);background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch3{background-color:rgba(34, 34, 34, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch3 div,.fn-scheme-swatch3 p{color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch3.switch{background-color:transparent}.fn-scheme-swatch3.switch label::after{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch3.switch input:checked+label{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch3.button:hover{background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch3.ghost{background-color:transparent;border-color:rgba(34, 34, 34, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch3.ghost.button:hover{color:rgba(248, 248, 248, 1.00);border-color:rgba(32, 32, 32, 1.00);background-color:rgba(32, 32, 32, 1.00)}.fn-scheme-swatch4{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch4 div,.fn-scheme-swatch4 p{color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch4.switch{background-color:transparent}.fn-scheme-swatch4.switch label::after{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch4.switch input:checked+label{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch4.switch label::after{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch4.switch input:checked+label{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch4.button:hover{background-color:rgba(235, 235, 235, 1.00)}.fn-scheme-swatch4.ghost{background-color:transparent;border-color:rgba(248, 248, 248, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch4.ghost.button:hover{color:rgba(34, 34, 34, 1.00);border-color:rgba(235, 235, 235, 1.00);background-color:rgba(235, 235, 235, 1.00)}.fn-scheme-swatch5{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch5 div,.fn-scheme-swatch5 p{color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch5.button:hover{background-color:rgba(235, 235, 235, 1.00)}.fn-scheme-swatch5.switch{background-color:transparent}.fn-scheme-swatch5.switch label::after{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch5.switch input:checked+label{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch5.ghost{background-color:transparent;border-color:rgba(248, 248, 248, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch5.ghost.button:hover{color:rgba(34, 34, 34, 1.00);border-color:rgba(235, 235, 235, 1.00);background-color:rgba(235, 235, 235, 1.00)}.fn-scheme-swatch6{background-color:rgba(248, 248, 248, 1.00);color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch6 div,.fn-scheme-swatch6 p{color:rgba(34, 34, 34, 1.00)}
.fn-scheme-swatch6.switch{background-color:transparent}.fn-scheme-swatch6.switch label::after{background-color:rgba(34, 34, 34, 1.00)}.fn-scheme-swatch6.switch input:checked+label{background-color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch6.button:hover{background-color:rgba(235, 235, 235, 1.00)}.fn-scheme-swatch6.ghost{background-color:transparent;border-color:rgba(248, 248, 248, 1.00);color:rgba(248, 248, 248, 1.00)}.fn-scheme-swatch6.ghost.button:hover{color:rgba(34, 34, 34, 1.00);border-color:rgba(235, 235, 235, 1.00);background-color:rgba(235, 235, 235, 1.00)} 
#stacks_in_29315_page0 [data-magellan-expedition-clone]{height:0!important}#stacks_in_29315_page0 [data-magellan-expedition]{left:0}#stacks_in_29315_page0 .sub-nav dt,#stacks_in_29315_page0 .sub-nav dd,#stacks_in_29315_page0 .sub-nav li{float:none} #stacks_in_29315_page0 .sub-nav dt a,#stacks_in_29315_page0 .sub-nav dd a,#stacks_in_29315_page0 .sub-nav li a{font-size:0.81rem;color:rgba(135, 135, 135, 1.00)}#stacks_in_29315_page0 .sub-nav dt a:hover,#stacks_in_29315_page0 .sub-nav dd a:hover,#stacks_in_29315_page0 .sub-nav li a:hover{color:rgba(103, 105, 104, 1.00)}#stacks_in_29315_page0 .sub-nav dt.active a,#stacks_in_29315_page0 .sub-nav dd.active a,#stacks_in_29315_page0 .sub-nav li.active a{color:rgba(39, 39, 38, 1.00)}  #stacks_in_29315_page0 .sub-nav{margin:0 auto!important;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}#stacks_in_29315_page0 .magellan-nav{right:0} 
.vegas-loading{display:none}.vegas-background{-ms-interpolation-mode:bicubic;image-rendering:optimizeQuality;max-width:none!important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;opacity:1.00} #stacks_in_29857_page0>.jw-parallax{overflow:hidden;background:transparent}#stacks_in_29857_page0>.jw-parallax.type-cover{position:absolute}#stacks_in_29857_page0>.jw-parallax.type-image{min-height:450px}#stacks_in_29857_page0>.jw-parallax.type-slice{min-height:350px}#stacks_in_29857_page0>.jw-parallax.touch-device{background-image:none!important}#stacks_in_29857_page0>.jw-parallax.touch-device:after{position:absolute;content:"";top:0;left:0;bottom:0;right:0;height:100%;width:100%;background-image:url(../files/bgImage_29857.png);background-size:cover;background-position:center center;overflow:hidden;opacity:1.00;z-index:-1}#stacks_in_29857_page0>.jw-parallax.touch-device.bg-warehouse:after{background-image:url()}#stacks_in_29857_page0>.jw-parallax>*{z-index:10} @media only screen and (max-width:40em){.parallax-mirror{display:none}#stacks_in_29857_page0>.jw-parallax{background-image:none!important}#stacks_in_29857_page0>.jw-parallax:after{position:absolute;content:"";top:0;left:0;bottom:0;right:0;height:100%;width:100%;background-image:url(../files/bgImage_29857.png);background-size:cover;background-position:center center;overflow:hidden;opacity:1.00;z-index:-1}#stacks_in_29857_page0>.jw-parallax.bg-warehouse:after{background-image:url()}}  
.nivo-lightbox-theme-default.nivo-lightbox-overlay { 
	
	background: rgba(0, 0, 0, .85); 
	
	
	
}

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

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

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

.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}


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















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: #FFFFFF;
background: -moz-radial-gradient(center, ellipse cover,  #FFFFFF 0%, #EAEAEA 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#FFFFFF), color-stop(100%,#EAEAEA));
background: -webkit-radial-gradient(center, ellipse cover, #FFFFFF 0%,#EAEAEA 100%);
background: -o-radial-gradient(center, ellipse cover, #FFFFFF 0%,#EAEAEA 100%);
background: -ms-radial-gradient(center, ellipse cover, #FFFFFF 0%,#EAEAEA 100%);
background: radial-gradient(ellipse at center, #FFFFFF 0%,#EAEAEA 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#EAEAEA',GradientType=1 );
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { bottom: -7%; }
.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 14px/20px '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-overlay .nivo-lightbox-title {
	color: #FFFFFF;
	background: #000000;
}

.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;
	-moz-transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
}

.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: #FFFFFF;
	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: #FFFFFF;
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: #FFFFFF;
	font-size: 18px;
}

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



#topBoxTriggerRegionstacks_in_31936_page0 #topBoxTriggerstacks_in_31936_page0 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}

#topBoxTriggerRegionstacks_in_31936_page0 #topBoxTriggerContentstacks_in_31936_page0 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_31936_page0 #topBoxTriggerContentstacks_in_31936_page0 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_31936_page0 {
	color: #424242;
}

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

#topBoxContentWrapperstacks_in_31936_page0 h1,
#topBoxContentWrapperstacks_in_31936_page0 h2,
#topBoxContentWrapperstacks_in_31936_page0 h3,
#topBoxContentWrapperstacks_in_31936_page0 h4,
#topBoxContentWrapperstacks_in_31936_page0 h5,
#topBoxContentWrapperstacks_in_31936_page0 h6 {
	color: #000000;
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_31936_page0 a {
	color: #0050DD;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_31936_page0 a:visited {
	color: #0050DD;
}

#topBoxContentWrapperstacks_in_31936_page0 a:hover,
#topBoxContentWrapperstacks_in_31936_page0 a:focus,
#topBoxContentWrapperstacks_in_31936_page0 a:active {
	color: #FF0000;
}

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

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


#topBoxContentWrapperstacks_in_31936_page0 {
	display: none;
}



#stacks_in_31936_page0 {
	margin: 70px 20px 20px 20px;
}
 #stacks_in_31938_page0{text-align:center}  @media only screen and (max-width:40em){#stacks_in_31938_page0{text-align:center}#stacks_in_31938_page0 .button{float:none!important}}    #stacks_in_31938_page0 .button{margin-bottom:0} 

#stacks_out_31938_page0 {
	width: 350px;
}

#stacks_in_31938_page0 {
	padding:  5px;
}

#stacks_in_587_page0>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_587_page0>.row.collapse{padding-left:0;padding-right:0}#stacks_in_587_page0>.row.padding-detailed{padding:0.00rem 0.00rem 0.00rem 0.00rem}@media only screen and (max-width:40em){#stacks_in_587_page0>.row.padding-detailed.padding-medium-up,#stacks_in_587_page0>.row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_587_page0>.row.padding-detailed.padding-y-medium-up,#stacks_in_587_page0>.row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){#stacks_in_587_page0>.row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_587_page0>.row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}
 

#stacks_in_587_page0 {
	margin: 80px 20px 20px 20px;
}
#stacks_in_29337_page0 a{display:block} #stacks_in_29337_page0 img{} #stacks_in_29337_page0 img{max-width:300px}@media only screen and (min-width:641px){#stacks_in_29337_page0 img{max-width:550px}}@media only screen and (min-width:1024px){#stacks_in_29337_page0 img{max-width:550px}} 
.nivo-lightbox-theme-default.nivo-lightbox-overlay { 
	
	background: rgba(0, 0, 0, .85); 
	
	
	
}

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

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

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

.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}


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















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: #FFFFFF;
background: -moz-radial-gradient(center, ellipse cover,  #FFFFFF 0%, #EAEAEA 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#FFFFFF), color-stop(100%,#EAEAEA));
background: -webkit-radial-gradient(center, ellipse cover, #FFFFFF 0%,#EAEAEA 100%);
background: -o-radial-gradient(center, ellipse cover, #FFFFFF 0%,#EAEAEA 100%);
background: -ms-radial-gradient(center, ellipse cover, #FFFFFF 0%,#EAEAEA 100%);
background: radial-gradient(ellipse at center, #FFFFFF 0%,#EAEAEA 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#EAEAEA',GradientType=1 );
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { bottom: -7%; }
.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 14px/20px '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-overlay .nivo-lightbox-title {
	color: #FFFFFF;
	background: #000000;
}

.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;
	-moz-transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
}

.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: #FFFFFF;
	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: #FFFFFF;
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: #FFFFFF;
	font-size: 18px;
}

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



#topBoxTriggerRegionstacks_in_31833_page0 #topBoxTriggerstacks_in_31833_page0 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}

#topBoxTriggerRegionstacks_in_31833_page0 #topBoxTriggerContentstacks_in_31833_page0 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_31833_page0 #topBoxTriggerContentstacks_in_31833_page0 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_31833_page0 {
	color: #424242;
}

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

#topBoxContentWrapperstacks_in_31833_page0 h1,
#topBoxContentWrapperstacks_in_31833_page0 h2,
#topBoxContentWrapperstacks_in_31833_page0 h3,
#topBoxContentWrapperstacks_in_31833_page0 h4,
#topBoxContentWrapperstacks_in_31833_page0 h5,
#topBoxContentWrapperstacks_in_31833_page0 h6 {
	color: #000000;
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_31833_page0 a {
	color: #0050DD;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_31833_page0 a:visited {
	color: #0050DD;
}

#topBoxContentWrapperstacks_in_31833_page0 a:hover,
#topBoxContentWrapperstacks_in_31833_page0 a:focus,
#topBoxContentWrapperstacks_in_31833_page0 a:active {
	color: #FF0000;
}

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

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


#topBoxContentWrapperstacks_in_31833_page0 {
	display: none;
}


 #stacks_in_382_page0{text-align:center}  @media only screen and (max-width:40em){#stacks_in_382_page0{text-align:center}#stacks_in_382_page0 .button{float:none!important}}    #stacks_in_382_page0 .button{margin-bottom:0} 

#stacks_out_382_page0 {
	width: 350px;
}

#stacks_in_382_page0 {
	padding:  5px;
}
 
#stacks_in_589_page0>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_589_page0>.row>.columns{margin-top:0.00rem;margin-bottom:0.00rem}#stacks_in_589_page0>.row.divider>.columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(0, 0, 0, 1.00)}

#stacks_out_589_page0 {
	width: 65%;
}

#stacks_in_589_page0 {
	margin:  10px;
	padding:  10px;
}
  #stacks_in_380_page0 p,#stacks_in_380_page0 div{margin-bottom:0}  

#stacks_in_380_page0 {
	margin: 0px 0px 10px 0px;
}

#stacks_in_381_page0 {
	font-weight: bolder;
}
   

#stacks_in_703_page0 {
	font-weight: bolder;
}
.vegas-loading{display:none}.vegas-background{-ms-interpolation-mode:bicubic;image-rendering:optimizeQuality;max-width:none!important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;opacity:1.00} #stacks_in_29861_page0>.jw-parallax{overflow:hidden;background:transparent}#stacks_in_29861_page0>.jw-parallax.type-cover{position:absolute}#stacks_in_29861_page0>.jw-parallax.type-image{min-height:350px}#stacks_in_29861_page0>.jw-parallax.type-slice{min-height:350px}#stacks_in_29861_page0>.jw-parallax.touch-device{background-image:none!important}#stacks_in_29861_page0>.jw-parallax.touch-device:after{position:absolute;content:"";top:0;left:0;bottom:0;right:0;height:100%;width:100%;background-image:url(../files/bgImage_29861.png);background-size:cover;background-position:center center;overflow:hidden;opacity:1.00;z-index:-1}#stacks_in_29861_page0>.jw-parallax.touch-device.bg-warehouse:after{background-image:url()}#stacks_in_29861_page0>.jw-parallax>*{z-index:10} @media only screen and (max-width:40em){.parallax-mirror{display:none}#stacks_in_29861_page0>.jw-parallax{background-image:none!important}#stacks_in_29861_page0>.jw-parallax:after{position:absolute;content:"";top:0;left:0;bottom:0;right:0;height:100%;width:100%;background-image:url(../files/bgImage_29861.png);background-size:cover;background-position:center center;overflow:hidden;opacity:1.00;z-index:-1}#stacks_in_29861_page0>.jw-parallax.bg-warehouse:after{background-image:url()}}  

#stacks_in_386_page0>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_386_page0>.row.collapse{padding-left:0;padding-right:0}#stacks_in_386_page0>.row.padding-detailed{padding:0.00rem 0.00rem 0.00rem 0.00rem}@media only screen and (max-width:40em){#stacks_in_386_page0>.row.padding-detailed.padding-medium-up,#stacks_in_386_page0>.row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_386_page0>.row.padding-detailed.padding-y-medium-up,#stacks_in_386_page0>.row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){#stacks_in_386_page0>.row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_386_page0>.row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}
 

#stacks_in_386_page0 {
	background-color: rgba(255, 255, 254, 1.00);
	margin: 80px 20px 20px 20px;
	padding:  20px;
}
/*
 * Typography: Core
 * Author: Jeremy Hawes
 * Version: 1.0.0
 * URL: http://onelittledesigner.com
 * Description: Typography Core stack for RapidWeaver 5+ Stack 2+
 */

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



	/* Typography - Text Global Styles */
	#typography_stacks_in_31838_page0 .typography_text,
	#typography_stacks_in_31838_page0 .typography_text div,
	#typography_stacks_in_31838_page0 .typography_text p,
	#typography_stacks_in_31838_page0 .typography_text blockquote,
	#typography_stacks_in_31838_page0 .typography_text address,
	#typography_stacks_in_31838_page0 .typography_text details {
		color: #333333;
	}
	
	
		#typography_stacks_in_31838_page0 h1.typography_headers,
		#typography_stacks_in_31838_page0 h2.typography_headers,
		#typography_stacks_in_31838_page0 h3.typography_headers,
		#typography_stacks_in_31838_page0 h4.typography_headers,
		#typography_stacks_in_31838_page0 h5.typography_headers,
		#typography_stacks_in_31838_page0 h6.typography_headers {
			color: #111111;
		}
	
	
	#typography_stacks_in_31838_page0 .typography_text a,
	#typography_stacks_in_31838_page0 .typography_headers a,
	#typography_stacks_in_31838_page0 a .typography_headers {
		color: #0276FD;
	}
	#typography_stacks_in_31838_page0 .typography_text a:hover,
	#typography_stacks_in_31838_page0 .typography_headers a:hover,
	#typography_stacks_in_31838_page0 a:hover .typography_headers,
	#typography_stacks_in_31838_page0 .typography_text a:active,
	#typography_stacks_in_31838_page0 .typography_headers a:active,
	#typography_stacks_in_31838_page0 a:active .typography_headers {
		color: #60AFFE;
	}
	#typography_stacks_in_31838_page0.linkDecorationInherit .typography_text a {
		text-decoration: inherit;
	}
	#typography_stacks_in_31838_page0.linkDecorationNone .typography_text a {
		text-decoration: none;
		font-weight: normal;
	}
	#typography_stacks_in_31838_page0.linkDecorationUnderline .typography_text a {
		text-decoration: underline;
		font-weight: normal;
	}
	#typography_stacks_in_31838_page0.linkDecorationBold .typography_text a {
		text-decoration: none;
		font-weight: bold;
	}
	#typography_stacks_in_31838_page0.linkDecorationItalic .typography_text a {
		text-decoration: none;
		font-weight: none;
		font-style: italic;
	}
	
	#typography_stacks_in_31838_page0.linkDecorationHoverInherit .typography_text a:hover,
	#typography_stacks_in_31838_page0.linkDecorationHoverInherit .typography_text a:active {
		text-decoration: inherit;
	}
	#typography_stacks_in_31838_page0.linkDecorationHoverNone .typography_text a:hover,
	#typography_stacks_in_31838_page0.linkDecorationHoverNone .typography_text a:active {
		text-decoration: none;
		font-weight: normal;
	}
	#typography_stacks_in_31838_page0.linkDecorationHoverUnderline .typography_text a:hover,
	#typography_stacks_in_31838_page0.linkDecorationHoverUnderline .typography_text a:active {
		text-decoration: underline;
	}
	#typography_stacks_in_31838_page0.linkDecorationHoverBold .typography_text a:hover,
	#typography_stacks_in_31838_page0.linkDecorationHoverBold .typography_text a:active {
		font-weight: bold;
	}
	#typography_stacks_in_31838_page0.linkDecorationHoverItalic .typography_text a:hover,
	#typography_stacks_in_31838_page0.linkDecorationHoverItalic .typography_text a:active {\
		font-style: italic;
	}
	

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


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

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









   

#stacks_in_398_page0 {
	font-size: 90%;
}
 
#stacks_in_30021_page0>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_30021_page0>.row>.columns{margin-top:0.00rem;margin-bottom:0.00rem}#stacks_in_30021_page0>.row.divider>.columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(0, 0, 0, 1.00)}
#stacks_in_30025_page0 .background{}#stacks_in_30025_page0 .fa-stack,#stacks_in_30025_page0 i.fa{color:rgba(42, 42, 42, 1.00);border-radius:3px;-webkit-transition:color 300ms ease;-moz-transition:color 300ms ease;transition:color 300ms ease}#stacks_in_30025_page0 .fa-stack.custom,#stacks_in_30025_page0 i.fa.custom{font-size:24px}#stacks_in_30025_page0 .fa-spin{-webkit-animation-duration:2000ms;-moz-animation-duration:2000ms;animation-duration:2000ms}#stacks_in_30025_page0 .fa-border{border-color:rgba(238, 238, 238, 1.00);}#stacks_in_30025_page0 .fa-stack i.stack{color:rgba(221, 222, 220, 1.00)}#stacks_in_30025_page0 a:hover i.fa{color:rgba(37, 37, 37, 1.00)}#stacks_in_30025_page0 a:hover i.fa.stack{color:rgba(198, 199, 198, 1.00)}#stacks_in_30025_page0 a:hover .fa-border{}#stacks_in_30025_page0 .shadow-double i.fa{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_30025_page0 .shadow-basic i.fa{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_30025_page0 .shadow-retro i.fa{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_30025_page0 .jw-wrapper{}#stacks_in_30025_page0 .jw-wrapper.match.shadow-double{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_30025_page0 .jw-wrapper.match.shadow-basic{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_30025_page0 .jw-wrapper.match.shadow-retro{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_30025_page0 .jw-wrapper.match{color:rgba(42, 42, 42, 1.00)}#stacks_in_30025_page0 .jw-wrapper.match a{color:rgba(42, 42, 42, 1.00)}#stacks_in_30025_page0 .jw-wrapper.match a:hover{color:rgba(37, 37, 37, 1.00)}#stacks_in_30025_page0 .jw-wrapper.hover i.fa:hover,#stacks_in_30025_page0 .jw-wrapper.hover a:hover{color:rgba(153, 153, 153, 1.00)}
   

#stacks_in_732_page0 {
	font-size: 90%;
}
#stacks_in_30027_page0 .background{}#stacks_in_30027_page0 .fa-stack,#stacks_in_30027_page0 i.fa{color:rgba(42, 42, 42, 1.00);border-radius:3px;-webkit-transition:color 300ms ease;-moz-transition:color 300ms ease;transition:color 300ms ease}#stacks_in_30027_page0 .fa-stack.custom,#stacks_in_30027_page0 i.fa.custom{font-size:24px}#stacks_in_30027_page0 .fa-spin{-webkit-animation-duration:2000ms;-moz-animation-duration:2000ms;animation-duration:2000ms}#stacks_in_30027_page0 .fa-border{border-color:rgba(238, 238, 238, 1.00);}#stacks_in_30027_page0 .fa-stack i.stack{color:rgba(221, 222, 220, 1.00)}#stacks_in_30027_page0 a:hover i.fa{color:rgba(37, 37, 37, 1.00)}#stacks_in_30027_page0 a:hover i.fa.stack{color:rgba(198, 199, 198, 1.00)}#stacks_in_30027_page0 a:hover .fa-border{}#stacks_in_30027_page0 .shadow-double i.fa{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_30027_page0 .shadow-basic i.fa{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_30027_page0 .shadow-retro i.fa{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_30027_page0 .jw-wrapper{}#stacks_in_30027_page0 .jw-wrapper.match.shadow-double{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_30027_page0 .jw-wrapper.match.shadow-basic{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_30027_page0 .jw-wrapper.match.shadow-retro{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_30027_page0 .jw-wrapper.match{color:rgba(42, 42, 42, 1.00)}#stacks_in_30027_page0 .jw-wrapper.match a{color:rgba(42, 42, 42, 1.00)}#stacks_in_30027_page0 .jw-wrapper.match a:hover{color:rgba(37, 37, 37, 1.00)}#stacks_in_30027_page0 .jw-wrapper.hover i.fa:hover,#stacks_in_30027_page0 .jw-wrapper.hover a:hover{color:rgba(153, 153, 153, 1.00)}
   

#stacks_in_734_page0 {
	font-size: 90%;
}
#stacks_in_30029_page0 .background{}#stacks_in_30029_page0 .fa-stack,#stacks_in_30029_page0 i.fa{color:rgba(42, 42, 42, 1.00);border-radius:3px;-webkit-transition:color 300ms ease;-moz-transition:color 300ms ease;transition:color 300ms ease}#stacks_in_30029_page0 .fa-stack.custom,#stacks_in_30029_page0 i.fa.custom{font-size:24px}#stacks_in_30029_page0 .fa-spin{-webkit-animation-duration:2000ms;-moz-animation-duration:2000ms;animation-duration:2000ms}#stacks_in_30029_page0 .fa-border{border-color:rgba(238, 238, 238, 1.00);}#stacks_in_30029_page0 .fa-stack i.stack{color:rgba(221, 222, 220, 1.00)}#stacks_in_30029_page0 a:hover i.fa{color:rgba(37, 37, 37, 1.00)}#stacks_in_30029_page0 a:hover i.fa.stack{color:rgba(198, 199, 198, 1.00)}#stacks_in_30029_page0 a:hover .fa-border{}#stacks_in_30029_page0 .shadow-double i.fa{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_30029_page0 .shadow-basic i.fa{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_30029_page0 .shadow-retro i.fa{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_30029_page0 .jw-wrapper{}#stacks_in_30029_page0 .jw-wrapper.match.shadow-double{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_30029_page0 .jw-wrapper.match.shadow-basic{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_30029_page0 .jw-wrapper.match.shadow-retro{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_30029_page0 .jw-wrapper.match{color:rgba(42, 42, 42, 1.00)}#stacks_in_30029_page0 .jw-wrapper.match a{color:rgba(42, 42, 42, 1.00)}#stacks_in_30029_page0 .jw-wrapper.match a:hover{color:rgba(37, 37, 37, 1.00)}#stacks_in_30029_page0 .jw-wrapper.hover i.fa:hover,#stacks_in_30029_page0 .jw-wrapper.hover a:hover{color:rgba(153, 153, 153, 1.00)}
   

#stacks_in_736_page0 {
	font-size: 90%;
}
.vegas-loading{display:none}.vegas-background{-ms-interpolation-mode:bicubic;image-rendering:optimizeQuality;max-width:none!important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;opacity:1.00} #stacks_in_29863_page0>.jw-parallax{overflow:hidden;background:transparent}#stacks_in_29863_page0>.jw-parallax.type-cover{position:absolute}#stacks_in_29863_page0>.jw-parallax.type-image{min-height:350px}#stacks_in_29863_page0>.jw-parallax.type-slice{min-height:350px}#stacks_in_29863_page0>.jw-parallax.touch-device{background-image:none!important}#stacks_in_29863_page0>.jw-parallax.touch-device:after{position:absolute;content:"";top:0;left:0;bottom:0;right:0;height:100%;width:100%;background-image:url(../files/bgImage_29863.png);background-size:cover;background-position:center center;overflow:hidden;opacity:1.00;z-index:-1}#stacks_in_29863_page0>.jw-parallax.touch-device.bg-warehouse:after{background-image:url()}#stacks_in_29863_page0>.jw-parallax>*{z-index:10} @media only screen and (max-width:40em){.parallax-mirror{display:none}#stacks_in_29863_page0>.jw-parallax{background-image:none!important}#stacks_in_29863_page0>.jw-parallax:after{position:absolute;content:"";top:0;left:0;bottom:0;right:0;height:100%;width:100%;background-image:url(../files/bgImage_29863.png);background-size:cover;background-position:center center;overflow:hidden;opacity:1.00;z-index:-1}#stacks_in_29863_page0>.jw-parallax.bg-warehouse:after{background-image:url()}}  

#stacks_in_429_page0>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_429_page0>.row.collapse{padding-left:0;padding-right:0}#stacks_in_429_page0>.row.padding-detailed{padding:0.00rem 0.00rem 0.00rem 0.00rem}@media only screen and (max-width:40em){#stacks_in_429_page0>.row.padding-detailed.padding-medium-up,#stacks_in_429_page0>.row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_429_page0>.row.padding-detailed.padding-y-medium-up,#stacks_in_429_page0>.row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){#stacks_in_429_page0>.row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_429_page0>.row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}
 

#stacks_in_429_page0 {
	background-color: rgba(255, 255, 254, 1.00);
}
/*
 * Typography: Core
 * Author: Jeremy Hawes
 * Version: 1.0.0
 * URL: http://onelittledesigner.com
 * Description: Typography Core stack for RapidWeaver 5+ Stack 2+
 */

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



	/* Typography - Text Global Styles */
	#typography_stacks_in_31844_page0 .typography_text,
	#typography_stacks_in_31844_page0 .typography_text div,
	#typography_stacks_in_31844_page0 .typography_text p,
	#typography_stacks_in_31844_page0 .typography_text blockquote,
	#typography_stacks_in_31844_page0 .typography_text address,
	#typography_stacks_in_31844_page0 .typography_text details {
		color: #333333;
	}
	
	
		#typography_stacks_in_31844_page0 h1.typography_headers,
		#typography_stacks_in_31844_page0 h2.typography_headers,
		#typography_stacks_in_31844_page0 h3.typography_headers,
		#typography_stacks_in_31844_page0 h4.typography_headers,
		#typography_stacks_in_31844_page0 h5.typography_headers,
		#typography_stacks_in_31844_page0 h6.typography_headers {
			color: #111111;
		}
	
	
	#typography_stacks_in_31844_page0 .typography_text a,
	#typography_stacks_in_31844_page0 .typography_headers a,
	#typography_stacks_in_31844_page0 a .typography_headers {
		color: #0276FD;
	}
	#typography_stacks_in_31844_page0 .typography_text a:hover,
	#typography_stacks_in_31844_page0 .typography_headers a:hover,
	#typography_stacks_in_31844_page0 a:hover .typography_headers,
	#typography_stacks_in_31844_page0 .typography_text a:active,
	#typography_stacks_in_31844_page0 .typography_headers a:active,
	#typography_stacks_in_31844_page0 a:active .typography_headers {
		color: #60AFFE;
	}
	#typography_stacks_in_31844_page0.linkDecorationInherit .typography_text a {
		text-decoration: inherit;
	}
	#typography_stacks_in_31844_page0.linkDecorationNone .typography_text a {
		text-decoration: none;
		font-weight: normal;
	}
	#typography_stacks_in_31844_page0.linkDecorationUnderline .typography_text a {
		text-decoration: underline;
		font-weight: normal;
	}
	#typography_stacks_in_31844_page0.linkDecorationBold .typography_text a {
		text-decoration: none;
		font-weight: bold;
	}
	#typography_stacks_in_31844_page0.linkDecorationItalic .typography_text a {
		text-decoration: none;
		font-weight: none;
		font-style: italic;
	}
	
	#typography_stacks_in_31844_page0.linkDecorationHoverInherit .typography_text a:hover,
	#typography_stacks_in_31844_page0.linkDecorationHoverInherit .typography_text a:active {
		text-decoration: inherit;
	}
	#typography_stacks_in_31844_page0.linkDecorationHoverNone .typography_text a:hover,
	#typography_stacks_in_31844_page0.linkDecorationHoverNone .typography_text a:active {
		text-decoration: none;
		font-weight: normal;
	}
	#typography_stacks_in_31844_page0.linkDecorationHoverUnderline .typography_text a:hover,
	#typography_stacks_in_31844_page0.linkDecorationHoverUnderline .typography_text a:active {
		text-decoration: underline;
	}
	#typography_stacks_in_31844_page0.linkDecorationHoverBold .typography_text a:hover,
	#typography_stacks_in_31844_page0.linkDecorationHoverBold .typography_text a:active {
		font-weight: bold;
	}
	#typography_stacks_in_31844_page0.linkDecorationHoverItalic .typography_text a:hover,
	#typography_stacks_in_31844_page0.linkDecorationHoverItalic .typography_text a:active {\
		font-style: italic;
	}
	

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


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

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










#stacks_in_31848_page0 {
	margin:  20px;
	padding:  20px;
}
 
#stacks_in_29264_page0>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_29264_page0>.row>.columns{margin-top:0.00rem;margin-bottom:0.00rem}#stacks_in_29264_page0>.row.divider>.columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(0, 0, 0, 1.00)}

#stacks_in_29264_page0 {
	margin: 0px 0px 70px 0px;
}
#stacks_in_30036_page0 .background{}#stacks_in_30036_page0 .fa-stack,#stacks_in_30036_page0 i.fa{color:rgba(0, 0, 0, 1.00);border-radius:3px;-webkit-transition:color 300ms ease;-moz-transition:color 300ms ease;transition:color 300ms ease}#stacks_in_30036_page0 .fa-stack.custom,#stacks_in_30036_page0 i.fa.custom{font-size:24px}#stacks_in_30036_page0 .fa-spin{-webkit-animation-duration:2000ms;-moz-animation-duration:2000ms;animation-duration:2000ms}#stacks_in_30036_page0 .fa-border{border-color:rgba(238, 238, 238, 1.00);}#stacks_in_30036_page0 .fa-stack i.stack{color:rgba(221, 222, 220, 1.00)}#stacks_in_30036_page0 a:hover i.fa{color:rgba(0, 0, 0, 1.00)}#stacks_in_30036_page0 a:hover i.fa.stack{color:rgba(198, 199, 198, 1.00)}#stacks_in_30036_page0 a:hover .fa-border{}#stacks_in_30036_page0 .shadow-double i.fa{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_30036_page0 .shadow-basic i.fa{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_30036_page0 .shadow-retro i.fa{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_30036_page0 .jw-wrapper{}#stacks_in_30036_page0 .jw-wrapper.match.shadow-double{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_30036_page0 .jw-wrapper.match.shadow-basic{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_30036_page0 .jw-wrapper.match.shadow-retro{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_30036_page0 .jw-wrapper.match{color:rgba(0, 0, 0, 1.00)}#stacks_in_30036_page0 .jw-wrapper.match a{color:rgba(0, 0, 0, 1.00)}#stacks_in_30036_page0 .jw-wrapper.match a:hover{color:rgba(0, 0, 0, 1.00)}#stacks_in_30036_page0 .jw-wrapper.hover i.fa:hover,#stacks_in_30036_page0 .jw-wrapper.hover a:hover{color:rgba(153, 153, 153, 1.00)}
 
   

#stacks_in_29271_page0 {
	font-size: 80%;
}
#stacks_in_30038_page0 .background{}#stacks_in_30038_page0 .fa-stack,#stacks_in_30038_page0 i.fa{color:rgba(0, 0, 0, 1.00);border-radius:3px;-webkit-transition:color 300ms ease;-moz-transition:color 300ms ease;transition:color 300ms ease}#stacks_in_30038_page0 .fa-stack.custom,#stacks_in_30038_page0 i.fa.custom{font-size:24px}#stacks_in_30038_page0 .fa-spin{-webkit-animation-duration:2000ms;-moz-animation-duration:2000ms;animation-duration:2000ms}#stacks_in_30038_page0 .fa-border{border-color:rgba(238, 238, 238, 1.00);}#stacks_in_30038_page0 .fa-stack i.stack{color:rgba(221, 222, 220, 1.00)}#stacks_in_30038_page0 a:hover i.fa{color:rgba(0, 0, 0, 1.00)}#stacks_in_30038_page0 a:hover i.fa.stack{color:rgba(198, 199, 198, 1.00)}#stacks_in_30038_page0 a:hover .fa-border{}#stacks_in_30038_page0 .shadow-double i.fa{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_30038_page0 .shadow-basic i.fa{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_30038_page0 .shadow-retro i.fa{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_30038_page0 .jw-wrapper{}#stacks_in_30038_page0 .jw-wrapper.match.shadow-double{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_30038_page0 .jw-wrapper.match.shadow-basic{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_30038_page0 .jw-wrapper.match.shadow-retro{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_30038_page0 .jw-wrapper.match{color:rgba(0, 0, 0, 1.00)}#stacks_in_30038_page0 .jw-wrapper.match a{color:rgba(0, 0, 0, 1.00)}#stacks_in_30038_page0 .jw-wrapper.match a:hover{color:rgba(0, 0, 0, 1.00)}#stacks_in_30038_page0 .jw-wrapper.hover i.fa:hover,#stacks_in_30038_page0 .jw-wrapper.hover a:hover{color:rgba(153, 153, 153, 1.00)}
 
   

#stacks_in_29285_page0 {
	font-size: 80%;
}
#stacks_in_30040_page0 .background{}#stacks_in_30040_page0 .fa-stack,#stacks_in_30040_page0 i.fa{color:rgba(0, 0, 0, 1.00);border-radius:3px;-webkit-transition:color 300ms ease;-moz-transition:color 300ms ease;transition:color 300ms ease}#stacks_in_30040_page0 .fa-stack.custom,#stacks_in_30040_page0 i.fa.custom{font-size:24px}#stacks_in_30040_page0 .fa-spin{-webkit-animation-duration:2000ms;-moz-animation-duration:2000ms;animation-duration:2000ms}#stacks_in_30040_page0 .fa-border{border-color:rgba(238, 238, 238, 1.00);}#stacks_in_30040_page0 .fa-stack i.stack{color:rgba(221, 222, 220, 1.00)}#stacks_in_30040_page0 a:hover i.fa{color:rgba(0, 0, 0, 1.00)}#stacks_in_30040_page0 a:hover i.fa.stack{color:rgba(198, 199, 198, 1.00)}#stacks_in_30040_page0 a:hover .fa-border{}#stacks_in_30040_page0 .shadow-double i.fa{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_30040_page0 .shadow-basic i.fa{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_30040_page0 .shadow-retro i.fa{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_30040_page0 .jw-wrapper{}#stacks_in_30040_page0 .jw-wrapper.match.shadow-double{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_30040_page0 .jw-wrapper.match.shadow-basic{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_30040_page0 .jw-wrapper.match.shadow-retro{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_30040_page0 .jw-wrapper.match{color:rgba(0, 0, 0, 1.00)}#stacks_in_30040_page0 .jw-wrapper.match a{color:rgba(0, 0, 0, 1.00)}#stacks_in_30040_page0 .jw-wrapper.match a:hover{color:rgba(0, 0, 0, 1.00)}#stacks_in_30040_page0 .jw-wrapper.hover i.fa:hover,#stacks_in_30040_page0 .jw-wrapper.hover a:hover{color:rgba(153, 153, 153, 1.00)}
 
   

#stacks_in_29274_page0 {
	font-size: 80%;
}
#stacks_in_30042_page0 .background{}#stacks_in_30042_page0 .fa-stack,#stacks_in_30042_page0 i.fa{color:rgba(0, 0, 0, 1.00);border-radius:3px;-webkit-transition:color 300ms ease;-moz-transition:color 300ms ease;transition:color 300ms ease}#stacks_in_30042_page0 .fa-stack.custom,#stacks_in_30042_page0 i.fa.custom{font-size:24px}#stacks_in_30042_page0 .fa-spin{-webkit-animation-duration:2000ms;-moz-animation-duration:2000ms;animation-duration:2000ms}#stacks_in_30042_page0 .fa-border{border-color:rgba(238, 238, 238, 1.00);}#stacks_in_30042_page0 .fa-stack i.stack{color:rgba(221, 222, 220, 1.00)}#stacks_in_30042_page0 a:hover i.fa{color:rgba(0, 0, 0, 1.00)}#stacks_in_30042_page0 a:hover i.fa.stack{color:rgba(198, 199, 198, 1.00)}#stacks_in_30042_page0 a:hover .fa-border{}#stacks_in_30042_page0 .shadow-double i.fa{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_30042_page0 .shadow-basic i.fa{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_30042_page0 .shadow-retro i.fa{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_30042_page0 .jw-wrapper{}#stacks_in_30042_page0 .jw-wrapper.match.shadow-double{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_30042_page0 .jw-wrapper.match.shadow-basic{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_30042_page0 .jw-wrapper.match.shadow-retro{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_30042_page0 .jw-wrapper.match{color:rgba(0, 0, 0, 1.00)}#stacks_in_30042_page0 .jw-wrapper.match a{color:rgba(0, 0, 0, 1.00)}#stacks_in_30042_page0 .jw-wrapper.match a:hover{color:rgba(0, 0, 0, 1.00)}#stacks_in_30042_page0 .jw-wrapper.hover i.fa:hover,#stacks_in_30042_page0 .jw-wrapper.hover a:hover{color:rgba(153, 153, 153, 1.00)}
 
   

#stacks_in_29283_page0 {
	font-size: 80%;
}
.vegas-loading{display:none}.vegas-background{-ms-interpolation-mode:bicubic;image-rendering:optimizeQuality;max-width:none!important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;opacity:1.00} #stacks_in_29865_page0>.jw-parallax{overflow:hidden;background:transparent}#stacks_in_29865_page0>.jw-parallax.type-cover{position:absolute}#stacks_in_29865_page0>.jw-parallax.type-image{min-height:350px}#stacks_in_29865_page0>.jw-parallax.type-slice{min-height:350px}#stacks_in_29865_page0>.jw-parallax.touch-device{background-image:none!important}#stacks_in_29865_page0>.jw-parallax.touch-device:after{position:absolute;content:"";top:0;left:0;bottom:0;right:0;height:100%;width:100%;background-image:url(../files/bgImage_29865.png);background-size:cover;background-position:center center;overflow:hidden;opacity:1.00;z-index:-1}#stacks_in_29865_page0>.jw-parallax.touch-device.bg-warehouse:after{background-image:url()}#stacks_in_29865_page0>.jw-parallax>*{z-index:10} @media only screen and (max-width:40em){.parallax-mirror{display:none}#stacks_in_29865_page0>.jw-parallax{background-image:none!important}#stacks_in_29865_page0>.jw-parallax:after{position:absolute;content:"";top:0;left:0;bottom:0;right:0;height:100%;width:100%;background-image:url(../files/bgImage_29865.png);background-size:cover;background-position:center center;overflow:hidden;opacity:1.00;z-index:-1}#stacks_in_29865_page0>.jw-parallax.bg-warehouse:after{background-image:url()}}  

#stacks_in_446_page0>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_446_page0>.row.collapse{padding-left:0;padding-right:0}#stacks_in_446_page0>.row.padding-detailed{padding:0.00rem 0.00rem 0.00rem 0.00rem}@media only screen and (max-width:40em){#stacks_in_446_page0>.row.padding-detailed.padding-medium-up,#stacks_in_446_page0>.row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_446_page0>.row.padding-detailed.padding-y-medium-up,#stacks_in_446_page0>.row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){#stacks_in_446_page0>.row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_446_page0>.row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}
 

#stacks_in_446_page0 {
	background-color: rgba(255, 255, 254, 1.00);
}
/*
 * Typography: Core
 * Author: Jeremy Hawes
 * Version: 1.0.0
 * URL: http://onelittledesigner.com
 * Description: Typography Core stack for RapidWeaver 5+ Stack 2+
 */

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



	/* Typography - Text Global Styles */
	#typography_stacks_in_31850_page0 .typography_text,
	#typography_stacks_in_31850_page0 .typography_text div,
	#typography_stacks_in_31850_page0 .typography_text p,
	#typography_stacks_in_31850_page0 .typography_text blockquote,
	#typography_stacks_in_31850_page0 .typography_text address,
	#typography_stacks_in_31850_page0 .typography_text details {
		color: #333333;
	}
	
	
		#typography_stacks_in_31850_page0 h1.typography_headers,
		#typography_stacks_in_31850_page0 h2.typography_headers,
		#typography_stacks_in_31850_page0 h3.typography_headers,
		#typography_stacks_in_31850_page0 h4.typography_headers,
		#typography_stacks_in_31850_page0 h5.typography_headers,
		#typography_stacks_in_31850_page0 h6.typography_headers {
			color: #111111;
		}
	
	
	#typography_stacks_in_31850_page0 .typography_text a,
	#typography_stacks_in_31850_page0 .typography_headers a,
	#typography_stacks_in_31850_page0 a .typography_headers {
		color: #0276FD;
	}
	#typography_stacks_in_31850_page0 .typography_text a:hover,
	#typography_stacks_in_31850_page0 .typography_headers a:hover,
	#typography_stacks_in_31850_page0 a:hover .typography_headers,
	#typography_stacks_in_31850_page0 .typography_text a:active,
	#typography_stacks_in_31850_page0 .typography_headers a:active,
	#typography_stacks_in_31850_page0 a:active .typography_headers {
		color: #60AFFE;
	}
	#typography_stacks_in_31850_page0.linkDecorationInherit .typography_text a {
		text-decoration: inherit;
	}
	#typography_stacks_in_31850_page0.linkDecorationNone .typography_text a {
		text-decoration: none;
		font-weight: normal;
	}
	#typography_stacks_in_31850_page0.linkDecorationUnderline .typography_text a {
		text-decoration: underline;
		font-weight: normal;
	}
	#typography_stacks_in_31850_page0.linkDecorationBold .typography_text a {
		text-decoration: none;
		font-weight: bold;
	}
	#typography_stacks_in_31850_page0.linkDecorationItalic .typography_text a {
		text-decoration: none;
		font-weight: none;
		font-style: italic;
	}
	
	#typography_stacks_in_31850_page0.linkDecorationHoverInherit .typography_text a:hover,
	#typography_stacks_in_31850_page0.linkDecorationHoverInherit .typography_text a:active {
		text-decoration: inherit;
	}
	#typography_stacks_in_31850_page0.linkDecorationHoverNone .typography_text a:hover,
	#typography_stacks_in_31850_page0.linkDecorationHoverNone .typography_text a:active {
		text-decoration: none;
		font-weight: normal;
	}
	#typography_stacks_in_31850_page0.linkDecorationHoverUnderline .typography_text a:hover,
	#typography_stacks_in_31850_page0.linkDecorationHoverUnderline .typography_text a:active {
		text-decoration: underline;
	}
	#typography_stacks_in_31850_page0.linkDecorationHoverBold .typography_text a:hover,
	#typography_stacks_in_31850_page0.linkDecorationHoverBold .typography_text a:active {
		font-weight: bold;
	}
	#typography_stacks_in_31850_page0.linkDecorationHoverItalic .typography_text a:hover,
	#typography_stacks_in_31850_page0.linkDecorationHoverItalic .typography_text a:active {\
		font-style: italic;
	}
	

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


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

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










#stacks_in_31854_page0 {
	margin:  20px;
	padding:  20px;
}
   

#stacks_in_29308_page0 {
	font-size: 80%;
}
#stacks_in_29311_page0>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_29311_page0>.row.collapse{padding-left:0;padding-right:0}#stacks_in_29311_page0>.row.padding-detailed{padding:0.00rem 0.00rem 0.00rem 0.00rem}@media only screen and (max-width:40em){#stacks_in_29311_page0>.row.padding-detailed.padding-medium-up,#stacks_in_29311_page0>.row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_29311_page0>.row.padding-detailed.padding-y-medium-up,#stacks_in_29311_page0>.row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){#stacks_in_29311_page0>.row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_29311_page0>.row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}
 

#stacks_in_29311_page0 {
	padding:  20px;
}
#stacks_in_29348_page0 ul,#stacks_in_29348_page0 ol,#stacks_in_29348_page0 li{list-style:none}#stacks_in_29348_page0 img{ max-width:100%!important;height:auto;width:100%;}#stacks_in_29348_page0 .orbit-bullets li{}#stacks_in_29348_page0 .orbit-bullets li.active,#stacks_in_29348_page0 .orbit-bullets li:hover{}#stacks_in_29348_page0 .orbit-timer{ display:none;}#stacks_in_29348_page0 .orbit-bullets-container{text-align:center;}#stacks_in_29348_page0 .orbit-next,#stacks_in_29348_page0 .orbit-prev{}#stacks_in_29348_page0 .orbit-bullets{ display:block!important;} #stacks_in_29348_page0 .orbit-container .orbit-slides-container>* .orbit-caption{background-color:rgba(51,51,51,0.8);color:white}#stacks_in_29348_page0 .orbit-container .orbit-slide-number{color:white}#stacks_in_29348_page0 .orbit-container .orbit-timer .orbit-progress{background-color:rgba(255,255,255,0.3)}#stacks_in_29348_page0 .orbit-container .orbit-timer>span{border-color:white}#stacks_in_29348_page0 .orbit-container .orbit-timer.paused>span{border-color:transparent transparent transparent white}#stacks_in_29348_page0 .orbit-container .orbit-timer.paused>span.dark{border-color:transparent transparent transparent #333}#stacks_in_29348_page0 .orbit-container .orbit-prev,#stacks_in_29348_page0 .orbit-container .orbit-next{color:white}#stacks_in_29348_page0 .orbit-container .orbit-prev:hover,#stacks_in_29348_page0 .orbit-container .orbit-next:hover{background-color:rgba(0,0,0,0.3)}#stacks_in_29348_page0 .orbit-container .orbit-prev>span{border-right-color:white}#stacks_in_29348_page0 .orbit-container .orbit-prev:hover>span{border-right-color:white}#stacks_in_29348_page0 .orbit-container .orbit-next>span{border-left-color:white}#stacks_in_29348_page0 .orbit-container .orbit-next:hover>span{border-left-color:white} 
   

#stacks_in_29362_page0 {
	font-size: 80%;
}
   

#stacks_in_29364_page0 {
	font-size: 80%;
}
   

#stacks_in_29366_page0 {
	font-size: 80%;
}
.vegas-loading{display:none}.vegas-background{-ms-interpolation-mode:bicubic;image-rendering:optimizeQuality;max-width:none!important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;opacity:1.00} #stacks_in_30034_page0>.jw-parallax{overflow:hidden;background:transparent}#stacks_in_30034_page0>.jw-parallax.type-cover{position:absolute}#stacks_in_30034_page0>.jw-parallax.type-image{min-height:350px}#stacks_in_30034_page0>.jw-parallax.type-slice{min-height:350px}#stacks_in_30034_page0>.jw-parallax.touch-device{background-image:none!important}#stacks_in_30034_page0>.jw-parallax.touch-device:after{position:absolute;content:"";top:0;left:0;bottom:0;right:0;height:100%;width:100%;background-image:url(../files/bgImage_30034.png);background-size:cover;background-position:center center;overflow:hidden;opacity:1.00;z-index:-1}#stacks_in_30034_page0>.jw-parallax.touch-device.bg-warehouse:after{background-image:url()}#stacks_in_30034_page0>.jw-parallax>*{z-index:10} @media only screen and (max-width:40em){.parallax-mirror{display:none}#stacks_in_30034_page0>.jw-parallax{background-image:none!important}#stacks_in_30034_page0>.jw-parallax:after{position:absolute;content:"";top:0;left:0;bottom:0;right:0;height:100%;width:100%;background-image:url(../files/bgImage_30034.png);background-size:cover;background-position:center center;overflow:hidden;opacity:1.00;z-index:-1}#stacks_in_30034_page0>.jw-parallax.bg-warehouse:after{background-image:url()}}  

#stacks_in_465_page0>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_465_page0>.row.collapse{padding-left:0;padding-right:0}#stacks_in_465_page0>.row.padding-detailed{padding:0.00rem 0.00rem 0.00rem 0.00rem}@media only screen and (max-width:40em){#stacks_in_465_page0>.row.padding-detailed.padding-medium-up,#stacks_in_465_page0>.row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_465_page0>.row.padding-detailed.padding-y-medium-up,#stacks_in_465_page0>.row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){#stacks_in_465_page0>.row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_465_page0>.row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}
 

#stacks_in_465_page0 {
	background-color: rgba(255, 255, 254, 1.00);
}
 
#stacks_in_472_page0>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_472_page0>.row>.columns{margin-top:0.00rem;margin-bottom:0.00rem}#stacks_in_472_page0>.row.divider>.columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(0, 0, 0, 1.00)}

#stacks_in_472_page0 {
	margin: 30px 20px 20px 20px;
	padding:  20px;
}
#stacks_in_477_page0 a{display:block} #stacks_in_477_page0 img{} 
/*
 * Typography: Core
 * Author: Jeremy Hawes
 * Version: 1.0.0
 * URL: http://onelittledesigner.com
 * Description: Typography Core stack for RapidWeaver 5+ Stack 2+
 */

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



	/* Typography - Text Global Styles */
	#typography_stacks_in_31856_page0 .typography_text,
	#typography_stacks_in_31856_page0 .typography_text div,
	#typography_stacks_in_31856_page0 .typography_text p,
	#typography_stacks_in_31856_page0 .typography_text blockquote,
	#typography_stacks_in_31856_page0 .typography_text address,
	#typography_stacks_in_31856_page0 .typography_text details {
		color: #333333;
	}
	
	
		#typography_stacks_in_31856_page0 h1.typography_headers,
		#typography_stacks_in_31856_page0 h2.typography_headers,
		#typography_stacks_in_31856_page0 h3.typography_headers,
		#typography_stacks_in_31856_page0 h4.typography_headers,
		#typography_stacks_in_31856_page0 h5.typography_headers,
		#typography_stacks_in_31856_page0 h6.typography_headers {
			color: #111111;
		}
	
	
	#typography_stacks_in_31856_page0 .typography_text a,
	#typography_stacks_in_31856_page0 .typography_headers a,
	#typography_stacks_in_31856_page0 a .typography_headers {
		color: #0276FD;
	}
	#typography_stacks_in_31856_page0 .typography_text a:hover,
	#typography_stacks_in_31856_page0 .typography_headers a:hover,
	#typography_stacks_in_31856_page0 a:hover .typography_headers,
	#typography_stacks_in_31856_page0 .typography_text a:active,
	#typography_stacks_in_31856_page0 .typography_headers a:active,
	#typography_stacks_in_31856_page0 a:active .typography_headers {
		color: #60AFFE;
	}
	#typography_stacks_in_31856_page0.linkDecorationInherit .typography_text a {
		text-decoration: inherit;
	}
	#typography_stacks_in_31856_page0.linkDecorationNone .typography_text a {
		text-decoration: none;
		font-weight: normal;
	}
	#typography_stacks_in_31856_page0.linkDecorationUnderline .typography_text a {
		text-decoration: underline;
		font-weight: normal;
	}
	#typography_stacks_in_31856_page0.linkDecorationBold .typography_text a {
		text-decoration: none;
		font-weight: bold;
	}
	#typography_stacks_in_31856_page0.linkDecorationItalic .typography_text a {
		text-decoration: none;
		font-weight: none;
		font-style: italic;
	}
	
	#typography_stacks_in_31856_page0.linkDecorationHoverInherit .typography_text a:hover,
	#typography_stacks_in_31856_page0.linkDecorationHoverInherit .typography_text a:active {
		text-decoration: inherit;
	}
	#typography_stacks_in_31856_page0.linkDecorationHoverNone .typography_text a:hover,
	#typography_stacks_in_31856_page0.linkDecorationHoverNone .typography_text a:active {
		text-decoration: none;
		font-weight: normal;
	}
	#typography_stacks_in_31856_page0.linkDecorationHoverUnderline .typography_text a:hover,
	#typography_stacks_in_31856_page0.linkDecorationHoverUnderline .typography_text a:active {
		text-decoration: underline;
	}
	#typography_stacks_in_31856_page0.linkDecorationHoverBold .typography_text a:hover,
	#typography_stacks_in_31856_page0.linkDecorationHoverBold .typography_text a:active {
		font-weight: bold;
	}
	#typography_stacks_in_31856_page0.linkDecorationHoverItalic .typography_text a:hover,
	#typography_stacks_in_31856_page0.linkDecorationHoverItalic .typography_text a:active {\
		font-style: italic;
	}
	

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


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

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









   

#stacks_in_485_page0 {
	font-size: 80%;
}
#stacks_in_31915_page0 .accordion{margin:0}#stacks_in_31915_page0 .accordion-navigation>a{margin-top:0.00rem}#stacks_in_31915_page0 .accordion-navigation:first-child>a{margin-top:0}
   

#stacks_in_31921_page0 {
	font-size: 80%;
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay { 
	
	background: rgba(0, 0, 0, .85); 
	
	
	
}

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

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

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

.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}


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















/* Radial gradient fill */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
background: #FFFFFF;
background: -moz-radial-gradient(center, ellipse cover,  #FFFFFF 0%, #EAEAEA 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#FFFFFF), color-stop(100%,#EAEAEA));
background: -webkit-radial-gradient(center, ellipse cover, #FFFFFF 0%,#EAEAEA 100%);
background: -o-radial-gradient(center, ellipse cover, #FFFFFF 0%,#EAEAEA 100%);
background: -ms-radial-gradient(center, ellipse cover, #FFFFFF 0%,#EAEAEA 100%);
background: radial-gradient(ellipse at center, #FFFFFF 0%,#EAEAEA 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#EAEAEA',GradientType=1 );
}






.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { bottom: -7%; }
.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 14px/20px '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-overlay .nivo-lightbox-title {
	color: #FFFFFF;
	background: #000000;
}

.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;
	-moz-transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
}

.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: #FFFFFF;
	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: #FFFFFF;
	text-indent: 0px;
	content: 'Loading content...';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: #FFFFFF;
	font-size: 18px;
}

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



#topBoxTriggerRegionstacks_in_31922_page0 #topBoxTriggerstacks_in_31922_page0 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}

#topBoxTriggerRegionstacks_in_31922_page0 #topBoxTriggerContentstacks_in_31922_page0 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_31922_page0 #topBoxTriggerContentstacks_in_31922_page0 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_31922_page0 {
	color: #424242;
}

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

#topBoxContentWrapperstacks_in_31922_page0 h1,
#topBoxContentWrapperstacks_in_31922_page0 h2,
#topBoxContentWrapperstacks_in_31922_page0 h3,
#topBoxContentWrapperstacks_in_31922_page0 h4,
#topBoxContentWrapperstacks_in_31922_page0 h5,
#topBoxContentWrapperstacks_in_31922_page0 h6 {
	color: #000000;
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_31922_page0 a {
	color: #0050DD;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_31922_page0 a:visited {
	color: #0050DD;
}

#topBoxContentWrapperstacks_in_31922_page0 a:hover,
#topBoxContentWrapperstacks_in_31922_page0 a:focus,
#topBoxContentWrapperstacks_in_31922_page0 a:active {
	color: #FF0000;
}

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

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


#topBoxContentWrapperstacks_in_31922_page0 {
	display: none;
}


 #stacks_in_31927_page0{text-align:center}  @media only screen and (max-width:40em){#stacks_in_31927_page0{text-align:center}#stacks_in_31927_page0 .button{float:none!important}}    #stacks_in_31927_page0 .button{margin-bottom:0} 

#stacks_out_31927_page0 {
	width: 350px;
}

#stacks_in_31927_page0 {
	padding:  5px;
}
.vegas-loading{display:none}.vegas-background{-ms-interpolation-mode:bicubic;image-rendering:optimizeQuality;max-width:none!important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;opacity:1.00} #stacks_in_30044_page0>.jw-parallax{overflow:hidden;background:transparent}#stacks_in_30044_page0>.jw-parallax.type-cover{position:absolute}#stacks_in_30044_page0>.jw-parallax.type-image{min-height:350px}#stacks_in_30044_page0>.jw-parallax.type-slice{min-height:350px}#stacks_in_30044_page0>.jw-parallax.touch-device{background-image:none!important}#stacks_in_30044_page0>.jw-parallax.touch-device:after{position:absolute;content:"";top:0;left:0;bottom:0;right:0;height:100%;width:100%;background-image:url(../files/bgImage_30044.png);background-size:cover;background-position:center center;overflow:hidden;opacity:1.00;z-index:-1}#stacks_in_30044_page0>.jw-parallax.touch-device.bg-warehouse:after{background-image:url()}#stacks_in_30044_page0>.jw-parallax>*{z-index:10} @media only screen and (max-width:40em){.parallax-mirror{display:none}#stacks_in_30044_page0>.jw-parallax{background-image:none!important}#stacks_in_30044_page0>.jw-parallax:after{position:absolute;content:"";top:0;left:0;bottom:0;right:0;height:100%;width:100%;background-image:url(../files/bgImage_30044.png);background-size:cover;background-position:center center;overflow:hidden;opacity:1.00;z-index:-1}#stacks_in_30044_page0>.jw-parallax.bg-warehouse:after{background-image:url()}}  

#stacks_in_486_page0>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_486_page0>.row.collapse{padding-left:0;padding-right:0}#stacks_in_486_page0>.row.padding-detailed{padding:0.00rem 0.00rem 0.00rem 0.00rem}@media only screen and (max-width:40em){#stacks_in_486_page0>.row.padding-detailed.padding-medium-up,#stacks_in_486_page0>.row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_486_page0>.row.padding-detailed.padding-y-medium-up,#stacks_in_486_page0>.row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){#stacks_in_486_page0>.row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_486_page0>.row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}
 

#stacks_in_486_page0 {
	background-color: rgba(255, 255, 254, 1.00);
}
/*
 * Typography: Core
 * Author: Jeremy Hawes
 * Version: 1.0.0
 * URL: http://onelittledesigner.com
 * Description: Typography Core stack for RapidWeaver 5+ Stack 2+
 */

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



	/* Typography - Text Global Styles */
	#typography_stacks_in_31862_page0 .typography_text,
	#typography_stacks_in_31862_page0 .typography_text div,
	#typography_stacks_in_31862_page0 .typography_text p,
	#typography_stacks_in_31862_page0 .typography_text blockquote,
	#typography_stacks_in_31862_page0 .typography_text address,
	#typography_stacks_in_31862_page0 .typography_text details {
		color: #333333;
	}
	
	
		#typography_stacks_in_31862_page0 h1.typography_headers,
		#typography_stacks_in_31862_page0 h2.typography_headers,
		#typography_stacks_in_31862_page0 h3.typography_headers,
		#typography_stacks_in_31862_page0 h4.typography_headers,
		#typography_stacks_in_31862_page0 h5.typography_headers,
		#typography_stacks_in_31862_page0 h6.typography_headers {
			color: #111111;
		}
	
	
	#typography_stacks_in_31862_page0 .typography_text a,
	#typography_stacks_in_31862_page0 .typography_headers a,
	#typography_stacks_in_31862_page0 a .typography_headers {
		color: #0276FD;
	}
	#typography_stacks_in_31862_page0 .typography_text a:hover,
	#typography_stacks_in_31862_page0 .typography_headers a:hover,
	#typography_stacks_in_31862_page0 a:hover .typography_headers,
	#typography_stacks_in_31862_page0 .typography_text a:active,
	#typography_stacks_in_31862_page0 .typography_headers a:active,
	#typography_stacks_in_31862_page0 a:active .typography_headers {
		color: #60AFFE;
	}
	#typography_stacks_in_31862_page0.linkDecorationInherit .typography_text a {
		text-decoration: inherit;
	}
	#typography_stacks_in_31862_page0.linkDecorationNone .typography_text a {
		text-decoration: none;
		font-weight: normal;
	}
	#typography_stacks_in_31862_page0.linkDecorationUnderline .typography_text a {
		text-decoration: underline;
		font-weight: normal;
	}
	#typography_stacks_in_31862_page0.linkDecorationBold .typography_text a {
		text-decoration: none;
		font-weight: bold;
	}
	#typography_stacks_in_31862_page0.linkDecorationItalic .typography_text a {
		text-decoration: none;
		font-weight: none;
		font-style: italic;
	}
	
	#typography_stacks_in_31862_page0.linkDecorationHoverInherit .typography_text a:hover,
	#typography_stacks_in_31862_page0.linkDecorationHoverInherit .typography_text a:active {
		text-decoration: inherit;
	}
	#typography_stacks_in_31862_page0.linkDecorationHoverNone .typography_text a:hover,
	#typography_stacks_in_31862_page0.linkDecorationHoverNone .typography_text a:active {
		text-decoration: none;
		font-weight: normal;
	}
	#typography_stacks_in_31862_page0.linkDecorationHoverUnderline .typography_text a:hover,
	#typography_stacks_in_31862_page0.linkDecorationHoverUnderline .typography_text a:active {
		text-decoration: underline;
	}
	#typography_stacks_in_31862_page0.linkDecorationHoverBold .typography_text a:hover,
	#typography_stacks_in_31862_page0.linkDecorationHoverBold .typography_text a:active {
		font-weight: bold;
	}
	#typography_stacks_in_31862_page0.linkDecorationHoverItalic .typography_text a:hover,
	#typography_stacks_in_31862_page0.linkDecorationHoverItalic .typography_text a:active {\
		font-style: italic;
	}
	

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


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

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










#stacks_in_31866_page0 {
	margin:  20px;
	padding:  20px;
}
#stacks_in_488_page0 li{padding:0.62rem 1.25rem}

#stacks_out_488_page0 {
	width: 75%;
}

#stacks_in_488_page0 {
	margin: 20px 20px 60px 20px;
	padding:  20px;
}
#stacks_in_31874_page0 a{display:block} #stacks_in_31874_page0 img{} 
#stacks_in_31891_page0 a{display:block} #stacks_in_31891_page0 img{} 
#stacks_in_31892_page0 a{display:block} #stacks_in_31892_page0 img{} 
#stacks_in_31893_page0 a{display:block} #stacks_in_31893_page0 img{} 
#stacks_in_31894_page0 a{display:block} #stacks_in_31894_page0 img{} 
#stacks_in_31895_page0 a{display:block} #stacks_in_31895_page0 img{} 
#stacks_in_31896_page0 a{display:block} #stacks_in_31896_page0 img{} 
#stacks_in_31940_page0 a{display:block} #stacks_in_31940_page0 img{} 
#stacks_in_31898_page0 a{display:block} #stacks_in_31898_page0 img{} 
#stacks_in_31947_page0 a{display:block} #stacks_in_31947_page0 img{} 
#stacks_in_31948_page0 a{display:block} #stacks_in_31948_page0 img{} 
#stacks_in_31949_page0 a{display:block} #stacks_in_31949_page0 img{} 
.vegas-loading{display:none}.vegas-background{-ms-interpolation-mode:bicubic;image-rendering:optimizeQuality;max-width:none!important;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;opacity:1.00} #stacks_in_30046_page0>.jw-parallax{overflow:hidden;background:transparent}#stacks_in_30046_page0>.jw-parallax.type-cover{position:absolute}#stacks_in_30046_page0>.jw-parallax.type-image{min-height:350px}#stacks_in_30046_page0>.jw-parallax.type-slice{min-height:350px}#stacks_in_30046_page0>.jw-parallax.touch-device{background-image:none!important}#stacks_in_30046_page0>.jw-parallax.touch-device:after{position:absolute;content:"";top:0;left:0;bottom:0;right:0;height:100%;width:100%;background-image:url(../files/bgImage_30046.png);background-size:cover;background-position:center center;overflow:hidden;opacity:1.00;z-index:-1}#stacks_in_30046_page0>.jw-parallax.touch-device.bg-warehouse:after{background-image:url()}#stacks_in_30046_page0>.jw-parallax>*{z-index:10} @media only screen and (max-width:40em){.parallax-mirror{display:none}#stacks_in_30046_page0>.jw-parallax{background-image:none!important}#stacks_in_30046_page0>.jw-parallax:after{position:absolute;content:"";top:0;left:0;bottom:0;right:0;height:100%;width:100%;background-image:url(../files/bgImage_30046.png);background-size:cover;background-position:center center;overflow:hidden;opacity:1.00;z-index:-1}#stacks_in_30046_page0>.jw-parallax.bg-warehouse:after{background-image:url()}}  

#stacks_in_531_page0>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_531_page0>.row.collapse{padding-left:0;padding-right:0}#stacks_in_531_page0>.row.padding-detailed{padding:0.00rem 0.00rem 0.00rem 0.00rem}@media only screen and (max-width:40em){#stacks_in_531_page0>.row.padding-detailed.padding-medium-up,#stacks_in_531_page0>.row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_531_page0>.row.padding-detailed.padding-y-medium-up,#stacks_in_531_page0>.row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){#stacks_in_531_page0>.row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_531_page0>.row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}
 

#stacks_in_531_page0 {
	margin: 70px 0px 0px 0px;
}
/*
 * Typography: Core
 * Author: Jeremy Hawes
 * Version: 1.0.0
 * URL: http://onelittledesigner.com
 * Description: Typography Core stack for RapidWeaver 5+ Stack 2+
 */

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



	/* Typography - Text Global Styles */
	#typography_stacks_in_31868_page0 .typography_text,
	#typography_stacks_in_31868_page0 .typography_text div,
	#typography_stacks_in_31868_page0 .typography_text p,
	#typography_stacks_in_31868_page0 .typography_text blockquote,
	#typography_stacks_in_31868_page0 .typography_text address,
	#typography_stacks_in_31868_page0 .typography_text details {
		color: #333333;
	}
	
	
		#typography_stacks_in_31868_page0 h1.typography_headers,
		#typography_stacks_in_31868_page0 h2.typography_headers,
		#typography_stacks_in_31868_page0 h3.typography_headers,
		#typography_stacks_in_31868_page0 h4.typography_headers,
		#typography_stacks_in_31868_page0 h5.typography_headers,
		#typography_stacks_in_31868_page0 h6.typography_headers {
			color: #111111;
		}
	
	
	#typography_stacks_in_31868_page0 .typography_text a,
	#typography_stacks_in_31868_page0 .typography_headers a,
	#typography_stacks_in_31868_page0 a .typography_headers {
		color: #0276FD;
	}
	#typography_stacks_in_31868_page0 .typography_text a:hover,
	#typography_stacks_in_31868_page0 .typography_headers a:hover,
	#typography_stacks_in_31868_page0 a:hover .typography_headers,
	#typography_stacks_in_31868_page0 .typography_text a:active,
	#typography_stacks_in_31868_page0 .typography_headers a:active,
	#typography_stacks_in_31868_page0 a:active .typography_headers {
		color: #60AFFE;
	}
	#typography_stacks_in_31868_page0.linkDecorationInherit .typography_text a {
		text-decoration: inherit;
	}
	#typography_stacks_in_31868_page0.linkDecorationNone .typography_text a {
		text-decoration: none;
		font-weight: normal;
	}
	#typography_stacks_in_31868_page0.linkDecorationUnderline .typography_text a {
		text-decoration: underline;
		font-weight: normal;
	}
	#typography_stacks_in_31868_page0.linkDecorationBold .typography_text a {
		text-decoration: none;
		font-weight: bold;
	}
	#typography_stacks_in_31868_page0.linkDecorationItalic .typography_text a {
		text-decoration: none;
		font-weight: none;
		font-style: italic;
	}
	
	#typography_stacks_in_31868_page0.linkDecorationHoverInherit .typography_text a:hover,
	#typography_stacks_in_31868_page0.linkDecorationHoverInherit .typography_text a:active {
		text-decoration: inherit;
	}
	#typography_stacks_in_31868_page0.linkDecorationHoverNone .typography_text a:hover,
	#typography_stacks_in_31868_page0.linkDecorationHoverNone .typography_text a:active {
		text-decoration: none;
		font-weight: normal;
	}
	#typography_stacks_in_31868_page0.linkDecorationHoverUnderline .typography_text a:hover,
	#typography_stacks_in_31868_page0.linkDecorationHoverUnderline .typography_text a:active {
		text-decoration: underline;
	}
	#typography_stacks_in_31868_page0.linkDecorationHoverBold .typography_text a:hover,
	#typography_stacks_in_31868_page0.linkDecorationHoverBold .typography_text a:active {
		font-weight: bold;
	}
	#typography_stacks_in_31868_page0.linkDecorationHoverItalic .typography_text a:hover,
	#typography_stacks_in_31868_page0.linkDecorationHoverItalic .typography_text a:active {\
		font-style: italic;
	}
	

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


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

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










#stacks_in_31872_page0 {
	margin:  20px;
}
 
#stacks_in_31899_page0>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_31899_page0>.row>.columns{margin-top:0.00rem;margin-bottom:0.00rem}#stacks_in_31899_page0>.row.divider>.columns:not(:first-child):before{top:0px;bottom:0px;width:1px;background:rgba(0, 0, 0, 1.00)}

#stacks_out_31899_page0 {
	width: 80%;
}

#stacks_in_31899_page0 {
	margin: 20px 0px 60px 0px;
}
   

#stacks_in_31904_page0 {
	font-size: 80%;
}
   

#stacks_in_31906_page0 {
	font-size: 80%;
}
   

#stacks_in_31908_page0 {
	font-size: 80%;
}
#stacks_in_579_page0>.row{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_579_page0>.row.collapse{padding-left:0;padding-right:0}#stacks_in_579_page0>.row.padding-detailed{padding:0.00rem 0.00rem 0.00rem 0.00rem}@media only screen and (max-width:40em){#stacks_in_579_page0>.row.padding-detailed.padding-medium-up,#stacks_in_579_page0>.row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_579_page0>.row.padding-detailed.padding-y-medium-up,#stacks_in_579_page0>.row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}@media only screen and (min-width:40.063em) and (max-width:62.5em){#stacks_in_579_page0>.row.padding-detailed.padding-large-up{padding-left:0;padding-right:0}#stacks_in_579_page0>.row.padding-detailed.padding-y-large-up{padding-top:0;padding-bottom:0}}
 

#stacks_in_579_page0 {
	background-color: rgba(40, 40, 39, 1.00);
}
 #stacks_in_586_page0 .copyright{color:rgba(255, 255, 254, 1.00);font-size:0.90rem}#stacks_in_586_page0 .copyright a{color:rgba(201, 202, 200, 1.00)}#stacks_in_586_page0 .copyright a:hover{color:rgba(140, 141, 140, 1.00)}  @media only screen and (max-width:40em){#stacks_in_586_page0 p{text-align:center!important}} #stacks_in_586_page0 .copyright{margin-bottom:0}

#stacks_in_586_page0 {
	margin:  10px;
	padding:  20px;
}
