.suckertreemenu ul {
  margin: 0px 0 0 0px;
  padding: 0px;
  list-style-type: none;
  height: 26px;
}

/*Top level list items*/
.suckertreemenu ul li {
  position: relative;
  display: inline;
  float: left;
  z-index: 100;
}

/*Top level menu link items style*/
.suckertreemenu ul li a {
  display: block;
  width: 113px; /*Width of top level menu link items*/
  margin: 0px 0px 0px 35px;
  text-decoration: none;
  color: #333333;
  text-align: left;
  z-index: 100;
  font: bold 12px arial;
}

/*1st sub level menu*/
.suckertreemenu ul li ul {
  position: absolute;
  top: 1em; /* no need to change, as true value set by script */
  display: block;
  visibility: hidden;
  background-color:#d7d7d7;
  padding: 2px;
  height: auto;
  width: 150px;
  margin: 0 0 0 35px;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li {
  display: list-item;
  float: none;
  border-bottom: 1px solid #eaeaea;
  background-color: #fd7d7d7;
  padding: 4px;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.suckertreemenu ul li ul li ul {
  left: 113px; /* no need to change, as true value set by script */
  top: 0;
}

/* Sub level menu links style */
.suckertreemenu ul li ul li a {
  display: block;
  width: 113px; /*width of sub menu levels*/
  text-decoration: none;
  padding: 1px 0px;
}

.suckertreemenu ul li a:hover {
  background-color: #d7d7d7; /*Rolover*/
}

/*Background image for top level menu list links */
.suckertreemenu .mainfoldericon {

}

/*Background image for subsequent level menu list links */
.suckertreemenu .subfoldericon {
  background-color:#ffffff;
}

* html p#iepara { /*For a paragraph (if any) that immediately follows suckertree menu, add 1em top spacing between the two in IE*/
  padding-top: 1em;
}

/* Holly Hack for IE \*/
* html .suckertreemenu ul li {
  float: left;
  height: 1%;
}

* html .suckertreemenu ul li a {
  height: 1%;
}
/* End */