div#s1 {
  width: 230px;          /* 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;
  color: #09188A; /* text blue */
  border-top: 1px solid white; /* lines */
}

div#s1 ul li a {
  display: block;         /* lines extend to right, make area clickable */
  padding: 3px 3px 3px 5px;
  margin:0;
  text-decoration: none;
  height:21px;           /* hint for IE, alternatively remove whitespace from HTML */
}

div#s1 ul ul li a {
  margin-left: 10px;     /* indent level 1 */
}

div#s1 ul ul ul li a {
  margin-left: 15px;     /* 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 */
  background-color:#eee;
}
 
div#s1 li.active a {
  background-position: 0px -5px;
  color: #981A31;            /* highlight text red */
}
 
div#s1 li.active li a {
  background-position: 0px 0px;
  color: #981A31;          /* fix lower levels red */
}

div#s1 li.active li li li li a {
  background-position: 0px 0px;
  color: #981A31;          /* fix lower levels red */
}

div#s1 ul li a:hover {
  color: #4467B0;  /* rollover effect lt blue */
  margin-left:2px;
}
div#s1 ul ul li a:hover {
  margin-left: 12px;     /* rollover effect level 1 */
}

div#s1 ul ul ul li a:hover {
  margin-left: 17px;     /* rollover effect level 2 */
}