You could add the following check around the content-building portion of /includes/templates/YOUR_TEMPLATE/sideboxes/tpl_YOUR_SIDEBOX.php to limit its display to categories listings pages with a master-categories value of 77:
Code:
if ($current_page_base == 'index' && $categories_depth == 'nested' && strpos ('77_', $cPath) === 0) {
... normal processing ...
}
Please note the use of the === (exactly equal) operator on the last clause.
If you want to display the content on product-listing pages, too, just remove the && $categories_depth == 'nested' portion.