div#s1 {
    width: 180px;          /* menu width */
	font-size: 0.9em;
	font-weight: bold;
	background: #fff;
	height: auto;
	float: left;
}

div#s1 ul {
  background-color: transparent;
  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: #036;
  display:block;
  border-top: 1px solid white; /* lines */
}

/*///////////// Link UL classes - (MAIN LINKS) /////////////////*/

div#s1 ul li.purple{
  margin: 0;
  padding: 0;
  background-color: #745990;
  display:block;
  border-top: 1px solid white; /* lines */
}

div#s1 ul li.green{
  margin: 0;
  padding: 0;
  background-color: #59AC59;
  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: #036;
  padding: 3px 3px 3px 23px;
  margin:0;
  text-decoration: none;
  height:15px;           /* hint for IE, alternatively remove whitespace from HTML */
}


/*///////////////////////// A classes for link colours //////////////////////////////////*/


div#s1 ul li a.purple {
  display: block;         /* lines extend to right, make area clickable */
  color: white;
  background-color: #745990;
  padding: 3px 3px 3px 10px;
  margin:0;
  text-decoration: none;
  height:15px;           /* hint for IE, alternatively remove whitespace from HTML */
}

div#s1 ul li a.green {
  display: block;         /* lines extend to right, make area clickable */
  color: #fff;
  background-color: #59AC59;
  padding: 3px 3px 3px 30px;
  margin:0;
  text-decoration: none;
  height:15px;           /* hint for IE, alternatively remove whitespace from HTML */
}


/*/////////////////////////////////////////////////////////////////////////////////////*/

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 {
color: #fff;
 /* background-image: url(images/faded_arrow2.gif);/*/
  background-repeat: no-repeat;
  /*background-position: right;*/
}


div#s1 ul li.closed a {
color: #fff;
 /* background-image: url(images/faded_arrow1.gif);*/
  background-repeat: no-repeat;
  /*background-position: right;*/
}


div#s1 ul li.leaf a {
   background-image: url(images/bullet_leaf2.gif);
   background-repeat: no-repeat;
}

 
div#s1 li.active a {
  background-position: 10px -18px;
  color: purple;            /* highlight text */
}
 
div#s1 li.active li a {
  background-position: 0px 0px;
  color: white;          /* fix lower levels */
}

div#s1 ul li a:hover 
{
  color: white; 
  /*background-color: #06C;  rollover effect */
}

div#s1 ul li.leaf a:hover 
{
  color: white; 
  background-color: #6CBB6C; 
}