﻿@charset "utf-8";

/* ==============================================================================
Stylesheet für die Website des Tierparks Dählhölzi Bern (www.tierpark-bern.ch)
Stand: Fertigstellung der Diplomarbeit
Datei: ../stylesheets/layout.css
Datum: 05.06.2009
Autor: Marc Rosset
Aufbau: 1. Kalibrierung und allgemeine Styles
		2. Styles für Layoutbereiche
		3. Sonstiges, v.a. Darstellung von Bildern, Aufzählungen und Tabellen
==================================================================================*/


/* 	==========================================================
	1. Kalibrierung und allgemeine Styles
	==========================================================*/

/* 	margin und padding 0, um unterschiedlichen Browser-Standardeinstellungen Rechnung zu tragen. */
* { padding: 0;
	margin: 0;
}

/* Hyperlinks allgemein */

/* Unterstreichung entfernen */
a {
	text-decoration: none;
	outline: none;
}
/* 	Ueberschriften, Schriften */

/* h1 wird bei header definiert */

/* h2 ist die Ueberschrift des maincontent */
h2 {
	font-family:Verdana, Geneva, sans-serif;
	font-size:  15px;
	color: #FFF;
	font-weight: normal;
	padding-top: 20px;
}
/* h3 ist die Ueberschrift eines Untermenues im sidebar */
h3 {
	font-family:Verdana, Geneva, sans-serif;
	font-size: 16px;
	color:#FFF;
	line-height: 36pt;
	font-weight: normal;
}
/* h4 ist eine Unter-Ueberschrift innerhalb des maincontent */
h4 {
	font-family:Verdana, Geneva, sans-serif;
	font-size: 13px;
	color:#FFF;
	line-height: 26px;
	font-weight: normal;
}

/* 	Formulare */
.button {
	background-color: #CCC;
	color: #000;
}
/*
Test für Bild eines Patentieres
textarea {
	overflow:auto;
	background-color:transparent;
	border:none;
}
*/

/* 	==========================================================
	2. Styles für Layoutbereiche
	==========================================================*/
body  {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	color:#333;
	line-height: 18px;
	font-weight: normal;
	background-color: #AAC6FF;
	background-image: url(../images/hintergrund/verlauf_hintergrund.jpg);
	background-repeat: repeat-y;
	background-position: center;
	text-align: center; /* Damit Container in IE 5*-Browsern zentriert. Text erhält im #container die Standardausrichtung left */
	color: #333;
}
#container {
	position: relative; /* damit sidebar aboslut positioniert werden kann */
	width: 980px;
	margin-top: 5px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	height: auto;
} 
/* Im Header stehen das Logo, 'Tierpark Dählhölzl Bern' und der Claim; später rechts ein Suchfeld und die Sprachauswahl */
#header {
	position: relative; /* Trick aus Little Boxes, S. 217. Bezugspunkt, damit #header h1 abolut positioniert werden kann */
	padding: 10px 10px 10px 10px;
	width: auto;
	height: 75px;
	margin-bottom: 5px;
} 
#header h1 {
	padding: 0 0 0 22px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 22px;
	position: absolute;
	left: 76px;
	top: 35px;
	color: #333;
	line-height: normal;
}
#header h1 span {
	font-size: 16px;
	color:#666
}
#mainmenu {
	position: absolute;
	top: 70px;
	left: 97px;
	height: 24px;
	width: 708px;
}
#mainmenu ul {
	border-top: 0px solid #999;
}
#mainmenu li {
	display: inline;
	list-style-type: none;
}
#mainmenu a {
	text-decoration: none;
	outline: none; /* entfernt die gepunktete Umrisslinie im Moment des Klicks bei focus & active */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 0 21px 0 0;
	color: #666;
}
#mainmenu a:link {
	color: #666;
}
#mainmenu a:visited {
	color: #666;
}
#mainmenu /* folgende Zeilen stellen sicher, dass im mainmenu die akutelle Seite nach dem Anklicken hervorgehoben wird. */
	a:hover, a:focus,
	#seite_besuch #navi01 a,
	#seite_tiere #navi02 a,
	#seite_patenschaften #navi03 a,
	#seite_aktuell #navi04 a,
	#seite_kinder #navi05 a,
	#seite_infos #navi06 a {
	color: #FFF;
}
#mainmenu a:active {
	text-decoration: none;
	color: #0F3;
}
#mainContent {
	position: relative;
	height: 400px;
	width: 770px;
	margin-bottom: 5px;
	padding:0px 0px 0px 10px;
} 
/* Im Sidebar liegen das Untermenu, das nach Auswählen eines Hauptmenupunktes angepasst wird, aber auch der footer */

#sidebar1 {
	position: absolute;
	top: 95px;
	right: 0px;
	width: 150px;
	padding: 10px 15px 10px 15px;
}
#untermenu {
	font-family:Verdana, Geneva, sans-serif;
	font-size: 12px;
	text-align: left;
	line-height: 25px;
}
#untermenu ul {
	width: 12em;
	border-top: 1px solid #999;
}
#untermenu li {
	list-style-type: none;
	border-bottom: 1px solid #999;
	margin: 0;
}
#untermenu a {
	text-decoration: none;
	outline: none; /* wichtig für Firefox, damit die Umrandung bei hover und focus unterbleibt */
	color:#FFF;
}
#untermenu a:hover {
	color:#000;
}
#footer {
	position: absolute;
	top: 375px;
	height: 95px;
	width: 130px;
	margin: 55px 0px 10px 15px;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 9px;
	font-style: normal;
	line-height: normal;
} 
#footer ul {
	width: 15em;
	text-align:right;
	border-bottom-color: #F00;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	padding-bottom: 10px;
}
#footer li {
	list-style-type: none;
	margin: 0;
}
#footer a {
	text-decoration: none;
	color: #FFF;
}
#footer a:hover {
	text-decoration: none;
	color: #000;
}
#newscontainer { /* container, der die 5 News- bzw. Infoboxes enthält */
	float: left;
	width: 780px;
	height: 160px;
	padding: 5px 0 0 0;
}
.newsbox li { /* Box, bestehend aus einer *.jpg - Graphik */
	float: left;
	display: inline;
	height: 160px;
	width: 145px;
	padding: 0 0 0 11px;
	color: #999;
}
.clearfloat {
	clear: both;
}
/* 	======================================================================
	3. Sonstiges, v.a. Darstellung von Bildern, Aufzählungen und Tabellen
	======================================================================*/
	
/* Uebersichtsplan im Menu BESUCH > Uebersichtsplan */	
#uebersichtsplan {
	position: absolute;
	right: 0px;
}	
/* Im obgenannten Uebersichtsplan sind Rollovers untergebracht, diese werden als #bild_auswahl_plan bezeichnet */
#bild_auswahl_plan {
	position: absolute;
	top: 70px;
	left: 10px;
}
#bild_auswahl_plan_ausdruck {
	position: absolute;
	top: 350px;
	width: 250 px;
	height: auto;
	left: 10px;
	font-size: 9px;
}
.einzelbild {
	float: right;
	text-align: right;
	padding: 0 0 10px 30px;
  	margin: 0 0 10px 10px;
}
dl.einzelbild dd {
	font-size: 90%;
	margin: 0;
}
/* Einzelbild quer in diversen Inhalten des Mainframes */
.einzelbild_quer {
	float: right;
	width: 360px;
	margin: 0 0 5px 30px;
}
/* Einzelbild hoch für Inhalte des Mainframes, vorläufig nur Bild der aktuellen UHU-Ausgabe */
.einzelbild_hoch {
	float: right;
	width: 250px;
	padding: 0 0 0 30px;
}
.kleinbilder_galerie li {
	float: left;
	list-style-type: none;
	text-align: left;
	font-weight: normal;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-style: normal;
}	
.kleinbilder_galerie img {
	width: 147px;
	height: 113px;
	display: block;
	padding: 3px 5px 0 0;
}	
.mittelbilder_galerie li {
	float: left;
	list-style-type: none;
	text-align: left;
	font-weight: normal;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-style: normal;
	padding: 2px 0px 5px 0px;
}	
.kleinbilder_galerie_hoch li {
	float: left;
	list-style-type: none;
	text-align: left;
	font-weight: normal;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-style: normal;
}	
.kleinbilder_galerie_hoch img {
	width: 147px;
	height: 220px;
	display: block;
	padding: 3px 5px 0 0;
}	
.mittelbilder_galerie_hoch li {
	float: left;
	list-style-type: none;
	text-align: left;
	font-weight: normal;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-style: normal;
	padding: 2px 0px 5px 0px;
}	
.mittelbilder_galerie img {
	width: 240px;
	height: 185px;
	display: block;
	padding: 0px 16px 0px 0px;
}	
div.aufzaehlung_mit_kleinbildern_links img {
	float: left;
	width: 150px;
	height: 100px;
	padding: 5px 20px 10px 0;
}	
.aufzaehlung_mit_kleinbildern_umbruch { /* damit die Box mit den Kleinbildern auf die Grösse des Bildes aufgedrückt wird */
	width: 100%;
	height: 1px;
	clear: both;
}
.aufzaehlungsliste li {
	list-style-type: disc;
	list-style-position:inside;
	line-height: 20px;
	margin-left: 10px;
	padding-left: 10px;
}
.aufzaehlungsliste_eng {
	list-style-position: inside;
	list-style-type: disc;
	line-height: 20px;
	padding-left: 20px;
}
.tabelle_sitemap td {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-style: normal;
	border-bottom-style: solid;
	border-bottom-color: #999;
	line-height: 150%;
	padding: 0px;
	border-bottom-width: 1px;
}
.tabelle_sitemap a {
	text-decoration: none;
	color: #333;
}
.tabelle_mit_zellen_bottomline td {
	font-size: 12px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999;
	padding-bottom: 3px;
	padding-top: 3px;
}
.tabelle_mit_zellen_bottomline textarea {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
}
.tabelle_faq {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 10px;
	font-style: normal;
}
.tabelle_faq td {
	line-height: normal;
	padding-bottom: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999;
	padding-top: 5px;
	padding-right: 10px;
}
.tabelle_veranstaltungen {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 80%;
	font-style: normal;
}
.tabelle_veranstaltungen td {
	line-height: normal;
	padding-bottom: 1px;
	border-bottom-width: 1px;
	padding-top: 1px;
	padding-right: 1px;
	padding-bottom: 5px;
	vertical-align: top;
}
/* 	==========================================================
	ENDE DES STYLESHEETS
	==========================================================*/
