@charset "UTF-8";
/**
* alle margin und padding werte auf 0 setzen um render probleme zu minimieren
*/
* {
	margin: 0;
	padding: 0;
	outline: 0;
}

/**
* standard schriftart-, größe und scrollbalken erzwingen um "springen" der seite zu verhindern
*/ 
html, body {
	height: 100.1%;
}

body {
	background: url(../images/rep.jpg) repeat-x #000000;
	font-family: Arial;
	font-size: 11px; 
	color: #ffffff;
}

/**
* Format der Überschriften
*/
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 10px 0;
}

h1 {
	font-size: 11px;
	line-height: 18px;
	font-weight:bold;
	text-align:center;
	margin: 260px 0 0 0;
}

h2 {}

h3 {
	margin: 20px 0 8px 0;
	line-height: 20px;
}

h4 {}

h5 {}

h6 {}


/**
* Absatz Formatierung
*/
p				{
	font-family:Verdana; 
	font-size:12px; 
	line-height:18px; 
	margin: 0 0 8px 0;
}

/**
*	Definition der Listen Stile
*/
ul {	
	list-style-type: none;
}

li {
	padding: 0 3px 0 3px;
	color: #ccc;
}


/**
* Definition der Link Stile
*/ 
a {
	color:#275CA9;
	font-size:1.1em;
	outline: 0;
	text-decoration:none;
}

a:hover {
	text-decoration: underline;
}

table { 
	font-size:12px; 
	line-height:18px; 
}

tbody { margin: 20px 0 15px 0; }

tr { vertical-align: top; }

td, th { 
	text-align: left;
	vertical-align: top;
}

td { padding-bottom: 5px;}

th { 
	font-weight: bold;
	padding-top: 20px;
}

td.label, th.label {
	width: 25px;
}

img { 
	border: 0;
}


/*------------------------------------------------------------------------------------------
	
	Clearing Container zum auflösen von floatenden Bereichen
	
------------------------------------------------------------------------------------------*/

/*  CLEARING DES MAIN CONTENT */
.clearing {
	clear: both;
	overflow: hidden;
}

* html .clearing {
	height: 1%;
} /* IE HACK */

