



/* HORIZONTAL MENU LAYOUT */


/* All <ul> tags in the menu including the first level */
.menulist, .menulist  ul {
 margin: 0;
 padding: 0;
 list-style: none;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.menulist ul {
 display: none;
 position: absolute;
 top: 1.0em; margin-top: 18px; /* I'm using ems and px to allow people to zoom their font */
 left: 0px;
 width: 180px;
 background-image: url(../images/naviobenBG.png);
 padding-bottom: 3px;
 padding-top: 2px;
 border-bottom: 1px solid #b4b4b4;
 border-left: 1px solid #b4b4b4;
 border-right: 1px solid #b4b4b4;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 top: -1px; margin-top: 0;
 }

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.menulist li {
 margin: 0;
 padding:0;
 float: left;
 display: block;
 position: relative;
 margin-right: -1px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 float: none;
 margin: 0;
 padding:0;
 margin-bottom: -1px;
}
/*.menulist ul>li:last-child {
 margin-bottom: 1px; 
}*/

/* Links inside the menu */
.menulist li a {
	display: block;
	padding-left: 10px;
	padding-right:10px;
	padding-top:5px;
	padding-bottom:2px;
	color: #bfc5e5;
	text-decoration: none;
	font-size:11px;
	background-image: url(../images/naviobenBGrechts.gif);
	background-repeat: no-repeat;
	background-position: right 8px;
}
.menulist li#li260 a {	
	background-image: none;
	padding-right:0px;
}

.menulist li a:visited {
	text-decoration:none;
	color: #bfc5e5;
}

.menulist ul li a {
	color: #000;
	padding-left: 6px;
	padding-bottom:3px;
	padding-top:3px;
	background-image: none;
}

.menulist ul li a:visited {
	text-decoration:none;
	color: #000;
}
/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist li a:hover, .menulist a.highlighted, .menulist a:focus, .menulist a:active, .menulist a#current-level1, .menulist a#active-level1 {
 color: #FEFEFE;

}
.menulist a#current-level1:visited, .menulist a#active-level1:visited, .menulist a.highlighted:visited {
 color: #FEFEFE;

}

/* Second level lit items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist ul li a:hover, .menulist ul li a.highlighted:hover, .menulist ul li a:focus, .menulist ul li a#current {
 color: #000;
 text-decoration: underline;	
}




