/*

Falls Sie sich nicht so gute mit CSS auskennen, finden sie auf
http://selfaktuell.teamone.de viele Informationen dazu.

Kurze Erklärung:
color - Textfarbe (z.B. blue, FFFFFF, #000000)
font-family - Schriftart (z.B. verdana, arial)
font-size - Schriftgröße (z.B. 10pt, 10px)
font-weight - Schriftdicke (z.B. bold, bolder, lighter)
text-decoration - Unterstrichen, Oberstrichen... (z.B. none, overline, underline)
background-color - Hintergrundfarbe (z.B. blue, FFFFFF, #000000)
text-align - Ausrichtung des Textes (z.B. left, right)
padding - Abstand des Textes zum Rahmen (z.B. 2pt, 4px)

Um ein Hintergrundbild zu verwenden, müssen sie im Abschnitt body
folgendes einfügen:
background-image:url(background.jpg);

*/


/* Allgemeine Linkfarben und -eigenschaften */
A:link { /* Ein normaler Link */
	color: green;
	text-decoration: none;
}
A:visited { /* Ein besuchter Link */
	color: green;
	text-decoration: none;
}
A:active {  /* Ein angewählter Link */
	color: green;
	text-decoration: none;
}
A:hover { /* Maus über einem Link */
	text-decoration: underline;
	color:green;
/*	font-weight:bold;*/
}

/* <body>-Einstellungen */
body {
	font-family:verdana,arial;
  background-color: whitesmoke; 
  background-image:url(../images/cab_bg_t.gif);
  background-position:center;
  background-repeat:repeat-y;
}

img {
  border:none;
}

/* generelle Schriftarten */
.norm	{
	font-size: 12pt;
	
}

.large	{
	font-size: 16pt;
	
}

.med	{
	font-size: 10pt;
	
}

.small	{
	font-size: 7pt;
	
}
/* pageheader */
.head {
	color: white;
	font-weight: bold;
	text-align: right;
	vertical-align: bottom;
	background-color: #006633;
	background-image: url(../images/testlogo2.jpg);
	border-spacing: 5px;
	
}

/* Wo bin ich-Anzeige */
.wai	{
	background-color: #009966;
	color: white;	
	font-size: 8pt;
	font-weight: bold;
	text-align: right;
}

/* Schatten */
.shadow	{
  height: 5px;
 	background-image: url(../images/shadow.gif);
  background-repeat: repeat-x;
}


/* Haupttabelle */
.main {
	color: black;
	font-size: 8pt;
	border-spacing: 5px;
}

a.main:link{
	color: black;
}

a.main:hover	{
text-decoration: underline;
}

/* Linkes Menü */
.menue_left {
	color: black;
	font-size: 8pt;
	border-spacing: 5px;
	text-align: left;
}

a.menue_left:link{
	color: green;
}

a.menue_left:hover	{
text-decoration: underline;
}

/* Aktuell */
.news	{
	text-align: justify;
}

/* Anfahrt Druckversion */
.print_af	{
	font-size: 10pt;
	text-align: justify;
}

/* pagetail */

.tail {
	color: white;
	font-size: 8pt;
	text-align: center;
	vertical-align: bottom;
	background-color: #009966;
/*	border-spacing: 5px; */
/*  height: 10px; */
	
}

a.tail:link	{
	color: white;
}

a.tail:hover	{
	text-decoration: underline;
}

a.tail:visited	{
	color: white;
}


.copyright	{
	color: gray;
  font-size: 8pt;
	text-align: right;
  
}

a.copyright:link  {
  color: #99CC99;
}

a.copyright:hover {
  color: green;
}

