/* MANDARA */

body {
	background-color:#BACCFA;      /* hellblau #BACCFA   */
	scrollbar-base-color:#0B2177;  /* dunkelblau #0B2177 */
	scrollbar-track-color:#0B2177;
	scrollbar-face-color:#BACCFA; 
	scrollbar-highlight-color:#0B2177;
	scrollbar-3d-light-color:#0B2177; 
	scrollbar-darkshadow-color:#0B2177;
	scrollbar-shadow-color:#0B2177;
	scrollbar-arrow-color:#0B2177;

 	font-size:11pt;
    	font-family:"Comic Sans MS";
    	color:#0B2177;
	}

		/* <------------- formatierung von tabellen ---------- */
		/* <-------------------------------------------------- */
table { /* grundformatierung einer tabelle */
	border-width:0px; border-color:#0B2177; border-style:none;
	}

td {
	font-size:11pt; /* grundformatierung einer zelle */
    	font-family:"Comic Sans MS";
	color:#0B2177;
	border-width:0px; /* der rahmen ist auf 0px eingestellt, daher ist er nicht sichtbar */
	}
	 
/* ein element kann eine zelle (td), ein absatz (p) oder eine ganze tabelle (table) sein */

.border {
	font-size:11pt; 
    	font-family:"Comic Sans MS"; 
    	color:#0B2177; 
	border-width:1px;
	border-color:#0B2177; 
	border-style:solid; 
	}
	 
.border1 {
	font-size:11pt; /* schriftgröße des textes des elements */
    	font-family:"Comic Sans MS"; /* schriftart des textes des elements */
    	color:#0B2177; /* farbe des textes des elements */
	border-width:2px;  /* dicke des rahmens des elements  */
	border-color:#ff0000; /* farbe des rahmens des elements  */
	background:#dddddd; /* hintergrundfarbe des elements */
	border-style:solid; /* stil des rahmens des elements  (optional: dashed, dotted, solid, none, ...)
	Vorsicht: border-styles werden nicht voll allen browsern gleichermaßen interpretiert! */
	}

.border2 {
	font-size:11pt;
    	font-family:"Comic Sans MS";
    	color:#0B2177;
	border-width:5px;
	border-color:#00ff00;
	border-style:dashed;
	}

.border3 {
	font-size:11pt;
    	font-family:"Comic Sans MS";
    	color:#ff00ff;
	border-width:5px;
	border-color:#ff00ff;
	border-style:dotted;
	}
	
	.border4 {
	
    	font-family:"Comic Sans MS"; 
    	color:#ff00ff; 
	border-width:8px;
	border-color:#cccccc; 
	border-style:outset; 
	padding:3px;
	}
	
	
	
		/* <-------------------------------------------------- */
		/* <---------- ende formatierung für tabellen -------- */


		/* <--------------  formatierung für text ------------ */
		/* <-------------------------------------------------- */
p  {
	font-size:11pt;
    	font-family:"Comic Sans MS";
    	color:#0B2177;
	}

h1  {
	font-size:9pt;
	font-family:"Comic Sans MS";
	font-weight:normal;
	color:#0B2177;
	margin-bottom:0pt;
	margin-top:0pt;
	}

h2  {
	font-size:12pt;
	font-family:"Comic Sans MS";
	font-weight:normal;
	color:#0B2177;
	margin-bottom:3pt;
	margin-top:3pt;
	}

h3  {
	font-size:14pt;
	font-family:"Comic Sans MS";
	color:#0B2177;
	margin-bottom:7pt;
	margin-top:0pt;
	}

h4  {
	font-size:25pt;
	font-family:"Comic Sans MS";
	color:#0B2177;
	margin-bottom:15pt;
	margin-top:7pt;
	}
		/* <----------  ende formatierung für text --------- */
		/* <------------------------------------------------ */


		/* <--------------  formatierung für links ----------- */
		/* <-------------------------------------------------- */
a:link {
	font-size:11pt;
    	font-family:"Comic Sans MS";
	font-weight:bold;
    	color:#660099;
	text-decoration:none;
	}

a:visited {
	font-size:11pt; /* schriftgröße */
    	font-family:"Comic Sans MS"; /* schriftart */
	font-weight:bold; /* dicke der schrift (optional:
	bold = fett, bolder = extra-fett, lighter = dünner,
	100,200,300,...,800,900 = extra-dünn (100) bis extra-fett (900),
	normal = normales Schriftgewicht */
    	color:B27FCC;
	text-decoration:none;
	}

a:active {
	font-size:11pt;
    	font-family:"Comic Sans MS";
	font-weight:bold;
    	color:8BB3BE;
	text-decoration:underline;
	}

a:hover {
	font-size:11pt;
    	font-family:"Comic Sans MS";
	font-weight:bold;
    	color:#8BB3BE;
	text-decoration:underline;
	}
		/* <------------  ende formatierung für links -------- */
		/* <-------------------------------------------------- */

