/* zentrale Style-Datei für das BuLi-Tippspiel */
body 		{ 	background-color:#ccffff;
				font-family:"trebuches ms",sans-serif;
				text-align:center }   /* Für Zentrierung beim IE */
p			{ text-align:center }
.seite	{ 	width:1000px;
				text-align:left;
				border:none;
				margin-left:auto; margin-right:auto }    /* Zentrierung bei allen ausser IE */
.fehler {font-size:80%;
			font-weight:bold;
			color:red;
			margin-left:auto;
			margin-right:auto }
.meldung {	color:green;
			font-weight:bold;
			margin-left:auto;
			margin-right:auto }
.bildText	{	position: relative; }
.bildText img	{	display: block; }
.autor			{	background-color: silver;
					background-color: hsla(0, 0%, 100%, 0.5);
					position: absolute;
					line-height: 1.5em;
					bottom: 0;
					right: 0;
					font-size: 0.7rem;
				}


table {		border-collapse: collapse; }				
.tabkopf {	background-color:#FFFF80; }
.tabcol1 {	background-color:#FFDF00; }
.tabcol2 {	background-color:#FFBF00; }
.tabborder {	border-right: 1px solid; }

a		{	text-decoration:none;
			color:#006699; }
a:visited 	{	text-decoration:none;
				color:#006699; }
a:hover 	{	text-decoration:none;
				background-color:#66ccff; }
.benutzer	{
	background-color: #278A97;
	text-align: left;
	color: #FBF163;
}
/*	für "inc_kopf.php" um das Menü zu formatieren	*/
nav, nav ul, nav li {	/* normalisierung (alle formatierungen werden entfernt) */
	list-style: none;
	margin: 0;
	padding: 0;
	border: 0;
}
nav ul {
	width: 100%;
	/*text-align: center;*/
	text-align: justify;
	display: flex;
}
nav li {
	margin: 0em;
	display: inline-block;
	flex: 1;
	text-align: center;
}
nav a {
	display: block;
	padding: 0.3em 0em;
	/*font-weight: bold;*/
	border-radius: px;
	box-shadow: 1px 3px 3px #FAF5B3 inset;
	color: #FBF163 !important;	/* mit important wird das überschreiben erzwungen; klappt ohne nicht */
	background-color: #278A97;
	transition: background-color .25s ease-in;
}
nav a:focus, nav a:hover, nav a:active {
	color: #278A97 !important;
	background-color: #FBF163;
	transition: background-color 0.01s;
}

nav .aktuell a {		/*	in der navigation wird die aktuelle Seite andernst angezeigt */
	/*background-color: #36B6C7;*/
	color: #FBCE1B !important;
	box-shadow: 3px 5px 4px #FBCE1B inset;
}

/* für div-Block in dem die Links zu den Spieltagen sind - tippen.php, tabelle.php, tipeinsicht.php */
.spieltage, .spieltage ul, .spieltage il { /* normalisierung (alle formatierungen werden entfernt) */
	list-style: none;
	margin: 0;
	padding: 0;
	border: 0;
}
.spieltage ul {
	width: 100%;
	display: flex;
}
.spieltage li {
	margin: 0em;
	display: inline-block;
	flex: 1;
	text-align: center;
}
.spieltage a {
	display: block;
	padding: 0.1em 0em;
	box-shadow: 1px 3px 3px #FAF5B3 inset;
	color: #FBF163 !important;
	background-color: #278A97;
	transition: background-color .25s ease-in;
}
.spieltage a:focus, .spieltage a:hover, .spieltage a:active {
	color: #278A97 !important;
	background-color: #FBF163;
	transition: background-color 0.01s;
}