@charset "utf-8";

/* Gleiche Anfangswerte setzen zur Unabhaengigkeit vom Browser */
* {
  margin: 0;
  padding: 0;
}

/* Verschachtelte Liste eingerueckt */
li ol,
li ul {
	list-style-position: inside; 
}

table {
	border: 2px solid #000;
	border-collapse: collapse;
	empty-cells: show;
}

th {
	border: 2px solid #000;
	padding: 0.2em;
}

td {
	border: 1px solid #000;
	padding: 0.2em;
}


.achtung {
	color: #f00;
}
.achtung a {
	color: #807;
}

.fehler {
	color: #f00;
	text-align: center;
}

.autor {
	color: #888;
	text-align: right;
	font-size: 70%;
   margin-top: 15px;
}

h1 {
	font-size: 1.5em;
}

@media screen, projection {
	
	body {
	  background-color: #000;
	  font-style: normal; /* nicht kursiv ! */
	}
	
	/*---------------------------------------------------------------------------------- oberer Bereich -----------------------------------------------------------------*/
	#logo {
		position: absolute;
		width: 224px;
		height: 150px;
		top: 0px;
		left: 0px;
		border: 20px solid #000;
		border-right: 10px solid #000;
		border-bottom: 15px solid #000;
		z-index: 10;
	}
	
	
	#kopf {	
		position: absolute;
		top: 0px;
		right: 0px;
		left: 244px;
		height: 150px;
		border: 20px solid #000;
		border-left: 10px solid #000;
		border-bottom: 15px solid #000;
		min-width: 400px;
		
		text-align: left;	
		font-variant: small-caps;
		z-index: 1;
		color: #fff;
		background: #1b3c70 url(../images/bg_kopf.png) repeat-y scroll left top; 
		/* Alt: background-color: #19273f; Mischung aus #333; und  #001c4c; */ 
	}


	/* Legt die Schrift im Kopf hoeher als die Figuren */
	#folie {
		position: absolute;
		width: 100%;
		height: 100%;
		text-align: center;	
		z-index: 3;
		font-size: 2em;
		font-weight: 600;
	}
	
	#figuren_links {
		position: absolute;
		bottom: 0px;
		left: 3px;
		z-index: 2;
	}
	
	#figuren_rechts {
		position: absolute;
		bottom: 0px;
		right: 0px;
		z-index: 2;
	}
	
	/*---------------------------------------------------------------------------------- Hauptmenue -----------------------------------------------------------------*/
	#hauptmenue {
		position: absolute;	
		width: 182px;	
		top: 170px;
		bottom: 100px;
		left: 0px;
		padding: 40px 17px 50px 25px; /* bei right muss width angepasst werden, bottom: 50px  für den IE6  */
		border: 5px solid #29374f;
		border-right: 10px solid #000;
		-moz-border-radius-topleft: 10px;
		margin: 15px;
		min-height: 310px; /* für aktuelle Browser */
		text-align: left;	
		font-family: Verdana, Tahoma, sans-serif;
		background: #1b3c70 url(../images/bg_hauptmenue.png) repeat-x scroll left top;
	}
	
	#hauptmenue li {
		list-style: none;
	}
	
	#hauptmenue a,
	#hauptmenue strong {
		display: block;
		padding: 5px 10px 7px 5px;
		/*line-height: normal;*/
	}
	
	#hauptmenue li a,
	#hauptmenue li strong {
		border-bottom: 1px solid #eeeadd; /* Unterstrich ausser fuer Impressum */
		text-decoration: none; /* Unterstrich bei Menütiteln entfernen */
	}
	
	#hauptmenue,
	#hauptmenue a {	
		color: #fff;
	}
	
	/*die aktuelle Seite*/
	#hauptmenue strong {
		color: #000;
		/* background-color: #19273f;  */
	}
	
	#impressum_link {	
		position: absolute;	
		right: 0px;	
		bottom: 5px;
		left: 0px;
		width: 224px;
		text-align: center;
	}
	
	#impressum_link * { /* Der Unterstrich soll zum Text gehoeren und bei strong auch die entsprechende Farbe haben */
		text-decoration: underline;
	}

	#corner {
		position: absolute;
		bottom: -5px;
		left: -5px;
	}
	
	/* Alte Browser verstehen fixed und den Attributsselektor [] nicht */
	#logo[id],#hauptmenue[id] /* ,#kopf[id] */{
  		/* position: fixed;*/
	}
	
	
	
	/* Reihenfolge :link, :visited, :hover, :focus, :active einhalten! */
	/* beim draufzeigen mit der Maus*/
	#hauptmenue li:hover { background-color: #fff; } /* Der IE7 zeigt die Background-Aenderung nicht an, wenn er vorher transparent war */
	#hauptmenue a:hover {
		background-color: #fff;		
		color: #000;
	}

	/*---------------------------------------------------------------------------------- Inhalt -----------------------------------------------------------------*/
	
	.inhalt {
		position: absolute;	
		top: 170px;			
		right: 0px;
		left: 244px;
		padding: 2em;
		border: 20px solid #000;
		border-top: 15px solid #000;
		border-left: 10px solid #000;
		border-bottom: 20px solid #000;
		min-width: 340px;		
		background-color: #eeeadd;
		z-index: 0;
		font-family: Verdana, Tahoma, sans-serif;
	}
}


.inhalt {
	color: #000;
	text-align: left;
}

.inhalt h1,
.inhalt h2,
.inhalt h3 {
	text-align: center;
	text-decoration: underline;
}


/*---------------------------------------------------------------------------------- Werte fuer bestimmte Seiten -----------------------------------------------------------------*/
#aktuelles {
	text-align: center;
}

#aktuelles ul {
	padding-left: 4em;
	padding-right: 4em;
	font-family: "Courier New", Courier, monospace;
	text-align: left;

}

#aktuelles li {
	-moz-border-radius-bottomleft:10px;
	-moz-border-radius-bottomright:10px;
	-moz-border-radius-topleft:10px;
	-moz-border-radius-topright:10px;
	background-color:#E8E5D8;
	border: 3px ridge #837E6F;
	margin-bottom: 3em;
	padding: 2em;
	list-style:none;
}

#aktuelles li div {
    margin-top: 1em;
}

#aktuelles .alt {
	color: #837E6F;
}

#aktuelles .alt a {
	color: #837EFF;
}


/* muss anscheinen innerhalb von @media screen, projection stehen */
#aktuelles .alt a[class="edit"]{
	color: #1b3c70;
}

#aktuelles .neu a {
	color: #2277a9;
}

#aktuelles .trenner {
	border-top: solid gray 1px;
	margin-top: 10em;
	margin-bottom: 3em;
}

#aktuelles img{
	float: left;
	margin-top: 0.5em;
	margin-right: 1.5em;
	margin-bottom: 0.5em;
	border: 0px;
}

#aktuelles .clearleft {
	clear: left;
	margin: 0px;
}

#aktuelles h4,
#aktuelles h5 {
	text-align: center;
}

#aktuelles table {
	margin-left:auto; margin-right:auto; /* Zentrieren der Tabelle fuer nicht IE */
	background-color: #eeeadd;
	font-size: 80%;
}

#saison {
	text-align: center;
}

#saison .table_commentary {
	font-size: 75%;
}

#saison ul {
	list-style: none;
}

#saison table {
	margin-left:auto; margin-right:auto; /* Zentrieren der Tabelle fuer nicht IE */
	font-size: 80%;
	empty-cells: show;
}


/* Reduziere Schriftgröße für Links zur Schachgemeinschaft Dortmund */
#saison .svr a  {
	font-size: 80%;
}

#dwz a {
	font-size: 90%;
}

#saison .borders_top_bottom_hidden {
	border-top: 3px solid #eeeadd; border-bottom: 3px solid #eeeadd; /* Für den IE */
	border-top: hidden; border-bottom: hidden; /* Für Firefox & Co */
}

#saison .borders_top_hidden {
	border-top: 3px solid #eeeadd; /* Für den IE */
	border-top: hidden; /* Für Firefox & Co */
}

#saison .borders_bottom_hidden {
	border-bottom: 3px solid #eeeadd; /* Für den IE */
	border-bottom: hidden; /* Für Firefox & Co */
}

@media screen, projection {
	#saison {
		min-width: 780px;
	}
	
	#saisonbody #kopf {
		min-width: 840px;
	}
	
	#saison table {
		background-color: #eeeadd;
	}
	
	#saison .border_r {
		border-right: 2px solid #000;
	} 

	#saison .border_u {
		border-bottom: 2px solid #000;
	} 
	
	#saison .border_ru {
		border-right: 2px solid #000;
		border-bottom: 2px solid #000;
	} 
	
	#saison .heim { 
		background: #99ffbf url(../images/heimspiel.png) repeat-x scroll left bottom;
	}
	
	#saison .ausw { 
		background: #f189a2 url(../images/auswaertsspiel.png) repeat-x scroll left bottom;
	}

	#saison .mf {
		background-color: #ddd9cc;
	}
	
	#saison td li strong {
		color: #761827;
	}		
}

#interneturniere {
	padding-top: 3em;
	padding-left: 6em;
	padding-right: 6em;
	text-align: left;
}

#interneturniere h2,
#interneturniere h3 {
	padding-left: 1em;
	text-align: left;
}

#interneturniere table {
	text-align: left;
	border: 0px solid #000;
}

#interneturniere th {
	padding-left: 3em; /* funktioniert bei table nicht im IE7, daher hier fuer th */
	vertical-align: top;
	border: 0px solid #000;
}

#interneturniere th,
#interneturniere td:first-of-type {
	padding-top: 0.5em;
}

#interneturniere td {
	padding-left: 1em;
	vertical-align: top;
	border: 0px solid #000;
}

#verein {
	text-align: center;
}

#spiellokal {
	text-align: center;
	min-width: 650px;
}

#spiellokalbody #kopf {
	min-width: 710px;
}



#kontakt table {
	margin-left:auto; margin-right:auto; /* Zentrieren der Tabelle fuer nicht IE */
	font-size: 80%;
	empty-cells: show;
}

#kontakt ul {
	padding-top: 40px;
	list-style: none;
}

#kontakt .aendern {
	border-top: hidden;
	border-right: hidden;
	border-bottom: hidden;
	border-left: 2px solid #000;
	padding-left: 10px;
}

#kontakt .left {
	clear: right;
	text-align: left;
}

#kontakt .left img{
	float: left;
	margin-top: 20px;
	margin-right: 20px;
}

#kontakt .right {
	text-align: right;
}

#kontakt .right img {
	float: right; 
	margin-top: 20px;
	margin-left: 20px;	
}

@media screen, projection {
	#kontakt .right {
		clear: left;
	}
}

@media print {
	#logo,	
	#kopf,
	#hauptmenue {
		display: none;
	}
	a {
		color: #000;
	}
	
	table {
		border-collapse: separate;
	}

	
	#saison .ausw { 
		background-color: #ddd9cc;
		font-weight: bold;
		
	}	
	
	#saison .borders_top_bottom_hidden {
		border: 3px solid #eeeadd; /* Für den IE */
		border: hidden; /* Für Firefox & Co */
	}

	#saison .borders_top_hidden,
	#saison .borders_bottom_hidden {
		border-right: 3px solid #eeeadd; border-left: 3px solid #eeeadd; /* Für den IE */
		border-right: hidden; border-left: hidden; /* Für Firefox & Co */
	}
	
	#kontakt {
		font-size: 80%;
	}
	#kontakt a {
		text-decoration: none; /* Unterstrich entfernen */
	}
	
	#kontakt table {
		font-size: 60%;
	}
	
	#kontakt img,
	#kontakt .printhide,
	#kontakt .aendern {
		display: none;
	}

	#kontakt .left {
		float: left;
	}
} 
#impressum {
	text-align: center;
}

#impressum table {
	margin-left:auto; margin-right:auto; /* Zentrieren der Tabelle fuer nicht IE */
	border: 0px solid #000;
}

#impressum th {
	text-align: right;
	border: 0px solid #000;
}

#impressum td {
	text-align: left;
	border: 0px solid #000;
}

#spielbericht {
	text-align: center;
}

#spielbericht div {
	text-align: left;
	margin: 0 2em; 0 2em;
}

#spielbericht table {
	margin-left:auto; margin-right:auto; /* Zentrieren der Tabelle fuer nicht IE */
}

#verfassen,
#ergebnis,
#mitglied,
#tabelle {
	text-align: center;
}

#mitglied table,
#tabelle table {
	text-align: left;
	margin-left:auto; margin-right:auto;
}

#mitglied th,
#mitglied td {
	padding: 5px;
}

#tabelle th,
#tabelle td {
	padding: 0px;
}

#tabelle table input {
	border: none;
}

#login fieldset {
	margin-left: auto; margin-right:auto; /* Zentrieren der Tabelle fuer nicht IE */
	padding: 1em 2em;
	width: 22em;
	background-color: #e6e4d1;
}

#login label {
	clear: left;
	float: left;
	font-weight: bold;
	width: 10em;
}

#login input {
	border: 1px solid #aaa;
	display: block;
	padding: 2px;
}

#login input.senden{
	margin: 2em 0 1em 11em;
 	clear: left;
 	width: 10em;
}

#login input:hover {
	border: 1px solid #555;
}

#login input:focus {
	border: 1px solid #000;
}


.pseudotabelle {
	margin-left: 10em;

}

.edit,
.alt a[class="edit"]{
	color: #1b3c70; /*#339949;*/
	text-decoration: none;
	font-weight: bold;
}

.loeschen,
#aktuelles .alt a[class="loeschen"]{
	color: #f00;
	text-decoration: none;
}

.editbutton {
	border: 4px solid #1b3c70;
	border-style: outset;
	margin: 6px;
	padding: 3px;
	background-color: #eeeadd;
}

.editbutton a {
	color: #1b3c70;
	text-decoration: none;
	font-weight: bold;
}

.neu {
	color: #339949;
}


