h1, h2, h3  {margin: 0; padding: 0;}

* {
  border:0;
  margin:0;
  padding:0;
  text-decoration:none;
  }
body {
  padding-bottom:20px;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  background:#DEDDD2 url(../images/bg.gif) repeat-x;
   font-size: 12px;
  }
#body {
 float: left;
  width:710px;
   font-size: 120%;
}
.auto {
	float: right;
	width: 250px;
	height: 132px;
}

#body a {
	color:#000;
	text-decoration:none;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #FC0;
  }
#body a:hover {
  color:#fc0;
  background-color: #222;
  }
#body h1 {
	clear:both;
	color:#000;
	padding-bottom:5px;
	border-bottom:1px dashed #ddd;
	margin-top: 40px;
	margin-right: 20px;
	margin-bottom: 5px;
	margin-left: 20px;
  }
#body h2 {
  clear:both;
  margin:0 20px 15px 20px;
  }
#body p {
  margin:0 20px 15px 20px;
  }
#site {
  width:980px;
  margin:0 auto;
  background: url(../images/site.png) repeat-y center;
  }
#auto {
	float: right;
	padding-top: 204px;
	height: 140px;
	width: 217px;
 }
#header {
  height: 49px;
  background: url(../images/bg_kopf.png) center top;
  }
#header a {
  display:block;
  overflow:hidden;
  color:#000;
  }
#header h1 {
  float:left;
  width:230px;
  padding-top: 5px;
  padding-left: 1px;
}

#eyecontent {
	  clear:both;
	  height: 160px;
}
.userconfig {
	float: right;
    margin-top: 135px;
	padding-right: 40px;
	color: #666;
}
.sprache {
	padding-right: 20px;
}
.sprache a{
	color: #777;
}
.sprache a:hover{
	color: #FC0;
}
.spracheaktiv a{
	color:#FC0;
}
.schrift a {
	color: #fc0;
}
#content {
  background: url(../images/kopf1.jpg) no-repeat center top;
  height: auto;
  }
#bauch{
  clear:both;
 }

.formular {
padding-left: 20px;
}

#angebote {
  float:left;
  width:250px;
  display:inline;
  margin-left: 10px;
  }
#navcontainer {
  margin-top: 40px;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 110%;
  }
#navcontainer ul {
  list-style-type:none;
}
#navcontainer li {
  border-bottom:1px solid #ddd;
  text-indent: 10px;
}
#navcontainer a {
  display:block;
  margin-right: auto;
  margin-left: auto;
  display: block;
  width: 200px;
  color: #000;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 1px;
}
#navcontainer a:hover {
  color: #ffcc00;
  background-color: #222;
}


.current a {
  color: #ffcc00 !important;
  background-color: #222;
}

#stempel {
  margin-top: 40px;
  margin-left: 40px;
  width: 140px;
  height: 140px;
  background-image:url(../images/stempel.gif);
  background-repeat:no-repeat;
  }

.clr {
	clear: both;}
#footer {
  clear:both;
  color:#fff;
  width:980px;
  height:90px;
  text-align:center;
  background:url(../images/footer.gif) no-repeat center;
  }
#footer p {
  padding-top:45px;
  }
#footer a {
  color:#fff;
  }
@charset "UTF-8";

/* SpryValidationTextField.css - version 0.4 - Spry Pre-Release 1.6.1 */

/* 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;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	line-height: 2.5em;
}

/* 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;		/* Farbe der Fehlermeldung */
	border: 0px solid #CC3333;
}



/* 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;
	background-color: #FAFFFA;	/* hellgr�n */
	background-color: #FFFFFF;	/* wei� */
	border: 1px solid #00CC00;
	border: 1px solid #CCCCCC;
}

/* 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;
	background-color: #FFE9E9;	/* hellrot */
	border: 1px solid #CC0000;
	border: 1px solid #CCCCCC;
}

/* When the widget has received focus, the INPUT has a yellow BACKGROUND applied on it. */
.textfieldFocusState input, input.textfieldFocusState {
	background-color: #FFFFCC;
	background-color: #FFFFE9;	/* hellgelb */
	border: 1px solid #CCCC00;
	border: 1px solid #CCCCCC;
}

/* 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;
}

/* When the widget has the hint message on, the hint text can be styled differently than the user typed text. */
.textfieldHintState input, input.textfieldHintState {
	/*color: red !important;*/
}