/* Allgemeine CSS-Definitionen


1 CSS-Reset
2 Allgemeine Einstellungen
3 Clearing-Element

*/

/* 1 CSS-Reset --- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: none;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: top;
}

form {
	background-color: transparent;
}

optgroup {
	font-style: normal;
	font-weight: normal;
}

optgroup option {
	padding-left: 1px;
}

/* 2 Allgemeine Einstellungen --- */

body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #716652;
	background-color:#FFF;
}

a {
	color: #716652;
}


a:hover {
	color: #d13e01;
}

ul,
ol {
	list-style: none;
}

strong {
	font-weight: bold;
}


h1 {
	font-weight:bold;
	font-size: 14px;
	margin:25px 0 15px;
	line-height:20px;
}

h2 {
	font-weight:bold;
	font-size: 13px;
	margin-top:20px;
	line-height:22px;
}

h3, h3 a {
	font-weight:bold;
	font-size: 13px;
	line-height:17px;
	color: #e78248;
}
p {
	margin: 10px 0;
}

/* Clearing-Element  --- */

div.clear {
	border: none;
	clear: both;
	display: block;
	float: none;
	height: 0;
	margin: 0;
	min-height: 0;
	overflow: hidden;
	padding: 0;
}

