shell bypass 403

Cubjrnet7 Shell


name : FlowPaperViewer.js
var Mouse={x:0,y:0,refresh:function(e){if(e&&!this.down&&!jQuery(e.target).hasClass("flowpaper_zoomSlider")){return;}var posx=0,posy=0;if(!e){e=window.event;}if(e.pageX||e.pageY){posx=e.pageX;posy=e.pageY;}else{if(e.clientX||e.clientY){posx=e.clientX+document.body.scrollLeft+document.documentElement.scrollLeft;posy=e.clientY+document.body.scrollTop+document.documentElement.scrollTop;}}this.x=posx;this.y=posy;}};var mouseMoveHandler=document.onmousemove||function(){};document.onmousemove=function(e){if(!e){e=window.event;}if(e&&e.which==1){Mouse.down=true;}Mouse.refresh(e);};var MPosition={get:function(obj){var curleft=curtop=0;if(obj.offsetParent){do{curleft+=obj.offsetLeft;curtop+=obj.offsetTop;}while(obj=obj.offsetParent);}return[curleft,curtop];}};var Slider=function(wrapper,options){if(typeof wrapper=="string"){wrapper=document.getElementById(wrapper);}if(!wrapper){return;}var handle=wrapper.getElementsByTagName("div")[0];if(!handle||handle.className.search(/(^|\s)flowpaper_handle(\s|$)/)==-1){return;}this.init(wrapper,handle,options||{});this.setup();};Slider.prototype={init:function(wrapper,handle,options){this.wrapper=wrapper;this.handle=handle;this.options=options;this.value={current:options.value||0,target:options.value||0,prev:-1};this.disabled=options.disabled||false;this.steps=options.steps||0;this.snapping=options.snapping||false;this.speed=options.speed||5;this.callback=options.callback||null;this.animation_callback=options.animation_callback||null;this.bounds={pleft:options.pleft||0,left:0,pright:-(options.pright||0),right:0,width:0,diff:0};this.offset={wrapper:0,mouse:0,target:0,current:0,prev:-9999};this.dragging=false;this.tapping=false;},setup:function(){var self=this;this.wrapper.onselectstart=function(){return false;};this.handle.onmousedown=function(e){self.preventDefaults(e,true);this.focus();self.handleMouseDownHandler(e);};this.wrapper.onmousedown=function(e){self.preventDefaults(e);self.wrapperMouseDownHandler(e);};var mouseUpHandler=document.onmouseup||function(){};if(document.addEventListener){document.addEventListener("mouseup",function(e){if(self.dragging){mouseUpHandler(e);self.preventDefaults(e);self.documentMouseUpHandler(e);}});}else{document.onmouseup=function(e){if(self.dragging){mouseUpHandler(e);self.preventDefaults(e);self.documentMouseUpHandler(e);}};}var resizeHandler=document.onresize||function(){};window.onresize=function(e){resizeHandler(e);self.setWrapperOffset();self.setBounds();};this.setWrapperOffset();if(!this.bounds.pleft&&!this.bounds.pright){this.bounds.pleft=MPosition.get(this.handle)[0]-this.offset.wrapper;this.bounds.pright=-this.bounds.pleft;}this.setBounds();this.setSteps();this.interval=setInterval(function(){self.animate();},100);self.animate(false,true);},setWrapperOffset:function(){this.offset.wrapper=MPosition.get(this.wrapper)[0];},setBounds:function(){this.bounds.left=this.bounds.pleft;this.bounds.right=this.bounds.pright+this.wrapper.offsetWidth;this.bounds.width=this.bounds.right-this.bounds.left;this.bounds.diff=this.bounds.width-this.handle.offsetWidth;},setSteps:function(){if(this.steps>1){this.stepsRatio=[];for(var i=0;i<=this.steps-1;i++){this.stepsRatio[i]=i/(this.steps-1);}}},disable:function(){this.disabled=true;this.handle.className+=" disabled";},enable:function(){this.disabled=false;this.handle.className=this.handle.className.replace(/\s?disabled/g,"");},handleMouseDownHandler:function(e){if(Mouse){Mouse.down=true;Mouse.refresh(e);}var self=this;this.startDrag(e);this.cancelEvent(e);},wrapperMouseDownHandler:function(e){this.startTap();},documentMouseUpHandler:function(e){this.stopDrag();this.stopTap();if(Mouse){Mouse.down=false;}},startTap:function(target){if(this.disabled){return;}if(target===undefined){target=Mouse.x-this.offset.wrapper-this.handle.offsetWidth/2;}this.setOffsetTarget(target);this.tapping=true;},stopTap:function(){if(this.disabled||!this.tapping){return;}this.setOffsetTarget(this.offset.current);this.tapping=false;this.result();},startDrag:function(e){if(!e){e=window.event;}if(this.disabled){return;}this.offset.mouse=Mouse.x-MPosition.get(this.handle)[0];this.dragging=true;if(e.preventDefault){e.preventDefault();}},stopDrag:function(){if(this.disabled||!this.dragging){return;}this.dragging=false;this.result();},feedback:function(){var value=this.value.current;if(this.steps>1&&this.snapping){value=this.getClosestStep(value);}if(value!=this.value.prev){if(typeof this.animation_callback=="function"){this.animation_callback(value);}this.value.prev=value;}},result:function(){var value=this.value.target;if(this.steps>1){value=this.getClosestStep(value);}if(typeof this.callback=="function"){this.callback(value);}},animate:function(onMove,first){if(onMove&&!this.dragging){return;}if(this.dragging){this.setOffsetTarget(Mouse.x-this.offset.mouse-this.offset.wrapper);}this.value.target=Math.max(this.value.target,0);this.value.target=Math.min(this.value.target,1);this.offset.target=this.getOffsetByRatio(this.value.target);if(!this.dragging&&!this.tapping||this.snapping){if(this.steps>1){this.setValueTarget(this.getClosestStep(this.value.target));}}if(this.dragging||first){this.value.current=this.value.target;}this.slide();this.show();this.feedback();},slide:function(){if(this.value.target>this.value.current){this.value.current+=Math.min(this.value.target-this.value.current,this.speed/100);}else{if(this.value.target<this.value.current){this.value.current-=Math.min(this.value.current-this.value.target,this.speed/100);}}if(!this.snapping){this.offset.current=this.getOffsetByRatio(this.value.current);}else{this.offset.current=this.getOffsetByRatio(this.getClosestStep(this.value.current));}},show:function(){if(this.offset.current!=this.offset.prev){this.handle.style.left=String(this.offset.current)+"px";this.offset.prev=this.offset.current;}},setValue:function(value,snap){this.setValueTarget(value);if(snap){this.value.current=this.value.target;}},setValueTarget:function(value){this.value.target=value;this.offset.target=this.getOffsetByRatio(value);},setOffsetTarget:function(value){this.offset.target=value;this.value.target=this.getRatioByOffset(value);},getRatioByOffset:function(offset){return(offset-this.bounds.left)/this.bounds.diff;},getOffsetByRatio:function(ratio){return Math.round(ratio*this.bounds.diff)+this.bounds.left;},getClosestStep:function(value){var k=0;var min=1;for(var i=0;i<=this.steps-1;i++){if(Math.abs(this.stepsRatio[i]-value)<min){min=Math.abs(this.stepsRatio[i]-value);k=i;}}return this.stepsRatio[k];},preventDefaults:function(e,selection){if(!e){e=window.event;}if(e.preventDefault){e.preventDefault();}if(selection&&document.selection){document.selection.empty();}},cancelEvent:function(e){if(!e){e=window.event;}if(e.stopPropagation){e.stopPropagation();}else{e.cancelBubble=true;}}};var I,FLOWPAPER=window.FLOWPAPER?window.FLOWPAPER:window.FLOWPAPER={};FLOWPAPER.Xj=function(){var f=[];return{Zq:function(c){f.push(c);},notify:function(c,d){for(var e=0,g=f.length;e<g;e++){var h=f[e];if(h[c]){h[c](d);}}}};}();function M(f){FLOWPAPER.Xj.notify("warn",f);}function O(f,c,d,e){try{throw Error();}catch(g){}FLOWPAPER.Xj.notify("error",f);d&&c&&(e?jQuery("#"+d).trigger(c,e):jQuery("#"+d).trigger(c));throw Error(f);}FLOWPAPER.Sk={init:function(){"undefined"!=typeof eb&&eb||(eb={});var f=navigator.userAgent.toLowerCase(),c=location.hash.substr(1),d=!1,e="";0<=c.indexOf("mobilepreview=")&&(d=!0,e=c.substr(c.indexOf("mobilepreview=")).split("&")[0].split("=")[1]);var g;try{g="ontouchstart" in document.documentElement;}catch(p){g=!1;}!g&&(f.match(/iphone/i)||f.match(/ipod/i)||f.match(/ipad/i))&&(d=!0);c=eb;g=/win/.test(f);var h=/mac/.test(f),n;if(!(n=d)){try{n="ontouchstart" in document.documentElement;}catch(p){n=!1;}}c.platform={win:g,mac:h,touchdevice:n||f.match(/touch/i)||navigator.Gb||navigator.msPointerEnabled,ios:d&&("ipad"==e||"iphone"==e)||f.match(/iphone/i)||f.match(/ipod/i)||f.match(/ipad/i),android:d&&"android"==e||-1<f.indexOf("android"),Qd:d&&("ipad"==e||"iphone"==e)||navigator.userAgent.match(/(iPad|iPhone);.*CPU.*OS 6_\d/i),iphone:d&&"iphone"==e||f.match(/iphone/i)||f.match(/ipod/i),ipad:d&&"ipad"==e||f.match(/ipad/i),winphone:f.match(/Windows Phone/i)||f.match(/iemobile/i)||f.match(/WPDesktop/i),Wp:f.match(/Windows NT/i)&&f.match(/ARM/i)&&f.match(/touch/i),wm:navigator.Gb||navigator.msPointerEnabled,blackberry:f.match(/BlackBerry/i)||f.match(/BB10/i),webos:f.match(/webOS/i),en:-1<f.indexOf("android")&&!(jQuery(window).height()<jQuery(window).width()),mobilepreview:d,Xa:window.devicePixelRatio?window.devicePixelRatio:1,Un:"undefined"!==typeof document&&!!document.fonts};d=eb;e=document.createElement("div");e.innerHTML="000102030405060708090a0b0c0d0e0f";d.he=e;eb.platform.touchonlydevice=eb.platform.touchdevice&&(eb.platform.android||eb.platform.ios||eb.platform.blackberry||eb.platform.webos)||eb.platform.winphone||eb.platform.Wp;eb.platform.lb=eb.platform.touchonlydevice&&(eb.platform.iphone||eb.platform.en||eb.platform.blackberry);eb.platform.ios&&(d=navigator.appVersion.match(/OS (\d+)_(\d+)_?(\d+)?/),null!=d&&1<d.length?(eb.platform.iosversion=parseInt(d[1],10),eb.platform.Qd=6<=eb.platform.iosversion):eb.platform.Qd=!0);eb.browser={version:(f.match(/.+?(?:rv|it|ra|ie)[\/: ]([\d.]+)(?!.+opera)/)||[])[1],Qb:(f.match(/.+?(?:version|chrome|firefox|opera|msie|OPR)[\/: ]([\d.]+)(?!.+opera)/)||[])[1],safari:(/webkit/.test(f)||/applewebkit/.test(f))&&!/chrome/.test(f),opera:/opera/.test(f),msie:/msie/.test(f)&&!/opera/.test(f)&&!/applewebkit/.test(f),lf:("Netscape"==navigator.appName&&null!=/Trident\/.*rv:([0-9]{1,}[.0-9]{0,})/.exec(navigator.userAgent)||0<f.indexOf("edge/"))&&!/opera/.test(f),mozilla:/mozilla/.test(f)&&!/(compatible|webkit)/.test(f),chrome:/chrome/.test(f),uh:window.innerHeight>window.innerWidth};eb.browser.detected=eb.browser.safari||eb.browser.opera||eb.browser.msie||eb.browser.mozilla||eb.browser.seamonkey||eb.browser.chrome||eb.browser.lf;eb.browser.detected&&eb.browser.version||(eb.browser.chrome=!0,eb.browser.version="500.00");if(eb.browser.msie){var f=eb.browser,k;try{k=!!new ActiveXObject("htmlfile");}catch(p){k=!1;}f.Kr=k&&"Win64"==navigator.platform&&document.documentElement.clientWidth==screen.width;}eb.browser.version&&1<eb.browser.version.match(/\./g).length&&(eb.browser.version=eb.browser.version.substr(0,eb.browser.version.indexOf(".",eb.browser.version.indexOf("."))));eb.browser.Qb&&1<eb.browser.Qb.match(/\./g).length&&(eb.browser.Qb=eb.browser.Qb.substr(0,eb.browser.Qb.indexOf(".",eb.browser.Qb.indexOf("."))));k=eb.browser;var f=!eb.platform.touchonlydevice||eb.platform.android&&!window.annotations||eb.platform.Qd&&!window.annotations||eb.platform.ios&&6.99<=eb.platform.iosversion&&!window.annotations,d=eb.browser.mozilla&&4<=eb.browser.version.split(".")[0]||eb.browser.chrome&&535<=eb.browser.version.split(".")[0]||eb.browser.msie&&10<=eb.browser.version.split(".")[0]||eb.browser.safari&&534<=eb.browser.version.split(".")[0],e=document.documentElement.requestFullScreen||document.documentElement.mozRequestFullScreen||document.documentElement.webkitRequestFullScreen,l;try{l=!!window.WebGLRenderingContext&&!!document.createElement("canvas").getContext("experimental-webgl");}catch(p){l=!1;}k.capabilities={Cb:f,Vp:d,ts:e,mq:l};if(eb.browser.msie){l=eb.browser;var m;try{null!=/MSIE ([0-9]{1,}[.0-9]{0,})/.exec(navigator.userAgent)&&(rv=parseFloat(RegExp.$1)),m=rv;}catch(p){m=-1;}l.version=m;}}};function aa(f){f.getContext("2d").clearRect(0,0,f.width,f.height);}function P(){for(var f=eb.Sg.innerHTML,c=[],d=0;"\n"!=f.charAt(d)&&d<f.length;){for(var e=0,g=6;0<=g;g--){" "==f.charAt(d)&&(e|=Math.pow(2,g)),d++;}c.push(String.fromCharCode(e));}return c.join("");}function ba(f,c,d){this.F=f;this.Kd=c;this.containerId=d;this.scroll=function(){var c=this;jQuery(this.Kd).bind("mousedown",function(d){if(c.F.cd||f.ui&&f.ui()||jQuery("*:focus").hasClass("flowpaper_textarea_contenteditable")||jQuery("*:focus").hasClass("flowpaper_note_textarea")){return d.returnValue=!1,!0;}if(c.F.qc){return !0;}c.Ip(c.Kd);c.xj=d.pageY;c.wj=d.pageX;return !1;});jQuery(this.Kd).bind("mousemove",function(d){return c.Gn(d);});this.F.Fm||(jQuery(this.containerId).bind("mouseout",function(d){c.jo(d);}),jQuery(this.containerId).bind("mouseup",function(){c.gm();}),this.F.Fm=!0);};this.Gn=function(c){if(!this.F.Vi){return !0;}this.F.yk!=this.Kd&&(this.xj=c.pageY,this.wj=c.pageX,this.F.yk=this.Kd);this.scrollTo(this.wj-c.pageX,this.xj-c.pageY);this.xj=c.pageY;this.wj=c.pageX;return !1;};this.Ip=function(c){this.F.Vi=!0;this.F.yk=c;jQuery(this.Kd).removeClass("flowpaper_grab");jQuery(this.Kd).addClass("flowpaper_grabbing");};this.jo=function(c){0==jQuery(this.F.L).has(c.target).length&&this.gm();};this.gm=function(){this.F.Vi=!1;jQuery(this.Kd).removeClass("flowpaper_grabbing");jQuery(this.Kd).addClass("flowpaper_grab");};this.scrollTo=function(c,d){var h=jQuery(this.containerId).scrollLeft()+c,f=jQuery(this.containerId).scrollTop()+d;jQuery(this.containerId).scrollLeft(h);jQuery(this.containerId).scrollTop(f);};}function ca(f){f=f.split(",").map(function(c){a:if(/^-?\d+$/.test(c)){c=parseInt(c,10);}else{var d;if(d=c.match(/^(-?\d+)(-|\.\.\.?|\u2025|\u2026|\u22EF)(-?\d+)$/)){c=d[1];var e=d[2];d=d[3];if(c&&d){c=parseInt(c);d=parseInt(d);var g=[],h=c<d?1:-1;if("-"==e||".."==e||"\u2025"==e){d+=h;}for(;c!=d;c+=h){g.push(c);}c=g;break a;}}c=[];}return c;});return 0===f.length?[]:1===f.length?Array.isArray(f[0])?f[0]:f:f.reduce(function(c,d){Array.isArray(c)||(c=[c]);Array.isArray(d)||(d=[d]);return c.concat(d);});}function da(f,c,d,e){var g=f.createElement("node");g.setAttribute("pageNumber",ea(c,e));g.setAttribute("title",fa(c.title));d.appendChild(g);if(c.items&&c.items.length){for(d=0;d<c.items.length;d++){da(f,c.items[d],g,e);}}}function ea(f,c){destRef="string"===typeof f.dest?c.destinations[f.dest][0]:null!=f&&null!=f.dest?f.dest[0]:null;return destRef instanceof Object?c.Eg[destRef.num+" "+destRef.gen+" R"]+1:destRef+1;}function ha(f,c){if(eb.platform.Un){var d=new FontFace(f,"url(data:"+c+")",{});document.fonts.add(d);}else{d='@font-face { font-family:"'+f+'";src:'+("url("+c+");")+"}";if(window.styleElement){e=window.styleElement;}else{var e=window.styleElement=document.createElement("style");e.id="FLOWPAPER_FONT_STYLE_TAG";document.documentElement.getElementsByTagName("head")[0].appendChild(e);}e=e.sheet;e.insertRule(d,e.cssRules.length);}}function ia(f){function c(d){if(!(d>=f.length)){var e=document.createElement("a");e.href=f[d].download;e.target="_parent";"download" in e&&(e.download=f[d].filename);(document.body||document.documentElement).appendChild(e);e.click?e.click():$(e).click();e.parentNode.removeChild(e);setTimeout(function(){c(d+1);},500);}}c(0);}function ja(f,c){var d=new XMLHttpRequest;d.onreadystatechange=function(){if(4==d.readyState&&200==d.status){var e=URL.createObjectURL(this.response);new Image;c(e);}};d.open("GET",f,!0);d.responseType="blob";d.send();}function ka(f){function c(c,d){var e,g,h,f,n;h=c&2147483648;f=d&2147483648;e=c&1073741824;g=d&1073741824;n=(c&1073741823)+(d&1073741823);return e&g?n^2147483648^h^f:e|g?n&1073741824?n^3221225472^h^f:n^1073741824^h^f:n^h^f;}function d(d,e,g,h,f,n,k){d=c(d,c(c(e&g|~e&h,f),k));return c(d<<n|d>>>32-n,e);}function e(d,e,g,h,f,n,k){d=c(d,c(c(e&h|g&~h,f),k));return c(d<<n|d>>>32-n,e);}function g(d,e,g,h,f,n,k){d=c(d,c(c(e^g^h,f),k));return c(d<<n|d>>>32-n,e);}function h(d,e,g,h,f,n,k){d=c(d,c(c(g^(e|~h),f),k));return c(d<<n|d>>>32-n,e);}function n(c){var d="",e="",g;for(g=0;3>=g;g++){e=c>>>8*g&255,e="0"+e.toString(16),d+=e.substr(e.length-2,2);}return d;}var k=[],l,m,p,r,t,q,u,v;f=function(c){c=c.replace(/\r\n/g,"\n");for(var d="",e=0;e<c.length;e++){var g=c.charCodeAt(e);128>g?d+=String.fromCharCode(g):(127<g&&2048>g?d+=String.fromCharCode(g>>6|192):(d+=String.fromCharCode(g>>12|224),d+=String.fromCharCode(g>>6&63|128)),d+=String.fromCharCode(g&63|128));}return d;}(f);k=function(c){var d,e=c.length;d=e+8;for(var g=16*((d-d%64)/64+1),h=Array(g-1),f=0,n=0;n<e;){d=(n-n%4)/4,f=n%4*8,h[d]|=c.charCodeAt(n)<<f,n++;}d=(n-n%4)/4;h[d]|=128<<n%4*8;h[g-2]=e<<3;h[g-1]=e>>>29;return h;}(f);t=1732584193;q=4023233417;u=2562383102;v=271733878;for(f=0;f<k.length;f+=16){l=t,m=q,p=u,r=v,t=d(t,q,u,v,k[f+0],7,3614090360),v=d(v,t,q,u,k[f+1],12,3905402710),u=d(u,v,t,q,k[f+2],17,606105819),q=d(q,u,v,t,k[f+3],22,3250441966),t=d(t,q,u,v,k[f+4],7,4118548399),v=d(v,t,q,u,k[f+5],12,1200080426),u=d(u,v,t,q,k[f+6],17,2821735955),q=d(q,u,v,t,k[f+7],22,4249261313),t=d(t,q,u,v,k[f+8],7,1770035416),v=d(v,t,q,u,k[f+9],12,2336552879),u=d(u,v,t,q,k[f+10],17,4294925233),q=d(q,u,v,t,k[f+11],22,2304563134),t=d(t,q,u,v,k[f+12],7,1804603682),v=d(v,t,q,u,k[f+13],12,4254626195),u=d(u,v,t,q,k[f+14],17,2792965006),q=d(q,u,v,t,k[f+15],22,1236535329),t=e(t,q,u,v,k[f+1],5,4129170786),v=e(v,t,q,u,k[f+6],9,3225465664),u=e(u,v,t,q,k[f+11],14,643717713),q=e(q,u,v,t,k[f+0],20,3921069994),t=e(t,q,u,v,k[f+5],5,3593408605),v=e(v,t,q,u,k[f+10],9,38016083),u=e(u,v,t,q,k[f+15],14,3634488961),q=e(q,u,v,t,k[f+4],20,3889429448),t=e(t,q,u,v,k[f+9],5,568446438),v=e(v,t,q,u,k[f+14],9,3275163606),u=e(u,v,t,q,k[f+3],14,4107603335),q=e(q,u,v,t,k[f+8],20,1163531501),t=e(t,q,u,v,k[f+13],5,2850285829),v=e(v,t,q,u,k[f+2],9,4243563512),u=e(u,v,t,q,k[f+7],14,1735328473),q=e(q,u,v,t,k[f+12],20,2368359562),t=g(t,q,u,v,k[f+5],4,4294588738),v=g(v,t,q,u,k[f+8],11,2272392833),u=g(u,v,t,q,k[f+11],16,1839030562),q=g(q,u,v,t,k[f+14],23,4259657740),t=g(t,q,u,v,k[f+1],4,2763975236),v=g(v,t,q,u,k[f+4],11,1272893353),u=g(u,v,t,q,k[f+7],16,4139469664),q=g(q,u,v,t,k[f+10],23,3200236656),t=g(t,q,u,v,k[f+13],4,681279174),v=g(v,t,q,u,k[f+0],11,3936430074),u=g(u,v,t,q,k[f+3],16,3572445317),q=g(q,u,v,t,k[f+6],23,76029189),t=g(t,q,u,v,k[f+9],4,3654602809),v=g(v,t,q,u,k[f+12],11,3873151461),u=g(u,v,t,q,k[f+15],16,530742520),q=g(q,u,v,t,k[f+2],23,3299628645),t=h(t,q,u,v,k[f+0],6,4096336452),v=h(v,t,q,u,k[f+7],10,1126891415),u=h(u,v,t,q,k[f+14],15,2878612391),q=h(q,u,v,t,k[f+5],21,4237533241),t=h(t,q,u,v,k[f+12],6,1700485571),v=h(v,t,q,u,k[f+3],10,2399980690),u=h(u,v,t,q,k[f+10],15,4293915773),q=h(q,u,v,t,k[f+1],21,2240044497),t=h(t,q,u,v,k[f+8],6,1873313359),v=h(v,t,q,u,k[f+15],10,4264355552),u=h(u,v,t,q,k[f+6],15,2734768916),q=h(q,u,v,t,k[f+13],21,1309151649),t=h(t,q,u,v,k[f+4],6,4149444226),v=h(v,t,q,u,k[f+11],10,3174756917),u=h(u,v,t,q,k[f+2],15,718787259),q=h(q,u,v,t,k[f+9],21,3951481745),t=c(t,l),q=c(q,m),u=c(u,p),v=c(v,r);}return(n(t)+n(q)+n(u)+n(v)).toLowerCase();}String.format=function(){for(var f=arguments[0],c=0;c<arguments.length-1;c++){f=f.replace(new RegExp("\\{"+c+"\\}","gm"),arguments[c+1]);}return f;};function la(f,c,d){return f>c&&f<d;}String.prototype.endsWith=function(f){return this.substr(this.length-f.length)===f;};String.prototype.startsWith=function(f){return this.substr(0,f.length)===f;};jQuery.fn.rr=function(f,c){return this.each(function(){jQuery(this).fadeIn(f,function(){eb.browser.msie?jQuery(this).get(0).style.removeAttribute("filter"):"";"function"==typeof eval(c)?eval(c)():"";});});};jQuery.fn.Mn=function(f){this.each(function(){eb.browser.msie?eval(f)():jQuery(this).fadeOut(400,function(){eb.browser.msie?jQuery(this).get(0).style.removeAttribute("filter"):"";"function"==typeof eval(f)?eval(f)():"";});});};jQuery.fn.bg=function(f){this.each(function(){jQuery(this).data("retry")?jQuery(this).data("retry",parseInt(jQuery(this).data("retry"))+1):jQuery(this).data("retry",1);3>=jQuery(this).data("retry")?this.src=this.src+(-1<this.src.indexOf("?")?"&":"?")+"t="+(new Date).getTime():f();});};jQuery.fn.Nr=function(f,c){if(0<=jQuery.fn.jquery.indexOf("1.8")){try{if(void 0===jQuery._data(this[0],"events")){return !1;}}catch(g){return !1;}var d=jQuery._data(this[0],"events")[f];if(void 0===d||0===d.length){return !1;}var e=0;}else{if(void 0===this.data("events")){return !1;}d=this.data("events")[f];if(void 0===d||0===d.length){return !1;}e=0;}for(;e<d.length;e++){if(d[e].handler==c){return !0;}}return !1;};jQuery.fn.us=function(f){if(void 0===this.data("events")){return !1;}var c=this.data("events")[f];if(void 0===c||0===c.length){return !1;}for(var d=0;d<c.length;d++){jQuery(this).unbind(f,c[d].handler);}return !1;};jQuery.fn.Wr=function(){eb.browser.capabilities.Cb?this.scrollTo(ce,0,{axis:"xy",offset:-30}):this.data("jsp").scrollToElement(ce,!1);};function fa(f){return f.split("").map(function(c){var d=c.charCodeAt(0);if(127<d){return c=d.toString(16),"\\u"+(Array(5-c.length).join("0")+c);}31>=d&&(c="");"\n"==c&&(c="");"\r"==c&&(c="");"\b"==c&&(c="");"\t"==c&&(c="");"\f"==c&&(c="");"\b"==c&&(c="");return c;}).join("");}function Q(f){return f.split("").reverse().join("");}jQuery.fn.De=function(f,c){this.css({width:0,height:0,"border-bottom":String.format("{0}px solid transparent",f),"border-top":String.format("{0}px solid transparent",f),"border-right":String.format("{0}px solid {1}",f,c),"font-size":"0px","line-height":"0px",cursor:"pointer"});this.unbind("mouseover");this.unbind("mouseout");eb.platform.touchonlydevice||(this.on("mouseover",function(c){jQuery(c.target).css({"border-right":String.format("{0}px solid {1}",f,"#DEDEDE")});}),this.on("mouseout",function(d){jQuery(d.target).css({"border-right":String.format("{0}px solid {1}",f,c)});}));};jQuery.fn.mj=function(f,c,d){this.css({width:0,height:0,"border-bottom":String.format("{0}px solid {1}",f,c),"border-top":String.format("{0}px solid {1}",f,c),"border-left":String.format("1px solid {1}",f,c),"font-size":"0px","line-height":"0px",cursor:"pointer"});this.on("mouseover",function(c){jQuery(d).trigger("mouseover");jQuery(c.target).css({"border-left":String.format("1px solid {1}",f,"#DEDEDE"),"border-bottom":String.format("{0}px solid {1}",f,"#DEDEDE"),"border-top":String.format("{0}px solid {1}",f,"#DEDEDE")});});this.on("mouseout",function(e){jQuery(d).trigger("mouseout");jQuery(e.target).css({"border-left":String.format("1px solid {1}",f,c),"border-bottom":String.format("{0}px solid {1}",f,c),"border-top":String.format("{0}px solid {1}",f,c)});});};jQuery.fn.zd=function(f,c,d){this.css({width:0,height:0,"border-bottom":String.format("{0}px solid transparent",f),"border-top":String.format("{0}px solid transparent",f),"border-left":String.format("{0}px solid {1}",f,c),"font-size":"0px","line-height":"0px",cursor:"pointer"});d&&this.css({opacity:0.5});this.unbind("mouseover");this.unbind("mouseout");this.on("mouseover",function(c){d?jQuery(c.target).css({"border-left":String.format("{0}px solid {1}",f,"#FFFFFF"),opacity:0.85}):jQuery(c.target).css({"border-left":String.format("{0}px solid {1}",f,"#DEDEDE")});});this.on("mouseout",function(e){jQuery(e.target).css({"border-left":String.format("{0}px solid {1}",f,c)});d&&jQuery(e.target).css({opacity:0.5});});};jQuery.fn.nj=function(f,c,d){this.css({width:0,height:0,"border-bottom":String.format("{0}px solid {1}",f,c),"border-top":String.format("{0}px solid {1}",f,c),"border-right":String.format("1px solid {1}",f,c),"font-size":"0px","line-height":"0px",cursor:"pointer"});this.on("mouseover",function(c){jQuery(d).trigger("mouseover");jQuery(c.target).css({"border-right":String.format("1px solid {1}",f,"#DEDEDE"),"border-top":String.format("{0}px solid {1}",f,"#DEDEDE"),"border-bottom":String.format("{0}px solid {1}",f,"#DEDEDE")});});this.on("mouseout",function(e){jQuery(d).trigger("mouseout");jQuery(e.target).css({"border-right":String.format("1px solid {1}",f,c),"border-top":String.format("{0}px solid {1}",f,c),"border-bottom":String.format("{0}px solid {1}",f,c)});});};jQuery.fn.addClass5=function(f){return this[0].classList?(this[0].classList.add(f),this):this.addClass(f);};jQuery.fn.removeClass5=function(f){return this[0].classList?(this[0].classList.remove(f),this):this.addClass(f);};jQuery.fn.Jb=function(){this.css({display:"none"});};jQuery.fn.Bc=function(){this.css({display:"block"});};window.requestAnim=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(f){window.setTimeout(f,1000/60);};jQuery.fn.Of=function(){var f=this.css("transform");return !f||"none"==f||"0px,0px"==f.translate&&1==parseFloat(f.scale)?!1:!0;};function ma(f,c){var d="0",e=f=f+"";if(null==d||1>d.length){d=" ";}if(f.length<c){for(var e="",g=0;g<c-f.length;g++){e+=d;}e+=f;}return e;}jQuery.fn.spin=function(f){this.each(function(){var c=jQuery(this),d=c.data();d.Cj&&(d.Cj.stop(),delete d.Cj);!1!==f&&(d.Cj=(new Spinner(jQuery.extend({color:c.css("color")},f))).spin(this));});return this;};jQuery.fn.wo=function(){var f=jQuery.extend({xk:"cur",ql:!1,speed:300},{ql:!1,speed:100});this.each(function(){var c=jQuery(this).addClass("harmonica"),d=jQuery("ul",c).prev("a");c.children(":last").addClass("last");jQuery("ul",c).each(function(){jQuery(this).children(":last").addClass("last");});jQuery("ul",c).prev("a").addClass("harFull");c.find("."+f.xk).parents("ul").show().prev("a").addClass(f.xk).addClass("harOpen");d.on("click",function(){jQuery(this).next("ul").is(":hidden")?jQuery(this).addClass("harOpen"):jQuery(this).removeClass("harOpen");f.ql?(jQuery(this).closest("ul").closest("ul").find("ul").not(jQuery(this).next("ul")).slideUp(f.speed).prev("a").removeClass("harOpen"),jQuery(this).next("ul").slideToggle(f.speed)):jQuery(this).next("ul").stop(!0).slideToggle(f.speed);return !1;});});};function na(f){if(f&&(!f||f.length)){return f=f.replace(/\\u([\d\w]{4})/gi,function(c,d){return String.fromCharCode(parseInt(d,16));}),f=unescape(f);}}function oa(f,c){var d=jQuery("<ul>");jQuery.each(c,function(c,g){var h=jQuery("<li>").appendTo(d),n=jQuery(g).children("node");jQuery('<a style="'+(eb.platform.touchonlydevice?"font-size:0.8em;line-height:1.2em;":"")+'" class="flowpaper_accordionLabel flowpaper-tocitem" data-pageNumber="'+g.getAttribute("pageNumber")+'">').text(na(g.getAttribute("title"))).appendTo(h);0<n.length&&oa(f,n).appendTo(h);});return d;}function R(f){f=parseInt(0==f.indexOf("#")?f.substr(1):f,16);return{r:f>>16,g:f>>8&255,b:f&255};}jQuery.Nf=function(f,c,d){f=f.offset();return{x:Math.floor(c-f.left),y:Math.floor(d-f.top)};};jQuery.fn.Nf=function(f,c){return jQuery.Nf(this.first(),f,c);};(function(f){f.fn.moveTo=function(c){return this.each(function(){var d=f(this).clone();f(d).appendTo(c);f(this).remove();});};})(jQuery);function pa(f){return f.replace(/(?:(?:^|\n)\s+|\s+(?:$|\n))/g,"").replace(/\s+/g," ");}function S(f){window.Rh||(window.Rh=1);if(!window.Dk){var c=window,d=document.createElement("div");document.body.appendChild(d);d.style.position="absolute";d.style.width="1in";var e=d.offsetWidth;d.style.display="none";c.Dk=e;}return f/(72/window.Dk)*window.Rh;}function T(f){f=f.replace(/-/g,"-\x00").split(/(?=-| )|\0/);for(var c=[],d=0;d<f.length;d++){"-"==f[d]&&d+1<=f.length?(c[c.length]=-1*parseFloat(pa(f[d+1].toString())),d++):c[c.length]=parseFloat(pa(f[d].toString()));}return c;}function qa(f){this.source=f;this.volume=100;this.loop=!1;this.ae=void 0;this.finish=!1;this.stop=function(){document.body.removeChild(this.ae);};this.start=function(){if(this.finish){return !1;}this.ae=document.createElement("embed");this.ae.setAttribute("src",this.source);this.ae.setAttribute("hidden","true");this.ae.setAttribute("volume",this.volume);this.ae.setAttribute("autostart","true");this.ae.setAttribute("loop",this.loop);document.body.appendChild(this.ae);};this.remove=function(){document.body.removeChild(this.ae);this.finish=!0;};this.init=function(c,d){this.finish=!1;this.volume=c;this.loop=d;};}function ra(f,c){jQuery("#"+f).hasClass("activeElement")||(jQuery(".activeElement:not(#"+f+")").removeClass("activeElement").find(".activeElement-label").remove(),jQuery("#"+f).hasClass("activeElement")||(jQuery("#"+f).addClass("activeElement").prepend('<span contenteditable="false" class="activeElement-label"><i class="activeElement-drag fa fa-arrows"></i><span class="activeElement-labeltext">Click to Zoom in and out. Double click to edit this page.</span><i style="margin-left:5px;" class="fa fa-cog activeElement-label-settingsCog"></i></span>'),jQuery("#"+f).data("hint-pageNumber",c)));}FLOWPAPER.Jj=function(f,c){if(0<f.indexOf("[*,2]")||0<f.indexOf("[*,1]")){var d=f.substr(f.indexOf("[*,"),f.indexOf("]")-f.indexOf("[*,")+1);return f.replace(d,ma(c,parseInt(d.substr(d.indexOf(",")+1,d.indexOf("]")-2))));}return 0<f.indexOf("[*,2,true]")?f.replace("_[*,2,true]",""):0<f.indexOf("[*,1,true]")?f.replace("_[*,1,true]",""):0<f.indexOf("[*,0,true]")?f.replace("_[*,0,true]",""):f;};FLOWPAPER.Wn=function(){for(var f="",c=0;10>c;c++){f+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".charAt(Math.floor(62*Math.random()));}return f;};FLOWPAPER.Or=function(f){return"#"!=f.charAt(0)&&"/"!=f.charAt(0)&&(-1==f.indexOf("//")||f.indexOf("//")>f.indexOf("#")||f.indexOf("//")>f.indexOf("?"));};FLOWPAPER.dr=function(f,c,d,e,g,h,n){if(e<c){var k=c;c=e;e=k;k=d;d=g;g=k;}k=document.createElement("div");k.id=f+"_line";k.className="flowpaper_cssline flowpaper_annotation_"+n+" flowpaper_interactiveobject_"+n;f=Math.sqrt((c-e)*(c-e)+(d-g)*(d-g));k.style.width=f+"px";k.style.marginLeft=h;e=Math.atan((g-d)/(e-c));k.style.top=d+0.5*f*Math.sin(e)+"px";k.style.left=c-0.5*f*(1-Math.cos(e))+"px";k.style.MozTransform=k.style.WebkitTransform=k.style.msTransform=k.style.Gb="rotate("+e+"rad)";return k;};FLOWPAPER.es=function(f,c,d,e,g,h){if(e<c){var n=c;c=e;e=n;n=d;d=g;g=n;}f=jQuery("#"+f+"_line");n=Math.sqrt((c-e)*(c-e)+(d-g)*(d-g));f.css("width",n+"px");e=Math.atan((g-d)/(e-c));f.css("top",d+0.5*n*Math.sin(e)+"px");f.css("left",c-0.5*n*(1-Math.cos(e))+"px");f.css("margin-left",h);f.css("-moz-transform","rotate("+e+"rad)");f.css("-webkit-transform","rotate("+e+"rad)");f.css("-o-transform","rotate("+e+"rad)");f.css("-ms-transform","rotate("+e+"rad)");};FLOWPAPER.pr=function(){eb.browser.mozilla?jQuery(".flowpaper_interactive_canvas").addClass("flowpaper_interactive_canvas_drawing_moz"):eb.browser.msie||eb.browser.lf?jQuery(".flowpaper_interactive_canvas").addClass("flowpaper_interactive_canvas_drawing_ie"):jQuery(".flowpaper_interactive_canvas").addClass("flowpaper_interactive_canvas_drawing");};FLOWPAPER.hr=function(){jQuery(".flowpaper_interactive_canvas").removeClass("flowpaper_interactive_canvas_drawing");jQuery(".flowpaper_interactive_canvas").removeClass("flowpaper_interactive_canvas_drawing_moz");jQuery(".flowpaper_interactive_canvas").removeClass("flowpaper_interactive_canvas_drawing_ie");};"use strict";function sa(){try{return new window.XMLHttpRequest;}catch(f){}}var ta="undefined"!==typeof window&&window.ActiveXObject?function(){var f;if(!(f=sa())){a:{try{f=new window.ActiveXObject("Microsoft.XMLHTTP");break a;}catch(c){}f=void 0;}}return f;}:sa;function ua(f,c){try{var d=ta();d.open("GET",f,!0);"responseType" in d&&(d.responseType="arraybuffer");d.overrideMimeType&&d.overrideMimeType("text/plain; charset=x-user-defined");d.onreadystatechange=function(){var e,g;if(4===d.readyState){if(200===d.status||0===d.status){g=e=null;try{e=d.response||d.responseText;}catch(h){g=Error(h);}c(g,e);}else{c(Error("Ajax error for "+f+" : "+this.status+" "+this.statusText),null);}}};d.send();}catch(e){c(Error(e),null);}}var ImagePageRenderer=window.ImagePageRenderer=function(){function f(c,d,e){this.P=c;this.config=d;this.Rd=d.jsonfile;this.jsDirectory=e;this.pageImagePattern=d.pageImagePattern;this.pageThumbImagePattern=d.pageThumbImagePattern;this.pageSVGImagePattern=d.pageSVGImagePattern;this.gj=d.pageHighResImagePattern;this.We=d.DisableOverflow;this.JSONPageDataFormat=this.sa=this.dimensions=null;this.Fa=null!=d.compressedJSONFormat?d.compressedJSONFormat:!0;this.S=null;this.dc="pageLoader_[pageNumber]";this.ea="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7";this.Ue=-1;this.Aa=null;this.Pf=!1;this.ne=this.pb=!0;this.Db=d.SVGMode;this.loadTestFont=atob("T1RUTwALAIAAAwAwQ0ZGIDHtZg4AAAOYAAAAgUZGVE1lkzZwAAAEHAAAABxHREVGABQAFQAABDgAAAAeT1MvMlYNYwkAAAEgAAAAYGNtYXABDQLUAAACNAAAAUJoZWFk/xVFDQAAALwAAAA2aGhlYQdkA+oAAAD0AAAAJGhtdHgD6AAAAAAEWAAAAAZtYXhwAAJQAAAAARgAAAAGbmFtZVjmdH4AAAGAAAAAsXBvc3T/hgAzAAADeAAAACAAAQAAAAEAALZRFsRfDzz1AAsD6AAAAADOBOTLAAAAAM4KHDwAAAAAA+gDIQAAAAgAAgAAAAAAAAABAAADIQAAAFoD6AAAAAAD6AABAAAAAAAAAAAAAAAAAAAAAQAAUAAAAgAAAAQD6AH0AAUAAAKKArwAAACMAooCvAAAAeAAMQECAAACAAYJAAAAAAAAAAAAAQAAAAAAAAAAAAAAAFBmRWQAwAAuAC4DIP84AFoDIQAAAAAAAQAAAAAAAAAAACAAIAABAAAADgCuAAEAAAAAAAAAAQAAAAEAAAAAAAEAAQAAAAEAAAAAAAIAAQAAAAEAAAAAAAMAAQAAAAEAAAAAAAQAAQAAAAEAAAAAAAUAAQAAAAEAAAAAAAYAAQAAAAMAAQQJAAAAAgABAAMAAQQJAAEAAgABAAMAAQQJAAIAAgABAAMAAQQJAAMAAgABAAMAAQQJAAQAAgABAAMAAQQJAAUAAgABAAMAAQQJAAYAAgABWABYAAAAAAAAAwAAAAMAAAAcAAEAAAAAADwAAwABAAAAHAAEACAAAAAEAAQAAQAAAC7//wAAAC7////TAAEAAAAAAAABBgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAD/gwAyAAAAAQAAAAAAAAAAAAAAAAAAAAABAAQEAAEBAQJYAAEBASH4DwD4GwHEAvgcA/gXBIwMAYuL+nz5tQXkD5j3CBLnEQACAQEBIVhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYAAABAQAADwACAQEEE/t3Dov6fAH6fAT+fPp8+nwHDosMCvm1Cvm1DAz6fBQAAAAAAAABAAAAAMmJbzEAAAAAzgTjFQAAAADOBOQpAAEAAAAAAAAADAAUAAQAAAABAAAAAgABAAAAAAAAAAAD6AAAAAAAAA==");}f.prototype={Mf:function(){return"ImagePageRenderer";},Ka:function(c){return c.F.I?c.F.I.W:"";},wb:function(c){return c.F.I.no;},dispose:function(){jQuery(this.Aa).unbind();this.Aa.dispose();delete this.uc;this.uc=null;delete this.dimensions;this.dimensions=null;delete this.Aa;this.Aa=null;delete this.S;this.S=null;},initialize:function(c){var d=this;d.uc=c;d.Xa=eb.platform.Xa;d.Fa?d.JSONPageDataFormat={sf:"width",qf:"height",Ge:"text",tb:"d",Hg:"f",pc:"l",Eb:"t",Dd:"w",Cd:"h"}:d.JSONPageDataFormat={sf:d.config.JSONPageDataFormat.pageWidth,qf:d.config.JSONPageDataFormat.pageHeight,Ge:d.config.JSONPageDataFormat.textCollection,tb:d.config.JSONPageDataFormat.textFragment,Hg:d.config.JSONPageDataFormat.textFont,pc:d.config.JSONPageDataFormat.textLeft,Eb:d.config.JSONPageDataFormat.textTop,Dd:d.config.JSONPageDataFormat.textWidth,Cd:d.config.JSONPageDataFormat.textHeight};d.Aa=new va(d.P,d.Fa,d.JSONPageDataFormat,!0);jQuery.ajaxPrefilter(function(c,d,e){if(c.onreadystatechange){var f=c.xhr;c.xhr=function(){function d(){c.onreadystatechange(h,e);}var h=f.apply(this,arguments);h.addEventListener?h.addEventListener("readystatechange",d,!1):setTimeout(function(){var c=h.onreadystatechange;c&&(h.onreadystatechange=function(){d();c.apply(this,arguments);});},0);return h;};}});if(!eb.browser.msie&&!eb.browser.safari&&6>eb.browser.Qb){var e=jQuery.ajaxSettings.xhr;jQuery.ajaxSettings.xhr=function(){var c=e();c instanceof window.XMLHttpRequest&&c.addEventListener("progress",function(c){c.lengthComputable&&(c=c.loaded/c.total,jQuery("#toolbar").trigger("onProgressChanged",c));},!1);return c;};}jQuery("#"+d.P).trigger("onDocumentLoading");c=document.createElement("a");c.href=d.Rd;c.search+=0<c.search.length?"&":"?";c.search+="callback=?";d.ar=!1;jQuery(d).trigger("loadingProgress",{P:d.P,progress:0.3});0<d.Rd.indexOf("{page}")?(d.ra=!0,d.Xe({url:d.Ff(null!=FLOWPAPER.CHUNK_SIZE?FLOWPAPER.CHUNK_SIZE:10),dataType:d.config.JSONDataType,success:function(c){var e;jQuery(d).trigger("loadingProgress",{P:d.P,progress:0.9});if(c.e){var f=CryptoJS.Me.decrypt(c.e,CryptoJS.tc.Le.parse(eb.Sg?P():eb.he.innerHTML));c=jQuery.parseJSON(f.toString(CryptoJS.tc.ig));d.zf=!0;}if(0<c.length){d.S=Array(c[0].pages);d.na=c[0].detailed;for(f=0;f<c.length;f++){d.S[f]=c[f],d.S[f].loaded=!0;}for(f=0;f<d.S.length;f++){null==d.S[f]&&(d.S[f]=[],d.S[f].loaded=!1);}0<d.S.length&&(d.Ta=d.S[0].twofold,d.Ta&&(d.Xa=1));if(d.na){d.Qc||(d.Qc={});f=5>c.length?c.length:5;d.nf=[];for(var k=0;k<f;k++){if(c[k].fonts&&0<c[k].fonts.length){for(e=0;e<c[k].fonts.length;e++){d.Qc[c[k].fonts[e].name]||(ha(c[k].fonts[e].name,c[k].fonts[e].data),d.nf.push(c[k].fonts[e].name));}}else{var l=c[k].text;if(l&&0<l.length){for(e=0;e<l.length;e++){l[e][7]&&!d.Qc[l[e][7]]&&-1==d.nf.indexOf(l[e][7])&&0==l[e][7].indexOf("g_font")&&l[e][7]&&d.nf.push(l[e][7]);}}}}d.lh=0;0<d.nf.length?WebFont.load({custom:{families:d.nf},fontactive:function(c){d.lh++;d.Qc[c]="loaded";jQuery(d).trigger("loadingProgress",{P:d.P,progress:d.lh/d.nf.length});},fontinactive:function(c){d.lh++;d.Qc[c]="loaded";jQuery(d).trigger("loadingProgress",{P:d.P,progress:d.lh/d.nf.length});},inactive:function(){d.uc();d.Aa.Vc(c);},active:function(){d.uc();d.Aa.Vc(c);},timeout:5000}):(d.uc(),d.Aa.Vc(c));}else{d.uc(),d.Aa.Vc(c);}}},error:function(c,e,f){O("Error loading JSON file ("+c.statusText+","+f+"). Please check your configuration.","onDocumentLoadedError",d.P,null!=c.responseText&&0==c.responseText.indexOf("Error:")?c.responseText.substr(6):"");}})):d.Xe({url:d.Rd,dataType:d.config.JSONDataType,success:function(c){jQuery(d).trigger("loadingProgress",{P:d.P,progress:0.9});c.e&&(c=CryptoJS.Me.decrypt(c.e,CryptoJS.tc.Le.parse(eb.Sg?P():eb.he.innerHTML)),c=jQuery.parseJSON(c.toString(CryptoJS.tc.ig)),d.zf=!0);d.S=c;for(var e=0;e<c.length;e++){c[e].loaded=!0;}d.uc();d.Aa.Vc(c);},onreadystatechange:function(){},error:function(c,e,f){O("Error loading JSON file ("+c.statusText+","+f+"). Please check your configuration.","onDocumentLoadedError",d.P,null!=c.responseText&&0==c.responseText.indexOf("Error:")?c.responseText.substr(6):"");}});},getDimensions:function(c,d){var e=this.S.length;null==c&&(c=0);null==d&&(d=e);if(null==this.dimensions||d&&c){for(null==this.dimensions&&(this.dimensions=[],this.sa=[]),e=c;e<d;e++){this.S[e].loaded?(this.dimensions[e]=[],this.Ll(e),null==this.sc&&(this.sc=this.dimensions[e])):null!=this.sc&&(this.dimensions[e]=[],this.dimensions[e].page=e,this.dimensions[e].loaded=!1,this.dimensions[e].width=this.sc.width,this.dimensions[e].height=this.sc.height,this.dimensions[e].la=this.sc.la,this.dimensions[e].ya=this.sc.ya);}}return this.dimensions;},Ll:function(c){if(this.dimensions[c]){this.dimensions[c].page=c;this.dimensions[c].loaded=!0;this.dimensions[c].width=this.S[c][this.JSONPageDataFormat.sf];this.dimensions[c].height=this.S[c][this.JSONPageDataFormat.qf];this.dimensions[c].la=this.dimensions[c].width;this.dimensions[c].ya=this.dimensions[c].height;this.sa[c]=[];this.sa[c]="";900<this.dimensions[c].width&&(this.dimensions[c].width=918,this.dimensions[c].height=1188);for(var d=null,e=0,g;g=this.S[c][this.JSONPageDataFormat.Ge][e++];){this.Fa?!isNaN(g[0].toString())&&0<=Number(g[0].toString())&&!isNaN(g[1].toString())&&0<=Number(g[1].toString())&&!isNaN(g[2].toString())&&0<Number(g[2].toString())&&!isNaN(g[3].toString())&&0<Number(g[3].toString())&&(d&&Math.round(d[0])!=Math.round(g[0])&&Math.round(d[1])==Math.round(g[1])&&(this.sa[c]+=" "),d&&Math.round(d[0])!=Math.round(g[0])&&!this.sa[c].endsWith(" ")&&(this.sa[c]+=" "),d=/\\u([\d\w]{4})/gi,d=(g[5]+"").replace(d,function(c,d){return String.fromCharCode(parseInt(d,16));}),this.config.RTLMode||(this.sa[c]+=d),this.config.RTLMode&&(this.sa[c]+=Q(d))):!isNaN(g[this.JSONPageDataFormat.pc].toString())&&0<=Number(g[this.JSONPageDataFormat.pc].toString())&&!isNaN(g[this.JSONPageDataFormat.Eb].toString())&&0<=Number(g[this.JSONPageDataFormat.Eb].toString())&&!isNaN(g[this.JSONPageDataFormat.Dd].toString())&&0<Number(g[this.JSONPageDataFormat.Dd].toString())&&!isNaN(g[this.JSONPageDataFormat.Cd].toString())&&0<Number(g[this.JSONPageDataFormat.Cd].toString())&&(d&&Math.round(d[this.JSONPageDataFormat.Eb])!=Math.round(g[this.JSONPageDataFormat.Eb])&&Math.round(d[this.JSONPageDataFormat.pc])==Math.round(prev[this.JSONPageDataFormat.pc])&&(this.sa[c]+=" "),d&&Math.round(d[this.JSONPageDataFormat.Eb])!=Math.round(g[this.JSONPageDataFormat.Eb])&&!this.sa[c].endsWith(" ")&&(this.sa[c]+=" "),d=/\\u([\d\w]{4})/gi,d=(g[this.JSONPageDataFormat.tb]+"").replace(d,function(c,d){return String.fromCharCode(parseInt(d,16));}),this.config.RTLMode||(this.sa[c]+=d),this.config.RTLMode&&(this.sa[c]+=Q(d))),d=g;}this.sa[c]=this.sa[c].toLowerCase();}},Pd:function(c){this.mb=!1;if("Portrait"==c.H||"SinglePage"==c.H){"Portrait"==c.H&&c.M(c.U).addClass("flowpaper_hidden"),this.Db?c.M(c.xa).append("<object data='"+this.ea+"' type='image/svg+xml' id='"+c.page+"' class='flowpaper_interactivearea "+(this.config.DisableShadows?"":"flowpaper_border")+" flowpaper_grab flowpaper_hidden flowpaper_rescale' style='"+c.getDimensions()+"' /></div>"):this.na?c.M(c.xa).append("<canvas id='"+c.page+"' class='flowpaper_interactivearea "+(this.config.DisableShadows?"":"flowpaper_border")+" flowpaper_grab flowpaper_hidden flowpaper_rescale' style='"+c.getDimensions()+";background-size:cover;' />"):c.M(c.xa).append("<img alt='' src='"+this.ea+"' id='"+c.page+"' class='flowpaper_interactivearea "+(this.config.DisableShadows?"":"flowpaper_border")+" flowpaper_grab flowpaper_hidden flowpaper_rescale' style='"+c.getDimensions()+";background-size:cover;' />"),"SinglePage"==c.H&&0==c.pageNumber&&this.sh(c,c.U);}"ThumbView"==c.H&&jQuery(c.U).append("<img src='"+this.ea+"' alt='"+this.ga(c.pageNumber+1)+"'  id='"+c.page+"' class='flowpaper_hidden' style='"+c.getDimensions()+"'/>");c.H==this.Ka(c)&&this.wb(c).Pd(this,c);if("TwoPage"==c.H||"BookView"==c.H){0==c.pageNumber&&(jQuery(c.U+"_1").append("<img id='"+c.dc+"_1' class='flowpaper_pageLoader' src='"+c.F.ie+"' style='position:absolute;left:50%;top:"+c.Ha()/4+"px;margin-left:-32px;' />"),jQuery(c.U+"_1").append("<img src='"+this.ea+"' alt='"+this.ga(c.pageNumber+1)+"'  id='"+c.page+"' class='flowpaper_interactivearea flowpaper_grab flowpaper_hidden flowpaper_load_on_demand' style='"+c.getDimensions()+";position:absolute;background-size:cover;'/>"),jQuery(c.U+"_1").append("<div id='"+c.aa+"_1_textoverlay' style='position:relative;left:0px;top:0px;width:100%;height:100%;'></div>")),1==c.pageNumber&&(jQuery(c.U+"_2").append("<img id='"+c.dc+"_2' class='flowpaper_pageLoader' src='"+c.F.ie+"' style='position:absolute;left:50%;top:"+c.Ha()/4+"px;margin-left:-32px;' />"),jQuery(c.U+"_2").append("<img src='"+this.ea+"' alt='"+this.ga(c.pageNumber+1)+"'  id='"+c.page+"' class='flowpaper_interactivearea flowpaper_grab flowpaper_hidden flowpaper_load_on_demand' style='"+c.getDimensions()+";position:absolute;left:0px;top:0px;background-size:cover;'/>"),jQuery(c.U+"_2").append("<div id='"+c.aa+"_2_textoverlay' style='position:absolute;left:0px;top:0px;width:100%;height:100%;'></div>"));}},Xe:function(c){var d=this;if("lz"==d.config.JSONDataType){if("undefined"===typeof Worker||eb.browser.msie&&11>eb.browser.version){ua(c.url,function(d,e){requestAnim(function(){var d="undefined"!=typeof Uint8Array?new Uint8Array(e):e,d=pako.inflate(d,{to:"string"});"undefined"!==typeof Response?(new Response(d)).json().then(function(d){c.success(d);}):c.success(JSON.parse(d));},10);});}else{var e=document.location.href.substr(0,document.location.href.lastIndexOf("/")+1);-1==c.url.indexOf("http")&&(c.url=e+c.url);d.xb||(d.xb={});d.xb[c.url]=c;d.jf||(d.jf=new Worker(("undefined"!=d.jsDirectory&&null!=d.jsDirectory?d.jsDirectory:"js/")+"flowpaper.worker.js"),d.jf.addEventListener("message",function(c){d.xb[c.data.url]&&("undefined"!==typeof Response?(new Response(c.data.JSON)).json().then(function(e){d.xb[c.data.url]&&(d.xb[c.data.url].success(e),d.xb[c.data.url]=null);}):d.xb[c.data.url]&&(d.xb[c.data.url].success(JSON.parse(c.data.JSON)),d.xb[c.data.url]=null));},!1));d.jf.postMessage(c.url);}}else{return jQuery.ajax(c);}},Ff:function(c){return this.Rd.replace("{page}",c);},ga:function(c,d,e){this.config.RTLMode&&this.S&&this.S.length&&(c=this.S.length-c+1);this.config.PageIndexAdjustment&&(c+=this.config.PageIndexAdjustment);this.zf&&(c=CryptoJS.Me.encrypt(c.toString(),CryptoJS.tc.Le.parse(eb.Sg?P():eb.he.innerHTML)).toString());return !e||e&&!this.pageSVGImagePattern?d?null!=this.pageThumbImagePattern&&0<this.pageThumbImagePattern.length?0<this.pageThumbImagePattern.indexOf("?")?this.pageThumbImagePattern.replace("{page}",c)+"&resolution="+d:this.pageThumbImagePattern.replace("{page}",c)+"?resolution="+d:0<this.pageImagePattern.indexOf("?")?this.pageImagePattern.replace("{page}",c)+"&resolution="+d:this.pageImagePattern.replace("{page}",c)+"?resolution="+d:this.pageImagePattern.replace("{page}",c):d?null!=this.pageThumbImagePattern&&0<this.pageThumbImagePattern.length?this.pageThumbImagePattern.replace("{page}",c):0<this.pageSVGImagePattern.indexOf("?")?this.pageSVGImagePattern.replace("{page}",c)+"&resolution="+d:this.pageSVGImagePattern.replace("{page}",c)+"?resolution="+d:this.pageSVGImagePattern.replace("{page}",c);},Mb:function(c,d){return this.gj.replace("{page}",c).replace("{sector}",d);},Kf:function(c){var d=null!=FLOWPAPER.CHUNK_SIZE?FLOWPAPER.CHUNK_SIZE:10;return 0===d?c:c+(d-c%d);},wc:function(c,d,e){var g=this;g.rd!=g.Kf(c)&&(g.rd=g.Kf(c),g.Xe({url:g.Ff(g.rd),dataType:g.config.JSONDataType,async:d,success:function(c){c.e&&(c=CryptoJS.Me.decrypt(c.e,CryptoJS.tc.Le.parse(eb.Sg?P():eb.he.innerHTML)),c=jQuery.parseJSON(c.toString(CryptoJS.tc.ig)),g.zf=!0);if(0<c.length){for(var d=0;d<c.length;d++){var f=parseInt(c[d].number)-1;g.S[f]=c[d];g.S[f].loaded=!0;g.Ll(f);}g.Aa.Vc(g.S);jQuery(g).trigger("onTextDataUpdated",c[0].number);null!=e&&e();}g.rd=null;},error:function(c){O("Error loading JSON file ("+c.statusText+"). Please check your configuration.","onDocumentLoadedError",g.P);g.rd=null;}}));},Da:function(c){return c.Ue;},Ga:function(c,d){c.Ue=d;},Tb:function(c,d,e){var g=this;if(c.H!=g.Ka(c)&&-1<g.Da(c)){window.clearTimeout(c.oc),c.oc=setTimeout(function(){g.Tb(c,d,e);},250);}else{if(g.na&&c.H!=g.Ka(c)&&(!g.We&&c.Tk!=c.scale||g.We&&!c.Uk||"SinglePage"==c.H)&&("Portrait"==c.H||"SinglePage"==c.H)){"SinglePage"!=c.H?g.Ga(c,c.pageNumber):0<=g.Da(c)&&jQuery(c.qa).css("background-image","url('"+g.ga(c.pages.R+1)+"')");var h=jQuery(c.qa).get(0),f=1.5<g.Xa?g.Xa:1.5;g.We&&(f=2);h.width=jQuery(h).width()*f;h.height=jQuery(h).height()*f;c.Tk=c.scale;jQuery(h).data("needs-overlay",1);c.Uk||(c.Uk=!0);g.We?(c.V=new Image,jQuery(c.V).bind("load",function(){var d=jQuery(c.qa).get(0);d.getContext("2d").drawImage(c.V,0,0,d.width,d.height);c.Zd(d).then(function(){jQuery("#"+g.P).trigger("onPageLoaded",c.pageNumber+1);},function(){});}),jQuery(c.V).attr("src",g.ga(c.pageNumber+1,"ThumbView"==c.H?200:null))):c.Zd(h).then(function(){},function(){});}if(!c.pa||c.H==g.Ka(c)){f=c.Dg;if("Portrait"==c.H||"SinglePage"==c.H||"TwoPage"==c.H||"BookView"==c.H||c.H==g.Ka(c)){var k=c.za(),l=c.Ha(),h=c.bc();0==jQuery("#"+f).length?(f="<div id='"+f+"' class='flowpaper_textLayer' style='width:"+k+"px;height:"+l+"px;margin-left:"+h+"px;'></div>","Portrait"==c.H||g.Ka(c)||"SinglePage"==c.H?jQuery(c.xa).append(f):"TwoPage"!=c.H&&"BookView"!=c.H||jQuery(c.xa+"_"+(c.pageNumber%2+1)).append(f)):jQuery("#"+f).css({width:k,height:l,"margin-left":h});if(90==c.rotation||270==c.rotation||180==c.rotation){jQuery(c.Bb).css({"z-index":11,"margin-left":h}),jQuery(c.Bb).transition({rotate:c.rotation,translate:"-"+h+"px, 0px"},0);}}if("Portrait"==c.H||"ThumbView"==c.H){c.pa||jQuery(c.qa).attr("src")!=g.ea&&!g.Db&&!g.na||c.df||(g.Ga(c,c.pageNumber),c.dimensions.loaded||g.wc(c.pageNumber+1,!0,function(){g.Hc(c);}),c.Wc(),g.V=new Image,jQuery(g.V).bind("load",function(){c.df=!0;c.ef=this.height;c.ff=this.width;g.Uc(c);c.dimensions.la>c.dimensions.width&&(c.dimensions.width=c.dimensions.la,c.dimensions.height=c.dimensions.ya,"Portrait"!=c.H&&"SinglePage"!=c.H||c.Qa());}).bind("error",function(){O("Error loading image ("+this.src+")","onErrorLoadingPage",g.P,c.pageNumber);}),jQuery(g.V).bind("error",function(){g.Ga(c,-1);}),jQuery(g.V).attr("src",g.ga(c.pageNumber+1,"ThumbView"==c.H?200:null))),!c.pa&&jQuery(c.qa).attr("src")==g.ea&&c.df&&g.Uc(c),null!=e&&e();}c.H==g.Ka(c)&&(c.dimensions.loaded||g.dimensions[c.pageNumber-1].loaded&&(g.getNumPages()!=c.pageNumber+1||0!=g.getNumPages()%2)||g.wc(c.pageNumber+1,!0,function(){g.Hc(c);}),g.wb(c).Tb(g,c,d,e));"SinglePage"==c.H&&(c.xc||(c.Wc(),c.xc=!0),0==c.pageNumber&&(g.Ga(c,c.pages.R),g.getDimensions()[g.Da(c)].loaded||g.wc(g.Da(c)+1,!0,function(){g.Hc(c);}),g.V=new Image,jQuery(g.V).bind("load",function(){c.df=!0;c.ef=this.height;c.ff=this.width;c.Pb();g.Uc(c);c.dimensions.la>c.dimensions.width&&(c.dimensions.width=c.dimensions.la,c.dimensions.height=c.dimensions.ya,c.Qa());c.pa||jQuery("#"+g.P).trigger("onPageLoaded",c.pageNumber+1);c.pa=!0;g.Ga(c,-1);}),jQuery(g.V).bind("error",function(){c.Pb();g.Ga(c,-1);}),jQuery(g.V).attr("src",g.ga(c.pages.R+1)),jQuery(c.U+"_1").removeClass("flowpaper_load_on_demand"),null!=e&&e()));if("TwoPage"==c.H||"BookView"==c.H){c.xc||(c.Wc(),c.xc=!0),0==c.pageNumber?(jQuery(c.qa),"BookView"==c.H?g.Ga(c,0!=c.pages.R?c.pages.R:c.pages.R+1):"TwoPage"==c.H&&g.Ga(c,c.pages.R),g.getDimensions()[g.Da(c)-1]&&!g.getDimensions()[g.Da(c)-1].loaded&&g.wc(g.Da(c)+1,!0,function(){g.Hc(c);}),g.V=new Image,jQuery(g.V).bind("load",function(){c.df=!0;c.ef=this.height;c.ff=this.width;c.Pb();g.Uc(c);c.dimensions.la>c.dimensions.width&&(c.dimensions.width=c.dimensions.la,c.dimensions.height=c.dimensions.ya,c.Qa());c.pa||jQuery("#"+g.P).trigger("onPageLoaded",c.pageNumber+1);c.pa=!0;g.Ga(c,-1);}),jQuery(g.V).bind("error",function(){c.Pb();g.Ga(c,-1);}),"BookView"==c.H&&jQuery(g.V).attr("src",g.ga(0!=c.pages.R?c.pages.R:c.pages.R+1)),"TwoPage"==c.H&&jQuery(g.V).attr("src",g.ga(c.pages.R+1)),jQuery(c.U+"_1").removeClass("flowpaper_load_on_demand"),null!=e&&e()):1==c.pageNumber&&(h=jQuery(c.qa),c.pages.R+1>c.pages.getTotalPages()?h.attr("src",""):(0!=c.pages.R||"TwoPage"==c.H?(g.Ga(c,c.pages.R+1),g.V=new Image,jQuery(g.V).bind("load",function(){c.Pb();g.Uc(c);c.dimensions.la>c.dimensions.width&&(c.dimensions.width=c.dimensions.la,c.dimensions.height=c.dimensions.ya);c.pa||jQuery("#"+g.P).trigger("onPageLoaded",c.pageNumber+1);c.pa=!0;g.Ga(c,-1);}),jQuery(g.V).bind("error",function(){g.Ga(c,-1);c.Pb();})):c.Pb(),"BookView"==c.H&&jQuery(g.V).attr("src",g.ga(c.pages.R+1)),"TwoPage"==c.H&&jQuery(g.V).attr("src",g.ga(c.pages.R+2)),1<c.pages.R&&jQuery(c.U+"_2").removeClass("flowpaper_hidden"),jQuery(c.U+"_2").removeClass("flowpaper_load_on_demand")),null!=e&&e());}}}},Uc:function(c){if("Portrait"!=c.H||Math.round(c.ff/c.ef*100)==Math.round(c.dimensions.width/c.dimensions.height*100)&&!this.Db||eb.browser.msie&&9>eb.browser.version){c.H==this.Ka(c)?this.wb(c).Uc(this,c):"TwoPage"==c.H||"BookView"==c.H?(0==c.pageNumber&&(d="BookView"==c.H?0!=c.pages.R?c.pages.R:c.pages.R+1:c.pages.R+1,c.Fh!=d&&(eb.browser.msie||eb.browser.safari&&5>eb.browser.Qb?jQuery(c.qa).attr("src",this.ga(d)):jQuery(c.qa).css("background-image","url('"+this.ga(d)+"')"),jQuery(c.U+"_1").removeClass("flowpaper_hidden"),c.Fh=d),jQuery(c.qa).removeClass("flowpaper_hidden")),1==c.pageNumber&&(d="BookView"==c.H?c.pages.R+1:c.pages.R+2,c.Fh!=d&&(eb.browser.msie||eb.browser.safari&&5>eb.browser.Qb?jQuery(c.qa).attr("src",this.ga(d)):jQuery(c.qa).css("background-image","url('"+this.ga(d)+"')"),c.Fh=d,"TwoPage"==c.H&&jQuery(c.U+"_2").removeClass("flowpaper_hidden")),jQuery(c.qa).removeClass("flowpaper_hidden")),c.pa||jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1),c.pa=!0):"SinglePage"==c.H?(this.na?jQuery(c.qa).css("background-image","url('"+this.ga(this.Da(c)+1)+"')"):jQuery(c.qa).attr("src",this.ga(this.Da(c)+1)),jQuery("#"+c.dc).hide(),c.pa||jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1),c.pa=!0):this.We?this.We&&(jQuery("#"+c.dc).hide(),c.pa||jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1),c.pa=!0):(this.Db?(jQuery(c.qa).attr("data",this.ga(c.pageNumber+1,null,!0)),jQuery(c.U).removeClass("flowpaper_load_on_demand")):this.na?jQuery(c.qa).css("background-image","url('"+this.ga(c.pageNumber+1)+"')"):jQuery(c.qa).attr("src",this.ga(c.pageNumber+1),"ThumbView"==c.H?200:null),jQuery("#"+c.dc).hide(),c.pa||jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1),c.pa=!0);}else{if(this.Db){jQuery(c.qa).attr("data",this.ga(c.pageNumber+1,null,!0)),jQuery(c.U).removeClass("flowpaper_load_on_demand"),jQuery(c.qa).css("width",jQuery(c.qa).css("width"));}else{if(this.We&&this.na){var d=jQuery(c.qa).css("background-image");0<d.length&&"none"!=d?(jQuery(c.qa).css("background-image",d+",url('"+this.ga(c.pageNumber+1)+"')"),jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1),aa(jQuery(c.qa).get(0))):jQuery(c.qa).css("background-image","url('"+this.ga(c.pageNumber+1)+"')");}else{jQuery(c.qa).css("background-image","url('"+this.ga(c.pageNumber+1)+"')"),jQuery(c.qa).attr("src",this.ea);}}jQuery("#"+c.dc).hide();c.pa||this.na||jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1);c.pa=!0;}this.Ga(c,-1);this.Pf||(this.Pf=!0,c.F.Dh());},Dl:function(c){"TwoPage"==c.H||"BookView"==c.H?(0==c.pageNumber&&jQuery(c.fa).css("background-image","url("+this.ea+")"),1==c.pageNumber&&jQuery(c.fa).css("background-image","url("+this.ea+")")):jQuery(c.fa).css("background-image","url("+this.ea+")");},ub:function(c){jQuery(c.U).addClass("flowpaper_load_on_demand");var d=null;if("Portrait"==c.H||"ThumbView"==c.H||"SinglePage"==c.H){d=jQuery(c.qa);}if("TwoPage"==c.H||"BookView"==c.H){d=jQuery(c.qa),jQuery(c.qa).addClass("flowpaper_hidden");}c.H==this.Ka(c)&&this.wb(c).ub(this,c);null!=d&&0<d.length&&(d.attr("alt",d.attr("src")),d.attr("src","data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"));c.xc=!1;c.Fh=-1;jQuery(".flowpaper_pageword_"+this.P+"_page_"+c.pageNumber+":not(.flowpaper_selected_searchmatch, .flowpaper_annotation_"+this.P+")").remove();c.kj&&c.kj();jQuery(".flowpaper_annotation_"+this.P+"_page_"+c.pageNumber).remove();c.Lg&&c.Lg();},getNumPages:function(){return this.S.length;},Hc:function(c,d,e,g){this.Aa.Hc(c,d,e,g);},Gc:function(c,d,e,g){this.Aa.Gc(c,d,e,g);},Ne:function(c,d,e,g){this.Aa.Ne(c,d,e,g);},Ea:function(c,d,e){this.Aa.Ea(c,e);},sh:function(c,d){if(this.mb){if(c.scale<c.wg()){c.Yl=d,c.Zl=!1;}else{!d&&c.Yl&&(d=c.Yl);var e=0.25*Math.round(c.Ji()),g=0.25*Math.round(c.Ii());jQuery(".flowpaper_flipview_canvas_highres_"+c.pageNumber).remove();null==d&&(d=c.U);var h=eb.platform.Qd||eb.platform.android?"flowpaper_flipview_canvas_highres":c.aa+"_canvas_highres";jQuery(d).append(String.format("<div id='"+c.aa+"_canvas_highres_l1t1' class='{4}' style='z-index:11;position:relative;float:left;background-repeat:no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;clear:both;'></div>",0,0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_l2t1' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",e+0+0,0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_r1t1' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",2*e+0,0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_r2t1' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",3*e+0,0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_l1t2' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;clear:both;'></div>",0,g+0+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_l2t2' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",e+0+0,g+0+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_r1t2' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",2*e+0,g+0+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_r2t2' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",3*e+0,g+0+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_l1b1' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;clear:both;'></div>",0,2*g+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_l2b1' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",e+0+0,2*g+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_r1b1' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",2*e+0,2*g+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_r2b1' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",3*e+0,2*g+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_l1b2' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;clear:both;'></div>",0,3*g+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_l2b2' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",e+0+0,3*g+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_r1b2' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",2*e+0,3*g+0,e,g,h)+String.format("<div id='"+c.aa+"_canvas_highres_r2b2' class='{4}' style='z-index:11;position:relative;float:left;background-repeat-no-repeat;background-size:100% 100%;width:{2}px;height:{3}px;'></div>",3*e+0,3*g+0,e,g,h)+"");c.Zl=!0;}}},Sc:function(c){if(!(c.scale<c.wg())){!c.Zl&&this.mb&&this.sh(c);if(this.mb){var d=document.getElementById(c.aa+"_canvas_highres_l1t1"),e=document.getElementById(c.aa+"_canvas_highres_l2t1"),g=document.getElementById(c.aa+"_canvas_highres_l1t2"),h=document.getElementById(c.aa+"_canvas_highres_l2t2"),f=document.getElementById(c.aa+"_canvas_highres_r1t1"),k=document.getElementById(c.aa+"_canvas_highres_r2t1"),l=document.getElementById(c.aa+"_canvas_highres_r1t2"),m=document.getElementById(c.aa+"_canvas_highres_r2t2"),p=document.getElementById(c.aa+"_canvas_highres_l1b1"),r=document.getElementById(c.aa+"_canvas_highres_l2b1"),t=document.getElementById(c.aa+"_canvas_highres_l1b2"),q=document.getElementById(c.aa+"_canvas_highres_l2b2"),u=document.getElementById(c.aa+"_canvas_highres_r1b1"),v=document.getElementById(c.aa+"_canvas_highres_r2b1"),A=document.getElementById(c.aa+"_canvas_highres_r1b2"),w=document.getElementById(c.aa+"_canvas_highres_r2b2");if(1==c.pageNumber&&1==c.pages.R||c.pageNumber==c.pages.R-1||c.pageNumber==c.pages.R-2){var x=c.H==this.Ka(c)?c.pages.J:null,D=c.H==this.Ka(c)?c.pageNumber+1:c.pages.R+1;jQuery(d).visible(!0,x)&&"none"===jQuery(d).css("background-image")&&jQuery(d).css("background-image","url('"+this.Mb(D,"l1t1")+"')");jQuery(e).visible(!0,x)&&"none"===jQuery(e).css("background-image")&&jQuery(e).css("background-image","url('"+this.Mb(D,"l2t1")+"')");jQuery(g).visible(!0,x)&&"none"===jQuery(g).css("background-image")&&jQuery(g).css("background-image","url('"+this.Mb(D,"l1t2")+"')");jQuery(h).visible(!0,x)&&"none"===jQuery(h).css("background-image")&&jQuery(h).css("background-image","url('"+this.Mb(D,"l2t2")+"')");jQuery(f).visible(!0,x)&&"none"===jQuery(f).css("background-image")&&jQuery(f).css("background-image","url('"+this.Mb(D,"r1t1")+"')");jQuery(k).visible(!0,x)&&"none"===jQuery(k).css("background-image")&&jQuery(k).css("background-image","url('"+this.Mb(D,"r2t1")+"')");jQuery(l).visible(!0,x)&&"none"===jQuery(l).css("background-image")&&jQuery(l).css("background-image","url('"+this.Mb(D,"r1t2")+"')");jQuery(m).visible(!0,x)&&"none"===jQuery(m).css("background-image")&&jQuery(m).css("background-image","url('"+this.Mb(D,"r2t2")+"')");jQuery(p).visible(!0,x)&&"none"===jQuery(p).css("background-image")&&jQuery(p).css("background-image","url('"+this.Mb(D,"l1b1")+"')");jQuery(r).visible(!0,x)&&"none"===jQuery(r).css("background-image")&&jQuery(r).css("background-image","url('"+this.Mb(D,"l2b1")+"')");jQuery(t).visible(!0,x)&&"none"===jQuery(t).css("background-image")&&jQuery(t).css("background-image","url('"+this.Mb(D,"l1b2")+"')");jQuery(q).visible(!0,x)&&"none"===jQuery(q).css("background-image")&&jQuery(q).css("background-image","url('"+this.Mb(D,"l2b2")+"')");jQuery(u).visible(!0,x)&&"none"===jQuery(u).css("background-image")&&jQuery(u).css("background-image","url('"+this.Mb(D,"r1b1")+"')");jQuery(v).visible(!0,x)&&"none"===jQuery(v).css("background-image")&&jQuery(v).css("background-image","url('"+this.Mb(D,"r2b1")+"')");jQuery(A).visible(!0,x)&&"none"===jQuery(A).css("background-image")&&jQuery(A).css("background-image","url('"+this.Mb(D,"r1b2")+"')");jQuery(w).visible(!0,x)&&"none"===jQuery(w).css("background-image")&&jQuery(w).css("background-image","url('"+this.Mb(D,"r2b2")+"')");}}c.Bl=!0;}},Jc:function(c){if(this.mb){var d=eb.platform.Qd||eb.platform.android?"flowpaper_flipview_canvas_highres":c.aa+"_canvas_highres";c.Bl&&0<jQuery("."+d).length&&(jQuery("."+d).css("background-image",""),c.Bl=!1);}}};return f;}(),CanvasPageRenderer=window.CanvasPageRenderer=function(){function f(c,d,e,g){this.P=c;this.file=d;this.jsDirectory=e;this.initialized=!1;this.JSONPageDataFormat=this.Ia=this.dimensions=null;this.pageThumbImagePattern=g.pageThumbImagePattern;this.pageImagePattern=g.pageImagePattern;this.config=g;this.eh=this.P+"_dummyPageCanvas_[pageNumber]";this.vi="#"+this.eh;this.fh=this.P+"dummyPageCanvas2_[pageNumber]";this.wi="#"+this.fh;this.sb=[];this.context=this.fa=null;this.Sa=[];this.Kh=[];this.pb=this.Pf=!1;this.ea="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7";this.Bh=1;this.sa=[];this.Eg={};this.JSONPageDataFormat=null;this.ne=!0;this.Fa=null!=g.compressedJSONFormat?g.compressedJSONFormat:!0;this.li=[];}f.prototype={Mf:function(){return"CanvasPageRenderer";},Ka:function(c){return c.F?c.F.I?c.F.I.W:"":!1;},wb:function(c){return c.F.I.un;},dispose:function(){jQuery(this.Aa).unbind();this.Aa.dispose();delete this.uc;this.uc=null;delete this.dimensions;this.dimensions=null;delete this.Aa;this.Aa=null;delete this.Sa;this.Sa=null;delete this.Kh;this.Kh=null;},initialize:function(c,d){var e=this;e.uc=c;e.Xa=eb.platform.Xa;1<e.Xa&&eb.platform.touchonlydevice&&(e.Xa=1);e.config.MixedMode&&(eb.browser.lf||eb.browser.msie)&&0==e.file.indexOf("http")&&(e.config.MixedMode=!1);e.Vo=("undefined"!=e.jsDirectory&&null!=e.jsDirectory?e.jsDirectory:"js/")+"pdf.min.js";e.Fa?e.JSONPageDataFormat={sf:"width",qf:"height",Ge:"text",tb:"d",Hg:"f",pc:"l",Eb:"t",Dd:"w",Cd:"h"}:e.JSONPageDataFormat={sf:e.config.JSONPageDataFormat.pageWidth,qf:e.config.JSONPageDataFormat.pageHeight,Ge:e.config.JSONPageDataFormat.textCollection,tb:e.config.JSONPageDataFormat.textFragment,Hg:e.config.JSONPageDataFormat.textFont,pc:e.config.JSONPageDataFormat.textLeft,Eb:e.config.JSONPageDataFormat.textTop,Dd:e.config.JSONPageDataFormat.textWidth,Cd:e.config.JSONPageDataFormat.textHeight};e.ra=e.file.indexOf&&0<=e.file.indexOf("[*,")&&e.config&&null!=e.config.jsonfile&&!d.Kk;e.Aa=new va(e.P,e.ra,e.JSONPageDataFormat,!0);e.ra&&(e.Gp=e.file.substr(e.file.indexOf("[*,"),e.file.indexOf("]")-e.file.indexOf("[*,")),e.Ek=e.Ek=!1);PDFJS.workerSrc=("undefined"!=e.jsDirectory&&null!=e.jsDirectory?e.jsDirectory:"js/")+"pdf.worker.min.js";jQuery.getScript(e.Vo,function(){if(e.Ek){var g=new XMLHttpRequest;g.open("HEAD",e.ri(1),!1);g.overrideMimeType("application/pdf");g.onreadystatechange=function(){if(200==g.status){var c=g.getAllResponseHeaders(),d={};if(c){for(var c=c.split("\r\n"),h=0;h<c.length;h++){var f=c[h],n=f.indexOf(": ");0<n&&(d[f.substring(0,n)]=f.substring(n+2));}}e.bk="bytes"===d["Accept-Ranges"];e.yn="identity"===d["Content-Encoding"]||null===d["Content-Encoding"]||!d["Content-Encoding"];e.bk&&e.yn&&!eb.platform.ios&&!eb.browser.safari&&(e.file=e.file.substr(0,e.file.indexOf(e.Gp)-1)+".pdf",e.ra=!1);}g.abort();};try{g.send(null);}catch(f){}}window["wordPageList_"+e.P]=e.Aa.Sa;jQuery("#"+e.P).trigger("onDocumentLoading");FLOWPAPER.RANGE_CHUNK_SIZE&&(PDFJS.RANGE_CHUNK_SIZE=FLOWPAPER.RANGE_CHUNK_SIZE);PDFJS.disableWorker=e.ra||eb.browser.lf||eb.browser.msie;PDFJS.disableRange=e.ra;PDFJS.disableAutoFetch=e.ra||!1;PDFJS.disableStream=e.ra||!1;PDFJS.pushTextGeometries=!e.ra;PDFJS.verbosity=PDFJS.VERBOSITY_LEVELS.errors;PDFJS.enableStats=!1;PDFJS.ir=!0;PDFJS.jr=!0;if(e.ra){e.ra&&e.config&&null!=e.config.jsonfile&&(e.ra=!0,e.Rd=e.config.jsonfile,e.Yr=new Promise(function(){}),n=null!=FLOWPAPER.CHUNK_SIZE?FLOWPAPER.CHUNK_SIZE:10,e.Xe({url:e.Ff(n),dataType:e.config.JSONDataType,success:function(c){c.e&&(c=CryptoJS.Me.decrypt(c.e,CryptoJS.tc.Le.parse(eb.Sg?P():eb.he.innerHTML)),c=jQuery.parseJSON(c.toString(CryptoJS.tc.ig)),e.zf=!0);jQuery(e).trigger("loadingProgress",{P:e.P,progress:0.1});if(0<c.length){e.S=Array(c[0].pages);for(var d=0;d<c.length;d++){e.S[d]=c[d],e.S[d].loaded=!0,e.Ih(d);}0<e.S.length&&(e.Ta=e.S[0].twofold,e.Ta&&(e.Xa=1));for(d=0;d<e.S.length;d++){null==e.S[d]&&(e.S[d]=[],e.S[d].loaded=!1);}e.Aa&&e.Aa.Vc&&e.Aa.Vc(e.S);}e.Te=1;e.Ia=Array(c[0].pages);e.sb=Array(c[0].pages);e.Xi(e.Te,function(){jQuery(e).trigger("loadingProgress",{P:e.P,progress:1});e.uc();},null,function(c){c=0.1+c;1<c&&(c=1);jQuery(e).trigger("loadingProgress",{P:e.P,progress:c});});},error:function(g,h,f){h=null!=g.responseText&&0==g.responseText.indexOf("Error:")?g.responseText.substr(6):"";this.url.indexOf("view.php")||this.url.indexOf("view.ashx")?(console.log("Warning: Could not load JSON file. Switching to single file mode."),d.Kk=!0,e.ra=!1,e.initialize(c,d),e.pageThumbImagePattern=null):O("Error loading JSON file ("+g.statusText+","+f+"). Please check your configuration.","onDocumentLoadedError",e.P,h);}}));}else{e.Rd=e.config.jsonfile;var h=new jQuery.Deferred,n=null!=FLOWPAPER.CHUNK_SIZE?FLOWPAPER.CHUNK_SIZE:10;e.Rd&&0<e.Rd.length?e.Xe({url:e.Ff(n),dataType:e.config.JSONDataType,success:function(c){c.e&&(c=CryptoJS.Me.decrypt(c.e,CryptoJS.tc.Le.parse(eb.Sg?P():eb.he.innerHTML)),c=jQuery.parseJSON(c.toString(CryptoJS.tc.ig)),e.zf=!0);if(0<c.length){e.S=Array(c[0].pages);for(var d=0;d<c.length;d++){e.S[d]=c[d],e.S[d].loaded=!0,e.Ih(d);}for(d=0;d<e.S.length;d++){null==e.S[d]&&(e.S[d]=[],e.S[d].loaded=!1);}e.Aa&&e.Aa.Vc&&e.Aa.Vc(e.S);0<e.S.length&&(e.Ta=e.S[0].twofold,e.Ta&&(e.Xa=1));}h.resolve();}}):h.resolve();h.then(function(){var c={},g=e.file;d&&d.Kk&&g.match(/(page=\d)/ig)&&(g=g.replace(/(page=\d)/ig,""));!e.file.indexOf||e.file instanceof Uint8Array||e.file.indexOf&&0==e.file.indexOf("blob:")?c=g:c.url=g;e.Cl()&&(c.password=e.config.signature+"e0737b87e9be157a2f73ae6ba1352a65");var h=0;c.rangeChunkSize=FLOWPAPER.RANGE_CHUNK_SIZE;c=PDFJS.getDocument(c);c.onPassword=function(c,d){jQuery("#"+e.P).trigger("onPasswordNeeded",c,d);};c.onProgress=function(c){h=c.loaded/c.total;1<h&&(h=1);jQuery(e).trigger("loadingProgress",{P:e.P,progress:h});};c.then(function(c){0.5>h&&jQuery(e).trigger("loadingProgress",{P:e.P,progress:0.5});e.pdf=e.Ia=c;e.Ia.getPageLabels().then(function(c){jQuery(e).trigger("labelsLoaded",{fl:c});});e.initialized=!0;e.dimensions=null;e.sb=Array(e.Ta?e.S.length:e.Ia.numPages);e.dimensions=[];(e.Cn=e.Ia.getDestinations()).then(function(c){e.destinations=c;});(e.Ro=e.Ia.getOutline()).then(function(c){e.outline=c||[];});var g=d&&d.StartAtPage?parseInt(d.StartAtPage):1;e.Ia.getPage(g).then(function(c){c=c.getViewport(1);var d=e.Ia.numPages;!e.ra&&e.Ta&&(d=e.S.length);for(i=1;i<=d;i++){e.dimensions[i-1]=[],e.dimensions[i-1].page=i-1,e.dimensions[i-1].width=c.width,e.dimensions[i-1].height=c.height,e.dimensions[i-1].la=c.width,e.dimensions[i-1].ya=c.height;}e.si=!0;jQuery(e).trigger("loadingProgress",{P:e.P,progress:1});1==g&&1<d&&window.zine?e.Ia.getPage(2).then(function(c){c=c.getViewport(1);e.Ta=2*Math.round(e.dimensions[0].width)>=Math.round(c.width)-1&&2*Math.round(e.dimensions[0].width)<=Math.round(c.width)+1;if(e.Ta){e.S=Array(2*(d-1));for(var g=0;g<e.S.length;g++){e.S[g]={},e.S[g].text=[],e.S[g].pages=d,e.S[g].Ta=!0,e.S[g].width=0==g?e.dimensions[0].width:c.width,e.S[g].height=0==g?e.dimensions[0].height:c.height,e.Ih(g);}}e.uc();}):e.uc();});(null==e.config.jsonfile||null!=e.config.jsonfile&&0==e.config.jsonfile.length||!e.ra)&&e.$l(e.Ia);},function(c){O("Cannot load PDF file ("+c+")","onDocumentLoadedError",e.P,"Cannot load PDF file ("+c+")");jQuery(e).trigger("loadingProgress",{P:e.P,progress:"Error"});},function(){},function(c){jQuery(e).trigger("loadingProgress",{P:e.P,progress:c.loaded/c.total});});});}}).fail(function(){});e.JSONPageDataFormat={sf:"width",qf:"height",Ge:"text",tb:"d",Hg:"f",pc:"l",Eb:"t",Dd:"w",Cd:"h"};},Xi:function(c,d,e){var g=this,h={};h.url=g.ri(c);g.Cl()&&(h.password=g.config.signature+"e0737b87e9be157a2f73ae6ba1352a65");h.rangeChunkSize=FLOWPAPER.RANGE_CHUNK_SIZE;g.Fs=PDFJS.getDocument(h).then(function(h){g.Ia[c-1]=h;g.initialized=!0;g.dimensions||(g.dimensions=[]);g.Ia[c-1].getDestinations().then(function(c){g.destinations=c;});g.Ia[c-1].getPage(1).then(function(h){g.sb[c-1]=h;var f=h.getViewport(g.Ta?1:1.5),n=g.dimensions&&g.dimensions[c-1]?g.dimensions[c-1]:[],p=Math.floor(f.width),f=Math.floor(f.height),r=n&&n.width&&!(p>n.width-1&&p<n.width+1),t=n&&n.height&&!(f>n.height-1&&f<n.height+1);g.dimensions[c-1]=[];g.dimensions[c-1].loaded=!0;g.dimensions[c-1].page=c-1;g.dimensions[c-1].width=p;1<c&&g.Ta&&(c<g.Ia[c-1].numPages||0!=g.Ia[c-1].numPages%2)?(g.dimensions[c-1].width=g.dimensions[c-1].width/2,g.dimensions[c-1].la=p/2):g.dimensions[c-1].la=p;n.width&&!la(g.dimensions[c-1].width,n.width-1,n.width+1)&&e&&!g.Ta&&(e.dimensions.la=p,e.dimensions.ya=f,e.Qa());if(r||!g.dimensions[c-1].la){g.dimensions[c-1].la=p;}if(t||!g.dimensions[c-1].ya){g.dimensions[c-1].ya=f;}g.dimensions[c-1].height=f;1<c&&g.Ta&&(c<g.Ia[c-1].numPages||0!=g.Ia[c-1].numPages%2)&&(g.dimensions[c-1].la=g.dimensions[c-1].la/2);null!=g.Ba[c-1]&&g.Ba.length>c&&(g.dimensions[c-1].Yc=g.Ba[c].Yc,g.dimensions[c-1].Xc=g.Ba[c].Xc,g.dimensions[c-1].nb=g.Ba[c].nb,g.dimensions[c-1].ld=g.Ba[c].ld);g.Eg[c-1+" "+h.ref.gen+" R"]=c-1;g.si=!0;g.Te=-1;d&&d();});g.Te=-1;},function(c){O("Cannot load PDF file ("+c+")","onDocumentLoadedError",g.P);jQuery(g).trigger("loadingProgress",{P:g.P,progress:"Error"});g.Te=-1;});},Xe:function(c){var d=this;if("lz"==d.config.JSONDataType){if("undefined"===typeof Worker||eb.browser.msie&&11>eb.browser.version){ua(c.url,function(d,e){requestAnim(function(){var d="undefined"!=typeof Uint8Array?new Uint8Array(e):e,d=pako.inflate(d,{to:"string"});"undefined"!==typeof Response?(new Response(d)).json().then(function(d){c.success(d);}):c.success(JSON.parse(d));},10);});}else{var e=document.location.href.substr(0,document.location.href.lastIndexOf("/")+1);-1==c.url.indexOf("http")&&(c.url=e+c.url);d.xb||(d.xb={});d.xb[c.url]=c;d.jf||(d.jf=new Worker(("undefined"!=d.jsDirectory&&null!=d.jsDirectory?d.jsDirectory:"js/")+"flowpaper.worker.js"),d.jf.addEventListener("message",function(c){d.xb[c.data.url]&&("undefined"!==typeof Response?(new Response(c.data.JSON)).json().then(function(e){d.xb[c.data.url]&&(d.xb[c.data.url].success(e),d.xb[c.data.url]=null);}):d.xb[c.data.url]&&(d.xb[c.data.url].success(JSON.parse(c.data.JSON)),d.xb[c.data.url]=null));},!1));d.jf.postMessage(c.url);}}else{return jQuery.ajax(c);}},Ff:function(c){return this.Rd.replace("{page}",c);},hh:function(c){var d=1;if(1<c){for(var e=0;e<c;e++){(0!=e%2||0==e%2&&0==c%2&&e==c-1)&&d++;}return d;}return 1;},Cl:function(){return null!=this.config.signature&&0<this.config.signature.length;},ri:function(c){this.config.PageIndexAdjustment&&(c+=this.config.PageIndexAdjustment);this.Ta&&1<c&&(c=this.hh(c));if(0<=this.file.indexOf("{page}")){return this.file.replace("{page}",c);}if(0<=this.file.indexOf("[*,")){var d=this.file.substr(this.file.indexOf("[*,"),this.file.indexOf("]")-this.file.indexOf("[*,")+1);return this.file.replace(d,ma(c,parseInt(d.substr(d.indexOf(",")+1,d.indexOf("]")-2))));}},Kf:function(c){var d=null!=FLOWPAPER.CHUNK_SIZE?FLOWPAPER.CHUNK_SIZE:10;return 0===d?c:c+(d-c%d);},wc:function(c,d,e,g,h){var f=this;f.rd==f.Kf(c)?(window.clearTimeout(h.Do),h.Do=setTimeout(function(){h.dimensions.loaded||f.wc(c,d,e,g,h);},100)):(f.rd=f.Kf(c),f.Xe({url:f.Ff(f.rd),dataType:f.config.JSONDataType,async:d,success:function(c){c.e&&(c=CryptoJS.Me.decrypt(c.e,CryptoJS.tc.Le.parse(eb.Sg?P():eb.he.innerHTML)),c=jQuery.parseJSON(c.toString(CryptoJS.tc.ig)),f.zf=!0);if(0<c.length){for(var d=0;d<c.length;d++){var g=parseInt(c[d].number)-1;f.S[g]=c[d];f.S[g].loaded=!0;f.Ho(g);f.Ih(g,h);}f.Aa.Vc&&f.Aa.Vc(f.S);jQuery(f).trigger("onTextDataUpdated");null!=e&&e();}f.rd=null;},error:function(c){O("Error loading JSON file ("+c.statusText+"). Please check your configuration.","onDocumentLoadedError",f.P);f.rd=null;}}));},Ih:function(c){this.Ba||(this.Ba=[]);this.Ba[c]||(this.Ba[c]=[]);this.Ba[c].Yc=this.S[c][this.JSONPageDataFormat.sf];this.Ba[c].Xc=this.S[c][this.JSONPageDataFormat.qf];this.Ba[c].nb=this.Ba[c].Yc;this.Ba[c].ld=this.Ba[c].Xc;c=this.Ba[c];for(var d=0;d<this.getNumPages();d++){null==this.Ba[d]&&(this.Ba[d]=[],this.Ba[d].Yc=c.Yc,this.Ba[d].Xc=c.Xc,this.Ba[d].nb=c.nb,this.Ba[d].ld=c.ld);}},getDimensions:function(){var c=this;if(null==c.dimensions||c.si||null!=c.dimensions&&0==c.dimensions.length){null==c.dimensions&&(c.dimensions=[]);var d=c.Ia.numPages;!c.ra&&c.Ta&&(d=c.S.length);if(c.ra){for(var e=0;e<c.getNumPages();e++){null!=c.dimensions[e]||null!=c.dimensions[e]&&!c.dimensions[e].loaded?(null==c.sc&&(c.sc=c.dimensions[e]),c.dimensions[e].nb||null==c.Ba[e]||(c.dimensions[e].nb=c.Ba[e].nb,c.dimensions[e].ld=c.Ba[e].ld)):null!=c.sc&&(c.dimensions[e]=[],c.dimensions[e].page=e,c.dimensions[e].loaded=!1,c.dimensions[e].width=c.sc.width,c.dimensions[e].height=c.sc.height,c.dimensions[e].la=c.sc.la,c.dimensions[e].ya=c.sc.ya,null!=c.Ba[e]&&(c.dimensions[e].width=c.Ba[e].Yc,c.dimensions[e].height=c.Ba[e].Xc,c.dimensions[e].la=c.Ba[e].nb,c.dimensions[e].ya=c.Ba[e].ld),null!=c.Ba[e-1]&&(c.dimensions[e-1].Yc=c.Ba[e].Yc,c.dimensions[e-1].Xc=c.Ba[e].Xc,c.dimensions[e-1].nb=c.Ba[e].nb,c.dimensions[e-1].ld=c.Ba[e].ld),e==c.getNumPages()-1&&(c.dimensions[e].Yc=c.Ba[e].Yc,c.dimensions[e].Xc=c.Ba[e].Xc,c.dimensions[e].nb=c.Ba[e].nb,c.dimensions[e].ld=c.Ba[e].ld),c.Eg[e+" 0 R"]=e);}}else{c.Lk=[];for(e=1;e<=d;e++){var g=e;c.Ta&&(g=c.hh(e));c.Lk.push(c.Ia.getPage(g).then(function(d){var e=d.getViewport(1);c.dimensions[d.pageIndex]=[];c.dimensions[d.pageIndex].page=d.pageIndex;c.dimensions[d.pageIndex].width=e.width;c.dimensions[d.pageIndex].height=e.height;c.dimensions[d.pageIndex].la=e.width;c.dimensions[d.pageIndex].ya=e.height;e=d.ref;c.Eg[e.num+" "+e.gen+" R"]=d.pageIndex;}));}if(Promise.all){if(c.Ta){for(e=1;e<=d;e++){c.dimensions[e]||(c.dimensions[e]=[],c.dimensions[e].page=e+1,c.dimensions[e].width=c.dimensions[0].width,c.dimensions[e].height=c.dimensions[0].height,c.dimensions[e].la=c.dimensions[0].la,c.dimensions[e].ya=c.dimensions[0].ya);}}Promise.all(c.Lk.concat(c.Cn).concat(c.Ro)).then(function(){jQuery(c).trigger("outlineAdded",{P:c.P});});}}c.si=!1;}return c.dimensions;},Ho:function(c){if(this.dimensions[c]){this.dimensions[c].page=c;this.dimensions[c].loaded=!0;this.sa[c]=[];this.sa[c]="";for(var d=null,e=0,g;g=this.S[c][this.JSONPageDataFormat.Ge][e++];){this.Fa?!isNaN(g[0].toString())&&0<=Number(g[0].toString())&&!isNaN(g[1].toString())&&0<=Number(g[1].toString())&&!isNaN(g[2].toString())&&0<=Number(g[2].toString())&&!isNaN(g[3].toString())&&0<=Number(g[3].toString())&&(d&&Math.round(d[0])!=Math.round(g[0])&&Math.round(d[1])==Math.round(g[1])&&(this.sa[c]+=" "),d&&Math.round(d[0])!=Math.round(g[0])&&!this.sa[c].endsWith(" ")&&(this.sa[c]+=" "),d=/\\u([\d\w]{4})/gi,d=(g[5]+"").replace(d,function(c,d){return String.fromCharCode(parseInt(d,16));}),this.config.RTLMode||(this.sa[c]+=d),this.config.RTLMode&&(this.sa[c]+=Q(d))):!isNaN(g[this.JSONPageDataFormat.pc].toString())&&0<=Number(g[this.JSONPageDataFormat.pc].toString())&&!isNaN(g[this.JSONPageDataFormat.Eb].toString())&&0<=Number(g[this.JSONPageDataFormat.Eb].toString())&&!isNaN(g[this.JSONPageDataFormat.Dd].toString())&&0<Number(g[this.JSONPageDataFormat.Dd].toString())&&!isNaN(g[this.JSONPageDataFormat.Cd].toString())&&0<Number(g[this.JSONPageDataFormat.Cd].toString())&&(d&&Math.round(d[this.JSONPageDataFormat.Eb])!=Math.round(g[this.JSONPageDataFormat.Eb])&&Math.round(d[this.JSONPageDataFormat.pc])==Math.round(prev[this.JSONPageDataFormat.pc])&&(this.sa[c]+=" "),d&&Math.round(d[this.JSONPageDataFormat.Eb])!=Math.round(g[this.JSONPageDataFormat.Eb])&&!this.sa[c].endsWith(" ")&&(this.sa[c]+=" "),d=/\\u([\d\w]{4})/gi,d=(g[this.JSONPageDataFormat.tb]+"").replace(d,function(c,d){return String.fromCharCode(parseInt(d,16));}),this.config.RTLMode||(this.sa[c]+=d),this.config.RTLMode&&(this.sa[c]+=Q(d))),d=g;}this.sa[c]=this.sa[c].toLowerCase();}},getNumPages:function(){return this.ra?this.S.length:this.Ta?this.S.length:this.Ia?this.Ia.numPages:this.S.length;},getPage:function(c){this.Ia.getPage(c).then(function(c){return c;});return null;},Uc:function(c){var d=this;"TwoPage"==c.H||"BookView"==c.H?(0==c.pageNumber&&jQuery(c.fa).css("background-image","url('"+d.ga(c.pages.R+1)+"')"),1==c.pageNumber&&jQuery(c.fa).css("background-image","url('"+d.ga(c.pages.R+2)+"')")):"ThumbView"==c.H?jQuery(c.fa).css("background-image","url('"+d.ga(c.pageNumber+1,200)+"')"):"SinglePage"==c.H?jQuery(c.fa).css("background-image","url('"+d.ga(d.Da(c)+1)+"')"):jQuery(c.fa).css("background-image","url('"+d.ga(c.pageNumber+1)+"')");c.V=new Image;jQuery(c.V).bind("load",function(){var e=Math.round(c.V.width/c.V.height*100),g=Math.round(c.dimensions.width/c.dimensions.height*100);if("SinglePage"==c.H){var e=d.Ba[c.pages.R],h=Math.round(e.Yc/e.Xc*100),g=Math.round(c.dimensions.la/c.dimensions.ya*100);h!=g&&(c.dimensions.la=e.Yc,c.dimensions.ya=e.Xc,c.Qa(),c.Gj=-1,d.Ea(c,!0,null));}else{e!=g&&(c.dimensions.la=c.V.width,c.dimensions.ya=c.V.height,c.Qa(),c.Gj=-1,d.Ea(c,!0,null));}});jQuery(c.V).attr("src",d.ga(c.pageNumber+1));},Dl:function(c){"TwoPage"==c.H||"BookView"==c.H?(0==c.pageNumber&&jQuery(c.fa).css("background-image","url("+this.ea+")"),1==c.pageNumber&&jQuery(c.fa).css("background-image","url("+this.ea+")")):jQuery(c.fa).css("background-image","url("+this.ea+")");},Pd:function(c){this.vb=c.vb=this.ra&&this.config.MixedMode;"Portrait"!=c.H&&"SinglePage"!=c.H||jQuery(c.U).append("<canvas id='"+this.Ca(1,c)+"' style='position:relative;left:0px;top:0px;width:100%;height:100%;display:none;background-repeat:no-repeat;background-size:"+((eb.browser.mozilla||eb.browser.safari)&&eb.platform.mac?"100% 100%":"cover")+";background-color:#ffffff;' class='"+(this.config.DisableShadows?"":"flowpaper_border")+" flowpaper_interactivearea flowpaper_grab flowpaper_hidden flowpaper_rescale'></canvas><canvas id='"+this.Ca(2,c)+"' style='position:relative;left:0px;top:0px;width:100%;height:100%;display:block;background-repeat:no-repeat;background-size:"+((eb.browser.mozilla||eb.browser.safari)&&eb.platform.mac?"100% 100%":"cover")+";background-color:#ffffff;' class='"+(this.config.DisableShadows?"":"flowpaper_border")+" flowpaper_interactivearea flowpaper_grab flowpaper_hidden flowpaper_rescale'></canvas>");c.H==this.Ka(c)&&this.wb(c).Pd(this,c);"ThumbView"==c.H&&jQuery(c.U).append("<canvas id='"+this.Ca(1,c)+"' style='"+c.getDimensions()+";background-repeat:no-repeat;background-size:"+((eb.browser.mozilla||eb.browser.safari)&&eb.platform.mac?"100% 100%":"cover")+";background-color:#ffffff;' class='flowpaper_interactivearea flowpaper_grab flowpaper_hidden' ></canvas>");if("TwoPage"==c.H||"BookView"==c.H){0==c.pageNumber&&(jQuery(c.U+"_1").append("<img id='"+c.dc+"_1' src='"+c.F.ie+"' style='position:absolute;left:"+(c.za()-30)+"px;top:"+c.Ha()/2+"px;' />"),jQuery(c.U+"_1").append("<canvas id='"+this.Ca(1,c)+"' style='position:absolute;width:100%;height:100%;background-repeat:no-repeat;background-size:"+((eb.browser.mozilla||eb.browser.safari)&&eb.platform.mac?"100% 100%":"cover")+";background-color:#ffffff;' class='flowpaper_interactivearea flowpaper_grab flowpaper_hidden'/></canvas>"),jQuery(c.U+"_1").append("<div id='"+c.aa+"_1_textoverlay' style='position:relative;left:0px;top:0px;width:100%;height:100%;z-index:10'></div>")),1==c.pageNumber&&(jQuery(c.U+"_2").append("<img id='"+c.dc+"_2' src='"+c.F.ie+"' style='position:absolute;left:"+(c.za()/2-10)+"px;top:"+c.Ha()/2+"px;' />"),jQuery(c.U+"_2").append("<canvas id='"+this.Ca(2,c)+"' style='position:absolute;width:100%;height:100%;background-repeat:no-repeat;background-size:"+((eb.browser.mozilla||eb.browser.safari)&&eb.platform.mac?"100% 100%":"cover")+";background-color:#ffffff;' class='flowpaper_interactivearea flowpaper_grab flowpaper_hidden'/></canvas>"),jQuery(c.U+"_2").append("<div id='"+c.aa+"_2_textoverlay' style='position:absolute;left:0px;top:0px;width:100%;height:100%;z-index:10'></div>"));}},Ca:function(c,d){var e=d.pageNumber;if(("TwoPage"==d.H||"BookView"==d.H)&&0==d.pageNumber%2){return this.P+"_dummyCanvas1";}if(("TwoPage"==d.H||"BookView"==d.H)&&0!=d.pageNumber%2){return this.P+"_dummyCanvas2";}if(1==c){return this.eh.replace("[pageNumber]",e);}if(2==c){return this.fh.replace("[pageNumber]",e);}},ao:function(c,d){if(("TwoPage"==d.H||"BookView"==d.H)&&0==d.pageNumber%2){return"#"+this.P+"_dummyCanvas1";}if(("TwoPage"==d.H||"BookView"==d.H)&&0!=d.pageNumber%2){return"#"+this.P+"_dummyCanvas2";}if(1==c){return this.vi.replace("[pageNumber]",d.pageNumber);}if(2==c){return this.wi.replace("[pageNumber]",d.pageNumber);}},Tb:function(c,d,e){var g=this;g.yi=!0;if(c.H!=g.Ka(c)||g.wb(c).Bp(g,c,d,e)){if("Portrait"!=c.H&&"TwoPage"!=c.H&&"BookView"!=c.H||null!=c.context||c.xc||(c.Wc(),c.xc=!0),1==g.gp&&1<c.scale&&c.vb&&g.Ga(c,-1),-1<g.Da(c)||g.ra&&null!=g.Zf){window.clearTimeout(c.oc),c.oc=setTimeout(function(){setTimeout(function(){g.Tb(c,d,e);});},50);}else{g.il=c;g.gp=c.scale;if("TwoPage"==c.H||"BookView"==c.H){if(0==c.pageNumber){"BookView"==c.H?g.Ga(c,0==c.pages.R?c.pages.R:c.pages.R-1):"TwoPage"==c.H&&g.Ga(c,c.pages.R),g.zk=c,c.Pb();}else{if(1==c.pageNumber){"BookView"==c.H?g.Ga(c,c.pages.R):"TwoPage"==c.H&&g.Ga(c,c.pages.R+1),g.zk=c,jQuery(c.U+"_2").removeClass("flowpaper_hidden"),jQuery(c.U+"_2").removeClass("flowpaper_load_on_demand"),c.Pb();}else{return;}}}else{"SinglePage"==c.H?g.Ga(c,c.pages.R):(g.Ga(c,c.pageNumber),g.zk=c);}g.yj(c);if((c.vb||g.ra)&&!c.dimensions.loaded){var h=c.pageNumber+1;"SinglePage"==c.H&&(h=g.Da(c)+1);g.wc(h,!0,function(){c.dimensions.loaded=!1;g.Hc(c);},!0,c);}var h=!1,f=c.Dg;if("Portrait"==c.H||"SinglePage"==c.H||"TwoPage"==c.H||"BookView"==c.H||c.H==g.Ka(c)&&g.wb(c).iq(g,c)){var h=!0,k=c.bc(),l=c.za(),m=c.Ha();0==jQuery("#"+f).length?(f="<div id='"+f+"' class='flowpaper_textLayer' style='width:"+l+"px;height:"+m+"px;backface-visibility:hidden;margin-left:"+k+"px;'></div>","Portrait"==c.H||g.Ka(c)||"SinglePage"==c.H?jQuery(c.xa).append(f):"TwoPage"!=c.H&&"BookView"!=c.H||jQuery(c.xa+"_"+(c.pageNumber%2+1)).append(f)):jQuery("#"+f).css({width:l,height:m,"margin-left":k});if(90==c.rotation||270==c.rotation||180==c.rotation){jQuery(c.Bb).css({"z-index":11,"margin-left":k}),jQuery(c.Bb).transition({rotate:c.rotation,translate:"-"+k+"px, 0px"},0);}}if(c.vb&&c.scale<=g.zh(c)&&!c.ti){-1<g.Da(c)&&window.clearTimeout(c.oc),jQuery(c.U).removeClass("flowpaper_load_on_demand"),g.ra&&c.F.initialized&&!c.tn?g.li.push(function(){var d=new XMLHttpRequest;d.open("GET",g.ri(c.pageNumber+1),!0);d.overrideMimeType("text/plain; charset=x-user-defined");d.addEventListener("load",function(){g.Jd();});d.addEventListener("error",function(){g.Jd();});d.send(null);c.tn=!0;}):g.bk&&null==g.sb[g.Da(c)]&&(k=g.Da(c)+1,g.Ia&&g.Ia.getPage&&g.Ia.getPage(k).then(function(d){g.sb[g.Da(c)]=d;})),c.H==g.Ka(c)?g.wb(c).Tb(g,c,d,e):(g.Uc(c),g.Ye(c,e)),c.pa=!0;}else{if(c.vb&&c.scale>g.zh(c)&&!c.ti){c.H!=g.Ka(c)&&g.Uc(c);}else{if(!c.vb&&c.Pc&&c.H==g.Ka(c)&&1==c.scale&&!g.bh){if(!c.md&&100!=c.fa.width){c.md=c.fa.toDataURL(),k=jQuery("#"+g.Ca(1,c)),k.css("background-image").length<c.md.length+5&&k.css("background-image","url("+c.md+")"),k[0].width=100;}else{if(c.md&&!g.ra&&"none"!=jQuery("#"+g.Ca(1,c)).css("background-image")){g.Ga(c,-1);c.pa=!0;return;}}g.xl(c);}}null!=g.sb[g.Da(c)]||g.ra||(k=g.Da(c)+1,g.Ta&&(k=g.hh(k)),g.Ia&&g.Ia.getPage&&g.Ia.getPage(k).then(function(h){g.sb[g.Da(c)]=h;window.clearTimeout(c.oc);g.Ga(c,-1);g.Tb(c,d,e);}));if(c.fa){if(100==c.fa.width||1!=c.scale||c.H!=g.Ka(c)||c.Gl){if(k=!0,null==g.sb[g.Da(c)]&&g.ra&&(c.H==g.Ka(c)&&(k=g.wb(c).Ap(g,c)),null==g.Ia[g.Da(c)]&&-1==g.Te&&k&&null==g.Zf&&(g.Te=g.Da(c)+1,g.Xi(g.Te,function(){window.clearTimeout(c.oc);g.Ga(c,-1);g.Tb(c,d,e);},c))),null!=g.sb[g.Da(c)]||!k){if(c.H==g.Ka(c)?g.wb(c).Tb(g,c,d,e):(c.fa.width=c.za(),c.fa.height=c.Ha()),g.Ta&&0<c.Ib.indexOf("cropCanvas")&&(c.fa.width=2*c.fa.width),null!=g.sb[g.Da(c)]||!k){if(g.yi){k=c.fa.height/g.getDimensions()[c.pageNumber].height;c.H!=g.Ka(c)&&(k*=g.Xa,g.ra&&(k*=1.5));g.bq=k;1.5>k&&(k=1.5);g.Zr=k;var p=g.sb[g.Da(c)].getViewport(k);g.Ta||(c.fa.width=p.width,c.fa.height=p.height);var r=c.fp={canvasContext:c.context,viewport:p,pageNumber:c.pageNumber,Lh:h&&!g.ra?new wa:null};g.sb[g.Da(c)].objs.geometryTextList=[];window.requestAnim(function(){c.fa.style.display="none";c.fa.redraw=c.fa.offsetHeight;c.fa.style.display="";g.Zf=g.sb[g.Da(c)].render(r);g.Zf.onContinue=function(c){c();};g.Zf.promise.then(function(){g.Zf=null;if(null!=g.sb[g.Da(c)]){if(g.ra||c.vb&&c.scale<=g.zh(c)||!c.fa){g.ra||g.Tl(g.sb[g.Da(c)],c,p,g.ra),g.Ye(c,e);}else{var d=c.fa.height/g.getDimensions()[c.pageNumber].height,h=g.sb[g.Da(c)].objs.geometryTextList;if(h){for(var f=0;f<h.length;f++){h[f].qp!=d&&(h[f].h=h[f].metrics.height/d,h[f].l=h[f].metrics.left/d,h[f].t=h[f].metrics.top/d,h[f].w=h[f].textMetrics.geometryWidth/d,h[f].d=h[f].unicode,h[f].f=h[f].fontFamily,h[f].qp=d);}"SinglePage"==c.H||"TwoPage"==c.H||"BookView"==c.H?g.Aa.Nl(h,g.Da(c),g.getNumPages()):g.Aa.Nl(h,c.pageNumber,g.getNumPages());}g.Tl(g.sb[g.Da(c)],c,p,g.ra);g.Ye(c,e);g.Ea(c,!0,e);}}else{g.Ye(c,e),M(c.pageNumber+"  is missing its pdf page ("+g.Da(c)+")");}},function(c){O(c.toString(),"onDocumentLoadedError",g.P);g.Zf=null;});},50);}else{g.Ga(c,-1);}jQuery(c.U).removeClass("flowpaper_load_on_demand");}}}else{jQuery("#"+g.Ca(1,c)).Bc(),jQuery("#"+g.Ca(2,c)).Jb(),1==c.scale&&eb.browser.safari?(jQuery("#"+g.Ca(1,c)).css("-webkit-backface-visibility","hidden"),jQuery("#"+g.Ca(2,c)).css("-webkit-backface-visibility","hidden"),jQuery("#"+c.aa+"_textoverlay").css("-webkit-backface-visibility","hidden")):eb.browser.safari&&(jQuery("#"+g.Ca(1,c)).css("-webkit-backface-visibility","visible"),jQuery("#"+g.Ca(2,c)).css("-webkit-backface-visibility","visible"),jQuery("#"+c.aa+"_textoverlay").css("-webkit-backface-visibility","visible")),g.Ga(c,-1),c.pa||jQuery("#"+g.P).trigger("onPageLoaded",c.pageNumber+1),c.pa=!0,g.Ea(c,!0,e);}}else{window.clearTimeout(c.oc);}}}}},xl:function(c){var d=null,e=null;0!=c.pageNumber%2?(d=c,e=c.F.pages.pages[c.pageNumber-1]):(e=c,d=c.F.pages.pages[c.pageNumber+1]);if(c.H==this.Ka(c)&&!c.vb&&c.Pc&&d&&e&&(!d.jc||!e.jc)&&!this.bh){var g=e.md,d=d.md;g&&d&&!c.jc&&e.Pc(g,d);}},zh:function(){return 1.1;},Da:function(c){return this.ra||PDFJS.disableWorker||null==c?this.Ue:c.Ue;},Ga:function(c,d){(!this.ra||c&&c.vb&&1==c.scale)&&c&&(c.Ue=d);this.Ue=d;},yj:function(c){"Portrait"==c.H||"SinglePage"==c.H?jQuery(this.ao(1,c)).is(":visible")?(c.Ib=this.Ca(2,c),c.Sf=this.Ca(1,c)):(c.Ib=this.Ca(1,c),c.Sf=this.Ca(2,c)):c.H==this.Ka(c)?this.wb(c).yj(this,c):(c.Ib=this.Ca(1,c),c.Sf=null);this.Ta&&0<c.pageNumber&&0==c.pageNumber%2?(c.fa=document.createElement("canvas"),c.fa.width=c.fa.height=100,c.fa.id=c.Ib+"_cropCanvas",c.Ib=c.Ib+"_cropCanvas"):c.fa=document.getElementById(c.Ib);null!=c.po&&(c.po=document.getElementById(c.Sf));c.fa&&c.fa.getContext&&(c.context=c.fa.getContext("2d"),c.context.gg=c.context.mozImageSmoothingEnabled=c.context.imageSmoothingEnabled=!1);},zn:function(c,d,e,g){c=g.convertToViewportRectangle(d.rect);c=PDFJS.Util.normalizeRect(c);d=e.bc();g=document.createElement("a");var h=e.H==this.Ka(e)?1:this.Xa;g.style.position="absolute";g.style.left=Math.floor(c[0])/h+d+"px";g.style.top=Math.floor(c[1])/h+"px";g.style.width=Math.ceil(c[2]-c[0])/h+"px";g.style.height=Math.ceil(c[3]-c[1])/h+"px";g.style["z-index"]=20;g.style.cursor="pointer";g.className="pdfPageLink_"+e.pageNumber+" flowpaper_interactiveobject_"+this.P;return g;},Tl:function(c,d,e,g){var h=this;if(1==d.scale||d.H!=h.Ka(d)){jQuery(".pdfPageLink_"+d.pageNumber).remove(),c.getAnnotations().then(function(e){for(var f=0;f<e.length;f++){var l=e[f];switch(l.subtype){case"Link":var m=h.zn("a",l,d,c.getViewport(h.bq),c.view);m.style.position="absolute";m.href=l.url||"";eb.platform.touchonlydevice||(jQuery(m).on("mouseover",function(){jQuery(this).stop(!0,!0);jQuery(this).css("background",d.F.linkColor);jQuery(this).css({opacity:d.F.Oc});}),jQuery(m).on("mouseout",function(){jQuery(this).css("background","");jQuery(this).css({opacity:0});}));l.url||g?null!=m.href&&""!=m.href&&l.url&&(jQuery(m).on("click touchstart",function(){jQuery(d.L).trigger("onExternalLinkClicked",this.href);}),jQuery(d.xa).append(m)):(l="string"===typeof l.dest?h.destinations[l.dest][0]:null!=l&&null!=l.dest?l.dest[0]:null,l=l instanceof Object?h.Eg[l.num+" "+l.gen+" R"]:l+1,jQuery(m).data("gotoPage",l+1),jQuery(m).on("click touchstart",function(){d.F.gotoPage(parseInt(jQuery(this).data("gotoPage")));return !1;}),jQuery(d.xa).append(m));}}});}},Ye:function(c,d){this.Ea(c,!0,d);jQuery("#"+c.Ib).Bc();this.Wk(c);"Portrait"!=c.H&&"SinglePage"!=c.H||jQuery(c.Sb).remove();c.H==this.Ka(c)&&this.wb(c).Ye(this,c,d);if(c.Ib&&0<c.Ib.indexOf("cropCanvas")){var e=c.fa;c.Ib=c.Ib.substr(0,c.Ib.length-11);c.fa=jQuery("#"+c.Ib).get(0);c.fa.width=e.width/2;c.fa.height=e.height;c.fa.getContext("2d").drawImage(e,e.width/2,0,c.fa.width,c.fa.height,0,0,e.width/2,e.height);jQuery(c.fa).Bc();}c.vb||!c.Pc||c.jc||!c.fa||this.bh||(c.md=c.fa.toDataURL(),this.xl(c));if(c.md&&1==c.scale&&!this.bh){var g=jQuery("#"+this.Ca(1,c));requestAnim(function(){g.css("background-image").length<c.md.length+5&&g.css("background-image","url("+c.md+")");g[0].width=100;});}if("TwoPage"==c.H||"BookView"==c.H){0==c.pageNumber&&(jQuery(c.qa).removeClass("flowpaper_hidden"),jQuery(c.U+"_1").removeClass("flowpaper_hidden")),1==c.pageNumber&&jQuery(c.qa).removeClass("flowpaper_hidden");}c.pa||jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1);c.pa=!0;c.Gl=!1;c.Pr=!1;this.Pf||(this.Pf=!0,c.F.Dh());null!=d&&d();this.Jd();},Jd:function(){0<this.li.length&&-1==this.Da()&&this.il.pa&&!this.il.zb&&this.li.shift()();},Wk:function(c){"TwoPage"==c.H||"BookView"==c.H||c.H==this.Ka(c)&&!eb.browser.safari||jQuery("#"+c.Sf).Jb();this.Ga(c,-1);},ga:function(c,d){this.config.RTLMode&&this.S&&this.S.length&&(c=this.S.length-c+1);this.zf&&(c=CryptoJS.Me.encrypt(c.toString(),CryptoJS.tc.Le.parse(eb.Sg?P():eb.he.innerHTML)).toString());this.config.PageIndexAdjustment&&(c+=this.config.PageIndexAdjustment);if(!d){return this.pageSVGImagePattern?this.pageSVGImagePattern.replace("{page}",c):this.pageImagePattern.replace("{page}",c);}if(null!=this.pageThumbImagePattern&&0<this.pageThumbImagePattern.length){return this.pageThumbImagePattern.replace("{page}",c)+(0<this.pageThumbImagePattern.indexOf("?")?"&":"?")+"resolution="+d;}},ub:function(c){jQuery(".flowpaper_pageword_"+this.P+"_page_"+c.pageNumber+":not(.flowpaper_selected_searchmatch, .flowpaper_annotation_"+this.P+")").remove();c.H!=this.Ka(c)&&this.Dl(c);c.vb&&(jQuery(c.fa).css("background-image","url("+this.ea+")"),c.V=null);null!=c.context&&null!=c.fa&&100!=c.fa.width&&(this.context=this.fa=c.fp=null,c.kj&&c.kj(),jQuery(".flowpaper_annotation_"+this.P+"_page_"+c.pageNumber).remove());this.ra&&(this.sb[c.pageNumber]&&this.sb[c.pageNumber].cleanup(),this.Ia[c.pageNumber]=null,this.sb[c.pageNumber]=null);c.Lg&&c.Lg();},$l:function(c){var d=this;d.Ia&&d.Ia.getPage(d.Bh).then(function(e){e.getTextContent().then(function(e){var h="";if(e){for(var f=0;f<e.items.length;f++){h+=e.items[f].str;}}d.sa[d.Bh-1]=h.toLowerCase();e=d.getNumPages();!d.ra&&d.Ta&&(e=d.Ia.numPages);d.Bh+1<e+1&&(d.Bh++,d.$l(c));});});},Hc:function(c,d,e,g){this.Aa.Hc(c,d,e,g);},Gc:function(c,d,e,g){this.Aa.Gc(c,d,e,g);},Ne:function(c,d,e,g){this.Aa.Ne(c,d,e,g);},Ea:function(c,d,e){var g=null!=this.S&&this.S[c.pageNumber]&&this.S[c.pageNumber].text&&0<this.S[c.pageNumber].text.length&&this.ra;if(c.pa||d||g){c.Gj!=c.scale&&(jQuery(".flowpaper_pageword_"+this.P+"_page_"+c.pageNumber).remove(),c.Gj=c.scale),d=null!=this.eg?this.eg:e,this.eg=null,this.Aa&&this.Aa.Ea&&this.Aa.Ea(c,d);}else{if(null!=e){if(null!=this.eg){var h=this.eg;this.eg=function(){h();e();};}else{this.eg=e;}}}}};return f;}();function wa(){this.beginLayout=function(){this.textDivs=[];this.Kh=[];};this.endLayout=function(){};}var va=window.TextOverlay=function(){function f(c,d,e,g){this.P=c;this.JSONPageDataFormat=e;this.S=[];this.Oa=null;this.Sa=[];this.Fa=this.hq=d;this.pb=g;this.state={};this.ea="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7";}f.prototype={dispose:function(){delete this.P;this.P=null;delete this.S;this.S=null;delete this.JSONPageDataFormat;this.JSONPageDataFormat=null;delete this.Oa;this.Oa=null;delete this.Sa;this.Sa=null;delete this.state;this.state=null;delete this.ea;this.ea=null;delete this.pb;this.pb=null;},pp:function(){this.state[this.Fa]||(this.state[this.Fa]=[],this.state[this.Fa].S=this.S,this.state[this.Fa].Oa=this.Oa,this.state[this.Fa].Sa=this.Sa,window["wordPageList_"+this.P]=null);this.S=[];this.Oa=null;this.Sa=[];this.Fa=this.hq;},Ka:function(c){return c.F.I?c.F.I.W:"";},wb:function(c){return c.F.I.Zp;},hn:function(c){return c.F.document.AutoDetectLinks;},Vc:function(c){this.S=c;null==this.Oa&&(this.Oa=Array(c.length));window["wordPageList_"+this.P]=this.Sa;},Nl:function(c,d,e){null==this.Oa&&(this.Oa=Array(e));this.S[d]=[];this.S[d].text=c;window["wordPageList_"+this.P]=this.Sa;},Hc:function(c,d,e,g){var h=c.pageNumber,f=!1,k=!1;if(!this.Oa){if(c.vb&&(this.Fa=!0),this.state[this.Fa]){if(this.S=this.state[this.Fa].S,this.Oa=this.state[this.Fa].Oa,this.Sa=this.state[this.Fa].Sa,window["wordPageList_"+this.P]=this.Sa,!this.Oa){return;}}else{return;}}if(window.annotations||!eb.touchdevice||g){if(window.annotations||c.F.qc||g||c.F.Zk||(f=!0),k=null!=this.yd&&null!=this.yd[c.pageNumber],"ThumbView"!=c.H){if("BookView"==c.H&&(0==c.pageNumber&&(h=0!=c.pages.R?c.pages.R-1:c.pages.R),1==c.pageNumber&&(h=c.pages.R),0==c.pages.getTotalPages()%2&&h==c.pages.getTotalPages()&&(h=h-1),0==c.pages.R%2&&c.pages.R>c.pages.getTotalPages())){return;}"SinglePage"==c.H&&(h=c.pages.R);if("TwoPage"==c.H&&(0==c.pageNumber&&(h=c.pages.R),1==c.pageNumber&&(h=c.pages.R+1),1==c.pageNumber&&h>=c.pages.getTotalPages()&&0!=c.pages.getTotalPages()%2)){return;}d=c.Wa||!d;c.H==this.Ka(c)&&(isvisble=this.wb(c).Nc(this,c));g=jQuery(".flowpaper_pageword_"+this.P+"_page_"+h+":not(.flowpaper_annotation_"+this.P+")"+(g?":not(.pdfPageLink_"+h+")":"")).length;var l=null!=c.dimensions.nb?c.dimensions.nb:c.dimensions.la,l=this.pb?c.za()/l:1;if(d&&0==g){var m=g="",p=0,r=h;c.F.config.document.RTLMode&&(r=c.pages.getTotalPages()-h-1);if(null==this.Oa[r]||!this.pb){if(null==this.S[r]){return;}this.Oa[r]=this.S[r][this.JSONPageDataFormat.Ge];}if(null!=this.Oa[r]){c.vb&&(this.Fa=!0);var t=new WordPage(this.P,h),h=c.bc(),q=[],u=c.Mc(),v=c.Jf(),A=!1,w=-1,x=-1,D=0,B=-1,K=-1,C=!1;this.Sa[r]=t;c.H==this.Ka(c)&&(l=this.wb(c).Xn(this,c,l));c.ps=l;for(var E=0,F;F=this.Oa[r][E++];){var z=E-1,y=this.Fa?F[5]:F[this.JSONPageDataFormat.tb],G=E,H=E+1,J=E<this.Oa[r].length?this.Oa[r][E]:null,N=E+1<this.Oa[r].length?this.Oa[r][E+1]:null,A=J?this.Fa?J[5]:J[this.JSONPageDataFormat.tb]:"",L=N?this.Fa?N[5]:N[this.JSONPageDataFormat.tb]:"";" "==A&&(G=E+1,H=E+2,A=(J=G<this.Oa[r].length?this.Oa[r][G]:null)?this.Fa?J[5]:J[this.JSONPageDataFormat.tb]:"",L=(N=H<this.Oa[r].length?this.Oa[r][H]:null)?this.Fa?N[5]:N[this.JSONPageDataFormat.tb]:"");J=N=null;if(null==y){M("word not found in node");e&&e();return;}0==y.length&&(y=" ");C=null;if(-1==y.indexOf("actionGoToR")&&-1==y.indexOf("actionGoTo")&&-1==y.indexOf("actionURI")&&this.hn(c)){if(C=y.match(/\b((?:(https?|ftp):(?:\/{1,3}|[0-9%])|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}\/)(?:[^\s()<>]+|\(([^\s()<>]+|(\([^\s()<>]+\)))*\))+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:'".,<>?\u00ab\u00bb\u201c\u201d\u2018\u2019]))/ig)){y="actionURI("+C[0]+"):"+C[0],this.Oa[r][z][this.Fa?5:this.JSONPageDataFormat.tb]=y;}!C&&-1<y.indexOf("@")&&(C=y.trim().match(/([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+)/gi),!C&&(C=(y.trim()+A.trim()).match(/([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+)/gi))&&(A="actionURI(mailto:"+C[0]+"):"+C[0],this.Oa[r][G][this.Fa?5:this.JSONPageDataFormat.tb]=A),!C&&(C=(y.trim()+A.trim()+L.trim()).match(/([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+)/gi))&&(A="actionURI(mailto:"+C[0]+"):"+C[0],this.Oa[r][G][this.Fa?5:this.JSONPageDataFormat.tb]=A,L="actionURI(mailto:"+C[0]+"):"+C[0],this.Oa[r][H][this.Fa?5:this.JSONPageDataFormat.tb]=L),C&&(y=C[0],y.endsWith(".")&&(y=y.substr(0,y.length-1)),y="actionURI(mailto:"+y+"):"+y,this.Oa[r][z][this.Fa?5:this.JSONPageDataFormat.tb]=y));}if(0<=y.indexOf("actionGoToR")){N=y.substring(y.indexOf("actionGoToR")+12,y.indexOf(",",y.indexOf("actionGoToR")+13)),y=y.substring(y.indexOf(",")+1);}else{if(0<=y.indexOf("actionGoTo")){N=y.substring(y.indexOf("actionGoTo")+11,y.indexOf(",",y.indexOf("actionGoTo")+12)),y=y.substring(y.indexOf(",")+1);}else{if(0<=y.indexOf("actionURI")||C){if(0<=y.indexOf("actionURI(")&&0<y.indexOf("):")?(J=y.substring(y.indexOf("actionURI(")+10,y.lastIndexOf("):")),y=y.substring(y.indexOf("):")+2)):(J=y.substring(y.indexOf("actionURI")+10),y=y.substring(y.indexOf("actionURI")+10)),-1==J.indexOf("http")&&-1==J.indexOf("mailto")&&0!=J.indexOf("/")){J="http://"+J;}else{if(!C){for(z=E,G=this.Fa?F[5]:F[this.JSONPageDataFormat.tb],H=1;2>=H;H++){for(z=E;z<this.Oa[r].length&&0<=this.Oa[r][z].toString().indexOf("actionURI")&&-1==this.Oa[r][z].toString().indexOf("actionURI(");){A=this.Oa[r][z],C=this.Fa?A[5]:A[this.JSONPageDataFormat.tb],1==H?0<=C.indexOf("actionURI")&&11<C.length&&-1==C.indexOf("http://")&&-1==C.indexOf("https://")&&-1==C.indexOf("mailto")&&(G+=C.substring(C.indexOf("actionURI")+10)):this.Fa?A[5]=G:A[this.JSONPageDataFormat.tb],z++;}2==H&&-1==G.indexOf("actionURI(")&&(y=G,J=y.substring(y.indexOf("actionURI")+10),y=y.substring(y.indexOf("actionURI")+10));}}}}}}if(N||J||!f||k){G=(this.Fa?F[0]:F[this.JSONPageDataFormat.Eb])*l+0;H=(this.Fa?F[1]:F[this.JSONPageDataFormat.pc])*l+0;z=(this.Fa?F[2]:F[this.JSONPageDataFormat.Dd])*l;F=(this.Fa?F[3]:F[this.JSONPageDataFormat.Cd])*l;t.yp(p,y);A=-1!=w&&w!=G;C=E==this.Oa[r].length;H+z>u&&(z=u-H);G+F>v&&(F=v-G);q[p]={};q[p].left=H;q[p].right=H+z;q[p].top=G;q[p].bottom=G+F;q[p].el="#"+this.P+"page_"+r+"_word_"+p;q[p].i=p;q[p].ul=N;q[p].vm=J;g+="<span id='"+this.P+"page_"+r+"_word_"+p+"' class='flowpaper_pageword flowpaper_pageword_"+this.P+"_page_"+r+" flowpaper_pageword_"+this.P+(null!=N||null!=J?" pdfPageLink_"+c.pageNumber:"")+"' style='left:"+H+"px;top:"+G+"px;width:"+z+"px;height:"+F+"px;margin-left:0px;"+(q[p].ul||q[p].vm?"cursor:hand;":"")+";"+(eb.browser.msie?"background-image:url("+this.ea+");color:transparent;":"")+"'>"+(c.F.Zk?y:"")+"</span>";if(null!=N||null!=J){L=document.createElement("a");L.style.position="absolute";L.style.left=Math.floor(H)+h+"px";L.style.top=Math.floor(G)+"px";L.style.width=Math.ceil(z)+"px";L.style.height=Math.ceil(F)+"px";L.style["margin-left"]=h;L.style.cursor="pointer";L.setAttribute("data-href",null!=J?J:"");L.setAttribute("rel","nofollow noopener");jQuery(L).css("z-index","99");L.className="pdfPageLink_"+c.pageNumber+" flowpaper_interactiveobject_"+this.P+" flowpaper_pageword_"+this.P+"_page_"+r+" gotoPage_"+N+" flowpaper_pageword_"+this.P;eb.platform.touchonlydevice&&(L.style.background=c.F.linkColor,L.style.opacity=c.F.Oc);null!=N&&(jQuery(L).data("gotoPage",N),jQuery(L).on("click touchstart",function(){c.F.gotoPage(parseInt(jQuery(this).data("gotoPage")));return !1;}));if(null!=J){jQuery(L).on("click touchstart",function(d){jQuery(c.L).trigger("onExternalLinkClicked",this.getAttribute("data-href"));d.stopImmediatePropagation();d.preventDefault();return !1;});}eb.platform.touchonlydevice||(jQuery(L).on("mouseover",function(){jQuery(this).stop(!0,!0);jQuery(this).css("background",c.F.linkColor);jQuery(this).css({opacity:c.F.Oc});}),jQuery(L).on("mouseout",function(){jQuery(this).css("background","");jQuery(this).css({opacity:0});}));"TwoPage"==c.H||"BookView"==c.H?(0==c.pageNumber&&jQuery(c.U+"_1_textoverlay").append(L),1==c.pageNumber&&jQuery(c.U+"_2_textoverlay").append(L)):jQuery(c.xa).append(L);}eb.platform.touchdevice&&"Portrait"==c.H&&(A||C?(C&&(D+=z,m=m+"<div style='float:left;width:"+z+"px'>"+(" "==y?"&nbsp;":y)+"</div>"),m="<div id='"+this.P+"page_"+r+"_word_"+p+"_wordspan' class='flowpaper_pageword flowpaper_pageword_"+this.P+"_page_"+r+" flowpaper_pageword_"+this.P+"' style='color:transparent;left:"+B+"px;top:"+w+"px;width:"+D+"px;height:"+x+"px;margin-left:"+K+"px;font-size:"+x+"px"+(q[p].ul||q[p].vm?"cursor:hand;":"")+"'>"+m+"</div>",jQuery(c.ej).append(m),w=G,x=F,D=z,B=H,K=h,m="<div style='background-colorfloat:left;width:"+z+"px'>"+(" "==y?"&nbsp;":y)+"</div>"):(-1==B&&(B=H),-1==K&&(K=h),-1==w&&(w=G),-1==x&&(x=F),m=m+"<div style='float:left;width:"+z+"px'>"+(" "==y?"&nbsp;":y)+"</div>",D+=z,x=F));}p++;}t.vp(q);"Portrait"==c.H&&(0==jQuery(c.Bb).length&&(f=c.Dg,z=c.za(),F=c.Ha(),h=c.bc(),f="<div id='"+f+"' class='flowpaper_textLayer' style='width:"+z+"px;height:"+F+"px;margin-left:"+h+"px;'></div>",jQuery(c.xa).append(f)),jQuery(c.Bb).append(g));"SinglePage"==c.H&&(0==jQuery(c.Bb).length&&(f=c.Dg,z=c.za(),F=c.Ha(),h=c.bc(),f="<div id='"+f+"' class='flowpaper_textLayer' style='width:"+z+"px;height:"+F+"px;margin-left:"+h+"px;'></div>",jQuery(c.xa).append(f)),jQuery(c.Bb).append(g));c.H==this.Ka(c)&&(0==jQuery(c.Bb).length&&(f=c.xd+"_textLayer",z=c.za(),F=c.Ha(),h=c.bc(),f="<div id='"+f+"' class='flowpaper_textLayer' style='width:"+z+"px;height:"+F+"px;margin-left:"+h+"px;'></div>",jQuery(c.xa).append(f)),this.wb(c).gn(this,c,g));if("TwoPage"==c.H||"BookView"==c.H){0==c.pageNumber&&jQuery(c.U+"_1_textoverlay").append(g),1==c.pageNumber&&jQuery(c.U+"_2_textoverlay").append(g);}d&&jQuery(c).trigger("onAddedTextOverlay",c.pageNumber);if(k){for(k=0;k<this.yd[c.pageNumber].length;k++){this.Zm(c,this.yd[c.pageNumber][k].Jp,this.yd[c.pageNumber][k].$p);}}}}null!=e&&e();}}else{e&&e();}},Gc:function(c,d,e,g,h){var f=this;window.annotations||jQuery(c).unbind("onAddedTextOverlay");var k="TwoPage"==c.H||"BookView"==c.H?c.pages.R+c.pageNumber:c.pageNumber;"BookView"==c.H&&0<c.pages.R&&1==c.pageNumber&&(k=k-2);"SinglePage"==c.H&&(k=c.pages.R);if((c.Wa||!e)&&c.F.Va-1==k){jQuery(".flowpaper_selected").removeClass("flowpaper_selected");jQuery(".flowpaper_selected_searchmatch").removeClass("flowpaper_selected_searchmatch");jQuery(".flowpaper_selected_default").removeClass("flowpaper_selected_default");jQuery(".flowpaper_tmpselection").remove();var l=jQuery(".flowpaper_pageword_"+f.P+"_page_"+c.pageNumber+":not(.flowpaper_annotation_"+f.P+"):not(.pdfPageLink_"+c.pageNumber+")").length;h&&(l=jQuery(".flowpaper_pageword_"+f.P+"_page_"+c.pageNumber+":not(.flowpaper_annotation_"+f.P+")").length);if(f.Sa[k]&&0!=l){h=f.Sa[k].Oh;for(var l="",m=0,p=0,r=-1,t=-1,q=d.split(" "),u=0,v=0,A=0;A<h.length;A++){var w=na((h[A]+"").toLowerCase()),u=u+w.length;u>g&&u-d.length<=g+v&&(v+=d.length);w||jQuery.trim(w)!=d&&jQuery.trim(l+w)!=d||(w=jQuery.trim(w));if(0==d.indexOf(l+w)&&(l+w).length<=d.length&&" "!=l+w){if(l+=w,-1==r&&(r=m,t=m+1),d.length==w.length&&(r=m),l.length==d.length){if(p++,c.F.Be==p){if("Portrait"==c.H||"SinglePage"==c.H){eb.browser.capabilities.Cb?jQuery("#pagesContainer_"+f.P).scrollTo(jQuery(f.Sa[k].$a[r].el),0,{axis:"xy",offset:-30}):jQuery("#pagesContainer_"+f.P).data("jsp").scrollToElement(jQuery(f.Sa[k].$a[r].el),!1);}for(var x=r;x<m+1;x++){c.H==f.Ka(c)?(w=jQuery(f.Sa[k].$a[x].el).clone(),f.wb(c).lk(f,c,w,d,!0,x==r,x==m)):(jQuery(f.Sa[k].$a[x].el).addClass("flowpaper_selected"),jQuery(f.Sa[k].$a[x].el).addClass("flowpaper_selected_default"),jQuery(f.Sa[k].$a[x].el).addClass("flowpaper_selected_searchmatch"));}}else{l="",r=-1;}}}else{if(0<=(l+w).indexOf(q[0])){-1==r&&(r=m,t=m+1);l+=w;if(1<q.length){for(w=0;w<q.length-1;w++){0<q[w].length&&h.length>m+1+w&&0<=(l+h[m+1+w]).toLowerCase().indexOf(q[w])?(l+=h[m+1+w].toLowerCase(),t=m+1+w+1):(l="",t=r=-1);}}-1==l.indexOf(d)&&(l="",t=r=-1);x=(l.match(new RegExp(d.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),"g"))||[]).length;if(0<l.length){for(var D=0;D<x;D++){if(-1<l.indexOf(d)&&p++,c.F.Be==p){for(var B=jQuery(f.Sa[k].$a[r].el),K=parseFloat(B.css("left").substring(0,B.css("left").length-2))-(c.H==f.Ka(c)?c.bc():0),w=B.clone(),C=0,E=0,F=0;r<t;r++){C+=parseFloat(jQuery(f.Sa[k].$a[r].el).css("width").substring(0,B.css("width").length-2));}E=1-(l.length-d.length)/l.length;t=-1;for(r=0;r<D+1;r++){t=l.indexOf(d,t+1),F=t/l.length;}w.addClass("flowpaper_tmpselection");w.attr("id",w.attr("id")+"tmp");w.addClass("flowpaper_selected");w.addClass("flowpaper_selected_searchmatch");w.addClass("flowpaper_selected_default");w.css("width",C*E+"px");w.css("left",K+C*F+"px");if("Portrait"==c.H||"SinglePage"==c.H){jQuery(c.Bb).append(w),eb.browser.capabilities.Cb?jQuery("#pagesContainer_"+f.P).scrollTo(w,0,{axis:"xy",offset:-30}):jQuery("#pagesContainer_"+f.P).data("jsp").scrollToElement(w,!1);}c.H==f.Ka(c)&&f.wb(c).lk(f,c,w,d);"BookView"==c.H&&(0==k?jQuery("#dummyPage_0_"+f.P+"_1_textoverlay").append(w):jQuery("#dummyPage_"+(k-1)%2+"_"+f.P+"_"+((k-1)%2+1)+"_textoverlay").append(w));"TwoPage"==c.H&&jQuery("#dummyPage_"+k%2+"_"+f.P+"_"+(k%2+1)+"_textoverlay").append(w);t=r=-1;}else{D==x-1&&(l="",t=r=-1);}}}}else{0<l.length&&(l="",r=-1);}}m++;}}else{jQuery(c).bind("onAddedTextOverlay",function(){f.Gc(c,d,e,g,!0);}),f.Hc(c,e,null,!0);}}},Ne:function(c,d,e){null==this.yd&&(this.yd=Array(this.Oa.length));null==this.yd[c.pageNumber]&&(this.yd[c.pageNumber]=[]);var g={};g.Jp=d;g.$p=e;this.yd[c.pageNumber][this.yd[c.pageNumber].length]=g;},Zm:function(c,d,e){jQuery(c).unbind("onAddedTextOverlay");var g="TwoPage"==c.H||"BookView"==c.H?c.pages.R+c.pageNumber:c.pageNumber;"BookView"==c.H&&0<c.pages.R&&1==c.pageNumber&&(g=g-2);"SinglePage"==c.H&&(g=c.pages.R);for(var h=this.Sa[g].Oh,f=-1,k=-1,l=0,m=0;m<h.length;m++){var p=h[m]+"";l>=d&&-1==f&&(f=m);if(l+p.length>=d+e&&-1==k&&(k=m,-1!=f)){break;}l+=p.length;}for(d=f;d<k+1;d++){c.H==this.Ka(c)?jQuery(this.Sa[g].$a[d].el).clone():(jQuery(this.Sa[g].$a[d].el).addClass("flowpaper_selected"),jQuery(this.Sa[g].$a[d].el).addClass("flowpaper_selected_yellow"),jQuery(this.Sa[g].$a[d].el).addClass("flowpaper_selected_searchmatch"));}},Ea:function(c,d){this.Hc(c,null==d,d);}};return f;}();window.WordPage=function(f,c){this.P=f;this.pageNumber=c;this.Oh=[];this.$a=null;this.yp=function(c,e){this.Oh[c]=e;};this.vp=function(c){this.$a=c;};this.match=function(c,e){var g,h=null;g="#page_"+this.pageNumber+"_"+this.P;0==jQuery(g).length&&(g="#dummyPage_"+this.pageNumber+"_"+this.P);g=jQuery(g).offset();"SinglePage"==window.$FlowPaper(this.P).H&&(g="#dummyPage_0_"+this.P,g=jQuery(g).offset());if("TwoPage"==window.$FlowPaper(this.P).H||"BookView"==window.$FlowPaper(this.P).H){g=0==this.pageNumber||"TwoPage"==window.$FlowPaper(this.P).H?jQuery("#dummyPage_"+this.pageNumber%2+"_"+this.P+"_"+(this.pageNumber%2+1)+"_textoverlay").offset():jQuery("#dummyPage_"+(this.pageNumber-1)%2+"_"+this.P+"_"+((this.pageNumber-1)%2+1)+"_textoverlay").offset();}c.top=c.top-g.top;c.left=c.left-g.left;for(g=0;g<this.$a.length;g++){this.oo(c,this.$a[g],e)&&(null==h||null!=h&&h.top<this.$a[g].top||null!=h&&h.top<=this.$a[g].top&&null!=h&&h.left<this.$a[g].left)&&(h=this.$a[g],h.pageNumber=this.pageNumber);}return h;};this.nl=function(c){for(var e=0;e<this.$a.length;e++){if(this.$a[e]&&this.$a[e].el=="#"+c){return this.$a[e];}}return null;};this.oo=function(c,e,g){return e?g?c.left+3>=e.left&&c.left-3<=e.right&&c.top+3>=e.top&&c.top-3<=e.bottom:c.left+3>=e.left&&c.top+3>=e.top:!1;};this.Gf=function(c,e){var g=window.a,h=window.b,f=new xa,k,l,m=0,p=-1;if(null==g){return f;}if(g&&h){var r=[],t;g.top>h.top?(k=h,l=g):(k=g,l=h);for(k=k.i;k<=l.i;k++){if(this.$a[k]){var q=jQuery(this.$a[k].el);0!=q.length&&(t=parseInt(q.attr("id").substring(q.attr("id").indexOf("word_")+5)),p=parseInt(q.attr("id").substring(q.attr("id").indexOf("page_")+5,q.attr("id").indexOf("word_")-1))+1,0<=t&&r.push(this.Oh[t]),m++,c&&(q.addClass("flowpaper_selected"),q.addClass(e),"flowpaper_selected_strikeout"!=e||q.data("adjusted")||(t=q.height(),q.css("margin-top",t/2-t/3/1.5),q.height(t/2.3),q.data("adjusted",!0))));}}eb.platform.touchonlydevice||jQuery(".flowpaper_selector").val(r.join("")).select();}else{eb.platform.touchdevice||jQuery("#selector").val("");}f.Jr=m;f.Cs=g.left;f.Ds=g.right;f.Es=g.top;f.Bs=g.bottom;f.ys=g.left;f.zs=g.right;f.As=g.top;f.xs=g.bottom;f.Nn=null!=r&&0<r.length?r[0]:null;f.Rr=null!=r&&0<r.length?r[r.length-1]:f.Nn;f.On=null!=g?g.i:-1;f.Sr=null!=h?h.i:f.On;f.text=null!=r?r.join(""):"";f.page=p;f.ws=this;return f;};};function xa(){}function U(f){var c=hoverPage;if(f=window["wordPageList_"+f]){return f.length>=c?f[c]:null;}}var V=function(){function f(c,d,e,g){this.F=d;this.L=c;this.pages={};this.selectors={};this.container="pagesContainer_"+e;this.J="#"+this.container;this.R=null==g?0:g-1;this.Fe=g;this.Xd=this.cg=null;this.fd=this.ed=-1;this.ze=this.wd=0;this.initialized=!1;this.ia=eb.platform.touchonlydevice&&!eb.platform.lb?30:22;this.P=this.F.P;this.document=this.F.document;}f.prototype={M:function(c){if(0<c.indexOf("undefined")){return jQuery(null);}this.selectors||(this.selectors={});this.selectors[c]||(this.selectors[c]=jQuery(c));return this.selectors[c];},dj:function(){null!=this.xi&&(window.clearTimeout(this.xi),this.xi=null);this.F.I&&this.F.H==this.F.I.W&&this.F.I.kb.dj(this);},Ub:function(){return this.F.I&&this.F.H==this.F.I.W&&this.F.I.kb.Ub(this)||"SinglePage"==this.F.H;},hp:function(){return !(this.F.I&&this.F.I.kb.Ub(this));},Qa:function(c,d,e){var g=this.F.scale;this.F.scale=c;if("TwoPage"==this.F.H||"BookView"==this.F.H){var h=100*c+"%";eb.platform.touchdevice||this.M(this.J).css({width:h,"margin-left":this.Lf()});}this.pages[0]&&(this.pages[0].scale=c);if("Portrait"==this.F.H||"SinglePage"==this.F.H){for(h=this.zg=0;h<this.document.numPages;h++){if(this.Ra(h)){var f=this.pages[h].za(c);f>this.zg&&(this.zg=f);}}}for(h=0;h<this.document.numPages;h++){this.Ra(h)&&(this.pages[h].scale=c,this.pages[h].Qa());}this.F.I&&this.F.H==this.F.I.W&&this.F.I.kb.Qa(this,g,c,d,e);},dispose:function(){for(var c=0;c<this.document.numPages;c++){this.pages[c].dispose(),delete this.pages[c];}this.selectors=this.pages=this.L=this.F=null;},resize:function(c,d,e){if("Portrait"==this.F.H||"SinglePage"==this.F.H){d+=eb.browser.capabilities.Cb?0:14,c=c-(eb.browser.msie?0:2);}"ThumbView"==this.F.H&&(d=d-10);this.M(this.J).css({width:c,height:d});"TwoPage"==this.F.H&&(this.F.Mj=this.L.height()-(eb.platform.touchdevice?0:27),this.F.Kg=c/2-2,this.M(this.J).height(this.F.Mj),this.M("#"+this.container+"_2").css("left",this.M("#"+this.container).width()/2),eb.platform.touchdevice||(this.M(this.J+"_1").width(this.F.Kg),this.M(this.J+"_2").width(this.F.Kg)));if(this.F.I&&this.F.H==this.F.I.W){this.F.I.kb.resize(this,c,d,e);}else{for(this.kd(),c=0;c<this.document.numPages;c++){this.Ra(c)&&(this.pages[c].Qa(),this.F.renderer.pb||this.F.renderer.ra||(this.pages[c].pa=!1));}}this.Qj=null;null!=this.jScrollPane&&(this.jScrollPane.data("jsp").reinitialise(this.dd),this.jScrollPane.data("jsp").scrollTo(this.ed,this.fd,!1));},te:function(c){var d=this;if(!d.ba){var e=!1;"function"===typeof d.Mi&&d.Gr();jQuery(".flowpaper_pageword").each(function(){jQuery(this).hasClass("flowpaper_selected_default")&&(e=!0);});null!=d.touchwipe&&(d.touchwipe.config.preventDefaultEvents=!1);d.Ub()||(jQuery(".flowpaper_pageword_"+d.P).remove(),setTimeout(function(){"TwoPage"!=d.F.H&&"BookView"!=d.F.H||d.nc();d.Ea();e&&d.getPage(d.F.Va-1).Gc(d.F.Yd,!1);},500));d.F.I&&d.F.H==d.F.I.W?d.F.I.kb.te(d,c):d.Qa(1);null!=d.jScrollPane?(d.jScrollPane.data("jsp").reinitialise(d.dd),d.jScrollPane.data("jsp").scrollTo(d.ed,d.fd,!1)):"TwoPage"!=d.F.H&&"BookView"!=d.F.H||d.M(d.J).parent().scrollTo({left:d.ed+"px",top:d.fd+"px"},0,{axis:"xy"});}},qd:function(c){var d=this;if(!d.ba){var e=!1;null!=d.touchwipe&&(d.touchwipe.config.preventDefaultEvents=!0);"function"===typeof d.Mi&&d.Hr();jQuery(".flowpaper_pageword").each(function(){jQuery(this).hasClass("flowpaper_selected_default")&&(e=!0);});d.Ub()||jQuery(".flowpaper_pageword_"+d.P).remove();d.F.I&&d.F.H==d.F.I.W?d.F.I.kb.qd(d,c):d.Qa(window.FitHeightScale);setTimeout(function(){d.Ea();e&&d.getPage(d.F.Va-1).Gc(d.F.Yd,!1);},500);d.Ea();null!=d.jScrollPane?(d.jScrollPane.data("jsp").scrollTo(0,0,!1),d.jScrollPane.data("jsp").reinitialise(d.dd)):d.M(d.J).parent().scrollTo({left:0,top:0},0,{axis:"xy"});}},cj:function(){var c=this;c.Qe();if(c.F.I&&c.F.H==c.F.I.W){c.F.I.kb.cj(c);}else{if("SinglePage"==c.F.H||"TwoPage"==c.F.H||"BookView"==c.F.H){c.touchwipe=c.M(c.J).touchwipe({wipeLeft:function(){if(!c.F.cd&&!window.Gb&&null==c.ba&&("TwoPage"!=c.F.H&&"BookView"!=c.F.H||1==c.F.scale||c.next(),"SinglePage"==c.F.H)){var d=jQuery(c.J).width()-5,g=1<c.F.getTotalPages()?c.F.da-1:0;0>g&&(g=0);var h=c.getPage(g).dimensions.la/c.getPage(g).dimensions.ya,d=Math.round(100*(d/(c.getPage(g).Ma*h)-0.03));100*c.F.scale<1.2*d&&c.next();}},wipeRight:function(){if(!c.F.cd&&!window.Gb&&null==c.ba&&("TwoPage"!=c.F.H&&"BookView"!=c.F.H||1==c.F.scale||c.previous(),"SinglePage"==c.F.H)){var d=jQuery(c.J).width()-15,g=1<c.F.getTotalPages()?c.F.da-1:0;0>g&&(g=0);var h=c.getPage(g).dimensions.la/c.getPage(g).dimensions.ya,d=Math.round(100*(d/(c.getPage(g).Ma*h)-0.03));100*c.F.scale<1.2*d&&c.previous();}},preventDefaultEvents:"TwoPage"==c.F.H||"BookView"==c.F.H||"SinglePage"==c.F.H,min_move_x:eb.platform.lb?150:200,min_move_y:500});}}if(eb.platform.mobilepreview){c.M(c.J).on("mousedown",function(d){c.ed=d.pageX;c.fd=d.pageY;});}c.M(c.J).on("touchstart",function(d){c.ed=d.originalEvent.touches[0].pageX;c.fd=d.originalEvent.touches[0].pageY;});c.M(c.J).on(eb.platform.mobilepreview?"mouseup":"touchend",function(){null!=c.F.pages.jScrollPane&&c.F.pages.jScrollPane.data("jsp").enable&&c.F.pages.jScrollPane.data("jsp").enable();if(null!=c.cb&&"SinglePage"==c.F.H){for(var d=0;d<c.document.numPages;d++){c.Ra(d)&&c.M(c.pages[d].qa).transition({y:0,scale:1},0,"ease",function(){c.ba>c.F.scale&&c.ba-c.F.scale<c.F.document.ZoomInterval&&(c.ba+=c.F.document.ZoomInterval);0<c.$c-c.je&&c.ba<c.F.scale&&(c.ba=c.F.scale+c.F.document.ZoomInterval);c.F.ib(c.ba,{qg:!0});c.ba=null;});}c.pages[0]&&c.pages[0].Qe();c.M(c.J).addClass("flowpaper_pages_border");c.hj=c.cb<c.ba;c.cb=null;c.tf=null;c.ba=null;c.Ab=null;c.vc=null;}});if(c.F.I&&c.F.H==c.F.I.W){c.F.I.kb.mk(c);}else{if(eb.platform.touchdevice){var d=c.M(c.J);d.doubletap(function(d){if("TwoPage"==c.F.H||"BookView"==c.F.H){"TwoPage"!=c.F.H&&"BookView"!=c.F.H||1==c.F.scale?"TwoPage"!=c.F.H&&"BookView"!=c.F.H||1!=c.F.scale||c.qd():c.te(),d.preventDefault();}},null,300);}else{c.F.cc&&(d=c.M(c.J),d.doubletap(function(d){var g=jQuery(".activeElement").data("hint-pageNumber");window.parent.postMessage("EditPage:"+g,"*");window.clearTimeout(c.Si);d.preventDefault();d.stopImmediatePropagation();},null,300));}}c.M(c.J).on("scroll gesturechange",function(){"SinglePage"==c.F.H?c.F.renderer.mb&&!c.ba&&c.F.renderer.Sc(c.pages[0]):c.F.I&&c.F.H==c.F.I.W||(eb.platform.ios&&c.rj(-1*c.M(c.J).scrollTop()),eb.platform.ios?(setTimeout(function(){c.Mg();c.hd();},1000),setTimeout(function(){c.Mg();c.hd();},2000),setTimeout(function(){c.Mg();c.hd();},3000)):c.Mg(),c.hd(),c.Ea(),null!=c.cg&&(window.clearTimeout(c.cg),c.cg=null),c.cg=setTimeout(function(){c.Vk();window.clearTimeout(c.cg);c.cg=null;},100),c.$r=!0);});this.Vk();},mk:function(){},rj:function(c){for(var d=0;d<this.document.numPages;d++){this.Ra(d)&&this.pages[d].rj(c);}},lm:function(){var c=this.M(this.J).css("transform")+"";null!=c&&(c=c.replace("translate",""),c=c.replace("(",""),c=c.replace(")",""),c=c.replace("px",""),c=c.split(","),this.wd=parseFloat(c[0]),this.ze=parseFloat(c[1]),isNaN(this.wd)&&(this.ze=this.wd=0));},uk:function(c,d){this.M(this.J).transition({x:this.wd+(c-this.Ab)/this.F.scale,y:this.ze+(d-this.vc)/this.F.scale},0);},$g:function(c,d){this.F.I&&this.F.I.kb.$g(this,c,d);},Zn:function(c,d){var e=this.L.width();return c/d-this.Ed/e/d*e;},$n:function(c){var d=this.L.height();return c/this.F.scale-this.Fd/d/this.F.scale*d;},Qe:function(){this.F.I&&this.F.I.kb.Qe(this);},Ki:function(){if(this.F.I){return this.F.I.kb.Ki(this);}},getTotalPages:function(){return this.document.numPages;},pi:function(c){var d=this;c.empty();jQuery(d.F.renderer).on("onTextDataUpdated",function(){d.Ea(d);});null!=d.F.Xd||d.F.document.DisableOverflow||d.F.bb||(d.F.Xd=d.L.height(),eb.platform.touchonlydevice?d.F.Zb||d.L.height(d.F.Xd-10):d.L.height(d.F.Xd-27));var e=d.F.I&&d.F.I.backgroundColor?"background-color:"+d.F.I.backgroundColor+";":"";d.F.I&&d.F.I.backgroundImage&&(e="background-color:transparent;");if("Portrait"==d.F.H||"SinglePage"==d.F.H){eb.platform.touchonlydevice&&"SinglePage"==d.F.H&&(eb.browser.capabilities.Cb=!1);var g=jQuery(d.F.K).height()+(window.zine&&"Portrait"==d.F.yb?20:0),h=eb.platform.touchonlydevice?31:26;window.zine&&"Portrait"!=d.F.yb&&(h=eb.platform.touchonlydevice?41:36);var g=d.L.height()+(eb.browser.capabilities.Cb?window.annotations?0:h-g:-5),h=d.L.width()-2,f=1<d.Fe?"visibility:hidden;":"",k=eb.browser.msie&&9>eb.browser.version?"position:relative;":"";d.F.document.DisableOverflow?c.append("<div id='"+d.container+"' class='flowpaper_pages' style='overflow:hidden;padding:0;margin:0;'></div>"):c.append("<div id='"+d.container+"' class='flowpaper_pages "+(window.annotations?"":"flowpaper_pages_border")+"' style='"+(eb.platform.wm?"touch-action: none;":"")+"-moz-user-select:none;-webkit-user-select:none;"+k+";"+f+"height:"+g+"px;width:"+h+"px;overflow-y: auto;overflow-x: auto;;-webkit-overflow-scrolling: touch;-webkit-backface-visibility: hidden;-webkit-perspective: 1000;"+e+";'></div>");d.F.document.DisableOverflow||(eb.browser.capabilities.Cb?eb.platform.touchonlydevice?(jQuery(c).css("overflow-y","auto"),jQuery(c).css("overflow-x","auto"),jQuery(c).css("-webkit-overflow-scrolling","touch")):(jQuery(c).css("overflow-y","visible"),jQuery(c).css("overflow-x","visible"),jQuery(c).css("-webkit-overflow-scrolling","visible")):jQuery(c).css("-webkit-overflow-scrolling","hidden"));eb.platform.touchdevice&&(eb.platform.ipad||eb.platform.iphone||eb.platform.android||eb.platform.wm)&&(jQuery(d.J).on("touchmove",function(c){if(!eb.platform.ios&&2==c.originalEvent.touches.length&&(d.F.pages.jScrollPane&&d.F.pages.jScrollPane.data("jsp").disable(),1!=d.ui)){c.preventDefault&&c.preventDefault();c.returnValue=!1;c=Math.sqrt((c.originalEvent.touches[0].pageX-c.originalEvent.touches[1].pageX)*(c.originalEvent.touches[0].pageX-c.originalEvent.touches[1].pageX)+(c.originalEvent.touches[0].pageY-c.originalEvent.touches[1].pageY)*(c.originalEvent.touches[0].pageY-c.originalEvent.touches[1].pageY));c*=2;null==d.ba&&(d.M(d.J).removeClass("flowpaper_pages_border"),d.cb=1,d.tf=c);null==d.ba&&(d.cb=1,d.je=1+(jQuery(d.pages[0].qa).width()-d.L.width())/d.L.width());var e=c=(d.cb+(c-d.tf)/jQuery(d.J).width()-d.cb)/d.cb;d.Ub()||(1<e&&(e=1),-0.3>e&&(e=-0.3),0<c&&(c*=0.7));d.$c=d.je+d.je*c;d.$c<d.F.document.MinZoomSize&&(d.$c=d.F.document.MinZoomSize);d.$c>d.F.document.MaxZoomSize&&(d.$c=d.F.document.MaxZoomSize);d.Ec=1+(d.$c-d.je);d.ba=d.pages[0].Mk(jQuery(d.pages[0].qa).width()*d.Ec);d.ba<d.F.document.MinZoomSize&&(d.ba=d.F.document.MinZoomSize);d.ba>d.F.document.MaxZoomSize&&(d.ba=d.F.document.MaxZoomSize);jQuery(d.pages[0].qa).width()>jQuery(d.pages[0].qa).height()?d.ba<d.F.mh()&&(d.Ec=d.Bg,d.ba=d.F.mh()):d.ba<d.F.af()&&(d.Ec=d.Bg,d.ba=d.F.af());d.Bg=d.Ec;if(d.Ub()&&0<d.Ec){for(jQuery(".flowpaper_annotation_"+d.P).hide(),c=0;c<d.document.numPages;c++){d.Ra(c)&&jQuery(d.pages[c].qa).transition({transformOrigin:"50% 50%",scale:d.Ec},0,"ease",function(){});}}}}),jQuery(d.J).on("touchstart",function(){}),jQuery(d.J).on("gesturechange",function(c){if(1!=d.Xp&&1!=d.ui){d.F.renderer.mb&&jQuery(".flowpaper_flipview_canvas_highres").hide();null==d.ba&&(d.cb=1,d.je=1+(jQuery(d.pages[0].qa).width()-d.L.width())/d.L.width());var e,g=e=(c.originalEvent.scale-d.cb)/d.cb;d.Ub()||(1<g&&(g=1),-0.3>g&&(g=-0.3),0<e&&(e*=0.7));d.$c=d.je+d.je*e;d.$c<d.F.document.MinZoomSize&&(d.$c=d.F.document.MinZoomSize);d.$c>d.F.document.MaxZoomSize&&(d.$c=d.F.document.MaxZoomSize);d.Ec=1+(d.$c-d.je);d.ba=d.pages[0].Mk(jQuery(d.pages[0].qa).width()*d.Ec);jQuery(d.pages[0].qa).width()>jQuery(d.pages[0].qa).height()?d.ba<d.F.mh()&&(d.Ec=d.Bg,d.ba=d.F.mh()):d.ba<d.F.af()&&(d.Ec=d.Bg,d.ba=d.F.af());d.ba<d.F.document.MinZoomSize&&(d.ba=d.F.document.MinZoomSize);d.ba>d.F.document.MaxZoomSize&&(d.ba=d.F.document.MaxZoomSize);c.preventDefault&&c.preventDefault();d.Bg=d.Ec;if(d.Ub()&&0<d.Ec){for(jQuery(".flowpaper_annotation_"+d.P).hide(),c=0;c<d.document.numPages;c++){d.Ra(c)&&jQuery(d.pages[c].qa).transition({transformOrigin:"50% 50%",scale:d.Ec},0,"ease",function(){});}}!d.Ub()&&(0.7<=g||-0.3>=g)&&(d.Xp=!0,d.ba>d.F.scale&&d.ba-d.F.scale<d.F.document.ZoomInterval&&(d.ba+=d.F.document.ZoomInterval),d.F.ib(d.ba),d.ba=null);}}),jQuery(d.J).on("gestureend",function(){}));d.F.renderer.na&&jQuery(d.F.renderer).bind("onTextDataUpdated",function(c,e){for(var g=e+12,h=e-2;h<g;h++){var f=d.getPage(h);if(f){var n=jQuery(f.qa).get(0);if(n){var k=f.za(),v=f.Ha(),A=1.5<d.F.renderer.Xa?d.F.renderer.Xa:1.5;n.width!=k*A&&(jQuery(n).data("needs-overlay",1),d.F.document.DisableOverflow&&(A=2),n.width=k*A,n.height=v*A,f.Zd(n).then(function(c){if(d.F.document.DisableOverflow){var e=jQuery(c).css("background-image");0<e.length&&"none"!=e?(jQuery(c).css("background-image","url('"+c.toDataURL()+"'),"+e),e=jQuery(c).attr("id").substr(5,jQuery(c).attr("id").lastIndexOf("_")-5),jQuery("#"+d.P).trigger("onPageLoaded",parseInt(e)+1),aa(c)):jQuery(c).css("background-image","url('"+c.toDataURL()+"')");}}));}}}});}if("TwoPage"==d.F.H||"BookView"==d.F.H){g=d.L.height()-(eb.browser.msie?37:0),h=d.L.width()-(eb.browser.msie?0:20),e=0,1==d.F.da&&"BookView"==d.F.H&&(e=h/3,h-=e),eb.platform.touchdevice?eb.browser.capabilities.Cb?(c.append("<div id='"+d.container+"' style='-moz-user-select:none;-webkit-user-select:none;margin-left:"+e+"px;position:relative;width:100%;' class='flowpaper_twopage_container'><div id='"+d.container+"_1' class='flowpaper_pages' style='position:absolute;top:0px;height:99%;margin-top:20px;'></div><div id='"+d.container+"_2' class='flowpaper_pages' style='position:absolute;top:0px;height:99%;margin-top:20px;'></div></div>"),jQuery(c).css("overflow-y","scroll"),jQuery(c).css("overflow-x","scroll"),jQuery(c).css("-webkit-overflow-scrolling","touch")):(c.append("<div id='"+d.container+"_jpane' style='-moz-user-select:none;-webkit-user-select:none;height:"+g+"px;width:100%;"+(window.eb.browser.msie||eb.platform.android?"overflow-y: scroll;overflow-x: scroll;":"overflow-y: auto;overflow-x: auto;")+";-webkit-overflow-scrolling: touch;'><div id='"+d.container+"' style='margin-left:"+e+"px;position:relative;height:100%;width:100%' class='flowpaper_twopage_container'><div id='"+d.container+"_1' class='flowpaper_pages' style='position:absolute;top:0px;height:99%;margin-top:20px;'></div><div id='"+d.container+"_2' class='flowpaper_pages' style='position:absolute;top:0px;height:99%;margin-top:20px;'></div></div></div>"),jQuery(c).css("overflow-y","visible"),jQuery(c).css("overflow-x","visible"),jQuery(c).css("-webkit-overflow-scrolling","visible")):(c.append("<div id='"+d.container+"' style='-moz-user-select:none;-webkit-user-select:none;margin-left:"+e+"px;position:relative;' class='flowpaper_twopage_container'><div id='"+d.container+"_1' class='flowpaper_pages' style='position:absolute;top:0px;height:99%;margin-top:"+(eb.browser.msie?10:20)+"px;'></div><div id='"+d.container+"_2' class='flowpaper_pages "+("BookView"==d.F.H&&2>d.Fe?"flowpaper_hidden":"")+"' style='position:absolute;top:0px;height:99%;margin-top:"+(eb.browser.msie?10:20)+"px;'></div></div>"),jQuery(c).css("overflow-y","auto"),jQuery(c).css("overflow-x","auto"),jQuery(c).css("-webkit-overflow-scrolling","touch")),null==d.F.Mj&&(d.F.Mj=d.L.height()-(eb.platform.touchdevice?0:27),d.F.Kg=d.M(d.J).width()/2-2),d.M(d.J).css({height:"90%"}),d.M("#"+this.container+"_2").css("left",d.M("#"+d.container).width()/2),eb.platform.touchdevice||(d.M(d.J+"_1").width(d.F.Kg),d.M(d.J+"_2").width(d.F.Kg));}"ThumbView"==d.F.H&&(jQuery(c).css("overflow-y","visible"),jQuery(c).css("overflow-x","visible"),jQuery(c).css("-webkit-overflow-scrolling","visible"),k=eb.browser.msie&&9>eb.browser.version?"position:relative;":"",c.append("<div id='"+this.container+"' class='flowpaper_pages' style='"+k+";"+(eb.platform.touchdevice?"padding-left:10px;":"")+(eb.browser.msie?"overflow-y: scroll;overflow-x: hidden;":"overflow-y: auto;overflow-x: hidden;-webkit-overflow-scrolling: touch;")+"'></div>"),jQuery(".flowpaper_pages").height(d.L.height()-0));d.F.I&&d.F.I.kb.pi(d,c);d.L.trigger("onPagesContainerCreated");jQuery(d).bind("onScaleChanged",d.dj);},create:function(c){var d=this;d.pi(c);eb.browser.capabilities.Cb||"ThumbView"==d.F.H||(d.dd={},"TwoPage"!=d.F.H&&"BookView"!=d.F.H)||(d.jScrollPane=d.M(d.J+"_jpane").jScrollPane(d.dd));for(c=0;c<this.document.numPages;c++){d.Ra(c)&&this.addPage(c);}d.cj();if(!eb.browser.capabilities.Cb){if("Portrait"==d.F.H||"SinglePage"==d.F.H){d.jScrollPane=d.M(this.J).jScrollPane(d.dd);}!window.zine||d.F.I&&d.F.I.W==d.F.H||jQuery(d.M(this.J)).bind("jsp-initialised",function(){jQuery(this).find(".jspHorizontalBar, .jspVerticalBar").hide();}).jScrollPane().hover(function(){jQuery(this).find(".jspHorizontalBar, .jspVerticalBar").stop().fadeTo("fast",0.9);},function(){jQuery(this).find(".jspHorizontalBar, .jspVerticalBar").stop().fadeTo("fast",0);});}eb.browser.capabilities.Cb||"ThumbView"!=d.F.H||(d.jScrollPane=d.M(d.J).jScrollPane(d.dd));1<d.Fe&&"Portrait"==d.F.H&&setTimeout(function(){d.scrollTo(d.Fe,!0);d.Fe=-1;jQuery(d.J).css("visibility","visible");},500);d.Fe&&"SinglePage"==d.F.H&&jQuery(d.J).css("visibility","visible");},getPage:function(c){if("TwoPage"==this.F.H||"BookView"==this.F.H){if(0!=c%2){return this.pages[1];}if(0==c%2){return this.pages[0];}}else{return"SinglePage"==this.F.H?this.pages[0]:this.pages[c];}},Ra:function(c){return this.F.DisplayRange?-1<this.F.DisplayRange.indexOf(c+1):("TwoPage"==this.F.H||"BookView"==this.F.H)&&(0==c||1==c)||"TwoPage"!=this.F.H&&"BookView"!=this.F.H;},addPage:function(c){this.pages[c]=new ya(this.P,c,this,this.L,this.F,this.nh(c));this.pages[c].create(this.M(this.J));jQuery(this.F.L).trigger("onPageCreated",c);},nh:function(c){for(var d=0;d<this.document.dimensions.length;d++){if(this.document.dimensions[d].page==c){return this.document.dimensions[d];}}return{width:-1,height:-1};},scrollTo:function(c,d){if(this.R+1!=c||d){!eb.browser.capabilities.Cb&&this.jScrollPane?this.jScrollPane.data("jsp").scrollToElement(this.pages[c-1].M(this.pages[c-1].xa),!0,!1):jQuery(this.J).scrollTo&&jQuery(this.J).scrollTo(this.pages[c-1].M(this.pages[c-1].xa),0);}this.Ea();},jp:function(){for(var c=0;c<this.getTotalPages();c++){this.Ra(c)&&this.pages[c]&&this.pages[c].oc&&window.clearTimeout(this.pages[c].oc);}},Vk:function(){this.kd();},kd:function(){var c=this;null!=c.$d&&(window.clearTimeout(c.$d),c.$d=null);c.$d=setTimeout(function(){c.nc();},200);},Fj:function(){if(null!=this.jScrollPane){try{this.jScrollPane.data("jsp").reinitialise(this.dd);}catch(c){}}},nc:function(c){var d=this;if(d.F){if(d.F.I&&d.F.H==d.F.I.W){d.F.I.kb.nc(d,c);}else{null!=d.$d&&(window.clearTimeout(d.$d),d.$d=null);c=d.M(this.J).scrollTop();for(var e=0;e<this.document.numPages;e++){if(this.pages[e]&&d.Ra(e)){var g=!d.pages[e].Wa;this.pages[e].Nc(c,d.M(this.J).height(),!0)?(g&&d.L.trigger("onVisibilityChanged",e+1),this.pages[e].Wa=!0,this.pages[e].load(function(){if("TwoPage"==d.F.H||"BookView"==d.F.H){d.M(d.J).is(":animated")||1==d.F.scale||(d.M(d.J).css("margin-left",d.Lf()),d.M("#"+this.container+"_2").css("left",d.M("#"+d.container).width()/2)),d.initialized||null==d.jScrollPane||(d.jScrollPane.data("jsp").reinitialise(d.dd),d.initialized=!0);}}),this.pages[e].Bo(),this.pages[e].Ea()):"TwoPage"!=d.F.H&&"BookView"!=d.F.H&&this.pages[e].ub();}}}}},hd:function(){this.F.H!=this.F.W()?this.F.Kc(this.R+1):this.F.Kc(this.R);},Ea:function(c){c=c?c:this;for(var d=0;d<c.document.numPages;d++){c.Ra(d)&&c.pages[d]&&c.pages[d].Wa&&c.pages[d].Ea();}},Mg:function(){for(var c=this.R,d=this.M(this.J).scrollTop(),e=0;e<this.document.numPages;e++){if(this.Ra(e)&&"SinglePage"!=this.F.H){var g=!this.pages[e].Wa;if(this.pages[e].Nc(d,this.M(this.J).height(),!1)){c=e;g&&this.L.trigger("onVisibilityChanged",e+1);break;}}}this.R!=c&&this.L.trigger("onCurrentPageChanged",c+1);this.R=c;},setCurrentCursor:function(c){for(var d=0;d<this.document.numPages;d++){this.Ra(d)&&("TextSelectorCursor"==c?jQuery(this.pages[d].U).addClass("flowpaper_nograb"):jQuery(this.pages[d].U).removeClass("flowpaper_nograb"));}},gotoPage:function(c){this.F.gotoPage(c);},xg:function(c,d){c=parseInt(c);var e=this;e.F.renderer.Jc&&e.F.renderer.Jc(e.pages[0]);jQuery(".flowpaper_pageword").remove();jQuery(".flowpaper_interactiveobject_"+e.P).remove();e.pages[0].ub();e.pages[0].visible=!0;var g=e.M(e.J).scrollTop();e.F.Kc(c);e.L.trigger("onCurrentPageChanged",c);e.pages[0].Nc(g,e.M(this.J).height(),!0)&&(e.L.trigger("onVisibilityChanged",c+1),e.pages[0].load(function(){null!=d&&d();e.kd();null!=e.jScrollPane&&e.jScrollPane.data("jsp").reinitialise(e.dd);}));},yg:function(c,d){c=parseInt(c);var e=this;0==c%2&&0<c&&"BookView"==e.F.H&&c!=e.getTotalPages()&&(c+=1);c==e.getTotalPages()&&"TwoPage"==e.F.H&&0==e.getTotalPages()%2&&(c=e.getTotalPages()-1);0==c%2&&"TwoPage"==e.F.H&&--c;c>e.getTotalPages()&&(c=e.getTotalPages());jQuery(".flowpaper_pageword").remove();jQuery(".flowpaper_interactiveobject_"+e.P).remove();if(c<=e.getTotalPages()&&0<c){e.F.Kc(c);e.R!=c&&e.L.trigger("onCurrentPageChanged",c);e.pages[0].ub();e.pages[0].load(function(){if("TwoPage"==e.F.H||"BookView"==e.F.H){e.M(e.J).animate({"margin-left":e.Lf()},{duration:250}),e.M("#"+this.container+"_2").css("left",e.M("#"+e.container).width()/2),e.Qa(e.F.scale);}});1<e.F.da?(e.M(e.pages[1].U+"_2").removeClass("flowpaper_hidden"),e.M(e.J+"_2").removeClass("flowpaper_hidden")):"BookView"==e.F.H&&1==e.F.da&&(e.M(e.pages[1].U+"_2").addClass("flowpaper_hidden"),e.M(e.J+"_2").addClass("flowpaper_hidden"));0!=e.getTotalPages()%2&&"TwoPage"==e.F.H&&c>=e.getTotalPages()&&e.M(e.pages[1].U+"_2").addClass("flowpaper_hidden");0==e.getTotalPages()%2&&"BookView"==e.F.H&&c>=e.getTotalPages()&&e.M(e.pages[1].U+"_2").addClass("flowpaper_hidden");var g=e.M(this.J).scrollTop();e.pages[1].ub();e.pages[1].visible=!0;!e.M(e.pages[1].U+"_2").hasClass("flowpaper_hidden")&&e.pages[1].Nc(g,e.M(this.J).height(),!0)&&(e.L.trigger("onVisibilityChanged",c+1),e.pages[1].load(function(){null!=d&&d();e.M(e.J).animate({"margin-left":e.Lf()},{duration:250});e.M("#"+this.container+"_2").css("left",e.M("#"+e.container).width()/2);e.kd();null!=e.jScrollPane&&e.jScrollPane.data("jsp").reinitialise(e.dd);}));}},rotate:function(c){this.pages[c].rotate();},Lf:function(c){this.L.width();var d=0;1!=this.F.da||c||"BookView"!=this.F.H?(c=jQuery(this.J+"_2").width(),0==c&&(c=this.M(this.J+"_1").width()),d=(this.L.width()-(this.M(this.J+"_1").width()+c))/2):d=(this.L.width()/2-this.M(this.J+"_1").width()/2)*(this.F.scale+0.7);10>d&&(d=0);return d;},previous:function(){var c=this;if("Portrait"==c.F.H){var d=c.M(c.J).scrollTop()-c.pages[0].height-14;0>d&&(d=1);eb.browser.capabilities.Cb?c.M(c.J).scrollTo(d,{axis:"y",duration:500}):c.jScrollPane.data("jsp").scrollToElement(this.pages[c.F.da-2].M(this.pages[c.F.da-2].xa),!0,!0);}"SinglePage"==c.F.H&&0<c.F.da-1&&(eb.platform.touchdevice&&1!=this.F.scale?(c.F.cd=!0,c.M(c.J).removeClass("flowpaper_pages_border"),c.M(c.J).transition({x:1000},350,function(){c.pages[0].ub();c.M(c.J).transition({x:-800},0);c.jScrollPane?c.jScrollPane.data("jsp").scrollTo(0,0,!1):c.M(c.J).scrollTo(0,{axis:"y",duration:0});c.xg(c.F.da-1,function(){});c.M(c.J).transition({x:0},350,function(){c.F.cd=!1;window.annotations||c.M(c.J).addClass("flowpaper_pages_border");});})):c.xg(c.F.da-1));c.F.I&&c.F.H==c.F.I.W&&c.F.I.kb.previous(c);"TwoPage"!=c.F.H&&"BookView"!=c.F.H||1>c.F.da-2||(eb.platform.touchdevice&&1!=this.F.scale?(c.R=c.F.da-2,c.F.cd=!0,c.M(c.J).animate({"margin-left":1000},{duration:350,complete:function(){jQuery(".flowpaper_interactiveobject_"+c.P).remove();1==c.F.da-2&&"BookView"==c.F.H&&c.pages[1].M(c.pages[1].U+"_2").addClass("flowpaper_hidden");setTimeout(function(){c.M(c.J).css("margin-left",-800);c.pages[0].ub();c.pages[1].ub();c.M(c.J).animate({"margin-left":c.Lf()},{duration:350,complete:function(){setTimeout(function(){c.F.cd=!1;c.yg(c.F.da-2);},500);}});},500);}})):c.yg(c.F.da-2));},next:function(){var c=this;if("Portrait"==c.F.H){0==c.F.da&&(c.F.da=1);var d=c.F.da-1;100<this.pages[c.F.da-1].M(this.pages[c.F.da-1].xa).offset().top-c.L.offset().top?d=c.F.da-1:d=c.F.da;eb.browser.capabilities.Cb?this.pages[d]&&c.M(c.J).scrollTo(this.pages[d].M(this.pages[d].xa),{axis:"y",duration:500}):c.jScrollPane.data("jsp").scrollToElement(this.pages[c.F.da].M(this.pages[c.F.da].xa),!0,!0);}"SinglePage"==c.F.H&&c.F.da<c.getTotalPages()&&(eb.platform.touchdevice&&1!=c.F.scale?(c.F.cd=!0,c.M(c.J).removeClass("flowpaper_pages_border"),c.M(c.J).transition({x:-1000},350,"ease",function(){c.pages[0].ub();c.M(c.J).transition({x:1200},0);c.jScrollPane?c.jScrollPane.data("jsp").scrollTo(0,0,!1):c.M(c.J).scrollTo(0,{axis:"y",duration:0});c.xg(c.F.da+1,function(){});c.M(c.J).transition({x:0},350,"ease",function(){window.annotations||c.M(c.J).addClass("flowpaper_pages_border");c.F.cd=!1;});})):c.xg(c.F.da+1));c.F.I&&c.F.H==c.F.I.W&&c.F.I.kb.next(c);if("TwoPage"==c.F.H||"BookView"==c.F.H){if("TwoPage"==c.F.H&&c.F.da+2>c.getTotalPages()){return !1;}eb.platform.touchdevice&&1!=this.F.scale?(c.R=c.F.da+2,c.F.cd=!0,c.M(c.J).animate({"margin-left":-1000},{duration:350,complete:function(){jQuery(".flowpaper_interactiveobject_"+c.P).remove();c.F.da+2<=c.getTotalPages()&&0<c.F.da+2&&c.pages[1].M(c.pages[1].U+"_2").removeClass("flowpaper_hidden");setTimeout(function(){c.M(c.J).css("margin-left",800);c.pages[0].ub();c.pages[1].ub();c.pages[0].Wa=!0;c.pages[1].Wa=!0;c.L.trigger("onVisibilityChanged",c.R);c.M(c.J).animate({"margin-left":c.Lf(!0)},{duration:350,complete:function(){setTimeout(function(){c.F.cd=!1;c.yg(c.F.da+2);},500);}});},500);}})):c.yg(c.F.da+2);}},gf:function(c){this.F.I&&this.F.H==this.F.I.W&&this.F.I.kb.gf(this,c);}};return f;}(),ya=function(){function f(c,d,e,g,h,f){this.L=g;this.F=h;this.pages=e;this.Ma=1000;this.pa=this.Wa=!1;this.P=c;this.pageNumber=d;this.dimensions=f;this.selectors={};this.aa="dummyPage_"+this.pageNumber+"_"+this.P;this.page="page_"+this.pageNumber+"_"+this.P;this.xd="pageContainer_"+this.pageNumber+"_"+this.P;this.Dg=this.xd+"_textLayer";this.eh="dummyPageCanvas_"+this.pageNumber+"_"+this.P;this.fh="dummyPageCanvas2_"+this.pageNumber+"_"+this.P;this.mi=this.page+"_canvasOverlay";this.dc="pageLoader_"+this.pageNumber+"_"+this.P;this.sl=this.xd+"_textoverlay";this.H=this.F.H;this.W=this.F.I?this.F.I.W:"";this.renderer=this.F.renderer;c=this.F.scale;this.scale=c;this.U="#"+this.aa;this.qa="#"+this.page;this.xa="#"+this.xd;this.Bb="#"+this.Dg;this.vi="#"+this.eh;this.wi="#"+this.fh;this.Sb="#"+this.dc;this.ej="#"+this.sl;this.ua={bottom:3,top:2,right:0,left:1,Za:4,back:5};this.Ua=[];this.duration=1.3;this.So=16777215;this.offset=this.force=0;}f.prototype={M:function(c){if(0<c.indexOf("undefined")){return jQuery(null);}this.selectors||(this.selectors={});this.selectors[c]||(this.selectors[c]=jQuery(c));return this.selectors[c];},show:function(){"TwoPage"!=this.F.H&&"BookView"!=this.F.H&&this.M(this.qa).removeClass("flowpaper_hidden");},Qe:function(){this.pages.jScrollPane&&(!eb.browser.capabilities.Cb&&this.pages.jScrollPane?"SinglePage"==this.F.H?0>this.M(this.pages.J).width()-this.M(this.xa).width()?(this.pages.jScrollPane.data("jsp").scrollToPercentX(0.5,!1),this.pages.jScrollPane.data("jsp").scrollToPercentY(0.5,!1)):(this.pages.jScrollPane.data("jsp").scrollToPercentX(0,!1),this.pages.jScrollPane.data("jsp").scrollToPercentY(0,!1)):this.pages.jScrollPane.data("jsp").scrollToPercentX(0,!1):this.M(this.xa).parent().scrollTo&&this.M(this.xa).parent().scrollTo({left:"50%"},0,{axis:"x"}));},create:function(c){var d=this;if("Portrait"==d.F.H){c.append("<div class='flowpaper_page "+(d.F.document.DisableOverflow?"flowpaper_ppage":"")+" "+(d.F.document.DisableOverflow&&d.pageNumber<d.F.renderer.getNumPages()-1?"ppage_break":"ppage_none")+"' id='"+d.xd+"' style='position:relative;"+(d.F.document.DisableOverflow?"margin:0;padding:0;overflow:hidden;":"")+"'><div id='"+d.aa+"' class='' style='z-index:11;"+d.getDimensions()+";'></div></div>");if(0<jQuery(d.F.Rj).length){var e=this.Ma*this.scale;jQuery(d.F.Rj).append("<div id='"+d.sl+"' class='flowpaper_page' style='position:relative;height:"+e+"px;width:100%;overflow:hidden;'></div>");}d.$k();}"SinglePage"==d.F.H&&0==d.pageNumber&&c.append("<div class='flowpaper_page' id='"+d.xd+"' class='flowpaper_rescale' style='position:relative;'><div id='"+d.aa+"' class='' style='position:absolute;z-index:11;"+d.getDimensions()+"'></div></div>");if("TwoPage"==d.F.H||"BookView"==d.F.H){0==d.pageNumber&&jQuery(c.children().get(0)).append("<div class='flowpaper_page' id='"+d.xd+"_1' style='z-index:2;float:right;position:relative;'><div id='"+d.aa+"_1' class='flowpaper_hidden flowpaper_border' style='"+d.getDimensions()+";float:right;'></div></div>"),1==d.pageNumber&&jQuery(c.children().get(1)).append("<div class='flowpaper_page' id='"+d.xd+"_2' style='position:relative;z-index:1;float:left;'><div id='"+d.aa+"_2' class='flowpaper_hidden flowpaper_border' style='"+d.getDimensions()+";float:left'></div></div>");}"ThumbView"==d.F.H&&(c.append("<div class='flowpaper_page' id='"+d.xd+"' style='position:relative;"+(eb.browser.msie?"clear:none;float:left;":"display:inline-block;")+"'><div id=\""+d.aa+'" class="flowpaper_page flowpaper_thumb flowpaper_border flowpaper_load_on_demand" style="margin-left:10px;'+d.getDimensions()+'"></div></div>'),jQuery(d.xa).on("mousedown touchstart",function(){d.F.gotoPage(d.pageNumber+1);}));d.F.H==d.W?d.F.I.Fc.create(d,c):(d.F.renderer.Pd(d),d.show(),d.height=d.M(d.xa).height(),d.Ul());},$k:function(){var c=this;if(c.F.cc){jQuery(c.xa).on("mouseover, mousemove",function(){"Portrait"==c.F.H?ra("pageContainer_"+c.pageNumber+"_documentViewer_textLayer",c.pageNumber+1):ra("turn-page-wrapper-"+(c.pageNumber+1),c.pageNumber+1);});}},Yn:function(){if("Portrait"==this.F.H||"SinglePage"==this.F.H){return this.mi;}if("TwoPage"==this.F.H||"BookView"==this.F.H){if(0==this.pageNumber){return this.mi+"_1";}if(1==this.pageNumber){return this.mi+"_2";}}},rj:function(c){this.M(this.ej).css({top:c});},Pb:function(){"Portrait"!=this.F.H&&"SinglePage"!=this.F.H&&this.F.H!=this.W||jQuery("#"+this.dc).remove();if("TwoPage"==this.F.H||"BookView"==this.F.H){0==this.pageNumber&&this.M(this.Sb+"_1").hide(),1==this.pageNumber&&this.M(this.Sb+"_2").hide();}},Wc:function(){if(!this.F.document.DisableOverflow){if("Portrait"==this.F.H||"SinglePage"==this.F.H||this.F.H==this.W){this.Ma=1000;if(0<this.M(this.Sb).length){return;}var c=0<jQuery(this.xa).length?jQuery(this.xa):this.Rc;c&&c.find&&0!=c.length?0==c.find("#"+this.dc).length&&c.append("<img id='"+this.dc+"' src='"+this.F.ie+"' class='flowpaper_pageLoader'  style='position:absolute;left:50%;top:50%;height:8px;margin-left:"+(this.bc()-10)+"px;' />"):M("can't show loader, missing container for page "+this.pageNumber);}if("TwoPage"==this.F.H||"BookView"==this.F.H){if(0==this.pageNumber){if(0<this.M(this.Sb+"_1").length){this.M(this.Sb+"_1").show();return;}this.M(this.U+"_1").append("<img id='"+this.dc+"_1' src='"+this.F.ie+"' style='position:absolute;left:"+(this.za()-30)+"px;top:"+this.Ha()/2+"px;' />");this.M(this.Sb+"_1").show();}1==this.pageNumber&&(0<this.M(this.Sb+"_2").length||this.M(this.U+"_2").append("<img id='"+this.dc+"_2' src='"+this.F.ie+"' style='position:absolute;left:"+(this.za()/2-10)+"px;top:"+this.Ha()/2+"px;' />"),this.M(this.Sb+"_2").show());}}},Qa:function(){var c,d;d=this.za();c=this.Ha();var e=this.bc();this.F.document.DisableOverflow&&(c=Math.floor(c),d=Math.floor(d));if("Portrait"==this.F.H||"SinglePage"==this.F.H){this.M(this.xa).css({height:c,width:d,"margin-left":e,"margin-top":0}),this.M(this.U).css({height:c,width:d,"margin-left":e}),this.M(this.qa).css({height:c,width:d,"margin-left":e}),this.M(this.vi).css({height:c,width:d}),this.M(this.wi).css({height:c,width:d}),this.M(this.ej).css({height:c,width:d}),this.M(this.Sb).css({"margin-left":e}),jQuery(this.Bb).css({height:c,width:d,"margin-left":e}),this.F.renderer.mb&&(jQuery(".flowpaper_flipview_canvas_highres").css({width:0.25*d,height:0.25*c}).show(),this.scale<this.wg()?this.F.renderer.Jc(this):this.F.renderer.Sc(this)),this.Tf(this.scale,e);}if("TwoPage"==this.F.H||"BookView"==this.F.H){this.M(this.U+"_1").css({height:c,width:d}),this.M(this.U+"_2").css({height:c,width:d}),this.M(this.U+"_1_textoverlay").css({height:c,width:d}),this.M(this.U+"_2_textoverlay").css({height:c,width:d}),this.M(this.qa).css({height:c,width:d}),eb.browser.capabilities.Cb||(0==this.pages.R?this.pages.M(this.pages.J).css({height:c,width:d}):this.pages.M(this.pages.J).css({height:c,width:2*d}),"TwoPage"==this.F.H&&this.pages.M(this.pages.J).css({width:"100%"})),eb.platform.touchdevice&&1<=this.scale&&this.pages.M(this.pages.J).css({width:2*d}),eb.platform.touchdevice&&("TwoPage"==this.F.H&&this.pages.M(this.pages.J+"_2").css("left",this.pages.M(this.pages.J+"_1").width()+e+2),"BookView"==this.F.H&&this.pages.M(this.pages.J+"_2").css("left",this.pages.M(this.pages.J+"_1").width()+e+2));}if(this.F.H==this.W){var g=this.sg()*this.Ma,h=this.za()/g;null!=this.dimensions.nb&&this.pb&&this.F.renderer.ra&&(h=this.pages.od/2/g);this.F.H==this.W?1==this.scale&&this.Tf(h,e):this.Tf(h,e);}this.height=c;this.width=d;},wg:function(){return 1;},Ub:function(){return"SinglePage"==this.F.H;},resize:function(){},sg:function(){return this.dimensions.la/this.dimensions.ya;},Mc:function(){return this.F.H==this.W?this.F.I.Fc.Mc(this):this.dimensions.la/this.dimensions.ya*this.scale*this.Ma;},Jf:function(){return this.F.H==this.W?this.F.I.Fc.Jf(this):this.Ma*this.scale;},getDimensions:function(){var c=this.re(),d=this.F.Mc();if(this.F.document.DisableOverflow){var e=this.Ma*this.scale;return"height:"+e+"px;width:"+e*c+"px";}if("Portrait"==this.F.H||"SinglePage"==this.F.H){return e=this.Ma*this.scale,"height:"+e+"px;width:"+e*c+"px;margin-left:"+(d-e*c)/2+"px;";}if(this.F.H==this.W){return this.F.I.Fc.getDimensions(this,c);}if("TwoPage"==this.F.H||"BookView"==this.F.H){return e=this.L.width()/2*this.scale,(0==this.pageNumber?"margin-left:0px;":"")+"height:"+e+"px;width:"+e*c+"px";}if("ThumbView"==this.F.H){return e=this.Ma*((this.L.height()-100)/this.Ma)/2.7,"height:"+e+"px;width:"+e*c+"px";}},re:function(){return this.dimensions.la/this.dimensions.ya;},za:function(c){return this.F.H==this.W?this.F.I.Fc.za(this):this.Ma*this.re()*(c?c:this.scale);},Ji:function(){return this.F.H==this.W?this.F.I.Fc.Ji(this):this.Ma*this.re()*this.scale;},Mk:function(c){return c/(this.Ma*this.re());},Li:function(){return this.F.H==this.W?this.F.I.Fc.Li(this):this.Ma*this.re();},Ha:function(){return this.F.H==this.W?this.F.I.Fc.Ha(this):this.Ma*this.scale;},Ii:function(){return this.F.H==this.W?this.F.I.Fc.Ii(this):this.Ma*this.scale;},bc:function(){var c=this.F.Mc(),d=0;if(this.F.document.DisableOverflow){return 0;}if("Portrait"==this.F.H||"SinglePage"==this.F.H){return this.pages.zg&&this.pages.zg>c&&(c=this.pages.zg),d=(c-this.za())/2/2-4,0<d?d:0;}if("TwoPage"==this.F.H||"BookView"==this.F.H){return 0;}if(this.F.H==this.W){return this.F.I.Fc.bc(this);}},Nc:function(c,d,e){var g=!1;if("Portrait"==this.F.H||"ThumbView"==this.F.H){if(this.offset=this.M(this.xa).offset()){this.pages.Qj||(this.pages.Qj=this.F.N.offset().top);var g=this.offset.top-this.pages.Qj+c,h=this.offset.top+this.height;d=c+d;g=e||eb.platform.touchdevice&&!eb.browser.capabilities.Cb?this.Wa=c-this.height<=g&&d>=g||g-this.height<=c&&h>=d:c<=g&&d>=g||g<=c&&h>=d;}else{g=!1;}}"SinglePage"==this.F.H&&(g=this.Wa=0==this.pageNumber);this.F.H==this.W&&(g=this.Wa=this.F.I.Fc.Nc(this));if("BookView"==this.F.H){if(0==this.pages.getTotalPages()%2&&this.pages.R>=this.pages.getTotalPages()&&1==this.pageNumber){return !1;}g=this.Wa=0==this.pageNumber||0!=this.pages.R&&1==this.pageNumber;}if("TwoPage"==this.F.H){if(0!=this.pages.getTotalPages()%2&&this.pages.R>=this.pages.getTotalPages()&&1==this.pageNumber){return !1;}g=this.Wa=0==this.pageNumber||1==this.pageNumber;}return g;},Bo:function(){this.pa||this.load();},load:function(c){this.Ea(c);if(!this.pa){"TwoPage"==this.F.H&&(c=this.F.renderer.getDimensions(this.pageNumber-1,this.pageNumber-1)[this.pages.R+this.pageNumber],c.width!=this.dimensions.width||c.height!=this.dimensions.height)&&(this.dimensions=c,this.Qa());"BookView"==this.F.H&&(c=this.F.renderer.getDimensions(this.pageNumber-1,this.pageNumber-1)[this.pages.R-(0<this.pages.R?1:0)+this.pageNumber],c.width!=this.dimensions.width||c.height!=this.dimensions.height)&&(this.dimensions=c,this.Qa());if("SinglePage"==this.F.H){c=this.F.renderer.getDimensions(this.pageNumber-1,this.pageNumber-1)[this.pages.R];if(c.width!=this.dimensions.width||c.height!=this.dimensions.height){this.dimensions=c,this.Qa(),jQuery(".flowpaper_pageword_"+this.P).remove(),this.Ea();}this.dimensions.loaded=!1;}"Portrait"==this.F.H&&(c=this.F.renderer.getDimensions(this.pageNumber-1,this.pageNumber-1)[this.pageNumber],c.width!=this.dimensions.width||c.height!=this.dimensions.height)&&(this.dimensions=c,this.Qa(),jQuery(".flowpaper_pageword_"+this.P).remove(),this.Ea());this.F.renderer.Tb(this,!1);"function"===typeof this.Mi&&this.loadOverlay();}},ub:function(){if(this.pa||"TwoPage"==this.F.H||"BookView"==this.F.H||this.F.H==this.W){delete this.selectors,this.selectors={},jQuery(this.V).unbind(),delete this.V,this.V=null,this.pa=!1,this.F.renderer.ub(this),jQuery(this.Sb).remove(),this.Vj&&(delete this.Vj,this.Vj=null),this.F.H==this.W&&this.F.I.Fc.ub(this),"TwoPage"!=this.F.H&&"BookView"!=this.F.H&&this.M("#"+this.Yn()).remove(),"function"===typeof this.Mi&&this.vs();}},Ea:function(c){"ThumbView"==this.F.H||!this.Wa&&null==c||this.pages.animating||this.F.renderer.Ea(this,!1,c);},Gc:function(c,d,e){this.F.renderer.Gc(this,c,d,e);},Ne:function(c,d,e){this.F.renderer.Ne(this,c,d,e);},Ul:function(){if("Portrait"==this.F.H||"SinglePage"==this.F.H){eb.browser.msie&&9>eb.browser.version||eb.platform.ios||(new ba(this.F,"CanvasPageRenderer"==this.renderer.Mf()?this.U:this.qa,this.M(this.xa).parent())).scroll();}},Tf:function(c,d){var e=this;if(e.F.Z[e.pageNumber]){for(var g=0;g<e.F.Z[e.pageNumber].length;g++){if("link"==e.F.Z[e.pageNumber][g].type){var h=e.F.Z[e.pageNumber][g].yo*c,f=e.F.Z[e.pageNumber][g].zo*c,k=e.F.Z[e.pageNumber][g].width*c,l=e.F.Z[e.pageNumber][g].height*c,m=e.F.Z[e.pageNumber][g].Cp,p=e.F.Z[e.pageNumber][g].Dp,r=e.F.Z[e.pageNumber][g].Lo;if(0==jQuery("#flowpaper_mark_link_"+e.pageNumber+"_"+g).length){var t=jQuery(String.format("<div id='flowpaper_mark_link_{4}_{5}' class='flowpaper_mark_link flowpaper_mark' style='left:{0}px;top:{1}px;width:{2}px;height:{3}px;box-shadow: 0px 0px 0px 0px;'></div>",h,f,k,l,e.pageNumber,g)),q=e.xa;0==jQuery(q).length&&(q=e.Rc);if(m){m="flowpaper-linkicon-url";e.F.Z[e.pageNumber][g].href&&-1<e.F.Z[e.pageNumber][g].href.indexOf("mailto:")&&(m="flowpaper-linkicon-email");e.F.Z[e.pageNumber][g].href&&-1<e.F.Z[e.pageNumber][g].href.indexOf("tel:")&&(m="flowpaper-linkicon-phone");e.F.Z[e.pageNumber][g].href&&-1<e.F.Z[e.pageNumber][g].href.indexOf("actionGoTo:")&&(m="flowpaper-linkicon-bookmark");var u=jQuery(String.format("<div id='flowpaper_mark_link_{4}_{5}_icon' class='flowpaper_mark flowpaper-linkicon flowpaper-linkicon-roundbg' style='left:{0}px;top:{1}px;width:{2}px;height:{3}px;pointer-events:none;'></div>'",h,f,k,l,e.pageNumber,g));jQuery(q).append(u);h=jQuery(String.format("<div id='flowpaper_mark_link_{4}_{5}_icon' class='flowpaper_mark flowpaper-linkicon {6}' style='left:{0}px;top:{1}px;width:{2}px;height:{3}px;pointer-events:none;'></div>'",h,f,k,l,e.pageNumber,g,m));jQuery(q).append(h);}q=jQuery(q).append(t).find("#flowpaper_mark_link_"+e.pageNumber+"_"+g);p&&(q.data("mouseOverText",r),q.bind("mouseover",function(c){for(var d=document.querySelectorAll(".popover"),g=0;g<d.length;g++){d[g].remove();}!jQuery(this).data("mouseOverText")||jQuery(this).data("mouseOverText")&&0==jQuery(this).data("mouseOverText").length||(c=new Popover({position:"top",button:c.target}),c.setContent('<span style="font-family:Arial;font-size:0.8em;">'+jQuery(this).data("mouseOverText")+"</span>"),c.render("open",e.F.N.get(0)));}),q.bind("mouseout",function(){for(var c=document.querySelectorAll(".popover"),d=0;d<c.length;d++){c[d].remove();}}));q.data("link",e.F.Z[e.pageNumber][g].href);q.bind("mouseup touchend",function(c){if(e.pages.Je||e.pages.animating){return !1;}if(0==jQuery(this).data("link").indexOf("actionGoTo:")){e.F.gotoPage(jQuery(this).data("link").substr(11));}else{if(0==jQuery(this).data("link").indexOf("javascript")){var d=unescape(jQuery(this).data("link"));eval(d.substring(11));}else{jQuery(e.L).trigger("onExternalLinkClicked",jQuery(this).data("link"));}}c.preventDefault();c.stopImmediatePropagation();return !1;});eb.platform.touchonlydevice||(jQuery(q).on("mouseover",function(){jQuery(this).stop(!0,!0);jQuery(this).css("background",e.F.linkColor);jQuery(this).css({opacity:e.F.Oc});}),jQuery(q).on("mouseout",function(){jQuery(this).css("background","");jQuery(this).css({opacity:0});}));}else{t=jQuery("#flowpaper_mark_link_"+e.pageNumber+"_"+g),t.css({left:h+"px",top:f+"px",width:k+"px",height:l+"px","margin-left":d+"px"});}}"video"==e.F.Z[e.pageNumber][g].type&&(r=e.F.Z[e.pageNumber][g].Oj*c,t=e.F.Z[e.pageNumber][g].Pj*c,q=e.F.Z[e.pageNumber][g].width*c,p=e.F.Z[e.pageNumber][g].height*c,h=e.F.Z[e.pageNumber][g].src,f=e.F.Z[e.pageNumber][g].autoplay,FLOWPAPER.authenticated&&(h=FLOWPAPER.appendUrlParameter(h,FLOWPAPER.authenticated.getParams())),0==jQuery("#flowpaper_mark_video_"+e.pageNumber+"_"+g).length?(h=jQuery(String.format("<div id='flowpaper_mark_video_{4}_{5}' data-autoplay='{8}' class='flowpaper_mark_video flowpaper_mark_video_{4} flowpaper_mark' style='left:{0}px;top:{1}px;width:{2}px;height:{3}px;margin-left:{7}px'><img src='{6}' style='position:absolute;width:{2}px;height:{3}px;' class='flowpaper_mark'/></div>",r,t,q,p,e.pageNumber,g,h,d,f)),q=e.xa,0==jQuery(q).length&&(q=e.Rc),q=jQuery(q).append(h).find("#flowpaper_mark_video_"+e.pageNumber+"_"+g),q.data("video",e.F.Z[e.pageNumber][g].url),q.data("maximizevideo",e.F.Z[e.pageNumber][g].Jo),q.bind("mouseup touchend",function(c){jQuery(e.L).trigger("onVideoStarted",{VideoUrl:jQuery(this).data("video"),PageNumber:e.pageNumber+1});if(e.pages.Je||e.pages.animating){return !1;}var d=jQuery(this).data("video"),g="true"==jQuery(this).data("maximizevideo");if(d&&0<=d.toLowerCase().indexOf("youtube")){for(var h=d.substr(d.indexOf("?")+1).split("&"),f="",n=0;n<h.length;n++){0==h[n].indexOf("v=")&&(f=h[n].substr(2));}if(g){e.F.yc=jQuery(String.format('<div class="flowpaper_mark_video_maximized flowpaper_mark" style="position:absolute;z-index:99999;left:2.5%;top:2.5%;width:95%;height:95%"></div>'));e.F.N.append(e.F.yc);jQuery(e.F.yc).html(String.format("<iframe class='flowpaper_videoframe' width='{0}' height='{1}' src='{3}://www.youtube.com/embed/{2}?rel=0&autoplay=1&enablejsapi=1' frameborder='0' allowfullscreen ></iframe>",0.95*e.F.N.width(),0.95*e.F.N.height(),f,-1<location.href.indexOf("https:")?"https":"http"));var k=jQuery(String.format('<img class="flowpaper_mark_video_maximized_closebutton" src="{0}" style="position:absolute;right:3px;top:1%;z-index:999999;cursor:pointer;">',e.F.lg));e.F.N.append(k);jQuery(k).bind("mousedown touchstart",function(){jQuery(".flowpaper_mark_video_maximized").remove();jQuery(".flowpaper_mark_video_maximized_closebutton").remove();});}else{jQuery(this).html(String.format("<iframe class='flowpaper_videoframe' width='{0}' height='{1}' src='{3}://www.youtube.com/embed/{2}?rel=0&autoplay=1&enablejsapi=1' frameborder='0' allowfullscreen ></iframe>",jQuery(this).width(),jQuery(this).height(),f,-1<location.href.indexOf("https:")?"https":"http"));}}d&&0<=d.toLowerCase().indexOf("vimeo")&&(f=d.substr(d.lastIndexOf("/")+1),g?(e.F.yc=jQuery(String.format('<div class="flowpaper_mark_video_maximized flowpaper_mark" style="position:absolute;z-index:99999;left:2.5%;top:2.5%;width:95%;height:95%"></div>')),e.F.N.append(e.F.yc),jQuery(e.F.yc).html(String.format("<iframe class='flowpaper_videoframe' src='//player.vimeo.com/video/{2}?autoplay=1' width='{0}' height='{1}' frameborder='0' webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>",0.95*e.F.N.width(),0.95*e.F.N.height(),f)),k=jQuery(String.format('<img class="flowpaper_mark_video_maximized_closebutton" src="{0}" style="position:absolute;right:3px;top:1%;z-index:999999;cursor:pointer;">',e.F.lg)),e.F.N.append(k),jQuery(k).bind("mousedown touchstart",function(){jQuery(".flowpaper_mark_video_maximized").remove();jQuery(".flowpaper_mark_video_maximized_closebutton").remove();})):jQuery(this).html(String.format("<iframe class='flowpaper_videoframe' src='//player.vimeo.com/video/{2}?autoplay=1' width='{0}' height='{1}' frameborder='0' webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>",jQuery(this).width(),jQuery(this).height(),f)));d&&0<=d.toLowerCase().indexOf("wistia")&&(f=d.substr(d.lastIndexOf("/")+1),g?(e.F.yc=jQuery(String.format('<div class="flowpaper_mark_video_maximized flowpaper_mark" style="position:absolute;z-index:99999;left:2.5%;top:2.5%;width:95%;height:95%"></div>')),e.F.N.append(e.F.yc),jQuery(e.F.yc).html(String.format("<iframe class='flowpaper_videoframe' src='//fast.wistia.net/embed/iframe/{2}?autoplay=true' width='{0}' height='{1}' frameborder='0' webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>",0.95*e.F.N.width(),0.95*e.F.N.height(),f)),k=jQuery(String.format('<img class="flowpaper_mark_video_maximized_closebutton" src="{0}" style="position:absolute;right:3px;top:1%;z-index:999999;cursor:pointer;">',e.F.lg)),e.F.N.append(k),jQuery(k).bind("mousedown touchstart",function(){jQuery(".flowpaper_mark_video_maximized").remove();jQuery(".flowpaper_mark_video_maximized_closebutton").remove();})):jQuery(this).html(String.format("<iframe class='flowpaper_videoframe' src='//fast.wistia.net/embed/iframe/{2}?autoplay=true' width='{0}' height='{1}' frameborder='0' webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>",jQuery(this).width(),jQuery(this).height(),f)));if(d&&-1<d.indexOf("{")){try{var l=JSON.parse(d),q=FLOWPAPER.appendUrlParameter(l.mp4,FLOWPAPER.authenticated?FLOWPAPER.authenticated.getParams():""),r=FLOWPAPER.appendUrlParameter(l.webm,FLOWPAPER.authenticated?FLOWPAPER.authenticated.getParams():""),p="vimeoframe_"+FLOWPAPER.Wn();if(g){e.F.yc=jQuery(String.format('<div class="flowpaper_mark_video_maximized flowpaper_mark" style="position:absolute;z-index:99999;left:2.5%;top:2.5%;width:95%;height:95%"></div>')),e.F.N.append(e.F.yc),jQuery(e.F.yc).html(jQuery(String.format('<video id="{2}" style="width:{3}px;height:{4}px;" class="videoframe flowpaper_mark video-js vjs-default-skin" controls autoplay controlsList="nodownload" preload="auto" width="{3}" height="{4}" data-setup=\'{"example_option":true}\'><source src="{0}" type="video/mp4" /><source src="{1}" type="video/webm" /></video>',q,r,p,0.95*e.F.N.width(),0.95*e.F.N.height()))),k=jQuery(String.format('<img class="flowpaper_mark_video_maximized_closebutton" src="{0}" style="position:absolute;right:3px;top:1%;z-index:999999;cursor:pointer;">',e.F.lg)),e.F.N.append(k),jQuery(k).bind("mousedown touchstart",function(){jQuery(".flowpaper_mark_video_maximized").remove();jQuery(".flowpaper_mark_video_maximized_closebutton").remove();});}else{if(0==jQuery(this).find("video").length){jQuery(this).html(jQuery(String.format('<video id="{2}" style="width:{3}px;height:{4}px;" class="videoframe flowpaper_mark video-js vjs-default-skin" controls autoplay controlsList="nodownload" preload="auto" width="{3}" height="{4}" data-setup=\'{"example_option":true}\'><source src="{0}" type="video/mp4" /><source src="{1}" type="video/webm" /></video>',q,r,p,jQuery(this).width(),jQuery(this).height())));}else{return !0;}}}catch(t){}}c.preventDefault();c.stopImmediatePropagation();return !1;})):(h=jQuery("#flowpaper_mark_video_"+e.pageNumber+"_"+g),h.css({left:r+"px",top:t+"px",width:q+"px",height:p+"px","margin-left":d+"px"}).find(".flowpaper_mark").css({width:q+"px",height:p+"px"}),t=h.find("iframe"),0<t.length&&(t.attr("width",q),t.attr("height",p))));"image"==e.F.Z[e.pageNumber][g].type&&(q=e.F.Z[e.pageNumber][g].qh*c,f=e.F.Z[e.pageNumber][g].rh*c,k=e.F.Z[e.pageNumber][g].width*c,l=e.F.Z[e.pageNumber][g].height*c,p=e.F.Z[e.pageNumber][g].src,r=e.F.Z[e.pageNumber][g].href,t=e.F.Z[e.pageNumber][g].mo,FLOWPAPER.authenticated&&(p=FLOWPAPER.appendUrlParameter(p,FLOWPAPER.authenticated.getParams())),0==jQuery("#flowpaper_mark_image_"+e.pageNumber+"_"+g).length?(h=jQuery(String.format("<div id='flowpaper_mark_image_{4}_{5}' class='flowpaper_mark_image flowpaper_mark' style='left:{0}px;top:{1}px;width:{2}px;height:{3}px;'><img src='{6}' style='position:absolute;width:{2}px;height:{3}px;' class='flowpaper_mark'/></div>",q,f,k,l,e.pageNumber,g,p)),q=e.xa,0==jQuery(q).length&&(q=e.Rc),q=jQuery(q).append(h).find("#flowpaper_mark_image_"+e.pageNumber+"_"+g),q.data("image",e.F.Z[e.pageNumber][g].url),null!=r&&0<r.length?(q.data("link",r),q.bind("mouseup touchend",function(c){if(e.pages.Je||e.pages.animating){return !1;}0==jQuery(this).data("link").indexOf("actionGoTo:")?e.F.gotoPage(jQuery(this).data("link").substr(11)):jQuery(e.L).trigger("onExternalLinkClicked",jQuery(this).data("link"));c.preventDefault();c.stopImmediatePropagation();return !1;})):e.F.cc||h.css({"pointer-events":"none"}),null!=t&&0<t.length&&(q.data("hoversrc",t),q.data("imagesrc",p),q.bind("mouseover",function(){jQuery(this).find(".flowpaper_mark").attr("src",jQuery(this).data("hoversrc"));}),q.bind("mouseout",function(){jQuery(this).find(".flowpaper_mark").attr("src",jQuery(this).data("imagesrc"));}),e.F.cc||h.css({"pointer-events":"auto"}))):(h=jQuery("#flowpaper_mark_image_"+e.pageNumber+"_"+g),h.css({left:q+"px",top:f+"px",width:k+"px",height:l+"px","margin-left":d+"px"}).find(".flowpaper_mark").css({width:k+"px",height:l+"px"})));"iframe"==e.F.Z[e.pageNumber][g].type&&(t=e.F.Z[e.pageNumber][g].Fi*c,h=e.F.Z[e.pageNumber][g].Gi*c,q=e.F.Z[e.pageNumber][g].width*c,r=e.F.Z[e.pageNumber][g].height*c,f=e.F.Z[e.pageNumber][g].src,FLOWPAPER.authenticated&&(f=FLOWPAPER.appendUrlParameter(f,FLOWPAPER.authenticated.getParams())),0==jQuery("#flowpaper_mark_frame_"+e.pageNumber+"_"+g).length?(p=q-10,50<p&&(p=50),50>q&&(p=q-10),50>r&&(p=r-10),f=jQuery(String.format("<div id='flowpaper_mark_frame_{4}_{5}' class='flowpaper_mark_frame flowpaper_mark' style='left:{0}px;top:{1}px;width:{2}px;height:{3}px;margin-left:{7}px'><img src='{6}' style='position:absolute;width:{2}px;height:{3}px;' class='flowpaper_mark'/><div id='flowpaper_mark_frame_{4}_{5}_play' style='position:absolute;top:{9}px;left:{8}px;'></div></div>",t,h,q,r,e.pageNumber,g,f,d,q/2-p/3,r/2-p)),q=e.xa,0==jQuery(q).length&&(q=e.Rc),q=jQuery(q).append(f).find("#flowpaper_mark_frame_"+e.pageNumber+"_"+g),jQuery("#flowpaper_mark_frame_"+e.pageNumber+"_"+g+"_play").zd(p,"#AAAAAA",!0),q.data("url",e.F.Z[e.pageNumber][g].url),q.data("maximizeframe",e.F.Z[e.pageNumber][g].Io),jQuery("#flowpaper_mark_frame_"+e.pageNumber+"_"+g+"_play").bind("mouseup touchend",function(c){if(e.pages.Je||e.pages.animating){return !1;}var d=jQuery(this).parent().data("url"),g="true"==jQuery(this).parent().data("maximizeframe");-1<d.indexOf("http")&&(d=d.substr(d.indexOf("//")+2));g?(e.F.ol=jQuery(String.format('<div class="flowpaper_mark_frame_maximized flowpaper_mark" style="position:absolute;z-index:99999;left:2.5%;top:2.5%;width:95%;height:95%"></div>')),e.F.N.append(e.F.ol),jQuery(e.F.ol).html(String.format("<iframe sandbox='allow-forms allow-same-origin allow-scripts' width='{0}' height='{1}' src='{3}://{2}' frameborder='0' allowfullscreen ></iframe>",0.95*e.F.N.width(),0.95*e.F.N.height(),d,-1<location.href.indexOf("https:")?"https":"http")),d=jQuery(String.format('<img class="flowpaper_mark_frame_maximized_closebutton" src="{0}" style="position:absolute;right:3px;top:1%;z-index:999999;cursor:pointer;">',e.F.lg)),e.F.N.append(d),jQuery(d).bind("mousedown touchstart",function(){jQuery(".flowpaper_mark_frame_maximized").remove();jQuery(".flowpaper_mark_frame_maximized_closebutton").remove();})):jQuery(this).parent().html(String.format("<iframe sandbox='allow-forms allow-same-origin allow-scripts' width='{0}' height='{1}' src='{3}://{2}' frameborder='0' allowfullscreen ></iframe>",jQuery(this).parent().width(),jQuery(this).parent().height(),d,-1<location.href.indexOf("https:")?"https":"http"));c.preventDefault();c.stopImmediatePropagation();return !1;})):(f=jQuery("#flowpaper_mark_frame_"+e.pageNumber+"_"+g),f.css({left:t+"px",top:h+"px",width:q+"px",height:r+"px","margin-left":d+"px"}).find(".flowpaper_mark").css({width:q+"px",height:r+"px"}),t=f.find("iframe"),0<t.length&&(t.attr("width",q),t.attr("height",r))));}}},dispose:function(){jQuery(this.xa).find("*").unbind();jQuery(this).unbind();jQuery(this.V).unbind();delete this.V;this.V=null;jQuery(this.xa).find("*").remove();this.selectors=this.pages=this.F=this.L=null;},rotate:function(){this.rotation&&360!=this.rotation||(this.rotation=0);this.rotation=this.rotation+90;360==this.rotation&&(this.rotation=0);var c=this.bc();if("Portrait"==this.F.H||"SinglePage"==this.F.H){this.Qa(),90==this.rotation?(this.M(this.U).transition({rotate:this.rotation},0),jQuery(this.qa).transition({rotate:this.rotation,translate:"-"+c+"px, 0px"},0),jQuery(this.Bb).css({"z-index":11,"margin-left":c}),jQuery(this.Bb).transition({rotate:this.rotation,translate:"-"+c+"px, 0px"},0)):270==this.rotation?(jQuery(this.qa).transition({rotate:this.rotation,translate:"-"+c+"px, 0px"},0),jQuery(this.Bb).css({"z-index":11,"margin-left":c}),this.M(this.U).transition({rotate:this.rotation},0),jQuery(this.Bb).transition({rotate:this.rotation,translate:"-"+c+"px, 0px"},0)):180==this.rotation?(jQuery(this.qa).transition({rotate:this.rotation,translate:"-"+c+"px, 0px"},0),jQuery(this.Bb).css({"z-index":11,"margin-left":c}),this.M(this.U).transition({rotate:this.rotation},0),jQuery(this.Bb).transition({rotate:this.rotation,translate:"-"+c+"px, 0px"},0)):(jQuery(this.qa).css("transform",""),jQuery(this.Bb).css({"z-index":"","margin-left":0}),this.M(this.U).css("transform",""),jQuery(this.Bb).css("transform",""));}},Zd:function(c,d,e,g,h,f,k){var l=this,m=l.pageNumber+(d?d:0),p=new jQuery.Deferred;if(!l.F.renderer.na){return p.resolve(),p;}l.pages.animating&&(window.clearTimeout(l.lj),l.lj=setTimeout(function(){l.Zd(c,d,e,g,h,f,k);},50));k||l.Wc();var r=l.F.renderer;"SinglePage"==l.H&&(m=l.pages.R);l.F.config.document.RTLMode&&(m=l.pages.getTotalPages()-m-1);r.S[m]&&r.S[m].loaded&&(1==jQuery(c).data("needs-overlay")||f)?(jQuery(c).data("needs-overlay",jQuery(c).data("needs-overlay")-1),l.Co(d,function(){l.Eo=!0;var d=r.S[m].text,f=c.getContext("2d"),n=(e?e:c.width)/(r.S[0]?r.S[0].width:r.S[m].width),k=!0;g||(g=0,k=!1);h||(h=0,k=!1);f.setTransform(1,0,0,1,g,h);f.save();f.scale(n,n);for(var A=0;A<d.length;A++){var w=d[A],x=w[1],D=w[0]+w[10]*w[3],B=w[9],K=w[2],C=w[3],E=w[7],F=w[8],z=w[6],y=w[11],w=w[12],G=E&&0==E.indexOf("(bold)"),H=E&&0==E.indexOf("(italic)");E&&(E=E.replace("(bold) ",""),E=E.replace("(italic) ",""),f.font=(H?"italic ":"")+(G?"bold ":"")+Math.abs(C)+"px "+E+", "+F);if("object"==typeof z&&z.length&&6==z.length){var J,E=z[1],F=z[2],G=z[3],H=z[4],C=z[5];"axial"===z[0]?J=f.createLinearGradient(E[0],E[1],F[0],F[1]):"radial"===z[0]&&(J=f.createRadialGradient(E[0],E[1],G,F[0],F[1],H));z=0;for(E=C.length;z<E;++z){F=C[z],J.addColorStop(F[0],F[1]);}f.fillStyle=J;}else{f.fillStyle=z;}0!=y&&(f.save(),f.translate(x,D),f.rotate(y));if(w){for(z=0;z<w.length;z++){C=w[z],0==y?k&&(0>g+(x+C[0]*B+K)*n||g+(x+C[0]*B)*n>c.width)||f.fillText(C[1],x+C[0]*B,D):f.fillText(C[1],C[0]*Math.abs(B),0);}}0!=y&&f.restore();}f.restore();if($(c).hasClass("flowpaper_glyphcanvas")&&(d=l.pageNumber,l.F.Z[d])){f.save();f.globalCompositeOperation="destination-out";f.beginPath();k=eb.platform.Xa;k=jQuery(l.U).get(0).getBoundingClientRect().width/(l.sg()*l.Ma)*k;for(z=0;z<l.F.Z[d].length;z++){"video"==l.F.Z[d][z].type&&f.rect(l.F.Z[d][z].Oj*k,l.F.Z[d][z].Pj*k,l.F.Z[d][z].width*k,l.F.Z[d][z].height*k),"image"==l.F.Z[d][z].type&&f.rect(l.F.Z[d][z].qh*k,l.F.Z[d][z].rh*k,l.F.Z[d][z].width*k,l.F.Z[d][z].height*k);}f.closePath();f.fill();f.restore();}jQuery(c).data("overlay-scale",n);p.resolve(c);l.Pb();})):(r.S[m].loaded?p.resolve(c):(l.Eo=!1,c.width=100,p.reject()),l.Pb());return p;},Co:function(c,d){var e=new jQuery.Deferred,g=this.F.renderer;g.kh||(g.kh={});g.Qc||(g.Qc={});var h=[],f=!1,k=this.pageNumber;this.F.config.document.RTLMode&&(k=this.pages.getTotalPages()-k-1);for(var l=g.Kf(k),k=l-10;k<l;k++){g.S[k]&&g.S[k].fonts&&0<g.S[k].fonts.length&&(f=!0);}if(!eb.browser.msie&&!eb.browser.lf||f){k=this.pageNumber+(c?c:0);this.F.config.document.RTLMode&&(k=this.pages.getTotalPages()-k-1);var m=g.S[k].text;if(f){for(k=l-(10<l?11:10);k<l;k++){if(g.S[k]&&g.S[k].fonts&&0<g.S[k].fonts.length){for(f=0;f<g.S[k].fonts.length;f++){g.Qc[g.S[k].fonts[f].name]||(ha(g.S[k].fonts[f].name,g.S[k].fonts[f].data),h.push(g.S[k].fonts[f].name));}}}}else{if(m&&0<m.length){for(l=0;l<m.length;l++){m[l][7]&&!g.Qc[m[l][7]]&&-1==h.indexOf(m[l][7])&&0==m[l][7].indexOf("g_font")&&m[l][7]&&h.push(m[l][7]);}}}}else{for(f=this.pages.getTotalPages(),k=0;k<f;k++){if(l=g.S[k],l.loaded){for(m=l.text,l=0;l<m.length;l++){m[l][7]&&!g.Qc[m[l][7]]&&-1==h.indexOf(m[l][7])&&0==m[l][7].indexOf("g_font")&&m[l][7]&&h.push(m[l][7]);}}}}0<h.length?(k=h.join(" "),g.kh[k]?g.kh[k].then(function(){e.resolve();}):(g.kh[k]=e,WebFont.load({custom:{families:h},inactive:function(){e.resolve();},fontactive:function(c){g.Qc[c]="loaded";},fontinactive:function(c){g.Qc[c]="inactive";},active:function(){e.resolve();},timeout:eb.browser.msie||eb.browser.lf?5000:25000})),e.then(function(){d&&d();})):(e.resolve(),d&&d());return e;}};return f;}();function za(f,c){this.F=this.O=f;this.L=this.F.L;this.resources=this.F.resources;this.P=this.F.P;this.document=c;this.Cf=null;this.Ja="toolbar_"+this.F.P;this.K="#"+this.Ja;this.rk=this.Ja+"_bttnPrintdialogPrint";this.gi=this.Ja+"_bttnPrintdialogCancel";this.nk=this.Ja+"_bttnPrintDialog_RangeAll";this.pk=this.Ja+"_bttnPrintDialog_RangeCurrent";this.qk=this.Ja+"_bttnPrintDialog_RangeSpecific";this.di=this.Ja+"_bttnPrintDialogRangeText";this.hl=this.Ja+"_labelPrintProgress";this.tg=null;this.create=function(){var c=this;c.Xl="";if(eb.platform.touchonlydevice||c.tg){c.tg||(e=c.resources.ma.zq,jQuery(c.K).html((eb.platform.touchonlydevice?"":String.format("<img src='{0}' class='flowpaper_tbbutton_large flowpaper_print flowpaper_bttnPrint' style='margin-left:5px;'/>",c.resources.ma.Lq))+(c.F.config.document.ViewModeToolsVisible?(eb.platform.lb?"":String.format("<img src='{0}' class='flowpaper_tbbutton_large flowpaper_viewmode flowpaper_singlepage {1} flowpaper_bttnSinglePage' style='margin-left:15px;'>",c.resources.ma.Mq,"Portrait"==c.F.yb?"flowpaper_tbbutton_pressed":""))+(eb.platform.lb?"":String.format("<img src='{0}' style='margin-left:-1px;' class='flowpaper_tbbutton_large flowpaper_viewmode  flowpaper_twopage {1} flowpaper_bttnTwoPage'>",c.resources.ma.Tq,"TwoPage"==c.F.yb?"flowpaper_tbbutton_pressed":""))+(eb.platform.lb?"":String.format("<img src='{0}' style='margin-left:-1px;' class='flowpaper_tbbutton_large flowpaper_viewmode flowpaper_thumbview flowpaper_bttnThumbView'>",c.resources.ma.Sq))+(eb.platform.lb?"":String.format("<img src='{0}' style='margin-left:-1px;' class='flowpaper_tbbutton_large flowpaper_fitmode flowpaper_fitwidth flowpaper_bttnFitWidth'>",c.resources.ma.Bq))+(eb.platform.lb?"":String.format("<img src='{0}' style='margin-left:-1px;' class='flowpaper_tbbutton_large flowpaper_fitmode fitheight flowpaper_bttnFitHeight'>",c.resources.ma.Jq))+"":"")+(c.F.config.document.ZoomToolsVisible?String.format("<img class='flowpaper_tbbutton_large flowpaper_bttnZoomIn' src='{0}' style='margin-left:5px;' />",c.resources.ma.Wq)+String.format("<img class='flowpaper_tbbutton_large flowpaper_bttnZoomOut' src='{0}' style='margin-left:-1px;' />",c.resources.ma.Xq)+(eb.platform.lb?"":String.format("<img class='flowpaper_tbbutton_large flowpaper_bttnFullScreen' src='{0}' style='margin-left:-1px;' />",c.resources.ma.Dq))+"":"")+(c.F.config.document.NavToolsVisible?String.format("<img src='{0}' class='flowpaper_tbbutton_large flowpaper_previous flowpaper_bttnPrevPage' style='margin-left:15px;'/>",c.resources.ma.pq)+String.format("<input type='text' class='flowpaper_tbtextinput_large flowpaper_currPageNum flowpaper_txtPageNumber' value='1' style='width:70px;text-align:right;' />")+String.format("<div class='flowpaper_tblabel_large flowpaper_numberOfPages flowpaper_lblTotalPages'> / </div>")+String.format("<img src='{0}'  class='flowpaper_tbbutton_large flowpaper_next flowpaper_bttnPrevNext'/>",c.resources.ma.qq)+"":"")+(c.F.config.document.SearchToolsVisible?String.format("<input type='text' class='flowpaper_tbtextinput_large flowpaper_txtSearch' style='margin-left:15px;width:130px;' />")+String.format("<img src='{0}' class='flowpaper_find flowpaper_tbbutton_large flowpaper_bttnFind' style=''/>",c.resources.ma.Aq)+"":"")),jQuery(c.K).addClass("flowpaper_toolbarios"));}else{var e=c.resources.ma.Am,g=String.format("<div class='flowpaper_floatright flowpaper_bttnPercent' sbttnPrintIdtyle='text-align:center;padding-top:5px;background-repeat:no-repeat;width:20px;height:20px;font-size:9px;font-family:Arial;background-image:url({0})'><div id='lblPercent'></div></div>",c.resources.ma.Sm);eb.browser.msie&&addCSSRule(".flowpaper_tbtextinput","height","18px");jQuery(c.K).html(String.format("<img src='{0}' class='flowpaper_tbbutton print flowpaper_bttnPrint'/>",c.resources.ma.Om)+String.format("<img src='{0}' class='flowpaper_tbseparator' />",e)+(c.F.config.document.ViewModeToolsVisible?String.format("<img src='{1}' class='flowpaper_bttnSinglePage flowpaper_tbbutton flowpaper_viewmode flowpaper_singlepage {0}' />","Portrait"==c.F.yb?"flowpaper_tbbutton_pressed":"",c.resources.ma.Rm)+String.format("<img src='{1}' class='flowpaper_bttnTwoPage flowpaper_tbbutton flowpaper_viewmode flowpaper_twopage {0}' />","TwoPage"==c.F.yb?"flowpaper_tbbutton_pressed":"",c.resources.ma.Vm)+String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_thumbview flowpaper_viewmode flowpaper_bttnThumbView' />",c.resources.ma.Um)+String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_fitmode flowpaper_fitwidth flowpaper_bttnFitWidth' />",c.resources.ma.Nm)+String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_fitmode flowpaper_fitheight flowpaper_bttnFitHeight'/>",c.resources.ma.Mm)+String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_bttnRotate'/>",c.resources.ma.Qm)+String.format("<img src='{0}' class='flowpaper_tbseparator' />",e):"")+(c.F.config.document.ZoomToolsVisible?String.format("<div class='flowpaper_slider flowpaper_zoomSlider' style='{0}'><div class='flowpaper_handle' style='{0}'></div></div>",eb.browser.msie&&9>eb.browser.version?c.Xl:"")+String.format("<input type='text' class='flowpaper_tbtextinput flowpaper_txtZoomFactor' style='width:40px;' />")+String.format("<img class='flowpaper_tbbutton flowpaper_bttnFullScreen' src='{0}' />",c.resources.ma.Em)+String.format("<img src='{0}' class='flowpaper_tbseparator' style='margin-left:5px' />",e):"")+(c.F.config.document.NavToolsVisible?String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_previous flowpaper_bttnPrevPage'/>",c.resources.ma.xm)+String.format("<input type='text' class='flowpaper_tbtextinput flowpaper_currPageNum flowpaper_txtPageNumber' value='1' style='width:50px;text-align:right;' />")+String.format("<div class='flowpaper_tblabel flowpaper_numberOfPages flowpaper_lblTotalPages'> / </div>")+String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_next flowpaper_bttnPrevNext'/>",c.resources.ma.ym)+String.format("<img src='{0}' class='flowpaper_tbseparator' />",e):"")+(c.F.config.document.CursorToolsVisible?String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_bttnTextSelect'/>",c.resources.ma.Tm)+String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_tbbutton_pressed flowpaper_bttnHand'/>",c.resources.ma.Gm)+String.format("<img src='{0}' class='flowpaper_tbseparator' />",e):"")+(c.F.config.document.SearchToolsVisible?String.format("<input type='text' class='flowpaper_tbtextinput flowpaper_txtSearch' style='width:70px;margin-left:4px' />")+String.format("<img src='{0}' class='flowpaper_find flowpaper_tbbutton flowpaper_bttnFind' />",c.resources.ma.Dm)+String.format("<img src='{0}' class='flowpaper_tbseparator' />",e):"")+g);jQuery(c.K).addClass("flowpaper_toolbarstd");}jQuery(c.L).bind("onDocumentLoaded",function(){jQuery(c.K).find(".flowpaper_bttnPercent").hide();});};this.kl=function(c){c=this.La=c.split("\n");jQuery(this.K).find(".flowpaper_bttnPrint").attr("title",this.ka(c,"Print"));jQuery(this.K).find(".flowpaper_bttnSinglePage").attr("title",this.ka(c,"SinglePage"));jQuery(this.K).find(".flowpaper_bttnTwoPage, .flowpaper_bttnBookView").attr("title",this.ka(c,"TwoPage"));jQuery(this.K).find(".flowpaper_bttnThumbView").attr("title",this.ka(c,"ThumbView"));jQuery(this.K).find(".flowpaper_bttnFitWidth").attr("title",this.ka(c,"FitWidth"));jQuery(this.K).find(".flowpaper_bttnFitHeight").attr("title",this.ka(c,"FitHeight"));jQuery(this.K).find(".flowpaper_bttnFitHeight").attr("title",this.ka(c,"FitPage"));jQuery(this.K).find(".flowpaper_zoomSlider").attr("title",this.ka(c,"Scale"));jQuery(this.K).find(".flowpaper_txtZoomFactor").attr("title",this.ka(c,"Scale"));jQuery(this.K).find(".flowpaper_bttnFullScreen, .flowpaper_bttnFullscreen").attr("title",this.ka(c,"Fullscreen"));jQuery(this.K).find(".flowpaper_bttnPrevPage").attr("title",this.ka(c,"PreviousPage"));jQuery(this.K).find(".flowpaper_txtPageNumber").attr("title",this.ka(c,"CurrentPage"));jQuery(this.K).find(".flowpaper_bttnPrevNext").attr("title",this.ka(c,"NextPage"));jQuery(this.K).find(".flowpaper_bttnDownload").attr("title",this.ka(c,"Download"));jQuery(this.K).find(".flowpaper_txtSearch, .flowpaper_bttnTextSearch").attr("title",this.ka(c,"Search"));jQuery(this.K).find(".flowpaper_bttnFind").attr("title",this.ka(c,"Search"));var e=this.F.Uj&&0<this.F.Uj.length?this.F.Uj:this.F.N;e.find(".flowpaper_bttnHighlight").find(".flowpaper_tbtextbutton").html(this.ka(c,"Highlight","Highlight"));e.find(".flowpaper_bttnComment").find(".flowpaper_tbtextbutton").html(this.ka(c,"Comment","Comment"));e.find(".flowpaper_bttnStrikeout").find(".flowpaper_tbtextbutton").html(this.ka(c,"Strikeout","Strikeout"));e.find(".flowpaper_bttnDraw").find(".flowpaper_tbtextbutton").html(this.ka(c,"Draw","Draw"));e.find(".flowpaper_bttnDelete").find(".flowpaper_tbtextbutton").html(this.ka(c,"Delete","Delete"));e.find(".flowpaper_bttnShowHide").find(".flowpaper_tbtextbutton").html(this.ka(c,"ShowAnnotations","Show Annotations"));};this.ka=function(c,e,g){if(c){for(var h=0;h<c.length;h++){var f=c[h].split("=");if(f[0]==e){return f[1];}}}return g?g:null;};this.bindEvents=function(){var c=this;jQuery(c.K).find(".flowpaper_tbbutton_large, .flowpaper_tbbutton").each(function(){jQuery(this).data("minscreenwidth")&&parseInt(jQuery(this).data("minscreenwidth"))>window.innerWidth&&jQuery(this).hide();});if(0==c.F.N.find(".flowpaper_printdialog").length){var e=c.ka(c.La,"Enterpagenumbers","Enter page numbers and/or page ranges separated by commas. For example 1,3,5-12");c.F.cc?c.F.N.prepend("<div id='modal-print' class='modal-content flowpaper_printdialog' style='overflow:hidden;;'><div style='background-color:#fff;color:#000;padding:10px 10px 10px 10px;height:205px;padding-bottom:20px;'>It's not possible to print from within the Desktop Publisher. <br/><br/>You can try this feature by clicking on 'Publish' and then 'View in Browser'.<br/><br/><a class='flowpaper_printdialog_button' id='"+c.gi+"'>OK</a></div></div>"):c.F.N.prepend("<div id='modal-print' class='modal-content flowpaper_printdialog' style='overflow:hidden;'><font style='color:#000000;font-size:11px'><b>"+c.ka(c.La,"Selectprintrange","Select print range")+"</b></font><div style='width:98%;padding-top:5px;padding-left:5px;background-color:#ffffff;'><table border='0' style='margin-bottom:10px;'><tr><td><input type='radio' name='PrintRange' checked='checked' id='"+c.nk+"'/></td><td>"+c.ka(c.La,"All","All")+"</td></tr><tr><td><input type='radio' name='PrintRange' id='"+c.pk+"'/></td><td>"+c.ka(c.La,"CurrentPage","Current Page")+"</td></tr><tr><td><input type='radio' name='PrintRange' id='"+c.qk+"'/></td><td>"+c.ka(c.La,"Pages","Pages")+"</td><td><input type='text' style='width:120px' id='"+c.di+"' /><td></tr><tr><td colspan='3'>"+e+"</td></tr></table><a id='"+c.rk+"' class='flowpaper_printdialog_button'>"+c.ka(c.La,"Print","Print")+"</a>&nbsp;&nbsp;<a class='flowpaper_printdialog_button' id='"+c.gi+"'>"+c.ka(c.La,"Cancel","Cancel")+"</a><span id='"+c.hl+"' style='padding-left:5px;'></span><div style='height:5px;display:block;margin-top:5px;'>&nbsp;</div></div></div>");}jQuery("input:radio[name=PrintRange]:nth(0)").attr("checked",!0);c.F.config.Toolbar?(jQuery(c.K).find(".flowpaper_txtZoomFactor").bind("click touchstart",function(){if(!jQuery(this).hasClass("flowpaper_tbbutton_disabled")){return !1;}}),jQuery(c.K).find(".flowpaper_currPageNum").bind("click touchstart",function(){jQuery(c.K).find(".flowpaper_currPageNum").focus();}),jQuery(c.K).find(".flowpaper_txtSearch").bind("click touchstart",function(){jQuery(c.K).find(".flowpaper_txtSearch").focus();return !1;}),jQuery(c.K).find(".flowpaper_bttnFind").bind("click touchstart",function(){c.searchText(jQuery(c.K).find(".flowpaper_txtSearch").val());jQuery(c.K).find(".flowpaper_bttnFind").focus();return !1;})):(jQuery(c.K).find(".flowpaper_bttnFitWidth").bind("click touchstart",function(){jQuery(this).hasClass("flowpaper_tbbutton_disabled")||(c.F.fitwidth(),jQuery("#toolbar").trigger("onFitModeChanged","Fit Width"));}),jQuery(c.K).find(".flowpaper_bttnFitHeight").bind("click touchstart",function(){jQuery(this).hasClass("flowpaper_tbbutton_disabled")||(c.F.fitheight(),jQuery("#toolbar").trigger("onFitModeChanged","Fit Height"));}),jQuery(c.K).find(".flowpaper_bttnTwoPage").bind("click touchstart",function(){jQuery(this).hasClass("flowpaper_tbbutton_disabled")||("BookView"==c.F.yb?c.F.switchMode("BookView"):c.F.switchMode("TwoPage"));}),jQuery(c.K).find(".flowpaper_bttnSinglePage").bind("click touchstart",function(){c.F.config.document.TouchInitViewMode&&"SinglePage"!=!c.F.config.document.TouchInitViewMode||!eb.platform.touchonlydevice?c.F.switchMode("Portrait",c.F.getCurrPage()-1):c.F.switchMode("SinglePage",c.F.getCurrPage());}),jQuery(c.K).find(".flowpaper_bttnThumbView").bind("click touchstart",function(){c.F.switchMode("Tile");}),jQuery(c.K).find(".flowpaper_bttnPrint").bind("click touchstart",function(){eb.platform.touchonlydevice?c.F.printPaper("current"):(jQuery("#modal-print").css("background-color","#dedede"),c.F.jj=jQuery("#modal-print").smodal({minHeight:255,appendTo:c.F.N}),jQuery("#modal-print").parent().css("background-color","#dedede"));}),jQuery(c.K).find(".flowpaper_bttnDownload").bind("click touchstart",function(){if(window.zine){var e=FLOWPAPER.Jj(c.document.PDFFile,c.F.getCurrPage());FLOWPAPER.authenticated&&(e=FLOWPAPER.appendUrlParameter(e,FLOWPAPER.authenticated.getParams()));var h=[],f=e.split("?")[0];h.push({download:f,filename:f.split("/").pop()});0<c.document.PDFFile.indexOf("[*,")&&-1==c.document.PDFFile.indexOf("[*,2,true]")&&1<c.F.getTotalPages()&&1<c.F.getCurrPage()&&(e=FLOWPAPER.Jj(c.document.PDFFile,c.F.getCurrPage()-1),f=e.split("?")[0],h.push({download:f,filename:f.split("/").pop()}));ia(h);jQuery(c.F).trigger("onDownloadDocument",e);}else{e=FLOWPAPER.Jj(c.document.PDFFile,c.F.getCurrPage()),FLOWPAPER.authenticated&&(e=FLOWPAPER.appendUrlParameter(e,FLOWPAPER.authenticated.getParams())),window.open(e,"windowname4",null);}return !1;}),jQuery(c.K).find(".flowpaper_bttnOutline").bind("click touchstart",function(){c.F.expandOutline();}),jQuery(c.K).find(".flowpaper_bttnPrevPage").bind("click touchstart",function(){c.F.previous();return !1;}),jQuery(c.K).find(".flowpaper_bttnPrevNext").bind("click touchstart",function(){c.F.next();return !1;}),jQuery(c.K).find(".flowpaper_bttnZoomIn").bind("click touchstart",function(){"TwoPage"==c.F.H||"BookView"==c.F.H?c.F.pages.te():"Portrait"!=c.F.H&&"SinglePage"!=c.F.H||c.F.ZoomIn();}),jQuery(c.K).find(".flowpaper_bttnZoomOut").bind("click touchstart",function(){"TwoPage"==c.F.H||"BookView"==c.F.H?c.F.pages.qd():"Portrait"!=c.F.H&&"SinglePage"!=c.F.H||c.F.ZoomOut();}),jQuery(c.K).find(".flowpaper_txtZoomFactor").bind("click touchstart",function(){if(!jQuery(this).hasClass("flowpaper_tbbutton_disabled")){return jQuery(c.K).find(".flowpaper_txtZoomFactor").focus(),!1;}}),jQuery(c.K).find(".flowpaper_currPageNum").bind("click touchstart",function(){jQuery(c.K).find(".flowpaper_currPageNum").focus();}),jQuery(c.K).find(".flowpaper_txtSearch").bind("click touchstart",function(){jQuery(c.K).find(".flowpaper_txtSearch").focus();return !1;}),jQuery(c.K).find(".flowpaper_bttnFullScreen, .flowpaper_bttnFullscreen").bind("click touchstart",function(){c.F.openFullScreen();}),jQuery(c.K).find(".flowpaper_bttnFind").bind("click touchstart",function(){c.searchText(jQuery(c.K).find(".flowpaper_txtSearch").val());jQuery(c.K).find(".flowpaper_bttnFind").focus();return !1;}),jQuery(c.K).find(".flowpaper_bttnTextSelect").bind("click touchstart",function(){c.F.Ee="flowpaper_selected_default";jQuery(c.K).find(".flowpaper_bttnTextSelect").addClass("flowpaper_tbbutton_pressed");jQuery(c.K).find(".flowpaper_bttnHand").removeClass("flowpaper_tbbutton_pressed");c.F.setCurrentCursor("TextSelectorCursor");}),jQuery(c.K).find(".flowpaper_bttnHand").bind("click touchstart",function(){jQuery(c.K).find(".flowpaper_bttnHand").addClass("flowpaper_tbbutton_pressed");jQuery(c.K).find(".flowpaper_bttnTextSelect").removeClass("flowpaper_tbbutton_pressed");c.F.setCurrentCursor("ArrowCursor");}),jQuery(c.K).find(".flowpaper_bttnRotate").bind("click touchstart",function(){c.F.rotate();}));jQuery("#"+c.di).bind("keydown",function(){jQuery(this).focus();});jQuery(c.K).find(".flowpaper_currPageNum, .flowpaper_txtPageNumber").bind("keydown",function(e){if(!jQuery(this).hasClass("flowpaper_tbbutton_disabled")){if("13"!=e.keyCode){return;}c.gotoPage(this);}return !1;});c.F.N.find(".flowpaper_txtSearch").bind("keydown",function(e){if("13"==e.keyCode){return c.searchText(c.F.N.find(".flowpaper_txtSearch").val()),!1;}});jQuery(c.K).bind("onZoomFactorChanged",function(e,h){var f=Math.round(h.Hf/c.F.document.MaxZoomSize*100*c.F.document.MaxZoomSize)+"%";jQuery(c.K).find(".flowpaper_txtZoomFactor").val(f);c.Hf!=h.Hf&&(c.Hf=h.Hf,jQuery(c.F).trigger("onScaleChanged",h.Hf));});jQuery(c.L).bind("onDocumentLoaded",function(e,h){2>h?jQuery(c.K).find(".flowpaper_bttnTwoPage").addClass("flowpaper_tbbutton_disabled"):jQuery(c.K).find(".flowpaper_bttnTwoPage").removeClass("flowpaper_tbbutton_disabled");});jQuery(c.K).bind("onCursorChanged",function(e,h){"TextSelectorCursor"==h&&(jQuery(c.K).find(".flowpaper_bttnTextSelect").addClass("flowpaper_tbbutton_pressed"),jQuery(c.K).find(".flowpaper_bttnHand").removeClass("flowpaper_tbbutton_pressed"));"ArrowCursor"==h&&(jQuery(c.K).find(".flowpaper_bttnHand").addClass("flowpaper_tbbutton_pressed"),jQuery(c.K).find(".flowpaper_bttnTextSelect").removeClass("flowpaper_tbbutton_pressed"));});jQuery(c.K).bind("onFitModeChanged",function(e,h){jQuery(".flowpaper_fitmode").each(function(){jQuery(this).removeClass("flowpaper_tbbutton_pressed");});"FitHeight"==h&&jQuery(c.K).find(".flowpaper_bttnFitHeight").addClass("flowpaper_tbbutton_pressed");"FitWidth"==h&&jQuery(c.K).find(".flowpaper_bttnFitWidth").addClass("flowpaper_tbbutton_pressed");});jQuery(c.K).bind("onProgressChanged",function(e,h){jQuery("#lblPercent").html(100*h);1==h&&jQuery(c.K).find(".flowpaper_bttnPercent").hide();});jQuery(c.K).bind("onViewModeChanged",function(e,h){jQuery(c.L).trigger("onViewModeChanged",h);jQuery(".flowpaper_viewmode").each(function(){jQuery(this).removeClass("flowpaper_tbbutton_pressed");});if("Portrait"==c.F.H||"SinglePage"==c.F.H){jQuery(c.K).find(".flowpaper_bttnSinglePage").addClass("flowpaper_tbbutton_pressed"),jQuery(c.K).find(".flowpaper_bttnFitWidth").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnFitHeight").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnPrevPage").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnPrevNext").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnTextSelect").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_zoomSlider").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_txtZoomFactor").removeClass("flowpaper_tbbutton_disabled"),c.F.toolbar&&c.F.toolbar.Cc&&c.F.toolbar.Cc.enable();}if("TwoPage"==c.F.H||"BookView"==c.F.H||"FlipView"==c.F.H){jQuery(c.K).find(".flowpaper_bttnBookView").addClass("flowpaper_tbbutton_pressed"),jQuery(c.K).find(".flowpaper_bttnTwoPage").addClass("flowpaper_tbbutton_pressed"),jQuery(c.K).find(".flowpaper_bttnFitWidth").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnFitHeight").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnPrevPage").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnPrevNext").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnTextSelect").removeClass("flowpaper_tbbutton_disabled"),eb.platform.touchdevice&&(jQuery(c.K).find(".flowpaper_zoomSlider").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_txtZoomFactor").addClass("flowpaper_tbbutton_disabled"),c.F.toolbar.Cc&&c.F.toolbar.Cc.disable()),eb.platform.touchdevice||eb.browser.msie||(jQuery(c.K).find(".flowpaper_zoomSlider").removeClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_txtZoomFactor").removeClass("flowpaper_tbbutton_disabled"),c.F.toolbar.Cc&&c.F.toolbar.Cc.enable());}"ThumbView"==c.F.H&&(jQuery(c.K).find(".flowpaper_bttnThumbView").addClass("flowpaper_tbbutton_pressed"),jQuery(c.K).find(".flowpaper_bttnFitWidth").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnFitHeight").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnPrevPage").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnPrevNext").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_bttnTextSelect").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_zoomSlider").addClass("flowpaper_tbbutton_disabled"),jQuery(c.K).find(".flowpaper_txtZoomFactor").addClass("flowpaper_tbbutton_disabled"),c.F.toolbar&&c.F.toolbar.Cc&&c.F.toolbar.Cc.disable());});jQuery(c.K).bind("onFullscreenChanged",function(e,h){h?jQuery(c.K).find(".flowpaper_bttnFullscreen").addClass("flowpaper_tbbutton_disabled"):jQuery(c.K).find(".flowpaper_bttnFullscreen").removeClass("flowpaper_tbbutton_disabled");});jQuery(c.K).bind("onScaleChanged",function(e,h){jQuery(c.L).trigger("onScaleChanged",h);c.Cc&&c.Cc.setValue(h,!0);});jQuery("#"+c.gi).bind("click touchstart",function(e){jQuery.smodal.close();e.stopImmediatePropagation();c.F.jj=null;return !1;});jQuery("#"+c.rk).bind("click touchstart",function(){var e="";jQuery("#"+c.nk).is(":checked")&&(c.F.printPaper("all"),e="1-"+c.F.renderer.getNumPages());jQuery("#"+c.pk).is(":checked")&&(c.F.printPaper("current"),e=jQuery(c.K).find(".flowpaper_txtPageNumber").val());jQuery("#"+c.qk).is(":checked")&&(e=jQuery("#"+c.di).val(),c.F.printPaper(e));jQuery(this).html("Please wait");window.onPrintRenderingProgress=function(e){jQuery("#"+c.hl).html("Processing page:"+e);};window.onPrintRenderingCompleted=function(){jQuery.smodal.close();c.F.jj=null;c.L.trigger("onDocumentPrinted",e);};return !1;});c.fq();};this.hk=function(c,e){var g=this;if(0!=jQuery(g.K).find(".flowpaper_zoomSlider").length&&null==g.Cc){g=this;this.Vf=c;this.Uf=e;if(window.zine){var h={Ke:0,Vb:g.F.L.width()/2,rc:g.F.L.height()/2};g.Cc=new Slider(jQuery(g.K).find(".flowpaper_zoomSlider").get(0),{callback:function(c){c*g.F.document.MaxZoomSize>=g.F.document.MinZoomSize&&c<=g.F.document.MaxZoomSize?g.F.ib(g.F.document.MaxZoomSize*c,h):c*g.F.document.MaxZoomSize<g.F.document.MinZoomSize?g.F.ib(g.F.document.MinZoomSize,h):c>g.F.document.MaxZoomSize&&g.F.ib(g.F.document.MaxZoomSize,h);},animation_callback:function(c){c*g.F.document.MaxZoomSize>=g.F.document.MinZoomSize&&c<=g.F.document.MaxZoomSize?g.F.ib(g.F.document.MaxZoomSize*c,h):c*g.F.document.MaxZoomSize<g.F.document.MinZoomSize?g.F.ib(g.F.document.MinZoomSize,h):c>g.F.document.MaxZoomSize&&g.F.ib(g.F.document.MaxZoomSize,h);},snapping:!1});}else{jQuery(g.K).find(".flowpaper_zoomSlider > *").bind("mousedown",function(){jQuery(g.K).find(".flowpaper_bttnFitWidth").removeClass("flowpaper_tbbutton_pressed");jQuery(g.K).find(".flowpaper_bttnFitHeight").removeClass("flowpaper_tbbutton_pressed");}),g.Cc=new Slider(jQuery(g.K).find(".flowpaper_zoomSlider").get(0),{callback:function(c){jQuery(g.K).find(".flowpaper_bttnFitWidth, .flowpaper_bttnFitHeight").hasClass("flowpaper_tbbutton_pressed")&&"up"===g.F.Ah||(c*g.F.document.MaxZoomSize>=g.Vf&&c<=g.Uf?g.F.ib(g.F.document.MaxZoomSize*c):c*g.F.document.MaxZoomSize<g.Vf?g.F.ib(g.Vf):c>g.Uf&&g.F.ib(g.Uf));},animation_callback:function(c){jQuery(g.K).find(".flowpaper_bttnFitWidth, .flowpaper_bttnFitHeight").hasClass("flowpaper_tbbutton_pressed")&&"up"===g.F.Ah||(c*g.F.document.MaxZoomSize>=g.Vf&&c<=g.Uf?g.F.ib(g.F.document.MaxZoomSize*c):c*g.F.document.MaxZoomSize<g.Vf?g.F.ib(g.Vf):c>g.Uf&&g.F.ib(g.Uf));},snapping:!1});}jQuery(g.K).find(".flowpaper_txtZoomFactor").bind("keypress",function(c){if(!jQuery(this).hasClass("flowpaper_tbbutton_disabled")&&13==c.keyCode){try{var d={Ke:0,Vb:g.F.L.width()/2,rc:g.F.L.height()/2},e=jQuery(g.K).find(".flowpaper_txtZoomFactor").val().replace("%","")/100;g.F.Zoom(e,d);}catch(h){}return !1;}});}};this.gq=function(c){jQuery(c).val()>this.document.numPages&&jQuery(c).val(this.document.numPages);(1>jQuery(c).val()||isNaN(jQuery(c).val()))&&jQuery(c).val(1);};this.cq=function(c){this.document.RTLMode?(c=this.O.getTotalPages()-c+1,1>c&&(c=1),"TwoPage"==this.F.H?"1"==c?jQuery(this.K).find(".flowpaper_txtPageNumber").val("1-2"):parseInt(c)<=this.document.numPages&&0==this.document.numPages%2||parseInt(c)<this.document.numPages&&0!=this.document.numPages%2?jQuery(this.K).find(".flowpaper_txtPageNumber").val(c+1+"-"+c):jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.document.numPages):"BookView"==this.F.H||"FlipView"==this.F.H?"1"!=c||eb.platform.iphone?!(parseInt(c)+1<=this.document.numPages)||this.F.I&&this.F.I.ta?jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.Bd(c,c)):(0!=parseInt(c)%2&&1<parseInt(c)&&--c,jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.Bd(c,1<parseInt(c)?c+1+"-"+c:c))):jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.Bd(1,"1")):"0"!=c&&jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.Bd(c,c))):"TwoPage"==this.F.H?"1"==c?jQuery(this.K).find(".flowpaper_txtPageNumber").val("1-2"):parseInt(c)<=this.document.numPages&&0==this.document.numPages%2||parseInt(c)<this.document.numPages&&0!=this.document.numPages%2?jQuery(this.K).find(".flowpaper_txtPageNumber").val(c+"-"+(c+1)):jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.document.numPages):"BookView"==this.F.H||"FlipView"==this.F.H?"1"!=c||eb.platform.iphone?!(parseInt(c)+1<=this.document.numPages)||this.F.I&&this.F.I.ta?jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.Bd(c,c)):(0!=parseInt(c)%2&&1<parseInt(c)&&(c=c-1),jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.Bd(c,1<parseInt(c)?c+"-"+(c+1):c))):jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.Bd(1,"1")):"0"!=c&&jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.Bd(c,c));};this.lp=function(c){if(this.F.labels){for(var e=this.F.labels.children(),g=0;g<e.length;g++){if(e[g].getAttribute("title")==c){return parseInt(e[g].getAttribute("pageNumber"));}}}return null;};this.Bd=function(c,e,g){0==c&&(c=1);if(this.F.labels){var h=this.F.labels.children();h.length>parseInt(c)-1&&(e=h[parseInt(c-1)].getAttribute("title"),isNaN(e)?e=na(h[parseInt(c)-1].getAttribute("title")):!("FlipView"==this.F.H&&1<parseInt(e)&&parseInt(e)+1<=this.document.numPages)||this.F.I&&this.F.I.ta||g||(0!=parseInt(e)%2&&(e=parseInt(e)-1),e=e+"-"+(parseInt(e)+1)));}return e;};this.fq=function(){this.tg?jQuery(this.tg.Na).find(".flowpaper_lblTotalPages").html(" / "+this.document.numPages):jQuery(this.K).find(".flowpaper_lblTotalPages").html(" / "+this.document.numPages);};this.gotoPage=function(c){var e=this.lp(jQuery(c).val());e?this.F.gotoPage(e):0<=jQuery(c).val().indexOf("-")&&"TwoPage"==this.F.H?(c=jQuery(c).val().split("-"),isNaN(c[0])||isNaN(c[1])||(0==parseInt(c[0])%2?this.F.gotoPage(parseInt(c[0])-1):this.F.gotoPage(parseInt(c[0])))):isNaN(jQuery(c).val())||(this.gq(c),this.F.gotoPage(jQuery(c).val()));};this.searchText=function(c){this.F.searchText(c);};}window.addCSSRule=function(f,c,d){for(var e=null,g=0;g<document.styleSheets.length;g++){try{var h=document.styleSheets[g],n=h.cssRules||h.rules,k=f.toLowerCase();if(null!=n){null==e&&(e=document.styleSheets[g]);for(var l=0,m=n.length;l<m;l++){if(n[l].selectorText&&n[l].selectorText.toLowerCase()==k){if(null!=d){n[l].style[c]=d;return;}h.deleteRule?h.deleteRule(l):h.removeRule?h.removeRule(l):n[l].style.cssText="";}}}}catch(p){}}h=e||{};h.insertRule?(n=h.cssRules||h.rules,h.insertRule(f+"{ "+c+":"+d+"; }",n.length)):h.addRule&&h.addRule(f,c+":"+d+";",0);};window.FlowPaperViewer_Zine=function(f,c,d){this.F=c;this.L=d;this.toolbar=f;this.W="FlipView";this.ln=this.toolbar.Ja+"_barPrint";this.nn=this.toolbar.Ja+"_barViewMode";this.kn=this.toolbar.Ja+"_barNavTools";this.jn=this.toolbar.Ja+"_barCursorTools";this.mn=this.toolbar.Ja+"_barSearchTools";this.rn=this.toolbar.Ja+"_bttnMoreTools";this.ea="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7";this.ei="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgchEmOlRoEAAAFUSURBVDjLrZS9SgNREIW/m531JyGbQFAQJE+w4EuYWvQd7C0sAjYpfQcfwsJSXyJgbZFKEhTUuIZkd8Yimx/Dboyytzz345yZuZdxF2x0SpthiBbsZ3/gXnofuYBXbjZSrtevHeRycfQ0bIIo76+HlZ08zDSoPgcBYgz2Ai/t+mYZOQfAbXnJoIoYVFzmcGaiq0SGKL6XPcO56vmKGNgvnGFTztZzTDlNsltdyGqIEec88UKODdEfATm5irBJLoihClTaIaerfrc8Xn/O60OBdgjKyapn2L6a95soEJJdZ6hAYkjMyE+1u6wqv4BRXPB/to25onP/43e8evmw5Jd+vm6Oz1Q3ExAHdDpHOO6XkRbQ7ThAQIxdczC8zDBrpallw53h9731PST7E0pmWsetoRx1NRNjUi6/jfL3i1+zCASI/MZ2LqeTaDKb33hc2J4sep9+A+KGjvNJJ1I+AAAAAElFTkSuQmCC";this.fi="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGggFBG3FVUsAAAFTSURBVDjLrZQxSwNBEIXfbuaSUxKUNDYKRmJhZXMIgv/FIm0K/0kau/wdqxQeaGEQksJW0CJ4SC6ZZ5G9eIZbc8pdOfftm/d2ljE3KPXZchhEK9bjH7jX+8TfsH7addzLRA683HI+ZhcQxdukUQ+8nIbhdL8NIR6D0DqXd3niCgBgxOr4EkKwYQrDZEXTmBGiqBVjaw6mpqu8xXet+SPC3EGPnuO4lSMhhHpG/F1WQrRMX4UA3KpHwJJKks1hHG8YJeN42CRJJbO8gwggzjc1o0HvZ94IxT4jurwLpDVXeyhymQJIFxW/Z5bmqu77H72zzZ9POT03rJFHZ+RGKG4l9G8v8gKZ/KjvloYQO0sAs+sCscxISAhw8my8DlddO4Alw441vyQ1ONwlhUjbremHf7/I0V4CCIAkOG6teyxSAlYCAAgMkHyaJLu/Od6r2pNV79MvlFCWQTKpHw8AAAAASUVORK5CYII%3D";this.Zh="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgcmKZ3vOWIAAAG3SURBVDjLrZS9bhNBFIW/uzOLwVacSIYCCUVCyivwAkgGJ31cpMwT8A6UlKnSpKTgARBPkCK8QZCIlAqRBPGXxbF37qFYO8aWNk6QVyvNnNlP52juzlx7xa2e7HYY0ZfspztwF6e/aoHQXO+MudOvq49rubL4/HsdovPz25PW/TpM3l750m4Txdmjdqjftd0L6WyFKGjZjcWxViGikwcHE/0eMmHsHiBMxod3mCDkTiYhdyXf7h0PDYDK3YbHvW1PchfSmEve3zzfvwQz8Gq43D/f7Hu65jyllHa2OLpqgASpGhpXR2ztpJSSS1GUDrvPP318nyJYlWtAvHj7/Vk3HEApMnfcvXuydxg3AkjIhQRhIx7unXTdHfcInoCnb/IMZIAlA1B4jY8iCRyicAeFMC3YtJpZAzm4iKrWZTI0w8mQqfpKFGn+b/i8SiKWDPI57s+8GpRLPs+acPbPO9XYWOuuuZN000SZZnKv/QyrMmxm9p/7WMxBNHg5cyFezCiIEMUD2QK3psjg4aJW5B3IJF/jJkNjrTr3o2bzx6C+v+SrKiACRd5p1IeOitGkfsPh0vrksvvpX4Z15Dxt627DAAAAAElFTkSuQmCC";this.Qg="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGggfBarvnwYAAAG+SURBVDjLrZQ/axRRFMV/9+2bnUkgKGlsFIxEECWfwMaPIJhqk0+QbUxlkyqdrWBrp/gZ0sTGVgJptkkKmyASLRaHdWf2Hou3f9yVzSaylwf33XmHe+47vDn2kmtFuB6M6Evupxvgvn8p5xM2H24OcV/P4p25uEG/o02Izo+zvJnNxXlRnN9eJ0inWRE1NywWqx0pCuV25WUs74roNEwQnHYLD8J4+hlhHvjwluBgDSdI4E7te62TXlIzSR96J609r3EHKUhIGqi9c3HYBTNQSt3Di522BpISTpK0v8txvwAJlFLRP2Z3f3gehTu8en766f2gCZZ4DWh+e3P57EXjNbgI7kja7hwc5VsR0hhIELfyo4POtiTcI8iBRx/zADLA3ADUeIf/znAQROECxTgRbKJmWEECFzHNjUw2AoySIVM6JaZZpkKzlUSsqRozuGq2quolv2eNcPbXmtTYsNZNeUfs6SVqvBvzjvsZljhsavef91iMS5bwZOrz439NI0grC9sVUoAHi6i1AUEqNoJd9Vtyd1WKolpfO/8131/ivVslRKDM7q+NOepKEGIGkBmUPStH+vX5uSyfXLaf/gE6n/uTJg/UHAAAAABJRU5ErkJggg%3D%3D";this.Wg="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgcnEaz2sL0AAAGlSURBVDjLrZRNjtNAEIW/ssvDkGgyIwUWSGhWHIEj8Cf2bDgFV+AMLGHBCgmJA3ABdpyBkWaFmAHxGyLHrsfC7dgmsQhSvLG763O/qtddbU/Y6cl2w/DY83r6D+7z+Y9RIJ+czhN3/un4xihXLT78PAUPvn+5OT0cwxSzo4+zGS4urs/y8artIK8vjnDB1BrsBZaqMr190w2mC+FB0a5mIgXLswf2eg3mRZBJKJpHhgkz49fzy/uPom7nkfockkASB+V7e/g4epyLqLukaaSKy1dfb9+xl2k6RCZV7X+gBrP8lr97dna3DVSSB3SmmExgkT+1KIsuEDh93eQtQHbYBQJcRPQI9d4WXX6uTnftX+OPOl3hou7nN/hqA7XwimWxsfkYgH6n8bIanGe1NZhpDW87z4YhawgbCgw4WapUqZCOG/aREia03pzUbxoKN3qG0ZeWtval7diXsg2jtnK2aaiD21++oJRnG3BwcbWVuTfWmxORwbV/XUUxh0yKk20F9pI9CcnFajL5thy/X4pjLcCBRTG/Mi66Wqxa/8pyb/fkvu/TP0a/9eMEsgteAAAAAElFTkSuQmCC";this.hi="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGggfGb7uw0kAAAGtSURBVDjLrZS/bhNBEIe/Wc/5DksRKA0NSASFBvEQvAM0IJ4gFfRUtJSJ0tHyEFQU1DQ0bpKCBgkEFBEny2fvj+LW98f2gSN5pdPt7nya2flpZuwlO62wG4bHPfvTNbgfn8vhgOMHx4n7euG3B7nlfKpj8Mivi3ycDXKxKC5vHRKkL1nhGlzmxWQquVBudTKfSBsFvT8nJMksvxIeGSUrpvrDZtPndrZswFEkSBDrJcOEmXH15tuzk7hI9yAFidVTkASSyOcf7cUrdQwu1Ept1Pv8++nPx0/C23QtEaQYO/5r3B+NP7yePm0skkfo+JMJLI7eWZyNW0PEQeslI4AwIcb2wkVUh1Dnv9KLKFxt3FY/TJjauGItX/V2avP1BdWIjQcagKp0rha9em5cmKmBt9WzYchqwvoBepwsZaqUSMv1+0gJE6KbH3W9dALX8QyjG1ra2pe2Y1/KNoTaytmmoN4dCUkXtKZLABc3lun4cKg3CxHg/v9Gh44gSMVRsH9Qxp2J5KI6PLj8Mzxf/O7NEhwos3sHTYxFJQieAWQG5czKlX5zfu9rTu57nv4FFIsPySkiwzoAAAAASUVORK5CYII%3D";this.Xg="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgcoGry8dfoAAAFASURBVDjLrZRNSgNBEEZfJzUqCZkERhdCCB7GC+jCrXgDb+QRvIBnEQkuxKAQI2NIeqpcTCI9Mp3JQHrzaPj6q5/uLnfPXquznwzRA/tZC93HdBEVdHuTbKObvg/PozqfP39PQJSvz3H/JCYzTQdvaYoYs7O0G6/aHXWL2QAx6LudzXH93BAlKd0eALiroiwlUcTAAjutgWGlbtNDj6D/sVGKoUWQTFEHNcTw21NSRqoCwBuif7tofqC4W16HTZc7HyOGlqceAbiqIsxvj7iGGMV2F+1LYYhnmQR+P3VYeiR8i3Vo9Z4Nd8PLoEm2uAjcnwC4rKJ13PBfel+Dln6hLt4XQ0Bc+BnqIOCumeMaorqUDpw2jSLNoGOmo52GjpGaibHu9ebL+HxJhpaXVeVJdhwPus7X2/6tVgebk4eep79dEZnAuEZ32QAAAABJRU5ErkJggg%3D%3D";this.ii="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgggAxtSEA8AAAE0SURBVDjLrZQxT8MwEIW/uJc2VKpAXVhAoqgMbLDyq/iVjAiJgS7twIoEAyJCTerHYNokyGlTVC+fJT/fuzvZl9zTabluMswfOJ720L095u2G/avpr+51bqetutVypimY530+6KetOp9li5MxTnpOM1PrSiwbziQTGiRbi0kGn8I8vSB7AOCuiSDs+VBvrdc+BoQJ1q4lhv6i0qmenaIQJvw6ugWnJgC8MF/5tsbDY6Bw65YINnITPtx6AuCmicpXXXyb9bb2RcJKil4tXhFFidXfYgx7vWfVdNcxVLrN/iWcN7G3b/1flmUE/65jW1+E6zISHJg4Wu3qSyYcXO5KURNwUjZxybZvydlQMlGMR4uv9tzs/DgPVeXpxWjjURYCZylAmkD+neTr/i35ONScPPQ8/QFgdrQzzjNS3QAAAABJRU5ErkJggg%3D%3D";this.Yg="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAQAAAAmqpm+AAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfdBRUTLyj0mgAyAAAC8ElEQVRIx83Wz2ucZRAH8M+72c2mu91NmibFSEgaGy1SrRdFFFIJ9uDBk6KCN6EHD0qLB8GDFwXrQUEK7UnQP0DwUD23RVS8WG2EKrShDSpNYhLaNJtNNvs+HnbzY7fvLmmo2BneyzPzft+Z9zvPzEQngnsoKfdU0rH7Obrw38DNmbK4A4AOOUP2NsJNmdFtYAdwa0om3Ta0ScUt8wbldd01WBArKrihqLge3ax+RR12wnKkU4eqWYXNZPMiOy+ZSF5JWE82kxhZSqfH7Ddg0YwJ01bbEJIRb0YX7oDLOuo5nZg34HFHXXHeby3/Ye3ZgAtNX3vTiAVfm1SWlnPEU4ad800bWupwsWqT6W0j/vC52KCqorIv/eC4cVdbRBgLSAXBmrhBn/GwaaeMeNaoT72oYtjvPpPxsnSTd03XBEEqFtNgyHgSpzyCX2TRbcpVscvO2ufRRLgaRko92U1NO+hn01ZVZC3h9obtopKxBu91jTcvWdzAa0HkV3s8pMuKI9jtBbuUfWvOPw4lVmi8ldmtDg/gusixDcZGjYKzyspN3gnMVhscFgT9/vajPUqWjPlOTt6CuN4gk+CqNbg1lGW2GK6JjDrvKxNirxtTdFwa9Or1p+UEuLK15G5cNul5ObFRrCCug3FYr3PtmnvzfWDZBWlvmbRbpIeN5ljwGr5veSuC6NXANYUGQ94HBl1wpuG0x0f6RGa9o3wH2KL9rUbPktNWjHvfkF2ysorGndGPoM/Hulu1qlcC15uigwe94QmRvyzggC6RgEgQuewTt5qiG24HR9ZBTzskI+WGn8x5F0GEYMKHCXBtBuOKSy41nLznpKjefw8nlnECs63lipOW6y+uJDKbgrRom3rRaRWR4IsmS60yo5cCN6knsR0pKCqbb8gqiGqDEfrM6Ng23GLCthDbp7L+72I9dxVf81ikRywINWYrcnJuJtT6dnaUjG5BqdY+a4clGXtldwAXqyipNG9Qq22G8v+2Lt7f2+e/O1kvzGyGcjEAAAAASUVORK5CYII%3D";this.ji="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAQAAAAmqpm+AAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfdBRUTOjTXLrppAAAC50lEQVRIx83WT2hcVRTH8c+bvMnMxMSkKU2Fqv1DhQ7aItJWRZEgiAUrKqJuXAZRN2ahRRfd+A+6EtFFF4roTrC4K0pBFDQRIsVakSht1FoUUtoG2oyTTPKui3kmmcmbIQ4Vcu/unvu+75z7O/fcE40G13DkXNMRJ9azd+H/wV1wUqWj8LrdYmcj7pyzYps7wC2aNymkwDjBJWcVdMt3gEsUFU0ZMIhcEJyWVxQLHcxIrKjHpCDUgw0KIp2LEim4IvwbbFcmLKfoLmXbzPjDuHPm2gC7JCuVbU7nkic9poBpW93tKT/41LdtfAzLuGbfYm8om/axH1Xk9XnE/XY55sO2uFz2Ab+p7HvP+UKvoiGJIw7p9rh9bYXJBUHSNA/Y47zD9jhg2CeeUXOb0w7p9qz8qv31GQS5RELDHwqG8bJbLRpTQL8zTqk56SNb7M30i0RSLwGN/hXc7mt/mjOvxyyuLtm+cdXBFr4tXbKkQYoBkTGb3Ktozn3o9bySqndN+8vezAxNWim7FWd0GVlSbGd6I9/xt2pGHjQlSmjYcFGwxe/GbVBx0QNOGHSdy4KcXAtcnREvoKZrhWFKZLfPHfWdxEsY8rQF0G/Ir2oZuJqF7Gpc9bOH9UqUMYckhbHfJsfbVb+wyvVZx+UdNul6kQFsTC39RnCi5a0IWTg+M+UeLxgXvKrsQbDRB3pxVKk1LstwxeuqHvK2HXqUlAw46JgbEGz2vg2tKssTgQnFVYabjbpT5DeXsEspLWKRIHLKK2aaTnxfOxxFuw27Q7ec87407QiCCMGE0Qxcm4exasJEw8qI90RpudzfukCtdfzkRZX0w2prKdbeCox5zbxI8FZmOxEHlCyuGfiVRw2ouLDqpANi2OGX9EzWMmaaNK0Hun35VhRtl/sPwOZXjBv1LL+zNYP6TJntqEeJ3aQ/7W/i+mJF3jZ9GUEsqKXa58Qr2o58Gk1FVbTULC3l3Twur7d2cX13n/8ANgFb4QoS+/QAAAAASUVORK5CYII%3D";this.Zg="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAQAAAAmqpm+AAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfdBRUTMCbeeCOrAAAC4ElEQVRIx83Wz2tcVRQH8M+bzGTixJmkaSNGSmpqtUi1LlREQSXYrRtFXIrgogtFV4ILV11UwYUU6krQP0BwUV23Xai4abQRqlCDDVqa1CS00cmbzMy7LuZHZqZvxnao2Ht4MLxz5vu+937PPedE7wS3cWXc1pVN3Mnswn8Dt2bZ5hAAIwpm7e6GW7ZqwswQcDVlS/4yuyPFdev2Gjd2y2BBoqToipJSi91V00pGDKNyZNSIuquKO5sdFxk+ZSLjykJrs7lUZhmjHnG/GZtWLVqxPUCQnGSHXbgBLu+I541i3YxHHXHRGT/1PcPG04YLPV87as6GLy2JZRU850n7nPbVAFmacIl6j+stc37xqcRedSWxz33rbfN+7cMwEZAJgpqky572oBUnzHlG1oQpVfv97GM5L8v2RDesJgitEpB0ndoTOOEh/KCo4rJ1cMEpL3rYQh9+zRKQqHdY1kHnrNhWlbeprNr2LSh7tiu6ZcnOJUu62BVFfrTLfmMqHZxjX1vzp0OpGZp0KtsZcC8uibzRVixq/jolFvdEpyhb7wrYEEy77Du7mrlOomijfTppcPUGXA2xXIfjN5EDzvjCokRO1ai4WWenTPndVgpcrJZejWNLXlCQONBkst0OO2zK6UHFvfc+sOWsrDctuVskkmmfXdGr+KbvrQhpcJy17HGvOddM8UbEpA8VcKxPXQxCeuv520kV89436y55eSXzPjGNYI8PTPQrVa8ELine4LjP6x4T+cMGHjAmEhAJIhd85HpX/KZ9g+DIO+gph+RkXPG9Ne+2szBYdCwFbkBjrDjvfNeb9xxvyhI5nJrGqVL0Wxcdt9X8Y6W/FFnRTdqCk6oiwWc9nmyD9UuBa7Rz699XUUlsvWtXQdRojLDHqpGbhttMmRYS96i2zi4xeUv8etsik5JGNQ6oKii4Jh5qRsmZEJQb5bPxsixnt/wQcImqsmrvBLU9oCn/b+PinT19/gPF4yPjYMxK2QAAAABJRU5ErkJggg%3D%3D";this.ki="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAQAAAAmqpm+AAAAAmJLR0QA/4ePzL8AAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfdBRUUAAI4cucMAAAC30lEQVRIx83WT2hcVRTH8c97eTN5E5M2TWkq+Kd/UGjQFpG2KroorgpWVETducpCV2YhRRdd+Qe6EtFFF4rozkVxVxRBFGoiRIpakfinUWtRSGkbrB2nM5l3XeR1kkzejHGokHM3j3fe+3LOPb977okmgutosetqSWY9Rxf+H9x5p1R7Sq/sdretxJ11RmJrD7imuhkhByYZLjqjX1mpB1wmlZo1bARxEJxWkkqEHlYkkRowIwiLyQb9Ir0XJdLvsnAt2b5CWCx1rzHbzfvNlLOudgH2yZZXtl3OFU96TD/mbHOfp3zjA190iTEs4dpjS7xizJz3fauqZMgjHrTLce92xcXFG/yqMV951icGpUZljjqs7HH7uhYmDoKsbR20xzlH7HEQIwY03Om0w8qeUVr1/eIKwrUWsDzZ1AG84A5NkzJ/qmmCU97ztL1OdlBg3gJWxtfvLif97qq6AU1NCy3f5/5yqENsrUOWrYhuWGTSFg9IW9L40Qaj3jTnD3sLFZp1quw2/KTPeKtiUf70hr/VCnTQJpSw4oMLgpv8asomVRdsRnCDS4JY3AG3yEgW0NC3zDErsttHjvlSJlUXW8h9G436WaMA17BQ3I1rvvewQZkx1GQtGPttcaJb9wurQr/ihJIjZmwQicXKrdjG8XHHUxGKcHxo1v2eM5VLqA42e8cgjql0xhU5LntZzUNet9OAiophhxx3I4Kt3rapU2d5IjAtXeW41YR7RH5xEbtU8iYWCSJfe9F8247v64YjtdsBdyuLnfOpOUdbKgymTRTgulyMNdOmV7wZ91Yu6cj+zg1qrfad51XzH2udS7H2UWDSS+oiwWuF40QSUMkb0FrsM48aVnV+1U4HJLDTD61j/u8231bTxUR3LJ2K1A7xfwC232LcbGDpnm0YMWTWlZ5mlMQtNubzTbL4sqpku6GCJBY08trHkmVjRynPpqomag1LLd3VcWm9jYvre/r8BzXJTgadvkYEAAAAAElFTkSuQmCC";this.Tg="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgcqC+Q6N4oAAAF8SURBVDjLrZRBThRREIa/mq5WmJGBZJgFRjFx4cJ4AY/hhgvIAUyUW8DGtV6AAxjvoSsXJqILI2qiSDOZ6a7fxYOB0N1Om8zbvaov/19VqZQ9o9PrdcPwWLKe/oP7cXTSCmT97dE5d/RtfauVK4uPf7bBg98/7wxW2jDFcO3rcIiL4/Ewa+/abmTV8RouGFjAg6ebdej76w9gg0J4kGcB7K6807Uhhd3ffQFkeeACBTB6v1/X23sUgFDi0gwba0xB4SKqFKqauAoghIsyWKBXCo+5dgOn81zgdPEFF7FQL9XXwVe4qBb2UQkvmeQpctZEnQFMyiXvs65w04b89JKbx8YPM7+2ytW47nu487JB8LCm9+rL3VJQygBkDuaf39b04k3HPswg/Pm9U4DBp4OyN9/M5Ot28cHs8a30uW0mIKUcXKzKLlt80uTaFz3YXHSKYgQ9KTawf1DGRkguZv3+r0n7fcnXVYADRT662W46K2YX85tOl3Ynl31P/wJHQa4shXXBLAAAAABJRU5ErkJggg%3D%3D";this.ai="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgghCwySqXwAAAGGSURBVDjLrZS/ThRRFMZ/d+YMO26yamgWEzdxFRsbqaTlGXgEnoAHwG20puABaC1MfA5jYWJsaBaNjQUJFIQJ2TtzP4sZdgh7B5dkb3XvmV++b86fHLfPUidZDsPCivX0AO7se9FtuPZ6s+H+TG3YyVWzE22CBc6nvbWskwt5fvp0nUT6meWmzuMs759IJtRzgrfvny2K/f3wA1zvUlggdQIm/a+6U6Tg3kx2AZeGOt8AbHyLdPDoXd0GYYKmhNFKquVU312EczUnYSI02iGmFgCCsLCMb8BaoejkhAY2EZp/VUxNN74PzvceTsJKfFpHfIzyAL5c8TzrFjeLfJ+13Dw23ErvTKuvhou+x3ufIoLHC3qHv8deUAYHoMTAZb++LOhVn5fMI3FQZR9fXQIMpgc+bVsvbL4S6o7vPK5fI1HdXhomHrUByu2YbS4SePm/UmsMiZSPE3cP5Xjel0z49cHpVfd+sdGTAgwosheDuUfpBYllAJmD4toVN/WbcbGqPbnqffoPyHTE/GI3wZEAAAAASUVORK5CYII%3D";this.Vg="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgcqK99UF0IAAAGmSURBVDjLrZTNahRREIW/un3bnx4zCYwuBAk+hb2ZbV7BB3AhZlAQRN9EEBGXQQJBfArXvoCLWYnBgEbGIdNdx0WmTd/uGY0wtbunT9epOrfq2lMuFeFyNKJvOJ/+g/dterqWkBW7oyVv+nX79lpeNfv8cxei8+PkzuBa8s0uipEPt74Mh0RxfGuYdbu+O20Qu5LVx1sEiYF5J/b2WwcbIEUn72Ur759U7VZyJwrkaW3lI07bkNA5r+WhOeUEQiohovA6yTae4KGNgYsoquTf8QQFSLBKRE+x8jFClvJwIolu+QxhoFQXovA/lureCzz0853X12BZPX5OnS2vq99vvcSC3wCTNVIXUYtYMc8b3aPqSXAD8F9t3rzqzPOHl4Rlwr/Ms+B92LcVEy5C+9Iwjt5g9DJKqa6Md28x/+ceyXTAg7BCt4sYB687tqzcS5kOeVjQ97mnweFoL+1aRIjd9kyvPsX24EeI4nrXWZk+JudCBLjpfeksGZcRBMl3+sa2V4Edl6JYFMX3+fr3Jd/WDCIwy0dX1/J8MVs0/p2dbeyd3PR7+hsfn9edOMpPUgAAAABJRU5ErkJggg%3D%3D";this.ci="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgghLkeWfTsAAAGuSURBVDjLrZQ/axRRFMV/983b7BiMSgptFIxE8GOILkgaaz+Eha2FRfwL8Q9pg2ih6Mewt7FJkyYp7EQwpHCQnZl7LOIu897Okgj7qnl3zpxzz713rj3gVCecDkb0BfPpP3A/v1XzBZeur//Dfd+Pl+bi2vGe1iE6v/aHS4PknXWS8bI8uLBKkHYHZVRyXDfC5NliubwnBUlDU3buPetcbDiWolNY7nl0/0fTTaPwY7+e5jZ6zFFafhEFXbrgjJ5C0CxOnZi1bGziQQlOIgpPNDY28YCSmIvoqe7tJ7jJSHWdSPLtrS3cLLOGIArX1MPN13gQOZ8nfov2zhZNnGQ+36/OQZBNpFK/DXVxfKvtkx6FtgBQ3cXVTTbPn59TuJ00z4KP9jD0AEVaeePDm2mKSYKproy324S2Z/yzTgZ2tilO4gMP7LzM2tHDB268f8XZnG/2/xW8u3g3ZA2OPSvB9OJr4enSiOJMbk+mL0mgFAGu9UgnjrUGQSrXwkxh227tLy9LUdSrKwe/5++XeOV8BRGoBldXphpNLQhxADAwqP5YNZmDMYeL2pOL3qd/AZpy8NOvjvTnAAAAAElFTkSuQmCC";this.Ug="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgcrBRqZK8wAAAE8SURBVDjLrZTNSsRAEIRrfuJPwmYXogdB9mmy7+P7iIgIIoKIL+RhT+Ki4A8hbJIuD+qaSWbWCKnTUPmopjM9rU4wSHoYBisj5/Ef3PPyPQiYeJ59c8un6VGQq4uHjzlgBW8vx8leCKOkk8c0hSVWh6kJd612TLOaQJNIlPzqVLpSCUgtEpm2i7MeaCIRTYIOh/MuR5AeDhd+Tpq2AOCycSWkJmvp5AFXbmBNahH0OVy7nogG+nUB3Dh1AU2KJw+4dTqhJuHlcNfySE02fg73G68hbY0y8t9svjmV9ZZ5zofNs4MxyLlpDNXNh72jLhbIy4e9yz7m7cOTRljAKsdbqH5RwBL7bH9ZeNJiQgMHf60iyb7maga1hVKYCWmJKo5fy/B+iaYsAAugiLLdcNGqqH7+33o92p4ce59+Av+enpsD10kAAAAAAElFTkSuQmCC";this.bi="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGggiBLcA5y4AAAE5SURBVDjLrZS7TsNAEEWPN+vERIpAaWhAIigU7vkwPhIQRDxFkyYpaJGgwkJxmEsRiPzaxEi5lTU6vuNZz97oglZy7TC87dhP/+DeHrJww+7Z+Jd7nfnDIPe9mGoM3nif9bpxkLMkmR8McdJLnHgFFfmkP5WcpF5UqF/Wyd5CcmadIiau6mDHzElgBcG1VQSSkyi9DNxUDVecqhy39XG8sPovnpyXz0Y4s1pf4K5cM3OgykcDcF+sCZxkDX7wWKhZ87wrPW2fd6Xn0rxL8k7zBqTrp3y5YZ/TdvtcwhTkym4K9U3b3aMqFvBL293LOtY4R4ObcLVISBtDw0l72zASycHptujQCJyUjFy0gYo46kte5MPB/DOcL/54PwMPZPHJYN1jmQucjwHiCLKvKPs7vwUfu8rJXefpD93iniqiS4VUAAAAAElFTkSuQmCC";this.Rg="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgcrJ8/5aigAAAJ5SURBVDjLrZTfSxRRFMe/d+aOq2v7I9fV/JEEYWVaGZrgQ2DYQ0HQW73ZSw+BPgRBUA9FPvUiRC+Bf0AQRBGR1ENEoWgERmhgij/a1owkdXSb3WZnzulhZnZHc8vA83bnfO73fO+dc4+4jC2FsjUMkrZZj/+D+5FYKwiowbqYyyW+R6oKcpYxk6oDJGF1qba0uBDGFA59C4chGYvxsFr41KJItRdDkAyUCgcTjHjTgZpUYvzTLz9ZajAkQcupBc6eBi9V13d+fjjuP4pGkAwwOWqip0l/MqWrFR3tV+6/8HkEQz2KVDE70dM8evvr3ob65YHJ9iOJefYCmR2QDLKdbZ1tk30nLmhiNpr60He1a0LPCRJDMizHXuA47rZdxNSDjwBGn5459CZ/hwyFCERERPH64XQXZm6NkWCiYdFOuQCRhFe3TLyL76Q7GcAGkEg02/m6gGSQU7cCC5oYTLopw2Da4A/OhxVEl3nMS6pSIf/NKMy2Y2Kem5LC8ixV1c7m/dnM0kJGAwDMfTnV/2hX2lVoKX6ezsllLF8/rw2o3ffeB5xF9XkeXd+GjVhxc3Otx4qeOYeM91aKfa+zwoXMqI8T2bGO1sbln4pWefJ6FYvylsFMnhPnMBfyxHd3t4iFJWW/wmABTF1zf93aHqgHoQc8bvXltFldFpp+/KpNQlC8wW0aMwK5vsuHhkoETAt6r2JJPux7v7zhYaYNwwJGbtiqLfL7+Q/OjZGbpsL9eU4CUmwGvr1Uo0+4GQlIRglvCiaTObUgQwHK/zWKKAYozBSF+AslECVmycgGg3qm8HzRImwAEoChxQKFi2aNrDevTHPb5uR2z9PfLQs68f4FXIYAAAAASUVORK5CYII%3D";this.$h="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAQAAAAmqpm+AAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGggiGzoI6tsAAALsSURBVEjHzdZNaBxlGAfw3+xOspvFYK2WSlvTpih40IJgP9RDIQcFEQLB6kFykUIvUj9zCR4KiiCItCB6UqEXDyqePAgpRhCtaSmYYonFJsGepHXrRzfE7mZeDztJZzezoV0r5HlPM++8//n/n6/3iV4KbqEV3FKLE+uZXfh/4C45Y6Ereb3uc28r3K8uiG3uAm7JNTNCChgnqLqgpFdPF3CJsrJZG2xEIQjO6lEWC12sSKysYkYQmmKDkkg2KM2nLfZ5yE5/Oe8HZyx2YBgp+VtYFltsAyPo87znEPzmTrs87bz3TXUELEqykU1amBW8Za/ffWRaVWyrYU846phPOnoxLPtOizcSwZv2+MazTtjhKSNKjjhsyYv2d/ChrO9apY4YMm3MsNf0iszY5KqTXnXUmB9Vc7mFZbGJbOX2eRLjhozjrA+cSne+ddyovb7MTZiAQhMqS3uLB01Y8ArOOWRKUEi/mRB5vIPYRCJuEs2y2ywyaZtNlryeJsfy/qxfPCLpEIgVsVnfbcVFJZGvzLUdqqmtHM0TmyZK9oMruMtlwelVB4tiBWHtRGld84Ld5kUaq/YGDPp5jZKLG6grZv4yb9YB7zpuQL2NwX4VX6x6C3WN/G78p88UjXvbSeWWnQEHBd+v1f1Cjic+dc6wl33XUvR3O+Y2kTf0I8pN5By4gpoxVQd96FEbVFRsN+pz9wvY5WN35JAIguiZwFSbKBg07jGRiy4reiCNZ0hZ/eRQW6kt2oPoQOBUDhwFQ4bsU8KcE/5wRK8g0hA7bbQNbjfNqujUtidMqIhEFjVwxXuKGmKJh288FFlbUHNVA0x6QUNRI/d67hCKtWzSYf8oCt7JhYtvdhT42ojtqqZzx4k4oM/STQDOrWoMUG7WLOz0X0eLYPB6KMoGFXLy/MYswjaV63dF3Ub9ZtW6mlFi97g9nW/i5XTosUN/joiGeuqKgjgzdvSkahYsilaGpZV79lraONfVuLi+p89/AdAUWQEn4HTQAAAAAElFTkSuQmCC";this.sn="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXlJREFUeNrsmT1Ow0AYRG1ER8glkCioyQk4ARIF9OEA3IeeBnEDJH4qkh4JRXAB6AgtZgxLg2SPKSx7d9+TRoqcr7BeNt7spKyqqoBmNlCAIAQhCEEIQhCCEAQIQlCagibKmXKvvCmvyl24tjX0zZUDH1Z3lAtl1vD+QjlRXnIUNFWulX0zt1QOlPfcvmLzDnKKsLrmOT6DjnqaTUbQbk+zyQiKosocUtDqH7NPOQq67Gk2mW1+O2zzMzO3CNv8OrcVVP+uOQ4CmngIM+scV9Av9XHiVDlU9sK1R+VKOVc+cj5q/F3Nk/C6XjGfY7ipkj8Ox3+aRxCCEmZzZB/W6B7SY2oUb4ufYuxZuSloFL+hUWyBRtFAo2igUTTQKBpoFA00igYaRQONooFGsSM0ijEfVmkUIzjNIwhBCUOjGMEKolFsgUaxBRpFA42igUbRQKNooFE00CgaaBQNNIoGGsWO0CjGDHUHghCEIAQhCEEIQhAgCEE98CXAAHw9kRr/el3HAAAAAElFTkSuQmCC";this.qn="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAbtJREFUeNrs20tKxEAQgOFEZyu6EA/gEbyYex+kwMfei3kEDyAudB+J3Rg3wmBM18vxLyiyGSbVH10d0k36aZo6YnvsQQAQQAABBBBAAP3T2Dje66jk43xtideSZ/N1p4D6ksclDxRq7ne1xcYk/8EaBBBAAAEEEEAEQAABBBBAAAHk/Rbu9kbfuh90Mhe75Hi2bpRp7ON87SttFv62/u559c0aj57PS96UfF+AVIs9VECq93lbeL/9ktclH6KAatyWvEy6hNyVvIpeg2oBkhBHWnE+52uZQUopU54QrXFpAmVBEs0xaQPVHAJxBu3xWABFzSSxGIsVkDeSWI3DEsir3QbLMVgDWc8ksa7fA8gKSTxq9wLSbrfBq25PIK2ZJJ41ewO1Iol3vRFAa9ttiKg1Cui3M0mi6owEWookkTVGA/3UbkN0fRmAts0kyVBbFqDvSJKlLo0tV824n68XWQrKBsTBIUAAAUQoHj1rHSdbRn0Krf6uo/Up9tS1f5xiHRXnNGoGaXyckrpLWtegscsfYyQQTzHjFk3fYq0DfPkDbdb0ZSLvYqxBAAEEEEAAAQQQARBAAPnHhwADADsGwOIWz5onAAAAAElFTkSuQmCC";this.ng="data:image/gif;base64,R0lGODlhAwAVAIABAJmZmf///yH5BAEKAAEALAAAAAADABUAAAINRBynaaje0pORrWnhKQA7";this.Mp="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAB3RJTUUH3QkaAjcFsynwDgAAAMxJREFUKM+9kLEuRQEQRGeuV5FIJApBQZ5EReFP/IBCBIVvpFT4BR9AR+29cxTukyvRaEyzmd3Jzu4kI4Ad9d4JANVLdS1JhvwB/yBuu0jiL5pl22WSzNRBPVE3225MVW2TZA84bfsWYFDvgNX30zQY6wtwmCRRo96qy9V8Et2zevDjMKDqFfA+2fykzr9F6o16vnIALtRX4AE4GvtbwHVGq8epi3qm7k74HFjMRrINnLdd/6KS5FgdkpBkv206DkzykaSTbWkbdUyxs094zOEo59nhUAAAAABJRU5ErkJggg%3D%3D";this.Qp="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAANCAYAAACZ3F9/AAAAAXNSR0IArs4c6QAAAAZiS0dEAFEAUQBRjSJ44QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wCCgAwB/13ZqAAAADXSURBVCjPhZIxTkMxEETf2F9I0EaCI9DRUZEL0XINbpMzQJ2eG1DQpvszNDbyN4kylde7O+PxLgxIckgS2+mw3ePDWFumxrPnc/GmURKXMOfKXDAzX8LcWEfmTtLu6li42O4SD8ARuAHW6RVV0tH2PfANsAyMT8A7cJo9JSHJHfAsiSSoKa6S6jWfjWxNUrtiAbKtUQaSLh+gSEppSf3/3I1qBmIl0ejxC3BnHz02X2lTeASgr5ft3bXZ2d71NVyA1yS3pZSfJB/AS5I/xWGWn5L2tt+A0y9ldpXCCID4IwAAAABJRU5ErkJggg%3D%3D";this.fm="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3gIDABU3A51oagAAAIpJREFUOMulk9ENgCAMRKkTOAqjMIKj6CSOghs4gm7gCM+fGgmCsXJJP0i4cj16zhkBjNwYreSeDJ1rhLVByM6TRf6gqgf3w7g6GTi0fGJUTHxaX19W8oVNK8f6RaYHZiqo8aTQqHhZROTrNy4VhcGybamJMRltBvpfGwcENXxryYJvzcLemp1HnE/SdAV9Q8z4YgAAAABJRU5ErkJggg%3D%3D";this.Lp="data:image/png;base64,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%3D%3D";this.Tp="data:image/png;base64,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%3D%3D";this.Op="data:image/gif;base64,R0lGODlhEAAPAKECAGZmZv///1FRUVFRUSH5BAEKAAIALAAAAAAQAA8AAAIrlI+pB7DYQAjtSTplTbdjB2Wixk3myDTnCnqr2b4vKFxyBtnsouP8/AgaCgA7";this.Pp="data:image/gif;base64,R0lGODlhDQANAIABAP///1FRUSH5BAEHAAEALAAAAAANAA0AAAIXjG+Am8oH4mvyxWtvZdrl/U2QJ5Li+RQAOw%3D%3D";this.Rp="data:image/gif;base64,R0lGODlhDQANAIABAP///1FRUSH5BAEHAAEALAAAAAANAA0AAAIYjAOnC7ncnmpRIuoerpBabF2ZxH3hiSoFADs%3D";this.Up="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAAAXNSR0IArs4c6QAAAAZiS0dEAFEAUQBRjSJ44QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wCCgEMO6ApCe8AAAFISURBVCjPfZJBi49hFMV/521MUYxEsSGWDDWkFKbkA/gAajaytPIFLKx8BVkodjP5AINGU0xZKAslC3Ys2NjP+VnM++rfPzmb23065z6de27aDsMwVD0C3AfOAYeB38BP9fEwDO/aMgwDAAFQDwKbwC9gZxScUM8Al5M8SPJ0Eu5JYV0FeAZcBFaAxSSPkjwHnrQ9Pf1E22XVsX5s+1m9o54cB9J2q+361KM+VN+ot9uqrjIH9VJbpz7qOvAeuAIcSnJzThA1SXaTBGAAvgCrwEvg0yxRXUhikrOjZ1RQz7uHFfUu/4C60fb16G9hetxq+1a9Pkdears2Dt1Rj87mdAx4BfwAttWvSQ4AV9W1aYlJtoFbmQJTjwP3gAvAIlDgG7CsXvu7uWQzs+cxmj0F7Fd3k3wfuRvqDWAfM+HxP6hL6oe2tn3xB7408HFbpc41AAAAAElFTkSuQmCC";this.Np="data:image/png;base64,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%3D%3D";this.Sp="data:image/gif;base64,R0lGODlhEAAPAIABAP///1FRUSH5BAEKAAEALAAAAAAQAA8AAAIkjI+pi+DhgJGMnrfsxEnDqHgRN3WjJp5Wel6mVzbsR8HMjScFADs%3D";this.em="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDJBOEJGMUEyN0IyMTFFMTlFOTNFMjNDNDUxOUFGMTciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDJBOEJGMUIyN0IyMTFFMTlFOTNFMjNDNDUxOUFGMTciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0MkE4QkYxODI3QjIxMUUxOUU5M0UyM0M0NTE5QUYxNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0MkE4QkYxOTI3QjIxMUUxOUU5M0UyM0M0NTE5QUYxNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrESQzQAAAF3SURBVHjaYvz//z8DPQATA53A8LOIkRLNNpaWAkCqHogVgBjEbjxy/PgBbGpZKLRkPxAbQIUuAPEHXOqZsRhwX05WVhCIHzx68gSnRqB8O5AKQBKSAGIPoPhFoL4HBIMOaNF5JFcuAOKF6MEBVOMA9Q0ukAjUs4BQYkhECoIEkIFAg/dDDYeBfAIh2w9Ur0BMqkMPMgeohfOhBgQQsAiWSPAGHcig+3gMeQBNZYTAA2jogCy1Z8SRokAung9VRCkAWRiIK+guQBVQCj5AzalnITKOyAWg1HoQlHoZCWRIUBD2kxmEG4BJPJBgWQdUBPM2ufG0EaVkALkcmJN/YFMJyuHAnM4IzcAcpAQZ0KGF6PkoAGhZAzSosAUfP4m+AoVEINYiCGQRNLeDIu8iVE6fiIyJzRJHoG8u4CzrgJYlUBDxsBQWCI1b/PURtFSoh5ZxxIIL0HpoA8kVH1J55g9NCAJowXMBmj82YAsmrBaNtoIGvUUAAQYApBd2hzrzVVQAAAAASUVORK5CYII%3D";this.bm="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDJBOEJGMUUyN0IyMTFFMTlFOTNFMjNDNDUxOUFGMTciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDJBOEJGMUYyN0IyMTFFMTlFOTNFMjNDNDUxOUFGMTciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0MkE4QkYxQzI3QjIxMUUxOUU5M0UyM0M0NTE5QUYxNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0MkE4QkYxRDI3QjIxMUUxOUU5M0UyM0M0NTE5QUYxNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pj8crNUAAAFxSURBVHjavFbNbYMwGDU0A7BA2oxAj5EqlU7QZgKSY4+ZgDJBmgmAY09JN8ihUo7NBqVVBmCD9H3qc4UsnCBi8qQnGwN+fL/GU8TdePyCIQZHyg1KsPjYbmVf5VEkwzBV/SCH2MyjJYnqF6lPd/WN2HcYk2O4hMYfJEaHSwj5l7JocOTeBgzAd84j8J6jM6E5U16EQq69go8uXZeDO4po6DpLXQoVYNWwHlrWOwuFaBk79qomMRseyNbpLQK34BOYca1i3BaGS/+Bj9N989A2GaSKv8AlNw8Ys1WvBStfimfEZZ82K2yo732yYPHwlDGbnZMMTRbJZmvOA+06iM1tlnWJUcXMyYwMi7BBxHt5l0PSdF1qdAMztSUTv120oNJSP6rmyvhU4NtYlNB9TYHfsKmOulpU1l7WwZYamtQ69Q3nXU/KcsDelhgFu3B8HBU6JVcMdB9YI/UnVzL72e/frodDj9YEDn8glxB5lotfAQYAtCJqk8z+2M8AAAAASUVORK5CYII%3D";this.cm="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0FBOEM3Q0EyOTQ4MTFFMUFDMjBDMDlDMDQxRTYzMzkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0FBOEM3Q0IyOTQ4MTFFMUFDMjBDMDlDMDQxRTYzMzkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBMENEMDM3NTI5NDgxMUUxQUMyMEMwOUMwNDFFNjMzOSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBMENEMDM3NjI5NDgxMUUxQUMyMEMwOUMwNDFFNjMzOSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Ptz3FgYAAAErSURBVHjaYmQAAhtLSwEgVQ/ECUAMYlMDfADiBUDceOT48Q+MUEv2A7EBA23ABSB2ZJaTlW0HMgIYaAckgJiDCRpctAYJLFjiBBS2E4GYn4pxJsCCRdAQGHkPoIlkIzT+KAZM6L6BWQICQPYBaoUdukUCQF/A4wzILqCWRaDk/R9HkmSgZpJnwiFuQKIlFwgpwEgMwHhhRObDfIxDvBAoPgFJDBTs/dhSKhMFoZGIbAnUMaAixxGaRahjEchQoA8MgNgBTfwCtIyjjkVAC0BBdB6Uz4Bs9Ly2kZpBh5z0HQglDiZaFGygaoEuFpGSj0YtGoEWgUrv91Rs+eBsETFhKy5oABaALGokppinsLnVyPzoyZMfwCbXSlCTCIg1oDS1GpAzoKX8B4AAAwAuBFgKFwVWUgAAAABJRU5ErkJggg%3D%3D";this.dm="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3gEfAAUcuIwRjAAAAVpJREFUSMftlrtKA0EUhr9ZFkEMCCpYCb6AIGJzdF7AUhRsREF9AQmCl1IhgpjGwkohb+Ab2Ew4ldZik8pOVOy8kNhMYAhBd5PZVB5Y2BnO8O3M/5+zYwCsyA6wD0wALeKEAZ6BY6daM1ZkA6hRbGwmQJniYy8FRnMsePVHOwSUcqwbSfJo4lTHnOo4sJx3S0mOXA3eh4sEHVmRnkVKM+adONXbDutGBT0CW0613mX+FGgGc4f9gK6AehdTPAAH7bEVMX+BkgxOy+LGVr9Ht2ZFZoDrUCMrMusLvRlLozn/OCA0wxSwXpS9+4p/UDu+iwJ12vetKFAp7HNOVYE7P/wC7oFqjF634FSrQR3hVOfDBCuyHWNHK1ZkMYCEgEy6GSvSAKYzAs+BS+AJ+PD/pUlgCbj45cMbac6WX+71jpEALwMoo/cEqAwAVDFe0FXgzN9uYsYnsOtUb34AitxcDYrQdlwAAAAASUVORK5CYII%3D";this.am="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDJBOEJGMTYyN0IyMTFFMTlFOTNFMjNDNDUxOUFGMTciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDJBOEJGMTcyN0IyMTFFMTlFOTNFMjNDNDUxOUFGMTciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDNTQyQTc3NTI3QjExMUUxOUU5M0UyM0M0NTE5QUYxNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDNTQyQTc3NjI3QjExMUUxOUU5M0UyM0M0NTE5QUYxNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PkQAqvIAAADoSURBVHjaYmEAAhtLSwEgVQ/ECUAMYlMDfADiBUDceOT48Q+MUEv2A7EBA23ABSB2ZJaTlW0HMgIYaAckgJiDCRpctAYJTFSME3xAgIlCAw4AcSAoDoBYEBjpjCCMTSELJZYADXUkVjElPppIimIWCpMtHACzyXt88U22j4DB9gA9wmkVdCQBcixqxJaykFJcIb18JEAvi+SxCYIK1f9kJgZGtFT3f8gmhlGLRi2i3KIPdLDnAwu0SVRAqk4SM/oCkI8a0esWGjS3GpkfPXnyA9jkWglqEgGxBpSmVgNyBhAnghqQAAEGADc+O4K5UN0FAAAAAElFTkSuQmCC";this.O=f.O;this.F.ob=-1;this.mf=!0;this.kb=new Aa;this.Fc=new Ba;this.no=new Ca;this.un=new Da;this.Zp=new Ea;this.vn=function(){};this.An=function(c){var d=this;d.Ja=c;d.O.bb="FlipView"==d.F.H;if(!d.O.document.DisableOverflow){d.Na=d.F.Zb?jQuery("#"+d.Ja).wrap("<div id='"+d.Ja+"_wrap' style='"+(d.O.bb?"position:absolute;z-index:50;":"")+"opacity:0;text-align:center;width:100%;position:absolute;z-index:100;top:-70px'></div>").parent():jQuery("#"+d.Ja).wrap("<div id='"+d.Ja+"_wrap' style='"+(d.O.bb?"position:absolute;z-index:50;":"")+"opacity:0;text-align:center;width:100%;'></div>").parent();jQuery("#"+d.Ja).css("visibility","hidden");c=d.O;var h;if(!(h=d.O.config.document.PreviewMode)){var f;try{f=window.self!==window.top;}catch(k){f=!0;}h=f&&d.O.Mc()&&600>d.O.Mc()&&!d.O.cc&&!FLOWPAPER.getLocationHashParameter("DisablePreview");}c.PreviewMode=h;null!=d.O.config.document.UIConfig?d.ll(null!=d.O.config.document.UIConfig?d.O.config.document.UIConfig:"UI_Zine.xml",function(){d.Pg=!0;d.F.ah&&d.F.ah();}):d.ck();d.O.PreviewMode&&(d.Xk(),d.ph());eb.platform.touchonlydevice&&d.Na.append(String.format('<div class="flowpaper_toolbarios toolbarMore" style="visibility:hidden;z-index: 200;overflow: hidden;padding-top: 4px;padding-bottom: 3px;height: 38px;margin-right: 100px;display: block;margin-top: -6px;background-color: rgb(85, 85, 85);"></div>'));}};this.ll=function(c,d){var h=this;jQuery.ajax({type:"GET",url:c,dataType:"xml",error:function(){h.ck();},success:function(c){h.bd=c;c=eb.platform.touchonlydevice?"mobile":"desktop";!eb.platform.lb&&eb.platform.touchonlydevice&&0<jQuery(h.bd).find("tablet").length&&(c="tablet");toolbar_el=jQuery(h.bd).find(c).find("toolbar");var e=jQuery(h.bd).find(c).find("general");h.readOnly="true"==jQuery(e).attr("ReadOnly");h.backgroundColor=jQuery(e).attr("backgroundColor");h.linkColor=null!=jQuery(e).attr("linkColor")?jQuery(e).attr("linkColor"):"#72e6ff";h.O.linkColor=h.linkColor;h.Oc=null!=jQuery(e).attr("linkAlpha")?jQuery(e).attr("linkAlpha"):0.4;h.O.Oc=h.Oc;h.Ef=null!=jQuery(e).attr("arrowSize")?parseFloat(jQuery(e).attr("arrowSize")):22;h.O.Ef=h.Ef;h.backgroundImage=jQuery(e).attr("backgroundImage");h.Dj=null==jQuery(e).attr("stretchBackgroundImage")||null!=jQuery(e).attr("stretchBackgroundImage")&&"true"==jQuery(e).attr("stretchBackgroundImage");h.F.Ld=null==jQuery(e).attr("enablePageShadows")||null!=jQuery(e).attr("enablePageShadows")&&"true"==jQuery(e).attr("enablePageShadows");h.F.rf=null!=jQuery(e).attr("shadowAlpha")?parseFloat(jQuery(e).attr("shadowAlpha")):0.3;h.ta=("true"==jQuery(e).attr("forceSinglePage")||(eb.platform.lb||eb.platform.ios||eb.platform.android)&&eb.browser.uh||h.F.Ze||h.yq)&&!(h.O.PreviewMode&&!eb.browser.uh);h.hb=jQuery(e).attr("panelColor");h.qb=null!=jQuery(e).attr("arrowColor")?jQuery(e).attr("arrowColor"):"#AAAAAA";h.Pe=jQuery(e).attr("backgroundAlpha");h.Ae=jQuery(e).attr("navPanelBackgroundAlpha");h.Qi=jQuery(e).attr("imageAssets");h.gb=!eb.platform.touchonlydevice&&(null==jQuery(e).attr("enableFisheyeThumbnails")||jQuery(e).attr("enableFisheyeThumbnails")&&"false"!=jQuery(e).attr("enableFisheyeThumbnails"))&&(!h.ta||h.F.Ze)&&!h.F.config.document.RTLMode;h.mf="false"!=jQuery(e).attr("navPanelsVisible");h.ug="false"!=jQuery(e).attr("firstLastButtonsVisible");h.Kp=null!=jQuery(e).attr("startWithTOCOpen")&&"false"!=jQuery(e).attr("startWithTOCOpen");h.Bf=null!=jQuery(e).attr("zoomDragMode")&&"false"!=jQuery(e).attr("zoomDragMode");h.Ir=null!=jQuery(e).attr("hideNavPanels")&&"false"!=jQuery(e).attr("hideNavPanels");h.Dn=null!=jQuery(e).attr("disableMouseWheel")&&"false"!=jQuery(e).attr("disableMouseWheel");h.rg=null!=jQuery(e).attr("disableZoom")&&"false"!=jQuery(e).attr("disableZoom");h.Ak=null!=jQuery(e).attr("disableSharingURL")&&"false"!=jQuery(e).attr("disableSharingURL");h.Ie=null!=jQuery(e).attr("flipAnimation")?jQuery(e).attr("flipAnimation"):"3D, Soft";h.Zc=null!=jQuery(e).attr("flipSpeed")?jQuery(e).attr("flipSpeed").toLowerCase():"medium";h.rb=h.rb&&!h.ta;h.pn=null!=jQuery(e).attr("bindBindNavigationKeys")&&"false"!=jQuery(e).attr("bindBindNavigationKeys");h.Di=null!=jQuery(e).attr("flipSound")?jQuery(e).attr("flipSound"):null;jQuery(h.toolbar.K).css("visibility","hidden");if(h.backgroundImage){FLOWPAPER.authenticated&&(h.backgroundImage=FLOWPAPER.appendUrlParameter(h.backgroundImage,FLOWPAPER.authenticated.getParams())),h.Dj?(jQuery(h.O.L).css("background-color",""),jQuery(h.O.L).css("background",""),jQuery(h.O.N).css({background:"url('"+h.backgroundImage+"')","background-size":"cover"}),jQuery(h.O.L).css("background-size","cover")):(jQuery(h.O.L).css("background",""),jQuery(h.O.N).css({background:"url('"+h.backgroundImage+"')","background-color":h.backgroundColor}),jQuery(h.O.L).css("background-size",""),jQuery(h.O.L).css("background-position","center"),jQuery(h.O.N).css("background-position","center"),jQuery(h.O.L).css("background-repeat","no-repeat"),jQuery(h.O.N).css("background-repeat","no-repeat"));}else{if(h.backgroundColor&&-1==h.backgroundColor.indexOf("[")){var f=R(h.backgroundColor),f="rgba("+f.r+","+f.g+","+f.b+","+(null!=h.Pe?parseFloat(h.Pe):1)+")";jQuery(h.O.L).css("background",f);jQuery(h.O.N).css("background",f);h.O.bb||jQuery(h.Na).css("background",f);}else{if(h.backgroundColor&&0<=h.backgroundColor.indexOf("[")){var m=h.backgroundColor.split(",");m[0]=m[0].toString().replace("[","");m[0]=m[0].toString().replace("]","");m[0]=m[0].toString().replace(" ","");m[1]=m[1].toString().replace("[","");m[1]=m[1].toString().replace("]","");m[1]=m[1].toString().replace(" ","");f=m[0].toString().substring(0,m[0].toString().length);m=m[1].toString().substring(0,m[1].toString().length);jQuery(h.O.L).css("background","");jQuery(h.O.N).css({background:"linear-gradient("+f+", "+m+")"});jQuery(h.O.N).css({background:"-webkit-linear-gradient("+f+", "+m+")"});eb.browser.msie&&10>eb.browser.version&&(jQuery(h.O.L).css("filter","progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorStr='"+f+"', endColorStr='"+m+"');"),jQuery(h.O.N).css("filter","progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorStr='"+f+"', endColorStr='"+m+"');"));}else{jQuery(h.O.N).css("background-color","#222222");}}}h.fk();jQuery(h.toolbar.K).children().css("display","none");h.ei=h.ea;h.fi=h.ea;h.Zh=h.ea;h.Qg=h.ea;h.Wg=h.ea;h.hi=h.ea;h.Xg=h.ea;h.ii=h.ea;h.Yg=h.ea;h.ji=h.ea;h.Zg=h.ea;h.ki=h.ea;h.Tg=h.ea;h.ai=h.ea;h.Vg=h.ea;h.ci=h.ea;h.Ug=h.ea;h.bi=h.ea;h.Rg=h.ea;h.$h=h.ea;var p="",r=null,f=0;jQuery(toolbar_el).attr("visible")&&"false"==jQuery(toolbar_el).attr("visible")?h.xf=!1:h.xf=!0;!jQuery(toolbar_el).attr("width")||null!=jQuery(toolbar_el).attr("width")&&0<=jQuery(toolbar_el).attr("width").indexOf("%")?jQuery(h.toolbar.K).css("width",null):jQuery(toolbar_el).attr("width")&&jQuery(h.toolbar.K).css("width",parseInt(jQuery(toolbar_el).attr("width"))+60+"px");jQuery(toolbar_el).attr("backgroundColor")&&(jQuery(h.toolbar.K).css("background-color",jQuery(toolbar_el).attr("backgroundColor")),jQuery(".toolbarMore").css("background-color",jQuery(toolbar_el).attr("backgroundColor")));jQuery(toolbar_el).attr("borderColor")&&jQuery(h.toolbar.K).css("border-color",h.hb);jQuery(toolbar_el).attr("borderStyle")&&jQuery(h.toolbar.K).css("border-style",jQuery(toolbar_el).attr("borderStyle"));jQuery(toolbar_el).attr("borderThickness")&&jQuery(h.toolbar.K).css("border-width",jQuery(toolbar_el).attr("borderThickness"));jQuery(toolbar_el).attr("paddingTop")&&(jQuery(h.toolbar.K).css("padding-top",jQuery(toolbar_el).attr("paddingTop")+"px"),f+=parseFloat(jQuery(toolbar_el).attr("paddingTop")));jQuery(toolbar_el).attr("paddingLeft")&&jQuery(h.toolbar.K).css("padding-left",jQuery(toolbar_el).attr("paddingLeft")+"px");jQuery(toolbar_el).attr("paddingRight")&&jQuery(h.toolbar.K).css("padding-right",jQuery(toolbar_el).attr("paddingRight")+"px");jQuery(toolbar_el).attr("paddingBottom")&&(jQuery(h.toolbar.K).css("padding-bottom",jQuery(toolbar_el).attr("paddingBottom")+"px"),f+=parseFloat(jQuery(toolbar_el).attr("paddingTop")));jQuery(toolbar_el).attr("cornerRadius")&&jQuery(h.toolbar.K).css({"border-radius":jQuery(toolbar_el).attr("cornerRadius")+"px","-moz-border-radius":jQuery(toolbar_el).attr("cornerRadius")+"px"});jQuery(toolbar_el).attr("height")&&jQuery(h.toolbar.K).css("height",parseFloat(jQuery(toolbar_el).attr("height"))-f+"px");jQuery(toolbar_el).attr("location")&&"float"==jQuery(toolbar_el).attr("location")?h.Ig=!0:h.Ig=!1;jQuery(toolbar_el).attr("location")&&"bottom"==jQuery(toolbar_el).attr("location")&&(h.He=!0,jQuery(h.toolbar.K).parent().detach().insertAfter(h.L),jQuery(h.toolbar.K).css("margin-top","0px"),jQuery(h.toolbar.K).css("margin-bottom","-5px"),jQuery(h.toolbar.K+"_wrap").css("bottom","0px"),jQuery(h.toolbar.K+"_wrap").css("background-color",h.hb),jQuery(jQuery(h.F.L).css("height",jQuery(h.F.L).height()-40+"px")));var t=1<eb.platform.Xa&&!eb.platform.touchonlydevice?"@2x":"";jQuery(jQuery(h.bd).find(c)).find("toolbar").find("element").each(function(){"bttnPrint"!=jQuery(this).attr("id")&&"bttnDownload"!=jQuery(this).attr("id")&&"bttnTextSelect"!=jQuery(this).attr("id")&&"bttnHand"!=jQuery(this).attr("id")&&"barCursorTools"!=jQuery(this).attr("id")||!h.readOnly||jQuery(this).attr("visible",!1);"bttnDownload"!=jQuery(this).attr("id")||h.F.document.PDFFile||jQuery(this).attr("visible",!1);"bttnDownload"==jQuery(this).attr("id")&&h.O.renderer.config.signature&&0<h.O.renderer.config.signature.length&&jQuery(this).attr("visible",!1);switch(jQuery(this).attr("type")){case"button":p=".flowpaper_"+jQuery(this).attr("id");if(0==jQuery(p).length&&(jQuery(h.toolbar.K).append(String.format("<img id='{0}' class='{1} flowpaper_tbbutton'/>",jQuery(this).attr("id"),"flowpaper_"+jQuery(this).attr("id"))),jQuery(this).attr("onclick"))){var c=jQuery(this).attr("onclick");jQuery(p).bind("mousedown",function(){eval(c);});}jQuery(this).attr("paddingLeft")&&jQuery(p).css("padding-left",jQuery(this).attr("paddingLeft")-6+"px");if(jQuery(this).attr("fa-class")){jQuery(p).replaceWith(String.format('<span id="{0}" style="cursor:pointer;color:#ffffff" class="fa {1} {2}"></span>',jQuery(this).attr("id"),jQuery(this).attr("fa-class"),jQuery(p).get(0).className));}else{var d=jQuery(this).attr("id");jQuery(this).attr("src")&&(d=jQuery(this).attr("src"));}jQuery(p).css("display","false"==jQuery(this).attr("visible")?"none":"block");jQuery(p).attr("src",h.Qi+d+t+".png");jQuery(this).attr("icon_width")&&jQuery(p).css("width",jQuery(this).attr("icon_width")+"px");jQuery(this).attr("icon_height")&&jQuery(p).css("height",jQuery(this).attr("icon_height")+"px");jQuery(this).attr("fa-class")&&jQuery(p).css("font-size",jQuery(this).attr("icon_height")+"px");jQuery(this).attr("paddingRight")&&jQuery(p).css("padding-right",jQuery(this).attr("paddingRight")-6+"px");jQuery(this).attr("paddingTop")&&jQuery(p).css("padding-top",jQuery(this).attr("paddingTop")+"px");h.Ig?jQuery(p).css("margin-top","0px"):jQuery(p).css("margin-top","2px");null!=r&&jQuery(p).insertAfter(r);r=jQuery(p);break;case"separator":p="#"+h.toolbar.Ja+"_"+jQuery(this).attr("id");jQuery(p).css("display","false"==jQuery(this).attr("visible")?"none":"block");jQuery(p).attr("src",h.Qi+"bar"+t+".png");jQuery(this).attr("width")&&jQuery(p).css("width",jQuery(this).attr("width")+"px");jQuery(this).attr("height")&&jQuery(p).css("height",jQuery(this).attr("height")+"px");jQuery(this).attr("paddingLeft")&&jQuery(p).css("padding-left",+jQuery(this).attr("paddingLeft"));jQuery(this).attr("paddingRight")&&jQuery(p).css("padding-right",+jQuery(this).attr("paddingRight"));jQuery(this).attr("paddingTop")&&jQuery(p).css("padding-top",+jQuery(this).attr("paddingTop"));jQuery(p).css("margin-top","0px");null!=r&&jQuery(p).insertAfter(r);r=jQuery(p);break;case"slider":p=".flowpaper_"+jQuery(this).attr("id");jQuery(p).css("display","false"==jQuery(this).attr("visible")?"none":"block");jQuery(this).attr("width")&&jQuery(p).css("width : "+jQuery(this).attr("width"));jQuery(this).attr("height")&&jQuery(p).css("height : "+jQuery(this).attr("height"));jQuery(this).attr("paddingLeft")&&jQuery(p).css("padding-left : "+jQuery(this).attr("paddingLeft"));jQuery(this).attr("paddingRight")&&jQuery(p).css("padding-right : "+jQuery(this).attr("paddingRight"));jQuery(this).attr("paddingTop")&&jQuery(p).css("padding-top : "+jQuery(this).attr("paddingTop"));h.Ig?jQuery(p).css("margin-top","-5px"):jQuery(p).css("margin-top","-3px");null!=r&&jQuery(p).insertAfter(r);r=jQuery(p);break;case"textinput":p=".flowpaper_"+jQuery(this).attr("id");jQuery(p).css("display","false"==jQuery(this).attr("visible")?"none":"block");jQuery(this).attr("width")&&jQuery(p).css("width : "+jQuery(this).attr("width"));jQuery(this).attr("height")&&jQuery(p).css("height : "+jQuery(this).attr("height"));jQuery(this).attr("paddingLeft")&&jQuery(p).css("padding-left : "+jQuery(this).attr("paddingLeft"));jQuery(this).attr("paddingRight")&&jQuery(p).css("padding-right : "+jQuery(this).attr("paddingRight"));jQuery(this).attr("paddingTop")&&jQuery(p).css("padding-top : "+jQuery(this).attr("paddingTop"));jQuery(this).attr("readonly")&&"true"==jQuery(this).attr("readonly")&&jQuery(p).attr("disabled","disabled");null!=r&&jQuery(p).insertAfter(r);eb.platform.touchonlydevice?jQuery(p).css("margin-top",jQuery(this).attr("marginTop")?jQuery(this).attr("marginTop")+"px":"7px"):h.Ig?jQuery(p).css("margin-top","-2px"):jQuery(p).css("margin-top","0px");r=jQuery(p);break;case"label":p=".flowpaper_"+jQuery(this).attr("id"),jQuery(p).css("display","false"==jQuery(this).attr("visible")?"none":"block"),jQuery(this).attr("width")&&jQuery(p).css("width : "+jQuery(this).attr("width")),jQuery(this).attr("height")&&jQuery(p).css("height : "+jQuery(this).attr("height")),jQuery(this).attr("paddingLeft")&&jQuery(p).css("padding-left : "+jQuery(this).attr("paddingLeft")),jQuery(this).attr("paddingRight")&&jQuery(p).css("padding-right : "+jQuery(this).attr("paddingRight")),jQuery(this).attr("paddingTop")&&jQuery(p).css("padding-top : "+jQuery(this).attr("paddingTop")),null!=r&&jQuery(p).insertAfter(r),eb.platform.touchonlydevice?jQuery(p).css("margin-top",jQuery(this).attr("marginTop")?jQuery(this).attr("marginTop")+"px":"9px"):h.Ig?jQuery(p).css("margin-top","1px"):jQuery(p).css("margin-top","3px"),r=jQuery(p);}});h.O.outline=jQuery(jQuery(h.bd).find("outline"));h.O.labels=jQuery(jQuery(h.bd).find("labels"));jQuery(h.toolbar.K).css({"margin-left":"auto","margin-right":"auto"});jQuery(toolbar_el).attr("location")&&jQuery(toolbar_el).attr("location");350>jQuery(h.toolbar.K).width()&&jQuery(".flowpaper_txtSearch").css("width","40px");jQuery(e).attr("glow")&&"true"==jQuery(e).attr("glow")&&(h.Gq=!0,jQuery(h.toolbar.K).css({"box-shadow":"0 0 35px rgba(22, 22, 22, 1)","-webkit-box-shadow":"0 0 35px rgba(22, 22, 22, 1)","-moz-box-shadow":"0 0 35px rgba(22, 22, 22, 1)"}));h.hb?jQuery(h.toolbar.K).css("background-color",h.hb):eb.platform.touchonlydevice?!jQuery(toolbar_el).attr("gradients")||jQuery(toolbar_el).attr("gradients")&&"true"==jQuery(toolbar_el).attr("gradients")?jQuery(h.toolbar.K).addClass("flowpaper_toolbarios_gradients"):jQuery(h.toolbar.K).css("background-color","#555555"):jQuery(h.toolbar.K).css("background-color","#555555");h.xf?jQuery(h.toolbar.K).css("visibility","visible"):jQuery(h.toolbar.K).hide();h.pn&&jQuery(window).bind("keydown",function(c){!c||jQuery(c.target).hasClass("flowpaper_zoomSlider")||"INPUT"==jQuery(c.target).get(0).tagName||h.F.pages.animating||(h.O.pages.le()||h.O.pages&&h.O.pages.animating)&&!h.gh||("37"==c.keyCode?h.O.previous():"39"==c.keyCode&&h.O.next());});d&&d();}});};this.ph=function(){this.F.N.find(".flowpaper_fisheye").hide();};this.Aj=function(){this.wk();};this.Xk=function(){this.F.PreviewMode||jQuery(this.O.L).css("padding-top","20px");jQuery("#"+this.Ja).hide();};this.Ep=function(){jQuery(this.O.L).css("padding-top","0px");jQuery("#"+this.Ja).show();};this.ck=function(){this.ta=eb.platform.lb&&!this.O.PreviewMode;this.Bf=!0;this.gb=!eb.platform.touchonlydevice;this.Ae=1;this.F.Ld=!0;jQuery(this.toolbar.K).css({"border-radius":"3px","-moz-border-radius":"3px"});jQuery(this.toolbar.K).css({"margin-left":"auto","margin-right":"auto"});this.O.config.document.PanelColor&&(this.hb=this.O.config.document.PanelColor);this.O.config.document.BackgroundColor?this.backgroundColor=this.O.config.document.BackgroundColor:this.backgroundColor="#222222";this.backgroundImage||jQuery(this.O.N).css("background-color",this.backgroundColor);this.hb?jQuery(this.toolbar.K).css("background-color",this.hb):eb.platform.touchonlydevice?jQuery(this.toolbar.K).addClass("flowpaper_toolbarios_gradients"):jQuery(this.toolbar.K).css("background-color","#555555");this.fk();this.Pg=!0;this.F.ah&&this.F.ah();};this.fk=function(){if(eb.platform.touchonlydevice){var c=eb.platform.lb?-5:-1,d=eb.platform.lb?7:15,h=eb.platform.lb?40:60;jQuery(this.toolbar.K).html(String.format("<img src='{0}' class='flowpaper_tbbutton_large flowpaper_bttnDownload' style='margin-left:{1}px;'/>",this.qn,d)+(this.toolbar.O.config.document.ViewModeToolsVisible?String.format("<img src='{0}' style='margin-left:{1}px' class='flowpaper_tbbutton_large flowpaper_twopage flowpaper_tbbutton_pressed flowpaper_bttnBookView flowpaper_viewmode'>",this.Zh,d)+String.format("<img src='{0}' class='flowpaper_bttnSinglePage flowpaper_tbbutton_large flowpaper_singlepage flowpaper_viewmode' style='margin-left:{1}px;'>",this.Wg,c)+String.format("<img src='{0}' style='margin-left:{1}px;' class='flowpaper_tbbutton_large flowpaper_thumbview flowpaper_bttnThumbView flowpaper_viewmode' >",this.Xg,c)+"":"")+(this.toolbar.O.config.document.ZoomToolsVisible?String.format("<img class='flowpaper_tbbutton_large flowpaper_bttnZoomIn' src='{0}' style='margin-left:{1}px;' />",this.Yg,d)+String.format("<img class='flowpaper_tbbutton_large flowpaper_bttnZoomOut' src='{0}' style='margin-left:{1}px;' />",this.Zg,c)+String.format("<img class='flowpaper_tbbutton_large flowpaper_bttnFullscreen' src='{0}' style='margin-left:{1}px;' />",this.Tg,c)+"":"")+(this.toolbar.O.config.document.NavToolsVisible?String.format("<img src='{0}' class='flowpaper_tbbutton_large flowpaper_previous flowpaper_bttnPrevPage' style='margin-left:{0}px;'/>",this.Vg,d)+String.format("<input type='text' class='flowpaper_tbtextinput_large flowpaper_currPageNum flowpaper_txtPageNumber' value='1' style='width:{0}px;' />",h)+String.format("<div class='flowpaper_lblTotalPages flowpaper_tblabel_large flowpaper_numberOfPages'> / </div>")+String.format("<img src='{0}' class='flowpaper_bttnPrevNext flowpaper_tbbutton_large flowpaper_next'/>",this.Ug)+"":"")+(this.toolbar.O.config.document.SearchToolsVisible?String.format("<input type='txtSearch' class='flowpaper_txtSearch flowpaper_tbtextinput_large' style='margin-left:{0}px;width:{1}px;text-align:right' value='{2}' />",d,eb.platform.lb?70:130,eb.platform.lb?"&#x1F50D":"")+String.format("<img src='{0}' class='flowpaper_bttnFind flowpaper_find flowpaper_tbbutton_large'  style=''/>",this.Rg)+"":"")+String.format("<img src='{0}' id='{1}' class='flowpaper_bttnMore flowpaper_tbbutton_large' style='display:none' />",this.sn,this.rn));jQuery(this.toolbar.K).removeClass("flowpaper_toolbarstd");jQuery(this.toolbar.K).addClass("flowpaper_toolbarios");jQuery(this.toolbar.K).parent().parent().css({"background-color":this.backgroundColor});}else{jQuery(this.toolbar.K).css("margin-top","15px"),c=this.O.renderer.config.signature&&0<this.O.renderer.config.signature.length,jQuery(this.toolbar.K).html(String.format("<img style='margin-left:10px;' src='{0}' class='flowpaper_bttnPrint flowpaper_tbbutton print'/>",this.Qp)+(this.F.document.PDFFile&&0<this.F.document.PDFFile.length&&!c?String.format("<img src='{0}' class='flowpaper_bttnDownload flowpaper_tbbutton download'/>",this.Mp):"")+String.format("<img src='{0}' id='{1}' class='flowpaper_tbseparator' />",this.ng,this.ln)+(this.O.config.document.ViewModeToolsVisible?String.format("<img style='margin-left:10px;' src='{1}' class='flowpaper_tbbutton {0} flowpaper_bttnBookView flowpaper_twopage flowpaper_tbbuttonviewmode flowpaper_viewmode' />","FlipView"==this.O.yb?"flowpaper_tbbutton_pressed":"",this.Tp)+String.format("<img src='{1}' class='flowpaper_tbbutton {0} flowpaper_bttnSinglePage flowpaper_singlepage flowpaper_tbbuttonviewmode flowpaper_viewmode' />","Portrait"==this.O.yb?"flowpaper_tbbutton_pressed":"",this.Lp)+String.format("<img src='{0}' id='{1}' class='flowpaper_tbseparator' />",this.ng,this.nn):"")+(this.O.config.document.ZoomToolsVisible?String.format("<div class='flowpaper_zoomSlider flowpaper_slider' style='background-image:url({1})'><div class='flowpaper_handle' style='{0}'></div></div>",eb.browser.msie&&9>eb.browser.version?this.F.toolbar.Xl:"","data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTIiPjxsaW5lIHgxPSIwIiB5MT0iNiIgeDI9Ijk1IiB5Mj0iNiIgc3R5bGU9InN0cm9rZTojQUFBQUFBO3N0cm9rZS13aWR0aDoxIiAvPjwvc3ZnPg==")+String.format("<input type='text' class='flowpaper_tbtextinput flowpaper_txtZoomFactor' style='width:40px;' />")+String.format("<img style='margin-left:10px;' class='flowpaper_tbbutton flowpaper_bttnFullscreen' src='{0}' />",this.Np):"")+(this.O.config.document.NavToolsVisible?String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_previous flowpaper_bttnPrevPage'/>",this.Pp)+String.format("<input type='text' class='flowpaper_txtPageNumber flowpaper_tbtextinput flowpaper_currPageNum' value='1' style='width:50px;text-align:right;' />")+String.format("<div class='flowpaper_lblTotalPages flowpaper_tblabel flowpaper_numberOfPages'> / </div>")+String.format("<img src='{0}' class='flowpaper_bttnPrevNext flowpaper_tbbutton flowpaper_next'/>",this.Rp)+String.format("<img src='{0}' id='{1}' class='flowpaper_tbseparator' />",this.ng,this.kn):"")+(this.O.config.document.CursorToolsVisible?String.format("<img style='margin-top:5px;margin-left:6px;' src='{0}' class='flowpaper_tbbutton flowpaper_bttnTextSelect'/>",this.Sp)+String.format("<img style='margin-top:4px;' src='{0}' class='flowpaper_tbbutton flowpaper_tbbutton_pressed flowpaper_bttnHand'/>",this.Op)+String.format("<img src='{0}' id='{1}' class='flowpaper_tbseparator' />",this.ng,this.jn):"")+(this.O.config.document.SearchToolsVisible?String.format("<input id='{0}' type='text' class='flowpaper_tbtextinput flowpaper_txtSearch' style='width:40px;margin-left:4px' />")+String.format("<img src='{0}' class='flowpaper_find flowpaper_tbbutton flowpaper_bttnFind' />",this.Up):"")+String.format("<img src='{0}' id='{1}' class='flowpaper_tbseparator' />",this.ng,this.mn));}};this.vk=function(){var c=this;if(0<jQuery(c.Na).find(".toolbarMore").length){var d=jQuery(c.Na).find(".toolbarMore").children(),h=jQuery(c.toolbar.K),f=jQuery(c.Na).find(".flowpaper_bttnMore"),k=jQuery(c.Na).find(".toolbarMore"),l=(jQuery(c.Na).width()-jQuery(c.toolbar.K).width())/2-5,m=jQuery(c.Na).find(".flowpaper_bttnZoomIn").offset().top,p=!1,r=jQuery(c.toolbar.K).children();jQuery(c.toolbar.K).last();jQuery(c.Na).find(".toolbarMore").css({"margin-right":l+"px","margin-left":l+"px"});r.each(function(){jQuery(this).is(":visible")&&(p=p||20<jQuery(this).offset().top-h.offset().top);});p=p||0<jQuery(c.Na).find(".toolbarMore").children().length;d.each(function(){jQuery(this).insertBefore(f);});p&&(k.show(),k.css("background-color",jQuery(c.toolbar.K).css("background-color")));p?(f.show(),r.each(function(){!jQuery(this).hasClass("flowpaper_bttnMore")&&jQuery(this).is(":visible")&&35<jQuery(this).offset().top-m&&k.append(this);}),requestAnim(function(){20<f.offset().top-m&&k.prepend(jQuery(c.Na).find(".flowpaper_bttnMore").prev());},50),k.prepend(jQuery(c.Na).find(".flowpaper_bttnMore").prev())):(f.hide(),k.css("visibility","hidden"));}};this.bindEvents=function(){var c=this;eb.platform.touchonlydevice?(jQuery(c.Na).find(".flowpaper_txtSearch").on("touchstart",function(){!jQuery(".flowpaper_bttnFind").is(":visible")&&0<jQuery(this).val().length&&55357==jQuery(this).val().charCodeAt(0)?(jQuery(this).css("text-align","left"),jQuery(this).val(""),jQuery(this).data("original-width",jQuery(this).css("width")),0<jQuery(c.toolbar.K).find(".flowpaper_txtSearch").length?(jQuery(c.toolbar.K).find("*:visible:not(.flowpaper_txtSearch)").data("search-hide",!0),jQuery(c.toolbar.K).find("*:visible:not(.flowpaper_txtSearch)").hide(),jQuery(this).css({width:"100%"})):jQuery(this).css({width:jQuery(this).parent().width()-jQuery(this).offset().left+"px"})):jQuery(".flowpaper_bttnFind").is(":visible")||"100%"==jQuery(this).width||(0<jQuery(c.toolbar.K).find(".flowpaper_txtSearch").length?(jQuery(c.toolbar.K).find("*:visible:not(.flowpaper_txtSearch)").data("search-hide",!0),jQuery(c.toolbar.K).find("*:visible:not(.flowpaper_txtSearch)").hide(),jQuery(this).css({width:"100%"})):jQuery(this).css({width:jQuery(this).parent().width()-jQuery(this).offset().left+"px"}));jQuery(this).focus();}),jQuery(c.toolbar.K).find(".flowpaper_txtSearch").on("blur",function(){jQuery(".flowpaper_bttnFind").is(":visible")||0!=jQuery(this).val().length||(jQuery(this).css("text-align","right"),jQuery(this).val(String.fromCharCode(55357)+String.fromCharCode(56589)));jQuery(this).data("original-width")&&jQuery(this).animate({width:jQuery(this).data("original-width")},{duration:300,always:function(){for(var d=jQuery(c.toolbar.K).children(),h=0;h<d.length;h++){jQuery(d[h]).data("search-hide")&&jQuery(d[h]).show();}}});}),jQuery(c.toolbar.K).find(".flowpaper_bttnPrint").on("mousedown touchstart",function(){c.fi!=c.ea&&jQuery(this).attr("src",c.fi);}),jQuery(c.toolbar.K).find(".flowpaper_bttnPrint").on("mouseup touchend",function(){c.ei!=c.ea&&jQuery(this).attr("src",c.ei);}),jQuery(c.toolbar.K).find(".flowpaper_bttnBookView").on("mousedown touchstart",function(){c.Qg!=c.ea&&jQuery(this).attr("src",c.Qg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnBookView").on("mouseup touchend",function(){c.Qg!=c.ea&&jQuery(this).attr("src",c.Zh);}),jQuery(c.toolbar.K).find(".flowpaper_bttnSinglePage").on("mousedown touchstart",function(){c.hi!=c.ea&&jQuery(this).attr("src",c.hi);}),jQuery(c.toolbar.K).find(".flowpaper_bttnSinglePage").on("mouseup touchend",function(){c.Wg!=c.ea&&jQuery(this).attr("src",c.Wg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnThumbView").on("mousedown touchstart",function(){c.ii!=c.ea&&jQuery(this).attr("src",c.ii);}),jQuery(c.toolbar.K).find(".flowpaper_bttnThumbView").on("mouseup touchend",function(){c.Xg!=c.ea&&jQuery(this).attr("src",c.Xg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnZoomIn").on("mousedown touchstart",function(){c.ji!=c.ea&&jQuery(this).attr("src",c.ji);}),jQuery(c.toolbar.K).find(".flowpaper_bttnZoomIn").on("mouseup touchend",function(){c.Yg!=c.ea&&jQuery(this).attr("src",c.Yg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnZoomOut").on("mousedown touchstart",function(){c.ki!=c.ea&&jQuery(this).attr("src",c.ki);}),jQuery(c.toolbar.K).find(".flowpaper_bttnZoomOut").on("mouseup touchend",function(){c.Zg!=c.ea&&jQuery(this).attr("src",c.Zg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnFullscreen").on("mousedown touchstart",function(){c.ai!=c.ea&&jQuery(this).attr("src",c.ai);}),jQuery(c.toolbar.K).find(".flowpaper_bttnFullscreen").on("mouseup touchend",function(){c.Tg!=c.ea&&jQuery(this).attr("src",c.Tg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnPrevPage").on("mousedown touchstart",function(){c.ci!=c.ea&&jQuery(this).attr("src",c.ci);}),jQuery(c.toolbar.K).find(".flowpaper_bttnPrevPage").on("mouseup touchend",function(){c.Vg!=c.ea&&jQuery(this).attr("src",c.Vg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnNextPage").on("mousedown touchstart",function(){c.bi!=c.ea&&jQuery(this).attr("src",c.bi);}),jQuery(c.toolbar.K).find(".flowpaper_bttnNextPage").on("mouseup touchend",function(){c.Ug!=c.ea&&jQuery(this).attr("src",c.Ug);}),jQuery(c.toolbar.K).find(".flowpaper_bttnFind").on("mousedown touchstart",function(){c.$h!=c.ea&&jQuery(this).attr("src",c.$h);}),jQuery(c.toolbar.K).find(".flowpaper_bttnFind").on("mouseup touchend",function(){c.Rg!=c.ea&&jQuery(this).attr("src",c.Rg);})):(jQuery(c.toolbar.K).find(".flowpaper_txtSearch").on("focus",function(){40>=jQuery(this).width()&&(jQuery(c.toolbar.K).animate({width:jQuery(c.toolbar.K).width()+60},100),jQuery(this).animate({width:jQuery(this).width()+60},100));}),jQuery(c.toolbar.K).find(".flowpaper_txtSearch").on("blur",function(){40<jQuery(this).width()&&(jQuery(c.toolbar.K).animate({width:jQuery(c.toolbar.K).width()-60},100),jQuery(this).animate({width:40},100));}));jQuery(c.toolbar.K).find(".flowpaper_bttnZoomIn").bind("click touchstart",function(){c.O.pages.te(!0);});jQuery(c.toolbar.K).find(".flowpaper_bttnZoomOut").bind("click touchstart",function(){c.O.pages.qd();});0==c.F.N.find(".flowpaper_socialsharedialog").length&&(c.Ak?c.F.N.prepend(String.format("<div id='modal-socialshare' class='modal-content flowpaper_socialsharedialog' style='overflow:hidden;'><font style='color:#000000;font-size:11px'><img src='{0}' align='absmiddle' />&nbsp;<b>{15}</b></font><div style='width:530px;height:180px;margin-top:5px;padding-top:5px;padding-left:5px;background-color:#ffffff;box-shadow: 0px 2px 10px #aaa'><div style='position:absolute;left:20px;top:42px;color:#000000;font-weight:bold;'>{8}</div><div style='position:absolute;left:177px;top:47px;color:#000000;font-weight:bold;'><hr size='1' style='width:350px'/></div><div style='position:absolute;left:20px;top:58px;color:#000000;font-size:10px;'>{9}</div><div style='position:absolute;left:20px;top:88px;color:#000000;font-weight:bold;'><input type='text' style='width:139px;' value='&lt;{10}&gt;' class='flowpaper_txtPublicationTitle' /></div><div style='position:absolute;left:165px;top:86px;color:#000000;'><img src='{1}' class='flowpaper_socialshare_twitter' style='cursor:pointer;' /></div><div style='position:absolute;left:200px;top:86px;color:#000000;'><img src='{2}' class='flowpaper_socialshare_facebook' style='cursor:pointer;' /></div><div style='position:absolute;left:235px;top:86px;color:#000000;'><img src='{3}' class='flowpaper_socialshare_googleplus' style='cursor:pointer;' /></div><div style='position:absolute;left:270px;top:86px;color:#000000;'><img src='{4}' class='flowpaper_socialshare_tumblr' style='cursor:pointer;' /></div><div style='position:absolute;left:305px;top:86px;color:#000000;'><img src='{5}' class='flowpaper_socialshare_linkedin' style='cursor:pointer;' /></div></div></div>",c.fm,c.em,c.am,c.bm,c.dm,c.cm,c.F.toolbar.ka(c.F.toolbar.La,"CopyUrlToPublication","Copy URL to publication"),c.F.toolbar.ka(c.F.toolbar.La,"DefaultStartPage","Default start page"),c.F.toolbar.ka(c.F.toolbar.La,"ShareOnSocialNetwork","Share on Social Network"),c.F.toolbar.ka(c.F.toolbar.La,"ShareOnSocialNetworkDesc","You can easily share this publication to social networks. Just click on the appropriate button below."),c.F.toolbar.ka(c.F.toolbar.La,"SharingTitle","Sharing Title"),c.F.toolbar.ka(c.F.toolbar.La,"EmbedOnSite","Embed on Site"),c.F.toolbar.ka(c.F.toolbar.La,"EmbedOnSiteDesc","Use the code below to embed this publication to your website."),c.F.toolbar.ka(c.F.toolbar.La,"EmbedOnSiteMiniature","Linkable Miniature"),c.F.toolbar.ka(c.F.toolbar.La,"EmbedOnSiteFull","Full Publication"),c.F.toolbar.ka(c.F.toolbar.La,"Share","Share"),c.F.toolbar.ka(c.F.toolbar.La,"StartOnCurrentPage","Start on current page"))):c.F.N.prepend(String.format("<div id='modal-socialshare' class='modal-content flowpaper_socialsharedialog' style='overflow:hidden;'><font style='color:#000000;font-size:11px'><img src='{0}' align='absmiddle' />&nbsp;<b>{15}</b></font><div style='width:530px;height:307px;margin-top:5px;padding-top:5px;padding-left:5px;background-color:#ffffff;box-shadow: 0px 2px 10px #aaa'><div style='position:absolute;left:20px;top:42px;color:#000000;font-weight:bold;'>{6}</div><div style='position:absolute;left:177px;top:42px;color:#000000;font-weight:bold;'><hr size='1' style='width:350px'/></div><div style='position:absolute;left:20px;top:62px;color:#000000;font-weight:bold;'><select class='flowpaper_ddlSharingOptions'><option>{7}</option><option>{16}</option></select></div><div style='position:absolute;left:175px;top:62px;color:#000000;font-weight:bold;'><input type='text' readonly style='width:355px;' class='flowpaper_socialsharing_txtUrl' /></div><div style='position:absolute;left:20px;top:102px;color:#000000;font-weight:bold;'>{8}</div><div style='position:absolute;left:177px;top:107px;color:#000000;font-weight:bold;'><hr size='1' style='width:350px'/></div><div style='position:absolute;left:20px;top:118px;color:#000000;font-size:10px;'>{9}</div><div style='position:absolute;left:20px;top:148px;color:#000000;font-weight:bold;'><input type='text' style='width:139px;' value='&lt;{10}&gt;' class='flowpaper_txtPublicationTitle' /></div><div style='position:absolute;left:165px;top:146px;color:#000000;'><img src='{1}' class='flowpaper_socialshare_twitter' style='cursor:pointer;' /></div><div style='position:absolute;left:200px;top:146px;color:#000000;'><img src='{2}' class='flowpaper_socialshare_facebook' style='cursor:pointer;' /></div><div style='position:absolute;left:235px;top:146px;color:#000000;'><img src='{3}' class='flowpaper_socialshare_googleplus' style='cursor:pointer;' /></div><div style='position:absolute;left:270px;top:146px;color:#000000;'><img src='{4}' class='flowpaper_socialshare_tumblr' style='cursor:pointer;' /></div><div style='position:absolute;left:305px;top:146px;color:#000000;'><img src='{5}' class='flowpaper_socialshare_linkedin' style='cursor:pointer;' /></div><div style='position:absolute;left:20px;top:192px;color:#000000;font-weight:bold;'>{11}</div><div style='position:absolute;left:20px;top:208px;color:#000000;font-size:10px;'>{12}</div><div style='position:absolute;left:20px;top:228px;color:#000000;font-size:10px;'><input type='radio' name='InsertCode' class='flowpaper_radio_miniature' checked />&nbsp;{13}&nbsp;&nbsp;&nbsp;&nbsp;<input type='radio' name='InsertCode' class='flowpaper_radio_fullembed' />&nbsp;{14}</div><div style='position:absolute;left:20px;top:251px;color:#000000;font-size:10px;'><textarea class='flowpaper_txtEmbedCode' readonly style='width:507px;height:52px'></textarea></div></div></div>",c.fm,c.em,c.am,c.bm,c.dm,c.cm,c.F.toolbar.ka(c.F.toolbar.La,"CopyUrlToPublication","Copy URL to publication"),c.F.toolbar.ka(c.F.toolbar.La,"DefaultStartPage","Default start page"),c.F.toolbar.ka(c.F.toolbar.La,"ShareOnSocialNetwork","Share on Social Network"),c.F.toolbar.ka(c.F.toolbar.La,"ShareOnSocialNetworkDesc","You can easily share this publication to social networks. Just click on the appropriate button below."),c.F.toolbar.ka(c.F.toolbar.La,"SharingTitle","Sharing Title"),c.F.toolbar.ka(c.F.toolbar.La,"EmbedOnSite","Embed on Site"),c.F.toolbar.ka(c.F.toolbar.La,"EmbedOnSiteDesc","Use the code below to embed this publication to your website."),c.F.toolbar.ka(c.F.toolbar.La,"EmbedOnSiteMiniature","Linkable Miniature"),c.F.toolbar.ka(c.F.toolbar.La,"EmbedOnSiteFull","Full Publication"),c.F.toolbar.ka(c.F.toolbar.La,"Share","Share"),c.F.toolbar.ka(c.F.toolbar.La,"StartOnCurrentPage","Start on current page"))));c.F.N.find(".flowpaper_radio_miniature, .flowpaper_radio_fullembed, .flowpaper_ddlSharingOptions").on("change",function(){c.Nh();});c.F.N.find(".flowpaper_txtPublicationTitle").on("focus",function(c){-1!=jQuery(c.target).val().indexOf("Sharing Title")&&jQuery(c.target).val("");});c.F.N.find(".flowpaper_txtPublicationTitle").on("blur",function(c){0==jQuery(c.target).val().length&&jQuery(c.target).val("<Sharing Title>");});c.F.N.find(".flowpaper_txtPublicationTitle").on("keydown",function(){c.Nh();});c.Nh();jQuery(c.toolbar.K).find(".flowpaper_bttnSocialShare").bind("click touchstart",function(){c.Nh();jQuery("#modal-socialshare").css("background-color","#dedede");jQuery("#modal-socialshare").smodal({minHeight:c.Ak?90:350,minWidth:550,appendTo:c.F.N});jQuery("#modal-socialshare").parent().css("background-color","#dedede");});jQuery(c.toolbar.K).find(".flowpaper_bttnBookView").bind("click touchstart",function(){eb.browser.msie&&8>=eb.browser.version?c.O.switchMode("BookView",c.O.getCurrPage()):c.O.switchMode("FlipView",c.O.getCurrPage()+1);jQuery(this).addClass("flowpaper_tbbutton_pressed");});jQuery(c.toolbar.K).find(".flowpaper_bttnMore").bind("click touchstart",function(){var d=(jQuery(c.Na).width()-jQuery(c.toolbar.K).width())/2-5;"hidden"==jQuery(c.Na).find(".toolbarMore").css("visibility")?jQuery(c.Na).find(".toolbarMore").css({"margin-right":d+"px","margin-left":d+"px",visibility:"visible"}):jQuery(c.Na).find(".toolbarMore").css({"margin-right":d+"px","margin-left":d+"px",visibility:"hidden"});});c.F.N.find(".flowpaper_socialsharing_txtUrl, .flowpaper_txtEmbedCode").bind("focus",function(){jQuery(this).select();});c.F.N.find(".flowpaper_socialsharing_txtUrl, .flowpaper_txtEmbedCode").bind("mouseup",function(){return !1;});c.F.N.find(".flowpaper_socialshare_twitter").bind("mousedown",function(){window.open("https://twitter.com/intent/tweet?url="+escape(c.$e(!1))+"&text="+escape(c.oh()),"_flowpaper_exturl");c.F.L.trigger("onSocialMediaShareClicked","Twitter");});c.F.N.find(".flowpaper_socialshare_facebook").bind("mousedown",function(){window.open("http://www.facebook.com/sharer.php?u="+escape(c.$e(!1),"_flowpaper_exturl"));c.F.L.trigger("onSocialMediaShareClicked","Facebook");});c.F.N.find(".flowpaper_socialshare_googleplus").bind("mousedown",function(){window.open("https://plus.google.com/share?url="+escape(c.$e(!1)),"_flowpaper_exturl");c.F.L.trigger("onSocialMediaShareClicked","GooglePlus");});c.F.N.find(".flowpaper_socialshare_tumblr").bind("mousedown",function(){window.open("http://www.tumblr.com/share/link?name="+escape(c.oh())+"&url="+escape(c.$e(!1)),"_flowpaper_exturl");c.F.L.trigger("onSocialMediaShareClicked","Tumblr");});c.F.N.find(".flowpaper_socialshare_linkedin").bind("mousedown",function(){window.open("http://www.linkedin.com/shareArticle?mini=true&url="+escape(c.$e(!1))+"&title="+escape(c.oh()),"_flowpaper_exturl");c.F.L.trigger("onSocialMediaShareClicked","LinkedIn");});};this.Nh=function(){this.F.N.find(".flowpaper_txtEmbedCode").val('<iframe frameborder="0"  width="400" height="300"  title="'+this.oh()+'" src="'+this.$e()+'" type="text/html" scrolling="no" marginwidth="0" marginheight="0" allowFullScreen></iframe>');this.F.N.find(".flowpaper_socialsharing_txtUrl").val(this.$e(!1));};this.oh=function(){return this.F.N.find(".flowpaper_txtPublicationTitle").length&&-1==this.F.N.find(".flowpaper_txtPublicationTitle").val().indexOf("Sharing Title")?this.F.N.find(".flowpaper_txtPublicationTitle").val():"";};this.$e=function(c){0==arguments.length&&(c=!0);var d=this.F.N.find(".flowpaper_ddlSharingOptions").prop("selectedIndex"),h=this.F.N.find(".flowpaper_radio_miniature").is(":checked"),f=location.protocol+"//"+location.host+location.pathname+(location.search?location.search:"");this.F.document.SharingUrl&&(f=this.F.document.SharingUrl);return f.substring(0)+(0<d?"#page="+this.F.getCurrPage():"")+(0<d&&h&&c?"&":h&&c?"#":"")+(h&&c?"PreviewMode=Miniature":"");};this.initialize=function(){var c=this.F;c.I.rb=c.I.oi();c.I.gh=!1;c.I.rb||(c.renderer.bh=!0);eb.platform.ios&&8>eb.platform.iosversion&&(c.I.rb=!1);if(!c.config.document.InitViewMode||c.config.document.InitViewMode&&"Zine"==c.config.document.InitViewMode||"TwoPage"==c.config.document.InitViewMode||"Flip-SinglePage"==c.config.document.InitViewMode){c.L&&0.7>c.L.width()/c.L.height()&&(c.Ze=!0),"Flip-SinglePage"!=c.config.document.InitViewMode||(eb.platform.lb||eb.platform.ios||eb.platform.android)&&eb.browser.uh||(c.Ze=!0),c.yb="FlipView",c.config.document.MinZoomSize=1,c.H=c.yb,"TwoPage"==c.H&&(c.H="FlipView"),c.scale=1;}c.config.document.pl=c.config.document.MinZoomSize;null===c.N&&(c.N=jQuery("<div style='"+c.L.attr("style")+";overflow-x: hidden;overflow-y: hidden;' class='flowpaper_viewer_container'/>"),c.N=c.L.wrap(c.N).parent(),c.L.css({left:"0px",top:"0px",position:"relative",width:"100%",height:"100%"}).addClass("flowpaper_viewer"),eb.browser.safari&&c.L.css("-webkit-transform","translateZ(0)"));jQuery(c.L).bind("onCurrentPageChanged",function(d,h){c.cc&&(jQuery(".activeElement-label").remove(),jQuery(".activeElement").removeClass("activeElement"));c.T&&c.wn();var f=window.location.search?window.location.search:"",k=eb.platform.mobilepreview?",mobilepreview="+FLOWPAPER.getLocationHashParameter("mobilepreview"):"";c.config.document.RTLMode&&(h=c.getTotalPages()-h+(0==c.getTotalPages()%2?1:0));!window.history.replaceState||c.cc||!c.renderer.ra&&c.renderer.Ta||window.history.replaceState(null,null,f+"#page="+h+k);if(jQuery(this).data("TrackingNumber")&&window.createTimeSpent&&!c.cc&&!W()){f=(-1<document.location.pathname.indexOf(".html")?document.location.pathname.substr(0,document.location.pathname.lastIndexOf(".html"))+"/":document.location.pathname)+"#page="+h;FLOWPAPER.mc||(FLOWPAPER.mc=[]);for(var l in FLOWPAPER.mc){FLOWPAPER.mc[l]&&(FLOWPAPER.mc[l].end(),FLOWPAPER.mc[l]=null);}FLOWPAPER.mc[f]||(FLOWPAPER.mc[f]=createTimeSpent(),FLOWPAPER.mc[f].init({location:f,gaTracker:"FlowPaperEventTracker"}));}});window.addEventListener("beforeunload",function(){FLOWPAPER.mc||(FLOWPAPER.mc=[]);for(var c in FLOWPAPER.mc){FLOWPAPER.mc[c]&&(FLOWPAPER.mc[c].end(),FLOWPAPER.mc[c]=null);}});};this.Yp=function(d){eb.platform.touchonlydevice?c.switchMode("SinglePage",d):c.switchMode("Portrait",d);};FlowPaperViewer_HTML.prototype.oj=function(c){var d=this;if(d.ob!=c){var h=(c-20+1)/2,f=h+9+1,k=1,l=null!=d.I.hb?d.I.hb:"#555555";d.T.find(".flowpaper_fisheye_item").parent().parent().remove();0>d.getTotalPages()-c&&(f=f+(d.getTotalPages()-c)/2+(c-d.getTotalPages())%2);19<c?d.T.find(".flowpaper_fisheye_panelLeft").animate({opacity:1},150):d.T.find(".flowpaper_fisheye_panelLeft").animate({opacity:0},150);c<d.getTotalPages()?d.T.find(".flowpaper_fisheye_panelRight").animate({opacity:1},150):d.T.find(".flowpaper_fisheye_panelRight").animate({opacity:0},150);for(i=h;i<f;i++){d.bn(k),k++;}d.T.find(".flowpaper_fisheye_item, .flowpaper_fisheye_panelLeft, .flowpaper_fisheye_panelRight").bind("mouseover",function(){if(!d.pages.animating&&0!=d.T.css("opacity")){var c=(1-Math.min(1,Math.max(0,1/d.Ik)))*d.Gk+d.Nb;d.T.css({"z-index":12,"pointer-events":"auto"});jQuery(this).parent().parent().parent().find("span").css({display:"none"});jQuery(this).parent().find("span").css({display:"inline-block"});jQuery(this).parent().parent().parent().find("p").remove();var e=1==jQuery(this).data("pageindex")?d.jh/2:0;jQuery(this).parent().find("span").after(String.format("<p style='width: 0;height: 0;border-left: 7px solid transparent;border-right: 7px solid transparent;border-top: 7px solid {0};margin-top:-35px;margin-left:{1}px;'></p>",l,c/2-20+e));}});d.T.find(".flowpaper_fisheye_item").bind("mouseout",function(c){d.pages.animating||0==d.T.css("opacity")||(d.Ai=c.pageX,d.Bi=c.pageY,d.pe=c.target,jQuery(d.pe).get(0),d.Wl(),d.T.css({"z-index":9,"pointer-events":"none"}),jQuery(this).parent().find("span").css({display:"none"}),jQuery(this).parent().find("p").remove());});d.T.find("li").each(function(){jQuery(this).bind("mousemove",function(c){d.pages.animating||0<c.buttons||!d.T.is(":visible")||(d.pe=c.target,d.Ai=c.pageX,d.Bi=c.pageY,jQuery(d.pe).get(0),d.Ci=!0,d.yl());});});jQuery(d.T).bind("mouseleave",function(){d.T.find("li").each(function(){var c=this;requestAnim(function(){jQuery(c).find("a").css({width:d.Nb,top:d.Nb/3});},10);});});jQuery(d.pages.J+", "+d.pages.J+"_parent, #"+d.P).bind("mouseover",function(){if(d.T&&(d.T.css({"z-index":9,"pointer-events":"none"}),(eb.browser.msie||eb.browser.safari&&5>eb.browser.Qb)&&d.pe)){d.pe=null;var c=d.T.find("a").find("canvas").data("origwidth"),e=d.T.find("a").find("canvas").data("origheight");d.T.find("li").each(function(){jQuery(this).find("a").css({height:e,width:c,top:d.Nb/3});jQuery(this).find("a").find("canvas").css({height:e,width:c,top:d.Nb/3});});}});}d.ob=c;};FlowPaperViewer_HTML.prototype.wn=function(){var c=this;if((c.da>c.ob||c.da<=c.ob-20)&&-1!=c.ob){var d=c.da>c.ob?20:-20;la(c.da,c.ob-20,c.ob+20)?c.vh(d):(c.oj(c.da-c.da%20-1+20),window.setTimeout(function(){c.Dc=(c.ob-20+1)/2+1;c.fg=c.Dc+9;0>c.getTotalPages()-c.ob&&(c.fg=c.fg+(c.getTotalPages()-c.ob)/2+(c.ob-c.getTotalPages())%2);c.Dc<=c.getTotalPages()&&c.renderer.oe(c,c.Dc,2*c.Md);},300));}};FlowPaperViewer_HTML.prototype.vh=function(c){var d=this;0!=c&&d.oj(d.ob+c);window.setTimeout(function(){d.Dc=(d.ob-20+1)/2+1;d.fg=d.Dc+9;0>d.getTotalPages()-d.ob&&(d.fg=d.fg+(d.getTotalPages()-d.ob)/2+(d.ob-d.getTotalPages())%2);d.Dc<=d.getTotalPages()&&d.renderer.oe(d,d.Dc,2*d.Md);},300);};FlowPaperViewer_HTML.prototype.bn=function(c){var d=0==i?1:2*i+1,h=this;if(h.T){var f=null!=h.I.hb?h.I.hb:"#555555",k="";h.config.document.RTLMode&&(d=h.getTotalPages()-parseInt(d)+1);1!=d||h.config.document.RTLMode?1==d&&h.config.document.RTLMode?k="&nbsp;&nbsp;"+d+"&nbsp;&nbsp;":d==h.getTotalPages()&&0==h.getTotalPages()%2?k=(d-1).toString():d>h.getTotalPages()?k=(d-1).toString():k=d-1+"-"+d:k="&nbsp;&nbsp;"+c+"&nbsp;&nbsp;";k=h.toolbar.Bd(d,k);c=jQuery(String.format("<li><a style='height:{2}px;width:{7}px;top:{9}px;' class='flowpaper_thumbitem'><span style='margin-left:{8}px;background-color:{0}'>{4}</span><canvas data-pageIndex='{5}' data-ThumbIndex='{6}' class='flowpaper_fisheye_item' style='pointer-events: auto;' /></a></li>",f,h.If,0.8*h.Md,h.jh,k,d,c,h.Nb,1==d?h.jh:0,h.Nb/3));c.insertBefore(h.T.find(".flowpaper_fisheye_panelRight").parent());c.find(".flowpaper_fisheye_item").css({opacity:0});jQuery(c).bind("mousedown",function(){1!=!h.scale&&(h.T&&h.T.css({"z-index":9,"pointer-events":"none"}),d>h.getTotalPages()&&(d=h.getTotalPages()),h.gotoPage(d));});}};this.wk=function(){var c=this.F;if("FlipView"==c.H){0<c.N.find(".flowpaper_fisheye").length&&c.N.find(".flowpaper_fisheye").remove();c.ob=-1;var d=0;0<c.getDimensions(0).length&&(d=c.getDimensions(0)[0].la/c.getDimensions(0)[0].ya-0.3);c.vr=25;c.Md=0.25*c.L.height();c.jh=0.41*c.Md;c.If=jQuery(c.L).offset().top+jQuery(c.pages.J).height()-c.N.offset().top+c.gc;c.Ik=1.25*c.Md;c.Nb=c.Md/(3.5-d);c.Qn=2.5*c.Nb;c.Rn=-(c.Nb/3);d=null!=c.I.hb?c.I.hb:"#555555";c.I.Ae&&(d=R(d),d="rgba("+d.r+","+d.g+","+d.b+","+c.I.Ae+")");c.N.append(jQuery(String.format("<div class='flowpaper_fisheye' style='position:absolute;pointer-events: none;top:{1}px;z-index:12;left:{4}px;"+(c.I.He||!c.I.xf?"margin-top:2.5%;":"")+"'><ul><li><div class='flowpaper_fisheye_panelLeft' style='pointer-events: auto;position:relative;-moz-border-radius-topleft: 10px;border-top-left-radius: 10px;-moz-border-radius-bottomleft: 10px;border-bottom-left-radius: 10px;background-color:{0};left:0px;width:22px;'><div style='position:absolute;height:100px;width:100px;left:0px;top:-40px;'></div><div class='flowpaper_fisheye_leftArrow' style='position:absolute;top:20%;left:3px'></div></div></li><li><div class='flowpaper_fisheye_panelRight' style='pointer-events: auto;position:relative;-moz-border-radius-topright: 10px;border-top-right-radius: 10px;-moz-border-radius-bottomright: 10px;border-bottom-right-radius: 10px;background-color:{0};left:0px;width:22px;'><div style='position:absolute;height:100px;width:100px;left:0px;top:-40px;'></div><div class='flowpaper_fisheye_rightArrow' style='position:absolute;top:20%;left:3px;'></div></div></li></ul></div>",d,c.If,0.8*c.Md,c.jh,c.Rn)));c.T=c.N.find(".flowpaper_fisheye");c.T.css({top:c.If-(c.T.find(".flowpaper_fisheye_panelLeft").offset().top-jQuery(c.T).offset().top)+c.T.find(".flowpaper_fisheye_panelLeft").height()/2});c.Gk=c.Qn-c.Nb;c.Ai=-1;c.Bi=-1;c.zi=!1;c.Ci=!1;c.vg=c.Nb-0.4*c.Nb;c.ur=c.vg/c.Nb;c.T.find(".flowpaper_fisheye_panelLeft").bind("mousedown",function(){c.vh(-20);});c.T.find(".flowpaper_fisheye_panelRight").bind("mousedown",function(){c.vh(20);});36<c.vg&&(c.vg=36);c.T.find(".flowpaper_fisheye_panelLeft").css({opacity:0,height:c.vg+"px",top:"-10px"});c.T.find(".flowpaper_fisheye_panelRight").css({height:c.vg+"px",top:"-10px"});c.T.css({top:c.If-(c.T.find(".flowpaper_fisheye_panelLeft").offset().top-jQuery(c.T).offset().top)+c.T.find(".flowpaper_fisheye_panelLeft").height()/3});c.ih=30<c.T.find(".flowpaper_fisheye_panelLeft").height()?11:0.35*c.T.find(".flowpaper_fisheye_panelLeft").height();c.T.find(".flowpaper_fisheye_leftArrow").De(c.ih,c.I.qb?c.I.qb:"#AAAAAA");c.T.find(".flowpaper_fisheye_rightArrow").zd(c.ih,c.I.qb?c.I.qb:"#AAAAAA");jQuery(c).unbind("onThumbPanelThumbAdded");jQuery(c).bind("onThumbPanelThumbAdded",function(d,g){var f=c.T.find(String.format('*[data-thumbIndex="{0}"]',g.vf));f.data("pageIndex");var l=(g.vf-1)%10;f&&f.animate({opacity:1},300);c.Dc<c.fg&&(c.ob-20+1)/2+l+2>c.Dc&&(c.aq?(c.Dc++,c.aq=!1):c.Dc=(c.ob-20+1)/2+l+2,c.Dc<=c.getTotalPages()&&c.renderer.oe(c,c.Dc,2*c.Md));0==l&&f.height()-10<c.T.find(".flowpaper_fisheye_panelRight").height()&&(c.T.find(".flowpaper_fisheye_panelLeft").css("top",c.T.find(".flowpaper_fisheye_panelLeft").height()-f.height()+5+"px"),c.T.find(".flowpaper_fisheye_panelLeft").height(c.T.find(".flowpaper_fisheye_panelLeft").height()-3),c.T.find(".flowpaper_fisheye_panelRight").css("top",c.T.find(".flowpaper_fisheye_panelRight").height()-f.height()+5+"px"),c.T.find(".flowpaper_fisheye_panelRight").height(c.T.find(".flowpaper_fisheye_panelRight").height()-3));});c.oj(19);c.PreviewMode||c.vh(0);1!=c.scale&&c.T.animate({opacity:0},0);c.Pa&&c.I.Jh();c.ab&&c.I.Vl();}};this.Dh=function(){jQuery(jQuery(c.I.bd).find("content")).find("page").each(function(){var d=jQuery(this);jQuery(this).find("link").each(function(){c.addLink(jQuery(d).attr("number"),jQuery(this).attr("href"),jQuery(this).attr("x"),jQuery(this).attr("y"),jQuery(this).attr("width"),jQuery(this).attr("height"),jQuery(this).attr("showLinkIcon")?"true"==jQuery(this).attr("showLinkIcon"):!1,jQuery(this).attr("showMouseOverText")?"true"==jQuery(this).attr("showMouseOverText"):!1,jQuery(this).attr("mouseOverText"));});jQuery(this).find("video").each(function(){c.addVideo(jQuery(d).attr("number"),jQuery(this).attr("src"),jQuery(this).attr("url"),jQuery(this).attr("x"),jQuery(this).attr("y"),jQuery(this).attr("width"),jQuery(this).attr("height"),jQuery(this).attr("maximizevideo"),jQuery(this).attr("autoplay"));});jQuery(this).find("iframe").each(function(){c.ek(jQuery(d).attr("number"),jQuery(this).attr("src"),jQuery(this).attr("url"),jQuery(this).attr("x"),jQuery(this).attr("y"),jQuery(this).attr("width"),jQuery(this).attr("height"),jQuery(this).attr("maximizeframe"));});jQuery(this).find("image").each(function(){c.addImage(jQuery(d).attr("number"),jQuery(this).attr("src"),jQuery(this).attr("x"),jQuery(this).attr("y"),jQuery(this).attr("width"),jQuery(this).attr("height"),jQuery(this).attr("href"),jQuery(this).attr("hoversrc"));});});c.I.vk();if("FlipView"==c.H&&window.zine){c.gc=c.bb&&!c.I.He?c.I.Na.height():0;c.Zb&&c.bb&&(c.gc=5);c.document.StartAtPage&&!c.Og&&(c.Og=0==c.document.StartAtPage%2||c.I.ta?c.document.StartAtPage:c.document.StartAtPage-1);c.yf=!1;var d=1400;"very fast"==c.I.Zc&&(d=300);"fast"==c.I.Zc&&(d=700);"slow"==c.I.Zc&&(d=2300);"very slow"==c.I.Zc&&(d=6300);c.Kj=600;c.va=jQuery(c.pages.J).turn({gradients:!eb.platform.android,acceleration:!0,shadows:c.Ld,elevation:50,duration:d,page:c.Og?c.Og:1,display:c.I.ta?"single":"double",pages:c.getTotalPages(),cornerDragging:c.document.EnableCornerDragging,disableCornerNavigation:c.I.rb,when:{turning:function(d,e){c.pages.animating=!0;c.pages.ag=null;c.pages.R=0!=e%2||c.I.ta?e:e+1;c.pages.R>c.getTotalPages()&&(c.pages.R=c.pages.R-1);if(1!=e||c.I.ta){c.I.ta||e!=c.getTotalPages()||0!=c.getTotalPages()%2?c.I.ta?c.I.ta&&c.gc&&jQuery(c.pages.J+"_parent").transition({x:0,y:c.gc},0):jQuery(c.pages.J+"_parent").transition({x:0,y:c.gc},c.Kj,"ease",function(){}):(g=c.yf?c.Kj:0,jQuery(c.pages.J+"_parent").transition({x:+(c.pages.Lc()/4),y:c.gc},g,"ease",function(){}));}else{var g=c.yf?c.Kj:0;jQuery(c.pages.J+"_parent").transition({x:-(c.pages.Lc()/4),y:c.gc},g,"ease",function(){});}c.da=1<e?c.pages.R:e;c.renderer.ne&&c.yf&&c.pages.gf(e-1);c.renderer.ne&&c.yf&&c.pages.gf(e);"FlipView"==c.H&&(!c.pages.pages[e-1]||c.pages.pages[e-1].xc||c.pages.pages[e-1].pa||(c.pages.pages[e-1].xc=!0,c.pages.pages[e-1].Wc()),e<c.getTotalPages()&&c.pages.pages[e]&&!c.pages.pages[e].xc&&!c.pages.pages[e].pa&&(c.pages.pages[e].xc=!0,c.pages.pages[e].Wc()));},turned:function(d,e){c.I.rb&&c.va?c.pages.le()||(c.va.css({opacity:1}),c.Xf?(c.yf=!0,c.pages.animating=!1,c.Kc(e),c.pages.nc(),c.L.trigger("onCurrentPageChanged",e),null!=c.ce&&(c.ce(),c.ce=null)):jQuery("#"+c.pages.Kb).animate({opacity:0.5},{duration:50,always:function(){jQuery("#"+c.pages.Kb).animate({opacity:0},{duration:50,always:function(){jQuery("#"+c.pages.Kb).css("z-index",-1);c.yf=!0;c.pages.animating=!1;c.Kc(e);c.pages.nc();c.L.trigger("onCurrentPageChanged",e);null!=c.ce&&(c.ce(),c.ce=null);}});}})):(c.yf=!0,c.pages.animating=!1,c.Kc(e),c.pages.nc(),c.L.trigger("onCurrentPageChanged",e),null!=c.ce&&(c.ce(),c.ce=null));},pageAdded:function(d,e){var g=c.pages.getPage(e-1);g.$k();c.I.Fc.qo(g);},foldedPageClicked:function(d,e){0<c.N.find(".simplemodal-container").length||c.jj||(c.pages.le()||c.pages.animating)&&!c.I.gh||c.Pa||c.ab||requestAnim(function(){window.clearTimeout(c.Xf);c.Xf=null;e>=c.pages.R&&e<c.getTotalPages()?c.pages.Lj("next"):c.pages.Lj("previous");});},destroyed:function(){c.Fn&&c.L.parent().remove();}}});jQuery(c.va).bind("cornerActivated",function(){c.T&&c.T.css({"z-index":9,"pointer-events":"none"});});jQuery(c.K).trigger("onScaleChanged",1/c.document.MaxZoomSize);}if(c.backgroundColor&&-1==c.backgroundColor.indexOf("[")&&!this.backgroundImage){d=R(this.backgroundColor),d="rgba("+d.r+","+d.g+","+d.b+","+(null!=this.Pe?parseFloat(this.Pe):1)+")",jQuery(this.O.L).css("background",d),this.O.bb||jQuery(this.Na).css("background",d);}else{if(c.backgroundColor&&0<=c.backgroundColor.indexOf("[")&&!this.backgroundImage){var g=c.backgroundColor.split(",");g[0]=g[0].toString().replace("[","");g[0]=g[0].toString().replace("]","");g[0]=g[0].toString().replace(" ","");g[1]=g[1].toString().replace("[","");g[1]=g[1].toString().replace("]","");g[1]=g[1].toString().replace(" ","");d=g[0].toString().substring(0,g[0].toString().length);g=g[1].toString().substring(0,g[1].toString().length);jQuery(c.O.L).css("backgroundImage","linear-gradient(top, "+d+", "+g+")");}}"FlipView"==c.H&&!eb.platform.touchonlydevice&&c.I.Aj&&c.I.gb?(c.I.wk(),c.PreviewMode&&c.I.ph()):(c.T&&(c.T.remove(),c.T=null),c.ob=-1);FlowPaperViewer_HTML.prototype.distance=function(c,d,e,g){c=e-c;d=g-d;return Math.sqrt(c*c+d*d);};FlowPaperViewer_HTML.prototype.turn=function(c){var d=this;d.I.Di&&"None"!=d.I.Di&&(d.fj&&d.fj.remove(),window.setTimeout(function(){d.fj=new qa(d.I.Qi+"../sounds/"+d.I.Di+".mp3");d.fj.start();},200));var e=arguments[0],g=2==arguments.length?arguments[1]:null;!d.I.rb||"next"!=e&&"previous"!=e||d.Pa||d.ab?(jQuery("#"+d.pages.Kb).css("z-index",-1),d.va&&(1==arguments.length&&d.va.turn(arguments[0]),2==arguments.length&&d.va.turn(arguments[0],arguments[1]))):!d.pages.le()&&!d.pages.animating||d.I.gh?requestAnim(function(){window.clearTimeout(d.Xf);d.Xf=null;d.pages.Lj(e,g);}):(window.clearTimeout(d.Xf),d.Xf=window.setTimeout(function(){d.turn(e,g);},500));};FlowPaperViewer_HTML.prototype.yl=function(){var c=this;c.zi||(c.zi=!0,c.Fk&&window.clearTimeout(c.Fk),c.Fk=requestAnim(function(){c.Pn(c);},40));};FlowPaperViewer_HTML.prototype.Pn=function(c){c.Wl();c.zi=!1;c.Ci&&(c.Ci=!1,c.yl());};FlowPaperViewer_HTML.prototype.Wl=function(){var c=this;c.T.find("li").each(function(){var d=c.pe;if(!(eb.browser.msie||eb.browser.safari&&5>eb.browser.Qb)||c.pe){if(d&&jQuery(d).get(0).tagName&&"IMG"!=jQuery(d).get(0).tagName&&"LI"!=jQuery(d).get(0).tagName&&"DIV"!=jQuery(d).get(0).tagName&&"CANVAS"!=jQuery(d).get(0).tagName){c.T.find("li").each(function(){jQuery(this).find("a").css({width:c.Nb,top:c.Nb/3});});}else{var d=jQuery(this).offset().left+jQuery(this).outerWidth()/2,e=jQuery(this).offset().top+jQuery(this).outerHeight()/2,d=c.distance(d,e,c.Ai,c.Bi),d=(1-Math.min(1,Math.max(0,d/c.Ik)))*c.Gk+c.Nb,e=jQuery(this).find("a").find("canvas").data("origwidth"),g=jQuery(this).find("a").find("canvas").data("origheight"),f=d/e;e&&g&&(eb.browser.msie||eb.browser.safari&&5>eb.browser.Qb?(jQuery(this).find("a").animate({height:g*f,width:d,top:d/3},0),jQuery(this).find("a").find("canvas").css({height:g*f,width:d,top:d/3}),c.Qr=c.pe):jQuery(this).find("a").css({width:d,top:d/3}));}}});};jQuery(c.toolbar.K).css("visibility","visible");c.T&&c.T.css({"z-index":9,"pointer-events":"none"});c.I.Na.animate({opacity:1},300);c.I.Kp&&c.expandOutline();};this.dispose=function(){c.va.turn("destroy");delete c.va;};this.Fg=function(){c.va=null;};this.switchMode=function(d,g){c.va&&c.va.turn("destroy");c.va=null;"Portrait"==d||"SinglePage"==d?(c.Xd=c.L.height(),c.Xd=c.Xd-jQuery(c.K).outerHeight()+20,c.L.height(c.Xd)):(c.Og=0!=g%2?g-1:g,c.Xd=null,c.L.css({left:"0px",top:"0px",position:"relative",width:c.L.parent().width()+"px",height:c.L.parent().height()+"px"}),c.ik());"FlipView"==c.H&&"FlipView"!=d&&(c.config.document.MinZoomSize=1,jQuery(c.pages.J).turn("destroy"),c.T&&c.T.remove());c.pages.ee&&c.pages.pd&&c.pages.pd();"FlipView"!=d&&c.config.document.pl&&(c.config.document.MinZoomSize=c.config.document.pl);"FlipView"==d&&(c.scale=1,c.H="FlipView",c.I.rb=c.I.oi());};this.oi=function(){return c.config.document.EnableWebGL&&!eb.platform.lb&&!eb.platform.android&&!eb.browser.uh&&!c.I.ta&&eb.browser.capabilities.mq&&"Flip-SinglePage"!=c.config.document.InitViewMode&&window.THREE;};this.gotoPage=function(d,g){"FlipView"==c.H&&c.pages.ho(d,g);};this.Kc=function(d){if("FlipView"==c.H){1<c.pages.R&&1==c.scale?jQuery(c.pages.J+"_panelLeft").animate({opacity:1},100):1==c.pages.R&&jQuery(c.pages.J+"_panelLeft").animate({opacity:0},100);if(c.pages.R<c.getTotalPages()&&1.1>=c.scale){1<c.getTotalPages()&&jQuery(c.pages.J+"_panelRight").animate({opacity:1},100),c.T&&"1"!=c.T.css("opacity")&&window.setTimeout(function(){1.1>=c.scale&&(c.T.show(),c.T.animate({opacity:1},100));},700);}else{if(1.1<c.scale||c.pages.R+2>=c.getTotalPages()||0!=c.getTotalPages()%2&&c.pages.R+1>=c.getTotalPages()){jQuery(c.pages.J+"_panelRight").animate({opacity:0},100),1==c.scale&&0==c.getTotalPages()%2&&c.pages.R-1<=c.getTotalPages()?c.T&&(c.T.show(),c.T.animate({opacity:1},100)):c.T&&c.T.animate({opacity:0},0,function(){c.T.hide();});}}eb.platform.touchonlydevice||(window.clearTimeout(c.xo),c.xo=setTimeout(function(){0!=parseInt(d)%2&&(d=d-1);var g=[d-1];1<d&&parseInt(d)+1<=c.document.numPages&&!c.ta&&g.push(d);for(var h=0;h<g.length;h++){jQuery(".flowpaper_mark_link, .pdfPageLink_"+g[h]).stop(),jQuery(".flowpaper_mark_link, .pdfPageLink_"+g[h]).css({background:c.linkColor,opacity:c.Oc}),jQuery(".flowpaper_mark_link, .pdfPageLink_"+g[h]).animate({opacity:0},{duration:1700,complete:function(){}});}},100));}};this.Jh=function(){this.F.T&&(this.Hk=this.F.T.css("margin-left"),this.F.T.animate({"margin-left":parseFloat(this.F.T.css("margin-left"))+0.5*this.F.Pa.width()+"px"},200));};this.Vl=function(){this.F.T&&(this.Hk=this.F.T.css("margin-left"),this.F.T.animate({"margin-left":parseFloat(this.F.T.css("margin-left"))+0.5*this.F.ab.width()+"px"},200));};this.Qf=function(){this.F.T&&this.F.T.animate({"margin-left":parseFloat(this.Hk)+"px"},200);};this.resize=function(d,g,h,f){if(!$(".flowpaper_videoframe").length||!eb.platform.ios){if(c.gc=c.bb&&!c.I.He?c.I.Na.height():0,c.I.vk(),"FlipView"==c.H&&c.pages){var k=-1<c.L.get(0).style.width.indexOf("%"),l=-1<c.L.get(0).style.width.indexOf("%");k&&(c.Pa||c.ab)&&(c.L.data("pct-width",c.L.get(0).style.width),k=!1);l&&(c.Pa||c.ab)&&(c.L.data("pct-height",c.L.get(0).style.height),l=!1);k||!c.L.data("pct-width")||c.Pa||c.ab||(c.L.css("width",c.L.data("pct-width")),k=!0);l||!c.L.data("pct-height")||c.Pa||c.ab||(c.L.css("height",c.L.data("pct-height")),l=!0);c.L.css({width:k?c.L.get(0).style.width:d-(c.Pa?c.Pa.width():0)-(c.ab?c.ab.width():0),height:l?c.L.get(0).style.height:g-35});d=c.L.width();g=c.L.height();k&&l||(d-5<jQuery(document.body).width()&&d+5>jQuery(document.body).width()&&g+37-5<jQuery(document.body).height()&&g+37+5>jQuery(document.body).height()?(c.N.css({width:"100%",height:"100%"}),c.I.He&&jQuery(jQuery(c.L).css("height",jQuery(c.L).height()-40+"px"))):null!=h&&1!=h||c.N.css({width:d+(c.Pa?c.Pa.width():0)+(c.ab?c.ab.width():0),height:g+37}));c.pages.resize(d,g,f);c.T&&c.L&&(c.If=jQuery(c.L).offset().top+jQuery(c.pages.J).height()-jQuery(c.N).offset().top+c.gc,c.T.css({top:c.If-(c.T.find(".flowpaper_fisheye_panelLeft").offset().top-jQuery(c.T).offset().top)+c.T.find(".flowpaper_fisheye_panelLeft").height()/2}),c.Md=0.25*c.L.height());for(d=0;d<c.document.numPages;d++){c.pages.Ra(d)&&(c.pages.pages[d].Gl=!0,c.pages.pages[d].pa=!1);}window.clearTimeout(c.nq);c.nq=setTimeout(function(){c.nc();c.pages.Ea();},350);}}};this.setCurrentCursor=function(){};this.xp=function(c,d){var h=this.I;"brandingUrl"==c&&(h.O.config.document.BrandingUrl=d);"brandingLogo"==c&&((h.O.config.document.BrandingLogo=d)&&0<d.length?(h.O.N.append(String.format("<div class='flowpaper_custom_logo'><a href='#' data-brandingUrl='{1}'><img src='{0}' border='0' width='80'></a></div>",h.O.config.document.BrandingLogo,h.O.config.document.BrandingUrl?h.O.config.document.BrandingUrl:"#")),h.O.N.find(".flowpaper_custom_logo").bind("click touchstart",function(){jQuery(h.O.L).trigger("onExternalLinkClicked",$(this).find("a").attr("data-brandingUrl"));})):h.O.N.find(".flowpaper_custom_logo").remove());if("backgroundColor"==c||"backgroundAlpha"==c||"stretchBackground"==c||"backgroundImage"==c){if("backgroundColor"==c&&(h.backgroundColor=d),"backgroundAlpha"==c&&(h.Pe=d),"stretchBackground"==c&&(h.Dj=d),"backgroundImage"==c&&(h.backgroundImage=d),h.backgroundImage){FLOWPAPER.authenticated&&(h.backgroundImage=FLOWPAPER.appendUrlParameter(h.backgroundImage,FLOWPAPER.authenticated.getParams())),h.Dj?(jQuery(h.O.L).css("background-color",""),jQuery(h.O.L).css("background",""),jQuery(h.O.N).css({background:"url('"+h.backgroundImage+"')","background-size":"cover"}),jQuery(h.O.L).css("background-size","cover")):(jQuery(h.O.L).css("background",""),jQuery(h.O.N).css({background:"url('"+h.backgroundImage+"')","background-color":h.backgroundColor}),jQuery(h.O.L).css("background-size",""),jQuery(h.O.L).css("background-position","center"),jQuery(h.O.N).css("background-position","center"),jQuery(h.O.L).css("background-repeat","no-repeat"),jQuery(h.O.N).css("background-repeat","no-repeat"));}else{if(h.backgroundColor&&-1==h.backgroundColor.indexOf("[")){var f=R(h.backgroundColor),f="rgba("+f.r+","+f.g+","+f.b+","+(null!=h.Pe?parseFloat(h.Pe):1)+")";jQuery(h.O.L).css("background",f);jQuery(h.O.N).css("background",f);h.O.bb||jQuery(h.Na).css("background",f);}else{if(h.backgroundColor&&0<=h.backgroundColor.indexOf("[")){var k=h.backgroundColor.split(",");k[0]=k[0].toString().replace("[","");k[0]=k[0].toString().replace("]","");k[0]=k[0].toString().replace(" ","");k[1]=k[1].toString().replace("[","");k[1]=k[1].toString().replace("]","");k[1]=k[1].toString().replace(" ","");f=k[0].toString().substring(0,k[0].toString().length);k=k[1].toString().substring(0,k[1].toString().length);jQuery(h.O.L).css("background","");jQuery(h.O.N).css({background:"linear-gradient("+f+", "+k+")"});jQuery(h.O.N).css({background:"-webkit-linear-gradient("+f+", "+k+")"});eb.browser.msie&&10>eb.browser.version&&(jQuery(h.O.L).css("filter","progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorStr='"+f+"', endColorStr='"+k+"');"),jQuery(h.O.N).css("filter","progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorStr='"+f+"', endColorStr='"+k+"');"));}else{jQuery(h.O.N).css("background-color","#222222");}}}}"shadowAlpha"==c&&(h.rf=h.F.rf=d,jQuery(".flowpaper_zine_page_left").css("background-image","-webkit-gradient(linear,left bottom,right bottom,color-stop(0.93, rgba(255,255,255,0)),color-stop(1, rgba(125,124,125,"+h.rf+")))"),jQuery(".flowpaper_zine_page_right").css("background-image","-webkit-gradient(linear,right bottom,left bottom,color-stop(0.93, rgba(255,255,255,0)),color-stop(1, rgba(125,124,125,"+h.rf+")))"),h.I.rb&&h.F.pages.pd());if("panelColor"==c||"navPanelBackgroundAlpha"==c){"panelColor"==c&&(h.hb=d),"navPanelBackgroundAlpha"==c&&(h.Ae=d),h.hb?(jQuery(h.toolbar.K).css("background-color",h.hb),jQuery(h.toolbar.K).css("border-color",h.hb),h.He&&jQuery(h.toolbar.K+"_wrap").css("background-color",h.hb)):eb.platform.touchonlydevice?!jQuery(toolbar_el).attr("gradients")||jQuery(toolbar_el).attr("gradients")&&"true"==jQuery(toolbar_el).attr("gradients")?jQuery(h.toolbar.K).addClass("flowpaper_toolbarios_gradients"):jQuery(h.toolbar.K).css("background-color","#555555"):jQuery(h.toolbar.K).css("background-color","#555555"),f=R(h.hb),jQuery(h.F.pages.J+"_panelLeft").css("background-color","rgba("+f.r+","+f.g+","+f.b+","+h.Ae+")"),jQuery(h.F.pages.J+"_panelRight").css("background-color","rgba("+f.r+","+f.g+","+f.b+","+h.Ae+")");}"linkColor"==c&&(h.linkColor=d,h.O.linkColor=h.linkColor,jQuery("a.flowpaper_interactiveobject_documentViewer").css("background-color",h.linkColor),h.Kc(h.O.getCurrPage()));"linkAlpha"==c&&(h.Oc=d,h.O.Oc=h.Oc,jQuery("a.flowpaper_interactiveobject_documentViewer").css("opacity",h.Oc),h.Kc(h.O.getCurrPage()));"arrowColor"==c&&(h.O.qb=d,h.O.I.qb=d,h.O.T.find(".flowpaper_fisheye_leftArrow").De(h.O.ih,h.O.I.qb?h.O.I.qb:"#AAAAAA"),h.O.T.find(".flowpaper_fisheye_rightArrow").zd(h.O.ih,h.O.I.qb?h.O.I.qb:"#AAAAAA"),f=jQuery(h.O.pages.J+"_arrowleft").css("border-bottom"),f=parseInt(f.substr(0,f.indexOf("px"))),jQuery(h.O.pages.J+"_arrowleft").De(f,h.O.qb),jQuery(h.O.pages.J+"_arrowright").zd(f,h.O.qb),h.O.I.ug&&(f=jQuery(h.O.pages.J+"_arrowleftbottom").css("border-bottom"),f=f.substr(0,f.indexOf("px")),jQuery(h.O.pages.J+"_arrowleftbottom").De(f,h.O.qb),jQuery(h.O.pages.J+"_arrowleftbottommarker").mj(f,h.O.qb,jQuery(h.O.pages.J+"_arrowleftbottom")),jQuery(h.O.pages.J+"_arrowrightbottom").zd(f,h.O.qb),jQuery(h.O.pages.J+"_arrowrightbottommarker").nj(f,h.O.qb,jQuery(h.O.pages.J+"_arrowrightbottom"))));"enablePageShadows"==c&&(h.O.Ld=d,h.O.Ld?(jQuery(".flowpaper_zine_page_left_noshadow").addClass("flowpaper_zine_page_left").removeClass("flowpaper_zine_page_left_noshadow"),jQuery(".flowpaper_zine_page_right_noshadow").addClass("flowpaper_zine_page_right").removeClass("flowpaper_zine_page_right_noshadow")):(jQuery(".flowpaper_zine_page_left").addClass("flowpaper_zine_page_left_noshadow").removeClass("flowpaper_zine_page_left"),jQuery(".flowpaper_zine_page_right").addClass("flowpaper_zine_page_right_noshadow").removeClass("flowpaper_zine_page_right")),h.O.Ld?jQuery(".flowpaper_shadow_disabled").removeClass("flowpaper_shadow_disabled").addClass("flowpaper_shadow"):jQuery(".flowpaper_shadow").removeClass("flowpaper_shadow").addClass("flowpaper_shadow_disabled"),jQuery(window).trigger("resize"));if("arrowSize"==c){h.O.I.Ef=h.O.pages.ia=h.O.Ef=d;jQuery(window).trigger("resize");var f=h.O.pages,k=h.O.I.qb?h.O.I.qb:"#AAAAAA",l=f.bf();jQuery(f.J+"_arrowleft").De(f.ia-0.4*f.ia,k);jQuery(f.J+"_arrowright").zd(f.ia-0.4*f.ia,k);jQuery(f.J+"_arrowleft").css({left:(f.ia-(f.ia-0.4*f.ia))/2+"px",top:l/2-f.ia+"px"});jQuery(f.J+"_arrowright").css({left:(f.ia-(f.ia-0.4*f.ia))/2+"px",top:l/2-f.ia+"px"});}};this.Ln=function(c,d){var h=this.I;d?jQuery(".flowpaper_"+c).show():jQuery(".flowpaper_"+c).hide();"txtPageNumber"==c&&(d?jQuery(".flowpaper_lblTotalPages").show():jQuery(".flowpaper_lblTotalPages").hide());"txtSearch"==c&&(d?jQuery(".flowpaper_bttnFind").show():jQuery(".flowpaper_bttnFind").hide());"firstLastButton"==c&&(h.O.I.ug=d,h.O.I.ug?(jQuery(h.O.pages.J+"_arrowleftbottom").css("opacity",1),jQuery(h.O.pages.J+"_arrowleftbottommarker").css("opacity",1),jQuery(h.O.pages.J+"_arrowrightbottom").css("opacity",1),jQuery(h.O.pages.J+"_arrowrightbottommarker").css("opacity",1)):(jQuery(h.O.pages.J+"_arrowleftbottom").css("opacity",0),jQuery(h.O.pages.J+"_arrowleftbottommarker").css("opacity",0),jQuery(h.O.pages.J+"_arrowrightbottom").css("opacity",0),jQuery(h.O.pages.J+"_arrowrightbottommarker").css("opacity",0)));if("toolbarstd"==c){var f=h.O.pages.bf(),k=h.O.I.Na.height();jQuery(h.O.pages.J+"_parent").css("padding-top","");jQuery(h.O.pages.J+"_parent").css("margin-top","");h.xf=d;h.O.pages.Hb=h.O.Zb&&!h.O.I.gb||0==k?(h.L.height()-f)/2:0;h.O.pages.Hb=0==h.O.pages.Hb&&h.O.bb&&!h.O.Zb&&0<k&&!h.O.I.gb?(h.L.height()-f)/2-k:h.O.pages.Hb;h.O.bb||h.O.I.gb?0<h.O.pages.Hb&&!h.O.I.gb&&jQuery(h.O.pages.J+"_parent").css("padding-top",h.O.pages.Hb+"px"):jQuery(h.O.pages.J+"_parent").css("margin-top","2.5%");jQuery(window).trigger("resize");}"navPanelsVisible"==c&&(h.mf=d,h.mf?(jQuery(h.O.pages.J+"_panelLeft").css("opacity",1),jQuery(h.O.pages.J+"_panelRight").css("opacity",1)):(jQuery(h.O.pages.J+"_panelLeft").css("opacity",0),jQuery(h.O.pages.J+"_panelRight").css("opacity",0)));"fisheye"==c&&(h.gb=d,f=h.O.pages.bf(),k=h.O.I.Na.height(),jQuery(h.O.pages.J+"_parent").css("padding-top",""),jQuery(h.O.pages.J+"_parent").css("margin-top",""),h.O.pages.Hb=h.O.Zb&&!h.O.I.gb||0==k?(h.L.height()-f)/2:0,h.O.pages.Hb=0==h.O.pages.Hb&&h.O.bb&&!h.O.Zb&&0<k&&!h.O.I.gb?(h.L.height()-f)/2-k:h.O.pages.Hb,h.O.bb||h.O.I.gb?0<h.O.pages.Hb&&!h.O.I.gb?(jQuery(h.O.pages.J+"_parent").css("margin-top",""),jQuery(h.O.pages.J+"_parent").css("padding-top",h.O.pages.Hb+"px")):jQuery(h.O.pages.J+"_parent").css("padding-top",""):(jQuery(h.O.pages.J+"_parent").css("padding-top",""),jQuery(h.O.pages.J+"_parent").css("margin-top","2.5%")),h.gb?jQuery(".flowpaper_fisheye").css("visibility",""):jQuery(".flowpaper_fisheye").css("visibility","hidden"),jQuery(window).trigger("resize"));};window[this.O.hf].setStyleSetting=this.xp;FLOWPAPER.setStyleSetting=function(c,d){$FlowPaper("documentViewer").setStyleSetting(c,d);};window[this.O.hf].enableDisableUIControl=this.Ln;FLOWPAPER.enableDisableUIControl=function(c,d){$FlowPaper("documentViewer").enableDisableUIControl(c,d);};window[this.O.hf].changeConfigSetting=this.vn;window[this.O.hf].loadUIConfig=function(c){var d=this;jQuery("#"+d.Ja+"_wrap").remove();d.Toolbar=d.N.prepend("<div id='"+d.Ja+"' class='flowpaper_toolbarstd' style='z-index:200;overflow-y:hidden;overflow-x:hidden;'></div>").parent();d.I.Na=d.Zb?jQuery("#"+d.Ja).wrap("<div id='"+d.Ja+"_wrap' style='"+(d.bb?"position:absolute;z-index:50;":"")+"text-align:center;width:100%;position:absolute;z-index:100;top:-70px'></div>").parent():jQuery("#"+d.Ja).wrap("<div id='"+d.Ja+"_wrap' style='"+(d.bb?"position:absolute;z-index:50;":"")+"text-align:center;width:100%;'></div>").parent();d.I.ll(c,function(){d.toolbar.bindEvents(d.L);d.toolbar.Cc=null;d.toolbar.hk(d.config.document.MinZoomSize,d.config.document.MaxZoomSize);});};};window.FlowPaper_Resources=function(f){this.F=f;this.ma={};this.ma.oq="";this.ma.Sm="";this.ma.Om="";this.ma.Am="";this.ma.Rm="";this.ma.Vm="";this.ma.Um="";this.ma.Nm="";this.ma.Mm="";this.ma.Em="";this.ma.xm="";this.ma.ym="";this.ma.Tm="";this.ma.Gm="";this.ma.Dm="";this.ma.Qm="";this.ma.Cq="";this.ma.Eq="";this.ma.Fq="";this.ma.Kq="";this.ma.Iq="";this.ma.Oq="";this.ma.Pq="";this.ma.Qq="";this.ma.Nq="";this.ma.Rq="";this.Yo=function(){var c=this.F,d=this,e=-1===document.URL.indexOf("http://")&&-1===document.URL.indexOf("https://");W();var g=window.navigator.hg||window.matchMedia&&window.matchMedia("(display-mode: standalone)").matches,h=!0,h=h="",h=["Z1n3d0ma1n"],h=h[0],h=c.resources.pm(h,g&&e);h||(h=["d0ma1n"],h=h[0]+"#FlexPaper-1-4-5-Annotations-1.0.10",h=c.resources.pm(h,g&&e));h||alert("License key not accepted. Please check your configuration settings.");jQuery(".flowpaper_tbloader").hide();h&&(c.Yi=new Image,jQuery(c.Yi).bind("load",function(){jQuery(d).trigger("onPostinitialized");}),c.Yi.src=c.ie);};this.pm=function(c,d){var e=this.F,g=Math.pow(9,3),h=Math.pow(6,2),f=null!=e.config.key&&0<e.config.key.length&&0<=e.config.key.indexOf("@"),k=function(){var c=Array.prototype.slice.call(arguments),d=c.shift();return c.reverse().map(function(c,e){return String.fromCharCode(c-d-28-e);}).join("");}(14,144,124)+(20196).toString(36).toLowerCase()+function(){var c=Array.prototype.slice.call(arguments),d=c.shift();return c.reverse().map(function(c,e){return String.fromCharCode(c-d-9-e);}).join("");}(27,150,102,155)+(928).toString(36).toLowerCase(),k=parseInt(g)+Fa(!0)+k,h=parseInt(h)+Fa(!0)+"AdaptiveUId0ma1n",g=ka(parseInt(g)+(f?e.config.key.split("$")[0]:Fa(!0))+c),h=ka(h),k=ka(k),g="$"+g.substring(11,30).toLowerCase(),h="$"+h.substring(11,30).toLowerCase(),k="~"+k.substring(11,30).toLowerCase();return validated=d?W()||e.config.key==k:W()||e.config.key==g||e.config.key==h||f&&g=="$"+e.config.key.split("$")[1];};this.initialize=function(){var c=this.F;c.N.prepend(String.format("<div id='modal-I' class='modal-content'><p><a href='https://flowpaper.com/?ref=FlowPaper' target='_new'><img src='{0}' style='display:block;width:100px;heigh:auto;padding-bottom:10px;' border='0' /></a></p>FlowPaper  web PDF viewer 3.3.6. Developed by Devaldi Ltd.<br/><a href='https://flowpaper.com/' target='_new'>Click here for more information about this online PDF viewer</a></div>","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAL4AAABTCAMAAAAWcE3zAAAC91BMVEUAAAAAAAAAAAAAAAAAAAAAAAAMFhkAAAAAAAAAAAAAAAAAAAAAAAAAAADreiwAAAAAAAALBgsAAAAAAAAAAAAAAAAAAAAAAAAIAwYAAAAAAAAAAAAAAAAAAAD6mjTnRBDov2nALVntfSQAAADZVS7+0lrbUCbqRTL9w0T+mybiMwb90WHPJwPYKATEPg/JNgf9y1fo21/w42HGRA34xnT9zk7hrbPUtKbir3pmjHO9v3HekWeUi2SdrGHTUF6qWFrdZCz+107+iA3tahl4SIHcQg/JOw31hCDYb0n0j0D91kTAQyT+hgr4MQH+rRz+01jKKwf9zU/7yVP+5F/JNgDQURv8mDLsIwDsTQXXNgv+lSXqhVDtcTraZiP7TALpQizyikT9z0D902T23F7tPgLyGAC2GAD8WgH90UK/QVq6QA3saDbsZUDfGwLYVhn9z2jwaDLZqaf4v1H0u2PGOQDkelSxIAH4nU7cf1X7RgA3hqZ+i2uttmjXUifWmp41gZ5gLVH2GQDlEQD80DJhLVHra0IAAAD2FwD8u1jACgD9kS3+2VzspDTUZDjfJgDbcVPVHgD0HQDkJADSYCv7XwH5VQDGLADnGAD7egzXMQLqcgDfHADWUjH8bgHaYADYRADEGwDBEwDbZTPiHwDbYiz8hhPYNg3TFADKQQHXOgHtdQD90Wj6ZwLhaErpQS77dQPGNQA3hqb4m0DbXCjCURbVa0DrYzP4bi3cSBrpXgLdNgHGJAD7k1D4lTX7jxz8TAH8pEzcayz8wWL8t1PraT3rmSndPgjZTADKSQD8rE3wqkD5eTLgYUD7njHrlCLSXRznKQPts1P7pTzPUzzpOx/bYBvveQLKOAL7iwHxiEXuijfUUBnqNgz+OADKHgDut1n90VDDTSrvRwLWmp5gLVH2XQDrrV7ud1TZWjfufTTkWDjPSC7lcSjykyLtbgzjTwCqGADefGPtcU3maAPOFQDTX0rLWS21DgDbeVS5IAHrtGXqoEPqUiy1tFpHAAAAhnRSTlMA97CmJWULHNvh73LWewZMLRYGn+i6iUAQgFk2zpNEHBP+DMUU/v7+HWNd3Kn+kW9l/fzZmkb+/v7+/v7+/v7+wol7STs4Kyr+W1j9jo54dkst/v3Bs6p3de/Ep3f95+Pft7WpT+zGsqimSe/e3tXLyqae+/Pw4d/Vyaamppbz8/PIyL6mkpsdQGgAAA0oSURBVGje1NQxaoRAGIbhrwikyhwgISKygmIjCx5AU4iDKDqwvbuNdVLkACnnKF5iSZdTOJWH2CrjsmRNxl1Itb/PCV5+vhn8E+eYFXmgj8XxR4gZZYwFiEvYLUx8vYTjVw2Dx2GIxCKOX4QAg6FaiyUcH5vZSjsQW1AUcQcT3gZzdkJwEMSbuIlwZhWYUUpBczuth2ran/kwRVLKABTFHLDbCjjxLRi8QOfvQJEdOuPgV9fyG6lR/jZf8iv5pZJaCcIS62J+pFyphSBslTsX8u1ASfL58H0cZX/zW6Uk+fGAnc6fZfglVDqf+tM9n9/yMVXVapx+13U0P87J+pmZbwe163YjN2AgLbHM/Nevof881rtuBdLSxMi39vthGN50vUb76wHyFEBa4IfzPuYfDn1f6/wtpu4fnu8en3Ab7JvZOgltIoziAP4yyWQmyaRZZiZ7NDYFS6ug4r7ijkJxOahUKeKCeHI7ueACUksRiZKQaAkeSihIMJhLKbSNWKrE0NJKkVQiQtWDB/WgNz343peaRFO1Iop/CEym38DvPd68JjDFJK+n9tdX8Ne1t6eR/2J0dJQKqIdy9JIkW0U3/PPMnLH2wLHGxsZjB7YtClTtzkr+5vb29r5Pn64+Rj0VsBXKcWoEAMkM/zS1G/cdz+XS2TZ8HSmNJxd9sztx5wfK/F3IT38aHrzKCngxehLKsShQ5tvhR7H/7LL6yZq6ukCdK1Cnd7kCgUBdgEK3AV07tuzd393dncv1pdPp+1gC1rBzZ/P6yt2JFZb4M9qJPzh8lfL48eiL8urUO1SN7LAzvk6WRNUD4HJYAcOzkmwOwWsCk0/0mZnQyUlikKc/O21+nxT0wORdSdbRXR14tPj4hlmr56+8uGTNvQvLVi1fMev84qXzF1Ifm5uPNd7v7e0lfjvy0X//fnag7cFALHVkc8XuLPNrmon/dpj4rIC2B6XV6SrzvUbVY3Fo/GA3+KmdSit5PK16XtQGeSevBPUAFo3f4jRrTAAqF9RanA6Ngx2SLRbViGyF5xROx/gLVr5C/j3GfznJr9819CTbW+L3YQFPyJ8dSIczmZY9FbuzZl3pvcX0l/iPB9raKibNaSwOj16R2ddWD7hFujAYqMkcB3wrBxjB6GaVYcyKHbStJjZ7rU4QNGago0EAnyi7AH7Ep0loDo8jP0d85n/yhPHb4+jPHJn5dXfOhD01xUr6SZ9gfNZ7TMXmtxhdjO/RuICi9YFVg310aN0qgN7oQb4VKCbFrvfr2DMaPWgVYAlqwWQAioCPiVj5T/lQ2xTJ9faOI59cfUND6M9ms7E487ccmtyde2B3LVCa8/2oTwzTm0t6yrZqvhwEFg9+F03YR96quMBptAFv1APFqyG7y2rhfXiHU4HFLIJWtXopCg8G9y/4RGvJ0fTEEv1YwFDR35eMx1PJTOb58ybW9Jqmmt11bHRSsQSG+CX9wBTdV2WYRArgCIKgCGCwgB+RvME+2V0vWDmDGJRlBflaYOEV4IyGYpBv+jUfZh7J4fTEKvzZBPLjychzzOlNgGk41ECDdCiOSSUS/cODgyX9wKJqvhahxcGw4Vus9/gAtH4QeSh136rRCUbOq6dnkM8BhSaHk/UULHJafOptdy5GfPQPMX88mQxjmP9wA+3O3cTfPneC/MgfRD7qCT9wqr6Kj8hij/0S4BtqkR0AHp/VKEBp9nkjtZrCl2efynBLwOJ3TotP2ZNJYuJsMLCKRDgSpiTDz69gmlDe0FQLDXM7OgrJFB57i/yiHpfsAajm24zm4oTwBFElJ15LWpWtRTYndtEPJmbWS0bAzcMDxtpqYR92TjdtPuzOZCKRyOt4KpWKxfI492GWnmtXKIebNm681DCno6Ozs3PkdSqFfNRTUP+gYvSLG8fgpqlx6ASPgSuuTwMNjMqIvEHlvII3KNpAp9FaBYvq15j12qDPjefZunVreEHgaX0q0+VDE+MniZ/PJ2Mx8r/u6Ql1EJ8quB4Nkf5G541IKva2Qt9YC+V4OYTKHjKroiSZgGLnzKw0VSC+qHdIkijb6ExQpP+0DtXFyQInfT3P+yTJR6XKFmCxHT168OzlE0fPnDl77tzeoydOLDw4D77NkQjzEz8Wxjchjvie910fo0X+9evRDur+DcxE/O3oA8ZHPTV/6rhQWB3egPXY7N+d4bTfnLfZ4Dczs4X549R84j+9VeR3TfKvlPgjNwrd6T4K/czYBb8XWpxVIf4fpiFD/mQ+n48kY0+f3rlzi/hdHzsIT58Sf2SkMNHz4d27N8+ePdtfD78Xk3Eqvsr9Kb/mNPrD8VQ+FUk+RT75H3Z1dYWiqMdEmZ7xxwqFHtJjZsBvxmuGKcJ74M/bT/pUPvn6XVF/6xbyQ6EQ6qn7JX4B+RNMPz4D/pvUtUyw9BCf6e88ChG/81t+YezuWGHszbPx8f3T1PMmC/z9zOnsjEaj126/v8Oaj7l9M0SJkp5m/xpm5O7d2WNjn9+gfjNML8qXduznpck4DuD4Z21zutnaps0fmy1MFsTcDvsHhHAZXTwoJSl2qA72gw79unQJ+sIOZiVMVtLmGtMdjIE/WFsXQZyHYMEaQxaCp0yFSvuh0KHP9/tsj882IW1P4aD3wckjwuv7fb5+njlyGP5+7VQ/FPF4NrL8oLuZ+R/TEE97R/k/p6c/nm+EXVZODsDfT30tw3++wfE3go9Gm+kCnlH+C15/HPU3TgLAvtp9OEv5HuQ/f/6U8l89Gh1tdtM7MIT8J1T/nupXZq90q2H31VXJ4R9kujQ09MITRD7nx7E/6g4wP+Ozg4/8q91NapPJtO8+3cTtf8j42MYGG/uBAPrdzQ8Znx2d3vPdD25cvTJ95cL500dhP9V4fygSzPBjn15FcOwjny3gyeO3Gf3VW+uzs7PT+Me78PpON/xBWo1GVgZ56WR4VVfk8bmW5cc8nk/NWX4wGHQjP0CPzsr6+geOP7vwemGtpQmEyetyUjFlXYOcY+sbDgHghyCEkAppDQiS6SslhEjKG2TF+TuCbg/Vx2Kesajz61eOj0XePuw9jgd//cMH5DP/wse1tbUWde6MzEmiFU4eGSEHdQfwcrWSYHrBqukFZTX9Ii9uep7tinH4VMjldI6EQqFUKmXvCgYDL3t7qR5jpwcLh9HfnTNkpHxVRkKMZcK5L5MQlZSUy2VarUGPm81LVbhQvUGr1dThMlRFHqBz1xkeG3F6QyG7xdZnvRkKpVe7LM3hCb/f5xsfH3/zZmXFPDeXTiavw85py4lSA3n8SiKtzf5jRqoz39bgWTIAS4ZrroHiUrfarB12rMNiPeEAaO8IoX7Z3GUNxNPxdDr9JsMPh+eSyR4T7FTZMUIOQT6f3Q+uqixUZ2Tr5FJUE6MOREitBoziXdiY2WwO2673D9LaBqif8cPJZCsUxnQqKOAzMb/nB4F2iJA64JPTVYsW4mkpMzZhuzfF+AMDzD88PGxG/knYoYOEVEEhvxL4FBLSADQpUWoFd60CL4uUwxLN6ieweyenpnj+OPLRvzO/npBjZYV8oaysmlugDn+ce9uMIE62m94o+qOu9ASrs7EN/Tn8Zf9OfI2SVChgB/5BAb+cSLm7kDtsVPRmiJE1FYpiqPf7/ZTfAuenqH8Ay/B9vuSJwqFTSSQ18Dt+Bcc3EGI8IMhIJBpR9h6Hpwu3PxSf8bOQf6QN/f3b/GWfr+cc5HeYzvTd8mtIQQYovtaQC/O6xuIzMxl/CzTepf4B5l9mm++baYG8GugTdS98qSo3MQ5PZzjginq9TM/8PuTD6c22qbYvWf6yD+s5BTnJCXJ3z9cQUg+i14RTPRxY9AZnWD4a8tV3N5GP/s0B5PsYv6URBNXgeKzdA1+rJHoQPQfq5yIR96I7Hccm8N0C5cOpW5vI/9L2LZFILPfTBns61cCnqKbP0D3wwUiOgSDVYWktFJ3JTPWRoPPr4tj8/BjLCthpPPvfviVWV1cT/Rw/Ptm5jTLSp+ae+HoiMQCfrgJXI0Kdcxzfucj7uRFpmzyTSFD/cIY/OTnJD08pQeLe+Hj4D+f85chBhFrnqD84Qv2pebYAB7BOnDmzRP2DHP878juF7xX2yAepYFIZlKSyDMToYhfH5/12dXZldrqAxOAg0y9t8+sJKdfIBGl3w1dU4KJl7Fp9NX1XJ06mcxaLx+vEvMxv3R5LVvR/jzP/EuX38c8rSU763fBBU46/d0Cvl9JXOYgX4zN/aH7eIRxMVjuy44O4+fhqAy4pigv5lRIpx1dKVAJ+pYQ/Z9oGJeE6VgPi1er2eEdGmN/r6oCcmtqt9sn496Uzdiu/rlpFXrUMx72ATqEQHGt2mU9Rr6+SNsgNIGYWys/62yE/tam1r8/RCPs0U5fbEx3J+C/vu0/VftdFtzsW9Wb87VBq2Rif81+GkusE4zP/lgNKrqZr7piL89ugBLM1p39gW1sWKMkszh+fsctNUJKpLVtUb4JSzXb7tnXfPpj+978/6hdB8/liTj7Z3QAAAABJRU5ErkJggg=="));c.about=FLOWPAPER.about=function(){jQuery("#modal-I").smodal();};c.config.document.BrandingLogo&&3<c.config.document.BrandingLogo.length&&jQuery(c.L).bind("onPagesContainerCreated",function(){c.N.append(String.format("<div class='flowpaper_custom_logo'><a href='#' data-brandingUrl='{1}'><img src='{0}' border='0' width='80'></a></div>",c.config.document.BrandingLogo,c.config.document.BrandingUrl?c.config.document.BrandingUrl:"#"));c.N.find(".flowpaper_custom_logo").bind("click",function(){jQuery(c.L).trigger("onExternalLinkClicked",$(this).find("a").attr("data-brandingUrl"));});});};};function Fa(f){var c=window.location.href.toString();0==c.length&&(c=document.URL.toString());if(f){var d;d=c.indexOf("///");0<=d?d=d+3:(d=c.indexOf("//"),d=0<=d?d+2:0);c=c.substr(d);d=c.indexOf(":");var e=c.indexOf("/");0<d&&0<e&&d<e||(0<e?d=e:(e=c.indexOf("?"),d=0<e?e:c.length));c=c.substr(0,d);}if(f&&(f=c.split("."))&&(d=f.length,!(2>=d))){if(!(e=-1!="co,com,net,org,web,gov,edu,".indexOf(f[d-2]+","))){b:{for(var e=".ac.uk .ab.ca .bc.ca .mb.ca .nb.ca .nf.ca .nl.ca .ns.ca .nt.ca .nu.ca .on.ca .pe.ca .qc.ca .sk.ca .yk.ca".split(" "),g=0;g<e.length;){var h=e[g];if(-1!==c.indexOf(h,c.length-h.length)){e=!0;break b;}g++;}e=!1;}}c=e?f[d-3]+"."+f[d-2]+"."+f[d-1]:f[d-2]+"."+f[d-1];}return c;}function W(){var f=Fa(!1),c=window.navigator.hg||window.matchMedia&&window.matchMedia("(display-mode: standalone)").matches,d=-1===document.URL.indexOf("http://")&&-1===document.URL.indexOf("https://");return c||d?!1:0==f.indexOf("http://localhost/")||0==f.indexOf("http://localhost:")||0==f.indexOf("http://localhost:")||0==f.indexOf("http://192.168.")||0==f.indexOf("http://127.0.0.1")||0==f.indexOf("https://localhost/")||0==f.indexOf("https://localhost:")||0==f.indexOf("https://localhost:")||0==f.indexOf("https://192.168.")||0==f.indexOf("https://127.0.0.1")||0==f.indexOf("http://10.1.1.")||0==f.indexOf("http://git.devaldi.com")||0==f.indexOf("https://online.flowpaper.com")||0==f.indexOf("http://online.flowpaper.com")||0==f.indexOf("file://")?!0:0==f.indexOf("http://")?!1:0==f.indexOf("/")?!0:!1;}var Da=function(){function f(){}f.prototype={Pd:function(c,d){if(d.Wa&&(d.Ui||d.create(d.pages.J),!d.initialized)){c.vb=d.vb=c.config.MixedMode;c.mm=!1;c.nm=!1;var e=d.U;0==jQuery(e).length&&(e=jQuery(d.Rc).find(d.U));if("FlipView"==d.H){var g=0!=d.pageNumber%2?"flowpaper_zine_page_left":"flowpaper_zine_page_right";0==d.pageNumber&&(g="flowpaper_zine_page_left_noshadow");d.F.Ld||(g=0!=d.pageNumber%2?"flowpaper_zine_page_left_noshadow":"flowpaper_zine_page_right_noshadow");jQuery(e).append("<div id='"+d.aa+"_canvascontainer' style='height:100%;width:100%;position:relative;'><canvas id='"+c.Ca(1,d)+"' style='position:relative;left:0px;top:0px;height:100%;width:100%;"+(c.mm?"":"background-repeat:no-repeat;background-size:100% 100%;background-color:#ffffff;")+"display:none;' class='flowpaper_interactivearea flowpaper_grab flowpaper_hidden flowpaper_flipview_canvas flowpaper_flipview_page' width='100%' height='100%' ></canvas><canvas id='"+c.Ca(2,d)+"' style='position:relative;left:0px;top:0px;width:100%;height:100%;display:block;background-repeat:no-repeat;background-size:100% 100%;background-color:#ffffff;display:none;' class='flowpaper_border flowpaper_interactivearea flowpaper_grab flowpaper_rescale flowpaper_flipview_canvas_highres flowpaper_flipview_page' width='100%' height='100%'></canvas><div id='"+d.aa+"_textoverlay' style='position:absolute;z-index:11;left:0px;top:0px;width:100%;height:100%;' class='"+g+"'></div></div>");if(eb.browser.chrome||eb.browser.safari){eb.browser.safari&&(jQuery("#"+c.Ca(1,d)).css("-webkit-backface-visibility","hidden"),jQuery("#"+c.Ca(2,d)).css("-webkit-backface-visibility","hidden")),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","hidden");}eb.browser.mozilla&&(jQuery("#"+c.Ca(1,d)).css("backface-visibility","hidden"),jQuery("#"+c.Ca(2,d)).css("backface-visibility","hidden"),jQuery("#"+d.aa+"_textoverlay").css("backface-visibility","hidden"));}d.initialized=!0;}},Bp:function(c,d){if("FlipView"==d.H&&0==jQuery("#"+c.Ca(1,d)).length||"FlipView"==d.H&&d.pa){return !1;}"FlipView"!=d.H||null!=d.context||d.xc||d.pa||(d.Wc(),d.xc=!0);return !0;},Ap:function(c,d){return 1==d.scale||1<d.scale&&d.pageNumber==d.pages.R-1||d.pageNumber==d.pages.R-2;},Tb:function(c,d,e,g){1==d.scale&&eb.browser.safari?(jQuery("#"+c.Ca(1,d)).css("-webkit-backface-visibility","hidden"),jQuery("#"+c.Ca(2,d)).css("-webkit-backface-visibility","hidden"),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","hidden")):eb.browser.safari&&(jQuery("#"+c.Ca(1,d)).css("-webkit-backface-visibility","visible"),jQuery("#"+c.Ca(2,d)).css("-webkit-backface-visibility","visible"),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","visible"));if("FlipView"!=d.H||0!=jQuery("#"+c.Ca(1,d)).length){if("FlipView"!=d.H||!d.pa){if("FlipView"==d.H&&1<d.scale){if(d.pageNumber==d.pages.R-1||d.pageNumber==d.pages.R-2){jQuery(c).trigger("UIBlockingRenderingOperation",{P:c.P,Wo:!0});var h=3>d.scale?2236:3236;magnifier=h*Math.sqrt(1/(d.za()*d.Ha()));d.fa.width=d.za()*magnifier;d.fa.height=d.Ha()*magnifier;}else{c.yi=!1,d.fa.width=2*d.za(),d.fa.height=2*d.Ha(),d.pa=!0,jQuery("#"+d.Ib).Bc(),c.Wk(d),eb.platform.touchdevice&&(null!=c.Pi&&window.clearTimeout(c.Pi),c.Pi=setTimeout(function(){},1500)),null!=g&&g();}}else{d.vb&&c.pageImagePattern&&!d.ti?(d.Pc&&d.Pc(c.ga(d.pageNumber+1),c.ga(d.pageNumber+2)),d.dimensions.loaded||c.wc(d.pageNumber+1,!0,function(){c.Hc(d);},!0,d),d.Ym=!0,c.mm?(d.V=new Image,jQuery(d.V).bind("load",function(){d.Lr=!0;d.df=!0;d.ef=this.height;d.ff=this.width;c.zp(d);d.dimensions.la>d.dimensions.width&&(d.dimensions.width=d.dimensions.la,d.dimensions.height=d.dimensions.ya);d.zb=!1;c.Jd();}),jQuery(d.V).attr("src",c.ga(d.pageNumber+1))):null==d.V?(d.zb=!0,d.V=new Image,jQuery(d.V).bind("load",function(){window.clearTimeout(d.ue);jQuery(d.Sb).remove();jQuery(d.fa).css("background-image","url('"+c.ga(d.pageNumber+1)+"')");d.zb=!1;c.Jd();}),jQuery(d.V).bind("error",function(){jQuery.ajax({url:this.src,type:"HEAD",error:function(h){if(404==h.status||500<=h.status){d.ti=!0,d.zb=!1,d.Ym=!0,d.pa=!1,1==d.pageNumber&&d.F.pages.pd&&d.F.pages.pd(),c.Tb(d,e,g);}},success:function(){}});}),jQuery(d.V).bind("error",function(){window.clearTimeout(d.ue);jQuery(d.Sb).remove();jQuery(d.fa).css("background-image","url('"+c.ga(d.pageNumber+1)+"')");d.zb=!1;c.Jd();}),jQuery(d.V).attr("src",c.ga(d.pageNumber+1)),d.ue=setTimeout(function(){d.pa||(jQuery(d.Sb).remove(),jQuery(d.fa).css("background-image","url('"+c.ga(d.pageNumber+1)+"')"),d.zb=!1,c.Jd());},3000),c.Pi=setTimeout(function(){d.zb&&("none"==jQuery(d.fa).css("background-image")&&jQuery(d.fa).css("background-image","url('"+c.ga(d.pageNumber+1)+"')"),d.zb=!1,c.Jd());},6000)):d.zb||"none"==jQuery(d.fa).css("background-image")&&jQuery(d.fa).css("background-image","url('"+c.ga(d.pageNumber+1)+"')"),c.Ye(d,g)):!c.ra&&c.Ta?(magnifier=1236*Math.sqrt(1/(d.za()*d.Ha())),d.fa.width=d.za()*magnifier,d.fa.height=d.Ha()*magnifier):(d.fa.width=1*d.za(),d.fa.height=1*d.Ha());}}}},iq:function(c,d){return"FlipView"==d.H;},yj:function(c,d){"FlipView"==d.H&&(1<d.scale?(d.Ib=c.Ca(2,d),d.Sf=c.Ca(1,d)):(d.Ib=c.Ca(1,d),d.Sf=c.Ca(2,d)));},Ye:function(c,d){"FlipView"==d.H&&(1<d.scale?requestAnim(function(){var e=jQuery("#"+c.Ca(2,d)).get(0);eb.browser.safari&&c.nm&&(jQuery(e).css("background-image","url('"+e.toDataURL()+"')"),e.width=100,e.height=100);jQuery("#"+c.Ca(1,d)).Jb();}):(jQuery("#"+c.Ca(1,d)).Bc(),jQuery("#"+c.Ca(2,d)).Jb(),eb.browser.safari&&c.nm&&jQuery("#"+c.Ca(2,d)).css("background-image","")),d.vb&&c.pageImagePattern&&1==d.scale||jQuery(d.Sb).remove());jQuery(c).trigger("UIBlockingRenderingOperationCompleted",{P:c.P});c.Jd();}};CanvasPageRenderer.prototype.zh=function(c){return"FlipView"==c.H?1:1.4;};CanvasPageRenderer.prototype.zp=function(c){var d=c.fa;if(1==c.scale&&d&&(100==d.width||jQuery(d).hasClass("flowpaper_redraw"))&&d){d.width=c.za();d.height=c.Ha();var e=d.getContext("2d"),g=document.createElement("canvas"),h=g.getContext("2d");g.width=c.V.width;g.height=c.V.height;h.drawImage(c.V,0,0,g.width,g.height);h.drawImage(g,0,0,0.5*g.width,0.5*g.height);e.drawImage(g,0,0,0.5*g.width,0.5*g.height,0,0,d.width,d.height);jQuery(d).removeClass("flowpaper_redraw");1==c.scale&&(jQuery(c.U+"_canvas").Bc(),jQuery(c.U+"_canvas_highres").Jb());1<c.pageNumber&&jQuery(c.U+"_pixel").css({width:2*c.za(),height:2*c.Ha()});}jQuery(c.Sb).remove();};CanvasPageRenderer.prototype.oe=function(c,d,e){var g=this;if(null!=g.pageThumbImagePattern&&0<g.pageThumbImagePattern.length){for(var h=0,f=null,k=c.getDimensions(0)[0].width/c.getDimensions(0)[0].height,l=1;l<d;l++){h+=2;}0.5>k&&g.config.JSONDataType&&c.getDimensions(0)[0].la<c.getDimensions(0)[0].ya&&(k=0.7);var m=1==d?h+1:h,p=new Image;jQuery(p).bind("load",function(){var f=d%10;0==f&&(f=10);var l=c.N.find(".flowpaper_fisheye").find(String.format('*[data-thumbIndex="{0}"]',f)).get(0);l.width=e*k-2;l.height=e/k/2-2;var n=jQuery(l).parent().width()/l.width;l.getContext("2d").fillStyle="#999999";var r=(l.height-l.height*k)/2,t=l.height*k;0>r&&(l.height+=l.width-t,r+=(l.width-t)/2);eb.browser.msie&&jQuery(l).css({width:l.width*n+"px",height:l.height*n+"px"});jQuery(l).data("origwidth",l.width*n);jQuery(l).data("origheight",l.height*n);l.getContext("2d").fillRect(1==d?l.width/2:0,r,m==c.getTotalPages()?l.width/2+2:l.width+2,t+2);l.getContext("2d").drawImage(p,1==d?l.width/2+1:1,r+1,l.width/2,t);if(1<d&&h+1<=c.getTotalPages()&&m+1<=c.getTotalPages()){var x=new Image;jQuery(x).bind("load",function(){l.getContext("2d").drawImage(x,l.width/2+1,r+1,l.width/2,t);l.getContext("2d").strokeStyle="#999999";l.getContext("2d").moveTo(l.width-1,r);l.getContext("2d").lineTo(l.width-1,t+1);l.getContext("2d").stroke();jQuery(c).trigger("onThumbPanelThumbAdded",{vf:f,thumbData:l});});jQuery(x).attr("src",g.ga(m+1,200));}else{jQuery(c).trigger("onThumbPanelThumbAdded",{vf:f,thumbData:l});}});m<=c.getTotalPages()&&jQuery(p).attr("src",g.ga(m,200));}else{if(-1<g.Da(null)||1!=c.scale){window.clearTimeout(g.wf),g.wf=setTimeout(function(){g.oe(c,d,e);},50);}else{h=0;f=null;k=c.getDimensions(0)[0].width/c.getDimensions(0)[0].height;for(l=1;l<d;l++){h+=2;}m=1==d?h+1:h;if(!g.ra&&g.Ta&&(m=g.hh(m),m>g.Ia.numPages)){return;}var p=new Image,r=d%10;0==r&&(r=10);f=c.N.find(".flowpaper_fisheye").find(String.format('*[data-thumbIndex="{0}"]',r)).get(0);f.width=e*k;f.height=e/k/2;l=jQuery(f).parent().width()/f.width;eb.browser.msie&&jQuery(f).css({width:f.width*l+"px",height:f.height*l+"px"});jQuery(f).data("origwidth",f.width*l);jQuery(f).data("origheight",f.height*l);var t=f.height/g.getDimensions()[m-1].height;g.Ga(null,"thumb_"+m);g.Ia.getPage(m).then(function(l){var p=l.getViewport(t),v=f.getContext("2d"),A=document.createElement("canvas");A.height=f.height;A.width=A.height*k;var w={canvasContext:A.getContext("2d"),viewport:p,Lh:null,pageNumber:m,continueCallback:function(f){1!=c.scale?(window.clearTimeout(g.wf),g.wf=setTimeout(function(){g.oe(c,d,e);},50)):f();}};l.render(w).promise.then(function(){var l=(f.height-f.height*k)/2,q=f.height*k;0>l&&(f.height+=f.width-q,l+=(f.width-q)/2);g.Ga(null,-1,"thumb_"+m);1<d&&h+1<=c.getTotalPages()&&m+1<=c.getTotalPages()?-1<g.Da(null)||1!=c.scale?(window.clearTimeout(g.wf),g.wf=setTimeout(function(){g.oe(c,d,e);},50)):(!g.ra&&g.Ta&&(m=m-1),g.Ga(null,"thumb_"+(m+1)),g.Ia.getPage(m+1).then(function(h){p=h.getViewport(t);var k=document.createElement("canvas");k.width=A.width*(!g.ra&&g.Ta?2:1);k.height=A.height;w={canvasContext:k.getContext("2d"),viewport:p,Lh:null,pageNumber:m+1,continueCallback:function(f){1!=c.scale?(window.clearTimeout(g.wf),g.wf=setTimeout(function(){g.oe(c,d,e);},50)):f();}};h.render(w).promise.then(function(){g.Ga(null,-1);v.fillStyle="#ffffff";v.fillRect(1==d?f.width/2:0,l,f.width/2,q);1!=d&&v.fillRect(f.width/2,l,f.width/2,q);v.drawImage(A,1==d?f.width/2:0,l,f.width/2,q);!g.ra&&g.Ta?1!=d&&v.drawImage(k,k.width/2,0,k.width,k.height,f.width/2,l,f.width,q):1!=d&&v.drawImage(k,f.width/2,l,f.width/2,q);jQuery(c).trigger("onThumbPanelThumbAdded",{vf:r,thumbData:f});},function(){g.Ga(null,-1,"thumb_"+(m+1));});})):(v.fillStyle="#ffffff",v.fillRect(1==d?f.width/2:0,l,f.width/2,q),1!=d&&v.fillRect(f.width/2,l,f.width/2,q),v.drawImage(A,1==d?f.width/2:0,l,f.width/2,q),jQuery(c).trigger("onThumbPanelThumbAdded",{vf:r,thumbData:f}));},function(){g.Ga(null,-1);});});}}};return f;}(),Ca=function(){function f(){}f.prototype={Pd:function(c,d){if(d.Wa&&(d.Ui||d.create(d.pages.J),!d.initialized)){c.mb=!c.na&&null!=c.gj&&0<c.gj.length&&eb.platform.touchonlydevice&&!eb.platform.mobilepreview;if("FlipView"==d.H){var e=0!=d.pageNumber%2?"flowpaper_zine_page_left":"flowpaper_zine_page_right";0==d.pageNumber&&(e="flowpaper_zine_page_left_noshadow");d.F.Ld||(e=0!=d.pageNumber%2?"flowpaper_zine_page_left_noshadow":"flowpaper_zine_page_right_noshadow");var g=d.U;0==jQuery(g).length&&(g=jQuery(d.Rc).find(d.U));c.sh(d,g);c.na&&c.de(c,d)?(jQuery(g).append("<canvas id='"+d.aa+"_canvas' class='flowpaper_flipview_page' height='100%' width='100%' style='z-index:10;position:absolute;left:0px;top:0px;width:100%;height:100%;'></canvas><div id='"+d.aa+"_textoverlay' style='z-index:11;position:absolute;left:0px;top:0px;width:100%;height:100%;' class='"+e+"'></div>"),c.Xo=new Image,jQuery(c.Xo).attr("src",c.ea)):c.Db?jQuery(g).append("<canvas id='"+d.aa+"_canvas' class='flowpaper_flipview_page' height='100%' width='100%' style='z-index:10;position:absolute;left:0px;top:0px;width:100%;height:100%;'></canvas><canvas id='"+d.aa+"_canvas_highres' class='flowpaper_flipview_page' height='100%' width='100%' style='display:none;z-index:10;position:absolute;left:0px;top:0px;width:100%;height:100%;background-color:#ffffff;'></canvas><div id='"+d.aa+"_textoverlay' style='z-index:11;position:absolute;left:0px;top:0px;width:100%;height:100%;' class='"+e+"'></div>"):jQuery(g).append("<canvas id='"+d.aa+"_canvas' class='flowpaper_flipview_page' height='100%' width='100%' style='z-index:10;position:absolute;left:0px;top:0px;width:100%;height:100%;'></canvas><canvas id='"+d.aa+"_canvas_highres' class='flowpaper_flipview_page' height='100%' width='100%' style='image-rendering:-webkit-optimize-contrast;display:none;z-index:10;position:absolute;left:0px;top:0px;width:100%;height:100%;'></canvas><div id='"+d.aa+"_textoverlay' style='z-index:11;position:absolute;left:0px;top:0px;width:100%;height:100%;' class='"+e+"'></div>");if(eb.browser.chrome||eb.browser.safari){eb.browser.safari&&(jQuery("#"+d.aa+"_canvas").css("-webkit-backface-visibility","hidden"),jQuery("#"+d.aa+"_canvas_highres").css("-webkit-backface-visibility","hidden")),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","hidden");}}d.initialized=!0;}},Tb:function(c,d,e,g){d.initialized||c.Pd(d);if(!d.pa&&"FlipView"==d.H){if(-1<c.Da(d)&&c.Da(d)!=d.pageNumber&&d.pageNumber!=d.pages.R&&d.pageNumber!=d.pages.R-2&&d.pageNumber!=d.pages.R-1){if(window.clearTimeout(d.oc),d.pageNumber==d.pages.R||d.pageNumber==d.pages.R-2||d.pageNumber==d.pages.R-1){d.oc=setTimeout(function(){c.Tb(d,e,g);},250);}}else{1==d.scale&&d.Pc&&!c.na&&d.Pc(c.ga(d.pageNumber+1),c.ga(d.pageNumber+2));if(!d.pa){c.fr=d.scale;c.Ga(d,d.pageNumber);1==d.scale&&d.Wc();d.zb=!0;if(!d.V||d.vo!=d.scale||c.de(c,d)||!c.de(c,d)&&c.na){d.vo=d.scale,d.V=new Image,jQuery(d.V).data("pageNumber",d.pageNumber),jQuery(d.V).bind("load",function(){d.uo=!0;d.zb=!1;d.df=!0;d.ef=this.height;d.ff=this.width;d.Pb();window.clearTimeout(d.ue);c.Uc(d);d.dimensions.la>d.dimensions.width&&(d.dimensions.width=d.dimensions.la,d.dimensions.height=d.dimensions.ya);}),jQuery(d.V).bind("abort",function(){window.clearTimeout(d.ue);jQuery(this).bg(function(){d.zb=!1;c.Ga(d,-1);});}),jQuery(d.V).bind("error",function(){window.clearTimeout(d.ue);jQuery(this).bg(function(){d.zb=!1;c.Ga(d,-1);});});}1>=d.scale?jQuery(d.V).attr("src",c.ga(d.pageNumber+1,null,c.Db)):c.mb&&1<d.scale?d.pageNumber==d.pages.R-1||d.pageNumber==d.pages.R-2?jQuery(d.V).attr("src",c.ga(d.pageNumber+1,null,c.Db)):c.na||jQuery(d.V).attr("src",c.ea):d.pageNumber==d.pages.R-1||d.pageNumber==d.pages.R-2?(!c.Db||-1!=jQuery(d.V).attr("src").indexOf(".svg")&&d.Fo==d.scale||c.Da(d)!=d.pageNumber||d.pageNumber!=d.pages.R-1&&d.pageNumber!=d.pages.R-2?d.Ej==d.scale&&(jQuery(d.U+"_canvas_highres").show(),jQuery(d.U+"_canvas").hide()):(jQuery(c).trigger("UIBlockingRenderingOperation",c.P),d.Fo=d.scale,jQuery(d.V).attr("src",c.ga(d.pageNumber+1,null,c.Db))),c.Db||jQuery(d.V).attr("src",c.ga(d.pageNumber+1,null,c.Db))):c.na||jQuery(d.V).attr("src",c.ea);d.ue=setTimeout(function(){d.uo||jQuery(d.V).bg(function(){d.zb=!1;c.Ga(d,-1);});},3000);}jQuery(d.U).removeClass("flowpaper_load_on_demand");jQuery(d.qa).attr("src")==c.ea&&d.df&&c.Uc(d);null!=g&&g();}}},Uc:function(c,d){if("FlipView"==d.H){jQuery(d.U).removeClass("flowpaper_hidden");1==d.scale&&eb.browser.safari?(jQuery("#"+d.aa+"_canvas").css("-webkit-backface-visibility","hidden"),jQuery("#"+d.aa+"_canvas_highres").css("-webkit-backface-visibility","hidden"),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","hidden")):eb.browser.safari&&(jQuery("#"+d.aa+"_canvas").css("-webkit-backface-visibility","visible"),jQuery("#"+d.aa+"_canvas_highres").css("-webkit-backface-visibility","visible"),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","visible"));if(c.de(c,d)){1==d.scale?(jQuery(d.xa).css("background-image","url('"+c.ga(d.pageNumber+1,null,c.Db)+"')"),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","visible"),jQuery("#"+d.aa+"_textoverlay").css("backface-visibility","visible"),c.Jc(d)):(d.pageNumber==d.pages.R-1||d.pageNumber==d.pages.R-2?jQuery(d.xa).css("background-image","url('"+c.ga(d.pageNumber+1)+"')"):jQuery(d.xa).css("background-image","url("+c.ea+")"),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","visible"),jQuery("#"+d.aa+"_textoverlay").css("backface-visibility","visible"),jQuery(d.U+"_canvas").hide(),c.mb&&d.scale>d.wg()&&(d.oc=setTimeout(function(){c.Sc(d);jQuery(".flowpaper_flipview_canvas_highres").show();jQuery(".flowpaper_flipview_canvas").hide();},500)));}else{var e=document.getElementById(d.aa+"_canvas");c.na?(jQuery(d.xa).css("background-image","url('"+c.ga(d.pageNumber+1,null,c.Db)+"')"),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","visible"),jQuery("#"+d.aa+"_textoverlay").css("backface-visibility","visible")):jQuery(d.xa).css("background-image","url("+c.ea+")");if(1==d.scale&&e&&(100==e.width||jQuery(e).hasClass("flowpaper_redraw"))){var g=e;if(g){var f=d.za(),n=d.Ha();g.width=2*f;g.height=2*n;f=g.getContext("2d");f.gg=f.mozImageSmoothingEnabled=f.imageSmoothingEnabled=!0;f.drawImage(d.V,0,0,g.width,g.height);jQuery(g).data("needs-overlay",1);jQuery(e).removeClass("flowpaper_redraw");1==d.scale&&(jQuery(d.U+"_canvas").show(),jQuery(d.U+"_canvas_highres").hide());1<d.pageNumber&&jQuery(d.U+"_pixel").css({width:2*d.za(),height:2*d.Ha()});jQuery(g).data("needs-overlay",1);c.Jc(d);}}else{1==d.scale&&e&&100!=e.width&&(jQuery(d.U+"_canvas").show(),jQuery(d.U+"_canvas_highres").hide(),c.Jc(d));}if(1<d.scale&&!c.na){if(g=document.getElementById(d.aa+"_canvas_highres")){!(c.Db&&d.Ej!=d.scale||c.na&&d.Ej!=d.scale||100==g.width||jQuery(g).hasClass("flowpaper_redraw"))||d.pageNumber!=d.pages.R-1&&d.pageNumber!=d.pages.R-2?(jQuery(d.U+"_pixel").css({width:2*d.za(),height:2*d.Ha()}),jQuery(d.U+"_canvas_highres").show(),jQuery(d.U+"_canvas").hide(),c.mb&&jQuery(d.U+"_canvas_highres").css("z-index","-1")):(d.Ej=d.scale,e=1000<d.L.width()||1000<d.L.height()?1:2,f=(d.L.width()-30)*d.scale,c.na&&1==e&&(e=c.Xa),eb.platform.ios&&(1500<f*d.re()||535<d.Jf())&&(e=2236*Math.sqrt(1/(d.za()*d.Ha()))),eb.browser.safari&&!eb.platform.touchdevice&&3>e&&(e=3),f=g.getContext("2d"),f.gg||f.mozImageSmoothingEnabled||f.imageSmoothingEnabled?(f.gg=f.mozImageSmoothingEnabled=f.imageSmoothingEnabled=!1,c.Db||c.na?(g.width=d.za()*e,g.height=d.Ha()*e,f.drawImage(d.V,0,0,d.za()*e,d.Ha()*e)):(g.width=d.V.width,g.height=d.V.height,f.drawImage(d.V,0,0))):(g.width=d.za()*e,g.height=d.Ha()*e,f.drawImage(d.V,0,0,d.za()*e,d.Ha()*e)),c.Db?c.Ao(d,g.width/d.V.width,function(){jQuery(g).removeClass("flowpaper_redraw");jQuery(d.U+"_canvas_highres").show();jQuery(d.U+"_canvas").hide();jQuery(d.U+"_canvas_highres").addClass("flowpaper_flipview_canvas_highres");jQuery(d.U+"_canvas").addClass("flowpaper_flipview_canvas");c.Ga(d,-1);}):(jQuery(g).removeClass("flowpaper_redraw"),c.na||(jQuery(d.U+"_canvas_highres").show(),jQuery(d.U+"_canvas").hide(),jQuery(d.U+"_canvas_highres").addClass("flowpaper_flipview_canvas_highres"),jQuery(d.U+"_canvas").addClass("flowpaper_flipview_canvas")),c.mb&&jQuery(d.U+"_canvas_highres").css("z-index","-1")));}d.oc=setTimeout(function(){c.Sc(d);},500);}}c.na&&1==d.scale&&(jQuery(d.U+"_canvas").addClass("flowpaper_flipview_canvas"),jQuery(d.U+"_canvas").show(),g=document.getElementById(d.aa+"_canvas"),f=d.za(),n=d.Ha(),e=1.5<c.Xa?c.Xa:1,1300/f>e&&(e=1300/f),g.width!=f*e&&c.de(c,d)?(d.pa||(g.width=100),g.width!=f*e&&c.de(c,d)&&(g.width=f*e,g.height=n*e),jQuery(g).css({width:g.width/e+"px",height:g.height/e+"px"}),c.Jl=!0,jQuery(g).data("needs-overlay",1),d.Zd(g).then(function(){d.Pc(c.ga(d.pageNumber+1),c.ga(d.pageNumber+2),!0);})):c.de(c,d)||1!=jQuery(g).data("needs-overlay")?d.pa||d.Pc(c.ga(d.pageNumber+1),c.ga(d.pageNumber+2),!0):d.Zd(g).then(function(){d.Pc(c.ga(d.pageNumber+1),c.ga(d.pageNumber+2),!0);}));d.pa=0<jQuery(d.xa).length&&(c.de(c,d)&&-1<jQuery(d.xa).css("background-image").indexOf("http")||!c.de(c,d));}},ub:function(c,d){d.V=null;jQuery(d.xa).css("background-image","url("+c.ea+")");var e=document.getElementById(d.aa+"_canvas");e&&(e.width=100,e.height=100);if(e=document.getElementById(d.aa+"_canvas_highres")){e.width=100,e.height=100;}}};ImagePageRenderer.prototype.de=function(c,d){return c.na&&(eb.platform.ios||eb.browser.mozilla&&57>eb.browser.version)?!1:c.na?!0:eb.platform.touchdevice&&(eb.platform.Qd||d&&d.ff&&d.ef&&5000000<d.ff*d.ef||eb.platform.android)&&(eb.platform.Qd||eb.platform.android)||eb.browser.chrome||eb.browser.mozilla||c.na||eb.browser.safari&&!eb.platform.touchdevice;};ImagePageRenderer.prototype.resize=function(c,d){this.sh(d);};ImagePageRenderer.prototype.Ao=function(c,d,e){var g=this;window.Rh=d;jQuery.ajax({type:"GET",url:g.ga(c.pageNumber+1,null,g.Db),cache:!0,dataType:"xml",success:function(f){var n=new Image;jQuery(n).bind("load",function(){var g=document.getElementById(c.aa+"_canvas"),l=document.getElementById(c.aa+"_canvas_highres").getContext("2d");l.gg=l.mozImageSmoothingEnabled=l.imageSmoothingEnabled=!1;var m=g.getContext("2d");m.gg=m.mozImageSmoothingEnabled=m.imageSmoothingEnabled=!1;g.width=c.V.width*d;g.height=c.V.height*d;m.drawImage(n,0,0,c.V.width*d,c.V.height*d);if(c.hm){p=c.hm;}else{var p=[];jQuery(f).find("image").each(function(){var c={};c.id=jQuery(this).attr("id");c.width=S(jQuery(this).attr("width"));c.height=S(jQuery(this).attr("height"));c.data=jQuery(this).attr("xlink:href");c.dataType=0<c.data.length?c.data.substr(0,15):"";p[p.length]=c;jQuery(f).find("use[xlink\\:href='#"+c.id+"']").each(function(){if(jQuery(this).attr("transform")&&(c.transform=jQuery(this).attr("transform"),c.transform=c.transform.substr(7,c.transform.length-8),c.Mh=c.transform.split(" "),c.x=S(c.Mh[c.Mh.length-2]),c.y=S(c.Mh[c.Mh.length-1]),"g"==jQuery(this).parent()[0].nodeName&&null!=jQuery(this).parent().attr("clip-path"))){var d=jQuery(this).parent().attr("clip-path"),d=d.substr(5,d.length-6);jQuery(f).find("*[id='"+d+"']").each(function(){c.pg=[];jQuery(this).find("path").each(function(){var d={};d.d=jQuery(this).attr("d");c.pg[c.pg.length]=d;});});}});});c.hm=p;}for(m=0;m<p.length;m++){if(p[m].pg){for(var r=0;r<p[m].pg.length;r++){for(var t=p[m].pg[r].d.replace(/M/g,"M\x00").replace(/m/g,"m\x00").replace(/v/g,"v\x00").replace(/l/g,"l\x00").replace(/h/g,"h\x00").replace(/c/g,"c\x00").replace(/s/g,"s\x00").replace(/z/g,"z\x00").split(/(?=M|m|v|h|s|c|l|z)|\0/),q=0,u=0,v=0,A=0,w=!1,x,D=!0,B=0;B<t.length;B+=2){if("M"==t[B]&&t.length>B+1&&(x=T(t[B+1]),v=q=S(x[0]),A=u=S(x[1]),D&&(w=!0)),"m"==t[B]&&t.length>B+1&&(x=T(t[B+1]),v=q+=S(x[0]),A=u+=S(x[1]),D&&(w=!0)),"l"==t[B]&&t.length>B+1&&(x=T(t[B+1]),q+=S(x[0]),u+=S(x[1])),"h"==t[B]&&t.length>B+1&&(x=T(t[B+1]),q+=S(x[0])),"v"==t[B]&&t.length>B+1&&(x=T(t[B+1]),u+=S(x[0])),"s"==t[B]&&t.length>B+1&&(x=T(t[B+1])),"c"==t[B]&&t.length>B+1&&(x=T(t[B+1])),"z"==t[B]&&t.length>B+1&&(q=v,u=A,x=null),w&&(l.save(),l.beginPath(),D=w=!1),"M"==t[B]||"m"==t[B]){l.moveTo(q,u);}else{if("c"==t[B]&&null!=x){for(var K=0;K<x.length;K+=6){var C=q+S(x[K+0]),E=u+S(x[K+1]),F=q+S(x[K+2]),z=u+S(x[K+3]),y=q+S(x[K+4]),G=u+S(x[K+5]);l.bezierCurveTo(C,E,F,z,y,G);q=y;u=G;}}else{"s"==t[B]&&null!=x?(F=q+S(x[0]),z=u+S(x[1]),y=q+S(x[2]),G=u+S(x[3]),l.bezierCurveTo(q,u,F,z,y,G),q=y,u=G):"z"==t[B]?(l.lineTo(q,u),l.closePath(),l.clip(),l.drawImage(g,0,0),l.restore(),D=!0,B--):l.lineTo(q,u);}}}}}else{M("no clip path for image!");}}e&&e();});n.src=g.ga(c.pageNumber+1);}});};ImagePageRenderer.prototype.oe=function(c,d,e){var g=this,f=0,n=c.getDimensions(d)[d-1].la/c.getDimensions(d)[d-1].ya;g.Ta&&1<d&&(n=c.getDimensions(1)[0].la/c.getDimensions(1)[0].ya);0.5>n&&g.config.JSONDataType&&c.getDimensions(0)[0].la<c.getDimensions(0)[0].ya&&(n=0.7);for(var k=1;k<d;k++){f+=2;}var l=1==d?f+1:f,m=new Image;jQuery(m).bind("load",function(){var k=d%10;0==k&&(k=10);var r=jQuery(".flowpaper_fisheye").find(String.format('*[data-thumbIndex="{0}"]',k)).get(0);r.width=e*n-2;r.height=e/n/2-2;var t=jQuery(r).parent().width()/r.width;r.getContext("2d").fillStyle="#999999";var q=(r.height-r.height*n)/2,u=r.height*n;0>q&&(r.height+=r.width-u,q+=(r.width-u)/2);jQuery(r).data("origwidth",r.width*t);jQuery(r).data("origheight",r.height*t);(eb.browser.msie||eb.browser.safari&&5>eb.browser.Qb)&&jQuery(r).css({width:r.width*t+"px",height:r.height*t+"px"});r.getContext("2d").fillRect(1==d?r.width/2:0,q,l==c.getTotalPages()?r.width/2+2:r.width+2,u+2);r.getContext("2d").drawImage(m,1==d?r.width/2+1:1,q+1,r.width/2,u);if(1<d&&f+1<=c.getTotalPages()&&l+1<=c.getTotalPages()){var v=new Image;jQuery(v).bind("load",function(){r.getContext("2d").drawImage(v,r.width/2+1,q+1,r.width/2,u);r.getContext("2d").strokeStyle="#999999";r.getContext("2d").moveTo(r.width-1,q);r.getContext("2d").lineTo(r.width-1,u+1);r.getContext("2d").stroke();jQuery(c).trigger("onThumbPanelThumbAdded",{vf:k,thumbData:r});});jQuery(v).attr("src",g.ga(l+1,200));}else{jQuery(c).trigger("onThumbPanelThumbAdded",{vf:k,thumbData:r});}});l<=c.getTotalPages()&&jQuery(m).attr("src",g.ga(l,200));};return f;}(),Aa=function(){function f(){}V.prototype.bf=function(){var c=this.F.I.mf,d=this.nh(0),d=d.la/d.ya,e=Math.round(this.L.height()-10);this.F.N.find(".flowpaper_fisheye");var g=eb.platform.touchdevice?90==window.orientation||-90==window.orientation||jQuery(window).height()>jQuery(window).width():!1,f=this.F.I.xf?this.F.I.Na.height():0;if(this.F.I.gb&&!this.F.PreviewMode){e-=eb.platform.touchonlydevice?this.F.bb?f:0:this.L.height()*(this.F.bb?0.2:0.15);}else{if(this.F.PreviewMode){this.F.PreviewMode&&(e=this.F.N.height()-15,e-=eb.platform.touchonlydevice?this.F.bb?f+30:0:this.L.height()*(g?0.5:0.09));}else{var n=0.07;this.F.I.gb||(n=0.07);eb.platform.touchonlydevice?e=this.F.Zb?e-(this.F.bb?5:0):e-(this.F.bb?f:0):(f=this.F.I.xf?jQuery(this.F.K).parent().height()||0:0,0==f&&this.F.I.xf&&(f=this.L.height()*n),e-=this.F.bb&&!this.F.I.He?f:this.L.height()*(g?0.5:n));}}g=this.L.width();2*e*d>g-(c?2.4*this.ia:0)&&!this.F.I.ta&&(e=g/2/d-+(c?1.5*this.ia:75));if(e*d>g-(c?2.4*this.ia:0)&&this.F.I.ta){for(n=10;e*d>g-(c?2.4*this.ia:0)&&1000>n;){e=g/d-n+(c?0:50),n+=10;}}if(!eb.browser.sr){for(c=2.5*Math.floor(e*(this.F.I.ta?1:2)*d),g=0;0!=c%4&&20>g;){e+=0.5,c=2.5*Math.floor(e*(this.F.I.ta?1:2)*d),g++;}}return e;};V.prototype.Gd=function(c){var d=this,e=c?c:d.F.scale;if(1==e&&1==d.ba){jQuery(d.J+"_glyphcanvas").css("z-index",-1).Jb();jQuery(".flowpaper_flipview_canvas").Bc();if(d.F.I.ta&&d.F.renderer.na){for(var g=0;g<d.document.numPages;g++){var f=jQuery(d.pages[g].U);f.Bc();}}d.hd();}else{if(d.F.renderer.na&&d.F.I.W==d.F.H){if(f=jQuery(d.J+"_glyphcanvas").get(0),void 0==d.sk&&(d.sk=jQuery(f).offset().left),void 0==d.tk&&(d.tk=jQuery(f).offset().top),void 0==d.rm&&(d.rm=jQuery(d.F.N).position().left),void 0==d.sm&&(d.sm=jQuery(d.F.N).position().top),1<e){if(d.qj){window.clearTimeout(d.lj),d.lj=setTimeout(function(){d.Gd(c);},100);}else{d.qj=!0;var n=f.getContext("2d"),k=1<d.R?d.R-(d.F.I.ta||0==d.R%2||d.R+(0==d.R%2?1:0)>d.F.getTotalPages()?1:2):0,l=d.F.I.ta||0==k||null==d.pages[k+1]?1:2,m=0,p=eb.platform.Xa,r=0,t=d.sk-d.rm,q=d.tk-d.sm;d.F.Pa&&(r=parseFloat(d.L.css("left")));d.F.ab&&(r=parseFloat(d.L.css("left")));if(!p||1>p){p=1;}for(g=0;g<l;g++){var u=jQuery(d.pages[k+g].U),u=u.get(0).getBoundingClientRect(),v=u.right<d.L.width()?u.right-(0<u.left?u.left:0):d.L.width()-(0<u.left?u.left:0),m=m+(0<v?v:0);}for(g=0;g<l;g++){var k=k+g,u=jQuery(d.pages[k].U),u=u.get(0).getBoundingClientRect(),A=0<u.left?u.left:0+t,w=0<u.top?u.top:0+q,v=m,x=u.bottom<d.L.height()?u.bottom-(0<u.top?u.top:0):d.L.height()-(0<u.top?u.top:0),D=d.getPage(k);jQuery(f).data("needs-overlay",l);0==g&&(jQuery(f).css({left:A+"px",top:w+"px","z-index":49,display:"block"}),n.clearRect(0,0,f.width,f.height),f.width=v+r,f.height=x,1<p&&(f.width=(v+r)*p,f.height=x*p,jQuery(f).css({width:f.width/p+"px",height:f.height/p+"px"})));v=0>u.left?u.left*p:0;A=0>u.top?u.top*p:0;1<l&&0<g&&0<u.left&&(v+=u.left*p,w=jQuery(d.pages[k-1].U),0<w.length&&(w=w.get(0).getBoundingClientRect(),0<w.left&&(v-=w.left*p)));var B=l;D.Zd(f,0,u.width*p,v,A,!0,!0).then(function(){D.Tk=e;B=B-1;if(d.F.I.ta){for(var c=0;c<d.document.numPages;c++){d.Ra(c)&&d.pages[c]!=D&&jQuery(d.pages[c].U).Jb();}}1>B&&requestAnim(function(){1<d.F.scale&&(d.qj=!1,jQuery(".flowpaper_flipview_canvas").Jb());},50);});}}}else{if(d.qj=!1,d.F.I.ta){for(g=0;g<d.document.numPages;g++){f=jQuery(d.pages[g].U),f.Bc();}}}}}};V.prototype.ho=function(c,d){var e=this;c=parseInt(c);e.F.ce=d;e.F.renderer.ne&&e.gf(c);1!=this.F.scale?e.Qa(1,!0,function(){e.F.turn("page",c);}):e.F.turn("page",c);};V.prototype.Hi=function(){return(this.L.width()-this.Lc())/2;};V.prototype.Lc=function(){var c=this.nh(0),c=c.la/c.ya;return Math.floor(this.bf()*(this.F.I.ta?1:2)*c);};V.prototype.Mc=function(){if("FlipView"==this.F.H){return 0<this.width?this.width:this.width=this.M(this.J).width();}};V.prototype.Jf=function(){if("FlipView"==this.F.H){return 0<this.height?this.height:this.height=this.M(this.J).height();}};f.prototype={gf:function(c,d){for(var e=d-10;e<d+10;e++){0<e&&e+1<c.F.getTotalPages()+1&&!c.getPage(e).initialized&&(c.getPage(e).Wa=!0,c.F.renderer.Pd(c.getPage(e)),c.getPage(e).Wa=!1);}},nc:function(c){null!=c.$d&&(window.clearTimeout(c.$d),c.$d=null);var d=1<c.R?c.R-1:c.R;if(!c.F.renderer.pb||c.F.renderer.vb&&1==c.F.scale){1<=c.R?(c.pages[d-1].load(function(){1<c.R&&c.pages[d]&&c.pages[d].load(function(){c.pages[d].Ea();for(var e=c.M(c.J).scrollTop(),g=c.M(c.J).height(),f=0;f<c.document.numPages;f++){c.Ra(f)&&(c.pages[f].Nc(e,g,!0)?(c.pages[f].Wa=!0,c.pages[f].load(function(){}),c.pages[f].Ea()):c.pages[f].ub());}});}),c.pages[d-1].Ea()):c.pages[d]&&c.pages[d].load(function(){c.pages[d].Ea();for(var e=c.M(c.J).scrollTop(),g=c.M(c.J).height(),f=0;f<c.document.numPages;f++){c.Ra(f)&&(c.pages[f].Nc(e,g,!0)?(c.pages[f].Wa=!0,c.pages[f].load(function(){}),c.pages[f].Ea()):c.pages[f].ub());}});}else{1<c.R?(c.pages[d-1]&&c.pages[d-1].load(function(){}),c.pages[d-0]&&c.pages[d-0].load(function(){})):c.pages[d]&&c.pages[d].load(function(){});for(var e=c.M(c.J).scrollTop(),g=c.M(c.J).height(),f=0;f<c.document.numPages;f++){c.Ra(f)&&(c.pages[f].Nc(e,g,!0)?(c.pages[f].Wa=!0,c.pages[f].load(function(){}),c.pages[f].Ea()):c.pages[f].ub());}}},dj:function(c){1.1<c.F.scale&&c.F.va&&(c.F.va.data().opts.cornerDragging=!1);c.xi=setTimeout(function(){c.F.pages&&"FlipView"==c.F.H&&(1.1<c.F.scale||!c.F.va||!c.F.va.data().opts||(c.F.va.data().opts.cornerDragging=!0),c.Ch=!1);},1000);},Ub:function(c){return"FlipView"==c.F.H;},Qa:function(c,d,e,g,f){jQuery(c).trigger("onScaleChanged");1<e&&0<jQuery("#"+c.Kb).length&&jQuery("#"+c.Kb).css("z-index",-1);1<e&&(jQuery(".flowpaper_shadow").hide(),c.F.T&&c.F.T.hide());if("FlipView"==c.F.H&&(e>=1+c.F.document.ZoomInterval?jQuery(".flowpaper_page, "+c.J).removeClass("flowpaper_page_zoomIn").addClass("flowpaper_page_zoomOut"):jQuery(".flowpaper_page, "+c.J).removeClass("flowpaper_page_zoomOut").addClass("flowpaper_page_zoomIn"),jQuery(c.J).data().totalPages)){var n=c.nh(0),k=n.la/n.ya,n=c.bf()*e,k=2*n*k;c.F.renderer.na&&0==g.Ke&&setTimeout(function(){c.animating=!1;},50);if(!g||!c.Ub()||1<d&&!c.M(c.J+"_parent").Of()){if(c.M(c.J+"_parent").Of()&&e>=1+c.F.document.ZoomInterval&&((d=c.Ki())?(c.M(c.J+"_parent").transition({transformOrigin:"0px 0px"},0),c.M(c.J+"_parent").transition({x:0,y:0,scale:1},0),g.Vb=d.left,g.rc=d.top,g.ad=!0):(l=1!=c.F.da||c.F.I.ta?0:-(c.Lc()/4),c.M(c.J+"_parent").transition({x:l,y:c.F.gc,scale:1},0))),c.M(c.J).Of()&&c.M(c.J).transition({x:0,y:0,scale:1},0),!c.animating){c.Eh||(c.Eh=c.F.va.width(),c.Zo=c.F.va.height());1==e&&c.Eh?(turnwidth=c.Eh,turnheight=c.Zo):(turnwidth=k-(c.M(c.J+"_panelLeft").width()+c.M(c.J+"_panelRight").width()+40),turnheight=n);c.M(c.J).css({width:k,height:n});c.F.va.turn("size",turnwidth,turnheight,!1);e>=1+c.F.document.ZoomInterval?(g.ad||eb.platform.touchonlydevice)&&requestAnim(function(){c.L.scrollTo({left:jQuery(c.L).scrollLeft()+g.Vb/e+"px",top:jQuery(c.L).scrollTop()+g.rc/e+"px"});},500):c.Qe();for(k=0;k<c.document.numPages;k++){c.Ra(k)&&(c.pages[k].pa=!1);}1<e?c.F.va.turn("setCornerDragging",!1):(c.M(c.J+"_panelLeft").show(),c.M(c.J+"_panelRight").show(),c.F.va.turn("setCornerDragging",!0),jQuery(".flowpaper_shadow").show());c.kd();c.hd();setTimeout(function(){null!=f&&f();},200);}}else{if(!c.animating||!c.kk){c.animating=!0;c.kk=g.ad;c.F.renderer.na&&0==g.Ke&&1!=e||(jQuery(".flowpaper_flipview_canvas").Bc(),jQuery(".flowpaper_flipview_canvas_highres").Jb(),c.F.renderer.na&&jQuery(c.J+"_glyphcanvas").css("z-index",-1).Jb());jQuery("#"+c.Kb).css("z-index",-1);jQuery(c).trigger("onScaleChanged");n=400;d="snap";c.F.document.ZoomTime&&(n=1000*parseFloat(c.F.document.ZoomTime));c.F.document.ZoomTransition&&("easeOut"==c.F.document.ZoomTransition&&(d="snap"),"easeIn"==c.F.document.ZoomTransition&&(d="ease-in",n/=2));g&&g.Vb&&g.rc?(g.ad&&(g.Vb=g.Vb+c.Hi()),g.ad||eb.platform.touchonlydevice?(c.Ed=g.Vb,c.Fd=g.rc):(k=c.M(c.J+"_parent").css("transformOrigin").split(" "),2==k.length?(k[0]=k[0].replace("px",""),k[1]=k[1].replace("px",""),c.Ed=parseFloat(k[0]),c.Fd=parseFloat(k[1])):(c.Ed=g.Vb,c.Fd=g.rc),c.Il=!0),g.Ke&&(n=g.Ke)):(c.Ed=0,c.Fd=0);c.F.renderer.pb&&c.F.renderer.mb&&1==e&&(k=1<c.R?c.R-1:c.R,1<c.R&&c.F.renderer.Jc(c.pages[k-1]),c.F.renderer.Jc(c.pages[k]));if(c.F.I.ta&&c.F.renderer.na&&1<e){for(k=0;k<c.document.numPages;k++){c.Ra(k)&&k!=c.R-1&&jQuery(c.pages[k].U).Jb();}}"undefined"!=g.Ke&&(n=g.Ke);e>=1+c.F.document.ZoomInterval?("preserve-3d"==c.M(c.J+"_parent").css("transform-style")&&(n=0),(g.ad||eb.platform.touchonlydevice)&&c.M(c.J+"_parent").css({transformOrigin:c.Ed+"px "+c.Fd+"px"}),c.F.va.turn("setCornerDragging",!1)):(c.M(c.J).transition({x:0,y:0},0),c.F.va.turn("setCornerDragging",!0));var l=1!=c.F.da||c.F.I.ta?0:-(c.Lc()/4);c.F.da==c.F.getTotalPages()&&0==c.F.getTotalPages()%2&&(l=c.F.I.ta?0:+(c.Lc()/4));c.M(c.J+"_parent").transition({x:l,y:c.F.gc,scale:e},n,d,function(){c.M(c.J+"_parent").css("will-change","");c.Gd();c.hd();null!=c.Ce&&(window.clearTimeout(c.Ce),c.Ce=null);c.Ce=setTimeout(function(){if(!c.F.renderer.na){for(var d=0;d<c.document.numPages;d++){c.pages[d].pa=!1;}}c.wd=0;c.ze=0;c.kd();c.animating=!1;c.kk=!1;},50);1==e&&c.M(c.J+"_parent").css("-webkit-transform-origin:","");1==e&&(jQuery(".flowpaper_shadow").show(),jQuery(".flowpaper_zine_page_left").fadeIn(),jQuery(".flowpaper_zine_page_right").fadeIn());null!=f&&f();});}}}},resize:function(c,d,e,g){c.width=-1;c.height=-1;jQuery(".flowpaper_pageword_"+c.P+", .flowpaper_interactiveobject_"+c.P).remove();if("FlipView"==c.F.H){c.F.renderer.na&&c.F.renderer.Jl&&(jQuery(".flowpaper_flipview_page").css({height:"100%",width:"100%"}),c.F.renderer.Jl=!1);1!=c.F.da||c.F.I.ta?c.F.I.ta||jQuery(c.J+"_parent").transition({x:0,y:c.F.gc},0,"snap",function(){}):jQuery(c.J+"_parent").transition({x:-(c.Lc()/4),y:c.F.gc},0,"snap",function(){});var f=c.bf(),n=c.Lc();c.M(c.J+"_parent").css({width:d,height:f});c.od=n;c.kg=f;d=c.Hi();c.F.va&&c.F.va.turn("size",n,f,!1);c.M(c.J+"_panelLeft").css({"margin-left":d-c.ia,width:c.ia,height:f-30});c.M(c.J+"_arrowleft").css({top:(f-30)/2+"px"});c.M(c.J+"_arrowright").css({top:(f-30)/2+"px"});c.M(c.J+"_panelRight").css({width:c.ia,height:f-30});c.F.PreviewMode?(jQuery(c.J+"_arrowleftbottom").hide(),jQuery(c.J+"_arrowleftbottommarker").hide(),jQuery(c.J+"_arrowrightbottom").hide(),jQuery(c.J+"_arrowrightbottommarker").hide()):(jQuery(c.J+"_arrowleftbottom").show(),jQuery(c.J+"_arrowleftbottommarker").show(),jQuery(c.J+"_arrowrightbottom").show(),jQuery(c.J+"_arrowrightbottommarker").show());c.Eh=null;c.bs=null;c.Gd();}jQuery(".flowpaper_flipview_page").addClass("flowpaper_redraw");for(d=0;d<c.document.numPages;d++){c.Ra(d)&&c.pages[d].Qa();}"FlipView"==c.F.H?(window.clearTimeout(c.kp),c.kp=setTimeout(function(){c.Fl&&c.Fl();for(var d=0;d<c.document.numPages;d++){c.Ra(d)&&(c.pages[d].pa=!1,null!=c.F.renderer.resize&&c.F.renderer.resize(c.F.renderer,c.pages[d]));}c.kd();jQuery(c.F).trigger("onResizeCompleted");c.F.I.rb&&jQuery("#"+c.pages.container+"_webglcanvas").css({width:n,height:f});g&&g();},300)):g&&g();},te:function(c,d){if(c.F.PreviewMode){c.F.openFullScreen();}else{if(!c.le()){var e=c.document.TouchZoomInterval?c.F.scale+c.document.TouchZoomInterval:2.5;"FlipView"==c.F.H?d?c.Qa(e,{Vb:jQuery(c.J+"_parent").width()/2,rc:jQuery(c.J+"_parent").height()/2}):c.Qa(e,{Vb:c.ed,rc:c.fd}):c.Qa(1);c.hd();}}},qd:function(c,d){"FlipView"==c.F.H?c.Qa(1,!0,d):c.Qa(window.FitHeightScale);c.hd();},cj:function(c){"FlipView"==c.F.H&&(this.touchwipe=c.M(c.J).touchwipe({wipeLeft:function(){c.Je=!0;setTimeout(function(){c.Je=!1;},3800);c.dg=null;null==c.ba&&(c.F.va.turn("cornerActivated")||c.animating||1==c.F.scale&&c.next());},wipeRight:function(){c.Je=!0;setTimeout(function(){c.Je=!1;},3800);c.dg=null;c.F.va.turn("cornerActivated")||c.animating||null==c.ba&&1==c.F.scale&&c.previous();},preventDefaultEvents:!0,min_move_x:100,min_move_y:100}));},mk:function(c){if(c.F.cc||!eb.platform.touchdevice||c.F.I.rg){c.F.cc?(d=c.M(c.J),d.doubletap(function(d){var g=jQuery(".activeElement").data("hint-pageNumber");window.parent.postMessage("EditPage:"+g,"*");window.clearTimeout(c.Si);d.preventDefault();d.stopImmediatePropagation();},null,300,!0)):(d=c.M(c.J),d.doubletap(function(c){c.preventDefault();},null,300));}else{var d=c.M(c.J);d.doubletap(function(d){c.dg=null;if("TwoPage"==c.F.H||"BookView"==c.F.H||"FlipView"==c.F.H){"TwoPage"!=c.F.H&&"BookView"!=c.F.H||1==c.F.scale?1!=c.F.scale||"FlipView"!=c.F.H||c.Ch?"FlipView"==c.F.H&&1<=c.F.scale&&!c.hj?c.qd():"TwoPage"==c.F.H&&1==c.F.scale&&c.qd():c.te():c.te(),d.preventDefault(),c.hj=!1,c.Ch=!1;}},null,300);}},pi:function(c,d){if("FlipView"==c.F.H){c.F.I.Ef&&(c.ia=c.F.I.Ef);var e=c.bf(),g=c.Lc(),f=c.Hi(),n=c.F.I.mf&&(430<g||c.F.PreviewMode||c.F.I.ta),k=n?0:f,f=f-c.ia,l=c.F.I.hb?c.F.I.hb:"#555555",m=c.F.I.qb?c.F.I.qb:"#AAAAAA",p=c.F.I.Na.height();c.Hb=c.F.Zb&&!c.F.I.gb||0==p?(c.L.height()-e)/2:0;c.Hb=0==c.Hb&&c.F.bb&&!c.F.Zb&&0<p&&!c.F.I.gb?(c.L.height()-e)/2-p:c.Hb;c.od=g;c.kg=e;d.append("<div id='"+c.container+"_parent' style='white-space:nowrap;width:100%;height:"+e+"px;"+(!c.F.bb&&!c.F.I.gb||c.F.I.He?"margin-top:2.5%;":0<c.Hb?"padding-top:"+c.Hb+"px;":"")+"z-index:10"+(!eb.browser.mozilla||!eb.platform.mac||eb.platform.mac&&(18>parseFloat(eb.browser.version)||33<parseFloat(eb.browser.version))?"":";transform-style:preserve-3d;")+"'>"+(n?"<div id='"+c.container+"_panelLeft' class='flowpaper_arrow' style='cursor:pointer;opacity: 0;margin-top:15px;-moz-border-radius-topleft: 10px;border-top-left-radius: 10px;-moz-border-radius-bottomleft: 10px;border-bottom-left-radius: 10px;position:relative;float:left;background-color:"+l+";left:0px;top:0px;height:"+(e-30)+"px;width:"+c.ia+"px;margin-left:"+f+"px;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select: none;'><div style='position:relative;left:"+(c.ia-(c.ia-0.4*c.ia))/2+"px;top:"+(e/2-c.ia)+"px' id='"+c.container+"_arrowleft' class='flowpaper_arrow'></div><div style='position:absolute;left:"+(c.ia-(c.ia-0.55*c.ia))/2+"px;bottom:0px;margin-bottom:10px;' id='"+c.container+"_arrowleftbottom' class='flowpaper_arrow flowpaper_arrow_start'></div><div style='position:absolute;left:"+(c.ia-0.8*c.ia)+"px;bottom:0px;width:2px;margin-bottom:10px;' id='"+c.container+"_arrowleftbottommarker' class='flowpaper_arrow flowpaper_arrow_start'></div></div>":"")+"<div id='"+c.container+"' style='float:left;position:relative;height:"+e+"px;width:"+g+"px;margin-left:"+k+"px;z-index:10;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select: none;' class='flowpaper_twopage_container flowpaper_hidden'></div>"+(n?"<div id='"+c.container+"_panelRight' class='flowpaper_arrow' style='cursor:pointer;opacity: 0;margin-top:15px;-moz-border-radius-topright: 10px;border-top-right-radius: 10px;-moz-border-radius-bottomright: 10px;border-bottom-right-radius: 10px;position:relative;display:inline-block;background-color:"+l+";left:0px;top:0px;height:"+(e-30)+"px;width:"+c.ia+"px;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select: none;'><div style='position:relative;left:"+(c.ia-(c.ia-0.4*c.ia))/2+"px;top:"+(e/2-c.ia)+"px' id='"+c.container+"_arrowright' class='flowpaper_arrow'></div><div style='position:absolute;left:"+(c.ia-(c.ia-0.55*c.ia))/2+"px;bottom:0px;margin-bottom:10px;' id='"+c.container+"_arrowrightbottom' class='flowpaper_arrow flowpaper_arrow_end'></div><div style='position:absolute;left:"+((c.ia-(c.ia-0.55*c.ia))/2+c.ia-0.55*c.ia)+"px;bottom:0px;width:2px;margin-bottom:10px;' id='"+c.container+"_arrowrightbottommarker' class='flowpaper_arrow flowpaper_arrow_end'></div></div>":"")+"</div>");g=R(l);c.F.renderer.na&&(c.F.N.append("<canvas id='"+c.container+"_glyphcanvas' style='pointer-events:none;position:absolute;left:0px;top:0px;z-index:-1;' class='flowpaper_glyphcanvas'></canvas>"),eb.browser.msie&&11>eb.browser.version&&PointerEventsPolyfill.initialize({selector:"#"+c.container+"_glyphcanvas",mouseEvents:["click","dblclick","mousedown","mouseup","mousemove"]}),jQuery(c.F.renderer).bind("onTextDataUpdated",function(d,e){for(var g=e+12,f=e-2;f<g;f++){var h=c.getPage(f);if(h){var k=h?document.getElementById(h.aa+"_canvas"):null;if(k){var l=h.za(),n=h.Ha(),p=1.5<c.F.renderer.Xa?c.F.renderer.Xa:1.5;k.width!=l*p&&(jQuery(k).data("needs-overlay",1),k.width=l*p,k.height=n*p,h.Zd(k).then(function(){h.Wa&&c.F.renderer.Tb(h,!0);}));}}}}));jQuery(c.J+"_panelLeft").css("background-color","rgba("+g.r+","+g.g+","+g.b+","+c.F.I.Ae+")");jQuery(c.J+"_panelRight").css("background-color","rgba("+g.r+","+g.g+","+g.b+","+c.F.I.Ae+")");jQuery(c.J+"_arrowleft").De(c.ia-0.4*c.ia,m);jQuery(c.J+"_arrowright").zd(c.ia-0.4*c.ia,m);c.F.I.ug&&!c.F.cc&&(jQuery(c.J+"_arrowleftbottom").De(c.ia-0.55*c.ia,m),jQuery(c.J+"_arrowleftbottommarker").mj(c.ia-0.55*c.ia,m,jQuery(c.J+"_arrowleftbottom")),jQuery(c.J+"_arrowrightbottom").zd(c.ia-0.55*c.ia,m),jQuery(c.J+"_arrowrightbottommarker").nj(c.ia-0.55*c.ia,m,jQuery(c.J+"_arrowrightbottom")));c.F.cc&&(jQuery(c.J+"_arrowleftbottom").De(c.ia-0.55*c.ia,m),jQuery(c.J+"_arrowleftbottommarker").mj(c.ia-0.55*c.ia,m,jQuery(c.J+"_arrowleftbottom")),jQuery(c.J+"_arrowrightbottom").zd(c.ia-0.55*c.ia,m),jQuery(c.J+"_arrowrightbottommarker").nj(c.ia-0.55*c.ia,m,jQuery(c.J+"_arrowrightbottom")),c.F.I.ug||(jQuery(c.J+"_arrowleftbottom").css("opacity",0),jQuery(c.J+"_arrowleftbottommarker").css("opacity",0),jQuery(c.J+"_arrowrightbottom").css("opacity",0),jQuery(c.J+"_arrowrightbottommarker").css("opacity",0)));!c.F.I.ta||c.F.Ze||c.F.bb||d.css("top",(d.height()-e)/2.1+"px");c.F.I.mf||(jQuery(c.J+"_panelLeft").attr("id",c.J+"_panelLeft_disabled").css("visibility","none"),jQuery(c.J+"_panelRight").attr("id",c.J+"_panelRight_disabled").css("visibility","none"));c.F.PreviewMode&&(jQuery(c.J+"_arrowleftbottom").hide(),jQuery(c.J+"_arrowleftbottommarker").hide(),jQuery(c.J+"_arrowrightbottom").hide(),jQuery(c.J+"_arrowrightbottommarker").hide());document.addEventListener("touchstart",function(d){c.F.N.has(d.target).length||d.preventDefault();},{passive:!1});jQuery(c.J).on(c.F.I.Bf?"mouseup":"mousedown",function(d){if(jQuery(d.target).hasClass("flowpaper_mark")){return !1;}var e=!0;c.F.I.Bf&&(c.lm(),null==c.Ab||d.pageX&&d.pageY&&d.pageX<=c.Ab+2&&d.pageX>=c.Ab-2&&d.pageY<=c.vc+2&&d.pageY>=c.vc-2||(e=!1),c.Ab=null,c.vc=null,c.Rf&&(eb.browser.safari||c.F.renderer.na)&&(c.Rf=!1,c.Gd()));if((!c.F.I.Bf||e)&&!c.F.I.rg){var g=!1,e=0<jQuery(d.target).parents(".flowpaper_page").children().find(".flowpaper_zine_page_left, .flowpaper_zine_page_left_noshadow").length;c.ag=e?c.F.da-2:c.F.da-1;jQuery(d.target).hasClass("flowpaper_interactiveobject_"+c.P)&&(g=!0);if(c.F.va.turn("cornerActivated")||c.animating||jQuery(d.target).hasClass("turn-page-wrapper")||jQuery(d.target).hasClass("flowpaper_shadow")&&jQuery(d.target).Of()){return;}if(c.F.PreviewMode&&"A"!=d.target.tagName){c.F.openFullScreen();return;}eb.platform.mobilepreview||c.le()||"transform"==c.M(c.J+"_parent").css("will-change")||(c.F.cc?(clearTimeout(c.Si),c.Si=setTimeout(function(){c.Ub()&&c.M(c.J+"_parent").css("will-change","transform");var e=jQuery(c.J).Nf(d.pageX,d.pageY);g||c.F.qc||1!=c.F.scale?!g&&!c.F.qc&&1<c.F.scale?c.F.Zoom(1,{ad:!0,Vb:e.x,rc:e.y}):g&&c.M(c.J+"_parent").css("will-change",""):c.F.Zoom(2.5,{ad:!0,Vb:e.x,rc:e.y});},350)):(c.Ub()&&c.M(c.J+"_parent").css("will-change","transform"),requestAnim(function(){var e=jQuery(c.J).Nf(d.pageX,d.pageY);g||c.F.qc||1!=c.F.scale?!g&&!c.F.qc&&1<c.F.scale?c.F.Zoom(1,{ad:!0,Vb:e.x,rc:e.y}):g&&c.M(c.J+"_parent").css("will-change",""):c.F.Zoom(2.5,{ad:!0,Vb:e.x,rc:e.y});},50)));var f={};jQuery((jQuery(d.target).attr("class")+"").split(" ")).each(function(){""!==this&&(f[this]=this);});for(class_name in f){0==class_name.indexOf("gotoPage")&&c.gotoPage(parseInt(class_name.substr(class_name.indexOf("_")+1)));}}if(c.F.renderer.pb&&c.F.renderer.mb&&1<c.F.scale){var h=1<c.R?c.R-1:c.R;setTimeout(function(){1<c.F.scale?(1<c.R&&c.F.renderer.Sc(c.pages[h-1]),c.F.renderer.Sc(c.pages[h])):(1<c.R&&c.F.renderer.Jc(c.pages[h-1]),c.F.renderer.Jc(c.pages[h]));},500);}});jQuery(c.J+"_parent").on("mousemove",function(d){if(1<c.F.scale&&!c.F.qc){if(c.F.I.Bf&&"down"==c.F.Ah){c.Ab||(c.Ab=d.pageX,c.vc=d.pageY),c.Rf||!eb.browser.safari&&!c.F.renderer.na||(jQuery(".flowpaper_flipview_canvas").show(),jQuery(".flowpaper_flipview_canvas_highres").hide(),jQuery(c.J+"_glyphcanvas").css("z-index",-1).Jb(),c.Rf=!0),eb.platform.touchdevice||c.M(c.J+"_parent").Of()?(c.Il&&(c.lm(),c.Il=!1),c.uk(d.pageX,d.pageY)):(c.L.scrollTo({left:jQuery(c.L).scrollLeft()+(c.Ab-d.pageX)+"px",top:jQuery(c.L).scrollTop()+(c.vc-d.pageY)+"px"},0,{axis:"xy"}),c.Ab=d.pageX+3,c.vc=d.pageY+3);}else{if(!c.F.I.Bf){var e=c.L.Nf(d.pageX,d.pageY);eb.platform.touchdevice||c.M(c.J+"_parent").Of()||c.L.scrollTo({left:d.pageX+"px",top:d.pageY+"px"},0,{axis:"xy"});d=e.x/jQuery(c.J+"_parent").width();e=e.y/jQuery(c.J+"_parent").height();requestAnim(function(){c.Gd();},10);c.$g((jQuery(c.L).width()+150)*d-20,(jQuery(c.L).height()+150)*e-250);}}c.F.renderer.pb&&c.F.renderer.mb&&!c.F.I.Bf&&(e=1<c.R?c.R-1:c.R,1<c.F.scale?(1<c.R&&c.F.renderer.Sc(c.pages[e-1]),c.F.renderer.Sc(c.pages[e])):(1<c.R&&c.F.renderer.Jc(c.pages[e-1]),c.F.renderer.Jc(c.pages[e])));}});jQuery(c.J+"_parent").on("touchmove",function(d){var e=!1;if(!eb.platform.ios&&2==d.originalEvent.touches.length){d.preventDefault&&d.preventDefault();d.returnValue=!1;if(c.cl){return !1;}var g=Math.sqrt((d.originalEvent.touches[0].pageX-d.originalEvent.touches[1].pageX)*(d.originalEvent.touches[0].pageX-d.originalEvent.touches[1].pageX)+(d.originalEvent.touches[0].pageY-d.originalEvent.touches[1].pageY)*(d.originalEvent.touches[0].pageY-d.originalEvent.touches[1].pageY)),g=2*g;if(null==c.ba){if(c.F.I.ta&&c.F.renderer.na){for(var f=0;f<c.document.numPages;f++){c.Ra(f)&&f!=c.R-1&&jQuery(c.pages[f].U).Jb();}}c.M(c.J+"_parent").css("will-change","transform");c.cb=c.F.scale;c.tf=g;}else{c.ba==c.cb&&c.F.va.turn("setCornerDragging",!1);if(null==c.cb||null==c.tf){return;}1>c.ba&&(c.ba=1);3<c.ba&&!eb.platform.Qd&&!c.F.renderer.na&&(c.ba=3);c.F.renderer.mb&&4<c.ba&&eb.platform.ipad&&!c.F.renderer.na&&(c.ba=4);!c.F.renderer.mb&&3<c.ba&&eb.platform.ipad&&!c.F.renderer.na&&(c.ba=3);f=0;1!=c.F.da||c.F.I.ta||(f=-(c.Lc()/4));var h=c.cb+(g-c.tf)/jQuery(c.J+"_parent").width();0.01<Math.abs(c.ba-h)?(c.cl=!0,c.M(c.J+"_parent").transition({x:f,y:c.F.gc,scale:c.ba},0,"none",function(){c.cl=!1;})):e=!0;}e||(c.ba=c.cb+(g-c.tf)/jQuery(c.J+"_parent").width());}(1<c.F.scale||null!=c.ba&&1<c.ba)&&!e&&(e=d.originalEvent.touches[0]||d.originalEvent.changedTouches[0],eb.platform.ios||2!=d.originalEvent.touches.length?c.Ab||(c.Ab=e.pageX,c.vc=e.pageY):c.Ab||(g=d.originalEvent.touches[1]||d.originalEvent.changedTouches[1],g.pageX>e.pageX?(c.Ab=e.pageX+(g.pageX-e.pageX)/2,c.vc=e.pageY+(g.pageY-e.pageY)/2):(c.Ab=g.pageX+(e.pageX-g.pageX)/2,c.vc=g.pageY+(e.pageY-g.pageY)/2)),c.Rf||c.F.renderer.na||(jQuery(".flowpaper_flipview_canvas").show(),jQuery(".flowpaper_flipview_canvas_highres").hide(),c.Rf=!0),(1==d.originalEvent.touches.length||eb.platform.ios)&&c.uk(e.pageX,e.pageY),jQuery(".flowpaper_flipview_canvas").Bc(),jQuery(c.J+"_glyphcanvas").css("z-index",-1).Jb(),d.preventDefault());});jQuery(c.J+"_parent, "+c.J).on(!eb.platform.touchonlydevice||eb.platform.mobilepreview?"mousedown":"touchstart",function(){c.dg=(new Date).getTime();});jQuery(c.J+"_parent").on("mouseup touchend",function(d){!c.F.Zb||null!=c.ba||c.Je||c.F.va.turn("cornerActivated")||c.animating?c.F.Zb&&0==c.F.I.Na.position().top&&c.F.I.Na.animate({opacity:0,top:"-"+c.F.I.Na.height()+"px"},300):setTimeout(function(){!jQuery(d.target).hasClass("flowpaper_arrow")&&1==c.F.scale&&c.dg&&c.dg>(new Date).getTime()-1000?(jQuery(c.F.I.Na).find(".flowpaper_txtSearch").trigger("blur"),0==c.F.I.Na.position().top?c.F.I.Na.animate({opacity:0,top:"-"+c.F.I.Na.height()+"px"},300):c.F.I.Na.animate({opacity:1,top:"0px"},300)):c.dg=null;},600);if(null!=c.cb){c.hj=c.cb<c.ba;c.cb=null;c.tf=null;c.Ab=null;c.vc=null;1.1>c.ba&&(c.ba=1);c.F.scale=c.ba;for(var e=0;e<c.document.numPages;e++){c.Ra(e)&&(c.pages[e].scale=c.F.scale,c.pages[e].Qa());}c.Gd();setTimeout(function(){1==c.F.scale&&(c.M(c.J).transition({x:0,y:0},0),c.F.va.turn("setCornerDragging",!0),c.F.I.gb&&(c.F.T.show(),c.F.T.animate({opacity:1},100)));1<c.F.scale&&c.F.I.gb&&c.F.T.animate({opacity:0},0,function(){c.F.T.hide();});for(var d=0;d<c.document.numPages;d++){c.Ra(d)&&(c.pages[d].pa=!1);}c.M(c.J+"_parent").css("will-change","");c.kd();jQuery(c).trigger("onScaleChanged");c.ba=null;},500);}1<c.F.scale?(e=c.M(c.J).css("transform")+"",null!=e&&(e=e.replace("translate",""),e=e.replace("(",""),e=e.replace(")",""),e=e.replace("px",""),e=e.split(","),c.wd=parseFloat(e[0]),c.ze=parseFloat(e[1]),isNaN(c.wd)&&(c.wd=0,c.ze=0)),c.Ab&&1.9<c.F.scale&&(jQuery(".flowpaper_flipview_canvas_highres").show(),jQuery(".flowpaper_flipview_canvas").hide()),c.F.renderer.pb&&c.F.renderer.mb&&1.9<c.F.scale&&(e=1<c.R?c.R-1:c.R,1<c.R&&c.F.renderer.Sc(c.pages[e-1]),c.F.renderer.Sc(c.pages[e])),null!=c.Ab&&c.Gd(null!=c.ba?c.ba:c.F.scale)):(c.wd=0,c.ze=0);c.Rf=!1;c.Ab=null;c.vc=null;});jQuery(c.J+"_parent").on("gesturechange",function(d){d.preventDefault();if(!c.F.I.rg){null==c.cb&&(c.cb=d.originalEvent.scale);c.F.va.turn("setCornerDragging",!1);c.ba=c.F.scale+(c.cb>c.F.scale?(d.originalEvent.scale-c.cb)/2:4*(d.originalEvent.scale-c.cb));1>c.ba&&(c.ba=1);3<c.ba&&!eb.platform.Qd&&!c.F.renderer.na&&(c.ba=3);c.F.renderer.mb&&4<c.ba&&eb.platform.ipad&&!c.F.renderer.na&&(c.ba=4);!c.F.renderer.mb&&3<c.ba&&(eb.platform.ipad||eb.platform.iphone)&&!c.F.renderer.na&&(c.ba=3);d=1!=c.F.da||c.F.I.ta?0:-(c.Lc()/4);if(1==c.cb&&c.F.I.ta&&c.F.renderer.na){for(var e=0;e<c.document.numPages;e++){c.Ra(e)&&e!=c.R-1&&jQuery(c.pages[e].U).Jb();}}c.M(c.J+"_parent").transition({x:d,y:c.F.gc,scale:c.ba},0,"ease",function(){});}});jQuery(c.J+"_parent").on("gestureend",function(d){d.preventDefault();if(!c.F.I.rg){c.Ch=c.ba<c.F.scale||c.Ch;c.F.scale=c.ba;for(d=0;d<c.document.numPages;d++){c.Ra(d)&&(c.pages[d].scale=c.F.scale,c.pages[d].Qa());}c.Gd();setTimeout(function(){1==c.F.scale&&(c.M(c.J).transition({x:0,y:0},0),c.F.va.turn("setCornerDragging",!0));for(var d=0;d<c.document.numPages;d++){c.Ra(d)&&(c.pages[d].pa=!1);}c.kd();jQuery(c).trigger("onScaleChanged");c.ba=null;},500);}});jQuery(c.J+"_parent").on("mousewheel",function(d){if(!(c.le()||c.F.PreviewMode||(c.F.va.turn("cornerActivated")&&c.F.va.turn("stop"),c.F.I.rg||c.F.I.Dn))){d.preventDefault&&d.preventDefault();d.returnValue=!1;c.Id||(c.Id=0);0<d.deltaY?c.F.scale+c.Id+2*c.F.document.ZoomInterval<c.F.document.MaxZoomSize&&(c.Id=c.Id+2*c.F.document.ZoomInterval):c.Id=1.2<c.F.scale+c.Id-3*c.F.document.ZoomInterval?c.Id-3*c.F.document.ZoomInterval:-(c.F.scale-1);null!=c.Ce&&(window.clearTimeout(c.Ce),c.Ce=null);1.1<=c.F.scale+c.Id?(c.F.I.gb&&c.F.T.animate({opacity:0},0,function(){c.F.T.hide();}),c.M(c.J+"_panelLeft").finish(),c.M(c.J+"_panelRight").finish(),c.M(c.J+"_panelLeft").fadeTo("fast",0),c.M(c.J+"_panelRight").fadeTo("fast",0),c.F.va.turn("setCornerDragging",!1)):(c.M(c.J+"_panelLeft").finish(),c.M(c.J+"_panelRight").finish(),1<c.R?c.M(c.J+"_panelLeft").fadeTo("fast",1):c.M(c.J+"_panelLeft").fadeTo("fast",0),c.F.da<c.F.getTotalPages()&&c.M(c.J+"_panelRight").fadeTo("fast",1),c.M(c.J).transition({x:0,y:0},0),c.F.I.gb&&(c.F.T.show(),c.F.T.animate({opacity:1},100)),c.Ab=null,c.vc=null,c.wd=0,c.ze=0);c.gd=c.F.scale+c.Id;1>c.gd&&(c.gd=1);if(!(eb.browser.mozilla&&30>eb.browser.version)&&0<jQuery(c.J).find(d.target).length){if(1==c.gd){if(c.F.I.ta&&c.F.renderer.na){for(d=0;d<c.document.numPages;d++){jQuery(c.pages[d].U).Bc();}}c.M(c.J+"_parent").transition({transformOrigin:"0px 0px"},0);}else{if(1==c.F.scale&&c.M(c.J+"_parent").transition({transformOrigin:"0px 0px"},0),c.F.va.turn("setCornerDragging",!1),0<jQuery(c.J).has(d.target).length){d=jQuery(c.J+"_parent").Nf(d.pageX,d.pageY);var e=c.M(c.J+"_parent").css("transformOrigin").split(" ");2<=e.length?(e[0]=e[0].replace("px",""),e[1]=e[1].replace("px",""),c.Ed=parseFloat(e[0]),c.Fd=parseFloat(e[1]),0==c.Ed&&(c.Ed=d.x),0==c.Fd&&(c.Fd=d.y)):(c.Ed=d.x,c.Fd=d.y);c.M(c.J+"_parent").transition({transformOrigin:c.Ed+"px "+c.Fd+"px"},0,null,function(){if(eb.platform.touchonlydevice){c.F.scale=c.gd;for(var d=0;d<c.document.numPages;d++){c.Ra(d)&&(c.pages[d].scale=c.gd,c.pages[d].Qa());}c.Gd();}});}}}jQuery(".flowpaper_flipview_canvas").Bc();jQuery(".flowpaper_flipview_canvas_highres").Jb();jQuery(c.J+"_glyphcanvas").css("z-index",-1).Jb();c.F.va.turn("setCornerDragging",!1);c.M(c.J+"_parent").transition({scale:c.gd},0,"ease",function(){window.clearTimeout(c.Ce);c.Ce=setTimeout(function(){c.F.scale==c.gd&&c.Gd();c.F.scale=c.gd;for(var d=c.Id=0;d<c.document.numPages;d++){c.Ra(d)&&(c.pages[d].scale=c.F.scale,c.pages[d].Qa());}1==c.F.scale&&(c.M(c.J).transition({x:0,y:0},0),c.F.va.turn("setCornerDragging",!0));for(d=0;d<c.document.numPages;d++){c.Ra(d)&&(c.pages[d].pa=!1);}c.kd();c.gd=null;jQuery(c).trigger("onScaleChanged");jQuery(c.F.K).trigger("onScaleChanged",c.F.scale/c.F.document.MaxZoomSize);},150);});}});jQuery(c.J+"_arrowleft, "+c.J+"_panelLeft").on(!eb.platform.touchonlydevice||eb.platform.mobilepreview?"mousedown":"touchstart",function(d){if(c.F.I.mf){return jQuery(d.target).hasClass("flowpaper_arrow_start")?c.F.document.RTLMode?c.gotoPage(c.F.getTotalPages()):c.gotoPage(1):c.previous(),!1;}});jQuery(c.J+"_arrowright, "+c.J+"_panelRight").on(!eb.platform.touchonlydevice||eb.platform.mobilepreview?"mousedown":"touchstart",function(d){jQuery(d.target).hasClass("flowpaper_arrow_end")?c.F.document.RTLMode?c.gotoPage(1):c.gotoPage(c.F.getTotalPages()):c.next();return !1;});jQuery(d).css("overflow-y","hidden");jQuery(d).css("overflow-x","hidden");jQuery(d).css("-webkit-overflow-scrolling","hidden");}},Yh:function(c,d){c.wl=d.append("<div id='"+c.container+"_play' onclick='$FlowPaper(\""+c.P+"\").openFullScreen()' class='abc' style='position:absolute;left:"+(d.width()/2-20)+"px;top:"+(c.kg/2-12)+"px;width:"+c.od+"px;height:"+c.kg+"px;z-index:100;'></div>");jQuery("#"+c.container+"_play").zd(50,"#AAAAAA",!0);},ep:function(c,d){d.find("#"+c.container+"_play").remove();c.wl=null;},previous:function(c){if("FlipView"==c.F.H){var d=c.R-1;c.F.renderer.ne&&c.gf(d);1!=c.F.scale?c.Qa(1,!0,function(){jQuery(c.F.K).trigger("onScaleChanged",1/c.F.document.MaxZoomSize);c.F.turn("previous");}):c.F.turn("previous");}},next:function(c){if("FlipView"==c.F.H){var d=c.R;if(d<c.F.getTotalPages()||d==c.F.getTotalPages()&&c.F.I.ta){d++,c.F.renderer.ne&&c.gf(d),1!=c.F.scale?c.Qa(1,!0,function(){jQuery(c.F.K).trigger("onScaleChanged",1/c.F.document.MaxZoomSize);c.F.turn("next");}):c.F.turn("next");}}},$g:function(c,d,e){if(!c.animating){var g=c.L.width(),f=c.L.height(),n=null==c.gd?c.F.scale:c.gd;"FlipView"==c.F.H&&1<n&&!eb.browser.safari?c.M(c.J).transition({x:-c.Zn(d,c.F.scale),y:-c.$n(e)},0):"FlipView"==c.F.H&&1<n&&eb.browser.safari&&jQuery(".flowpaper_viewer").scrollTo({top:0.9*e/f*100+"%",left:d/g*100+"%"},0,{axis:"xy"});}},Ki:function(c){c=c.M(c.J+"_parent").css("transformOrigin")+"";return null!=c?(c=c.replace("translate",""),c=c.replace("(",""),c=c.replace(")",""),c=c.split(" "),1<c.length?{left:parseFloat(c[0].replace("px","")),top:parseFloat(c[1].replace("px",""))}:null):null;},Qe:function(c){!eb.platform.touchdevice&&"FlipView"==c.F.H&&1<c.F.scale?jQuery(".flowpaper_viewer").scrollTo({left:"50%"},0,{axis:"x"}):eb.platform.touchdevice||"FlipView"!=c.F.H||1!=c.F.scale||c.Ub()||jQuery(".flowpaper_viewer").scrollTo({left:"0%",top:"0%"},0,{axis:"xy"});}};return f;}(),X=window.Hq=X||{},Y=X;Y.Ph={PI:Math.PI,Mr:1/Math.PI,io:0.5*Math.PI,Kn:2*Math.PI,rs:Math.PI/180,qs:180/Math.PI};Y.ge={NONE:0,LEFT:-1,RIGHT:1,X:1,Y:2,Vh:4,Uq:0,Vq:1,Yq:2};Y.zm="undefined"!==typeof Float32Array?Float32Array:Array;Y.vq="undefined"!==typeof Float64Array?Float64Array:Array;Y.wq="undefined"!==typeof Int8Array?Int8Array:Array;Y.rq="undefined"!==typeof Int16Array?Int16Array:Array;Y.tq="undefined"!==typeof Int32Array?Int32Array:Array;Y.xq="undefined"!==typeof Uint8Array?Uint8Array:Array;Y.sq="undefined"!==typeof Uint16Array?Uint16Array:Array;Y.uq="undefined"!==typeof Uint32Array?Uint32Array:Array;Y.Uh=Y.zm;!0;!function(f,c){var d=f.Zj=ring.create({constructor:function(d,g){this.x=d===c?0:d;this.y=g===c?0:g;},x:0,y:0,dispose:function(){this.y=this.x=null;return this;},serialize:function(){return{name:this.name,x:this.x,y:this.y};},Fb:function(c){c&&this.name===c.name&&(this.x=c.x,this.y=c.y);return this;},clone:function(){return new d(this.x,this.y);}});}(X);!function(f,c){var d=Math.sin,e=Math.cos,g=f.Zj,h=f.Jm=ring.create({constructor:function(d,e,g,f){this.m11=d===c?1:d;this.m12=e===c?0:e;this.m21=g===c?0:g;this.m22=f===c?1:f;},m11:1,m12:0,m21:0,m22:1,dispose:function(){this.m22=this.m21=this.m12=this.m11=null;return this;},serialize:function(){return{name:this.name,m11:this.m11,m12:this.m12,m21:this.m21,m22:this.m22};},Fb:function(c){c&&this.name===c.name&&(this.m11=c.m11,this.m12=c.m12,this.m21=c.m21,this.m22=c.m22);return this;},reset:function(){this.m11=1;this.m21=this.m12=0;this.m22=1;return this;},rotate:function(c){var g=e(c);c=d(c);this.m11=g;this.m12=-c;this.m21=c;this.m22=g;return this;},scale:function(d,e){this.m21=this.m12=0;this.m22=this.m11=1;d!==c&&(this.m22=this.m11=d);e!==c&&(this.m22=e);return this;},multiply:function(c){var d=this.m11,e=this.m12,g=this.m21,f=this.m22,h=c.m11,t=c.m12,q=c.m21;c=c.m22;this.m11=d*h+e*q;this.m12=d*t+e*c;this.m21=g*h+f*q;this.m22=g*t+f*c;return this;},ss:function(c){var d=c.x;c=c.y;return new g(this.m11*d+this.m12*c,this.m21*d+this.m22*c);},im:function(c){var d=c.x,e=c.y;c.x=this.m11*d+this.m12*e;c.y=this.m21*d+this.m22*e;return c;},clone:function(){return new h(this.m11,this.m12,this.m21,this.m22);}});}(X);!function(f,c){var d=Math.sqrt,e=f.Uh,g=f.Vector3=ring.create({constructor:function(d,g,f){d&&d.length?this.ca=new e([d[0],d[1],d[2]]):(d=d===c?0:d,g=g===c?0:g,f=f===c?0:f,this.ca=new e([d,g,f]));},ca:null,dispose:function(){this.ca=null;return this;},serialize:function(){return{name:this.name,ca:this.ca};},Fb:function(c){c&&this.name===c.name&&(this.ca=c.ca);return this;},Od:function(){return new e(this.ca);},Rk:function(){return this.ca;},setXYZ:function(c){this.ca=new e(c);return this;},Sl:function(c){this.ca=c;return this;},clone:function(){return new g(this.ca);},qr:function(c){var d=this.ca;c=c.ca;return d[0]==c[0]&&d[1]==c[1]&&d[2]==c[2];},Gs:function(){this.ca[0]=0;this.ca[1]=0;this.ca[2]=0;return this;},negate:function(){var c=this.ca;return new g([-c[0],-c[1],-c[2]]);},Xr:function(){var c=this.ca;c[0]=-c[0];c[1]=-c[1];c[2]=-c[2];return this;},add:function(c){var d=this.ca;c=c.ca;return new g([d[0]+c[0],d[1]+c[1],d[2]+c[2]]);},an:function(c){var d=this.ca;c=c.ca;d[0]+=c[0];d[1]+=c[1];d[2]+=c[2];return this;},ls:function(c){var d=this.ca;c=c.ca;return new g([d[0]-c[0],d[1]-c[1],d[2]-c[2]]);},ms:function(c){var d=this.ca;c=c.ca;d[0]-=c[0];d[1]-=c[1];d[2]-=c[2];return this;},multiplyScalar:function(c){var d=this.ca;return new g([d[0]*c,d[1]*c,d[2]*c]);},Ur:function(c){var d=this.ca;d[0]*=c;d[1]*=c;d[2]*=c;return this;},multiply:function(c){var d=this.ca;c=c.ca;return new g([d[0]*c[0],d[1]*c[1],d[2]*c[2]]);},Vr:function(c){var d=this.ca;c=c.ca;d[0]*=c[0];d[1]*=c[1];d[2]*=c[2];return this;},divide:function(c){c=1/c;var d=this.ca;return new g([d[0]*c,d[1]*c,d[2]*c]);},mr:function(c){c=1/c;var d=this.ca;d[0]*=c;d[1]*=c;d[2]*=c;return this;},normalize:function(){var c=this.ca,e=c[0],f=c[1],c=c[2],l=e*e+f*f+c*c;0<l&&(l=1/d(l),e*=l,f*=l,c*=l);return new g([e,f,c]);},Mo:function(){var c=this.ca,e=c[0],g=c[1],f=c[2],m=e*e+g*g+f*f;0<m&&(m=1/d(m),e*=m,g*=m,f*=m);c[0]=e;c[1]=g;c[2]=f;return this;},yr:function(){var c=this.ca,e=c[0],g=c[1],c=c[2];return d(e*e+g*g+c*c);},hs:function(c){this.Mo();var d=this.ca;d[0]*=c;d[1]*=c;d[2]*=c;return this;},nr:function(c){var d=this.ca;c=c.ca;return d[0]*c[0]+d[1]*c[1]+d[2]*c[2];},er:function(c){var d=this.ca,e=c.ca;c=d[0];var g=d[1],f=d[2],p=e[0],r=e[1],e=e[2];d[0]=g*e-f*r;d[1]=f*p-c*e;d[2]=c*r-g*p;return this;},kr:function(c){var e=this.ca,g=c.ca;c=e[0]-g[0];var f=e[1]-g[1],e=e[2]-g[2];return d(c*c+f*f+e*e);},toString:function(){return"["+this.ca[0]+" , "+this.ca[1]+" , "+this.ca[2]+"]";}});f.Vector3.ZERO=function(){return new g([0,0,0]);};f.Vector3.dot=function(c,d){var e=c.ca,g=d.ca;return e[0]*g[0]+e[1]*g[1]+e[2]*g[2];};f.Vector3.equals=function(c,d){var e=c.ca,g=d.ca;return e[0]==g[0]&&e[1]==g[1]&&e[2]==g[2];};f.Vector3.cross=function(c,d){var e=c.ca,f=d.ca,m=e[0],p=e[1],e=e[2],r=f[0],t=f[1],f=f[2];return new g([p*f-e*t,e*r-m*f,m*t-p*r]);};f.Vector3.distance=function(c,e){var g=c.ca,f=e.ca,m=g[0]-f[0],p=g[1]-f[1],g=g[2]-f[2];return d(m*m+p*p+g*g);};f.Vector3.ns=function(c,d){var e=c.ca,f=d.ca;return new g([e[0]+f[0],e[1]+f[1],e[2]+f[2]]);};}(X);!function(f,c){var d=f.ge,e=d.X,g=d.Y,h=d.Vh,n=f.Vector3,k=f.Uh;f.jg=ring.create({constructor:function(d){this.ca=new k([0,0,0]);this.Rb=new k([0,0,0]);this.ratio=new k([0,0,0]);c!==d&&null!==d&&!1!==d&&this.Rl(d);},jb:null,ca:null,Rb:null,ratio:null,dispose:function(){this.ratio=this.Rb=this.ca=this.jb=null;return this;},serialize:function(){return{jb:this.name,ca:this.Od(),Rb:this.Rb,ratio:this.ratio};},Fb:function(c){c&&(this.setXYZ(c.ca),this.Rb=c.Rb,this.ratio=c.ratio);return this;},Rl:function(c){this.jb=c;return this;},Er:function(){return new n(this.ratio);},Dr:function(c){switch(c){case e:return this.ratio[0];case g:return this.ratio[1];case h:return this.ratio[2];}return -1;},Cr:function(c){switch(c){case e:return this.Rb[0];case g:return this.Rb[1];case h:return this.Rb[2];}return 0;},wp:function(d,e,g){d=d===c?0:d;e=e===c?0:e;g=g===c?0:g;this.ratio=new k([d,e,g]);return this;},tp:function(d,e,g){d=d===c?0:d;e=e===c?0:e;g=g===c?0:g;this.Rb=new k([d,e,g]);return this;},Od:function(){return new k(this.ca);},Rk:function(){return this.ca;},getX:function(){return this.ca[0];},getY:function(){return this.ca[1];},getZ:function(){return this.ca[2];},setXYZ:function(c){this.ca=new k(c);return this;},Sl:function(c){this.ca=c;return this;},setX:function(c){this.ca[0]=c;return this;},setY:function(c){this.ca[1]=c;return this;},setZ:function(c){this.ca[2]=c;return this;},getValue:function(c){switch(c){case e:return this.getX();case g:return this.getY();case h:return this.getZ();}return 0;},setValue:function(c,d){switch(c){case e:this.setX(d);break;case g:this.setY(d);break;case h:this.setZ(d);}return this;},reset:function(){this.setXYZ(this.Rb);return this;},collapse:function(){this.Rb=this.Od();return this;},Nk:function(){return new n(this.Od());},Ql:function(c){this.setXYZ(c.ca);}});}(X);!function(f,c){var d=f.ge,e=d.X,g=d.Y,h=d.Vh,n=Math.min,k=Math.max,l,m;l=function(c){return c?c.serialize():c;};m=f.isWorker?function(c){return c&&c.jb?(new f.jg).Fb(c):c;}:function(c,d){return c&&c.jb?this.vertices[d].Fb(c):c;};f.Ng=ring.create({constructor:function(d){this.depth=this.height=this.width=this.zc=this.lc=this.kc=this.Vd=this.Ud=this.Td=this.ye=this.xe=this.we=null;this.vertices=[];this.faces=[];this.ja=null;c!==d&&this.zj(d);},we:null,xe:null,ye:null,Td:null,Ud:null,Vd:null,kc:null,lc:null,zc:null,width:null,height:null,depth:null,vertices:null,faces:null,ja:null,dispose:function(){this.depth=this.height=this.width=this.zc=this.lc=this.kc=this.Vd=this.Ud=this.Td=this.ye=this.xe=this.we=null;this.Bk();this.Ck();this.ja=null;return this;},Ck:function(){var c,d;if(this.vertices){for(d=this.vertices.length,c=0;c<d;c++){this.vertices[c].dispose();}}this.vertices=null;return this;},Bk:function(){var c,d;if(this.faces){for(d=this.faces.length,c=0;c<d;c++){this.faces[c].dispose();}}this.faces=null;return this;},serialize:function(){return{ja:this.name,we:this.we,xe:this.xe,ye:this.ye,Td:this.Td,Ud:this.Ud,Vd:this.Vd,kc:this.kc,lc:this.lc,zc:this.zc,width:this.width,height:this.height,depth:this.depth,vertices:this.vertices?this.vertices.map(l):null,faces:null};},Fb:function(c){c&&(f.isWorker&&(this.Bk(),this.Ck()),this.we=c.we,this.xe=c.xe,this.ye=c.ye,this.Td=c.Td,this.Ud=c.Ud,this.Vd=c.Vd,this.kc=c.kc,this.lc=c.lc,this.zc=c.zc,this.width=c.width,this.height=c.height,this.depth=c.depth,this.vertices=(c.vertices||[]).map(m,this),this.faces=null);return this;},zj:function(c){this.ja=c;this.vertices=[];return this;},Ok:function(){return this.vertices;},wr:function(){return this.faces;},jk:function(){var c=this.vertices,d=c.length,f=d,l,m,v,A,w,x,D,B,K,C,E;for(d&&(l=c[0],m=l.Od(),v=m[0],A=m[1],m=m[2],w=x=v,D=B=A,K=C=m);0<=--f;){l=c[f],m=l.Od(),v=m[0],A=m[1],m=m[2],l.tp(v,A,m),w=n(w,v),D=n(D,A),K=n(K,m),x=k(x,v),B=k(B,A),C=k(C,m);}v=x-w;A=B-D;E=C-K;this.width=v;this.height=A;this.depth=E;this.Td=w;this.we=x;this.Ud=D;this.xe=B;this.Vd=K;this.ye=C;f=k(v,A,E);l=n(v,A,E);f==v&&l==A?(this.zc=g,this.lc=h,this.kc=e):f==v&&l==E?(this.zc=h,this.lc=g,this.kc=e):f==A&&l==v?(this.zc=e,this.lc=h,this.kc=g):f==A&&l==E?(this.zc=h,this.lc=e,this.kc=g):f==E&&l==v?(this.zc=e,this.lc=g,this.kc=h):f==E&&l==A&&(this.zc=g,this.lc=e,this.kc=h);for(f=d;0<=--f;){l=c[f],m=l.Od(),l.wp((m[0]-w)/v,(m[1]-D)/A,(m[2]-K)/E);}return this;},ip:function(){for(var c=this.vertices,d=c.length;0<=--d;){c[d].reset();}this.update();return this;},xn:function(){for(var c=this.vertices,d=c.length;0<=--d;){c[d].collapse();}this.update();this.jk();return this;},eo:function(c){switch(c){case e:return this.Td;case g:return this.Ud;case h:return this.Vd;}return -1;},zr:function(c){switch(c){case e:return this.we;case g:return this.xe;case h:return this.ye;}return -1;},getSize:function(c){switch(c){case e:return this.width;case g:return this.height;case h:return this.depth;}return -1;},update:function(){return this;},as:function(){return this;},km:function(){return this;}});}(X);!function(f){var c=0,d=f.ge.NONE;f.Yj=ring.create({constructor:function(e){this.id=++c;this.oa=e||null;this.hc=this.Oe=d;this.enabled=!0;},id:null,oa:null,Oe:null,hc:null,enabled:!0,dispose:function(c){!0===c&&this.oa&&this.oa.dispose();this.hc=this.Oe=this.name=this.oa=null;return this;},serialize:function(){return{vd:this.name,params:{Oe:this.Oe,hc:this.hc,enabled:!!this.enabled}};},Fb:function(c){c&&this.name===c.vd&&(c=c.params,this.Oe=c.Oe,this.hc=c.hc,this.enabled=c.enabled);return this;},enable:function(c){return arguments.length?(this.enabled=!!c,this):this.enabled;},cr:function(c){this.Oe=c||d;return this;},gs:function(c){this.hc=c||d;return this;},Hh:function(c){this.oa=c;return this;},Ok:function(){return this.oa?this.oa.Ok():null;},Df:function(){return this;},apply:function(c){var d=this;d._worker?d.bind("apply",function(f){d.unbind("apply");f&&f.Cg&&(d.oa.Fb(f.Cg),d.oa.update());c&&c.call(d);}).send("apply",{params:d.serialize(),Cg:d.oa.serialize()}):(d.Df(),c&&c.call(d));return d;},toString:function(){return"[Modifier "+this.name+"]";}});}(X);!function(f){f.Sh=ring.create({constructor:function(){this.aj=f.Ng;this.qm=f.jg;},aj:null,qm:null});var c=ring.create({co:function(c){if(arguments.length){var e=c.aj;return e?new e:null;}return null;},fo:function(c){return c&&c.vd&&f[c.vd]?new f[c.vd]:null;},xr:function(c){return c&&c.jl&&f[c.jl]?new f[c.jl]:new f.Sh;},Ar:function(c){return c&&c.ja&&f[c.ja]?(new f.Ng).Fb(c):new f.Ng;},Fr:function(c){return c&&c.jb&&f[c.jb]?(new f.jg).Fb(c):new f.jg;}});f.Wj=new c;}(X);!function(f){function c(c){return c?c.serialize():c;}var d=f.Wj.co,e=f.Lm=ring.create({constructor:function(c,e){this.oa=null;this.stack=[];this.Wi=f.isWorker?new f.Sh:c;this.oa=d(this.Wi);e&&(this.oa.zj(e),this.oa.jk());},Wi:null,oa:null,stack:null,dispose:function(c){this.Wi=null;if(c&&this.stack){for(;this.stack.length;){this.stack.pop().dispose();}}this.stack=null;this.oa&&this.oa.dispose();this.oa=null;return this;},serialize:function(){return{vd:this.name,params:{Ko:this.stack.map(c)}};},Fb:function(c){if(c&&this.name===c.vd){c=c.params.Ko;var d=this.stack,e;if(c.length!==d.length){for(e=d.length=0;e<c.length;e++){d.push(f.Wj.fo(c[e]));}}for(e=0;e<d.length;e++){d[e]=d[e].Fb(c[e]).Hh(this.oa);}this.stack=d;}return this;},Hh:function(c){this.oa=c;return this;},add:function(c){c&&(c.Hh(this.oa),this.stack.push(c));return this;},Df:function(){if(this.oa&&this.stack&&this.stack.length){var c=this.stack,d=c.length,e=this.oa,f=0;for(e.ip();f<d;){c[f].enabled&&c[f].Df(),f++;}e.update();}return this;},apply:function(c){var d=this;d._worker?d.bind("apply",function(e){d.unbind("apply");e&&e.Cg&&(d.oa.Fb(e.Cg),d.oa.update());c&&c.call(d);}).send("apply",{params:d.serialize(),Cg:d.oa.serialize()}):(d.Df(),c&&c.call(d));return d;},collapse:function(){this.oa&&this.stack&&this.stack.length&&(this.apply(),this.oa.xn(),this.stack.length=0);return this;},clear:function(){this.stack&&(this.stack.length=0);return this;},Br:function(){return this.oa;}});e.prototype.gk=e.prototype.add;}(X);!function(f){var c=f.Vector3;f.Pm=ring.create([f.Yj],{constructor:function(d,e,f){this.$super();this.ec=new c([d||0,e||0,f||0]);},ec:null,dispose:function(){this.ec.dispose();this.ec=null;this.$super();return this;},serialize:function(){return{vd:this.name,params:{ec:this.ec.serialize(),enabled:!!this.enabled}};},Fb:function(c){c&&this.name===c.vd&&(c=c.params,this.ec.Fb(c.ec),this.enabled=!!c.enabled);return this;},js:function(){var d=this.oa;this.ec=new c(-(d.Td+0.5*d.width),-(d.Ud+0.5*d.height),-(d.Vd+0.5*d.depth));return this;},Df:function(){for(var c=this.oa.vertices,e=c.length,f=this.ec,h;0<=--e;){h=c[e],h.Ql(h.Nk().an(f));}this.oa.km(f.negate());return this;}});}(X);!function(f,c){var d=f.ge.NONE,e=f.ge.LEFT,g=f.ge.RIGHT,h=f.Jm,n=Math.atan,k=Math.sin,l=Math.cos,m=f.Ph.PI,p=f.Ph.io,r=f.Ph.Kn,t=f.Zj;f.Bm=ring.create([f.Yj],{constructor:function(e,f,g){this.$super();this.hc=d;this.origin=this.height=this.width=this.Sd=this.min=this.max=0;this.ud=this.sd=null;this.Ve=0;this.be=!1;this.force=e!==c?e:0;this.offset=f!==c?f:0;g!==c?this.Gg(g):this.Gg(0);},force:0,offset:0,angle:0,Ve:0,max:0,min:0,Sd:0,width:0,height:0,origin:0,sd:null,ud:null,be:!1,dispose:function(){this.origin=this.height=this.width=this.Sd=this.min=this.max=this.Ve=this.angle=this.offset=this.force=null;this.sd&&this.sd.dispose();this.ud&&this.ud.dispose();this.be=this.ud=this.sd=null;this.$super();return this;},serialize:function(){return{vd:this.name,params:{force:this.force,offset:this.offset,angle:this.angle,Ve:this.Ve,max:this.max,min:this.min,Sd:this.Sd,width:this.width,height:this.height,origin:this.origin,sd:this.sd.serialize(),ud:this.ud.serialize(),be:this.be,hc:this.hc,enabled:!!this.enabled}};},Fb:function(c){c&&this.name===c.vd&&(c=c.params,this.force=c.force,this.offset=c.offset,this.angle=c.angle,this.Ve=c.Ve,this.max=c.max,this.min=c.min,this.Sd=c.Sd,this.width=c.width,this.height=c.height,this.origin=c.origin,this.sd.Fb(c.sd),this.ud.Fb(c.ud),this.be=c.be,this.hc=c.hc,this.enabled=!!c.enabled);return this;},Gg:function(c){this.angle=c;this.sd=(new h).rotate(c);this.ud=(new h).rotate(-c);return this;},Hh:function(c){this.$super(c);this.max=this.be?this.oa.lc:this.oa.kc;this.min=this.oa.zc;this.Sd=this.be?this.oa.kc:this.oa.lc;this.width=this.oa.getSize(this.max);this.height=this.oa.getSize(this.Sd);this.origin=this.oa.eo(this.max);this.Ve=n(this.width/this.height);return this;},Df:function(){if(!this.force){return this;}for(var c=this.oa.vertices,d=c.length,f=this.hc,h=this.width,n=this.offset,x=this.origin,D=this.max,B=this.min,K=this.Sd,C=this.sd,E=this.ud,F=x+h*n,z=h/m/this.force,y=h/(z*r)*r,G,H,J,N,L=1/h;0<=--d;){h=c[d],G=h.getValue(D),H=h.getValue(K),J=h.getValue(B),H=C.im(new t(G,H)),G=H.x,H=H.y,N=(G-x)*L,e===f&&N<=n||g===f&&N>=n||(N=p-y*n+y*N,G=k(N)*(z+J),N=l(N)*(z+J),J=G-z,G=F-N),H=E.im(new t(G,H)),G=H.x,H=H.y,h.setValue(D,G),h.setValue(K,H),h.setValue(B,J);}return this;}});}(X);!function(f){var c=f.ge,d=c.X,e=c.Y,g=c.Vh,h=f.Vector3,n=f.Uh,c=f.$j=ring.create([f.jg],{constructor:function(c,d){this.ja=c;this.$super(d);},ja:null,dispose:function(){this.ja=null;this.$super();return this;},Rl:function(c){this.jb=c;this.Rb=new n([c.x,c.y,c.z]);this.ca=new n(this.Rb);return this;},Od:function(){var c=this.jb;return new n([c.x,c.y,c.z]);},getX:function(){return this.jb.x;},getY:function(){return this.jb.y;},getZ:function(){return this.jb.z;},setXYZ:function(c){var d=this.jb;d.x=c[0];d.y=c[1];d.z=c[2];return this;},setX:function(c){this.jb.x=c;return this;},setY:function(c){this.jb.y=c;return this;},setZ:function(c){this.jb.z=c;return this;},reset:function(){var c=this.jb,d=this.Rb;c.x=d[0];c.y=d[1];c.z=d[2];return this;},collapse:function(){var c=this.jb;this.Rb=new n([c.x,c.y,c.z]);return this;},getValue:function(c){var f=this.jb;switch(c){case d:return f.x;case e:return f.y;case g:return f.z;}return 0;},setValue:function(c,f){var h=this.jb;switch(c){case d:h.x=f;break;case e:h.y=f;break;case g:h.z=f;}return this;},Ql:function(c){var d=this.jb;c=c.ca;d.x=c[0];d.y=c[1];d.z=c[2];return this;},Nk:function(){var c=this.jb;return new h([c.x,c.y,c.z]);}});c.prototype.Rk=c.prototype.Od;c.prototype.Sl=c.prototype.setXYZ;}(X);!function(f){var c=f.$j;f.Km=ring.create([f.Ng],{constructor:function(c){this.$super(c);},zj:function(d){this.$super(d);var e=0;d=this.ja;for(var f=this.vertices,h=d.geometry.vertices,n=h.length,k,e=0;e<n;){k=new c(d,h[e]),f.push(k),e++;}this.faces=null;return this;},update:function(){var c=this.ja.geometry;c.verticesNeedUpdate=!0;c.normalsNeedUpdate=!0;c.$q=!0;c.dynamic=!0;return this;},km:function(c){var e=this.ja.position;c=c.ca;e.x+=c[0];e.y+=c[1];e.z+=c[2];return this;}});}(X);!function(f){var c=ring.create([f.Sh],{constructor:function(){this.aj=f.Km;this.qm=f.$j;}});f.Im=new c;}(X);I=V.prototype;I.al=function(){var f=this;if(f.F.H&&(!f.F.H||0!=f.F.H.length)&&f.F.I.rb&&!f.Ti){f.Ti=!0;f.Kb=f.container+"_webglcanvas";var c=jQuery(f.J).offset(),d=f.w=f.F.N.width(),e=f.h=f.F.N.height(),g=c.left,c=c.top;f.Xb=new THREE.Scene;f.ee=jQuery(String.format("<canvas id='{0}' style='opacity:0;pointer-events:none;position:absolute;left:0px;top:0px;z-index:-1;width:100%;height:100%;'></canvas>",f.Kb,g,c));f.ee.get(0).addEventListener("webglcontextlost",function(c){f.pd();c.preventDefault&&c.preventDefault();f.ee.remove();return !1;},!1);f.Hd=new THREE.WebGLRenderer({alpha:!0,antialias:!0,canvas:f.ee.get(0)});f.Hd.setPixelRatio(eb.platform.Xa);f.Hd.shadowMap.type=THREE.PCFShadowMap;f.Hd.shadowMap.enabled=!0;f.Lb=new THREE.PerspectiveCamera(180/Math.PI*Math.atan(e/1398)*2,d/e,1,1000);f.Lb.position.z=700;f.Xb.add(f.Lb);g=new THREE.PlaneGeometry(d,1.3*e);c=new THREE.MeshPhongMaterial({color:f.F.I.backgroundColor});g=new THREE.Mesh(g,c);g.receiveShadow=!0;g.position.x=0;g.position.y=0;g.position.z=-3;c=new THREE.ShadowMaterial;c.opacity=0.15;g.material=c;f.Xb.add(g);f.Hd.setSize(d,e);0==f.Hd.context.getError()?(jQuery(f.F.N).append(f.Hd.domElement),f.WebGLObject=new THREE.Object3D,f.WebGLObject.scale.set(1,1,0.35),f.Wb=new THREE.Object3D,f.WebGLObject.add(f.Wb),f.Xb.add(f.WebGLObject),f.fb=new THREE.DirectionalLight(16777215,0.2),f.fb.position.set(500,0,800),f.fb.intensity=0.37,f.fb.shadow=new THREE.LightShadow(new THREE.PerspectiveCamera(70,1,5,2000)),f.fb.castShadow=!0,f.fb.shadow.bias=-0.000222,f.fb.shadow.mapSize.height=1024,f.fb.shadow.mapSize.width=1024,f.Xb.add(f.fb),d=f.ks=new THREE.CameraHelper(f.fb.shadow.camera),d.visible=!1,f.Xb.add(d),f.Yb=new THREE.AmbientLight(16777215),f.Yb.intensity=0.75,f.Yb.visible=!0,f.Xb.add(f.Yb),f.Lb.lookAt(f.Xb.position),f.$i(),f.F.renderer.na&&jQuery(f.F.renderer).bind("onTextDataUpdated",function(c,d){for(var e=f.M(f.J).scrollTop(),g=d-2,m=d+12,p=f.M(f.J).height();g<m;g++){var r=f.getPage(g);if(r&&r.Nc(e,p)&&0==r.pageNumber%2){var t=f.pages.length>g+1?f.pages[g]:null;f.F.renderer.S[r.pageNumber].loaded?t&&!f.F.renderer.S[t.pageNumber].loaded&&f.F.renderer.wc(t.pageNumber+1,!0,function(){}):f.F.renderer.wc(r.pageNumber+1,!0,function(){t&&!f.F.renderer.S[t.pageNumber].loaded&&f.F.renderer.wc(t.pageNumber+1,!0,function(){});});r.Pc(f.F.renderer.ga(r.pageNumber+1),f.F.renderer.ga(r.pageNumber+2),!0);}}})):f.pd();f.Ti=!1;}};I.pd=function(){this.F.I.rb=!1;for(var f=0;f<this.document.numPages;f++){this.pages[f]&&this.pages[f].ja&&this.pages[f].En();}this.Xb&&(this.WebGLObject&&this.Xb.remove(this.WebGLObject),this.Lb&&this.Xb.remove(this.Lb),this.Yb&&this.Xb.remove(this.Yb),this.fb&&this.Xb.remove(this.fb),this.ee.remove());this.Kb=null;};I.Fl=function(){if(this.F.I.rb){if(this.se=[],this.ee){for(var f=0;f<this.document.numPages;f++){this.pages[f].ja&&this.pages[f].Lg(!0);}var f=this.F.N.width(),c=this.F.N.height(),d=180/Math.PI*Math.atan(c/1398)*2;this.Hd.setSize(f,c);this.Lb.fov=d;this.Lb.aspect=f/c;this.Lb.position.z=700;this.Lb.position.x=0;this.Lb.position.y=0;this.Lb.updateProjectionMatrix();jQuery("#"+this.Kb).css("opacity","0");}else{this.al();}}};I.Fp=function(){var f=jQuery(this.J).offset();jQuery(this.J).width();var c=jQuery(this.J).height();this.Lb.position.y=-1*((this.ee.height()-c)/2-f.top)-this.F.N.offset().top;this.Lb.position.x=0;this.ko=!0;};I.le=function(){if(!this.F.I.rb){return !1;}for(var f=this.mg,c=0;c<this.document.numPages;c++){if(this.pages[c].ac||this.pages[c].Ob){f=!0;}}return f;};I.bo=function(f){return f==this.wa?2:f==this.wa-2?1:f==this.wa+2?1:0;};I.cn=function(){for(var f=jQuery(this.J).width(),c=0;c<this.document.numPages;c++){this.pages[c].ja&&(c+1<this.R?this.pages[c].ac||this.pages[c].Ob||this.pages[c].ja.rotation.y==-Math.PI||this.pages[c].ro():this.pages[c].ac||this.pages[c].Ob||0==this.pages[c].ja.rotation.y||this.pages[c].so(),this.pages[c].ja.position.x=800<f?0.5:0,this.pages[c].ja.position.y=0,this.pages[c].ac||this.pages[c].Ob||(this.pages[c].ja.position.z=this.bo(c)),this.pages[c].ja.visible=0==this.pages[c].ja.position.z?!1:!0);}};I.Lj=function(f,c){var d=this;d.Oi=!1;var e=d.F.getTotalPages();d.mg=!0;d.Sj=f;d.lq=c;if(1==d.F.scale){if("next"==f&&(d.wa?d.wa=d.wa+2:d.wa=d.R-1,0==e%2&&d.wa==e-2&&(d.Oi=!0),0!=d.wa%2&&(d.wa=d.wa-1),d.wa>=e-1&&0!=e%2)){d.mg=!1;return;}"previous"==f&&(d.wa=d.wa?d.wa-2:d.R-3,0!=d.wa%2&&(d.wa+=1),d.wa>=e&&(d.wa=e-3));"page"==f&&(d.wa=c-3,f=d.wa>=d.R-1?"next":"previous");d.pages[d.wa]&&!d.pages[d.wa].ja&&d.pages[d.wa].Se();d.pages[d.wa-2]&&!d.pages[d.wa-2].ja&&d.pages[d.wa-2].Se();d.pages[d.wa+2]&&!d.pages[d.wa+2].ja&&d.pages[d.wa+2].Se();d.Fp();"0"==jQuery("#"+d.Kb).css("opacity")&&jQuery("#"+d.Kb).animate({opacity:1},50,function(){});var g=new jQuery.Deferred;g.then(function(){d.cn();jQuery("#"+d.Kb).css("z-index",99);d.mg=!1;if("next"==f&&!d.pages[d.wa].ac&&!d.pages[d.wa].Ob){if(0==d.wa||d.Oi){d.F.va.css({opacity:0}),d.Wb.position.x=d.pages[d.wa].Ac/2*-1,jQuery(d.J+"_parent").transition({x:0},0,"ease",function(){});}0<d.wa&&(d.Wb.position.x=0);jQuery("#"+d.Kb).css("z-index",99);d.fe||(d.fe=!0,d.pj());d.fb.position.set(300,d.h/2,400);d.fb.intensity=0;d.Yb.color.setRGB(1,1,1);var c=d.Qk();(new TWEEN.Tween({intensity:d.fb.intensity})).to({intensity:0.37},c/2).easing(TWEEN.Easing.Sinusoidal.EaseInOut).onUpdate(function(){d.fb.intensity=this.intensity;d.Yb.intensity=1-this.intensity;d.Yb.color.setRGB(1-this.intensity/6,1-this.intensity/6,1-this.intensity/6);}).onComplete(function(){(new TWEEN.Tween({intensity:d.fb.intensity})).to({intensity:0},c/2).easing(TWEEN.Easing.Sinusoidal.EaseInOut).onUpdate(function(){d.fb.intensity=this.intensity;d.Yb.intensity=1-this.intensity;d.Yb.color.setRGB(1-this.intensity/6,1-this.intensity/6,1-this.intensity/6);}).start();}).start();d.pages[d.wa].Sn(d.Pk());}"previous"==f&&(d.mg=!1,!d.pages[d.wa]||d.pages[d.wa].Ob||d.pages[d.wa].ac||(0==d.wa&&(d.F.va.css({opacity:0}),jQuery(d.J+"_parent").transition({x:-(d.Lc()/4)},0,"ease",function(){}),d.Wb.position.x=0),d.F.da==d.F.getTotalPages()&&0==d.F.getTotalPages()%2?(d.F.va.css({opacity:0}),d.Wb.position.x=d.pages[d.wa].Ac/2,jQuery(d.J+"_parent").transition({x:0},0,"ease",function(){})):0<d.wa&&(d.Wb.position.x=0),jQuery("#"+d.Kb).css("z-index",99),d.fe||(d.fe=!0,d.pj()),d.fb.position.set(-300,d.h/2,400),d.fb.intensity=0,d.Yb.color.setRGB(1,1,1),c=d.Qk(),(new TWEEN.Tween({intensity:d.fb.intensity})).to({intensity:0.37},c/2).easing(TWEEN.Easing.Sinusoidal.EaseInOut).onUpdate(function(){d.fb.intensity=this.intensity;d.Yb.intensity=1-this.intensity;d.Yb.color.setRGB(1-this.intensity/6,1-this.intensity/6,1-this.intensity/6);}).onComplete(function(){(new TWEEN.Tween({intensity:d.fb.intensity})).to({intensity:0},c/2).easing(TWEEN.Easing.Sinusoidal.EaseInOut).onUpdate(function(){d.fb.intensity=this.intensity;d.Yb.intensity=1-this.intensity;d.Yb.color.setRGB(1-this.intensity/6,1-this.intensity/6,1-this.intensity/6);}).start();}).start(),d.pages[d.wa].Tn(d.Pk())));});0==d.wa||d.Oi?jQuery("#"+d.Kb).animate({opacity:1},{duration:60,always:function(){g.resolve();}}):g.resolve();}};I.Qk=function(){var f=800;"very fast"==this.F.I.Zc&&(f=200);"fast"==this.F.I.Zc&&(f=300);"slow"==this.F.I.Zc&&(f=1700);"very slow"==this.F.I.Zc&&(f=2700);return f;};I.Pk=function(){var f=1.5;"very fast"==this.F.I.Zc&&(f=0.4);"fast"==this.F.I.Zc&&(f=0.7);"slow"==this.F.I.Zc&&(f=2.3);"very slow"==this.F.I.Zc&&(f=3.7);return f;};I.lo=function(){this.F.I.gh?("next"==this.Sj&&this.F.va.turn("page",this.wa+2,"instant"),"previous"==this.Sj&&this.F.va.turn("page",this.wa,"instant")):this.F.va.turn(this.Sj,this.lq,"instant");this.wa=null;};I.pj=function(){var f,c=this;c.ic||(c.ic=[]);3>c.ic.length&&(f=!0);if((c.F.I.rb||c.fe)&&(c.fe||f)&&(c.Nd||(c.Nd=0,c.Ag=(new Date).getTime(),c.elapsedTime=0),f=(new Date).getTime(),requestAnim(function(){c.pj();}),TWEEN.update(),c.Hd.render(c.Xb,c.Lb),c.Nd++,c.elapsedTime+=f-c.Ag,c.Ag=f,1000<=c.elapsedTime&&4>c.ic.length&&(f=c.Nd,c.Nd=0,c.elapsedTime-=1000,c.ic.push(f),3==c.ic.length&&!c.Ei))){c.Ei=!0;for(var d=f=0;3>d;d++){f+=c.ic[d];}25>f/3&&c.pd();}};I.Yf=function(f){var c=this;if(f&&!c.jd){c.jd=f;}else{if(f&&c.jd&&10>c.jd+f){c.jd=c.jd+f;return;}}c.Hd&&c.Xb&&c.Lb&&c.ko?c.animating?setTimeout(function(){c.Yf();},500):(0<c.jd?(c.jd=c.jd-1,requestAnim(function(){c.Yf();})):c.jd=null,!c.fe&&0<c.jd&&c.Hd.render(c.Xb,c.Lb)):c.jd=null;};I.$i=function(){var f=this;if(!f.F.initialized){setTimeout(function(){f.$i();},1000);}else{if(!eb.platform.ios&&(f.ic||(f.ic=[]),f.ee&&f.F.I.rb&&!f.fe&&4>f.ic.length)){f.Nd||(f.Nd=0,f.Ag=(new Date).getTime(),f.elapsedTime=0);var c=(new Date).getTime();requestAnim(function(){f.$i();});f.Nd++;f.elapsedTime+=c-f.Ag;f.Ag=c;c=f.ee.get(0);if(c=c.getContext("webgl")||c.getContext("experimental-webgl")){if(c.clearColor(0,0,0,0),c.enable(c.DEPTH_TEST),c.depthFunc(c.LEQUAL),c.clear(c.COLOR_BUFFER_BIT|c.DEPTH_BUFFER_BIT),1000<=f.elapsedTime&&4>f.ic.length&&(c=f.Nd,f.Nd=0,f.elapsedTime-=1000,f.ic.push(c),4==f.ic.length&&!f.Ei)){f.Ei=!0;for(var d=c=0;3>d;d++){c+=f.ic[d];}25>c/3&&f.pd();}}else{f.pd();}}}};I.To=function(){for(var f=this,c=!1,d=0;d<f.document.numPages;d++){if(f.pages[d].ac||f.pages[d].Ob){c=!0;}}c||(f.mg=!1,3>f.ic?setTimeout(function(){f.le()||(f.fe=!1);},3000):f.fe=!1,f.lo());};var Ea=function(){function f(){}f.prototype={Nc:function(c,d){return d.pages.R==d.pageNumber||d.R==d.pageNumber+1;},Xn:function(c,d,e){var f=null!=d.dimensions.nb?d.dimensions.nb:d.dimensions.la;return !d.pages.Ub()&&c.pb&&(!eb.browser.safari||eb.platform.touchdevice||eb.browser.safari&&7.1>eb.browser.Qb)?e:null!=d.dimensions.nb&&c.pb&&d.F.renderer.ra?d.pages.od/(d.F.Ze?1:2)/f:d.vb&&!d.F.renderer.ra?d.pages.od/2/d.F.renderer.Ba[d.pageNumber].nb:c.pb&&!d.vb&&!d.F.renderer.ra&&1<d.scale?d.Li()/f:e;},gn:function(c,d,e){jQuery(d.U+"_textoverlay").append(e);},lk:function(c,d,e,f,h,n,k){var l=c.$o==f&&!d.F.renderer.pb;e&&(c.$o=f,c.ds=e.attr("id"),c.ap!=e.css("top")||h||c.cp!=d.pageNumber?(null==c.Ad||h||c.Ad.remove(),c.ap=e.css("top"),c.Ad=h?n?e.wrap(jQuery(String.format("<div class='flowpaper_pageword flowpaper_pageword_"+c.P+"' style='{0};border-top-width: 3px;border-left-width: 3px;border-style:dotted;border-color: #ee0000;'></div>",e.attr("style")))).parent():k?e.wrap(jQuery(String.format("<div class='flowpaper_pageword flowpaper_pageword_"+c.P+"' style='{0};border-top-width: 3px;border-right-width: 3px;border-style:dotted;border-color: #ee0000;'></div>",e.attr("style")))).parent():e.wrap(jQuery(String.format("<div class='flowpaper_pageword flowpaper_pageword_"+c.P+"' style='{0};border-top-width: 3px;border-right-width: 3px;border-style:dotted;border-color: transparent;'></div>",e.attr("style")))).parent():e.wrap(jQuery(String.format("<div class='flowpaper_pageword flowpaper_pageword_"+c.P+"' style='{0};border-width: 3px;border-style:dotted;border-color: #ee0000;'></div>",e.attr("style")))).parent(),c.Ad.css({"margin-left":"-3px","margin-top":"-4px","z-index":"11"}),jQuery(d.xa).append(c.Ad)):l?(c.Ad.css("width",c.Ad.width()+e.width()),jQuery(c.Ad.children()[0]).width(c.Ad.width())):(c.Ad.css("left",e.css("left")),c.Ad.append(e)),e.css({left:"0px",top:"0px"}),e.addClass("flowpaper_selected"),e.addClass("flowpaper_selected_default"),e.addClass("flowpaper_selected_searchmatch"),c.cp=d.pageNumber);}};return f;}(),Ba=function(){function f(){}f.prototype={create:function(c,d){if("FlipView"==c.F.H&&(c.Bn=10<c.pages.Fe?c.pages.Fe:10,!(c.Ui||c.F.renderer.ne&&!c.Wa&&c.pageNumber>c.Bn+6))){c.Rc=jQuery("<div class='flowpaper_page flowpaper_page_zoomIn' id='"+c.xd+"' style='"+c.getDimensions()+";z-index:2;background-size:100% 100%;background-color:#ffffff;margin-bottom:0px;backface-visibility:hidden;'><div id='"+c.aa+"' style='height:100%;width:100%;'></div></div>");c.pages.F.va&&c.F.renderer.ne?c.pages.F.va.turn("addPage",c.Rc,c.pageNumber+1):jQuery(d).append(c.Rc);var e=c.sg()*c.Ma,f=c.za()/e;null!=c.dimensions.nb&&c.pb&&c.F.renderer.ra&&(f=c.pages.od/2/e);c.Zi=f;c.Tf(f);c.Ui=!0;c.Wa=!0;c.F.renderer.Pd(c);c.Ul();c.Se&&c.Se();}},qo:function(c){var d=c.sg()*c.Ma,e=c.za()/d;null!=c.dimensions.nb&&c.pb&&c.F.renderer.ra&&(e=c.pages.od/2/d);c.Zi=e;c.Tf(e);},Mc:function(c){return c.pages.Mc()/(c.F.I.ta?1:2);},Jf:function(c){return c.pages.Jf();},getDimensions:function(c){if("FlipView"==c.F.H){return c.L.width(),"position:absolute;left:0px;top:0px;width:"+c.za(c)+";height:"+c.Ha(c);}},za:function(c){if("FlipView"==c.F.H){return c.pages.od/(c.F.I.ta?1:2)*c.scale;}},Ji:function(c){if("FlipView"==c.F.H){return c.pages.od/(c.F.I.ta?1:2)*1;}},Li:function(c){if("FlipView"==c.F.H){return c.pages.od/(c.F.I.ta?1:2);}},Ha:function(c){if("FlipView"==c.F.H){return c.pages.kg*c.scale;}},Ii:function(c){if("FlipView"==c.F.H){return 1*c.pages.kg;}},bc:function(){return 0;},Nc:function(c){var d=c.F.I.rb;if("FlipView"==c.F.H){return c.pages.R>=c.pageNumber-(d?3:2)&&c.pages.R<=c.pageNumber+(d?5:4);}},ub:function(c){var d=c.U;0==jQuery(d).length&&(d=jQuery(c.Rc).find(c.U));(c.pageNumber<c.pages.R-15||c.pageNumber>c.pages.R+15)&&c.Rc&&!c.Rc.parent().hasClass("turn-page-wrapper")&&!c.zb&&0!=c.pageNumber&&(jQuery(d).find("*").unbind(),jQuery(d).find("*").remove(),c.initialized=!1,c.xc=!1);}};ya.prototype.wg=function(){return eb.platform.touchdevice?"FlipView"==this.F.H?!this.F.I.ta&&window.devicePixelRatio&&1<window.devicePixelRatio?1.9:2.6:1:"FlipView"==this.F.H?2:1;};return f;}();I=ya.prototype;I.Se=function(){var f=this;if(0==f.pageNumber%2&&1==f.scale&&f.F.I.rb){if(f.ja&&f.pages.Wb.remove(f.ja),f.pages.Kb||f.pages.al(),f.pages.Ti){setTimeout(function(){f.Se();},200);}else{f.Ac=f.za(f);f.Wd=f.Ha(f);f.angle=0.25*Math.PI*this.Ac/this.Wd;f.Nj=!eb.platform.touchonlydevice;for(var c=0;6>c;c++){c!=f.ua.Za||f.Ua[f.ua.Za]?c!=f.ua.back||f.Ua[f.ua.back]?f.Ua[c]||c==f.ua.back||c==f.ua.Za||(f.Ua[c]=new THREE.MeshPhongMaterial({color:f.So}),f.Ua[c].name="edge"):(f.Ua[f.ua.back]=new THREE.MeshPhongMaterial({map:null,overdraw:!0,shininess:15}),f.Ua[f.ua.back].name="back",f.dk(f.pageNumber,f.Ac,f.Wd,f.ua.back,function(c){f.jc||(f.Ij=new THREE.TextureLoader,f.Ij.load(c,function(c){c.minFilter=THREE.LinearFilter;f.Ua[f.ua.back].map=c;}));})):(f.Ua[f.ua.Za]=new THREE.MeshPhongMaterial({map:null,overdraw:!0,shininess:15}),f.Ua[f.ua.Za].name="front",f.dk(f.pageNumber,f.Ac,f.Wd,f.ua.Za,function(c){f.jc||(f.Hj=new THREE.TextureLoader,f.Hj.load(c,function(c){c.minFilter=THREE.LinearFilter;f.Ua[f.ua.Za].map=c;}));}));}f.ja=new THREE.Mesh(new THREE.BoxGeometry(f.Ac,f.Wd,0.1,10,10,1),new THREE.MeshFaceMaterial(f.Ua));f.ja.receiveShadow=f.Nj;f.ja.overdraw=!0;f.oa=new X.Lm(X.Im,f.ja);f.ec=new X.Pm(f.Ac/2,0,0);f.oa.gk(f.ec);f.oa.collapse();f.$b=new X.Bm(0,0,0);f.$b.hc=X.ge.LEFT;f.Wd>f.Ac&&(f.$b.be=!0);f.oa.gk(f.$b);f.pages.Wb.add(f.ja);f.ja.position.x=0;f.ja.position.z=-1;f.wh&&(f.ja.rotation.y=-Math.PI);f.xh&&(f.ja.rotation.y=0);}}};I.dk=function(f,c,d,e,g){var h="image/jpeg",n,k,l;this.pages.se||(this.pages.se=[]);h="image/jpeg";n=0.95;if(e==this.ua.Za&&this.pages.se[this.ua.Za]){g(this.pages.se[this.ua.Za]);}else{if(e==this.ua.back&&this.pages.se[this.ua.back]){g(this.pages.se[this.ua.back]);}else{if(k=document.createElement("canvas"),k.width=c,k.height=d,l=k.getContext("2d"),l.gg=l.mozImageSmoothingEnabled=l.imageSmoothingEnabled=!0,l.fillStyle="white",l.fillRect(0,0,k.width,k.height),l.drawImage(this.F.Yi,k.width/2+(this.bc()-10),k.height/2,24,8),this.F.Ld){if(e==this.ua.back){l.beginPath();l.strokeStyle="transparent";l.rect(0.65*c,0,0.35*c,d);var m=l.createLinearGradient(0,0,c,0);m.addColorStop(0.93,"rgba(255, 255, 255, 0)");m.addColorStop(0.96,"rgba(170, 170, 170, 0.05)");m.addColorStop(1,"rgba(125, 124, 125, "+this.F.rf+")");l.fillStyle=m;l.fill();l.stroke();l.closePath();m=k.toDataURL(h,n);this.pages.se[this.ua.back]=m;g(m);}e==this.ua.Za&&0!=f&&(l.beginPath(),l.strokeStyle="transparent",l.rect(0,0,0.35*c,d),m=l.createLinearGradient(0,0,0.07*c,0),m.addColorStop(0.07,"rgba(125, 124, 125, "+this.F.rf+")"),m.addColorStop(0.93,"rgba(255, 255, 255, 0)"),l.fillStyle=m,l.fill(),l.stroke(),l.closePath(),m=k.toDataURL(h,n),this.pages.se[this.ua.Za]=m,g(m));}}}};I.Lg=function(f){if(this.ja&&this.jc||f){this.jm(),this.oa.dispose(),this.ec.dispose(),this.oa=this.ja=this.ec=null,this.Ua=[],this.md=this.resources=null,this.Se(),this.jc=!1;}};I.En=function(){this.ja&&this.jc&&(this.jm(),this.oa.dispose(),this.ec.dispose(),this.oa=this.ja=this.ec=null,this.Ua=[],this.resources=null,this.jc=!1);};I.jm=function(){var f=this.ja;if(f){for(var c=0;c<f.material.materials.length;c++){f.material.materials[c].map&&f.material.materials[c].map.dispose(),f.material.materials[c].dispose();}f.geometry.dispose();this.pages.Wb.remove(f);}};I.Pc=function(f,c,d){var e=this;if(e.F.I.rb&&(!e.jc||d)&&0==e.pageNumber%2&&1==e.F.scale&&1==e.scale){for(e.jc=!0,e.yh=!0,e.Ac=e.za(e),e.Wd=e.Ha(e),e.angle=0.25*Math.PI*this.Ac/this.Wd,d=0;6>d;d++){d==e.ua.Za?e.loadResources(e.pageNumber,function(){e.sj(e.pageNumber,e.ua.Za,f,"image/jpeg",0.95,e.Ac,e.Wd,function(c){e.Ua[e.ua.Za]&&(e.Ua[e.ua.Za].map=null);e.pages.Yf(2);e.Hj=new THREE.TextureLoader;e.Hj.load(c,function(c){c.minFilter=THREE.LinearFilter;e.Ua[e.ua.Za]=new THREE.MeshPhongMaterial({map:c,overdraw:!0});e.ja&&e.ja.material.materials&&e.ja.material.materials&&(e.ja.material.materials[e.ua.Za]=e.Ua[e.ua.Za]);e.yh&&e.Ua[e.ua.Za]&&e.Ua[e.ua.Za].map&&e.Ua[e.ua.back]&&e.Ua[e.ua.back].map&&(e.yh=!1,e.pages.Yf(2));});});}):d==e.ua.back&&e.loadResources(e.pageNumber+1,function(){e.sj(e.pageNumber+1,e.ua.back,c,"image/jpeg",0.95,e.Ac,e.Wd,function(c){e.Ua[e.ua.back]&&(e.Ua[e.ua.back].map=null);e.pages.Yf(2);e.Ij=new THREE.TextureLoader;e.Ij.load(c,function(c){c.minFilter=THREE.LinearFilter;e.Ua[e.ua.back]=new THREE.MeshPhongMaterial({map:c,overdraw:!0});e.ja&&e.ja.material.materials&&e.ja.material.materials&&(e.ja.material.materials[e.ua.back]=e.Ua[e.ua.back]);e.yh&&e.Ua[e.ua.Za]&&e.Ua[e.ua.Za].map&&e.Ua[e.ua.back]&&e.Ua[e.ua.back].map&&(e.yh=!1,e.pages.Yf(2));});});});}}};I.loadResources=function(f,c){var d=this,e=d.pages.getPage(f);if(e){if(null==e.resources&&(e.resources=[],d.F.Z[f])){for(var g=0;g<d.F.Z[f].length;g++){if("image"==d.F.Z[f][g].type||"video"==d.F.Z[f][g].type||"iframe"==d.F.Z[f][g].type){var h=d.F.Z[f][g].src,n=new Image;n.loaded=!1;n.setAttribute("crossOrigin","anonymous");n.setAttribute("data-x",d.F.Z[f][g].qh?d.F.Z[f][g].qh:d.F.Z[f][g].Oj);n.setAttribute("data-y",d.F.Z[f][g].rh?d.F.Z[f][g].rh:d.F.Z[f][g].Pj);d.F.Z[f][g].Fi&&n.setAttribute("data-x",d.F.Z[f][g].Fi);d.F.Z[f][g].Gi&&n.setAttribute("data-y",d.F.Z[f][g].Gi);n.setAttribute("data-width",d.F.Z[f][g].width);n.setAttribute("data-height",d.F.Z[f][g].height);jQuery(n).bind("load",function(){this.loaded=!0;d.Hl(f)&&c();});n.src=h;e.resources.push(n);}}}d.Hl(f)&&c();}};I.Hl=function(f){var c=!0;f=this.pages.getPage(f);if(!f.resources){return !1;}for(var d=0;d>f.resources.length;d++){f.resources[d].loaded||(c=!1);}return c;};I.ro=function(){this.ja.rotation.y=-Math.PI;this.page.ac=!1;this.page.wh=!0;this.page.Ob=!1;this.page.xh=!1;};I.so=function(){this.ja.rotation.y=0;this.page.ac=!1;this.page.xh=!0;this.page.Ob=!1;this.page.wh=!1;};I.sj=function(f,c,d,e,g,h,n,k){var l=this,m=new Image,p,r,t,q,u=new jQuery.Deferred;u.then(function(){t=l.renderer.na&&l.renderer.S[0]?l.renderer.S[0].width:m.naturalWidth;q=l.renderer.na&&l.renderer.S[0]?l.renderer.S[0].height:m.naturalHeight;if(l.renderer.na){var u=1.5<l.renderer.Xa?l.renderer.Xa:1;t=l.za()*u;q=l.Ha()*u;}else{t/=2,q/=2;}p=document.createElement("canvas");r=p.getContext("2d");if(t<h||q<n){t=h,q=n;}t<d.width&&(t=d.width);q<d.height&&(q=d.height);p.width=t;p.height=q;r.clearRect(0,0,p.width,p.height);r.fillStyle="rgba(255, 255, 255, 1)";r.fillRect(0,0,t,q);r.drawImage(m,0,0,t,q);jQuery(p).data("needs-overlay",1);l.Zd(p,c==l.ua.Za?0:1).then(function(){l.Al?l.Al++:l.Al=1;var m=t/(l.sg()*l.Ma),u=l.pages.getPage(f).resources;if(u){for(var v=0;v<u.length;v++){r.drawImage(u[v],parseFloat(u[v].getAttribute("data-x"))*m,parseFloat(u[v].getAttribute("data-y"))*m,parseFloat(u[v].getAttribute("data-width"))*m,parseFloat(u[v].getAttribute("data-height"))*m);}}l.F.Ld&&(c==l.ua.back&&(r.beginPath(),r.strokeStyle="transparent",r.rect(0.65*t,0,0.35*t,q),m=r.createLinearGradient(0,0,t,0),m.addColorStop(0.93,"rgba(255, 255, 255, 0)"),m.addColorStop(0.96,"rgba(170, 170, 170, 0.05)"),m.addColorStop(1,"rgba(125, 124, 125, 0.3)"),r.fillStyle=m,r.fill(),r.stroke(),r.closePath()),c==l.ua.Za&&0!=f&&(r.beginPath(),r.strokeStyle="transparent",r.rect(0,0,0.35*t,q),m=r.createLinearGradient(0,0,0.07*t,0),m.addColorStop(0.07,"rgba(125, 124, 125, 0.3)"),m.addColorStop(0.93,"rgba(255, 255, 255, 0)"),r.fillStyle=m,r.fill(),r.stroke(),r.closePath()));try{var D=p.toDataURL(e,g);k(D);}catch(B){if(this.src&&this.src.indexOf("blob:")){throw B;}ja(d,function(d){l.sj(f,c,d,e,g,h,n,k);});}});});e=0==d.indexOf("data:image/png")?"image/png":"image/jpeg";g=g||0.92;l.V&&!l.zb&&0!=l.V.naturalWidth&&l.V.getAttribute("src")==d?(m=l.V,u.resolve()):l.pages.pages[f]&&!l.pages.pages[f].zb&&l.pages.pages[f].V&&0!=l.pages.pages[f].V.naturalWidth&&l.pages.pages[f].V.getAttribute("src")==d?(m=l.pages.pages[f].V,u.resolve()):l.pages.pages[f-1]&&!l.pages.pages[f-1].zb&&l.pages.pages[f-1].V&&0!=l.pages.pages[f-1].V.naturalWidth&&l.pages.pages[f-1].V.getAttribute("src")==d?(m=l.pages.pages[f-1].V,u.resolve()):l.pages.pages[f+1]&&!l.pages.pages[f+1].zb&&l.pages.pages[f+1].V&&0!=l.pages.pages[f+1].V.naturalWidth&&l.pages.pages[f+1].V.getAttribute("src")==d?(m=l.pages.pages[f+1].V,u.resolve()):(l.pages.pages[f]&&l.pages.pages[f].V&&(m=l.pages.pages[f].V),l.pages.pages[f-1]&&l.pages.pages[f-1].V&&l.pages.pages[f-1].V.getAttribute("src")==d&&(m=l.pages.pages[f-1].V),l.pages.pages[f+1]&&l.pages.pages[f+1].V&&l.pages.pages[f+1].V.getAttribute("src")==d&&(m=l.pages.pages[f+1].V),jQuery(m).bind("error",function(){jQuery(this).bg(function(){});}),jQuery(m).bind("abort",function(){jQuery(this).bg(function(){});}),m.setAttribute("crossOrigin","anonymous"),m.src=d,jQuery(m).one("load",function(){window.clearTimeout(l.ue);l.um=!0;u.resolve();}).each(function(){jQuery(this).get(0).complete&&(l.um=!0,u.resolve());}),l.ue=setTimeout(function(){l.um||jQuery(m).bg(function(){});},3000));};I.nearestPowerOfTwo=function(f){return Math.pow(2,Math.round(Math.log(f)/Math.LN2));};I.Sn=function(f){var c=this;f&&(c.duration=f);f=0.8;var d=0.1,e=0,g=415*c.duration,h=315*c.duration,n=415*c.duration;"3D, Curled"==c.F.I.Ie&&(f=0.6,d=0.1,e=-0.15,n=210*c.duration);"3D, Soft"==c.F.I.Ie&&(f=0.8,d=0.1,e=0,n=415*c.duration);"3D, Hard"==c.F.I.Ie&&(f=0,d=0.1,e=0);"3D, Bend"==c.F.I.Ie&&(f=-0.3,d=0.2,e=-0.4,g=515*c.duration,h=215*c.duration,n=372*c.duration);c.ac||c.Ob||(c.ac=!0,c.$b.Gg(e),c.ja.castShadow=c.Nj,c.$b.force=0,c.$b.offset=0,c.oa.apply(),c.to={angle:c.ja.rotation.y,t:-1,Af:0,page:c,force:c.force,offset:c.offset},(new TWEEN.Tween(c.to)).to({angle:-Math.PI,Af:1,t:1},g).easing(TWEEN.Easing.Sinusoidal.EaseInOut).onUpdate(c.zl).start(),(new TWEEN.Tween(c.to)).to({force:f},h).easing(TWEEN.Easing.Quadratic.EaseInOut).onUpdate(c.Wf).onComplete(function(){(new TWEEN.Tween(c.to)).to({force:0,offset:1},n).easing(TWEEN.Easing.Sinusoidal.EaseOut).onUpdate(c.Wf).onComplete(c.Jk).start();}).start(),(new TWEEN.Tween(c.to)).to({offset:d},h).easing(TWEEN.Easing.Quadratic.EaseOut).onUpdate(c.Wf).start(),c.ja.position.z=2);};I.Tn=function(f){var c=this;f&&(c.duration=f);f=-0.8;var d=0.1,e=0,g=415*c.duration,h=315*c.duration,n=415*c.duration;"3D, Curled"==c.F.I.Ie&&(f=-0.6,d=0.1,e=-0.15,n=210*c.duration);"3D, Soft"==c.F.I.Ie&&(f=-0.8,d=0.1,e=0,n=415*c.duration);"3D, Hard"==c.F.I.Ie&&(f=0,d=0.1,e=0);"3D, Bend"==c.F.I.Ie&&(f=0.3,d=0.2,e=-0.4,g=515*c.duration,h=215*c.duration,n=372*c.duration);c.Ob||c.ac||(c.Ob=!0,c.ja.castShadow=c.Nj,c.$b.Gg(e),c.$b.force=0,c.$b.offset=0,c.oa.apply(),c.to={angle:c.ja.rotation.y,t:-1,Af:0,page:c,force:c.force,offset:c.offset},(new TWEEN.Tween(c.to)).to({angle:0,Af:1,t:1},g).easing(TWEEN.Easing.Sinusoidal.EaseInOut).onUpdate(c.zl).start(),(new TWEEN.Tween(c.to)).to({force:f},h).easing(TWEEN.Easing.Quadratic.EaseInOut).onUpdate(c.Wf).onComplete(function(){(new TWEEN.Tween(c.to)).to({force:0,offset:1},n).easing(TWEEN.Easing.Sinusoidal.EaseOut).onUpdate(c.Wf).onComplete(c.Jk).start();}).start(),(new TWEEN.Tween(c.to)).to({offset:d},h).easing(TWEEN.Easing.Quadratic.EaseOut).onUpdate(c.Wf).start(),c.ja.position.z=2);};I.zl=function(){this.page.ja.rotation&&(this.page.ja.rotation.y=this.angle);!this.page.ac||0!=this.page.pageNumber&&this.page.pageNumber+1!=this.page.F.getTotalPages()||(this.page.pages.Wb.position.x=(1-this.Af)*this.page.pages.Wb.position.x);this.page.Ob&&0==this.page.pageNumber&&(this.page.pages.Wb.position.x=(1-this.Af)*this.page.pages.Wb.position.x-this.Af*this.page.Ac*0.5);this.page.Ob&&this.page.F.da==this.page.F.getTotalPages()&&0==this.page.F.getTotalPages()%2&&(this.page.pages.Wb.position.x=(1-this.Af)*this.page.pages.Wb.position.x);};I.Wf=function(){this.page.$b&&(this.page.$b.force=this.force,this.page.$b.offset=this.offset);this.page.oa&&this.page.oa.apply();};I.Jk=function(){this.page.ac?(this.page.ac=!1,this.page.wh=!0,this.page.Ob=!1,this.page.xh=!1,this.page.jc&&(this.page.ja.position.z=2)):this.page.Ob&&(this.page.ac=!1,this.page.xh=!0,this.page.Ob=!1,this.page.wh=!1,this.page.jc&&(this.page.ja.position.z=2));this.page.jc&&(this.page.$b.force=0,this.page.$b.Gg(0),this.page.$b.offset=0,this.page.oa.apply(),this.page.ja.castShadow=!1);this.page.pages.To();};var Ga="undefined"==typeof window;Ga&&(window=[]);var FlowPaperViewer_HTML=window.FlowPaperViewer_HTML=function(){function f(c){window.zine=!0;this.config=c;this.hf=this.config.instanceid;this.document=this.config.document;this.P=this.config.rootid;this.L={};this.nd=this.N=null;this.selectors={};this.H="Portrait";this.yb=null!=c.document.InitViewMode&&"undefined"!=c.document.InitViewMode&&""!=c.document.InitViewMode?c.document.InitViewMode:window.zine?"FlipView":"Portrait";this.initialized=!1;this.Ee="flowpaper_selected_default";this.Ya={};this.Z=[];this.Wm="data:image/gif;base64,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%3D";this.ak="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAAAXNSR0IArs4c6QAAAAZiS0dEAFEAUQBRjSJ44QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wCCgEMO6ApCe8AAAFISURBVCjPfZJBi49hFMV/521MUYxEsSGWDDWkFKbkA/gAajaytPIFLKx8BVkodjP5AINGU0xZKAslC3Ys2NjP+VnM++rfPzmb23065z6de27aDsMwVD0C3AfOAYeB38BP9fEwDO/aMgwDAAFQDwKbwC9gZxScUM8Al5M8SPJ0Eu5JYV0FeAZcBFaAxSSPkjwHnrQ9Pf1E22XVsX5s+1m9o54cB9J2q+361KM+VN+ot9uqrjIH9VJbpz7qOvAeuAIcSnJzThA1SXaTBGAAvgCrwEvg0yxRXUhikrOjZ1RQz7uHFfUu/4C60fb16G9hetxq+1a9Pkdears2Dt1Rj87mdAx4BfwAttWvSQ4AV9W1aYlJtoFbmQJTjwP3gAvAIlDgG7CsXvu7uWQzs+cxmj0F7Fd3k3wfuRvqDWAfM+HxP6hL6oe2tn3xB7408HFbpc41AAAAAElFTkSuQmCC";this.Wh="data:image/png;base64,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%3D";this.Xm="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAMAAADzN3VRAAAARVBMVEX///////////////////////////////////////////////////////////////////////////////////////////+QFj7cAAAAFnRSTlMAHDE8PkJmcXR4eY+Vs8fL09Xc5vT5J4/h6AAAAFtJREFUeNqt0kkOgDAMQ9EPZSgztMX3PyoHiMKi6ttHkZ1QI+UDpmwkXl0QZbwUnTDLKEg3LLIIQw/dYATa2vYI425sSA+ssvw8/szPnrb83vyu/Tz+Tf0/qPABFzEW/E1C02AAAAAASUVORK5CYII=";this.ie="data:image/gif;base64,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%3D";this.lg="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAdCAYAAABWk2cPAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAVVSURBVHjaxFdbSFxHGJ7djfdb1HgNpsV7iwQrYhWN5EmReHlqUEGqUcGHohBCMSqhqEgU8aWiqH0QBDGkAe2bF1ARMduKldqqsURFrVqtBo1uvOzu9P+n/znMWVfNWwc+zp455/zf/LdvZnXs8qGTrrbAwe2ASddrDdvOIfSEGwADQW9DagVYCGa6t9os4kpS5bdCgGSOCpqamj5PSUm5d+fOnS98fHyiHB0dg3U6HT8/P//r6Ojoj729PePy8vJIRkbGnLQQdh25johcADcBQYDQ4uLitNevX3eB4Q2r1coVbG1t8ZWVFS7PnZ6ewtTK856eniiypbskmuoDB4ArwBfwCSCmvr7+GzBiJIO8s7OTP3jwgLu6umqQnJzMW1pauMlkEuTg9eDo6Gg62bRLrHiIhLfQO0B8VVXVk83NzUU0Mjg4yKOioi6Q2eLu3bt8enpaEJ+cnBiHh4fTJY81QwmpLxEmpKWlPVpYWJjFj7u7u7mHh8e1hC4uLgLu7u68oaFBEIPng11dXdH2iJ0ohxjSeEDmy5cvf1I8vIpQIbKHtrY2Qfz27dvnxKGXSd2oaGIAaVB9Nbu7u3tQODw8PFxDkpiYyO/fv3+BICQkhJeWlnJfX191zsvLi6+vr4vigsKKt/XWm8KaDMiFghjAFba2tmoI4+Li1Cqtra1VjUdHR/ONjQ0x39HRoc47OzvzsrIyMT8zM1NJrSdI9XSDReSJC4iNjY3ABy9evNAk/vj4mEFxiN81NTXs6dOnLDQ0lI2MjLDg4GAx//79e8Y5F8AxMDDAgJRBxL609TQEiwfwFeBbWPXewcGB3fzl5OSobYHA95Tfr1694m5ubsJDGbOzs1jJS2Dbg0RHeOpAiUZvXSEvntvb2xovlZUPDQ2x3NxcdnZ2Ju6hyMS1v7+fFRUV/SdnBoMGkFfm4OBwmwjV8Cpy50RgIG0XCJUBYiHCKI/5+XlmsVjsSh3Ogw2drNt6W2Hf2dk5DgwMtGsAciO8hWiIe8wXDhASVllZafcbzDdEZlNWJr3tS4uLi+9A0MXLspcYSiQMCAhQQ/rw4UO1uKqrq1lJSYnGFoY3MjKSQfu9kef10naEW5NlfHx8Bx9kZWVpDODHMmFhYSED8WD5+fkqMWiw5pvU1FTm6enJlpaWfrXd7rBH7wG+BnwXExPzI1TwEe4icrMjsO8qKio4GBKVqgC2PF5XV8cjIiI08xMTExx3J2ivdFK9G3ZbBvB9Y2Pj79gGzc3NGlJsAdnoVYBQi1YyGo1dxKG2jIHE3pGu2DYukFcrSJ4P5Mx9dXWVzc3NqfnV6/XXnUZYQkIC6+vrY7BL/fzs2bNW2DywkE4ohdxAhPIpwenw8BALCj++CSt2MZvNbHJy8qNIsbh6e3vZ/v7+m/b29h9AGo0oaIBT6TShFXzAI1Q6DHNSUtIwkG1hmGC1PC8vj/v5+dkNZ2ZmJocThggpFM7s48ePn5DNIOJQZVBHgoCh9QL4AQLpRSzVW0FBQbfLy8s/Kygo+BTayA12DaxGBiIuVgyFx6CARJXCiWF/bGxsEmqhH3L5GzzeBRwAPqDmUJeopwblqOJFpwd/wi3ahdzh5BCUnZ0dAluff1hYmLe/vz+uHokO19bW/p6amvoTWukXqNhZmMa2+4cITURoUVpGUQmDzW7jI8GbKs+VomJQFI7yhEZRF98B9iUc0rMzmZBJfWOh1ZjooYWq7ZhW6y6RKt+YJdIjIjmgBRxJIbXYOx9x8tYsqYaFVmgiQwqhoySdVnpHITYR0QeaO7/s7PvRh23K+w0bUjMZP5Ngvu6w/b/8rfhXgAEAmJkyLSnsNQEAAAAASUVORK5CYII=";this.jq=this.P+"_textoverlay";this.Rj="#"+this.jq;this.da=1;this.renderer=this.config.renderer;this.Ja="toolbar_"+this.P;this.K="#"+this.Ja;this.qc=!1;this.scale=this.config.document.Scale;this.resources=new FlowPaper_Resources(this);this.Zb=!1;this.og=0;this.linkColor="#72e6ff";this.Oc=0.4;this.rf=0.3;}f.prototype={M:function(c){if(0<c.indexOf("undefined")){return jQuery(null);}this.selectors||(this.selectors={});this.selectors[c]||(this.selectors[c]=jQuery(c));return this.selectors[c];},W:function(){return this.I?this.I.W:"";},loadFromUrl:function(c){var d=this;d.Fg();var e;window.annotations&&d.plugin&&d.plugin.clearMarks();if(d.pages){for(var f=0;f<d.document.numPages;f++){d.pages.pages[f]&&delete d.pages.pages[f];}}var h=f=!1;c.RenderingOrder&&(h=c.RenderingOrder.split(","),f=0<h.length&&"html5"==h[0],h=0<h.length&&"html"==h[0]);c.DOC&&(c.PDFFile=FLOWPAPER.translateUrlByFormat(unescape(c.DOC),"pdf"),c.SWFFile=FLOWPAPER.translateUrlByFormat(unescape(c.DOC),"swf"),c.JSONFile=FLOWPAPER.translateUrlByFormat(unescape(c.DOC),"jsonp"),c.IMGFiles=FLOWPAPER.translateUrlByFormat(unescape(c.DOC),"jpg"));c.FitPageOnLoad&&(d.config.document.FitPageOnLoad=!0,d.config.document.FitWidthOnLoad=!1);c.FitWidthOnLoad&&(d.config.document.FitWidthOnLoad=!0,d.config.document.FitPageOnLoad=!1);(eb.browser.capabilities.Vp&&c.PDFFile||f)&&!h?e=new CanvasPageRenderer(this.P,c.PDFFile,d.config.jsDirectory,{jsonfile:c.JSONFile,pageImagePattern:c.pageImagePattern,JSONDataType:d.renderer.config.JSONDataType,signature:d.renderer.config.signature}):(c.JSONFile&&c.IMGFiles||h)&&!f&&(e=new ImagePageRenderer(this.P,{jsonfile:c.JSONFile,pageImagePattern:c.IMGFiles,JSONDataType:d.renderer.config.JSONDataType,signature:d.renderer.config.signature},d.config.jsDirectory));d.renderer=e;jQuery(d.renderer).bind("loadingProgress",function(c,e){d.Ol(c,e);});jQuery(d.renderer).bind("labelsLoaded",function(c,e){d.Ml(c,e);});jQuery(d.renderer).bind("loadingProgressStatusChanged",function(c,e){d.Pl(c,e);});jQuery(d.renderer).bind("UIBlockingRenderingOperation",function(c,e){d.Wc(c,e);});jQuery(d.renderer).bind("UIBlockingRenderingOperationCompleted",function(){d.Pb();});jQuery(d.renderer).bind("outlineAdded",function(c,e){d.vl(c,e);});e&&(d.ve="",d.Bj(),d.renderer=e,e.initialize(function(){d.document.numPages=e.getNumPages();d.document.dimensions=e.getDimensions();d.document.StartAtPage=c.StartAtPage;d.loadDoc(e,e.getNumPages());},{}));},loadDoc:function(c,d){this.initialized=!1;this.document.numPages=d;this.renderer=c;this.show();},getDimensions:function(c){return this.renderer.getDimensions(c);},In:function(c){if(jQuery(c.target).hasClass("flowpaper_note_container")&&eb.platform.touchdevice){return window.Gb=!1,!0;}var d=eb.platform.touchdevice&&"undefined"!==typeof c.originalEvent.touches?c.originalEvent.touches[0].pageX:c.pageX,e=eb.platform.touchdevice&&"undefined"!==typeof c.originalEvent.touches?c.originalEvent.touches[0].pageY:c.pageY;if(this.qc||eb.platform.touchdevice){c.target&&c.target.id&&0<=c.target.id.indexOf("page")&&0<=c.target.id.indexOf("word")&&(hoverPage=parseInt(c.target.id.substring(c.target.id.indexOf("_")+1)),hoverPageObject=U(this.P));if(!hoverPageObject&&!window.Gb||!window.Gb){return !0;}eb.platform.touchdevice&&(c.preventDefault&&c.preventDefault(),c.stopPropagation&&c.stopPropagation(),this.pages.jScrollPane&&this.pages.jScrollPane.data("jsp").disable());this.H==this.W()&&1<this.scale?window.b=hoverPageObject.nl(c.target.id):window.b=hoverPageObject.match({left:d,top:e},!1);null!=window.b&&null!=window.a&&window.a.pageNumber!=window.b.pageNumber&&(window.a=hoverPageObject.match({left:d-1,top:e-1},!1));this.Re(!0);this.me=hoverPageObject.Gf(!0,this.Ee);}else{if(c.target&&c.target.id&&0<=c.target.id.indexOf("page")&&(hoverPage=parseInt(c.target.id.substring(c.target.id.indexOf("_")+1)),hoverPageObject=U(this.P)),hoverPageObject&&hoverPageObject.match({left:d,top:e},!0),!hoverPageObject&&!window.Gb){return !0;}}},Re:function(c){eb.platform.touchdevice||(this.me=null);this.qc&&(jQuery(".flowpaper_pageword_"+this.P).removeClass("flowpaper_selected"),jQuery(".flowpaper_pageword_"+this.P).removeClass("flowpaper_selected_default"));c&&jQuery(".flowpaper_pageword_"+this.P).each(function(){jQuery(this).hasClass("flowpaper_selected_yellow")&&!jQuery(this).data("isMark")&&jQuery(this).removeClass("flowpaper_selected_yellow");jQuery(this).hasClass("flowpaper_selected_orange")&&!jQuery(this).data("isMark")&&jQuery(this).removeClass("flowpaper_selected_orange");jQuery(this).hasClass("flowpaper_selected_green")&&!jQuery(this).data("isMark")&&jQuery(this).removeClass("flowpaper_selected_green");jQuery(this).hasClass("flowpaper_selected_blue")&&!jQuery(this).data("isMark")&&jQuery(this).removeClass("flowpaper_selected_blue");jQuery(this).hasClass("flowpaper_selected_strikeout")&&!jQuery(this).data("isMark")&&jQuery(this).removeClass("flowpaper_selected_strikeout");});},Jn:function(c){this.Ah="up";this.cd=this.Vi=!1;this.ml=null;if(!this.pages||!this.pages.animating){if(jQuery(c.target).hasClass("flowpaper_searchabstract_result")||jQuery(c.target).parent().hasClass("flowpaper_searchabstract_result")||jQuery(c.target).hasClass("flowpaper_note_container")||"TEXTAREA"==c.target.tagName||jQuery(c.target).hasClass("flowpaper_textarea_contenteditable")||jQuery(c.target).parent().hasClass("flowpaper_textarea_contenteditable")){return !0;}if(this.qc||eb.platform.touchdevice){if(hoverPageObject){if(eb.platform.touchdevice){var d=null;"undefined"!=typeof c.originalEvent.touches&&(d=c.originalEvent.touches[0]||c.originalEvent.changedTouches[0]);null!=d&&this.ed==d.pageX&&this.fd==d.pageY&&(this.Re(),this.me=hoverPageObject.Gf(window.Gb,this.Ee));null!=d&&(this.ed=d.pageX,this.fd=d.pageY);this.pages.jScrollPane&&this.pages.jScrollPane.data("jsp").enable();}else{window.b=hoverPageObject.match({left:c.pageX,top:c.pageY},!1);}null!=this.me&&this.L.trigger("onSelectionCreated",this.me.text);window.Gb=!1;window.a=null;window.b=null;}}else{hoverPageObject&&(window.b=hoverPageObject.match({left:c.pageX,top:c.pageY},!1),window.Gb=!1,this.Re(),this.me=hoverPageObject.Gf(!1,this.Ee));}}},Hn:function(c){var d=this;d.Ah="down";if(jQuery(c.target).hasClass("flowpaper_note_textarea")||"INPUT"==jQuery(c.target).get(0).tagName){window.b=null,window.a=null;}else{if(!d.pages.animating){var e=eb.platform.touchdevice&&"undefined"!==typeof c.originalEvent.touches?c.originalEvent.touches[0].pageX:c.pageX,f=eb.platform.touchdevice&&"undefined"!==typeof c.originalEvent.touches?c.originalEvent.touches[0].pageY:c.pageY;d.ed=e;d.fd=f;eb.platform.touchdevice&&(eb.platform.touchonlydevice&&window.annotations&&(d.qc=!0,d.Re(!0)),window.clearTimeout(d.Go),d.ml=(new Date).getTime(),document.activeElement&&jQuery(document.activeElement).hasClass("flowpaper_note_textarea")&&document.activeElement.blur(),d.Go=setTimeout(function(){if(null!=d.ml&&c.originalEvent.touches&&0<c.originalEvent.touches.length){var e=eb.platform.touchdevice&&"undefined"!==typeof c.originalEvent.touches?c.originalEvent.touches[0].pageX:c.pageX,f=eb.platform.touchdevice&&"undefined"!==typeof c.originalEvent.touches?c.originalEvent.touches[0].pageY:c.pageY;d.ed+20>e&&d.ed-20<e&&d.fd+20>f&&d.fd-20<f&&(hoverPage=parseInt(c.target.id.substring(c.target.id.indexOf("_")+1)),hoverPageObject=U(d.P),null!=hoverPageObject&&(null!=d.pages.jScrollPane&&d.pages.jScrollPane.data("jsp").disable(),window.Gb=!0,d.Re(!0),window.b=hoverPageObject.match({left:e,top:f},!1),window.a=hoverPageObject.match({left:e-1,top:f-1},!1),d.me=hoverPageObject.Gf(!0,d.Ee)));}},800));if(d.qc||eb.platform.touchdevice){if(!hoverPageObject){if(eb.platform.touchdevice){if(c.target&&c.target.id&&0<=c.target.id.indexOf("page")&&0<=c.target.id.indexOf("word")&&(hoverPage=parseInt(c.target.id.substring(c.target.id.indexOf("_")+1)),hoverPageObject=U(d.P)),!hoverPageObject){window.a=null;return;}}else{window.a=null;return;}}d.H==d.W()&&1<d.scale?window.a=hoverPageObject.nl(c.target.id):window.a=hoverPageObject.match({left:e,top:f},!0);if(window.a){return window.Gb=!0,d.Re(),d.me=hoverPageObject.Gf(!1,d.Ee),!1;}jQuery(c.target).hasClass("flowpaper_tblabelbutton")||jQuery(c.target).hasClass("flowpaper_tbtextbutton")||jQuery(c.target).hasClass("flowpaper_colorselector")||jQuery(c.target).hasClass("flowpaper_tbbutton")||eb.platform.touchdevice||(d.Re(),d.me=hoverPageObject.Gf(!1,d.Ee));window.Gb=!1;return !0;}window.a=hoverPageObject?hoverPageObject.match({left:e,top:f},!0):null;}}},Mc:function(){this.width||(this.width=this.N.width());return this.width;},Cm:function(){return null!=this.pages?this.H!=this.W()?this.pages.R+1:this.pages.R:1;},bindEvents:function(){var c=this;hoverPage=0;hoverPageObject=null;c.N.bind("mousemove",function(d){return c.In(d);});c.N.bind("mousedown",function(d){return c.Hn(d);});c.N.bind("mouseup",function(d){return c.Jn(d);});var d=jQuery._data(jQuery(window)[0],"events");eb.platform.android?jQuery(window).bind("orientationchange",function(d){c.Tj(d);}):jQuery(window).bind("resize",function(d){c.Tj(d);});jQuery(window).bind("orientationchange",function(d){c.Oo(d);});d&&d.resize&&(c.El=d.resize[d.resize.length-1]);if(!c.document.DisableOverflow){try{jQuery.get(c.config.localeDirectory+c.document.localeChain+"/FlowPaper.txt",function(d){c.toolbar.kl(d);c.Bj();}).error(function(){c.Bj();O("Failed loading supplied locale ("+c.document.localeChain+")");}),c.toolbar.kl("");}catch(e){}}c.ve||(c.ve="");},Oo:function(c){var d=this;d.ni=!0;if(window.zine&&d.H==d.W()){var e=window.screen&&window.screen.orientation?window.screen.orientation.angle:window.orientation;if("Flip-SinglePage"!=d.document.InitViewMode){switch(e){case 270:case -90:case 90:d.I.ta="Flip-SinglePage"!=d.config.document.TouchInitViewMode?!1:!0;break;default:d.I.ta=!0;}}d.I.rb=d.I.oi();setTimeout(function(){d.H="";d.switchMode(d.W(),d.getCurrPage()-1);d.ni=!1;window.scrollTo(0,0);},500);jQuery(".flowpaper_glyphcanvas").css("z-index",-1);}if("Portrait"==d.H||"SinglePage"==d.H){d.config.document.FitPageOnLoad&&d.fitheight(),d.config.document.FitWidthOnLoad&&d.fitwidth(),d.N.height("auto"),setTimeout(function(){requestAnim(function(){d.Tj(c);d.N.height("auto");d.ni=!1;});},1000);}},Tj:function(c){if(!this.document.DisableOverflow&&!this.ni&&!jQuery(c.target).hasClass("flowpaper_note")){c=this.N.width();var d=this.N.height(),e=!1,f=-1;this.vj?f=this.vj:0<this.N[0].style.width.indexOf("%")&&(this.vj=f=parseFloat(this.N[0].style.width.substr(0,this.N[0].style.width.length-1)/100));0<f&&(c=0==this.N.parent().width()?jQuery(document).width()*f:this.N.parent().width()*f,e=!0);f=-1;this.uj?f=this.uj:0<this.N[0].style.height.indexOf("%")&&(this.uj=f=parseFloat(this.N[0].style.height.substr(0,this.N[0].style.height.length-1)/100));0<f&&(d=0==this.N.parent().height()?jQuery(window).height()*f:this.N.parent().height()*f,e=!0);f=document.Gb||document.mozFullScreen||document.webkitIsFullScreen||window.Hm||window.hg;e&&!f&&this.resize(c,d);}},Bj:function(){var c=this;if(!c.document.DisableOverflow){if(c.kf||(c.kf=null!=c.toolbar&&null!=c.toolbar.La?c.toolbar.ka(c.toolbar.La,"LoadingPublication"):"Loading Publication"),null==c.kf&&(c.kf="Loading Publication"),c.om=window.zine&&(c.renderer.config.pageThumbImagePattern&&0<c.renderer.config.pageThumbImagePattern.length||c.config.document.LoaderImage),c.om){var d=new Image;jQuery(d).bind("load",function(){if(!c.initialized&&(!c.Ya||c.Ya&&!c.Ya.jquery)){var d=this.width/1.5,f=this.height/1.5;this.width=d;this.height=f;110<d&&(f=this.width/this.height,d=110,f=d/f);c.Ya=jQuery(String.format("<div class='flowpaper_loader' style='position:{1};z-index:100;top:50%;left:50%;color:#ffffff;width:{5}px;margin-left:-{10}px;margin-top:-{11}px'><div style='position:relative;'><div class='flowpaper_titleloader_image' style='position:absolute;left:0px;'></div><div class='flowpaper_titleloader_progress' style='position:absolute;left:{7}px;width:{8}px;height:{6}px;background-color:#000000;opacity:0.3;'></div></div></div>",c.P,"static"==c.N.css("position")?"relative":"fixed",c.I.ta&&!c.Ze?"35%":"47%",c.I.hb,c.renderer.ga(1,200),d,f,0,d,c.I.ta&&!c.Ze?"30%":"40%",d/2,f/2));c.N.append(c.Ya);jQuery(this).css({width:d+"px",height:f+"px"});c.Ya.find(".flowpaper_titleloader_image").append(this);}});c.config.document.LoaderImage?d.src=c.config.document.LoaderImage:d.src=c.renderer.ga(1,200);}else{!window.zine||eb.browser.msie&&10>eb.browser.version?(c.Ya=jQuery(String.format("<div class='flowpaper_loader flowpaper_initloader' style='position:{2};z-index:100;'><div class='flowpaper_initloader_panel' style='{1};background-color:#ffffff;'><img src='{0}' style='vertical-align:middle;margin-top:7px;margin-left:5px;'><div style='float:right;margin-right:25px;margin-top:19px;' class='flowpaper_notifylabel'>"+c.kf+"<br/><div style='margin-left:30px;' class='flowpaper_notifystatus'>"+c.ve+"</div></div></div></div>",c.Wm,"margin: 0px auto;","static"==c.N.css("position")?"relative":"absolute")),c.N.append(c.Ya)):(c.Ya=jQuery(String.format("<div id='flowpaper_initloader_{0}' class='flowpaper_loader flowpaper_initloader' style='position:{1};margin: 0px auto;z-index:100;top:40%;left:{2}'></div>",c.P,"static"==c.N.css("position")?"relative":"absolute",eb.platform.iphone?"40%":"50%")),c.N.append(c.Ya),c.Ic=new CanvasLoader("flowpaper_initloader_"+c.P),c.Ic.setColor("#555555"),c.Ic.setShape("square"),c.Ic.setDiameter(70),c.Ic.setDensity(151),c.Ic.setRange(0.8),c.Ic.setSpeed(2),c.Ic.setFPS(42),c.Ic.show());}}},initialize:function(){var c=this;FLOWPAPER.Sk.init();c.sp();c.rp();c.cc=location.hash&&0<=location.hash.substr(1).indexOf("inpublisher")?!0:!1;c.L=jQuery("#"+c.P);c.toolbar=new za(this,this.document);c.Zk=c.document.ImprovedAccessibility;!eb.platform.iphone||c.config.document.InitViewMode||window.zine||(c.yb="Portrait");"BookView"==c.config.document.InitViewMode&&0==c.document.StartAtPage%2&&(c.document.StartAtPage+=1);c.config.document.TouchInitViewMode&&c.config.document.TouchInitViewMode!=c.yb&&eb.platform.touchonlydevice&&(c.yb=c.config.document.TouchInitViewMode);c.config.document.TouchInitViewMode||!eb.platform.touchonlydevice||window.zine||(c.yb="SinglePage");window.zine&&!c.document.DisableOverflow?(c.I=c.toolbar.tg=new FlowPaperViewer_Zine(c.toolbar,this,c.L),"Portrait"!=c.yb&&"Portrait"!=c.config.document.TouchInitViewMode||!eb.platform.touchonlydevice||(c.config.document.TouchInitViewMode=c.config.document.InitViewMode=c.H="Flip-SinglePage"),c.I.initialize(),c.H!=c.W()&&(c.H=c.yb)):c.H=c.yb;"CADView"==c.H&&(c.H="SinglePage");window.zine&&(eb.browser.msie&&9>eb.browser.version||eb.browser.safari&&5>eb.browser.Qb)&&!eb.platform.touchonlydevice&&(c.document.MinZoomSize=c.MinZoomSize=0.3,c.H="BookView");"0px"==c.L.css("width")&&c.L.css("width","1024px");"0px"==c.L.css("height")&&c.L.css("height","600px");c.Zb=c.H==c.W()&&(eb.platform.iphone||eb.platform.lb);null!==c.N||c.I||(0<c.L.css("width").indexOf("%")&&(c.vj=parseFloat(c.L[0].style.width.substr(0,c.L[0].style.width.length-1)/100)),0<c.L.css("height").indexOf("%")&&(c.uj=parseFloat(c.L[0].style.height.substr(0,c.L[0].style.height.length-1)/100)),c.document.DisableOverflow?(c.config.document.FitPageOnLoad=!1,c.config.document.FitWidthOnLoad=!0,c.N=jQuery("<div style='left:0px;top:0px;position:absolute;width:"+(window.printWidth?window.printWidth:"210mm")+";height:"+(window.printHeight?window.printHeight:"297mm")+";' class='flowpaper_viewer_container'/>")):(c.N=jQuery("<div style='"+c.L.attr("style")+";' class='flowpaper_viewer_wrap flowpaper_viewer_container'/>"),""!=c.N.css("position")&&"static"!=c.N.css("position")||c.N.css({position:"relative"})),c.N=c.L.wrap(c.N).parent(),c.document.DisableOverflow?c.L.css({left:"0px",top:"0px",position:"relative",width:"100%",height:"100%","max-width":window.printWidth?window.printWidth:"210mm","max-height":window.printHeight?window.printHeight:"297mm"}).addClass("flowpaper_viewer"):c.L.css({left:"0px",top:"0px",position:"relative",width:"100%",height:"100%"}).addClass("flowpaper_viewer").addClass("flowpaper_viewer_gradient"),window.annotations&&c.config.document.AnnotationToolsVisible&&!c.document.DisableOverflow?(c.og=eb.platform.touchdevice?15:22,c.L.height(c.L.height()-c.og)):c.og=0);c.kq=c.N.html();eb.browser.msie&&jQuery(".flowpaper_initloader_panel").css("left",c.L.width()-500);c.document.DisableOverflow||(null==c.config.Toolbar&&0==jQuery("#"+c.Ja).length?(c.Toolbar=c.N.prepend("<div id='"+c.Ja+"' class='flowpaper_toolbarstd' style='z-index:200;overflow-y:hidden;overflow-x:hidden;'></div>").parent(),c.toolbar.create(c.Ja)):null==c.config.Toolbar||c.Toolbar instanceof jQuery||(c.config.Toolbar=unescape(c.config.Toolbar),c.Toolbar=jQuery(c.config.Toolbar),c.Toolbar.attr("id",c.Ja),c.N.prepend(c.Toolbar)));c.ik();c.document.DisableOverflow||c.resources.initialize();c.document.DisplayRange&&(c.DisplayRange=ca(c.document.DisplayRange));hoverPage=0;hoverPageObject=null;null!=c.I?c.I.An(c.Ja):window.annotations&&(c.plugin=new FlowPaperViewerAnnotations_Plugin(this,this.document,c.Ja+"_annotations"),c.plugin.create(c.Ja+"_annotations"),c.plugin.bindEvents(c.F));c.document.DisableOverflow||(eb.platform.touchonlydevice||c.N.append("<textarea id='selector' class='flowpaper_selector' rows='0' cols='0'></textarea>"),0==jQuery("#printFrame_"+c.P).length&&c.N.append("<iframe id='printFrame_"+c.P+"' name='printFrame_"+c.P+"' class='flowpaper_printFrame'>"));jQuery(c.renderer).bind("loadingProgress",function(d,e){c.Ol(d,e);});jQuery(c.renderer).bind("labelsLoaded",function(d,e){c.Ml(d,e);});jQuery(c.renderer).bind("loadingProgressStatusChanged",function(d,e){c.Pl(d,e);});jQuery(c.renderer).bind("UIBlockingRenderingOperation",function(d,e){c.Wc(d,e);});jQuery(c.renderer).bind("UIBlockingRenderingOperationCompleted",function(){c.Pb();});jQuery(c.renderer).bind("outlineAdded",function(d,e){c.vl(d,e);});$FlowPaper(c.P).dispose=c.dispose;$FlowPaper(c.P).highlight=c.highlight;$FlowPaper(c.P).rotate=c.rotate;$FlowPaper(c.P).getCurrentRenderingMode=c.getCurrentRenderingMode;},ik:function(){this.dn||this.document.DisableOverflow||(eb.platform.touchonlydevice&&!this.Zb?eb.platform.touchonlydevice?(window.zine?this.L.height(this.L.height()-(this.config.BottomToolbar?65:0)):window.annotations?this.L.height(this.L.height()-(this.config.BottomToolbar?65:47)):this.L.height(this.L.height()-(this.config.BottomToolbar?65:25)),this.config.BottomToolbar&&this.N.height(this.N.height()-(eb.platform.lb?7:18))):this.L.height(this.L.height()-25):window.zine&&"Portrait"!=this.H||(this.config.BottomToolbar?this.L.height(this.L.height()-jQuery(this.K).height()+11):this.L.height(this.L.height()-23)),this.dn=!0);},Ml:function(c,d){if(window.zine&&this.I&&this.I.bd){var e=this.I.bd.createElement("labels");this.I.bd.childNodes[0].appendChild(e);try{for(var f=0;f<d.fl.length;f++){var h=d.fl[f],n=e,k=this.I.bd.createElement("node");k.setAttribute("pageNumber",f+1);k.setAttribute("title",escape(h));n.appendChild(k);}}catch(l){}this.labels=jQuery(e);}},Ol:function(c,d){var e=this;e.ve=Math.round(100*d.progress)+"%";e.Ya&&e.Ya.find&&0<e.Ya.find(".flowpaper_notifystatus").length&&e.Ya.find(".flowpaper_notifystatus").html(e.ve);if(e.om&&e.Ya&&e.Ya.find){var f=e.Ya.find(".flowpaper_titleloader_progress");if(f){var h=e.Ya.find(".flowpaper_titleloader_image");if(0<h.length){var n=h.css("width"),n=parseFloat(n.replace("px",""));requestAnim(function(){(isNaN(e.ve)||parseFloat(e.ve)<Math.round(100*d.progress))&&f.animate({left:n*d.progress+"px",width:n*(1-d.progress)+"px"},100);});}}}},Pl:function(c,d){this.kf=d.label;this.Ya.find(".flowpaper_notifylabel").html(d.label);},Wc:function(c,d){var e=this;e.document.DisableOverflow||null!==e.nd||(e.nd=jQuery("<div style='position:absolute;left:50%;top:50%;'></div>"),e.N.append(e.nd),e.nd.spin({color:"#777"}),null!=e.Ni&&(window.clearTimeout(e.Ni),e.Ni=null),d.Wo||(e.Ni=setTimeout(function(){e.nd&&(e.nd.remove(),e.nd=null);},1000)));},Pb:function(){this.nd&&(this.nd.remove(),this.nd=null);},show:function(){var c=this;jQuery(c.resources).bind("onPostinitialized",function(){setTimeout(function(){c.Fg();c.config.document.RTLMode&&c.renderer.S&&c.renderer.S.length&&(c.document.StartAtPage=c.renderer.S.length-c.document.StartAtPage+(0==c.renderer.S.length%2?1:0));c.document.DisableOverflow||null!=c.I?null!=c.I&&c.I.Pg&&c.toolbar.bindEvents(c.L):c.toolbar.bindEvents(c.L);c.I&&c.I.Pg&&null!=c.I&&!c.document.DisableOverflow&&c.I.bindEvents(c.L);c.I&&!c.I.Pg?c.ah=function(){c.toolbar.bindEvents(c.L);c.I.bindEvents(c.L);c.Xh(c.document.StartAtPage);jQuery(c.L).trigger("onDocumentLoaded",c.renderer.getNumPages());}:(c.Xh(c.document.StartAtPage),jQuery(c.L).trigger("onDocumentLoaded",c.renderer.getNumPages()));},50);jQuery(c.resources).unbind("onPostinitialized");});c.resources.Yo();},dispose:function(){this.Fn=!0;this.L.unbind();this.L.find("*").unbind();this.N.find("*").unbind();this.N.find("*").remove();this.L.empty();this.N.empty();jQuery(this).unbind();0==jQuery(".flowpaper_viewer_container").length&&window.PDFJS&&delete window.PDFJS;this.plugin&&(jQuery(this.plugin).unbind(),this.plugin.dispose(),delete this.plugin,this.plugin=null);jQuery(this.renderer).unbind();this.renderer.dispose();delete this.renderer;delete this.config;jQuery(this.pages).unbind();this.pages.dispose();delete this.pages;delete window["wordPageList_"+this.P];window["wordPageList_"+this.P]=null;this.N.unbind("mousemove");this.N.unbind("mousedown");this.N.unbind("mouseup");jQuery(window).unbind("resize",this.El);delete this.El;jQuery(this.renderer).unbind("loadingProgress");jQuery(this.renderer).unbind("labelsLoaded");jQuery(this.renderer).unbind("loadingProgressStatusChanged");jQuery(this.renderer).unbind("UIBlockingRenderingOperation");jQuery(this.renderer).unbind("UIBlockingRenderingOperationCompleted");this.I?this.I.dispose():this.L.parent().remove();var c=this.N.parent(),d=this.N.attr("style");this.N.remove();delete this.N;delete this.L;this.renderer&&(delete this.renderer.Aa,delete this.renderer.S,delete this.renderer.Sa,delete this.renderer.Kh,delete this.renderer.sa);delete this.renderer;var e=jQuery(this.kq);e.attr("style",d);e.attr("class","flowpaper_viewer");c.append(e);this.plugin&&delete this.plugin;},Dh:function(){var c=this;eb.platform.touchonlydevice?(c.initialized=!0,(!c.I&&c.config.document.FitWidthOnLoad&&"TwoPage"!=c.H&&"BookView"!=c.H||"Portrait"==c.H||"SinglePage"==c.H)&&c.fitwidth(),(c.config.document.FitPageOnLoad||"TwoPage"==c.H||"BookView"==c.H||c.I)&&c.fitheight(),c.pages.Mg(),c.pages.hd()):(c.initialized=!0,c.gr||c.toolbar.hk(c.config.document.MinZoomSize,c.config.document.MaxZoomSize),c.document.DisableOverflow?c.fitwidth():c.config.document.FitPageOnLoad||"TwoPage"==c.H||"BookView"==c.H?c.fitheight():c.config.document.FitWidthOnLoad&&"TwoPage"!=c.H&&"BookView"!=c.H?c.fitwidth():c.Zoom(c.config.document.Scale));c.document.StartAtPage&&1!=c.document.StartAtPage||c.H==c.W()||c.L.trigger("onCurrentPageChanged",c.pages.R+1);c.document.StartAtPage&&1!=c.document.StartAtPage&&c.pages.scrollTo(c.document.StartAtPage);c.I&&c.I.Dh();c.Ya&&c.Ya.fadeOut?c.Ya.fadeOut(300,function(){c.Ya&&(c.Ya.remove(),c.N.find(".flowpaper_loader").remove(),c.Ic&&(c.Ic.kill(),delete c.Ic),delete c.Ya,c.Ic=null,jQuery(c.pages.J).fadeIn(300,function(){}),c.PreviewMode&&c.I.kb.Yh(c.pages,c.L));}):(c.N.find(".flowpaper_loader").remove(),jQuery(c.pages.J).fadeIn(300,function(){}),c.PreviewMode&&c.I.kb.Yh(c.pages,c.L));c.L.trigger("onInitializationComplete");},Fg:function(){this.renderer.yi=!1;if(this.pages){for(var c=0;c<this.document.numPages;c++){this.pages.pages[c]&&window.clearTimeout(this.pages.pages[c].oc);}}this.da=1;this.L.find("*").unbind();this.L.find("*").remove();this.L.empty();this.ve=0;this.renderer.Pf=!1;jQuery(".flowpaper_glyphcanvas").css("z-index",-1);jQuery(this.Rj).remove();this.I&&this.I.Fg();},Xh:function(c){this.pages=new V(this.L,this,this.P,c);this.pages.create(this.L);},previous:function(){var c=this;c.ij||c.H==c.W()?c.H==c.W()&&c.pages.previous():(c.ij=setTimeout(function(){window.clearTimeout(c.ij);c.ij=null;},700),c.pages.previous());},vl:function(){for(var c=jQuery.parseXML("<UIConfig></UIConfig>"),d=c.createElement("outline"),e=0;e<this.renderer.outline.length;e++){da(c,this.renderer.outline[e],d,this.renderer);}this.outline=jQuery(d);},expandOutline:function(){var c=this;c.Pa&&c.Qf();if(!c.ab&&c.outline&&(!c.outline||0!=c.outline.length)){c.la=c.L.width();c.ya=c.L.height();var d=c.kf=null!=c.toolbar&&null!=c.toolbar.La?c.toolbar.ka(c.toolbar.La,"TOC","Table of Contents"):"Table of Contents",e=window.zine?jQuery(c.K).css("background-color"):"transparent",f=window.zine?"transparent":"#c8c8c8",h=c.H==c.W()?"40px":jQuery(c.K).height()+2;c.W();var n=c.H==c.W()?30:40,k=c.H==c.W()?0:41,l=c.I&&!c.I.He?jQuery(c.K).offset().top+jQuery(c.K).outerHeight():0,m=c.H==c.W()?c.N.height():parseFloat(jQuery(c.pages.J).css("height"))-10,p=c.H==c.W()&&eb.platform.touchonlydevice;c.Jg=c.N.find(c.K).css("margin-left");"rgba(0, 0, 0, 0)"==e.toString()&&(e="#555");c.N.append(jQuery(String.format("<div class='flowpaper_toc' style='position:absolute;left:0px;top:0px;height:{5}px;width:{2};min-width:{3};opacity: 0;z-index:150;background:{9}'><div style='padding: 10px 10px 10px 10px;background-color:{6};height:{7}px'><div style='height:25px;width:100%'><div class='flowpaper_tblabel' style='margin-left:10px; width: 100%;height:25px;'><img src='{1}' style='vertical-align: middle;width:14px;height:auto;'><span style='margin-left:10px;vertical-align: middle;{10}'>{0}</span><img src='{4}' style='float:right;margin-right:5px;cursor:pointer;' class='flowpaper_toc_close' /></div><hr size='1' color='#ffffff' /></div></div>"+(window.zine?"":"<div class='flowpaper_bottom_fade'></div></div>"),d,c.Xm,"20%","250px",c.Wh,m,e,m-20,l,f,p?"font-size:1.4em;":"")));c.ab=c.N.find(".flowpaper_toc");jQuery(c.ab.children()[0]).css({"border-radius":"3px","-moz-border-radius":"3px"});jQuery(c.ab.children()[0]).append("<div class='flowpaper_toc_content' style='display:block;position:relative;height:"+(jQuery(c.ab.children()[0]).height()-n)+"px;margin-bottom:50px;width:100%;overflow-y: auto;overflow-x: hidden;'><ul class='flowpaper_accordionSkinClear'>"+oa(c,c.outline.children()).html()+"</ul></div>");d=jQuery(".flowpaper_accordionSkinClear").children();0<d.children().length&&(d=jQuery(d.get(0)).children(),0<d.children().length&&jQuery(d.find("li").get(0)).addClass("cur"));window.zine?(jQuery(c.K).css("opacity",0.7),600<c.Mc()&&c.resize(c.L.width(),c.L.height()+k,!1,function(){})):"TwoPage"!=c.H&&c.H!=c.W()&&c.resize(c.L.width(),c.N.height()+1,!1,function(){});jQuery(".flowpaper_accordionSkinClear").wo();jQuery(".flowpaper-tocitem").bind("mousedown",function(){c.gotoPage(jQuery(this).data("pagenumber"));});c.H==c.W()?(k=c.N.width()-c.L.width(),c.L.animate({left:Math.abs(k)+"px"},0)):c.L.animate({left:c.ab.width()+"px"},0);k=0.5*c.ab.width();jQuery(c.K).width()+k>c.N.width()&&(k=0);jQuery(c.K).animate({"margin-left":parseFloat(c.Jg)+k+"px"},200,function(){if(window.onresize){window.onresize();}});0==k&&c.ab.css({top:h,height:c.L.height()-40+"px"});c.H==c.W()&&c.I.Vl();c.ab.fadeTo("fast",1);c.N.find(".flowpaper_toc_close").bind("mousedown",function(){c.Yk();});}},Yk:function(){this.ab.hide();this.N.find(".flowpaper_tocitem, .flowpaper_tocitem_separator").remove();this.ab.remove();this.ab=null;window.zine&&(jQuery(this.K).css("opacity",1),600<this.Mc()&&this.resize(this.la,this.ya+33,!1));this.L.css({left:"0px"});jQuery(this.K).animate({"margin-left":parseFloat(this.Jg)+"px"},200);this.H==this.W()&&this.I.Qf();},setCurrentCursor:function(c){"ArrowCursor"==c&&(this.qc=!1,addCSSRule(".flowpaper_pageword","cursor","default"),window.annotations||jQuery(".flowpaper_pageword_"+this.P).remove());"TextSelectorCursor"==c&&(this.qc=!0,this.Ee="flowpaper_selected_default",addCSSRule(".flowpaper_pageword","cursor","text"),window.annotations||(this.pages.getPage(this.pages.R-1),this.pages.getPage(this.pages.R-2),jQuery(".flowpaper_pageword_"+this.P).remove(),this.pages.Ea()));this.I&&this.I.setCurrentCursor(c);this.pages.setCurrentCursor(c);jQuery(this.K).trigger("onCursorChanged",c);},highlight:function(c){var d=this;jQuery.ajax({type:"GET",url:c,dataType:"xml",error:function(){},success:function(c){jQuery(c).find("Body").attr("color");c=jQuery(c).find("Highlight");var f=0,h=-1,n=-1;jQuery(c).find("loc").each(function(){f=parseInt(jQuery(this).attr("pg"));h=parseInt(jQuery(this).attr("pos"));n=parseInt(jQuery(this).attr("len"));d.pages.getPage(f).Ne(h,n,!1);});d.pages.Ea();}});},printPaper:function(c){if(this.document.PrintFn){this.document.PrintFn();}else{if(eb.platform.touchonlydevice){c="current";}else{if(!c){jQuery("#modal-print").css("background-color","#dedede");jQuery("#modal-print").smodal({minHeight:255,appendTo:this.N});jQuery("#modal-print").parent().css("background-color","#dedede");return;}}"current"==c&&0<jQuery(this.K).find(".flowpaper_txtPageNumber").val().indexOf("-")&&(c=this.getCurrPage()-1+"-"+this.getCurrPage());var d=null,e="ImagePageRenderer";if("ImagePageRenderer"==this.renderer.Mf()||this.document.MixedMode||this.renderer.config.pageImagePattern&&this.renderer.config.jsonfile){e="ImagePageRenderer",d="{key : '"+this.config.key+"',jsonfile : '"+this.renderer.config.jsonfile+"',compressedJsonFormat : "+(this.renderer.Fa?this.renderer.Fa:!1)+",pageImagePattern : '"+this.renderer.config.pageImagePattern+"',JSONDataType : '"+this.renderer.config.JSONDataType+"',signature : '"+this.renderer.config.signature+"',UserCollaboration : "+this.config.UserCollaboration+"}";}"CanvasPageRenderer"==this.renderer.Mf()&&(e="CanvasPageRenderer",d="{key : '"+this.config.key+"',jsonfile : '"+this.renderer.config.jsonfile+"',PdfFile : '"+this.renderer.file+"',compressedJsonFormat : "+(this.renderer.Fa?this.renderer.Fa:!1)+",pageThumbImagePattern : '"+this.renderer.config.pageThumbImagePattern+"',pageImagePattern : '"+this.renderer.config.pageImagePattern+"',JSONDataType : '"+this.renderer.config.JSONDataType+"',signature : '"+this.renderer.config.signature+"',UserCollaboration : "+this.config.UserCollaboration+"}");if(0<jQuery("#printFrame_"+this.P).length){var f=window.printFrame=eb.browser.msie||eb.browser.lf?window.open().document:jQuery("#printFrame_"+this.P)[0].contentWindow.document||jQuery("#printFrame_"+this.P)[0].contentDocument,h="",n=Math.floor(this.renderer.getDimensions()[0].width),k=Math.floor(this.renderer.getDimensions()[0].height);jQuery("#printFrame_"+this.P).css({width:S(n)+"px",height:S(k)+"px"});f.open();h+="<!doctype html><html>";h+="<head>";h+="<script type='text/javascript' src='"+this.config.jsDirectory+"jquery.min.js'>\x3c/script>";h+="<script type='text/javascript' src='"+this.config.jsDirectory+"jquery.extensions.min.js'>\x3c/script>";h+='<script type="text/javascript" src="'+this.config.jsDirectory+'flowpaper.js">\x3c/script>';h+='<script type="text/javascript" src="'+this.config.jsDirectory+'flowpaper_handlers.js">\x3c/script>';h+="<script type='text/javascript' src='"+this.config.jsDirectory+"FlowPaperViewer.js'>\x3c/script>";eb.browser.safari||this.renderer.na||(h+="<script type='text/javascript'>window.printWidth = '"+n+"pt';window.printHeight = '"+k+"pt';\x3c/script>");h+="<style type='text/css' media='print'>html, body { height:100%; } body { margin:0; padding:0; } .flowpaper_ppage { clear:both;display:block;max-width:"+n+"pt !important;max-height:"+k+"pt !important;margin-top:0px;} .ppage_break { page-break-after : always; } .ppage_none { page-break-after : avoid; }</style>";this.renderer.na?this.renderer.na&&(h+="<style type='text/css' media='print'>@page { size: auto; margin: 0mm; }</style>"):h+="<style type='text/css' media='print'>@supports ((size:A4) and (size:1pt 1pt)) {@page { margin: 0mm 0mm 0mm 0mm; size: "+n+"pt "+k+"pt;}}</style>";h+="<link rel='stylesheet' type='text/css' href='"+this.config.cssDirectory+"flowpaper.css' />";h+="</head>";h+="<body>";h+='<script type="text/javascript">';h+="function waitForLoad(){";h+="if(window.jQuery && window.$FlowPaper && window.print_flowpaper_Document ){";h+="window.focus();";h+="window.print_flowpaper_Document('"+e+"',"+d+",'"+c+"', "+this.Cm()+", "+this.getTotalPages()+", '"+this.config.jsDirectory+"');";h+="}else{setTimeout(function(){waitForLoad();},1000);}";h+="}";h+="waitForLoad();";h+="\x3c/script>";h+="</body></html>";f.write(h);eb.browser.msie||setTimeout("window['printFrame'].close();",3000);eb.browser.msie&&9<=eb.browser.version&&f.close();}}},switchMode:function(c,d){var e=this;e.H==c||("TwoPage"==c||"BookView"==c)&&2>e.getTotalPages()||(d>e.getTotalPages()&&(d=e.getTotalPages()),e.Pa&&e.Qf(),jQuery(e.pages.J).Mn(function(){e.I&&e.I.switchMode(c,d);"Tile"==c&&(e.H="ThumbView");"Portrait"==c&&(e.H="SinglePage"==e.yb?"SinglePage":"Portrait");"SinglePage"==c&&(e.H="SinglePage");"TwoPage"==c&&(e.H="TwoPage");"BookView"==c&&(e.H="BookView");e.Fg();e.pages.jp();e.renderer.Ue=-1;e.renderer.Aa&&e.renderer.Aa.pp();"TwoPage"!=c&&"BookView"!=c&&(null!=d?e.pages.R=d-1:d=1);e.Xh(d);jQuery(e.K).trigger("onViewModeChanged",c);setTimeout(function(){!eb.platform.touchdevice||eb.platform.touchdevice&&("SinglePage"==c||"Portrait"==c)?e.fitheight():"TwoPage"!=c&&"BookView"!=c&&c!=e.W()&&e.fitwidth();"TwoPage"!=c&&"BookView"!=c&&e.Kc(d);},100);}));},fitwidth:function(){if("TwoPage"!=this.H&&"BookView"!=this.H&&"ThumbView"!=this.H){var c=jQuery(this.pages.J).width()-(this.document.DisableOverflow?0:15);this.Pa&&(c-=100);var d=1<this.getTotalPages()?this.da-1:0;0>d&&(d=0);this.DisplayRange&&(d=this.DisplayRange[0]-1);var e=this.pages.getPage(d).dimensions.la/this.pages.getPage(d).dimensions.ya;if(eb.platform.touchonlydevice){f=c/(this.pages.getPage(d).Ma*e)-(this.document.DisableOverflow?0:0.03),window.FitWidthScale=f,this.ib(f),this.pages.Fj();}else{var f=c/(this.pages.getPage(d).Ma*this.document.MaxZoomSize*e)-(this.document.DisableOverflow?0:0.012);if(90==this.pages.getPage(d).rotation||270==this.pages.getPage(d).rotation){f=this.af();}window.FitWidthScale=f;jQuery(this.K).trigger("onScaleChanged",f/this.document.MaxZoomSize);if(this.document.DisableOverflow){for(var h=S(parseFloat(window.printHeight))-0,n=this.pages.getPage(d).Ma*this.document.MaxZoomSize*f,k=this.pages.getPage(d).Ma*this.pages.getPage(d).re()*this.document.MaxZoomSize*f,l=0;n>h;){f=c/(this.pages.getPage(d).Ma*this.document.MaxZoomSize*e)+l,n=this.pages.getPage(d).Ma*this.document.MaxZoomSize*f,k=this.pages.getPage(d).Ma*this.pages.getPage(d).re()*this.document.MaxZoomSize*f,l-=0.0001;}this.N.css("width",Math.floor(k)+"px");this.N.css("height",Math.floor(n)+"px");}f*this.document.MaxZoomSize>=this.document.MinZoomSize&&f<=this.document.MaxZoomSize&&("Portrait"==this.H?this.ib(this.document.MaxZoomSize*f,{qg:!0}):this.ib(this.document.MaxZoomSize*f));}}},getCurrentRenderingMode:function(){return this.renderer instanceof CanvasPageRenderer?"html5":"html";},ib:function(c,d){var e=this;if(e.initialized&&e.pages){e.H==e.W()&&1==c&&(d=d||{},d.qg=!0);if(!d||d&&!d.qg){var f=100/(100*e.document.ZoomInterval);c=Math.round(c*f)/f;}e.H==e.W()&&1>c&&(c=1);jQuery(e.K).trigger("onScaleChanged",c/e.document.MaxZoomSize);var f=jQuery(e.pages.J).prop("scrollHeight"),h=jQuery(e.pages.J).scrollTop(),f=0<h?h/f:0;null!=e.Cf&&(window.clearTimeout(e.Cf),e.Cf=null);e.pages.hp()&&e.scale!=c&&(jQuery(".flowpaper_annotation_"+e.P).remove(),jQuery(".flowpaper_pageword_"+e.P).remove());e.Cf=setTimeout(function(){e.nc();e.pages&&e.pages.Ea();},500);if(0<c){c<e.config.document.MinZoomSize&&(c=this.config.document.MinZoomSize);c>e.config.document.MaxZoomSize&&(c=this.config.document.MaxZoomSize);e.pages.Qa(c,d);e.scale=c;!d||d&&!d.ad?e.pages.pages[0]&&e.pages.pages[0].Qe():e.pages.$g(d.Vb,d.rc);jQuery(e.K).trigger("onZoomFactorChanged",{Hf:c,F:e});if("undefined"!=window.FitWidthScale&&Math.round(100*window.FitWidthScale)==Math.round(c/e.document.MaxZoomSize*100)){if(jQuery(e.K).trigger("onFitModeChanged","FitWidth"),window.onFitModeChanged){window.onFitModeChanged("Fit Width");}}else{if("undefined"!=window.FitHeightScale&&Math.round(100*window.FitHeightScale)==Math.round(c/e.document.MaxZoomSize*100)){if(jQuery(e.K).trigger("onFitModeChanged","FitHeight"),window.onFitModeChanged){window.onFitModeChanged("Fit Height");}}else{if(jQuery(e.K).trigger("onFitModeChanged","FitNone"),window.onFitModeChanged){window.onFitModeChanged("Fit None");}}}e.H!=e.W()&&(e.pages.hd(),e.pages.kd(),e.pages.Fj(),h=jQuery(e.pages.J).prop("scrollHeight"),eb.browser.capabilities.Cb&&(!d||d&&!d.ad?jQuery(e.pages.J).scrollTo({left:"50%",top:h*f+"px"},0,{axis:"xy"}):jQuery(e.pages.J).scrollTo({top:h*f+"px"},0,{axis:"y"})));}}},nc:function(){if(this.renderer){null!=this.Cf&&(window.clearTimeout(this.Cf),this.Cf=null);"CanvasPageRenderer"==this.renderer.Mf()&&(jQuery(".flowpaper_pageword_"+this.P+":not(.flowpaper_selected_searchmatch)").remove(),window.annotations&&this.pages.Ea());this.pages.ag&&0<=this.pages.ag&&this.pages.pages[this.pages.ag].Wa&&this.renderer.Tb(this.pages.pages[this.pages.ag],!0);for(var c=0;c<this.document.numPages;c++){this.pages.Ra(c)&&c!=this.pages.ag&&this.pages.pages[c]&&(this.pages.pages[c].Wa?this.renderer.Tb(this.pages.pages[c],!0):this.pages.pages[c].pa=!1);}}},Zoom:function(c,d){!eb.platform.touchonlydevice||"TwoPage"!=this.H&&"BookView"!=this.H?(c>this.document.MaxZoomSize&&(c=this.document.MaxZoomSize),c=c/this.document.MaxZoomSize,jQuery(this.K).trigger("onScaleChanged",c),c*this.document.MaxZoomSize>=this.document.MinZoomSize&&c<=this.document.MaxZoomSize&&this.ib(this.document.MaxZoomSize*c,d)):1<c?"TwoPage"==this.H||"BookView"==this.H?this.pages.te():"Portrait"!=this.H&&"SinglePage"!=this.H||this.fitwidth():"TwoPage"==this.H||"BookView"==this.H?this.pages.qd():"Portrait"!=this.H&&"SinglePage"!=this.H||this.fitheight();},ZoomIn:function(){this.Zoom(this.scale+3*this.document.ZoomInterval);},ZoomOut:function(){if("Portrait"==this.H||"SinglePage"==this.H){null!=this.pages.jScrollPane?(this.pages.jScrollPane.data("jsp").scrollTo(0,0,!1),this.pages.jScrollPane.data("jsp").reinitialise(this.dd)):this.pages.M(this.pages.J).parent().scrollTo({left:0,top:0},0,{axis:"xy"});}this.Zoom(this.scale-3*this.document.ZoomInterval);},sliderChange:function(c){c>this.document.MaxZoomSize||(c=c/this.document.MaxZoomSize,c*this.document.MaxZoomSize>=this.document.MinZoomSize&&c<=this.document.MaxZoomSize&&this.ib(this.document.MaxZoomSize*c));},Jh:function(){var c=this;if(!eb.platform.mobilepreview&&!eb.platform.lb&&(c.ab&&c.Yk(),!c.Pa)){c.N.find(".flowpaper_searchabstract_result, .flowpaper_searchabstract_result_separator").remove();var d=c.kf=null!=c.toolbar&&null!=c.toolbar.La?c.toolbar.ka(c.toolbar.La,"Search"):"Search",e=c.H==c.W()?c.N.height()-0:parseFloat(jQuery(c.pages.J).css("height"))-10,f=c.H==c.W()?jQuery(c.K).css("background-color"):"#c8c8c8",h=c.H==c.W()?"40px":jQuery(c.K).height()+2,n=c.H==c.W()?"color:#ededed":"color:#555555;",k=(c.W(),40),l=c.H==c.W()?0:41;"rgba(0, 0, 0, 0)"==f.toString()&&(f="#555");c.Jg=c.N.find(c.K).css("margin-left");c.H!=c.W()||c.Pa?c.Pa||(c.N.append(jQuery(String.format("<div class='flowpaper_searchabstracts' style='position:absolute;left:0px;top:0px;height:{5}px;width:{2};min-width:{3};opacity: 0;z-index:13;overflow:hidden;'><div style='margin: 0px 0px 0px 0px;padding: 10px 7px 10px 10px;background-color:{6};height:{7}px'><div style='height:25px;width:100%' <div class='flowpaper_tblabel' style='margin-left:10px; width: 100%;height:25px;'><img src='{1}' style='vertical-align: middle'><span style='margin-left:10px;vertical-align: middle'>{0}</span><img src='{4}' style='float:right;margin-right:5px;cursor:pointer;' class='flowpaper_searchabstracts_close' /></div><div class='flowpaper_bottom_fade'></div></div></div>",d,c.ak,"20%","250px",c.Wh,parseFloat(jQuery(c.pages.J).css("height"))+10,f,c.N.height()-58))),c.Pa=c.N.find(".flowpaper_searchabstracts"),jQuery(c.Pa.children()[0]).append("<div class='flowpaper_searchabstracts_content' style='display:block;position:relative;height:"+e+"px;margin-bottom:50px;width:100%;overflow-y: auto;overflow-x: hidden;'></div>"),"TwoPage"!=c.H&&c.H!=c.W()&&c.resize(c.L.width(),c.N.height()+1,!1,function(){}),c.L.animate({left:c.Pa.width()/2+"px"},0),c.document.FitWidthOnLoad?c.fitwidth():c.fitheight()):(jQuery(c.K).css("opacity",0.7),c.N.append(jQuery(String.format("<div class='flowpaper_searchabstracts' style='position:absolute;left:0px;top:{8}px;height:{5}px;width:{2};min-width:{3};opacity: 0;z-index:50;{9}'><div style='padding: 10px 10px 10px 10px;background-color:{6};height:{7}px'><div style='height:25px;width:100%'><div class='flowpaper_tblabel' style='margin-left:10px; width: 100%;height:25px;'><img src='{1}' style='vertical-align: middle'><span style='margin-left:10px;vertical-align: middle'>{0}</span><img src='{4}' style='float:right;margin-right:5px;cursor:pointer;' class='flowpaper_searchabstracts_close' /></div><hr size='1' color='#ffffff' /></div></div>",d,c.ak,"20%","250px",c.Wh,e,f,e-20,0,c.I.backgroundImage?"":"background-color:"+c.I.backgroundColor))),c.Pa=c.N.find(".flowpaper_searchabstracts"),jQuery(c.Pa.children()[0]).css({"border-radius":"0 3px 3px 0px","-moz-border-radius":"3px"}),jQuery(c.Pa.children()[0]).append("<div class='flowpaper_searchabstracts_content' style='display:block;position:relative;height:"+(jQuery(c.Pa.children()[0]).height()-k)+"px;margin-bottom:50px;width:100%;overflow-y: auto;overflow-x: hidden;'></div>"),c.resize(c.L.width(),c.L.height()+l,!1,function(){}),d=c.N.width()-c.L.width(),c.L.animate({left:Math.abs(d)+"px"},0));d=0.5*c.Pa.width();jQuery(c.K).width()+d>c.N.width()&&(d=0);jQuery(c.K).animate({"margin-left":parseFloat(c.Jg)+d+"px"},200,function(){if(window.onresize){window.onresize();}});0==d&&c.Pa.css({top:h,height:parseFloat(jQuery(c.pages.J).css("height"))+10+"px"});c.H==c.W()&&c.I.Jh();c.Pa.fadeTo("fast",1);var m=c.N.find(".flowpaper_searchabstracts_content");jQuery(c).bind("onSearchAbstractAdded",function(d,e){var f=e.ke.Vn;100<f.length&&(f=f.substr(0,100)+"...");f=f.replace(new RegExp(c.Yd,"g"),"<font style='color:#ffffff'>["+c.Yd+"]</font>");f="<b>p."+c.toolbar.Bd(e.ke.pageIndex+1,e.ke.pageIndex+1,!0)+"</b> : "+f;m.append(jQuery(String.format("<div id='flowpaper_searchabstract_item_{1}' style='{2}' class='flowpaper_searchabstract_result'>{0}</div><hr size=1 color='#777777' style='margin-top:8px;' class='flowpaper_searchabstract_result_separator' />",f,e.ke.id,n)));jQuery("#flowpaper_searchabstract_item_"+e.ke.id).bind("mousedown",function(d){c.Va=e.ke.pageIndex+1;c.Be=e.ke.mp;c.fc=-1;c.searchText(c.Yd,!1);d.preventDefault&&d.preventDefault();d.returnValue=!1;});jQuery("#flowpaper_searchabstract_item_"+e.ke.id).bind("mouseup",function(c){c.preventDefault&&c.preventDefault();c.returnValue=!1;});});c.N.find(".flowpaper_searchabstracts_close").bind("mousedown",function(){c.Qf();});}},Qf:function(){this.Pa&&(this.L.css({left:"0px"}),this.Pa.remove(),this.Pa=null,this.N.find(".flowpaper_searchabstract_result, .flowpaper_searchabstract_result_separator").remove(),this.H==this.W()?(jQuery(this.K).css("opacity",1),this.resize(this.N.width(),this.L.height(),!1)):"TwoPage"==this.H?(this.L.css({left:"0px",width:"100%"}),this.fitheight()):this.resize(this.N.width(),this.N.height()+1,!1),jQuery(this.K).animate({"margin-left":parseFloat(this.Jg)+"px"},200),this.H==this.W()&&this.I.Qf());jQuery(this).unbind("onSearchAbstractAdded");},dl:function(c,d){jQuery(".flowpaper_searchabstract_blockspan").remove();var e=this.renderer.getNumPages();d||(d=0);for(var f=d;f<e;f++){this.$m(f,c);}this.H!=this.W()&&this.N.find(".flowpaper_searchabstracts_content").append(jQuery("<div class='flowpaper_searchabstract_blockspan' style='display:block;clear:both;height:200px'></div>"));},$m:function(c,d){var e=this.renderer.sa;if(null!=e[c]){-1<e[c].toLowerCase().indexOf("actionuri")&&(e[c]=e[c].replace(/actionuri(.*?)\):/gi,""));-1<e[c].toLowerCase().indexOf("actiongotor")&&(e[c]=e[c].replace(/actiongotor(.*?)\):/gi,""));-1<e[c].toLowerCase().indexOf("actiongoto")&&(e[c]=e[c].replace(/actiongoto(.*?)\):/gi,""));for(var f=e[c].toLowerCase().indexOf(d),h=0;0<=f;){var n=0<f-50?f-50:0,k=f+75<e[c].length?f+75:e[c].length,l=this.Tc.length;this.Tc.uf[l]=[];this.Tc.uf[l].pageIndex=c;this.Tc.uf[l].mp=h;this.Tc.uf[l].id=this.P+"_"+c+"_"+h;this.Tc.uf[l].Vn=e[c].substr(n,k-n);f=e[c].toLowerCase().indexOf(d,f+1);jQuery(this).trigger("onSearchAbstractAdded",{ke:this.Tc.uf[l]});h++;}}else{null==this.Kl&&this.tm(d,c);}},tm:function(c,d){var e=this;e.Kl=setTimeout(function(){null==e.renderer.rd?e.renderer.wc(d+1,!1,function(){e.Kl=null;e.dl(c,d);}):e.tm(c,d);},100);},searchText:function(c,d){var e=this;if(null!=c&&(null==c||0!=c.length)){if(void 0!==d||"Portrait"!=e.H&&"SinglePage"!=e.H&&"TwoPage"!=e.H&&e.H!=e.W()||!e.document.EnableSearchAbstracts||eb.platform.mobilepreview||(d=!0),d&&e.H==e.W()&&1<e.scale&&(e.renderer.mb&&e.renderer.Sc&&e.renderer.Sc(),e.Zoom(1)),jQuery(e.K).find(".flowpaper_txtSearch").val()!=c&&jQuery(e.K).find(".flowpaper_txtSearch").val(c),"ThumbView"==e.H){e.switchMode("Portrait"),setTimeout(function(){e.searchText(c);},1000);}else{var f=e.renderer.sa,h=e.renderer.getNumPages();e.Gh||(e.Gh=0);if(0==e.renderer.Aa.Sa.length&&10>e.Gh){window.clearTimeout(e.np),e.np=setTimeout(function(){e.searchText(c,d);},500),e.Gh++;}else{e.Gh=0;e.Be||(e.Be=0);e.Va||(e.Va=-1);null!=c&&0<c.length&&(c=c.toLowerCase());e.Yd!=c&&(e.fc=-1,e.Yd=c,e.Be=0,e.Va=-1,e.Tc=[],e.Tc.uf=[]);-1==e.Va?(e.Va=parseInt(e.da),e.config.document.RTLMode&&(e.Va=parseInt(e.da)-h+1)):e.fc=e.fc+c.length;0==e.Tc.uf.length&&e.Tc.searchText!=c&&d&&(e.Tc.searchText!=c&&e.N.find(".flowpaper_searchabstract_result, .flowpaper_searchabstract_result_separator").remove(),e.Tc.searchText=c,e.Jh(),e.dl(c));1>e.Va&&(e.Va=1);for(;e.Va-1<h;){var n=f[e.Va-1];if(e.renderer.ra&&null==n){jQuery(e.renderer).trigger("UIBlockingRenderingOperation",e.P);e.Hp=e.Va;e.renderer.wc(e.Va,!1,function(){n=f[e.Va-1];e.Hp=null;});return;}e.fc=n.indexOf(c,-1==e.fc?0:e.fc);if(0<=e.fc){e.da==e.Va||!(e.H==e.W()&&e.da!=e.Va+1||"BookView"==e.H&&e.da!=e.Va+1||"TwoPage"==e.H&&e.da!=e.Va-1||"SinglePage"==e.H&&e.da!=e.Va)||"TwoPage"!=e.H&&"BookView"!=e.H&&"SinglePage"!=e.H&&e.H!=e.W()?(e.Be++,e.renderer.pb?this.pages.getPage(e.Va-1).load(function(){e.pages.getPage(e.Va-1).Gc(e.Yd,!1,e.fc);}):("Portrait"==e.H&&this.pages.getPage(e.Va-1).load(function(){e.pages.getPage(e.Va-1).Gc(e.Yd,!1,e.fc);}),"TwoPage"!=e.H&&"SinglePage"!=e.H&&e.H!=e.W()||this.pages.getPage(e.Va-1).Gc(e.Yd,!1,e.fc))):e.gotoPage(e.Va,function(){e.fc=e.fc-c.length;e.searchText(c);});break;}e.Va++;e.fc=-1;e.Be=0;}-1==e.fc&&(e.fc=-1,e.Be=0,e.Va=-1,e.Pb(),alert(null!=e.toolbar&&null!=e.toolbar.La?e.toolbar.ka(e.toolbar.La,"Finishedsearching"):"No more search matches."),e.gotoPage(1));}}}},fitheight:function(){if(this.H!=this.W()){try{if(eb.platform.touchdevice){if(c=this.af()){window.FitHeightScale=c,this.ib(c,{qg:!0}),this.pages.Fj();}}else{var c=this.af();window.FitHeightScale=c;jQuery(this.K).trigger("onScaleChanged",c/this.document.MaxZoomSize);c*this.document.MaxZoomSize>=this.document.MinZoomSize&&c<=this.document.MaxZoomSize&&("Portrait"==this.H?this.ib(this.document.MaxZoomSize*c,{qg:!0}):this.ib(this.document.MaxZoomSize*c));}}catch(d){}}},mh:function(){var c=jQuery(this.pages.J).width()-15,d=1<this.getTotalPages()?this.da-1:0;0>d&&(d=0);this.DisplayRange&&(d=this.DisplayRange[0]-1);var e=this.pages.getPage(d).dimensions.la/this.pages.getPage(d).dimensions.ya;return eb.platform.touchdevice?c/(this.pages.getPage(d).Ma*e)-("SinglePage"==this.H?0.1:0.03):c/(this.pages.getPage(d).Ma*this.document.MaxZoomSize*e)-0.012;},af:function(){this.da-1&&(this.da=1);if("Portrait"==this.H||"SinglePage"==this.H||"TwoPage"==this.H||"BookView"==this.H){var c=this.pages.getPage(this.da-1).dimensions.width/this.pages.getPage(this.da-1).dimensions.height;if(eb.platform.touchdevice){d=jQuery(this.L).height()-("TwoPage"==this.H||"BookView"==this.H?40:0),"SinglePage"==this.H&&(d-=25),d/=this.pages.getPage(this.da-1).Ma,e=this.pages.getPage(this.da-1),e=e.dimensions.la/e.dimensions.ya*e.Ma*d,("TwoPage"==this.H||"BookView"==this.H)&&2*e>this.L.width()&&(d=this.L.width()-0,d/=4*this.pages.getPage(this.da-1).Ma);}else{var d=jQuery(this.pages.J).height()-("TwoPage"==this.H||"BookView"==this.H?25:0);this.document.DisableOverflow&&(d=S(parseFloat(window.printHeight)));var d=d/(this.pages.getPage(this.da-1).Ma*this.document.MaxZoomSize),e=this.pages.getPage(this.da-1),e=e.dimensions.la/e.dimensions.ya*e.Ma*this.document.MaxZoomSize*d;("TwoPage"==this.H||"BookView"==this.H)&&2*e>this.L.width()&&!this.document.DisableOverflow&&(d=(jQuery(this.L).width()-("TwoPage"==this.H||"BookView"==this.H?40:0))/1.48,d=d/1.6/(this.pages.getPage(this.da-1).Ma*this.document.MaxZoomSize*c));}return window.FitHeightScale=d;}if(this.H==this.W()){return d=1,window.FitHeightScale=d;}},next:function(){var c=this;c.bj||c.H==c.W()?c.H==c.W()&&c.pages.next():(c.bj=setTimeout(function(){window.clearTimeout(c.bj);c.bj=null;},700),c.pages.next());},gotoPage:function(c,d){var e=this;e.pages&&(e.config.document.RTLMode&&(c=e.renderer.S.length-c+1),"ThumbView"==e.H?eb.platform.ios?e.I?e.I.Yp(c):e.switchMode("Portrait",c):e.switchMode("Portrait",c):("Portrait"==e.H&&e.pages.scrollTo(c),"SinglePage"==e.H&&setTimeout(function(){e.pages.xg(c,d);},300),"TwoPage"!=e.H&&"BookView"!=e.H||setTimeout(function(){e.pages.yg(c,d);},300),e.I&&e.I.gotoPage(c,d)));},rotate:function(){var c=this.getCurrPage()-1;-1==c&&(c=0);this.pages.rotate(c);window.annotations&&(jQuery(".flowpaper_pageword_"+this.P).remove(),this.nc(),this.pages.Ea());},getCurrPage:function(){return null!=this.pages?this.H!=this.W()?this.pages.R+1:this.pages.R:1;},sp:function(){this.version="3.3.6";},rp:function(){this.build="10-February-2020";},getTotalPages:function(){return this.pages.getTotalPages();},Kc:function(c){var d=this;d.H!=d.W()&&(this.da=c,this.pages.R=this.da-1);c>d.getTotalPages()&&(c=c-1,this.pages.R=c);"TwoPage"!=this.H&&"BookView"!=this.H||this.pages.R!=this.pages.getTotalPages()-1||0==this.pages.R%2||(this.pages.R=this.pages.R+1);d.I&&(0==c&&(c++,this.da=c),d.I.Kc(c));d.yc&&(jQuery(".flowpaper_mark_video_maximized").remove(),jQuery(".flowpaper_mark_video_maximized_closebutton").remove(),d.yc=null);var e=jQuery(".flowpaper_mark_video_"+(c-1)+'[data-autoplay="true"]');if(e.length){for(var f=0;f<e.length;f++){jQuery(e[f]).trigger("mouseup");}}0<jQuery(".flowpaper_mark_video").find("iframe,video").length&&jQuery(".flowpaper_mark_video").find("iframe,video").each(function(){try{var c=jQuery(this).closest(".flowpaper_page").attr("id"),e=parseInt(c.substr(14,c.lastIndexOf("_")-14));if(0==e&&0!=d.pages.R-1||!d.I.ta&&0<e&&e!=d.pages.R-1&&e!=d.pages.R-2||d.I.ta&&e!=d.pages.R-1){jQuery(this).parent().remove();var f=d.pages.pages[e];f.Tf(f.Zi?f.Zi:f.scale,f.bc());}}catch(g){}});this.toolbar.cq(c);null!=d.plugin&&("TwoPage"==this.H?(d.plugin.dh(this.pages.R+1),d.plugin.dh(this.pages.R+2)):"BookView"==this.H?(1!=c&&d.plugin.dh(this.pages.R),d.plugin.dh(this.pages.R+1)):d.plugin.dh(this.da));},addLink:function(c,d,e,f,h,n,k,l,m){window[this.hf].addLink=this.addLink;c=parseInt(c);this.document.RTLMode&&(c=this.getTotalPages()-c+1);null==this.Z[c-1]&&(this.Z[c-1]=[]);var p={type:"link"};p.href=d;p.yo=e;p.zo=f;p.width=h;p.height=n;p.Cp=k;p.Dp=l;p.Lo=m;this.Z[c-1][this.Z[c-1].length]=p;},addVideo:function(c,d,e,f,h,n,k,l,m){window[this.hf].addVideo=this.addVideo;c=parseInt(c);this.document.RTLMode&&(c=this.getTotalPages()-c+1);null==this.Z[c-1]&&(this.Z[c-1]=[]);var p={type:"video"};p.src=d;p.url=e;p.Oj=f;p.Pj=h;p.width=n;p.height=k;p.Jo=l;p.autoplay="true"==m+"";this.Z[c-1][this.Z[c-1].length]=p;},ek:function(c,d,e,f,h,n,k,l){window[this.hf].addIFrame=this.ek;c=parseInt(c);this.document.RTLMode&&(c=this.getTotalPages()-c+1);null==this.Z[c-1]&&(this.Z[c-1]=[]);var m={type:"iframe"};m.src=d;m.url=e;m.Fi=f;m.Gi=h;m.width=n;m.height=k;m.Io=l;this.Z[c-1][this.Z[c-1].length]=m;},addImage:function(c,d,e,f,h,n,k,l){c=parseInt(c);this.document.RTLMode&&(c=this.getTotalPages()-c+1);null==this.Z[c-1]&&(this.Z[c-1]=[]);var m={type:"image"};m.src=d;m.qh=e;m.rh=f;m.width=h;m.height=n;m.href=k;m.mo=l;this.Z[c-1][this.Z[c-1].length]=m;},openFullScreen:function(){var c=this;FLOWPAPER.getParameterByName("autoplay")&&(c.document.FullScreenAsMaxWindow=!0);if(c.cc){c.N.prepend("<div id='modal-maximize' class='modal-content flowpaper_printdialog' style='overflow:hidden;;'><div style='background-color:#fff;color:#000;padding:10px 10px 10px 10px;height:155px;padding-bottom:20px;'>It's not possible to maximize the viewer from within the Desktop Publisher. <br/><br/>You can try this feature by clicking on 'Publish' and then 'View in Browser'.<br/><br/><a class='flowpaper_printdialog_button' id='bttnMaximizeDisabledOK'>OK</a></div></div>"),c.Tr=jQuery("#modal-maximize").smodal({minHeight:155,appendTo:c.N}),jQuery("#bttnMaximizeDisabledOK").bind("click",function(c){jQuery.smodal.close();c.stopImmediatePropagation();jQuery("#modal-maximize").remove();return !1;});}else{var d=document.Gb||document.mozFullScreen||document.webkitIsFullScreen||window.Hm||window.hg||document.fullscreenElement||document.msFullscreenElement,e=c.N.get(0);if(d){return document.exitFullscreen?document.exitFullscreen():document.mozCancelFullScreen?document.mozCancelFullScreen():document.webkitExitFullscreen?document.webkitExitFullscreen():document.msExitFullscreen&&document.msExitFullscreen(),window.hg&&window.close(),!1;}"0"!=c.N.css("top")&&(c.Qo=c.N.css("top"));"0"!=c.N.css("left")&&(c.Po=c.N.css("left"));c.H==c.W()&&1<c.scale&&(c.pages.qd(),c.T.show(),c.T.animate({opacity:1},100));c.la=c.N.width();c.ya=c.N.height();c.PreviewMode&&c.pages.wl&&(c.PreviewMode=!1,c.Th=!0,c.I.kb.ep(c.pages,c.L),c.I.Ep());c.N.css({visibility:"hidden"});jQuery(document).bind("webkitfullscreenchange mozfullscreenchange fullscreenchange MSFullscreenChange",function(){setTimeout(function(){if(window.navigator.standalone||document.fullScreenElement&&null!=document.fullScreenElement||document.mozFullScreen||document.webkitIsFullScreen){eb.browser.safari?window.zine?c.resize(screen.width,screen.height):c.config.BottomToolbar?c.resize(screen.width,screen.height-jQuery(c.K).height()-70):c.resize(screen.width,screen.height-jQuery(c.K).height()):window.zine?c.resize(jQuery(document).width(),jQuery(document).height()):c.resize(window.innerWidth,window.innerHeight);}window.annotations&&(jQuery(".flowpaper_pageword_"+c.P).remove(),c.nc(),c.pages.Ea());c.N.css({visibility:"visible"});},500);jQuery(document).bind("webkitfullscreenchange mozfullscreenchange fullscreenchange MSFullscreenChange",function(){jQuery(document).unbind("webkitfullscreenchange mozfullscreenchange fullscreenchange MSFullscreenChange");c.Ri=!1;c.N.css({top:c.Qo,left:c.Po});c.Th&&(c.PreviewMode=!0,c.I.Xk(),c.I.ph(),setTimeout(function(){c.PreviewMode&&c.I.ph();},1000));c.H==c.W()&&1<c.scale?c.pages.qd(function(){c.T.show();c.T.animate({opacity:1},100);c.resize(c.la,c.ya-2);jQuery(c.K).trigger("onFullscreenChanged",!1);}):(c.resize(c.la,c.ya-2),jQuery(c.K).trigger("onFullscreenChanged",!1));jQuery(document).unbind("webkitfullscreenchange mozfullscreenchange fullscreenchange MSFullscreenChange");c.Th&&(c.Th=!1,c.I.kb.Yh(c.pages,c.L));window.annotations&&(jQuery(".flowpaper_pageword_"+c.P).remove(),c.nc(),c.pages.Ea());});window.clearTimeout(c.tj);c.tj=setTimeout(function(){!c.PreviewMode&&c.I&&c.I.gb&&c.I.Aj();},1000);});d=eb.platform.android&&!e.webkitRequestFullScreen||eb.platform.ios&&!e.webkitRequestFullScreen;c.document.FullScreenAsMaxWindow||!document.documentElement.requestFullScreen||d?c.document.FullScreenAsMaxWindow||!document.documentElement.mozRequestFullScreen||d?c.document.FullScreenAsMaxWindow||!document.documentElement.webkitRequestFullScreen||d?!c.document.FullScreenAsMaxWindow&&document.documentElement.msRequestFullscreen?(c.N.css({visibility:"hidden"}),c.Ri?(c.Ri=!1,window.document.msExitFullscreen()):(c.Ri=!0,e.msRequestFullscreen()),setTimeout(function(){c.N.css({visibility:"visible"});c.resize(window.outerWidth,window.outerHeight);window.annotations&&(jQuery(".flowpaper_pageword_"+c.P).remove(),c.nc(),c.pages.Ea());},500)):(c.No(),setTimeout(function(){c.N.css({visibility:"visible"});},500)):(c.N.css({visibility:"hidden"}),e.webkitRequestFullScreen(eb.browser.safari&&10>eb.browser.Qb?0:{}),c.N.css({left:"0px",top:"0px"})):(c.N.css({visibility:"hidden"}),e.mozRequestFullScreen(),c.N.css({left:"0px",top:"0px"})):(c.N.css({visibility:"hidden"}),e.requestFullScreen(),c.N.css({left:"0px",top:"0px"}));jQuery(c.K).trigger("onFullscreenChanged",!0);}},No:function(){var c="",c="toolbar=no, location=no, scrollbars=no, width="+screen.width,c=c+(", height="+screen.height),c=c+", top=0, left=0, fullscreen=yes";nw=this.document.FullScreenAsMaxWindow?window.open(""):window.open("","windowname4",c);nw.params=c;c="<!doctype html><head>";c+='<meta name="viewport" content="initial-scale=1,user-scalable=no,maximum-scale=1,width=device-width" />';c+='<link rel="stylesheet" type="text/css" href="'+this.config.cssDirectory+(-1==this.config.cssDirectory.indexOf("flowpaper.css")?"flowpaper.css":"")+'" />';c+='<script type="text/javascript" src="'+this.config.jsDirectory+'jquery.min.js">\x3c/script>';c+='<script type="text/javascript" src="'+this.config.jsDirectory+'jquery.extensions.min.js">\x3c/script>';c+='<script type="text/javascript" src="'+this.config.jsDirectory+'flowpaper.js">\x3c/script>';c+='<script type="text/javascript" src="'+this.config.jsDirectory+'flowpaper_handlers.js">\x3c/script>';c+='<style type="text/css" media="screen">body{ margin:0; padding:0; overflow-x:hidden;overflow-y:hidden; }</style>';c+="</head>";c+="<body>";c+='<div id="documentViewer" class="flowpaper_viewer" style="position:absolute;left:0px;top:0px;width:100%;height:100%;"></div>';c+='<script type="text/javascript">';c+="function openViewer(){";c+='jQuery("#documentViewer").FlowPaperViewer(';c+="{ config : {";c+="";c+='SWFFile : "'+this.document.SWFFile+'",';c+='IMGFiles : "'+this.document.IMGFiles+'",';c+='JSONFile : "'+this.document.JSONFile+'",';c+='PDFFile : "'+this.document.PDFFile+'",';c+="";c+="Scale : "+this.scale+",";c+='ZoomTransition : "'+this.document.ZoomTransition+'",';c+="ZoomTime : "+this.document.ZoomTime+",";c+="ZoomInterval : "+this.document.ZoomInterval+",";c+="FitPageOnLoad : "+this.document.FitPageOnLoad+",";c+="FitWidthOnLoad : "+this.document.FitWidthOnLoad+",";c+="FullScreenAsMaxWindow : "+this.document.FullScreenAsMaxWindow+",";c+="ProgressiveLoading : "+this.document.ProgressiveLoading+",";c+="MinZoomSize : "+this.document.MinZoomSize+",";c+="MaxZoomSize : "+this.document.MaxZoomSize+",";c+="MixedMode : "+this.document.MixedMode+",";c+="SearchMatchAll : "+this.document.SearchMatchAll+",";c+='InitViewMode : "'+this.document.InitViewMode+'",';c+='RenderingOrder : "'+this.document.RenderingOrder+'",';c+="useCustomJSONFormat : "+this.document.useCustomJSONFormat+",";c+='JSONDataType : "'+this.document.JSONDataType+'",';null!=this.document.JSONPageDataFormat&&(c+="JSONPageDataFormat : {",c+='pageWidth : "'+this.document.JSONPageDataFormat.sf+'",',c+='pageHeight : "'+this.document.JSONPageDataFormat.qf+'",',c+='textCollection : "'+this.document.JSONPageDataFormat.Ge+'",',c+='textFragment : "'+this.document.JSONPageDataFormat.tb+'",',c+='textFont : "'+this.document.JSONPageDataFormat.Hg+'",',c+='textLeft : "'+this.document.JSONPageDataFormat.pc+'",',c+='textTop : "'+this.document.JSONPageDataFormat.Eb+'",',c+='textWidth : "'+this.document.JSONPageDataFormat.Dd+'",',c+='textHeight : "'+this.document.JSONPageDataFormat.Cd+'"',c+="},");c+="ViewModeToolsVisible : "+this.document.ViewModeToolsVisible+",";c+="ZoomToolsVisible : "+this.document.ZoomToolsVisible+",";c+="NavToolsVisible : "+this.document.NavToolsVisible+",";c+="CursorToolsVisible : "+this.document.CursorToolsVisible+",";c+="SearchToolsVisible : "+this.document.SearchToolsVisible+",";window.zine||(c+='Toolbar : "'+escape(this.config.Toolbar)+'",');c+='BottomToolbar : "'+this.config.BottomToolbar+'",';c+='UIConfig : "'+this.document.UIConfig+'",';c+='jsDirectory : "'+this.config.jsDirectory+'",';c+='cssDirectory : "'+this.config.cssDirectory+'",';c+='localeDirectory : "'+this.config.localeDirectory+'",';c+='key : "'+this.config.key+'",';c+="";c+='localeChain: "'+this.document.localeChain+'"';c+="}});";c+="}";c+="$(document).ready(function(){ requestAnim(function(){  openViewer(); }) });";c+="document.fullscreen = true;";c+="$(document).keyup(function(e) {if (e.keyCode == 27){window.close();}});";c+="\x3c/script>";c+="</body>";c+="</html>";nw.document.write(c);nw.hg=!0;window.focus&&nw.focus();nw.document.close();return !1;},resize:function(c,d,e,f){var h=this;if(h.initialized){h.width=null;if(h.H==h.W()){h.I.resize(c,d,e,f);}else{h.Pa&&(c=c-h.Pa.width()/2,h.L.animate({left:h.Pa.width()/2+"px"},0));var n=jQuery(h.K).height()+1+14,k=0<h.og?h.og+1:0;h.I&&(k=37);h.L.css({width:c,height:d-n-k});null!=e&&1!=e||this.N.css({width:c,height:d});h.pages.resize(c,d-n-k,f);jQuery(".flowpaper_interactiveobject_"+h.P+":not(.flowpaper_selected_searchmatch)").remove();jQuery(".flowpaper_pageword_"+h.P).remove();"TwoPage"!=h.H&&"BookView"!=h.H||h.fitheight();window.clearTimeout(h.Uo);h.Uo=setTimeout(function(){h.pages.Ea();},700);}h.I&&h.I.gb&&(window.clearTimeout(h.tj),h.tj=setTimeout(function(){h.PreviewMode||h.I.Aj();},2500));}}};f.loadFromUrl=f.loadFromUrl;return f;}();window.print_flowpaper_Document=function(f,c,d,e,g){FLOWPAPER.Sk.init();var h=Array(g+1),n=0;if("all"==d){for(var k=1;k<g+1;k++){h[k]=!0;}n=g;}else{if("current"==d){h[e]=!0,n=1;}else{if(-1==d.indexOf(",")&&-1<d.indexOf("-")){for(var l=parseInt(d.substr(0,d.toString().indexOf("-"))),m=parseInt(d.substr(d.toString().indexOf("-")+1));l<m+1;l++){h[l]=!0,n++;}}else{if(0<d.indexOf(",")){for(var p=d.split(","),k=0;k<p.length;k++){if(-1<p[k].indexOf("-")){for(l=parseInt(p[k].substr(0,p[k].toString().indexOf("-"))),m=parseInt(p[k].substr(p[k].toString().indexOf("-")+1));l<m+1;l++){h[l]=!0,n++;}}else{h[parseInt(p[k].toString())]=!0,n++;}}}else{isNaN(d)||(h[parseInt(d)]=!0,n=1);}}}}jQuery(document.body).append("<div id='documentViewer' style='position:absolute;width:100%;height:100%'></div>");h="1-"+g;window.Qh=0;"current"==d?h=e+"-"+e:"all"==d?h="1-"+g:h=d;jQuery("#documentViewer").FlowPaperViewer({config:{IMGFiles:c.pageImagePattern,JSONFile:c.jsonfile&&"undefined"!=c.jsonfile?c.jsonfile:null,PDFFile:c.PdfFile,JSONDataType:c.JSONDataType,Scale:1,RenderingOrder:"ImagePageRenderer"==f?"html,html":"html5,html",key:c.key,UserCollaboration:c.UserCollaboration,InitViewMode:"Portrait",DisableOverflow:!0,DisplayRange:h}});jQuery("#documentViewer").bind("onPageLoaded",function(){window.Qh==n-1&&setTimeout(function(){if(window.parent.onPrintRenderingCompleted){window.parent.onPrintRenderingCompleted();}window.focus&&window.focus();window.print();window.close&&window.close();},2000);window.Qh++;if(window.parent.onPrintRenderingProgress){window.parent.onPrintRenderingProgress(window.Qh);}});};window.renderPrintPage=function Z(c,d){"CanvasPageRenderer"==c.Mf()&&(d<c.getNumPages()?c.ra?document.getElementById("ppage_"+d)?c.Xi(d+1,function(){if(parent.onPrintRenderingProgress){parent.onPrintRenderingProgress(d+1);}document.getElementById("ppage_"+d)?c.Ia[d].getPage(1).then(function(e){var g=document.getElementById("ppage_"+d);if(g){var h=g.getContext("2d"),n=e.getViewport(4),h={canvasContext:h,viewport:n,Lh:null,continueCallback:function(c){c();}};g.width=n.width;g.height=n.height;e.render(h).promise.then(function(){e.destroy();Z(c,d+1);},function(c){console.log(c);});}else{Z(c,d+1);}}):Z(c,d+1);}):Z(c,d+1):document.getElementById("ppage_"+d)?c.Ia.getPage(d+1).then(function(e){if(parent.onPrintRenderingProgress){parent.onPrintRenderingProgress(d+1);}var g=document.getElementById("ppage_"+d);if(g){var h=g.getContext("2d"),n=e.getViewport(4),h={canvasContext:h,viewport:n,Lh:null,continueCallback:function(c){c();}};g.width=n.width;g.height=n.height;e.render(h).promise.then(function(){Z(c,d+1);e.destroy();},function(c){console.log(c);});}else{Z(c,d+1);}}):Z(c,d+1):(parent.onPrintRenderingCompleted(),window.print()));};Ga&&self.addEventListener("message",function(f){f=f.data;if("undefined"!==f.cmd){switch(f.cmd){case"loadImageResource":var c=new XMLHttpRequest;c.open("GET","../../"+f.src);c.Gb=c.responseType="arraybuffer";c.onreadystatechange=function(){if(4==c.readyState&&200==c.status){for(var d=new Uint8Array(this.response),e=d.length,f=Array(e);e--;){f[e]=String.fromCharCode(d[e]);}self.postMessage({status:"ImageResourceLoaded",blob:f.join("")});self.close();}};c.send(null);}}},!1);

© 2025 Cubjrnet7