/* 
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);
}#stacks_in_6_page0>.s3_row {
	margin: 0 -10px;
}

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

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




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










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



}



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


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


}





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

#listerWrapperstacks_in_2_page0 {
	visibility: hidden;
}

#listerWrapperstacks_in_2_page0 ul {
	padding: 0;
	margin: 0;
	list-style: none;
	padding-left: 20px;
	width: 100%;
}

#listerWrapperstacks_in_2_page0 li {
	padding-top: 4px;
	padding-bottom: 4px;
	padding-left: 0px;
	padding-right: 0;
	margin: 0;
	position: relative;
	text-align: left;
}

#listerWrapperstacks_in_2_page0 li ul {
	padding-top: 4px;
}

/* @end */

/* @group Style Overrides */

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */
#listerWrapperstacks_in_2_page0 ul {
	list-style: none !important;
	display: table;
}

#listerWrapperstacks_in_2_page0 li:before,
#listerWrapperstacks_in_2_page0 li:after {
	display: table;
	line-height: 0;
	content: "";
}

#listerWrapperstacks_in_2_page0 li:after {
	clear: both;
}

#listerWrapperstacks_in_2_page0 .bullet-point {
	display: table-cell;
	font-size: 30px;
	color: rgba(19, 118, 36, 1.00);
	float: left;
	margin-top: -4px;
	margin-right: 10px;
}

#listerWrapperstacks_in_2_page0 .bullet-point [class^="fa fa-"] {
	color: rgba(19, 118, 36, 1.00);
}

#listerWrapperstacks_in_2_page0 .list-item-content {
	display: table-cell;
}
/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/* @group Print styles */
@media print {
	#listerWrapperstacks_in_2_page0 ul {
		list-style: disc;
	}
	
	#listerWrapperstacks_in_2_page0 .list-item-content {
		display: block;
	}
	
	#listerWrapperstacks_in_2_page0 .bullet-point {
		display: none;
	}
}

/* @end */

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

#stacks_in_126_page0 {
	background-color: rgba(230, 230, 230, 1.00);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_127_page0 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_127_page0 .theDivider1,
#simpleDivider_stacks_in_127_page0 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_127_page0 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_127_page0.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_127_page0.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_127_page0 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_127_page0.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_127_page0.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_127_page0.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_127_page0.bgImageOn .theDivider1 img {
	display: block;
}

/* If modifying any of this code, update the template.html file too */

/* CSS code for the START YOUR PLAN button */

#stacks_in_128_page0 *,
#stacks_in_128_page0 *:before,
#stacks_in_128_page0 *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.ButtonMakerStackstacks_in_128_page0 {
	line-height: 25px;
	width: 100%;
	text-align: center;
	position: relative;
	z-index: 10;
	transition: all 300ms ease-in-out;
	border-radius: 5px;
	overflow: hidden;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}






/* Solid colour fill */
.ButtonMakerStackstacks_in_128_page0 {
	background: #E14746;
}

.ButtonMakerStackstacks_in_128_page0:hover {
	background: #63A930;
}





















.ButtonMakerStackstacks_in_128_page0 a.Button-Link {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 25;
	outline: none;
}

/* Button inset effect on click */
.ButtonMakerStackstacks_in_128_page0 a.Button-Link:active {
	
	-webkit-box-shadow:inset 0 0 5px 2px #333333;
	box-shadow:inset 0 0 5px 2px #333333;
	
	outline: none;
}

.ButtonMakerStackstacks_in_128_page0 .Button-Label {
	color: #FFFFFF;
	font-size: 15px;
	display: block;
	z-index: 15;
	position: relative;
	transition: all 300ms ease-in-out;
	font-family: inherit;
	text-align: center;
	padding-left: 0px;
	padding-right: 0px;
}

.ButtonMakerStackstacks_in_128_page0:hover .Button-Label {
	color: #FFFFFF;
}






@media print {
	.ButtonMakerStackstacks_in_128_page0 {
		display: none !important;
	}
}

/* End of CSS code for the START YOUR PLAN button */











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

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

#stacks_in_35_page0 {
	font-weight: bolder;
}
#stacks_in_36_page0>.s3_row {
	margin: 0 -10px;
}

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








  


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




	#stacks_in_36_page0>.s3_row  {
		margin: -10px -10px;
	}
	#stacks_in_36_page0>.s3_row>.s3_column {
		padding: 10px 10px;
		width:50%;
	}



}



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


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





}




  
#standOutWrapperstacks_in_20_page0 {
	padding-top: 33px;
	padding-bottom: 33px;
}

#standOutstacks_in_20_page0 {
	border: none;
	margin-left: auto;
	margin-right: auto;
	max-width: 700px;
	
	
	text-align: center;
	
	
}

#standOutstacks_in_20_page0:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

#standOutShadowstacks_in_20_page0 {
	-webkit-box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.30);
	box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.30);
	margin: 10px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 1.00);
	border: 0px solid rgba(179, 179, 179, 1.00);
}

#standOutBackmoststacks_in_20_page0 {
	padding: 20px 20px;
}

#standOutFrontmoststacks_in_20_page0 img,
#standOutFrontmoststacks_in_20_page0 video {
	max-width: 100%;
	height: auto;
}

#standOutFrontmoststacks_in_20_page0 {
	margin-left: auto;
	margin-right: auto;
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
	-webkit-box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.30);
	box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.30);
	position: relative;
	border: 0px solid rgba(179, 179, 179, 1.00);
}

/*  */
#standOutFrontmoststacks_in_20_page0 {
	background: url(../index_files/frontmost_localimage_20.jpg) #ffffff;
	background-position: center center;
	background-size: cover;
}
/*  */

/*  */

/*  */

#standOutFrontmoststacks_in_20_page0 a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	border: none;
	outline: none;
	text-decoration: none;
	display: block;
}

/*  */
#standOutSpacerTopstacks_in_20_page0 {
	height: 33px;
}

#standOutShadowstacks_in_20_page0 {
	padding-top: 3px;
}

#standOutFrontmoststacks_in_20_page0 {
	margin-top: -60px;
	width: 250px;
	height: 250px;
	display: block;
}
/*  */

/*  */

/*  */

/*  */

/* @group Responsive */

@media screen and (max-width: 768px) {
	#standOutWrapperstacks_in_20_page0 {
		padding: 3px 0px;
	}
	
	#standOutShadowstacks_in_20_page0 {
		display: block;
		padding-top: 3px;
	}
	
	#standOutFrontmoststacks_in_20_page0 {
		margin-top: 0px;
		width: 150px;
		height: 150px;
		display: block;
		margin: 10px auto;
	}
	
	#standOutFrontmoststacks_in_20_page0 i {
		font-size: 100px;
	}
}

/* @end */

/*  */
#stacks_in_23_page0 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_23_page0 .pullquote:before, #stacks_in_23_page0 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_23_page0 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_23_page0 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_23_page0 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_23_page0 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}#standOutWrapperstacks_in_29_page0 {
	padding-top: 33px;
	padding-bottom: 33px;
}

#standOutstacks_in_29_page0 {
	border: none;
	margin-left: auto;
	margin-right: auto;
	max-width: 700px;
	
	
	text-align: center;
	
	
}

#standOutstacks_in_29_page0:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

#standOutShadowstacks_in_29_page0 {
	-webkit-box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.30);
	box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.30);
	margin: 10px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 1.00);
	border: 0px solid rgba(179, 179, 179, 1.00);
}

#standOutBackmoststacks_in_29_page0 {
	padding: 20px 20px;
}

#standOutFrontmoststacks_in_29_page0 img,
#standOutFrontmoststacks_in_29_page0 video {
	max-width: 100%;
	height: auto;
}

#standOutFrontmoststacks_in_29_page0 {
	margin-left: auto;
	margin-right: auto;
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
	-webkit-box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.30);
	box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.30);
	position: relative;
	border: 0px solid rgba(179, 179, 179, 1.00);
}

/*  */
#standOutFrontmoststacks_in_29_page0 {
	background: url(../index_files/frontmost_localimage_29.jpg) #ffffff;
	background-position: center center;
	background-size: cover;
}
/*  */

/*  */

/*  */

#standOutFrontmoststacks_in_29_page0 a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	border: none;
	outline: none;
	text-decoration: none;
	display: block;
}

/*  */
#standOutSpacerTopstacks_in_29_page0 {
	height: 33px;
}

#standOutShadowstacks_in_29_page0 {
	padding-top: 3px;
}

#standOutFrontmoststacks_in_29_page0 {
	margin-top: -60px;
	width: 250px;
	height: 250px;
	display: block;
}
/*  */

/*  */

/*  */

/*  */

/* @group Responsive */

@media screen and (max-width: 768px) {
	#standOutWrapperstacks_in_29_page0 {
		padding: 3px 0px;
	}
	
	#standOutShadowstacks_in_29_page0 {
		display: block;
		padding-top: 3px;
	}
	
	#standOutFrontmoststacks_in_29_page0 {
		margin-top: 0px;
		width: 150px;
		height: 150px;
		display: block;
		margin: 10px auto;
	}
	
	#standOutFrontmoststacks_in_29_page0 i {
		font-size: 100px;
	}
}

/* @end */

/*  */
#stacks_in_30_page0 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_30_page0 .pullquote:before, #stacks_in_30_page0 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_30_page0 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_30_page0 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_30_page0 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_30_page0 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}#standOutWrapperstacks_in_43_page0 {
	padding-top: 33px;
	padding-bottom: 33px;
}

#standOutstacks_in_43_page0 {
	border: none;
	margin-left: auto;
	margin-right: auto;
	max-width: 700px;
	
	
	text-align: center;
	
	
}

#standOutstacks_in_43_page0:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

#standOutShadowstacks_in_43_page0 {
	-webkit-box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.30);
	box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.30);
	margin: 10px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 1.00);
	border: 0px solid rgba(179, 179, 179, 1.00);
}

#standOutBackmoststacks_in_43_page0 {
	padding: 20px 20px;
}

#standOutFrontmoststacks_in_43_page0 img,
#standOutFrontmoststacks_in_43_page0 video {
	max-width: 100%;
	height: auto;
}

#standOutFrontmoststacks_in_43_page0 {
	margin-left: auto;
	margin-right: auto;
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
	-webkit-box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.30);
	box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.30);
	position: relative;
	border: 0px solid rgba(179, 179, 179, 1.00);
}

/*  */
#standOutFrontmoststacks_in_43_page0 {
	background: url(../index_files/frontmost_localimage_43.jpg) #ffffff;
	background-position: center center;
	background-size: cover;
}
/*  */

/*  */

/*  */

#standOutFrontmoststacks_in_43_page0 a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	border: none;
	outline: none;
	text-decoration: none;
	display: block;
}

/*  */
#standOutSpacerTopstacks_in_43_page0 {
	height: 33px;
}

#standOutShadowstacks_in_43_page0 {
	padding-top: 3px;
}

#standOutFrontmoststacks_in_43_page0 {
	margin-top: -60px;
	width: 250px;
	height: 250px;
	display: block;
}
/*  */

/*  */

/*  */

/*  */

/* @group Responsive */

@media screen and (max-width: 768px) {
	#standOutWrapperstacks_in_43_page0 {
		padding: 3px 0px;
	}
	
	#standOutShadowstacks_in_43_page0 {
		display: block;
		padding-top: 3px;
	}
	
	#standOutFrontmoststacks_in_43_page0 {
		margin-top: 0px;
		width: 150px;
		height: 150px;
		display: block;
		margin: 10px auto;
	}
	
	#standOutFrontmoststacks_in_43_page0 i {
		font-size: 100px;
	}
}

/* @end */

/*  */
#stacks_in_44_page0 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_44_page0 .pullquote:before, #stacks_in_44_page0 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_44_page0 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_44_page0 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_44_page0 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_44_page0 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}#standOutWrapperstacks_in_48_page0 {
	padding-top: 33px;
	padding-bottom: 33px;
}

#standOutstacks_in_48_page0 {
	border: none;
	margin-left: auto;
	margin-right: auto;
	max-width: 700px;
	
	
	text-align: center;
	
	
}

#standOutstacks_in_48_page0:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

#standOutShadowstacks_in_48_page0 {
	-webkit-box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.30);
	box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.30);
	margin: 10px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 1.00);
	border: 0px solid rgba(179, 179, 179, 1.00);
}

#standOutBackmoststacks_in_48_page0 {
	padding: 20px 20px;
}

#standOutFrontmoststacks_in_48_page0 img,
#standOutFrontmoststacks_in_48_page0 video {
	max-width: 100%;
	height: auto;
}

#standOutFrontmoststacks_in_48_page0 {
	margin-left: auto;
	margin-right: auto;
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
	-webkit-box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.30);
	box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.30);
	position: relative;
	border: 0px solid rgba(179, 179, 179, 1.00);
}

/*  */
#standOutFrontmoststacks_in_48_page0 {
	background: url(../index_files/frontmost_localimage_48.jpg) #ffffff;
	background-position: center center;
	background-size: cover;
}
/*  */

/*  */

/*  */

#standOutFrontmoststacks_in_48_page0 a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	border: none;
	outline: none;
	text-decoration: none;
	display: block;
}

/*  */
#standOutSpacerTopstacks_in_48_page0 {
	height: 33px;
}

#standOutShadowstacks_in_48_page0 {
	padding-top: 3px;
}

#standOutFrontmoststacks_in_48_page0 {
	margin-top: -60px;
	width: 250px;
	height: 250px;
	display: block;
}
/*  */

/*  */

/*  */

/*  */

/* @group Responsive */

@media screen and (max-width: 768px) {
	#standOutWrapperstacks_in_48_page0 {
		padding: 3px 0px;
	}
	
	#standOutShadowstacks_in_48_page0 {
		display: block;
		padding-top: 3px;
	}
	
	#standOutFrontmoststacks_in_48_page0 {
		margin-top: 0px;
		width: 150px;
		height: 150px;
		display: block;
		margin: 10px auto;
	}
	
	#standOutFrontmoststacks_in_48_page0 i {
		font-size: 100px;
	}
}

/* @end */

/*  */
#stacks_in_49_page0 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_49_page0 .pullquote:before, #stacks_in_49_page0 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_49_page0 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_49_page0 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_49_page0 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_49_page0 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}#stacks_in_26_page0>.s3_row {
	margin: 0 -10px;
}

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

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




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










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



}



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


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


}





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

#ExtraContentPlusstacks_in_62_page0 #myExtraContent8,
#ExtraContentPlusstacks_in_62_page0 #fs {
	display: none;
}

#stacks_in_65_page0>.s3_row {
	margin: 0 -10px;
}

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

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

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

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








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



}



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


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


}




#stacks_in_65_page0 {
	background-color: rgba(145, 145, 141, 0.00);
}

#stacks_out_66_page0 {
	width: 66%;
}

#stacks_out_69_page0 {
	width: 66%;
}

#stacks_out_72_page0 {
	width: 66%;
}
/* Font style applied when the page has finished loading */

#ExtraContentPlusstacks_in_121_page0 #myExtraContent10,
#ExtraContentPlusstacks_in_121_page0 #fs {
	display: none;
}

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

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

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

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

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


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















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






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

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

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

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

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

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

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

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

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

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

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

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

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

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

#topBoxTriggerRegionstacks_in_114_page0 {
	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_114_page0 #topBoxTriggerstacks_in_114_page0 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_114_page0 #topBoxTriggerContentstacks_in_114_page0 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_114_page0 #topBoxTriggerContentstacks_in_114_page0 img {
	display: block;
	margin: 0 auto;
}

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

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

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

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

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

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

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

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

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



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


#topBoxContentWrapperstacks_in_114_page0 {
	display: none;
}







