/*

Standard TBB-Style - http://www.tritanium-scripts.com

Falls sie sich nicht so gute mit CSS auskennen, finden sie auf
http://selfaktuell.teamone.de viele Informationen dazu.

Kurze Erklärung:
color - Textfarbe (z.B. blue, FFFFFF, #000000)
font-family - Schriftart (z.B. verdana, arial)
font-size - Schriftgröße (z.B. 10pt, 10px)
font-weight - Schriftdicke (z.B. bold, bolder, lighter)
text-decoration - Unterstrichen, Oberstrichen... (z.B. none, overline, underline)
background-color - Hintergrundfarbe (z.B. blue, FFFFFF, #000000)
text-align - Ausrichtung des Textes (z.B. left, right)
padding - Abstand des Textes zum Rahmen (z.B. 2pt, 4px)

Um ein Hintergrundbild zu verwenden, müssen sie im Abschnitt body
folgendes einfügen:
background-image:url(background.jpg);

*/

.v8bl {
	font-family:verdana;
	font-size:8pt;
	color:black;
	font-weight:lighter;
}

.v8fl {
	font-family:verdana;
	font-size:8pt;
	color:#FCFBFF;   //fehér
	font-weight:lighter;
}

.v8bb {
	font-family:verdana;
	font-size:8pt;
	color:black;
	font-weight:bold;
}


.v8fb {
	font-family:verdana;
	font-size:8pt;
	color:#FCFBFF;  //fehér
	font-weight:bold;
}

.v10pb {
	font-family:verdana;
	font-size:10pt;
	color:#FF0000;  //piros
	font-weight:bold;
}

.v12fb {
	font-family:verdana;
	font-size:12pt;
	color:black;
	font-weight:bold;
}




A:link { /* Ein normaler Link */
	color: #0058EE;
	text-decoration: none;
}
A:visited { /* Ein besuchter Link */
	color: #0058EE;
	text-decoration: none;
}
A:active {  /* Ein angewählter Link */
	text-decoration: none;
}
A:hover { /* Maus über einem Link */
	text-decoration: underline;
}
