//je nach Plattform werden unterschiedliche Stylesheets geschrieben.

	var strStyle = "";
	var NS = (navigator.appName == "Netscape");
	var IE = (navigator.appName.indexOf("Internet Explorer") != -1);
	var WIN = (navigator.platform.indexOf("Win") > -1);
	var MAC = (navigator.platform.indexOf("Mac") > -1);
	
//erst mal grundsaetzliche styles, fuer alle Plattformen
	strStyle += "<style type='text/css'>";
	strStyle += "<!--";
	
//Stylesheets fuer Win9x/NT  
	if (WIN || (MAC && IE))
	{
		strStyle += ".impressum  { font-size: 8pt; font-family:Verdana,Arial,Helvetica,sans-serif; color:#595959; font-weight:normal; }\n";
		strStyle += ".normal  { font-size: 8pt; font-family:Verdana,Arial,Helvetica,sans-serif; color:#595959; font-weight:normal; }\n";
		strStyle += ".klein  { font-size: 7pt; font-family:Verdana,Arial,Helvetica,sans-serif; color:#595959; font-weight:normal; }\n";
		strStyle += ".bold  { font-size: 8pt; font-family:Verdana,Arial,Helvetica,sans-serif; color:#595959; font-weight:bold; }\n";
		strStyle += ".boldweiss  { font-size: 8pt; font-family:Verdana,Arial,Helvetica,sans-serif; color:#ffffff; font-weight:bold; }\n";
		strStyle += ".highlight  { font-size: 8pt; font-family:Verdana,Arial,Helvetica,sans-serif; color:#FF6600; font-weight:bold; }\n";
		strStyle += ".highlightnormal  { font-size: 8pt; font-family:Verdana,Arial,Helvetica,sans-serif; color:#FF6600; font-weight:normal; }\n";
		strStyle += "a { color:#595959; text-decoration:none; }\n";
		strStyle += "a:hover  { color:#FF6600; text-decoration:none; }\n";
	}
//Stylesheets fuer den Mac
	else
	{
		if (MAC)
		{
			strStyle += ".impressum  { font-size: 11pt; font-family:Verdana,Arial,Helvetica,sans-serif; color:#595959; font-weight:normal; }\n";
			strStyle += ".normal  { font-size: 11pt; font-family:Verdana,Arial,Helvetica,sans-serif; color:#595959; font-weight:normal; }\n";
			strStyle += ".klein  { font-size: 10pt; font-family:Verdana,Arial,Helvetica,sans-serif; color:#595959; font-weight:normal; }\n";
			strStyle += ".bold  { font-size: 11pt; font-family:Verdana,Arial,Helvetica,sans-serif; color:#595959; font-weight:bold; }\n";
			strStyle += ".boldweiss  { font-size: 11pt; font-family:Verdana,Arial,Helvetica,sans-serif; color:#ffffff; font-weight:bold; }\n";
			strStyle += ".highlight  { font-size: 11pt; font-family:Verdana,Arial,Helvetica,sans-serif; color:#FF6600; font-weight:bold; }\n";
			strStyle += ".highlightnormal  { font-size: 11pt; font-family:Verdana,Arial,Helvetica,sans-serif; color:#FF6600; font-weight:normal; }\n";
			strStyle += "a { color:#595959; text-decoration:none; }\n";
			strStyle += "a:hover  { color:#FF6600; text-decoration:none; }\n";
		}
	//Standard Stylesheets!
		else
		{
		strStyle += ".impressum  { font-size: 8pt; font-family:Verdana,Arial,Helvetica,sans-serif; color:#595959; font-weight:normal; }\n";
		strStyle += ".normal  { font-size: 8pt; font-family:Verdana,Arial,Helvetica,sans-serif; color:#595959; font-weight:normal; }\n";
		strStyle += ".klein  { font-size: 7pt; font-family:Verdana,Arial,Helvetica,sans-serif; color:#595959; font-weight:normal; }\n";
		strStyle += ".bold  { font-size: 8pt; font-family:Verdana,Arial,Helvetica,sans-serif; color:#595959; font-weight:bold; }\n";
		strStyle += ".boldweiss  { font-size: 8pt; font-family:Verdana,Arial,Helvetica,sans-serif; color:#ffffff; font-weight:bold; }\n";
		strStyle += ".highlight  { font-size: 8pt; font-family:Verdana,Arial,Helvetica,sans-serif; color:#FF6600; font-weight:bold; }\n";
		strStyle += ".highlightnormal  { font-size: 8pt; font-family:Verdana,Arial,Helvetica,sans-serif; color:#FF6600; font-weight:normal; }\n";
		strStyle += "a { color:#595959; text-decoration:none; }\n";
		strStyle += "a:hover  { color:#FF6600; text-decoration:none; }\n";
		}
	}
	strStyle += "//-->";
	strStyle += "</style>";

	//In einem Rutsch wechschreiben!
	document.write(strStyle);
	document.close();