
/* ================================================================ 
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 2009 Ursula Bartels */
#navigationbox {
	height:20px;
	display:block;
	width:700px;
	padding-left:22px;
	padding-left:25px\9;
}

.menu {
	position: relative;
	z-index:400;
	height: 20px;
}

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

/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */

.menu li {
	position: relative;
	height:20px;
	float: left;
	list-style-type: none;
	list-style-image: none;
	padding-left:5px;
	padding-right:5px;
	border-right: 1px solid #8f9088;
	padding-left:4px\9;
	padding-right:4px\9;
}

.menu ul li ul li{
	border-style:none;	
	height:auto;
	padding:0px;
}

/* style the links for the top level */
.menu a,
.menu a:link,
.menu a:visited {
	color:#5a5a5a;
	font-size:1.0em;
	font-weight:bold;
	height:20px;
	text-decoration: none;
	display: block;
	white-space:nowrap;
	background-image: url(../images/misc/blank.gif);
	background-repeat: repeat;
	background-position: left top;
}

.menu li a.act,
.menu li a.act:link,
.menu li a.act:visited {
	color: #000099;
	text-decoration: 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 {
	display:block;
	visibility: hidden;
	position: absolute;
	top: 20px;
	left: -1px;
	border-top:1px solid #d2d3d6;
	width:194px;
}

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

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

* html .menu ul ul ul {
	top: -1px;
	t\op: -1px;
	left: 179px;
	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:#5a5a5a;
	font-size: 0.9em;
	font-weight:normal;
	height:auto;
	line-height:1.4em;
	padding-left:6px;
	padding-right:6px;
	padding-top:5px;
	padding-bottom:5px;
	width:180px;
	background-color:#ebecec;
	white-space:normal;
	border-left:1px solid #d2d3d6;
	border-right:1px solid #d2d3d6;
	border-bottom:1px solid #d2d3d6;
}

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

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

.menu ul ul :hover > a,
.menu ul ul a:hover {
	color: #000099;
	background-color:#fece9d;
	background-image: url(../images/misc/blank.gif);
	background-repeat: repeat;
	background-position: left top;
}
.menu ul ul a:hover {
	background-color:#fece9d;
}

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

