.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_116 .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_146 .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_144 .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_126 .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_124 .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_122 .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_118 .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_114 .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_128 .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_171 .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: 2.00cm;
}

#spacerStackstacks_in_111 {
	height: 2.00cm;
}














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



#stacks_in_173 .button_label {
	font: 500 16px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}





#stacks_in_173 .sweet_button_wrapper {
	text-align:center;

	
		height:32px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_173 .sweet_button_wrapper {
		
			height:28px;
		
	}

	

	#stacks_in_173 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_173 a.sweet_button {
	cursor: default;
	display:inline-block;
	margin:0;
	padding:0px 10px;
	text-decoration:none;
	text-align:center;
	color:rgba(179, 179, 179, 1.00);
	border-style:solid;
	border-width:1px;
	border-color:rgba(179, 179, 179, 1.00);
	border-radius:3px;
	background:rgba(255, 255, 255, 1.00);
}
#stacks_in_173 a.sweet_button:visited {
	color:rgba(179, 179, 179, 1.00);
}

#stacks_in_173 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}








#stacks_in_173 .sweet_button:hover {
	color:rgba(179, 179, 179, 1.00);
	background: rgba(255, 255, 255, 1.00);
}
#stacks_in_173 .sweet_button:active{
	background: rgba(235, 235, 235, 1.00);
}
#stacks_in_173 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_173 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_173 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}








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



#stacks_in_174 .button_label {
	font: 500 16px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	 
		font-family:Helvetica, 'Helvetica Neue', Arial, sans-serif;
	
	
}





#stacks_in_174 .sweet_button_wrapper {
	text-align:center;

	
		height:32px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_174 .sweet_button_wrapper {
		
			height:28px;
		
	}

	

	#stacks_in_174 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_174 a.sweet_button {
	cursor: default;
	display:inline-block;
	margin:0;
	padding:0px 10px;
	text-decoration:none;
	text-align:center;
	color:rgba(179, 179, 179, 1.00);
	border-style:solid;
	border-width:1px;
	border-color:rgba(179, 179, 179, 1.00);
	border-radius:3px;
	background:rgba(255, 255, 255, 1.00);
}
#stacks_in_174 a.sweet_button:visited {
	color:rgba(179, 179, 179, 1.00);
}

#stacks_in_174 a.sweet_button:hover {
	border-color:rgba(153, 153, 153, 1.00);
}








#stacks_in_174 .sweet_button:hover {
	color:rgba(179, 179, 179, 1.00);
	background: rgba(255, 255, 255, 1.00);
}
#stacks_in_174 .sweet_button:active{
	background: rgba(235, 235, 235, 1.00);
}
#stacks_in_174 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_174 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_174 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}








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







.spacerStack {
	height: 0.50cm;
}

#spacerStackstacks_in_175 {
	height: 0.50cm;
}














@media print {
	#spacerStackstacks_in_175 {
		display: none !important;
	}
}
/*start gogrid css*/
 #stacks_in_2 .gogrid_width {
	 display: block;
	overflow: hidden;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	 /*customcss*/
}
#stacks_in_2 .gogrid_wrap {
	overflow: hidden;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	 
}
#stacks_in_2 .gogrid {
	overflow: hidden;
	-webkit-flex: 1 1 auto;
	flex: 1 1 auto;
	width: 5%;
	max-width: 100%;
	padding: 0px;
	margin: 2px;
	background-color: rgba(255, 255, 255, 1.00);
	 -webkit-transition: all ease 1.5s;;
	transition: all ease 1.5s;;
	 align-content: stretch;
	/*customcss*/
}
#stacks_in_2 .gogrid:hover, #stacks_in_2 .gogrid:active {
	
}
              #stacks_in_2 .gogrid_wrap h1, #stacks_in_2 .gogrid_wrap h2, #stacks_in_2 .gogrid_wrap h3, #stacks_in_2 .gogrid_wrap h4, #stacks_in_2 .gogrid_wrap h5, #stacks_in_2 .gogrid_wrap h6 {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	 /*customcss*/
}
 #stacks_in_2 .gogrid_wrap h1 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_2 .gogrid_wrap h2 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_2 .gogrid_wrap h3 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_2 .gogrid_wrap h4 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_2 .gogrid_wrap h5 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_2 .gogrid_wrap h6 {
	color: rgba(0, 0, 0, 1.00);
}
 #stacks_in_2 .gogrid_wrap .text_stack {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	  /*customcss*/
}
#stacks_in_2 .gogrid_wrap .text_stack a {
	
}
#stacks_in_2 .gogrid:nth-child(1) .text_stack {
	 color: rgba(255, 255, 255, 1.00);
	
}
#stacks_in_2 .gogrid:nth-child(6) .text_stack {
	 color: rgba(255, 255, 255, 1.00);
	
}
#stacks_in_2 .gogrid:nth-child(7) .text_stack {
	 color: rgba(255, 255, 255, 1.00);
	
}
#stacks_in_2 .gogrid:nth-child(8) .text_stack {
	 color: rgba(255, 255, 255, 1.00) !important;
	
}
#stacks_in_2 .gogrid img {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	 -webkit-transition: all ease 1.5s;
	transition: all ease 1.5s;
	 min-height: 0px;
	object-fit: cover;
	/*customcss*/
}
#stacks_in_2 .gogrid .image_stack {
	margin: 0px 0px 0px 0px;
}
    #stacks_in_2 .gogrid:hover img {
	
}
        #stacks_in_2 .gogrid_wrap .stacks_out, #stacks_in_2 .gogrid_wrap .dk_denflinkegrafiker_stacks_imagemacro_stack {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	/*customcss*/
}
 #stacks_in_2 .gogrid_wrap .stack_css {
	/*customcss*/
}
 .gogrid_section {
	/*customcss*/
}
.gogrid_article {}
.gogrid_trailer {
	/*customcss*/
}
            
/* --------------------- Media Screen Start ---------------------*/
@media screen and (max-width: 100px) {
	.gogrid_section {
		height: auto !important;
	}
	.gogrid_article {
		height: auto !important;
	}
}
@media screen and (max-width: 1030px) {
	
}
@media screen and (max-width: 780px) {
	
}
@media screen and (max-width: 420px) {
	#stacks_in_2 .gogrid_wrap {
		 margin: -2px;
		  margin-bottom: 2px;
		
	}
	#stacks_in_2 .gogrid {
		width: 45vw;
		max-width: 100vw;
		padding: 10px;
		margin: 2px;
		/*customcss*/
	}
	#stacks_in_2 .gogrid img {
		min-height: 0px !important;
		max-height: none;
		height: auto;
	}
	#stacks_in_2 .gogrid_wrap .stack_css {
		height: auto !important;
	}
}
@media screen and (max-width: 480px) {
	   
}
@media screen and (max-width: 0px) {
	            
}
@media screen and (max-width: 480px) {
	   
}
/*end gogrid css*/
#stacks_in_3 {
	border: solid rgba(153, 153, 153, 1.00);
	border-width: 2px 0px 2px 0px;
}

#stacks_in_4 {
	background-color: rgba(255, 255, 255, 1.00);
	margin:  2px;
}

#stacks_in_5 {
	font-size: 50%;
}

#stacks_in_6 {
	margin:  2px;
}

#stacks_in_148 {
	border: solid rgba(153, 153, 153, 1.00);
	border-width: 0px 0px 2px 0px;
}

#stacks_in_149 {
	margin:  2px;
}

#stacks_in_150 {
	font-size: 50%;
}

#stacks_in_151 {
	margin:  2px;
}

#stacks_in_25 {
	border: solid rgba(153, 153, 153, 1.00);
	border-width: 0px 0px 2px 0px;
}

#stacks_in_26 {
	margin:  2px;
}

#stacks_in_27 {
	font-size: 50%;
}

#stacks_in_28 {
	margin:  2px;
}

#stacks_in_18 {
	border: solid rgba(153, 153, 153, 1.00);
	border-width: 2px 0px 2px 0px;
}

#stacks_in_19 {
	margin:  2px;
}

#stacks_in_20 {
	font-size: 50%;
}

#stacks_in_21 {
	margin:  2px;
}

#stacks_in_48 {
	border: solid rgba(153, 153, 153, 1.00);
	border-width: 0px 0px 2px 0px;
}

#stacks_in_49 {
	margin:  2px;
}

#stacks_in_50 {
	font-size: 50%;
}

#stacks_in_51 {
	margin:  2px;
}

#stacks_in_40 {
	border: solid rgba(153, 153, 153, 1.00);
	border-width: 0px 0px 2px 0px;
}

#stacks_in_41 {
	margin:  2px;
}

#stacks_in_42 {
	font-size: 50%;
}

#stacks_in_43 {
	margin:  2px;
}

#stacks_in_33 {
	border: solid rgba(153, 153, 153, 1.00);
	border-width: 2px 0px 2px 0px;
}

#stacks_in_34 {
	margin:  2px;
}

#stacks_in_35 {
	font-size: 50%;
}

#stacks_in_36 {
	margin:  2px;
}

#stacks_in_10 {
	border: solid rgba(153, 153, 153, 1.00);
	border-width: 0px 0px 2px 0px;
}

#stacks_in_11 {
	background-color: rgba(255, 255, 255, 1.00);
	margin:  2px;
}

#stacks_in_12 {
	font-size: 50%;
}

#stacks_in_13 {
	margin:  2px;
}

#stacks_in_162 {
	border: solid rgba(153, 153, 153, 1.00);
	border-width: 0px 0px 2px 0px;
}

#stacks_in_163 {
	margin:  2px;
}

#stacks_in_164 {
	font-size: 50%;
}

#stacks_in_165 {
	margin:  2px;
}

#stacks_in_61 {
	margin:  2px;
}

#stacks_in_62 {
	font-size: 50%;
	font-weight: bold;
}

#stacks_in_63 {
	margin:  2px;
}

#stacks_in_64 {
	font-size: 50%;
}

#stacks_in_65 {
	margin:  2px;
}

#stacks_in_67 {
	margin:  2px;
}

#stacks_in_68 {
	font-size: 50%;
}

#stacks_in_69 {
	margin:  2px;
}

#stacks_in_71 {
	margin:  2px;
}

#stacks_in_72 {
	font-size: 50%;
}

#stacks_in_73 {
	margin:  2px;
}

#stacks_in_75 {
	margin:  2px;
}

#stacks_in_76 {
	font-size: 50%;
}

#stacks_in_77 {
	margin:  2px;
}

#stacks_in_82 {
	font-size: 50%;
}

#stacks_in_87 {
	font-size: 75%;
}
