/* Verwendete Farben
	orange: #FFCC33
	gelb: #FFFF91
	hellviolett: #CCCCFF 
	dunkelblau #00009F */

/* Um die meist gewünschte Darstellung dieser Pseudoklassen zu erreichen, 
müssen Sie bei der Notierung die folgende Reihenfolge einhalten:
:link, :visited, :hover, :active, :focus */

/* Zum Testen */
.test { border: 1px solid red; }


/* Allgemeine Formatierung */

body  		{ background-color:#CCCCFF; margin:15pt; margin-bottom:0px; text-align:center; }
h1,h2,h3	{ margin-bottom:15pt; color:#00009F; font-family:Arial, Helvetica, sans-serif; }
p,div,table	{ color:#00009F; font-family:Arial, Helvetica, sans-serif; }

/* Überschriftendarstellung */
h1			{ border-bottom:1px solid red; 
				border-top:1px solid red;
				border-left:10px solid red; 
				font-size:1.8em; 
				text-align: left;
				padding-left:10px; 
				background-color:#FFCC33;
}
h2			{ border-bottom:1px solid red; 
				border-left:8px solid red; 
				font-size:1.4em; 
				text-align:left;
				padding-left:10px; 
}
h3			{ border-bottom:1px solid red; 
				border-left:5px solid red; 
				font-size:1.0em; 
				text-align:left;
				padding-left:10px; 
}

/* Linkformatierung */
a:link		{ color:red; font-weight:bold; text-decoration:none; }
a:visited  	{ color:#C04000; font-weight:bold; text-decoration:none; }
a:hover  	{ text-decoration:underline; }

/* ######################################################## */
/* Klassendefinitionen */	 

.small		{ font-size:0.7em; }
div.text	{ margin-left:auto; margin-right:auto;		/* Absatz zentrieren */
				width:80%; text-align:justify; }
							
/* Nachrichtenbox */	 
.newsbox {
	/*background:#FFFF91;*/
	margin-bottom: 10px; 
	padding: 5px; 
	width:80%; 
	text-align:justify;
	margin-left:auto; 	/* diese zwei Zeilen... */
	margin-right:auto;	/* ...bewirken eine Zentrierung */
	border:1px solid white; 
	border-right:1px solid black; 
	border-bottom: 1px solid black;
}
.newsboxheader {
	background:#9999FF; 
	text-align:left; 
	margin-bottom: 6px;
	padding-left:5px;
	padding-right:5px;
}
.newsboxcontent {
	padding: 8px;
	font-size: 0.8em;
}

.newsdate {
	font-size:x-small;
}
.newsheader {
	font-weight: bold;
}

.newsid {
	font-weight: bold;
}

/* ######################################################## */
/* Textbuttons */
a.textbutton 
{
	border: 1px solid white;
	border-bottom-color: black;
	border-right-color: black;
	text-decoration:none;
	color:#0000FF; background-color:#FFCC33;	
	font-size:x-small; 
	padding-left: 5px; 
	padding-right: 5px;
}
a:visited.textbutton  { color:#0000FF; }
a:hover.textbutton  { color:#FFCC33; background-color:#0000FF; text-decoration:none;}
a:active.textbutton  
{
	color:#FFCC33; 
	background-color:#0000FF; 
	border-color: black;
	border-bottom-color: white;
	border-right-color: white;
}
/* ######################################################## */
/* Specialbuttons */
a.Sbutton 
{
	border-bottom: 1px solid;
	border-left: 12px solid;
	text-decoration:none;
	color:black;
	font-size:x-small; 
	padding-left: 5px; 
	padding-right: 5px;
}
a:visited.Sbutton  { color:black; }
a:hover.Sbutton  { background-color:white; text-decoration:none;}
a:active.Sbutton  
{
	color:#FFCC33; 
	background-color:#0000FF; 
	border-color: black;
	border-bottom-color: white;
	border-right-color: white;
}
