#menue1 {
  width:724px; 
  height:31px; 
  position:relative; 
  z-index:100;
  float: left;
}
/* remove all the bullets, borders and padding from the default list styling */
#menue1 ul {
  padding:0;
  margin:0;
  list-style-type:none;
}
#menue1 ul ul {
  width:149px;
}
/* float the list to make it horizontal and a relative positon so that you can control the dropdown menu positon */
#menue1 li {
  float:left;
  width: auto;
  position:relative;
}
:root #menue1 ul li.lilevel1 {
  margin-right: -9px;
}
/** html #menue1 li {
  width: 50px;
}*/
/* style the links for the top level */
#menue1 a, #menue1 a:visited {
/*  display:block;*/
  font-size:13px;
  text-decoration:none; 
  color:#343434; 
  width: auto;
  padding: 0 10px 7px 10px; 
  line-height:31px; 
  font-weight:bold;
}
:root #menue1 ul ul li {
  margin-right: 0;
}
#menue1 ul li.active a, #menue1 ul li.active a:visited {
  color: #007a48;
}
#menue1 ul li.active ul a, #menue1 ul li.active ul a:visited {
  color: #343434;
}
#menue1 ul li.active ul li.active a, #menue1 ul li.active ul li.active a:visited {
  color: #007a48;
  font-weight: bold;
}
/** html #menue1 a, * html #menue1 a:visited {
  width: 50px;
}*/
/* style the second level background */
#menue1 ul ul a, #menue1 ul ul a:visited {
  background-color: #d1d1d1;
  display: block;
}
/* style the second level hover */
#menue1 ul ul a:hover, #menue1 ul li.active ul a:hover{
  color: #007a48;
}
#menue1 ul ul :hover > a {
}
/* style the third level background */
#menue1 ul ul ul a, #menue1 ul ul ul a:visited {
  background-color:#e2dfa8;
}
/* style the third level hover */
#menue1 ul ul ul a:hover {
  background-color:#b2ab9b;
}

/* hide the sub levels and give them a positon absolute so that they take up no room */
#menue1 ul ul {
  visibility:hidden;
  position:absolute;
  height:0;
  top:31px;
  left:0; 
  width:149px;
}

/* position the third level flyout menu */
#menue1 ul ul ul{
  left:149px; 
  top:-1px; 
  width:149px;
}

/* position the third level flyout menu for a left flyout */
#menue1 ul ul ul.left {
  left:-149px;
}

/* style the table so that it takes no part in the layout - required for IE to work */
#menue1 table {  position:absolute; top:0; left:0; border-collapse:collapse;  }

/* style the second level links */
#menue1 ul ul a, #menue1 ul ul a:visited {
  background-color:#d1d1d1; 
  color:#000; 
  height:auto; 
  line-height:1em; 
  padding:4px 10px; 
  width:128px;
  border-width:0 1px 1px 1px;
  font-weight: normal;
}
/* yet another hack for IE5.5 */
* html #menue1 ul ul a, * html #menue1 ul ul a:visited {
  width:150px;
  w\idth:128px;
}

/* style the top level hover */
#menue1 a:hover, #menue1 ul ul a:hover{
  color: #007a48;
}
#menue1 :hover > a, #menue1 ul ul :hover > a {
  color: #007a48;
}

/*.menu ul li:hover ul,
.menu ul.level1 a.level1:hover ul.level2,
.menu a.level1:hover{}
*/
/* make the second level visible when hover on first level list OR link */
#menue1 ul li:hover ul,
#menue1 ul a:hover ul,
#menue1 a.level1:hover{
  visibility:visible;
}
/* keep the third level hidden when you hover on first level list OR link */
#menue1 ul :hover ul ul{
  visibility:hidden;
}
/* make the third level visible when you hover over second level list OR link */
#menue1 ul :hover ul :hover ul{ 
  visibility:visible;
}
