div#s1 {
    width: 174px; /* 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;
}

div#s1 ul li a {
	display: block; /* lines extend to right, make area clickable */
	color: #3bae2c;
	margin:0;
	text-decoration: none;
	padding-top: 3px;
	padding-right: 3px;
	padding-bottom: 6px;
	padding-left: 23px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #EBEBEB;
	background-color: #FFFFFF;
	background-image: url(arrows.gif);
	background-repeat: no-repeat;
	background-position: 8px;
}

div#s1 ul ul li a {
    margin-left: 20px;     /* indent level 1 */

}

div#s1 ul li a:hover {
    color: #FFFFFF;  
    background-color: #3bae2c; /* rollover effect */
}

div#s1 li ul, div#s1 li.open li.closed ul 
{
    display: none;         /* collapse */
}

div#s1 li.open ul 
{
    display: block;        /* expand */
}

div#s1 li.active a {
    color: #003300;            /* highlight text */
} 

div#s1 li.active li a {
    color: #336699;          /* fix lower levels */
}