/* CSS Document */
/* ================================================================ 
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_drop2.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.
=================================================================== */
/* style the outer div to give it width */
.menu {
	position: relative;
	z-index: 100;
	padding-left: 180px;
	background-image: url(../global-gfx/verlauf-menu.jpg);
	background-repeat: no-repeat;
	height: 32px;
	background-position: left;
}
.menu ul li.linie {
	border-right: 1px solid #E0A072;
}
/* remove all the bullets, borders and padding from the default list styling */
.menu ul {
	padding: 0;
	margin: 0;
	list-style-type: none
}
.menu ul ul {
	width: 200px
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.menu li {
	float: left;
	position: relative
}
/* style the links for the top level */
.menu a, .menu a:visited {
	display: block;
	font-size: 13px;
	text-decoration: none;
	color: #fff;
	float: left;
	height: 32px;
	border-left: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	border-right: 1px solid #FFF;
	border-width: 0 0 0 0;
	background: #df925e;
	padding-left: 15px;
	padding-right: 15px;
	line-height: 32px;
	background-image: url(../global-gfx/verlauf-menu-ebene1.jpg);
	background-repeat: repeat-x;
	font-weight: bold;
}
/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
	/*width: 200px;
	w\idth: 189px*/
}
/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
	background: #747225
}
/* style the second level hover */
.menu ul ul a.drop:hover{
	background: #c9ba65;
}
.menu ul ul :hover > a.drop {
	background: #c9ba65;
}
/* style the third level background 
.menu ul ul ul a, .menu ul ul ul a:visited {
	background: #df925e;
}*/
/* style the third level hover */
.menu ul ul ul a:hover {
	background: #b2ab9b
}
.menu ul ul ul :hover > a {
	background: #b2ab9b
}
/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
	visibility: hidden;
	position: absolute;
	he\ight: 0;
	height: auto;
	
	top: 32px;
	left: -1px;
	width: 221px;
}
/* another hack for IE5.5 */
* html .menu ul ul {
	top: 33px;
	t\op: 32px;
}
/* position the third level flyout menu */
.menu ul ul ul{
	left: 150px;
	top: 0;
	width: 150px
}
/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
	left: -150px
}
/* style the table so that it takes no part in the layout - required for IE to work */
.menu table {
	position: absolute;
	top: 0;
	left: 0
}
/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
	background: #DF925E;
	font-weight: normal;
	font-size: 12px;
	color: #FFF;
	height: auto;
	line-height: 1em;
	border-width: 1px 1px 1px 1px;
	padding: 8px 20px;
	width: 179px /* yet another hack for IE5.5 */
}
* html .menu ul ul a{
	width: 200px;
	w\idth: 179px
}
/* style the top level hover */
.menu ul ul a:hover{
	color: #fff;
	background: #747225;
	background-image: url(../global-gfx/verlauf-menu-ebene1.jpg)!important;
	background-repeat: repeat-x;
}
.menu ul a:hover, .menu ul a:hover, .menu ul a.on {
	background: #B1662D!important;
}
.menu :hover > a, .menu ul ul :hover >, .menu ul a.on {
	color: #FFF;
	background: #B1662D!important;
}
/* 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{
	visibility: hidden
}
/* keep the fourth level hidden when you hover on second level list OR link */
.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{
	visibility: visible
}
/* make the fourth level visible when you hover over third level list OR link */
.menu ul :hover ul :hover ul :hover ul {
	visibility: visible
}

