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


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

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

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

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

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

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

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

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

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

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

/* fall */
.nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall {
	-webkit-perspective: 1000px;
	   -moz-perspective: 1000px;
	        perspective: 1000px;
}
.nivo-lightbox-effect-fall .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	    -ms-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;
	-webkit-transform: translateZ(300px);
	   -moz-transform: translateZ(300px);
	    -ms-transform: translateZ(300px);
	        transform: translateZ(300px);
}
.nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
	    -ms-transform: translateZ(0);
	        transform: translateZ(0);
}.target_stack.width-fill{width:100%}.target_stack.width-auto{width:auto}.target_stack.position-browser{position:fixed !important}.target_stack.position-absolute{position:absolute !important}.target_stack.position-body{position:absolute !important}.target_stack.position-right{float:right}.target_stack.position-left{float:left}.target_stack.vcenter{top:0;height:100%}.target_stack.vcenter > .com_joeworkman_stacks_target_stack{position:relative;top:50%;transform:translateY(-50%)}.target_stack.hcenter > .com_joeworkman_stacks_target_stack{position:relative;left:50%;transform:translateX(-50%)}.target_stack.hcenter.vcenter > .com_joeworkman_stacks_target_stack{transform:translateX(-50%) translateY(-50%)}@media only screen and (min-width:40em){.target_stack.target-small-only{position:relative !important;float:none !important;height:auto !important;left:auto !important;top:auto !important;bottom:auto !important;right:auto !important}.target_stack.target-small-only > .com_joeworkman_stacks_target_stack{left:auto !important;top:auto !important;bottom:auto !important;right:auto !important;transform:none !important}}@media only screen and (max-width:39.9375em){.target_stack.disable-small{position:relative !important;float:none !important;height:auto !important;left:auto !important;top:auto !important;bottom:auto !important;right:auto !important}.target_stack.disable-small > .com_joeworkman_stacks_target_stack{left:auto !important;top:auto !important;bottom:auto !important;right:auto !important;transform:none !important}}@media only screen and (max-width:62.5em){.target_stack.disable-medium{position:relative !important;float:none !important;height:auto !important;left:auto !important;top:auto !important;bottom:auto !important;right:auto !important}.target_stack.disable-medium > .com_joeworkman_stacks_target_stack{left:auto !important;top:auto !important;bottom:auto !important;right:auto !important;transform:none !important}}
.raincheck{position:relative;background-color:transparent;background-image:url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxMDAgMTAwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCIgY2xhc3M9Imxkcy1yb2xsaW5nIj48Y2lyY2xlIGN4PSI1MCIgY3k9IjUwIiBmaWxsPSJub25lIiBuZy1hdHRyLXN0cm9rZT0ie3tjb25maWcuY29sb3J9fSIgbmctYXR0ci1zdHJva2Utd2lkdGg9Int7Y29uZmlnLndpZHRofX0iIG5nLWF0dHItcj0ie3tjb25maWcucmFkaXVzfX0iIG5nLWF0dHItc3Ryb2tlLWRhc2hhcnJheT0ie3tjb25maWcuZGFzaGFycmF5fX0iIHN0cm9rZT0icmdiYSgyMTQsMjE0LDIxNCwwLjUpIiBzdHJva2Utd2lkdGg9IjEwIiByPSIzNSIgc3Ryb2tlLWRhc2hhcnJheT0iMTY0LjkzMzYxNDMxMzQ2NDE1IDU2Ljk3Nzg3MTQzNzgyMTM4Ij48YW5pbWF0ZVRyYW5zZm9ybSBhdHRyaWJ1dGVOYW1lPSJ0cmFuc2Zvcm0iIHR5cGU9InJvdGF0ZSIgY2FsY01vZGU9ImxpbmVhciIgdmFsdWVzPSIwIDUwIDUwOzM2MCA1MCA1MCIga2V5VGltZXM9IjA7MSIgZHVyPSIxcyIgYmVnaW49IjBzIiByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSI+PC9hbmltYXRlVHJhbnNmb3JtPjwvY2lyY2xlPjwvc3ZnPg==");background-repeat:no-repeat;background-size:100px 100px;background-position:center center;transition:background-image 300ms ease-out}.raincheck .raincheck-inner{opacity:0;transition:opacity 300ms ease-out}.raincheck.loaded{background-image:none}.raincheck.loaded .raincheck-inner{opacity:1}
.responsive-embed{position:relative;height:0;margin-bottom:1rem;padding-bottom:75%;overflow:hidden}.responsive-embed.widescreen{padding-bottom:56.25%}.responsive-embed.square{padding-bottom:100%}.responsive-embed embed,.responsive-embed iframe,.responsive-embed object,.responsive-embed video{position:absolute;top:0;left:0;width:100%;height:100%}
.lines{border:0;height:0;width:100%;margin:0;padding:0;opacity:1}.lines-wrapper{position:relative}.lines-wrapper.vertical{height:100%}
a.anchor{height:0 !important;font-size:0 !important;line-height:0 !important;padding:0 !important;margin:0 !important;display:block !important}
.com_bigwhiteduck_stacks_paragraphpro_stack p.text-center{text-align:center}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-left{text-align:left}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-right{text-align:right}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-justify{text-align:justify}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-inherit{text-align:inherit}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_paragraphpro_stack p.small-only-text-center{text-align:center}.com_bigwhiteduck_stacks_paragraphpro_stack p.small-only-text-center + ul{display:table;margin:0 auto;text-align:left}}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_paragraphpro_stack p.text-justify.small-only-just-left{text-align:left !important}}
/* Start dooFaq2 stack page CSS code */
/* Iconate keyframe animations */
@-webkit-keyframes zoomOut{50%{-webkit-transform:scale(0,0);transform:scale(0,0);opacity:0}100%{-webkit-transform:scale(1,1);transform:scale(1,1);opacity:1}}@-moz-keyframes zoomOut{50%{-moz-transform:scale(0,0);transform:scale(0,0);opacity:0}100%{-moz-transform:scale(1,1);transform:scale(1,1);opacity:1}}@-o-keyframes zoomOut{50%{-o-transform:scale(0,0);transform:scale(0,0);opacity:0}100%{-o-transform:scale(1,1);transform:scale(1,1);opacity:1}}@keyframes zoomOut{50%{-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-o-transform:scale(0,0);transform:scale(0,0);opacity:0}100%{-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-o-transform:scale(1,1);transform:scale(1,1);opacity:1}}@-webkit-keyframes zoomIn{0%{opacity:.6}25%,75%{-webkit-transform:scale(1.8);transform:scale(1.8);opacity:0}50%{opacity:0}100%{opacity:1}}@-moz-keyframes zoomIn{0%{opacity:.6}25%,75%{-moz-transform:scale(1.8);transform:scale(1.8);opacity:0}50%{opacity:0}100%{opacity:1}}@-o-keyframes zoomIn{0%{opacity:.6}25%,75%{-o-transform:scale(1.8);transform:scale(1.8);opacity:0}50%{opacity:0}100%{opacity:1}}@keyframes zoomIn{0%{opacity:.6}25%,75%{-webkit-transform:scale(1.8);-moz-transform:scale(1.8);-o-transform:scale(1.8);transform:scale(1.8);opacity:0}50%{opacity:0}100%{opacity:1}}@-webkit-keyframes fadeOut{50%{opacity:0}100%{opacity:1}}@-moz-keyframes fadeOut{50%{opacity:0}100%{opacity:1}}@-o-keyframes fadeOut{50%{opacity:0}100%{opacity:1}}@keyframes fadeOut{50%{opacity:0}100%{opacity:1}}@-webkit-keyframes fadeOutRight{25%{-webkit-transform:translateX(10px);transform:translateX(10px);opacity:0}50%{-webkit-transform:translateX(-20px);transform:translateX(-20px);opacity:0}75%{-webkit-transform:translateX(-5px);transform:translateX(-5px);opacity:.2}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}@-moz-keyframes fadeOutRight{25%{-moz-transform:translateX(10px);transform:translateX(10px);opacity:0}50%{-moz-transform:translateX(-20px);transform:translateX(-20px);opacity:0}75%{-moz-transform:translateX(-5px);transform:translateX(-5px);opacity:.2}100%{-moz-transform:translateX(0);transform:translateX(0);opacity:1}}@-o-keyframes fadeOutRight{25%{-o-transform:translateX(10px);transform:translateX(10px);opacity:0}50%{-o-transform:translateX(-20px);transform:translateX(-20px);opacity:0}75%{-o-transform:translateX(-5px);transform:translateX(-5px);opacity:.2}100%{-o-transform:translateX(0);transform:translateX(0);opacity:1}}@keyframes fadeOutRight{25%{-webkit-transform:translateX(10px);-moz-transform:translateX(10px);-o-transform:translateX(10px);transform:translateX(10px);opacity:0}50%{-webkit-transform:translateX(-20px);-moz-transform:translateX(-20px);-o-transform:translateX(-20px);transform:translateX(-20px);opacity:0}75%{-webkit-transform:translateX(-5px);-moz-transform:translateX(-5px);-o-transform:translateX(-5px);transform:translateX(-5px);opacity:.2}100%{-webkit-transform:translateX(0);-moz-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0);opacity:1}}@-webkit-keyframes fadeOutLeft{25%{-webkit-transform:translateX(-10px);transform:translateX(-10px);opacity:0}50%{-webkit-transform:translateX(20px);transform:translateX(20px);opacity:0}75%{-webkit-transform:translateX(5px);transform:translateX(5px);opacity:.2}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}@-moz-keyframes fadeOutLeft{25%{-moz-transform:translateX(-10px);transform:translateX(-10px);opacity:0}50%{-moz-transform:translateX(20px);transform:translateX(20px);opacity:0}75%{-moz-transform:translateX(5px);transform:translateX(5px);opacity:.2}100%{-moz-transform:translateX(0);transform:translateX(0);opacity:1}}@-o-keyframes fadeOutLeft{25%{-o-transform:translateX(-10px);transform:translateX(-10px);opacity:0}50%{-o-transform:translateX(20px);transform:translateX(20px);opacity:0}75%{-o-transform:translateX(5px);transform:translateX(5px);opacity:.2}100%{-o-transform:translateX(0);transform:translateX(0);opacity:1}}@keyframes fadeOutLeft{25%{-webkit-transform:translateX(-10px);-moz-transform:translateX(-10px);-o-transform:translateX(-10px);transform:translateX(-10px);opacity:0}50%{-webkit-transform:translateX(20px);-moz-transform:translateX(20px);-o-transform:translateX(20px);transform:translateX(20px);opacity:0}75%{-webkit-transform:translateX(5px);-moz-transform:translateX(5px);-o-transform:translateX(5px);transform:translateX(5px);opacity:.2}100%{-webkit-transform:translateX(0);-moz-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0);opacity:1}}@-webkit-keyframes fadeOutTop{25%{-webkit-transform:translateY(-5px);transform:translateY(-5px);opacity:0}50%{-webkit-transform:translateY(20px);transform:translateY(20px);opacity:0}75%{-webkit-transform:translateY(5px);transform:translateY(5px);opacity:.2}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@-moz-keyframes fadeOutTop{25%{-moz-transform:translateY(-5px);transform:translateY(-5px);opacity:0}50%{-moz-transform:translateY(20px);transform:translateY(20px);opacity:0}75%{-moz-transform:translateY(5px);transform:translateY(5px);opacity:.2}100%{-moz-transform:translateY(0);transform:translateY(0);opacity:1}}@-o-keyframes fadeOutTop{25%{-o-transform:translateY(-5px);transform:translateY(-5px);opacity:0}50%{-o-transform:translateY(20px);transform:translateY(20px);opacity:0}75%{-o-transform:translateY(5px);transform:translateY(5px);opacity:.2}100%{-o-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes fadeOutTop{25%{-webkit-transform:translateY(-5px);-moz-transform:translateY(-5px);-o-transform:translateY(-5px);transform:translateY(-5px);opacity:0}50%{-webkit-transform:translateY(20px);-moz-transform:translateY(20px);-o-transform:translateY(20px);transform:translateY(20px);opacity:0}75%{-webkit-transform:translateY(5px);-moz-transform:translateY(5px);-o-transform:translateY(5px);transform:translateY(5px);opacity:.2}100%{-webkit-transform:translateY(0);-moz-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0);opacity:1}}@-webkit-keyframes fadeOutBottom{25%{-webkit-transform:translateY(5px);transform:translateY(5px);opacity:0}50%{-webkit-transform:translateY(-10px);transform:translateY(-10px);opacity:0}75%{-webkit-transform:translateY(-5px);transform:translateY(-5px);opacity:.2}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@-moz-keyframes fadeOutBottom{25%{-moz-transform:translateY(5px);transform:translateY(5px);opacity:0}50%{-moz-transform:translateY(-10px);transform:translateY(-10px);opacity:0}75%{-moz-transform:translateY(-5px);transform:translateY(-5px);opacity:.2}100%{-moz-transform:translateY(0);transform:translateY(0);opacity:1}}@-o-keyframes fadeOutBottom{25%{-o-transform:translateY(5px);transform:translateY(5px);opacity:0}50%{-o-transform:translateY(-10px);transform:translateY(-10px);opacity:0}75%{-o-transform:translateY(-5px);transform:translateY(-5px);opacity:.2}100%{-o-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes fadeOutBottom{25%{-webkit-transform:translateY(5px);-moz-transform:translateY(5px);-o-transform:translateY(5px);transform:translateY(5px);opacity:0}50%{-webkit-transform:translateY(-10px);-moz-transform:translateY(-10px);-o-transform:translateY(-10px);transform:translateY(-10px);opacity:0}75%{-webkit-transform:translateY(-5px);-moz-transform:translateY(-5px);-o-transform:translateY(-5px);transform:translateY(-5px);opacity:.2}100%{-webkit-transform:translateY(0);-moz-transform:translateY(0);-o-transform:translateY(0);transform:translateY(0);opacity:1}}@-webkit-keyframes verticalFlip{50%{-webkit-transform:rotateX(90deg);transform:rotateX(90deg)}100%{-webkit-transform:rotateX(0deg);transform:rotateX(0deg)}}@-moz-keyframes verticalFlip{50%{-moz-transform:rotateX(90deg);transform:rotateX(90deg)}100%{-moz-transform:rotateX(0deg);transform:rotateX(0deg)}}@-o-keyframes verticalFlip{50%{transform:rotateX(90deg)}100%{transform:rotateX(0deg)}}@keyframes verticalFlip{50%{-webkit-transform:rotateX(90deg);-moz-transform:rotateX(90deg);transform:rotateX(90deg)}100%{-webkit-transform:rotateX(0deg);-moz-transform:rotateX(0deg);transform:rotateX(0deg)}}@-webkit-keyframes horizontalFlip{50%{-webkit-transform:rotateY(90deg);transform:rotateY(90deg)}100%{-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}}@-moz-keyframes horizontalFlip{50%{-moz-transform:rotateY(90deg);transform:rotateY(90deg)}100%{-moz-transform:rotateY(0deg);transform:rotateY(0deg)}}@-o-keyframes horizontalFlip{50%{transform:rotateY(90deg)}100%{transform:rotateY(0deg)}}@keyframes horizontalFlip{50%{-webkit-transform:rotateY(90deg);-moz-transform:rotateY(90deg);transform:rotateY(90deg)}100%{-webkit-transform:rotateY(0deg);-moz-transform:rotateY(0deg);transform:rotateY(0deg)}}@-webkit-keyframes bounceOutBottom{20%,100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,45%,80%,90%{opacity:1;-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}50%{opacity:0;-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}@-moz-keyframes bounceOutBottom{20%,100%{-moz-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,45%,80%,90%{opacity:1;-moz-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}50%{opacity:0;-moz-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}@-o-keyframes bounceOutBottom{20%,100%{transform:translate3d(0,0,0)}40%,45%,80%,90%{opacity:1;transform:translate3d(0,-5px,0)}50%{opacity:0;transform:translate3d(0,10px,0)}}@keyframes bounceOutBottom{20%,100%{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,45%,80%,90%{opacity:1;-webkit-transform:translate3d(0,-5px,0);-moz-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}50%{opacity:0;-webkit-transform:translate3d(0,10px,0);-moz-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}@-webkit-keyframes bounceOutTop{20%,100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,45%,80%,90%{opacity:1;-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}50%{opacity:0;-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}}@-moz-keyframes bounceOutTop{20%,100%{-moz-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,45%,80%,90%{opacity:1;-moz-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}50%{opacity:0;-moz-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}}@-o-keyframes bounceOutTop{20%,100%{transform:translate3d(0,0,0)}40%,45%,80%,90%{opacity:1;transform:translate3d(0,5px,0)}50%{opacity:0;transform:translate3d(0,-10px,0)}}@keyframes bounceOutTop{20%,100%{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,45%,80%,90%{opacity:1;-webkit-transform:translate3d(0,5px,0);-moz-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}50%{opacity:0;-webkit-transform:translate3d(0,-10px,0);-moz-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}}@-webkit-keyframes bounceOutLeft{20%,100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,80%{opacity:1;-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}50%{opacity:0;-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}}@-moz-keyframes bounceOutLeft{20%,100%{-moz-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,80%{opacity:1;-moz-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}50%{opacity:0;-moz-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}}@-o-keyframes bounceOutLeft{20%,100%{transform:translate3d(0,0,0)}40%,80%{opacity:1;transform:translate3d(5px,0,0)}50%{opacity:0;transform:translate3d(-10px,0,0)}}@keyframes bounceOutLeft{20%,100%{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,80%{opacity:1;-webkit-transform:translate3d(5px,0,0);-moz-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}50%{opacity:0;-webkit-transform:translate3d(-10px,0,0);-moz-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}}@-webkit-keyframes bounceOutRight{20%,100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,80%{opacity:1;-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}50%{opacity:0;-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@-moz-keyframes bounceOutRight{20%,100%{-moz-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,80%{opacity:1;-moz-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}50%{opacity:0;-moz-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@-o-keyframes bounceOutRight{20%,100%{transform:translate3d(0,0,0)}40%,80%{opacity:1;transform:translate3d(-5px,0,0)}50%{opacity:0;transform:translate3d(10px,0,0)}}@keyframes bounceOutRight{20%,100%{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,80%{opacity:1;-webkit-transform:translate3d(-5px,0,0);-moz-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}50%{opacity:0;-webkit-transform:translate3d(10px,0,0);-moz-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@-webkit-keyframes rubberBand{0%,100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%,60%{-webkit-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%,80%{-webkit-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}}@-moz-keyframes rubberBand{0%,100%{-moz-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%,60%{-moz-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%,80%{-moz-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-moz-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}}@-o-keyframes rubberBand{0%,100%{transform:scale3d(1,1,1)}30%,60%{transform:scale3d(1.25,.75,1)}40%,80%{transform:scale3d(.75,1.25,1)}50%{transform:scale3d(1.15,.85,1)}}@keyframes rubberBand{0%,100%{-webkit-transform:scale3d(1,1,1);-moz-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%,60%{-webkit-transform:scale3d(1.25,.75,1);-moz-transform:scale3d(1.25,.75,1);transform:scale3d(1.25,.75,1)}40%,80%{-webkit-transform:scale3d(.75,1.25,1);-moz-transform:scale3d(.75,1.25,1);transform:scale3d(.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,.85,1);-moz-transform:scale3d(1.15,.85,1);transform:scale3d(1.15,.85,1)}}@-webkit-keyframes tada{50%{-webkit-transform:scale3d(.3,.3,.3) rotate3d(0,0,1,-20deg);transform:scale3d(.3,.3,.3) rotate3d(0,0,1,-20deg);-webkit-transform-origin:center;transform-origin:center}70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,20deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,20deg);-webkit-transform-origin:center;transform-origin:center}60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-20deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-20deg);-webkit-transform-origin:center;transform-origin:center}100%{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1);-webkit-transform-origin:center;transform-origin:center}}@-moz-keyframes tada{50%{-moz-transform:scale3d(.3,.3,.3) rotate3d(0,0,1,-20deg);transform:scale3d(.3,.3,.3) rotate3d(0,0,1,-20deg);-moz-transform-origin:center;transform-origin:center}70%,90%{-moz-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,20deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,20deg);-moz-transform-origin:center;transform-origin:center}60%,80%{-moz-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-20deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-20deg);-moz-transform-origin:center;transform-origin:center}100%{-moz-transform:scale3d(1,1,1);transform:scale3d(1,1,1);-moz-transform-origin:center;transform-origin:center}}@-o-keyframes tada{50%{transform:scale3d(.3,.3,.3) rotate3d(0,0,1,-20deg);-o-transform-origin:center;transform-origin:center}70%,90%{transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,20deg);-o-transform-origin:center;transform-origin:center}60%,80%{transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-20deg);-o-transform-origin:center;transform-origin:center}100%{transform:scale3d(1,1,1);-o-transform-origin:center;transform-origin:center}}@keyframes tada{50%{-webkit-transform:scale3d(.3,.3,.3) rotate3d(0,0,1,-20deg);-moz-transform:scale3d(.3,.3,.3) rotate3d(0,0,1,-20deg);transform:scale3d(.3,.3,.3) rotate3d(0,0,1,-20deg);-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center}70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,20deg);-moz-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,20deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,20deg);-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center}60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-20deg);-moz-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-20deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-20deg);-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center}100%{-webkit-transform:scale3d(1,1,1);-moz-transform:scale3d(1,1,1);transform:scale3d(1,1,1);-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center}}@-webkit-keyframes rollOutRight{30%{-webkit-transform:translateX(10px) rotate3d(0,0,1,50deg);transform:translateX(10px) rotate3d(0,0,1,50deg);opacity:0}50%{-webkit-transform:translateX(-20px);transform:translateX(-20px);opacity:0}55%{-webkit-transform:translateX(-20px) rotate3d(0,0,1,-90deg);transform:translateX(-20px) rotate3d(0,0,1,-90deg);opacity:0}100%{-webkit-transform:translateX(0) rotate3d(0,0,1,0deg);transform:translateX(0) rotate3d(0,0,1,0deg);opacity:1}}@-moz-keyframes rollOutRight{30%{-moz-transform:translateX(10px) rotate3d(0,0,1,50deg);transform:translateX(10px) rotate3d(0,0,1,50deg);opacity:0}50%{-moz-transform:translateX(-20px);transform:translateX(-20px);opacity:0}55%{-moz-transform:translateX(-20px) rotate3d(0,0,1,-90deg);transform:translateX(-20px) rotate3d(0,0,1,-90deg);opacity:0}100%{-moz-transform:translateX(0) rotate3d(0,0,1,0deg);transform:translateX(0) rotate3d(0,0,1,0deg);opacity:1}}@-o-keyframes rollOutRight{30%{transform:translateX(10px) rotate3d(0,0,1,50deg);opacity:0}50%{-o-transform:translateX(-20px);transform:translateX(-20px);opacity:0}55%{transform:translateX(-20px) rotate3d(0,0,1,-90deg);opacity:0}100%{transform:translateX(0) rotate3d(0,0,1,0deg);opacity:1}}@keyframes rollOutRight{30%{-webkit-transform:translateX(10px) rotate3d(0,0,1,50deg);-moz-transform:translateX(10px) rotate3d(0,0,1,50deg);transform:translateX(10px) rotate3d(0,0,1,50deg);opacity:0}50%{-webkit-transform:translateX(-20px);-moz-transform:translateX(-20px);-o-transform:translateX(-20px);transform:translateX(-20px);opacity:0}55%{-webkit-transform:translateX(-20px) rotate3d(0,0,1,-90deg);-moz-transform:translateX(-20px) rotate3d(0,0,1,-90deg);transform:translateX(-20px) rotate3d(0,0,1,-90deg);opacity:0}100%{-webkit-transform:translateX(0) rotate3d(0,0,1,0deg);-moz-transform:translateX(0) rotate3d(0,0,1,0deg);transform:translateX(0) rotate3d(0,0,1,0deg);opacity:1}}@-webkit-keyframes rollOutLeft{30%{-webkit-transform:translateX(-10px) rotate3d(0,0,1,-50deg);transform:translateX(-10px) rotate3d(0,0,1,-50deg);opacity:0}50%{-webkit-transform:translateX(20px);transform:translateX(20px);opacity:0}55%{-webkit-transform:translateX(20px) rotate3d(0,0,1,90deg);transform:translateX(20px) rotate3d(0,0,1,90deg);opacity:0}100%{-webkit-transform:translateX(0) rotate3d(0,0,1,0deg);transform:translateX(0) rotate3d(0,0,1,0deg);opacity:1}}@-moz-keyframes rollOutLeft{30%{-moz-transform:translateX(-10px) rotate3d(0,0,1,-50deg);transform:translateX(-10px) rotate3d(0,0,1,-50deg);opacity:0}50%{-moz-transform:translateX(20px);transform:translateX(20px);opacity:0}55%{-moz-transform:translateX(20px) rotate3d(0,0,1,90deg);transform:translateX(20px) rotate3d(0,0,1,90deg);opacity:0}100%{-moz-transform:translateX(0) rotate3d(0,0,1,0deg);transform:translateX(0) rotate3d(0,0,1,0deg);opacity:1}}@-o-keyframes rollOutLeft{30%{transform:translateX(-10px) rotate3d(0,0,1,-50deg);opacity:0}50%{-o-transform:translateX(20px);transform:translateX(20px);opacity:0}55%{transform:translateX(20px) rotate3d(0,0,1,90deg);opacity:0}100%{transform:translateX(0) rotate3d(0,0,1,0deg);opacity:1}}@keyframes rollOutLeft{30%{-webkit-transform:translateX(-10px) rotate3d(0,0,1,-50deg);-moz-transform:translateX(-10px) rotate3d(0,0,1,-50deg);transform:translateX(-10px) rotate3d(0,0,1,-50deg);opacity:0}50%{-webkit-transform:translateX(20px);-moz-transform:translateX(20px);-o-transform:translateX(20px);transform:translateX(20px);opacity:0}55%{-webkit-transform:translateX(20px) rotate3d(0,0,1,90deg);-moz-transform:translateX(20px) rotate3d(0,0,1,90deg);transform:translateX(20px) rotate3d(0,0,1,90deg);opacity:0}100%{-webkit-transform:translateX(0) rotate3d(0,0,1,0deg);-moz-transform:translateX(0) rotate3d(0,0,1,0deg);transform:translateX(0) rotate3d(0,0,1,0deg);opacity:1}}@-webkit-keyframes rotateClockwise{0%{opacity:1;-webkit-transform-origin:center;transform-origin:center}50%{opacity:0;-webkit-transform-origin:center;transform-origin:center}100%{-webkit-transform:rotateZ(360deg);transform:rotateZ(360deg);-webkit-transform-origin:center;transform-origin:center;opacity:1}}@-moz-keyframes rotateClockwise{0%{opacity:1;-moz-transform-origin:center;transform-origin:center}50%{opacity:0;-moz-transform-origin:center;transform-origin:center}100%{-moz-transform:rotateZ(360deg);transform:rotateZ(360deg);-moz-transform-origin:center;transform-origin:center;opacity:1}}@-o-keyframes rotateClockwise{0%{opacity:1;-o-transform-origin:center;transform-origin:center}50%{opacity:0;-o-transform-origin:center;transform-origin:center}100%{transform:rotateZ(360deg);-o-transform-origin:center;transform-origin:center;opacity:1}}@keyframes rotateClockwise{0%{opacity:1;-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center}50%{opacity:0;-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center}100%{-webkit-transform:rotateZ(360deg);-moz-transform:rotateZ(360deg);transform:rotateZ(360deg);-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center;opacity:1}}@-webkit-keyframes rotateAntiClockwise{0%{opacity:1;-webkit-transform-origin:center;transform-origin:center}50%{opacity:0;-webkit-transform-origin:center;transform-origin:center}100%{-webkit-transform:rotateZ(-360deg);transform:rotateZ(-360deg);-webkit-transform-origin:center;transform-origin:center;opacity:1}}@-moz-keyframes rotateAntiClockwise{0%{opacity:1;-moz-transform-origin:center;transform-origin:center}50%{opacity:0;-moz-transform-origin:center;transform-origin:center}100%{-moz-transform:rotateZ(-360deg);transform:rotateZ(-360deg);-moz-transform-origin:center;transform-origin:center;opacity:1}}@-o-keyframes rotateAntiClockwise{0%{opacity:1;-o-transform-origin:center;transform-origin:center}50%{opacity:0;-o-transform-origin:center;transform-origin:center}100%{transform:rotateZ(-360deg);-o-transform-origin:center;transform-origin:center;opacity:1}}@keyframes rotateAntiClockwise{0%{opacity:1;-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center}50%{opacity:0;-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center}100%{-webkit-transform:rotateZ(-360deg);-moz-transform:rotateZ(-360deg);transform:rotateZ(-360deg);-webkit-transform-origin:center;-moz-transform-origin:center;-o-transform-origin:center;transform-origin:center;opacity:1}}

/* End dooFaq2 stack page CSS code */.com_bigwhiteduck_stacks_headerpro_stack .text-center{text-align:center}.com_bigwhiteduck_stacks_headerpro_stack .text-left{text-align:left}.com_bigwhiteduck_stacks_headerpro_stack .text-right{text-align:right}.com_bigwhiteduck_stacks_headerpro_stack .text-justify{text-align:justify}.com_bigwhiteduck_stacks_headerpro_stack .text-inherit{text-align:inherit}

/* Font style applied when the page has finished loading */

#ExtraContentPlusstacks_in_998005 #myExtraContent6,
#ExtraContentPlusstacks_in_998005 #fs {
	display: none;
}

#usefulStackWrapperstacks_in_998006 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 1600px;
	min-height: 380px;
	max-height: 500px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_998006 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_998006 {
		display: none;
	}
}













#stacks_in_998006 {
    background-image: url("70382643-7037-42BB-B0B4-B54918BC756F.png");
	background-repeat: repeat;
	background-size: cover;
	background-position: center;
	padding: 110px 0px 0px 0px;
}
#usefulStackWrapperstacks_in_998013 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 400px;
	max-height: 400px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_998013 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_998013 {
		display: none;
	}
}













#stacks_in_998013 {
    background-image: url("8ABA1D6A-2A08-40BD-B663-A81D202C263D.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom;
}
#usefulStackWrapperstacks_in_998008 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 600px;
	min-height: 200px;
	max-height: 400px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_998008 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_998008 {
		display: none;
	}
}













#stacks_in_998008 {
    background-image: url("F6045C34-7221-48C5-9633-A6763270B3A0.png");
	background-repeat: repeat;
	background-size: cover;
	background-position: center;
	padding: 115px 0px 0px 0px;
}
#usefulStackWrapperstacks_in_998015 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 200px;
	max-height: 400px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_998015 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_998015 {
		display: none;
	}
}













#stacks_in_998015 {
    background-image: url("8ABA1D6A-2A08-40BD-B663-A81D202C263D.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom;
}
/* Font style applied when the page has finished loading */

#ExtraContentPlusstacks_in_888842 #myExtraContent1,
#ExtraContentPlusstacks_in_888842 #fs {
	display: none;
}

#usefulStackWrapperstacks_in_998911 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 1200px;
	min-height: 0px;
	max-height: 2000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_998911 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_998911 {
		display: none;
	}
}













#stacks_in_998913 {
	padding: 0px 0px 10px 0px;
}
#stacks_in_998916>.s3_row {
	margin: 0 -20px;
}

#stacks_in_998916>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_998916>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_998916>.s3_row>.s3_column {
	padding: 0 20px;
}










@media only screen and (max-width: 770px) {


	#stacks_in_998916>.s3_row  {
		margin: -20px 0;
	}
	#stacks_in_998916>.s3_row>.s3_column {
		padding: 20px 0;
		width:100%;
	}


}



@media only screen and (max-width: 400px) {


	#stacks_in_998916>.s3_row  {
		margin: -20px 0;
	}
	#stacks_in_998916>.s3_row>.s3_column {
		padding: 20px 0;
		width:100%;
	}


}





#stacks_in_998921,#stacks_in_998921 div,#stacks_in_998921 p,#stacks_in_998921 ol,#stacks_in_998921 ul li,#stacks_in_998921 ol li,#stacks_in_998921 ol,#stacks_in_998921 dl{font-size:1.20rem}@media all and (max-width:640px){#stacks_in_998921,#stacks_in_998921 div,#stacks_in_998921 p,#stacks_in_998921 ol,#stacks_in_998921 ul li,#stacks_in_998921 ol li,#stacks_in_998921 ol,#stacks_in_998921 dl{font-size:0.95rem}}@media only screen and (min-width:0px){#stacks_in_998921,#stacks_in_998921 div,#stacks_in_998921 p,#stacks_in_998921 .fa:not(.no-indent),#stacks_in_998921 ol,#stacks_in_998921 ul li,#stacks_in_998921 ol li,#stacks_in_998921 ol,#stacks_in_998921 dl{line-height:1.30}}@media only screen and (min-width:0px){#stacks_in_998921{}}

#stacks_in_998917,#stacks_in_998917 div,#stacks_in_998917 p,#stacks_in_998917 ol,#stacks_in_998917 ul li,#stacks_in_998917 ol li,#stacks_in_998917 ol,#stacks_in_998917 dl{font-size:1.20rem}@media all and (max-width:640px){#stacks_in_998917,#stacks_in_998917 div,#stacks_in_998917 p,#stacks_in_998917 ol,#stacks_in_998917 ul li,#stacks_in_998917 ol li,#stacks_in_998917 ol,#stacks_in_998917 dl{font-size:0.95rem}}@media only screen and (min-width:0px){#stacks_in_998917,#stacks_in_998917 div,#stacks_in_998917 p,#stacks_in_998917 .fa:not(.no-indent),#stacks_in_998917 ol,#stacks_in_998917 ul li,#stacks_in_998917 ol li,#stacks_in_998917 ol,#stacks_in_998917 dl{line-height:1.30}}@media only screen and (min-width:0px){#stacks_in_998917{}}


#stacks_in_998925 {
	padding: 0px 0px 10px 0px;
}
@media only screen and (min-width:0px){#stacks_in_998928,#stacks_in_998928 div,#stacks_in_998928 p,#stacks_in_998928 .fa:not(.no-indent),#stacks_in_998928 ol,#stacks_in_998928 ul li,#stacks_in_998928 ol li,#stacks_in_998928 ol,#stacks_in_998928 dl{line-height:1.25}}@media only screen and (min-width:0px){#stacks_in_998928{}}

/* Font style applied when the page has finished loading */

#ExtraContentPlusstacks_in_997959_829827 #myExtraContent2,
#ExtraContentPlusstacks_in_997959_829827 #fs {
	display: none;
}

#linkBoxstacks_in_997959_829845 {
	display: block;
	position: relative;
	z-index: 1;
}

#linkBoxContentstacks_in_997959_829845 {
	position: relative;
	display: block;
	z-index: 2;
}

#linkBoxLinkstacks_in_997959_829845 a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	z-index: 10;
	background: url(../index_files/bg_fill.gif) repeat;
}


#usefulStackWrapperstacks_in_997959_829846 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_997959_829846 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_997959_829846 {
		display: none;
	}
}













#stacks_in_997959_829846 {
	background-color: rgba(236, 32, 41, 1.00);
}
#usefulStackWrapperstacks_in_997959_829832 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 1000px;
	min-height: 0px;
	max-height: 200px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_997959_829832 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 915px) {
	#usefulStackstacks_in_997959_829832 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_997959_829834Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.0em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_997959_829834Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997959_829834Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997959_829834Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997959_829834Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997959_829834Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997959_829834Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997959_829834Calligrapher h6, .stacks_in_997959_829834Calligrapher h5, .stacks_in_997959_829834Calligrapher h4, .stacks_in_997959_829834Calligrapher h3, .stacks_in_997959_829834Calligrapher h2, .stacks_in_997959_829834Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_997959_829834Calligrapher, .stacks_in_997959_829834Calligrapher h1, .stacks_in_997959_829834Calligrapher h2, .stacks_in_997959_829834Calligrapher h3, .stacks_in_997959_829834Calligrapher h4, .stacks_in_997959_829834Calligrapher h5, .stacks_in_997959_829834Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_997959_829834targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_997959_829834Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_997959_829834Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_997959_829834Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_997959_829834Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */
#stacks_in_997959_829836 {
	padding: 20px 0px 0px 0px;
}

#stacks_in_997959_829837 {
	font-size: 110%;
	font-weight: lighter;
}
#usefulStackWrapperstacks_in_888924 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 1000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_888924 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_888924 {
		display: none;
	}
}












.raincheck.stacks_in_998903{transition:background-image 300ms ease-out;}.raincheck.stacks_in_998903 .raincheck-inner{transition:opacity 300ms ease-out}


.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_998909 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_998909 {
		display: none !important;
	}
}
:root {
  --multi_columns_stacks_in_998931:min-content 1fr;
}
#multi_columns_stacks_in_998931 {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: var(--multi_columns_stacks_in_998931);
  grid-gap: 24px;
  align-items: flex-start;
  
  
  
  
  
}
#multi_columns_stacks_in_998931 > div {
  min-width: 0;
}
#multi_columns_stacks_in_998931 + .deluxe-columns {
  margin-top: 24px;
}
#multi_columns_stacks_in_998931 > div img {
  max-width: 100%;
}
#multi_columns_stacks_in_998931 > div:not(.nav-column):not(.column-sticky) {
  position: relative;
}



@media all and (min-width: 901px) {
  #multi_columns_stacks_in_998931 .hide-mobile {
    display: inherit;
  }
  #multi_columns_stacks_in_998931 .hide-tablet {
    display: inherit;
  }
  #multi_columns_stacks_in_998931 .hide-mobile {
    display: inherit;
  }
  #multi_columns_stacks_in_998931 .hide-desktop {
    display: none;
  }
}
@media all and (max-width: 900px) and (min-width: 501px) {
  #multi_columns_stacks_in_998931 .column-tablet-top {
    grid-row: 1;
  }
  #multi_columns_stacks_in_998931 .hide-desktop {
    display: inherit;
  }
  #multi_columns_stacks_in_998931 .hide-mobile {
    display: inherit;
  }
  #multi_columns_stacks_in_998931 .hide-tablet {
    display: none;
  }
}
@media all and (max-width: 500px) {
  #multi_columns_stacks_in_998931 .column-mobile-top {
    grid-row: 1;
  }
  #multi_columns_stacks_in_998931 .hide-tablet {
    display: inherit;
  }
  #multi_columns_stacks_in_998931 .hide-desktop {
    display: inherit;
  }
  #multi_columns_stacks_in_998931 .hide-mobile {
    display: none;
  }
}

@media all and (max-width: 900px) {
  #multi_columns_stacks_in_998931 {
    grid-template-columns: repeat(1, 1fr);
    
  }
  #multi_columns_stacks_in_998931 + .deluxe-columns {
    
  }
  #multi_columns_stacks_in_998931 > div:last-child {
    grid-column: span 1;
  }
  
  #multi_columns_stacks_in_998931 > div > * {position: relative;}
  #multi_columns_stacks_in_998931 > div > * > * {transform: translate(0,0);}
  
}
@media all and (max-width: 500px) {
  #multi_columns_stacks_in_998931 {
    grid-template-columns: repeat(1, 1fr);
  }
  #multi_columns_stacks_in_998931 > div:last-child {
    grid-column: span 1;
  }
  
  #multi_columns_stacks_in_998931 > div > * {position: relative;}
  #multi_columns_stacks_in_998931 > div > * > * {transform: translate(0,0);}
  
}

#stacks_in_998943 p,#stacks_in_998943 div{margin-bottom:0}#stacks_in_998943 p,#stacks_in_998943 div,#stacks_in_998943 ul,#stacks_in_998943 ol,#stacks_in_998943 dl{color:rgba(255, 102, 102, 1.00)}#stacks_in_998943 a{color:rgba(0, 140, 186, 1.00)}#stacks_in_998943 a:hover{color:rgba(0, 102, 153, 1.00)}#stacks_in_998943,#stacks_in_998943 div,#stacks_in_998943 p,#stacks_in_998943 ol,#stacks_in_998943 ul li,#stacks_in_998943 ol li,#stacks_in_998943 ol,#stacks_in_998943 dl{font-size:2.20rem}@media all and (max-width:640px){#stacks_in_998943,#stacks_in_998943 div,#stacks_in_998943 p,#stacks_in_998943 ol,#stacks_in_998943 ul li,#stacks_in_998943 ol li,#stacks_in_998943 ol,#stacks_in_998943 dl{font-size:1.40rem}}@media only screen and (min-width:1023px){#stacks_in_998943{}}

#stacks_in_998933 p,#stacks_in_998933 div{margin-bottom:0}#stacks_in_998933 p,#stacks_in_998933 div,#stacks_in_998933 ul,#stacks_in_998933 ol,#stacks_in_998933 dl{color:rgba(255, 102, 102, 1.00)}#stacks_in_998933 a{color:rgba(0, 140, 186, 1.00)}#stacks_in_998933 a:hover{color:rgba(0, 102, 153, 1.00)}#stacks_in_998933,#stacks_in_998933 div,#stacks_in_998933 p,#stacks_in_998933 ol,#stacks_in_998933 ul li,#stacks_in_998933 ol li,#stacks_in_998933 ol,#stacks_in_998933 dl{font-size:2.20rem}@media all and (max-width:640px){#stacks_in_998933,#stacks_in_998933 div,#stacks_in_998933 p,#stacks_in_998933 ol,#stacks_in_998933 ul li,#stacks_in_998933 ol li,#stacks_in_998933 ol,#stacks_in_998933 dl{font-size:1.40rem}}@media only screen and (min-width:1023px){#stacks_in_998933{}}

/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998937Calligrapher{			font-size: 120% !important;			color: #FF6666 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.0em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998937Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998937Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998937Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998937Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998937Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998937Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998937Calligrapher h6, .stacks_in_998937Calligrapher h5, .stacks_in_998937Calligrapher h4, .stacks_in_998937Calligrapher h3, .stacks_in_998937Calligrapher h2, .stacks_in_998937Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998937Calligrapher, .stacks_in_998937Calligrapher h1, .stacks_in_998937Calligrapher h2, .stacks_in_998937Calligrapher h3, .stacks_in_998937Calligrapher h4, .stacks_in_998937Calligrapher h5, .stacks_in_998937Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998937targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998937Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998937Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998937Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998937Calligrapher a:hover{			color: #FF6600 !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */#stacks_in_998938 p,#stacks_in_998938 div{margin-bottom:0}#stacks_in_998938 ul,#stacks_in_998938 ol{list-style-position:inside}#stacks_in_998938,#stacks_in_998938 div,#stacks_in_998938 p,#stacks_in_998938 ol,#stacks_in_998938 ul li,#stacks_in_998938 ol li,#stacks_in_998938 ol,#stacks_in_998938 dl{font-size:1.15rem}@media all and (max-width:640px){#stacks_in_998938,#stacks_in_998938 div,#stacks_in_998938 p,#stacks_in_998938 ol,#stacks_in_998938 ul li,#stacks_in_998938 ol li,#stacks_in_998938 ol,#stacks_in_998938 dl{font-size:0.90rem}}@media only screen and (min-width:480px){#stacks_in_998938,#stacks_in_998938 div,#stacks_in_998938 p,#stacks_in_998938 .fa:not(.no-indent),#stacks_in_998938 ol,#stacks_in_998938 ul li,#stacks_in_998938 ol li,#stacks_in_998938 ol,#stacks_in_998938 dl{line-height:1.20}}@media only screen and (min-width:480px){#stacks_in_998938{}}

#stacks_in_998938 .effect-label{display:block !important}#stacks_in_998938{}#stacks_in_998938.readmore-js-section{-webkit-box-sizing:border-box !important;box-sizing:border-box !important}#stacks_in_998938 p{margin-bottom:0 !important}@media screen and (max-width:90px){#stacks_in_998938 .ppro.readmore-js-section.readmore-js-collapsed{max-height:90px !important}}.rm-stacks_in_998940.readmore-js-toggle{text-decoration:none;margin-top:0.00px;padding-bottom:0.00rem}.rm-stacks_in_998940.readmore-js-toggle.link-center{text-align:center}.rm-stacks_in_998940.readmore-js-toggle.link-right{text-align:right;padding-right:6px}.rm-stacks_in_998940.readmore-js-toggle.link-left{text-align:left;padding-left:6px}.rm-stacks_in_998940.readmore-js-toggle.rm-none{display:none}#stacks_in_998938 .readmore-js-collapsed{position:relative}#stacks_in_998938 .readmore-js-collapsed::after{position:absolute;height:26px;bottom:0;left:0;right:0;width:100%;content:"";z-index:2;background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(255, 255, 255, 0.10)),to(rgba(255, 255, 255, 0.10)));background-image:linear-gradient(rgba(255, 255, 255, 0.10) 0%,rgba(255, 255, 255, 0.10) 100%)}



#stacks_in_998932 { margin: 0px !important; padding: 0px !important; }
#atm_AnimateItstacks_in_998932 {  -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -ms-backface-visibility: hidden; backface-visibility: hidden; -webkit-animation-duration: 1s; -webkit-animation-delay: .2s; -webkit-animation-timing-function: ease; -webkit-animation-fill-mode: both; -moz-animation-duration: 1s; -moz-animation-delay: .2s; -moz-animation-timing-function: ease; -moz-animation-fill-mode: both; -ms-animation-duration: 1s; -ms-animation-delay: .2s; -ms-animation-timing-function: ease; -ms-animation-fill-mode: both; animation-duration: 1s; animation-delay: .2s; animation-timing-function: ease; animation-fill-mode: both;  -webkit-font-smoothing: antialiased; /*font-smooth: always;*/ }

.lines.stacks_in_998947{width:90%;margin:calc(25rem/16) auto calc(50rem/16) auto;border-bottom:1px solid rgba(102, 102, 102, 1.00);background:rgba(0, 0, 0, 0.00);transform:rotate(0deg)}.lines.stacks_in_998947.vertical{border-left:1px solid rgba(102, 102, 102, 1.00);border-bottom:none;width:0;height:90%;margin:0 auto;margin-top:calc((90% - 100%)/-2)}.lines.stacks_in_998947.gradient{border-bottom:none;height:1px;background-image:linear-gradient(to right,rgba(204, 204, 204, 0.20),rgba(153, 153, 153, 1.00),rgba(153, 153, 153, 1.00),rgba(204, 204, 204, 0.20))}.content-stacks_in_998947{width:auto;max-width:25%;margin:0;display:inline-block;position:absolute;text-align:center;top:50%;left:50%;transform:translateX(-50%) translateY(-50%) rotate(0deg);padding:10px calc(10rem/16);color:rgba(34, 34, 34, 0.00);background:rgba(255, 255, 255, 1.00)}.content-stacks_in_998947 > *{color:rgba(34, 34, 34, 0.00);margin:0}
#stacks_in_997424 h1,#stacks_in_997424 div{color:rgba(75, 83, 115, 1.00)}#stacks_in_997424 h1 a,#stacks_in_997424 div a{color:rgba(75, 83, 115, 1.00)}#stacks_in_997424 h1 a:hover,#stacks_in_997424 div a:hover{color:rgba(56, 62, 86, 1.00)}#stacks_in_997424 small,#stacks_in_997424 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_997424 {
	padding: 0px 0px 20px 0px;
}
#stacks_in_997192>.s3_row {
	margin: 0 -20px;
}

#stacks_in_997192>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_997192>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_997192>.s3_row>.s3_column {
	padding: 0 20px;
}










@media only screen and (max-width: 770px) {


	#stacks_in_997192>.s3_row  {
		margin: -20px 0;
	}
	#stacks_in_997192>.s3_row>.s3_column {
		padding: 20px 0;
		width:100%;
	}


}



@media only screen and (max-width: 400px) {


	#stacks_in_997192>.s3_row  {
		margin: -20px 0;
	}
	#stacks_in_997192>.s3_row>.s3_column {
		padding: 20px 0;
		width:100%;
	}


}





/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_997219Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_997219Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997219Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997219Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997219Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997219Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997219Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997219Calligrapher h6, .stacks_in_997219Calligrapher h5, .stacks_in_997219Calligrapher h4, .stacks_in_997219Calligrapher h3, .stacks_in_997219Calligrapher h2, .stacks_in_997219Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_997219Calligrapher, .stacks_in_997219Calligrapher h1, .stacks_in_997219Calligrapher h2, .stacks_in_997219Calligrapher h3, .stacks_in_997219Calligrapher h4, .stacks_in_997219Calligrapher h5, .stacks_in_997219Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_997219targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_997219Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_997219Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_997219Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_997219Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_997215 {
	padding: 0px 0px 20px 0px;
}
#stacks_in_998021 h1,#stacks_in_998021 div{color:rgba(75, 83, 115, 1.00)}#stacks_in_998021 h1 a,#stacks_in_998021 div a{color:rgba(75, 83, 115, 1.00)}#stacks_in_998021 h1 a:hover,#stacks_in_998021 div a:hover{color:rgba(56, 62, 86, 1.00)}#stacks_in_998021 small,#stacks_in_998021 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_998021 {
	padding: 30px 0px 20px 0px;
}
#stacks_in_998028>.s3_row {
	margin: 0 -20px;
}

#stacks_in_998028>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_998028>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_998028>.s3_row>.s3_column {
	padding: 0 20px;
}










@media only screen and (max-width: 770px) {


	#stacks_in_998028>.s3_row  {
		margin: -20px 0;
	}
	#stacks_in_998028>.s3_row>.s3_column {
		padding: 20px 0;
		width:100%;
	}


}



@media only screen and (max-width: 400px) {


	#stacks_in_998028>.s3_row  {
		margin: -20px 0;
	}
	#stacks_in_998028>.s3_row>.s3_column {
		padding: 20px 0;
		width:100%;
	}


}





#stacks_in_998059 h1,#stacks_in_998059 div{color:rgba(75, 83, 115, 1.00)}#stacks_in_998059 h1 a,#stacks_in_998059 div a{color:rgba(75, 83, 115, 1.00)}#stacks_in_998059 h1 a:hover,#stacks_in_998059 div a:hover{color:rgba(56, 62, 86, 1.00)}#stacks_in_998059 small,#stacks_in_998059 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_998059 {
	padding: 30px 0px 20px 0px;
}
#stacks_in_997268>.s3_row {
	margin: 0 -20px;
}

#stacks_in_997268>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_997268>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_997268>.s3_row>.s3_column {
	padding: 0 20px;
}










@media only screen and (max-width: 770px) {


	#stacks_in_997268>.s3_row  {
		margin: -20px 0;
	}
	#stacks_in_997268>.s3_row>.s3_column {
		padding: 20px 0;
		width:100%;
	}


}



@media only screen and (max-width: 400px) {


	#stacks_in_997268>.s3_row  {
		margin: -20px 0;
	}
	#stacks_in_997268>.s3_row>.s3_column {
		padding: 20px 0;
		width:100%;
	}


}






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

#stacks_in_997269 {
	padding: 0px 0px 20px 0px;
}
/* Font style applied when the page has finished loading */

#ExtraContentPlusstacks_in_889239 #myExtraContent3,
#ExtraContentPlusstacks_in_889239 #fs {
	display: none;
}

#usefulStackWrapperstacks_in_997510 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 1000px;
	min-height: 0px;
	max-height: 10000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_997510 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_997510 {
		display: none;
	}
}













#stacks_in_997510 {
	background-color: rgba(51, 102, 153, 1.00);
	padding:  20px;
}
#stacks_in_998052 h1,#stacks_in_998052 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_998052 h1 a,#stacks_in_998052 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_998052 h1 a:hover,#stacks_in_998052 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_998052 small,#stacks_in_998052 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_998052 {
	padding: 20px 0px 20px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_997545Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_997545Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997545Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997545Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997545Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997545Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997545Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997545Calligrapher h6, .stacks_in_997545Calligrapher h5, .stacks_in_997545Calligrapher h4, .stacks_in_997545Calligrapher h3, .stacks_in_997545Calligrapher h2, .stacks_in_997545Calligrapher h1{			color: #FFFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_997545Calligrapher, .stacks_in_997545Calligrapher h1, .stacks_in_997545Calligrapher h2, .stacks_in_997545Calligrapher h3, .stacks_in_997545Calligrapher h4, .stacks_in_997545Calligrapher h5, .stacks_in_997545Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_997545targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_997545Calligrapher a:link{			color: #3399FF !important;			text-decoration: none !important;		}				.stacks_in_997545Calligrapher a:visited{			color: #3399FF !important;		}				.stacks_in_997545Calligrapher a:active{			color: #3399FF !important;		}				.stacks_in_997545Calligrapher a:hover{			color: #3399FF !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_997545 {
	margin: 0px 0px 30px 0px;
}
#stacks_in_998071>.s3_row {
	margin: 0 -20px;
}

#stacks_in_998071>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_998071>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_998071>.s3_row>.s3_column {
	padding: 0 20px;
}










@media only screen and (max-width: 770px) {


	#stacks_in_998071>.s3_row  {
		margin: -20px 0;
	}
	#stacks_in_998071>.s3_row>.s3_column {
		padding: 20px 0;
		width:100%;
	}


}



@media only screen and (max-width: 400px) {


	#stacks_in_998071>.s3_row  {
		margin: -20px 0;
	}
	#stacks_in_998071>.s3_row>.s3_column {
		padding: 20px 0;
		width:100%;
	}


}






#stacks_in_998078 {
	margin: 0px 0px 20px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998081Calligrapher{			font-size: 160% !important;			color: #F2BF47 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998081Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998081Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998081Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998081Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998081Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998081Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998081Calligrapher h6, .stacks_in_998081Calligrapher h5, .stacks_in_998081Calligrapher h4, .stacks_in_998081Calligrapher h3, .stacks_in_998081Calligrapher h2, .stacks_in_998081Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998081Calligrapher, .stacks_in_998081Calligrapher h1, .stacks_in_998081Calligrapher h2, .stacks_in_998081Calligrapher h3, .stacks_in_998081Calligrapher h4, .stacks_in_998081Calligrapher h5, .stacks_in_998081Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998081targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998081Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998081Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998081Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998081Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_998082 {
	padding: 0px 0px 20px 0px;
}

#stacks_in_998072 {
	margin: 0px 0px 20px 0px;
}
/* @group Generic Styles */

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

#ruleStackstacks_in_997572 {
	position: relative;
	overflow: hidden;
	margin: 1.00% 0;
	width: %;
}

/*  */
#ruleStackstacks_in_997572 {
	width: 100%;
}
/*  */

/*  */

/*  */

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

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

/* @end */

/* @end */

/*  */

/*  */

/*  */

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

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

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

/*  */
/*  */#stacks_in_998089 h1,#stacks_in_998089 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_998089 h1 a,#stacks_in_998089 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_998089 h1 a:hover,#stacks_in_998089 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_998089 small,#stacks_in_998089 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_998089 {
	padding: 20px 0px 20px 0px;
}
#stacks_in_998094>.s3_row {
	margin: 0 -20px;
}

#stacks_in_998094>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_998094>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_998094>.s3_row>.s3_column {
	padding: 0 20px;
}










@media only screen and (max-width: 770px) {


	#stacks_in_998094>.s3_row  {
		margin: -20px 0;
	}
	#stacks_in_998094>.s3_row>.s3_column {
		padding: 20px 0;
		width:100%;
	}


}



@media only screen and (max-width: 400px) {


	#stacks_in_998094>.s3_row  {
		margin: -20px 0;
	}
	#stacks_in_998094>.s3_row>.s3_column {
		padding: 20px 0;
		width:100%;
	}


}





/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998105Calligrapher{			font-size: 160% !important;			color: #F2BF47 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998105Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998105Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998105Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998105Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998105Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998105Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998105Calligrapher h6, .stacks_in_998105Calligrapher h5, .stacks_in_998105Calligrapher h4, .stacks_in_998105Calligrapher h3, .stacks_in_998105Calligrapher h2, .stacks_in_998105Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998105Calligrapher, .stacks_in_998105Calligrapher h1, .stacks_in_998105Calligrapher h2, .stacks_in_998105Calligrapher h3, .stacks_in_998105Calligrapher h4, .stacks_in_998105Calligrapher h5, .stacks_in_998105Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998105targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998105Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998105Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998105Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998105Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_998106 {
	padding: 0px 0px 20px 0px;
}

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

#stacks_in_998109 {
	padding: 0px 0px 10px 0px;
}
#hoverBoxWrapperstacks_in_998111 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: pointer;
}

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

#hoverBoxStaticstacks_in_998111 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

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

#hoverBoxLinkstacks_in_998111 a,
#hoverBoxLinkstacks_in_998111 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../index_files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_998111.touchDeviceDetected #hoverBoxStaticstacks_in_998111 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_998111.touchDeviceDetected #hoverBoxRolloverstacks_in_998111 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_998111.noTouchDeviceDetected #hoverBoxRolloverstacks_in_998111 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 0ms linear;
	-webkit-transition: opacity 0ms linear;
	transition: opacity 0ms linear;
}

#hoverBoxWrapperstacks_in_998111.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_998111 {
	opacity: 1.00;
}






















#stacks_in_998111 {
	margin: 0px 4px 0px 4px;
}
/* -- Start Buttonpress2 Each css Template -- */

.stacks_in_998784buttonPressWrapper{
	position: relative !important;
}

#stacks_in_998784 a, #stacks_in_998784 a:hover, #stacks_in_998784 a:visited, #stacks_in_998784 a:active{
	text-decoration: none !important;
}

/* -- TYPE BASE STYLES -- */
.stacks_in_998784button{
	position: relative !important;
	display: inline-block !important;
	width: 100% !important;
	padding: 6px 12px 6px 12px !important;
	margin: 0 !important;
	font-size: 14px !important;
	font-weight: normal !important;
	line-height: 18px !important;
	text-align: center !important;
	vertical-align: middle !important;
	-ms-touch-action: manipulation !important;
	touch-action: manipulation !important;
	cursor: pointer !important;
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important;
	background-image: none !important;
	border: 1px solid transparent !important;
	border-radius: 4px !important;
	color: #FFFFFF !important;
	background-color: #FFFFFF !important;
	border-color: #D8D8D8 !important;
	box-sizing: border-box !important;
}

.stacks_in_998784button:hover{
	color: #3399FF !important;
	background-color: #3399FF !important;
	border-color: #2B82D8 !important;
}

#stacks_in_998784 a, #stacks_in_998784 a:visited, #stacks_in_998784 a:active{
	color: #FFFFFF !important;
}

#stacks_in_998784 a:hover{
	color: #3399FF !important;
}


























	/* -- TYPE GHOST LARGE OVERRIDE -- */
	.stacks_in_998784button{
		background-color: transparent !important;
		border: 2px solid #D8D8D8 !important;
		padding: 6px 16px 6px 16px !important;
		font-size: 16px !important;
		line-height: 20px !important;
	}
	.stacks_in_998784button:hover{
		background-color: transparent !important;
	}
	













.stacks_in_998784buttonPressWrapper *{
	
	font-family:  Helvetica,Arial,sans-serif !important;
}


/* -- BUTTON ALIGNMENT -- */
.stacks_in_998784buttonPressWrapper{
	position: relative !important;
	text-align: left !important;
}

@media only screen and (max-width: 768px) {
	.stacks_in_998784buttonPressWrapper{
		text-align: left !important;
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_998784buttonPressWrapper{
		text-align: center !important;
	}
}

/* -- End Buttonpress2 Each css Template -- */.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	background: rgba(0, 0, 0, .90);
	
	
	
}

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

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

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

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




/* No background */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
	background: none;
}


















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

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

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

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

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

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

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

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

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

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

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

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

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

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

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






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


#topBoxTriggerRegionstacks_in_998117 #topBoxTriggerContentstacks_in_998117 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_998117 #topBoxTriggerContentstacks_in_998117 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_998117 {
	color: rgba(255, 255, 255, 1.00);
}

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

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

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

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

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

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

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

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



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


#topBoxContentWrapperstacks_in_998117 {
	display: none;
}







/* -- Start Buttonpress2 Each css Template -- */

.stacks_in_998134buttonPressWrapper{
	position: relative !important;
}

#stacks_in_998134 a, #stacks_in_998134 a:hover, #stacks_in_998134 a:visited, #stacks_in_998134 a:active{
	text-decoration: none !important;
}

/* -- TYPE BASE STYLES -- */
.stacks_in_998134button{
	position: relative !important;
	display: inline-block !important;
	width: 100% !important;
	padding: 6px 12px 6px 12px !important;
	margin: 0 !important;
	font-size: 14px !important;
	font-weight: normal !important;
	line-height: 18px !important;
	text-align: center !important;
	vertical-align: middle !important;
	-ms-touch-action: manipulation !important;
	touch-action: manipulation !important;
	cursor: pointer !important;
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important;
	background-image: none !important;
	border: 1px solid transparent !important;
	border-radius: 4px !important;
	color: #FFFFFF !important;
	background-color: #FFFFFF !important;
	border-color: #D8D8D8 !important;
	box-sizing: border-box !important;
}

.stacks_in_998134button:hover{
	color: #3399FF !important;
	background-color: #3399FF !important;
	border-color: #2B82D8 !important;
}

#stacks_in_998134 a, #stacks_in_998134 a:visited, #stacks_in_998134 a:active{
	color: #FFFFFF !important;
}

#stacks_in_998134 a:hover{
	color: #3399FF !important;
}


























	/* -- TYPE GHOST LARGE OVERRIDE -- */
	.stacks_in_998134button{
		background-color: transparent !important;
		border: 2px solid #D8D8D8 !important;
		padding: 6px 16px 6px 16px !important;
		font-size: 16px !important;
		line-height: 20px !important;
	}
	.stacks_in_998134button:hover{
		background-color: transparent !important;
	}
	













.stacks_in_998134buttonPressWrapper *{
	
	font-family:  Helvetica,Arial,sans-serif !important;
}


/* -- BUTTON ALIGNMENT -- */
.stacks_in_998134buttonPressWrapper{
	position: relative !important;
	text-align: left !important;
}

@media only screen and (max-width: 768px) {
	.stacks_in_998134buttonPressWrapper{
		text-align: left !important;
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_998134buttonPressWrapper{
		text-align: center !important;
	}
}

/* -- End Buttonpress2 Each css Template -- */#usefulStackWrapperstacks_in_998123 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 800px;
	min-height: 0px;
	max-height: 2000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_998123 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_998123 {
		display: none;
	}
}












#stacks_in_998124 h3,#stacks_in_998124 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_998124 h3 a,#stacks_in_998124 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_998124 h3 a:hover,#stacks_in_998124 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_998124 small,#stacks_in_998124 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_998124 {
	padding: 0px 0px 10px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998965Calligrapher{			font-size: 120% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.3em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998965Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998965Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998965Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998965Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998965Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998965Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998965Calligrapher h6, .stacks_in_998965Calligrapher h5, .stacks_in_998965Calligrapher h4, .stacks_in_998965Calligrapher h3, .stacks_in_998965Calligrapher h2, .stacks_in_998965Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998965Calligrapher, .stacks_in_998965Calligrapher h1, .stacks_in_998965Calligrapher h2, .stacks_in_998965Calligrapher h3, .stacks_in_998965Calligrapher h4, .stacks_in_998965Calligrapher h5, .stacks_in_998965Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998965targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998965Calligrapher a:link{			color: #00CCFF !important;			text-decoration: none !important;		}				.stacks_in_998965Calligrapher a:visited{			color: #00CCFF !important;		}				.stacks_in_998965Calligrapher a:active{			color: #00CCFF !important;		}				.stacks_in_998965Calligrapher a:hover{			color: #FFCC66 !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_998096 {
	padding: 0px 0px 20px 0px;
}

#stacks_in_998099 {
	margin: 0px 0px 20px 0px;
}
#usefulStackWrapperstacks_in_997541 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 1000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_997541 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_997541 {
		display: none;
	}
}













#stacks_in_997541 {
	padding:  20px;
}
#stacks_in_997410 h1,#stacks_in_997410 div{color:rgba(75, 83, 115, 1.00)}#stacks_in_997410 h1 a,#stacks_in_997410 div a{color:rgba(75, 83, 115, 1.00)}#stacks_in_997410 h1 a:hover,#stacks_in_997410 div a:hover{color:rgba(56, 62, 86, 1.00)}#stacks_in_997410 small,#stacks_in_997410 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_997410 {
	padding: 20px 0px 20px 0px;
}
#stacks_in_997321>.s3_row {
	margin: 0 -20px;
}

#stacks_in_997321>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_997321>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_997321>.s3_row>.s3_column {
	padding: 0 20px;
}










@media only screen and (max-width: 770px) {


	#stacks_in_997321>.s3_row  {
		margin: -20px 0;
	}
	#stacks_in_997321>.s3_row>.s3_column {
		padding: 20px 0;
		width:100%;
	}


}



@media only screen and (max-width: 400px) {


	#stacks_in_997321>.s3_row  {
		margin: -20px 0;
	}
	#stacks_in_997321>.s3_row>.s3_column {
		padding: 20px 0;
		width:100%;
	}


}






#stacks_in_997321 {
	margin: 0px 0px 40px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_997330Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_997330Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997330Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997330Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997330Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997330Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997330Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997330Calligrapher h6, .stacks_in_997330Calligrapher h5, .stacks_in_997330Calligrapher h4, .stacks_in_997330Calligrapher h3, .stacks_in_997330Calligrapher h2, .stacks_in_997330Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_997330Calligrapher, .stacks_in_997330Calligrapher h1, .stacks_in_997330Calligrapher h2, .stacks_in_997330Calligrapher h3, .stacks_in_997330Calligrapher h4, .stacks_in_997330Calligrapher h5, .stacks_in_997330Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_997330targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_997330Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_997330Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_997330Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_997330Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_997331 {
	padding: 0px 0px 20px 0px;
}
/* Start dooFaq2 stack each CSS code */

#stacks_in_998157 .faq-question{
	position: relative;
	font-size: 110% !important;
	line-height: normal !important;
	font-weight: normal;
	padding: 10px 14px 10px 12px;
	padding-right: 50px;
	margin-top: 1px;
	border-radius: 4px;
	cursor: pointer;
}

#stacks_in_998157 .faq-icon{
	position: absolute;
	top: 0;
	right: 0;
	padding: 10px 14px 10px 12px;
}

/* Hack to stop text flickr */
#stacks_in_998157 .faq-icon i{
	position: relative;
	z-index: 100;
}



#stacks_in_998157 .fa-bars, #stacks_in_998157 .fa-toggle-off, #stacks_in_998157 .fa-question, #stacks_in_998157 .fa-angle-right{
	display: none;
}

#stacks_in_998157 .fa-bars{
	display: inline;
}

#stacks_in_998157 .faq-answer{
	margin: 0 4px 0 4px;
	padding: 20px 0px 20px 0px;
}


/* THEME */
#stacks_in_998157 .faqQuestionClosed{
	background-color: rgba(75, 83, 115, 1.00) !important;
	color: rgba(255, 255, 255, 1.00) !important;
	-webkit-transition: background 500ms ease-out;
    -moz-transition: background 500ms ease-out;
    -o-transition: background 500ms ease-out;
    transition: background 500ms ease-out;
    
}

#stacks_in_998157 .faqQuestionOpen{
	background: rgba(217, 96, 73, 1.00) !important;
	color: rgba(255, 255, 255, 1.00) !important;
	-webkit-transition: background 500ms ease-out;
    -moz-transition: background 500ms ease-out;
    -o-transition: background 500ms ease-out;
    transition: background 500ms ease-out;
}

#stacks_in_998157 .faqQuestionOpen:hover{
	background: rgba(217, 96, 73, 1.00) !important;
}

#stacks_in_998157 .faqQuestionClosed:hover{
	background: rgba(110, 118, 150, 1.00) !important;
	
	background: rgba(40, 48, 80, 1.00) !important;
	
}



#stacks_in_998157 .faq-answer {
  display: none;
}





/* End dooFaq2 stack each CSS code *//* Start dooFaq2Child stack each CSS code *//* End dooFaq2Child stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998139Calligrapher{			font-size: 160% !important;			color: #455667 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998139Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998139Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998139Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998139Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998139Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998139Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998139Calligrapher h6, .stacks_in_998139Calligrapher h5, .stacks_in_998139Calligrapher h4, .stacks_in_998139Calligrapher h3, .stacks_in_998139Calligrapher h2, .stacks_in_998139Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998139Calligrapher, .stacks_in_998139Calligrapher h1, .stacks_in_998139Calligrapher h2, .stacks_in_998139Calligrapher h3, .stacks_in_998139Calligrapher h4, .stacks_in_998139Calligrapher h5, .stacks_in_998139Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998139targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998139Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998139Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998139Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998139Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_998140 {
	padding: 0px 0px 10px 0px;
}

#stacks_in_997341 {
	margin: 0px 0px 20px 0px;
}
/* Start dooFaq2Child stack each CSS code *//* End dooFaq2Child stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998143Calligrapher{			font-size: 160% !important;			color: #455667 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998143Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998143Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998143Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998143Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998143Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998143Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998143Calligrapher h6, .stacks_in_998143Calligrapher h5, .stacks_in_998143Calligrapher h4, .stacks_in_998143Calligrapher h3, .stacks_in_998143Calligrapher h2, .stacks_in_998143Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998143Calligrapher, .stacks_in_998143Calligrapher h1, .stacks_in_998143Calligrapher h2, .stacks_in_998143Calligrapher h3, .stacks_in_998143Calligrapher h4, .stacks_in_998143Calligrapher h5, .stacks_in_998143Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998143targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998143Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998143Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998143Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998143Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_998144 {
	padding: 0px 0px 10px 0px;
}

#stacks_in_998148 {
	margin: 0px 0px 20px 0px;
}
/* Start dooFaq2Child stack each CSS code *//* End dooFaq2Child stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998150Calligrapher{			font-size: 160% !important;			color: #455667 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998150Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998150Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998150Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998150Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998150Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998150Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998150Calligrapher h6, .stacks_in_998150Calligrapher h5, .stacks_in_998150Calligrapher h4, .stacks_in_998150Calligrapher h3, .stacks_in_998150Calligrapher h2, .stacks_in_998150Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998150Calligrapher, .stacks_in_998150Calligrapher h1, .stacks_in_998150Calligrapher h2, .stacks_in_998150Calligrapher h3, .stacks_in_998150Calligrapher h4, .stacks_in_998150Calligrapher h5, .stacks_in_998150Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998150targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998150Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998150Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998150Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998150Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_998151 {
	padding: 0px 0px 10px 0px;
}

#stacks_in_998155 {
	margin: 0px 0px 20px 0px;
}
/* Start dooFaq2Child stack each CSS code *//* End dooFaq2Child stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998424Calligrapher{			font-size: 160% !important;			color: #455667 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998424Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998424Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998424Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998424Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998424Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998424Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998424Calligrapher h6, .stacks_in_998424Calligrapher h5, .stacks_in_998424Calligrapher h4, .stacks_in_998424Calligrapher h3, .stacks_in_998424Calligrapher h2, .stacks_in_998424Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998424Calligrapher, .stacks_in_998424Calligrapher h1, .stacks_in_998424Calligrapher h2, .stacks_in_998424Calligrapher h3, .stacks_in_998424Calligrapher h4, .stacks_in_998424Calligrapher h5, .stacks_in_998424Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998424targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998424Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998424Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998424Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998424Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_998425 {
	padding: 0px 0px 10px 0px;
}

#stacks_in_998428 {
	margin: 0px 0px 20px 0px;
}
/* Start dooFaq2Child stack each CSS code *//* End dooFaq2Child stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998433Calligrapher{			font-size: 160% !important;			color: #455667 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998433Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998433Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998433Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998433Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998433Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998433Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998433Calligrapher h6, .stacks_in_998433Calligrapher h5, .stacks_in_998433Calligrapher h4, .stacks_in_998433Calligrapher h3, .stacks_in_998433Calligrapher h2, .stacks_in_998433Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998433Calligrapher, .stacks_in_998433Calligrapher h1, .stacks_in_998433Calligrapher h2, .stacks_in_998433Calligrapher h3, .stacks_in_998433Calligrapher h4, .stacks_in_998433Calligrapher h5, .stacks_in_998433Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998433targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998433Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998433Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998433Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998433Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_998434 {
	padding: 0px 0px 10px 0px;
}

#stacks_in_998437 {
	margin: 0px 0px 20px 0px;
}
/* Start dooFaq2Child stack each CSS code *//* End dooFaq2Child stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998442Calligrapher{			font-size: 160% !important;			color: #455667 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998442Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998442Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998442Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998442Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998442Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998442Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998442Calligrapher h6, .stacks_in_998442Calligrapher h5, .stacks_in_998442Calligrapher h4, .stacks_in_998442Calligrapher h3, .stacks_in_998442Calligrapher h2, .stacks_in_998442Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998442Calligrapher, .stacks_in_998442Calligrapher h1, .stacks_in_998442Calligrapher h2, .stacks_in_998442Calligrapher h3, .stacks_in_998442Calligrapher h4, .stacks_in_998442Calligrapher h5, .stacks_in_998442Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998442targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998442Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998442Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998442Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998442Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_998443 {
	padding: 0px 0px 10px 0px;
}

#stacks_in_998446 {
	margin: 0px 0px 20px 0px;
}
/* Start dooFaq2Child stack each CSS code *//* End dooFaq2Child stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998451Calligrapher{			font-size: 160% !important;			color: #455667 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998451Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998451Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998451Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998451Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998451Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998451Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998451Calligrapher h6, .stacks_in_998451Calligrapher h5, .stacks_in_998451Calligrapher h4, .stacks_in_998451Calligrapher h3, .stacks_in_998451Calligrapher h2, .stacks_in_998451Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998451Calligrapher, .stacks_in_998451Calligrapher h1, .stacks_in_998451Calligrapher h2, .stacks_in_998451Calligrapher h3, .stacks_in_998451Calligrapher h4, .stacks_in_998451Calligrapher h5, .stacks_in_998451Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998451targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998451Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998451Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998451Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998451Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_998452 {
	padding: 0px 0px 10px 0px;
}

#stacks_in_998455 {
	margin: 0px 0px 20px 0px;
}
/* Start dooFaq2Child stack each CSS code *//* End dooFaq2Child stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998460Calligrapher{			font-size: 160% !important;			color: #455667 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998460Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998460Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998460Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998460Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998460Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998460Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998460Calligrapher h6, .stacks_in_998460Calligrapher h5, .stacks_in_998460Calligrapher h4, .stacks_in_998460Calligrapher h3, .stacks_in_998460Calligrapher h2, .stacks_in_998460Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998460Calligrapher, .stacks_in_998460Calligrapher h1, .stacks_in_998460Calligrapher h2, .stacks_in_998460Calligrapher h3, .stacks_in_998460Calligrapher h4, .stacks_in_998460Calligrapher h5, .stacks_in_998460Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998460targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998460Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998460Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998460Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998460Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_998461 {
	padding: 0px 0px 10px 0px;
}

#stacks_in_998464 {
	margin: 0px 0px 20px 0px;
}
/* Start dooFaq2Child stack each CSS code *//* End dooFaq2Child stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998469Calligrapher{			font-size: 160% !important;			color: #455667 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998469Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998469Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998469Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998469Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998469Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998469Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998469Calligrapher h6, .stacks_in_998469Calligrapher h5, .stacks_in_998469Calligrapher h4, .stacks_in_998469Calligrapher h3, .stacks_in_998469Calligrapher h2, .stacks_in_998469Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998469Calligrapher, .stacks_in_998469Calligrapher h1, .stacks_in_998469Calligrapher h2, .stacks_in_998469Calligrapher h3, .stacks_in_998469Calligrapher h4, .stacks_in_998469Calligrapher h5, .stacks_in_998469Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998469targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998469Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998469Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998469Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998469Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_998470 {
	padding: 0px 0px 10px 0px;
}

#stacks_in_998473 {
	margin: 0px 0px 20px 0px;
}
/* Start dooFaq2Child stack each CSS code *//* End dooFaq2Child stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998478Calligrapher{			font-size: 160% !important;			color: #455667 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998478Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998478Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998478Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998478Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998478Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998478Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998478Calligrapher h6, .stacks_in_998478Calligrapher h5, .stacks_in_998478Calligrapher h4, .stacks_in_998478Calligrapher h3, .stacks_in_998478Calligrapher h2, .stacks_in_998478Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998478Calligrapher, .stacks_in_998478Calligrapher h1, .stacks_in_998478Calligrapher h2, .stacks_in_998478Calligrapher h3, .stacks_in_998478Calligrapher h4, .stacks_in_998478Calligrapher h5, .stacks_in_998478Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998478targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998478Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998478Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998478Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998478Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_998479 {
	padding: 0px 0px 10px 0px;
}

#stacks_in_998482 {
	margin: 0px 0px 20px 0px;
}
/* Start dooFaq2Child stack each CSS code *//* End dooFaq2Child stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998496Calligrapher{			font-size: 160% !important;			color: #455667 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998496Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998496Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998496Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998496Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998496Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998496Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998496Calligrapher h6, .stacks_in_998496Calligrapher h5, .stacks_in_998496Calligrapher h4, .stacks_in_998496Calligrapher h3, .stacks_in_998496Calligrapher h2, .stacks_in_998496Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998496Calligrapher, .stacks_in_998496Calligrapher h1, .stacks_in_998496Calligrapher h2, .stacks_in_998496Calligrapher h3, .stacks_in_998496Calligrapher h4, .stacks_in_998496Calligrapher h5, .stacks_in_998496Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998496targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998496Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998496Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998496Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998496Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_998497 {
	padding: 0px 0px 10px 0px;
}

#stacks_in_998500 {
	margin: 0px 0px 20px 0px;
}
/* Start dooFaq2Child stack each CSS code *//* End dooFaq2Child stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998487Calligrapher{			font-size: 160% !important;			color: #455667 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998487Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998487Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998487Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998487Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998487Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998487Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998487Calligrapher h6, .stacks_in_998487Calligrapher h5, .stacks_in_998487Calligrapher h4, .stacks_in_998487Calligrapher h3, .stacks_in_998487Calligrapher h2, .stacks_in_998487Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998487Calligrapher, .stacks_in_998487Calligrapher h1, .stacks_in_998487Calligrapher h2, .stacks_in_998487Calligrapher h3, .stacks_in_998487Calligrapher h4, .stacks_in_998487Calligrapher h5, .stacks_in_998487Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998487targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998487Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998487Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998487Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998487Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_998488 {
	padding: 0px 0px 10px 0px;
}

#stacks_in_998491 {
	margin: 0px 0px 20px 0px;
}
/* Start dooFaq2Child stack each CSS code *//* End dooFaq2Child stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998505Calligrapher{			font-size: 160% !important;			color: #455667 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998505Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998505Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998505Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998505Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998505Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998505Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998505Calligrapher h6, .stacks_in_998505Calligrapher h5, .stacks_in_998505Calligrapher h4, .stacks_in_998505Calligrapher h3, .stacks_in_998505Calligrapher h2, .stacks_in_998505Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998505Calligrapher, .stacks_in_998505Calligrapher h1, .stacks_in_998505Calligrapher h2, .stacks_in_998505Calligrapher h3, .stacks_in_998505Calligrapher h4, .stacks_in_998505Calligrapher h5, .stacks_in_998505Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998505targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998505Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998505Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998505Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998505Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_998506 {
	padding: 0px 0px 10px 0px;
}

#stacks_in_998509 {
	margin: 0px 0px 20px 0px;
}
#usefulStackWrapperstacks_in_889426 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 1000px;
	min-height: 0px;
	max-height: 2000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_889426 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_889426 {
		display: none;
	}
}













#stacks_in_889426 {
	background-color: rgba(217, 96, 73, 1.00);
	padding:  20px;
}
#stacks_in_997403 h1,#stacks_in_997403 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_997403 h1 a,#stacks_in_997403 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_997403 h1 a:hover,#stacks_in_997403 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_997403 small,#stacks_in_997403 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_997403 {
	padding: 20px 0px 20px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_997687Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_997687Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997687Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997687Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997687Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997687Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997687Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997687Calligrapher h6, .stacks_in_997687Calligrapher h5, .stacks_in_997687Calligrapher h4, .stacks_in_997687Calligrapher h3, .stacks_in_997687Calligrapher h2, .stacks_in_997687Calligrapher h1{			color: #FFFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_997687Calligrapher, .stacks_in_997687Calligrapher h1, .stacks_in_997687Calligrapher h2, .stacks_in_997687Calligrapher h3, .stacks_in_997687Calligrapher h4, .stacks_in_997687Calligrapher h5, .stacks_in_997687Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_997687targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_997687Calligrapher a:link{			color: #FFD300 !important;			text-decoration: none !important;		}				.stacks_in_997687Calligrapher a:visited{			color: #FFD300 !important;		}				.stacks_in_997687Calligrapher a:active{			color: #FFD300 !important;		}				.stacks_in_997687Calligrapher a:hover{			color: #FFD300 !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_997348>.s3_row {
	margin: 0 -20px;
}

#stacks_in_997348>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_997348>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_997348>.s3_row>.s3_column {
	padding: 0 20px;
}










@media only screen and (max-width: 770px) {


	#stacks_in_997348>.s3_row  {
		margin: -20px 0;
	}
	#stacks_in_997348>.s3_row>.s3_column {
		padding: 20px 0;
		width:100%;
	}


}



@media only screen and (max-width: 400px) {


	#stacks_in_997348>.s3_row  {
		margin: -20px 0;
	}
	#stacks_in_997348>.s3_row>.s3_column {
		padding: 20px 0;
		width:100%;
	}


}





/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_997607Calligrapher{			font-size: 160% !important;			color: #F2BF47 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_997607Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997607Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997607Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997607Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997607Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997607Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_997607Calligrapher h6, .stacks_in_997607Calligrapher h5, .stacks_in_997607Calligrapher h4, .stacks_in_997607Calligrapher h3, .stacks_in_997607Calligrapher h2, .stacks_in_997607Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_997607Calligrapher, .stacks_in_997607Calligrapher h1, .stacks_in_997607Calligrapher h2, .stacks_in_997607Calligrapher h3, .stacks_in_997607Calligrapher h4, .stacks_in_997607Calligrapher h5, .stacks_in_997607Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_997607targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_997607Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_997607Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_997607Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_997607Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_997358 {
	padding: 0px 0px 20px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998523Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998523Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998523Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998523Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998523Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998523Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998523Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998523Calligrapher h6, .stacks_in_998523Calligrapher h5, .stacks_in_998523Calligrapher h4, .stacks_in_998523Calligrapher h3, .stacks_in_998523Calligrapher h2, .stacks_in_998523Calligrapher h1{			color: #FFFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998523Calligrapher, .stacks_in_998523Calligrapher h1, .stacks_in_998523Calligrapher h2, .stacks_in_998523Calligrapher h3, .stacks_in_998523Calligrapher h4, .stacks_in_998523Calligrapher h5, .stacks_in_998523Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998523targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998523Calligrapher a:link{			color: #FFD300 !important;			text-decoration: none !important;		}				.stacks_in_998523Calligrapher a:visited{			color: #FFD300 !important;		}				.stacks_in_998523Calligrapher a:active{			color: #FFD300 !important;		}				.stacks_in_998523Calligrapher a:hover{			color: #FFD300 !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_998524>.s3_row {
	margin: 0 -20px;
}

#stacks_in_998524>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_998524>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_998524>.s3_row>.s3_column {
	padding: 0 20px;
}










@media only screen and (max-width: 770px) {


	#stacks_in_998524>.s3_row  {
		margin: -20px 0;
	}
	#stacks_in_998524>.s3_row>.s3_column {
		padding: 20px 0;
		width:100%;
	}


}



@media only screen and (max-width: 400px) {


	#stacks_in_998524>.s3_row  {
		margin: -20px 0;
	}
	#stacks_in_998524>.s3_row>.s3_column {
		padding: 20px 0;
		width:100%;
	}


}






#stacks_in_998524 {
	margin: 0px 0px 20px 0px;
}
#stacks_in_998517 h2,#stacks_in_998517 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_998517 h2 a,#stacks_in_998517 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_998517 h2 a:hover,#stacks_in_998517 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_998517 small,#stacks_in_998517 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_998517 {
	padding: 20px 0px 10px 0px;
}

#stacks_in_998534 {
	margin: 0px 0px 20px 0px;
}
#stacks_in_998538 h2,#stacks_in_998538 div{color:rgba(255, 255, 255, 1.00)}#stacks_in_998538 h2 a,#stacks_in_998538 div a{color:rgba(255, 255, 255, 1.00)}#stacks_in_998538 h2 a:hover,#stacks_in_998538 div a:hover{color:rgba(191, 191, 191, 1.00)}#stacks_in_998538 small,#stacks_in_998538 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_998538 {
	padding: 20px 0px 10px 0px;
}

#stacks_in_998526 {
	margin: 0px 0px 20px 0px;
}
#usefulStackWrapperstacks_in_997543 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 1000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_997543 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_997543 {
		display: none;
	}
}













#stacks_in_997543 {
	margin: 0px 0px 20px 0px;
	padding:  20px;
}
#stacks_in_997396 h1,#stacks_in_997396 div{color:rgba(75, 83, 115, 1.00)}#stacks_in_997396 h1 a,#stacks_in_997396 div a{color:rgba(75, 83, 115, 1.00)}#stacks_in_997396 h1 a:hover,#stacks_in_997396 div a:hover{color:rgba(56, 62, 86, 1.00)}#stacks_in_997396 small,#stacks_in_997396 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_997396 {
	padding: 20px 0px 10px 0px;
}
#usefulStackWrapperstacks_in_997508 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_997508 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_997508 {
		display: none;
	}
}













#stacks_in_998551 {
	border: solid rgba(204, 204, 204, 1.00);
	border-width:  1px;
	margin:  10px;
	padding:  15px;
}
#stacks_in_998555 h2,#stacks_in_998555 div{color:rgba(75, 83, 115, 1.00)}#stacks_in_998555 h2 a,#stacks_in_998555 div a{color:rgba(75, 83, 115, 1.00)}#stacks_in_998555 h2 a:hover,#stacks_in_998555 div a:hover{color:rgba(56, 62, 86, 1.00)}#stacks_in_998555 small,#stacks_in_998555 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_998555 {
	padding: 10px 0px 10px 0px;
}
/* Start doo Tab 2 stack each CSS code */#stacks_in_998569wrapper{	position: relative;	-webkit-box-sizing: border-box !important; /* Safari/Chrome, other WebKit */	-moz-box-sizing: border-box !important;    /* Firefox, other Gecko */	box-sizing: border-box !important;         /* Opera/IE 8+ */}#stacks_in_998569 .dooTabContentTitle{	display: none;}ul.stacks_in_998569tabs {	position: relative;	margin: 0 !important;	padding: 0;	float: left;	list-style: none !important;	list-style-type: none !important;	height: 40px;	border-bottom: 1px solid rgba(179, 179, 179, 1.00);	width: 100%;	-webkit-box-sizing: border-box !important; /* Safari/Chrome, other WebKit */	-moz-box-sizing: border-box !important;    /* Firefox, other Gecko */	box-sizing: border-box !important;         /* Opera/IE 8+ */}ul.stacks_in_998569tabs li {	float: left;	margin: 0;	cursor: pointer;	padding: 0px 21px;	height: 39px;	line-height: 39px !important;	border-top: 1px solid rgba(179, 179, 179, 1.00);	border-right: 1px solid rgba(179, 179, 179, 1.00);	/*border-bottom: 1px solid rgba(179, 179, 179, 1.00);*/	border-left: 1px solid rgba(179, 179, 179, 1.00);	background-color: rgba(75, 83, 115, 1.00);	color: rgba(255, 255, 255, 1.00);	overflow: hidden;	position: relative;	margin-left: 2px;	z-index: 1;	-webkit-border-top-left-radius: 4px;	-webkit-border-top-right-radius: 4px;	-moz-border-radius-topleft: 4px;	-moz-border-radius-topright: 4px;	border-top-left-radius: 4px;	border-top-right-radius: 4px;	white-space: nowrap;	font-size: 20px !important;	list-style: none !important;	list-style-type: none !important;	-webkit-box-sizing: border-box !important; /* Safari/Chrome, other WebKit */	-moz-box-sizing: border-box !important;    /* Firefox, other Gecko */	box-sizing: border-box !important;         /* Opera/IE 8+ */}/*.tab_last { border-right: 1px solid ; }*/ul.stacks_in_998569tabs li.tab_first { margin-left: 0px; }ul.stacks_in_998569tabs li:hover {	color: rgba(235, 235, 235, 1.00);}ul.stacks_in_998569tabs li.active {	background-color: rgba(255, 255, 255, 1.00);	color: rgba(255, 255, 255, 1.00);	border-top: 1px solid rgba(179, 179, 179, 1.00);	border-left: 1px solid rgba(179, 179, 179, 1.00);	border-right: 1px solid rgba(179, 179, 179, 1.00);	display: block;	z-index: 10;	-webkit-box-sizing: content-box !important; /* Safari/Chrome, other WebKit */	-moz-box-sizing: content-box !important;    /* Firefox, other Gecko */	box-sizing: content-box !important;         /* Opera/IE 8+ */}.stacks_in_998569tab_container {	position: relative;	border: 1px solid rgba(179, 179, 179, 1.00);	border-top: none;	background: rgba(255, 255, 255, 1.00);	overflow: auto;	-webkit-border-bottom-right-radius: 3px;	-webkit-border-bottom-left-radius: 3px;	-moz-border-radius-bottomright: 3px;	-moz-border-radius-bottomleft: 3px;	border-bottom-right-radius: 3px;	border-bottom-left-radius: 3px;	-webkit-box-sizing: content-box !important; /* Safari/Chrome, other WebKit */	-moz-box-sizing: content-box !important;    /* Firefox, other Gecko */	box-sizing: content-box !important;         /* Opera/IE 8+ */}#stacks_in_998569 .dooTabContent {	padding: 20px;	display: none;}#stacks_in_998569 .tab_drawer_heading { display: none; }@media screen and (max-width: 480px) {	ul.stacks_in_998569tabs {		border-bottom: none;	}	.stacks_in_998569tabs {		display: none;	}	#stacks_in_998569 .tab_drawer_heading {		background-color: rgba(75, 83, 115, 1.00) !important;		color: rgba(255, 255, 255, 1.00) !important;		border-top: 1px solid rgba(179, 179, 179, 1.00);		margin: 0;		padding: 8px 20px;		display: block;		cursor: pointer;		-webkit-touch-callout: none;		-webkit-user-select: none;		-khtml-user-select: none;		-moz-user-select: none;		-ms-user-select: none;		user-select: none;		font-size: 22px !important;	}	.stacks_in_998569tab_container > div:first-child .tab_drawer_heading {		border-top: 0px !important;	}	.stacks_in_998569_active {		background-color: rgba(255, 255, 255, 1.00) !important;		color: rgba(255, 255, 255, 1.00);		border-bottom: 1px solid rgba(179, 179, 179, 1.00);	}	.stacks_in_998569tab_container {	border: 1px solid rgba(179, 179, 179, 1.00) !important;	-webkit-border-radius: 4px;	-moz-border-radius: 4px;	border-radius: 4px;	}}/* End doo Tab 2 stack each CSS code */
#stacks_in_998569 {
	margin:  10px;
}
/* Start doo Tab 2 item stack each CSS code *//* End doo Tab 2 item stack each CSS code *//* Start dooGrid stack each CSS code */.stacks_in_998578gridWrapper > div{	display: inline-block !important;	width: 33.333333%;	-webkit-box-sizing: border-box;    -moz-box-sizing: border-box;    box-sizing: border-box;    vertical-align: top;    margin-top: 15px;    padding-right: 7.500000px;    padding-left: 7.500000px;}.stacks_in_998578gridWrapper{	margin-right: -7.500000px;    margin-left: -7.500000px;    margin-top: -15px;}@media all and (max-width: 1024px) {				.stacks_in_998578gridWrapper > div{		width: 33.333333%;	}	}@media all and (max-width: 768px) {				.stacks_in_998578gridWrapper > div{		width: 50%;	}		}@media all and (max-width: 480px) {				.stacks_in_998578gridWrapper > div{		width: 100%;	}	}/* End dooGrid stack each CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998785Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998785Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998785Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998785Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998785Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998785Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998785Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998785Calligrapher h6, .stacks_in_998785Calligrapher h5, .stacks_in_998785Calligrapher h4, .stacks_in_998785Calligrapher h3, .stacks_in_998785Calligrapher h2, .stacks_in_998785Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998785Calligrapher, .stacks_in_998785Calligrapher h1, .stacks_in_998785Calligrapher h2, .stacks_in_998785Calligrapher h3, .stacks_in_998785Calligrapher h4, .stacks_in_998785Calligrapher h5, .stacks_in_998785Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998785targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998785Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998785Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998785Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998785Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998789Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998789Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998789Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998789Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998789Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998789Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998789Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998789Calligrapher h6, .stacks_in_998789Calligrapher h5, .stacks_in_998789Calligrapher h4, .stacks_in_998789Calligrapher h3, .stacks_in_998789Calligrapher h2, .stacks_in_998789Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998789Calligrapher, .stacks_in_998789Calligrapher h1, .stacks_in_998789Calligrapher h2, .stacks_in_998789Calligrapher h3, .stacks_in_998789Calligrapher h4, .stacks_in_998789Calligrapher h5, .stacks_in_998789Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998789targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998789Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998789Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998789Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998789Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998793Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998793Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998793Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998793Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998793Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998793Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998793Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998793Calligrapher h6, .stacks_in_998793Calligrapher h5, .stacks_in_998793Calligrapher h4, .stacks_in_998793Calligrapher h3, .stacks_in_998793Calligrapher h2, .stacks_in_998793Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998793Calligrapher, .stacks_in_998793Calligrapher h1, .stacks_in_998793Calligrapher h2, .stacks_in_998793Calligrapher h3, .stacks_in_998793Calligrapher h4, .stacks_in_998793Calligrapher h5, .stacks_in_998793Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998793targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998793Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998793Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998793Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998793Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998797Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998797Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998797Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998797Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998797Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998797Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998797Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998797Calligrapher h6, .stacks_in_998797Calligrapher h5, .stacks_in_998797Calligrapher h4, .stacks_in_998797Calligrapher h3, .stacks_in_998797Calligrapher h2, .stacks_in_998797Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998797Calligrapher, .stacks_in_998797Calligrapher h1, .stacks_in_998797Calligrapher h2, .stacks_in_998797Calligrapher h3, .stacks_in_998797Calligrapher h4, .stacks_in_998797Calligrapher h5, .stacks_in_998797Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998797targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998797Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998797Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998797Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998797Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998801Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998801Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998801Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998801Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998801Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998801Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998801Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998801Calligrapher h6, .stacks_in_998801Calligrapher h5, .stacks_in_998801Calligrapher h4, .stacks_in_998801Calligrapher h3, .stacks_in_998801Calligrapher h2, .stacks_in_998801Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998801Calligrapher, .stacks_in_998801Calligrapher h1, .stacks_in_998801Calligrapher h2, .stacks_in_998801Calligrapher h3, .stacks_in_998801Calligrapher h4, .stacks_in_998801Calligrapher h5, .stacks_in_998801Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998801targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998801Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998801Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998801Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998801Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998805Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998805Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998805Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998805Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998805Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998805Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998805Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998805Calligrapher h6, .stacks_in_998805Calligrapher h5, .stacks_in_998805Calligrapher h4, .stacks_in_998805Calligrapher h3, .stacks_in_998805Calligrapher h2, .stacks_in_998805Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998805Calligrapher, .stacks_in_998805Calligrapher h1, .stacks_in_998805Calligrapher h2, .stacks_in_998805Calligrapher h3, .stacks_in_998805Calligrapher h4, .stacks_in_998805Calligrapher h5, .stacks_in_998805Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998805targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998805Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998805Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998805Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998805Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998809Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998809Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998809Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998809Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998809Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998809Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998809Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998809Calligrapher h6, .stacks_in_998809Calligrapher h5, .stacks_in_998809Calligrapher h4, .stacks_in_998809Calligrapher h3, .stacks_in_998809Calligrapher h2, .stacks_in_998809Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998809Calligrapher, .stacks_in_998809Calligrapher h1, .stacks_in_998809Calligrapher h2, .stacks_in_998809Calligrapher h3, .stacks_in_998809Calligrapher h4, .stacks_in_998809Calligrapher h5, .stacks_in_998809Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998809targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998809Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998809Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998809Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998809Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998813Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998813Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998813Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998813Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998813Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998813Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998813Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998813Calligrapher h6, .stacks_in_998813Calligrapher h5, .stacks_in_998813Calligrapher h4, .stacks_in_998813Calligrapher h3, .stacks_in_998813Calligrapher h2, .stacks_in_998813Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998813Calligrapher, .stacks_in_998813Calligrapher h1, .stacks_in_998813Calligrapher h2, .stacks_in_998813Calligrapher h3, .stacks_in_998813Calligrapher h4, .stacks_in_998813Calligrapher h5, .stacks_in_998813Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998813targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998813Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998813Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998813Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998813Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998817Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998817Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998817Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998817Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998817Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998817Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998817Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998817Calligrapher h6, .stacks_in_998817Calligrapher h5, .stacks_in_998817Calligrapher h4, .stacks_in_998817Calligrapher h3, .stacks_in_998817Calligrapher h2, .stacks_in_998817Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998817Calligrapher, .stacks_in_998817Calligrapher h1, .stacks_in_998817Calligrapher h2, .stacks_in_998817Calligrapher h3, .stacks_in_998817Calligrapher h4, .stacks_in_998817Calligrapher h5, .stacks_in_998817Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998817targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998817Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998817Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998817Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998817Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start doo Tab 2 item stack each CSS code *//* End doo Tab 2 item stack each CSS code *//* Start dooGrid stack each CSS code */.stacks_in_998652gridWrapper > div{	display: inline-block !important;	width: 33.333333%;	-webkit-box-sizing: border-box;    -moz-box-sizing: border-box;    box-sizing: border-box;    vertical-align: top;    margin-top: 15px;    padding-right: 7.500000px;    padding-left: 7.500000px;}.stacks_in_998652gridWrapper{	margin-right: -7.500000px;    margin-left: -7.500000px;    margin-top: -15px;}@media all and (max-width: 1024px) {				.stacks_in_998652gridWrapper > div{		width: 33.333333%;	}	}@media all and (max-width: 768px) {				.stacks_in_998652gridWrapper > div{		width: 50%;	}		}@media all and (max-width: 480px) {				.stacks_in_998652gridWrapper > div{		width: 100%;	}	}/* End dooGrid stack each CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998821Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998821Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998821Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998821Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998821Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998821Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998821Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998821Calligrapher h6, .stacks_in_998821Calligrapher h5, .stacks_in_998821Calligrapher h4, .stacks_in_998821Calligrapher h3, .stacks_in_998821Calligrapher h2, .stacks_in_998821Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998821Calligrapher, .stacks_in_998821Calligrapher h1, .stacks_in_998821Calligrapher h2, .stacks_in_998821Calligrapher h3, .stacks_in_998821Calligrapher h4, .stacks_in_998821Calligrapher h5, .stacks_in_998821Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998821targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998821Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998821Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998821Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998821Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998825Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998825Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998825Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998825Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998825Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998825Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998825Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998825Calligrapher h6, .stacks_in_998825Calligrapher h5, .stacks_in_998825Calligrapher h4, .stacks_in_998825Calligrapher h3, .stacks_in_998825Calligrapher h2, .stacks_in_998825Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998825Calligrapher, .stacks_in_998825Calligrapher h1, .stacks_in_998825Calligrapher h2, .stacks_in_998825Calligrapher h3, .stacks_in_998825Calligrapher h4, .stacks_in_998825Calligrapher h5, .stacks_in_998825Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998825targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998825Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998825Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998825Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998825Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998829Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998829Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998829Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998829Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998829Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998829Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998829Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998829Calligrapher h6, .stacks_in_998829Calligrapher h5, .stacks_in_998829Calligrapher h4, .stacks_in_998829Calligrapher h3, .stacks_in_998829Calligrapher h2, .stacks_in_998829Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998829Calligrapher, .stacks_in_998829Calligrapher h1, .stacks_in_998829Calligrapher h2, .stacks_in_998829Calligrapher h3, .stacks_in_998829Calligrapher h4, .stacks_in_998829Calligrapher h5, .stacks_in_998829Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998829targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998829Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998829Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998829Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998829Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998833Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998833Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998833Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998833Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998833Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998833Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998833Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998833Calligrapher h6, .stacks_in_998833Calligrapher h5, .stacks_in_998833Calligrapher h4, .stacks_in_998833Calligrapher h3, .stacks_in_998833Calligrapher h2, .stacks_in_998833Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998833Calligrapher, .stacks_in_998833Calligrapher h1, .stacks_in_998833Calligrapher h2, .stacks_in_998833Calligrapher h3, .stacks_in_998833Calligrapher h4, .stacks_in_998833Calligrapher h5, .stacks_in_998833Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998833targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998833Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998833Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998833Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998833Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998837Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998837Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998837Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998837Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998837Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998837Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998837Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998837Calligrapher h6, .stacks_in_998837Calligrapher h5, .stacks_in_998837Calligrapher h4, .stacks_in_998837Calligrapher h3, .stacks_in_998837Calligrapher h2, .stacks_in_998837Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998837Calligrapher, .stacks_in_998837Calligrapher h1, .stacks_in_998837Calligrapher h2, .stacks_in_998837Calligrapher h3, .stacks_in_998837Calligrapher h4, .stacks_in_998837Calligrapher h5, .stacks_in_998837Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998837targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998837Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998837Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998837Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998837Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998841Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998841Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998841Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998841Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998841Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998841Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998841Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998841Calligrapher h6, .stacks_in_998841Calligrapher h5, .stacks_in_998841Calligrapher h4, .stacks_in_998841Calligrapher h3, .stacks_in_998841Calligrapher h2, .stacks_in_998841Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998841Calligrapher, .stacks_in_998841Calligrapher h1, .stacks_in_998841Calligrapher h2, .stacks_in_998841Calligrapher h3, .stacks_in_998841Calligrapher h4, .stacks_in_998841Calligrapher h5, .stacks_in_998841Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998841targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998841Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998841Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998841Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998841Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998845Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998845Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998845Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998845Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998845Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998845Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998845Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998845Calligrapher h6, .stacks_in_998845Calligrapher h5, .stacks_in_998845Calligrapher h4, .stacks_in_998845Calligrapher h3, .stacks_in_998845Calligrapher h2, .stacks_in_998845Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998845Calligrapher, .stacks_in_998845Calligrapher h1, .stacks_in_998845Calligrapher h2, .stacks_in_998845Calligrapher h3, .stacks_in_998845Calligrapher h4, .stacks_in_998845Calligrapher h5, .stacks_in_998845Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998845targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998845Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998845Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998845Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998845Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998849Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998849Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998849Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998849Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998849Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998849Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998849Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998849Calligrapher h6, .stacks_in_998849Calligrapher h5, .stacks_in_998849Calligrapher h4, .stacks_in_998849Calligrapher h3, .stacks_in_998849Calligrapher h2, .stacks_in_998849Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998849Calligrapher, .stacks_in_998849Calligrapher h1, .stacks_in_998849Calligrapher h2, .stacks_in_998849Calligrapher h3, .stacks_in_998849Calligrapher h4, .stacks_in_998849Calligrapher h5, .stacks_in_998849Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998849targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998849Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998849Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998849Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998849Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998853Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998853Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998853Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998853Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998853Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998853Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998853Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998853Calligrapher h6, .stacks_in_998853Calligrapher h5, .stacks_in_998853Calligrapher h4, .stacks_in_998853Calligrapher h3, .stacks_in_998853Calligrapher h2, .stacks_in_998853Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998853Calligrapher, .stacks_in_998853Calligrapher h1, .stacks_in_998853Calligrapher h2, .stacks_in_998853Calligrapher h3, .stacks_in_998853Calligrapher h4, .stacks_in_998853Calligrapher h5, .stacks_in_998853Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998853targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998853Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998853Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998853Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998853Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998857Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998857Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998857Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998857Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998857Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998857Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998857Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998857Calligrapher h6, .stacks_in_998857Calligrapher h5, .stacks_in_998857Calligrapher h4, .stacks_in_998857Calligrapher h3, .stacks_in_998857Calligrapher h2, .stacks_in_998857Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998857Calligrapher, .stacks_in_998857Calligrapher h1, .stacks_in_998857Calligrapher h2, .stacks_in_998857Calligrapher h3, .stacks_in_998857Calligrapher h4, .stacks_in_998857Calligrapher h5, .stacks_in_998857Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998857targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998857Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998857Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998857Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998857Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998861Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998861Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998861Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998861Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998861Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998861Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998861Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998861Calligrapher h6, .stacks_in_998861Calligrapher h5, .stacks_in_998861Calligrapher h4, .stacks_in_998861Calligrapher h3, .stacks_in_998861Calligrapher h2, .stacks_in_998861Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998861Calligrapher, .stacks_in_998861Calligrapher h1, .stacks_in_998861Calligrapher h2, .stacks_in_998861Calligrapher h3, .stacks_in_998861Calligrapher h4, .stacks_in_998861Calligrapher h5, .stacks_in_998861Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998861targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998861Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998861Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998861Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998861Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998869Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998869Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998869Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998869Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998869Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998869Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998869Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998869Calligrapher h6, .stacks_in_998869Calligrapher h5, .stacks_in_998869Calligrapher h4, .stacks_in_998869Calligrapher h3, .stacks_in_998869Calligrapher h2, .stacks_in_998869Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998869Calligrapher, .stacks_in_998869Calligrapher h1, .stacks_in_998869Calligrapher h2, .stacks_in_998869Calligrapher h3, .stacks_in_998869Calligrapher h4, .stacks_in_998869Calligrapher h5, .stacks_in_998869Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998869targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998869Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998869Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998869Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998869Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998873Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998873Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998873Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998873Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998873Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998873Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998873Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998873Calligrapher h6, .stacks_in_998873Calligrapher h5, .stacks_in_998873Calligrapher h4, .stacks_in_998873Calligrapher h3, .stacks_in_998873Calligrapher h2, .stacks_in_998873Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998873Calligrapher, .stacks_in_998873Calligrapher h1, .stacks_in_998873Calligrapher h2, .stacks_in_998873Calligrapher h3, .stacks_in_998873Calligrapher h4, .stacks_in_998873Calligrapher h5, .stacks_in_998873Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998873targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998873Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998873Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998873Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998873Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998877Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998877Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998877Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998877Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998877Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998877Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998877Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998877Calligrapher h6, .stacks_in_998877Calligrapher h5, .stacks_in_998877Calligrapher h4, .stacks_in_998877Calligrapher h3, .stacks_in_998877Calligrapher h2, .stacks_in_998877Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998877Calligrapher, .stacks_in_998877Calligrapher h1, .stacks_in_998877Calligrapher h2, .stacks_in_998877Calligrapher h3, .stacks_in_998877Calligrapher h4, .stacks_in_998877Calligrapher h5, .stacks_in_998877Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998877targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998877Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998877Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998877Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998877Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998881Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998881Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998881Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998881Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998881Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998881Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998881Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998881Calligrapher h6, .stacks_in_998881Calligrapher h5, .stacks_in_998881Calligrapher h4, .stacks_in_998881Calligrapher h3, .stacks_in_998881Calligrapher h2, .stacks_in_998881Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998881Calligrapher, .stacks_in_998881Calligrapher h1, .stacks_in_998881Calligrapher h2, .stacks_in_998881Calligrapher h3, .stacks_in_998881Calligrapher h4, .stacks_in_998881Calligrapher h5, .stacks_in_998881Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998881targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998881Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998881Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998881Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998881Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998885Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998885Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998885Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998885Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998885Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998885Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998885Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998885Calligrapher h6, .stacks_in_998885Calligrapher h5, .stacks_in_998885Calligrapher h4, .stacks_in_998885Calligrapher h3, .stacks_in_998885Calligrapher h2, .stacks_in_998885Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998885Calligrapher, .stacks_in_998885Calligrapher h1, .stacks_in_998885Calligrapher h2, .stacks_in_998885Calligrapher h3, .stacks_in_998885Calligrapher h4, .stacks_in_998885Calligrapher h5, .stacks_in_998885Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998885targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998885Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998885Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998885Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998885Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998889Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998889Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998889Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998889Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998889Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998889Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998889Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998889Calligrapher h6, .stacks_in_998889Calligrapher h5, .stacks_in_998889Calligrapher h4, .stacks_in_998889Calligrapher h3, .stacks_in_998889Calligrapher h2, .stacks_in_998889Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998889Calligrapher, .stacks_in_998889Calligrapher h1, .stacks_in_998889Calligrapher h2, .stacks_in_998889Calligrapher h3, .stacks_in_998889Calligrapher h4, .stacks_in_998889Calligrapher h5, .stacks_in_998889Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998889targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998889Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998889Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998889Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998889Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooGridChild stack each CSS code *//* End dooGridChild stack each CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_998893Calligrapher{			font-size: 160% !important;			color: #D96049 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_998893Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998893Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998893Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998893Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998893Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998893Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_998893Calligrapher h6, .stacks_in_998893Calligrapher h5, .stacks_in_998893Calligrapher h4, .stacks_in_998893Calligrapher h3, .stacks_in_998893Calligrapher h2, .stacks_in_998893Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_998893Calligrapher, .stacks_in_998893Calligrapher h1, .stacks_in_998893Calligrapher h2, .stacks_in_998893Calligrapher h3, .stacks_in_998893Calligrapher h4, .stacks_in_998893Calligrapher h5, .stacks_in_998893Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_998893targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_998893Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_998893Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_998893Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_998893Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#usefulStackWrapperstacks_in_889384 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 1000px;
	min-height: 0px;
	max-height: 2000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_889384 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_889384 {
		display: none;
	}
}













#stacks_in_889384 {
	background-color: rgba(51, 102, 153, 1.00);
	padding:  20px;
}
#stacks_in_997186_995448>.s3_row {
	margin: 0 -10px;
}

#stacks_in_997186_995448>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_997186_995448>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_997186_995448>.s3_row>.s3_column_right {
	width: 33.33%;
}

#stacks_in_997186_995448>.s3_row>.s3_column {
	padding: 0 10px;
}








@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_997186_995448>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_997186_995448>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}



/* DooBox Spin CSS Document */




#stacks_in_997186_995493 .stacks_in_997186_995493spin{
display:none;
}







/* DooBox Spin CSS Document */




#stacks_in_997186_995464 .stacks_in_997186_995464spin{
display:none;
}







/* DooBox Spin CSS Document */




#stacks_in_997186_995485 .stacks_in_997186_995485spin{
display:none;
}







/* Font style applied when the page has finished loading */

#ExtraContentPlusstacks_in_889480_472644 #myExtraContent5,
#ExtraContentPlusstacks_in_889480_472644 #fs {
	display: none;
}

#usefulStackWrapperstacks_in_889480_472649 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 1200px;
	min-height: 0px;
	max-height: 2000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_889480_472649 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_889480_472649 {
		display: none;
	}
}












/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_889480_472651Calligrapher{			font-size: 90% !important;			color: #FFFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_889480_472651Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_889480_472651Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_889480_472651Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_889480_472651Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_889480_472651Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_889480_472651Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_889480_472651Calligrapher h6, .stacks_in_889480_472651Calligrapher h5, .stacks_in_889480_472651Calligrapher h4, .stacks_in_889480_472651Calligrapher h3, .stacks_in_889480_472651Calligrapher h2, .stacks_in_889480_472651Calligrapher h1{			color: #FFFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_889480_472651Calligrapher, .stacks_in_889480_472651Calligrapher h1, .stacks_in_889480_472651Calligrapher h2, .stacks_in_889480_472651Calligrapher h3, .stacks_in_889480_472651Calligrapher h4, .stacks_in_889480_472651Calligrapher h5, .stacks_in_889480_472651Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_889480_472651targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_889480_472651Calligrapher a:link{			color: #FFFFFF !important;			text-decoration: none !important;		}				.stacks_in_889480_472651Calligrapher a:visited{			color: #FFFFFF !important;		}				.stacks_in_889480_472651Calligrapher a:active{			color: #FFFFFF !important;		}				.stacks_in_889480_472651Calligrapher a:hover{			color: #CCCCCC !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */#stacks_in_889480_472653>.s3_row {
	margin: 0 -10px;
}

#stacks_in_889480_472653>.s3_row>.s3_column_left {
	width: 60.00%;
}

#stacks_in_889480_472653>.s3_row>.s3_column_right {
	width: 40.000000%;
}




#stacks_in_889480_472653>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {


	#stacks_in_889480_472653>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_889480_472653>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}



@media only screen and (max-width: 400px) {


	#stacks_in_889480_472653>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_889480_472653>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}






#stacks_in_889480_472653 {
	margin: 40px 20px 20px 20px;
}
#stacks_in_889480_472673>.s3_row {
	margin: 0 -5px;
}

#stacks_in_889480_472673>.s3_row>.s3_column_left {
	width: 20.00%;
}

#stacks_in_889480_472673>.s3_row>.s3_column_right {
	width: 80.000000%;
}




#stacks_in_889480_472673>.s3_row>.s3_column {
	padding: 0 5px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_889480_472673>.s3_row  {
		margin: -5px 0;
	}
	#stacks_in_889480_472673>.s3_row>.s3_column {
		padding: 5px 0;
		width:100%;
	}


}





/* -- Start Buttonpress2 Each css Template -- */

.stacks_in_889480_1139294buttonPressWrapper{
	position: relative !important;
}

#stacks_in_889480_1139294 a, #stacks_in_889480_1139294 a:hover, #stacks_in_889480_1139294 a:visited, #stacks_in_889480_1139294 a:active{
	text-decoration: none !important;
}

/* -- TYPE BASE STYLES -- */
.stacks_in_889480_1139294button{
	position: relative !important;
	display: inline-block !important;
	width: 100% !important;
	padding: 6px 12px 6px 12px !important;
	margin: 0 !important;
	font-size: 14px !important;
	font-weight: bold !important;
	line-height: 18px !important;
	text-align: center !important;
	vertical-align: middle !important;
	-ms-touch-action: manipulation !important;
	touch-action: manipulation !important;
	cursor: pointer !important;
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important;
	background-image: none !important;
	border: 1px solid transparent !important;
	border-radius: 4px !important;
	color: #FFFFFF !important;
	background-color: #999999 !important;
	border-color: #828282 !important;
	box-sizing: border-box !important;
}

.stacks_in_889480_1139294button:hover{
	color: #FFFFFF !important;
	background-color: #00CC00 !important;
	border-color: #00AD00 !important;
}

#stacks_in_889480_1139294 a, #stacks_in_889480_1139294 a:visited, #stacks_in_889480_1139294 a:active{
	color: #FFFFFF !important;
}

#stacks_in_889480_1139294 a:hover{
	color: #FFFFFF !important;
}
















	/* -- TYPE FLAT REGULAR OVERRIDE -- */
	.stacks_in_889480_1139294button{
		border-color: #999999 !important;
	}
	.stacks_in_889480_1139294button:hover{
		border-color: #00CC00 !important;
	}
	























.stacks_in_889480_1139294buttonPressWrapper *{
	
	font-family:  Helvetica,Arial,sans-serif !important;
}


/* -- BUTTON ALIGNMENT -- */
.stacks_in_889480_1139294buttonPressWrapper{
	position: relative !important;
	text-align: center !important;
}

@media only screen and (max-width: 768px) {
	.stacks_in_889480_1139294buttonPressWrapper{
		text-align: center !important;
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_889480_1139294buttonPressWrapper{
		text-align: center !important;
	}
}

/* -- End Buttonpress2 Each css Template -- */
#stacks_in_889480_1139294 {
	margin: 5px 0px 0px 0px;
}

#stacks_in_889480_472677 {
	margin: 0px 0px 20px 0px;
}
#stacks_in_889480_472655>.s3_row {
	margin: 0 -10px;
}

#stacks_in_889480_472655>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_889480_472655>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_889480_472655>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {



}





/* -- Start Buttonpress2 Each css Template -- */

.stacks_in_889480_1139304buttonPressWrapper{
	position: relative !important;
}

#stacks_in_889480_1139304 a, #stacks_in_889480_1139304 a:hover, #stacks_in_889480_1139304 a:visited, #stacks_in_889480_1139304 a:active{
	text-decoration: none !important;
}

/* -- TYPE BASE STYLES -- */
.stacks_in_889480_1139304button{
	position: relative !important;
	display: inline-block !important;
	width: 100% !important;
	padding: 6px 12px 6px 12px !important;
	margin: 0 !important;
	font-size: 14px !important;
	font-weight: bold !important;
	line-height: 18px !important;
	text-align: center !important;
	vertical-align: middle !important;
	-ms-touch-action: manipulation !important;
	touch-action: manipulation !important;
	cursor: pointer !important;
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important;
	background-image: none !important;
	border: 1px solid transparent !important;
	border-radius: 4px !important;
	color: #FFFFFF !important;
	background-color: #999999 !important;
	border-color: #828282 !important;
	box-sizing: border-box !important;
}

.stacks_in_889480_1139304button:hover{
	color: #FFFFFF !important;
	background-color: #3366CC !important;
	border-color: #2B56AD !important;
}

#stacks_in_889480_1139304 a, #stacks_in_889480_1139304 a:visited, #stacks_in_889480_1139304 a:active{
	color: #FFFFFF !important;
}

#stacks_in_889480_1139304 a:hover{
	color: #FFFFFF !important;
}
















	/* -- TYPE FLAT REGULAR OVERRIDE -- */
	.stacks_in_889480_1139304button{
		border-color: #999999 !important;
	}
	.stacks_in_889480_1139304button:hover{
		border-color: #3366CC !important;
	}
	























.stacks_in_889480_1139304buttonPressWrapper *{
	
	font-family:  Helvetica,Arial,sans-serif !important;
}


/* -- BUTTON ALIGNMENT -- */
.stacks_in_889480_1139304buttonPressWrapper{
	position: relative !important;
	text-align: center !important;
}

@media only screen and (max-width: 768px) {
	.stacks_in_889480_1139304buttonPressWrapper{
		text-align: center !important;
	}
}

@media only screen and (max-width: 480px) {
	.stacks_in_889480_1139304buttonPressWrapper{
		text-align: center !important;
	}
}

/* -- End Buttonpress2 Each css Template -- */
#stacks_in_889480_1139304 {
	margin: 5px 0px 0px 0px;
}
#stacks_in_889480_1139295>.s3_row {
	margin: 0 -10px;
}

#stacks_in_889480_1139295>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_889480_1139295>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_889480_1139295>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_889480_1139295>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_889480_1139295>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}






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

#stacks_out_889480_1139300 {
	width: 113px;
	float: left;
	margin-left:0;
}
#usefulStackWrapperstacks_in_889480_1139286 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 1000px;
	min-height: 0px;
	max-height: 2000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_889480_1139286 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: none;
}








@media screen and (max-width: 880px) {
	#usefulStackstacks_in_889480_1139286 {
		display: block;
	}
}












.target_stacks_in_889480_1139288{z-index:99;}.target_stacks_in_889480_1139288.rotate{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg);-webkit-transform-origin:center center;-moz-transform-origin:center center;-ms-transform-origin:center center;-o-transform-origin:center center;transform-origin:center center}.target_stacks_in_889480_1139288.width-flexible{width:100%}.target_stacks_in_889480_1139288.width-fixed{width:250px}.target_stacks_in_889480_1139288.height-flexible{height:100%}.target_stacks_in_889480_1139288.height-fixed{height:250px}.target_stacks_in_889480_1139288.top_pt{top:96%}.target_stacks_in_889480_1139288.top_px{top:96px}.target_stacks_in_889480_1139288.bottom_pt{bottom:96%}.target_stacks_in_889480_1139288.bottom_px{bottom:96px}.target_stacks_in_889480_1139288.right_pt{right:0%}.target_stacks_in_889480_1139288.right_px{right:0px}.target_stacks_in_889480_1139288.left_pt{left:0%}.target_stacks_in_889480_1139288.left_px{left:0px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_889480_1139290Calligrapher{			font-size: 100% !important;			color: #999999 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_889480_1139290Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_889480_1139290Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_889480_1139290Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_889480_1139290Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_889480_1139290Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_889480_1139290Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_889480_1139290Calligrapher h6, .stacks_in_889480_1139290Calligrapher h5, .stacks_in_889480_1139290Calligrapher h4, .stacks_in_889480_1139290Calligrapher h3, .stacks_in_889480_1139290Calligrapher h2, .stacks_in_889480_1139290Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_889480_1139290Calligrapher, .stacks_in_889480_1139290Calligrapher h1, .stacks_in_889480_1139290Calligrapher h2, .stacks_in_889480_1139290Calligrapher h3, .stacks_in_889480_1139290Calligrapher h4, .stacks_in_889480_1139290Calligrapher h5, .stacks_in_889480_1139290Calligrapher h6{	font-family: Helvetica, Arial, sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_889480_1139290targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_889480_1139290Calligrapher a:link{			color: #666666 !important;			text-decoration: none !important;		}				.stacks_in_889480_1139290Calligrapher a:visited{			color: #666666 !important;		}				.stacks_in_889480_1139290Calligrapher a:active{			color: #666666 !important;		}				.stacks_in_889480_1139290Calligrapher a:hover{			color: #FFFFFF !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */
#stacks_in_889480_1139292 {
	background-color: rgba(204, 204, 204, 0.90);
	border: solid rgba(153, 153, 153, 1.00);
	border-width: 0px 0px 1px 0px;
	padding: 3px 0px 3px 0px;
}
/* Font style applied when the page has finished loading */

#ExtraContentPlusstacks_in_889480_1019309_1019302 #myExtraContent7,
#ExtraContentPlusstacks_in_889480_1019309_1019302 #fs {
	display: none;
}


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