/* CSS Document fuer Treppensanierung Olaf Werner
===================================================================================================
Anpassung der wichtigsten Abstände: Restaurierung
==========================================*/
*{                                             /*Setzt alle Abstände in der Seite erst mal auf 0*/
	padding: 0; margin: 0;
}
h1, h2, h3, h4, h5, h6, p, 
ul, ol, dl, table, adress, pre, blockquote{    /*Abstand nach unten definieren*/
	margin-bottom: 1em;
}
blockquote {margin: 1em 2em;					/* Zitate einrücken*/
}
												
ul, ol, dl{                                     /*Alle Listen etwas einrücken*/
	margin-left: 1em;
}
li{                                             /*Listenelemente etwas mehr einrücken*/
	margin-left: 1em;
}
dd {margin-left: 2em;							/*Definitionen in Definitionslisten noch mehr einrücken*/
}
ul ul, ul ol, ul dl,							/*Verschachtelte Listen ohne Außenabstand oben/unten*/
ol ul, ol ol, ol dl,
dl ul, dl ol, dl dl {
   margin-top: 0;
   margin-bottom: 0;
}
/*Aufzählungszeichen für Listenkisten*/

ul { list-style-type: square; 					/* Ebene 1 - ul: square (ausgefülltes Rechteck); ol: Dezimalzahlen  */
}	
ol { list-style-type: decimal; 
}
ul ul { list-style-type: disc; 					/* Ebene 2 - ul: disc (ausgefüllter Kreis); ol: kleine Buchstaben */
}
ol ol { list-style-type: lower-alpha; 
}
ul ol { list-style-type: decimal; 
}
ol ul { list-style-type: square; 
}
ol ol ol, ol ol ul, ol ul ul, ol ul ol,			/* Ebene 3 - ul und ol mit circle (nicht ausgefüllter Kreis) */
ul ul ul, ul ul ol, ul ol ol, ul ol ul {
   list-style-type: circle;
} 

fieldset, a img { border:none;					/*Rahmen um verlinkte Bilder entfernen*/
}
/*======================================================================================================
   Allgemeine Selektoren:
 ==========================================*/

html{
	height: 101%;                          	/*Erzwingt Scrollbar im Firefox, die sonst ein springendes Design verursachen*/
}
body{
	color:white;
	background-color:#3333cc;
	font-family:Verdana, Arial, Helvetica, sans-serif;	
	font-size:small;                       	/*schriftgroeße im Body*/
	background-image: url(images/oben2.jpg);
	background-repeat:repeat-x;
}

h1{
	font-size: 150%;
}
h2{
	font-size: 130%;
}
h1, h2 {
	font-family:Verdana, Arial, Helvetica, sans-serif;
}
address{
	text-align: center;                   	/*Ausrichtung - hier zentriert*/
	font-size: 80%;                       	/*schrift etwas kleiner*/
	font-style: normal;                   	/*normale Schrift, nicht kursiv*/
	letter-spacing: 1px;                  	/*Abstand zwischen den Buchstaben*/
	line-height: 1.5em;                   	/*Zeilenabstand*/
	font-weight:bold;
	
}
ul li{                                     	/*Erreicht, dass die Aufzählungszeichen einer ungeordneten Liste quadratisch sind*/
	list-style-type: square;
}
/*============================================================================================
  Hyperlinks allgemein:
===============================================*/
a{	                                      	/*Unterstreichung entfernen*/
	text-decoration: none;
	outline: none;
}
a:link{				                      	/*Links bearbeiten*/
	color: #d90000;
}
a:visited{
	color: #cc6666;
}
a:hover, 
a:focus{
	border-bottom-style:solid;
	border-bottom-width: 1px;
	border-bottom-color: #d90000;
}
a:active{                                  /*bei klick werden Hg- und Schriftfarbe gewechselt*/
	color: white;
	background-color: #d90000;
}
a[href^="http:"]{
background: url(linkinsweb.gif) no-repeat left center;
padding-left: 16px;
}
a[href^="http:"]:visited {
background-image: url(linkinsweb_visited.gif);
}
/*======================================================================================================
   Allgemeine Klassen und ID:
 ======================================================*/

.hinweisbox {                             	/*Class für die Dekoration*/
	color: black;
	background-color:#3366FF;
	border-color: #ecf7dd;
	border-width: 3px;
	border-top-style: solid;
}

.bildlinks{
	float:left;
	padding: 3px;
	border: 2px solid #ccc;
	margin-right: 10px;
	margin-bottom: 10px;
}
.bildrechts{
	float:right;
	padding: 3px;
	border: 2px solid #ccc;
	margin-left: 10px;
	margin-bottom: 10px;
}
.nachrechts {
	width:300px;
	float:right;
	background-color:#ccccff;
	padding:10px;
	margin-bottom:10px;
}

.nachlinks {
	width:300px;
	float:left;
	background-color:#ccccff;
	padding: 10px;
	margin-bottom:10px;
	 }
.clearing{
	clear:both;
}

#logo { 
   color: black;
   padding: 25px;
   
}
#seite02   li#navi02 ul,
#seite03   li#navi03 ul,
#seite04   li#navi04 ul {
   width: 30em; 
}

/*=================================================================================================
  Styles für Layoutbereiche:
====================================================================*/
#aussen {
	
	width:745px;
	margin-top: 0;
	margin-right: auto;                 	/*Abstand rechts automatisch*/
	margin-bottom: 5px;
	margin-left: auto;
	background-image:url(images/aussen.jpg);
	background-repeat:repeat-y;
	border-bottom: 3px solid #ffffff;
	}



#wrapper{
	color: black;
	/*background-color: #3333cc;*/
	width: 720px;                       	/*Breite des Inhaltsbereichs*/
	margin-top: 0;
	margin-right: auto;                 	/*Abstand rechts automatisch*/
	margin-bottom: 0;
	margin-left: auto;
	
		                  	
}
#kopfbereich{
	position: relative;						/*positioniert, aber bleibt im fluss*/
	color: black;
	padding-top: 0px;                   	/*Innenabstand definieren*/
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
	background-position:top	left;
	background-image: url(images/oben2.jpg);
	background-repeat:repeat-x;           	/*Anordnung der Hintergrundgrafik nur horizontal*/
	height:155px;
}
	#kopfbereich p{
		position:absolute;
		color:#FF6600;
		top: 30px;
		right: 10px;
		font-weight: bold;
		padding: 5px 0 5px 0;
		margin-bottom: 0; 					/*war standartmäßig auf 1 em eingestellt */
	}
	#kopfbereich p span{
		color:#330066;
	}

/*==========================================================
  Die Navigation gestalten
  ===================================================*/

#navibereich{
	overflow:hidden;
	color: white;
	padding: 16px 10px 0px 10px;         /*Innenabstand definieren*/
	background: url(images/mosaik.jpg) repeat-x;
	
		
}
	#navibereich ul{
		float: right;						/*richtet die Navigation insgesamt nach rechts aus*/
		width:auto;							/*schrumpft die Liste auf min breite entspr. des Inhalts*/
		margin-bottom: 0;					/*unterer Abstand des Navibereiches */
	}
	#navibereich li{
		float: left;						/*Liste nebeneinander anzeigen*/
		width:auto;
		list-style-type: none;				/*ohne Aufzählungspunkte*/
		margin: 0;							
		margin-right: 0.4em;				/*rechter Aussenabstand der Listenelemente*/
	}
	
	#navibereich a,
	#navibereich strong{
		display: block;
		color: black;						/*Eigenschaften der Hyperlinks in der Navi*/
		background-color: #fff9df;
		padding: 4px 8px 4px 8px;
		
	}

	#navibereich a:hover,
	#navibereich a:focus,					/*Die Eigenschaften der Links im navibereich bei mouseover */
	#startseite li#navi01 strong,
	#seite02 li#navi02 strong,
	#seite03 li#navi03 strong,
	#seite04 li#navi04 strong,
	#seite05 li#navi05 strong
	{
		color: black;						/*die spezifität ist höher als bei z. B. a:focus*/
		background-color: #ff6600;			/*Farbe der Navigation 1. ebene*/
		font-weight:normal;
		border-bottom: 1px solid #ff6600;	/*Rahmenlinie unten am Navielement anpassen, damit es offen aussieht*/
		
	}
	#navibereich a:active{
		color: black;
		background-color: white;
		}
*html #navibereich {						/*Layout für IE nötig*/
height: 1%;
}
div#navibereich a:hover,
div#navibereich a:focus {
   background-color: #fff9df; 			/*hellgelb*/
   color: #d90000;						/*rot*/
        
}



/*========================================
 Textbereich bearbeiten
 ==========================================*/
		
#textbereich{
	padding-top: 10px;                     	/*Innenabstand definieren*/
	padding-right: 10px;
	padding-bottom: 20px;
	padding-left: 20px;
	margin-top: 0;
   	border: 3px solid #ff6600;
	color:#3333CC;
	background-image:url(images/durchsichtig1.png);
}

	#textbereich a{                        	/*Erzielt im Textbereich eine gepunktete Linie unter den Links*/
		border-bottom: 1px dotted #cc0000;
	}
	#textbereich a:hover                     /*Erzielt im textbereich beim Mauskontakt eine durchgezogene Linie*/ 
	#textbereich a:focus {
		border-top-style: solid;
		border-color: #d90000;
		border-bottom-width: 1px;
	}
	
	#textbereich h3{
		color:#FF6600;
		margin-top:20px;
		}
/*===================================================
	Fußbereich bearbeiten
====================================================*/

#fussbereich{
	padding-top: 10px;                     /*Innenabstand definieren*/
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	background-image:url(images/mosaik.jpg);
	background-position:bottom;
	background-repeat:repeat-x;
	height:120px;
	background-color:#3333cc;
	color:#FF6600;
	
	
}

/*=================================================================================================
  Sonstige Styles:
====================================================================*/

#popup h1{
	padding-left: 30px;
	}

#close a {
background-color: #353D31;
color: #ffffff;
font-family: Arial, Helvetica, sans-serif;
width: 10em;
font-weight: bold;
position: absolute;
top: -20px;
right: 0px;
text-decoration: none;
border: 1px solid #ffffff;
text-align: center;
font-size: 1em;
z-index:2;
}
#popup {
background:white;
width: 400px;
position: absolute;
bottom: 35px;
right: 35px;
text-align: left;
border: 2px solid #330066;
z-index:1;
}




