div#s1 {
  width: 153px;
  padding:10px 0 0 38px;          /* menu width */
}

div#s1 ul {
  list-style-type: none; /* get rid of the bullets */
  padding:0;             /* no padding */
  margin:0;              /* no margin for IE either */
}

div#s1 ul li {
  margin: 0;
  padding: 0;
  display:block;
}

div#s1 ul li a {
  display: block;         /* lines extend to right, make area clickable */
  color: white;
  margin:0;
  padding:0;
  font:bold 12px Arial, Helvetica, sans-serif;
  text-decoration: none;
  height:16px;           /* hint for IE, alternatively remove whitespace from HTML */
}

div#s1 ul ul {
  margin:5px 0 2px 0;
  padding:0;
  list-style-image:url("../img/nav_li.gif");
}

div#s1 ul ul li {
  padding: 0;
  margin:0 0 0 25px;
}

div#s1 ul ul li a {
  margin: 0px;     /* indent level 1 */
  padding:0;
  font:bold 11px Arial, Helvetica, sans-serif;
  line-height:11px;
  height:13px;
}

div#s1 ul ul ul li a {
  margin-left: 0px;     /* indent level 2 */
}

div#s1 li ul, div#s1 li.open li.closed ul {
  display: none;         /* collapse */
}

div#s1 li.open ul {
  display: block;        /* expand */
}
 
div#s1 ul li.open a {
  background-image: url(bullet_open.gif);
  background-repeat: no-repeat;
}

div#s1 ul li.closed a {
  background-image: url(bullet_closed.gif);
  background-repeat: no-repeat;
}

div#s1 ul li.leaf a {
  background-image: url(bullet_leaf.gif);
  background-repeat: no-repeat;
}
 
div#s1 li.active a {
  background-position: 0px 0px;
  color: #ffb847;            /* highlight text */
}
 
div#s1 li.active li a {
  background-position: 0px 0px;
  color: white;          /* fix lower levels */
}

div#s1 ul li a:hover {
  color: #ffb847; /* rollover effect */
}
