/* ======================================================================
   CSS for an vertical menu
   Template call: <div class="nlu_navi1">{NAV_LIST_UL:F,0,,,active}</div>
   Level 0 - 4;
   07.10.06 flip-flop (KH)

   For IE7 we need this at the "header:" section in your template:
   ..................................................
   <!--[if IE]><style>
   .nlu_navi1_docu ul li { float: left; height: 1%; }
   .nlu_navi1_docu ul li a { height: 1%; }
   </style><![endif]-->
   ..................................................
   but using Mac it doesn´t work. At this time the best solution are no
   patch at the header section.!!!! Kh 06/11/14
========================================================================= */

.nlu_navi1 {
   margin: 0;
   padding: 0 0 0 0;
   border: 0;
   text-decoration: none;
   /* ++ e.g. 11px font and 19px height // z.B. 11px font und 19px hoch */
   font: normal normal 120%/150% Verdana, Geneva, Arial, Helvetica, sans-serif;
   width: 185px;  /* ++ Width of Menu Items // Breite der Navigation*/
   float:left;
   border-top: 2px solid rgb(255,255,255);
}

.nlu_navi1 em { font-style: normal; }

.nlu_navi1 ul {
   margin: 0;
   padding: 0;
   border: 0;
   list-style: none;
   width: 175px;  /* ++ Width of Menu Items // Breite der Navigation */
}

.nlu_navi1 ul li { position: relative; }


/* ==== Styles for Menu Items ================================== */

/* ==== LEVEL X ================================================ */

/* ====  simple link <a> // einfacher Link <a> ==== */
.nlu_navi1 ul li a,
.nlu_navi1 ul li a:link,
.nlu_navi1 ul li a:visited,
.nlu_navi1 ul li a:active {
   display: block;
   text-decoration: none;
   text-transform: none;
   color: rgb(255,255,255);           /* ++ Text color // Textfarbe */

   /* ++ background color; url of the image; image adjust e.g. left gap 10px */
   /* ++ Hintergrundfarbe; URL der Grafik  ; Grafik einrücken z.B. 10px */
   background: rgb(63,113,173);

   /* ++ Text adjust e.g. upper gap and left gap 25px */
   /* ++ Text justieren 1px oben und 25px von links */
   padding: 2px 5px 2px 30px;

   /* ++ bottom line if you want */
   /* ++ Untere Linie wenn gewünscht */
   border-bottom: 2px solid rgb(255,255,255);  /* ++ horiz. line between */
}

/* ====  active link <a> // aktiver Link <a> ==== */
.nlu_navi1 ul li.active a,
.nlu_navi1 ul li.active a:link,
.nlu_navi1 ul li.active a:visited,
.nlu_navi1 ul li.active a:active {
   color: rgb(255,255,255);           /* ++ Text color // Textfarbe */
   font-weight: bold;       /* ++ Bold if you want // Fett wenn gewünscht */
   /* background for the active state // Hintergrund für den aktiven Status */
   background: 	rgb(243,153,79);
}

/* ====  hover link <a> // Maus über Link <a> ==== */
.nlu_navi1 ul li a:hover,
.nlu_navi1 ul li.active a:hover {
   color: rgb(255,255,255);
/*   text-decoration: underline; */
   background: 	rgb(243,153,79);
}


/* ==== LEVEL X+1 ============================================== */

.nlu_navi1 ul ul li.sub_no a,
.nlu_navi1 ul ul li.sub_no a:link,
.nlu_navi1 ul ul li.sub_no a:visited,
.nlu_navi1 ul ul li.sub_no a:active,
.nlu_navi1 ul ul li.sub_ul a,
.nlu_navi1 ul ul li.sub_ul a:link,
.nlu_navi1 ul ul li.sub_ul a:visited,
.nlu_navi1 ul ul li.sub_ul a:active {
   display: block;
   margin-left: 5px;
   text-decoration: none;
   text-transform: none;
   font-size: 12px;
   font-weight: normal;
   color: rgb(255,255,255);
   line-height: 14px;
   background: 	rgb(213,135,71);
   padding: 4px 0 4px 25px;
   border-bottom: 2px solid rgb(255,255,255);  /* IE6 Bug */
}

.nlu_navi1 ul ul li.active a,
.nlu_navi1 ul ul li.active a:link,
.nlu_navi1 ul ul li.active a:visited,
.nlu_navi1 ul ul li.active a:active {
   color: rgb(255,255,255);
   font-weight: bold;
   background: 	rgb(243,153,79);
}

.nlu_navi1 ul ul li a:hover,
.nlu_navi1 ul ul li.sub_no a:hover,
.nlu_navi1 ul ul li.sub_ul a:hover,
.nlu_navi1 ul ul li.active a:hover {
   color: rgb(255,255,255);
/*   text-decoration: underline; */
   background: 	rgb(243,153,79);
}

/* ==== LEVEL X+2 ============================================== */

.nlu_navi1 ul ul ul li.sub_no a,
.nlu_navi1 ul ul ul li.sub_no a:link,
.nlu_navi1 ul ul ul li.sub_no a:visited,
.nlu_navi1 ul ul ul li.sub_no a:active,
.nlu_navi1 ul ul ul li.sub_ul a,
.nlu_navi1 ul ul ul li.sub_ul a:link,
.nlu_navi1 ul ul ul li.sub_ul a:visited,
.nlu_navi1 ul ul ul li.sub_ul a:active  {
   display: block;
   margin-left: 5px;   
   text-decoration: none;
   text-transform: none;
   font-size: 12px;
   line-height: 14px;   
   color: rgb(0,0,0);
   background: rgb(206,131,68);
   padding: 4px 0 4px 20px;
   border-bottom: 2px solid rgb(255,255,255); /* IE6 Bug */
}

.nlu_navi1 ul ul ul li.active a,
.nlu_navi1 ul ul ul li.active a:link,
.nlu_navi1 ul ul ul li.active a:visited,
.nlu_navi1 ul ul ul li.active a:active {
   color: rgb(255,255,255);
   font-weight: bold;
   background: rgb(206,131,68);
}

.nlu_navi1 ul ul ul li a:hover,
.nlu_navi1 ul ul ul li.sub_no a:hover,
.nlu_navi1 ul ul ul li.sub_ul a:hover,
.nlu_navi1 ul ul ul li.active a:hover {
   color: rgb(255,255,255);
/*   text-decoration: underline; */
   background: rgb(206,131,68);
}
/* ==== LEVEL X+3 ============================================== */

.nlu_navi1 ul ul ul li.sub_no a,
.nlu_navi1 ul ul ul li.sub_no a:link,
.nlu_navi1 ul ul ul li.sub_no a:visited,
.nlu_navi1 ul ul ul li.sub_no a:active,
.nlu_navi1 ul ul ul li.sub_ul a,
.nlu_navi1 ul ul ul li.sub_ul a:link,
.nlu_navi1 ul ul ul li.sub_ul a:visited,
.nlu_navi1 ul ul ul li.sub_ul a:active  {
   display: block;
   margin-left: 10px;   
   text-decoration: none;
   text-transform: none;
   font-size: 12px;
   line-height: 14px;   
   color: rgb(0,0,0);
   background: rgb(206,131,68);
   padding: 4px 0 4px 20px;
   border-bottom: 2px solid rgb(255,255,255); /* IE6 Bug */
}

.nlu_navi1 ul ul ul li.active a,
.nlu_navi1 ul ul ul li.active a:link,
.nlu_navi1 ul ul ul li.active a:visited,
.nlu_navi1 ul ul ul li.active a:active {
   color: rgb(255,255,255);
   font-weight: bold;
   background: rgb(206,131,68);
}

.nlu_navi1 ul ul ul li a:hover,
.nlu_navi1 ul ul ul li.sub_no a:hover,
.nlu_navi1 ul ul ul li.sub_ul a:hover,
.nlu_navi1 ul ul ul li.active a:hover {
   color: rgb(255,255,255);
/*   text-decoration: underline; */
   background: rgb(206,131,68);
}
/*==== END LEVEL X ============================================= */

/* Holly Hack. IE Requirement \*/
* html .nlu_navi1 ul li { float: left; height: 1%; }
* html .nlu_navi1 ul li a { height: 1%; }
/* End */

/* ==== End  nlu_navi1_========================================= */