function ShowPlatform() {
  var sPlatform = navigator.platform.substr(0, 3);
  if (sPlatform == "Mac") {
    document.write ('<style type="text/css"> li {padding-top: 2px;}</style>');
  } 
}
ShowPlatform();
