/* 
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);
}.com_bigwhiteduck_stacks_headerpro_stack .text-center{text-align:center}.com_bigwhiteduck_stacks_headerpro_stack .text-left{text-align:left}.com_bigwhiteduck_stacks_headerpro_stack .text-right{text-align:right}.com_bigwhiteduck_stacks_headerpro_stack .text-justify{text-align:justify}.com_bigwhiteduck_stacks_headerpro_stack .text-inherit{text-align:inherit}
.com_bigwhiteduck_stacks_paragraphpro_stack p.text-center{text-align:center}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-left{text-align:left}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-right{text-align:right}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-justify{text-align:justify}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-inherit{text-align:inherit}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_paragraphpro_stack p.small-only-text-center{text-align:center}.com_bigwhiteduck_stacks_paragraphpro_stack p.small-only-text-center+ul{display:table;margin:0 auto;text-align:left}}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_paragraphpro_stack p.text-justify.small-only-just-left{text-align:left!important}}

#stacks_in_1_page9 {
	background-color: rgba(247, 247, 247, 1.00);
	padding:  2px;
}
/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_431_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_431_page9 {
		display: none !important;
	}
}                         

#stacks_in_373_page9 {
	line-height: 2em;
}
/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_376_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_376_page9 {
		display: none !important;
	}
}                 @media only screen and (min-width:0px){#stacks_in_417_page9{ }} 

#stacks_in_418_page9 {
	line-height: 2em;
	font-size: 110%;
	font-weight: bold;
}
/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_538_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_538_page9 {
		display: none !important;
	}
}                 @media only screen and (min-width:0px){#stacks_in_369_page9{ }} 
#stacks_in_369_page9 .effect-label{display:block!important}#stacks_in_369_page9{}#stacks_in_369_page9.readmore-js-section{box-sizing:border-box!important}#stacks_in_369_page9 p{margin-bottom:0!important}  .rm-stacks_in_420_page9.readmore-js-toggle{text-decoration:none;margin-top:0.00px;padding-bottom:1.00rem}.rm-stacks_in_420_page9.readmore-js-toggle.link-center{text-align:center}.rm-stacks_in_420_page9.readmore-js-toggle.link-right{text-align:right;padding-right:6px}.rm-stacks_in_420_page9.readmore-js-toggle.link-left{text-align:left;padding-left:6px}       
/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_102_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_102_page9 {
		display: none !important;
	}
}#stacks_in_95_page9>.s3_row {
	margin: 0 -10px;
}

#stacks_in_95_page9>.s3_row>.s3_column_left {
	width: 22.00%;
}

#stacks_in_95_page9>.s3_row>.s3_column_center {
	width: 55.669998%;
}

#stacks_in_95_page9>.s3_row>.s3_column_right {
	width: 22.33%;
}




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










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




}



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


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


}





/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_101_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_101_page9 {
		display: none !important;
	}
}/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_549_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_549_page9 {
		display: none !important;
	}
}#stacks_in_550_page9 .onthelineouterspace
{
display:block;
padding: 12px 0px 12px 0px;
}
#stacks_in_550_page9 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:1px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#CCCCCC; 
font-size:1%;
-webkit-box-shadow: 0px 0px 2px #DDDDDC;
-moz-box-shadow: 0px 0px 2px #DDDDDC;
box-shadow: 0px 0px 2px #DDDDDC;
opacity:1;

/*CustomCSS;*/
}

/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_551_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_551_page9 {
		display: none !important;
	}
}#stacks_in_559_page9>.s3_row {
	margin: 0 -10px;
}

#stacks_in_559_page9>.s3_row>.s3_column_left {
	width: 22.00%;
}

#stacks_in_559_page9>.s3_row>.s3_column_center {
	width: 55.669998%;
}

#stacks_in_559_page9>.s3_row>.s3_column_right {
	width: 22.33%;
}




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










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




}



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


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


}





/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_560_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_560_page9 {
		display: none !important;
	}
}
#stacks_in_555_page9 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  2px;
	padding:  16px;
}

#stacks_in_557_page9 {
	font-size: 90%;
}
/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_554_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_554_page9 {
		display: none !important;
	}
}#stacks_in_542_page9>.s3_row {
	margin: 0 -10px;
}

#stacks_in_542_page9>.s3_row>.s3_column_left {
	width: 22.00%;
}

#stacks_in_542_page9>.s3_row>.s3_column_center {
	width: 55.669998%;
}

#stacks_in_542_page9>.s3_row>.s3_column_right {
	width: 22.33%;
}




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










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




}



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


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


}





/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_543_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_543_page9 {
		display: none !important;
	}
}/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_378_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_378_page9 {
		display: none !important;
	}
}#stacks_in_377_page9 .onthelineouterspace
{
display:block;
padding: 12px 0px 12px 0px;
}
#stacks_in_377_page9 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:1px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#CCCCCC; 
font-size:1%;
-webkit-box-shadow: 0px 0px 2px #DDDDDC;
-moz-box-shadow: 0px 0px 2px #DDDDDC;
box-shadow: 0px 0px 2px #DDDDDC;
opacity:1;

/*CustomCSS;*/
}

/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_443_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_443_page9 {
		display: none !important;
	}
}#stacks_in_104_page9>.s3_row {
	margin: 0 -10px;
}

#stacks_in_104_page9>.s3_row>.s3_column_left {
	width: 35.00%;
}

#stacks_in_104_page9>.s3_row>.s3_column_right {
	width: 65.000000%;
}




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










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



}



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


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


}






#stacks_in_107_page9 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  2px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  3px;
}
                         

#stacks_in_454_page9 {
	padding:  1px;
}

#stacks_in_455_page9 {
	font-weight: lighter;
}
#stacks_in_272_page9>.s3_row {
	margin: 0 -10px;
}

#stacks_in_272_page9>.s3_row>.s3_column_left {
	width: 64.66%;
}

#stacks_in_272_page9>.s3_row>.s3_column_right {
	width: 35.339996%;
}




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










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



}



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


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


}





                         

#stacks_in_117_page9 {
	padding:  9px;
}

#stacks_in_118_page9 {
	font-size: 105%;
	font-weight: bold;
}
/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_275_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_275_page9 {
		display: none !important;
	}
}
#stacks_in_116_page9 {
	font-size: 90%;
}
/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_103_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_103_page9 {
		display: none !important;
	}
}/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_362_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_362_page9 {
		display: none !important;
	}
}#stacks_in_124_page9>.s3_row {
	margin: 0 -10px;
}

#stacks_in_124_page9>.s3_row>.s3_column_left {
	width: 35.00%;
}

#stacks_in_124_page9>.s3_row>.s3_column_right {
	width: 65.000000%;
}




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










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



}



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


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


}






#stacks_in_138_page9 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  2px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  3px;
}
                         

#stacks_in_447_page9 {
	padding:  1px;
}

#stacks_in_448_page9 {
	font-weight: lighter;
}
#stacks_in_283_page9>.s3_row {
	margin: 0 -10px;
}

#stacks_in_283_page9>.s3_row>.s3_column_left {
	width: 64.66%;
}

#stacks_in_283_page9>.s3_row>.s3_column_right {
	width: 35.339996%;
}




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










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



}



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


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


}





                         

#stacks_in_284_page9 {
	padding:  9px;
}

#stacks_in_285_page9 {
	font-size: 105%;
	font-weight: bold;
}
/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_140_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_140_page9 {
		display: none !important;
	}
}/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_361_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_361_page9 {
		display: none !important;
	}
}#stacks_in_145_page9>.s3_row {
	margin: 0 -10px;
}

#stacks_in_145_page9>.s3_row>.s3_column_left {
	width: 35.00%;
}

#stacks_in_145_page9>.s3_row>.s3_column_right {
	width: 65.000000%;
}




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










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



}



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


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


}






#stacks_in_159_page9 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  2px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  3px;
}
                         

#stacks_in_458_page9 {
	padding:  1px;
}

#stacks_in_459_page9 {
	font-weight: lighter;
}
#stacks_in_294_page9>.s3_row {
	margin: 0 -10px;
}

#stacks_in_294_page9>.s3_row>.s3_column_left {
	width: 64.66%;
}

#stacks_in_294_page9>.s3_row>.s3_column_right {
	width: 35.339996%;
}




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










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



}



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


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


}





                         

#stacks_in_295_page9 {
	padding:  9px;
}

#stacks_in_296_page9 {
	font-size: 105%;
	font-weight: bold;
}
/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_299_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_299_page9 {
		display: none !important;
	}
}/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_161_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_161_page9 {
		display: none !important;
	}
}/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_360_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_360_page9 {
		display: none !important;
	}
}#stacks_in_166_page9>.s3_row {
	margin: 0 -10px;
}

#stacks_in_166_page9>.s3_row>.s3_column_left {
	width: 35.00%;
}

#stacks_in_166_page9>.s3_row>.s3_column_right {
	width: 65.000000%;
}




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










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



}



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


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


}






#stacks_in_180_page9 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  2px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  3px;
}
                         

#stacks_in_465_page9 {
	padding:  1px;
}

#stacks_in_466_page9 {
	font-weight: lighter;
}
#stacks_in_305_page9>.s3_row {
	margin: 0 -10px;
}

#stacks_in_305_page9>.s3_row>.s3_column_left {
	width: 64.66%;
}

#stacks_in_305_page9>.s3_row>.s3_column_right {
	width: 35.339996%;
}




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










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



}



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


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


}





                         

#stacks_in_306_page9 {
	padding:  9px;
}

#stacks_in_307_page9 {
	font-size: 105%;
	font-weight: bold;
}
/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_310_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_310_page9 {
		display: none !important;
	}
}/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_182_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_182_page9 {
		display: none !important;
	}
}/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_359_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_359_page9 {
		display: none !important;
	}
}#stacks_in_187_page9>.s3_row {
	margin: 0 -10px;
}

#stacks_in_187_page9>.s3_row>.s3_column_left {
	width: 35.00%;
}

#stacks_in_187_page9>.s3_row>.s3_column_right {
	width: 65.000000%;
}




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










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



}



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


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


}






#stacks_in_201_page9 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  2px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  3px;
}
                         

#stacks_in_479_page9 {
	padding:  1px;
}

#stacks_in_480_page9 {
	font-weight: lighter;
}
#stacks_in_316_page9>.s3_row {
	margin: 0 -10px;
}

#stacks_in_316_page9>.s3_row>.s3_column_left {
	width: 64.66%;
}

#stacks_in_316_page9>.s3_row>.s3_column_right {
	width: 35.339996%;
}




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










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



}



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


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


}





                         

#stacks_in_317_page9 {
	padding:  9px;
}

#stacks_in_318_page9 {
	font-size: 105%;
	font-weight: bold;
}
/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_321_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_321_page9 {
		display: none !important;
	}
}/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_203_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_203_page9 {
		display: none !important;
	}
}/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_358_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_358_page9 {
		display: none !important;
	}
}#stacks_in_208_page9>.s3_row {
	margin: 0 -10px;
}

#stacks_in_208_page9>.s3_row>.s3_column_left {
	width: 35.00%;
}

#stacks_in_208_page9>.s3_row>.s3_column_right {
	width: 65.000000%;
}




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










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



}



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


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


}






#stacks_in_222_page9 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  2px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  3px;
}
                         

#stacks_in_483_page9 {
	padding:  1px;
}

#stacks_in_484_page9 {
	font-weight: lighter;
}
#stacks_in_327_page9>.s3_row {
	margin: 0 -10px;
}

#stacks_in_327_page9>.s3_row>.s3_column_left {
	width: 64.66%;
}

#stacks_in_327_page9>.s3_row>.s3_column_right {
	width: 35.339996%;
}




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










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



}



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


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


}





                         

#stacks_in_328_page9 {
	padding:  9px;
}

#stacks_in_329_page9 {
	font-size: 105%;
	font-weight: bold;
}
/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_332_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_332_page9 {
		display: none !important;
	}
}/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_224_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_224_page9 {
		display: none !important;
	}
}/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_357_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_357_page9 {
		display: none !important;
	}
}#stacks_in_229_page9>.s3_row {
	margin: 0 -10px;
}

#stacks_in_229_page9>.s3_row>.s3_column_left {
	width: 35.00%;
}

#stacks_in_229_page9>.s3_row>.s3_column_right {
	width: 65.000000%;
}




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










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



}



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


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


}






#stacks_in_243_page9 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  2px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  3px;
}
                         

#stacks_in_472_page9 {
	padding:  1px;
}

#stacks_in_473_page9 {
	font-weight: lighter;
}
#stacks_in_338_page9>.s3_row {
	margin: 0 -10px;
}

#stacks_in_338_page9>.s3_row>.s3_column_left {
	width: 64.66%;
}

#stacks_in_338_page9>.s3_row>.s3_column_right {
	width: 35.339996%;
}




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










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



}



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


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


}





                         

#stacks_in_339_page9 {
	padding:  9px;
}

#stacks_in_340_page9 {
	font-size: 105%;
	font-weight: bold;
}
/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_343_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_343_page9 {
		display: none !important;
	}
}/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_245_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_245_page9 {
		display: none !important;
	}
}#stacks_in_382_page9 .onthelineouterspace
{
display:block;
padding: 12px 0px 12px 0px;
}
#stacks_in_382_page9 .ontheline
{
display:block; 
height:auto; 

border-bottom-style:solid; 
border-bottom-width:1px; 
border-bottom-color:#FFFFFF; 
border-top-style:solid; 
border-top-width:1px; 
border-top-color:#CCCCCC; 
font-size:1%;
-webkit-box-shadow: 0px 0px 2px #DDDDDC;
-moz-box-shadow: 0px 0px 2px #DDDDDC;
box-shadow: 0px 0px 2px #DDDDDC;
opacity:1;

/*CustomCSS;*/
}

/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_401_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_401_page9 {
		display: none !important;
	}
}                         

#stacks_in_402_page9 {
	margin:  1px;
	padding:  2px;
}
                         

#stacks_in_487_page9 {
	padding:  2px;
}
/*  */

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_421_page9 {
	height: 30.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_421_page9 {
		display: none !important;
	}
}
#stacks_out_540_page9 {
	width: 65%;
}

#stacks_in_540_page9 {
	background-color: rgba(240, 243, 243, 1.00);
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  2px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}

#stacks_in_541_page9 {
	font-size: 105%;
}
/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_539_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_539_page9 {
		display: none !important;
	}
}#stacks_in_394_page9>.s3_row {
	margin: 0 -10px;
}

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

#stacks_in_394_page9>.s3_row>.s3_column_center {
	width: 60.000000%;
}

#stacks_in_394_page9>.s3_row>.s3_column_right {
	width: 20.00%;
}




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










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




}



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


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


}





/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_400_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_400_page9 {
		display: none !important;
	}
}/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_422_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_422_page9 {
		display: none !important;
	}
}/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_428_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_428_page9 {
		display: none !important;
	}
}/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_356_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_356_page9 {
		display: none !important;
	}
}#stacks_in_254_page9>.s3_row {
	margin: 0 -10px;
}

#stacks_in_254_page9>.s3_row>.s3_column_left {
	width: 35.00%;
}

#stacks_in_254_page9>.s3_row>.s3_column_right {
	width: 65.000000%;
}




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










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



}



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


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


}





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


#topBoxTriggerRegionstacks_in_423_page9 #topBoxTriggerContentstacks_in_423_page9 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_423_page9 #topBoxTriggerContentstacks_in_423_page9 img {
	display: block;
	margin: 0 auto;
}

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

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

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

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

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

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

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

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

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



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


#topBoxContentWrapperstacks_in_423_page9 {
	display: none;
}








#stacks_in_268_page9 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  2px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  3px;
}
                         

#stacks_in_531_page9 {
	padding:  1px;
}

#stacks_in_532_page9 {
	font-weight: lighter;
}
#stacks_in_349_page9>.s3_row {
	margin: 0 -10px;
}

#stacks_in_349_page9>.s3_row>.s3_column_left {
	width: 64.66%;
}

#stacks_in_349_page9>.s3_row>.s3_column_right {
	width: 35.339996%;
}




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










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



}



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


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


}





                         

#stacks_in_350_page9 {
	padding:  9px;
}

#stacks_in_351_page9 {
	font-size: 105%;
	font-weight: bold;
}
/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_354_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_354_page9 {
		display: none !important;
	}
}/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_271_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_271_page9 {
		display: none !important;
	}
}/*  */

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_270_page9 {
	height: 40.00px;
}

/*  */

/*  */

/*  */

/*  */

/*  */@media print {
	#spacerStackstacks_in_270_page9 {
		display: none !important;
	}
}