/*-------------------------------------------------------
	
	styles.css
	
	- Schriftgroessen, -farben, Formatierungen
	  sonstiger HTML-Elemente ausser
	- Formatierungen von DIVs, die fuer das 
	  Layout/Raster verwendet werden, befinden 
	  sich in der Datei layout.css

-------------------------------------------------------*/
/*-------------------------------------------------------
	
	mit der csshover.htc bekommen wir den IE dazu, :hover
	nicht nur auf a-Elemente anzuwenden
	
-------------------------------------------------------*/
body {
	behavior:url(/_js/csshover.htc);
}
/*-------------------------------------------------------
	
	Allgemeines und Grundsaetzliches
	
-------------------------------------------------------*/
html, body {
	width: 100%;
	height: 100%; 
	margin: 0px;
	padding: 0px;
}
body {
	background: #F8F9F8 url(../_img/bg/bg01.jpg) center top;
}
.clearFloat {
	clear: both;
	height: 0px;
	margin: 0px;
	padding: 0px;
	overflow: hidden;
}
table, tbody, tr {
	border-width: 0px;
	border-collapse: collapse;
	border-spacing: 0px;
	margin: 0px;
	padding: 0px;
}
td {
	border-width: 0px;
	border-collapse: collapse;
	border-spacing: 0px;
	margin: 0px;
	padding: 0px;
	vertical-align: top;
}
h1, h2, h3, h4, h5, h6, h7, h8, h9, p {
	margin: 0px;
	padding: 0px;
}
img {
	border: 0px;
}
ul, li {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
a:active { 
	text-decoration:expression(hideFocus='true'); 
}
:focus {
	-moz-outline-style: none; 
}
form { 
	margin: 0px;
}
/*-------------------------------------------------------
	
	Diverse Dinge
	
-------------------------------------------------------*/
a {
	color: #000;
	text-decoration: none;
}
a:hover {
}
a:visited {}
body, div, h1, h2, h3, h4, h5, h6, h7, h8, h9, p, td, li, input, textarea, select {
	font-family: Arial, Helvetica, sans-serif; 	
	font-size: 13px;
	line-height: 150%;
	color: #333333;
}
h1 {
	font-size: 22px;
}
h2 {
	font-size: 15px;
}
h3 {}
hr {}
/*-------------------------------------------------------

	IMG-BOXES
	
-------------------------------------------------------*/
div.imgBox1 {
	padding: 10px 10px 20px;
}
/*-------------------------------------------------------

	Listen
	
-------------------------------------------------------*/
div.post ul {
	margin: 0 10px 10px;
	padding: 0;
}
div.post ul li {
	background: url(../_img/nav/bullet1.png) left 8px no-repeat;
	margin: 0 0 5px 0;
	padding: 0 0 0 20px;
}
div.post ol {
	margin: 0 10px 10px;
	padding: 0 0 0 20px;
	list-style-type: decimal;
}
div.post ol li {
	margin: 0 0 5px 0;
	padding: 0;
	list-style-type: decimal;
}
/*-------------------------------------------------------

	FORMULARE
	
-------------------------------------------------------*/
div.commentForm form {
	margin: 0px 10px;
}
div.commentForm form div.border, div.postList div.post div.border {
	margin: 10px 0 10px;
	border-top: 1px dotted #000;
}
div.commentForm form label {
	padding: 0 0 0 5px;
}
div.commentForm form input, div.commentForm form textarea {
	border: 3px solid #C6C6C6;
	padding: 3px;
}
div.commentForm form input:focus, div.commentForm form textarea:focus {
	border-color: #000;
}
div.commentForm form input {
	width: 200px;
}
div.commentForm form textarea {
	width: 540px;
}
div.commentForm form input.submit {
	background-color: #CC0000;
	color: #FFF;
	border-color: #CC0000;
	font-weight: bold;
}
div.commentForm form input.submit:focus {
	background-color: #000;
	border-color: #000;
}