Miles: Have you read the readme.html file? Open it in your browser for best results.

Post a link to your site and indicate exactly what you want to do and where, and I can give some pointers.

Mthem: You appear to have solved the Barbara Bui and Gucci problems (I don't see anything wrong in Firefox.)

For the dotted lines, there are a couple of ways to do it. You can find in stylesheet_categories_dressing.css this declaration
Code:
#categories a {
    background-repeat: no-repeat;
    display: block;
    }
and add
border-bottom: 1px dotted #6699aa;
to get
Code:
#categories a {
    background-repeat: no-repeat;
    display: block;
    border-bottom: 1px dotted #6699aa;
    }
This will put a dotted line beneath every category and subcategory. You would then want to turn off the "Categories Separator Between Links" in admin > Configuration > Layout Settings.

Or you could correctly add your list of categories (in the comment in your posted tpl_categories) to the explode() function. I'm not sure how your SEO mod will interact with these, but you probably need to use the actual cPath for each category, not just its id.