@charset "utf-8";
/* ~~ Stile für die Navigationslisten (können entfernt werden, wenn Sie ein vordefiniertes Ausklappmenü wie Spry verwenden) ~~ */
ul.nav {
	list-style: none;
	text-align: center;
	height: 75px;
	width: 960px;
	display: block;
}
ul.nav li {
	position: relative;
	left: 206px;
	float: left;
	top: 20px;

}


ul.nav a, ul.nav a:visited { /* Durch Gruppieren dieser Selektoren wird sichergestellt, dass die Hyperlinks auch nach dem Aufrufen die Form einer Schaltfläche beibehalten. */
	display: block; /* Hiermit werden die Blockeigenschaften für den Hyperlink angegeben, sodass das gesamte umschließende LI-Element aufgefüllt wird. Hiermit wird angegeben, dass der gesamte Bereich auf einen Mausklick reagiert. */
	width: 105px;
	background-color: #868686;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 5px;
	border-radius: 7px;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	text-decoration: none;
	padding: 5px;
	color: #FFF;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 1px;
}
ul.nav a:active , ul.nav a:hover, ul.nav a:focus{
	background-color: #F8A7B5;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 1px;
}
