
/* ================================================================ 
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*/

.menu {
	position: relative;
	z-index:400;
	height: 54px;
	padding-left:30px;
}

/*

	margin:0px auto;
	display:table;
	 hack für alle IE
	display:inline\9;
*/

/* 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;
	padding-left:0px;
	background-image: url(../images/misc/blank.gif);	
}

/* style the links for the top level */
.menu a,
.menu a:link,
.menu a:visited {
	color:#c5a069;
	display: block;
	font-size:1.2em;
	line-height: 54px;
	height:54px;
	text-transform:uppercase;
	text-decoration: none;
	white-space:nowrap;
	padding-top:0px;
	padding-left:10px;
	padding-right:10px;
}

.menu li a.act,
.menu li a.act:link,
.menu li a.act:visited {
	display: block;
	color:#e5cfb3;
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu li {
	width:10px;
}
* 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: 54px;
	left: 0px;
}

.menu ul ul ul {
	visibility: hidden;
	position: absolute;
	top: 0px;
	left: 195px;
}

/* another hack for IE5.5 */
* html .menu ul ul {
	top: 54px;
	t\op: 54px;
	font-size: 0.75em;
}

* html .menu ul ul ul {
	top: 0px;
	t\op: 0px;
	left: 150px;
}

/* 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 {
	display:block;
	color:#e5cfb3;
	text-transform:none;
	height:auto;
	line-height: 1.4em;
	padding-bottom:5px;
	width:150px;
	text-align:left;
	white-space:normal;
	background-image: url(../images/misc/raquo.png);
	background-repeat: no-repeat;
	background-position: 10px 9px;
	background-color:#00303b;
	border-bottom:1px dotted #004b5c;
	padding-left:25px;
	padding-right:20px;
}

/* für alle IE */
.menu ul ul a,
.menu ul ul a:link,
.menu ul ul a:visited {
	background-image: url(../images/misc/raquo.gif)\9;
}

/* style the top level hover */
.menu a:hover {
	display:block;
	color:#e5d0b3;
	background-color:transparent;
}

.menu :hover > a,
.menu ul ul :hover > a {
	display:block;
	color: #e5cfb3;
	background-color: transparent;
	text-decoration: none;
}

.menu ul ul :hover > a,
.menu ul ul a:hover {
	display:block;
	color: #e5cfb3;
	background-color: transparent;
}

.menu ul ul a:hover {
	background-color: transparent;
	display:block;
	color:#c5a069;
}

/* make the second level visible when hover on first level list OR link */
.menu ul li:hover ul,
.menu ul a:hover ul {
	display:block;
	visibility: visible;
	background-color:#00303b;
}

/* 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 {
	display:block;
	visibility:visible;
	background-color:#00303b;
}
