
/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html is available at http://www.cssplay.co.uk/menus/final_drop.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any way to fit your requirements.
=================================================================== */
/* copyright changes ArtProLog 2007 Ursula Bartels */

.menu {
	position: relative;
	z-index:100;
	height: 28px
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	list-style-type: none;
	list-style-image: none;
	margin: 0;
	padding: 0;
	height: 28px;
	border-left: 1px solid #fff
}

.menu ul ul {
	list-style-image: none;
	margin-left: 0;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #fff;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	position: relative;
	float: left
}

/* style the links for the top level */
.menu a,
.menu a:link,
.menu a:visited {
	color: #fff;
	line-height: 28px;
	text-decoration: none;
	display: block;
	padding-right: 10px;
	padding-left: 10px;
	border-right: 1px solid #fff
}

.menu ul ul a,
.menu ul ul a:link,
.menu ul ul a:visited,
.menu ul ul a:hover {
	text-transform: none;
	border-style: none;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a,
* html .menu a:link,
* html .menu a:visited,
* html .menu a:hover,
* html .menu a:active {
	float: left;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility: hidden;
	position: absolute;
	top: 28px;
	left: -1px;
}

.menu ul ul ul {
	visibility: hidden;
	position: absolute;
	top: -1px;
	left: 170px;
}

/* another hack for IE5.5 */
* html .menu ul ul {
	top: 28px;
	t\op: 28px;
	font-size: 0.75em;
}

* html .menu ul ul ul {
	top: -1px;
	t\op: -1px;
	left: 150px;
	font-size: 0.75em;
}

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

/* style the second level links */
.menu ul ul a,
.menu ul ul a:link,
.menu ul ul a:visited {
	color: #69766a;
	line-height: 1em;
	background-color: #fff;
	width: 150px;
	height: auto;
	border-bottom: 1px solid #edeeed;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
}

.menu ul ul ul a,
.menu ul ul ul a:link,
.menu ul ul ul a:visited {
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #e9ebea;
}

/* style the top level hover */
.menu a:hover,
.menu ul ul a:hover {
	color: #69766a;
	background-color: #fff;
	text-decoration: none;
}

.menu :hover > a,
.menu ul ul :hover > a {
	color: #69766a;
	background-color: #fff;
	text-decoration: none;
}

.menu ul ul a:hover {
	color: #fff;
	background-color: #69766a;
}

/* style the top level active */
a.act,
a.act:link,
a.act:visited,
a.act:hover,
a.act:active {
	color: #69766a;
	background-image: url(../images/layout/quadrat_weiss.gif);
	background-repeat: repeat;
	background-position: left top
}

/* style the top level active */
a.sub,
a.sub:link,
a.sub:visited,
a.sub:hover,
a.sub:active {
	background-image: url(../images/layout/nav_ecke.gif);
	background-repeat: no-repeat;
	background-position: right bottom
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul {
	visibility: visible;
	width: 150px;
}

/* keep the third level hidden when you hover on first level list OR link */
.menu ul :hover ul ul,
.menu ul :hover ul :hover ul ul {
	visibility:hidden;
}

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