#nav {
	float: left; /* Richtungsanweisung */
	width: 100%; /* Ausnutzung der Breite des Containers */
	margin: 0;
	padding: 0;
	list-style: none; /* Kein Listenstil verwenden, also keine Listenelemente, wie Kreise etc.. */
	background-image:url(images/navi1_bg.gif);
	background-repeat:no-repeat;
	height:30px;
}
	
#nav li { 
	float: left;
	padding: 0;
	list-style-type:none;
	width:auto;
}
	
#nav a {
	margin-top:-10px;
	float: left;
	display: block; /* Blockdarstellung */
	text-decoration: none; /* Keine Text-Dekoration z.B. unterstrichen oder ähnliches */
	font-weight: bold; /* Schrift Fett */
	font-size: 90%;
	color: #fff;
	border-right:thin;
	border-right-color:#FFFFFF;
	border-right-style:solid;
	padding-left: 5px;
	padding-right: 5px;
}
	
#nav #nav-1 a {

}
	
#nav a:hover {
	color: #000000;
}

ul {
	clear: left;
}

