/********************************
 *    CSS FILE für Navigation   *
 ********************************/

	#nav {
	height: 28px;
	clear: both;
	position: relative;
	z-index: 50;
	padding-right: 20px;
	background-color: #E2E2E2;
	}
	
	#nav ul { margin: 0px; list-style-type: none;}
	
	/* float the list to make it horizontal and a relative positon */
	#nav li {
	margin: 1px -1px 1px 0px;
	float: left;
	position: relative;
	line-height: 16px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #B5B5B5;
	border-left-color: #B5B5B5;
	}
	
	/* style the links */
	#nav a, #nav a:visited  {
	padding: 5px 22px 5px 22px;
	font-size: 12px;
	font-weight: bold;
	display: block;
	text-decoration: none;
	color: #333333;
	}
	
	/* style the hover */
	#nav a:hover, #nav ul ul a:hover, #nav :hover > a, #nav ul ul :hover > a {
	color: #666666;
	background-color: #D2D2D2;
}

	/* make the second level visible when hover */
	#nav ul li:hover ul, #nav ul a:hover ul { visibility: visible;}
		
	/* hide the sub levels and give them a positon absolute so they take up no room */
	#nav ul ul {
	visibility: hidden;
	position: absolute;
	width: 190px;
	padding-top: 1px;
	padding-right: 1px;
	padding-bottom: 1px;
	padding-left: 1px;
	background-color: #DFDFDF;
	}
	
	#nav ul ul li {
	margin: 0px;
	border: none;
	float: none;
}
		
	/* style the second level links */
	#nav ul ul a, #nav ul ul a:visited {

	font-size: 10px;
	font-weight: normal;
	color: black;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 15px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCCCCC;
	}

	#nav ul ul a:hover { color: #FFFFFF;}

	/* style the table so that it takes no ppart in the layout - required for IE to work */
	#nav table { position: absolute; top: 0; left: 0; border-collapse: collapse; }
	

