/**
 * Ueber diesen Selektor richten wir den Container auf der
 * linken Seite aus
 **/
 div#containerLinks {
	  float:left;
	  overflow:hidden;
	  margin:8px 0px 0px 0px;
	  padding:0px 0px 0px 0px;
}

/** 
 * Ueber diesen Selektor legen wir fest ob die linke Spalte einen
 * weissen Border erhalten soll. In diesem Falle ja.
 **/
 .containerLinks {
	 width:183px;
	 border-left-width:1px;
	 border-left-style:solid;
	 border-right-width:1px;
	 border-right-style:solid;
	 border-bottom-width:1px;
	 border-bottom-style:solid;
}

/**
 * HauptListe der Navigations-Elemente
 **/
 ul#navigationsEbene3 {
	 float:left;
	 margin:0px 0px 0px 0px;
	 padding:0px 0px 0px 0px;
}

/**
 * Unterliste der Navigations-Elemente
 **/
 ul#navigationsEbene3 ul {
	 float:left;
	 margin:0px 0px 0px 0px;
	 padding:0px 0px 5px 0px;
	 border:0px;
     width:183px;
}

/**
 * UnterUnterliste der Unterliste
 **/
 ul#navigationsEbene3 ul ul {
	 float:left;
	 margin:0px 0px 0px 0px;
	 padding:0px 0px 0px 0px;
	 background:url();
}

/**
 * Listen-Element 1 Herachie
 **/
 #navigationsEbene3 li {
	 float:left;
	 list-style-type:none;
}

/**
 * Listen-Element 1 und 2 Herachie
 **/
 #navigationsEbene3 li li, 
 #navigationsEbene3 li li li {
	 float:left;
	 list-style-type:none;
}

/**
 * Link 1 Herachie
 **/
 #navigationsEbene3 li a {
	 width:178px;
	 display:block;
	 margin:0px;
	 padding:4px 0px 4px 5px;
	 border-bottom-width:1px;
	 border-bottom-style:solid;
	 font-size:8pt;
}

/**
 * Link 1 Herachie (ganz oben, immer aktiv)
 **/
 #navigationsEbene3 li a.first {
	 font-weight:bold;
	 padding:5px 0px 5px 8px;
	 font-size:12px;
}

/**
 * Link 1 Herachie (aktiv)
 **/
 #navigationsEbene3 li a.aktiv {
	 padding-left:16px;
	 font-weight:bold;
	 width:167px;
}

/**
 * Link 2 Herachie
 **/
 #navigationsEbene3 li ul li a {
	 display:block;
	 margin:0px;
	 padding:3px 0px 3px 15px;
	 width:168px;
	 border:0px;
}

/**
 * Link 2 Herachie (aktiv)
 **/
 #navigationsEbene3 li ul li a.aktiv {
	 padding:3px 0px 3px 15px;
	 font-weight:normal;
	 width:168px;
}

/**
 * Link 3 Herachie
 **/
 #navigationsEbene3 li ul li ul a {
	 display:blocK;
	 margin:0px;
	 width:155px;
	 padding:3px 0px 3px 28px;
	 border:0px;
	 font-size:8pt;
}

/**
 * Link 3 Herachie (aktiv)
 **/
 #navigationsEbene3 li ul li ul a.aktiv {
	 padding:3px 0px 3px 28px;
	 width:155px;
}

/**
 * Link Hover 2 und 3 Herachie
 **/
 #navigationsEbene3 li ul li a:hover,
 #navigationsEbene3 li ul li ul a:hover {
	 text-decoration:underline;
}

/**
 * Wird als Platzhalter genutzt wenn die Linke Navigation nicht
 * eingeblendet werden soll. (N.P)
 **/
.containerLinksDummy {
         width:185px;
}

