I guess not everyone will have seen the thread at:
http://www.viart.com/a_new_css_reference_table.html
I proposed an annotated CSS file which would help to guide us on each section [Example below] - we may need more than this if the CSS file is too complex?
========================== suggestion =============
/* a little spacing above and below the links in the Account Options block */
.acct_options div.nav_link_container {
margin-top: 10px;
margin-bottom: 10px;
}
/* fix margins for best sellers ol */
.best_sellers ol {
margin: 0px;
padding-left: 27px;
text-align: left;
}
.best_sellers ol li {
vertical-align: top;
margin-bottom: 5px;
}
/* move the links a little closer to the bullets */
.best_sellers a {
position: relative;
left: -5px;
}
/* fix alignment of text with numbered bullet for IE only */
* html .best_sellers a {
position: relative;
top: -2px;
}
/* table that contains subcategory links, below category detail */
.subcategory_table {
width: 100%;
}