.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_600 .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_602 .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_604 .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_1204 .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_606 .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_608 .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_1032 .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_1206 .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: 1.00cm;
}

#spacerStackstacks_in_769 {
	height: 1.00cm;
}














@media print {
	#spacerStackstacks_in_769 {
		display: none !important;
	}
}
/*start gogrid css*/
 #stacks_in_611 .gogrid_width {
	 display: block;
	overflow: hidden;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	 /*customcss*/
}
#stacks_in_611 .gogrid_wrap {
	overflow: hidden;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	 
}
#stacks_in_611 .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_611 .gogrid:hover, #stacks_in_611 .gogrid:active {
	
}
              #stacks_in_611 .gogrid_wrap h1, #stacks_in_611 .gogrid_wrap h2, #stacks_in_611 .gogrid_wrap h3, #stacks_in_611 .gogrid_wrap h4, #stacks_in_611 .gogrid_wrap h5, #stacks_in_611 .gogrid_wrap h6 {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	 /*customcss*/
}
 #stacks_in_611 .gogrid_wrap h1 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_611 .gogrid_wrap h2 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_611 .gogrid_wrap h3 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_611 .gogrid_wrap h4 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_611 .gogrid_wrap h5 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_611 .gogrid_wrap h6 {
	color: rgba(0, 0, 0, 1.00);
}
 #stacks_in_611 .gogrid_wrap .text_stack {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	  /*customcss*/
}
#stacks_in_611 .gogrid_wrap .text_stack a {
	
}
#stacks_in_611 .gogrid:nth-child(1) .text_stack {
	 color: rgba(255, 255, 255, 1.00);
	
}
#stacks_in_611 .gogrid:nth-child(6) .text_stack {
	 color: rgba(255, 255, 255, 1.00);
	
}
#stacks_in_611 .gogrid:nth-child(7) .text_stack {
	 color: rgba(255, 255, 255, 1.00);
	
}
#stacks_in_611 .gogrid:nth-child(8) .text_stack {
	 color: rgba(255, 255, 255, 1.00) !important;
	
}
#stacks_in_611 .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_611 .gogrid .image_stack {
	margin: 0px 0px 0px 0px;
}
    #stacks_in_611 .gogrid:hover img {
	
}
        #stacks_in_611 .gogrid_wrap .stacks_out, #stacks_in_611 .gogrid_wrap .dk_denflinkegrafiker_stacks_imagemacro_stack {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	/*customcss*/
}
 #stacks_in_611 .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_611 .gogrid_wrap {
		 margin: -2px;
		  margin-bottom: 2px;
		
	}
	#stacks_in_611 .gogrid {
		width: 45vw;
		max-width: 100vw;
		padding: 10px;
		margin: 2px;
		/*customcss*/
	}
	#stacks_in_611 .gogrid img {
		min-height: 0px !important;
		max-height: none;
		height: auto;
	}
	#stacks_in_611 .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_612 {
	border: solid rgba(153, 153, 153, 1.00);
	border-width: 2px 0px 2px 0px;
}

#stacks_in_613 {
	margin:  2px;
}

#stacks_in_614 {
	font-size: 50%;
}

#stacks_in_615 {
	margin:  2px;
}

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

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

#stacks_in_624 {
	font-size: 50%;
}

#stacks_in_625 {
	margin:  2px;
}

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

#stacks_in_633 {
	margin:  2px;
}

#stacks_in_634 {
	font-size: 50%;
}

#stacks_in_635 {
	margin:  2px;
}

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

#stacks_in_1053 {
	margin:  2px;
}

#stacks_in_1054 {
	font-size: 50%;
}

#stacks_in_1055 {
	margin:  2px;
}

#stacks_in_655 {
	margin:  2px;
}

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

#stacks_in_657 {
	margin:  2px;
}

#stacks_in_658 {
	font-size: 50%;
}

#stacks_in_659 {
	margin:  2px;
}

#stacks_in_661 {
	margin:  2px;
}

#stacks_in_662 {
	font-size: 50%;
}

#stacks_in_663 {
	margin:  2px;
}

#stacks_in_665 {
	margin:  2px;
}

#stacks_in_666 {
	font-size: 50%;
}

#stacks_in_667 {
	margin:  2px;
}

#stacks_in_669 {
	margin:  2px;
}

#stacks_in_670 {
	font-size: 50%;
}

#stacks_in_671 {
	margin:  2px;
}

#stacks_in_673 {
	margin:  2px;
}

#stacks_in_674 {
	font-size: 50%;
}

#stacks_in_675 {
	margin:  2px;
}

#stacks_in_681 {
	margin:  2px;
}

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

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

#stacks_in_684 {
	font-size: 50%;
}

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

#stacks_in_688 {
	font-size: 50%;
}

#stacks_in_689 {
	margin:  2px;
}

#stacks_in_695 {
	margin:  2px;
}

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

#stacks_in_697 {
	margin:  2px;
}

#stacks_in_698 {
	font-size: 50%;
}

#stacks_in_699 {
	margin:  2px;
}

#stacks_in_701 {
	margin:  2px;
}

#stacks_in_702 {
	font-size: 50%;
}

#stacks_in_703 {
	margin:  2px;
}

#stacks_in_705 {
	margin:  2px;
}

#stacks_in_706 {
	font-size: 50%;
}

#stacks_in_707 {
	margin:  2px;
}

#stacks_in_709 {
	margin:  2px;
}

#stacks_in_710 {
	font-size: 50%;
}

#stacks_in_711 {
	margin:  2px;
}

#stacks_in_716 {
	font-size: 50%;
}

#stacks_in_721 {
	font-size: 75%;
}
/*start gogrid css*/
 #stacks_in_465 .gogrid_width {
	 display: block;
	overflow: hidden;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	 /*customcss*/
}
#stacks_in_465 .gogrid_wrap {
	overflow: hidden;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	  margin-bottom: 2px;
	
}
#stacks_in_465 .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_465 .gogrid:hover, #stacks_in_465 .gogrid:active {
	
}
              #stacks_in_465 .gogrid_wrap h1, #stacks_in_465 .gogrid_wrap h2, #stacks_in_465 .gogrid_wrap h3, #stacks_in_465 .gogrid_wrap h4, #stacks_in_465 .gogrid_wrap h5, #stacks_in_465 .gogrid_wrap h6 {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	 /*customcss*/
}
 #stacks_in_465 .gogrid_wrap h1 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_465 .gogrid_wrap h2 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_465 .gogrid_wrap h3 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_465 .gogrid_wrap h4 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_465 .gogrid_wrap h5 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_465 .gogrid_wrap h6 {
	color: rgba(0, 0, 0, 1.00);
}
 #stacks_in_465 .gogrid_wrap .text_stack {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	  /*customcss*/
}
#stacks_in_465 .gogrid_wrap .text_stack a {
	
}
#stacks_in_465 .gogrid:nth-child(1) .text_stack {
	 color: rgba(255, 255, 255, 1.00);
	
}
#stacks_in_465 .gogrid:nth-child(6) .text_stack {
	 color: rgba(255, 255, 255, 1.00);
	
}
#stacks_in_465 .gogrid:nth-child(7) .text_stack {
	 color: rgba(255, 255, 255, 1.00);
	
}
#stacks_in_465 .gogrid:nth-child(8) .text_stack {
	 color: rgba(255, 255, 255, 1.00) !important;
	
}
#stacks_in_465 .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_465 .gogrid .image_stack {
	margin: 0px 0px 0px 0px;
}
    #stacks_in_465 .gogrid:hover img {
	
}
        #stacks_in_465 .gogrid_wrap .stacks_out, #stacks_in_465 .gogrid_wrap .dk_denflinkegrafiker_stacks_imagemacro_stack {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	/*customcss*/
}
 #stacks_in_465 .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_465 .gogrid_wrap {
		 margin: -2px;
		  margin-bottom: 2px;
		
	}
	#stacks_in_465 .gogrid {
		width: 45vw;
		max-width: 100vw;
		padding: 10px;
		margin: 2px;
		/*customcss*/
	}
	#stacks_in_465 .gogrid img {
		min-height: 0px !important;
		max-height: none;
		height: auto;
	}
	#stacks_in_465 .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_642 {
	border: solid rgba(153, 153, 153, 1.00);
	border-width: 0px 0px 2px 0px;
}

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

#stacks_in_644 {
	font-size: 50%;
}

#stacks_in_645 {
	margin:  2px;
}

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

#stacks_in_467 {
	margin:  2px;
}

#stacks_in_468 {
	font-size: 50%;
}

#stacks_in_469 {
	margin:  2px;
}

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

#stacks_in_963 {
	margin:  2px;
}

#stacks_in_964 {
	font-size: 50%;
}

#stacks_in_965 {
	margin:  2px;
}

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

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

#stacks_in_478 {
	font-size: 50%;
}

#stacks_in_479 {
	margin:  2px;
}

#stacks_in_506 {
	margin:  2px;
}

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

#stacks_in_508 {
	margin:  2px;
}

#stacks_in_509 {
	font-size: 50%;
}

#stacks_in_510 {
	margin:  2px;
}

#stacks_in_511 {
	margin:  2px;
}

#stacks_in_512 {
	font-size: 50%;
}

#stacks_in_513 {
	margin:  2px;
}

#stacks_in_514 {
	margin:  2px;
}

#stacks_in_515 {
	font-size: 50%;
}

#stacks_in_516 {
	margin:  2px;
}

#stacks_in_517 {
	margin:  2px;
}

#stacks_in_518 {
	font-size: 50%;
}

#stacks_in_519 {
	margin:  2px;
}

#stacks_in_520 {
	margin:  2px;
}

#stacks_in_521 {
	font-size: 50%;
}

#stacks_in_522 {
	margin:  2px;
}

#stacks_in_523 {
	margin:  2px;
}

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

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

#stacks_in_526 {
	font-size: 50%;
}

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

#stacks_in_528 {
	font-size: 50%;
}

#stacks_in_529 {
	margin:  2px;
}

#stacks_in_530 {
	margin:  2px;
}

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

#stacks_in_532 {
	margin:  2px;
}

#stacks_in_533 {
	font-size: 50%;
}

#stacks_in_534 {
	margin:  2px;
}

#stacks_in_535 {
	margin:  2px;
}

#stacks_in_536 {
	font-size: 50%;
}

#stacks_in_537 {
	margin:  2px;
}

#stacks_in_538 {
	margin:  2px;
}

#stacks_in_539 {
	font-size: 50%;
}

#stacks_in_540 {
	margin:  2px;
}

#stacks_in_541 {
	margin:  2px;
}

#stacks_in_542 {
	font-size: 50%;
}

#stacks_in_543 {
	margin:  2px;
}

#stacks_in_544 {
	font-size: 50%;
}

#stacks_in_545 {
	font-size: 75%;
}
/*start gogrid css*/
 #stacks_in_331 .gogrid_width {
	 display: block;
	overflow: hidden;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	 /*customcss*/
}
#stacks_in_331 .gogrid_wrap {
	overflow: hidden;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	 
}
#stacks_in_331 .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_331 .gogrid:hover, #stacks_in_331 .gogrid:active {
	
}
              #stacks_in_331 .gogrid_wrap h1, #stacks_in_331 .gogrid_wrap h2, #stacks_in_331 .gogrid_wrap h3, #stacks_in_331 .gogrid_wrap h4, #stacks_in_331 .gogrid_wrap h5, #stacks_in_331 .gogrid_wrap h6 {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	 /*customcss*/
}
 #stacks_in_331 .gogrid_wrap h1 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_331 .gogrid_wrap h2 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_331 .gogrid_wrap h3 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_331 .gogrid_wrap h4 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_331 .gogrid_wrap h5 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_331 .gogrid_wrap h6 {
	color: rgba(0, 0, 0, 1.00);
}
 #stacks_in_331 .gogrid_wrap .text_stack {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	  /*customcss*/
}
#stacks_in_331 .gogrid_wrap .text_stack a {
	
}
#stacks_in_331 .gogrid:nth-child(1) .text_stack {
	 color: rgba(255, 255, 255, 1.00);
	
}
#stacks_in_331 .gogrid:nth-child(6) .text_stack {
	 color: rgba(255, 255, 255, 1.00);
	
}
#stacks_in_331 .gogrid:nth-child(7) .text_stack {
	 color: rgba(255, 255, 255, 1.00);
	
}
#stacks_in_331 .gogrid:nth-child(8) .text_stack {
	 color: rgba(255, 255, 255, 1.00) !important;
	
}
#stacks_in_331 .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_331 .gogrid .image_stack {
	margin: 0px 0px 0px 0px;
}
    #stacks_in_331 .gogrid:hover img {
	
}
        #stacks_in_331 .gogrid_wrap .stacks_out, #stacks_in_331 .gogrid_wrap .dk_denflinkegrafiker_stacks_imagemacro_stack {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	/*customcss*/
}
 #stacks_in_331 .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_331 .gogrid_wrap {
		 margin: -2px;
		  margin-bottom: 2px;
		
	}
	#stacks_in_331 .gogrid {
		width: 45vw;
		max-width: 100vw;
		padding: 10px;
		margin: 2px;
		/*customcss*/
	}
	#stacks_in_331 .gogrid img {
		min-height: 0px !important;
		max-height: none;
		height: auto;
	}
	#stacks_in_331 .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_486 {
	border: solid rgba(153, 153, 153, 1.00);
	border-width: 0px 0px 2px 0px;
}

#stacks_in_487 {
	margin:  2px;
}

#stacks_in_488 {
	font-size: 50%;
}

#stacks_in_489 {
	margin:  2px;
}

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

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

#stacks_in_1036 {
	font-size: 50%;
}

#stacks_in_1037 {
	margin:  2px;
}

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

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

#stacks_in_789 {
	font-size: 50%;
}

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

#stacks_in_333 {
	margin:  2px;
}

#stacks_in_334 {
	font-size: 50%;
}

#stacks_in_335 {
	margin:  2px;
}

#stacks_in_375 {
	margin:  2px;
}

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

#stacks_in_377 {
	margin:  2px;
}

#stacks_in_378 {
	font-size: 50%;
}

#stacks_in_379 {
	margin:  2px;
}

#stacks_in_381 {
	margin:  2px;
}

#stacks_in_382 {
	font-size: 50%;
}

#stacks_in_383 {
	margin:  2px;
}

#stacks_in_385 {
	margin:  2px;
}

#stacks_in_386 {
	font-size: 50%;
}

#stacks_in_387 {
	margin:  2px;
}

#stacks_in_389 {
	margin:  2px;
}

#stacks_in_390 {
	font-size: 50%;
}

#stacks_in_391 {
	margin:  2px;
}

#stacks_in_393 {
	margin:  2px;
}

#stacks_in_394 {
	font-size: 50%;
}

#stacks_in_395 {
	margin:  2px;
}

#stacks_in_401 {
	margin:  2px;
}

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

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

#stacks_in_404 {
	font-size: 50%;
}

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

#stacks_in_408 {
	font-size: 50%;
}

#stacks_in_409 {
	margin:  2px;
}

#stacks_in_415 {
	margin:  2px;
}

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

#stacks_in_417 {
	margin:  2px;
}

#stacks_in_418 {
	font-size: 50%;
}

#stacks_in_419 {
	margin:  2px;
}

#stacks_in_421 {
	margin:  2px;
}

#stacks_in_422 {
	font-size: 50%;
}

#stacks_in_423 {
	margin:  2px;
}

#stacks_in_425 {
	margin:  2px;
}

#stacks_in_426 {
	font-size: 50%;
}

#stacks_in_427 {
	margin:  2px;
}

#stacks_in_429 {
	margin:  2px;
}

#stacks_in_430 {
	font-size: 50%;
}

#stacks_in_431 {
	margin:  2px;
}

#stacks_in_436 {
	font-size: 50%;
}

#stacks_in_441 {
	font-size: 75%;
}
/*start gogrid css*/
 #stacks_in_878 .gogrid_width {
	 display: block;
	overflow: hidden;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	 /*customcss*/
}
#stacks_in_878 .gogrid_wrap {
	overflow: hidden;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	 
}
#stacks_in_878 .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_878 .gogrid:hover, #stacks_in_878 .gogrid:active {
	
}
              #stacks_in_878 .gogrid_wrap h1, #stacks_in_878 .gogrid_wrap h2, #stacks_in_878 .gogrid_wrap h3, #stacks_in_878 .gogrid_wrap h4, #stacks_in_878 .gogrid_wrap h5, #stacks_in_878 .gogrid_wrap h6 {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	 /*customcss*/
}
 #stacks_in_878 .gogrid_wrap h1 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_878 .gogrid_wrap h2 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_878 .gogrid_wrap h3 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_878 .gogrid_wrap h4 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_878 .gogrid_wrap h5 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_878 .gogrid_wrap h6 {
	color: rgba(0, 0, 0, 1.00);
}
 #stacks_in_878 .gogrid_wrap .text_stack {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	  /*customcss*/
}
#stacks_in_878 .gogrid_wrap .text_stack a {
	
}
#stacks_in_878 .gogrid:nth-child(1) .text_stack {
	 color: rgba(255, 255, 255, 1.00);
	
}
#stacks_in_878 .gogrid:nth-child(6) .text_stack {
	 color: rgba(255, 255, 255, 1.00);
	
}
#stacks_in_878 .gogrid:nth-child(7) .text_stack {
	 color: rgba(255, 255, 255, 1.00);
	
}
#stacks_in_878 .gogrid:nth-child(8) .text_stack {
	 color: rgba(255, 255, 255, 1.00) !important;
	
}
#stacks_in_878 .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_878 .gogrid .image_stack {
	margin: 0px 0px 0px 0px;
}
    #stacks_in_878 .gogrid:hover img {
	
}
        #stacks_in_878 .gogrid_wrap .stacks_out, #stacks_in_878 .gogrid_wrap .dk_denflinkegrafiker_stacks_imagemacro_stack {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	/*customcss*/
}
 #stacks_in_878 .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_878 .gogrid_wrap {
		 margin: -2px;
		  margin-bottom: 2px;
		
	}
	#stacks_in_878 .gogrid {
		width: 45vw;
		max-width: 100vw;
		padding: 10px;
		margin: 2px;
		/*customcss*/
	}
	#stacks_in_878 .gogrid img {
		min-height: 0px !important;
		max-height: none;
		height: auto;
	}
	#stacks_in_878 .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_342 {
	border: solid rgba(153, 153, 153, 1.00);
	border-width: 0px 0px 2px 0px;
}

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

#stacks_in_344 {
	font-size: 50%;
}

#stacks_in_345 {
	margin:  2px;
}

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

#stacks_in_353 {
	margin:  2px;
}

#stacks_in_354 {
	font-size: 50%;
}

#stacks_in_355 {
	margin:  2px;
}

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

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

#stacks_in_1045 {
	font-size: 50%;
}

#stacks_in_1046 {
	margin:  2px;
}

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

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

#stacks_in_364 {
	font-size: 50%;
}

#stacks_in_365 {
	margin:  2px;
}

#stacks_in_919 {
	margin:  2px;
}

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

#stacks_in_921 {
	margin:  2px;
}

#stacks_in_922 {
	font-size: 50%;
}

#stacks_in_923 {
	margin:  2px;
}

#stacks_in_924 {
	margin:  2px;
}

#stacks_in_925 {
	font-size: 50%;
}

#stacks_in_926 {
	margin:  2px;
}

#stacks_in_927 {
	margin:  2px;
}

#stacks_in_928 {
	font-size: 50%;
}

#stacks_in_929 {
	margin:  2px;
}

#stacks_in_930 {
	margin:  2px;
}

#stacks_in_931 {
	font-size: 50%;
}

#stacks_in_932 {
	margin:  2px;
}

#stacks_in_933 {
	margin:  2px;
}

#stacks_in_934 {
	font-size: 50%;
}

#stacks_in_935 {
	margin:  2px;
}

#stacks_in_936 {
	margin:  2px;
}

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

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

#stacks_in_939 {
	font-size: 50%;
}

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

#stacks_in_941 {
	font-size: 50%;
}

#stacks_in_942 {
	margin:  2px;
}

#stacks_in_943 {
	margin:  2px;
}

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

#stacks_in_945 {
	margin:  2px;
}

#stacks_in_946 {
	font-size: 50%;
}

#stacks_in_947 {
	margin:  2px;
}

#stacks_in_948 {
	margin:  2px;
}

#stacks_in_949 {
	font-size: 50%;
}

#stacks_in_950 {
	margin:  2px;
}

#stacks_in_951 {
	margin:  2px;
}

#stacks_in_952 {
	font-size: 50%;
}

#stacks_in_953 {
	margin:  2px;
}

#stacks_in_954 {
	margin:  2px;
}

#stacks_in_955 {
	font-size: 50%;
}

#stacks_in_956 {
	margin:  2px;
}

#stacks_in_957 {
	font-size: 50%;
}

#stacks_in_958 {
	font-size: 75%;
}
/*start gogrid css*/
 #stacks_in_1061 .gogrid_width {
	 display: block;
	overflow: hidden;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	 /*customcss*/
}
#stacks_in_1061 .gogrid_wrap {
	overflow: hidden;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
	 
}
#stacks_in_1061 .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_1061 .gogrid:hover, #stacks_in_1061 .gogrid:active {
	
}
              #stacks_in_1061 .gogrid_wrap h1, #stacks_in_1061 .gogrid_wrap h2, #stacks_in_1061 .gogrid_wrap h3, #stacks_in_1061 .gogrid_wrap h4, #stacks_in_1061 .gogrid_wrap h5, #stacks_in_1061 .gogrid_wrap h6 {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	 /*customcss*/
}
 #stacks_in_1061 .gogrid_wrap h1 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_1061 .gogrid_wrap h2 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_1061 .gogrid_wrap h3 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_1061 .gogrid_wrap h4 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_1061 .gogrid_wrap h5 {
	color: rgba(0, 0, 0, 1.00);
}
#stacks_in_1061 .gogrid_wrap h6 {
	color: rgba(0, 0, 0, 1.00);
}
 #stacks_in_1061 .gogrid_wrap .text_stack {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	  /*customcss*/
}
#stacks_in_1061 .gogrid_wrap .text_stack a {
	
}
#stacks_in_1061 .gogrid:nth-child(1) .text_stack {
	 color: rgba(255, 255, 255, 1.00);
	
}
#stacks_in_1061 .gogrid:nth-child(6) .text_stack {
	 color: rgba(255, 255, 255, 1.00);
	
}
#stacks_in_1061 .gogrid:nth-child(7) .text_stack {
	 color: rgba(255, 255, 255, 1.00);
	
}
#stacks_in_1061 .gogrid:nth-child(8) .text_stack {
	 color: rgba(255, 255, 255, 1.00) !important;
	
}
#stacks_in_1061 .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_1061 .gogrid .image_stack {
	margin: 0px 0px 0px 0px;
}
    #stacks_in_1061 .gogrid:hover img {
	
}
        #stacks_in_1061 .gogrid_wrap .stacks_out, #stacks_in_1061 .gogrid_wrap .dk_denflinkegrafiker_stacks_imagemacro_stack {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	/*customcss*/
}
 #stacks_in_1061 .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_1061 .gogrid_wrap {
		 margin: -2px;
		  margin-bottom: 2px;
		
	}
	#stacks_in_1061 .gogrid {
		width: 45vw;
		max-width: 100vw;
		padding: 10px;
		margin: 2px;
		/*customcss*/
	}
	#stacks_in_1061 .gogrid img {
		min-height: 0px !important;
		max-height: none;
		height: auto;
	}
	#stacks_in_1061 .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_1092 {
	border: solid rgba(153, 153, 153, 1.00);
	border-width: 0px 0px 2px 0px;
}

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

#stacks_in_1094 {
	font-size: 50%;
}

#stacks_in_1095 {
	margin:  2px;
}

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

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

#stacks_in_1197 {
	font-size: 50%;
}

#stacks_in_1198 {
	margin:  2px;
}

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

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

#stacks_in_1210 {
	font-size: 50%;
}

#stacks_in_1211 {
	margin:  2px;
}

#stacks_in_1102 {
	margin:  2px;
}

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

#stacks_in_1104 {
	margin:  2px;
}

#stacks_in_1105 {
	font-size: 50%;
}

#stacks_in_1106 {
	margin:  2px;
}

#stacks_in_1107 {
	margin:  2px;
}

#stacks_in_1108 {
	font-size: 50%;
}

#stacks_in_1109 {
	margin:  2px;
}

#stacks_in_1110 {
	margin:  2px;
}

#stacks_in_1111 {
	font-size: 50%;
}

#stacks_in_1112 {
	margin:  2px;
}

#stacks_in_1113 {
	margin:  2px;
}

#stacks_in_1114 {
	font-size: 50%;
}

#stacks_in_1115 {
	margin:  2px;
}

#stacks_in_1116 {
	margin:  2px;
}

#stacks_in_1117 {
	font-size: 50%;
}

#stacks_in_1118 {
	margin:  2px;
}

#stacks_in_1119 {
	margin:  2px;
}

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

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

#stacks_in_1122 {
	font-size: 50%;
}

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

#stacks_in_1124 {
	font-size: 50%;
}

#stacks_in_1125 {
	margin:  2px;
}

#stacks_in_1126 {
	margin:  2px;
}

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

#stacks_in_1128 {
	margin:  2px;
}

#stacks_in_1129 {
	font-size: 50%;
}

#stacks_in_1130 {
	margin:  2px;
}

#stacks_in_1131 {
	margin:  2px;
}

#stacks_in_1132 {
	font-size: 50%;
}

#stacks_in_1133 {
	margin:  2px;
}

#stacks_in_1134 {
	margin:  2px;
}

#stacks_in_1135 {
	font-size: 50%;
}

#stacks_in_1136 {
	margin:  2px;
}

#stacks_in_1137 {
	margin:  2px;
}

#stacks_in_1138 {
	font-size: 50%;
}

#stacks_in_1139 {
	margin:  2px;
}

#stacks_in_1140 {
	font-size: 50%;
}

#stacks_in_1141 {
	font-size: 75%;
}
