@charset "utf-8";
/************************************************************************************/
/*                                                                                  */
/* Generelle Styles für HTML Elemente                                               */
/*                                                                                  */
/************************************************************************************/

/************************************************************************************/
/* Globaler Reset */
*
{
	padding: 0;
	margin: 0;
}



/************************************************************************************/
/* HTML und BODY */
html
{
		overflow-y:scroll;
}


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)*/
}

body
{
	background-color: #fff;
	line-height: 18px;
	font-family: "Gill Sans", Arial, sans-serif;
	font-weight:lighter;
	font-size:14px;
	color: #333;
}



/************************************************************************************/
/* Formular Einstellungen setzen */
input, select, textarea
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	color: #000000;
}



/************************************************************************************/
/* Liste */
ul
{
	margin-bottom: 1.4em;
}

ul li
{
	text-indent: 0em;
	list-style-position: outside;
	list-style-type:disc;
	margin-left:25px;
	margin-bottom: 0.5em;
	padding-left: 5px;
	line-height: 1.5em;
}



/************************************************************************************/
/* Diverse */
p
{
	padding: 0.2em 0 1em 0;
}


img
{
	border: 0 none;
}

