(function() {
var ua = navigator.userAgent || "";
var isIpad = /iPad/.test(ua) || (navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1);
if (isIpad) {
document.querySelectorAll('.pdf-embed').forEach(function(el){ el.style.display = 'none'; });
document.querySelectorAll('.pdf-ipad-link').forEach(function(el){ el.style.display = 'block'; });
}
})();