/************************************************************************************/
/*                                                                                  */
/* Styles für HTML Elemente                                                         */
/*                                                                                  */
/************************************************************************************/

/************************************************************************************/
/* Globaler Reset */
*
{
	padding: 0;
	margin: 0;
}



/************************************************************************************/
/* HTML und BODY */
html, body
{
	width: 100%;
	height: 100%;
	font-size: 0.625em; /*Auf 10px zurücksetzen, so kann besser gerechnet werden (z.B. 1.2em entsprechen 12px)*/
}

html
{
	/* Damit der Firefox nicht immer die Scrolleiste ausblendet */
	overflow-y: scroll;	
}

body
{
	background-color: #fff;
	line-height: 1.5em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	color: #444;
	text-align:center;
}



/************************************************************************************/
/* Formular Einstellungen setzen */
input, select, textarea
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333;
}



/************************************************************************************/
/* Liste */

ul, li
{
	list-style-type: none;
}



/************************************************************************************/
/* Links */
a:link, a:active, a:visited
{
	color: #444;
}

a:hover
{
	color: #444;
}



/************************************************************************************/
/* Definitionsliste */
dl
{
	float: left;
	width: 100%;
	margin-bottom: 3em;
}

dt
{
	float: left;
	width: 150px;
	font-weight: bold;
	text-align: right;
	margin-right: 1em;
	margin-bottom: 1em;
}

dd
{
	float: left;
	width: 550px;
	margin-bottom: 1em;
}



/************************************************************************************/
/* Diverse */
p 
{
	margin: 0 0 1em 0;
}

img
{
	padding: 0px;
	margin: 0px;
	border: 0px none;
}