I see several things not to like in your short bit of code:
a.link {
cursor: pointer;
}
Why are you defining the default behavior?
#wrapper {
margin: 0 auto;
style: cursor:default;
}
That's a broken rule (remove the "style:"). And then again, why are you explicitly defining the default behavior? A container element does only shows an arrow (the default) on mouseover.
#display {
float: left;
padding-top: 268px;
padding-left: 28px;
z-index:1000;
}
z-index only applies to elements with fixed/relative/absolute positioning. In this case it's not only unnecessary but it also is ineffective.
#right {
float:left;
padding-top: 268px;
padding-left: 348px;
position:fixed;
z-index:-1;
}
In some cases a negative z-index will place elements BELOW the plane of the page, hence invisible. You should avoid negative values here unless you really know what you are doing.
Finally, this code should work to suppress the pointer for that hotspot.
<area shape="rect" coords="3,436,103,472" href="Phone2.html" style="cursor:default">