/* Hintergrund für Überschrift */
th {
	background-color: #dddddd;
}

/* Placeholder */
input::placeholder,
textarea::placeholder {
    font-size: 0.6rem;
	font-style: italic;
}

/* silbentrennung */
p {
  -webkit-hyphens: auto; /* Safari */
  -ms-hyphens: auto;     /* IE/Edge */
  hyphens: auto;         /* Standard */
}

/* Links */
a:link {
	color: navy;
	text-decoration: none;
}
a:visited {
	color: navy;
	text-decoration: none;
}
a:hover {
	color: navy;
	text-decoration: underline;
}
a:active {
	color: navy;
	text-decoration: none;
}