/*****************************************/
/*                                       */
/*      Stylesheet für fixes Layout      */
/*            CSS-Praxis 2005            */
/*                                       */
/*           (c) Kai Laborenz            */
/*****************************************/

/* Import der Styles für das Blog */
@import url(blog.css);
@import url(sberrata.css);

/* erstmal alle Abstände auf "0" setzen */
* {
	margin: 0;
	padding: 0;
}

body {
	font: 76% "Trebuchet MS", sans-serif;
	color: #000;
}

/* allgemeine Linkformatierungen */
a:link, a:visited {
	color: #000;
}

/* Links im inhaltlichen Teil der Site sollen gut sichtbar sein */
#inhalt a:hover, #inhalt a:focus, #inhalt a:active {
	color: #fff;
	background-color: #666 !important;
}

/* keine Ränder bei verlinkten Grafiken */
a:link img, a:visited img {
	border: none;
}

/* Titel der Website als oberste Überschrift */
h1 {
	color: #fff;
	font-size: 2.2em;
	padding: 26px 0 0 30px;
}

/* Nebensatz der Überschrift */
h1 span {
	font-size: 0.56em;
}

h1 a:link, h1 a:visited {
	text-decoration: none;
	color: #fff;
}

/* Seitentitel als zweite Überschrift*/
h2 {
   font-size: 1.4em;
	margin: 0.5em 0 0.5em 0;
}

/* Überschriften für Inhaltselemente */
h3 {
   font-size: 1.1em;
	margin: 0.5em 0 0.2em 0;
}

#texte p {
	margin-bottom: 1em;
}

/**********************************/
/* Bereiche (von oben nach unten) */
/**********************************/

/* Gesamtcontainer */
#all {
	width: 760px;
	margin: 0 auto;
	background-color: #e2e6e9;
}

/* Kopfzeile mit Hintergrundgrafik */
#top {
	margin-top: 1em;
	height: 110px;
	width: 760px;
	background: #D0D4D6 url(../imgs/head_bg.jpg) top left;
}

/* Inhalt mit Hauptinhaltsspalte und Marginalie rechts daneben */
#inhalt {
	background: url(gfx/t3bg_tiled.gif) -570px 0 repeat-y;
}

/* Hauptinhaltsspalte */
#texte {
	margin-top: 1.55em;
	padding: 30px 60px 30px 30px;
	float: left;
	width: 480px;
}
/* Marginalie rechts */
#marginalie {
	margin-top: 1.55em;
	/*margin-left: 570px;*/
	padding: 30px 15px;
	float: left;
	width: 160px;
}

/* Holly Hack, um nach der Inhalsspalte das floaten zu beenden */
#inhalt:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

/* Kein IE-mac \*/
* html #inhalt {height: 1%;}
/* Ende kein IE-mac */

/* Ende Holly Hack */

/* Horinzontales Menü, wird per absoluter Positionierung platziert*/
/* dadurch kann es im HTML-Code nach den INhalten stehen, was gut */
/* für Suchmaschinen und Barrierefreiheit ist */
#hmenue {
	position: absolute;
	top: 110px;
	margin: 0 auto;
	height: 1.8em;
	width: 760px;
	margin-top: 1em;
	padding: 0;
	background: #E2E6E9 url(gfx/bg_hmenue1.gif) repeat-x 0 -0.9em;
	border-bottom: 1px solid #C2C2B2;
}

/* Einstellungen (Balken ganz oben) - ebenfalls absolut positioniert */
#settings {
	position: absolute;
	top: 0;
	margin: 0 auto;
	padding: 0 10px;
	width: 740px;
	height: 1.8em;
	color: #fff;
	background: #24252C url(gfx/bg_settings.gif) repeat-x 0 -0.9em;
}
/* Das Wort "Einstellungen:" ist als Definitionselement ausgezeichnet */
#settings dfn {
	float: left;
	font-style: normal;
	padding: 0.2em 0 0.1em 0;
}
/* Einstellungsoptionen als Liste */
#settings li {
	padding: 0.2em 0.8em 0.1em 0.8em;
}

/* Banner zum Buch-kaufen */
#buchkaufen {
	min-height: 62px;
	padding-left: 80px;
	background: #F5F5F6 url(gfx/bookcover_no.gif) 10px 10px no-repeat;
}
/* IE <=6 kann kein min-height, behandelt aber height wie ordentliche Browser min-height */
* html #buchkaufen {
	height: 62px;
}

#buchkaufen:hover {
	background-image:url(gfx/bookcover_ro.gif);
}

/* Noch ein Banner zum Buch-kaufen */
#ebookkaufen {
	padding-left: 53px;
	padding-right: 2px;
	background: #F5F5F6 url(gfx/ebook_no.gif) 5px 5px no-repeat;
}

#ebookkaufen:hover {
	background-image:url(gfx/ebook_ro.gif);
}

/* Fusszeile */
#fusszeile {
	clear: both;
	padding: 2px 10px;
}

#fusszeile p {
	margin: 0;
}

/******************/
/* Formatierungen */
/******************/

#texte img {
	border: 1px solid #ccc;
	padding: 4px;
}
#uid63 #texte img {
	border: none; /* nicht auf der Startseite */
}

.right{
	float: right;
}

/* Formatierung für Infokästen in der Marginalie */
.margikasten {
	background: #F5F5F6;
	border: 1px solid #0F283A;
	padding: 10px 5px;
	margin-bottom: 2em;
}

/*************/
/* Formulare */
/*************/


/* Formular mit LinkCode und Login in der Marginalie oben */
#leserservice {
	padding: 5px;
}
#leserservice label {
	font-weight: bold;
}
#leserservice input {
	border: 1px solid #A3A98A;
	font-size: 0.8em;
	width: 75px;
}
#leserservice .btn {
	color: #fff;
	background-color: #0F283A;
	border: none;
	width: auto;
	width: 6em;
	margin-left: 0.4em;
}
#leserservice a {
	font-size: 0.8em;
}

/* CSS-Selektor in der Einstellungszeile */
#settings form select {
	background-color: #000;
	color: #fff;
	font-size: 0.9em;
	height: 1.6em;
	border: none;
}


/* Listen als Menüs */

/* Allgemeine Formate für hmenue und settings */
#hmenue ul, #settings ul {
	list-style: none;
}
#hmenue li, #settings li {
	position: relative;
	float: left;
}

/* Hauptmenü 1.Ebene */

#hmenue li {
	width: 8em;
	border-right: 1px solid #aaa;
	text-align: center;
}

#hmenue li:hover, #hmenue li.over  {
  background-color: #f5f5f5;
}

#hmenue li.akt {
	padding: 0.2em 0;
	background-color: #f5f5f5;
}
#hmenue li.akt a {
	padding: 0 !important;
	background-color: #f5f5f5;
}

/* Aufklappmenü der 2.Ebene - zunächst unsichtbar */
li ul {
  display: none;
  position: absolute;
  left: -1px;
  top: 1.8em;
  width: 100%;
  background-color: #f5f5f5;
  border-bottom: 1px solid #aaa;
  border-left: 1px solid #aaa;
  opacity: 0.85;
}

/* Aufklappmenü beim hovern sichtbar machen */
li:hover ul, li.over ul {
	display: block;
   background-color: #f5f5f5;
}

li li {
	display: block;
	float: none;
	height: 1.7em;
	white-space: nowrap;
	width: 100%;
	border-top: 1px dotted #ddd;
}

* html li ul {
	width: 8em;
}

* html li li {
	width: 4em;
}


/* Links spezial */

#hmenue a:link, #hmenue a:visited {
	display: block;
	text-decoration: none;
	padding: 0.2em 0.2em 0.2em 0.2em;
}

/* Hover für die 2.Menüebene */
#hmenue li li a:link, #hmenue li li a:visited {
	display: block;
	padding: 0.1em 0.2em 0.15em 0.2em;
}

#hmenue li li a:hover {
	text-decoration: underline;
	padding: 0.1em 0.2em 0.15em 0.2em;
	background-color: #ddd;
}

#settings a:link, #settings a:visited {
	color: #fff;
}



/* News */
.news {
	margin-top: 10px;
}

.newsHeader {
	border: 1px solid #C2C2B2;
	background-color: #D0D4D6;
	color: white;
	padding: 0.3em 0.4em;
}

.newsBody {
	background-color: #E2E6E9;
	padding: 0.3em 0.4em;
}

.newsSubheader {
	padding-bottom: 0.8em;
}

.news-single-img {
	float: left;
	margin-right: 0.3em;
}

.news-single-imgcaption {
	color: black;
	font-size: 0.8em;
}

/* Login - Members Area */
.label {
	float: left;
	width: 5em;
	margin-top: 10px;
}

.field {
	float: left;
	margin-top: 10px;
}

.Login {
	background-color: white;
	border: 1px solid #C2C2B2;
}

.LoginButton {
	background-color: white;
	border: 1px solid #C2C2B2;
	font-weight: bold;
	color: black;
	margin-top: 10px;
}

/*** Inhaltsverzeichnis // Anfang ***/
#inhaltsverzeichnis caption	{
	display: none;
}
#inhaltsverzeichnis	th{
	text-align: left;
}
#inhaltsverzeichnis td	{
	vertical-align: top;
}
tr.level00	{
	background-color: #ccc;
}

tr.level01	{
	background-color: #B0C0B0;
	background-color: #E0E8E8;
	border: 1px solid gray;
	border-left: none;
	border-right: none;
}
/*** Inhaltsverzeichnis // Ende ***/

/*** Kontaktformular // Anfang ***/
fieldset  {
	border: 1px solid #D0D4D6;
	padding: 0 1em 0.5em 1em;
	margin-top: 0.5em;
}

legend	{
	font-weight: bold;
	margin-bottom: 0.5em;
}
* html legend	{
	margin-left: -0.5em;
}

label {
	display: block;
	float: left;
}

label.std {
	width: 13.6em;
}
* html label.std	{
	width: 13.5em;
}

label.nachRadio {
	float: none;
	height: 1.6em;
	width: 35em;
}

* html label.nachRadio	{
	padding: 0.35em 0 0.2em 0;
		width: 33em;
}

label.vorSeite {
	float: left;
	width: 24em;
	height: 1.6em;
}

input {
	margin-bottom: 0.4em;
}

* html input {
	margin-bottom: 0;
}

input#vorname	{	width: 10.3em;}
* html input#vorname	{	width: 10.1em;}
input#name	{	width: 10.3em;}
* html input#name	{	width: 10.1em;}

input#email	{	width: 21.2em;}
* html input#email	{	width: 21em;}
input.radio	{	display: block; margin:0.2em 0; padding: 0; width: 1.5em; float:left;}
input.seite	{	width: 3em;}

textarea	{
	width: 34.6em;
	height: 6em;
}
* html textarea	{
	width: 33.6em;
}

.submit {
	margin: 0.5em 0 0.2em 28em;
	cursor: pointer;
	width: 8em;
	border: 1px solid #0E2537;
	background-color: #D0D4D6;
}

* html .submit	{
	margin: 0.5em 0 0.2em 30.6em;
	width: 8em;
}

input:focus, textarea:focus, input:active, textarea:active, option:focus, option:active {
	background-color: #CBE0F1;
	border: 1px solid #07457A;
	font-weight: bold;
}

#kontakt input:focus, #kontakt textarea:focus, #kontakt input:active, #kontakt textarea:active, #kontakt option:focus, #kontakt option:active	{
	border: 2px solid #07457A;
	border-bottom: 1px solid #07457A;
	border-right: 1px solid #07457A;
}

/*** Kontaktformular // Ende ***/

/*** FAQ ***/
.tx-irfaq-pi1 ul, .tx-irfaq-pi1 ol  {
	padding-left: 1.5em;
}

/**** Test ***/
.sbac-spacer {
             clear:both;
             visibility:hidden;
 }

.sbac-clearer{
             clear:both;
 }