Section Two - Fixed

The original problem was that the icon and name on the right edge of the light blue navigaiton bar were not visible in IE6/Windows.

This page is now fixed thanks to the help of the good people on the CSS-Discuss mailing list (Thanks Gunlaug, Els, and Holly!)

Instead of absolutely positioning the ".contact" div above, I float it into place, and things work a charm:

/* Changes from Gunlaug Sørtun */
/*
#perm {
    position: absolute;
    right: 10px;
    top: 5px;
    height: 40px;
}
*/
#perm {
    float: right; 
    margin: 5px 10px -100px 0; 
    height: 40px;
}
#navbar #perm .contact {
    position: relative; /* Thanks Gunlaug! */
    display: block;
    padding-top: 10px;
    padding-left: 25px;
    background: url(../images/icon/balloon.gif) no-repeat center left;
    z-index: 300;
}