@charset "UTF-8";
/* CSS Document */
/* global print default */
/* GLOBAL RESET */
* {
  margin: 0;
  color: #000000;
}
/* --- SEITEN-RÄNDER RICHTIG SETZEN --- */
#Gesamt, #Rahmen, #Inhalte, #Footer {
  width: 100%;
  margin: 0;
  background-image: none;
  background-color: #ffffff;
}
/* --- PROBLEMLOESUNG: SIDEBAREN ENTFERNEN --- */
/* WIRKLICH AUS DEM LAYOUT NEHMEN ! */
.Sidebar, .Leftbar, #Sidebar, #Leftbar, .sidebar, .leftbar, .Print, #Header {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  float: none !important;
  position: static !important;
  margin: 0 !important;
  padding: 0 !important;
  visibility: hidden !important;
}
/* --- INHALT AUF DRUCKBREITE ZENTRIEREN --- */
#Inhalte, #Footer {
  margin: 10px auto;
  width: 720px;
  padding: 0;
}
#Footer {
  padding-left: 10px;
}
/* TEXTBEREICHE */
#TextTop, #TextTopFormular, #Buchungsnummer, #OffeneVeranstaltungen {
  margin-left: 0;
}
#TextTopConfirmation, #confirmation {
  margin-left: 0;
}
#TextTop {
  width: 600px;
}
#anmelden {
  margin-left: 0;
}
#InhaltFormular {
  width: unset;
}
/* --- HAUPTPROBLEM BEHOBEN: ENGE MITTE --- */
/* Ursprünglich stand hier width: calc(100% - (280px * 2)); 
   → das presst den Inhalt zusammen, wenn Sidebars nicht richtig entfernt sind.
*/
.Inhalt {
  width: 100% !important;
  max-width: 720px !important;
  margin: 0 auto !important;
  padding: 0 35px;
  float: none !important;
}
