

.two_colums {
 width: 100%;

  column-count: 2;

  column-gap: 10px;

}


.news_panel {
	background-color: aliceblue;
}
/*Test sticky float */
.sticky {
  position: sticky;
  background: #F762BC;
  /*width: 100px;
  height: 100px;*/
  top: 100px;
  left: 10px;
  display: flex;
  justify-content:center;
  align-items:center;
  box-shadow: 0 0 6px #000;
  text-shadow: 0 0 4px #fff
}





.footer_border {
	border-right: 1px dotted #E1E1D3;
	box-sizing: border-box;
}

.red {
	background-color: #FF0000;
}
.same_height_wrapper {
    display: table; /* Make the container element behave like a table */
    width: 100%;  /*Set full-width to expand the whole page */
}
.same_height_col {
    display: table-cell; !important/* Make elements inside the container behave like table cells */
	vertical-align: top;
	/*align-content: center;*/
	/*display: block;
	float:left;*/
	margin: 0% 0 0% 1.6%;	
}


.img_box2 {
   width: 100%;
    height: 100%;
    object-fit: cover;
	/*display: block;*/
}




/*  REMOVE MARGINS AS ALL GO FULL WIDTH AT 480 PIXELS */

@media only screen and (max-width: 58em /*640px*/) {
	.same_height_col {
		display: block;
		float:left;
		margin: 1% 0 1% 0%;
	}

.same_height_col:first-child { 
		margin-left: 0; 
	} /* all browsers except IE6 and lower */
}

.bild_zentriert {
    width: 100%;
    height: 150px;
	/*position: relative;*/
	object-fit: cover;
	margin-bottom: 10px;
	/*border: 1px solid #1B2632;
	margin-left: 5%;
	float: right;
	margin-left: 10px;
    background-size: cover;
	 background-position: center; 
	margin-top: 1em;
  box-shadow: 0 0 4px #333;*/

	
}

.bild_rechts {
    max-width: 50%;
    height: auto;
	/*position: relative;*/
	object-fit: cover;
	float: right;
	margin-left: 10px;
	/*background-position: center; 
	margin-top: 1em;
  box-shadow: 0 0 4px #333;*/

	
}
@media only screen and (max-width: 58em/*640px*/) {
	.bild_rechts2 {
    max-width: 50%;/*
	position: relative;*/
    height: auto;

		float: right;
	}
}

.bild_rechts3 {
    width: 20%;
    height: auto;
	position: inherit;/**/
	object-fit: cover;
	/*float: right;
	background: url(../img/MfS+ZAIG+Fo+885+Bild_0158.jpg) no-repeat;
    background-size: cover;
	 background-position: center; 
	margin-top: 1em;*/
	
}


.flex-container {
   display: -webkit-flex;
   display: -ms-flex;
   display: flex;
   -webkit-flex-wrap: wrap;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
}


.news {
border-left: 5px solid #9F3C59;
border-right: 1px solid #CCCCCC;
border-top: 1px solid #CCCCCC;
border-bottom: none;
 background-color: #F5F5F5;
/* 	 	background-color: #1B2632;
	color: #ecece3;  */

  list-style-type: none;
  padding: 10px 20px 0px 20px;
/*margin-bottom: 20px;*/
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
	overflow: hidden; 
}
.news2 {
border-left: 5px solid #9F3C59;
border-right: 1px solid #CCCCCC;
border-top: 1px solid #CCCCCC;
border-bottom: 1px solid #CCCCCC;
 background-color: #F5F5F5;
/* 	 	background-color: #1B2632;
	color: #ecece3;  */

  list-style-type: none;
  /*padding: 10px 20px 0px 20px;
margin-bottom: 20px;*/
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
	overflow: hidden; 
}

.news_headline {
border-left: 5px solid #9F3C59;
border-right: 1px solid #CCCCCC;
border-top: 1px solid #CCCCCC;
border-bottom: none;
 background-color: #F5F5F5;
/* 	 	background-color: #1B2632;
	color: #ecece3;  */

  list-style-type: none;
  padding: 10px 20px 0px 20px;
/*margin-bottom: 20px;*/
-webkit-border-top-left-radius: 5px;
-webkit-border-top-right-radius: 5px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-topright: 5px;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
	overflow: hidden; 
}
.news_content {
border-left: 5px solid #9F3C59;
border-right: 1px solid #CCCCCC;
border-top: none;
border-bottom: 1px solid #CCCCCC;
 /*background-color: #F5F5F5;
 	 	background-color: #1B2632;
	color: #ecece3;  */

  list-style-type: none;
  padding: 10px 20px;
margin-bottom: 20px;
-webkit-border-bottom-right-radius: 5px;
-webkit-border-bottom-left-radius: 5px;
-moz-border-radius-bottomright: 5px;
-moz-border-radius-bottomleft: 5px;
border-bottom-right-radius: 5px;
border-bottom-left-radius: 5px;
	overflow: hidden; 
}


.read-more-state {
  display: none;
}

.read-more-target {
  opacity: 0;
  max-height: 0;
  font-size: 0;
  transition: .25s ease;
}

.read-more-state:checked ~ .read-more-wrap .read-more-target {
  opacity: 1;
  font-size: inherit;
  max-height: 999em;
}

.read-more-state ~ .read-more-trigger:before {
  content: 'Show more';
}

.read-more-state:checked ~ .read-more-trigger:before {
  content: 'Show less';
}

.read-more-trigger {
  cursor: pointer;
  display: inline-block;
  padding: 0 .5em;
  color: #666;
  font-size: .9em;
  line-height: 2;
  border: 1px solid #ddd;
  border-radius: .25em;
	float: right;
}








/*OPTIONAL*/
.button_main_padding {
	padding-top: 10px;
}


