/* 
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);
}@media all {
	
	
	
	
	
	
	
	
	
	
	#nav,
	#fontStackstacks_in_2_14 {
		font-family: 'Source Sans Pro', sans-serif;
		font-weight: 400;
		font-style: normal;
		font-size: 100%;
		line-height: 100%;
		letter-spacing: 0px;
		direction: ltr;
	}

	#fontStackstacks_in_2_14 {
		color: rgba(0, 0, 0, 1.00);
	}
}
@media all {
	
	
	
	
	h1,
	
	
	
	
	
	#uniqueElement, .classElement,
	#fontStackstacks_in_2_15 {
		font-family: 'Source Sans Pro', sans-serif;
		font-weight: 700;
		font-style: normal;
		font-size: 200%;
		line-height: 120%;
		letter-spacing: 0px;
		direction: ltr;
	}

	#fontStackstacks_in_2_15 {
		color: rgba(0, 0, 0, 1.00);
	}
}
@media all {
	
	
	
	
	
	h2,
	
	
	
	
	#uniqueElement, .classElement,
	#fontStackstacks_in_2_16 {
		font-family: 'Source Sans Pro', sans-serif;
		font-weight: 700;
		font-style: normal;
		font-size: 150%;
		line-height: 120%;
		letter-spacing: 0px;
		direction: ltr;
	}

	#fontStackstacks_in_2_16 {
		color: rgba(0, 0, 0, 1.00);
	}
}
@media all {
	
	
	
	
	
	
	h3,
	
	
	
	#uniqueElement, .classElement,
	#fontStackstacks_in_2_17 {
		font-family: 'Source Sans Pro', sans-serif;
		font-weight: 700;
		font-style: normal;
		font-size: 120%;
		line-height: 120%;
		letter-spacing: 0px;
		direction: ltr;
	}

	#fontStackstacks_in_2_17 {
		color: rgba(0, 0, 0, 1.00);
	}
}
@media all {
	
	
	
	
	
	
	
	h4,
	
	
	#uniqueElement, .classElement,
	#fontStackstacks_in_2_24 {
		font-family: 'Source Sans Pro', sans-serif;
		font-weight: 700;
		font-style: normal;
		font-size: 120%;
		line-height: 120%;
		letter-spacing: 0px;
		direction: ltr;
	}

	#fontStackstacks_in_2_24 {
		color: rgba(0, 0, 0, 1.00);
	}
}
@media all {
	body,
	
	
	
	
	
	
	
	
	
	#uniqueElement, .classElement,
	#fontStackstacks_in_2_18 {
		font-family: 'Source Sans Pro', sans-serif;
		font-weight: 400;
		font-style: normal;
		font-size: 105%;
		line-height: 150%;
		letter-spacing: 0px;
		direction: ltr;
	}

	#fontStackstacks_in_2_18 {
		color: rgba(127, 127, 127, 1.00);
	}
}

#stacks_in_7 {
	padding: 15px 0px 0px 0px;
}

#stacks_in_8 {
	display:inline-block; width:100%; line-height: 1.100000em;
	letter-spacing: -1px;
	font-size: 300%;
	font-weight: bolder;
}
#stacks_in_491>.s3_row {
	margin: 0 -10px;
}

#stacks_in_491>.s3_row>.s3_column_left {
	width: 70.00%;
}

#stacks_in_491>.s3_row>.s3_column_right {
	width: 30.000000%;
}




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










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



}



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


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


}





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

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

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




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










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



}



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


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


}






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

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

#stacks_in_506 {
	margin: 10px 20px 0px 0px;
}

#stacks_in_599 {
	margin: 20px 0px 0px 0px;
}
/* @group Basic Settings */

#listerWrapperstacks_in_592 {
	visibility: hidden;
}

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

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

#listerWrapperstacks_in_592 li ul {
	padding-top: 2px;
}

/* @end */

/* @group Style Overrides */

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

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

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

#listerWrapperstacks_in_592 li:after {
	clear: both;
}

#listerWrapperstacks_in_592 .bullet-point {
	display: table-cell;
	font-size: 24px;
	color: rgba(251, 2, 7, 1.00);
	float: left;
	margin-top: 3px;
	margin-right: 10px;
}

#listerWrapperstacks_in_592 .bullet-point [class^="fa fa-"] {
	color: rgba(251, 2, 7, 1.00);
}

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

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/* @end */

/*  *//* @group Basic Settings */

#listerWrapperstacks_in_597 {
	visibility: hidden;
}

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

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

#listerWrapperstacks_in_597 li ul {
	padding-top: 2px;
}

/* @end */

/* @group Style Overrides */

/*  */

/* @end */

/* @group Bullet Point Styles */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

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

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

#listerWrapperstacks_in_597 li:after {
	clear: both;
}

#listerWrapperstacks_in_597 .bullet-point {
	display: table-cell;
	font-size: 24px;
	color: rgba(17, 128, 64, 1.00);
	float: left;
	margin-top: 3px;
	margin-right: 10px;
}

#listerWrapperstacks_in_597 .bullet-point [class^="fa fa-"] {
	color: rgba(17, 128, 64, 1.00);
}

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

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

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

/* @end */

/*  */.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);
}















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


#topBoxTriggerRegionstacks_in_496 #topBoxTriggerContentstacks_in_496 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_496 #topBoxTriggerContentstacks_in_496 img {
	display: block;
	margin: 0 auto;
}

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

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

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

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

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

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

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

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

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



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


#topBoxContentWrapperstacks_in_496 {
	display: none;
}







#shadyStackstacks_in_503 {
	-webkit-box-shadow:  0px 0px 8px 2px rgba(153, 153, 153, 1.00);
	box-shadow:  0px 0px 8px 2px rgba(153, 153, 153, 1.00);
	border-radius: 0px;
}




#shadyStackstacks_in_503 {
	margin: 15px;
}


@media print {
	#shadyStackstacks_in_503 {
		margin: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
		border-radius: 0px;
	}
}/* @group Generic Styles */

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

#ruleStackstacks_in_505 {
	position: relative;
	overflow: hidden;
	margin: 3.00% 0;
	width: %;
}

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

/*  */

/*  */

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

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

/* @end */

/* @end */

/*  */

/*  */
#ruleStackstacks_in_505 {
	text-align: center;
}

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

#ruleStackstacks_in_505:before {
	left: -50%;
	margin-left: -20px;
}

#ruleStackstacks_in_505:after {
	left: 50%;
	margin-left: 20px;
}

#ruleStackstacks_in_505 a {
	left: 50%;
	margin-left: -20px;
}
/*  */

/*  */

/*  */
/*  */
#stacks_in_47 {
	margin: 0px 0px 20px 0px;
}
/* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_9 *,
#adaptiveGridstacks_in_9 *:before,
#adaptiveGridstacks_in_9 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_9 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_9 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_9:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_9 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_9 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_9 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_9 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_9 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_9 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_9 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_9 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_9 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_9 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_9 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_9 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_9 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_9 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_9 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_9 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_9 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_9 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_9 .column1 {
		width: 50.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_9 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_9 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_9 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_9 .column2 {
		width: 50.00%;
	}
}






















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_9 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_9 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_9 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_9 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_9 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_9 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_9 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_9 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_9 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_9 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_9 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_9 .column1,
	#adaptiveGridstacks_in_9 .column2,
	#adaptiveGridstacks_in_9 .column3,
	#adaptiveGridstacks_in_9 .column4,
	#adaptiveGridstacks_in_9 .column5,
	#adaptiveGridstacks_in_9 .column6,
	#adaptiveGridstacks_in_9 .column7,
	#adaptiveGridstacks_in_9 .column8,
	#adaptiveGridstacks_in_9 .column9,
	#adaptiveGridstacks_in_9 .column10,
	#adaptiveGridstacks_in_9 .column11,
	#adaptiveGridstacks_in_9 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_9 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */#stacks_in_520>.s3_row {
	margin: 0 -10px;
}

#stacks_in_520>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_520>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_522 {
	border: solid rgba(0, 0, 0, 1.00);
	border-width:  8px;
}
.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);
}















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


#topBoxTriggerRegionstacks_in_828 #topBoxTriggerContentstacks_in_828 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_828 #topBoxTriggerContentstacks_in_828 img {
	display: block;
	margin: 0 auto;
}

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

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

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

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

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

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

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

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

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



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


#topBoxContentWrapperstacks_in_828 {
	display: none;
}







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

#stacks_in_527>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_527>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_529 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
/* @group Generic Styles */

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

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

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

/*  */

/*  */

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

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

/* @end */

/* @end */

/*  */

/*  */

/*  */

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

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

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

/*  */
/*  *//* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_55 *,
#adaptiveGridstacks_in_55 *:before,
#adaptiveGridstacks_in_55 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_55 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_55 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_55:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_55 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_55 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_55 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_55 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_55 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_55 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_55 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_55 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_55 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_55 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_55 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_55 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_55 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_55 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_55 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_55 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_55 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_55 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_55 .column1 {
		width: 50.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_55 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_55 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_55 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_55 .column2 {
		width: 50.00%;
	}
}






















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_55 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_55 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_55 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_55 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_55 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_55 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_55 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_55 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_55 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_55 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_55 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_55 .column1,
	#adaptiveGridstacks_in_55 .column2,
	#adaptiveGridstacks_in_55 .column3,
	#adaptiveGridstacks_in_55 .column4,
	#adaptiveGridstacks_in_55 .column5,
	#adaptiveGridstacks_in_55 .column6,
	#adaptiveGridstacks_in_55 .column7,
	#adaptiveGridstacks_in_55 .column8,
	#adaptiveGridstacks_in_55 .column9,
	#adaptiveGridstacks_in_55 .column10,
	#adaptiveGridstacks_in_55 .column11,
	#adaptiveGridstacks_in_55 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_55 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */#stacks_in_534>.s3_row {
	margin: 0 -10px;
}

#stacks_in_534>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_534>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_536 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
#stacks_in_541>.s3_row {
	margin: 0 -10px;
}

#stacks_in_541>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_541>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_543 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
/* @group Generic Styles */

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

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

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

/*  */

/*  */

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

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

/* @end */

/* @end */

/*  */

/*  */

/*  */

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

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

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

/*  */
/*  *//* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_74 *,
#adaptiveGridstacks_in_74 *:before,
#adaptiveGridstacks_in_74 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_74 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_74 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_74:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_74 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_74 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_74 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_74 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_74 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_74 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_74 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_74 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_74 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_74 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_74 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_74 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_74 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_74 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_74 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_74 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_74 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_74 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_74 .column1 {
		width: 50.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_74 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_74 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_74 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_74 .column2 {
		width: 50.00%;
	}
}






















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_74 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_74 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_74 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_74 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_74 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_74 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_74 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_74 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_74 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_74 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_74 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_74 .column1,
	#adaptiveGridstacks_in_74 .column2,
	#adaptiveGridstacks_in_74 .column3,
	#adaptiveGridstacks_in_74 .column4,
	#adaptiveGridstacks_in_74 .column5,
	#adaptiveGridstacks_in_74 .column6,
	#adaptiveGridstacks_in_74 .column7,
	#adaptiveGridstacks_in_74 .column8,
	#adaptiveGridstacks_in_74 .column9,
	#adaptiveGridstacks_in_74 .column10,
	#adaptiveGridstacks_in_74 .column11,
	#adaptiveGridstacks_in_74 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_74 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */
#stacks_in_74 {
	margin: 0px 0px 40px 0px;
}
#stacks_in_454>.s3_row {
	margin: 0 -10px;
}

#stacks_in_454>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_454>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_457 {
	border: solid rgba(17, 128, 64, 1.00);
	border-width:  8px;
}
#stacks_in_475>.s3_row {
	margin: 0 -10px;
}

#stacks_in_475>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_475>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_477 {
	border: solid rgba(17, 128, 64, 1.00);
	border-width:  8px;
}
/* @group Generic Styles */

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

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

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

/*  */

/*  */

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

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

/* @end */

/* @end */

/*  */

/*  */

/*  */

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

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

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

/*  */
/*  *//* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_93 *,
#adaptiveGridstacks_in_93 *:before,
#adaptiveGridstacks_in_93 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_93 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_93 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_93:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_93 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_93 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_93 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_93 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_93 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_93 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_93 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_93 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_93 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_93 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_93 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_93 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_93 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_93 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_93 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_93 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_93 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_93 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_93 .column1 {
		width: 50.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_93 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_93 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_93 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_93 .column2 {
		width: 50.00%;
	}
}






















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_93 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_93 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_93 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_93 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_93 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_93 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_93 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_93 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_93 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_93 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_93 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_93 .column1,
	#adaptiveGridstacks_in_93 .column2,
	#adaptiveGridstacks_in_93 .column3,
	#adaptiveGridstacks_in_93 .column4,
	#adaptiveGridstacks_in_93 .column5,
	#adaptiveGridstacks_in_93 .column6,
	#adaptiveGridstacks_in_93 .column7,
	#adaptiveGridstacks_in_93 .column8,
	#adaptiveGridstacks_in_93 .column9,
	#adaptiveGridstacks_in_93 .column10,
	#adaptiveGridstacks_in_93 .column11,
	#adaptiveGridstacks_in_93 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_93 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */#stacks_in_548>.s3_row {
	margin: 0 -10px;
}

#stacks_in_548>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_548>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_550 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
#stacks_in_555>.s3_row {
	margin: 0 -10px;
}

#stacks_in_555>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_555>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_557 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
/* @group Generic Styles */

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

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

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

/*  */

/*  */

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

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

/* @end */

/* @end */

/*  */

/*  */

/*  */

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

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

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

/*  */
/*  *//* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_112 *,
#adaptiveGridstacks_in_112 *:before,
#adaptiveGridstacks_in_112 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_112 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_112 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_112:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_112 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_112 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_112 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_112 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_112 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_112 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_112 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_112 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_112 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_112 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_112 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_112 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_112 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_112 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_112 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_112 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_112 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_112 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_112 .column1 {
		width: 50.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_112 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_112 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_112 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_112 .column2 {
		width: 50.00%;
	}
}






















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_112 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_112 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_112 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_112 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_112 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_112 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_112 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_112 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_112 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_112 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_112 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_112 .column1,
	#adaptiveGridstacks_in_112 .column2,
	#adaptiveGridstacks_in_112 .column3,
	#adaptiveGridstacks_in_112 .column4,
	#adaptiveGridstacks_in_112 .column5,
	#adaptiveGridstacks_in_112 .column6,
	#adaptiveGridstacks_in_112 .column7,
	#adaptiveGridstacks_in_112 .column8,
	#adaptiveGridstacks_in_112 .column9,
	#adaptiveGridstacks_in_112 .column10,
	#adaptiveGridstacks_in_112 .column11,
	#adaptiveGridstacks_in_112 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_112 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */#stacks_in_461>.s3_row {
	margin: 0 -10px;
}

#stacks_in_461>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_461>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_463 {
	border: solid rgba(17, 128, 64, 1.00);
	border-width:  8px;
}
#stacks_in_562>.s3_row {
	margin: 0 -10px;
}

#stacks_in_562>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_562>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_564 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
/* @group Generic Styles */

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

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

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

/*  */

/*  */

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

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

/* @end */

/* @end */

/*  */

/*  */

/*  */

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

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

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

/*  */
/*  *//* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_121 *,
#adaptiveGridstacks_in_121 *:before,
#adaptiveGridstacks_in_121 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_121 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_121 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_121:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_121 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_121 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_121 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_121 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_121 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_121 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_121 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_121 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_121 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_121 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_121 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_121 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_121 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_121 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_121 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_121 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_121 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_121 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_121 .column1 {
		width: 50.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_121 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_121 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_121 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_121 .column2 {
		width: 50.00%;
	}
}






















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_121 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_121 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_121 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_121 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_121 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_121 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_121 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_121 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_121 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_121 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_121 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_121 .column1,
	#adaptiveGridstacks_in_121 .column2,
	#adaptiveGridstacks_in_121 .column3,
	#adaptiveGridstacks_in_121 .column4,
	#adaptiveGridstacks_in_121 .column5,
	#adaptiveGridstacks_in_121 .column6,
	#adaptiveGridstacks_in_121 .column7,
	#adaptiveGridstacks_in_121 .column8,
	#adaptiveGridstacks_in_121 .column9,
	#adaptiveGridstacks_in_121 .column10,
	#adaptiveGridstacks_in_121 .column11,
	#adaptiveGridstacks_in_121 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_121 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */#stacks_in_611>.s3_row {
	margin: 0 -10px;
}

#stacks_in_611>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_611>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_613 {
	border: solid rgba(17, 128, 64, 1.00);
	border-width:  8px;
}
#stacks_in_618>.s3_row {
	margin: 0 -10px;
}

#stacks_in_618>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_618>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_620 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
/* @group Generic Styles */

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

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

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

/*  */

/*  */

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

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

/* @end */

/* @end */

/*  */

/*  */

/*  */

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

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

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

/*  */
/*  *//* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_140 *,
#adaptiveGridstacks_in_140 *:before,
#adaptiveGridstacks_in_140 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_140 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_140 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_140:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_140 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_140 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_140 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_140 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_140 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_140 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_140 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_140 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_140 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_140 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_140 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_140 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_140 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_140 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_140 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_140 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_140 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_140 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_140 .column1 {
		width: 50.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_140 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_140 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_140 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_140 .column2 {
		width: 50.00%;
	}
}






















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_140 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_140 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_140 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_140 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_140 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_140 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_140 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_140 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_140 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_140 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_140 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_140 .column1,
	#adaptiveGridstacks_in_140 .column2,
	#adaptiveGridstacks_in_140 .column3,
	#adaptiveGridstacks_in_140 .column4,
	#adaptiveGridstacks_in_140 .column5,
	#adaptiveGridstacks_in_140 .column6,
	#adaptiveGridstacks_in_140 .column7,
	#adaptiveGridstacks_in_140 .column8,
	#adaptiveGridstacks_in_140 .column9,
	#adaptiveGridstacks_in_140 .column10,
	#adaptiveGridstacks_in_140 .column11,
	#adaptiveGridstacks_in_140 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_140 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */#stacks_in_625>.s3_row {
	margin: 0 -10px;
}

#stacks_in_625>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_625>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_627 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
#stacks_in_632>.s3_row {
	margin: 0 -10px;
}

#stacks_in_632>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_632>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_634 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
/* @group Generic Styles */

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

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

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

/*  */

/*  */

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

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

/* @end */

/* @end */

/*  */

/*  */

/*  */

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

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

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

/*  */
/*  *//* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_159 *,
#adaptiveGridstacks_in_159 *:before,
#adaptiveGridstacks_in_159 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_159 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_159 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_159:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_159 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_159 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_159 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_159 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_159 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_159 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_159 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_159 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_159 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_159 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_159 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_159 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_159 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_159 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_159 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_159 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_159 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_159 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_159 .column1 {
		width: 50.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_159 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_159 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_159 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_159 .column2 {
		width: 50.00%;
	}
}






















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_159 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_159 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_159 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_159 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_159 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_159 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_159 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_159 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_159 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_159 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_159 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_159 .column1,
	#adaptiveGridstacks_in_159 .column2,
	#adaptiveGridstacks_in_159 .column3,
	#adaptiveGridstacks_in_159 .column4,
	#adaptiveGridstacks_in_159 .column5,
	#adaptiveGridstacks_in_159 .column6,
	#adaptiveGridstacks_in_159 .column7,
	#adaptiveGridstacks_in_159 .column8,
	#adaptiveGridstacks_in_159 .column9,
	#adaptiveGridstacks_in_159 .column10,
	#adaptiveGridstacks_in_159 .column11,
	#adaptiveGridstacks_in_159 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_159 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */#stacks_in_639>.s3_row {
	margin: 0 -10px;
}

#stacks_in_639>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_639>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_641 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
#stacks_in_646>.s3_row {
	margin: 0 -10px;
}

#stacks_in_646>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_646>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_648 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
/* @group Generic Styles */

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

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

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

/*  */

/*  */

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

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

/* @end */

/* @end */

/*  */

/*  */

/*  */

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

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

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

/*  */
/*  *//* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_178 *,
#adaptiveGridstacks_in_178 *:before,
#adaptiveGridstacks_in_178 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_178 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_178 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_178:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_178 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_178 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_178 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_178 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_178 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_178 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_178 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_178 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_178 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_178 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_178 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_178 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_178 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_178 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_178 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_178 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_178 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_178 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_178 .column1 {
		width: 50.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_178 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_178 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_178 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_178 .column2 {
		width: 50.00%;
	}
}






















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_178 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_178 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_178 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_178 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_178 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_178 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_178 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_178 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_178 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_178 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_178 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_178 .column1,
	#adaptiveGridstacks_in_178 .column2,
	#adaptiveGridstacks_in_178 .column3,
	#adaptiveGridstacks_in_178 .column4,
	#adaptiveGridstacks_in_178 .column5,
	#adaptiveGridstacks_in_178 .column6,
	#adaptiveGridstacks_in_178 .column7,
	#adaptiveGridstacks_in_178 .column8,
	#adaptiveGridstacks_in_178 .column9,
	#adaptiveGridstacks_in_178 .column10,
	#adaptiveGridstacks_in_178 .column11,
	#adaptiveGridstacks_in_178 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_178 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */#stacks_in_653>.s3_row {
	margin: 0 -10px;
}

#stacks_in_653>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_653>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_655 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
#stacks_in_468>.s3_row {
	margin: 0 -10px;
}

#stacks_in_468>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_468>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_470 {
	border: solid rgba(17, 128, 64, 1.00);
	border-width:  8px;
}
/* @group Generic Styles */

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

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

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

/*  */

/*  */

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

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

/* @end */

/* @end */

/*  */

/*  */

/*  */

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

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

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

/*  */
/*  *//* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_207 *,
#adaptiveGridstacks_in_207 *:before,
#adaptiveGridstacks_in_207 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_207 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_207 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_207:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_207 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_207 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_207 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_207 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_207 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_207 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_207 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_207 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_207 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_207 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_207 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_207 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_207 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_207 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_207 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_207 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_207 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_207 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_207 .column1 {
		width: 50.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_207 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_207 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_207 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_207 .column2 {
		width: 50.00%;
	}
}






















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_207 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_207 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_207 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_207 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_207 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_207 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_207 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_207 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_207 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_207 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_207 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_207 .column1,
	#adaptiveGridstacks_in_207 .column2,
	#adaptiveGridstacks_in_207 .column3,
	#adaptiveGridstacks_in_207 .column4,
	#adaptiveGridstacks_in_207 .column5,
	#adaptiveGridstacks_in_207 .column6,
	#adaptiveGridstacks_in_207 .column7,
	#adaptiveGridstacks_in_207 .column8,
	#adaptiveGridstacks_in_207 .column9,
	#adaptiveGridstacks_in_207 .column10,
	#adaptiveGridstacks_in_207 .column11,
	#adaptiveGridstacks_in_207 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_207 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */#stacks_in_667>.s3_row {
	margin: 0 -10px;
}

#stacks_in_667>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_667>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_669 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
#stacks_in_674>.s3_row {
	margin: 0 -10px;
}

#stacks_in_674>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_674>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_676 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
/* @group Generic Styles */

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

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

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

/*  */

/*  */

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

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

/* @end */

/* @end */

/*  */

/*  */

/*  */

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

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

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

/*  */
/*  *//* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_226 *,
#adaptiveGridstacks_in_226 *:before,
#adaptiveGridstacks_in_226 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_226 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_226 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_226:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_226 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_226 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_226 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_226 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_226 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_226 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_226 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_226 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_226 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_226 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_226 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_226 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_226 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_226 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_226 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_226 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_226 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_226 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_226 .column1 {
		width: 50.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_226 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_226 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_226 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_226 .column2 {
		width: 50.00%;
	}
}






















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_226 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_226 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_226 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_226 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_226 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_226 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_226 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_226 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_226 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_226 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_226 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_226 .column1,
	#adaptiveGridstacks_in_226 .column2,
	#adaptiveGridstacks_in_226 .column3,
	#adaptiveGridstacks_in_226 .column4,
	#adaptiveGridstacks_in_226 .column5,
	#adaptiveGridstacks_in_226 .column6,
	#adaptiveGridstacks_in_226 .column7,
	#adaptiveGridstacks_in_226 .column8,
	#adaptiveGridstacks_in_226 .column9,
	#adaptiveGridstacks_in_226 .column10,
	#adaptiveGridstacks_in_226 .column11,
	#adaptiveGridstacks_in_226 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_226 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */#stacks_in_681>.s3_row {
	margin: 0 -10px;
}

#stacks_in_681>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_681>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_683 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
#stacks_in_604>.s3_row {
	margin: 0 -10px;
}

#stacks_in_604>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_604>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_606 {
	border: solid rgba(17, 128, 64, 1.00);
	border-width:  8px;
}
/* @group Generic Styles */

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

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

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

/*  */

/*  */

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

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

/* @end */

/* @end */

/*  */

/*  */

/*  */

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

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

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

/*  */
/*  *//* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_245 *,
#adaptiveGridstacks_in_245 *:before,
#adaptiveGridstacks_in_245 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_245 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_245 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_245:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_245 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_245 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_245 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_245 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_245 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_245 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_245 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_245 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_245 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_245 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_245 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_245 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_245 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_245 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_245 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_245 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_245 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_245 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_245 .column1 {
		width: 50.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_245 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_245 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_245 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_245 .column2 {
		width: 50.00%;
	}
}






















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_245 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_245 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_245 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_245 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_245 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_245 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_245 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_245 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_245 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_245 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_245 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_245 .column1,
	#adaptiveGridstacks_in_245 .column2,
	#adaptiveGridstacks_in_245 .column3,
	#adaptiveGridstacks_in_245 .column4,
	#adaptiveGridstacks_in_245 .column5,
	#adaptiveGridstacks_in_245 .column6,
	#adaptiveGridstacks_in_245 .column7,
	#adaptiveGridstacks_in_245 .column8,
	#adaptiveGridstacks_in_245 .column9,
	#adaptiveGridstacks_in_245 .column10,
	#adaptiveGridstacks_in_245 .column11,
	#adaptiveGridstacks_in_245 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_245 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */#stacks_in_688>.s3_row {
	margin: 0 -10px;
}

#stacks_in_688>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_688>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_690 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
#stacks_in_695>.s3_row {
	margin: 0 -10px;
}

#stacks_in_695>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_695>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_697 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
/* @group Generic Styles */

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

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

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

/*  */

/*  */

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

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

/* @end */

/* @end */

/*  */

/*  */

/*  */

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

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

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

/*  */
/*  *//* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_264 *,
#adaptiveGridstacks_in_264 *:before,
#adaptiveGridstacks_in_264 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_264 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_264 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_264:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_264 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_264 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_264 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_264 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_264 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_264 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_264 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_264 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_264 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_264 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_264 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_264 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_264 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_264 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_264 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_264 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_264 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_264 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_264 .column1 {
		width: 50.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_264 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_264 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_264 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_264 .column2 {
		width: 50.00%;
	}
}






















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_264 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_264 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_264 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_264 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_264 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_264 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_264 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_264 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_264 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_264 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_264 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_264 .column1,
	#adaptiveGridstacks_in_264 .column2,
	#adaptiveGridstacks_in_264 .column3,
	#adaptiveGridstacks_in_264 .column4,
	#adaptiveGridstacks_in_264 .column5,
	#adaptiveGridstacks_in_264 .column6,
	#adaptiveGridstacks_in_264 .column7,
	#adaptiveGridstacks_in_264 .column8,
	#adaptiveGridstacks_in_264 .column9,
	#adaptiveGridstacks_in_264 .column10,
	#adaptiveGridstacks_in_264 .column11,
	#adaptiveGridstacks_in_264 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_264 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */#stacks_in_702>.s3_row {
	margin: 0 -10px;
}

#stacks_in_702>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_702>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_704 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
#stacks_in_709>.s3_row {
	margin: 0 -10px;
}

#stacks_in_709>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_709>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_711 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
/* @group Generic Styles */

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

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

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

/*  */

/*  */

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

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

/* @end */

/* @end */

/*  */

/*  */

/*  */

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

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

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

/*  */
/*  *//* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_283 *,
#adaptiveGridstacks_in_283 *:before,
#adaptiveGridstacks_in_283 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_283 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_283 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_283:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_283 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_283 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_283 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_283 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_283 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_283 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_283 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_283 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_283 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_283 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_283 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_283 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_283 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_283 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_283 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_283 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_283 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_283 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_283 .column1 {
		width: 50.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_283 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_283 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_283 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_283 .column2 {
		width: 50.00%;
	}
}






















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_283 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_283 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_283 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_283 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_283 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_283 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_283 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_283 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_283 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_283 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_283 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_283 .column1,
	#adaptiveGridstacks_in_283 .column2,
	#adaptiveGridstacks_in_283 .column3,
	#adaptiveGridstacks_in_283 .column4,
	#adaptiveGridstacks_in_283 .column5,
	#adaptiveGridstacks_in_283 .column6,
	#adaptiveGridstacks_in_283 .column7,
	#adaptiveGridstacks_in_283 .column8,
	#adaptiveGridstacks_in_283 .column9,
	#adaptiveGridstacks_in_283 .column10,
	#adaptiveGridstacks_in_283 .column11,
	#adaptiveGridstacks_in_283 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_283 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */#stacks_in_716>.s3_row {
	margin: 0 -10px;
}

#stacks_in_716>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_716>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_718 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
#stacks_in_723>.s3_row {
	margin: 0 -10px;
}

#stacks_in_723>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_723>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_725 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
/* @group Generic Styles */

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

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

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

/*  */

/*  */

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

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

/* @end */

/* @end */

/*  */

/*  */

/*  */

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

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

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

/*  */
/*  *//* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_302 *,
#adaptiveGridstacks_in_302 *:before,
#adaptiveGridstacks_in_302 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_302 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_302 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_302:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_302 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_302 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_302 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_302 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_302 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_302 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_302 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_302 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_302 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_302 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_302 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_302 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_302 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_302 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_302 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_302 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_302 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_302 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_302 .column1 {
		width: 50.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_302 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_302 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_302 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_302 .column2 {
		width: 50.00%;
	}
}






















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_302 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_302 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_302 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_302 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_302 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_302 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_302 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_302 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_302 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_302 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_302 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_302 .column1,
	#adaptiveGridstacks_in_302 .column2,
	#adaptiveGridstacks_in_302 .column3,
	#adaptiveGridstacks_in_302 .column4,
	#adaptiveGridstacks_in_302 .column5,
	#adaptiveGridstacks_in_302 .column6,
	#adaptiveGridstacks_in_302 .column7,
	#adaptiveGridstacks_in_302 .column8,
	#adaptiveGridstacks_in_302 .column9,
	#adaptiveGridstacks_in_302 .column10,
	#adaptiveGridstacks_in_302 .column11,
	#adaptiveGridstacks_in_302 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_302 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */#stacks_in_730>.s3_row {
	margin: 0 -10px;
}

#stacks_in_730>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_730>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_732 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
#stacks_in_737>.s3_row {
	margin: 0 -10px;
}

#stacks_in_737>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_737>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_739 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
/* @group Generic Styles */

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

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

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

/*  */

/*  */

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

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

/* @end */

/* @end */

/*  */

/*  */

/*  */

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

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

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

/*  */
/*  *//* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_321 *,
#adaptiveGridstacks_in_321 *:before,
#adaptiveGridstacks_in_321 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_321 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_321 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_321:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_321 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_321 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_321 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_321 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_321 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_321 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_321 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_321 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_321 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_321 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_321 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_321 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_321 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_321 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_321 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_321 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_321 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_321 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_321 .column1 {
		width: 50.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_321 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_321 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_321 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_321 .column2 {
		width: 50.00%;
	}
}






















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_321 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_321 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_321 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_321 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_321 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_321 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_321 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_321 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_321 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_321 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_321 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_321 .column1,
	#adaptiveGridstacks_in_321 .column2,
	#adaptiveGridstacks_in_321 .column3,
	#adaptiveGridstacks_in_321 .column4,
	#adaptiveGridstacks_in_321 .column5,
	#adaptiveGridstacks_in_321 .column6,
	#adaptiveGridstacks_in_321 .column7,
	#adaptiveGridstacks_in_321 .column8,
	#adaptiveGridstacks_in_321 .column9,
	#adaptiveGridstacks_in_321 .column10,
	#adaptiveGridstacks_in_321 .column11,
	#adaptiveGridstacks_in_321 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_321 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */#stacks_in_576>.s3_row {
	margin: 0 -10px;
}

#stacks_in_576>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_576>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_578 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
#stacks_in_744>.s3_row {
	margin: 0 -10px;
}

#stacks_in_744>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_744>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_746 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
/* @group Generic Styles */

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

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

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

/*  */

/*  */

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

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

/* @end */

/* @end */

/*  */

/*  */

/*  */

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

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

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

/*  */
/*  *//* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_340 *,
#adaptiveGridstacks_in_340 *:before,
#adaptiveGridstacks_in_340 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_340 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_340 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_340:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_340 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_340 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_340 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_340 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_340 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_340 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_340 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_340 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_340 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_340 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_340 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_340 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_340 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_340 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_340 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_340 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_340 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_340 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_340 .column1 {
		width: 50.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_340 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_340 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_340 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_340 .column2 {
		width: 50.00%;
	}
}






















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_340 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_340 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_340 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_340 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_340 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_340 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_340 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_340 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_340 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_340 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_340 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_340 .column1,
	#adaptiveGridstacks_in_340 .column2,
	#adaptiveGridstacks_in_340 .column3,
	#adaptiveGridstacks_in_340 .column4,
	#adaptiveGridstacks_in_340 .column5,
	#adaptiveGridstacks_in_340 .column6,
	#adaptiveGridstacks_in_340 .column7,
	#adaptiveGridstacks_in_340 .column8,
	#adaptiveGridstacks_in_340 .column9,
	#adaptiveGridstacks_in_340 .column10,
	#adaptiveGridstacks_in_340 .column11,
	#adaptiveGridstacks_in_340 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_340 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */#stacks_in_751>.s3_row {
	margin: 0 -10px;
}

#stacks_in_751>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_751>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_753 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
#stacks_in_758>.s3_row {
	margin: 0 -10px;
}

#stacks_in_758>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_758>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_760 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
/* @group Generic Styles */

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

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

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

/*  */

/*  */

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

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

/* @end */

/* @end */

/*  */

/*  */

/*  */

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

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

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

/*  */
/*  *//* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_359 *,
#adaptiveGridstacks_in_359 *:before,
#adaptiveGridstacks_in_359 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_359 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_359 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_359:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_359 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_359 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_359 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_359 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_359 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_359 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_359 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_359 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_359 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_359 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_359 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_359 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_359 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_359 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_359 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_359 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_359 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_359 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_359 .column1 {
		width: 50.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_359 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_359 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_359 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_359 .column2 {
		width: 50.00%;
	}
}






















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_359 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_359 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_359 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_359 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_359 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_359 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_359 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_359 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_359 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_359 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_359 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_359 .column1,
	#adaptiveGridstacks_in_359 .column2,
	#adaptiveGridstacks_in_359 .column3,
	#adaptiveGridstacks_in_359 .column4,
	#adaptiveGridstacks_in_359 .column5,
	#adaptiveGridstacks_in_359 .column6,
	#adaptiveGridstacks_in_359 .column7,
	#adaptiveGridstacks_in_359 .column8,
	#adaptiveGridstacks_in_359 .column9,
	#adaptiveGridstacks_in_359 .column10,
	#adaptiveGridstacks_in_359 .column11,
	#adaptiveGridstacks_in_359 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_359 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */#stacks_in_513>.s3_row {
	margin: 0 -10px;
}

#stacks_in_513>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_513>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_515 {
	border: solid rgba(17, 128, 64, 1.00);
	border-width:  8px;
}
#stacks_in_765>.s3_row {
	margin: 0 -10px;
}

#stacks_in_765>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_765>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_767 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
/* @group Generic Styles */

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

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

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

/*  */

/*  */

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

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

/* @end */

/* @end */

/*  */

/*  */

/*  */

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

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

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

/*  */
/*  *//* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_378 *,
#adaptiveGridstacks_in_378 *:before,
#adaptiveGridstacks_in_378 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_378 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_378 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_378:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_378 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_378 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_378 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_378 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_378 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_378 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_378 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_378 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_378 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_378 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_378 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_378 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_378 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_378 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_378 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_378 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_378 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_378 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_378 .column1 {
		width: 50.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_378 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_378 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_378 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_378 .column2 {
		width: 50.00%;
	}
}






















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_378 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_378 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_378 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_378 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_378 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_378 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_378 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_378 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_378 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_378 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_378 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_378 .column1,
	#adaptiveGridstacks_in_378 .column2,
	#adaptiveGridstacks_in_378 .column3,
	#adaptiveGridstacks_in_378 .column4,
	#adaptiveGridstacks_in_378 .column5,
	#adaptiveGridstacks_in_378 .column6,
	#adaptiveGridstacks_in_378 .column7,
	#adaptiveGridstacks_in_378 .column8,
	#adaptiveGridstacks_in_378 .column9,
	#adaptiveGridstacks_in_378 .column10,
	#adaptiveGridstacks_in_378 .column11,
	#adaptiveGridstacks_in_378 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_378 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */#stacks_in_772>.s3_row {
	margin: 0 -10px;
}

#stacks_in_772>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_772>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_774 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
#stacks_in_779>.s3_row {
	margin: 0 -10px;
}

#stacks_in_779>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_779>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_781 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
/* @group Generic Styles */

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

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

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

/*  */

/*  */

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

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

/* @end */

/* @end */

/*  */

/*  */

/*  */

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

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

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

/*  */
/*  *//* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_397 *,
#adaptiveGridstacks_in_397 *:before,
#adaptiveGridstacks_in_397 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_397 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_397 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_397:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_397 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_397 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_397 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_397 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_397 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_397 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_397 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_397 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_397 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_397 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_397 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_397 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_397 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_397 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_397 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_397 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_397 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_397 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_397 .column1 {
		width: 50.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_397 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_397 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_397 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_397 .column2 {
		width: 50.00%;
	}
}






















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_397 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_397 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_397 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_397 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_397 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_397 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_397 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_397 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_397 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_397 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_397 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_397 .column1,
	#adaptiveGridstacks_in_397 .column2,
	#adaptiveGridstacks_in_397 .column3,
	#adaptiveGridstacks_in_397 .column4,
	#adaptiveGridstacks_in_397 .column5,
	#adaptiveGridstacks_in_397 .column6,
	#adaptiveGridstacks_in_397 .column7,
	#adaptiveGridstacks_in_397 .column8,
	#adaptiveGridstacks_in_397 .column9,
	#adaptiveGridstacks_in_397 .column10,
	#adaptiveGridstacks_in_397 .column11,
	#adaptiveGridstacks_in_397 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_397 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */#stacks_in_786>.s3_row {
	margin: 0 -10px;
}

#stacks_in_786>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_786>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_788 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
#stacks_in_793>.s3_row {
	margin: 0 -10px;
}

#stacks_in_793>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_793>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_795 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
/* @group Generic Styles */

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

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

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

/*  */

/*  */

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

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

/* @end */

/* @end */

/*  */

/*  */

/*  */

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

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

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

/*  */
/*  *//* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_416 *,
#adaptiveGridstacks_in_416 *:before,
#adaptiveGridstacks_in_416 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_416 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_416 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_416:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_416 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_416 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_416 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_416 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_416 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_416 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_416 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_416 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_416 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_416 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_416 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_416 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_416 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_416 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_416 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_416 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_416 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_416 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_416 .column1 {
		width: 50.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_416 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_416 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_416 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_416 .column2 {
		width: 50.00%;
	}
}






















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_416 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_416 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_416 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_416 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_416 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_416 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_416 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_416 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_416 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_416 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_416 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_416 .column1,
	#adaptiveGridstacks_in_416 .column2,
	#adaptiveGridstacks_in_416 .column3,
	#adaptiveGridstacks_in_416 .column4,
	#adaptiveGridstacks_in_416 .column5,
	#adaptiveGridstacks_in_416 .column6,
	#adaptiveGridstacks_in_416 .column7,
	#adaptiveGridstacks_in_416 .column8,
	#adaptiveGridstacks_in_416 .column9,
	#adaptiveGridstacks_in_416 .column10,
	#adaptiveGridstacks_in_416 .column11,
	#adaptiveGridstacks_in_416 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_416 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */#stacks_in_800>.s3_row {
	margin: 0 -10px;
}

#stacks_in_800>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_800>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_802 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
#stacks_in_583>.s3_row {
	margin: 0 -10px;
}

#stacks_in_583>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_583>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_585 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
/* @group Generic Styles */

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

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

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

/*  */

/*  */

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

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

/* @end */

/* @end */

/*  */

/*  */

/*  */

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

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

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

/*  */
/*  *//* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_435 *,
#adaptiveGridstacks_in_435 *:before,
#adaptiveGridstacks_in_435 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_435 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_435 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_435:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_435 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_435 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_435 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_435 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_435 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_435 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_435 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_435 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_435 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_435 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_435 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_435 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_435 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_435 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_435 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_435 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_435 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_435 .column1 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_435 .column1 {
		width: 50.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_435 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_435 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_435 .column2 {
		width: 50.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_435 .column2 {
		width: 50.00%;
	}
}






















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_435 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_435 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_435 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_435 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_435 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_435 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_435 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_435 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_435 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_435 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_435 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_435 .column1,
	#adaptiveGridstacks_in_435 .column2,
	#adaptiveGridstacks_in_435 .column3,
	#adaptiveGridstacks_in_435 .column4,
	#adaptiveGridstacks_in_435 .column5,
	#adaptiveGridstacks_in_435 .column6,
	#adaptiveGridstacks_in_435 .column7,
	#adaptiveGridstacks_in_435 .column8,
	#adaptiveGridstacks_in_435 .column9,
	#adaptiveGridstacks_in_435 .column10,
	#adaptiveGridstacks_in_435 .column11,
	#adaptiveGridstacks_in_435 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_435 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */
#stacks_in_435 {
	margin: 0px 0px 40px 0px;
}
#stacks_in_569>.s3_row {
	margin: 0 -10px;
}

#stacks_in_569>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_569>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_571 {
	border: solid rgba(251, 2, 7, 1.00);
	border-width:  8px;
}
#stacks_in_482>.s3_row {
	margin: 0 -10px;
}

#stacks_in_482>.s3_row>.s3_column_left {
	width: 30.00%;
}

#stacks_in_482>.s3_row>.s3_column_right {
	width: 70.000000%;
}




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










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



}



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


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


}






#stacks_in_484 {
	border: solid rgba(17, 128, 64, 1.00);
	border-width:  8px;
}
/* @group CSS Reset & Box Sizing */

#adaptiveGridstacks_in_15_47 *,
#adaptiveGridstacks_in_15_47 *:before,
#adaptiveGridstacks_in_15_47 *:after {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
}

#adaptiveGridstacks_in_15_47 {
	display: block;
}

/*  */
#adaptiveGridstacks_in_15_47 {
	visibility: hidden;
}
/*  */

#adaptiveGridstacks_in_15_47:before {
	display: table;
	content: " ";	
}

#adaptiveGridstacks_in_15_47 .adaptiveGridColumn {
	overflow: visible;
}

/*  */
#adaptiveGridstacks_in_15_47 img {
	max-width: 100%;
	height: auto;
}
/*  */

#adaptiveGridstacks_in_15_47 .adaptiveGridColumn {
	display: inline-block;
	float: left;
}

/* @end */

/* @group Column Padding Settings */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_15_47 .gridCellInner {
		padding: 0px;
	}
	
	#adaptiveGridstacks_in_15_47 {
		margin-left: -0px;
	}
	
	#adaptiveGridstacks_in_15_47 {
		margin-right: -0px;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_15_47 .gridCellInner {
		padding: 2px;
	}
	
	#adaptiveGridstacks_in_15_47 {
		margin-left: -2px;
	}
	
	#adaptiveGridstacks_in_15_47 {
		margin-right: -2px;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_15_47 .gridCellInner {
		padding: 4px;
	}
	
	#adaptiveGridstacks_in_15_47 {
		margin-left: -4px;
	}
	
	#adaptiveGridstacks_in_15_47 {
		margin-right: -4px;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_15_47 .gridCellInner {
		padding: 6px;
	}
	
	#adaptiveGridstacks_in_15_47 {
		margin-left: -6px;
	}
	
	#adaptiveGridstacks_in_15_47 {
		margin-right: -6px;
	}
}

/* @end */

/* @group Column Settings */



/* If column 1 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_15_47 .column1 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_15_47 .column1 {
		width: 33.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_15_47 .column1 {
		width: 33.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_15_47 .column1 {
		width: 33.00%;
	}
}



/* If column 2 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_15_47 .column2 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_15_47 .column2 {
		width: 33.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_15_47 .column2 {
		width: 33.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_15_47 .column2 {
		width: 33.00%;
	}
}



/* If column 3 is enabled */
@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_15_47 .column3 {
		width: 100.00%;
	}
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_15_47 .column3 {
		width: 33.00%;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_15_47 .column3 {
		width: 33.00%;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_15_47 .column3 {
		width: 33.00%;
	}
}




















/* @end */

/* @group Custom Classes */

@media screen and (min-width: 0px) {
	#adaptiveGridstacks_in_15_47 .no-phone {
		display: none;
	}
	
	#adaptiveGridstacks_in_15_47 .display-phone {
		display: block;
	}	
}

@media screen and (min-width: 500px) {
	#adaptiveGridstacks_in_15_47 .no-tablet {
		display: none;
	}
	
	#adaptiveGridstacks_in_15_47 .display-tablet {
		display: block;
	}
}

@media screen and (min-width: 900px) {
	#adaptiveGridstacks_in_15_47 .no-laptop {
		display: none;
	}
	
	#adaptiveGridstacks_in_15_47 .display-laptop {
		display: block;
	}
}

@media screen and (min-width: 1200px) {
	#adaptiveGridstacks_in_15_47 .no-desktop {
		display: none;
	}
	
	#adaptiveGridstacks_in_15_47 .display-desktop {
		display: block;
	}
}

@media print {
	#adaptiveGridstacks_in_15_47 .no-print {
		display: none;
	}
}

@media screen {
	#adaptiveGridstacks_in_15_47 .no-screen {
		display: none;
	}
}

/* @end */

/* @group User Style Settings */

/*  */

/*  */

/*  */

/*  */

/* @end */

/* @group Print Styling */

@media print {
	#adaptiveGridstacks_in_15_47 {
		display: block;
		position: relative;
		height: auto;
		overflow: auto;
	}
	
	#adaptiveGridstacks_in_15_47 .column1,
	#adaptiveGridstacks_in_15_47 .column2,
	#adaptiveGridstacks_in_15_47 .column3,
	#adaptiveGridstacks_in_15_47 .column4,
	#adaptiveGridstacks_in_15_47 .column5,
	#adaptiveGridstacks_in_15_47 .column6,
	#adaptiveGridstacks_in_15_47 .column7,
	#adaptiveGridstacks_in_15_47 .column8,
	#adaptiveGridstacks_in_15_47 .column9,
	#adaptiveGridstacks_in_15_47 .column10,
	#adaptiveGridstacks_in_15_47 .column11,
	#adaptiveGridstacks_in_15_47 .column12 {
		float: none;
		position: relative;
		width: 100%;	
	}
	
	#adaptiveGridstacks_in_15_47 .gridCellInner {
		padding: 0;
	}
}

/* @end *//*  */
#stacks_in_15_47 {
	margin: 20px 0px 20px 0px;
}

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

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

#stacks_out_15_68 {
	width: 250px;
	margin-left:0;
}
/* @group Reset */

/**/
#rapidSearchHelperFormstacks_in_15_46,
#rapidSearchHelperFieldsetstacks_in_15_46,
#rapidSearchHelperInputstacks_in_15_46,
#rapidSearchHelperSearchButtonstacks_in_15_46 {
	padding: 0;
	margin: 0;
	outline: none;
	border: none;
	box-shadow: none;
	line-height: 1.2;
}
/**/

/* @end */

/**/

/**/

/**/

/**/

/**/

/**/

/**/


/**/
#rapidSearchHelperInputstacks_in_15_46 {
	display: block;
	width: 100%;
	border: 1px solid rgba(204, 204, 204, 1.00);
	font-size: 14px;
	padding: 12px 16px;
	border-radius: 4px;
	transition: all 300ms ease-in-out;
	box-shadow: none;
	background: rgba(255, 255, 255, 1.00);
	color: rgba(102, 102, 102, 1.00);
}

#rapidSearchHelperInputstacks_in_15_46:focus {
	border: 1px solid rgba(102, 175, 233, 1.00);
	box-shadow: none;
	background: rgba(255, 255, 255, 1.00);
}

#rapidSearchHelperSearchButtonstacks_in_15_46 {
	display: inline-block;
	float: right;
	background: none;
	border: none;
	font-size: 14px;
	padding: 12px 16px;
	border-radius: 4px;
	background: rgba(76, 76, 76, 1.00);
	color: rgba(255, 255, 255, 1.00);
	margin-top: 10px;
	transition: all 300ms ease-in-out;
}

#rapidSearchHelperSearchButtonstacks_in_15_46:hover {
	background: rgba(51, 51, 51, 1.00);
	color: rgba(255, 255, 255, 1.00);
}

#rapidSearchHelperSearchButtonstacks_in_15_46:active {
	background: rgba(0, 0, 0, 1.00);
	color: rgba(255, 255, 255, 1.00);
}

#rapidSearchHelperIconstacks_in_15_46 {
	display: none;
}
/**/

/**/

/* @group Reveals */

/**/

	/**/
	#stacks_in_15_46 {
		position: fixed;
		overflow: visible;
		display: none;
		background: rgba(51, 51, 51, 1.00);
		margin-top: 15px;
		padding: 20px;
		border-radius: 5px;
		width: 200px;
		z-index: 9999;
		-webkit-transform: translateX(-50%);
		-moz-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		-o-transform: translateX(-50%);
		transform: translateX(-50%);
		-webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
		-moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
		-ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
		-o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
		box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
	}

	@media screen and (min-width: 768px) {
		#stacks_in_15_46 {
			width: 350px;
		}
	}

	#stacks_in_15_46:before {
		top: -20px;
		content: " ";
		display: block;
		height: 20px;
		left: 0;
		position: absolute;
		width: 100%;
	}

	#stacks_in_15_46:after {
		border-left: solid transparent 10px;
		border-right: solid transparent 10px;
		border-bottom: solid rgba(51, 51, 51, 1.00) 10px;
		top: -10px;
		content: " ";
		height: 0;
		left: 50%;
		margin-left: -13px;
		position: absolute;
		width: 0;
	}

	#rapidSearchHelperWindowShadestacks_in_15_46 {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 9998;
		display: block;
		background: rgba(0, 0, 0, 0.80);
		display: none;
	}

	nav > ul:first-of-type > li:last-child > a {
		position: relative;
	}

	#revealAnchorPointstacks_in_15_46 {
		position: absolute;
		bottom: 0;
		left: 50%;
		height: 1px;
		width: 1px;
		background: transparent;
		display: block;
	}

		/**/

		/**/

		/**/
		#stacks_in_15_46 {
			-webkit-transform: translateX(-90%);
			-moz-transform: translateX(-90%);
			-ms-transform: translateX(-90%);
			-o-transform: translateX(-90%);
			transform: translateX(-90%);
		}

		#stacks_in_15_46:after {
			left: 90%;
		}
		/**/

	/**/

	/**/

	/**/

/**/

/* @end */

@media print {
	#stacks_in_15_46 {
		display: none;
	}
}

/* @end */
/**/
