/* Version:  (29.03.2010)

Screen layout: 
=======================================
TEIL I - Alle Abstände auf Null setzen
=======================================*/
* {
	padding:0;
	margin:0;
}
/* 
=======================================
TEIL II - Neuformatierung der Abstände
=======================================*/
/* margin-bottom für Überschriften, Absätze, Listen etc. */
h1, h2, h3, h4, h5, h6, p, blockquote, address, pre, ul, ol, dl, table {
	margin: 1em 0;
}
/* Zitate einrücken */ 
blockquote {
	margin: 1em 2em;
}
/* Alle Listen etwas einrücken */
ul, ol, dl {
	margin-left: 1em;
}
/* Listenelemente etwas mehr einrücken */
li {
	margin-left: 1em;
}
/* Definitionen in Definitionslisten noch mehr einrücken */
dd {
	margin-left: 2em;
}
/* Verschachtelte Listen ohne Außenabstand oben/unten */
ul ul, ul ol, ul dl, ol ul, ol ol, ol dl, dl ul, dl ol, dl dl {
	margin-top: 0;
	margin-bottom: 0;
}
/* Aufzählungszeichen für Listenkisten */

/* Ebene 1 - ul: square (ausgefülltes Rechteck); ol: Dezimalzahlen  */
ul {
	list-style-type: square;
}
ol {
	list-style-type: decimal;
}
/* Ebene 2 - ul: disc (ausgefüllter Kreis); ol: kleine Buchstaben */
ul ul {
	list-style-type: disc;
}
ol ol {
	list-style-type: lower-alpha;
}
ul ol {
	list-style-type: decimal;
}
ol ul {
	list-style-type: square;
}
/* Ebene 3 - ul und ol mit circle (nicht ausgefüllter Kreis) */
ol ol ol, ol ol ul, ol ul ul, ol ul ol, ul ul ul, ul ul ol, ul ol ol, ul ol ul {
	list-style-type: circle;
}
/* Auswahl in Auswahllisten (select) durch padding:0 schlecht lesbar */
option {
	padding-left: 0.2em;
	padding-right: 0.3em;
}
/* Rahmen um fieldset und verlinkte Bilder entfernen */
fieldset, a img {
	border: none;
}
/* ==========================================
   TEIL III - Grundlegende Formatierung  
   ======================================= */

/* =============================================
   1. html und body */

/* Bildlaufleiste im Firefox immer zeigen */
html {
	height: 101%;
}
body {
	background-color: white;
	color: black;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
}
/* =============================================
   2. Schriftformatierung für Überschriften   */

/* Serifenschrift für Überschriften, inkl. h1 (alt-Text) */
h1, h2, h3, h4, h5, h6 {
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
}
/*  Überschriftengrößen auf Basis von small (13px) */
h1 {
	font-size: 184.62%;
}  /* ca. 24px */
h2 {
	font-size: 138%;
	font-weight:bolder;
}  /* ca. 18px */
h3 {
	font-size: 123%;
}  /* ca. 16px */
h4 {
	font-size: 100%;
}   /* ca. 14px */
h5 {
	font-size: 138%; /* gleiche Grösse wie h2*/
}  
h6 {
	font-size: 123%;/* gleiche Grösse wie h3*/
} 
body {
	margin:0 auto;
	padding:0;
	font-size: 13px;
	font-family: Verdana, Geneva, sans-serif;
	background-image:url(HG-grey.gif);
	color:#fff000;
	text-align:center;
}
#wrap {
	background:#000295;
	color:#fff000;
	margin:10px auto;
	width:940px;
	height: auto;
	border: 10px solid #000295;
	text-align:left;
}
#kopf {
	clear:both;
	margin:20px 0 0 0;
	padding:10px;
	height:68px;
}
#kopf h1 {
	font-family: Verdana, Geneva, sans-serif;
	font-size:350%;
	width:918px;
	text-align:center;
	margin:0 0 10px 0;
	float:left;
}
#frontphoto {
	margin:0 0 10px 0;
	border:0;
}
/*  ===========================
		Navigation
	===========================  */	
#navi {
	clear:left;
	float:left;
	width:135px;
	margin:0 0 10px 0;
	padding:0;
	font-size:0.9em;
}
#navi ul {
	list-style:none;
	width:120px;
	margin:0 0 20px 0;
	padding:0;
	font-size:1.1em;
}
#navi li {
	margin-bottom:4px;
}
#navi li a {
	font-weight:bold;
	height:20px;
	text-decoration:none;
	color:#f3c600;
	display:block;
	padding:6px 0 0 10px;
	background:#00c;
	border-left:4px solid #0000cc;
}
#navi li a:hover {
	background:#000295;
	font-weight: normal;
	color:#ffcc33;
	border:1px solid #ffcc33;
	border-right: 0;
}
#navi table td {
	background: #ECE9D8;
	font-size: 80%;
}
/* ==============================================
   CSS für die runden Ecken
   ============================================== */

/* Andere Hintergrundfarbe = andere Boxfarbe */
div.rundebox {
	width: 100%;
	background: #ece9d8 url(links_unten5.png) no-repeat left bottom;
	color:#000295;
}
div.rundebox div.mittlerebox {
	background: url(rechts_unten5.png) no-repeat right bottom;
	padding-bottom: 0.5em; /* Abstand unterhalb des Textes */
}
div.rundebox div.innerebox {
	background: url(links_oben5.png) no-repeat left top;
}
div.rundebox h2 {
	background: url(rechts_oben5.png) no-repeat right top;
	padding: 1em 1em 0 1em; /* unten kein padding */
	font-weight: bolder;
}

div.rundebox h6 {
	background: url(rechts_oben5.png) no-repeat right top;
	padding: 1em 1em 0 1em; /* unten kein padding */
}

div.rundebox p {
	padding: 0 1em;
}
/* Internet Explorer bis V6 OHNE runde Ecken */
* html div.rundebox, * html div.rundebox div.mittlerebox, * html div.rundebox div.innerebox, * html div.rundebox h3 {
 background: #ECE9D8;
}
/* ======================================
   ENDE runde Ecken
   =====================================*/
#innen {
	height: auto;
	background-color: #000295;
	margin:0 0 0 150px;
	border-left: 2px solid #000295;
	color: #000295;
	font-size:90%;
}

#text {
	float: left;
	margin:0 0 10px 0;
	/*padding:10px;*/
	border-right:1px solid #000295;
	width:555px;
	height: auto; 
	color:#000295;
	background-color: #000295;
	line-height:1.3em;
}

div.textbreit  {
	width:400px;
	height: auto;
	margin:10px auto;
}
	

#anzeige {
	float:right;
	width:200px;
	height:auto;
	margin:0px 10px 10px 0;
	
	color: #000295;
	background-color:#000295;
	font-size:0,9em;
	line-height:1.5em;
}
/*#extras p{
margin:0 0 1.5em 0;
}*/

table {
	background-color: #ece9d8;
}
td {
	color:#000295;
}
td.mitte {
	width: 400px;
	background: #d4d0c8;
}
td.links {
	width: 160px;
	background:#D4D0C8;
	color:#0000cc;
}
td.rechts {
	width:180px;
	background:#D4D0C8;
	color:#0000cc;
}

#gallerie td{
	height:120px;
	padding:10px;
	text-align:center;
	border:double #999;
	width:33%;
}

a {
	text-decoration:none;
	color:#286ea0;
}
a:hover {
	text-decoration:underline;
	color:#286ea0;
	font-weight : bold;
}
a img {
	border:0;
}
#fuss {
	
	clear:both;
	margin:30px auto 0 auto;
	padding:10px 0 10px 0;
	border-top:4px solid #808080;
	width:909px;
	text-align:center;
	color:#808080;
	font-size:0.9em;
}
#fuss a {
	color:#808080;
	text-decoration:none;
}
#fuss a:hover {
	text-decoration:underline;
}
.left {
	margin:10px 10px 5px 0;
	float:left;
}
.right {
	margin:10px 0 5px 10px;
	float:right;
}
.textright {
	text-align:right;
}
.center {
	text-align:center;
}
.small {
	font-size:0.8em;
}
.bold {
	font-weight:bold;
}
.hide {
	display:none;
}
