/*
Theme Name: stockholm
Theme URI: http://mikado-82.de
Description: Das Theme basiert auf dem MX4 WordPress Theme und dem Kubrick Theme <a href="http://binarybonsai.com/kubrick/">Kubrick</a>.
Author: Kristina Guth, Hagen Wierstorf
Author URI: http://mikado-82.de
Tags: wall, two-column

	stockholm v0.9
	 

	The CSS, XHTML and design is released under GPL:
	http://www.opensource.org/licenses/gpl-license.php

*/
/* 
 * CSS-file for tina's wordpress theme
 * 
 * Version vom 7. Oktober 2008
 * At the moment, severall images are used as background. I think this is not 
 * an usual or fast way, isn't it?
 * This images are also loaded in the header.php file, which is not intuitive 
 * at all. So the first thing to do is to add the images to this css-file.
 * After that I will clean up and don't use so many imags at all.
 *
 * hagen@kkdu.org
 *
 * TODO:
 * * es wäre ganz guter Stil, wenn eine extra CSS-Datei nur für die
 *   Schriftarten angelegt wird, so dass dies aus dieser Datei entfernt werden 
 *   kann
 */


/*** GANZE SEITE ***/
/* Diese Einstellungen gelten erstmal für die komplette Seite (also z.B.  
 * festlegen einer Standardschriftart) und können dann durch die jeweiligen 
 * tieferen Ebenen Überschrieben werden (z.B. andere Schriftart für h1)
 */
body {
	/* Hintergrundbild der Seite (da wird noch ein gutes gesucht ;) ) */
	background: url(images/hintergrund_alt.jpg) fixed center top;
	/*background: url(images/shadow.png) repeat-y center top;*/
	background-color:#f6f6f6;
	color:#333333;
	font-family:Georgia,Verdana,Arial,Sans-Serif;
	font-size:62.5%;
	margin:0;
	padding:0;
	text-align:center;
}


/*** "SEITENHALTER" ***/
/* In dieses Konstrukt wird #page (also die ganze Seit) eingebettet. Dies kann  
 * nützlich sein, wenn um die ganze Seite einen Rahmen soll etc.
 * Zur Zeit sind die Werte jedoch so eingestellt, dass sich dieser Bereich 
 * nicht weiter bemerkbar macht, sondern nur die Einträge in #page wichtig 
 * sind.
 */
#pagewrapper {
	/* Durch ein Hintergrundbild hier kann z.B. ein ausgefallener Rahmen um die 
	 * Seite realisiert werden. */
	/*background: url(images/hintergrund3.png) scroll center top;*/
	/* Breite dieses Bereiches. Wenn die Breite genau gleich der Seitenbreie ist, 
	 * bekommt man von diesem Bereich nichts mit, sondern nur von dem #page 
	 * Bereich. Da wir diesen Wrapper im Moment nicht gebrauchen können ist genau 
	 * diese Breite gewählt. */
	width: 820px;
	/* Auto bei margin sorgt für eine Zentrierung der Seite, 0 ist der Abstand 
	 * nach oben und unten. */
	margin: 0 auto;
	/* Innenabstand (auch dies ist wichrtig für den Rahmen-Effekt, siehe 
	 * Beispielangaben weiter unten. */
	padding: 0;
	/*padding-top: 40px;
	padding-bottom: 0px;
	padding-left: 20px;
	padding-right: 20px;*/
}

/*** SEITE ***/
/* Dies ist die ganze Seite ohne Hintergrundbild, also alles, was mit Inhalt 
 * gefüllt werden soll. Die Seite enthält alle weiteren Elemente: #header, 
 * #content, #sidebar, #footer, etc.
 */
#page {
	/* Hintergrundfarbe für den Inhaltsbereich */
	background-color: #FFFFFF;
	background: url(images/balken.gif) repeat-y top center;
	/* Wichtig: das auto bei margin sorgt dafür, dass der Blog mittig auf der 
	 * Seite zentriert wird. Die 0 bezieht sich auf den Abstand nach oben und 
	 * unten. Dies sorgt also dafür, dass das Titelbild ganz oben anfängt und die 
	 * Fußzeile ganz unten aufhört, jeweils ohne Zwischenraum. */
	margin:0 auto;
	/* Innenabstand der Elemente. 0 ist ein guter Wert, so kann z.B. das 
	 * Titelbild die volle Breite der Seite einnehmen. */
	padding:0;
	/* Breite der Seite (dies sollte natürlich so breit sein, wie das Titelbild.  
	 */
	width: 820px;
	/* Die Textausrichtung im Inhaltsbereich ist natürlich größtenteils 
	 * linksbündig. */
	text-align:left;
	/* Rahmen um die gesamte Seite (nützlich, wenn keine Hintergrundfarbe 
	 * verwendet wird, um den Seitenbereich besser vom Seitenhintergrund 
	 * abzuheben. */
	/*border: 1px solid #dbdbdb;*/
}


/*** TITEL ***/
/* Der Titel, bzw. Kopf der Seite. Dieser besteht zumeist mehr oder weniger aus 
 * dem Titelbild.
 */
#header {
	/* Benutze ein Bild (von Stockholm) als Titel */ 
	background: url(images/titelbild.jpg) no-repeat bottom center;
	/* Die Höhe des Bildes. Seine Breite muss hier nicht extra angegeben werden, 
	 * da ja die Seitenbreite schon auf diesen Wert gesetzt worden ist. */
	height:230px;
	margin:0 auto;
	padding:0;
	width:100%;
}
/* Der Text im Titelbild Deiner Seite. Dies brauchst Du natürlich nur, wenn Du 
 * den Text nicht direkt mit ins Bild gescrieben hast (also per GIMP etc.). Da 
 * dies zur Zeit der Fall ist, wird er einfach mit dem ersten Eintrag 
 * ausgeblendet. Die Suchmaschinen sehen ihn aber trotzdem und erfassen so den 
 * Titel und Untertitel Deines Blogs.
 */
.headertext {
	/* Wenn der Text in der Bilddatei ist und NICHT eingeblendet werden soll! */
	display: none;
	/* Falls der Text auf dem Hintergrundbild nicht vernünftig aussieht, kann ein 
	 * halbtransparentes Bild als Hintergrund eingeblendet werden, damit man den 
	 * Text besser lesen kann. */
	/*background: transparent url(images/header_text_hintergrund.png) repeat-x 
	 * scroll center bottom; */
	/* Die Positionierung des Textes im Titelbild über die Abstände zum Bildrand. 
	 */
	margin-left:24px;
	margin-top:16px;
	/* ??? */
	position:absolute;
}


/*** NAVIGATIONSBEREICH UNTER DEM TITELBILD ***/
/* Dies ist der schmale Balken unter dem Titelbild, in dem die Tabs HOME, ...  
 * untergebracht sind.
 */
#navcontainer {
	/* Hintergrund */
	/*background-color: #e3dfbf;*/
	background-color: #e1dec0;
	
	font-family:Arial,Helvetica,sans-serif;
	font-size:10px;
	margin:0;
	/* Dies sorgt dafür, dass alle Buchstaben automatisch groß geschrieben 
	 * werden. */
	text-transform:uppercase;
}
/* Dies ist der Bereich, in der die Tabs unterbebracht sind. Er hat die selbe 
 * Höhe wie diese, geht aber über die GESAMTE Breite der Seite. Das heißt, wenn 
 * im vorherigen Eintrag (#navcontainer) keine Höhe angegeben worden ist, ist 
 * dieser Bereich genauso groß wie #navcontainer.
 */
#navcontainer ul {
	/*background-color: #DED9CA;*/
	/* Hintergrund auf transparent gesetzt, so dass der Hintergrund aus dem 
	 * vorherigen Eintrag (#navcontainer) sichtbar bleibt. */
	/* vorherige Farbe (sehr ähnlich) war: #e3dfbf. */
	background-color: #e1dec0;
	/* ! Textfarbe. Dieser Eintrag wird noch überschrieben und sollte an dieser 
	 * Stelle überflüssig sein. */
	color:white;
	/* Die Tabs sollen auf der linken Seite anfangen. */
	float:left;
	/* Fange ganz links an mit dem ersten Tab. */
	padding-left:0;
	/* ! Gleicher Eintrag für die Schrift wie ein weiter oben, sollte überflüssig 
	 * sein. */
	font-family:arial,helvetica,sans-serif;
	margin-bottom:0;
	margin-left:0;
	margin-top:0px;
	/* Sorgt dafür, dass dieser Bereich so breit ist, wie die gesamte Seite. */
	width:100%;
}
/* Wie die Aufzählungspunkte (li) zusammen dargestellt werden sollen. (Menüs 
 * werden in der Regel immer durch einzelne Aufzählungspunkte realisiert).
 */
#navcontainer ul li {
	/* Stelle die Einträge in einer Linie dar (und nicht untereinander). */
	display:inline;
}
/* Darstellung der einzelnen Links (also Menüpunkte) 
 */
#navcontainer ul li a {
	background-color:#CAC8B9;
	/* Damit die einzelnen Menüpunkte leicht voneinander abgetrennt sind, kann 
	 * man auf einer Seite (rechts oder links) einen Rahmen machen oder aber wie 
	 * dies hier geschehen ist über margin-right einen kleinen Abstand zwischen 
	 * ihnen einfügen, so dass der Hintergrund durchscheint und sie trennt. */
	/*border-right:1px solid #E3DFBF;*/
	margin-right: 1px;
	/* Textfarbe der Links */
	color:#7C6B70;
	float:left;
	padding:0.2em 1em;
	/* Keinen Unterstrich unter die Links. */
	text-decoration:none;
}
/* Darstellung der Links (Menüpute) wenn die Maus sich über ihnen befindet. */
#navcontainer ul li a:hover {
	background-color:#FBF9E6;
	color:#93425A;
}
/* Darstellung der Links (Menüpunkte) wenn sie angewählt sind. (dies sorgt 
 * dafür, dass der Tab HOME z.B. anders aussieht, wenn wir uns auf der Seite 
 * HOME befinden als die anderen Links, so dass zu sehen ist, dass diese Seite 
 * angewählt ist.
 */
#navcontainer ul li a.selected {
	background-color: #fbf9e6;
	color: #93425A;
}


/*** BLOGEINTRGE ***/
/* Inhalt der Seite. Also Blogeinträge etc.
 */
#content {
	font-size:1.4em;
}
/* Ein einzelner Eintrag.
 * ! Noch nachschauen, welches der beiden folgenden Klassen verwendet wird, sie 
 * unterscheiden sich ja nur in der Schriftgröße.
 */
.entry {
	color:#354657;
	font-family:Georgia,"MS Sans Serif",Geneva,sans-serif;
	font-size:0.9em;
	line-height:1.4em;
	margin-top:0;
	padding-top:0;
}
.entrytext {
	color:#354657;
	font-family:Georgia,"MS Sans Serif",Geneva,sans-serif;
	font-size:1em;
}
.entrytext .postmetadata {
	margin-top: 65px; 
}
.post {
	margin:22px 0 30px;
	/* Blogsatz */
	text-align:justify;
}
/* narrowcolumn bezieht sich auf die Beiträge, wie sie auf der Hauptseite zu 
 * sehen sind (also alle untereinander und mit Menü rechts). Dies ist meistens 
 * schmaler als wenn man einen Beitrag einzelnt anzeigen lässt, daher die 
 * Bezeichnung ;)
 */
.narrowcolumn {
	float:left;
	margin: 0 0 0 10px;
	padding:0 0 0 25px;
	width:502px;
	background-color: #fbf9e6;
}
.narrowcolumn .postmetadata {
	border-top:6px dashed #8BACD7;
	text-align:left;
}
/* widecolumn bezieht sich auf die Beiträge, wenn sie einzelnt als Seite 
 * angezeigt werden (also ohne Menü rechts). Dies ist meistens breiter als der 
 * Bereich mit Menü, daher die Bezeichnung ;)
 */
.widecolumn {
	width:620px;
	margin:0 0 0 0px;
	padding:20px 100px 50px 100px;
	line-height:1.6em;
	background-color: #fbf9e6; 
}
.widecolumn .entry p {
	/* Schriftgröße des Artikels. */
	font-size:1.05em;
}
.widecolumn h2 {
	font-size: 1.7em;
}




/*** FUSSZEILE ***/
#footer {
	clear:both;
	background-color: #e1dec0;
	color:#888888;
	font-family:Verdana,Geneva,Arial,Helvetica,sans-serif;
	font-size:1em;
	margin:0 auto;
	padding:0;
	width:820px;
	
}
#footer p {
	margin:0;
	padding:8px 0;
	text-align:center;
}
#footer .cloud {
	/* Tag-Cloud in der Fußzeile */
	margin-top: 40px;
	padding-top: 36px;
	padding-right: 50px;
	padding-left: 50px;
}
#footer .license {
	/* Der Lizenztext in der Fußzeile */
	color: #354657;
	padding-top: 10px;
}
/* Die nachfolgeden Einträge sind nur von Belang, wenn die Fußzeile in mehrere 
 * Spalten aufgeteilt werden soll.
#footer .leftcolumn {
	float:left;
	margin:0;
	width:251px;
}
#footer .rightcolumn {
	float:left;
	margin:0;
	width:251px;
}
#footer .fullcolumn {
	background-color:#E3DFBF;
	clear:both;
}*/


.category {
	background: #F4F8F9;
}

.logo {
	padding-left:22px;
	padding-top:10px;
}


/*** SEITENLEISTE (Navigation) ***/
/* Teile der Seitenleiste werden deutlich weiter unten nochmal behandelt. Es 
 * muss also noch Ordnung in diese Datei gebracht werden ;) */
#sidebar {
	-x-system-font:none;
	background-color: transparent;
	/* Die folgende Farbe ist zum Testen, da das momentane Blau vielleicht ein 
	 * wenig zu hell ist. */
	/*background-color: #DFECFB;*/
	color:#888888;
	font-family:Verdana,Arial,Sans-Serif;
	font-size:1.2em;
	font-size-adjust:none;
	font-stretch:normal;
	font-style:normal;
	font-variant:normal;        
	font-weight:normal;
	line-height:normal;
	margin-left: 620px;
	margin-top: 0px;
	margin-right: 14px;
	padding: 50px 22px 6px 12px;
}
#sidebar h2 {
	-moz-border-radius-bottomleft:5px;
	-moz-border-radius-bottomright:5px;
	-moz-border-radius-topleft:5px;
	-moz-border-radius-topright:5px;
	background:#FAF9E8 none repeat scroll 0 0;
	border:1px solid #DDDDDD;
	/*color: #93425a; gedeckteres Rot  */
	color: #a41832; 
	display:block;
	font-family:Verdana,Sans-Serif;
	font-size:1.1em;
	font-weight:lighter;
	margin:0 0 6px;
	padding:3px 2px 3px 10px;
	text-transform:uppercase;
}
#sidebar form {
	height:1.8em;
	margin:0;
	margin-top: 35px; 
}
.schlagworte {
	text-align: center;
	
}
.werbung {
	margin-top: 40px;
	/*padding-left: 20px;*/
	text-align: center;
}


/*** LINKS ***/
a {
	color:#42769F; 
	/*color: #02808F; */
	text-decoration:none;
}
a:hover {
	/* color: #1A426A; */
	text-decoration: underline;
}


/*** ÜBERSCHRIFTEN ***/
h1 {
	font-size:2.4em;
	margin:0;
	text-align:left;
}
h2 {
	font-size:1.4em;
	margin:0;
}
h3 {
	font-size:1.2em;
	margin:0;
}
h1, h2, h3 {
	font-family:Georgia,"MS Serif","New York",serif;
	font-weight:normal;
}
h1, h1 a, h1 a:hover, h1 a:visited {
	color:#426293;
	margin:4px;
	text-decoration:none;
}
/* Fügt einen Stift in die Überschriften mit ein */
/* Dies ist zur Zeit in den entsprechenden php-Dateien ausgeschaltet.*/ 
/*h2.pen {
	background:transparent url(images/pen1.gif) no-repeat scroll 0 4px;
	margin-bottom:1px;
	margin-left:0;
	padding:6px 2px 2px 24px;
}*/
/* Der Seitentitel bei den Archivseiten */
h2.pagetitle {
	-moz-border-radius-bottomleft:5px;
	-moz-border-radius-bottomright:5px;
	-moz-border-radius-topleft:5px;
	-moz-border-radius-topright:5px;
	/*background:#FAF9E8;*/
	background: transparent;
	/*border:1px solid #DDDDDD;*/
	color: #42769f;
/* background: #FFF url(images/bigarchive.gif) no-repeat scroll 6px 3px;*/
	font-size:1.4em;
	text-align: center;
	height:1em;
	margin:20px 0;
	padding:9px 2px 12px 2px;
}
h2, h2 a, h2 a:visited, h3, h3 a, h3 a:visited {
	/* color:#93425A;*/
	color: #A41832;
}
h2, h2 a, h2 a:hover, h2 a:visited, h3, h3 a, h3 a:hover, h3 a:visited, cite {
	text-decoration:none;
}
h2 a:hover, h3 a:hover {
	color:#93425A;
	text-decoration:none;
}
.description {
	/*** Der Untertitel von Deinem Blog ***/
	/* Beachte: wenn .headertext mit display:none; ausgeschaltet ist, dann wird 
	 * dieser Untertitel nicht eingeblendet und der Text muss direkt im Titelbild 
	 * stehen. Für Suchmaschinen ist es trotzdem gut, wenn der Untertitel, den Du 
	 * bei Wordpress eingeben kannst mit dem im Titelbild übereinstimmt!!! */
	color:#888888;
	font-family:Arial,Helvetica,sans-serif;
	font-size:1em;
	margin-bottom:2px;
	margin-left:8px;
	text-align:left;
	text-transform:uppercase;
}
.navigation {
	display:block;
	font-size:0.9em;
	height:20px;
	margin:32px 0 20px;
	text-align:center;
}
.alt {
	background-color:transparent;
	padding:6px;
}
code {
	-x-system-font:none;
	font-family:'Courier New',Courier,Fixed;
	font-size:1.1em;
	font-size-adjust:none;
	font-stretch:normal;
	font-style:normal;
	font-variant:normal;
	font-weight:normal;
	line-height:normal;
}
acronym, abbr, span.caps {
	font-size:0.9em;
	letter-spacing:0.07em;
}
small {
	color:#888888;
	font-family:Arial,Helvetica,Sans-Serif;
	font-size:0.8em;
	line-height:1.5em;
}
/*** METADATEN zum Blogbeitrag ***/
.smalltime {
	/** Das Datum des Eintrags **/
	/* Zeigt eine kleine Uhr als Symbol an (jetzt  nicht mehr)*/
	/*background:transparent url(images/posttime.gif) no-repeat scroll 0 0;*/ 
	color:#888888;
	font-family:Arial,Helvetica,Sans-Serif;
	font-size:0.8em;
	margin:0 0 2px;
	padding:0 0 0 0px;
	text-align:left;
}
.smalluser {
	/* Die nächste Zeile blendet das kleine Userbild vor dem bearbeiten Feld ein. Das 
	 * Problem ist, dass der Internet Explorer das Bild immer anziegen will. Daher habe
	 * ich es auskommentiert.
	 * Man könnte das Ganze vielleicht noch etwas schöner mit einer Browserumleitung
	 * lösen, so dass der Hintergrund nur im IE verschwindet, aber das kann noch warten ;)
	 */
	/*background:transparent url(images/postuser.gif) no-repeat scroll 0 -2px;*/
	color:#888888;
	float:left;
	font-family:Arial,Helvetica,Sans-Serif;
	font-size:0.8em;
	margin-left:6px;
	padding:0 0 0 14px;
	text-align:left;
}
.smallcat {
background:transparent url(images/postcat.gif) no-repeat scroll 0 0;
color:#888888;
float:left;
font-family:Arial,Helvetica,Sans-Serif;
font-size:0.8em;
padding:0 0 0 14px;
text-align:left;
}
.smallcomments {
background:transparent url(images/postcomment.gif) no-repeat scroll 0 0;
color:#888888;
float:right;
font-family:Arial,Helvetica,Sans-Serif;
font-size:0.8em;
margin-left:6px;
padding:0 0 0 14px;
text-align:right;
}
.post .styled ul {
list-style-image:none;
list-style-position:outside;
list-style-type:none;
margin-left:0;
padding-bottom:1px;
padding-left:0;
text-indent:0;
}
.post .styled li {
-moz-border-radius-bottomleft:5px;
-moz-border-radius-bottomright:5px;
-moz-border-radius-topleft:5px;
-moz-border-radius-topright:5px;
background:#FFFFFF url(images/archive.gif) no-repeat scroll 6px 6px;
border:1px solid #CCCCCC;
margin-bottom:10px;
margin-left:0;
padding:5px 10px 5px 30px;
}
.post .styled li a {
}
.post .styled li:hover {
border:1px solid #42769F;
}
.clear {
clear:both;
margin:0;
padding:0;
}
.clearleft {
clear:left;
}
.clearright {
clear:right;
}
.line {
border-top:1px solid #CCCCCC;
margin-bottom:3px;
margin-top:15px;
}
.commentlist {
color:#333333;
font-family:Arial,Helvetica,Sans-Serif;
font-size:0.9em;
margin:0;
padding:0;
text-align:justify;
}
.commentlist li {
/*background-color:#FFFFFA;*/
background-color: transparent;
border-bottom:0px solid #A3A3A3;
border-right:0px solid #A3A3A3;
list-style-image:none;
list-style-position:outside;
list-style-type:none;
margin:5px 0 0;
margin-bottom: 30px;
padding:5px 10px 3px;
}
.commentlist p {
margin-left:0;
}
.commenttext {
padding-left:67px;
text-align:justify;
}
#commentform p {
margin:5px 0;
}
.nocomments {
margin:0;
padding:0;
text-align:center;
}
.commentmetadata {
display:block;
margin:0;
}
.lightblue {
-moz-border-radius-bottomleft:5px;
-moz-border-radius-bottomright:5px;
-moz-border-radius-topleft:5px;
-moz-border-radius-topright:5px;
background:#DFECFB none repeat scroll 0 0;
padding:3px;
}
.entry img {
background-color:#FFFFFF;
max-width:334px;
/*padding:4px 5px;*/
margin: 4px 5px;
}
.entrytext img {
background-color:#FFFFFF;
max-width:392px;
padding:4px 5px;
}
.img {
background-color:#FFFFFF;
border:1px solid #DDDDDD;
padding:4px 5px;
}
.imgleft {
background-color:#FFFFFF;
border:1px solid #DDDDDD;
float:left;
margin-bottom:6px;
padding:4px 5px;
}
.imgright {
background-color:#FFFFFF;
border:1px solid #DDDDDD;
float:right;
margin-bottom:6px;
padding:4px 5px;
}
p img {
max-width:100%;
}
img.centered {
background-color:#FFFFFF;
display:block;
margin-left:auto;
margin-right:auto;
padding:4px 5px;
}
img.alignright {
background-color:#FFFFFF;
display:inline;
margin:0 0 2px 7px;
padding: 4px 5px;
}
img.alignleft {
background-color:#FFFFFF;
display:inline;
margin-bottom: 2px;
padding: 4px 5px;
}
.gravatar {
background-color:#FFFFFF;
border:1px solid #DDDDDD;
float:left;
margin:2px 10px 6px 0;
padding:2px;
}
p.wp-caption-text {
font-size:0.9em;
line-height:1.2em;
margin:0 4px 4px;
}
.wp-caption {
background-color:#FFFFFF;
border:1px solid #DDDDDD;
}
.wp-caption.alignright {
margin:4px 4px 4px 10px;
}
.wp-caption.alignleft {
margin:4px 10px 4px 4px;
}
.alignright {
float:right;
}
.alignleft {
float:left;
}
.center {
text-align:center;
}
html > body .entry ul, html > body .entrytext ul {
margin:0;
padding:0;
}
html > body .entry ul li, html > body .entrytext ul li {
margin:0 0 0 30px;
padding:0;
}
html > body .entry ol, html > body .entrytext ol {
margin:0 0 0 18px;
padding:0;
}
html > body .entry ol li, html > body .entrytext ol li {
margin:0 0 0 20px;
padding:0;
}
.postmetadata ul, .postmetadata li {
display:inline;
list-style-image:none;
list-style-type:none;
}


/*** SEITENLEISTE (Navigation) ***/
/* Was genau dort alles angezeigt wird (Kategorien, Links etc.) wird in der 
 * Datei sidebar.php festgelegt. */
#sidebar ul ul li, #sidebar ul ol li, .nocomments, .postmetadata, blockquote, strike {
	color:#888888;
}
#sidebar ul, #sidebar ul ol {
	margin:0;
	padding:0;
}
#sidebar ul li {
	list-style-image:none;
	list-style-type:none;
	margin:0 0 10px;
	padding:0;
}
#sidebar ul p, #sidebar ul select {
	margin:0;
	padding:0;
}
#sidebar ul ul, #sidebar ul ol {
	margin:0;
	padding:0;
	
}
#sidebar ul ul ul, #sidebar ul ol, #sidebar ul li ul li {
	margin:0;
	margin-bottom: 4px;
	padding:0;
	padding-left:10px;
}
#sidebar li.none {
	background:transparent none repeat scroll 0 0;
	list-style-image:none;
	list-style-type:none;
	margin:0;
}
#sidebar li none a {
	background:transparent none repeat scroll 0 0;
	list-style-image:none;
	list-style-type:none;
	margin:0;
}
#sidebar ul ol li {
	list-style-image:none;
	list-style-position:outside;
	list-style-type:none;
	padding:0;
}
#sidebar ul ul li, #sidebar ul ol li {
	margin:0;
	padding:0;
}
#sidebar ul ul li a, #sidebar ul ol li a {
	background:transparent url(images/li1.jpg) no-repeat scroll 0 4px;
	margin:0;
	padding:0 0 0 7px;
	font-size: 1.2em; 
}
#sidebar ul ul li a:hover, #sidebar ul ol li a:hover {
	background:transparent url(images/li1.jpg) no-repeat scroll 0 4px;
	margin:0;
	padding:0 0 0 7px;
}
/* Die folgenden Einträge beziehen sich auf die Suche in der Seitenleiste, 
 * wobei einige dafür auch global gelten würden, wenn es dort noch ein weiteres 
 * Suchfeld geben würde. */
#searchform {
	margin:4px auto;
	/*margin-top: 25px;*/
	padding:5px 0px;
	text-align: center;
}
#sidebar #searchform #s {
	/* Füge das nette Lupen-Hintergrundbild in die Suche ein. */
	background: url(images/suche2.gif) no-repeat scroll 0 0;
	border:1px solid #CCCCCC;
	color:#888888;
	/*float:left;*/
	font-size:1em;
	padding:2px;
	padding-bottom: 1px; 
	padding-left: 26px;
	/* Ich glaube ich solle keine feste Brete angeben, da ich dies bei den	 
	 * h2-Überschriften auch nicht getan habe. */
	width:119px;
	height:19px;
}
.entry form {
	display:block;
	font-size:1em;
	padding:0;
}
/* wofpr ist dies? */
.entry input {
	background-color:#FFFFFA;
	border-bottom:1px solid #A3A3A3;
	border-right:1px solid #A3A3A3;
	color:#000000;
	float:left;
	font-size:1em;
	margin:5px 0 0;
	padding:4px;
}
select {
	background-color:#FFFFFA;
	border-bottom:1px solid #A3A3A3;
	border-right:1px solid #A3A3A3;
	width:130px;
}


/*** KOMMENTARE ***/
/* "Hintergrundbeleuchtung" für den Kommentarkasten. Dieser Effekt gleicht 
 * einem 3d-Effekt, da er wie dieser erzeugt wird: Nur unten und links Rand. */
.backlight {
	background-color: #F4F8F9;
	border-color:#A3A3A3 #A3A3A3 #A3A3A3 #A3A3A3;
	border-style:solid;
	border-width:1px;
}
.commentspacer {
	padding-left:6px;
	padding-top:5px;
}
#commentform textarea {
	background-color:#F4F8F9;
	border-color:#A3A3A3 #A3A3A3 #A3A3A3 #A3A3A3;
	border-style:solid;
	border-width:1px;
	padding:4px;
	width:390px;
}
#commentform #submit {
	-x-system-font:none;
	background-color:#DFECFB;
	border-color:#DFECFB #A3A3A3 #A3A3A3 #DFECFB;
	border-style:solid;
	border-width:1px;
	color:#1A426A;
	font-family:Verdana,Arial,Sans-Serif;
	font-size:0.8em;
	font-size-adjust:none;
	font-stretch:normal;
	font-style:normal;
	font-variant:normal;
	font-weight:normal;
	line-height:normal;
	padding:2px;
	text-transform:uppercase;
}
#commentform textarea:focus, #commentform input:focus, .entry form:focus, #sidebar #searchform #s:focus {
	border:1px solid #42769F;
}
#commentPreview {
	-x-system-font:none;
	background-color:#FFFFFF;
	border:1px solid #888888;
	font-family:Verdana,Arial,Sans-Serif;
	font-size:0.9em;
	font-size-adjust:none;
	font-stretch:normal;
	font-style:normal;
	font-variant:normal;
	font-weight:normal;
	line-height:normal;
	padding:6px;
	width:374px;
}


/*** AKRONYME ***/
acronym, abbr, span.caps {
	cursor:help;
}
acronym, abbr {
	border-bottom:1px dashed #888888;
}


/*** ZITATE ***/
blockquote {
	background:transparent url(images/blockquote_l.png) no-repeat scroll 0 0;
	margin:15px 20px 0;
	padding-left:40px;
}
blockquote cite {
	display:block;
	margin:5px 0 0;
}


/*** Allgemeine Sachen ***/
/* Die sollten vielleicht weiter oben gesammelt werden? */
.center {
	text-align:center;
}
hr {
	display:none;
}
a img {
	border:medium none;
}


/*** KALENDER ***/
/* Dieser ist in der Seitenleiste einblendbar. */
#wp-calendar {
	background-color:#FFFFFF;
	color:#8BACD7;
	empty-cells:hide;
	font-size:1em;
	margin:0;
	padding:0;
	width:140px;
}
#wp-calendar #next a {
	background-color:white;
	display:block;
	font-size:1em;
	margin:0;
	padding:0;
	text-align:right;
	text-decoration:none;
	text-transform:uppercase;
}
#wp-calendar #prev a {
	background-color:white;
	display:block;
	font-size:1em;
	margin:0;
	padding:0;
	text-align:left;
	text-decoration:none;
	text-transform:uppercase;
}
#wp-calendar a {
	background-color:#DFECFB;
	display:block;
}
#wp-calendar a:visited {
	display:block;
}
#wp-calendar td {
	background-color:#FFFFFF;
	margin:0;
	padding:0;
	text-align:center;
}
#wp-calendar #today {
	color:#93425A;
}
#wp-calendar caption {
	-moz-border-radius-bottomleft:5px;
	-moz-border-radius-bottomright:5px;
	-moz-border-radius-topleft:5px;
	-moz-border-radius-topright:5px;
	background:#FAF9E8 none repeat scroll 0 0;
	border:1px solid #DDDDDD;
	color:#93425A;
	font-family:Verdana,Sans-Serif;
	font-size:1em;
	font-weight:lighter;
	margin:0 0 6px;
	padding:3px 2px 3px 3px;
	text-align:left;
	text-transform:uppercase;
}


/*** Wofür ist spg (Bilder???) ) ***/
#spg {
	margin:0;
	text-align:left;
}
#spgprev, #spgnext {
	background:#FFFFFF none repeat scroll 0 0;
	border:1px solid #DDDDDD;
	display:block;
	margin:20px 0 10px;
	padding:5px;
	text-decoration:none;
}
#spgprev:hover, #spgnext:hover {
	background:#8BACD7 none repeat scroll 0 0;
	border-color:#DDDDDD;
	color:white;
}
#spg #spgprev {
	float:left;
}
#spg #spgnext {
	float:right;
}
#spg #image {
	text-align:center;
}
#spg .imgwrapper {
	float:left;
	height:110px;
	margin-right:19px;
	padding:2px;
}
#spg .imgwrapper span {
	-x-system-font:none;
	display:block;
	font-family:verdana,sans-serif;
	font-size:9px;
	font-size-adjust:none;
	font-stretch:normal;
	font-style:normal;
	font-variant:normal;
	font-weight:normal;
	line-height:normal;
	text-align:center;
}
#spg .imgwrapper img {
	background-color:#FFFFFF;
	border:1px solid #DDDDDD;
	padding:4px;
}
#spg .imgwrapper a:visited img {
	background-color:#FFFFFF;
}
#spg .imgwrapper a:hover img, #spg .imgwrapper a:focus img {
	background-color:#8BACD7;
}
#spg .imgwrapper a:hover, #spg .imgwrapper a:focus {
	color:#8BACD7;
}
#spg #single {
	background:#FFFFFF none repeat scroll 0 0;
	border:1px solid #DDDDDD;
	padding:3px;
}
#spg #desc {
	border:1px solid #DDDDDD;
	clear:both;
	margin:5px 40px;
	padding:5px;
	text-align:center;
}
#spg #credit {
	background:#1A426A none repeat scroll 0 0;
	border-top:4px solid #333333;
	clear:both;
	color:#FFFFFF;
	font-size:9px;
	margin:10px 0 0;
	padding:3px 0 3px 10px;
}
#spg #credit a {
	color:#FFFFFF;
}
#spg #breadcrumb {
	background-color:#FFFFFF;
	border:1px solid #FFFFFF;
	margin:6px 0 0;
	padding:2px;
}
#spg #breadcrumb {
	font-family:Arial,Helvetica,Sans-Serif;
	font-size:0.8em;
	line-height:1.5em;
}
#spg #breadcrumb:hover {
	border:1px solid #42769F;
}
#spg #gallery {
	float:left;
	margin:20px 0 5px 0;
}
#spg #directories ul {
	list-style-image:none;
	list-style-position:outside;
	list-style-type:none;
	margin-left:0;
	padding-bottom:1px;
	padding-left:0;
	text-indent:0;
}
#spg #directories li {
	background:#FFFFFF url(images/cam.gif) no-repeat scroll 6px 4px;
	border:1px solid #FFFFFF;
	margin-bottom:10px;
	margin-left:0;
	padding:5px 10px 5px 44px;
}
#spg #directories li:hover {
	border:1px solid #42769F;
}
#directories h2 {
	font-family:Georgia,"MS Serif","New York",serif;
	font-size:1.6em;
	font-weight:normal;
}
#spg #directories h3 {
	font-family:Georgia,"MS Serif","New York",serif;
	font-size:1.2em;
	font-weight:normal;
}


/*** wofür ist dies? ***/
div.nicetitle {
	-moz-border-radius-bottomleft:12px;
	-moz-border-radius-bottomright:12px;
	-moz-border-radius-topleft:12px;
	-moz-border-radius-topright:12px;
	background:#8BACD7 none repeat scroll 0 0;
	color:white;
	font-family:Verdana,Helvetica,Arial,sans-serif;
	font-size:11px;
	font-weight:bold;
	left:0;
	padding:4px;
	position:absolute;
	top:0;
	width:25em;
}
div.nicetitle p {
	margin:0;
	padding:0 3px;
	text-align:left;
}
div.nicetitle p.destination {
	font-size:9px;
	padding-top:3px;
	text-align:left;
}
