/*
jQuery(document).ready(function($) {
  $("a").hover(function() {
    $(this).css("background-color", "red");
  }, function() {
    $(this).css("background-color", "#fff");
  });
});
*/
jQuery(document).ready(function($) {
  $("div.pds-box").css("margin-left", "auto");
  $("div.pds-box").css("margin-right", "auto");
  $("a.pds-pd-link").css("display", "none");
});