div#s1 {
  width: 120px;          /* menu width */
  height: 385px;
  background-color: #514457;
}

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

div#s1 ul li {
  margin: 0;
  padding: 0;
  display:block;
  border-top: 0px solid white; /* lines */
}

div#s1 ul li a {
  display: block;        
  color: white;
  background-color: #514457;
  padding: 3px 3px 3px 20px;
  margin:0;
  font-weight: bold;
  text-decoration: none;
  height:15px;           
}

div#s2 {
  width: 120px; 
  background-color: #514457;
}

div#s2 ul {
  background-color: #036;
  list-style-type: none; 
  padding:0;             
  margin:0;             
}

div#s2 ul li {
  margin: 0;
  padding: 0;
  background-color: #036;
  display:block;
  border-top: 0px solid white;
}

div#s2 ul li a {
  display: block;         /* lines extend to right, make area clickable */
  color: white;
  background-color: #514457;
  padding: 3px 3px 3px 3px; /* top, bottom, right, left */
  margin:0;
  font-weight: bold;
  text-decoration: none;
  height: 15px;           
}

div#s1 ul ul li a {
  margin-left: 5px;     /* indent level 1 */
  font-size: 0.8em;
}

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

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

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

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

div#s1 ul li a:hover {
  color: red;
  background-color: #06C; /* rollover effect */
}