/* alle Standardabst�nde der Browser auf 0 setzen */
	* {
		margin:0px;
		padding:0px;
	}

/* im body tag werden die Standard-Einstellungen vorgenommen */
	body {
		color:#000000;
		background-color:#cce1f0;
		text-align:center; /* wenn Seite zentriert angezeigt werden soll */
		font-size:62.5%; /* damit stellen wir sicher, dass die weiteren Angaben der Schrftgr��e ohne Kopfzerbrechen in em erfolgen k�nnen 12px = 1.2em */
		font-family:Verdana, Arial, Helvetica, sans-serif;
		background-repeat:repeat-x;
		padding-top:10px;
	}

/* Klasse um die floats in den Griff zu kriegen */
	.clear {
		clear:both;
		font-size:0px;   /* wegen Opera MUSS mindestens ein pixel H�he eingegeben sein */
		line-height:0px; /* es ist noch zu pr�fen, ob "alle" Browser mit einer 0 klar kommen - zur Sicherheit besser auf 1 stellen */
	}

/* globale Einstellungen f�r Abs�tze */
	p {
		margin-bottom:1em;
		line-height:1.6em;
	}

/* Bilder immer ohne Rahmen */
	img {
		border:0px;
	}

/* globale Einstellungen f�r Links - auf die Reihenfolge achten !! */
	/* link, visited, hover, active, focus */
	a:link { text-decoration:underline; color:#0069b3; }
	a:visited { text-decoration:underline; color:#0069b3; }
	a:hover { text-decoration:none; color:#0069b3; }
	a:active { text-decoration:none; color:#0069b3; }
	a:focus { text-decoration:none; color:#0069b3; }

	a.active { color:#FFF; text-decoration:none; } /* das ist unsere Standardklasse um Men�punkte als aktiv zu kennzeichnen. 
                                   !Achtung! nicht mit der Pseudoklasse :active verwechseln !Achtung! 
								   Da diese Angabe f�r alle Men�s gleicherma�en gelten soll setzen wir sie hier */

/* die Einz�ge bei ul und ol werden von den Browsern sehr unterschiedlich behandelt
   wenn man eine einheitliche Darstellung erreichen m�chte, m�ssen teilweise spezifische 
   Angaben gemacht werden. */
	ul {
		margin-left:16px; /* passend f�r IE 7 - was ist mit fr�heren Versionen? */
		/* firefox:  margin-left:14px; */
		/* opera:    margin-left:12px; */
		line-height:1.6em;
		margin-bottom:10px;
	}
	
	ol {
		margin-left:24px; /* passend f�r IE 7 - was ist mit fr�heren Versionen? */
		/* firefox, opera, safari: margin-left:20px; */
		line-height:1.6em;
		margin-bottom:10px;
	}

/* die �berschriften */
	h1 {
		font-size:1.3em;
		font-weight:bold;
		border-bottom:2px solid #0069b3;
		color:#0069b3;
		text-align:center;
		margin:5px 0px 15px 0px;
		padding:0px 0px 5px 0px;
	}

	h2 {
		font-size:1.2em;
		margin:5px 0px 5px 0px;
	}

	h3 {
		font-size:1em;
		font-weight:bold;
		padding:4px 0px 4px 0px;
		margin-bottom:10px;
		border-bottom:1px solid #dddddd;
	}

	h4 {
		font-size:1em;
	}

/* allgemeine Angaben zu Tabellenzellen */
	td {
		vertical-align:top;
	}

	td p {
		padding:0px;
		margin:0px;
	}

/* im wrapper werden die Einstellungen f�r den Inhaltsbereich vorgenommen */
	#wrapper {
		background-color:#FFFFFF;
		text-align:left;   /* wenn body zentriert ist, dann muss f�r den IE hier wieder auf left geschaltet werden */
		margin-left:auto;  /* Angabe zur Zentrierung des Wrappers */
		margin-right:auto; /* Angabe zur Zentrierung des Wrappers */
		width:970px;
		border:1px solid #c6bacf;
		font-size:1.2em; /* so stellen wir sicher, dass in allen Tags im wrapper diese Schriftgr��e gilt - ausgenommen nat�rlich die h1, h2 usw. */
		position:relative; /* damit bestimmte Elemente absolut positioniert werden koennen */
	}

	#innerWrapper {
		background-image:url(../uploads/layout/innerwrapper_bg.gif);
		background-repeat:repeat-y;
		background-position:top left;
	}

/* Einstellungen f�r den content Bereich */
	#content {
		width:550px;
		background-color:#FFFFFF;
		float:left;
		padding:5px 10px 20px 10px;
	}

	#content img {
		
	}

	#content img.rahmen {
		padding:2px;
		border-right:1px solid #cfcfcf;
		border-bottom:1px solid #707070;
		border-left:1px solid #cfcfcf;
	}

	#content img.rechts {
		float:right;
		margin:0px 0px 10px 10px;
		padding:2px;
		border-right:1px solid #cfcfcf;
		border-bottom:1px solid #707070;
		border-left:1px solid #cfcfcf;
	}

	#content img.links {
		float:left;
		margin:0px 10px 10px 0px;
		padding:2px;
		border-right:1px solid #cfcfcf;
		border-bottom:1px solid #707070;
		border-left:1px solid #cfcfcf;
	}

/* Einstellungen fuer den Header */
	#header {
		position:relative;
		height:200px;
		background-color:#3e5166;
		color:#3e5166;
	}

	#header .eycatcher {
		position:absolute;
		right:0px;
		top:0px;
	}

	#header .logo {
		position:absolute;
		left:0px;
		top:0px;
	}

	#header .turm {
		position:absolute;
		left:120px;
		top:0px;
	}

/* Einstellungen fuer MetaMenu */
	#header .metaMenu {
		position:absolute;
		right:10px;
		bottom:0px;
	}

	.metaMenu ul {
		list-style-type:none;
		margin:0px;
	}

	.metaMenu ul li {
		display:inline;
	}

	.metaMenu ul li a:link, .metaMenu ul li a:visited, .metaMenu ul li a:hover, .metaMenu ul li a:active, .metaMenu ul li a:focus {
		color:#FFFFFF;
		font-size:0.95em;
	}

/* Einstellungen fuer den SubHeader */
	#subHeader {
		color:#fff;
		background-color:#0069b3;
		height:30px;
		position:relative;
	}

	#subHeader a {
		color:#fff;
	}

	#subHeader .efaFontSize {
		position:absolute;
		top:5px;
		right:5px;
	}

	#subHeader p.breadCrumb {
		padding:5px 0px 0px 10px;
		font-size:0.95em;
	}

/* Einstellungen fuer das linke Menue */
	#menu {
		background-color:#fff8ea;
		width:200px;
		float:left;
		padding-bottom:20px;
	}

	#menu ul {
		list-style-type:none;
		margin:10px 10px 0px 10px;
	}

	#menu ul li {
		text-align:left;
		border-bottom:1px dashed #0069b3;
	}

	#menu ul li a {
		color:#0069b3;
		text-decoration:none;
		display:block;
		padding:5px 5px 2px 10px;
		font-weight:bold;
                font-size:1.1em;
	}

	#menu ul li a:hover, #menu ul li a.active {
		color:#FFFFFF;
		background-color:#0069b3;
	}

	#menu ul li ul {
		margin:0px 0px 7px 0px;
		border-top:1px dashed #3e5166;
		padding-top:7px;
	}

	#menu ul li ul li {
		border:none;
		margin-left:10px;
	}

	#menu ul li ul li a {
		color:#3e5166;
		text-decoration:none;
		display:block;
		padding:0px 0px 0px 10px;
		font-weight:bold;
	}

	#menu ul li ul li a:hover, #menu ul li ul li a.active {
		color:#FFFFFF;
		background-color:#0069b3;
	}

/* Einstellungen f�r rechte Spalte */
	#right {
		background-color:#fff8ea;
		width:190px;
		height:400px;
		float:left;
		padding:5px;
	}

/* Einstellungen f�r den footer Bereich */
	#footer {
		color:#FFF;
		background-color:#0069b3;
		text-align:center;
	}

	#footer ul {
		list-style-type:none;
		margin:0px;
	}

	#footer ul li {
		
	}

	#footer ul li a {
		color:#FFFFFF;
	}

/* Einstellungen fuer Events */
	#eventsList, #eventsDetail {
		margin-bottom:12px;
	}

	#eventsList p, #eventsDetail p {
		
	}

	#eventsList p.title, #eventsDetail p.title {
		font-weight:bold;
		margin:0px;
		padding:0px;
	}

	#eventsList p.subtitle, #eventsDetail p.subtitle {
		margin:0px;
		padding:0px;
	}

	#eventsList p.date, #eventsDetail p.date {
		font-style:italic;
		margin:0px;
		padding:0px;
	}

	#eventsList div.event p.moreLink {
		margin-top:-12px;
	}

	#eventsList div.event div.teaser {
		margin-bottom:0px;
	}

	#eventsList div.event {
		margin-bottom:22px;
	}
	

/* Einstellungen fuer Formular */
	form label {
		font-weight:bold;
	}

	form input, form textarea {
		font-size:1.1em;
		font-family:Verdana, Arial, Helvetica, sans-serif;
	}

	form input:focus, form textarea:focus {
		background-color:#FFFFEE;
	}

	form .left, form .right {
		width:200px;
		float:left;
	}

	form div.left {
		margin-right:10px;
	}

	form textarea, form input {
		width:410px;
		margin-bottom:10px;
	}

	form .left input, form .right input {
		width:200px;
	}

	form input.short {
		width:100px;
	}

	form .send input {
		width:auto;
		padding:0px 5px 0px 5px;
	}

	form textarea.nachricht {
		height:150px;
	}

/* error und succes layer des Kontaktformulars */
	#error {
		color:#ff0000;
		font-weight:bold;
		margin-bottom:20px;
	}

	#success {
		color:green;
		font-weight:bold;
		margin-bottom:20px;
	}

        /* Angaben für den Wysiwyg-Editor TinyMCE */
body.mceContentBody {
	text-align:left;
	background:none;
	background-color:#ffffff;
	font-size:0.8em;
	color:#000000;
}
