@charset "iso-8859-1";

/* ===================================
Stylesheet BERLIN TIMEBANDITS
 
Datei: basics.css 
Datum: Sept. 2009
Autor: Peter J. Kahler

Aufbau: 1. Kalibrierung
		2. Basics
		3. Float-Eigenschaften
=================================== */


/* ==================================
   1. Kalibrierung
   =============================== */

* { padding: 0; margin: 0; } 
 
h2, p, ul, ol { margin-bottom: 1em; } 

ol ul { margin-bottom: 0; } 

li { margin-left: 0.5em; } 

h2.phark {
background-image: url(’H1_1.gif’);
background-repeat: no-repeat;
height: 25px;

text-indent: -3000px;
width: 90%;
}

/* ==================================
   2. Basics
   =============================== */


body  {
	font-family:Arial, Helvetica, sans-serif;
	line-height:17px;
	background-image:url(../BG_pix/Kachel.jpg);
	margin: 0; 
	padding: 0;
	text-align: center; 
	color: #000000;
	overflow:visible;
	
	}

h1 {
	font-size: 102%;
	}


#maintext h1 {
	color:#dc489f;
	}
#maintext h1 strong {
	color:#000;
	}

h2 {
	font-size: 102%;
	color:#dc489f;
	margin-bottom: 1px;
	/*height: 17px;*/
	
	
	}

h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight:normal;
	font-size: 102%;
	color:#dc489f;
	}

h4 {
	font-size: 110%;
	color:#dc489f;
	line-height: 4px;
	
	}

h5 {
	font-size: 100%;
	color: #000;
	
	
	
	}
	
	/* Startseite */
	strong.top { padding: 0 4px; background: url(img/typo/marker_00.png) no-repeat; }
  strong.top_1 { font-size: 130%; background: url(img/typo/marker_02.png) no-repeat; }	
  strong.top_2 { font-size: 120%; background: url(img/typo/marker_01.png) no-repeat; }	
  strong.top_3 { font-size: 110%; background: url(img/typo/marker_02.png) no-repeat; }
  strong.top_4 { background: url(img/typo/marker_01.png) no-repeat; }
  strong.top_5 {}
  
  /* new */
	
/* ==================================
   3. Float
   =============================== */	

.fltrt { /* Mit dieser Klasse können Sie ein Element auf der Seite nach rechts fließen lassen. Das floatende Element muss vor dem Element stehen, neben dem es auf der Seite erscheinen soll. */
	float: right;
	margin-left: 8px;
	display: inline;
}
.fltlft { /* Mit dieser Klasse können Sie ein Element auf der Seite nach links fließen lassen. */
	float: left;
	margin-right: 8px;
	display: inline;
}
.clearfloat { /* Diese Klasse sollte in einem div- oder break-Element platziert werden und das letzte Element vor dem Schließen eines Containers sein, der wiederum einen vollständigen Float enthalten sollte. */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

