/* 
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);
}/* %stackName% v1.0.0 */



#appender_content_stacks_in_9851 {
  display: none;
}


/* If modifying any of this code, update the template.html file too */

/* CSS code for the <i class="fa fa-shopping-cart" aria-hidden="true"></i>   Cart button */

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

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






/* Solid colour fill */
.ButtonMakerStackstacks_in_9852_167 {
	background: #BB7707;
}

.ButtonMakerStackstacks_in_9852_167:hover {
	background: #D38604;
}




















.ButtonMakerStackstacks_in_9852_167 .Button-Gloss {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 50%;
	width: 100%;
	background: #000000;
	opacity: 0.10;
	transition: all 100ms ease-in-out;
}

/* Adjust the bevel opavity on button hover */
.ButtonMakerStackstacks_in_9852_167:hover .Button-Gloss {
	opacity: 0.0;
}


.ButtonMakerStackstacks_in_9852_167 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_9852_167 a.Button-Link:active {
	
	outline: none;
}

.ButtonMakerStackstacks_in_9852_167 .Button-Label {
	color: #FFFFFF;
	font-size: 18px;
	display: block;
	z-index: 15;
	position: relative;
	transition: all 100ms ease-in-out;
	font-family: Georgia, "Times New Roman", Times, serif;
	text-align: center;
	padding-left: 0px;
	padding-right: 0px;
}

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






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

/* End of CSS code for the <i class="fa fa-shopping-cart" aria-hidden="true"></i>   Cart button */











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

#stacks_out_9852_167 {
	margin-left:0;
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	
	background: rgba(0, 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);
}



/* 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, 0.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_9852_95 {
	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_9852_95 #topBoxTriggerstacks_in_9852_95 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_9852_95 #topBoxTriggerContentstacks_in_9852_95 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_9852_95 #topBoxTriggerContentstacks_in_9852_95 img {
	display: block;
	margin: 0 auto;
}

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

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

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

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

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

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

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

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

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



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


#topBoxContentWrapperstacks_in_9852_95 {
	display: none;
}







/* If modifying any of this code, update the template.html file too */

/* CSS code for the Donate button */

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

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






/* Solid colour fill */
.ButtonMakerStackstacks_in_9852_168 {
	background: #BB7707;
}

.ButtonMakerStackstacks_in_9852_168:hover {
	background: #D38604;
}




















.ButtonMakerStackstacks_in_9852_168 .Button-Gloss {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 50%;
	width: 100%;
	background: #000000;
	opacity: 0.10;
	transition: all 100ms ease-in-out;
}

/* Adjust the bevel opavity on button hover */
.ButtonMakerStackstacks_in_9852_168:hover .Button-Gloss {
	opacity: 0.0;
}


.ButtonMakerStackstacks_in_9852_168 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_9852_168 a.Button-Link:active {
	
	outline: none;
}

.ButtonMakerStackstacks_in_9852_168 .Button-Label {
	color: #FFFFFF;
	font-size: 18px;
	display: block;
	z-index: 15;
	position: relative;
	transition: all 100ms ease-in-out;
	font-family: Georgia, "Times New Roman", Times, serif;
	text-align: center;
	padding-left: 0px;
	padding-right: 0px;
}

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






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

/* End of CSS code for the Donate button */











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

#stacks_out_9852_168 {
	margin-left:0;
}
/* Start Responsive Shim stack CSS code */.stacks_in_9852_98shim{	padding-top: 4%;}/* End Responsive Shim stack CSS code *//* Start dooMax stack CSS code */#stacks_in_9852_99, .stacks_in_9852_99MaxWidthContainer{	-webkit-box-sizing: border-box;	-moz-box-sizing: border-box;	box-sizing: border-box;}     .stacks_in_9852_99MaxWidthContainer{	    max-width: 550px;	}    .stacks_in_9852_99MaxWidthContainer{		margin: 0 auto 0 auto;	}@media only screen and (max-width: 1024px) {	 	    .stacks_in_9852_99MaxWidthContainer{		    max-width: 500px;		}								    .stacks_in_9852_99MaxWidthContainer{			margin: 0 0 0 auto;		}				}@media only screen and (max-width: 480px) {	 	    .stacks_in_9852_99MaxWidthContainer{		    max-width: 500px;		}										    .stacks_in_9852_99MaxWidthContainer{			margin: 0 auto 0 auto;		}		}/* End dooMax stack CSS code */
#stacks_in_9852_100 {
	background-color: rgba(230, 230, 230, 1.00);
	-moz-border-radius: 20px 20px 20px 20px;
	-webkit-border-radius: 20px 20px 20px 20px;
	border-radius: 20px 20px 20px 20px;
	padding: 30px 20px 20px 20px;
}
/* Start dooMax stack CSS code */#stacks_in_9852_104, .stacks_in_9852_104MaxWidthContainer{	-webkit-box-sizing: border-box;	-moz-box-sizing: border-box;	box-sizing: border-box;}     .stacks_in_9852_104MaxWidthContainer{	    max-width: 500px;	}    .stacks_in_9852_104MaxWidthContainer{		margin: 0 auto 0 auto;	}@media only screen and (max-width: 1024px) {	 	    .stacks_in_9852_104MaxWidthContainer{		    max-width: 500px;		}										    .stacks_in_9852_104MaxWidthContainer{			margin: 0 auto 0 auto;		}		}@media only screen and (max-width: 200px) {	 	    .stacks_in_9852_104MaxWidthContainer{		    max-width: 500px;		}										    .stacks_in_9852_104MaxWidthContainer{			margin: 0 auto 0 auto;		}		}/* End dooMax stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_9852_105x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		color: #4F813A !important;		}.stacks_in_9852_105x a,.stacks_in_9852_105x a:visited,.stacks_in_9852_105x a:active{	color: #4F813A !important;}.stacks_in_9852_105x a:hover{	color: #689A53 !important;}@media (max-width:768px) {	.stacks_in_9852_105x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_9852_105x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_9852_105 {
	margin: 0px 0px 15px 0px;
}
#dontateStackWrapperstacks_in_9852_107 *,
#dontateStackWrapperstacks_in_9852_107:before,
#dontateStackWrapperstacks_in_9852_107:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#donateStackstacks_in_9852_107 {
    padding: 0;
    margin: 0;
    border none:
    position: relative;
    overflow: hidden;
}

#donateStackstacks_in_9852_107 label {
    margin: 0;
    padding: 0;
    font-size: 16px;
    display: block;
    color: rgba(51, 51, 51, 1.00);
}

::-webkit-input-placeholder { /* Chrome */
    color: rgba(128, 128, 128, 1.00);
}

:-ms-input-placeholder { /* IE 10+ */
    color: rgba(128, 128, 128, 1.00);
}

::-moz-placeholder { /* Firefox 19+ */
    color: rgba(128, 128, 128, 1.00);
    opacity: 1;
}

:-moz-placeholder { /* Firefox 4 - 18 */
    color: rgba(128, 128, 128, 1.00);
    opacity: 1;
}

#donateStackstacks_in_9852_107 input[type='text'],
#donateStackstacks_in_9852_107 input[type='number'],
#donateStackstacks_in_9852_107 input[type='email']{
    width: 100%;
    height: auto;
    padding: 10px;
    margin: 0;
    border-radius: 5px;
    box-shadow: none;
    border: 1px solid rgba(204, 204, 204, 1.00);
    font-size: 16px;
    background: rgba(255, 255, 255, 1.00);
    transition: all 300ms ease-in-out;
}

.dontateStackVerticalSpacer {
    display: block;
    position: relative;
    height: 20px;
}

#donateStackstacks_in_9852_107 input:active,
#donateStackstacks_in_9852_107 input:focus {
    outline: none;
    box-shadow: none;
    border: 1px solid rgba(128, 128, 128, 1.00);
    background: rgba(255, 255, 255, 0.00);
    color: rgba(0, 0, 0, 1.00);
}

@media screen and (min-width: 768px) {
    #donateStackAddressBeforestacks_in_9852_107 {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 40px;
        -moz-column-gap: 40px;
        column-gap: 40px;
    }
    
    #donateStackAddressBeforestacks_in_9852_107 div.formElementWrapper {
        -webkit-column-break-inside: avoid;
        page-break-inside: avoid;
        break-inside: avoid;
    }
}
    
#donateStackSubmitAreastacks_in_9852_107 {
    display: flex;
}

#donateStackSubmitAreastacks_in_9852_107 img,
#donateStackSubmitAreastacks_in_9852_107 input[type='image'] {
    left: -9999px;
    top: 0;
    position: absolute;
}

#donateStackSubmitAreastacks_in_9852_107 input[type='number'] {
    border-radius: 5px 0px 0px 5px;
    border-right: none;
    margin-bottom: 0px;
    color: rgba(0, 0, 0, 1.00);
}

#donateStackSubmitAreastacks_in_9852_107 input[type='submit'] {
    background: rgba(195, 127, 37, 1.00);
    border-radius: 0px 5px 5px 0px;
    padding: 10px;
    margin: 0;
    border: none;
    color: rgba(255, 255, 255, 1.00);
    width: auto;
    font-size: 16px;
    transition: all 300ms ease-in-out;
    -webkit-appearance: none;
}

#donateStackSubmitAreastacks_in_9852_107 input[type='submit']:hover,
#donateStackSubmitAreastacks_in_9852_107 input[type='submit']:focus,
#donateStackSubmitAreastacks_in_9852_107 input[type='submit']:active {
    background: rgba(68, 111, 50, 1.00);
    color: rgba(255, 255, 255, 1.00);
}




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

#stacks_in_9852_109 {
	margin: 0px 0px 0px 20px;
}
/* Start Responsive Shim stack CSS code */.stacks_in_9852_112_1shim{	padding-top: 2%;}/* End Responsive Shim stack CSS code */
#stacks_in_9852_116 {
	margin: 0px 0px 10px 0px;
}

#stacks_in_9834 {
	padding: 0px 0px 0px 2px;
}

#stacks_in_9850_3 {
	padding:  5px;
}

#stacks_out_9850_3 {
	width: 99%;
}

#stacks_in_9850_5 .stacks_left {
	float:left;
	width:49%;
}

#stacks_in_9850_5 .stacks_right {
	float:right;
	width:49%;
}
#stacks_in_9850_5 {
	margin: 0px 0px 15px 40px;
}

#stacks_in_9850_6 {
	padding:  5px;
}

#stacks_out_9850_6 {
	width: 99%;
}

#stacks_in_9850_7 {
	font-size: 90%;
}

#stacks_in_9850_9 {
	padding:  5px;
}

#stacks_out_9850_9 {
	width: 99%;
}

#stacks_in_9850_10 {
	font-size: 90%;
}

#stacks_in_9850_12 {
	padding:  5px;
}

#stacks_out_9850_12 {
	width: 99%;
}

#stacks_in_9850_13 {
	font-size: 80%;
}
