﻿/*Farbige Scrollbars*/
html, 
body, 
textarea {
			scrollbar-base-color:			#6E6E6E;
			/*scrollbar-3d-light-color:		#FFFF00; nicht unterstützt*/
  			scrollbar-arrow-color:			#6E6E6E;
  			scrollbar-darkshadow-color:		#6E6E6E;
  			scrollbar-face-color:			#FFFFFF;
  			scrollbar-highlight-color:		#FFFFFF; 
  			scrollbar-shadow-color:			#FFFFFF;
  			scrollbar-track-color:			#FFFFFF;
			}

body 		{
    		padding:   					0px;		
    		margin: 					0px;
    		background-color: 			#FFFFFF;
    		font-family:				Arial, Helvetica, Sans-Serif;
			color:						#6E6E6E;
			font-size:					small;
    		
    		}

#position   {
    		/* border: 			1px solid #000000;  /*  Tabellenrand */ 
	  		background-color: 	white;		   	    /*  Tabellenfarbe*/
    		position:			absolute;
    		top: 				50%;
    		left: 				50%;
    		height: 			700px;				/* Tabellengröße height */ 
			width: 				1000px; 			/* Tabellengröße width */ 
    		margin: 			-350px 0 0 -500px; 	/* Abstände: oben (-height:2) - rechts - unten (-width:2) links */
    		}
 
table 		{
			width: 				1000px;
			background-color: 	white;
			padding:			0px; 		/* Abstand des Zelleninhaltes zu Zellenrahmen, Beachte: Bei Null rücken die Zelen näher zusammen! */
			margin-left:		0px;		/* Abstand der Tabelle zum Seitenrand links */
			margin-top:			0px;		/* Abstand der Tabelle zum Seitenrand oben*/
			font-family:		Arial, Helvetica, Sans-Serif;
			color:				#6E6E6E;
			font-size:			small;
			}

/* noch nicht besuchte Seiten */
a:link 		{ 
			color:				#6E6E6E; 
			text-decoration:	none; 
			}

/* während der Anwender mit der Maus darüber fährt */
a:hover 	{ 
			font-family:		Arial, Helvetica, Sans-Serif;
			color:				white; 
			text-decoration:	none; 
			font-weight:		bold; 
			background-color:	#DEDEDE; 
 			}

/* bereits besuchte Seiten */
a:visited 	{ 
			color:				#DE2222; 
			text-decoration:	none; 
			}

/* gerade angeklickte Verweise */
a:active 	{ 
			color:				#000000; 
			text-decoration:	none; 
			}

		
