/* 
 *  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_86 {	display: none !important; }
body { -webkit-font-smoothing: antialiased; }
#stacks_in_87 {	display: none !important; }

#stacks_in_88 {	display: none !important; }

#stacks_in_89 {	display: none !important; }


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

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

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

#stacks_in_2 .owl-prev,
#stacks_in_2 .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_2 .owl-prev:focus,
#stacks_in_2 .owl-next:focus {
  background: ;
  border: 1px solid ;
  color: ;
}

#stacks_in_2 .owl-prev:active,
#stacks_in_2 .owl-next:active {
  background: rgba(255, 47, 146, 1.00);
  border: 1px solid rgba(255, 47, 146, 1.00);
  color: rgba(255, 255, 255, 1.00);
}

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








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

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





#stacks_in_6 {
	padding: 0px 0px 30px 0px;
}
#stacks_in_16>.s3_row {
	margin: 0 -10px;
}

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

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




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










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



}



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


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


}






#stacks_in_16 {
	padding: 0px 0px 50px 0px;
}

#stacks_in_13 {
	display:inline-block; width:100%; line-height: 1.300000em;
	font-size: 115%;
}

#stacks_in_28 {
	padding: 0px 0px 30px 0px;
}
#stacks_in_23>.s3_row {
	margin: 0 -10px;
}

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

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




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










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



}



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


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


}






#stacks_in_23 {
	padding: 0px 0px 50px 0px;
}

#stacks_in_27 {
	display:inline-block; width:100%; line-height: 1.300000em;
	font-size: 115%;
}

#stacks_in_34 {
	padding: 0px 0px 30px 0px;
}
#stacks_in_36>.s3_row {
	margin: 0 -10px;
}

#stacks_in_36>.s3_row>.s3_column_left {
	width: 23.76%;
}

#stacks_in_36>.s3_row>.s3_column_right {
	width: 76.239998%;
}




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










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



}



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


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


}






#stacks_in_36 {
	padding: 0px 0px 50px 0px;
}

#stacks_in_40 {
	font-size: 110%;
}

#stacks_in_48 {
	padding: 0px 0px 30px 0px;
}
#stacks_in_43>.s3_row {
	margin: 0 -10px;
}

#stacks_in_43>.s3_row>.s3_column_left {
	width: 26.00%;
}

#stacks_in_43>.s3_row>.s3_column_right {
	width: 74.000000%;
}




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










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



}



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


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


}






#stacks_in_43 {
	padding: 0px 0px 50px 0px;
}

#stacks_in_47 {
	display:inline-block; width:100%; line-height: 1.300000em;
	font-size: 115%;
}

#stacks_in_57 {
	padding: 0px 0px 30px 0px;
}
#stacks_in_52>.s3_row {
	margin: 0 -10px;
}

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

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




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










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



}



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


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


}






#stacks_in_52 {
	padding: 0px 0px 50px 0px;
}

#stacks_in_56 {
	display:inline-block; width:100%; line-height: 1.300000em;
	font-size: 115%;
}

#stacks_in_66 {
	padding: 0px 0px 30px 0px;
}
#stacks_in_61>.s3_row {
	margin: 0 -10px;
}

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

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




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










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



}



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


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


}






#stacks_in_61 {
	padding: 0px 0px 50px 0px;
}

#stacks_in_65 {
	display:inline-block; width:100%; line-height: 1.300000em;
	font-size: 115%;
}
#stacks_in_77>.s3_row {
	margin: 0 -10px;
}

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

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




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










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



}



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


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


}






#stacks_in_75 {
	padding: 0px 0px 30px 0px;
}

#stacks_in_80 {
	padding: 0px 0px 30px 0px;
}
#stacks_in_70>.s3_row {
	margin: 0 -10px;
}

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

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




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










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



}



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


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


}






#stacks_in_70 {
	padding: 0px 0px 50px 0px;
}

#stacks_in_74 {
	display:inline-block; width:100%; line-height: 1.300000em;
	font-size: 115%;
}

#stacks_in_83 {
	display:inline-block; width:100%; line-height: 1.300000em;
	font-size: 115%;
}
