/*
================================================
Typo 3 Master CSS
Version: 1.0
Letze Änderung: 26.05.2008 (Andrea Zbinden)

28. April 2008
Michel: Überall Kurzschreibweisen eingesetzt (#fff anstatt #fffff usw.), plus diverse kommentierte änderungen
29. Mai 2008
Michel: 0px = 0, diverse kleinere Sachen


================================================

Index
------------------------------------------------
Grundeinstellungen
- Univeral Selektor
- HTML-Tags
- Wrapper-DIV

Head Bereich
- Logo
- Sprachnavigation

Navigation
- Hauptnavigation
- Subnavigation

Content-Bereich
- Formatierungen speziell für Contentbereich

Sidebar
- Formatierungen speziell für Sidebar

Footer
- Formatierungen speziell für Footer

Typo3 Erweiterungen
- tt_news
- mailformplus
- ...
------------------------------------------------
*/



/*
==================
Grundeinstellungen
==================
*/

/* Universal Selektor */
* {
	margin: 0px;
	padding: 0px;
	border: 0px;  /* besser wenn border auch gleich reseted wird (Michel) */
}

/* Scrollbalken für IE8 und Firefox erzwingen */
html{
	height: 101%;
}

/* HTML-Tags */

body {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
/*
background-image: url(../bilder-design/header.jpg);*/
background-image: url(../bilder-design/bg-body.jpg);
background-repeat: repeat-x;
background-position: center;
background-position: top;
color: #333333;
}


/*Titel*/
h1 {
font-family: "Times New Roman", Times, serif;
font-size: 22px;
color: #990000;
font-weight: bold;
padding-bottom: 15px;
}

h2 {
font-family: "Times New Roman", Times, serif;
font-size: 18px;
color: #990000;
font-weight: bold;
	
}

h3 {
font-family: "Times New Roman", Times, serif;
font-size: 14px;
color: #990000;
font-weight: bold;
	
}

/*Generelle Links*/
a {color: #990000; font-weight: normal; text-decoration: none;}
a:link {}
a:visited {}
a:hover {  text-decoration: underline; }
a:active { }


/*Wrapper DIV*/
#wrapper {
margin: 0 auto; /* 0 hinzugefügt, weil in vertical ist auto allein nicht sauber möglich (michel) */
width: 980px; /*Breite Angeben*/

}
	
	
/*
==================
Head Bereich
==================
*/

#header {
height: 340px;
padding-bottom: 30px;
background-image: url(../bilder-design/header-980px.jpg);
background-repeat: no-repeat;

}

/*Logo*/

#logo {
text-align: right;
padding: 30px 90px 0px 0px;

}

#metanav {
background-color: #990000;
width: 190px;
height: 20px;
padding-left: 35px;

}

#metanav li{
float: left;
list-style-image:none;
list-style-type:none;

}

#metanav a { padding:2px 5px 0px 5px; display: block; /*ganze Fläche anklickbar machen*/ text-decoration:none; }
#metanav li a:link  { color: #fff; }
#metanav li a:visited { color: #fff; }
#metanav li a:hover  { color: #fff; text-decoration:underline;}
#metanav li a:active { color: #fff; }

/*aktiver Hauptnavigationslink -> in typo3 wird die Klasse "aktiv" definiert*/
#metanav li.aktiv a { color: #fff; text-decoration:underline; }

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

#navigation {
float: left;
width: 250px;
height: 300px;
margin: 0px;
padding: 0px 0px 0px 0px;
}
	
#mainnav {
margin: 0px;
padding: 0px;
width: 190px;

}

#mainnav li{
font-family: Georgia, "Times New Roman", Times, serif;
font-size: 16px;
font-weight: bold;
font-style: italic;
color: #990000;
list-style-image:none;
list-style-type:none;
border-bottom:1px dashed #000;
border-color: #990000;

}

/*HAUPTNAVIGATION Links*/

#mainnav a { color: #990000; padding: 5px 15px 5px 10px; display: block; /*ganze Fläche anklickbar machen*/ text-decoration:none; font-weight: bold; }
#mainnav li a:link  {  }
#mainnav li a:visited { }
#mainnav li a:hover  { color: #000;}
#mainnav li a:active {  }

/*aktiver Hauptnavigationslink -> in typo3 wird die Klasse "aktiv" definiert*/
#mainnav li.aktiv a { color: #000;  }
/*Falls der aktive Link auch spezielle Zustände haben sollte (kann meistens gelöscht werden)*/
/*#mainnav ul li.active a:link  { color: #000; text-decoration: none; }
#mainnav ul li.active a:visited { color: #000; text-decoration: none; }
#mainnav ul li.active a:hover  { color: #fff; text-decoration: none; }
#mainnav ul li.active a:active { color: #fff; text-decoration: none; }*/

#subnav {
padding: 0px;
margin: 0px;
border-bottom:1px solid #000;

}

#subnav li{
list-style-image:none;
list-style-type:none;
padding: 0px;
margin: 0px;
border-bottom:0px solid #000;

}

/*SUBNAVIGATION Links*/
#subnav a  { padding: 10px 10px; display: block; /*ganze Fläche anklickbar machen*/ text-decoration:none; }
#subnav li a:link  { color: #000;  }
#subnav li a:visited { color: #000; }
#subnav li a:hover  { color: #000; text-decoration: underline; }
#subnav li a:active { color: #000;  }

/*aktiver Subnavigationslink*/
#subnav li.subnavaktiv a { color: #fff; text-decoration: none; }
/*Falls der aktive Link auch spezielle Zustände haben sollte (kann meistens gelöscht werden)*/
/*#subnav ul li.subnavactiv a:link  { color: #000; text-decoration: none; }
#subnav ul li.subnavactiv a:visited { color: #000; text-decoration: none; }
#subnav ul li.subnavactiv a:hover  { color: #fff; text-decoration: none; }
#subnav ul li.subnavactiv a:active { color: #fff; text-decoration: none; }*/

/*
==================
Content-Bereich
==================
*/
#maincontent {
float: left;
width: 435px;
padding: 0px 45px 20px 0px;

}
	
#maincontent ul {
list-style-image:none;
list-style-position:outside;
list-style-type:disc;
margin-left:20px;
vertical-align:top;

}

/*
==================
Sidebar-Bereich
==================
*/	
#sidebar {
float: left;
/*width: 248px;*/
padding-bottom: 40px;
}

/*
==================
Footer-Bereich
==================
*/	

#footer {
clear: left;
text-align: center;
background-image: url(../bilder-design/bg-footer.jpg);
background-repeat: repeat-x;
height: 112px;
margin: 0 auto; 
/*width: 1200px; */
line-height:18px;

}


#adresse {
clear: left;
text-align: center;
background-image: url(../bilder-design/footer.jpg);
background-repeat: no-repeat;
height: 62px;
margin: 0 auto; 
width: 980px;
padding: 50px 0px 0px 0px;
line-height:18px;

}
	
		

/*
===================
Typo3 Erweiterungen
===================
*/	

/*Formulare*/
legend {
font-weight: bold;
color: #000000;
padding: 15px 5px 15px 5px;
margin-left: 5 px;

}

fieldset {
border: 1px solid #000; /*Farben anpassen*/
padding: 5px 5px 5px 5px;
/*display: block;*/

}

label {
width: 150px; /*Breiten anpassen*/
float: left;
padding-left:5px;

}

input {
border: 1px solid #000; /*Farben anpassen*/
margin-bottom: 10px;

}
select {
width: 50px;
border: 1px solid #000; /*Farben anpassen*/
}
textarea {
border: 1px solid #000; /*Farben anpassen*/
margin-left: 5px;
}

.absendeknopf {
border: 1px solid #000;
font-weight: bold;
background-color: #fff;
color: #000;
margin: 10px 0 10px 155px;
/*optional*/
float: left;
}
.fehlertext {
color: #000;
font-weight: bold;
background-color: #f99;
padding: 2px;
border: 1px solid #f00;
width: 375px;

}

.formfehler {
border: 1px solid #f00;
margin-bottom: 5px;

}

/*optional*/
.pflichtfelder {
margin: 12px 0 0 170px;

}


/*Kalender in Formular*/
#VicPopCal {
	left: 500px !important;
	border: 1px solid #999 !important;
}

#VicPopCal table {
	background-color: #FFF !important;
}

.kalender-button {
	background-image: url('../images/kalender.gif');
	border: none;
	width: 16px;
	height: 16px;
	cursor: hand;
} 



.contenttable td{
padding: 3px;


}

.bodytext {
/*float: left;*/
margin: 0;
padding: 0;

}

a.download img{
margin-bottom: -3px;

}

#map {
float: left;
width: 440px; 
height: 290px; 
color:#000;

}


/*BILDGALERIEN*/


.seite11 .csc-textpic-imagerow, .seite12 .csc-textpic-imagerow{
width: auto!important;
}

.seite11 #maincontent, .seite12 #maincontent{
width: auto!important;
}

.seite11 #maincontent ul, .seite12 #maincontent ul{
margin: 0px;
}


/*wt-gallery*/
.list_row {
float: left;
}

.list_row img {
padding: 5px 5px 5px 0;

}

.wtgallery_list_pagebrowser_area {
display: none;

}


.csc-frame-frame1{
width: 240px;
padding: 20px;
background-color: #efebdf;
color: #996633;

}

.tx-wtgallery-pi1 h2 {
    display: none;
}




