@CHARSET "ISO-8859-1";

/* TOP NAVIGATION */

#topnav		{ 	
			}

#topnav ul	{ 	float: right;			/* Liste fließt auch, damit li nicht rausläuft */
				margin: 0;
				padding: 0;
				list-style: none;
			}
				
#topnav li	{ 	float: left;			/* Elemente fließen links, damit erstes Element links steht */
				margin: 0; 
				padding: 0; 
				margin: 0 0 0 15px;
			}
			
#topnav a	{	float: left;
				display: block;
				margin: 0;
				padding: 0;
				color: #333;
				text-decoration: none;
			}


/* NAVIGATION */


#nav		{ 	
				width: 100%;
				background: #ff3300;
				font-size: 1.25em;
			}

#nav ul		{ 	float: right;			/* Liste fließt auch, damit li nicht rausläuft */
				margin: 0 10px 0 0;
				padding: 10px 0 0 0;
				list-style: none;
				/*background-color: #fdd4ad;*/
				
			}
				
#nav li		{ 	float: left;			/* Elemente fließen links, damit erstes Element links steht */
				margin: 0; 
				padding: 0; 
				background: transparent url(nav-left.png) left top no-repeat;
				margin: 0 0 0 5px;
			}
			
#nav a		{	float: left;
				width: 90px;
				display: block;
				margin: 0;
				padding: 10px 15px 5px 15px;
				color: #333;
				text-decoration: none;
				background: transparent url(nav-right.png) right top no-repeat;
			}
			
#nav li.current	
			{	
				background: transparent url(nav-left-current.png) left top no-repeat;
			}

#nav li.current a		
			{	
				background: transparent url(nav-right-current.png) right top no-repeat;
				color: #111;
			}			
			
			
			
			
			
