	
//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 += ".normal  { font-size:9pt; font-family:Arial,Helvetica,sans-serif; color:#515151; font-weight:normal; }";
		strStyle += ".klein  { font-size:8pt; font-family:Arial,Helvetica,sans-serif; color:#515151; font-weight:normal; }";
		strStyle += ".kursiv  { font-size:9pt; font-family:Arial,Helvetica,sans-serif; color:#515151; font-weight:normal; font-style:italic; }";
		strStyle += ".schwarznormal  { font-size:9pt; font-family:Arial,Helvetica,sans-serif; color:#000000; font-weight:normal; }";
		strStyle += ".orangenormal  { font-size:9pt; font-family:Arial,Helvetica,sans-serif; color:#FF5900; font-weight:normal; }";
		strStyle += ".orangefett  { font-size:9pt; font-family:Arial,Helvetica,sans-serif; color:#FF5900; font-weight:bold; }"; 
		strStyle += ".normalfett  { font-size:9pt; font-family:Arial,Helvetica,sans-serif; color:#515151; font-weight:bold; }";
		strStyle += ".schwarzfett  { font-size:9pt; font-family:Arial,Helvetica,sans-serif; color:#000000; font-weight:bold; }";
		strStyle += ".menue  { font-size:8pt; font-family:Arial,Helvetica,sans-serif; color:#000000; font-weight:normal; }";
		strStyle += "a { color:#515151; text-decoration:none; }";
		strStyle += "a:hover  { color:#FF5900; text-decoration:none; }";
	}
//Stylesheets fuer den Mac
	else
	{
		if (MAC)
		{
			strStyle += ".normal  { font-size:11pt; font-family:Arial,Helvetica,sans-serif; color:#515151; font-weight:normal; }";
			strStyle += ".klein  { font-size:10pt; font-family:Arial,Helvetica,sans-serif; color:#515151; font-weight:normal; }";
			strStyle += ".kursiv  { font-size:11pt; font-family:Arial,Helvetica,sans-serif; color:#515151; font-weight:normal; font-style:italic; }";
			strStyle += ".schwarznormal  { font-size:11pt; font-family:Arial,Helvetica,sans-serif; color:#000000; font-weight:normal; }";
			strStyle += ".orangenormal  { font-size:11pt; font-family:Arial,Helvetica,sans-serif; color:#FF5900; font-weight:normal; }";
			strStyle += ".orangefett  { font-size:11pt; font-family:Arial,Helvetica,sans-serif; color:#FF5900; font-weight:bold; }"; 
			strStyle += ".normalfett  { font-size:11pt; font-family:Arial,Helvetica,sans-serif; color:#515151; font-weight:bold; }";
			strStyle += ".schwarzfett  { font-size:11pt; font-family:Arial,Helvetica,sans-serif; color:#000000; font-weight:bold; }";
			strStyle += ".menue  { font-size:10pt; font-family:Arial,Helvetica,sans-serif; color:#000000; font-weight:normal; }";
			strStyle += "a { color:#515151; text-decoration:none; }";
			strStyle += "a:hover  { color:#FF5900; text-decoration:none; }";
		}
	//Standard Stylesheets!
		else
		{
			strStyle += ".normal  { font-size:9pt; font-family:Arial,Helvetica,sans-serif; color:#515151; font-weight:normal; }";
			strStyle += ".klein  { font-size:8pt; font-family:Arial,Helvetica,sans-serif; color:#515151; font-weight:normal; }";
			strStyle += ".kursiv  { font-size:9pt; font-family:Arial,Helvetica,sans-serif; color:#515151; font-weight:normal; font-style:italic; }";
			strStyle += ".schwarznormal  { font-size:9pt; font-family:Arial,Helvetica,sans-serif; color:#000000; font-weight:normal; }";
			strStyle += ".orangenormal  { font-size:9pt; font-family:Arial,Helvetica,sans-serif; color:#FF5900; font-weight:normal; }";
			strStyle += ".orangefett  { font-size:9pt; font-family:Arial,Helvetica,sans-serif; color:#FF5900; font-weight:bold; }"; 
			strStyle += ".normalfett  { font-size:9pt; font-family:Arial,Helvetica,sans-serif; color:#515151; font-weight:bold; }";
			strStyle += ".schwarzfett  { font-size:9pt; font-family:Arial,Helvetica,sans-serif; color:#000000; font-weight:bold; }";
			strStyle += ".menue  { font-size:8pt; font-family:Arial,Helvetica,sans-serif; color:#000000; font-weight:normal; }";
			strStyle += "a { color:#515151; text-decoration:none; }";
			strStyle += "a:hover  { color:#FF5900; text-decoration:none; }";
		}
	}
	strStyle += "//-->";
	strStyle += "</style>";

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

