/* 
 *  Owl Carousel - Animate Plugin
 */
 #stacks_in_1 .owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
#stacks_in_1 .owl-carousel .owl-animated-in {
  z-index: 0;
}
#stacks_in_1 .owl-carousel .owl-animated-out {
  z-index: 1;
}
#stacks_in_1 .owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
 #stacks_in_1 .owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
 #stacks_in_1 .owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
#stacks_in_1 .owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
#stacks_in_1 .owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
#stacks_in_1 .owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
#stacks_in_1 .owl-carousel .owl-controls .owl-nav .owl-prev,
#stacks_in_1 .owl-carousel .owl-controls .owl-nav .owl-next,
#stacks_in_1 .owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#stacks_in_1 .owl-carousel.owl-loaded {
  display: block;
}
#stacks_in_1 .owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
#stacks_in_1 .owl-carousel.owl-hidden {
  opacity: 0;
}
#stacks_in_1 .owl-carousel .owl-refresh .owl-item {
  display: none;
}
#stacks_in_1 .owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#stacks_in_1 .owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
#stacks_in_1 .owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
#stacks_in_1 .owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
#stacks_in_1 .owl-carousel.owl-rtl {
  direction: rtl;
}
#stacks_in_1 .owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
#stacks_in_1 .no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
 #stacks_in_1 .owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
#stacks_in_1 .owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
 #stacks_in_1 .owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
#stacks_in_1 .owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
#stacks_in_1 .owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
#stacks_in_1 .owl-carousel .owl-video-playing .owl-video-tn,
#stacks_in_1 .owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
#stacks_in_1 .owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
#stacks_in_1 .owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}#stacks_in_1 .effect-label{display:block !important}#stacks_in_1 blockquote{position:relative;z-index:1}#stacks_in_1 blockquote::before,#stacks_in_1 blockquote::after{position:absolute;z-index:-1;display:block;line-height:0;color:rgba(204, 204, 204, 1.00);font-family:inherit;font-size:24px}@media all and (min-width:640px){#stacks_in_1 blockquote::before,#stacks_in_1 blockquote::after{font-size:24px}}@media all and (min-width:1000px){#stacks_in_1 blockquote::before,#stacks_in_1 blockquote::after{font-size:48px}}#stacks_in_1 blockquote p:last-of-type{margin-bottom:0}#stacks_in_1 blockquote{margin: 6.00px 6.00px 6.00px 6.00px }@media all and (min-width:640px){#stacks_in_1 blockquote{margin: 6.00px 6.00px 6.00px 6.00px }}@media all and (min-width:1000px){#stacks_in_1 blockquote{margin: 6.00px 6.00px 6.00px 6.00px }}#stacks_in_1 blockquote{padding:0}#stacks_in_1 blockquote{padding: 15px }@media all and (min-width:640px){#stacks_in_1 blockquote{padding: 15px }}@media all and (min-width:1000px){#stacks_in_1 blockquote{padding: 15px }}#stacks_in_1 blockquote{padding-bottom:calc(15px * 0.00)}
#stacks_in_123_10>.s3_row {
	margin: 0 -10px;
}

#stacks_in_123_10>.s3_row>.s3_column_left {
	width: 75.00%;
}

#stacks_in_123_10>.s3_row>.s3_column_right {
	width: 25.000000%;
}




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










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



}



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


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


}





#rule_stacks_in_123_9 {
    margin: 1rem 0;
}

#spacer_stacks_in_393 {
    height: 1rem;
}#rule_stacks_in_283 {
    margin: 1rem 0;
}



#stacks_in_55 .show-on-focus {
  display: none;
  text-align: center;
}

#stacks_in_55 .owl-carousel:focus .show-on-focus {
  display: block;
}

#stacks_in_55 .scrolly-focus-message {
  background: rgba(205, 205, 205, 1.00);
  color: rgba(51, 51, 51, 1.00);
  padding: 5px;
  text-align: center;
}

#stacks_in_55 .owl-prev,
#stacks_in_55 .owl-next {
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  margin: 0px 5px;
  border-radius: 0.4rem;
  padding: 0.4rem 1.2rem;
  background: rgba(25, 25, 25, 1.00);
  border: 1px solid rgba(0, 0, 0, 1.00);
  color: rgba(255, 255, 255, 1.00);
  display: inline-block;
  text-align: center;
}

#stacks_in_55 .owl-prev:focus,
#stacks_in_55 .owl-next:focus {
  background: ;
  border: 1px solid ;
  color: ;
}

#stacks_in_55 .owl-prev:active,
#stacks_in_55 .owl-next:active {
  background: rgba(7, 64, 128, 1.00);
  border: 1px solid rgba(7, 64, 128, 1.00);
  color: rgba(255, 255, 255, 1.00);
}

#stacks_in_55 .owl-prev.disabled,
#stacks_in_55 .owl-next.disabled {
  opacity: 0.25;
  cursor: not-allowed;
}








#stacks_in_55 .owl-prev {
  margin-left: 0;
}

#stacks_in_55 .owl-next {
  float: right;
  margin-right: 0;
}




#spacer_stacks_in_94 {
    height: 2rem;
}#sectional_stacks_in_97 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;

  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#sectional_stacks_in_97 .sectional_module {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
}

@media screen and (min-width: 768px) {
  #sectional_stacks_in_97 {
    flex-direction: row;
  }

  #sectional_stacks_in_97 .sectional_module {
    align-items: center;
    min-height: none;
  }
}

/* Left section module */

#sectional_module_left_stacks_in_97 {
  flex: 1;
}

#sectional_wrap_left_stacks_in_97 {
  width: 100%;
}

#sectional_content_left_stacks_in_97 {
  
  text-align: center;
  
  color: rgba(0, 0, 0, 0.90);
  max-width: none;
  padding: none;
  
  
  margin-left: auto;
  margin-right: auto;
  
  
}

#sectional_content_left_stacks_in_97 h1,
#sectional_content_left_stacks_in_97 h2,
#sectional_content_left_stacks_in_97 h3,
#sectional_content_left_stacks_in_97 h4,
#sectional_content_left_stacks_in_97 h5,
#sectional_content_left_stacks_in_97 h6,
#sectional_content_left_stacks_in_97 a {
  color: rgba(0, 0, 0, 0.90);
}


/* No background */
#sectional_module_left_stacks_in_97 {
  background: none;
}
























/* Right section module */

#sectional_module_right_stacks_in_97 {
  flex: 1;
}

#sectional_wrap_right_stacks_in_97 {
  width: 100%;
}

#sectional_content_right_stacks_in_97 {
  
  text-align: center;
  
  color: rgba(7, 64, 128, 1.00);
  max-width: none;
  padding: 2rem;
  
  
  margin-left: auto;
  margin-right: auto;
  
  
}

  #sectional_content_right_stacks_in_97 h1,
  #sectional_content_right_stacks_in_97 h2,
  #sectional_content_right_stacks_in_97 h3,
  #sectional_content_right_stacks_in_97 h4,
  #sectional_content_right_stacks_in_97 h5,
  #sectional_content_right_stacks_in_97 h6,
  #sectional_content_right_stacks_in_97 a {
    color: rgba(7, 64, 128, 1.00);
  }

  
  /* No background */
  #sectional_module_right_stacks_in_97 {
    background: none;
  }
  

  

  

  

  

  

  

  

  

  

  

  


#sectional_stacks_in_97 .sectional_module:nth-child(even) {
  margin-right: 0;
}

@media print {
  #sectional_content_left_stacks_in_97,
  #sectional_content_right_stacks_in_97 {
    color: #000000;
    text-align: left;
  }
}










#sectional_stacks_in_102 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;

  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#sectional_stacks_in_102 .sectional_module {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
}

@media screen and (min-width: 768px) {
  #sectional_stacks_in_102 {
    flex-direction: row;
  }

  #sectional_stacks_in_102 .sectional_module {
    align-items: center;
    min-height: none;
  }
}

/* Left section module */

#sectional_module_left_stacks_in_102 {
  flex: 1;
}

#sectional_wrap_left_stacks_in_102 {
  width: 100%;
}

#sectional_content_left_stacks_in_102 {
  
  text-align: center;
  
  color: rgba(7, 64, 128, 1.00);
  max-width: none;
  padding: 2rem;
  
  
  margin-left: auto;
  margin-right: auto;
  
  
}

#sectional_content_left_stacks_in_102 h1,
#sectional_content_left_stacks_in_102 h2,
#sectional_content_left_stacks_in_102 h3,
#sectional_content_left_stacks_in_102 h4,
#sectional_content_left_stacks_in_102 h5,
#sectional_content_left_stacks_in_102 h6,
#sectional_content_left_stacks_in_102 a {
  color: rgba(7, 64, 128, 1.00);
}


/* No background */
#sectional_module_left_stacks_in_102 {
  background: none;
}
























/* Right section module */

#sectional_module_right_stacks_in_102 {
  flex: 1;
}

#sectional_wrap_right_stacks_in_102 {
  width: 100%;
}

#sectional_content_right_stacks_in_102 {
  
  text-align: center;
  
  color: rgba(255, 255, 255, 0.90);
  max-width: none;
  padding: none;
  
  
  margin-left: auto;
  margin-right: auto;
  
  
}

  #sectional_content_right_stacks_in_102 h1,
  #sectional_content_right_stacks_in_102 h2,
  #sectional_content_right_stacks_in_102 h3,
  #sectional_content_right_stacks_in_102 h4,
  #sectional_content_right_stacks_in_102 h5,
  #sectional_content_right_stacks_in_102 h6,
  #sectional_content_right_stacks_in_102 a {
    color: rgba(255, 255, 255, 0.90);
  }

  
  /* No background */
  #sectional_module_right_stacks_in_102 {
    background: none;
  }
  

  

  

  

  

  

  

  

  

  

  

  


#sectional_stacks_in_102 .sectional_module:nth-child(even) {
  margin-right: 0;
}

@media print {
  #sectional_content_left_stacks_in_102,
  #sectional_content_right_stacks_in_102 {
    color: #000000;
    text-align: left;
  }
}








#spacer_stacks_in_349 {
    height: 1rem;
}

#sectional_stacks_in_299 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;

  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#sectional_stacks_in_299 .sectional_module {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
}

@media screen and (min-width: 768px) {
  #sectional_stacks_in_299 {
    flex-direction: row;
  }

  #sectional_stacks_in_299 .sectional_module {
    align-items: center;
    min-height: none;
  }
}

/* Left section module */

#sectional_module_left_stacks_in_299 {
  flex: 1;
}

#sectional_wrap_left_stacks_in_299 {
  width: 100%;
}

#sectional_content_left_stacks_in_299 {
  
  text-align: center;
  
  color: rgba(7, 64, 128, 1.00);
  max-width: none;
  padding: none;
  
  
  margin-left: auto;
  margin-right: auto;
  
  
}

#sectional_content_left_stacks_in_299 h1,
#sectional_content_left_stacks_in_299 h2,
#sectional_content_left_stacks_in_299 h3,
#sectional_content_left_stacks_in_299 h4,
#sectional_content_left_stacks_in_299 h5,
#sectional_content_left_stacks_in_299 h6,
#sectional_content_left_stacks_in_299 a {
  color: rgba(7, 64, 128, 1.00);
}


/* No background */
#sectional_module_left_stacks_in_299 {
  background: none;
}
























/* Right section module */

#sectional_module_right_stacks_in_299 {
  flex: 1;
}

#sectional_wrap_right_stacks_in_299 {
  width: 100%;
}

#sectional_content_right_stacks_in_299 {
  
  text-align: center;
  
  color: rgba(7, 64, 128, 1.00);
  max-width: none;
  padding: 2rem;
  
  
  margin-left: auto;
  margin-right: auto;
  
  
}

  #sectional_content_right_stacks_in_299 h1,
  #sectional_content_right_stacks_in_299 h2,
  #sectional_content_right_stacks_in_299 h3,
  #sectional_content_right_stacks_in_299 h4,
  #sectional_content_right_stacks_in_299 h5,
  #sectional_content_right_stacks_in_299 h6,
  #sectional_content_right_stacks_in_299 a {
    color: rgba(7, 64, 128, 1.00);
  }

  
  /* No background */
  #sectional_module_right_stacks_in_299 {
    background: none;
  }
  

  

  

  

  

  

  

  

  

  

  

  


#sectional_stacks_in_299 .sectional_module:nth-child(even) {
  margin-right: 0;
}

@media print {
  #sectional_content_left_stacks_in_299,
  #sectional_content_right_stacks_in_299 {
    color: #000000;
    text-align: left;
  }
}








#spacer_stacks_in_350 {
    height: 1rem;
}

#sectional_stacks_in_309 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;

  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#sectional_stacks_in_309 .sectional_module {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
}

@media screen and (min-width: 768px) {
  #sectional_stacks_in_309 {
    flex-direction: row;
  }

  #sectional_stacks_in_309 .sectional_module {
    align-items: center;
    min-height: none;
  }
}

/* Left section module */

#sectional_module_left_stacks_in_309 {
  flex: 1;
}

#sectional_wrap_left_stacks_in_309 {
  width: 100%;
}

#sectional_content_left_stacks_in_309 {
  
  text-align: center;
  
  color: rgba(7, 64, 128, 1.00);
  max-width: none;
  padding: 2rem;
  
  
  margin-left: auto;
  margin-right: auto;
  
  
}

#sectional_content_left_stacks_in_309 h1,
#sectional_content_left_stacks_in_309 h2,
#sectional_content_left_stacks_in_309 h3,
#sectional_content_left_stacks_in_309 h4,
#sectional_content_left_stacks_in_309 h5,
#sectional_content_left_stacks_in_309 h6,
#sectional_content_left_stacks_in_309 a {
  color: rgba(7, 64, 128, 1.00);
}


/* No background */
#sectional_module_left_stacks_in_309 {
  background: none;
}
























/* Right section module */

#sectional_module_right_stacks_in_309 {
  flex: 1;
}

#sectional_wrap_right_stacks_in_309 {
  width: 100%;
}

#sectional_content_right_stacks_in_309 {
  
  text-align: center;
  
  color: rgba(7, 64, 128, 1.00);
  max-width: none;
  padding: none;
  
  
  margin-left: auto;
  margin-right: auto;
  
  
}

  #sectional_content_right_stacks_in_309 h1,
  #sectional_content_right_stacks_in_309 h2,
  #sectional_content_right_stacks_in_309 h3,
  #sectional_content_right_stacks_in_309 h4,
  #sectional_content_right_stacks_in_309 h5,
  #sectional_content_right_stacks_in_309 h6,
  #sectional_content_right_stacks_in_309 a {
    color: rgba(7, 64, 128, 1.00);
  }

  
  /* No background */
  #sectional_module_right_stacks_in_309 {
    background: none;
  }
  

  

  

  

  

  

  

  

  

  

  

  


#sectional_stacks_in_309 .sectional_module:nth-child(even) {
  margin-right: 0;
}

@media print {
  #sectional_content_left_stacks_in_309,
  #sectional_content_right_stacks_in_309 {
    color: #000000;
    text-align: left;
  }
}









#stacks_in_314 .pullquote {
font-size:1.25em;
display:block;

padding:0.5em;

font-style:italic;
}



#stacks_in_314 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_314 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}#spacer_stacks_in_351 {
    height: 1rem;
}

#sectional_stacks_in_320 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;

  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#sectional_stacks_in_320 .sectional_module {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
}

@media screen and (min-width: 768px) {
  #sectional_stacks_in_320 {
    flex-direction: row;
  }

  #sectional_stacks_in_320 .sectional_module {
    align-items: center;
    min-height: none;
  }
}

/* Left section module */

#sectional_module_left_stacks_in_320 {
  flex: 1;
}

#sectional_wrap_left_stacks_in_320 {
  width: 100%;
}

#sectional_content_left_stacks_in_320 {
  
  text-align: center;
  
  color: rgba(7, 64, 128, 1.00);
  max-width: none;
  padding: none;
  
  
  margin-left: auto;
  margin-right: auto;
  
  
}

#sectional_content_left_stacks_in_320 h1,
#sectional_content_left_stacks_in_320 h2,
#sectional_content_left_stacks_in_320 h3,
#sectional_content_left_stacks_in_320 h4,
#sectional_content_left_stacks_in_320 h5,
#sectional_content_left_stacks_in_320 h6,
#sectional_content_left_stacks_in_320 a {
  color: rgba(7, 64, 128, 1.00);
}


/* No background */
#sectional_module_left_stacks_in_320 {
  background: none;
}
























/* Right section module */

#sectional_module_right_stacks_in_320 {
  flex: 1;
}

#sectional_wrap_right_stacks_in_320 {
  width: 100%;
}

#sectional_content_right_stacks_in_320 {
  
  text-align: center;
  
  color: rgba(7, 64, 128, 1.00);
  max-width: none;
  padding: 2rem;
  
  
  margin-left: auto;
  margin-right: auto;
  
  
}

  #sectional_content_right_stacks_in_320 h1,
  #sectional_content_right_stacks_in_320 h2,
  #sectional_content_right_stacks_in_320 h3,
  #sectional_content_right_stacks_in_320 h4,
  #sectional_content_right_stacks_in_320 h5,
  #sectional_content_right_stacks_in_320 h6,
  #sectional_content_right_stacks_in_320 a {
    color: rgba(7, 64, 128, 1.00);
  }

  
  /* No background */
  #sectional_module_right_stacks_in_320 {
    background: none;
  }
  

  

  

  

  

  

  

  

  

  

  

  


#sectional_stacks_in_320 .sectional_module:nth-child(even) {
  margin-right: 0;
}

@media print {
  #sectional_content_left_stacks_in_320,
  #sectional_content_right_stacks_in_320 {
    color: #000000;
    text-align: left;
  }
}








#spacer_stacks_in_352 {
    height: 1rem;
}


#stacks_in_323 .pullquote {
font-size:1.25em;
display:block;

padding:0.5em;

font-style:italic;
}



#stacks_in_323 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_323 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}#sectional_stacks_in_329 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;

  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#sectional_stacks_in_329 .sectional_module {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
}

@media screen and (min-width: 768px) {
  #sectional_stacks_in_329 {
    flex-direction: row;
  }

  #sectional_stacks_in_329 .sectional_module {
    align-items: center;
    min-height: none;
  }
}

/* Left section module */

#sectional_module_left_stacks_in_329 {
  flex: 1;
}

#sectional_wrap_left_stacks_in_329 {
  width: 100%;
}

#sectional_content_left_stacks_in_329 {
  
  text-align: center;
  
  color: rgba(7, 64, 128, 1.00);
  max-width: none;
  padding: 2rem;
  
  
  margin-left: auto;
  margin-right: auto;
  
  
}

#sectional_content_left_stacks_in_329 h1,
#sectional_content_left_stacks_in_329 h2,
#sectional_content_left_stacks_in_329 h3,
#sectional_content_left_stacks_in_329 h4,
#sectional_content_left_stacks_in_329 h5,
#sectional_content_left_stacks_in_329 h6,
#sectional_content_left_stacks_in_329 a {
  color: rgba(7, 64, 128, 1.00);
}


/* No background */
#sectional_module_left_stacks_in_329 {
  background: none;
}
























/* Right section module */

#sectional_module_right_stacks_in_329 {
  flex: 1;
}

#sectional_wrap_right_stacks_in_329 {
  width: 100%;
}

#sectional_content_right_stacks_in_329 {
  
  text-align: center;
  
  color: rgba(7, 64, 128, 1.00);
  max-width: none;
  padding: none;
  
  
  margin-left: auto;
  margin-right: auto;
  
  
}

  #sectional_content_right_stacks_in_329 h1,
  #sectional_content_right_stacks_in_329 h2,
  #sectional_content_right_stacks_in_329 h3,
  #sectional_content_right_stacks_in_329 h4,
  #sectional_content_right_stacks_in_329 h5,
  #sectional_content_right_stacks_in_329 h6,
  #sectional_content_right_stacks_in_329 a {
    color: rgba(7, 64, 128, 1.00);
  }

  
  /* No background */
  #sectional_module_right_stacks_in_329 {
    background: none;
  }
  

  

  

  

  

  

  

  

  

  

  

  


#sectional_stacks_in_329 .sectional_module:nth-child(even) {
  margin-right: 0;
}

@media print {
  #sectional_content_left_stacks_in_329,
  #sectional_content_right_stacks_in_329 {
    color: #000000;
    text-align: left;
  }
}









#stacks_in_337 .pullquote {
font-size:1.25em;
display:block;

padding:0.5em;

font-style:italic;
}



#stacks_in_337 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_337 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}#spacer_stacks_in_353 {
    height: 1rem;
}

#sectional_stacks_in_342 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;

  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#sectional_stacks_in_342 .sectional_module {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
}

@media screen and (min-width: 768px) {
  #sectional_stacks_in_342 {
    flex-direction: row;
  }

  #sectional_stacks_in_342 .sectional_module {
    align-items: center;
    min-height: none;
  }
}

/* Left section module */

#sectional_module_left_stacks_in_342 {
  flex: 1;
}

#sectional_wrap_left_stacks_in_342 {
  width: 100%;
}

#sectional_content_left_stacks_in_342 {
  
  text-align: center;
  
  color: rgba(7, 64, 128, 1.00);
  max-width: none;
  padding: none;
  
  
  margin-left: auto;
  margin-right: auto;
  
  
}

#sectional_content_left_stacks_in_342 h1,
#sectional_content_left_stacks_in_342 h2,
#sectional_content_left_stacks_in_342 h3,
#sectional_content_left_stacks_in_342 h4,
#sectional_content_left_stacks_in_342 h5,
#sectional_content_left_stacks_in_342 h6,
#sectional_content_left_stacks_in_342 a {
  color: rgba(7, 64, 128, 1.00);
}


/* No background */
#sectional_module_left_stacks_in_342 {
  background: none;
}
























/* Right section module */

#sectional_module_right_stacks_in_342 {
  flex: 1;
}

#sectional_wrap_right_stacks_in_342 {
  width: 100%;
}

#sectional_content_right_stacks_in_342 {
  
  text-align: center;
  
  color: rgba(7, 64, 128, 1.00);
  max-width: none;
  padding: 2rem;
  
  
  margin-left: auto;
  margin-right: auto;
  
  
}

  #sectional_content_right_stacks_in_342 h1,
  #sectional_content_right_stacks_in_342 h2,
  #sectional_content_right_stacks_in_342 h3,
  #sectional_content_right_stacks_in_342 h4,
  #sectional_content_right_stacks_in_342 h5,
  #sectional_content_right_stacks_in_342 h6,
  #sectional_content_right_stacks_in_342 a {
    color: rgba(7, 64, 128, 1.00);
  }

  
  /* No background */
  #sectional_module_right_stacks_in_342 {
    background: none;
  }
  

  

  

  

  

  

  

  

  

  

  

  


#sectional_stacks_in_342 .sectional_module:nth-child(even) {
  margin-right: 0;
}

@media print {
  #sectional_content_left_stacks_in_342,
  #sectional_content_right_stacks_in_342 {
    color: #000000;
    text-align: left;
  }
}








#spacer_stacks_in_354 {
    height: 1rem;
}


#stacks_in_346 .pullquote {
font-size:1.25em;
display:block;

padding:0.5em;

font-style:italic;
}



#stacks_in_346 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_346 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}#spacer_stacks_in_394 {
    height: 1rem;
}#rule_stacks_in_284 {
    margin: 1rem 0;
}

#spacer_stacks_in_395 {
    height: 1rem;
}#rule_stacks_in_226 {
    margin: 1rem 0;
}

@important "partials/mixins";
#responsive-timeline-stacks_in_227 {
  padding: 20px 0;
  position: relative; }
  #responsive-timeline-stacks_in_227 .responsive-timeline-scroll-notice {
    color: rgba(51, 51, 51, 1.00);
    background: rgba(207, 216, 220, 1.00);
    font-family: Nunito;
    width: 70px;
    padding: 5px;
    display: block;
    margin: 0 auto;
    display: block;
    font-size: 14px;
    text-align: center;
    border-radius: 3px; }
  #responsive-timeline-stacks_in_227 .responsive-timeline-line {
    width: 80px;
    top: 10px;
    bottom: 10px;
    left: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 1;
    position: absolute;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    box-sizing: border-box;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); }
    #responsive-timeline-stacks_in_227 .responsive-timeline-line::before {
      width: 5px;
      background: rgba(0, 0, 0, 0.10);
      content: '';
      height: 100%;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      display: inline-block;
      box-sizing: border-box; }
  #responsive-timeline-stacks_in_227 .responsive-timeline-container {
    z-index: 2;
    overflow-y: hidden;
    position: relative;
    box-sizing: border-box; }
  #responsive-timeline-stacks_in_227 .responsive-timeline-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    box-sizing: border-box;
    transition: all 0.3s ease-out;
    /*  */
    opacity: 0;
    -webkit-animation-name: item-fade-in;
            animation-name: item-fade-in;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
    /*  */ }
    #responsive-timeline-stacks_in_227 .responsive-timeline-item:nth-child(even) {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; }
      #responsive-timeline-stacks_in_227 .responsive-timeline-item:nth-child(even) .responsive-timeline-content-outer .responsive-timeline-content::before {
        left: -9px;
        box-sizing: border-box; }
    #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-content-outer {
      padding: 20px;
      max-width: calc(50% - 40.000000px);
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto;
      position: relative;
      box-sizing: border-box;
      transition: all 0.3s ease-out; }
      #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-content-outer .responsive-timeline-content {
        /*  */
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.50);
        /*  */
        color: rgba(51, 51, 51, 1.00);
        padding: 20px;
        border-radius: 4px;
        background: rgba(207, 216, 220, 1.00);
        /*  */
        font-family: Nunito;
        /*  */
        z-index: 2;
        width: 100%;
        height: 100%;
        position: relative;
        box-sizing: border-box;
        transition: all 0.3s ease-out; }
        #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-content-outer .responsive-timeline-content h1, #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-content-outer .responsive-timeline-content h2, #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-content-outer .responsive-timeline-content h3, #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-content-outer .responsive-timeline-content h4, #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-content-outer .responsive-timeline-content h5, #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-content-outer .responsive-timeline-content h6 {
          color: #263238; }
        #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-content-outer .responsive-timeline-content a, #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-content-outer .responsive-timeline-content a:visited, #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-content-outer .responsive-timeline-content a:active {
          color: #2979FF; }
        #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-content-outer .responsive-timeline-content::before {
          width: 20px;
          height: 20px;
          right: -9px;
          border-radius: 4px;
          top: 20.000000px;
          content: '';
          z-index: 1;
          display: block;
          position: absolute;
          background: inherit;
          box-sizing: border-box;
          -webkit-transform: rotate(45deg);
                  transform: rotate(45deg);
          -webkit-transform-origin: center center;
                  transform-origin: center center; }
    #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-icon-outer {
      padding: 20px 10px;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      box-sizing: border-box;
      transition: all 0.3s ease-out; }
      #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-icon-outer .responsive-timeline-icon {
        /*  */
        overflow: hidden;
        width: 60px;
        height: 60px;
        border: 0px solid rgba(255, 255, 255, 1.00);
        border-radius: 10px;
        background: rgba(113, 128, 143, 1.00);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        box-sizing: border-box;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        transition: all 0.3s ease-out; }
        #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-icon-outer .responsive-timeline-icon img {
          width: 100%;
          height: auto;
          -webkit-box-flex: 1;
              -ms-flex: 1 0 auto;
                  flex: 1 0 auto; }
        #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-icon-outer .responsive-timeline-icon i {
          color: rgba(255, 255, 255, 1.00);
          font-size: 32px;
          box-sizing: border-box; }
          #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-icon-outer .responsive-timeline-icon i[class*="ion-"] {
            max-width: 32px;
            max-height: 32px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
                -ms-flex-align: center;
                    align-items: center;
            box-sizing: border-box;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center; }
    #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-date-outer {
      height: 60px;
      padding: 0 10px;
      margin-top: 20px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 auto;
              flex: 0 1 auto;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      box-sizing: border-box;
      transition: all 0.3s ease-out; }
      #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-date-outer .responsive-timeline-date {
        color: rgba(113, 128, 143, 1.00);
        font-size: 18px;
        /*  */
        font-family: Nunito;
        /*  */
        box-sizing: border-box;
        transition: all 0.3s ease-out; }

/*  */
/*  */
@media (min-width: 700px) {
  #responsive-timeline-stacks_in_227.vertical.animation-outside-in .responsive-timeline-item:first-child .responsive-timeline-content-outer .responsive-timeline-content {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  #responsive-timeline-stacks_in_227.vertical.animation-outside-in .responsive-timeline-item:first-child .responsive-timeline-icon-outer .responsive-timeline-icon {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); }
  #responsive-timeline-stacks_in_227.vertical.animation-outside-in .responsive-timeline-item:first-child .responsive-timeline-date-outer .responsive-timeline-date {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  #responsive-timeline-stacks_in_227.vertical.animation-outside-in .responsive-timeline-item .responsive-timeline-content-outer .responsive-timeline-content {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); }
  #responsive-timeline-stacks_in_227.vertical.animation-outside-in .responsive-timeline-item .responsive-timeline-icon-outer .responsive-timeline-icon {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0); }
  #responsive-timeline-stacks_in_227.vertical.animation-outside-in .responsive-timeline-item .responsive-timeline-date-outer .responsive-timeline-date {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%); }
  #responsive-timeline-stacks_in_227.vertical.animation-outside-in .responsive-timeline-item:nth-child(even) .responsive-timeline-content-outer .responsive-timeline-content {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); }
  #responsive-timeline-stacks_in_227.vertical.animation-outside-in .responsive-timeline-item:nth-child(even) .responsive-timeline-date-outer .responsive-timeline-date {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); }
  #responsive-timeline-stacks_in_227.vertical.animation-outside-in .responsive-timeline-item.responsive-timeline-animate .responsive-timeline-content-outer .responsive-timeline-content {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  #responsive-timeline-stacks_in_227.vertical.animation-outside-in .responsive-timeline-item.responsive-timeline-animate .responsive-timeline-icon-outer .responsive-timeline-icon {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); }
  #responsive-timeline-stacks_in_227.vertical.animation-outside-in .responsive-timeline-item.responsive-timeline-animate .responsive-timeline-date-outer .responsive-timeline-date {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  #responsive-timeline-stacks_in_227.horizontal.animation-outside-in .responsive-timeline-item:first-child .responsive-timeline-content-outer .responsive-timeline-content {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  #responsive-timeline-stacks_in_227.horizontal.animation-outside-in .responsive-timeline-item:first-child .responsive-timeline-icon-outer .responsive-timeline-icon {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); }
  #responsive-timeline-stacks_in_227.horizontal.animation-outside-in .responsive-timeline-item:first-child .responsive-timeline-date-outer .responsive-timeline-date {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  #responsive-timeline-stacks_in_227.horizontal.animation-outside-in .responsive-timeline-item .responsive-timeline-content-outer .responsive-timeline-content {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  #responsive-timeline-stacks_in_227.horizontal.animation-outside-in .responsive-timeline-item .responsive-timeline-icon-outer .responsive-timeline-icon {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0); }
  #responsive-timeline-stacks_in_227.horizontal.animation-outside-in .responsive-timeline-item .responsive-timeline-date-outer .responsive-timeline-date {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  #responsive-timeline-stacks_in_227.horizontal.animation-outside-in .responsive-timeline-item.responsive-timeline-animate .responsive-timeline-content-outer .responsive-timeline-content {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  #responsive-timeline-stacks_in_227.horizontal.animation-outside-in .responsive-timeline-item.responsive-timeline-animate .responsive-timeline-icon-outer .responsive-timeline-icon {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); }
  #responsive-timeline-stacks_in_227.horizontal.animation-outside-in .responsive-timeline-item.responsive-timeline-animate .responsive-timeline-date-outer .responsive-timeline-date {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  #responsive-timeline-stacks_in_227.horizontal {
    padding: 0; }
    #responsive-timeline-stacks_in_227.horizontal .responsive-timeline-line {
      top: auto;
      width: 100%;
      bottom: 60px;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 80px; }
      #responsive-timeline-stacks_in_227.horizontal .responsive-timeline-line::before {
        width: 100%;
        height: 5px; }
    #responsive-timeline-stacks_in_227.horizontal .responsive-timeline-container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      overflow-x: scroll; }
      #responsive-timeline-stacks_in_227.horizontal .responsive-timeline-container .responsive-timeline-item {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 auto;
                flex: 1 0 auto;
        padding-top: 0;
        width: 100%;
        max-width: 400px;
        position: relative;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding-bottom: 140px; }
        #responsive-timeline-stacks_in_227.horizontal .responsive-timeline-container .responsive-timeline-item .responsive-timeline-content-outer {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          max-width: 100%;
          min-height: auto;
          -webkit-box-align: end;
              -ms-flex-align: end;
                  align-items: flex-end; }
          #responsive-timeline-stacks_in_227.horizontal .responsive-timeline-container .responsive-timeline-item .responsive-timeline-content-outer .responsive-timeline-content::before {
            top: auto;
            bottom: -10px;
            left: 20px; }
        #responsive-timeline-stacks_in_227.horizontal .responsive-timeline-container .responsive-timeline-item .responsive-timeline-icon-outer {
          min-height: 0;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: end;
              -ms-flex-align: end;
                  align-items: flex-end;
          padding: 10px 20px;
          margin-bottom: -80px; }
        #responsive-timeline-stacks_in_227.horizontal .responsive-timeline-container .responsive-timeline-item .responsive-timeline-date-outer {
          left: 0;
          top: auto;
          bottom: 0;
          margin-top: 0;
          position: absolute;
          padding-left: 20px; } }

/*  */
@media (max-width: 700px) {
  #responsive-timeline-stacks_in_227.horizontal .responsive-timeline-container {
    overflow-x: hidden; }
  #responsive-timeline-stacks_in_227.horizontal .responsive-timeline-scroll-notice {
    display: none; }
  #responsive-timeline-stacks_in_227 .responsive-timeline-line {
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 60px; }
  #responsive-timeline-stacks_in_227 .responsive-timeline-item {
    position: relative;
    padding-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; }
    #responsive-timeline-stacks_in_227 .responsive-timeline-item:nth-child(odd) .responsive-timeline-content-outer .responsive-timeline-content::before {
      left: -9px;
      right: auto; }
    #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-content-outer {
      width: 100%;
      max-width: calc(100% - 60px); }
      #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-content-outer .responsive-timeline-content::before {
        top: 10.000000px; }
    #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-icon-outer {
      padding: 20px 10px; }
      #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-icon-outer .responsive-timeline-icon {
        width: 40px;
        height: 40px;
        border-radius: 5px; }
        #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-icon-outer .responsive-timeline-icon i {
          font-size: 20px; }
          #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-icon-outer .responsive-timeline-icon i[class*="ion-"] {
            max-width: 20px;
            max-height: 20px; }
    #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-date-outer {
      top: 0;
      left: 0;
      width: 100%;
      margin-top: 0;
      position: absolute;
      height: 40px;
      padding: 0 10px;
      padding-left: 80px; }
      #responsive-timeline-stacks_in_227 .responsive-timeline-item .responsive-timeline-date-outer .responsive-timeline-date {
        font-size: 16px; }
  #responsive-timeline-stacks_in_227.animation-outside-in .responsive-timeline-item:first-child .responsive-timeline-content-outer .responsive-timeline-content {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  #responsive-timeline-stacks_in_227.animation-outside-in .responsive-timeline-item:first-child .responsive-timeline-icon-outer .responsive-timeline-icon {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); }
  #responsive-timeline-stacks_in_227.animation-outside-in .responsive-timeline-item:first-child .responsive-timeline-date-outer .responsive-timeline-date {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  #responsive-timeline-stacks_in_227.animation-outside-in .responsive-timeline-item .responsive-timeline-content-outer .responsive-timeline-content {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); }
  #responsive-timeline-stacks_in_227.animation-outside-in .responsive-timeline-item .responsive-timeline-icon-outer .responsive-timeline-icon {
    opacity: 0;
    -webkit-transform: scale(0);
            transform: scale(0); }
  #responsive-timeline-stacks_in_227.animation-outside-in .responsive-timeline-item .responsive-timeline-date-outer .responsive-timeline-date {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%); }
  #responsive-timeline-stacks_in_227.animation-outside-in .responsive-timeline-item:nth-child(even) .responsive-timeline-content-outer .responsive-timeline-content {
    -webkit-transform: translateX(100%);
            transform: translateX(100%); }
  #responsive-timeline-stacks_in_227.animation-outside-in .responsive-timeline-item:nth-child(even) .responsive-timeline-date-outer .responsive-timeline-date {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%); }
  #responsive-timeline-stacks_in_227.animation-outside-in .responsive-timeline-item.responsive-timeline-animate .responsive-timeline-content-outer .responsive-timeline-content {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  #responsive-timeline-stacks_in_227.animation-outside-in .responsive-timeline-item.responsive-timeline-animate .responsive-timeline-icon-outer .responsive-timeline-icon {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1); }
  #responsive-timeline-stacks_in_227.animation-outside-in .responsive-timeline-item.responsive-timeline-animate .responsive-timeline-date-outer .responsive-timeline-date {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }

@-webkit-keyframes item-fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes item-fade-in {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
#responsive-timeline-item-stacks_in_228 img {
  width: px;
  height: px;
  margin: px px px px; }
#responsive-timeline-item-stacks_in_233 img {
  width: px;
  height: px;
  margin: px px px px; }
#responsive-timeline-item-stacks_in_263 img {
  width: px;
  height: px;
  margin: px px px px; }
#responsive-timeline-item-stacks_in_355 img {
  width: px;
  height: px;
  margin: px px px px; }
#responsive-timeline-item-stacks_in_360 img {
  width: px;
  height: px;
  margin: px px px px; }
#responsive-timeline-item-stacks_in_365 img {
  width: px;
  height: px;
  margin: px px px px; }


#spacer_stacks_in_402 {
    height: 1rem;
}#spacer_stacks_in_396 {
    height: 1rem;
}#rule_stacks_in_385 {
    margin: 1rem 0;
}

