/* tdstyles.css */

<style>
/* 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, 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;
}
td {
    vertical-align: middle;
    font:18px arial;

	color:#ffffff;	
	background-color: black;
	border: none; /* Entfernt den äußeren Rahmen der Tabelle */

}

.td_vtop {
    vertical-align: top;
    font: 18px arial;
    color: #ffffff;
}

	
a {
	color: #CC3300;
	text-decoration:underline;
	}
	a:link {
		color: green; /* Farbe für nicht besuchte Links */
		text-decoration: none; /* Keine Unterstreichung für nicht besuchte Links */
	}


/* CSS für einen besuchten Link */
a:visited {
    color: #d4a5ff; /* Farbe für besuchte Links */
    text-decoration: underline; /* Unterstrichene besuchte Links */
}

/* CSS für einen Link im Hover-Zustand */
a:hover {
    color: red; /* Farbe für Links beim Überfahren mit der Maus */
    text-decoration: none; /* Keine Unterstreichung beim Hover */
}

/* CSS für einen aktiven Link */
a:active {
    color: orange; /* Farbe für aktive Links (beim Anklicken) */
    text-decoration: underline; /* Unterstrichene aktive Links */
}


/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
  }
	
  table {
	background-color: black; /* Hintergrundfarbe für die gesamte Tabelle */
	border: none; /* Entfernt den äußeren Rahmen der Tabelle */
}

	
tbody {
	background-color: black; /* Hintergrundfarbe für die gesamte Tabelle */
}

</style>