.inmotion img{ width:100%;   }
.inmotion { width:100%;  overflow:hidden; max-width:100%!important;  }

.slideLeft{
	animation-name: slideLeft;
	-webkit-animation-name: slideLeft;	

	animation-duration: 1s;	
	-webkit-animation-duration: 1s;

	animation-timing-function: linear;	
	-webkit-animation-timing-function:linear;		

	visibility: visible !important;	
}

@keyframes slideLeft {
	0% {
		transform: translateX(150%);
	}
	
	100% {
		transform: translateX(0%);
	}
}

@-webkit-keyframes slideLeft {
	0% {
		-webkit-transform: translateX(150%);
	}
	
	100% {
		-webkit-transform: translateX(0%);
	}
}


/* Outer Container */
.smoothslides, .smoothslides-on {
	position:relative;
	font-size:0;
	line-height: 0;
	min-height: 40px;
	
}
/* Outer Container Background (visible while loading) */
.smoothslides {
	background:rgba(255,255,255,.5);
}
/* Hide images until loaded */
.smoothslides img {
	display:none;
}

/* Loading animation keyframes */ 
@keyframes throb {
	0% {
		opacity:0;
		transform:scale(1);
	}
	50% {
		opacity:1;
		transform:scale(.2);
	}
	100% {
		opacity:0;
		transform:scale(1);
	}
}
@-webkit-keyframes throb {
	0% {
		opacity:0;
		-webkittransform:scale(1);
	}
	50% {
		opacity:1;
		-webkittransform:scale(.2);
	}
	100% {
		opacity:0;
		-webkittransform:scale(1);
	}
}
/* Loading animation */
.smoothslides:before {
	content:'';
	position: absolute;
	width:8px;
	height:8px;
	left:50%;
	top:50%;
	margin-left:-4px;
	margin-top:-4px;

	animation: throb 1s infinite;
	-webkit-animation: throb 1s infinite;
}

/* wrapper around all slides */
.ss-slide-stage {
	position: relative;
	overflow: hidden;

	/* This fixes the bug in chrome where border-radius doesn't work with overflow hidden */
	-webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
}

/* wrapper around each slide */
.ss-slide {
	position: absolute;
	top:0;
	left:0;
	transform-origin:center;
	display: block;
	width:100%;
	zoom: 1;
}
.ss-slide img{
	height:auto;
	/* max-width, or width gets set via JS */
}
/* Caption wrapper. Used for centering */
.ss-caption-wrap {
	position: absolute;
	bottom:40%;
	width:100%;
	padding:0 5px 5px 5px;
	text-align:center;
	box-sizing:border-box;
}

/* Caption */
.ss-caption {
	min-height:50px;
	
	color: #fff;
	font-size:20px;
	font-weight: bold;
	line-height: 1.4em;

	padding-top:15px;
	box-sizing:border-box;
}

/* Previous and Next buttons */
.smoothslides-on a.ss-prev, .smoothslides-on a.ss-next {
	position: absolute;
	bottom:40%;
	left:5px;
	font-size:14px;
	line-height: 1em;
	color:#A1A1A1;
	text-decoration: none;
	background:#fff;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	border-radius: 3px;
	opacity:.5;
	transition:.2s ease-out;
	font-family: sans-serif;
}

.smoothslides-on  a.ss-next {
	left:auto;
	right:5px;
}
/* Highlight nav btns when hovering over the slideshow */
.smoothslides-on:hover .ss-prev, .smoothslides-on:hover .ss-next {
	opacity: 1;
}

.smoothslides-on .ss-prev:hover, .smoothslides-on .ss-next:hover {
	background:#fff;	
	color:#000;
}

/* Pagination wrapper. Used for centering */
.ss-paginate-wrap {
	position: absolute;
	bottom:-30px;
	width:100%;
	text-align:center;
}
.ss-paginate {
	display: inline-block;
	line-height: 0;
}
/* Pagination dots */
.ss-paginate a:link, .ss-paginate a:visited {
	display: inline-block;
	width: 16px;
	height: 4px;
	border-radius: 10px;
	margin: 0 5px;
	background:#ccc;
	background: rgba(0,0,0,.1);
	border: 2px solid #fff;
	transition: .3s;
}
.ss-paginate a:hover {
	background:#ddd;
	background:rgba(0,0,0,.3);
}
.ss-paginate a.ss-paginate-current {
	background:#000;
	background: rgba(0,0,0,.5);
}



@media (max-width: 1024px) {

    .inmotion { max-height:500px!important;}

}


/* changes for smaller screens */
@media (max-width: 600px) {
	.ss-paginate-wrap {
		bottom:-35px;
	}
	.ss-caption {
		min-height:0;
		padding:5px;
		font-size:12px;
	}
	a.ss-prev, a.ss-next {
		bottom:auto;
		top:50%;
		margin-top:-25px;
		color:#000;
		background:rgba(255,255,255,.3);
		color:#444;
	}
	.smoothslides-on, .ss-slide-stage {
		border-radius:0;
	}
}
#stacks_in_44 .ss-caption h4  {  }

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px)  {
	.ss-caption h4  { font-size:50px!important; }
}


@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 600px) {
	.ss-caption h4  { font-size:40px!important; }
}

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: landscape)  {
	.ss-caption h4  { font-size:55px!important; }
}

@media only screen 
  and (max-device-width: 320px)
  and (orientation: portrait)  {
  	.ss-caption h4  { font-size:20px!important; }
}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 600px)
  and (orientation: portrait) {
  	.ss-caption h4  { font-size:30px!important; }
}

@media only screen
  and (max-width: 1024px)   {
	.ss-caption h4  { font-size:55px!important; }
}

@media only screen
  and (max-width: 667px) {
  	.ss-caption h4  { font-size:40px!important; }
}

@media only screen
  and (max-width: 600px) {
  	.ss-caption h4  { font-size:30px!important; }
}

@media only screen
  and (max-width: 320px) {
  	.ss-caption h4  { font-size:20px!important; }
}


#stacks_in_46 .ss-caption h4  {  }

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px)  {
	.ss-caption h4  { font-size:50px!important; }
}


@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 600px) {
	.ss-caption h4  { font-size:40px!important; }
}

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: landscape)  {
	.ss-caption h4  { font-size:55px!important; }
}

@media only screen 
  and (max-device-width: 320px)
  and (orientation: portrait)  {
  	.ss-caption h4  { font-size:20px!important; }
}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 600px)
  and (orientation: portrait) {
  	.ss-caption h4  { font-size:30px!important; }
}

@media only screen
  and (max-width: 1024px)   {
	.ss-caption h4  { font-size:55px!important; }
}

@media only screen
  and (max-width: 667px) {
  	.ss-caption h4  { font-size:40px!important; }
}

@media only screen
  and (max-width: 600px) {
  	.ss-caption h4  { font-size:30px!important; }
}

@media only screen
  and (max-width: 320px) {
  	.ss-caption h4  { font-size:20px!important; }
}


#stacks_in_52 .ss-caption h4  {  }

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px)  {
	.ss-caption h4  { font-size:50px!important; }
}


@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 600px) {
	.ss-caption h4  { font-size:40px!important; }
}

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: landscape)  {
	.ss-caption h4  { font-size:55px!important; }
}

@media only screen 
  and (max-device-width: 320px)
  and (orientation: portrait)  {
  	.ss-caption h4  { font-size:20px!important; }
}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 600px)
  and (orientation: portrait) {
  	.ss-caption h4  { font-size:30px!important; }
}

@media only screen
  and (max-width: 1024px)   {
	.ss-caption h4  { font-size:55px!important; }
}

@media only screen
  and (max-width: 667px) {
  	.ss-caption h4  { font-size:40px!important; }
}

@media only screen
  and (max-width: 600px) {
  	.ss-caption h4  { font-size:30px!important; }
}

@media only screen
  and (max-width: 320px) {
  	.ss-caption h4  { font-size:20px!important; }
}


#stacks_in_54 .ss-caption h4  {  }

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px)  {
	.ss-caption h4  { font-size:50px!important; }
}


@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 600px) {
	.ss-caption h4  { font-size:40px!important; }
}

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (orientation: landscape)  {
	.ss-caption h4  { font-size:55px!important; }
}

@media only screen 
  and (max-device-width: 320px)
  and (orientation: portrait)  {
  	.ss-caption h4  { font-size:20px!important; }
}

@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 600px)
  and (orientation: portrait) {
  	.ss-caption h4  { font-size:30px!important; }
}

@media only screen
  and (max-width: 1024px)   {
	.ss-caption h4  { font-size:55px!important; }
}

@media only screen
  and (max-width: 667px) {
  	.ss-caption h4  { font-size:40px!important; }
}

@media only screen
  and (max-width: 600px) {
  	.ss-caption h4  { font-size:30px!important; }
}

@media only screen
  and (max-width: 320px) {
  	.ss-caption h4  { font-size:20px!important; }
}


.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_78 {
	height: 80.00px;
}




















@media print {
	#spacerStackstacks_in_78 {
		display: none !important;
	}
}
/* @group Generic Styles */

#ruleStackstacks_in_88,
#ruleStackstacks_in_88:before,
#ruleStackstacks_in_88:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#ruleStackstacks_in_88 {
	position: relative;
	overflow: hidden;
	margin: 0.00% 0;
	width: %;
}

/*  */

/*  */
#ruleStackstacks_in_88 {
	max-width: 600px;
	margin-left: auto; margin-right: auto;
}
/*  */

/*  */

#ruleStackstacks_in_88 [class^="fa fa-"] {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	text-align: center;
	color: rgba(204, 204, 204, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_88 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */
#ruleStackstacks_in_88 {
	text-align: center;
}

#ruleStackstacks_in_88:before,
#ruleStackstacks_in_88:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	right: 40px;
	height: 0px;
	border-top: 1px solid rgba(204, 204, 204, 1.00);
}

#ruleStackstacks_in_88:before {
	left: -50%;
	margin-left: -20px;
}

#ruleStackstacks_in_88:after {
	left: 50%;
	margin-left: 20px;
}

#ruleStackstacks_in_88 a {
	left: 50%;
	margin-left: -20px;
}
/*  */

/*  */

/*  */
/*  */
#stacks_in_74 {
	padding: 25px 0px 15px 0px;
}

#stacks_in_154 {
	padding: 145px 0px 0px 0px;
}
/* @group Generic Styles */

#ruleStackstacks_in_156,
#ruleStackstacks_in_156:before,
#ruleStackstacks_in_156:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#ruleStackstacks_in_156 {
	position: relative;
	overflow: hidden;
	margin: 0.00% 0;
	width: %;
}

/*  */

/*  */
#ruleStackstacks_in_156 {
	max-width: 200px;
	margin-left: auto; margin-right: auto;
}
/*  */

/*  */

#ruleStackstacks_in_156 [class^="fa fa-"] {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	text-align: center;
	color: rgba(204, 204, 204, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_156 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */

/*  */

/*  */
#ruleStackstacks_in_156 {
	text-align: left;
}

#ruleStackstacks_in_156:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	left: 0;
	min-height: 1px;
	border-top: 1px solid rgba(204, 204, 204, 1.00);
}

#ruleStackstacks_in_156 [class^="fa fa-"] {
	visibility: hidden;
}

/*  */
/*  */
#stacks_in_141 {
	margin: 0px 0px 20px 0px;
}
#stacks_in_144 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: montserrat;
  
  text-align: center;
}


#stacks_in_144 a,
#stacks_in_144 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  
  -webkit-box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.80);
  -moz-box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.80);
  box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.80);
  margin-bottom: 15px;
  

}


#stacks_in_144 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_144 a i,
#stacks_in_144 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;

  
    float: left;
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_144 a,
  #stacks_in_144 a:visited {
    background-color: rgba(151, 151, 151, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_144 a:hover,
  #stacks_in_144 a:active {
    background-color: rgba(133, 133, 133, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_144 a i,
  #stacks_in_144 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_144 a:hover i,
  #stacks_in_144 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }












  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_144 a,
    #stacks_in_144 a:visited {
      width: 100%;
    }
  }

  





#stacks_in_144 {
	padding: 0px 0px 145px 0px;
}
/* Font style applied when the page has finished loading */

#ExtraContentPlusstacks_in_145 #myExtraContent3,
#ExtraContentPlusstacks_in_145 #fs {
	display: none;
}


#stacks_in_145 {
	background-color: rgba(255, 255, 255, 1.00);
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_146 {
	height: 40.00px;
}




















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

#stacks_in_157 {
	padding: 145px 0px 0px 0px;
}
/* @group Generic Styles */

#ruleStackstacks_in_159,
#ruleStackstacks_in_159:before,
#ruleStackstacks_in_159:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#ruleStackstacks_in_159 {
	position: relative;
	overflow: hidden;
	margin: 0.00% 0;
	width: %;
}

/*  */

/*  */
#ruleStackstacks_in_159 {
	max-width: 200px;
	margin-left: auto; margin-right: auto;
}
/*  */

/*  */

#ruleStackstacks_in_159 [class^="fa fa-"] {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	text-align: center;
	color: rgba(204, 204, 204, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_159 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */

/*  */

/*  */
#ruleStackstacks_in_159 {
	text-align: left;
}

#ruleStackstacks_in_159:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	left: 0;
	min-height: 1px;
	border-top: 1px solid rgba(204, 204, 204, 1.00);
}

#ruleStackstacks_in_159 [class^="fa fa-"] {
	visibility: hidden;
}

/*  */
/*  */
#stacks_in_84 {
	margin: 0px 0px 20px 0px;
}
#stacks_in_136 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: montserrat;
  
  text-align: center;
}


#stacks_in_136 a,
#stacks_in_136 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  
  -webkit-box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.80);
  -moz-box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.80);
  box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.80);
  margin-bottom: 15px;
  

}


#stacks_in_136 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_136 a i,
#stacks_in_136 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;

  
    float: left;
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_136 a,
  #stacks_in_136 a:visited {
    background-color: rgba(151, 151, 151, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_136 a:hover,
  #stacks_in_136 a:active {
    background-color: rgba(133, 133, 133, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_136 a i,
  #stacks_in_136 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_136 a:hover i,
  #stacks_in_136 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }












  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_136 a,
    #stacks_in_136 a:visited {
      width: 100%;
    }
  }

  





#stacks_in_136 {
	padding: 0px 0px 145px 0px;
}
/* Font style applied when the page has finished loading */

#ExtraContentPlusstacks_in_109 #myExtraContent5,
#ExtraContentPlusstacks_in_109 #fs {
	display: none;
}


#stacks_in_109 {
	background-color: rgba(255, 255, 255, 1.00);
}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_135 {
	height: 40.00px;
}




















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

#stacks_in_160 {
	padding: 145px 0px 0px 0px;
}
/* @group Generic Styles */

#ruleStackstacks_in_162,
#ruleStackstacks_in_162:before,
#ruleStackstacks_in_162:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

#ruleStackstacks_in_162 {
	position: relative;
	overflow: hidden;
	margin: 0.00% 0;
	width: %;
}

/*  */

/*  */
#ruleStackstacks_in_162 {
	max-width: 200px;
	margin-left: auto; margin-right: auto;
}
/*  */

/*  */

#ruleStackstacks_in_162 [class^="fa fa-"] {
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	font-size: 18px;
	text-align: center;
	color: rgba(204, 204, 204, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_162 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 40px;
	height: 40px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */

/*  */

/*  */
#ruleStackstacks_in_162 {
	text-align: left;
}

#ruleStackstacks_in_162:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	left: 0;
	min-height: 1px;
	border-top: 1px solid rgba(204, 204, 204, 1.00);
}

#ruleStackstacks_in_162 [class^="fa fa-"] {
	visibility: hidden;
}

/*  */
/*  */
#stacks_in_132 {
	margin: 0px 0px 20px 0px;
}
#stacks_in_137 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: montserrat;
  
  text-align: center;
}


#stacks_in_137 a,
#stacks_in_137 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  
  -webkit-box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.80);
  -moz-box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.80);
  box-shadow: 0 15px 15px -15px rgba(0, 0, 0, 0.80);
  margin-bottom: 15px;
  

}


#stacks_in_137 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_137 a i,
#stacks_in_137 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;

  
    float: left;
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_137 a,
  #stacks_in_137 a:visited {
    background-color: rgba(151, 151, 151, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_137 a:hover,
  #stacks_in_137 a:active {
    background-color: rgba(133, 133, 133, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_137 a i,
  #stacks_in_137 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_137 a:hover i,
  #stacks_in_137 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }












  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_137 a,
    #stacks_in_137 a:visited {
      width: 100%;
    }
  }

  





#stacks_in_137 {
	padding: 0px 0px 145px 0px;
}

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_68 {
	height: 80.00px;
}




















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