
/* ------------------------------------------------------ */
/* --------------- NAV - Anweisungen ------------------- */
/* ------------------------------------------------------ */
	* { padding: 0; margin: 0; }

	nav td {
		text-align:center;
		background-color:#CCC;
		font-weight:bold;
		min-width:72px;
	}
	
	nav table {
		width:85%;
		height:100%;
		border-spacing: 4px 3px;
		margin: auto auto;
}

	/* ----- Welches Button ist aktiv ---------- */ 
	/* Aktuellen Menüpunkt unterstreichen */

	.aktiv {
		text-decoration: underline;
		text-decoration-color: white; 
		color:white;
		background: #444; 
	}
	
	.deaktiv {
		color:black;
	}
		
	/* ----- wo ist der Corser ----------- */ 
	nav table td:hover, nav table td:focus { 
		background: #708090;
	}