
/* ================================================================ 
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 2008 Ursula Bartels */
#navigationbox {
}

.menu {
	position: relative;
	right:0px;
	z-index:400;
	height: 40px;
}

/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	list-style-type: none;
	list-style-image: none;
	margin: 0px;
	padding: 0px;
	height: 40px;
}

.menu ul ul {
	list-style-image: none;
	margin-left: 0;
	border-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;
	z-index:400;
	float: left;
	list-style-type: none;
	list-style-image: none;
}

/* style the links for the top level */
.menu a,
.menu a:link,
.menu a:visited {
	color:#fff;
	font-size:1.1em;
	font-weight:bold;
	text-transform:uppercase;
	line-height: 40px;
	height:40px;
	text-decoration: none;
	display: block;
	padding-left:20px;
	padding-right:20px;
	text-align:center;
	border-right: 1px solid #fff;
	white-space:nowrap;
}

/* 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: 40px;
	left: 0px;
}

.menu ul ul ul {
	visibility: hidden;
	position: absolute;
	top: 0px;
	left: 110px;
}

/* another hack for IE5.5 */
* html .menu ul ul {
	top: 40px;
	t\op: 40px;
	font-size: 0.75em;
}

* html .menu ul ul ul {
	top: 0px;
	t\op: 0px;
	left: 110px;
	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:#007243;
	font-size: 0.9em;
	text-transform:none;
	font-weight:normal;
	height:auto;
	line-height: 1em;
	width:150px;
	overflow:hidden;
	padding-bottom:8px;
	padding-top:8px;
	padding-left:10px;
	text-align:left;
	background-color:#fff;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #edf5f2;
	white-space:normal
}

* html .menu ul ul a,
* html .menu ul ul a:link,
* html .menu ul ul a:visited {
	overflow:visible;
	width: 110px;
}

.menu ul ul ul a,
.menu ul ul ul a:link,
.menu ul ul ul a:visited {
}

/* style the top level hover */
.menu a:hover,
.menu ul ul a:hover {
	color: #fff;
	background-color: transparent;
	text-decoration: none;
	background-image: url(../images/layout/nav_act.jpg);
	background-repeat: repeat-x;
	background-position: left top;
}

* html .menu ul ul a:hover {
	background-image: url(../images/layout/nav_act.jpg);
	background-repeat: repeat-x;
	background-position: left top;
}

.menu :hover > a,
.menu ul ul :hover > a {
	color: #fff;
	background-color: transparent;
	text-decoration: none;
	background-image: url(../images/layout/nav_act.jpg);
	background-repeat: repeat-x;
	background-position: left top;
}

.menu ul ul :hover > a,
.menu ul ul a:hover {
	color: #fff;
	background-color: #004d2b;
	background-image: none;
}

/* 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;
}
