 

@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%;
}
html {
	background: url(../images/bg.jpg) repeat-y top center #000;
}
body {
	background: url(../images/bg_top.jpg) no-repeat top center;
	font-family: Verdana;
	font-size: 12px; 
	color: #000000;
}

/**
* Format der Überschriften
*/
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 20px 0;
	font-weight:bold;
}

h1 {
	font-size: 12px;
	line-height: 20px;
}

h2 {}

h3 {
	margin: 20px 0 8px 0;
	line-height: 20px;
}

h4 {}

h5 {}

h6 {}


/**
* Absatz Formatierung
*/
p				{
	font-family:Verdana; 
	font-size:12px; 
	line-height:20px; 
	margin: 0 0 20px 0;
}

/**
*	Definition der Listen Stile
*/
ul {	
}

li {
	font-family:Verdana; 
	font-size:12px; 
	line-height:20px; 
	margin: 0 0 0 20px;
}


/**
* Definition der Link Stile
*/ 
a {
	color:#3c3524;
	outline: 0;
	text-decoration:none;
}

a:hover {
	text-decoration: none;
	color:#000;
}

table { 
	width: 100%; 
	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 */


