body {
	background-color: white;
	font-family: Arial, Helvetica, sans-serif;
	color: black;
}

button.blau {
  	background-color: white;
  	border: none;
  	color: blue;
  	text-decoration: none;
	font-size:medium;
	cursor: pointer;
}

button.teal {
	background-color: white;
        border: none;
        color: teal;
        text-decoration: none;
        font-size:medium;
        cursor: pointer;
}

button.lila {
	background-color: white;
        border: none;
        color: magenta;
        text-decoration: none;
        font-size:medium;
	cursor: pointer;
}
button.orange {
	background-color: white;
        border: none;
        color: darkorange;
        text-decoration: none;
        font-size:medium;
	cursor: pointer;
}

h1 {
	font-weight: normal;
	text-decoration: none;
	font-size: x-large;
	color: limegreen;
}

h2 {
	font-weight: normal;
	text-decoration: none;
	font-size: medium;
	font-style: oblique;
	color: green;
}

p.ausgabe {
	font-weight: normal;
	text-decoration: none;
	font-size: small;
	color: dimgrey;
}

p.login {
	font-weight: normal;
	text-decoration: none;
	font-size: large;
	color: green;
	}

p.aktuell {
	font-weight: normal;
	text-decoration: none;
	font-size: small;
	color: lightgrey;
	font-style: oblique;
}

p.fehler {
	font-weight: normal;
	text-decoration: none;
	color: red;
}

th.logo {
	font-weight: bold;
	text-decoration: none;
	font-size: xx-large;
	color: limegreen;
}
td.logo {
	font-weight: normal;
	text-decoration: none;
	font-size: small;
	color: darkgrey;
}

td.kl_black {
	font-weight: normal;
	text-decoration: none;
	font-size: small;
	color: black;
}

td.kl_grau {
        font-weight: normal;
        text-decoration: none;
        font-size: x-small;
        color: darkgrey;
}

th.oben {
	font-weight: normal;
	text-decoration: none;
	font-size: x-large;	
	color: green;
}

th.kundenid {
	font-weight: bold;
	text-decoration: none;
	font-size: x-large;
	color: darkorange;
}

td.leer {
	font-size: xx-small;
}

a.menu {
	text-decoration: none;
	font-size: xx-large;
	color: green;
}

a.ktk:link, a.ktk:visited {
	text-decoration: none;
	color: limegreen;
	font-weight: bold;
}

a.ktk:active {color: green;}
a.ktk:hover {color: blue;}

hr {color: green;}
hr.unter {color: lightcyan;}
hr.trennung {color: lightcyan;}
hr.ausgabe {color:darkorange;}

td.aktuell {
        font-weight: normal;
        font-size: small;
        color: lightgrey;
        font-style: oblique;
}

td.ende {color: white;}

.inhalt {
        padding: 16px;
}

.sticky {
        position: fixed;
        top: 0;
        width: 100%;
}   
    
.sticky + .inhalt {
        padding-top: 30px;
}   

/* Navbar container */
.navbar {
  overflow: hidden;
  background-color: green;
  font-family: Arial;
}

/* Links inside the navbar */
.navbar a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: limegreen;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: green;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

#voll {display: block;}
#klein {display: none;}

@media screen and (max-width: 1024px) {
	#voll {display: none;}
	#klein {display: block;}
}
