div#s1 {
  width: 157px;          /* menu width */
}

div#s1 ul {
font-family: Arial, sans-serif; /*  Font Formatting .. */
font-size: 11px;
font-style:normal;
font-weight:bold;
  background-color: #C18B41;
  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;
  background-color: #C18B41;
  display:block;
  border-top: 1px solid white; /* lines */
}

div#s1 ul li a {
  display: block;         /* lines extend to right, make area clickable */
  color: white;
  background-color: #C18B41; /* Active Background Color */
  padding: 3px 10px 3px 20px;
  margin:0;
  text-decoration: none;
  height:20px;           /* hint for IE, alternatively remove whitespace from HTML */
}

div#s1 ul ul li a {
  margin-left: 0px;     /* indent level 1 - Original indent was 20 px */
}

div#s1 ul ul ul li a {
  margin-left: 23px;     /* 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(images/bullet_open.gif);
  background-repeat: no-repeat;
  background-color: #A37C4A; /* Background Color for Sub Menus that are open*/
}

div#s1 ul li.closed a {
  background-image: url(images/bullet_closed.gif);
  background-repeat: no-repeat;
    background-position: 0px 5px;
 color: white;
 }

div#s1 ul li.leaf a {
font-family: Arial, sans-serif; /*  Font Formatting .. */
font-size: 11px;
font-style:normal;
font-weight:bold;
  background-image: url(images/bullet_leaf.gif);
  background-repeat: no-repeat;
}
 
div#s1 li.active a {
font-family: Arial, sans-serif; /* Menu Heading Font Formatting for link with sub menus.. */
font-size: 11px;
font-style:normal;
font-weight:bold;
  background-position: 0px -15px;
  color: black;            /* highlight text */
}
 
div#s1 li.active li a {
font-family: Arial, sans-serif; /*  Font Formatting .. */
font-size: 11px;
font-style:normal;
font-weight:bold;
  background-position: 0px 0px;
  color: black;          /* Sub menu font color */
  background-color: #A37C4A; /* Sub menu Background Color */
}

div#s1 ul li a:hover {
font-family: Arial, sans-serif; /* Rollover Font Formatting .. */
font-size: 11px;
font-style:normal;
font-weight:bold;
  color: tan; /* rollover Font Color effect */
  background-color: ; /* rollover Background Color effect */
}
