#nav .menu, #navobjekt .menu {
	width: auto; 
	font-family: "Lucida Grande", Tahoma, Arial, Helvetica, sans-serif;
	font-size: 12px;
	position: relative;
	z-index: 100;
}
/* remove all the bullets, borders and padding from the default list styling */
#nav .menu ul, #navobjekt .menu ul {
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	list-style-type: none;
}

#nav .menu ul li, #navobjekt .menu ul li {
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	list-style-type: none;
}

#nav .menu ul ul, #navobjekt .menu ul ul {
	width: 130px;
}


/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#nav .menu li, #navobjekt .menu li {
	float: left;
	position: relative;
	z-index: 100;
}
/* style the links for the top level */
#nav .menu a, #nav .menu a:visited, #navobjekt .menu a, #navobjekt .menu a:visited {
	margin: 0 0 0 0;
	padding: 0 6px 10px 6px;
	text-decoration: none;
	font-size: 12px;
	font-weight: normal;
	display: block;
}

/* style the second level background */
#nav .menu ul ul a.drop, #nav .menu ul ul a.drop:visited, #navobjekt .menu ul ul a.drop, #navobjekt .menu ul ul a.drop:visited, #navobjekt .menu ul ul a:link {
	color: #fff;
	background: #000;
	background-image: none;
	border-bottom: 1px dashed #ccc;
}
/* style the second level hover */
#nav .menu ul ul a.drop:hover, #navobjekt .menu ul ul a.drop:hover {
	color: #fff;
	background: #006851;
	background-image: none;
	border-bottom: 1px dashed #ccc;
}
#nav .menu ul ul :hover > a.drop, #navobjekt .menu ul ul :hover > a.drop {
	color: #fff;
	background: #006851;
	background-image: none;
	border-bottom: 1px dashed #ccc;
}
/* style the third level background */
#nav .menu ul ul ul a, #nav .menu ul ul ul a:visited, #navobjekt .menu ul ul ul a, #navobjekt .menu ul ul ul a:visited {
	color: #fff;
	background: #006851;
	background-image: none;
	border-bottom: 1px dashed #ccc;
}
/* style the third level hover */
#nav .menu ul ul ul a:hover, #navobjekt .menu ul ul ul a:hover {
	color: #ccc;
	background: #006851;
	background-image: none;
	border-bottom: 1px dashed #ccc;
}


/* hide the sub levels and give them a positon absolute so that they take up no room */
#nav .menu ul ul, #navobjekt .menu ul ul {
	visibility: hidden;
	position: absolute;
	height: 0;
	top: 23px;
	left: 0; 
	width: 150px;
}
/* another hack for IE5.5 */
* html #nav .menu ul ul, * html #navobjekt .menu ul ul {
	top: 22px;
	t\op: 23px;
}

/* position the third level flyout menu */
#nav .menu ul ul ul, #navobjekt .menu ul ul ul {
	left: 129px; 
	top: 0;
	width: 130px;
}
/* position the third level flyout menu for a left flyout */
#nav .menu ul ul ul.left, #navobjekt .menu ul ul ul.left {
	left:-129px;
}

/* style the table so that it takes no ppart in the layout - required for IE to work */
#nav .menu table, #navobjekt .menu table {position:absolute; top:0; left:0;}

/* style the second level links */
#nav .menu ul ul a, #nav .menu ul ul a:visited, #navobjekt .menu ul ul a, #navobjekt .menu ul ul a:visited {
	background: #000; 
	color: #fff; 
	height: auto; 
	line-height: 20px; 
	padding:5px 10px; 
	width:109px;
	background-image: none;
	border-bottom: 1px dashed #ccc;
/* yet another hack for IE5.5 */
}
* html #nav .menu ul ul a, * html #navobjekt .menu ul ul a {
	width:130px;
	w\idth:109px;
}


/* style the top level hover */
#nav .menu a:hover, #navobjekt .menu a:hover {
	background-image: url(../pics/nav_current.png);
	background-repeat: no-repeat;
	background-position: bottom center;
}

#nav .menu ul ul a:hover, #navobjekt .menu ul ul a:hover {
	background-image: none;
	background-color: #006851;
}

#nav .menu a.dropact, #navobjekt .menu a.dropact {
	background-image: url(../pics/nav_current.png);
	background-repeat: no-repeat;
	background-position: bottom center;
}


#nav .menu :hover > a, #navobjekt .menu :hover > a  {
	background-image: url(../pics/nav_current.png);
	background-repeat: no-repeat;
	background-position: bottom center;
}

#nav .menu ul ul :hover > a, #navobjekt .menu ul ul :hover > a {
	color: #fff;
	background-color: #006851;
	background-image: none;
	border-bottom: 1px dashed #ccc; 
}

/* make the second level visible when hover on first level list OR link */
#nav .menu ul li:hover ul,
#nav .menu ul a:hover ul, 
#navobjekt .menu ul li:hover ul,
#navobjekt .menu ul a:hover ul {
visibility:visible; 
}
/* keep the third level hidden when you hover on first level list OR link */
#nav .menu ul :hover ul ul, #navobjekt .menu ul :hover ul ul {
visibility:hidden;
}

/* make the third level visible when you hover over second level list OR link */
#nav .menu ul :hover ul :hover ul, #navobjekt .menu ul :hover ul :hover ul { 
visibility:visible;
}

