﻿div#menu_links {
  width: 200px;         
}

div#menu_links ul {
	/*background-color: #003300;*/
	list-style-type: none; /* get rid of the bullets */;
	padding: 0;
/* no padding */	margin: 0;
	color: #D7E399;

  padding:0;             /* no padding */
  margin:0;              /* no margin for IE either */
}

div#menu_links ul li {
  margin: 0;
  padding: 0;
  /*background-color: #036;*/
  display:block;
  border-top: 0; /* lines */
}

div#menu_links ul li a {
	display: block; /* lines extend to right, make area clickable */;
	color: #003300;
	background-color: #CCCC99;
	/*padding: 3px 3px 3px 23px;*/
	margin: 0;
	text-decoration: none;
	height: 25px;           /* hint for IE, alternatively remove whitespace from HTML */
}

div#menu_links ul ul li a {
  margin-left: 30px;     /* indent level 1 */
  

}

div#menu_links ul ul ul li a {
  margin-left: 60px;     /* indent level 2 */
  
}

div#menu_links li ul, div#menu_links li.open li.closed ul {
  display: none;         /* collapse */
}

div#menu_links li.open ul {
  display: block;         /*expand */
}
 
/*div#menu_links ul li.open a {
  background-image: url("../bullet_open.gif");
  background-repeat: no-repeat;
}

div#menu_links ul li.closed a {
  background-image: url("../bullet_closed.gif");
  background-repeat: no-repeat;
}

div#menu_links ul li.leaf a {
  background-image: url("../bullet_leaf.gif");

  background-repeat: no-repeat;
  */
}
 
div#menu_links li.active a {
	background-position: 0px -20px;
	color: #FF0000;            /* highlight text */
}
 
div#menu_links li.active li a {
  background-position: 0px 0px;
  color: #003300;          /* fix lower levels */
}

div#menu_links ul li a:hover {
	color: #FFFFCC;
	background-color: #CC3300; /* rollover effect */
}
