div#s1 {
  width: 180px;          /* 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 */
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 10px;
}

div#s1 ul li {
  list-style:none;
  margin: 0;
  padding: 0;
  display:block;
}

div#s1 ul li a {
  display: block;         /* lines extend to right, make area clickable */
  color: #ff8c00;
  padding: 2px 3px 2px 10px;
  margin:0;
  text-decoration: none;
 /*  height:15px;           hint for IE, alternatively remove whitespace from HTML */
}

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

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

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

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(nav-test/bullet_open.gif);	
  background-repeat: no-repeat;
}

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

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

div#s1 ul li a:hover {
  color: #78a22f;
  background-color: white; /* rollover effect */
}