.textnorm {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #666666;
}
.texttitel {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #666666;
}
.textweiss {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #efefef;
}
.formfield { 
	font-family: Verdana, Arial;
	font-size: 9pt;
	background-color: #EFEFEF;
	color: #666666;
	border: 0px #FFFFFF solid;
}
body {
	SCROLLBAR-FACE-COLOR: #E5E5E5;
	SCROLLBAR-HIGHLIGHT-COLOR: #E5E5E5;
	SCROLLBAR-SHADOW-COLOR: #999999;
	SCROLLBAR-3DLIGHT-COLOR: #999999;
	SCROLLBAR-ARROW-COLOR: #000000;
	SCROLLBAR-TRACK-COLOR: #EFEFEF;
	SCROLLBAR-DARKSHADOW-COLOR: #FFFFFF; 
} 
.stern {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #000000;
}
a 				{color: #000000; text-decoration:none}
a:hover			{color: #000000; text-decoration:underline}

a.copy 		{
	color: #999999; text-decoration:none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
}
a.copy:hover	{
	color: #000000; text-decoration:none;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
}
a.menu {display:block; width:200px; border: 0px solid #cccccc; padding:0px 0px 0px 0px; font-family:Arial; font-size:12px; color: #000000; position: static; font-weight:;}
a.menu:link { color:#000000; background-color:#cccccc; text-decoration:none; font-size:12px; font-family:Arial;}
a.menu:visited { color:#000000; background-color:#cccccc; text-decoration:none; font-size:12px; font-family:Arial;}
a.menu:hover { font-family:Arial; font-size:12px; color: #000000; margin: 0px; border: 0px solid #DDE5F2; word-spacing: 0px; background-color:#efefef; text-decoration:none;}

a.menuunten {display:block; width:200px; border: 0px solid #cccccc; padding:0px 0px 0px 0px; font-family:Arial; font-size:11px; color: #777777; position: static; font-weight:bold;}
a.menuunten:link { color:#777777; background-color:#cccccc; text-decoration:none; font-size:11px; font-family:Arial;}
a.menuunten:visited { color:#777777; background-color:#cccccc; text-decoration:none; font-size:11px; font-family:Arial;}
a.menuunten:hover { font-family:Arial; font-size:11px; color: #777777; margin: 0px; border: 0px solid #DDE5F2; word-spacing: 0px; background-color:#efefef; text-decoration:none;}

a.menumitte {display:block; border: 0px solid #cccccc; padding:3px 3px 3px 3px; font-family:Arial; font-size:11px; color: #777777; position: static; font-weight:bold;}
a.menumitte:link { color:#777777; background-color:#cccccc; text-decoration:none; font-size:11px; font-family:Arial;}
a.menumitte:visited { color:#777777; background-color:#cccccc; text-decoration:none; font-size:11px; font-family:Arial;}
a.menumitte:hover { font-family:Arial; font-size:11px; color: #777777; margin: 0px; border: 0px solid #DDE5F2; word-spacing: 0px; background-color:#efefef; text-decoration:none;}

.textschwarz {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #000000;
}

.pflicht {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FF0000;
}
@charset "UTF-8";

/* SpryFormValidation.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */


/* These are the classes applied on the error messages
 * which prevent them from being displayed by default.
 */ 
.textfieldRequiredMsg, 
.textfieldInvalidFormatMsg, 
.textfieldMinValueMsg,
.textfieldMaxValueMsg,
.textfieldMinCharsMsg,
.textfieldMaxCharsMsg,
.textfieldValidMsg {
	display: none;
}

/* These selectors change the way messages look when the widget is in one of the error states.
 * These classes set a default red border and color for the error text.
 * The state class (e.g. .textfieldRequiredState) is applied on the top-level container for the widget,
 * and this way only the specific error message can be shown by setting the display property to "inline".
 */
.textfieldRequiredState .textfieldRequiredMsg, 
.textfieldInvalidFormatState .textfieldInvalidFormatMsg, 
.textfieldMinValueState .textfieldMinValueMsg,
.textfieldMaxValueState .textfieldMaxValueMsg,
.textfieldMinCharsState .textfieldMinCharsMsg,
.textfieldMaxCharsState .textfieldMaxCharsMsg
{
	display: inline;
	color: #FF0000;
	border: 0px solid #CC3333;
	font-weight: normal;
}



/* The next three group selectors control the way the core element (INPUT) looks like when the widget is in one of the states: * focus, required / invalid / minValue / maxValue / minChars / maxChars , valid 
 * There are two selectors for each state, to cover the two main usecases for the widget:
 * - the widget id is placed on the top level container for the INPUT
 * - the widget id is placed on the INPUT element itself (there are no error messages)
 */
 
 /* When the widget is in the valid state the INPUT has a green background applied on it. */
.textfieldValidState input, input.textfieldValidState {
	background-color: #B8F5B1;
}

/* When the widget is in an invalid state the INPUT has a red background applied on it. */
input.textfieldRequiredState, .textfieldRequiredState input, 
input.textfieldInvalidFormatState, .textfieldInvalidFormatState input, 
input.textfieldMinValueState, .textfieldMinValueState input, 
input.textfieldMaxValueState, .textfieldMaxValueState input, 
input.textfieldMinCharsState, .textfieldMinCharsState input, 
input.textfieldMaxCharsState, .textfieldMaxCharsState input {
	background-color: #FF9F9F;
}

/* When the widget has received focus, the INPUT has a yellow background applied on it. */
.textfieldFocusState input, input.textfieldFocusState {
	background-color: #FFFFCC;
}

/* This class applies only for a short period of time and changes the way the text in the textbox looks like.
 * It applies only when the widget has character masking enabled and the user tries to type in an invalid character.
 */
.textfieldFlashText input, input.textfieldFlashText{
	color: red !important;
}
