List of bugs on IE and solutions:
Text to long, to many characters next to eahc other with out space bettwen them(this propertie seems that is not recognised by FF, but works for IE)
{
word-wrap:word-break;
}
Missing bullets in li list items
ul {
float:left;
}
Divs placed in odd places
parent div {
position:relative;
}
The <a> element inside list seems to have an extra padding, I think is because property applied to him in js code of the module, one fast solution is to add a negative margin to the <a> element.
CSS code:
div.block ul li a {
*margin-left:-20px;
}