/**
 * Haupt-Styles für das Projekt
 *
 * @package CSS
 *
 * @copyright Copyright &copy; 2010 handgestrickt netzwerk
 * @author Stefan Jelner <stefan.jelner@gmx.de>
 * @version $Id: basic.css 41 2010-03-04 16:47:23Z jelner $
 */

/* 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: #fff;
	color: #789498;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	height: 101%;
}
h1, h2, h3, h4, h5, h6 {
	color: #789498;
	font-family: Verdana, Arial, Helvetica, sans-serif;
}
h1 {
	font-size: 14px;
	font-weight: bold;
}
p {
	background: transparent;
	color: #789498;
	font-size: 11px;
	line-height: 18px;
}

ul {
	background: transparent;
	color: #789498;
	list-style: none;
	font-size: 12px;
	line-height: 18px;
}

img {
	border: 0;
}

a {
	background: inherit;
	color: #789498;
	text-decoration: none;
}
a:hover, a:focus, a:active {
	text-decoration: none;
}


/* Invisible */
.invisible, dfn, .accesskey {
	position: absolute;
	top: -9999px;
	left: -9999px;
	display: none;
}
/* clearen */
.clear {
	clear: both;
	height: 0;
	font-size: 0;
}