Also, I found out the hard way it does matter what order you have the rounded corners appear, in the CSS script.
PHP Code:
/* Safari,Chrome*/
-webkit-border-radius:5px;
/* Firefox*/
-moz-border-radius:5px;
/* IE, Opera*/
border-radius:5px;
We have to list the webkit and mozilla definitions first apparently, then the IE/Opera one last, otherwise the first two get ignored by Safari/Chrome for some reason.