/* Mini rootline */
.rootline {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	margin-bottom: 8px;
}
.rootline-no A.nav, .rootline-act A.nav, #navi-root A, #navi-root {
	color: #FFFFFF;
 	text-decoration:  none;
 	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	font-weight: normal;
}

/* Left menu */
.left-navi-list, .left-navi-list UL {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
.left-navi-list UL {
	border: none;
}

.left-navi-list LI {
	float: none;
	padding: 0px;
	background-image: url(../img/bg-line.gif);
	background-repeat: repeat-y;
	background-position: top left;
	padding-top: 2px;
	line-height:12pt;
}

.left-navi-list LI.left-navi-act {
	background-image: url(../img/red-dot-navi.gif);
	background-repeat: no-repeat;
	background-position: 0px 8px;
}
.left-navi-list LI.act-level1 {
	background-image: url(../img/red-dot-line.gif);
	background-repeat: no-repeat;
	background-position: 0px -3px;
}

/* Level 1 */
.left-navi-list A.nav, .left-navi-list A.nav:active, .left-navi-list A.nav:visited {
	color: #456FA8;
 	text-decoration:  none;
 	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 7pt;
	font-weight: normal;
	margin-left: 10px;
}
.left-navi-list A.nav:hover, .left-navi-list A.nav:focus {
 	text-decoration: underline;
}
/* Level 2 */
.left-navi-list.level2 A.nav, .left-navi-list.level2 A.nav:active, .left-navi-list.level2 A.nav:visited {
	color: black;
	font-weight: normal;
	margin-left: 18px;
}
.left-navi-list.level2 A.nav:hover, .left-navi-list.level2 A.nav:focus {
 	text-decoration: underline;
}
/* Level 3 */
.left-navi-list.level3 A.nav, .left-navi-list.level3 A.nav:active, .left-navi-list.level3 A.nav:visited {
	color: #999999;
	font-weight: normal;
	margin-left: 18px;
}
.left-navi-list.level2 A.nav:hover, .left-navi-list.level2 A.nav:focus {
 	text-decoration: underline;
}

.grey-hline {
	position: relative;
	margin-left: 2px;
	margin-top: 0px;
	width: 153px;
	border-top: 1px solid #B7B7B7;
}

/* ------------------------------------------------------------------- */
/* Top menu */
/* 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 {
 visibility: hidden;
 position: absolute;
 top: 18px;
 left: 0px;
 width: 150px;
 background-color: #FFFFFF;
 z-index:1000;
}

/* Second and third etc. level submenus - position across from parent instead */
.menulist ul ul {
 top: 0px;
 left: 155px;
}

/*
 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;
 margin-right: 15px;
 margin-left: 0px;
 line-height:10pt;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.menulist ul li {
 float: none;
 margin-right: 0;
 margin-bottom: 0px;
 line-height: 10pt;
}
.menulist ul>li:last-child {
 margin-bottom: 1px;
}

/* Links inside the menu */
.menulist a.navt {
 	display: block;
 	padding: 2px;
 	color: #023B88;
 	text-decoration:  none;
 	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8pt;
	font-weight: normal;
 	margin-left: 0px;
cursor: default;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist a.navt:hover, .menulist a.highlighted:hover, .menulist a.navt:focus {
 	color: #001A7B;
 	background-color: #FFFFFF;
	font-weight: normal;
 	text-decoration:  none;
}
.menulist  a.highlighted {
 	color: #001A7B;
 	background-color: #FFFFFF;
	font-weight: normal;
 	margin-left: 0px;
}

/* Links from second level on */
.menulist ul.level2 a.navt {
 	display: block;
 	padding: 2px;
 	color: #001A7B;
 	text-decoration: none;
	font-weight: normal;
 	margin-left: 0px;
cursor: pointer;
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.menulist ul.level2 a.navt:hover, .menulist ul.level2 a.highlighted:hover, .menulist ul.level2 a.navt:focus {
  color: #001A7B;
 background-color: #E5EEF7;
	font-weight: normal;
 	margin-left: 0px;
 	text-decoration:  none;
}
.menulist  ul.level2 a.highlighted {
 color: #001A7B;
 background-color: #FFFFFF;
	font-weight: normal;
 	margin-left: 0px;
}

/*
 If you want per-item background images in your menu items, here's how to do it.
 1) Assign a unique ID tag to each link in your menu, like so: <a id="xyz" href="#">
 2) Copy and paste these next lines for each link you want to have an image:
    .menulist a#xyz {
      background-image: url(out.gif);
    }
    .menulist a#xyz:hover, .menulist a.highlighted#xyz, .menulist a:focus {
     background-image: url(over.gif);
    }
*/

/* Only style submenu indicators within submenus. */
.menulist a.navt .subind {
 display:  none;
}
.menulist ul a.navt .subind {
 display:  block;
 float: right;
}

/* 'Escaped Comment' hack for horizontal menubar width in IE5/Mac */
.menulist a.navt {
 float: left;
}
.menulist ul a.navt {
 float: none;
}
/* \*/
.menulist a.navt {
 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.navt {
 height: 1%;
}
/* End Hack */

