* {
  margin: 0px;
  padding: 0px;
}
a:focus {
  outline: none;
}
.clear {
  clear: both;
}
a {
  color: #333333;
  text-decoration: none;
}
a:hover {
  color: #666666;
  text-decoration: none;
}
html {
  background: #b8cae4;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #666666;
  line-height: 18px;
}
#container {
  width: 900px;
  margin: 0 auto;
  background-color: #fff;
  position: absolute;
  padding: 0 40px;
  left: 50%;
  margin-left: -490px;
  -webkit-box-shadow: 0 0 20px 2px rgba(50, 50, 50, .6);
  box-shadow: 0 0 20px 2px rgba(50, 50, 50, .6);
  padding-bottom: 35px;
  margin-top: 40px;
}
.hr {
  width: 900px;
  height: 1px;
  border-bottom: solid 1px #cccccc;
  float: left;
  clear: both;
  margin: 24px 0;
}
span.bigger {
  display: block;
  float: left;
  width: 140px;
}
#header {
  width: 900px;
  float: left;
  position: relative;
}
h2 {
  font-size: 32px;
  color: #2b2b2b;
  margin: 0 0 10px 0;
}
#content {
  width: 900px;
  float: left;
}
.columnll {
  float: left;
  font-size: 1.2em;
  line-height: 1.6em;
  background-color: #eee;
  padding: 10px 15px;
}
.columnrr {
  float: right;
  font-size: 1.2em;
  line-height: 1.6em;
  background-color: #eee;
  padding: 10px 15px;
}

/* =========================================
   Job-Laufband (Volle Breite & Groß)
========================================= */

.ticker-link {
  display: block;
  position: fixed; /* Fixiert den Banner am Viewport */
  bottom: 0; /* Heftet den Banner ganz unten an den Bildschirm */
  left: 0;
  width: 100%; /* Geht über die volle Bildschirmbreite */
  text-decoration: none;
  z-index: 1000; /* Stellt sicher, dass der Banner immer im Vordergrund liegt */
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2); /* Wirft einen leichten Schatten nach oben */
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  background-color: #21afe6;
  color: #ffffff;
  padding: 20px 0; /* Macht den Balken deutlich dicker/höher */
  transition: background-color 0.3s ease;
}

.ticker-link:hover .ticker-wrap {
  background-color: #188dbb; 
}

.ticker-move {
  display: flex;
  white-space: nowrap;
  /* Die Zeit auf 25s erhöht, da die Strecke durch die volle Breite länger ist */
  animation: ticker-scroll 25s linear infinite; 
}

.ticker-item {
  padding-right: 80px; /* Mehr Abstand zwischen den Sätzen */
  font-size: 20px; /* Deutlich größere Schrift */
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}