/* CSS Document */
* {
	margin: 0;
	padding: 0;
}

body {
	background-color: #000;
	font-family: "Times New Roman", Times, serif;
	font-weight: normal;
	color: #000;
	font-size: 14px;
	line-height: 130%;
}

img {
	border: 0;
}


/* Überschrift Navi */
h1 {
	font-weight: bold;
	margin-bottom: 14px;
	font-size: 14px;
}
h2 {
	font-weight: bold;
	margin-bottom: 8px;
	font-size: 14px;
}
h3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-weight: bold;
	color: #000;
}

p {
	margin-bottom: 14px;
}

a {
	color: #1c4184;
	text-decoration: none;
}
a:hover {
	color: #1c4184;
	text-decoration: underline;
}

ul {
	margin-left: 18px;
}

.breaker {
	clear: both;
}

/* Formularfelder */
input {
	font-family: "Times New Roman", Times, serif;
	font-size: 14px;
}
.beschreibung {
	width: 120px; 
	float: left;
	height: 12px;
	margin-top: 3px;
}
.formularfeld {
	font-family: "Times New Roman", Times, serif;
	font-size: 14px;
	margin-top: 3px; 
	margin-bottom: 5px; 
	width: 210px;
}
.formularbutton {
	font-size: 10px;
}

/* Fotos Titel */
.posHinten {
	z-index: 1;
	position: absolute;
}

.posVorne {
	z-index: 10;
	position: absolute;
}

	
/* DIV-Container */
#content {
	width: 940px;
	background-color: #fff;	
	margin: 0 auto;
	text-align: left;
	overflow: hidden;
}

#leftCol, #centerCol, #rightCol {
	position: relative;
	padding-bottom: 9999px;
	margin-bottom: -9999px;
}

#leftCol {
	width: 143px;
	float: left;	
	background-color: #fff;
}

#centerCol {
	width: 654px;
	float: left;
	background-image: url(../img/bg.jpg);
	background-repeat: repeat-y;
}

#rightCol {
	width: 143px;
	text-align:center;
	float: left;
	background-color: #fff;	
}
#sponsorLinks {
	width: 140px;
	position: relative;
	margin-top: 28px;
	margin-left: 2px;
	text-align: center;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
}
#sponsorLinks div {
	margin-bottom: 15px;
}

.logo {
	position: relative;
	margin-top: 18px;
	margin-left: 15px;
	width: 118px;
	height: 113px;
}

#naviBox {
	position: relative;
	margin-top: 28px;
	margin-left: 18px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	line-height: 120%;
}
#naviBox ul {	
	margin: 0 0 18px 0;
}
#naviBox li {	
	list-style-type: none;
}
li a {
	color: #1c4184;
	text-decoration: none;
}
li a:hover {
	color: #1c4184;
	text-decoration: underline;
}
.active {
	text-decoration: underline;
}

#titel {
	position: absolute;
	top: 44px;
	left: 10px;
	width: 634px;
}

#textBox {
	position: relative;
	margin-left: 44px;
	margin-top: 530px;	
	width: 560px;
}

#footer {	
	clear: both;	
	height: 40px;
}

/* pdf-Downloads */
.downloadBox {
	float: left;
	width: 240px;
}
.downloadBox img {
	float: left;
	display: block;
	margin-bottom: 10px;
}
.downloadBox img div {
	float: left;
	padding-top: 10px;
}

.bildcontainer {
	width: 134px; 
	height: 134px;
	margin-right: 8px;
	margin-bottom: 8px;
	float: left;
}

.breaker {
	clear: both;
}

/* Spry Validation */


/* 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: #CC3333;
	border: 1px 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;
}

/* 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;
}

/*** EDIT***/
td {
	vertical-align:top;
}

th {
	padding:10px 0;
}