/*
 * text-align
 */

.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-justify{text-align:justify}.text-nomargin-top{margin-top:0}.text-nomargin-top.text >:first-child{margin-top:0}.text-nomargin-bottom{margin-bottom:0}.text-nomargin-bottom.text >:last-child{margin-bottom:0}


/*
TopBox is derived from Nivo Lightbox v1.3.1, created by Dev7studios:
http://dev7studios.com/nivo-lightbox

TopBox is updated for jQuery 3 and has additional features / content support.
Maintained by William Woodgate

TopBox homepage:
https://willwoodgate.com/projects/topbox/

Free to use and abuse under the MIT license.
http://www.opensource.org/licenses/mit-license.php
*/
/* Core CSS to make the lightbox work */
.topbox_open .topbox_blur_wrapper {
  filter: blur(1px);
}

.topbox_overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99995;
  width: 100%;
  height: 100%;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.topbox_overlay,
.topbox_overlay *,
.topbox_overlay *:before,
.topbox_overlay *:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.topbox_fill {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.topbox_overlay.topbox_open {
  visibility: visible;
  opacity: 1;
}

.topbox_wrapper {
  position: absolute;
  z-index: 99996;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.topbox_content {
  position: relative;
  z-index: 99998;
  height: 80vh;
  width: 80vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbox_title_wrap {
  position: relative;
  z-index: 99998;
}

.topbox_nav {
  display: none;
}

.topbox_prev,
.topbox_next,
.topbox_close {
  position: absolute;
  z-index: 99999;
  background: none;
  border: none;
  cursor: pointer;
}

.topbox_prev {
  left: 0;
}

.topbox_next {
  right: 0;
}

.topbox_close {
  top: 0;
  right: 0;
}

.topbox_close_layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99997;
}

.topbox_image {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: relative;
  margin: auto;
}

.topbox_html5_audio_wrap {
  width: 100%;
}

.topbox_html5audio {
  width: 100%;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
}

/* .topbox_html5_video_wrap {
  width: 100%;
} */

.topbox_html5video {
  margin: auto;
  max-width: 100%;
  height: auto;
}

.topbox_iframe_wrap,
.topbox_iframe,
.topbox_pdf_wrap,
.topbox_pdf {
  width: 100%;
  height: 100%;
  display: block;
}

.topbox_pdf_mobile_message {
  display: inline-block;
  margin: auto;
}

.topbox_embedded_web_video {
  position: relative;
  padding-bottom: 56.25% !important;
  height: 0;
  width: 100%;
  overflow: hidden;
}

.topbox_embedded_web_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.topbox_video_iframe_wrap {
  position: relative;
  padding-bottom: 56.25% !important;
  height: 0;
  width: 100%;
}

iframe.topbox_video_iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
Fix for video sizing, if using the Plyr plugin for custom video controls
https://github.com/sampotts/plyr
*/
.topbox_content .plyr {
  min-width: 100%;
}

.plyr__video-wrapper {
  max-height: 80vh;
  max-width: 80vw;
}


.topbox_html5_video_wrap video {
  max-width: 100%; 
  max-height: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.topbox_inline,
.topbox_ajax {
  max-height: 100%;
  width: 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 */
}

.topbox_error {
  display: table;
  text-align: center;
  width: 100%;
  height: 100%;
  color: #fff;
}

.topbox_error p {
  display: table-cell;
  vertical-align: middle;
}

.topbox_notouch .topbox_effect_fade,
.topbox_notouch .topbox_effect_slideLeft,
.topbox_notouch .topbox_effect_slideRight,
.topbox_notouch .topbox_effect_slideUp,
.topbox_notouch .topbox_effect_slideDown {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

/* slideLeft / slideRight / slideUp / slideDown */
.topbox_notouch .topbox_effect_slideLeft .topbox_content,
.topbox_notouch .topbox_effect_slideRight .topbox_content,
.topbox_notouch .topbox_effect_slideUp .topbox_content,
.topbox_notouch .topbox_effect_slideDown .topbox_content {
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -moz-transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -ms-transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -o-transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

.topbox_notouch .topbox_effect_slideLeft .topbox_content {
  -webkit-transform: translateX(-20%);
  -moz-transform: translateX(-20%);
  -ms-transform: translateX(-20%);
  transform: translateX(-20%);
}

.topbox_notouch .topbox_effect_slideRight .topbox_content {
  -webkit-transform: translateX(20%);
  -moz-transform: translateX(20%);
  -ms-transform: translateX(20%);
  transform: translateX(20%);
}

.topbox_notouch .topbox_effect_slideLeft.topbox_open .topbox_content,
.topbox_notouch .topbox_effect_slideRight.topbox_open .topbox_content {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.topbox_notouch .topbox_effect_slideDown .topbox_content {
  -webkit-transform: translateY(-20%);
  -moz-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  transform: translateY(-20%);
}

.topbox_notouch .topbox_effect_slideUp .topbox_content {
  -webkit-transform: translateY(20%);
  -moz-transform: translateY(20%);
  -ms-transform: translateY(20%);
  transform: translateY(20%);
}

.topbox_notouch .topbox_effect_slideUp.topbox_open .topbox_content,
.topbox_notouch .topbox_effect_slideDown.topbox_open .topbox_content {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* Our default lightbox skin (darkroom) */
.topbox_open .topbox_blur_wrapper {
  filter: blur(1px);
}

.topbox_skin_darkroom .topbox_fill {
  background: rgba(0, 0, 0, 0.8);
}

.topbox_skin_darkroom .topbox_pdf_mobile_message {
  color: #FFFFFF;
  font-size: 18px;
}

.topbox_skin_darkroom .topbox_pdf_mobile_message a,
.topbox_skin_darkroom .topbox_pdf_mobile_message a:visited {
  color: #FFFFFF;
  text-decoration: underline;
}

.topbox_skin_darkroom .topbox_nav {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.topbox_skin_darkroom .topbox_prev,
.topbox_skin_darkroom .topbox_next,
.topbox_skin_darkroom .topbox_close {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 45px;
  opacity: 0.5;
  transition: all 300ms ease-in;
  padding: 2vw;
  line-height: 1;
}

.topbox_skin_darkroom .topbox_close {
  margin-top: -10px;
  font-size: 55px;
}

.topbox_skin_darkroom .topbox_prev:hover,
.topbox_skin_darkroom .topbox_next:hover,
.topbox_skin_darkroom .topbox_close:hover {
  opacity: 1;
}

.topbox_skin_darkroom .topbox_prev:before {
  content: "←"
}

.topbox_skin_darkroom .topbox_next:before {
  content: "→"
}

.topbox_skin_darkroom .topbox_close:before {
  content: "×";
}

.topbox_skin_darkroom .topbox_title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.5;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  background: #000;
  color: #fff;
  padding: 7px 15px;
  margin-top: 7px;
  border-radius: 30px;
  text-align: center;
  display: inline-block;
}
.com_joeworkman_stacks_imagesafe2_stack img{width:auto;height:auto;max-width:100%}img{pointer-events:none;-webkit-touch-callout:none;-webkit-user-select:none}
.com_joeworkman_stacks_fontawesome_stack .jw-wrapper{margin:0;text-align:left}.com_joeworkman_stacks_fontawesome_stack .jw-wrapper.jw-center{text-align:center}.com_joeworkman_stacks_fontawesome_stack .jw-wrapper.jw-right{text-align:right}.com_joeworkman_stacks_fontawesome_stack i.fa,.com_joeworkman_stacks_fontawesome_stack .fa-stack{-webkit-transition:color 300ms ease 0s;transition:color 300ms ease 0s}.com_joeworkman_stacks_fontawesome_stack i.fa.fa-spin,.com_joeworkman_stacks_fontawesome_stack .fa-stack.fa-spin{padding:0.2em;-webkit-box-sizing:content-box;box-sizing:content-box}.com_joeworkman_stacks_fontawesome_stack i.fa.fa-rotate-45,.com_joeworkman_stacks_fontawesome_stack .fa-stack.fa-rotate-45{padding:0.2em;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.com_joeworkman_stacks_fontawesome_stack i.fa.fa-rotate-135,.com_joeworkman_stacks_fontawesome_stack .fa-stack.fa-rotate-135{padding:0.2em;-webkit-transform:rotate(135deg);transform:rotate(135deg)}.com_joeworkman_stacks_fontawesome_stack i.fa.fa-rotate-225,.com_joeworkman_stacks_fontawesome_stack .fa-stack.fa-rotate-225{padding:0.2em;-webkit-transform:rotate(225deg);transform:rotate(225deg)}.com_joeworkman_stacks_fontawesome_stack i.fa.fa-rotate-315,.com_joeworkman_stacks_fontawesome_stack .fa-stack.fa-rotate-315{padding:0.2em;-webkit-transform:rotate(315deg);transform:rotate(315deg)}.com_joeworkman_stacks_fontawesome_stack .fa-stack.fa-border{padding:0}.com_joeworkman_stacks_fontawesome_stack a{text-decoration:none}










.rwml-menu-imported {
	display: none;
}

#stacks_in_89434_2 {
	display: none !important;
}


/* Start by hiding all translatable items. This class is applied via jQuery in the scripts-global.js file */
.rwml-translatable {
	display: none;
}


/* If the content with a selector of '.rwml-translatable' is equal to the body class and language attribute, display it */
body.DE .rwml-translatable:lang(DE) {
	display: inherit;
}



/* If the content with a selector of '.rwml-translatable' is equal to the body class and language attribute, display it */
body.EN .rwml-translatable:lang(EN) {
	display: inherit;
}















#stacks_in_89434_4 {
	display: none;
}

#rwml-menu, .rwml-menu {
	display: none !important;
}

#stacks_in_95738_4{visibility:hidden}













#rwml_switcher_button_group_stacks_in_95738_6_2 {
	padding: 0;
	margin: 0;
	list-style: none;
	
	
	
	justify-content: flex-end;
	
	
	display: flex;
}

#rwml_switcher_button_group_stacks_in_95738_6_2 li {
	overflow: hidden;
}

#rwml_switcher_button_group_stacks_in_95738_6_2 li:last-child {
		border-top-right-radius: 10px;
		border-bottom-right-radius: 10px;
}

#rwml_switcher_button_group_stacks_in_95738_6_2 li:first-child {
		border-top-left-radius: 10px;
		border-bottom-left-radius: 10px;
}

#rwml_switcher_button_group_stacks_in_95738_6_2 a {
	display: inline-block;
	padding: 4px 13px;
	font-size: 15px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 1.00);
	background-color: rgba(109, 109, 113, 1.00);
	border: 1px solid rgba(255, 255, 255, 1.00);
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	transition: all 300ms ease-in-out;
}

#rwml_switcher_button_group_stacks_in_95738_6_2 a:hover {
	color: rgba(207, 28, 26, 1.00);
	background-color: rgba(255, 255, 255, 1.00);
	border-color: rgba(109, 109, 113, 1.00);
	text-decoration: none;
}

#rwml_switcher_button_group_stacks_in_95738_6_2 a:active,
#rwml_switcher_button_group_stacks_in_95738_6_2 a.button_active {
	color: rgba(255, 255, 255, 1.00);
	background-color: rgba(207, 28, 26, 1.00);
	border-color: rgba(255, 255, 255, 1.00);
}

#rwml_switcher_button_group_stacks_in_95738_6_2 a.button_active {
	pointer-events: none;
}



















@media print {
	#switchContainerstacks_in_95738_6_2 {
		display: none !important;
	}
}


#stacks_in_95738_7{visibility:hidden}
#stacks_in_95738_212>.s3_row {
	margin: 0 -0px;
}

#stacks_in_95738_212>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_95738_212>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_95738_212>.s3_row>.s3_column_right {
	width: 33.33%;
}

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








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



}



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


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


}




#stacks_in_95738_212 {
	background-color: rgba(204, 204, 204, 1.00);
}
#hoverBoxWrapperstacks_in_95738_254 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

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

#hoverBoxStaticstacks_in_95738_254 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_95738_254 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_95738_254 a,
#hoverBoxLinkstacks_in_95738_254 a:hover {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_95738_254.touchDeviceDetected #hoverBoxStaticstacks_in_95738_254 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_95738_254.touchDeviceDetected #hoverBoxRolloverstacks_in_95738_254 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_95738_254.noTouchDeviceDetected #hoverBoxRolloverstacks_in_95738_254 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

#hoverBoxWrapperstacks_in_95738_254.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_95738_254 {
	opacity: 1.00;
}






















#stacks_in_95738_254 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width: 1px 3px 1px 3px;
}



#stacks_in_95738_255 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95738_261 {
	font-size: 90%;
}



#stacks_in_95738_262 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95738_265 {
	font-size: 90%;
}



#stacks_in_95738_267 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95738_268 {
	background-color: rgba(241, 241, 241, 1.00);
}

#stacks_in_95738_270 {
	font-size: 90%;
}



#stacks_in_95738_271 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95738_272 {
	background-color: rgba(241, 241, 241, 1.00);
}

#stacks_in_95738_274 {
	font-size: 90%;
}
#hoverBoxWrapperstacks_in_95738_234 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

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

#hoverBoxStaticstacks_in_95738_234 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_95738_234 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_95738_234 a,
#hoverBoxLinkstacks_in_95738_234 a:hover {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_95738_234.touchDeviceDetected #hoverBoxStaticstacks_in_95738_234 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_95738_234.touchDeviceDetected #hoverBoxRolloverstacks_in_95738_234 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_95738_234.noTouchDeviceDetected #hoverBoxRolloverstacks_in_95738_234 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

#hoverBoxWrapperstacks_in_95738_234.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_95738_234 {
	opacity: 1.00;
}






















#stacks_in_95738_234 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width: 1px 3px 1px 3px;
}



#stacks_in_95738_235 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95738_238 {
	font-size: 90%;
}



#stacks_in_95738_239 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95738_242 {
	font-size: 90%;
}



#stacks_in_95738_244 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95738_245 {
	background-color: rgba(241, 241, 241, 1.00);
}

#stacks_in_95738_247 {
	font-size: 90%;
}



#stacks_in_95738_248 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95738_249 {
	background-color: rgba(241, 241, 241, 1.00);
}

#stacks_in_95738_251 {
	font-size: 90%;
}
#hoverBoxWrapperstacks_in_95738_214 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

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

#hoverBoxStaticstacks_in_95738_214 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_95738_214 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_95738_214 a,
#hoverBoxLinkstacks_in_95738_214 a:hover {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_95738_214.touchDeviceDetected #hoverBoxStaticstacks_in_95738_214 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_95738_214.touchDeviceDetected #hoverBoxRolloverstacks_in_95738_214 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_95738_214.noTouchDeviceDetected #hoverBoxRolloverstacks_in_95738_214 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

#hoverBoxWrapperstacks_in_95738_214.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_95738_214 {
	opacity: 1.00;
}






















#stacks_in_95738_214 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width: 1px 3px 1px 3px;
}



#stacks_in_95738_215 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95738_218 {
	font-size: 90%;
}



#stacks_in_95738_219 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95738_222 {
	font-size: 90%;
}



#stacks_in_95738_224 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95738_225 {
	background-color: rgba(241, 241, 241, 1.00);
}

#stacks_in_95738_227 {
	font-size: 90%;
}



#stacks_in_95738_228 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95738_229 {
	background-color: rgba(241, 241, 241, 1.00);
}

#stacks_in_95738_231 {
	font-size: 90%;
}
#stacks_in_95897{visibility:hidden}
#stacks_in_95902>.s3_row {
	margin: 0 -0px;
}

#stacks_in_95902>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_95902>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_95902>.s3_row>.s3_column_right {
	width: 33.33%;
}

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








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



}



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


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


}




.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95909 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95909 {
		display: none !important;
	}
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95907 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95907 {
		display: none !important;
	}
}

#stacks_in_95903 {
	border: solid rgba(207, 28, 26, 1.00);
	border-width: 0px 0px 10px 0px;
}

#stacks_out_95903 {
	margin-left:0;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95906 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95906 {
		display: none !important;
	}
}

#stacks_in_95911 {
	padding:  20px;
}



#stacks_in_95913 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95914 {
	padding:  20px;
}

#stacks_in_95917 {
	font-size: 140%;
}



#stacks_in_95918 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95915 {
	padding:  20px;
}

#stacks_in_95920 {
	font-size: 140%;
}

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_95927 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_95927 {
		display: none !important;
	}
}
#stacks_in_95758_2{visibility:hidden}

#stacks_in_95758_2 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width: 0px 0px 3px 0px;
}
#stacks_in_95758_20 .onthelineouterspace
{
display:block;
padding: 12px 0px 12px 0px;
}
#stacks_in_95758_20 .ontheline
{
display:block; 
height:auto; 

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

/*CustomCSS;*/
}


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



#stacks_in_95758_6 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95758_9 {
	font-size: 110%;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_95758_10 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_95758_10 {
		display: none !important;
	}
}



#stacks_in_95758_13 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95758_16 {
	font-size: 110%;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_95758_17 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_95758_17 {
		display: none !important;
	}
}




#stacks_in_95825 .split_wrap1 h1, #stacks_in_95825 .split_wrap1 h2, #stacks_in_95825 .split_wrap1 h3, #stacks_in_95825 .split_wrap1 h4, #stacks_in_95825 .split_wrap1 h5, #stacks_in_95825 .split_wrap1 h6, .split_wrap1 h1, .split_wrap1 h2, .split_wrap1 h3, .split_wrap1 h4, .split_wrap1 h5, .split_wrap1 h6 { 
	border-style: solid;
	border-width: 0 0 0px 0;
	border-color: rgba(51, 51, 51, 1.00);
 
background: rgba(0, 64, 128, 1.00);
background: -moz-linear-gradient(-45deg, rgba(0, 64, 128, 1.00) 0%, rgba(0, 127, 255, 1.00) 50%, rgba(0, 125, 223, 1.00) 100%); 
background: -webkit-linear-gradient(-45deg, rgba(0, 64, 128, 1.00) 0%, rgba(0, 127, 255, 1.00) 50%, rgba(0, 125, 223, 1.00) 100%); 
background: linear-gradient(-45deg, rgba(0, 64, 128, 1.00) 0%, rgba(0, 127, 255, 1.00) 50%, rgba(0, 125, 223, 1.00) 100%);  
background-repeat: no-repeat; background-attachment: fixed; 
 	
margin-bottom: 0px !important; margin-top: 2px !important; 
margin-right: 0px !important; margin-left: 0px !important; 

	line-height:  115%;
	 
}

 

#stacks_in_95825 .split_wrap1, .split_wrap1 {  
	display: table; width: 100%; line-height:115%; 
	/*customcss*/ 
}

#stacks_in_95825 .split_left1, .split_left1 { 
	display: table-cell; 
	min-width: 100px;
	width: 80.00%; 
	padding-right: 5%;
	vertical-align: top;
 
 

	
}

#stacks_in_95825 .split_right1, .split_right1 {	
	display: table-cell; 
	min-width: 100px;
	width: auto; 
	text-align: left;
	vertical-align: top;
 
 

	
}

#stacks_in_95825 .split_left1 h1, #stacks_in_95825 .split_left1 h2, #stacks_in_95825 .split_left1 h3, #stacks_in_95825 .split_left1 h4, #stacks_in_95825 .split_left1 h5, #stacks_in_95825 .split_left1 h6, .split_left1 h1, .split_left1 h2, .split_left1 h3, .split_left1 h4, .split_left1 h5, .split_left1 h6 { 
 background-color: rgba(237, 237, 237, 1.00); color: rgba(0, 0, 0, 1.00);  padding: 5px 5px; 
 } 

#stacks_in_95825 .split_right1 h1, #stacks_in_95825 .split_right1 h2, #stacks_in_95825 .split_right1 h3, #stacks_in_95825 .split_right1 h4, #stacks_in_95825 .split_right1 h5, #stacks_in_95825 .split_right1 h6, .split_right1 h1 .split_right1 h2, .split_right1 h3, .split_right1 h4, .split_right1 h5, .split_right1 h6 { 
 padding: 5px 5px;
 }

#stacks_in_95825 .clear1, .clear1 { 
	display: block;
	clear: none;
	border-style: solid;
	border-width: 0 0 0px 0;
	border-color: rgba(51, 51, 51, 1.00);
}

#stacks_in_95825 .split_wrap1 .text_stack, .split_wrap1 .text_stack {
	text-align: left;
	margin-top: 0px; margin-bottom: 15px;
	margin-left: 0px; margin-right: 0px;

	
}

#stacks_in_95825 .split_wrap1 img, .split_wrap1 img { 
  transition: all 1s ease-in-out; 
  
   width: 100vw; object-fit: cover; 


   
}

#stacks_in_95825 .split_wrap1:hover img, .split_wrap1:hover img {
 -webkit-transform: scale(1.05); transform: scale(1.05);   

  
}

#stacks_in_95825 .split_dropzone1, .split_dropzone1 { 
	margin-top: 0px; margin-bottom: 0px;
	margin-left: 0px; margin-right: 0px;

	
}

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

#stacks_in_95825 .split_wrap1 h1, #stacks_in_95825 .split_wrap1 h2, #stacks_in_95825 .split_wrap1 h3, #stacks_in_95825 .split_wrap1 h4, #stacks_in_95825 .split_wrap1 h5, #stacks_in_95825 .split_wrap1 h6, .split_wrap1 h1, .split_wrap1 h2, .split_wrap1 h3, .split_wrap1 h4, .split_wrap1 h5, .split_wrap1 h6 { 
	
	 	
}

	#stacks_in_95825 .split_left1, .split_left1 {
	 width: 100% !important; min-width: 0px !important; display: block; padding-right: 0px;  
	 
	 
	 
	 text-align: left;  
	
	}
	#stacks_in_95825 .split_right1, .split_right1 { 
	 width: 100% !important; min-widht: 0px !important; display: block;  
	 text-align: right;  
	 
	 
	 
	
	}
	
#stacks_in_95825 .split_left1 h1, #stacks_in_95825 .split_left1 h2, #stacks_in_95825 .split_left1 h3, #stacks_in_95825 .split_left1 h4, #stacks_in_95825 .split_left1 h5, #stacks_in_95825 .split_left1 h6, .split_left1 h1, .split_left1 h2, .split_left1 h3, .split_left1 h4, .split_left1 h5, .split_left1 h6 {}

#stacks_in_95825 .split_right1 h1, #stacks_in_95825 .split_right1 h2, #stacks_in_95825 .split_right1 h3, #stacks_in_95825 .split_right1 h4, #stacks_in_95825 .split_right1 h5, #stacks_in_95825 .split_right1 h6, .split_right1 h1 .split_right1 h2, .split_right1 h3, .split_right1 h4, .split_right1 h5, .split_right1 h6 {
}
}

@media screen and (max-width: 480px) {
	#stacks_in_95825 .split_wrap1 img, .split_wrap1 img { float: none;

}
}


#stacks_in_95825 {
	background-color: rgba(109, 109, 113, 1.00);
}

#stacks_in_95836 {
	padding:  20px;
}



#stacks_in_95838 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95826 {
	padding:  20px;
}

#stacks_in_95840 {
	font-size: 140%;
}



#stacks_in_95841 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95827 {
	padding:  20px;
}

#stacks_in_95843 {
	font-size: 140%;
}

#stacks_out_95845 {
	width: 400px;
}

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_95849 {
	height: 50.00px;
}




























@media print {
	#spacerStackstacks_in_95849 {
		display: none !important;
	}
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95889 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95889 {
		display: none !important;
	}
}



#stacks_in_95856 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95857 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_95860 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95861 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95861 {
		display: none !important;
	}
}

#stacks_in_95830 {
	border: solid rgba(207, 28, 26, 1.00);
	border-width: 0px 0px 0px 10px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_95862 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95863 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95863 {
		display: none !important;
	}
}




#stacks_in_95864 .split_wrap2 h1, #stacks_in_95864 .split_wrap2 h2, #stacks_in_95864 .split_wrap2 h3, #stacks_in_95864 .split_wrap2 h4, #stacks_in_95864 .split_wrap2 h5, #stacks_in_95864 .split_wrap2 h6, .split_wrap2 h1, .split_wrap2 h2, .split_wrap2 h3, .split_wrap2 h4, .split_wrap2 h5, .split_wrap2 h6 { 
	border-style: solid;
	border-width: 0 0 0px 0;
	border-color: rgba(51, 51, 51, 1.00);
  	
margin-bottom: 0px !important; margin-top: 2px !important; 
margin-right: 0px !important; margin-left: 0px !important; 

	line-height:  115%;
	 
}

 

#stacks_in_95864 .split_wrap2, .split_wrap2 {  
	display: table; width: 100%; line-height:115%; 
	/*customcss*/ 
}

#stacks_in_95864 .split_left2, .split_left2 { 
	display: table-cell; 
	min-width: 75px;
	width: 15.96%; 
	padding-right: 5%;
	vertical-align: top;
 text-align: right;   
 

	
}

#stacks_in_95864 .split_right2, .split_right2 {	
	display: table-cell; 
	min-width: 100px;
	width: auto; 
	text-align: left;
	vertical-align: middle;
 
 

	
}

#stacks_in_95864 .split_left2 h1, #stacks_in_95864 .split_left2 h2, #stacks_in_95864 .split_left2 h3, #stacks_in_95864 .split_left2 h4, #stacks_in_95864 .split_left2 h5, #stacks_in_95864 .split_left2 h6, .split_left2 h1, .split_left2 h2, .split_left2 h3, .split_left2 h4, .split_left2 h5, .split_left2 h6 { 
 padding: 5px 5px; 
 } 

#stacks_in_95864 .split_right2 h1, #stacks_in_95864 .split_right2 h2, #stacks_in_95864 .split_right2 h3, #stacks_in_95864 .split_right2 h4, #stacks_in_95864 .split_right2 h5, #stacks_in_95864 .split_right2 h6, .split_right2 h1 .split_right2 h2, .split_right2 h3, .split_right2 h4, .split_right2 h5, .split_right2 h6 { 
 padding: 5px 5px;
 }

#stacks_in_95864 .clear2, .clear2 { 
	display: block;
	clear: none;
	border-style: solid;
	border-width: 0 0 0px 0;
	border-color: rgba(51, 51, 51, 1.00);
}

#stacks_in_95864 .split_wrap2 .text_stack, .split_wrap2 .text_stack {
	text-align: left;
	margin-top: 0px; margin-bottom: 15px;
	margin-left: 0px; margin-right: 0px;

	
}

#stacks_in_95864 .split_wrap2 img, .split_wrap2 img { 
  transition: all 1s ease-in-out; 
  
  


   
}

#stacks_in_95864 .split_wrap2:hover img, .split_wrap2:hover img {
  

  
}

#stacks_in_95864 .split_dropzone2, .split_dropzone2 { 
	margin-top: 15px; margin-bottom: 15px;
	margin-left: 0px; margin-right: 0px;

	
}

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

#stacks_in_95864 .split_wrap2 h1, #stacks_in_95864 .split_wrap2 h2, #stacks_in_95864 .split_wrap2 h3, #stacks_in_95864 .split_wrap2 h4, #stacks_in_95864 .split_wrap2 h5, #stacks_in_95864 .split_wrap2 h6, .split_wrap2 h1, .split_wrap2 h2, .split_wrap2 h3, .split_wrap2 h4, .split_wrap2 h5, .split_wrap2 h6 { 
	
	 	
}

	#stacks_in_95864 .split_left2, .split_left2 {
	 width: 100% !important; min-width: 0px !important; display: block; padding-right: 0px;  
	 
	 
	 
	 text-align: left;  
	
	}
	#stacks_in_95864 .split_right2, .split_right2 { 
	 width: 100% !important; min-widht: 0px !important; display: block;  
	 text-align: right;  
	 
	 
	 
	
	}
	
#stacks_in_95864 .split_left2 h1, #stacks_in_95864 .split_left2 h2, #stacks_in_95864 .split_left2 h3, #stacks_in_95864 .split_left2 h4, #stacks_in_95864 .split_left2 h5, #stacks_in_95864 .split_left2 h6, .split_left2 h1, .split_left2 h2, .split_left2 h3, .split_left2 h4, .split_left2 h5, .split_left2 h6 {}

#stacks_in_95864 .split_right2 h1, #stacks_in_95864 .split_right2 h2, #stacks_in_95864 .split_right2 h3, #stacks_in_95864 .split_right2 h4, #stacks_in_95864 .split_right2 h5, #stacks_in_95864 .split_right2 h6, .split_right2 h1 .split_right2 h2, .split_right2 h3, .split_right2 h4, .split_right2 h5, .split_right2 h6 {
}
}

@media screen and (max-width: 480px) {
	#stacks_in_95864 .split_wrap2 img, .split_wrap2 img { float: none;

}
}

#stacks_in_95865 .background{}#stacks_in_95865 .fa-stack,#stacks_in_95865 i.fa{color:rgba(207, 28, 26, 1.00);border-radius:3px;-webkit-transition:color 300ms ease;transition:color 300ms ease}#stacks_in_95865 .fa-stack.custom,#stacks_in_95865 i.fa.custom{font-size:24px}#stacks_in_95865 .fa-spin{-webkit-animation-duration:2000ms;animation-duration:2000ms}#stacks_in_95865 .fa-border{border-color:rgba(238, 238, 238, 1.00);}#stacks_in_95865 .fa-stack i.stack{color:rgba(153, 153, 153, 1.00)}#stacks_in_95865 a:hover i.fa{color:rgba(186, 25, 23, 1.00)}#stacks_in_95865 a:hover i.fa.stack{color:rgba(137, 137, 137, 1.00)}#stacks_in_95865 a:hover .fa-border{}#stacks_in_95865 .shadow-double i.fa{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_95865 .shadow-basic i.fa{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_95865 .shadow-retro i.fa{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_95865 .jw-wrapper{}#stacks_in_95865 .jw-wrapper.match.shadow-double{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_95865 .jw-wrapper.match.shadow-basic{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_95865 .jw-wrapper.match.shadow-retro{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_95865 .jw-wrapper.match{color:rgba(207, 28, 26, 1.00)}#stacks_in_95865 .jw-wrapper.match a{color:rgba(207, 28, 26, 1.00)}#stacks_in_95865 .jw-wrapper.match a:hover{color:rgba(186, 25, 23, 1.00)}#stacks_in_95865 .jw-wrapper.hover i.fa:hover,#stacks_in_95865 .jw-wrapper.hover a:hover{color:rgba(153, 153, 153, 1.00)}

#stacks_out_95865 {
	width: 150px;
	margin-left:0;
}

#stacks_in_95868 {
	display:inline-block; width:100%; line-height: 1.500000em;
}



#stacks_in_95874 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95875 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_95878 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95879 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95879 {
		display: none !important;
	}
}

#stacks_in_95834 {
	border: solid rgba(207, 28, 26, 1.00);
	border-width: 0px 0px 0px 10px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_95880 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95881 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95881 {
		display: none !important;
	}
}




#stacks_in_95882 .split_wrap2 h1, #stacks_in_95882 .split_wrap2 h2, #stacks_in_95882 .split_wrap2 h3, #stacks_in_95882 .split_wrap2 h4, #stacks_in_95882 .split_wrap2 h5, #stacks_in_95882 .split_wrap2 h6, .split_wrap2 h1, .split_wrap2 h2, .split_wrap2 h3, .split_wrap2 h4, .split_wrap2 h5, .split_wrap2 h6 { 
	border-style: solid;
	border-width: 0 0 0px 0;
	border-color: rgba(51, 51, 51, 1.00);
  	
margin-bottom: 0px !important; margin-top: 2px !important; 
margin-right: 0px !important; margin-left: 0px !important; 

	line-height:  115%;
	 
}

 

#stacks_in_95882 .split_wrap2, .split_wrap2 {  
	display: table; width: 100%; line-height:115%; 
	/*customcss*/ 
}

#stacks_in_95882 .split_left2, .split_left2 { 
	display: table-cell; 
	min-width: 75px;
	width: 15.96%; 
	padding-right: 5%;
	vertical-align: top;
 text-align: right;   
 

	
}

#stacks_in_95882 .split_right2, .split_right2 {	
	display: table-cell; 
	min-width: 100px;
	width: auto; 
	text-align: left;
	vertical-align: middle;
 
 

	
}

#stacks_in_95882 .split_left2 h1, #stacks_in_95882 .split_left2 h2, #stacks_in_95882 .split_left2 h3, #stacks_in_95882 .split_left2 h4, #stacks_in_95882 .split_left2 h5, #stacks_in_95882 .split_left2 h6, .split_left2 h1, .split_left2 h2, .split_left2 h3, .split_left2 h4, .split_left2 h5, .split_left2 h6 { 
 padding: 5px 5px; 
 } 

#stacks_in_95882 .split_right2 h1, #stacks_in_95882 .split_right2 h2, #stacks_in_95882 .split_right2 h3, #stacks_in_95882 .split_right2 h4, #stacks_in_95882 .split_right2 h5, #stacks_in_95882 .split_right2 h6, .split_right2 h1 .split_right2 h2, .split_right2 h3, .split_right2 h4, .split_right2 h5, .split_right2 h6 { 
 padding: 5px 5px;
 }

#stacks_in_95882 .clear2, .clear2 { 
	display: block;
	clear: none;
	border-style: solid;
	border-width: 0 0 0px 0;
	border-color: rgba(51, 51, 51, 1.00);
}

#stacks_in_95882 .split_wrap2 .text_stack, .split_wrap2 .text_stack {
	text-align: left;
	margin-top: 0px; margin-bottom: 15px;
	margin-left: 0px; margin-right: 0px;

	
}

#stacks_in_95882 .split_wrap2 img, .split_wrap2 img { 
  transition: all 1s ease-in-out; 
  
  


   
}

#stacks_in_95882 .split_wrap2:hover img, .split_wrap2:hover img {
  

  
}

#stacks_in_95882 .split_dropzone2, .split_dropzone2 { 
	margin-top: 15px; margin-bottom: 15px;
	margin-left: 0px; margin-right: 0px;

	
}

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

#stacks_in_95882 .split_wrap2 h1, #stacks_in_95882 .split_wrap2 h2, #stacks_in_95882 .split_wrap2 h3, #stacks_in_95882 .split_wrap2 h4, #stacks_in_95882 .split_wrap2 h5, #stacks_in_95882 .split_wrap2 h6, .split_wrap2 h1, .split_wrap2 h2, .split_wrap2 h3, .split_wrap2 h4, .split_wrap2 h5, .split_wrap2 h6 { 
	
	 	
}

	#stacks_in_95882 .split_left2, .split_left2 {
	 width: 100% !important; min-width: 0px !important; display: block; padding-right: 0px;  
	 
	 
	 
	 text-align: left;  
	
	}
	#stacks_in_95882 .split_right2, .split_right2 { 
	 width: 100% !important; min-widht: 0px !important; display: block;  
	 text-align: right;  
	 
	 
	 
	
	}
	
#stacks_in_95882 .split_left2 h1, #stacks_in_95882 .split_left2 h2, #stacks_in_95882 .split_left2 h3, #stacks_in_95882 .split_left2 h4, #stacks_in_95882 .split_left2 h5, #stacks_in_95882 .split_left2 h6, .split_left2 h1, .split_left2 h2, .split_left2 h3, .split_left2 h4, .split_left2 h5, .split_left2 h6 {}

#stacks_in_95882 .split_right2 h1, #stacks_in_95882 .split_right2 h2, #stacks_in_95882 .split_right2 h3, #stacks_in_95882 .split_right2 h4, #stacks_in_95882 .split_right2 h5, #stacks_in_95882 .split_right2 h6, .split_right2 h1 .split_right2 h2, .split_right2 h3, .split_right2 h4, .split_right2 h5, .split_right2 h6 {
}
}

@media screen and (max-width: 480px) {
	#stacks_in_95882 .split_wrap2 img, .split_wrap2 img { float: none;

}
}

#stacks_in_95883 .background{}#stacks_in_95883 .fa-stack,#stacks_in_95883 i.fa{color:rgba(207, 28, 26, 1.00);border-radius:3px;-webkit-transition:color 300ms ease;transition:color 300ms ease}#stacks_in_95883 .fa-stack.custom,#stacks_in_95883 i.fa.custom{font-size:24px}#stacks_in_95883 .fa-spin{-webkit-animation-duration:2000ms;animation-duration:2000ms}#stacks_in_95883 .fa-border{border-color:rgba(238, 238, 238, 1.00);}#stacks_in_95883 .fa-stack i.stack{color:rgba(153, 153, 153, 1.00)}#stacks_in_95883 a:hover i.fa{color:rgba(186, 25, 23, 1.00)}#stacks_in_95883 a:hover i.fa.stack{color:rgba(137, 137, 137, 1.00)}#stacks_in_95883 a:hover .fa-border{}#stacks_in_95883 .shadow-double i.fa{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_95883 .shadow-basic i.fa{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_95883 .shadow-retro i.fa{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_95883 .jw-wrapper{}#stacks_in_95883 .jw-wrapper.match.shadow-double{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_95883 .jw-wrapper.match.shadow-basic{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_95883 .jw-wrapper.match.shadow-retro{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_95883 .jw-wrapper.match{color:rgba(207, 28, 26, 1.00)}#stacks_in_95883 .jw-wrapper.match a{color:rgba(207, 28, 26, 1.00)}#stacks_in_95883 .jw-wrapper.match a:hover{color:rgba(186, 25, 23, 1.00)}#stacks_in_95883 .jw-wrapper.hover i.fa:hover,#stacks_in_95883 .jw-wrapper.hover a:hover{color:rgba(153, 153, 153, 1.00)}

#stacks_out_95883 {
	width: 150px;
	margin-left:0;
}

#stacks_in_95886 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95890 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95890 {
		display: none !important;
	}
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95891 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95891 {
		display: none !important;
	}
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95892 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95892 {
		display: none !important;
	}
}



#stacks_in_89425 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95893 {
	background-color: rgba(255, 255, 255, 1.00);
	padding:  20px;
}

#stacks_in_95894 {
	font-size: 199%;
}



#stacks_in_89429 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_89430 {
	background-color: rgba(255, 255, 255, 1.00);
	padding:  20px;
}

#stacks_in_89432 {
	font-size: 199%;
}

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_90544 {
	height: 50.00px;
}




























@media print {
	#spacerStackstacks_in_90544 {
		display: none !important;
	}
}
.topbox_content {
  width: 85vw;
  height: 85vh;
}

.topbox_notouch .topbox_effect_fade,
.topbox_notouch .topbox_effect_slideLeft,
.topbox_notouch .topbox_effect_slideRight,
.topbox_notouch .topbox_effect_slideUp,
.topbox_notouch .topbox_effect_slideDown {
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}


/* Stops the page scrolling when the lightbox is opened */
html.topbox_open,
html.topbox_open body {
overflow: hidden !important;
}


#topbox_trigger_region_stacks_in_89863 {
  position: relative;
}

#topbox_trigger_stacks_in_89863 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}




































































/* Our lightbox skin named 'whiteout' */
.topbox_skin_whiteout .topbox_fill {
  background: #FFFFFF;
}

.topbox_skin_whiteout .topbox_error,
.topbox_skin_whiteout .topbox_pdf_mobile_message {
  color: #000000;
  font-size: 18px;
}

.topbox_skin_whiteout .topbox_pdf_mobile_message a,
.topbox_skin_whiteout .topbox_pdf_mobile_message a:visited {
  color: #000000;
  text-decoration: underline;
}

.topbox_skin_whiteout .topbox_nav {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.topbox_skin_whiteout .topbox_prev,
.topbox_skin_whiteout .topbox_next,
.topbox_skin_whiteout .topbox_close {
  text-decoration: none;
  font-size: 45px;
  color: #000000;
  transition: all 300ms ease-in;
  padding: 10px;
  line-height: 1;
}

.topbox_skin_whiteout .topbox_close {
  padding-top: 0;
}

.topbox_skin_whiteout .topbox_prev:hover,
.topbox_skin_whiteout .topbox_next:hover,
.topbox_skin_whiteout .topbox_close:hover {
  color: rgb(0, 0, 0, 0.5);
}

.topbox_skin_whiteout .topbox_prev:before {
  content: "←"
}

.topbox_skin_whiteout .topbox_next:before {
  content: "→"
}

.topbox_skin_whiteout .topbox_close:before {
  content: "×";
}

.topbox_skin_whiteout .topbox_title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.5;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  background: none;
  color: #000000 padding: 7px 15px;
  margin-top: 7px;
  border-radius: 30px;
  text-align: center;
  display: inline-block;
	font-weight: bold;
}








.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94748 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94748 {
		display: none !important;
	}
}
#stacks_in_94045>.s3_row {
	margin: 0 -10px;
}

#stacks_in_94045>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_94045>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_94045>.s3_row>.s3_column_right {
	width: 33.33%;
}

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








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



}



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


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


}




/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */

#topBoxContentWrapperstacks_in_94396.topBoxStacksContent {
  display: none;
}

.topbox_content.loaded #topBoxContentWrapperstacks_in_94396.topBoxStacksContent {
  display: block;
}





#topbox_trigger_region_stacks_in_94396 {
  position: relative;
}

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






#stacks_in_94770 {
	background-color: rgba(241, 241, 241, 1.00);
}



#stacks_in_94773 {
	
	
	
	
	
	 text-align: ;
}




.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94776 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94776 {
		display: none !important;
	}
}

#stacks_in_94779 {
	font-size: 113%;
}



#stacks_in_94784 {
	
	
	
	
	
	 text-align: ;
}




.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94787 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94787 {
		display: none !important;
	}
}

#stacks_in_94790 {
	font-size: 113%;
}



#stacks_in_95451 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95452 {
	background-color: rgba(230, 230, 230, 0.50);
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_95454 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_95454 {
		display: none !important;
	}
}

#stacks_in_95457 {
	font-size: 90%;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_95458 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_95458 {
		display: none !important;
	}
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95459 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95459 {
		display: none !important;
	}
}



#stacks_in_95460 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95461 {
	background-color: rgba(230, 230, 230, 0.50);
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_95463 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_95463 {
		display: none !important;
	}
}

#stacks_in_95466 {
	font-size: 90%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95467 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95467 {
		display: none !important;
	}
}



#stacks_in_94497 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_94499 {
	background-color: rgba(241, 241, 241, 1.00);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_94502 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94503 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94503 {
		display: none !important;
	}
}

#stacks_in_94061 {
	border: solid rgba(207, 28, 26, 1.00);
	border-width: 0px 0px 0px 10px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_94504 {
	display:inline-block; width:100%; line-height: 1.500000em;
	font-size: 120%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94505 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94505 {
		display: none !important;
	}
}

#stacks_in_94506 {
	background-color: rgba(231, 231, 231, 1.00);
	padding:  20px;
}

#stacks_in_94508 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94509 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94509 {
		display: none !important;
	}
}



#stacks_in_94510 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_94512 {
	background-color: rgba(241, 241, 241, 1.00);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_94515 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94516 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94516 {
		display: none !important;
	}
}

#stacks_in_94065 {
	border: solid rgba(207, 28, 26, 1.00);
	border-width: 0px 0px 0px 10px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_94517 {
	display:inline-block; width:100%; line-height: 1.500000em;
	font-size: 120%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94518 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94518 {
		display: none !important;
	}
}

#stacks_in_94519 {
	background-color: rgba(231, 231, 231, 1.00);
	padding:  20px;
}
#stacks_in_94520 .background{}#stacks_in_94520 .fa-stack,#stacks_in_94520 i.fa{color:rgba(207, 28, 26, 1.00);border-radius:3px;-webkit-transition:color 300ms ease;transition:color 300ms ease}#stacks_in_94520 .fa-stack.custom,#stacks_in_94520 i.fa.custom{font-size:24px}#stacks_in_94520 .fa-spin{-webkit-animation-duration:2000ms;animation-duration:2000ms}#stacks_in_94520 .fa-border{border-color:rgba(238, 238, 238, 1.00);}#stacks_in_94520 .fa-stack i.stack{color:rgba(153, 153, 153, 1.00)}#stacks_in_94520 a:hover i.fa{color:rgba(186, 25, 23, 1.00)}#stacks_in_94520 a:hover i.fa.stack{color:rgba(137, 137, 137, 1.00)}#stacks_in_94520 a:hover .fa-border{}#stacks_in_94520 .shadow-double i.fa{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_94520 .shadow-basic i.fa{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_94520 .shadow-retro i.fa{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_94520 .jw-wrapper{}#stacks_in_94520 .jw-wrapper.match.shadow-double{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_94520 .jw-wrapper.match.shadow-basic{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_94520 .jw-wrapper.match.shadow-retro{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_94520 .jw-wrapper.match{color:rgba(207, 28, 26, 1.00)}#stacks_in_94520 .jw-wrapper.match a{color:rgba(207, 28, 26, 1.00)}#stacks_in_94520 .jw-wrapper.match a:hover{color:rgba(186, 25, 23, 1.00)}#stacks_in_94520 .jw-wrapper.hover i.fa:hover,#stacks_in_94520 .jw-wrapper.hover a:hover{color:rgba(153, 153, 153, 1.00)}

#stacks_out_94520 {
	width: 250px;
	margin-left:0;
}

#stacks_in_94522 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94523 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94523 {
		display: none !important;
	}
}

/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */

#topBoxContentWrapperstacks_in_94245.topBoxStacksContent {
  display: none;
}

.topbox_content.loaded #topBoxContentWrapperstacks_in_94245.topBoxStacksContent {
  display: block;
}





#topbox_trigger_region_stacks_in_94245 {
  position: relative;
}

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






#stacks_in_94796 {
	background-color: rgba(241, 241, 241, 1.00);
}



#stacks_in_94801 {
	
	
	
	
	
	 text-align: ;
}




.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94804 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94804 {
		display: none !important;
	}
}

#stacks_in_94807 {
	font-size: 113%;
}



#stacks_in_94812 {
	
	
	
	
	
	 text-align: ;
}




.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94815 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94815 {
		display: none !important;
	}
}

#stacks_in_94818 {
	font-size: 113%;
}



#stacks_in_95432 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95433 {
	background-color: rgba(230, 230, 230, 0.50);
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_95435 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_95435 {
		display: none !important;
	}
}

#stacks_in_95438 {
	font-size: 90%;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_95439 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_95439 {
		display: none !important;
	}
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95440 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95440 {
		display: none !important;
	}
}



#stacks_in_95441 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95442 {
	background-color: rgba(230, 230, 230, 0.50);
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_95444 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_95444 {
		display: none !important;
	}
}

#stacks_in_95447 {
	font-size: 90%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95448 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95448 {
		display: none !important;
	}
}



#stacks_in_94364 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_94365 {
	background-color: rgba(241, 241, 241, 1.00);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_94368 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94369 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94369 {
		display: none !important;
	}
}

#stacks_in_94069 {
	border: solid rgba(207, 28, 26, 1.00);
	border-width: 0px 0px 0px 10px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_94370 {
	display:inline-block; width:100%; line-height: 1.500000em;
	font-size: 120%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94371 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94371 {
		display: none !important;
	}
}

#stacks_in_94372 {
	background-color: rgba(231, 231, 231, 1.00);
	padding:  20px;
}

#stacks_in_94374 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94375 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94375 {
		display: none !important;
	}
}



#stacks_in_94381 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_94382 {
	background-color: rgba(241, 241, 241, 1.00);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_94385 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94386 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94386 {
		display: none !important;
	}
}

#stacks_in_94073 {
	border: solid rgba(207, 28, 26, 1.00);
	border-width: 0px 0px 0px 10px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_94387 {
	display:inline-block; width:100%; line-height: 1.500000em;
	font-size: 120%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94388 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94388 {
		display: none !important;
	}
}

#stacks_in_94389 {
	background-color: rgba(231, 231, 231, 1.00);
	padding:  20px;
}

#stacks_in_94391 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94392 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94392 {
		display: none !important;
	}
}

/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */

#topBoxContentWrapperstacks_in_94058.topBoxStacksContent {
  display: none;
}

.topbox_content.loaded #topBoxContentWrapperstacks_in_94058.topBoxStacksContent {
  display: block;
}





#topbox_trigger_region_stacks_in_94058 {
  position: relative;
}

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






#stacks_in_94824 {
	background-color: rgba(241, 241, 241, 1.00);
}



#stacks_in_94829 {
	
	
	
	
	
	 text-align: ;
}




.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94832 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94832 {
		display: none !important;
	}
}

#stacks_in_94835 {
	font-size: 113%;
}



#stacks_in_94840 {
	
	
	
	
	
	 text-align: ;
}




.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94843 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94843 {
		display: none !important;
	}
}

#stacks_in_94846 {
	font-size: 113%;
}



#stacks_in_94096 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_94097 {
	background-color: rgba(230, 230, 230, 0.50);
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_94099 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_94099 {
		display: none !important;
	}
}

#stacks_in_94104 {
	font-size: 90%;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_94105 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_94105 {
		display: none !important;
	}
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94106 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94106 {
		display: none !important;
	}
}



#stacks_in_94107 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_94108 {
	background-color: rgba(230, 230, 230, 0.50);
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_94110 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_94110 {
		display: none !important;
	}
}

#stacks_in_94115 {
	font-size: 90%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94117 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94117 {
		display: none !important;
	}
}



#stacks_in_94204 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_94205 {
	background-color: rgba(241, 241, 241, 1.00);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_94208 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94209 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94209 {
		display: none !important;
	}
}

#stacks_in_94077 {
	border: solid rgba(207, 28, 26, 1.00);
	border-width: 0px 0px 0px 10px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_94210 {
	display:inline-block; width:100%; line-height: 1.500000em;
	font-size: 120%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94211 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94211 {
		display: none !important;
	}
}

#stacks_in_94212 {
	background-color: rgba(231, 231, 231, 1.00);
	padding:  20px;
}

#stacks_in_94214 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94215 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94215 {
		display: none !important;
	}
}

#stacks_in_94079 {
	border: solid rgba(207, 28, 26, 1.00);
	border-width: 0px 0px 0px 10px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_94216 {
	display:inline-block; width:100%; line-height: 1.500000em;
	font-size: 120%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94217 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94217 {
		display: none !important;
	}
}

#stacks_in_94218 {
	background-color: rgba(231, 231, 231, 1.00);
	padding:  20px;
}

#stacks_in_94221 {
	display:inline-block; width:100%; line-height: 1.500000em;
}



#stacks_in_94226 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_94227 {
	background-color: rgba(241, 241, 241, 1.00);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_94230 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94231 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94231 {
		display: none !important;
	}
}

#stacks_in_94083 {
	border: solid rgba(207, 28, 26, 1.00);
	border-width: 0px 0px 0px 10px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_94232 {
	display:inline-block; width:100%; line-height: 1.500000em;
	font-size: 120%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94233 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94233 {
		display: none !important;
	}
}

#stacks_in_94234 {
	background-color: rgba(231, 231, 231, 1.00);
	padding:  20px;
}

#stacks_in_94236 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94237 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94237 {
		display: none !important;
	}
}

#stacks_in_94085 {
	border: solid rgba(207, 28, 26, 1.00);
	border-width: 0px 0px 0px 10px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_94238 {
	display:inline-block; width:100%; line-height: 1.500000em;
	font-size: 120%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_94239 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_94239 {
		display: none !important;
	}
}

#stacks_in_94240 {
	background-color: rgba(231, 231, 231, 1.00);
	padding:  20px;
}

#stacks_in_94242 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_89273 {
	height: 50.00px;
}




























@media print {
	#spacerStackstacks_in_89273 {
		display: none !important;
	}
}

.grid-x.grid-gutters-custom.stacks_in_91475{--small-gutter:1.25rem;--medium-gutter:2rem;--large-gutter:2rem}

/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */

#topBoxContentWrapperstacks_in_91810.topBoxStacksContent {
  display: none;
}

.topbox_content.loaded #topBoxContentWrapperstacks_in_91810.topBoxStacksContent {
  display: block;
}





#topbox_trigger_region_stacks_in_91810 {
  position: relative;
}

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








#stacks_in_91820 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95710 {
	background-color: rgba(230, 230, 230, 0.50);
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95711 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95711 {
		display: none !important;
	}
}

#stacks_in_91826 {
	font-size: 113%;
}

#stacks_in_95718 {
	font-size: 90%;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_95719 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_95719 {
		display: none !important;
	}
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95720 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95720 {
		display: none !important;
	}
}



#stacks_in_91831 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_91832 {
	background-color: rgba(230, 230, 230, 0.50);
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_91834 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_91834 {
		display: none !important;
	}
}

#stacks_in_91837 {
	font-size: 113%;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_95734 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_95734 {
		display: none !important;
	}
}

#stacks_in_91839 {
	font-size: 90%;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_91840 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_91840 {
		display: none !important;
	}
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_91841 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_91841 {
		display: none !important;
	}
}



#stacks_in_91897 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_91899 {
	background-color: rgba(255, 255, 255, 1.00);
	padding:  20px;
}

#stacks_in_91901 {
	text-transform: uppercase;
	font-size: 300%;
}



#stacks_in_91902 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_91903 {
	background-color: rgba(255, 255, 255, 1.00);
	padding:  20px;
}

#stacks_in_91905 {
	text-transform: uppercase;
	font-size: 300%;
}

.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_91906 {
	height: 25.00px;
}




























@media print {
	#spacerStackstacks_in_91906 {
		display: none !important;
	}
}

#stacks_out_91907 {
	width: 400px;
}

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_91912 {
	height: 50.00px;
}




























@media print {
	#spacerStackstacks_in_91912 {
		display: none !important;
	}
}



#stacks_in_91913 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_91915 {
	background-color: rgba(241, 241, 241, 1.00);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_91918 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_91919 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_91919 {
		display: none !important;
	}
}

#stacks_in_91479 {
	border: solid rgba(207, 28, 26, 1.00);
	border-width: 0px 0px 0px 10px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_91920 {
	display:inline-block; width:100%; line-height: 1.500000em;
	font-size: 120%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_91921 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_91921 {
		display: none !important;
	}
}

#stacks_in_91922 {
	background-color: rgba(231, 231, 231, 1.00);
	padding:  20px;
}

#stacks_in_91924 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_91925 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_91925 {
		display: none !important;
	}
}




#stacks_in_92001 .split_wrap1 h1, #stacks_in_92001 .split_wrap1 h2, #stacks_in_92001 .split_wrap1 h3, #stacks_in_92001 .split_wrap1 h4, #stacks_in_92001 .split_wrap1 h5, #stacks_in_92001 .split_wrap1 h6, .split_wrap1 h1, .split_wrap1 h2, .split_wrap1 h3, .split_wrap1 h4, .split_wrap1 h5, .split_wrap1 h6 { 
	border-style: solid;
	border-width: 0 0 0px 0;
	border-color: rgba(51, 51, 51, 1.00);
  	
margin-bottom: 0px !important; margin-top: 2px !important; 
margin-right: 0px !important; margin-left: 0px !important; 

	line-height:  115%;
	 
}

 

#stacks_in_92001 .split_wrap1, .split_wrap1 {  
	display: table; width: 100%; line-height:115%; 
	/*customcss*/ 
}

#stacks_in_92001 .split_left1, .split_left1 { 
	display: table-cell; 
	min-width: 75px;
	width: 15.96%; 
	padding-right: 5%;
	vertical-align: middle;
 text-align: right;   
 

	
}

#stacks_in_92001 .split_right1, .split_right1 {	
	display: table-cell; 
	min-width: 100px;
	width: auto; 
	text-align: left;
	vertical-align: middle;
 
 

	
}

#stacks_in_92001 .split_left1 h1, #stacks_in_92001 .split_left1 h2, #stacks_in_92001 .split_left1 h3, #stacks_in_92001 .split_left1 h4, #stacks_in_92001 .split_left1 h5, #stacks_in_92001 .split_left1 h6, .split_left1 h1, .split_left1 h2, .split_left1 h3, .split_left1 h4, .split_left1 h5, .split_left1 h6 { 
 padding: 5px 5px; 
 } 

#stacks_in_92001 .split_right1 h1, #stacks_in_92001 .split_right1 h2, #stacks_in_92001 .split_right1 h3, #stacks_in_92001 .split_right1 h4, #stacks_in_92001 .split_right1 h5, #stacks_in_92001 .split_right1 h6, .split_right1 h1 .split_right1 h2, .split_right1 h3, .split_right1 h4, .split_right1 h5, .split_right1 h6 { 
 padding: 5px 5px;
 }

#stacks_in_92001 .clear1, .clear1 { 
	display: block;
	clear: none;
	border-style: solid;
	border-width: 0 0 0px 0;
	border-color: rgba(51, 51, 51, 1.00);
}

#stacks_in_92001 .split_wrap1 .text_stack, .split_wrap1 .text_stack {
	text-align: left;
	margin-top: 0px; margin-bottom: 15px;
	margin-left: 0px; margin-right: 0px;

	
}

#stacks_in_92001 .split_wrap1 img, .split_wrap1 img { 
  transition: all 1s ease-in-out; 
  
  


   
}

#stacks_in_92001 .split_wrap1:hover img, .split_wrap1:hover img {
  

  
}

#stacks_in_92001 .split_dropzone1, .split_dropzone1 { 
	margin-top: 15px; margin-bottom: 15px;
	margin-left: 0px; margin-right: 0px;

	
}

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

#stacks_in_92001 .split_wrap1 h1, #stacks_in_92001 .split_wrap1 h2, #stacks_in_92001 .split_wrap1 h3, #stacks_in_92001 .split_wrap1 h4, #stacks_in_92001 .split_wrap1 h5, #stacks_in_92001 .split_wrap1 h6, .split_wrap1 h1, .split_wrap1 h2, .split_wrap1 h3, .split_wrap1 h4, .split_wrap1 h5, .split_wrap1 h6 { 
	
	 	
}

	#stacks_in_92001 .split_left1, .split_left1 {
	 width: 100% !important; min-width: 0px !important; display: block; padding-right: 0px;  
	 
	 
	 
	 text-align: left;  
	
	}
	#stacks_in_92001 .split_right1, .split_right1 { 
	 width: 100% !important; min-widht: 0px !important; display: block;  
	 text-align: right;  
	 
	 
	 
	
	}
	
#stacks_in_92001 .split_left1 h1, #stacks_in_92001 .split_left1 h2, #stacks_in_92001 .split_left1 h3, #stacks_in_92001 .split_left1 h4, #stacks_in_92001 .split_left1 h5, #stacks_in_92001 .split_left1 h6, .split_left1 h1, .split_left1 h2, .split_left1 h3, .split_left1 h4, .split_left1 h5, .split_left1 h6 {}

#stacks_in_92001 .split_right1 h1, #stacks_in_92001 .split_right1 h2, #stacks_in_92001 .split_right1 h3, #stacks_in_92001 .split_right1 h4, #stacks_in_92001 .split_right1 h5, #stacks_in_92001 .split_right1 h6, .split_right1 h1 .split_right1 h2, .split_right1 h3, .split_right1 h4, .split_right1 h5, .split_right1 h6 {
}
}

@media screen and (max-width: 480px) {
	#stacks_in_92001 .split_wrap1 img, .split_wrap1 img { float: none;

}
}

#stacks_in_92003 .background{}#stacks_in_92003 .fa-stack,#stacks_in_92003 i.fa{color:rgba(207, 28, 26, 1.00);border-radius:3px;-webkit-transition:color 300ms ease;transition:color 300ms ease}#stacks_in_92003 .fa-stack.custom,#stacks_in_92003 i.fa.custom{font-size:24px}#stacks_in_92003 .fa-spin{-webkit-animation-duration:2000ms;animation-duration:2000ms}#stacks_in_92003 .fa-border{border-color:rgba(238, 238, 238, 1.00);}#stacks_in_92003 .fa-stack i.stack{color:rgba(153, 153, 153, 1.00)}#stacks_in_92003 a:hover i.fa{color:rgba(186, 25, 23, 1.00)}#stacks_in_92003 a:hover i.fa.stack{color:rgba(137, 137, 137, 1.00)}#stacks_in_92003 a:hover .fa-border{}#stacks_in_92003 .shadow-double i.fa{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_92003 .shadow-basic i.fa{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_92003 .shadow-retro i.fa{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_92003 .jw-wrapper{}#stacks_in_92003 .jw-wrapper.match.shadow-double{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_92003 .jw-wrapper.match.shadow-basic{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_92003 .jw-wrapper.match.shadow-retro{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_92003 .jw-wrapper.match{color:rgba(207, 28, 26, 1.00)}#stacks_in_92003 .jw-wrapper.match a{color:rgba(207, 28, 26, 1.00)}#stacks_in_92003 .jw-wrapper.match a:hover{color:rgba(186, 25, 23, 1.00)}#stacks_in_92003 .jw-wrapper.hover i.fa:hover,#stacks_in_92003 .jw-wrapper.hover a:hover{color:rgba(153, 153, 153, 1.00)}

#stacks_out_92003 {
	width: 150px;
	margin-left:0;
}

#stacks_in_92006 {
	display:inline-block; width:100%; line-height: 1.500000em;
	font-size: 200%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_92017 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_92017 {
		display: none !important;
	}
}
#stacks_in_92016 .onthelineouterspace
{
display:block;
padding: 12px 0px 12px 0px;
}
#stacks_in_92016 .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;*/
}




#stacks_in_92019 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_92020 {
	background-color: rgba(241, 241, 241, 1.00);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_92027 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_92028 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_92028 {
		display: none !important;
	}
}

#stacks_in_92022 {
	border: solid rgba(207, 28, 26, 1.00);
	border-width: 0px 0px 0px 10px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_92029 {
	display:inline-block; width:100%; line-height: 1.500000em;
	font-size: 120%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_92030 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_92030 {
		display: none !important;
	}
}

#stacks_in_92031 {
	background-color: rgba(231, 231, 231, 1.00);
	padding:  20px;
}

#stacks_in_92033 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_92034 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_92034 {
		display: none !important;
	}
}




#stacks_in_92035 .split_wrap1 h1, #stacks_in_92035 .split_wrap1 h2, #stacks_in_92035 .split_wrap1 h3, #stacks_in_92035 .split_wrap1 h4, #stacks_in_92035 .split_wrap1 h5, #stacks_in_92035 .split_wrap1 h6, .split_wrap1 h1, .split_wrap1 h2, .split_wrap1 h3, .split_wrap1 h4, .split_wrap1 h5, .split_wrap1 h6 { 
	border-style: solid;
	border-width: 0 0 0px 0;
	border-color: rgba(51, 51, 51, 1.00);
  	
margin-bottom: 0px !important; margin-top: 2px !important; 
margin-right: 0px !important; margin-left: 0px !important; 

	line-height:  115%;
	 
}

 

#stacks_in_92035 .split_wrap1, .split_wrap1 {  
	display: table; width: 100%; line-height:115%; 
	/*customcss*/ 
}

#stacks_in_92035 .split_left1, .split_left1 { 
	display: table-cell; 
	min-width: 75px;
	width: 15.96%; 
	padding-right: 5%;
	vertical-align: middle;
 text-align: right;   
 

	
}

#stacks_in_92035 .split_right1, .split_right1 {	
	display: table-cell; 
	min-width: 100px;
	width: auto; 
	text-align: left;
	vertical-align: middle;
 
 

	
}

#stacks_in_92035 .split_left1 h1, #stacks_in_92035 .split_left1 h2, #stacks_in_92035 .split_left1 h3, #stacks_in_92035 .split_left1 h4, #stacks_in_92035 .split_left1 h5, #stacks_in_92035 .split_left1 h6, .split_left1 h1, .split_left1 h2, .split_left1 h3, .split_left1 h4, .split_left1 h5, .split_left1 h6 { 
 padding: 5px 5px; 
 } 

#stacks_in_92035 .split_right1 h1, #stacks_in_92035 .split_right1 h2, #stacks_in_92035 .split_right1 h3, #stacks_in_92035 .split_right1 h4, #stacks_in_92035 .split_right1 h5, #stacks_in_92035 .split_right1 h6, .split_right1 h1 .split_right1 h2, .split_right1 h3, .split_right1 h4, .split_right1 h5, .split_right1 h6 { 
 padding: 5px 5px;
 }

#stacks_in_92035 .clear1, .clear1 { 
	display: block;
	clear: none;
	border-style: solid;
	border-width: 0 0 0px 0;
	border-color: rgba(51, 51, 51, 1.00);
}

#stacks_in_92035 .split_wrap1 .text_stack, .split_wrap1 .text_stack {
	text-align: left;
	margin-top: 0px; margin-bottom: 15px;
	margin-left: 0px; margin-right: 0px;

	
}

#stacks_in_92035 .split_wrap1 img, .split_wrap1 img { 
  transition: all 1s ease-in-out; 
  
  


   
}

#stacks_in_92035 .split_wrap1:hover img, .split_wrap1:hover img {
  

  
}

#stacks_in_92035 .split_dropzone1, .split_dropzone1 { 
	margin-top: 15px; margin-bottom: 15px;
	margin-left: 0px; margin-right: 0px;

	
}

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

#stacks_in_92035 .split_wrap1 h1, #stacks_in_92035 .split_wrap1 h2, #stacks_in_92035 .split_wrap1 h3, #stacks_in_92035 .split_wrap1 h4, #stacks_in_92035 .split_wrap1 h5, #stacks_in_92035 .split_wrap1 h6, .split_wrap1 h1, .split_wrap1 h2, .split_wrap1 h3, .split_wrap1 h4, .split_wrap1 h5, .split_wrap1 h6 { 
	
	 	
}

	#stacks_in_92035 .split_left1, .split_left1 {
	 width: 100% !important; min-width: 0px !important; display: block; padding-right: 0px;  
	 
	 
	 
	 text-align: left;  
	
	}
	#stacks_in_92035 .split_right1, .split_right1 { 
	 width: 100% !important; min-widht: 0px !important; display: block;  
	 text-align: right;  
	 
	 
	 
	
	}
	
#stacks_in_92035 .split_left1 h1, #stacks_in_92035 .split_left1 h2, #stacks_in_92035 .split_left1 h3, #stacks_in_92035 .split_left1 h4, #stacks_in_92035 .split_left1 h5, #stacks_in_92035 .split_left1 h6, .split_left1 h1, .split_left1 h2, .split_left1 h3, .split_left1 h4, .split_left1 h5, .split_left1 h6 {}

#stacks_in_92035 .split_right1 h1, #stacks_in_92035 .split_right1 h2, #stacks_in_92035 .split_right1 h3, #stacks_in_92035 .split_right1 h4, #stacks_in_92035 .split_right1 h5, #stacks_in_92035 .split_right1 h6, .split_right1 h1 .split_right1 h2, .split_right1 h3, .split_right1 h4, .split_right1 h5, .split_right1 h6 {
}
}

@media screen and (max-width: 480px) {
	#stacks_in_92035 .split_wrap1 img, .split_wrap1 img { float: none;

}
}

#stacks_in_92036 .background{}#stacks_in_92036 .fa-stack,#stacks_in_92036 i.fa{color:rgba(207, 28, 26, 1.00);border-radius:3px;-webkit-transition:color 300ms ease;transition:color 300ms ease}#stacks_in_92036 .fa-stack.custom,#stacks_in_92036 i.fa.custom{font-size:24px}#stacks_in_92036 .fa-spin{-webkit-animation-duration:2000ms;animation-duration:2000ms}#stacks_in_92036 .fa-border{border-color:rgba(238, 238, 238, 1.00);}#stacks_in_92036 .fa-stack i.stack{color:rgba(153, 153, 153, 1.00)}#stacks_in_92036 a:hover i.fa{color:rgba(186, 25, 23, 1.00)}#stacks_in_92036 a:hover i.fa.stack{color:rgba(137, 137, 137, 1.00)}#stacks_in_92036 a:hover .fa-border{}#stacks_in_92036 .shadow-double i.fa{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_92036 .shadow-basic i.fa{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_92036 .shadow-retro i.fa{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_92036 .jw-wrapper{}#stacks_in_92036 .jw-wrapper.match.shadow-double{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_92036 .jw-wrapper.match.shadow-basic{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_92036 .jw-wrapper.match.shadow-retro{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_92036 .jw-wrapper.match{color:rgba(207, 28, 26, 1.00)}#stacks_in_92036 .jw-wrapper.match a{color:rgba(207, 28, 26, 1.00)}#stacks_in_92036 .jw-wrapper.match a:hover{color:rgba(186, 25, 23, 1.00)}#stacks_in_92036 .jw-wrapper.hover i.fa:hover,#stacks_in_92036 .jw-wrapper.hover a:hover{color:rgba(153, 153, 153, 1.00)}

#stacks_out_92036 {
	width: 150px;
	margin-left:0;
}

#stacks_in_92039 {
	display:inline-block; width:100%; line-height: 1.500000em;
	font-size: 200%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_92041 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_92041 {
		display: none !important;
	}
}
#stacks_in_92042 .onthelineouterspace
{
display:block;
padding: 12px 0px 12px 0px;
}
#stacks_in_92042 .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;*/
}


/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */

#topBoxContentWrapperstacks_in_92782.topBoxStacksContent {
  display: none;
}

.topbox_content.loaded #topBoxContentWrapperstacks_in_92782.topBoxStacksContent {
  display: block;
}





#topbox_trigger_region_stacks_in_92782 {
  position: relative;
}

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








#stacks_in_92802 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_92803 {
	background-color: rgba(230, 230, 230, 0.50);
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_92805 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_92805 {
		display: none !important;
	}
}

#stacks_in_92808 {
	font-size: 113%;
}

#stacks_in_92810 {
	font-size: 90%;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_92811 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_92811 {
		display: none !important;
	}
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_92812 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_92812 {
		display: none !important;
	}
}



#stacks_in_92813 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_92814 {
	background-color: rgba(230, 230, 230, 0.50);
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_92816 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_92816 {
		display: none !important;
	}
}

#stacks_in_92819 {
	font-size: 113%;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_95735 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_95735 {
		display: none !important;
	}
}

#stacks_in_92821 {
	font-size: 90%;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_92822 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_92822 {
		display: none !important;
	}
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_92823 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_92823 {
		display: none !important;
	}
}

.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_92874 {
	height: 25.00px;
}




























@media print {
	#spacerStackstacks_in_92874 {
		display: none !important;
	}
}



#stacks_in_95489 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95500 {
	background-color: rgba(255, 255, 255, 1.00);
	padding:  20px;
}

#stacks_in_95502 {
	text-transform: uppercase;
	font-size: 300%;
}



#stacks_in_95503 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95504 {
	background-color: rgba(255, 255, 255, 1.00);
	padding:  20px;
}

#stacks_in_95506 {
	text-transform: uppercase;
	font-size: 300%;
}

.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_95521 {
	height: 25.00px;
}




























@media print {
	#spacerStackstacks_in_95521 {
		display: none !important;
	}
}

#stacks_out_95522 {
	width: 400px;
}

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_95524 {
	height: 50.00px;
}




























@media print {
	#spacerStackstacks_in_95524 {
		display: none !important;
	}
}



#stacks_in_95528 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95529 {
	background-color: rgba(241, 241, 241, 1.00);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_95532 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95533 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95533 {
		display: none !important;
	}
}

#stacks_in_95492 {
	border: solid rgba(207, 28, 26, 1.00);
	border-width: 0px 0px 0px 10px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_95534 {
	display:inline-block; width:100%; line-height: 1.500000em;
	font-size: 120%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95535 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95535 {
		display: none !important;
	}
}

#stacks_in_95536 {
	background-color: rgba(231, 231, 231, 1.00);
	padding:  20px;
}

#stacks_in_95538 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95539 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95539 {
		display: none !important;
	}
}

#stacks_in_95541 .background{}#stacks_in_95541 .fa-stack,#stacks_in_95541 i.fa{color:rgba(207, 28, 26, 1.00);border-radius:3px;-webkit-transition:color 300ms ease;transition:color 300ms ease}#stacks_in_95541 .fa-stack.custom,#stacks_in_95541 i.fa.custom{font-size:24px}#stacks_in_95541 .fa-spin{-webkit-animation-duration:2000ms;animation-duration:2000ms}#stacks_in_95541 .fa-border{border-color:rgba(238, 238, 238, 1.00);}#stacks_in_95541 .fa-stack i.stack{color:rgba(153, 153, 153, 1.00)}#stacks_in_95541 a:hover i.fa{color:rgba(186, 25, 23, 1.00)}#stacks_in_95541 a:hover i.fa.stack{color:rgba(137, 137, 137, 1.00)}#stacks_in_95541 a:hover .fa-border{}#stacks_in_95541 .shadow-double i.fa{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_95541 .shadow-basic i.fa{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_95541 .shadow-retro i.fa{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_95541 .jw-wrapper{}#stacks_in_95541 .jw-wrapper.match.shadow-double{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_95541 .jw-wrapper.match.shadow-basic{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_95541 .jw-wrapper.match.shadow-retro{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_95541 .jw-wrapper.match{color:rgba(207, 28, 26, 1.00)}#stacks_in_95541 .jw-wrapper.match a{color:rgba(207, 28, 26, 1.00)}#stacks_in_95541 .jw-wrapper.match a:hover{color:rgba(186, 25, 23, 1.00)}#stacks_in_95541 .jw-wrapper.hover i.fa:hover,#stacks_in_95541 .jw-wrapper.hover a:hover{color:rgba(153, 153, 153, 1.00)}

#stacks_out_95541 {
	width: 150px;
	margin-left:0;
}

#stacks_in_95544 {
	display:inline-block; width:100%; line-height: 1.500000em;
	font-size: 200%;
}



#stacks_in_95550 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95551 {
	background-color: rgba(241, 241, 241, 1.00);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_95554 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95555 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95555 {
		display: none !important;
	}
}

#stacks_in_95497 {
	border: solid rgba(207, 28, 26, 1.00);
	border-width: 0px 0px 0px 10px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_95556 {
	display:inline-block; width:100%; line-height: 1.500000em;
	font-size: 120%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95557 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95557 {
		display: none !important;
	}
}

#stacks_in_95558 {
	background-color: rgba(231, 231, 231, 1.00);
	padding:  20px;
}

#stacks_in_95560 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95561 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95561 {
		display: none !important;
	}
}

#stacks_in_95563 .background{}#stacks_in_95563 .fa-stack,#stacks_in_95563 i.fa{color:rgba(207, 28, 26, 1.00);border-radius:3px;-webkit-transition:color 300ms ease;transition:color 300ms ease}#stacks_in_95563 .fa-stack.custom,#stacks_in_95563 i.fa.custom{font-size:24px}#stacks_in_95563 .fa-spin{-webkit-animation-duration:2000ms;animation-duration:2000ms}#stacks_in_95563 .fa-border{border-color:rgba(238, 238, 238, 1.00);}#stacks_in_95563 .fa-stack i.stack{color:rgba(153, 153, 153, 1.00)}#stacks_in_95563 a:hover i.fa{color:rgba(186, 25, 23, 1.00)}#stacks_in_95563 a:hover i.fa.stack{color:rgba(137, 137, 137, 1.00)}#stacks_in_95563 a:hover .fa-border{}#stacks_in_95563 .shadow-double i.fa{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_95563 .shadow-basic i.fa{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_95563 .shadow-retro i.fa{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_95563 .jw-wrapper{}#stacks_in_95563 .jw-wrapper.match.shadow-double{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_95563 .jw-wrapper.match.shadow-basic{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_95563 .jw-wrapper.match.shadow-retro{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_95563 .jw-wrapper.match{color:rgba(207, 28, 26, 1.00)}#stacks_in_95563 .jw-wrapper.match a{color:rgba(207, 28, 26, 1.00)}#stacks_in_95563 .jw-wrapper.match a:hover{color:rgba(186, 25, 23, 1.00)}#stacks_in_95563 .jw-wrapper.hover i.fa:hover,#stacks_in_95563 .jw-wrapper.hover a:hover{color:rgba(153, 153, 153, 1.00)}

#stacks_out_95563 {
	width: 150px;
	margin-left:0;
}

#stacks_in_95566 {
	display:inline-block; width:100%; line-height: 1.500000em;
	font-size: 200%;
}

/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */

#topBoxContentWrapperstacks_in_92477.topBoxStacksContent {
  display: none;
}

.topbox_content.loaded #topBoxContentWrapperstacks_in_92477.topBoxStacksContent {
  display: block;
}





#topbox_trigger_region_stacks_in_92477 {
  position: relative;
}

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








#stacks_in_92497 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_92498 {
	background-color: rgba(230, 230, 230, 0.50);
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_92500 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_92500 {
		display: none !important;
	}
}

#stacks_in_92503 {
	font-size: 113%;
}

#stacks_in_92505 {
	font-size: 90%;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_92506 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_92506 {
		display: none !important;
	}
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_92507 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_92507 {
		display: none !important;
	}
}



#stacks_in_92508 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_92509 {
	background-color: rgba(230, 230, 230, 0.50);
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_92511 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_92511 {
		display: none !important;
	}
}

#stacks_in_95733 {
	font-size: 113%;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_95736 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_95736 {
		display: none !important;
	}
}

#stacks_in_92516 {
	font-size: 90%;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_92517 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_92517 {
		display: none !important;
	}
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_92518 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_92518 {
		display: none !important;
	}
}



#stacks_in_95575 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95586 {
	background-color: rgba(255, 255, 255, 1.00);
	padding:  20px;
}

#stacks_in_95588 {
	text-transform: uppercase;
	font-size: 300%;
}



#stacks_in_95589 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95590 {
	background-color: rgba(255, 255, 255, 1.00);
	padding:  20px;
}

#stacks_in_95592 {
	text-transform: uppercase;
	font-size: 300%;
}

.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_95607 {
	height: 25.00px;
}




























@media print {
	#spacerStackstacks_in_95607 {
		display: none !important;
	}
}

#stacks_out_95608 {
	width: 400px;
}

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_95610 {
	height: 50.00px;
}




























@media print {
	#spacerStackstacks_in_95610 {
		display: none !important;
	}
}



#stacks_in_95614 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95615 {
	background-color: rgba(241, 241, 241, 1.00);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_95618 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95619 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95619 {
		display: none !important;
	}
}

#stacks_in_95578 {
	border: solid rgba(207, 28, 26, 1.00);
	border-width: 0px 0px 0px 10px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_95620 {
	display:inline-block; width:100%; line-height: 1.500000em;
	font-size: 120%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95621 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95621 {
		display: none !important;
	}
}

#stacks_in_95622 {
	background-color: rgba(231, 231, 231, 1.00);
	padding:  20px;
}

#stacks_in_95624 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95625 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95625 {
		display: none !important;
	}
}

#stacks_in_95627 .background{}#stacks_in_95627 .fa-stack,#stacks_in_95627 i.fa{color:rgba(207, 28, 26, 1.00);border-radius:3px;-webkit-transition:color 300ms ease;transition:color 300ms ease}#stacks_in_95627 .fa-stack.custom,#stacks_in_95627 i.fa.custom{font-size:24px}#stacks_in_95627 .fa-spin{-webkit-animation-duration:2000ms;animation-duration:2000ms}#stacks_in_95627 .fa-border{border-color:rgba(238, 238, 238, 1.00);}#stacks_in_95627 .fa-stack i.stack{color:rgba(153, 153, 153, 1.00)}#stacks_in_95627 a:hover i.fa{color:rgba(186, 25, 23, 1.00)}#stacks_in_95627 a:hover i.fa.stack{color:rgba(137, 137, 137, 1.00)}#stacks_in_95627 a:hover .fa-border{}#stacks_in_95627 .shadow-double i.fa{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_95627 .shadow-basic i.fa{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_95627 .shadow-retro i.fa{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_95627 .jw-wrapper{}#stacks_in_95627 .jw-wrapper.match.shadow-double{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_95627 .jw-wrapper.match.shadow-basic{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_95627 .jw-wrapper.match.shadow-retro{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_95627 .jw-wrapper.match{color:rgba(207, 28, 26, 1.00)}#stacks_in_95627 .jw-wrapper.match a{color:rgba(207, 28, 26, 1.00)}#stacks_in_95627 .jw-wrapper.match a:hover{color:rgba(186, 25, 23, 1.00)}#stacks_in_95627 .jw-wrapper.hover i.fa:hover,#stacks_in_95627 .jw-wrapper.hover a:hover{color:rgba(153, 153, 153, 1.00)}

#stacks_out_95627 {
	width: 150px;
	margin-left:0;
}

#stacks_in_95630 {
	display:inline-block; width:100%; line-height: 1.500000em;
	font-size: 200%;
}



#stacks_in_95636 {
	
	
	
	
	
	 text-align: ;
}




#stacks_in_95637 {
	background-color: rgba(241, 241, 241, 1.00);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_95640 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95641 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95641 {
		display: none !important;
	}
}

#stacks_in_95583 {
	border: solid rgba(207, 28, 26, 1.00);
	border-width: 0px 0px 0px 10px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}

#stacks_in_95642 {
	display:inline-block; width:100%; line-height: 1.500000em;
	font-size: 120%;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95643 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95643 {
		display: none !important;
	}
}

#stacks_in_95644 {
	background-color: rgba(231, 231, 231, 1.00);
	padding:  20px;
}

#stacks_in_95646 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_95647 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_95647 {
		display: none !important;
	}
}

#stacks_in_95649 .background{}#stacks_in_95649 .fa-stack,#stacks_in_95649 i.fa{color:rgba(207, 28, 26, 1.00);border-radius:3px;-webkit-transition:color 300ms ease;transition:color 300ms ease}#stacks_in_95649 .fa-stack.custom,#stacks_in_95649 i.fa.custom{font-size:24px}#stacks_in_95649 .fa-spin{-webkit-animation-duration:2000ms;animation-duration:2000ms}#stacks_in_95649 .fa-border{border-color:rgba(238, 238, 238, 1.00);}#stacks_in_95649 .fa-stack i.stack{color:rgba(153, 153, 153, 1.00)}#stacks_in_95649 a:hover i.fa{color:rgba(186, 25, 23, 1.00)}#stacks_in_95649 a:hover i.fa.stack{color:rgba(137, 137, 137, 1.00)}#stacks_in_95649 a:hover .fa-border{}#stacks_in_95649 .shadow-double i.fa{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_95649 .shadow-basic i.fa{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_95649 .shadow-retro i.fa{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_95649 .jw-wrapper{}#stacks_in_95649 .jw-wrapper.match.shadow-double{text-shadow:4px 3px 0 rgba(255, 255, 255, 1.00),9px 8px 0 rgba(0,0,0,0.15)}#stacks_in_95649 .jw-wrapper.match.shadow-basic{text-shadow:2px 4px 3px rgba(0,0,0,0.3)}#stacks_in_95649 .jw-wrapper.match.shadow-retro{text-shadow:5px 5px 0 rgba(204, 204, 204, 1.00)}#stacks_in_95649 .jw-wrapper.match{color:rgba(207, 28, 26, 1.00)}#stacks_in_95649 .jw-wrapper.match a{color:rgba(207, 28, 26, 1.00)}#stacks_in_95649 .jw-wrapper.match a:hover{color:rgba(186, 25, 23, 1.00)}#stacks_in_95649 .jw-wrapper.hover i.fa:hover,#stacks_in_95649 .jw-wrapper.hover a:hover{color:rgba(153, 153, 153, 1.00)}

#stacks_out_95649 {
	width: 150px;
	margin-left:0;
}

#stacks_in_95652 {
	display:inline-block; width:100%; line-height: 1.500000em;
	font-size: 200%;
}

.spacerStack {
	height: 150.00px;
}

#spacerStackstacks_in_88560 {
	height: 150.00px;
}




























@media print {
	#spacerStackstacks_in_88560 {
		display: none !important;
	}
}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_95482_4 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_95482_4 {
		display: none !important;
	}
}




#stacks_in_95482_190 .split_wrap10 h1, #stacks_in_95482_190 .split_wrap10 h2, #stacks_in_95482_190 .split_wrap10 h3, #stacks_in_95482_190 .split_wrap10 h4, #stacks_in_95482_190 .split_wrap10 h5, #stacks_in_95482_190 .split_wrap10 h6, .split_wrap10 h1, .split_wrap10 h2, .split_wrap10 h3, .split_wrap10 h4, .split_wrap10 h5, .split_wrap10 h6 { 
	border-style: solid;
	border-width: 0 0 0px 0;
	border-color: rgba(51, 51, 51, 1.00);
  	
margin-bottom: 0px !important; margin-top: 2px !important; 
margin-right: 0px !important; margin-left: 0px !important; 

	line-height:  115%;
	 
}


#stacks_in_95482_190 .split_wrap10 a, .split_wrap10 a { 
 color: rgba(255, 255, 255, 1.00); padding: 5px 10px; display: inline-block; transition: all 0.3s ease; 
	border-style: solid;
	border-width: 0px;
	border-color: rgba(51, 51, 51, 1.00); 
}
#stacks_in_95482_190 .split_wrap10 a:hover, .split_wrap10 a:hover { 
 color: rgba(231, 231, 231, 1.00); padding: 5px 10px; 
	border-color: rgba(76, 76, 76, 1.00); 
}
 

#stacks_in_95482_190 .split_wrap10, .split_wrap10 {  
	display: table; width: 100%; line-height:115%; 
	/*customcss*/ 
}

#stacks_in_95482_190 .split_left10, .split_left10 { 
	display: table-cell; 
	min-width: 100px;
	width: 60.00%; 
	padding-right: 5%;
	vertical-align: top;
 
 

	
}

#stacks_in_95482_190 .split_right10, .split_right10 {	
	display: table-cell; 
	min-width: 100px;
	width: auto; 
	text-align: left;
	vertical-align: top;
 text-align: right;  
 

	
}

#stacks_in_95482_190 .split_left10 h1, #stacks_in_95482_190 .split_left10 h2, #stacks_in_95482_190 .split_left10 h3, #stacks_in_95482_190 .split_left10 h4, #stacks_in_95482_190 .split_left10 h5, #stacks_in_95482_190 .split_left10 h6, .split_left10 h1, .split_left10 h2, .split_left10 h3, .split_left10 h4, .split_left10 h5, .split_left10 h6 { 
 padding: 5px 5px; 
 } 

#stacks_in_95482_190 .split_right10 h1, #stacks_in_95482_190 .split_right10 h2, #stacks_in_95482_190 .split_right10 h3, #stacks_in_95482_190 .split_right10 h4, #stacks_in_95482_190 .split_right10 h5, #stacks_in_95482_190 .split_right10 h6, .split_right10 h1 .split_right10 h2, .split_right10 h3, .split_right10 h4, .split_right10 h5, .split_right10 h6 { 
 padding: 5px 0px;
 }

#stacks_in_95482_190 .clear10, .clear10 { 
	display: block;
	clear: none;
	border-style: solid;
	border-width: 0 0 0px 0;
	border-color: rgba(51, 51, 51, 1.00);
}

#stacks_in_95482_190 .split_wrap10 .text_stack, .split_wrap10 .text_stack {
	text-align: left;
	margin-top: 0px; margin-bottom: 15px;
	margin-left: 0px; margin-right: 0px;

	
}

#stacks_in_95482_190 .split_wrap10 img, .split_wrap10 img { 
  transition: all 1s ease-in-out; 
  
  


   
}

#stacks_in_95482_190 .split_wrap10:hover img, .split_wrap10:hover img {
  

  
}

#stacks_in_95482_190 .split_dropzone10, .split_dropzone10 { 
	margin-top: 0px; margin-bottom: 0px;
	margin-left: 0px; margin-right: 0px;

	
}

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

#stacks_in_95482_190 .split_wrap10 h1, #stacks_in_95482_190 .split_wrap10 h2, #stacks_in_95482_190 .split_wrap10 h3, #stacks_in_95482_190 .split_wrap10 h4, #stacks_in_95482_190 .split_wrap10 h5, #stacks_in_95482_190 .split_wrap10 h6, .split_wrap10 h1, .split_wrap10 h2, .split_wrap10 h3, .split_wrap10 h4, .split_wrap10 h5, .split_wrap10 h6 { 
	
	 	
}

	#stacks_in_95482_190 .split_left10, .split_left10 {
	 width: 100% !important; min-width: 0px !important; display: block; padding-right: 0px;  
	 
	 
	 
	 text-align: left;  
	
	}
	#stacks_in_95482_190 .split_right10, .split_right10 { 
	 width: 100% !important; min-widht: 0px !important; display: block;  
	 text-align: right;  
	 
	 
	 
	
	}
	
#stacks_in_95482_190 .split_left10 h1, #stacks_in_95482_190 .split_left10 h2, #stacks_in_95482_190 .split_left10 h3, #stacks_in_95482_190 .split_left10 h4, #stacks_in_95482_190 .split_left10 h5, #stacks_in_95482_190 .split_left10 h6, .split_left10 h1, .split_left10 h2, .split_left10 h3, .split_left10 h4, .split_left10 h5, .split_left10 h6 {}

#stacks_in_95482_190 .split_right10 h1, #stacks_in_95482_190 .split_right10 h2, #stacks_in_95482_190 .split_right10 h3, #stacks_in_95482_190 .split_right10 h4, #stacks_in_95482_190 .split_right10 h5, #stacks_in_95482_190 .split_right10 h6, .split_right10 h1 .split_right10 h2, .split_right10 h3, .split_right10 h4, .split_right10 h5, .split_right10 h6 {
}
}

@media screen and (max-width: 480px) {
	#stacks_in_95482_190 .split_wrap10 img, .split_wrap10 img { float: none;

}
}


#stacks_in_95482_191 {
	padding: 0px 0px 0px 4px;
}



#stacks_in_95482_202 {
	
	
	
	
	
	 text-align: ;
}



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

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

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




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










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



}



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


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


}






#stacks_in_95482_203 {
	padding: 0px 6px 0px 0px;
}



#stacks_in_95482_209 {
	
	
	
	
	
	 text-align: ;
}



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

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

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




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










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



}



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


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


}






#stacks_in_95482_248 {
	padding: 0px 6px 0px 0px;
}

#stacks_in_95482_107 {
	padding: 0px 0px 0px 4px;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_95482_228 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_95482_228 {
		display: none !important;
	}
}



#stacks_in_95482_132 {
	
	
	
	
	
	 text-align: ;
}



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

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

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




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










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



}



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



}






#stacks_in_95482_137 {
	padding: 0px 6px 0px 0px;
}

#stacks_in_95482_141 {
	padding: 0px 0px 0px 5px;
}

#stacks_in_95482_138 {
	padding: 0px 5px 0px 0px;
}



#stacks_in_95482_134 {
	
	
	
	
	
	 text-align: ;
}



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

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

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




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










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



}



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



}






#stacks_in_95482_120 {
	padding: 0px 6px 0px 0px;
}

#stacks_in_95482_127 {
	padding: 0px 0px 0px 5px;
}
#stacks_in_95482_91 .onthelineouterspace
{
display:block;
padding: 12px 0px 12px 0px;
}
#stacks_in_95482_91 .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:#F1F1F1; 
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: 10.00px;
}

#spacerStackstacks_in_95482_44 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_95482_44 {
		display: none !important;
	}
}

#stacks_in_95482_188 {
	padding: 10px 0px 0px 6px;
}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_95482_68 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_95482_68 {
		display: none !important;
	}
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_83773 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_83773 {
		display: none !important;
	}
}
