.arrowlistmenu{
  width: 200px; /*width of accordion menu*/
  margin-bottom: 10px;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
  display: block;
  margin-bottom: 2px; /*bottom spacing between header and rest of content*/
  cursor: hand;
  cursor: pointer;
}

.categoryitems {
  width: 200px;
  background: #714528;
  padding: 5px 0;
  margin-bottom: 2px;
}

.categoryitems ul, .categoryitems li { /*CSS for UL of each sub menu*/
  margin: 0;
  padding: 0;
  list-style: none;
}


.categoryitems ul {
  margin-left: 15px;
}

.categoryitems ul li a {
  color: #fffefe;
  font-family: arial;
  font-size: 12px;
  line-height: 18px;
  text-decoration: none;
}

.categoryitems ul li a:visited{

}

.categoryitems ul li a:hover{ /*hover state CSS*/
  color: #d4b39e;
}

.categoryitems ul li a.matched {
  font-weight: bold;
  color: #d4b39e;
}



