/* 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 {
	position: absolute;
	top: 24px;
	left: 0px;
	width: 0px;
	visibility: hidden;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 top: 0px;
 left: 164px;
}

/*
 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 {
 float: left;
 position: relative;
 background: #FFFFFF;
}
.menulist li.aktiv {
 background: #EBEBEB;
   border-left: 1px solid;
 border-left-color:#FF0033;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 float: none; 
 background: #DDDDDD;
 width:200px;
}

.menulist ul li.aktiv {
 background: #FF0033;
}

.menulist ul>li:last-child {
  margin-bottom: 5px;
}

/* Links inside the menu */
.menulist a {
 display: block;
 font-family: Arial, Helvetica, sans-serif;
 font-size: 12px;
 line-height:20px;
 font-weight: bold;
 /*text-align: center;*/
 color: #000000;
 text-decoration:  none;
 padding-left: 16px;
 padding-right: 16px;
 padding-top: 2px;
 padding-bottom: 2px;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist ul a:hover, .menulist ul  a.highlighted:hover, .menulist ul  a:focus {
 color: #FFFFFF;
 background-color: #FF0033;
   border-left: 1px solid;
 border-left-color:#FF0033;
}

.menulist  ul  a.highlighted {
 background-color: #FF0033;
   border-left: 1px solid;
 border-left-color:#FF0033;
}




/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a:hover, .menulist a.highlighted:hover, .menulist a:focus {
 color: #FFFFFF;
	background-color: #FF0033;
    border-left: 1px solid;
 	border-left-color:#FF0033;
}
.menulist  a.highlighted {
color: #FFFFFF;
 background-color: #FF0033;
  border-left: 1px solid;
 	border-left-color:#FF0033;
}



/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a {
 float: left;
 border-left: 1px solid;
 border-left-color:#FFFFFF; 
}

.menulist ul a {
background-color: #DDDDDD;
 float: none;
   border-left: 1px solid;
 	border-left-color:#FF0033;
}
/* \*/
.menulist a {
 float: none;
}
/* */


/* This semi-commented section exists to fix bugs in IE/Windows (the 'Holly Hack'). \*/
* html .menulist  ul li {
 float: left;
 height: 1%;
}
* html .menulist  ul a {
 height: 1%;
}
/* End Hack */
