* {
	margin: 0;
	padding: 0;
	border: none;
}

html {
  -moz-box-sizing: border-box;
	box-sizing: border-box;
  font-family: sans-serif;
  line-height: 1.4;
  font-size: 1em;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset fuer aeltere Browser */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}

/* Padding nicht mehr zur Breite hinzurechnen */
div, input, textarea {
	box-sizing: border-box;
}

/* Erzwingen vertikaler Scrollbalken in Netscape, Firefox und Safari Browsern */
html {
	height: 100%;
	margin-bottom: 1px;
}

body {
	line-height: 1;
}

*, *:before, *:after {
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

b, strong {
	font-weight: bold;
}

i, em {
	font-style: italic;
}

/* Text/Inhalt des divs in vertikaler Mitte */
.abs-middle {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* Rahmen fuer fieldset und img Elemente loeschen */
fieldset, img {
	border: 0 solid;
}

/* Input-Text */
input, button,  select {
	vertical-align: middle;
}

/* Korrektur: Das Zuruecksetzen der Abstaende verursacht zu kleine Selectboxen */
option {
	padding-left: 0.4em;
}

/* Vermeidung der Zeilenhoehe-Aenderung bei Hoch-, Tiefstellung */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* verhindert Luecken bei Bildern innerhalb Tabellen */
audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}

td img, div img {
	vertical-align: bottom;
}

/* Bilder, Video an umgebenden Block anpassen */
img, video {
	max-width: 100%;
	height: auto;
	object-fit: scale-down;
}

* html body img {
	width: 100%;
}

/* nur Ausschnitt von Bildern zeigen */
.extract {
	clip: rect(0px, 130px, 130px, 0px);
}

/* Pixelinterpolation fuer IE */
img {
	-ms-interpolation-mode: bicubic;
}

/* Rahmen bei aktiven Links entfernen */
*:focus, a:active {
	outline: none;
}

/* Wort-Umbruch */
.break-word {
	word-wrap: break-word;
}

.nowrap {
  white-space: nowrap;
}

/* Text in Container kuerzen mit Auslassungszeichen ... */
.ellipse {
	white-space: nowrap;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	-mz-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

/* Silbentrennung */
.hyphen { 
  -webkit-hyphens: auto;
		-webkit-hyphenate-limit-chars: auto 3;
		-webkit-hyphenate-limit-lines: 4;
		-ms-hyphens: auto;
		-ms-hyphenate-limit-chars: auto 3;
		-ms-hyphenate-limit-lines: 4;
  hyphens: auto;
		hyphenate-limit-chars: auto 3;
		hyphenate-limit-lines: 4;
}

/* Tabelle */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

td {
  vertical-align: top;
}

/* Cursor */
a[href],
input[type='submit'],
input[type='button'],
input[type='reset'],
input[type='image'],
select,
button,
.pointer {
	cursor: pointer;
}

button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Cursor style der increment/decrement Buttons bei Chrome Number-Inputs */
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  height: auto;
}

/* Suchfelder Safari und Chrome */
input[type='search'] {
  -webkit-appearance: textfield;
}

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* Trennlinie */
hr {
	display: block;
	height: 1px;
	width: 100%;
	border: 0;
	color: #ccc;
	background-color: #ccc;
	margin: 1em 0;
	padding: 0;
	 -moz-box-sizing: content-box;
	box-sizing: content-box;
}

/* Overflow-Methode zum Clearen der Float-Umgebungen innerhalb einer Box */
.floatbox {
	overflow: hidden;
}

/* inline-block Hacks */
.inline-block {
	display: -moz-inline-stack;	  /* FF2 */
	display: inline-block;
	vertical-align: top;
	zoom: 1;   /* IE */
	*display: inline;   /* IE */
}

/* Float-Umgebungen clearen */
.clear {
	clear: both;
}

.clear:after {
	content: ".";
	visibility: hidden;
	display: block;
	height: 0;
	clear: both;
}
