*{
	font-family: Arial, sans-serif;
	color: DarkSlateGrey;
	font-weight: normal;
	line-height: 1.8em;
	border: none;
	padding: 0px;
	margin: 0px;
}

body{
  height:100%; 
  display: grid; 
  grid-template-rows: 82px 1fr 1fr 1.5em; 
  grid-template-areas:  
    "header"
    "sidebar" 
    "content"
    "footer" 
  ; 
}

hr{
	background-color: DarkSlateGrey;
	height: 1px;
	margin-top: 0.5em;
	margin-bottom: 0.5em;	
}

/* +++++++++++++++++++++++++++++++++++++++++++++++ */
/* +++ KOPFZEILE */
/* +++++++++++++++++++++++++++++++++++++++++++++++ */
header{
	grid-area: header;
	background-color: ForestGreen;
	background-image: none;
	position: relative;
	min-height: 0px;
	margin-top: 0px;
	width: 100%;
	#border-bottom: 1px solid Black;
	border-bottom: none;
}

header h1{
	font-size: 24pt;
	font-style: normal;
	color: Ivory;
	text-align: left;
	font-weight: normal;
   margin-left: 15px;
   margin-top: 0px;
}

img.hide{
	display:inline;
	float: left;
}

h1.hide{
	display:inline;
}




/* +++++++++++++++++++++++++++++++++++++++++++++++ */
/* +++ TOPNAVIGATION */
/* +++++++++++++++++++++++++++++++++++++++++++++++ */
nav{
	grid-area: navi;
}

nav#topnavi ul{
	display: none;
	position: relative;
	background-color: ForestGreen;
	width: 200px;
	top: 0px;
	left: -250px;
	margin-top:0px;
	margin-bottom:0px;
	transition-property: left;
	transition-duration: 0.5s;
	z-index:51;
}
		
nav#topnavi:target ul{
	display: inline-block;
	background-color: Silver;
	position: fixed;
	margin-top:0px;
	margin-bottom:0px;
	width: 250px;
	top: 0px;
	left: 0px;
	z-index:51;
}
		
nav#topnavi ul li{
	display: block;
	background-color: LightGrey;
	left: -200px;
	line-height: 2em;
	margin-top:0px;
	margin-bottom:0px;
	margin-left: 1em;
	border-bottom: 1px solid Ivory;
	z-index:52;
	padding-left: 0.5em;
}

nav#topnavi a{
	text-decoration: none;
	color: Black;
}

nav#topnavi a:hover li{
	text-decoration: none;
	background-color: LightGreen;
}





/* +++++++++++++++++++++++++++++++++++++++++++++++ */
/* +++ ARTICLE */
/* +++++++++++++++++++++++++++++++++++++++++++++++ */
article{
	grid-area: content;
	margin-left: 50px;
	margin-right: 50px;
}

article p{
	margin-left: 0px;
	margin-right: 0px;
}

article h2{
	font-size: 14pt;
	margin-top: 10px;
	margin-left: 0px;
	margin-right: 0px;
}

article ol{
	list-style-position: inside;
}

article ol li{
	margin-bottom: 1.0em;
}

ul.spieltag li{
	display: inline-block;
	width: 2em;
	border: 1px solid DarkSlateGrey;
	margin-right: -1px;
	margin-top: -1px;
	text-align: center;	
}
article .titlepage{
	text-align: center;	
}

img.logoright{
	width: 150;
	height: 150;
	margin: 0.5em;
	float: right;
}
img.logoleft{
	width: 50;
	height: 50;
	margin: 0.5em;
	margin-left: 0px;
	float: left;
}

table{
	width: 100%;
}

table.bulitab{
	width: 70%;
	margin-left:auto;
	margin-right: auto;
}

td.bulitab{
	border: 0.2px solid DarkSlateGrey;
	padding-left: 5px;	
	padding-right: 5px;	
	flex-grow: 2;
}

td.bulitabr{
	border: 0.2px solid DarkSlateGrey;
	padding-left: 5px;	
	padding-right: 5px;	
	text-align: right;
}
td.bulitabc{
	border: 0.2px solid DarkSlateGrey;
	padding-left: 5px;	
	padding-right: 5px;	
	text-align: center;
}

input.bulitab{
	background-color: palegreen;
	padding-left: 3px;
	padding-right: 3px;	
}

input.bulitab_tore{
	font-size: 12pt;
	background-color: palegreen;
	padding: 3px;
	width: 2em;
	text-align: center;
}

select{
	background-color: palegreen;
	padding: 3px;
}

.simpletabr{
	text-align: right;
	padding-right: 1em;
}

.simpletabc{
	text-align: center;
	padding-right: 1em;
	padding-left: 1em;
}

.simple{
	font-size: 12pt;
	padding-left:0.5em;
	background-color: ForestGreen;
	color:Ivory;
}

.simple_small{
	font-size: 10pt;
	margin: 0.5em;
	border: 1px solid DarkSlateGrey;
}

.submit{
	padding: 0.2em 1em;
	background-color: PaleGreen;
	font-size: 10pt;
	color: Black;
	border: 1px solid Black;
}

td.select_st{
	border: 1px solid DarkSlateGrey;
	text-align: center;	
}

a.select_st{
	border: none;
	text-decoration: none;	
}

textarea{
	background-color: palegreen;
	margin-bottom: 4px;
	margin-top: 4px;
}
/* +++++++++++++++++++++++++++++++++++++++++++++++ */
/* +++ LOGIN */
/* +++++++++++++++++++++++++++++++++++++++++++++++ */
table.login{
	border-collapse: collapse;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
}

tr.login{
	
}

td.login{
	border: 0.5px solid Black;
	padding: 0.2em;
}

input.login{
	font-size: 12pt;
	padding-left: 0.5em;
	padding-right: 0.5em;
}

article hr{
	margin-left: 2em;
	margin-right: 2em;	
}



/* +++++++++++++++++++++++++++++++++++++++++++++++ */
/* +++ ASIDE */
/* +++++++++++++++++++++++++++++++++++++++++++++++ */
aside{
	grid-area: sidebar;
	background-color: white;
	border-top: 0.1em solid ForestGreen;
	margin-top: 0.3em;
	border-bottom: 0.1em solid ForestGreen;
}

aside .knopf{
	margin-left: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	display: inline-block;
	color: Ivory;
	background-color: ForestGreen;
	text-decoration: none;
	border-top: 0.5px solid DarkSeaGreen;
	border-left: 0.5px solid DarkSeaGreen;
	border-bottom: 0.5px solid MediumSeaGreen;
	border-right: 0.5px solid MediumSeaGreen;
	padding-left: 0.5em;
	padding-right: 0.5em;
	padding-top: 0em;
	padding-bottom: 0em;
}

aside .knopf:hover{
	margin-left: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	display: inline-block;
	color: ForestGreen;
	background-color: Ivory;
	text-decoration: none;
	border-top: 0.5px solid MediumSeaGreen;
	border-left: 0.5px solid MediumSeaGreen;
	border-bottom: 0.5px solid DarkSeaGreen;
	border-right: 0.5px solid DarkSeaGreen;
	padding-left: 0.5em;
	padding-right: 0.5em;
	padding-top: 0em;
	padding-bottom: 0em;
}

aside a{
	color: red;	
}

aside h1{
	font-size: 11pt;
	margin-left: 1em;
	margin-right: 1em;
}

aside p{
	font-size: 10pt;
	line-height: 1.1;
	margin-left: 1em;
	margin-right: 1em;
	margin-top: 0.5em;
}


/* +++++++++++++++++++++++++++++++++++++++++++++++ */
/* +++ FOOTER */
/* +++++++++++++++++++++++++++++++++++++++++++++++ */
footer{
	grid-area: footer;
	text-align: right;
	padding-left: 1em;
	padding-right: 1em;
}













/* ######################################################################################## */
/* ...for larger displays */
/* ######################################################################################## */
@media all and (min-width: 800px){
body{
  height:100vh; 
  display: grid; 
  grid-template-rows: 84px 2em 1fr 100px; 
  grid-template-columns: 27% 27% 27% 19%; 
  grid-template-areas:  
    "header header header header"
    "navi navi navi navi" 
    "content content content sidebar" 
    "footer footer footer footer"; 
}

header{
	grid-area: header;
	background-color: #6f9dd0;
	background-image: url("header_buli.jpg");
	background-repeat: no-repeat;
	/*position: fixed;*/
	margin-top: 0px;
	margin-bottom: 2px;
	border-bottom: 1px solid Black;
}

h1.hide{
	display: none;
}

img.hide{
	display: none;	
}



/* +++++++++++++++++++++++++++++++++++++++++++++++ */
/* +++ TOPNAVIGATION */
/* +++++++++++++++++++++++++++++++++++++++++++++++ */
nav{
	grid-area: navi;
}

nav#topnavi ul{
	display: inline;
	background-color: transparent;
	border: none;
	margin-left: 2px;
	width: 100%;
	left: 0px;
	margin-top:0px;
	margin-bottom:0px;
	z-index:51;
	padding: 0.5em;
}
		
nav#topnavi ul li{
	display: inline;
	background-color: LightGrey;
	border: 1px solid DarkSlateGrey;
	line-height: 2em;
	margin-top:0px;
	margin-bottom:1px;
	margin-left: 1em;
	z-index:52;
	padding: 0.5em 1em;
}

nav#topnavi a{
	text-decoration: none;
	color: Black;
}

nav#topnavi a:hover li{
	text-decoration: none;
	background-color: LightGreen;
}


article{
	grid-area: content;
	padding-top: 1.5em;
}
	

aside{
	grid-area: sidebar;
}

aside .knopf, aside .knopf:hover{
	display: block;
	margin-left: 2em;
	margin-right: 2em;
}

aside p{
	margin-left: 2em;
	margin-right: 2em;	
}

footer{
	grid-area: footer;	
}

}