#relPrdDCGroup>ul {
	display:block!important;
}
li#relPrdDCGroup ul>li{
	padding:0px;
	list-style: none;
}
$(document).ajaxComplete(function () {
  const path = location.pathname;

  $('#lhsTree a[href]').each(function () {
    if (path.includes(this.getAttribute('href'))) {
      $(this).addClass('feaact')
        .closest('li').addClass('menu-active')
        .closest('.drop')
        .children('span').addClass('dropact')
        .siblings('ul').show();
    }
  });
});
