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


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

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

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

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

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

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

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

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

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

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

/* fall */
.nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall {
	-webkit-perspective: 1000px;
	   -moz-perspective: 1000px;
	        perspective: 1000px;
}
.nivo-lightbox-effect-fall .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	    -ms-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;
	-webkit-transform: translateZ(300px);
	   -moz-transform: translateZ(300px);
	    -ms-transform: translateZ(300px);
	        transform: translateZ(300px);
}
.nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
	    -ms-transform: translateZ(0);
	        transform: translateZ(0);
}
#stacks_in_84200 {
	background-color: rgba(84, 141, 72, 1.00);
	border: solid rgba(138, 195, 220, 1.00);
	border-width: 1px 1px 1px 1px;
	-moz-border-radius:  4px;
	-webkit-border-radius:  4px;
	border-radius:  4px;
	margin: 20px 0px 10px 0px;
	padding: 10px 0px 10px 10px;
}
/*
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.0.0
 * Simple Divider is a Free Stack for RapidWeaver allowing easy drag-and-drop of a simple divider with minimal customization options.
 */

#simpleDivider_stacks_in_97097 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_97097 .theDivider1, #simpleDivider_stacks_in_97097 .theDivider2 {width: inherit}
#simpleDivider_stacks_in_97097 .theDivider1 {
	border-top: solid 1px #CCCCCC;
	border-bottom: solid 1px #FFFFFF;
}
#simpleDivider_stacks_in_97097 .theDivider2 {
	height: 1px;
	background-color: #C2DAF0;
}

#stacks_in_97097 {
	margin: 15px 0px 0px 0px;
}
#stacks_in_156004 .sirecowrapper {
display: block;
padding-top: 0% !important;
padding-bottom: 0% !important;


height:auto;


/*Custom CSS;*/
}

#stacks_in_156004 .sirecowrapper a {/*Custom CSS;*/}
#stacks_in_156004 .sirecowrapper a:hover {/*Custom CSS;*/}

#stacks_in_156004 .sirecocontainer {
display: block;
max-width: 1200px; 
margin-left: auto;
margin-right:auto;
/*Custom CSS;*/
}

#stacks_in_156004 .sirecocontainer img {

	padding: 0px 0px 0px 0px;
}


#stacks_in_156004 .sirecobefit {
margin-left: -10px;
margin-right: -10px;
}

#stacks_in_156004 .sirecospacer {
margin-left: 10px;
margin-right: 10px;
}

#stacks_in_156004 .sireco:first-of-type {
float: left;

											/*3columnspecial*/





}
#stacks_in_156004 .sireco {



											/*3columnspecial*/



	width: 25%;








	display: block; 
	float: left; clear: none;
	padding-left: 10px;
	padding-right: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#stacks_in_156004 .sireco:last-of-type {
float: right; clear: right;

											/*3columnspecial*/




}

#stacks_in_156004 .sireco_bottomslice {
	text-align: center;
	padding: 5%;
	/*Custom CSS;*/
}


@media handheld, only screen and (max-width: 680px) {
#stacks_in_156004 .sirecobefit {
margin-left: 10px;
margin-right: 10px;
}
#stacks_in_156004 .sireco {
	width: 100%;
	padding: 25px;
				
}
#stacks_in_156004 .sireco:first-of-type {
	width: 100%;
	padding: 25px; 
				
/*Custom CSS;*/
}
#stacks_in_156004 .sireco:last-of-type { 
	width: 100%;
	padding: 25px; 
				
	/*Custom CSS;*/
}

#stacks_in_156004 .sireco:nth-of-type(2n) {
 
}

#stacks_in_156004 .sirecocontainer {

}

#stacks_in_156004 .sirecowrapper {



height:auto !important;


/*Custom CSS;*/
}

#stacks_in_156004 .sireco_bottomslice {
	/*Custom CSS;*/
}

}


/* Start Gradient stack CSS code */

#stacks_in_84204{
	/* fix for other stacks tramping over us */
	-webkit-transform:scale(1);
	-moz-transform:scale(1);
	-ms-transform:scale(1);
	-o-transform:scale(1);
	transform:scale(1);
}



	#stacks_in_84204::before{
		content:"";
		top:0;
		left:0;
		bottom:0;
		right:0;
		position:absolute;
		
		opacity:1;
		
		/* Old browsers */
		background: rgba(121, 182, 210, 1.00);
		/* FF3.6+ */
		background: -moz-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,   rgba(46, 66, 114, 1.00) 100%);
		/* Chrome,Safari4+ */
		background: -webkit-gradient(radial, 50% 50%, color-stop(0%,rgba(121, 182, 210, 1.00)),   color-stop(100%,rgba(46, 66, 114, 1.00)));
		/* Chrome10+,Safari5.1+ */
		background: -webkit-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* Opera 11.10+ */
		background: -o-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* IE10+ */
		background: -ms-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* W3C */
		background: radial-gradient(ellipse at 50% 50%,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* IE6-9 fallback on horizontal gradient */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=1 );
	}
	






/* End Gradient stack CSS code */
#stacks_in_84206 {
	margin:  10px;
	padding:  10px;
}

#stacks_in_84208 {
	-moz-border-radius:  4px;
	-webkit-border-radius:  4px;
	border-radius:  4px;
	margin: 15px 0px 20px 0px;
}
/* Start Gradient stack CSS code */

#stacks_in_84211{
	/* fix for other stacks tramping over us */
	-webkit-transform:scale(1);
	-moz-transform:scale(1);
	-ms-transform:scale(1);
	-o-transform:scale(1);
	transform:scale(1);
}



	#stacks_in_84211::before{
		content:"";
		top:0;
		left:0;
		bottom:0;
		right:0;
		position:absolute;
		
		opacity:1;
		
		/* Old browsers */
		background: rgba(121, 182, 210, 1.00);
		/* FF3.6+ */
		background: -moz-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,   rgba(46, 66, 114, 1.00) 100%);
		/* Chrome,Safari4+ */
		background: -webkit-gradient(radial, 50% 50%, color-stop(0%,rgba(121, 182, 210, 1.00)),   color-stop(100%,rgba(46, 66, 114, 1.00)));
		/* Chrome10+,Safari5.1+ */
		background: -webkit-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* Opera 11.10+ */
		background: -o-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* IE10+ */
		background: -ms-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* W3C */
		background: radial-gradient(ellipse at 50% 50%,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* IE6-9 fallback on horizontal gradient */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=1 );
	}
	






/* End Gradient stack CSS code */
#stacks_in_84213 {
	margin: 25px 10px 10px 10px;
	padding:  10px;
}

#stacks_in_84215 {
	-moz-border-radius:  4px;
	-webkit-border-radius:  4px;
	border-radius:  4px;
	margin: 15px 0px 20px 0px;
}
/* Start Gradient stack CSS code */

#stacks_in_84218{
	/* fix for other stacks tramping over us */
	-webkit-transform:scale(1);
	-moz-transform:scale(1);
	-ms-transform:scale(1);
	-o-transform:scale(1);
	transform:scale(1);
}



	#stacks_in_84218::before{
		content:"";
		top:0;
		left:0;
		bottom:0;
		right:0;
		position:absolute;
		
		opacity:1;
		
		/* Old browsers */
		background: rgba(121, 182, 210, 1.00);
		/* FF3.6+ */
		background: -moz-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,   rgba(46, 66, 114, 1.00) 100%);
		/* Chrome,Safari4+ */
		background: -webkit-gradient(radial, 50% 50%, color-stop(0%,rgba(121, 182, 210, 1.00)),   color-stop(100%,rgba(46, 66, 114, 1.00)));
		/* Chrome10+,Safari5.1+ */
		background: -webkit-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* Opera 11.10+ */
		background: -o-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* IE10+ */
		background: -ms-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* W3C */
		background: radial-gradient(ellipse at 50% 50%,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* IE6-9 fallback on horizontal gradient */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=1 );
	}
	






/* End Gradient stack CSS code */
#stacks_in_84220 {
	margin: 15px 0px 15px 0px;
	padding:  10px;
}

#stacks_in_84222 {
	-moz-border-radius:  4px;
	-webkit-border-radius:  4px;
	border-radius:  4px;
	margin: 18px 0px 20px 0px;
}
/* Start Gradient stack CSS code */

#stacks_in_84254{
	/* fix for other stacks tramping over us */
	-webkit-transform:scale(1);
	-moz-transform:scale(1);
	-ms-transform:scale(1);
	-o-transform:scale(1);
	transform:scale(1);
}



	#stacks_in_84254::before{
		content:"";
		top:0;
		left:0;
		bottom:0;
		right:0;
		position:absolute;
		
		opacity:1;
		
		/* Old browsers */
		background: rgba(121, 182, 210, 1.00);
		/* FF3.6+ */
		background: -moz-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,   rgba(46, 66, 114, 1.00) 100%);
		/* Chrome,Safari4+ */
		background: -webkit-gradient(radial, 50% 50%, color-stop(0%,rgba(121, 182, 210, 1.00)),   color-stop(100%,rgba(46, 66, 114, 1.00)));
		/* Chrome10+,Safari5.1+ */
		background: -webkit-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* Opera 11.10+ */
		background: -o-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* IE10+ */
		background: -ms-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* W3C */
		background: radial-gradient(ellipse at 50% 50%,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* IE6-9 fallback on horizontal gradient */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=1 );
	}
	






/* End Gradient stack CSS code */
#stacks_in_84256 {
	margin: 5px 0px 10px 0px;
	padding:  10px;
}
/*
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.0.0
 * Simple Divider is a Free Stack for RapidWeaver allowing easy drag-and-drop of a simple divider with minimal customization options.
 */

#simpleDivider_stacks_in_97091 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_97091 .theDivider1, #simpleDivider_stacks_in_97091 .theDivider2 {width: inherit}
#simpleDivider_stacks_in_97091 .theDivider1 {
	border-top: solid 1px #CCCCCC;
	border-bottom: solid 1px #FFFFFF;
}
#simpleDivider_stacks_in_97091 .theDivider2 {
	height: 1px;
	background-color: #C2DAF0;
}

#stacks_in_97091 {
	margin: 15px 0px 0px 0px;
}
#stacks_in_156010 .sirecowrapper {
display: block;
padding-top: 0% !important;
padding-bottom: 0% !important;


height:auto;


/*Custom CSS;*/
}

#stacks_in_156010 .sirecowrapper a {/*Custom CSS;*/}
#stacks_in_156010 .sirecowrapper a:hover {/*Custom CSS;*/}

#stacks_in_156010 .sirecocontainer {
display: block;
max-width: 1200px; 
margin-left: auto;
margin-right:auto;
/*Custom CSS;*/
}

#stacks_in_156010 .sirecocontainer img {

	padding: 0px 0px 0px 0px;
}


#stacks_in_156010 .sirecobefit {
margin-left: -10px;
margin-right: -10px;
}

#stacks_in_156010 .sirecospacer {
margin-left: 10px;
margin-right: 10px;
}

#stacks_in_156010 .sireco:first-of-type {
float: left;

											/*3columnspecial*/





}
#stacks_in_156010 .sireco {



											/*3columnspecial*/



	width: 25%;








	display: block; 
	float: left; clear: none;
	padding-left: 10px;
	padding-right: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#stacks_in_156010 .sireco:last-of-type {
float: right; clear: right;

											/*3columnspecial*/




}

#stacks_in_156010 .sireco_bottomslice {
	text-align: center;
	padding: 5%;
	/*Custom CSS;*/
}


@media handheld, only screen and (max-width: 680px) {
#stacks_in_156010 .sirecobefit {
margin-left: 10px;
margin-right: 10px;
}
#stacks_in_156010 .sireco {
	width: 100%;
	padding: 25px;
				
}
#stacks_in_156010 .sireco:first-of-type {
	width: 100%;
	padding: 25px; 
				
/*Custom CSS;*/
}
#stacks_in_156010 .sireco:last-of-type { 
	width: 100%;
	padding: 25px; 
				
	/*Custom CSS;*/
}

#stacks_in_156010 .sireco:nth-of-type(2n) {
 
}

#stacks_in_156010 .sirecocontainer {

}

#stacks_in_156010 .sirecowrapper {



height:auto !important;


/*Custom CSS;*/
}

#stacks_in_156010 .sireco_bottomslice {
	/*Custom CSS;*/
}

}


/* Start Gradient stack CSS code */

#stacks_in_156220{
	/* fix for other stacks tramping over us */
	-webkit-transform:scale(1);
	-moz-transform:scale(1);
	-ms-transform:scale(1);
	-o-transform:scale(1);
	transform:scale(1);
}



	#stacks_in_156220::before{
		content:"";
		top:0;
		left:0;
		bottom:0;
		right:0;
		position:absolute;
		
		opacity:1;
		
		/* Old browsers */
		background: rgba(121, 182, 210, 1.00);
		/* FF3.6+ */
		background: -moz-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,   rgba(46, 66, 114, 1.00) 100%);
		/* Chrome,Safari4+ */
		background: -webkit-gradient(radial, 50% 50%, color-stop(0%,rgba(121, 182, 210, 1.00)),   color-stop(100%,rgba(46, 66, 114, 1.00)));
		/* Chrome10+,Safari5.1+ */
		background: -webkit-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* Opera 11.10+ */
		background: -o-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* IE10+ */
		background: -ms-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* W3C */
		background: radial-gradient(ellipse at 50% 50%,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* IE6-9 fallback on horizontal gradient */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=1 );
	}
	






/* End Gradient stack CSS code */
#stacks_in_84270 {
	margin: 25px 0px 30px 0px;
	padding:  10px;
}
/* Start Gradient stack CSS code */

#stacks_in_84225{
	/* fix for other stacks tramping over us */
	-webkit-transform:scale(1);
	-moz-transform:scale(1);
	-ms-transform:scale(1);
	-o-transform:scale(1);
	transform:scale(1);
}



	#stacks_in_84225::before{
		content:"";
		top:0;
		left:0;
		bottom:0;
		right:0;
		position:absolute;
		
		opacity:1;
		
		/* Old browsers */
		background: rgba(121, 182, 210, 1.00);
		/* FF3.6+ */
		background: -moz-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,   rgba(46, 66, 114, 1.00) 100%);
		/* Chrome,Safari4+ */
		background: -webkit-gradient(radial, 50% 50%, color-stop(0%,rgba(121, 182, 210, 1.00)),   color-stop(100%,rgba(46, 66, 114, 1.00)));
		/* Chrome10+,Safari5.1+ */
		background: -webkit-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* Opera 11.10+ */
		background: -o-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* IE10+ */
		background: -ms-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* W3C */
		background: radial-gradient(ellipse at 50% 50%,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* IE6-9 fallback on horizontal gradient */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=1 );
	}
	






/* End Gradient stack CSS code */
#stacks_in_84227 {
	margin: 18px 0px 15px 0px;
	padding:  10px;
}

#stacks_in_84229 {
	-moz-border-radius:  4px;
	-webkit-border-radius:  4px;
	border-radius:  4px;
	margin: 10px 0px 20px 0px;
}
/* Start Gradient stack CSS code */

#stacks_in_84247{
	/* fix for other stacks tramping over us */
	-webkit-transform:scale(1);
	-moz-transform:scale(1);
	-ms-transform:scale(1);
	-o-transform:scale(1);
	transform:scale(1);
}



	#stacks_in_84247::before{
		content:"";
		top:0;
		left:0;
		bottom:0;
		right:0;
		position:absolute;
		
		opacity:1;
		
		/* Old browsers */
		background: rgba(121, 182, 210, 1.00);
		/* FF3.6+ */
		background: -moz-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,   rgba(46, 66, 114, 1.00) 100%);
		/* Chrome,Safari4+ */
		background: -webkit-gradient(radial, 50% 50%, color-stop(0%,rgba(121, 182, 210, 1.00)),   color-stop(100%,rgba(46, 66, 114, 1.00)));
		/* Chrome10+,Safari5.1+ */
		background: -webkit-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* Opera 11.10+ */
		background: -o-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* IE10+ */
		background: -ms-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* W3C */
		background: radial-gradient(ellipse at 50% 50%,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* IE6-9 fallback on horizontal gradient */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=1 );
	}
	






/* End Gradient stack CSS code */
#stacks_in_84249 {
	margin:  10px;
	padding:  10px;
}
/* Start Gradient stack CSS code */

#stacks_in_84261{
	/* fix for other stacks tramping over us */
	-webkit-transform:scale(1);
	-moz-transform:scale(1);
	-ms-transform:scale(1);
	-o-transform:scale(1);
	transform:scale(1);
}



	#stacks_in_84261::before{
		content:"";
		top:0;
		left:0;
		bottom:0;
		right:0;
		position:absolute;
		
		opacity:1;
		
		/* Old browsers */
		background: rgba(121, 182, 210, 1.00);
		/* FF3.6+ */
		background: -moz-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,   rgba(46, 66, 114, 1.00) 100%);
		/* Chrome,Safari4+ */
		background: -webkit-gradient(radial, 50% 50%, color-stop(0%,rgba(121, 182, 210, 1.00)),   color-stop(100%,rgba(46, 66, 114, 1.00)));
		/* Chrome10+,Safari5.1+ */
		background: -webkit-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* Opera 11.10+ */
		background: -o-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* IE10+ */
		background: -ms-radial-gradient(50% 50%, ellipse cover,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* W3C */
		background: radial-gradient(ellipse at 50% 50%,  rgba(121, 182, 210, 1.00) 0%,rgba(46, 66, 114, 1.00) 100%);
		/* IE6-9 fallback on horizontal gradient */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e5799', endColorstr='#7db9e8',GradientType=1 );
	}
	






/* End Gradient stack CSS code */.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_156217 {
	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_156217 #topBoxTriggerstacks_in_156217 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_156217 #topBoxTriggerContentstacks_in_156217 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_156217 #topBoxTriggerContentstacks_in_156217 img {
	display: block;
	margin: 0 auto;
}

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

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

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

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

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

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

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

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

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



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


#topBoxContentWrapperstacks_in_156217 {
	display: none;
}








#stacks_in_84263 {
	margin: 10px 0px 25px 0px;
	padding:  10px;
}
/*
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.0.0
 * Simple Divider is a Free Stack for RapidWeaver allowing easy drag-and-drop of a simple divider with minimal customization options.
 */

#simpleDivider_stacks_in_97094 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_97094 .theDivider1, #simpleDivider_stacks_in_97094 .theDivider2 {width: inherit}
#simpleDivider_stacks_in_97094 .theDivider1 {
	border-top: solid 1px #CCCCCC;
	border-bottom: solid 1px #FFFFFF;
}
#simpleDivider_stacks_in_97094 .theDivider2 {
	height: 1px;
	background-color: #C2DAF0;
}

#stacks_in_97094 {
	margin: 15px 0px 0px 0px;
}
  #stacks_in_156275_4{visibility:hidden}

#stacks_in_156275_8 {
	margin: 0px 0px 0px 5px;
}

#stacks_in_156275_10 {
	margin: 5px 0px 10px 20px;
	padding: 5px 0px 10px 10px;
}

#stacks_in_156275_11 {
	word-spacing: 10px;
	font-size: 121%;
}
  #stacks_in_156275_12{visibility:hidden}
/* @group Basics */

#switcherstacks_in_156275_16,
#switcherstacks_in_156275_16 * {
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box; 
    box-sizing: border-box;
}

#switcherstacks_in_156275_16 {
	display: none;
}

/* Reset for lists within Switcher */

#switcherstacks_in_156275_16 ul ul {
	list-style-type: disc;
}

/* @end */

/* @group Accordion */

ul#accordionInterfacestacks_in_156275_16 {
	padding: 0;
	margin: 0;
	list-style: none;
}

ul#accordionInterfacestacks_in_156275_16>li {
	padding: 0;
	margin: 0;
	list-style: none;
}

/* Static accordion */

#accordionInterfacestacks_in_156275_16 .accordion-toggle,
#mydiv .accordion-toggle {
	margin-top: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
	cursor: pointer;
	background: rgba(99, 136, 212, 1.00);
	line-height: 45px;
	display: block;
	font-size: 18px;
	text-decoration: none;
	border-radius: 0px 0px 0px 0px;
	text-align: left;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	padding-right: 10px;
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	transition: all 500ms ease-in-out;
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	color: rgba(255, 255, 255, 1.00);
	position: relative;
	z-index: 10;
	outline: none;
}

#accordionInterfacestacks_in_156275_16 .accordion-toggle [class^="fa fa-"],
#mydiv .accordion-toggle [class^="fa fa-"],
#accordionInterfacestacks_in_156275_16 .accordion-toggle i,
#mydiv .accordion-toggle i {
	font-size: 18px;
	color: rgba(255, 255, 255, 1.00);
	width: 25px;
	transition: all 500ms ease-in-out;
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	display: inline-block;
	text-align: center;
	overflow: hidden;
	line-height: 1;
	vertical-align: middle;
}

/* Hovered accordion */

#accordionInterfacestacks_in_156275_16 .accordion-toggle:hover,
#mydiv .accordion-toggle:hover {
	background: rgba(33, 72, 126, 1.00);
	color: rgba(255, 255, 255, 1.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-radius: 0px 0px 0px 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	padding-right: 10px;
	
	margin-top: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
}

#accordionInterfacestacks_in_156275_16 .accordion-toggle:hover [class^="fa fa-"],
#mydiv .accordion-toggle:hover [class^="fa fa-"],
#accordionInterfacestacks_in_156275_16 .accordion-toggle:hover i,
#mydiv .accordion-toggle:hover i {
	color: rgba(255, 255, 255, 1.00);
}

/* Clicked accordion */

#accordionInterfacestacks_in_156275_16 .accordion-toggle:active,
#mydiv .accordion-toggle:active {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(33, 72, 126, 1.00);
}

#accordionInterfacestacks_in_156275_16 .accordion-toggle:active [class^="fa fa-"],
#mydiv .accordion-toggle:active [class^="fa fa-"],
#accordionInterfacestacks_in_156275_16 .accordion-toggle:active i,
#mydiv .accordion-toggle:active i {
	color: rgba(255, 255, 255, 1.00);
}

/* Active accordion */

#accordionInterfacestacks_in_156275_16 .accordion-toggle.ui-state-active,
#mydiv .accordion-toggle.ui-state-active {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(33, 72, 126, 1.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-radius: 0px 0px 0px 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	padding-right: 10px;
	
	margin-top: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
}

#accordionInterfacestacks_in_156275_16 .accordion-toggle.ui-state-active [class^="fa fa-"],
#mydiv .accordion-toggle.ui-state-active [class^="fa fa-"],
#accordionInterfacestacks_in_156275_16 .accordion-toggle.ui-state-active i,
#mydiv .accordion-toggle.ui-state-active i {
	color: rgba(255, 255, 255, 1.00);
}

/* @group Open and closed floating icons */

#accordionInterfacestacks_in_156275_16 .accordion-toggle .closedIcon,
#mydiv .accordion-toggle .closedIcon {
	float: right;
	display: inline;
}

#accordionInterfacestacks_in_156275_16 .accordion-toggle .openedIcon,
#mydiv .accordion-toggle .openedIcon {
	float: right;
	display: none;
}

#accordionInterfacestacks_in_156275_16 .accordion-toggle.ui-state-active .closedIcon,
#mydiv .accordion-toggle.ui-state-active .closedIcon {
	display: none;
}

#accordionInterfacestacks_in_156275_16 .accordion-toggle.ui-state-active .openedIcon,
#mydiv .accordion-toggle.ui-state-active .openedIcon {
	display: inline;
}

/* @end */

/* @end */

/* @group Tabs */

ul#tabbedInterfacestacks_in_156275_16 {
	padding: 0;
	margin: 0;
	list-style: none;
}

ul#tabbedInterfacestacks_in_156275_16>li {
	padding: 0;
	margin: 0;
	list-style: none;
}

ul#switcherTabsstacks_in_156275_16 {
	display: block;
	text-align: left;
	padding: 0;
	margin: 0;
	list-style: none;
}

ul#switcherTabsstacks_in_156275_16 li.switcherTab {
	display: inline-block;
	list-style: none;
	width: 20.00%;
}



/* Static tabs */

ul#switcherTabsstacks_in_156275_16 li.switcherTab.ui-state-default a {
	display: block;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 1px !important;
	cursor: pointer;
	background: rgba(99, 136, 212, 1.00);
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	padding-right: 5px;
	font-size: 14px;
	line-height: 1.25em;
	text-align: center;
	text-decoration: none;
	border-radius: 0px 0px 0px 0px;
	color: rgba(255, 255, 255, 1.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	position: relative;
	z-index: 10;
	outline: none;
	
	/* Animate selected elements */
	transition: background 500ms, 
				color 500ms, 
				border 500ms, 
				border-radius 500ms;
	-webkit-transition: background 500ms, 
				color 500ms,
				border 500ms,
				border-radius 500ms;
	-moz-transition: background 500ms, 
				color 500ms,
				border 500ms,
				border-radius 500ms;
}

ul#switcherTabsstacks_in_156275_16 li.switcherTab.ui-state-default a [class^="fa fa-"],
ul#switcherTabsstacks_in_156275_16 li.switcherTab.ui-state-default a i {
	display: block;
	font-size: 48px;
	text-align: center;
	color: rgba(255, 255, 255, 1.00);
	line-height: 1;
	vertical-align: middle;
	margin-top: 0px !important;
	margin-bottom: 10px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
	
	/* Animate selected elements */
	transition: background 500ms, 
				color 500ms, 
				border 500ms, 
				border-radius 500ms;
	-webkit-transition: background 500ms, 
				color 500ms,
				border 500ms,
				border-radius 500ms;
	-moz-transition: background 500ms, 
				color 500ms,
				border 500ms,
				border-radius 500ms;
}

/* Hovered Tabs */

ul#switcherTabsstacks_in_156275_16 li.switcherTab.ui-state-default a:hover {
	background: rgba(33, 72, 126, 1.00);
	color: rgba(255, 255, 255, 1.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-radius: 0px 0px 0px 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	padding-right: 5px;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 1px !important;
}

ul#switcherTabsstacks_in_156275_16 li.switcherTab.ui-state-default a:hover [class^="fa fa-"],
ul#switcherTabsstacks_in_156275_16 li.switcherTab.ui-state-default a:hover i {
	color: rgba(255, 255, 255, 1.00);
}

/* Clicked tabs */

ul#switcherTabsstacks_in_156275_16 li.switcherTab.ui-state-default a:active {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(33, 72, 126, 1.00);
}

ul#switcherTabsstacks_in_156275_16 li.switcherTab.ui-state-default [class^="fa fa-"],
ul#switcherTabsstacks_in_156275_16 li.switcherTab.ui-state-default i {
	color: rgba(255, 255, 255, 1.00);
}

/* Active Tabs */

ul#switcherTabsstacks_in_156275_16 li.switcherTab.ui-tabs-active.ui-state-active a {
	background: rgba(33, 72, 126, 1.00);
	color: rgba(255, 255, 255, 1.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-radius: 0px 0px 0px 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	padding-right: 5px;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 1px !important;
}

ul#switcherTabsstacks_in_156275_16 li.switcherTab.ui-tabs-active.ui-state-active a [class^="fa fa-"],
ul#switcherTabsstacks_in_156275_16 li.switcherTab.ui-tabs-active.ui-state-active a i {
	color: rgba(255, 255, 255, 1.00);
}

/* Hide accordion toggle headings */

#tabPanesstacks_in_156275_16 a.accordion-toggle {
	display: none;
}

/* Hide accordion, when in tabbed mode */

#switcherstacks_in_156275_16.tabbed-layout #accordionInterfacestacks_in_156275_16 {
	display: none;
}

/* Display tabbed interface, when in tabs mode */

#switcherstacks_in_156275_16.tabbed-layout #tabbedInterfacestacks_in_156275_16 {
	display: block;
}

/* Hide tabbed interface, when in accordion mode */

#switcherstacks_in_156275_16.accordion-layout #tabbedInterfacestacks_in_156275_16 {
	display: none;
}


/* Hide open / close accordion heading icons */

ul#switcherTabsstacks_in_156275_16 .closedIcon,
ul#switcherTabsstacks_in_156275_16 .openedIcon {
	display: none;
}

/* @end */

/* @group Content Panels */

#tabbedInterfacestacks_in_156275_16 .accordion-content,
#accordionInterfacestacks_in_156275_16 .accordion-content {
	display: none;
	list-style: none;
	padding: 0;
	text-align: left;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
}

#tabbedInterfacestacks_in_156275_16 .accordion-content .contentInner,
#accordionInterfacestacks_in_156275_16 .accordion-content .contentInner {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(33, 72, 126, 1.00);
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
	padding-right: 15px;
	border-radius: 0px 0px 0px 0px;
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
}

/* @end */

/* @group Left / Right Tab Positioning */





/* @end */

/* @group Responsive Behavior */

/* On screens less than our breakpoint, make tabs an accordion */
@media screen and (max-width: 568px) {
	#switcherstacks_in_156275_16 #accordionInterfacestacks_in_156275_16 {
		display: block !important;
	}
	
	#switcherstacks_in_156275_16 #tabbedInterfacestacks_in_156275_16 {
		display: none !important;
	}
}

/* @end */

/* @group Print style settings */

@media print {
	#switcherTabsstacks_in_156275_16 {
		display: none !important;
	}
	
	#switcherWrapperstacks_in_156275_16,
	#switcherstacks_in_156275_16.tabbed-layout .accordion-toggle {
		display: block !important;
	}
	
	#switcherstacks_in_156275_16 .accordion-content {
		display: block !important;
		height: auto !important;
	}
	
	#switcherstacks_in_156275_16 .accordion-content .contentInner {
		border: none !important;
	}
}

/* @end */

/* @group Advanced Settings */

/**/
#switcherstacks_in_156275_16.accordion-layout .accordion-toggle [class^="fa fa-"],
ul#switcherTabsstacks_in_156275_16 li.switcherTab.ui-state-default a [class^="fa fa-"],
#switcherstacks_in_156275_16.accordion-layout .accordion-toggle i,
ul#switcherTabsstacks_in_156275_16 li.switcherTab.ui-state-default a i {
	font-size: inherit;
	color: inherit;
	text-align: left;
	display: inline;
	line-height: inherit;
}
/**/

/**/

/**/
ul#switcherTabsstacks_in_156275_16 li.switcherTab a [class^="fa fa-"],
ul#switcherTabsstacks_in_156275_16 li.switcherTab a i {
	display: none !important;
}
/**/

/* @end */

/* @group Edit Mode Styling */

/*  */

/* @end */
#stacks_in_156275_16 {
	background-color: rgba(27, 44, 74, 1.00);
	padding:  20px;
}
/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

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

#stacks_in_156275_21>.s3_row>.s3_column_left {
	width: 25.00%;
}

#stacks_in_156275_21>.s3_row>.s3_column_right {
	width: 75.000000%;
}




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










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



}



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


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


}






#stacks_in_156275_21 {
	margin: 20px 0px 0px 0px;
	padding:  10px;
}
/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

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

#stacks_in_156275_31>.s3_row>.s3_column_left {
	width: 25.00%;
}

#stacks_in_156275_31>.s3_row>.s3_column_right {
	width: 75.000000%;
}




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










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



}



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


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


}






#stacks_in_156275_31 {
	margin: 20px 0px 0px 0px;
	padding:  10px;
}
	
	/* start image list from doobox css */
	
	
	#stacks_in_156275_36 .stacks_in_156275_36imagelist {
		position: relative;
		list-style: none;
		list-style-type: none;
		margin:0px 0;
		
		z-index:1;
	}
	
	#stacks_in_156275_36 .stacks_in_156275_36listIcon {
		position: relative;
		float:left;
		z-index: 2;
	}
	
	#stacks_in_156275_36 .stacks_in_156275_36listIcon img{
		width:32px;
		height: auto;
	}
	
	
	#stacks_in_156275_36 .stacks_in_156275_36listTitle {

		margin-left:50px;
		padding-bottom: 0px;
		
		font-size: 100%;
	}
	
	
	#stacks_in_156275_36 .stacks_in_156275_36listContent {
		display: block;
		margin-left:50px;
		padding-top: 0px;
		padding-bottom: 18px;
	}
	
	.stacks_in_156275_36breaker{
		margin: 0;
		padding: 0;
		height: 1px;
		clear: both;
	}
	
	
	/* end image list from doobox css */
	/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

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

#stacks_in_156275_58>.s3_row>.s3_column_left {
	width: 25.00%;
}

#stacks_in_156275_58>.s3_row>.s3_column_right {
	width: 75.000000%;
}




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










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



}



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


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


}






#stacks_in_156275_58 {
	margin: 20px 0px 0px 0px;
	padding:  10px;
}
	
	/* start image list from doobox css */
	
	
	#stacks_in_156275_63 .stacks_in_156275_63imagelist {
		position: relative;
		list-style: none;
		list-style-type: none;
		margin:0px 0;
		
		z-index:1;
	}
	
	#stacks_in_156275_63 .stacks_in_156275_63listIcon {
		position: relative;
		float:left;
		z-index: 2;
	}
	
	#stacks_in_156275_63 .stacks_in_156275_63listIcon img{
		width:32px;
		height: auto;
	}
	
	
	#stacks_in_156275_63 .stacks_in_156275_63listTitle {

		margin-left:50px;
		padding-bottom: 0px;
		
		font-size: 100%;
	}
	
	
	#stacks_in_156275_63 .stacks_in_156275_63listContent {
		display: block;
		margin-left:50px;
		padding-top: 0px;
		padding-bottom: 18px;
	}
	
	.stacks_in_156275_63breaker{
		margin: 0;
		padding: 0;
		height: 1px;
		clear: both;
	}
	
	
	/* end image list from doobox css */
	/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

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

#stacks_in_156275_82>.s3_row>.s3_column_left {
	width: 25.00%;
}

#stacks_in_156275_82>.s3_row>.s3_column_right {
	width: 75.000000%;
}




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










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



}



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


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


}






#stacks_in_156275_82 {
	padding:  9px;
}
/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

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

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

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




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










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



}



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


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


}






#stacks_in_156275_96 {
	margin: 20px 0px 0px 0px;
	padding:  10px;
}
#stacks_in_156275_103 .sirecowrapper {
display: block;
padding-top: 0% !important;
padding-bottom: 0% !important;


height:auto;


/*Custom CSS;*/
}

#stacks_in_156275_103 .sirecowrapper a {/*Custom CSS;*/}
#stacks_in_156275_103 .sirecowrapper a:hover {/*Custom CSS;*/}

#stacks_in_156275_103 .sirecocontainer {
display: block;
max-width: 1200px; 
margin-left: auto;
margin-right:auto;
/*Custom CSS;*/
}

#stacks_in_156275_103 .sirecocontainer img {

	padding: 0px 0px 0px 0px;
}


#stacks_in_156275_103 .sirecobefit {
margin-left: -10px;
margin-right: -10px;
}

#stacks_in_156275_103 .sirecospacer {
margin-left: 10px;
margin-right: 10px;
}

#stacks_in_156275_103 .sireco:first-of-type {
float: left;

											/*3columnspecial*/





}
#stacks_in_156275_103 .sireco {



											/*3columnspecial*/



	width: 25%;








	display: block; 
	float: left; clear: none;
	padding-left: 10px;
	padding-right: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#stacks_in_156275_103 .sireco:last-of-type {
float: right; clear: right;

											/*3columnspecial*/




}

#stacks_in_156275_103 .sireco_bottomslice {
	text-align: center;
	padding: 5%;
	/*Custom CSS;*/
}


@media handheld, only screen and (max-width: 680px) {
#stacks_in_156275_103 .sirecobefit {
margin-left: 10px;
margin-right: 10px;
}
#stacks_in_156275_103 .sireco {
	width: 100%;
	padding: 25px;
				
}
#stacks_in_156275_103 .sireco:first-of-type {
	width: 100%;
	padding: 25px; 
				
/*Custom CSS;*/
}
#stacks_in_156275_103 .sireco:last-of-type { 
	width: 100%;
	padding: 25px; 
				
	/*Custom CSS;*/
}

#stacks_in_156275_103 .sireco:nth-of-type(2n) {
 
}

#stacks_in_156275_103 .sirecocontainer {

}

#stacks_in_156275_103 .sirecowrapper {



height:auto !important;


/*Custom CSS;*/
}

#stacks_in_156275_103 .sireco_bottomslice {
	/*Custom CSS;*/
}

}



#stacks_in_156275_103 {
	background-color: rgba(27, 44, 74, 1.00);
	margin: 10px 0px 10px 0px;
	padding:  20px;
}

#stacks_in_156275_105 {
	margin: 0px 0px 38px 0px;
}

#stacks_in_156275_110 {
	margin: 0px 0px 30px 0px;
}

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

#stacks_in_156275_120 {
	margin: 0px 0px 4px 0px;
}
/* @group Basics */

#switcherstacks_in_156275_125,
#switcherstacks_in_156275_125 * {
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box; 
    box-sizing: border-box;
}

#switcherstacks_in_156275_125 {
	display: none;
}

/* Reset for lists within Switcher */

#switcherstacks_in_156275_125 ul ul {
	list-style-type: disc;
}

/* @end */

/* @group Accordion */

ul#accordionInterfacestacks_in_156275_125 {
	padding: 0;
	margin: 0;
	list-style: none;
}

ul#accordionInterfacestacks_in_156275_125>li {
	padding: 0;
	margin: 0;
	list-style: none;
}

/* Static accordion */

#accordionInterfacestacks_in_156275_125 .accordion-toggle,
#mydiv .accordion-toggle {
	margin-top: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
	cursor: pointer;
	background: rgba(99, 136, 212, 1.00);
	line-height: 45px;
	display: block;
	font-size: 18px;
	text-decoration: none;
	border-radius: 0px 0px 0px 0px;
	text-align: left;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	padding-right: 10px;
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	transition: all 500ms ease-in-out;
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	color: rgba(255, 255, 255, 1.00);
	position: relative;
	z-index: 10;
	outline: none;
}

#accordionInterfacestacks_in_156275_125 .accordion-toggle [class^="fa fa-"],
#mydiv .accordion-toggle [class^="fa fa-"],
#accordionInterfacestacks_in_156275_125 .accordion-toggle i,
#mydiv .accordion-toggle i {
	font-size: 18px;
	color: rgba(255, 255, 255, 1.00);
	width: 25px;
	transition: all 500ms ease-in-out;
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	display: inline-block;
	text-align: center;
	overflow: hidden;
	line-height: 1;
	vertical-align: middle;
}

/* Hovered accordion */

#accordionInterfacestacks_in_156275_125 .accordion-toggle:hover,
#mydiv .accordion-toggle:hover {
	background: rgba(33, 72, 126, 1.00);
	color: rgba(255, 255, 255, 1.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-radius: 0px 0px 0px 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	padding-right: 10px;
	
	margin-top: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
}

#accordionInterfacestacks_in_156275_125 .accordion-toggle:hover [class^="fa fa-"],
#mydiv .accordion-toggle:hover [class^="fa fa-"],
#accordionInterfacestacks_in_156275_125 .accordion-toggle:hover i,
#mydiv .accordion-toggle:hover i {
	color: rgba(255, 255, 255, 1.00);
}

/* Clicked accordion */

#accordionInterfacestacks_in_156275_125 .accordion-toggle:active,
#mydiv .accordion-toggle:active {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(33, 72, 126, 1.00);
}

#accordionInterfacestacks_in_156275_125 .accordion-toggle:active [class^="fa fa-"],
#mydiv .accordion-toggle:active [class^="fa fa-"],
#accordionInterfacestacks_in_156275_125 .accordion-toggle:active i,
#mydiv .accordion-toggle:active i {
	color: rgba(255, 255, 255, 1.00);
}

/* Active accordion */

#accordionInterfacestacks_in_156275_125 .accordion-toggle.ui-state-active,
#mydiv .accordion-toggle.ui-state-active {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(33, 72, 126, 1.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-radius: 0px 0px 0px 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	padding-right: 10px;
	
	margin-top: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
}

#accordionInterfacestacks_in_156275_125 .accordion-toggle.ui-state-active [class^="fa fa-"],
#mydiv .accordion-toggle.ui-state-active [class^="fa fa-"],
#accordionInterfacestacks_in_156275_125 .accordion-toggle.ui-state-active i,
#mydiv .accordion-toggle.ui-state-active i {
	color: rgba(255, 255, 255, 1.00);
}

/* @group Open and closed floating icons */

#accordionInterfacestacks_in_156275_125 .accordion-toggle .closedIcon,
#mydiv .accordion-toggle .closedIcon {
	float: right;
	display: inline;
}

#accordionInterfacestacks_in_156275_125 .accordion-toggle .openedIcon,
#mydiv .accordion-toggle .openedIcon {
	float: right;
	display: none;
}

#accordionInterfacestacks_in_156275_125 .accordion-toggle.ui-state-active .closedIcon,
#mydiv .accordion-toggle.ui-state-active .closedIcon {
	display: none;
}

#accordionInterfacestacks_in_156275_125 .accordion-toggle.ui-state-active .openedIcon,
#mydiv .accordion-toggle.ui-state-active .openedIcon {
	display: inline;
}

/* @end */

/* @end */

/* @group Tabs */

ul#tabbedInterfacestacks_in_156275_125 {
	padding: 0;
	margin: 0;
	list-style: none;
}

ul#tabbedInterfacestacks_in_156275_125>li {
	padding: 0;
	margin: 0;
	list-style: none;
}

ul#switcherTabsstacks_in_156275_125 {
	display: block;
	text-align: left;
	padding: 0;
	margin: 0;
	list-style: none;
}

ul#switcherTabsstacks_in_156275_125 li.switcherTab {
	display: inline-block;
	list-style: none;
	width: 20.00%;
}



/* Static tabs */

ul#switcherTabsstacks_in_156275_125 li.switcherTab.ui-state-default a {
	display: block;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 1px !important;
	cursor: pointer;
	background: rgba(99, 136, 212, 1.00);
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	padding-right: 5px;
	font-size: 14px;
	line-height: 1.25em;
	text-align: center;
	text-decoration: none;
	border-radius: 0px 0px 0px 0px;
	color: rgba(255, 255, 255, 1.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	position: relative;
	z-index: 10;
	outline: none;
	
	/* Animate selected elements */
	transition: background 500ms, 
				color 500ms, 
				border 500ms, 
				border-radius 500ms;
	-webkit-transition: background 500ms, 
				color 500ms,
				border 500ms,
				border-radius 500ms;
	-moz-transition: background 500ms, 
				color 500ms,
				border 500ms,
				border-radius 500ms;
}

ul#switcherTabsstacks_in_156275_125 li.switcherTab.ui-state-default a [class^="fa fa-"],
ul#switcherTabsstacks_in_156275_125 li.switcherTab.ui-state-default a i {
	display: block;
	font-size: 48px;
	text-align: center;
	color: rgba(255, 255, 255, 1.00);
	line-height: 1;
	vertical-align: middle;
	margin-top: 0px !important;
	margin-bottom: 10px !important;
	margin-left: 0px !important;
	margin-right: 0px !important;
	
	/* Animate selected elements */
	transition: background 500ms, 
				color 500ms, 
				border 500ms, 
				border-radius 500ms;
	-webkit-transition: background 500ms, 
				color 500ms,
				border 500ms,
				border-radius 500ms;
	-moz-transition: background 500ms, 
				color 500ms,
				border 500ms,
				border-radius 500ms;
}

/* Hovered Tabs */

ul#switcherTabsstacks_in_156275_125 li.switcherTab.ui-state-default a:hover {
	background: rgba(33, 72, 126, 1.00);
	color: rgba(255, 255, 255, 1.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-radius: 0px 0px 0px 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	padding-right: 5px;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 1px !important;
}

ul#switcherTabsstacks_in_156275_125 li.switcherTab.ui-state-default a:hover [class^="fa fa-"],
ul#switcherTabsstacks_in_156275_125 li.switcherTab.ui-state-default a:hover i {
	color: rgba(255, 255, 255, 1.00);
}

/* Clicked tabs */

ul#switcherTabsstacks_in_156275_125 li.switcherTab.ui-state-default a:active {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(33, 72, 126, 1.00);
}

ul#switcherTabsstacks_in_156275_125 li.switcherTab.ui-state-default [class^="fa fa-"],
ul#switcherTabsstacks_in_156275_125 li.switcherTab.ui-state-default i {
	color: rgba(255, 255, 255, 1.00);
}

/* Active Tabs */

ul#switcherTabsstacks_in_156275_125 li.switcherTab.ui-tabs-active.ui-state-active a {
	background: rgba(33, 72, 126, 1.00);
	color: rgba(255, 255, 255, 1.00);
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
	border-radius: 0px 0px 0px 0px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5px;
	padding-right: 5px;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
	margin-left: 0px !important;
	margin-right: 1px !important;
}

ul#switcherTabsstacks_in_156275_125 li.switcherTab.ui-tabs-active.ui-state-active a [class^="fa fa-"],
ul#switcherTabsstacks_in_156275_125 li.switcherTab.ui-tabs-active.ui-state-active a i {
	color: rgba(255, 255, 255, 1.00);
}

/* Hide accordion toggle headings */

#tabPanesstacks_in_156275_125 a.accordion-toggle {
	display: none;
}

/* Hide accordion, when in tabbed mode */

#switcherstacks_in_156275_125.tabbed-layout #accordionInterfacestacks_in_156275_125 {
	display: none;
}

/* Display tabbed interface, when in tabs mode */

#switcherstacks_in_156275_125.tabbed-layout #tabbedInterfacestacks_in_156275_125 {
	display: block;
}

/* Hide tabbed interface, when in accordion mode */

#switcherstacks_in_156275_125.accordion-layout #tabbedInterfacestacks_in_156275_125 {
	display: none;
}


/* Hide open / close accordion heading icons */

ul#switcherTabsstacks_in_156275_125 .closedIcon,
ul#switcherTabsstacks_in_156275_125 .openedIcon {
	display: none;
}

/* @end */

/* @group Content Panels */

#tabbedInterfacestacks_in_156275_125 .accordion-content,
#accordionInterfacestacks_in_156275_125 .accordion-content {
	display: none;
	list-style: none;
	padding: 0;
	text-align: left;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
}

#tabbedInterfacestacks_in_156275_125 .accordion-content .contentInner,
#accordionInterfacestacks_in_156275_125 .accordion-content .contentInner {
	color: rgba(255, 255, 255, 1.00);
	background: rgba(33, 72, 126, 1.00);
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 15px;
	padding-right: 15px;
	border-radius: 0px 0px 0px 0px;
	border-top: 0px solid rgba(255, 255, 255, 1.00);
	border-bottom: 0px solid rgba(255, 255, 255, 1.00);
	border-left: 0px solid rgba(255, 255, 255, 1.00);
	border-right: 0px solid rgba(255, 255, 255, 1.00);
}

/* @end */

/* @group Left / Right Tab Positioning */





/* @end */

/* @group Responsive Behavior */

/* On screens less than our breakpoint, make tabs an accordion */
@media screen and (max-width: 568px) {
	#switcherstacks_in_156275_125 #accordionInterfacestacks_in_156275_125 {
		display: block !important;
	}
	
	#switcherstacks_in_156275_125 #tabbedInterfacestacks_in_156275_125 {
		display: none !important;
	}
}

/* @end */

/* @group Print style settings */

@media print {
	#switcherTabsstacks_in_156275_125 {
		display: none !important;
	}
	
	#switcherWrapperstacks_in_156275_125,
	#switcherstacks_in_156275_125.tabbed-layout .accordion-toggle {
		display: block !important;
	}
	
	#switcherstacks_in_156275_125 .accordion-content {
		display: block !important;
		height: auto !important;
	}
	
	#switcherstacks_in_156275_125 .accordion-content .contentInner {
		border: none !important;
	}
}

/* @end */

/* @group Advanced Settings */

/**/
#switcherstacks_in_156275_125.accordion-layout .accordion-toggle [class^="fa fa-"],
ul#switcherTabsstacks_in_156275_125 li.switcherTab.ui-state-default a [class^="fa fa-"],
#switcherstacks_in_156275_125.accordion-layout .accordion-toggle i,
ul#switcherTabsstacks_in_156275_125 li.switcherTab.ui-state-default a i {
	font-size: inherit;
	color: inherit;
	text-align: left;
	display: inline;
	line-height: inherit;
}
/**/

/**/

/**/
ul#switcherTabsstacks_in_156275_125 li.switcherTab a [class^="fa fa-"],
ul#switcherTabsstacks_in_156275_125 li.switcherTab a i {
	display: none !important;
}
/**/

/* @end */

/* @group Edit Mode Styling */

/*  */

/* @end */
#stacks_in_156275_125 {
	background-color: rgba(27, 44, 74, 1.00);
	margin: 0px 0px 20px 0px;
	padding:  20px;
}
/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

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

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

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




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










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



}



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


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


}






#stacks_in_156275_130 {
	margin: 20px 0px 0px 0px;
	padding:  10px;
}

#stacks_in_156275_133 {
	line-height: 2em;
}

#stacks_in_156275_136 {
	line-height: 2em;
}
/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

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

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

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




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










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



}



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


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


}






#stacks_in_156275_140 {
	margin: 20px 0px 0px 0px;
	padding:  10px;
}

#stacks_in_156275_145 {
	line-height: 2em;
}

#stacks_in_156275_150 {
	line-height: 2em;
}
/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

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

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

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




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










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



}



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


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


}






#stacks_in_156275_156 {
	margin: 20px 0px 0px 0px;
	padding:  10px;
}

#stacks_in_156275_161 {
	line-height: 2em;
}

#stacks_in_156275_164 {
	line-height: 2em;
}
/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

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

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

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




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










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



}



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


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


}






#stacks_in_156275_168 {
	margin: 20px 0px 0px 0px;
	padding:  10px;
}

#stacks_in_156275_173 {
	line-height: 2em;
}

#stacks_in_156275_177 {
	line-height: 2em;
}
/* @group Accordion */

/*  */

/* @end */

/* @group Tabs */

/*  */

/* @end */

/* @group Content Panel */

/*  */

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

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

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




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










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



}



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


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


}






#stacks_in_156275_181 {
	margin: 20px 0px 0px 0px;
	padding:  10px;
}

#stacks_in_156275_184 {
	line-height: 2em;
}

#stacks_in_156275_187 {
	line-height: 2em;
}
#stacks_in_156275_188 .sirecowrapper {
display: block;
padding-top: 0% !important;
padding-bottom: 0% !important;


height:auto;


/*Custom CSS;*/
}

#stacks_in_156275_188 .sirecowrapper a {/*Custom CSS;*/}
#stacks_in_156275_188 .sirecowrapper a:hover {/*Custom CSS;*/}

#stacks_in_156275_188 .sirecocontainer {
display: block;
max-width: 1200px; 
margin-left: auto;
margin-right:auto;
/*Custom CSS;*/
}

#stacks_in_156275_188 .sirecocontainer img {

	padding: 0px 0px 0px 0px;
}


#stacks_in_156275_188 .sirecobefit {
margin-left: -10px;
margin-right: -10px;
}

#stacks_in_156275_188 .sirecospacer {
margin-left: 10px;
margin-right: 10px;
}

#stacks_in_156275_188 .sireco:first-of-type {
float: left;

											/*3columnspecial*/





}
#stacks_in_156275_188 .sireco {



											/*3columnspecial*/



	width: 25%;








	display: block; 
	float: left; clear: none;
	padding-left: 10px;
	padding-right: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
#stacks_in_156275_188 .sireco:last-of-type {
float: right; clear: right;

											/*3columnspecial*/




}

#stacks_in_156275_188 .sireco_bottomslice {
	text-align: center;
	padding: 5%;
	/*Custom CSS;*/
}


@media handheld, only screen and (max-width: 680px) {
#stacks_in_156275_188 .sirecobefit {
margin-left: 10px;
margin-right: 10px;
}
#stacks_in_156275_188 .sireco {
	width: 100%;
	padding: 25px;
				
}
#stacks_in_156275_188 .sireco:first-of-type {
	width: 100%;
	padding: 25px; 
				
/*Custom CSS;*/
}
#stacks_in_156275_188 .sireco:last-of-type { 
	width: 100%;
	padding: 25px; 
				
	/*Custom CSS;*/
}

#stacks_in_156275_188 .sireco:nth-of-type(2n) {
 
}

#stacks_in_156275_188 .sirecocontainer {

}

#stacks_in_156275_188 .sirecowrapper {



height:auto !important;


/*Custom CSS;*/
}

#stacks_in_156275_188 .sireco_bottomslice {
	/*Custom CSS;*/
}

}



#stacks_in_156275_188 {
	background-color: rgba(27, 44, 74, 1.00);
	margin: 0px 0px 20px 0px;
	padding:  20px;
}

#stacks_in_156275_190 {
	margin: 0px 0px 27px 0px;
}

#stacks_in_156275_195 {
	margin: 15px 0px 10px 0px;
}

#stacks_in_156275_198 {
	margin: 25px 0px 0px 0px;
}

#stacks_in_156275_205 {
	margin: 25px 0px 0px 0px;
}

#stacks_in_156275_209 {
	margin: 0px 0px 8px 0px;
}


/* Start doobox Chauffeur css */

.stacks_in_156275_217wrapper{
width: 50px;
margin: 0 auto;

display : none;

opacity:0.7;
}

.stacks_in_156275_217bulter{
cursor: pointer;
border: 1px solid #5A9ECA;
background: #6EB2DE;
width: 50px;
height: 50px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
color: #1B2C4A;
text-align: center;
line-height: 50px;
margin: 5px;
z-index: 1000001;
background: #6EB2DE;
}


.stacks_in_156275_217bulter i {
	display: block;
	margin: 0 auto 0 auto;
	font-size: 20px;
	line-height: 48px; 
	vertical-align: middle;
}


.stacks_in_156275_217bulter:hover{
color: #071836;
background: #7DC1ED; /* Old browsers */
}

/* end doobox Chauffeur css */

/* Start doobox anchor css */








.stacks_in_156275_219anchor1 {

}

.stacks_in_156275_219anchor2 {

}


/* end doobox anchor css *//*
-------------------------------------------
File: 'Blueball FreeStacks' fsspacer.css Style Sheet
Created: 21, November, 2010
Last Modified: 21, November, 2010
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010 Charlie Lockhart/Blueball Design USA
All Rights Reserved
-------------------------------------------
*/

#stacks_in_156275_223headerSpacer {
	display: block;
	width:  1px;
	height: 200px;
	background: transparent;
}