@charset "iso-8859-1";

/*******************************************************************************
*  skidoo_too.css : 2005.08.29
* -----------------------------------------------------------------------------
*  A remake of the skidoo layout with the middle column appearing first in
*  source ordering.
*******************************************************************************/

/* begin with generic selectors so that they can be overridden if needed
 * by classes deeper in the stylesheet
 */
.clear
{
	clear: both;
	padding-bottom: 1px;	/* for Gecko-based browsers */
	margin-bottom: -1px;	/* for Gecko-based browsers */
	font-size:0px;
	line-height: 0px;
	visibility: hidden;
}
.hide
{
	display: none !important;
}
.inside
{
	/* glitch in IE caused by vertical padding in this class, so 0 padding is
	 * set here and those blocks that need the vertical padding must be 
	 * applied to the parent element. the purpose of this class is to provide
	 * horizontal padding without using hacks to get around IE's broken box 
	 * model. so it's okay to apply vertical padding to the parent element, 
	 * just not horizontal padding.
	 */
	padding: 0;/*1em*/;
}

/* margin values and font sizes for headings, and margins on paragraphs
 * and lists are not consistent across browser platforms. to achieve a
 * consistent look we need to explicity set these values here. it may
 * seem an odd way to declare the margins like this but you never
 * know what kind of horizontal padding a browser may be using on an
 * element, and I only want to change the vertical padding.
 *
 * pixels are used here, rather than ems, because I want a consistent
 * margin on the different headings. if I use ems, 1em for an h1 element
 * is much larger than 1em on an h6 element. I don't wnat this.
 *
 * salt to taste
 */
ul, ol, dl, p, h1, h2, h3
{
	margin-top: 0;
	margin-bottom: 10px;
	padding-top: 0;
	padding-bottom: 0;
}
h4, h5, h6
{
	margin: 0;
	padding: 0;
}
h1
{
	font-size: 160%;
}
h2
{
	font-size: 150%;
}
h3
{
	font-size: 140%;
}
h4
{
	font-size: 130%;
}
h5
{
	font-size: 120%;
}
h6
{
	font-size: 110%;
}

/* alter some HTML elements' default style
 */
a, a:link, a:visited, a:active
{
	text-decoration: underline;
}
a:link, a:visited, a:active
{
	color: #0000CD;
}
a:hover
{
	text-decoration: none;
}
code
{
	font-family: "Courier New", Courier, monospace;
}

table
{
	font-size: 100%;
}
td, th
{
	vertical-align: top;
}

/* now we craft the core layout of the page. this includes positioning and
 * gutter space. colors and fonts should not come into play at this point.
 * when defining a border, default its color to white which is probably
 * the safest thing to do.
 */
body
{
	margin: 0 10px 10px 10px;	/* margin instead of padding for the gutterspace around 
	 			   the layout because IE breaks the layout when 
	 			   horizontal padding is applied to the body element.
	 			   % over pixels for that horizontal gutterspace so that
	 			   it automatically goes below 20px on low-res browsers
	 			   to create more space for the content. */
	font-size: 101%;	/* resolve some font size issues in some layouts for
				   some browsers. (in other words, i got no clue.) */
}
#pageWrapper
{
	border: solid 1px #fff;
	border-width: 0 1px;
	min-width: 40em;	/* IE doens't understand this property. EMs are used
				   so that as the font size increases, the proportional
				   limitations (min-width) increase with it, rather
				   than creating a middle column that can only fit
				   3 or 4 characters in it. */
	width: auto;
}
* html #pageWrapper
{
	/* \*/
		word-wrap: break-word;
	/* invalid CSS but keeps IE from breaking horribly under narrow viewports */
}
#masthead
{
	padding-bottom: 10px;
}
#masthead h1
{
	padding: 0;
	margin: 0;
}
#outerColumnContainer
{
	/* reserves space for the left and right columns. you can use either
	 * padding, margins, or borders, depending on your needs. however you
	 * can use the border method to create a background color for both left
	 * and right columns
	 */
	border-left: solid 0.5em #fff;
	border-right: solid 18em #000;
}
#innerColumnContainer
{
	border: solid 1px #fff;
	border-width: 0 1px;
	margin: 0 -1px;		/* compensate for the borders because of
				   100% width declaration */
	width: 100%;
	z-index: 1;
}
#leftColumn, #middleColumn, #rightColumn, * html #SOWrap
{
	overflow: visible;	/* fix for IE italics bug */
	position: relative;	/* fix some rendering issues */
}
#SOWrap
{
	float: left;
	margin: 0 -1px 0 0;
	width: 100%;
	z-index: 3;
}
#middleColumn
{
	float: right;
	margin: 0 0 0 -1px;
	width: 100%;
	z-index: 5;
}
#leftColumn
{
	float: left;
	margin: 0 1px 0 -0.5em;
	width: 0.5em;
	z-index: 4;
	display: none;
}
#rightColumn
{
	float: right;
	width: 18em;
	margin: 0 -18em 0 1px;
	z-index: 2;
}
#footer
{
	border: solid 1px #fff;
	border-width: 1px 0;
	padding: 0.5em;
}

/* everything below this point is related to the page's "theme" and could be
 * placed in a separate stylesheet to allow for multiple color/font scemes on
 * the layout. you should probably leave a default theme within this stylesheet
 * just to be on the safe side.	
 */
#pageWrapper, #masthead, #innerColumnContainer, #footer, .vnav ul, .vnav ul li, .hnav, .hnav ul li a
{
	border-color: #fff;
}
html, body
{
	/* note that both html and body elements are in the selector.
	 * this is because we have margins applied to the body element
	 * and the HTML's background property will show through if
	 * it is ever set. _DO_NOT_ apply a font-size value to the
	 * html or body elements, set it in #pageWrapper.
	 */
	background-color: #fff;
	color: #000;
	font-family: arial, helvetica, sans-serif;
}
#pageWrapper
{
	font-size: 80%;	/* set your default font size here. */
}
#masthead
{
	/*background-color: #898;*/
	color: #000;
	text-align:center;
}

.hloc
{
	padding: 3px;
	background-color: #00008b;
	color: #fff;
	margin-bottom: 10px;
}
.hloc a, .hloc a:link, .hloc a:active, .hloc a:visited {
	 color:#fff;
}
.hloc a:hover {
	 color:#fff;	 
}
/******************************************************************************/
/* Quicknavi ganz oben am Rand */
.hlocoben
{
	padding: 0;
	color: #fff;
	text-align:center; 
	margin-bottom:12px; 
	font-size:90%; 
	
	background-color: #dedede;
}
.hlocoben a, .hlocoben a:link, .hlocoben a:active, .hlocoben a:visited {
	 color:#555;
	 text-decoration:none;
	 padding: 0 3px;
}
.hlocoben a:hover, .hlocoben a#headertopactive {
	 color:#000;	
	 background: #fff;
}

/******************************************************************************/

#outerColumnContainer
{
	border-left-color: #fff;	/* left column background color */
	border-right-color: #fff;	/* right column background color */
	background-color: #fff;		/* set the background color for the
					   middle column here */
}

.middleColumnMargin {
	margin: 0 10px;
}
/*.vnav ul li a:link, .vnav ul li a:visited, .vnav ul li a:active
{
	text-decoration: none;
	background-color: #cdc;
	color: #000;
}
#rightColumn .vnav ul li a:link, #rightColumn .vnav ul li a:visited, #rightColumn .vnav ul li a:active
{
	background-color: #ded;
}
.vnav ul li a:hover, #rightColumn .vnav ul li a:hover
{
	text-decoration: none;
	background-color: #898;
	color: #fff;
}*/

#rightColumn .inside
{
	/* if you apply a font size to just #rightColumn, then its width,
	 * which is specified in EMs, will also be affected. you don't want
	 * that. so apply font size changes to the .inside element which exists
	 * inside underneath all three columns
	 */
	font-size: 100%;
}
#rightColumn .inside .vnav
{
	font-size: 110%;
}
#footer
{
	margin-top: 10px;
	border-top: dotted 1px #000;
	color: #000;
	text-align: center;
}

img {
	border-color: #000;
}

form {
	padding: 0;
	margin: 0;
}

form input.submit {
	cursor: pointer;
	border: 1px solid;
}

fieldset {
	border: solid 1px #000;
	padding: 10px;
	background-color: #eee;
}

fieldset legend {
	font-weight: bold;
	font-size: 130%;
}

fieldset label {
	padding: 2px;
	margin: 2px;
	width: 6em;
	float:left;
	text-align:right;
}

fieldset.suche label {
	width: 10em;
}
fieldset.suche input {
	width: 15em;
}
fieldset.suche div {
	margin-left: 11em;
	color:#555;
	font-style: italic;
	margin-bottom: 5px;
}

fieldset br {
	clear: left;
}

fieldset input {
	border: solid 1px #000;
}
input.inputerror {
	border: solid 1px red;
}

/******************************************************************************/
/* Mittlerer Contentbereich*/

#middle {
	position: relative;
}

#middle h1 {
	font-size: 1em;
	letter-spacing: 0px;
	font-weight: bold;
	padding: 0.2em 0.3em;
	margin: 0 0 10px 0;
	background:#7777cd;
	color: #fff;
	display:block;
	z-index: 500;
}

/******************************************************************************/
/* Rechter Contentbereich*/

div.right {
	background:#e5e5fe;
	margin-bottom: 10px;
}

div.right_inner {
	margin: 0;
	padding: 10px;
}

div.right_inner ul {
	margin: 0;
	padding: 0;
	padding-left: 10px;
}

div.right h1 {
	font-size: 1em;
	letter-spacing: 0px;
	font-weight: bold;
	padding: 0.2em 0.3em;
	background:#7777cd;
	color: #fff;
	display:block;
	z-index: 500;
	margin: 0;
}

/******************************************************************************/

#warenkorb a, #warenkorb a:link, #warenkorb a:active {
	 display:block;
	 color:#000;
	 text-decoration:none;
	 background:none;	
}
#warenkorb a:hover {
	 background:#e5e5fe;	
}

/******************************************************************************/
/* Buchliste */

div#buchliste {
	padding: 10px 0;
}

#buchliste h1 {
	font-size: 1.3em;
	margin: 0;
	padding: 10px 0 3px 0;
	font-weight: bold;
	
}
#buchliste h2 {
	font-size: 1.1em;
	margin: 0;
	padding: 0 0 10px 0;
	font-weight: normal;
	
}
#buchliste a, #buchliste a:link, #buchliste a:active {
	 color: #000;
	 text-decoration:none;
	 background:none;	
}
#buchliste a:hover {	
	color: #000;	
}
#buchliste .blau a, #buchliste .blau a:link, #buchliste .blau a:active {
	 color: #0000CD;
	 text-decoration:none;	 
}
#buchliste .blau a:hover {	
	color: #0000CD;
	text-decoration:underline;	
}

/******************************************************************************/
/* Buchliste */

div#buchlistesitemap {
	padding: 10px 0;
}

#buchlistesitemap h1 {
	font-size: 1.6em;
	margin: 0;
	padding: 0 0 5px 0;
	font-weight: bold;
	text-decoration: underline;
}
#buchlistesitemap h2 {
	font-size: 1.4em;
	margin: 0;
	padding: 0 0 10px 0;
	font-weight: normal;
	
}
#buchlistesitemap a, #buchlistesitemap a:link, #buchlistesitemap a:active {
	text-decoration: none;
	background: none;
	color: Navy;
}
#buchlistesitemap a:hover {
	text-decoration:underline;
	color: Navy;	
}

#buchlistesitemap ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#buchlistesitemap ul li {
	margin-bottom:5px;
}

#buchlistesitemap em {
	font-weight: bold;
	font-style: normal;
}

#pdfliste {
	padding-top:5px;
	clear:left
}
#pdfliste ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#pdfliste ul li {
	background:url(../images/icons/pdf_small.gif) left center no-repeat;
	padding-left:25px;
	padding-top:1px;
	width:160px;
}

/******************************************************************************/
/* Buchdetail */

#buchdetail h1 {
	font-size: 1.4em;
	margin: 0;
	padding: 5px 0 3px 0;
	font-weight: bold;
	
}
#buchdetail h2 {
	font-size: 1.2em;
	margin: 0;
	padding: 0;
	font-weight: normal;
}

#buchdetail p {
	font-size: 1.0em;
	margin: 0;
	padding: 0 0 10px 0;
}
#buchdetail p.obenrand {
	font-size: 1.0em;
	margin: 0;
	padding: 10px 0 0 0;
}
#buchdetail p.top {
	font-size: 1.0em;
	margin: 0;
	padding: 0 0 10px 0;
}
#buchdetail p.nachtitel {
	font-size: 1.0em;
	margin: 0;
	padding: 15px 0 10px 0;
}

/******************************************************************************/
/* Buchseiten Navigationsleiste */

div.buchseitennav {
	position: relative;
	padding: 0.2em 0.3em;
	margin: 0;
	background:#7777cd;
	font-size: 1em;
	letter-spacing: 0px;
	font-weight: bold;
	color: #fff;
	text-align:center;
}

/******************************************************************************/
/* Zeitschriften Menüleiste */

div.journalmenu, div.journalmenu a:link, div.journalmenu a:active, div.journalmenu a:visited {
	position: relative;
	padding: 0.2em 0.3em;
	margin: 0;
	background:#7777cd;
	font-size: 1em;
	letter-spacing: 0px;
	font-weight: bold;
	color: #fff;
	text-align:left;
}

/******************************************************************************/
/* ERRORS, MESSAGES*/

fieldset.error {
	border: solid 1px red;
	padding: 10px;
	margin-bottom: 10px;
	background-color: #fff;
}
fieldset.error legend {
	font-weight: bold;
	font-size: 130%;
	color: red;
}
fieldset.message {
	border: 1px solid Green;
	padding: 10px;
	margin-bottom: 10px;
	background-color: #fff;
}
fieldset.message legend {
	font-weight: bold;
	font-size: 130%;
	color: Green;
}

/******************************************************************************/
/* Buchauswahl Startseite*/

#buchauswahl h1, #buchauswahl h2, #buchauswahl h3 {
	font-size: 100%;
	margin: 0;
	background: none;
}

#buchauswahl h1 {
	padding: 5px 0 2px 0;
	font-weight: bold;
	
}
#buchauswahl h2 {
	padding: 0 ;
	font-weight: normal;
}
#buchauswahl h3 {
	padding: 5px 0 0 0;
	font-weight: normal;
	
}
#buchauswahl a, #buchauswahl a:link, #buchauswahl a:active {
	 display:block;
	 text-decoration:none;
	 background:none;	
	 color: #000;
}
#buchauswahl a:hover {
	display: block;
	color: #000;
	
}

/******************************************************************************/
/* Schatten der Bücher */

.wrap1, .wrap2, .wrap3 {
  display:inline-table;
  /* \*/display:block;/**/
  }
.wrap1 {
  float:left;
  background:url(../images/schatten/shadow.gif) right bottom no-repeat!important;
  }
.wrap2 {
	background: url(../images/schatten/corner_bl.gif) left bottom no-repeat!important;
	background-position: -15px bottom!important;
}
.wrap3 {
  background:url(../images/schatten/corner_tr.gif) right top no-repeat!important;
  background-position: right -15px!important;
  padding:0 7px 7px 0!important;
  }
.wrap3 img {
  display:block;
}
  
 /********************************/
 /* AGB Liste */
 
 ol {
 	margin-left: 0;
	padding-left: 30px;
 }
 
 ol li {
 	font-weight: bold;
 }
 ol.normal li {
 	font-weight: normal;
 }
 
 ol li p {
 	font-weight: normal;
 }
 
 #ar { 	
	position: absolute;
	left: -2000px;
	color: #fff;
 }
 
 .nachrichtendatum {
 	float:right;
	font-weight: bold;
	padding: 5px;
 }
 .nachrichtendatumoben {
 	float:right;
	font-weight: bold;
	padding: 5px;
 }
 .nachrichtentopic {
 	font-weight: bold;
	padding: 5px;
	background: #e5e5fe;
 } 
 .nachrichtentopicoben {
 	font-weight: bold;
 } 
 .nachrichtentext {
 	margin-bottom:25px;
	padding:5px;
	border: solid 1px #e5e5fe;
 }
 
#buchtext, #buchrezension {	
	font-size:1.1em;
	font-family: 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif;
	margin-bottom: 20px;
}
#buchrezension {	
	font-size:1.1em;
}
#buchtext ul {	
	padding-left:1.5em;
}
#buchtext li.header {
	list-style-type: none;
	font-weight: bold;
	margin: 10px 0;
	color: #7777CD;
	margin-left:-1.5em;
}
#buchtext li.header2 {
	list-style-type: none;
	font-weight: bold;
	margin: 10px 0;
	color: #7777CD;	
}
#buchtext li.u1 {
	list-style-type: none;	
	margin-top: 10px;
}
#buchtext li.u2 {
	list-style-type: none;	
	padding-left:1.5em;
	margin-top: 10px;
}
#buchtext li.u3 {
	list-style-type: none;	
	padding-left:3em;
	margin-top: 10px;
}
#buchtext p {
	padding: 0;
	margin: 5px 0;
}
#buchtext p.inhalt, #buchrezension p.inhalt {
	font-size:1.3em;
	border-bottom: 1px solid #ccc;
	margin: 5px 0 10px 0;
	padding: 0;
	color: #00008B;
}

.highlightit {
	background: Yellow;
}

/* Buch, Aufsatz Links */
a.anzeige, a.anzeige:link, a.anzeige:visited, a.anzeige:active
{
	text-decoration: none;
	color:#000;
}
a.anzeige:hover
{
	text-decoration: underline;
	color:#0000CD;
}

/* Sprache ändern Links */
a.language, a.language:link, a.language:visited, a.language:active
{
	text-decoration: none;
	color:#777;
}
a.language:hover
{
	text-decoration: underline;
	color:#000;
}

.reverse
{
	unicode-bidi:bidi-override;
	direction: rtl;
}

div.quote {
	font-size: 0.94em;
	font-family: 'Trebuchet MS', Verdana, Helvetica, Arial, sans-serif;
	margin-left: 30px;
	margin-top: 11px;
	margin-bottom: 11px;
}

div.books {
	margin-left: 110px;
	padding-right:10px
}

div.books_internet {
	display: none;
}