* {
	margin: 0;
	padding: 0;
	border: none;
}

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 {
	height: 100%;
	line-height: 1;
}

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;
}

/* 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 */
sup,
sub {
	line-height: 0;
}

/* verhindert Luecken bei Bildern innerhalb Tabellen */
td img {
	vertical-align: bottom;
}

/* Bilder an umgebenden Block anpassen */
img {
	max-width: 100%;
	height: auto;
}

* 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 { 
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto; 
}

/* Tabelle */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

td {
  vertical-align: top;
}

/* Cursor */
a[href],
input[type='submit'],
input[type='reset'],
input[type='image'],
select,
button,
.pointer {
	cursor: pointer;
}

/* Trennlinie */
hr {
	display: block;
	height: 1px;
	width: 100%;
	border: 0;
	color: #ccc;
	background-color: #ccc;
	margin: 1em 0;
	padding: 0;
}

/* 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;
	height: 0;
}

.clear:after {
	content: ".";
	visibility: hidden;
	display: block;
	height: 0;
	clear: both;
}

/* PNG-Transparenz bei IE */
* html img,
* html .png {
	position:relative;
	behavior: expression(
		(this.runtimeStyle.behavior="none")&&(this.pngSet?this.pngSet=true:(this.nodeName == "IMG" && this.src.toLowerCase().indexOf('.png')>-1?(this.runtimeStyle.backgroundImage = "none",
		this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.src + "', sizingMethod='image')",
		this.src = "transparent.gif"):(this.origBg = this.origBg? this.origBg :this.currentStyle.backgroundImage.toString().replace('url("','').replace('")',''),
		this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + this.origBg + "', sizingMethod='crop')",
		this.runtimeStyle.backgroundImage = "none")),this.pngSet=true)
	);
}