@charset "utf-8";

/* CSS Document */

body {
	background: #42413C;
	margin: 0;
	padding: 0;
	color: #000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: normal;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;
	padding-right: 10px;
	padding-left: 10px;
}
a img { /* Dieser Selektor entfernt den standardmäßigen blauen Rahmen, der in einigen Browsern um ein Bild angezeigt wird, wenn es von einem Hyperlink umschlossen ist. */
	border: none;
}
/* ~~ Die Reihenfolge der Stildefinitionen für die Hyperlinks der Site, einschließlich der Gruppe der Selektoren zum Erzeugen des Hover-Effekts, muss erhalten bleiben. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* Sofern Ihre Hyperlinks nicht besonders hervorgehoben werden sollen, empfiehlt es sich, zur schnellen visuellen Erkennung Unterstreichungen zu verwenden. */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* Durch diese Gruppe von Selektoren wird bei Verwendung der Tastatur der gleiche Hover-Effekt wie beim Verwenden der Maus erzielt. */
	text-decoration: none;
}
/* ~~ Dieser Container mit fester Breite umschließt die anderen div-Tags. ~~ */
.container {
	width: 960px;
	position: relative;
	background-color: #EADCAE;
	height: 760px;
	margin: auto;
}
.header {
	background: #ADB96E;
	height: 110px;
	position: relative;
	float: left;
	width: 960px;
}
.sidebar1 {
	width: 140px;
	background: #EADCAE;
	padding-bottom: 10px;
	position: absolute;
	left: 0px;
	padding-top: 10px;
	float: left;
	top: 110px;
	height: 600px;
}
.content {
	width: 780px;
	height: 580px;
	position: absolute;
	left: 140px;
	top: 120px;
	background-color: #FFF;
	float: left;
	padding: 10px;
	overflow-y: auto; /* has to be scroll, not auto iPad */
  	-webkit-overflow-scrolling: touch;
}
.content ul, .content ol {
	padding: 0 15px 15px 20px;
}
/* ~~ Stile für die Navigationslisten (können entfernt werden, wenn Sie ein vordefiniertes Ausklappmenü wie Spry verwenden) ~~ */
ul.nav {
	list-style: none; /* Hiermit wird die Listenmarkierung entfernt. */
	border-top: 1px solid #666;
	position: relative;
	float: left;
	width: 130px;
	clear: both;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 5px;
}
ul.nav li {
	border-bottom: 1px solid #666;
}
ul.nav a, ul.nav a:visited { /* Durch Gruppieren dieser Selektoren wird sichergestellt, dass die Hyperlinks auch nach dem Aufrufen die Form einer Schaltfläche beibehalten. */
	display: block;
	text-decoration: none;
	background: #C6D580;
	text-align: left;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* Hiermit wird der Hintergrund und die Textfarbe bei der Navigation mit der Maus und der Tastatur geändert. */
	background: #ADB96E;
	color: #FFF;
}
/* ~~ Fußzeile ~~ */
.footer {
	position: absolute;/* Hiermit erhält IE6 die Eigenschaft hasLayout, damit die clear-Anweisung korrekt ausgeführt wird. */
	clear: both; /* Diese clear-Eigenschaft bewirkt, dass .container das Ende der fließenden Spalten erkennt und ihren Inhalt aufnimmt. */
	left: 0px;
	top: 730px;
	width: 960px;
	height: 20px;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	background-color: #ADB96E;
}
/* ~~ Verschiedene float/clear-Klassen ~~ */
.fltrt {  /* Mit dieser Klasse können Sie ein Element auf der Seite nach rechts fließen lassen. Das fließende 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. Das fließende Element muss vor dem Element stehen, neben dem es auf der Seite erscheinen soll. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* Diese Klasse kann in einem <br />-Tag oder leeren div-Tag als letztes Element nach dem letzten fließenden div-Tag (im #container) platziert werden, wenn #footer entfernt oder aus dem #container herausgenommen wird. */
	clear: both;
	height: 0;
	font-size: 1px;
	line-height: 0px;
}
.head_l {
	height: 90px;
	width: 130px;
	position: relative;
	padding-left: 20px;
	padding-top: 10px;
}
.head_r {
	height: 60px;
	position: absolute;
	padding-top: 20px;
	padding-left: 20px;
	left: 150px;
	top: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 36px;
	font-style: normal;
	font-weight: bold;
}
span {
	position: absolute;
	padding: 3px;
	color: #FFF;
	text-align: left;
	float: left;
	background-color: #BB8800;
	width: 110px;
}
span:after {
	content: " "; /*if CSS are disbled span elements are not displayed*/
}
input {
	position: absolute;
	right: 0;
	margin: 0;
	/*hide the radio button*/
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 0;
	cursor: pointer;
	left: 0px;
	height: 15px;
	width: 110px;
}
input[type="radio"] + span { /*the span element that immediately follow the radio button */
	visibility: hidden; /*temporarily hide the "YES" label*/
	background: #885500;
}
input[type="radio"] + span:after {
	content: "  "; /*if CSS are disbled span elements are not displayed*/
}
input[type="radio"]:checked + span {
	visibility: visible; /*show the "YES" label only if the radio button is checked*/
}
.RSel1 {
	float: left;
	position: relative;
	padding: 4px;
}
.RSel2 {
	float: left;
	width: 116px;
	position: relative;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	margin: 5px;
	padding: 2px;
	background-color: #EEE;
	height: 20px;
	border: 3px outset #614F34;
}
.PBilder {
	margin: 2px;
	height: 70px;
	background-color: #FFFFFF;
	width: 720px;
	position: absolute;
	left: 10px;
	top: 490px;
	padding: 4px;
	overflow: auto;
}
.PBilder0 {
	margin: 2px;
	height: 150px;
	background-color: #FFFFFF;
	width: 223px;
	position: relative;
	padding: 4px;
	float: left;
}


.TBilder0 {
	margin: 0px;
	height: 44px;
	background-color: #C49057;
	width: 4000px;
	position: relative;
	top: 0px;
	padding-top: 6px;
	padding-right: 4px;
	padding-bottom: 4px;
	padding-left: 4px;
}
.TBilder {
	margin: 2px;
	height: 70px;
	background-color: #FFFFFF;
	width: 720px;
	position: absolute;
	left: 10px;
	top: 490px;
	padding: 4px;
	overflow: auto;
}
.TBilder1 {
	float: left;
	height: 40px;
	width: 60px;
	margin-right: 4px;
	margin-left: 4px;
	position: relative;
	cursor:pointer;
}
.Bilder {
	background-color: #F96;
	float: left;
	height: auto;
	width: 720px;
	position: relative;
	margin-left: 10px;
	text-align: center;
}
