/*
 Friendship Force Norderstedt - Stylesheet
 
 Die offiziellen FF-Farben:
 -----------------------------------
 Bezeichnung	Code		CSS-Name
 -----------------------------------
 rot			#ff0000		red
 orange			#f78411		???
 hellgruen		#5af60c		???
 tuerkis		#39cbc1		???
 blau			#2349e9		???
 magenta		#9221fd		???
 schwarz		#060808		???
 weiss			#ffffff		white
 leicht grau	#fafafa		???

*/


/* allgemeine Einstellungen */
body {
	font-family: sans-serif,Arial,tahoma,verdana;
	background-color: white;
	color: #2349e9;
	font-size: 13px;
}

/* Ueberschriften */
h1 {
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	color: #9221fd;
	background-color: #fafafa;
	border: 1px dotted LightGrey;
}

/* Ueberschriften 2. Ebene */
h2 {
	color: #f78411;
	text-align: left;
	font-size: 16px;
	font-weight: bold;
}

/* Trennlinie */
hr {
	border: 1px dotted LightGrey;
}

/* Bilder mit HOVER-Effekt */
.glowPics {
	-moz-opacity:0.5;
	filter:alpha(opacity=50);
	border: 1px solid LightGrey;
}
.glowPics:hover {
	-moz-opacity:1;
	filter:alpha(opacity=100);
	border: 1px solid #2349e9;
}

/* Links */
a {
	color: #2349e9;
	font-weight: bold;
	border: 1px solid transparent;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
	border: 1px solid #39cbc1;
	color: #9221fd;
	background-color: #5af60c;
}
a:focus {
	text-decoration:none;
}
a:active {
	text-decoration:none;
}

/* Tabellenzellen mit HOVER-Effekt */
.klickCell {
	border: 0px dashed goldenrod; 
}
.klickCell:focus {
	background-color: #5af60c;
}
.klickCell:hover {
	background-color: #5af60c;
}
.klickCell:active {
	background-color: #5af60c;
}

/* Normale Datentabellen */
.standardTable {
	background-color: #fafafa; /* Ivory; */
	border: 1px dotted LightGrey;
}

/* Text des Menueeintrages */
.menuEntry {
	font-family: sans-serif,Arial,tahoma,verdana;
	font-size: 11px;
}

/* Kleingedrucktes */
.verySmall {
	font-size: 9px;
}

/* Bild-Verzierungen */
.photos {
	border: 1px solid lightgrey;
}

/* Zeile in Tabellenliste */
.myevenrow {
	background-color: Ivory;
	font-size: 12px;
}

/* Alternativfarbe fuer zeile in Tabellenliste */
.myoddrow {
	background-color: gainsboro;
	font-size: 12px;
}

/* die Willkommenstexte */
.welcome {
	font-family: sans-serif,Arial,tahoma,verdana;
	font-size: 17px;
	font-weight: bold;
	text-align: center;
}

