
/* ================================================================ 
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 agentur artprolog 2010 Ursula Bartels */
.menu {
	position: relative;
	z-index:400;
	height: 73px;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	margin: 0px;
	padding: 0px;
}

/* 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;
	list-style-type: none;
	list-style-image: none;
	background-image: url(../images/layout/navi_trenner.jpg);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	margin-left:20px;
}

.menu li ul li {
	background-image: none;
	margin-left:0px;
}

/* style the links for the top level */
.menu a,
.menu a:link,
.menu a:visited {
	color:#fff;
	font-size:0.95em;
	text-transform:uppercase;
	line-height: 73px;
	height:73px;
	white-space:nowrap;
	text-decoration: none;
	display: block;
	padding-top:5px;
}

.menu li a.act,
.menu li a.act:link,
.menu li a.act:visited {
	color: #002d67;
}

/* 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: 73px;
	left:0px;
	border: 1px solid #a0a5aa;
	list-style-image: none;
	background-color:#f4f5f5;
	padding:0px;
	margin:0px;
	width: 170px;
}

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

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

* html .menu ul ul ul {
	top: 0px;
	t\op: 0px;
	left: 170px;
	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,
.menu ul ul a:active,
.menu ul ul a:hover {
	color:#002d67;
	font-size: 0.9em;
	text-transform:none;
	height:auto;
	line-height: 1.4em;
	width:150px;
	padding:10px;
	text-align:left;
	background-image:none;
	white-space:normal;
}

.menu ul ul  a.act,
.menu ul ul  a.act:link,
.menu ul ul  a.act:visited {
	color: #002d67;
}

* html .menu ul ul a,
* html .menu ul ul a:link,
* html .menu ul ul a:visited,
* html .menu ul ul a:active,
* html .menu ul ul a:hover {
	width:170px;
}

.menu ul ul a:active,
.menu ul ul a:hover {
	color: #002c66;
	background-color:#b2d3fe;
}

/* style the top level hover */
.menu a:hover {
	text-decoration: none;
	background-color:transparent;
	color: #002d67;
}

.menu :hover > a,
.menu ul ul :hover > a {
	color: #002d67;
}

.menu ul ul :hover > a {
	color: #fff;
	background-color:#a0a5aa;
	background-image:none;
}

.menu ul ul a:hover {
	color: #fff;
	background-color:#a0a5aa;
	background-image:none;
}

* html .menu ul ul :hover > a {
}

* html .menu ul ul a:hover {
}

/* 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;
}

/* 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;
}

