<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Stylesheet fÃ¼r index.html (ohne Bildwechsler) */

/* ========================  GLOBAL DEFINITION  ====================================== */

/* alternatives Boxmodell */
*, ::before, ::after {
  box-sizing: border-box;
}

/* Farbfestlegungen nur als Fallback fÃ¼r IE9-11
   custom properties fÃ¼r alle anderen!            */
body {
	/*height: 100vh 	 ============== eingefÃ¼gt von OS ============ */
	max-width: 75em; 	/* ============== von OS geÃ¤. von 65em auf 75em ============ */
	margin: 0 auto;
	padding: 0 1em;
	font: normal 1em Arial, sans-serif;
	color: darkRed; /* wird als currentColor fÃ¼r die Akzentfarbe verwendet. */
	color: var(--accent1-color);
	background-color: #ffffff;
	background-color: var(--background-color);
	background-image: url(../img/olive_big_grey_a5.svg);	/*  ============== eingefÃ¼gt von OS ============ */
	background-repeat: space;
	background-position: center;
	background-size: contain;
/*	width: 45vw;
	height: 45vw; */

}

p, ol, ul, dl {
	color: #333;
  color: var(--font-color);
}

:root {
  --background-color: #fff;
  --background2-color: #fede9e;	
  --background3-color: #ccc;		
  --accent1-color: red;
  --accent2-color: #424A29;
  --accent3-color: #fede9e;
	--font-color: #333;
  --font2-color: #666;
	--link-color: darkred;		

}

/* =================================  HEADER  ========================================== */

header {
  position: relative;
  margin: 0;
  padding: 1em;
  background-color: var(--background2-color);
}

header h1 a {
  padding: .5em .5em .5em 3em;
  height: 2.5em;
  background: url('../img/icons/cs_logo_olive_green.svg') no-repeat left;
  text-decoration: none;
  border: 1px solid transparent;
}

header p {
  font-variant: normal;
  font-size: 1.5em;
}

header span {
  font-weight: bold;
}

.akzentfarbe1 {
  color:orange;
	color: var(--accent2-color);
}

.akzentfarbe2 {
  color: darkred;
	color: var(--accent1-color);	
}

/* =====================================  CONTENT  ======================================== */

/* h1, h2 {
  color: var(--font2-color);
} */

h1 {
	font-size: 2.5em;
	color: black;
}

h2 {
	font-size: 1.8em;
	color: #424A29;
}

p {
	color: black
}

/*table {
	color: darkblue 
} */

a {
  color: currentColor;
  color: var(--link-color);	
}
a:hover, a:focus {
  font-weight: bold;
  background-color: var(--accent3-color);
}

a.more {
  float: right;
}
a.more::before {
  content: "â–º";  
  margin-right: .5em;
  display:inline-block;
	text-decoration: none;    
}

a.more:hover, a.more:focus {
  color: var(--accent1-color);
}

h2.img {
  padding-left: 2.5em;
}
.img.about {
  background: url('../img/icons/about.svg') left no-repeat;
  background-size: 2.5em;
}
.img.cash {
  background: url('../img/icons/cash.svg') left no-repeat;
  background-size: 1.25em;
}
.img.group {
  background: url('../img/icons/about.svg') left no-repeat;
  background-size: 2.5em;
}

img, a img {
  border: 0 none;
}

/* ====================================  NAV  ================================== */

nav ul {
  box-shadow: -0.3em .6em .6em 0 rgba(0, 0, 0, .75);
  text-align: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

nav a {
  background-color: #424A29;
  color: white;
  text-decoration: none;
  display: inline-block;
  width: 95%;
  margin: .5em 0;
  padding: .5em 1em;
  border-radius: .5em;
}

nav a[aria-current="page"]{
 color: #fede9e;
 font-weight: bold;
}

nav a:hover,
nav a:focus {
  background-color: var(--accent3-color);
  color: currentColor;
}

.dark nav a:hover,
.dark nav a:focus {
  color: #333;
}



nav a:hover::after ,
nav a:focus::after{
  color: transparent;
}


/* ========================================  FOOTER  =================================== */
footer {
  background-color: var(--accent1-color);
  box-shadow: -0.3em .6em .6em 0 rgba(0, 0, 0, .75);
  margin: 2em 0;
  padding: 0.5em 1em;
  display: flex;
}

footer ul,
footer p {
  flex: 1 1 100%;
          color: var(--background3-color);
}

footer ul {
  padding-left: 0;
  margin-left: 0;
}

footer li  {
  list-style-type: none;
  display: inline-block;
  border-left: .2em solid #ccc;
}
footer li:first-child  {
  border-left-color: transparent;
}
footer a {
  color: var(--accent3-color);
}
footer a:hover, footer a:focus {
  color: var(--accent1-color);
}
footer li a {
  padding: 0 .5em 0 .7em;
}
footer p {
  margin-top: 0;
  padding-top: 0;
  text-align: right;
}


/* ========================================  LAYOUT  ======================================= */

/* Mobile first ! alle BlÃ¶cke haben 100%, Navigation unten*/
main  {
  padding: 1em 0;
  margin: 2em 0;
}

/* Navigationselemente werden untereinander angezeigt */
nav ul {
  display: flex;
  flex-direction: column;
}

/* 2-Spaltenlayout mit breiterem aside */
@media screen and (min-width: 35em) {
  header {
    height: 6em;
  }
}

/* 2-Spaltenlayout mit breiterem aside */
@media screen and (min-width: 55em) {
  header {
    background: var(--background2-color) url('../img/icons/cs_logo_olive_green.svg') no-repeat 100% bottom;
    background-size: contain;
  }

  /* Navigation wird nebeneinander ausgerichtet. */
  nav ul {
    flex-direction: row;
    background-color: #424A29;
  }

  nav li {
    margin: 0;
    flex: 1 1 0%;
  }

  /* Main wird zum Flex-Container */
  main {
    display: flex;
    flex-flow: row wrap;
  }

  main &gt; * {
    flex: 1 100%;  /* Alle Kindelemente werden Ã¼ber die volle Breite dargestellt */
  }

  section {
    flex: 1 48%;  /* Diese Elemente erhalten eine halbe Breite */
    margin: 1%;
  }
}

/* 2-Spaltenlayout mit breiterem aside */
@media screen and (min-width: 58em) {
  section, aside {
    flex: 1 31%;  /* Diese Elemente erhalten eine Breite von 1/3.  */
    margin: 1%;
  }

/* ========================  style-Festlegungen fÃ¼r Tabelle ===================== */ 	

	
.mixed { 
   display: flex;
   flex-wrap: wrap; 
}

/** kleiner Viewport **/
.mixed&gt;* { 
   width: 45%; 
   margin: 5px; border: 1px solid silver;
}

/** groÃŸer Viewport **/
@media (min-width: 980px) {
   .mixed&gt;* { width: 32%;}
}
	.mixed figcaption {
		text-align: center; 
		color: black	
}</pre></body></html>