/* 
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);
}.accordion{display:flex;flex-direction:column;width:100%;height:auto}.accordion .a-container{display:flex;flex-direction:column;width:100%}.accordion .a-container .a-btn{text-align:left;font-family:inherit;font-size:inherit;white-space:normal;margin:0;position:relative;width:100%;display:flex;align-items:center;cursor:pointer;transition:all .3s ease-in-out}.accordion .a-container .a-btn span{display:block;position:absolute;height:14px;width:14px;right:20px}.accordion.faq-chevron .a-container .a-btn span{right:16px}.accordion.faq-plus .a-container .a-btn span:after{content:'';width:14px;height:3px;border-radius:2px;position:absolute;top:6px}.accordion.faq-plus .a-container .a-btn span:before{content:'';width:14px;height:3px;border-radius:2px;position:absolute;top:6px;transform:rotate(90deg);transition:all .3s ease-in-out}.accordion.faq-plus .a-container.active>.a-btn span::before{transform:rotate(0deg)}.accordion.faq-chevron .a-container .a-btn span:after{content:'';width:10px;height:3px;border-radius:0;position:absolute;transform:rotate(45deg);top:6px;left:-5px;transition:all .1s ease-in-out}.accordion.faq-chevron .a-container .a-btn span:before{content:'';width:10px;height:3px;border-radius:0;position:absolute;transform:rotate(135deg);top:6px;transition:all .1s ease-in-out}.accordion.faq-chevron .a-container.active>.a-btn span::before{transform:rotate(-135deg)}.accordion.faq-chevron .a-container.active>.a-btn span::after{transform:rotate(135deg)}.accordion .a-container .a-panel{width:100%;transition:all .2s ease-in-out;opacity:0;height:auto;max-height:0;overflow:hidden}.com_habitualshaker_faq-toggle_stack>.accordion>.stacks_out{width:100%}.accordion .a-container.active>.a-panel{opacity:1;overflow-y:scroll;max-height:100vh}@media screen and (max-width:600px){.accordion .a-container .a-panel{transition:all .3s ease-in-out}.accordion .a-container.active>.a-panel{max-height:200vh}}.a-btn span{pointer-events:none}.faq-plus .a-container:last-child:not(.active),.faq-chevron .a-container:last-child:not(.active){padding-bottom:0}.com_bigwhiteduck_stacks_markdownpro_stack figure{margin:0}.com_bigwhiteduck_stacks_markdownpro_stack figure img{max-width:100%;height:auto}.com_bigwhiteduck_stacks_markdownpro_stack figure figcaption{display:none}.com_bigwhiteduck_stacks_markdownpro_stack pre{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.p-center p{text-align:center}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.p-left p{text-align:left}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.p-right p{text-align:right}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.p-justify p{text-align:justify}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.p-inherit{text-align:inherit}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-center h1,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-center h2,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-center h3,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-center h4,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-center h5,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-center h6{text-align:center}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-left h1,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-left h2,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-left h3,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-left h4,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-left h5,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-left h6{text-align:left}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-right h1,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-right h2,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-right h3,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-right h4,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-right h5,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-right h6{text-align:right}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-inherit h1,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-inherit h2,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-inherit h3,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-inherit h4,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-inherit h5,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.h-inherit h6{text-align:inherit}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.l-center ul{display:table;margin:0 auto}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.l-left ul{text-align:left}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.l-right ul{display:table;margin:0 0 0 auto}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.l-txt-center ul li p{text-align:center}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.l-txt-left ul li p{text-align:left}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.l-txt-right ul li p{text-align:right}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_markdownpro_stack .mdp.small-only-text-center,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.small-only-text-center p{text-align:center}}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_markdownpro_stack .mdp.small-only-header-center h1,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.small-only-header-center h2,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.small-only-header-center h3,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.small-only-header-center h4,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.small-only-header-center h5,.com_bigwhiteduck_stacks_markdownpro_stack .mdp.small-only-header-center h6{text-align:center}}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_markdownpro_stack .mdp.small-only-list-center ul{display:table;margin:0 auto}}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_markdownpro_stack .mdp.small-only-listtext-center ul li p{text-align:center}}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_markdownpro_stack .mdp.p-justify.small-only-just-left p{text-align:left !important}}.com_bigwhiteduck_stacks_markdownpro_stack .mdp p:empty{display:none !important}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.quote-left[class*="text-"] blockquote{text-align:left}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.quote-left[class*="text-"] blockquote > p{text-align:left;margin-bottom:0}.com_bigwhiteduck_stacks_markdownpro_stack .mdp.no-bot-margin >:nth-last-child(2){margin-bottom:0 !important}.com_bigwhiteduck_stacks_markdownpro_stack .md-clearfix::before,.com_bigwhiteduck_stacks_markdownpro_stack .md-clearfix::after{content:" ";display:table}.com_bigwhiteduck_stacks_markdownpro_stack .md-clearfix::after{clear:both}.com_bigwhiteduck_stacks_markdownpro_stack .mdp-cntrls{display:none !important}

/* Ghost Button 1.5.0 */
#stacks_in_9103 {
  display: block;
  position: relative;
  text-align: center;
}
.stacks_in_9103 {
   display: block !important; 
   float: left !important; 
  
  position: relative !important;
  
  width: 300px !important;
  
  padding: 8px !important;
  color: rgba(0, 0, 0, 1.00) !important;
  background-color: transparent !important;
  border: 1px solid rgba(0, 0, 0, 1.00) !important;
  border-radius: 0px !important;
  text-align: center !important;
  outline: none !important;
  text-decoration: none !important;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, border-color 0.2s ease-out;
}
.stacks_in_9103:visited {
  color: rgba(0, 0, 0, 1.00) !important;
}
.stacks_in_9103:hover, .stacks_in_9103:active {
  background-color: rgba(0, 0, 0, 1.00) !important;
  color: rgba(255, 255, 255, 1.00) !important;
  transition: background-color 0.2s ease-in, color 0.2s ease-in, border-color 0.2s ease-in;
}/* Start Responsive Shim stack CSS code */.stacks_in_8716_104shim{	padding-top: 2%;}/* End Responsive Shim stack CSS code */
#stacks_in_8716_105 {
	background-color: rgba(250, 199, 123, 1.00);
	padding:  5px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8576shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code */


#stacks_in_8585 .poster-light-list img {
    max-width: 100%;
    height: auto;
}

#stacks_in_8585 .poster-light-item {
    transition: background-color 500ms;
    
    
    
    
    
}

#stacks_in_8585 .poster-light-item:hover {
    
}


#stacks_in_8585 .poster-light-list {
    display: flex;
    vertical-align: top;
    flex-flow: row wrap;
    justify-content: space-around;
    margin: auto;
}

@media(max-width:767px){
    #stacks_in_8585 .poster-light-item {
        
        width: 100%;
        
    }
}
@media(min-width:768px){
    #stacks_in_8585 .poster-light-item {
        
        width: calc(90% / 2);
        
    }
}
@media(min-width:992px){
    #stacks_in_8585 .poster-light-item {
        
        width: calc(90% / 2);
        
    }
}
@media(min-width:1200px){
    #stacks_in_8585 .poster-light-item {
        
        width: calc(90% / 2);
        
    }
}




.text-decoration-none {
    text-decoration: none !important;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8623shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code */
#stacks_out_8943 {
	width: 250px;
	margin-left:0;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8961shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code */
#stacks_out_8719 {
	margin-left:0;
}

/*
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.0.0
 * Simple Divider is a Free Stack for RapidWeaver allowing easy drag-and-drop of a simple divider with minimal customization options.
 */

#simpleDivider_stacks_in_8968 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_8968 .theDivider1, #simpleDivider_stacks_in_8968 .theDivider2 {width: inherit}
#simpleDivider_stacks_in_8968 .theDivider1 {
	border-top: solid 1px #CCCCCC;
	border-bottom: solid 1px #FFFFFF;
}
#simpleDivider_stacks_in_8968 .theDivider2 {
	height: 4px;
	background-color: #E0E0E0;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8643shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code */
#stacks_out_8945 {
	width: 250px;
	margin-left:0;
}
/* Start Responsive Shim stack CSS code */.stacks_in_8962shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code */
#stacks_out_8647 {
	margin-left:0;
}
/* Start Responsive Shim stack CSS code */.stacks_in_9061shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9242shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code */#usefulStackWrapperstacks_in_9243 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_9243 {
	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_9243 {
		display: none;
	}
}













#stacks_in_9112 {
	font-weight: bold;
}
.faq-stacks_in_9111.accordion .a-container .a-btn{padding:15px 42px 15px 10px;color:rgba(133, 14, 30, 1.00) ;background-color:rgba(255, 255, 255, 1.00) ;  font-weight: bold; text-transform: none;}.faq-stacks_in_9111.accordion .a-container .a-btn span:after{background-color:rgba(133, 14, 30, 1.00) }.faq-stacks_in_9111.accordion .a-container .a-btn span:before{background-color:rgba(133, 14, 30, 1.00) }.faq-stacks_in_9111.accordion .a-container.active .a-btn span:after{background-color:rgba(34, 34, 34, 1.00) }.faq-stacks_in_9111.accordion .a-container.active .a-btn span:before{background-color:rgba(34, 34, 34, 1.00) }.faq-stacks_in_9111.accordion .a-container.active .a-btn{color:rgba(34, 34, 34, 1.00) ;background-color:rgba(255, 255, 255, 1.00) }.faq-stacks_in_9111.accordion .a-container .a-panel{padding:0 10px}.faq-stacks_in_9111.accordion .a-container.active .a-panel{padding:1px 10px 10px 10px}.faq-stacks_in_9111 .a-container{border-top:1px solid rgba(205, 207, 207, 1.00);}.faq-stacks_in_9111 .a-container:last-child{border-bottom:1px solid rgba(205, 207, 207, 1.00)}button.a-btn{text-transform: none;border-radius:unset;border:unset;padding:0}.faq-stacks_in_9111 .a-container .a-btn>*{pointer-events:none}.faq-stacks_in_9111 .a-container .a-btn,.faq-stacks_in_9111 .a-container .a-btn>*{font-size:16px}@media (min-width:600px){.faq-stacks_in_9111 .a-container .a-btn,.faq-stacks_in_9111 .a-container .a-btn>*{font-size:16px}} .faq-stacks_in_9111 .a-container .a-btn>*{margin-bottom:0!important;font-weight: bold;!important;text-transform: none;!important}/* Start Responsive Shim stack CSS code */.stacks_in_9114shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9120shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9128shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code *//* Start Responsive Shim stack CSS code */.stacks_in_9136shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code */#stacks_in_9143 ul,#stacks_in_9143 ol,#stacks_in_9143 dl{list-style-position:inside}#stacks_in_9143 .float-top{overflow:hidden}#stacks_in_9143 .float-container{float:right;width:33%;margin:0 10px 10px 0;z-index:100}#stacks_in_9143 .float-container.float-right{margin:0 0 10px 10px}@media screen and (max-width:500px){#stacks_in_9143 .float-container.responsive{float:none;width:100%;margin:0 0 10px 0}}#stacks_in_9143 .float-text.justify{text-align:juAstify}#stacks_in_9143 .float-text.hyphenate{hyphens:auto}




























@media print {
	#spacerStackstacks_in_9147 {
		display: none !important;
	}
}
#stacks_in_9157 ul,#stacks_in_9157 ol,#stacks_in_9157 dl{list-style-position:inside}#stacks_in_9157 .float-top{overflow:hidden}#stacks_in_9157 .float-container{float:right;width:33%;margin:0 10px 10px 0;z-index:100}#stacks_in_9157 .float-container.float-right{margin:0 0 10px 10px}@media screen and (max-width:500px){#stacks_in_9157 .float-container.responsive{float:none;width:100%;margin:0 0 10px 0}}#stacks_in_9157 .float-text.justify{text-align:juAstify}#stacks_in_9157 .float-text.hyphenate{hyphens:auto}
.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_9161 {
	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_9161 #topBoxTriggerstacks_in_9161 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_9161 #topBoxTriggerContentstacks_in_9161 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_9161 #topBoxTriggerContentstacks_in_9161 img {
	display: block;
	margin: 0 auto;
}

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

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

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

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

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

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

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

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

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



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


#topBoxContentWrapperstacks_in_9161 {
	display: none;
}







/* Start Responsive Shim stack CSS code */.stacks_in_9171shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code */#stacks_in_9176 ul,#stacks_in_9176 ol,#stacks_in_9176 dl{list-style-position:inside}#stacks_in_9176 .float-top{overflow:hidden}#stacks_in_9176 .float-container{float:right;width:33%;margin:0 10px 10px 0;z-index:100}#stacks_in_9176 .float-container.float-right{margin:0 0 10px 10px}@media screen and (max-width:500px){#stacks_in_9176 .float-container.responsive{float:none;width:100%;margin:0 0 10px 0}}#stacks_in_9176 .float-text.justify{text-align:juAstify}#stacks_in_9176 .float-text.hyphenate{hyphens:auto}




























@media print {
	#spacerStackstacks_in_9182 {
		display: none !important;
	}
}
.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_9183 {
	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_9183 #topBoxTriggerstacks_in_9183 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_9183 #topBoxTriggerContentstacks_in_9183 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_9183 #topBoxTriggerContentstacks_in_9183 img {
	display: block;
	margin: 0 auto;
}

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

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

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

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

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

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

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

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

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



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


#topBoxContentWrapperstacks_in_9183 {
	display: none;
}








#stacks_in_9181 {
	font-weight: bold;
}
#stacks_in_9231 figure{text-align:center}#stacks_in_9231 .mdph{display:none}#stacks_in_9231 .mdp.book-set{widows:5;orphans:5}#stacks_in_9231 .mdp.book-set p:not(:first-of-type){text-indent:1.40rem}#stacks_in_9231 .mdp.book-set p:not(:last-of-type){margin-bottom:1.25rem !important}#stacks_in_9231 .mdp.book-set.indent-all p:first-of-type{text-indent:1.40rem}#stacks_in_9231 .mdp.book-set.indent-all blockquote > p:first-of-type{text-indent:0}#stacks_in_9231 .mdp.book-set:not(.indent-all) h1 + p,#stacks_in_9231 .mdp.book-set:not(.indent-all) h2 + p,#stacks_in_9231 .mdp.book-set:not(.indent-all) h3 + p,#stacks_in_9231 .mdp.book-set:not(.indent-all) h4 + p,#stacks_in_9231 .mdp.book-set:not(.indent-all) h5 + p,#stacks_in_9231 .mdp.book-set:not(.indent-all) h6 + p{text-indent:0 !important}#stacks_in_9231 .mdp.p-lead p:first-of-type{font-size:130%}@media only screen and (min-width:0px){#stacks_in_9231 p{}}
#stacks_in_9232 figure{text-align:center}#stacks_in_9232 .mdph{display:none}#stacks_in_9232 .mdp.book-set{widows:5;orphans:5}#stacks_in_9232 .mdp.book-set p:not(:first-of-type){text-indent:1.40rem}#stacks_in_9232 .mdp.book-set p:not(:last-of-type){margin-bottom:1.25rem !important}#stacks_in_9232 .mdp.book-set.indent-all p:first-of-type{text-indent:1.40rem}#stacks_in_9232 .mdp.book-set.indent-all blockquote > p:first-of-type{text-indent:0}#stacks_in_9232 .mdp.book-set:not(.indent-all) h1 + p,#stacks_in_9232 .mdp.book-set:not(.indent-all) h2 + p,#stacks_in_9232 .mdp.book-set:not(.indent-all) h3 + p,#stacks_in_9232 .mdp.book-set:not(.indent-all) h4 + p,#stacks_in_9232 .mdp.book-set:not(.indent-all) h5 + p,#stacks_in_9232 .mdp.book-set:not(.indent-all) h6 + p{text-indent:0 !important}#stacks_in_9232 .mdp.p-lead p:first-of-type{font-size:130%}@media only screen and (min-width:0px){#stacks_in_9232 p{}}
#stacks_in_9226 figure{text-align:center}#stacks_in_9226 .mdph{display:none}#stacks_in_9226 .mdp.book-set{widows:5;orphans:5}#stacks_in_9226 .mdp.book-set p:not(:first-of-type){text-indent:1.40rem}#stacks_in_9226 .mdp.book-set p:not(:last-of-type){margin-bottom:1.25rem !important}#stacks_in_9226 .mdp.book-set.indent-all p:first-of-type{text-indent:1.40rem}#stacks_in_9226 .mdp.book-set.indent-all blockquote > p:first-of-type{text-indent:0}#stacks_in_9226 .mdp.book-set:not(.indent-all) h1 + p,#stacks_in_9226 .mdp.book-set:not(.indent-all) h2 + p,#stacks_in_9226 .mdp.book-set:not(.indent-all) h3 + p,#stacks_in_9226 .mdp.book-set:not(.indent-all) h4 + p,#stacks_in_9226 .mdp.book-set:not(.indent-all) h5 + p,#stacks_in_9226 .mdp.book-set:not(.indent-all) h6 + p{text-indent:0 !important}#stacks_in_9226 .mdp.p-lead p:first-of-type{font-size:130%}@media only screen and (min-width:0px){#stacks_in_9226 p{}}
#block_stacks_in_7780 {
    
    
    
    
    padding: 1rem;
}/* Start Responsive Shim stack CSS code */.stacks_in_8266_30shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code */#stacks_in_8266_42_button {
	display:block;
	position: relative;
	text-align: center;
}


#stacks_in_8266_42 a:link, #stacks_in_8266_42 a:visited {
	 display:block; 
	 float:left; 
	
	position: relative;
	text-decoration:none;
}
#stacks_in_8266_42 a:hover, #stacks_in_8266_42 a:active {
	color:#FFFFFF;
}







#stacks_in_8266_42 a:link, #stacks_in_8266_42 a:visited {
	background-color:#00A0FF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00A0FF), to(#0060BF));
	border:1px solid #0060BF;
	padding:3px 20px;
	border-radius:30px;
	color:#FFFFFF;
	box-shadow:rgba(0, 0, 0, 0.5) 0px 1px 2px;
	margin:5px;
	font-weight:bold;
}
#stacks_in_8266_42 a:hover {
	background-color:#00ACFF;
	background: -webkit-gradient(linear, left top, left bottom, from(#00ACFF), to(#0053A5));
	box-shadow:rgba(0, 0, 0, 0.25) 0px 2px 4px;
}
#stacks_in_8266_42 a:active {
	background-color:#00A0FF;
	box-shadow:rgba(0, 0, 0, 0.75) 0px 0px 4px inset;
}



/* Start Responsive Shim stack CSS code */.stacks_in_8266_52shim{	padding-top: 3%;}/* End Responsive Shim stack CSS code */