@charset "UTF-8";
/* CSS Document */

body {
	background-image: url(bg.jpg);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	margin-top:40px;
}

a:link {
	text-decoration: none;
	color: #C31924;
}

a:visited {
	text-decoration: none;
	color: #C31924;
}

a:hover {
	color: #C31924;
}

a:active {
	text-decoration: none;
	color: #000;
}

#menue a:link, #menue a:visited{
	color: #000;
}

#castratoribox {
	height: 600px;
	width: 967px;
	margin: 0px auto;
}

#top {
	background-image: url(top_content.png);
	height: 160px;
	width: 967px;
	background-repeat: no-repeat;
}

#lefttop {
	background-image: url(top_left_corner.gif);
	background-repeat: no-repeat;
	width: 170px;
	height: 160px;
	background-position: 20px 19px;
	float: left; 
}

#righttop {
	background-image: url(logo_top_right.jpg);
	background-repeat: no-repeat;
	width: 230px;
	height: 130px;
	float: right;
	background-position: 0px;
}

#inhalttop {
	height: 0px;
	color: #000;
	padding-left: 40px;
	padding-right: 40px;
	background-image: url(content_repeat.png);
}

#inhalt {
	color: #000;
	padding-left: 40px;
	padding-right: 40px;
	background-image: url(content_repeat.png);
}

.team {
	width: 600px;
	padding-top: 15px;
	padding-bottom: 30px;
	height: 200px;
}

.team_name {
	padding-left: 375px;
	padding-top: 70px;
}

.team_funktion {
	padding-left: 375px;
	padding-top: 20px;
}

#menue {
	width: 230px;
	height: 235px;
	padding-top: 265px;
	float:left;
	line-height: 25px;
	font-weight: bold;
}

#linie {
	width: 20px;
	height: 500px;
	background-image: url(line.gif);
	float:left;
	background-repeat: no-repeat;
}

#content {
	width: 590px;
	min-height: 460px;
	float: left;
	padding: 20px;
}

#bottom {
	background-image: url(bottom_content.png);
	height: 47px;
	width: 967px;
	background-repeat: no-repeat;
}

#footer {
	font-size: 12px;
	color: #FFF;
	text-align: center;
}

.clear {
	clear: both;
}

.ueberschrift {
	font-size: 26px;
	color: #C31924;
}

/* 
REDAXO-Modul: do form!
Beschreibung: CSS-DEMO
Bereich: CSS 
Für: do form! 2.x  
Stand: 20.04.2009 
Version: 1.0
--------------------------------------------------------------------------
HINWEISE:
--------------------------------------------------------------------------
!! Das CSS berücksichtigt nicht alle möglichen Felder 
!! Farben nicht 1 zu 1 übernehmen
!! ist ja nicht wirklich hübsch

Weitere Infos zu den CSS hier:
http://wiki.redaxo.de/index.php?n=R4.DoForm
-------------------------------------------------------
*/

/* Formular Definition */
/*//////////////////////////////////////////////////////////////////////////////*

/* Div das das Formular umschließt */
.formgen {
	padding-top: 10px;
	padding-right: 10px;
	font-size: 16px;
}


/* Was passiert wenn auf das Label geklickt wird? */
label,
select,
input[type=checkbox],
input[type=radio],
input[type=button],
input[type=submit]
{
cursor : pointer;

}



.formgen form
{
line-height : 120%;

}




/* 
Wie sehen die einzelnen Blöcke aus? 
Jedes Feld wird von einem DIV umschlossen, das hier definiert werden kann
*/


.formgen .formblock
{
	margin-bottom: 15px;
	margin-top: 10px;
	padding-top: 3px;
	padding-bottom: 3px;
	padding-right: 2px;
	padding-left: 5px;	
	
}
 .forminfo 
{
	width: 360px;
	margin-bottom: 15px;
	padding-top: 10px;
	padding-bottom: 3px;
	padding-right: 2px;
	font-weight: bold;
}

/*
Verhalten von br-Tags
*/
.formgen br
{
clear : both;
}


/* 
--------- FORMULAR-OBJEKTE ------------ 
*/


/* Mehrzeiliges Eingabefeld */
.formgen .formtextfield
{
	width: 400px;
	height: 200px;
	margin-left: 4px;
	border: 1px solid #C31924;
}


/* Textfeld */
.formgen .formtext
{
	width: 400px;
	margin-left: 4px;
	padding-bottom: 4px;
	font-size: 14px;
	border: 1px solid #C31924;
}

/* ON-HOVER */

.formgen input:focus, .formgen input:hover,
.formgen select:focus, .formgen select:hover, 
.formgen textarea:focus, .formgen textarea:hover {
	border-left-color: #000000;
	border-right-color: #000000;
}


/* Label */
.formgen label {
	width: 120px;
	clear: left;
	float: left;
	height: 30px;
}


/* Aussehen der Select-Ausgabe */
.formgen .formselect
{
	width: 200px;
	background-color: #33FF33;
	margin-left: 4px;
	color: #000000;
}


/* Sende-Button */
.formgen .formsubmit
{
	width: 100%;
	text-align: center;
	background-color: #C31924;
	border: 1px solid #C31924;
	float: right;
	color: #FFFFFF;
}


/* -------------- AUSGABEN / Fehlermeldungen --------*/


/* Markierung der Labels bei Fehler */
.formgen .formerror {
	border-bottom-width: 1px;
	color: #990000;
	font-style: italic;
}

.formgen .formcaptcha
{
	border: 2px solid #990000;
	vertical-align: top;
	float: left;
	margin-right: 10px;
}

.formgen .formreq {
	color: #006633;
}

.formgen .formheadline {
	color: #993300;
	background-color: #FFF7EA;
	padding-top: 4px;
	padding-bottom: 4px;
	margin-top: 5px;
	margin-bottom: 5px;
	font-style: italic;
}

/*//////////////////////////////////////////////////////////////////////////////*
/* Ende der Formulardefinition */
