/* margin-top = Abstand zwischen Fensterrand und Inhalt oben */
/* margin-bottom = Abstand zwischen Fensterrand und Inhalt unten */
/* 10px = 10 Pixel, Wert aenderbar */

body,table,tr,td,dt,h1,h2,h3,h4,p,ul,ol,li,div,td,th,address,blockquote,nobr,b,i
	{
	background-color:#ffffff;
	font-size:9pt;
	font-family:Arial, Univers;
	margin-top:10px;
	margin-bottom:10px;
	}

h1 { font-size:18pt; }
h2 { font-size:16pt; }
h3 { font-size:14pt; }
h4 { font-size:12pt; }

p.normal
	{
	font-size:9pt;
	font-family:Arial, Univers;
	}

p.anschrift
	{
	font-family:Arial, Univers;
	font-size:9pt;
	}

/* Gilt für all Links vom Typ alpha                                 */
/* <a class=alpha href="../shop/index.htm" target="_top" >Test</a>  */

.alpha:link                                                        /* Anfangsfarbe des Link               */
	{
	color:#0032ff;
	text-decoration:none;
	font-family:Arial, Univers;
	font-size:8pt;
	}

.alpha:active                                                      /* zuletzt besuchte Seite              */
	{
	color:#0032ff;
	text-decoration:none;
	font-family:Arial, Univers;
	font-size:8pt;
	}

.alpha:hover                                                       /* wenn der Link überfahren wird       */
	{
	color:#0032ff;
	text-decoration:none;
	font-family:Arial, Univers;
	font-size:8pt;
	}

.alpha:visited                                                      /* bereits besuchte Seiten            */
	{
	color:#0032ff;
	text-decoration:none;
	font-family:Arial, Univers;
	font-size:8pt;
	}







a:link { color:#0032ff; text-decoration:underline; }
a:visited { color:#0032ff; text-decoration:underline; }
a:active { color:#0032ff; text-decoration:none; }
/* a:link = Verweise zu noch nicht besuchten Seiten */
/* a:visited = Verweise zu bereits besuchten Seiten */
/* a:active = Verweise, die gerade angeklickt werden */
/* color = Farbe */
/* #32ff00 = mittleres blau, Wert aenderbar */
/* #00d0ff = helles blau, Wert aenderbar */
/* #000000 = schwarz, Wert aenderbar */
/* text-decoration = Textstil */
/* underline = unterstrichen, Default-Wert, Wert aenderbar */
/* none = nicht unterstrichen, Wert aenderbar */


