div#s1 {
	width: 182px;
	color: #000;
	margin-left: 10px;
	font: bold 1em Arial, Helvetica, Geneva, sans-serif;
}

div#s1 ul {
  background-color: #FAF0DC;
  list-style-type: none; /* get rid of the bullets */
  padding:0;             /* no padding */
  margin:0;
}

div#s1 ul li {
  margin: 0;
  padding: 0;
  background-color: #FAF0DC;
  display:block;
}

div#s1 ul li a {
  display: block;         /* lines extend to right, make area clickable */
  color: black;
  background-color: #FAF0DC;
  margin:0;
  text-decoration: none;
  height: auto;
	padding: 8px 3px 8px 8px;
	border-bottom: 1px dashed olive;
}

div#s1 ul ul li a {
  margin-left: 20px;     /* indent level 1 */
}

div#s1 ul ul ul li a {
  margin-left: 40px;     /* 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-repeat: no-repeat;
}
 
div#s1 li.active a {
  background-position: 0px -20px;
  color: white;            /* highlight text */
  background-color: #FFBF00; /* rollover effect */

}
 
div#s1 li.active li a {
  background-position: 0px 0px;
  color: white;          /* fix lower levels */
  background-color: #FFBF00; /* rollover effect */

}

div#s1 ul li a:hover {
  color: #000000;
  background-color: #F7E5BD; /* rollover effect */
}
