div#s1 {
  width: 170px;          /* menu width */
}

div#s1 ul {
	background-color: #AABFAA;
	list-style-type: none; /* get rid of the bullets */
	padding: 0; /* no padding */
	margin: 0; /* no margin for IE either */
	font-family: "Century Gothic";
	font-size: 12px;
	outline:none;
	
}

div#s1 ul li {
  margin: 0;
  padding: 0;
  background-color: #AABFAA;
  display:block;
  border-top: 1px solid white; /* lines */
  outline:none;
  
}

div#s1 ul li a {
  display: block;         /* lines extend to right, make area clickable */
  color: white;
  background-color: #AABFAA;
  padding: 3px 3px 3px 23px;
  margin:0;
  text-decoration: none;
  height:15px;           /* hint for IE, alternatively remove whitespace from HTML */
  outline:none;
}

div#s1 ul ul li a {
  margin-left: 20px;     /* indent level 1 */
	font-family: "Century Gothic";
	font-size: 10px;
	outline:none;
	}

div#s1 ul ul ul li a {
  margin-left: 40px;     /* indent level 2 */
  outline:none;
  
}

div#s1 li ul, div#s1 li.open li.closed ul {
  display: none;         /* collapse */
  outline:none;
  
}

div#s1 li.open ul {
  display: block;        /* expand */
  outline:none;
  
}
 
div#s1 ul li.open a {
  background-image: url(bullet_open.gif);
  background-repeat: no-repeat;
  outline:none;
  
}

div#s1 ul li.closed a {
  background-image: url(bullet_closed.gif);
  background-repeat: no-repeat;
  outline:none;
 
  
}

div#s1 ul li.leaf a {
  background-image: url(bullet_leaf.gif);
  background-repeat: no-repeat;
  outline:none;
  
}
 
div#s1 li.active a {
  background-position: 0px -20px;
  color: #464B34;            /* highlight text */
  outline:none;
}
 
div#s1 li.active li a {
  background-position: 0px 0px;
  color: white;          /* fix lower levels */
  outline:none;
}

div#s1 ul li a:hover {
  color: #464B34;
  background-color: #CAD8CA; /* rollover effect */
 
}