 

@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/bg_top.jpg) repeat-x #f1f1f1;
	font-family: Verdana;
	font-size: 11px; 
	color: #2b2b2b;
}

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

h1 {
	font-size: 15px;
	line-height: 19px;
}

h2 {
	font-size: 14px;
	line-height: 19px;
}

h3 {
	font-size: 13px;
	line-height: 19px;
}

h4 {
	font-size: 12px;
	line-height: 19px;
}

h5 {
	font-size: 11px;
	line-height: 19px;
	margin: 0 0 5px 0;
}


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

/**
*	Definition der Listen Stile
*/
ul {	
	list-style-type: none;
}

li {
	padding: 0 3px 0 3px;
}


/**
* Definition der Link Stile
*/ 
a {
	color:#3e6291;
	font-size:11px;
	outline: 0;
	text-decoration:none;
}

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



img { 
	border: 0;
}



