/*
  Following part deals with the navigation in div with id "navContainer"
*/

.navigationBorder{  /* Start and End of Navigation with gradient */
  width: 175px;
 text-align: center;
 margin-top:0px;
}
* html .navigationBorder {margin-top: 0px;}

.navigationBorder#naviHead{  /* Header */
  background-color: #ffffff;
  border-bottom: 1px dotted #cecece;
  height: 0px;
}

.navigationBorder#content{  /* Content */
  background-color: #ffffff;
 height: 100%;
}

.navigationBorder#naviMiddle{  /* after Submenu */
  height: 0px;
  background-color: #ffffff;
}

.navigationBorder#naviFoot{  /* Footer */
  height: 0px;
  border-top: 0px solid #cecece;
  background-color: #ffffff;
}

#navContainer{  /* contains the menu */
  clear: both;
  width: 190px;
  padding-right: 5px;
  border: 1px;
}

/*
  navigation level 1
*/
#navContainer ul{
  margin: 0px;
  padding: 0px;
  list-style-type: none;
     font-size:12px;
}


#navContainer ul li{
  background-color: #ffffff;
}

#navContainer ul li#li_nav1_open{  /* special layout for open links */
  background-color: #ffffff;
}


#navContainer ul li a{
  display: block;
  background-repeat: no-repeat;
  height: 20px;
  padding-left: 20px;
  padding-top: 3px;
  color: #000000;
/*  line-height: 20px; */
  text-decoration: none;
  text-align: left;
  background-color: #ffffff;
  font-weight: bold; 
  border-top: 0px solid #cecece;
  border-bottom: 1px dotted #cecece;
 background-image: url("img/navLinkLevel_01.gif");

}

#navContainer ul li a:hover, #navContainer ul li a:focus{
  color: #007772;
  background-color: #e7e7e7;

}

#navContainer ul li a#a_nav1_open, #navContainer ul li a:hover#a_nav1_open{
  color: #007772;

}
/*
  Design for submenu
*/
#navContainer li li{
  background-color: #cecece;
  line-height: 20px;
}

/*
#navContainer ul ul a{
  display: block;
  background-repeat: no-repeat;
  height: 15px;
  line-height: 15px;
  padding: 0px;
  padding-left: 35px;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #000;
  border-bottom: 1px solid #cecece;
  border-top: none;
  font-size: 10px;
  text-decoration: none;
  font-weight: bold; 
  background-image: none;
}
*/

#navContainer ul ul a{
  display: block;
  background-repeat: no-repeat;
  padding: 0px;
  padding-left: 35px;
  color: #000;
  border-bottom: 1px dotted #cecece;
/*  border-bottom: none ! important; */
  border-top: none ! important;
  font-size: 10px;
  text-decoration: none;
  font-weight: bold; 
  background-image: none;
}

#navContainer ul ul a:hover, #navContainer ul ul a:focus, #navContainer ul ul a#a_nav2_open{
  color: #007772;
 background-image: url("img/navLinkLevel_02.gif");

}


