
/* B A S I C S */
* {margin: 0; padding: 0;}
/* Vertikalen Scrollbalken im Netscape & Firefox erzwingen. Dies verhindert, dass zentrierte Layouts
** um 10 Pixel springen wenn der Seiteninhalt kleiner wird als die H�he des Browserfensters. */
html { height: 100% }
body {
	background-color: #c8c9ca;
/* color: #8c8d8f; */
	color: #3f3f3f;
	font-family: Arial, Helvetica, sans-serif;
	min-height: 101%;
}
h1, h2, h3, h4, h5, h6 {
/*	color: #8c8d8f; */
	color: #3f3f3f;
	font-family: Arial, Helvetica, sans-serif;
}

p, label{
	background: transparent;
/* color: #8c8d8f; */
	color: #3f3f3f;
	font-size: 12px;
	line-height: 16px;
}

ul, ol {
	background: transparent;
/*	color: #8c8d8f; */
	color: #3f3f3f;
	list-style: none;
	font-size: 12px;
	line-height: 16px;
}
ol {
	list-style: decimal;
}
img {
	border: 0;
}

a {
	background: inherit;
	color: #3f3f3f;
	text-decoration: none;
}
a:hover, a:focus, a:active {
	text-decoration: none;
}

/* Invisible */
.invisible, dfn, .accesskey {
	position: absolute;
	top: -9999px;
	left: -9999px;
}
/* clearen */
.clear {
	clear: both;
	height: 0px;
	line-height: 0px;
	font-size: 0px;
	overflow: hidden;
}

