/* menu.css */
/* Edited by Wolf-Xaver Merkt, 2009 for LGH Schwaebisch Gmuend */
.menu {
width:1000px;
height:32px;
position:relative;
z-index:100;
/*border-right:1px solid #FFF;*/
background:#004268;
text-align:left;
}
.menu * { z-index:100; }
.menu li a { text-align:left; }
/* hack to correct IE5.5 faulty box model */
* html .menu {
width:1001px;
w\idth:1000px;
}
/* remove all unnessary stuff (the bullets, borders and padding) from the default list styling */
.menu ul {
padding:0px;
margin:0px;
list-style-type:none;
}
.menu ul ul {
width:124px; /* width of box... */
}
.menu li {
float:left;			/* makes list horizontal */
width:124px;
position:relative;	/* for controlling the dropdown menu position */
}
/* style the links for the top level */
.menu a, .menu a:visited {
display:block;
font-size:13px;
text-decoration:none;
color:white;
width:121.5px;
height:30px;
border:1px solid white;
border-width:1px 0 1px 1px;
background:#004268;
padding-left:10px;
line-height:29px;
font-stretch:ultra-condensed;/*font-weight:bold;*/
}

/* a hack so that IE5.5 faulty box model is corrected */
* html .menu a, * html .menu a:visited {
width:121.5px;
w\idth:100.5px;
}

/* style the second level background */
.menu ul ul a.drop, .menu ul ul a.drop:visited {
background:#0072B4 no-repeat 150px center;
}
/* style the second level hover */
.menu ul ul a.drop:hover{
background:#00324E no-repeat 150px center;
}
.menu ul ul :hover > a.drop {
background:#00324E no-repeat 150px center;
}

/* set third level in foreground */
.menu ul ul ul { z-index:105; }

/* style the third level background */
.menu ul ul ul a, .menu ul ul ul a:visited {background:#7fa3c4;}
/* style the third level hover */
.menu ul ul ul a:hover {background:#009AF4;}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.menu ul ul {
visibility:hidden;		/* hide if no hove */
position:absolute;		/* absolute: take up no room --> fixed layout^^ */
height:0;
top:31px;
left:0;
width:150px;
border-top:1px solid white;
}

/* another hack for IE5.5 */
* html .menu ul ul {
top:30px;
t\op:31px;
}

/* position the third level flyout menu */
.menu ul ul ul{
left:124px;
top:-1px;
width:124px;
}

/* position the third level flyout menu for a left flyout */
.menu ul ul ul.left {
left:-149px;
}

/* position the third level flyout menu for a right flyout */
.menu ul ul ul.right {
left:149px;
}

/* correct width of third level li (border-top syndrom) */
.menu ul ul ul { border-top:none; }
.menu ul ul ul li, .menu ul ul li .menu ul ul { width:150px;}
.menu ul ul ul  li.first { border-top:1px solid white; }

/* a hack for IE to work: style the table so that it takes no part in the layout */
.menu table {
position:absolute;
top:0;
left:0;
border-collapse:collapse;
}

/* style the second level links */
.menu ul ul a, .menu ul ul a:visited {
background:#009AF4;
color:#000;
height:auto;
line-height:1em;
padding:5px 10px;
width:128px;
border-width:0 1px 1px 1px;
}
.menu ul ul a:hover { color:#ebebeb; }

/* yet another hack for IE5.5 */
* html .menu ul ul a, * html .menu ul ul a:visited {
width:150px;
w\idth:128px;
}

/* style the top level hover */
.menu a:hover, .menu ul ul a:hover {
/*color:#000;*/
background:#00324E;
}
.menu :hover > a, .menu ul ul :hover > a {
/*color:#000;*/
background:#00324E;
}

/* 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;}
/* make the third level visible when you hover over second level list OR link */
.menu ul :hover ul :hover ul{ visibility:visible;}
/* end menu */
.menu { padding:0px; margin-top:-5px; } /* position to header in the layout */