/* dj */
/* Author: Jan Durdik / durdik.ch ------------------!----> */
/*[id] {
  background-color: snow;
  //color: red;
  //border: 1px dotted black;
}*/
/*p:first-child ~ p {
    color: olive;
}*//*selects all <p> elements that are siblings of the first <p> element and applies the specified styles to them*/
/*.box img {
  border: 1px dotted black;
}*/
p, li {
  text-align: justify;
  margin: 5px auto auto auto;/*old: 5px 7px auto 7px; changed on 2025-11-21 10:46:09 GMT+1*/
}/**/
/*ul, ol {
  margin: 5px auto 5px -25px;
}*/
/*li p {
  margin: 5px auto auto auto;
}*/

/*.box p {
  display: block;
  margin-top: .25em;
  margin-bottom: .25em;
}*/
.box {
  display:flex; /* This defines a flex container, and the direct children of this element become flex items. */
  flex-flow:row nowrap;
	/**/column-gap: 7px;
  align-items:flex-start;
  /**/justify-content:space-between;
  /*gap:20px 2em;*/
  /*border:1px dashed red;*/
  border-radius:3px;
}
/*.box > * {
  border: 2px solid rgb(96 139 168);
  border-radius: 5px;
  background-color: rgb(96 139 168 / 0.2);
  //padding: 1em;
}*/
/*.box :first-child {
  align-self:right;
}
*/


* {
  box-sizing: border-box;
}

/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}
@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 {
    width: 8.33%;
  }
  .col-s-2 {
    width: 16.66%;
  }
  .col-s-3 {
    width: 25%;
  }
  .col-s-4 {
    width: 33.33%;
  }
  .col-s-5 {
    width: 41.66%;
  }
  .col-s-6 {
    width: 50%;
  }
  .col-s-7 {
    width: 58.33%;
  }
  .col-s-8 {
    width: 66.66%;
  }
  .col-s-9 {
    width: 75%;
  }
  .col-s-10 {
    width: 83.33%;
  }
  .col-s-11 {
    width: 91.66%;
  }
  .col-s-12 {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {
    width: 8.33%;
  }
  .col-2 {
    width: 16.66%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.33%;
  }
  .col-5 {
    width: 41.66%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.33%;
  }
  .col-8 {
    width: 66.66%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.33%;
  }
  .col-11 {
    width: 91.66%;
  }
  .col-12 {
    width: 100%;
  }
}
[class*="col-"] {
  float: left;
  padding: 15px;
/*
  border: 1px solid red;
*/
}
.row::after {
  content: "";
  clear: both;
  display: table;
}
html {
  font-family: "Arial Narrow", sans-serif;
  /* dj */
  font-size: 13px; /* from 15 on 21:22 20.01.2022 */
  /* dj */
  line-height: 1.5;
}
.header {
  background-color: #9933cc; /* DarkOrchid #9932CC */
  color: #ffffff; /* White */
  padding: 1px;

  box-shadow: 10px 5px 5px grey; /* 19:25 30.01.2022 */
  border-radius: 5px;

  text-shadow: darkslategray +3px +5px;
}
.header p {
  text-align: start;
}
.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.menu li {
  text-align: left;
  padding: 8px;
  margin-bottom: 7px;
  background-color: #33b5e5; /* LimeGreen #32CD32 */
  color: #ffffff; /* White */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  cursor: pointer;
}
.menu li:hover {
  background-color: #0099cc; /* SpringGreen #00FF7F */
}

@media only screen /*and (max-width: 600px)*/ {
  body {
    background-color: LightBlue;
  }
}
@media only screen and (orientation: landscape) {
  body {
    background-color: LightBlue;
  }
}
div.disappearing {
  background-color: Yellow;
  padding: 20px;
}

/* If the screen size is 600px wide or less, hide the element */

@media only screen and (max-width: 600px) {
  div.disappearing {
    display: none;
  }
}

/* If the screen size is 601px or more, set the font-size of <div> to 80px */
@media only screen and (min-width: 601px) {
  div.example {
    font-size: 80px;
  }
}

/* If the screen size is 600px or less, set the font-size of <div> to 30px */

@media only screen and (max-width: 600px) {
  div.example {
    font-size: 30px;
  }
}
div.example {
  background-color: LightGrey;
  padding: 20px;
}
@media screen and (min-width: 600px) {
  div.example {
    font-size: 60px;
  }
}
@media screen and (max-width: 600px) {
  div.example {
    font-size: 30px;
  }
}

/* dj additional css with RWD images */
img {
  max-width: 100%;
  height: auto;
}
video {
  max-width: 100%;
  height: auto;

  box-shadow: 10px 5px 5px grey; /* 23:51 30.01.2022 */
  border-radius: 5px;
}
.aside {
  background-color: #33b5e5; /* LimeGreen #32CD32 */
  padding: 15px;
  color: #ffffff; /* White */
  text-align: center;
  font-size: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.footer {
  background-color: #0099cc; /* SpringGreen #00FF7F */
  color: #ffffff; /* White */
  text-align: center;
  font-size: 12px;
  padding: 15px;
}
/*
div {
  width: 100%;
  height: 400px;
  background-image: url('../_resources/images/construction4.gif');
  background-size: cover;
  border: 1px solid red;
}
*/
.gridwrapper {
  overflow: auto;
  position: relative;
  height: 10px;
}
.gridcontent {
  width: 8.33%;
  margin: 0;
  border-right: 1px solid grey;
  height: 100%;
  float: left;
  background-color: #84c754; /* YellowGreen #9ACD32; PaleGreen #98FB98; LimeGreen #32CD32; SeaGreen #2E8B57; SpringGreen #00FF7F; LightSkyBlue #87CEFA, SkyBlue #87CEEB; BlueViolet #8A2BE2; SaddleBrown #8B4513 */
  background-color: #f1f1f1; /* WhiteSmoke #F5F5F5 */
}
@media only print and (orientation: landscape) {
  /*
  img {
  width: auto;
  height:500px;
  }
*/
}
@media only print and (orientation: portrait) {
  /*
  img {
  width: auto;
  height:900px;
  }
*/
}