.arrowlistmenu {
  width: 251px; /*width of accordion menu*/
  margin: 0 auto 10px;
}

.arrowlistmenu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
  display: block;
  margin-bottom: 3px; /*bottom spacing between header and rest of content*/
  cursor: hand;
  cursor: pointer;
}

.categoryitems {
  width: 251px;
  padding: 5px 0;
}

.categoryitems ul, .categoryitems li { /*CSS for UL of each sub menu*/
  margin: 0;
  padding: 0;
  list-style: none;
}

.categoryitems li {
  display: block;
  width: 231px;
  padding: 0 10px;
}

.categoryitems ul li a {
  display: block;
  padding: 0 0 5px;
  border-bottom: solid 1px #d9d9d9;
  color: #808080;
  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: #cc0000;
}

.categoryitems ul li a.matched {
  font-weight: bold;
  color: #cc0000;
}



