I can't really see any ads on your page but I can give you some tips that might be helpful. If a value is 0 (zero) just write 0 without the unit:
Code:
.rightads {
float: left;
position: relative;
text-align: center;
width: 150px;
margin-left: 0;
margin-bottom: 10px;
margin-top: -87px;
padding: 0;
}
.rightads_container {
padding-left: 0;
padding-top: 10px;
}
.rightads_ad {
margin: 0 0 10px 0;
padding: 0;
}
Also, it's good practice not use padding on an element that has a specified width since IE sometimes has problems with that. Instead you could wrap the content inside that element in another container and give that container a margin.
Good luck!
Bookmarks