/* =========================== Hauptvorlage ===========================*/
	/* =========================== BASICS ===========================*/


body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* Es empfiehlt sich, margin (Rand) und padding (Auffüllung) des Body-Elements auf 0 einzustellen, um unterschiedlichen Browser-Standardeinstellungen Rechnung zu tragen. */
	padding: 0;
	text-align: justify; /* Hierdurch wird der Container in IE 5*-Browsern zentriert. Dem Text wird dann im #container-Selektor die Standardausrichtung left (links) zugewiesen. */
	color: #3d3d3d;
	font-size:11px;
	text-align: justify;
	vertical-align: baseline;
	line-height:14px;
	}

a	{color:#65064a;
	text-decoration:none;
	outline:none;
	}
	
a:hover	{color:#65064a;
	}

img	{
	border:none;
	float:left;
	margin-right:5px;
	}
	
.bild_gr {
	margin-top:10px;
	margin-bottom:10px;
	margin-left:0px;
	width:480px;
	height:220px;
}

	
/* =========================== MAIN CONTAINER ===========================*/	

.thrColFixHdr #container {
	width: 1024px;  /* Mit einer Breite, die 20 Pixel unter der vollen Breite von 800 Pixel liegt, können Sie dem Browser-Chrome Rechnung tragen und gleichzeitig eine horizontale Bildlaufleiste vermeiden. */
	background: url(bilder/faux.jpg) repeat-y 50% 0;
	margin: 0 auto; /* Durch automatische Ränder (in Verbindung mit einer Breite) wird die Seite zentriert. */
	text-align: left;
	} 

.thrColFixHdr #header { 
	background: #DDDDDD;
	background-image:url(bilder/head.jpg);
	height:114px;
	margin-bottom:3px;
	padding: 0 0 0 0;  /* Diese Auffüllung entspricht der linksbündigen Ausrichtung der Elemente in den divs, die darunter erscheinen. Wenn im #header anstelle von Text ein Bild eingesetzt wird, sollten Sie die Auffüllung entfernen. */
	} 

.thrColFixHdr #header h1 {
	margin: 0; /* Wenn Sie den Rand des letzten Elements im #header-div auf 0 einstellen, können Sie das Auftreten unerwarteter Abstände zwischen divs vermeiden. Wenn das div einen Rahmen hat, ist dies unnötig, weil dieser Rahmen die gleiche Wirkung hat. */
	padding: 10px 0; /* Durch die Verwendung der Auffüllung anstelle von Rändern lässt sich gewährleisten, dass das Element die Kanten des div nicht berührt. */
	}

.thrColFixHdr #sidebar1 {
	float: left; /* Da es sich hier um ein floatendes Element handelt, muss eine Breite angegeben werden. */
	width: 160px; /* Die tatsächliche Breite dieses div umfasst in standardgerechten Browsern bzw. im Standardmodus von Internet Explorer außer der Breite auch die Auffüllung und den Rahmen. */
	background: #f1ebe6; /* Die Hintergrundfarbe wird nur für die Länge des Spalteninhalts angezeigt. */
	padding: 5px 0px 0px 0px; /* Mit der Auffüllung wird gewährleistet, dass der Inhalt des div die Kanten nicht berührt. */
	margin-left:43px;
	}

.thrColFixHdr #sidebar2 {
	float: right; /* Da es sich hier um ein floatendes Element handelt, muss eine Breite angegeben werden. */
	width: 253px; /* Die tatsächliche Breite dieses div umfasst in standardgerechten Browsern bzw. im Standardmodus von Internet Explorer außer der Breite auch die Auffüllung und den Rahmen. */
	background: #b89795 repeat-y 50% 0; /* Die Hintergrundfarbe wird nur für die Länge des Spalteninhalts angezeigt. */
	padding: 12px 10px 15px 3px; /* Mit der Auffüllung wird gewährleistet, dass der Inhalt des div die Kanten nicht berührt. */
	margin-right:46px;
	}

.thrColFixHdr #mainContent {
	margin: 0 206px; /* padding (Auffüllung) bezeichnet den Innenabstand und margin (Rand) den Außenabstand der div -Box. */
	width:503px;
	text-align: justify;
	vertical-align: baseline;
	} 

.thrColFixHdr #footer {
	padding: 0 10px 0 20px; /* Diese Auffüllung entspricht der linksbündigen Ausrichtung der Elemente in den divs, die darunter erscheinen. */
	background-image:url(bilder/footer_1.jpg);
	height:50px;
	}

.thrColFixHdr #footer p {
	margin: 0; /* Wenn Sie die Ränder des ersten Elements in der Fußzeile auf 0 einstellen, können Sie unerwartete Abstände zwischen divs vermeiden. */
	padding: 18px 0; /* Durch die Verwendung der Auffüllung bei diesem Element entsteht genau wie bei einem Rand ein Leerraum, aber ohne die potenziellen Abstandsprobleme. */
	text-align:center;
	color:#fff;
	}

.thrColFixHdr #footer p a {
	margin: 0; /* Wenn Sie die Ränder des ersten Elements in der Fußzeile auf 0 einstellen, können Sie unerwartete Abstände zwischen divs vermeiden. */
	padding: 18px 0; /* Durch die Verwendung der Auffüllung bei diesem Element entsteht genau wie bei einem Rand ein Leerraum, aber ohne die potenziellen Abstandsprobleme. */
	text-align:center;
	color:#fff;
	text-decoration:none;
	}

.thrColFixHdr #footer p a:hover {
	margin: 0; /* Wenn Sie die Ränder des ersten Elements in der Fußzeile auf 0 einstellen, können Sie unerwartete Abstände zwischen divs vermeiden. */
	padding: 18px 0; /* Durch die Verwendung der Auffüllung bei diesem Element entsteht genau wie bei einem Rand ein Leerraum, aber ohne die potenziellen Abstandsprobleme. */
	text-align:center;
	color:#fff;
	text-decoration:underline;
	}

.fltrt { /* Mit dieser Klasse können Sie ein Element auf der Seite nach rechts fließen lassen. Das floatende Element muss vor dem Element stehen, neben dem es auf der Seite erscheinen soll. */
	float: right;
	margin-left: 8px;
	}

.fltlft { /* Mit dieser Klasse können Sie ein Element auf der Seite nach links fließen lassen. */
	float: left;
	margin-right: 8px;
	}

.clearfloat { /* Diese Klasse sollte in einem div- oder break-Element platziert werden und das letzte Element vor dem Schließen eines Containers sein, der wiederum einen vollständigen Float enthalten sollte. */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
	}

/* =========================== Navigation ===========================*/

#navi {
	background: #DDDDDD;
	padding: 0 0 0 37px;
	background-image:url(bilder/nav_bg.jpg);
	height:48px;
	}

#navi ul {
	list-style:none;
	display:inline;
	font-size:12px;
	color:#fff;
	}
	
#navi ul li {
	float:left;
	padding-left:6px;
	padding-top:15px;
	}
	
#navi ul li a{
	text-decoration: none;
	color: #fff;
	}
	
#navi ul li a:hover{
	text-decoration: underline;
	color: #fff;
	}

/* =========================== Content Hauptbild ===========================*/


.ul_tipps {
	list-style-image:url(bilder/pfeilchen.jpg);}

#hauptbild	{
	background-image:url(bilder/hauptbild.jpg);
	width:503px;
	height:151px;
	}
	
#willk	{
	width:200px;
	height:77px;
	padding: 44px 0 0 166px;
	float:left;
		}
		
#beliebt	{
	width:100px;
	height:90px;
	padding: 44px 0 0 400px;
	}
	
#beliebt a {
		color:#e6dcdd;
		text-decoration:none;
		}
		
#beliebt a:hover {
		color:#e6dcdd;
		text-decoration:underline;
		}
	
.themen	{
	background-image:url(bilder/themen.jpg);
	height:23px;
	width:256px;
	}
	
/* =========================== Sidebar 2 Bilderreihe ===========================*/	
	
.bilderreihe	{
	height:100%;
	width:250px;
	padding-top:10px;
	}

.bild1	{
	background-image:url(bilder/bild1_rechts.png);
	height:65px;
	width:250;
	margin-bottom:10px;
	}
	
.bild2	{
	background-image:url(bilder/bild2_rechts.png);
	height:65px;
	width:250;
	margin-bottom:10px;
	}
	
.bild3	{
	background-image:url(bilder/bild3_rechts.png);
	height:65px;
	width:250;
	margin-bottom:10px;
	}
	
.bild4	{
	background-image:url(bilder/bild4_rechts.png);
	height:65px;
	width:250;
	margin-bottom:10px;
	}
	
.bild5	{
	background-image:url(bilder/bild5_rechts.png);
	height:65px;
	width:250;
	margin-bottom:10px;
	}
	
/* =========================== Content Boxen ===========================*/	
	
.content_box {
	width:485px;
	height:100%;
	float:right;
	margin-top:3px;
	padding: 5px 10px 0 5px;
	}
	
.content_box_haupt {
	width:497px;
	height:100%;
	float:right;
	margin-top:3px;
	padding: 5px 5px 0 0px;
	margin-left:3px;
}
	
.thementext {
		width:180px;
		height: 100%;
		margin-left:70px;
		padding-top:5px;
		color:#ece3e3;
		}
		
.R_Ueberschrift {
		color:#65064a;
		font-size:11px;
		padding-bottom:3px;
		}

.ueberschrift_haupt {
	background-color:#eeeeee;
	width:497px;
	height:20px;
	padding-top:5px;
	font-weight: bold;
	font-size: 12px;
	color: #333;
	padding-left: 5px;
	margin-top: 3px;
	margin-bottom: 3px;
}

.ueberschrift {
	background-color:#eeeeee;
	width:480px;
	height:100%;
	padding-top:5px;
	font-weight: bold;
	font-size: 12px;
	color: #333;
	padding-left: 5px;
	margin-bottom: 5px;
	padding-bottom: 5px;
	}
	
.textbox {
	width:490px;
	height:100%;
	padding: 5px 0 5px 5px;
	}

.strich1 {
	width:500px;
	height:2px;
	background-color:#eeeeee;
	margin-bottom: 2px;
	}

/* =========================== BUTTONS (INFO+INTERNET) ===========================*/	


.button1 {
	width:488px;
	height:30px;
	border-bottom: 2px solid #eeeeee;
	text-align:center;
	margin-bottom: 15px;
			}
		
.button1_haupt {
		width:498px;
		height:22px;
		border-bottom: 2px solid #eeeeee;
		text-align:right;
		margin-bottom: 10px;
	}	
	
/* Information*/	
.link {
	   background:#cc441e url(bilder/link-right-bg.gif) top right no-repeat; 
	   display:inline-block; 
	   text-decoration:none; 
	   color:#FFF;  
	   line-height:12px; 
	   cursor:pointer;
	   }

.link span {
		background:url(bilder/link-left-bg.gif) top left no-repeat; 
		display:inline-block; 
		padding:4px 6px 4px 4px; 
		color:#FFF;
		}

.link span:hover {
		text-decoration:none;
		}
		
/* Information*/

/* Internet*/

		
.internetbutton_mitte  {
		background:url(bilder/internet_button.jpg) no-repeat;
		width:130px;
		height:25px;
		display:inline-block;
		line-height:24px;
		color:#333;
		font-size:12px;
}
		
.internetbutton_mitte :hover{
	text-decoration:none;
	}
	
.internetbutton_rechts  {
		background:url(bilder/internet_button.jpg) no-repeat;
		width:130px;
		height:25px;
		display:inline-block;
		line-height:24px;
		color:#333;
		font-size:12px;
		text-align:center;
}
		
.internetbutton_rechts :hover{
	text-decoration:none;
	}


/* .link2 {
			background:#b69493 url(bilder/link-left-left.gif) top right no-repeat; 
			display:inline-block; 
			color:#FFF;  
			line-height:12px; 
			cursor:pointer;
			width:90px;
			padding-right:10px;
			}

.link2 span {
			background:url(bilder/link-left-right.gif) top left no-repeat; 
			display:inline-block; 
			padding:4px 5px 3px 4px; 
			color:#FFF;
			width:90px;
			}
			
.link2 span:hover {
			text-decoration:underline;
			}

*/

/* Internet*/	

/* =========================== Sub Navigation ===========================*/	


#sub_nav ul {
		padding-left:0px;
		}
		
#sub_nav ul li{
		background-image:url(bilder/sub.gif);
		display:block;
		list-style:none;
		padding-left:10px;
		padding-top:5px;
		height:17px;
		width:150px;
		}
		
#sub_nav ul li ul {
		list-style:none;
		padding-left:0;
		height:22px;
		width:150px;		
		} 
	
#sub_nav ul li a {
		color:#1d1d1d;
		text-decoration:none;
		padding-left:5px;
		}	

/* =========================== Bibliotheken ===========================*/	

#sub_nav ul li.sec {
	padding-left:13px;
	background-image:none;
	}
		
/* =========================== B ===========================*/
	/* =========================== Content ===========================*/	

.content	{
	width:485px;
	height:100%;
	padding: 5px 10px 5px 5px;
	line-height: 1,5;
	float:right;
	}

.ueberschrift2 {
	width:485px;
	height:100%;
	padding-top:5px;
	font-weight: bold;
	font-size: 12px;
	color: #333;
	line-height: 18px;
	}
	
.pfeil a {
	color:#fff;
	text-decoration:none;
	}
	
.pfeil a:hover {
	color:#fff;
	text-decoration:underline;
	}
	
.staedte {
	height:100%;
	border:1px dashed #999;
	padding:5px 5px 0 5px;
	width:390px;
	
	}
	
.stadtlisten{
	list-style-image:url(bilder/pfeilchen.jpg);
	}


/* =========================== Bread Crump Navigation ===========================*/	

.bread	{
	padding-bottom:5px;
	padding-top:5px;
	padding-left:5px;
	font-size:10px;
	border-bottom:1px dashed #999;
	width:496px;
	}

.bread a{
	color:#65064a;
	text-decoration:none;
	}
	
.bread a:hover{
	color:#65064a;
	text-decoration:underline;
	}

/* =========================== Bread Crump Navigation ===========================*/	

.beispiel_standart {
	background-image:url(bilder/eintragsbeispiel.jpg);
	width:489px;
	height:120px;
	margin: 5px 0px 5px 0px;
	border: 1px solid #CCC;
}

.beispiel_standart2 {
	background-image:url(bilder/eintragsbeispiel_stan.gif);
	width:489px;
	height:120px;
	margin: 5px 0px 5px 0px;
	border: 1px solid #CCC;
}

.block {
	margin-bottom:20px;
	border-bottom: 1px dashed #999;
	padding-bottom:5px;
	height: 100%;
	width: 485px;
}

/* =========================== Tabelle - Kosten ===========================*/	

table tr td	{
	background-color:#e0dfdf;
	padding:7px;
	border: 1px solid #fff;}
	
.table_bg	{
	background-color:#ededed;}
/* =========================== Tabelle Naturhochzeiten ===========================*/	

.shanti tr td {
	background-color:#fff;
	padding:3px;}

/* =========================== Tabelle Messe ===========================*/	

.table_messe td {
	background-color:#fff;
	padding:0;
	padding-left:5px;
	border:none;
	line-height:14px;
	}

/* =========================== PICS ===========================*/	

.pic_c_groe {
	float:left;
	margin-right:3px;
	padding-top:3px;
	width:220px;
	height:265px;}


.pic_c {
	float:left;
	margin-right:3px;
	padding-top:3px;
	width:140px;
	height:107px;
	}
	
.pic_c_gr {
	float:left;
	margin-right:3px;
	padding-top:3px;
	width:140px;
	height:315px;}


.liste_jubi {
	width:260px;
	height:100%;
}

.liste_jubi ul {
	padding-left:15px;
	margin-top:0px;
}

/* =========================== Formular ===========================*/	

.box_kontakt {
	width:300px;
	height:100%;
	padding-bottom:10px;
	padding-top:10px;
	}

.box_kontakt tr td{
	background-color:#FFF;
	padding:1px;
	}
	
.input{
	border:1px solid #b99795;
	padding-left:5px;
	width:140px;
	height:20px;
}

textarea{
   background:#FFF;
   border:1px solid #b99795;
   padding-left:5px;
   padding-top:5px;
   width:290px; height:103px;
   overflow:auto;
   }
   
  .checkbox {
	  margin-right:4px;
	 }

/* =========================== HINWEISBOX ===========================*/	

.hinweis {
	width:475px;
	height:55px;
	background-color:#fffac6;
	background-repeat:repeat-x;
	margin: 10px 0 10px 0;
	border: 1px solid #bbb75c;
}

.ausruf {
	background-image:url(bilder/ausrufezeichen.gif);
	width:38px;
	height:34px;
	margin-left:5px;
	margin-top:11px;
	float: left;
	background-repeat:no-repeat;
}

.hinweis_text {
	width:370px;
	height:70px;
	margin-left: 50px;
	font-size: 12px;
	color:#000;
}

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

.hinweis_text a:hover {
	color:#000;
	text-decoration:underline;}

