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 J,FLOWPAPER=window.FLOWPAPER?window.FLOWPAPER:window.FLOWPAPER={};FLOWPAPER.Qj=function(){var f=[];return{Wq: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.Qj.notify("warn",f);}function O(f,c,d,e){try{throw Error();}catch(g){}FLOWPAPER.Qj.notify("error",f);d&&c&&(e?jQuery("#"+d).trigger(c,e):jQuery("#"+d).trigger(c));throw Error(f);}FLOWPAPER.Mk={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),r;if(!(r=d)){try{r="ontouchstart" in document.documentElement;}catch(p){r=!1;}}c.platform={win:g,mac:h,touchdevice:r||f.match(/touch/i)||navigator.Eb||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"),Od: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),Sp:f.match(/Windows NT/i)&&f.match(/ARM/i)&&f.match(/touch/i),rm:navigator.Eb||navigator.msPointerEnabled,blackberry:f.match(/BlackBerry/i)||f.match(/BB10/i),webos:f.match(/webOS/i),$m:-1<f.indexOf("android")&&!(jQuery(window).height()<jQuery(window).width()),mobilepreview:d,Ya:window.devicePixelRatio?window.devicePixelRatio:1,Pn:"undefined"!==typeof document&&!!document.fonts};d=eb;e=document.createElement("div");e.innerHTML="000102030405060708090a0b0c0d0e0f";d.fe=e;eb.platform.touchonlydevice=eb.platform.touchdevice&&(eb.platform.android||eb.platform.ios||eb.platform.blackberry||eb.platform.webos)||eb.platform.winphone||eb.platform.Sp;eb.platform.lb=eb.platform.touchonlydevice&&(eb.platform.iphone||eb.platform.$m||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.Od=6<=eb.platform.iosversion):eb.platform.Od=!0);eb.browser={version:(f.match(/.+?(?:rv|it|ra|ie)[\/: ]([\d.]+)(?!.+opera)/)||[])[1],Lb:(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),jf:("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),ph: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.jf;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.Hr=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.Lb&&1<eb.browser.Lb.match(/\./g).length&&(eb.browser.Lb=eb.browser.Lb.substr(0,eb.browser.Lb.indexOf(".",eb.browser.Lb.indexOf("."))));k=eb.browser;var f=!eb.platform.touchonlydevice||eb.platform.android&&!window.annotations||eb.platform.Od&&!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={Ab:f,Rp:d,qs:e,jq: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.Jd=c;this.containerId=d;this.scroll=function(){var c=this;jQuery(this.Jd).bind("mousedown",function(d){if(c.F.Zc||f.pi&&f.pi()||jQuery("*:focus").hasClass("flowpaper_textarea_contenteditable")||jQuery("*:focus").hasClass("flowpaper_note_textarea")){return d.returnValue=!1,!0;}if(c.F.mc){return !0;}c.Ep(c.Jd);c.rj=d.pageY;c.qj=d.pageX;return !1;});jQuery(this.Jd).bind("mousemove",function(d){return c.Bn(d);});this.F.Am||(jQuery(this.containerId).bind("mouseout",function(d){c.co(d);}),jQuery(this.containerId).bind("mouseup",function(){c.bm();}),this.F.Am=!0);};this.Bn=function(c){if(!this.F.Ri){return !0;}this.F.rk!=this.Jd&&(this.rj=c.pageY,this.qj=c.pageX,this.F.rk=this.Jd);this.scrollTo(this.qj-c.pageX,this.rj-c.pageY);this.rj=c.pageY;this.qj=c.pageX;return !1;};this.Ep=function(c){this.F.Ri=!0;this.F.rk=c;jQuery(this.Jd).removeClass("flowpaper_grab");jQuery(this.Jd).addClass("flowpaper_grabbing");};this.co=function(c){0==jQuery(this.F.L).has(c.target).length&&this.bm();};this.bm=function(){this.F.Ri=!1;jQuery(this.Jd).removeClass("flowpaper_grabbing");jQuery(this.Jd).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.Cg[destRef.num+" "+destRef.gen+" R"]+1:destRef+1;}function ha(f,c){if(eb.platform.Pn){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,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 ja(f){function c(c,d){var e,g,h,f,r;h=c&2147483648;f=d&2147483648;e=c&1073741824;g=d&1073741824;r=(c&1073741823)+(d&1073741823);return e&g?r^2147483648^h^f:e|g?r&1073741824?r^3221225472^h^f:r^1073741824^h^f:r^h^f;}function d(d,e,g,h,f,r,k){d=c(d,c(c(e&g|~e&h,f),k));return c(d<<r|d>>>32-r,e);}function e(d,e,g,h,f,r,k){d=c(d,c(c(e&h|g&~h,f),k));return c(d<<r|d>>>32-r,e);}function g(d,e,g,h,f,r,k){d=c(d,c(c(e^g^h,f),k));return c(d<<r|d>>>32-r,e);}function h(d,e,g,h,f,r,k){d=c(d,c(c(g^(e|~h),f),k));return c(d<<r|d>>>32-r,e);}function r(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,t,q,n,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,r=0;r<e;){d=(r-r%4)/4,f=r%4*8,h[d]|=c.charCodeAt(r)<<f,r++;}d=(r-r%4)/4;h[d]|=128<<r%4*8;h[g-2]=e<<3;h[g-1]=e>>>29;return h;}(f);q=1732584193;n=4023233417;u=2562383102;v=271733878;for(f=0;f<k.length;f+=16){l=q,m=n,p=u,t=v,q=d(q,n,u,v,k[f+0],7,3614090360),v=d(v,q,n,u,k[f+1],12,3905402710),u=d(u,v,q,n,k[f+2],17,606105819),n=d(n,u,v,q,k[f+3],22,3250441966),q=d(q,n,u,v,k[f+4],7,4118548399),v=d(v,q,n,u,k[f+5],12,1200080426),u=d(u,v,q,n,k[f+6],17,2821735955),n=d(n,u,v,q,k[f+7],22,4249261313),q=d(q,n,u,v,k[f+8],7,1770035416),v=d(v,q,n,u,k[f+9],12,2336552879),u=d(u,v,q,n,k[f+10],17,4294925233),n=d(n,u,v,q,k[f+11],22,2304563134),q=d(q,n,u,v,k[f+12],7,1804603682),v=d(v,q,n,u,k[f+13],12,4254626195),u=d(u,v,q,n,k[f+14],17,2792965006),n=d(n,u,v,q,k[f+15],22,1236535329),q=e(q,n,u,v,k[f+1],5,4129170786),v=e(v,q,n,u,k[f+6],9,3225465664),u=e(u,v,q,n,k[f+11],14,643717713),n=e(n,u,v,q,k[f+0],20,3921069994),q=e(q,n,u,v,k[f+5],5,3593408605),v=e(v,q,n,u,k[f+10],9,38016083),u=e(u,v,q,n,k[f+15],14,3634488961),n=e(n,u,v,q,k[f+4],20,3889429448),q=e(q,n,u,v,k[f+9],5,568446438),v=e(v,q,n,u,k[f+14],9,3275163606),u=e(u,v,q,n,k[f+3],14,4107603335),n=e(n,u,v,q,k[f+8],20,1163531501),q=e(q,n,u,v,k[f+13],5,2850285829),v=e(v,q,n,u,k[f+2],9,4243563512),u=e(u,v,q,n,k[f+7],14,1735328473),n=e(n,u,v,q,k[f+12],20,2368359562),q=g(q,n,u,v,k[f+5],4,4294588738),v=g(v,q,n,u,k[f+8],11,2272392833),u=g(u,v,q,n,k[f+11],16,1839030562),n=g(n,u,v,q,k[f+14],23,4259657740),q=g(q,n,u,v,k[f+1],4,2763975236),v=g(v,q,n,u,k[f+4],11,1272893353),u=g(u,v,q,n,k[f+7],16,4139469664),n=g(n,u,v,q,k[f+10],23,3200236656),q=g(q,n,u,v,k[f+13],4,681279174),v=g(v,q,n,u,k[f+0],11,3936430074),u=g(u,v,q,n,k[f+3],16,3572445317),n=g(n,u,v,q,k[f+6],23,76029189),q=g(q,n,u,v,k[f+9],4,3654602809),v=g(v,q,n,u,k[f+12],11,3873151461),u=g(u,v,q,n,k[f+15],16,530742520),n=g(n,u,v,q,k[f+2],23,3299628645),q=h(q,n,u,v,k[f+0],6,4096336452),v=h(v,q,n,u,k[f+7],10,1126891415),u=h(u,v,q,n,k[f+14],15,2878612391),n=h(n,u,v,q,k[f+5],21,4237533241),q=h(q,n,u,v,k[f+12],6,1700485571),v=h(v,q,n,u,k[f+3],10,2399980690),u=h(u,v,q,n,k[f+10],15,4293915773),n=h(n,u,v,q,k[f+1],21,2240044497),q=h(q,n,u,v,k[f+8],6,1873313359),v=h(v,q,n,u,k[f+15],10,4264355552),u=h(u,v,q,n,k[f+6],15,2734768916),n=h(n,u,v,q,k[f+13],21,1309151649),q=h(q,n,u,v,k[f+4],6,4149444226),v=h(v,q,n,u,k[f+11],10,3174756917),u=h(u,v,q,n,k[f+2],15,718787259),n=h(n,u,v,q,k[f+9],21,3951481745),q=c(q,l),n=c(n,m),u=c(u,p),v=c(v,t);}return(r(q)+r(n)+r(u)+r(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 ka(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.nr=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.Hn=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.Xf=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.Kr=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.rs=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.Tr=function(){eb.browser.capabilities.Ab?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.Be=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.hj=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.wd=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.ij=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.rc=function(){this.css({display:"none"});};jQuery.fn.yd=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.Jf=function(){var f=this.css("transform");return !f||"none"==f||"0px,0px"==f.translate&&1==parseFloat(f.scale)?!1:!0;};function la(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.wj&&(d.wj.stop(),delete d.wj);!1!==f&&(d.wj=(new Spinner(jQuery.extend({color:c.css("color")},f))).spin(this));});return this;};jQuery.fn.qo=function(){var f=jQuery.extend({qk:"cur",ll:!1,speed:300},{ll:!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.qk).parents("ul").show().prev("a").addClass(f.qk).addClass("harOpen");d.on("click",function(){jQuery(this).next("ul").is(":hidden")?jQuery(this).addClass("harOpen"):jQuery(this).removeClass("harOpen");f.ll?(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 ma(f){f=f.replace(/\\u([\d\w]{4})/gi,function(c,d){return String.fromCharCode(parseInt(d,16));});return f=unescape(f);}function na(f,c){var d=jQuery("<ul>");jQuery.each(c,function(c,g){var h=jQuery("<li>").appendTo(d),r=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(ma(g.getAttribute("title"))).appendTo(h);0<r.length&&na(f,r).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.If=function(f,c,d){f=f.offset();return{x:Math.floor(c-f.left),y:Math.floor(d-f.top)};};jQuery.fn.If=function(f,c){return jQuery.If(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 oa(f){return f.replace(/(?:(?:^|\n)\s+|\s+(?:$|\n))/g,"").replace(/\s+/g," ");}function S(f){window.Nh||(window.Nh=1);if(!window.wk){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.wk=e;}return f/(72/window.wk)*window.Nh;}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(oa(f[d+1].toString())),d++):c[c.length]=parseFloat(oa(f[d].toString()));}return c;}function pa(f){this.source=f;this.volume=100;this.loop=!1;this.Zd=void 0;this.finish=!1;this.stop=function(){document.body.removeChild(this.Zd);};this.start=function(){if(this.finish){return !1;}this.Zd=document.createElement("embed");this.Zd.setAttribute("src",this.source);this.Zd.setAttribute("hidden","true");this.Zd.setAttribute("volume",this.volume);this.Zd.setAttribute("autostart","true");this.Zd.setAttribute("loop",this.loop);document.body.appendChild(this.Zd);};this.remove=function(){document.body.removeChild(this.Zd);this.finish=!0;};this.init=function(c,d){this.finish=!1;this.volume=c;this.loop=d;};}function qa(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.Dj=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,la(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.Rn=function(){for(var f="",c=0;10>c;c++){f+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789".charAt(Math.floor(62*Math.random()));}return f;};FLOWPAPER.Lr=function(f){return"#"!=f.charAt(0)&&"/"!=f.charAt(0)&&(-1==f.indexOf("//")||f.indexOf("//")>f.indexOf("#")||f.indexOf("//")>f.indexOf("?"));};FLOWPAPER.$q=function(f,c,d,e,g,h,r){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_"+r+" flowpaper_interactiveobject_"+r;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.Eb="rotate("+e+"rad)";return k;};FLOWPAPER.as=function(f,c,d,e,g,h){if(e<c){var r=c;c=e;e=r;r=d;d=g;g=r;}f=jQuery("#"+f+"_line");r=Math.sqrt((c-e)*(c-e)+(d-g)*(d-g));f.css("width",r+"px");e=Math.atan((g-d)/(e-c));f.css("top",d+0.5*r*Math.sin(e)+"px");f.css("left",c-0.5*r*(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.kr=function(){eb.browser.mozilla?jQuery(".flowpaper_interactive_canvas").addClass("flowpaper_interactive_canvas_drawing_moz"):eb.browser.msie||eb.browser.jf?jQuery(".flowpaper_interactive_canvas").addClass("flowpaper_interactive_canvas_drawing_ie"):jQuery(".flowpaper_interactive_canvas").addClass("flowpaper_interactive_canvas_drawing");};FLOWPAPER.er=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 ra(){try{return new window.XMLHttpRequest;}catch(f){}}var sa="undefined"!==typeof window&&window.ActiveXObject?function(){var f;if(!(f=ra())){a:{try{f=new window.ActiveXObject("Microsoft.XMLHTTP");break a;}catch(c){}f=void 0;}}return f;}:ra;function ta(f,c){try{var d=sa();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.Pd=d.jsonfile;this.jsDirectory=e;this.pageImagePattern=d.pageImagePattern;this.pageThumbImagePattern=d.pageThumbImagePattern;this.pageSVGImagePattern=d.pageSVGImagePattern;this.cj=d.pageHighResImagePattern;this.Dk=d.FontsToLoad;this.Te=d.DisableOverflow;this.JSONPageDataFormat=this.qa=this.dimensions=null;this.Fa=null!=d.compressedJSONFormat?d.compressedJSONFormat:!0;this.S=null;this.$b="pageLoader_[pageNumber]";this.ea="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7";this.Re=-1;this.ya=null;this.Kf=!1;this.le=this.tb=!0;this.Bb=d.SVGMode;this.loadTestFont=atob("T1RUTwALAIAAAwAwQ0ZGIDHtZg4AAAOYAAAAgUZGVE1lkzZwAAAEHAAAABxHREVGABQAFQAABDgAAAAeT1MvMlYNYwkAAAEgAAAAYGNtYXABDQLUAAACNAAAAUJoZWFk/xVFDQAAALwAAAA2aGhlYQdkA+oAAAD0AAAAJGhtdHgD6AAAAAAEWAAAAAZtYXhwAAJQAAAAARgAAAAGbmFtZVjmdH4AAAGAAAAAsXBvc3T/hgAzAAADeAAAACAAAQAAAAEAALZRFsRfDzz1AAsD6AAAAADOBOTLAAAAAM4KHDwAAAAAA+gDIQAAAAgAAgAAAAAAAAABAAADIQAAAFoD6AAAAAAD6AABAAAAAAAAAAAAAAAAAAAAAQAAUAAAAgAAAAQD6AH0AAUAAAKKArwAAACMAooCvAAAAeAAMQECAAACAAYJAAAAAAAAAAAAAQAAAAAAAAAAAAAAAFBmRWQAwAAuAC4DIP84AFoDIQAAAAAAAQAAAAAAAAAAACAAIAABAAAADgCuAAEAAAAAAAAAAQAAAAEAAAAAAAEAAQAAAAEAAAAAAAIAAQAAAAEAAAAAAAMAAQAAAAEAAAAAAAQAAQAAAAEAAAAAAAUAAQAAAAEAAAAAAAYAAQAAAAMAAQQJAAAAAgABAAMAAQQJAAEAAgABAAMAAQQJAAIAAgABAAMAAQQJAAMAAgABAAMAAQQJAAQAAgABAAMAAQQJAAUAAgABAAMAAQQJAAYAAgABWABYAAAAAAAAAwAAAAMAAAAcAAEAAAAAADwAAwABAAAAHAAEACAAAAAEAAQAAQAAAC7//wAAAC7////TAAEAAAAAAAABBgAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAD/gwAyAAAAAQAAAAAAAAAAAAAAAAAAAAABAAQEAAEBAQJYAAEBASH4DwD4GwHEAvgcA/gXBIwMAYuL+nz5tQXkD5j3CBLnEQACAQEBIVhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYWFhYAAABAQAADwACAQEEE/t3Dov6fAH6fAT+fPp8+nwHDosMCvm1Cvm1DAz6fBQAAAAAAAABAAAAAMmJbzEAAAAAzgTjFQAAAADOBOQpAAEAAAAAAAAADAAUAAQAAAABAAAAAgABAAAAAAAAAAAD6AAAAAAAAA==");}f.prototype={Hf:function(){return"ImagePageRenderer";},Ja:function(c){return c.F.I?c.F.I.W:"";},vb:function(c){return c.F.I.io;},dispose:function(){jQuery(this.ya).unbind();this.ya.dispose();delete this.fc;this.fc=null;delete this.dimensions;this.dimensions=null;delete this.ya;this.ya=null;delete this.S;this.S=null;},initialize:function(c){var d=this;d.fc=c;d.Ya=eb.platform.Ya;d.Fa?d.JSONPageDataFormat={nf:"width",mf:"height",Ee:"text",rb:"d",Fg:"f",lc:"l",Cb:"t",Bd:"w",Ad:"h"}:d.JSONPageDataFormat={nf:d.config.JSONPageDataFormat.pageWidth,mf:d.config.JSONPageDataFormat.pageHeight,Ee:d.config.JSONPageDataFormat.textCollection,rb:d.config.JSONPageDataFormat.textFragment,Fg:d.config.JSONPageDataFormat.textFont,lc:d.config.JSONPageDataFormat.textLeft,Cb:d.config.JSONPageDataFormat.textTop,Bd:d.config.JSONPageDataFormat.textWidth,Ad:d.config.JSONPageDataFormat.textHeight};d.ya=new ua(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.Lb){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.Pd;c.search+=0<c.search.length?"&":"?";c.search+="callback=?";d.Yq=!1;jQuery(d).trigger("loadingProgress",{P:d.P,progress:0.3});0<d.Pd.indexOf("{page}")?(d.wa=!0,d.Ve({url:d.Af(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.Je.decrypt(c.e,CryptoJS.qc.Ie.parse(eb.Sg?P():eb.fe.innerHTML));c=jQuery.parseJSON(f.toString(CryptoJS.qc.gg));d.uf=!0;}if(0<c.length){d.S=Array(c[0].pages);d.sa=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.bb=d.S[0].twofold,d.bb&&(d.Ya=1));if(d.sa){if(d.Dk&&0<d.Dk.length){d.Mc||(d.Mc={});f=5>c.length?c.length:5;d.lf=[];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.Mc[c[k].fonts[e].name]||(ha(c[k].fonts[e].name,c[k].fonts[e].data),d.lf.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.Mc[l[e][7]]&&-1==d.lf.indexOf(l[e][7])&&0==l[e][7].indexOf("g_font")&&l[e][7]&&d.lf.push(l[e][7]);}}}}d.hh=0;0<d.lf.length?WebFont.load({custom:{families:d.lf},fontactive:function(c){d.hh++;d.Mc[c]="loaded";jQuery(d).trigger("loadingProgress",{P:d.P,progress:d.hh/d.lf.length});},fontinactive:function(c){d.hh++;d.Mc[c]="loaded";jQuery(d).trigger("loadingProgress",{P:d.P,progress:d.hh/d.lf.length});},inactive:function(){d.fc();d.ya.xc(c);},active:function(){d.fc();d.ya.xc(c);},timeout:5000}):(d.fc(),d.ya.xc(c));}else{d.fc(),d.ya.xc(c);}}else{d.fc(),d.ya.xc(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.Ve({url:d.Pd,dataType:d.config.JSONDataType,success:function(c){jQuery(d).trigger("loadingProgress",{P:d.P,progress:0.9});c.e&&(c=CryptoJS.Je.decrypt(c.e,CryptoJS.qc.Ie.parse(eb.Sg?P():eb.fe.innerHTML)),c=jQuery.parseJSON(c.toString(CryptoJS.qc.gg)),d.uf=!0);d.S=c;for(var e=0;e<c.length;e++){c[e].loaded=!0;}d.fc();d.ya.xc(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.qa=[]),e=c;e<d;e++){this.S[e].loaded?(this.dimensions[e]=[],this.Gl(e),null==this.pc&&(this.pc=this.dimensions[e])):null!=this.pc&&(this.dimensions[e]=[],this.dimensions[e].page=e,this.dimensions[e].loaded=!1,this.dimensions[e].width=this.pc.width,this.dimensions[e].height=this.pc.height,this.dimensions[e].na=this.pc.na,this.dimensions[e].za=this.pc.za);}}return this.dimensions;},Gl: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.nf];this.dimensions[c].height=this.S[c][this.JSONPageDataFormat.mf];this.dimensions[c].na=this.dimensions[c].width;this.dimensions[c].za=this.dimensions[c].height;this.qa[c]=[];this.qa[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.Ee][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.qa[c]+=" "),d&&Math.round(d[0])!=Math.round(g[0])&&!this.qa[c].endsWith(" ")&&(this.qa[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.qa[c]+=d),this.config.RTLMode&&(this.qa[c]+=Q(d))):!isNaN(g[this.JSONPageDataFormat.lc].toString())&&0<=Number(g[this.JSONPageDataFormat.lc].toString())&&!isNaN(g[this.JSONPageDataFormat.Cb].toString())&&0<=Number(g[this.JSONPageDataFormat.Cb].toString())&&!isNaN(g[this.JSONPageDataFormat.Bd].toString())&&0<Number(g[this.JSONPageDataFormat.Bd].toString())&&!isNaN(g[this.JSONPageDataFormat.Ad].toString())&&0<Number(g[this.JSONPageDataFormat.Ad].toString())&&(d&&Math.round(d[this.JSONPageDataFormat.Cb])!=Math.round(g[this.JSONPageDataFormat.Cb])&&Math.round(d[this.JSONPageDataFormat.lc])==Math.round(prev[this.JSONPageDataFormat.lc])&&(this.qa[c]+=" "),d&&Math.round(d[this.JSONPageDataFormat.Cb])!=Math.round(g[this.JSONPageDataFormat.Cb])&&!this.qa[c].endsWith(" ")&&(this.qa[c]+=" "),d=/\\u([\d\w]{4})/gi,d=(g[this.JSONPageDataFormat.rb]+"").replace(d,function(c,d){return String.fromCharCode(parseInt(d,16));}),this.config.RTLMode||(this.qa[c]+=d),this.config.RTLMode&&(this.qa[c]+=Q(d))),d=g;}this.qa[c]=this.qa[c].toLowerCase();}},Nd:function(c){this.mb=!1;if("Portrait"==c.H||"SinglePage"==c.H){"Portrait"==c.H&&c.M(c.V).addClass("flowpaper_hidden"),this.Bb?c.M(c.va).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.sa?c.M(c.va).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.va).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.oh(c,c.V);}"ThumbView"==c.H&&jQuery(c.V).append("<img src='"+this.ea+"' alt='"+this.ga(c.pageNumber+1)+"' id='"+c.page+"' class='flowpaper_hidden' style='"+c.getDimensions()+"'/>");c.H==this.Ja(c)&&this.vb(c).Nd(this,c);if("TwoPage"==c.H||"BookView"==c.H){0==c.pageNumber&&(jQuery(c.V+"_1").append("<img id='"+c.$b+"_1' class='flowpaper_pageLoader' src='"+c.F.ge+"' style='position:absolute;left:50%;top:"+c.Ha()/4+"px;margin-left:-32px;' />"),jQuery(c.V+"_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.V+"_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.V+"_2").append("<img id='"+c.$b+"_2' class='flowpaper_pageLoader' src='"+c.F.ge+"' style='position:absolute;left:50%;top:"+c.Ha()/4+"px;margin-left:-32px;' />"),jQuery(c.V+"_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.V+"_2").append("<div id='"+c.aa+"_2_textoverlay' style='position:absolute;left:0px;top:0px;width:100%;height:100%;'></div>"));}},Ve:function(c){var d=this;if("lz"==d.config.JSONDataType){if("undefined"===typeof Worker||eb.browser.msie&&11>eb.browser.version){ta(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.Vb||(d.Vb={});d.Vb[c.url]=c;d.gf||(d.gf=new Worker(("undefined"!=d.jsDirectory&&null!=d.jsDirectory?d.jsDirectory:"js/")+"flowpaper.worker.js"),d.gf.addEventListener("message",function(c){d.Vb[c.data.url]&&("undefined"!==typeof Response?(new Response(c.data.JSON)).json().then(function(e){d.Vb[c.data.url].success(e);d.Vb[c.data.url]=null;}):(d.Vb[c.data.url].success(JSON.parse(c.data.JSON)),d.Vb[c.data.url]=null));},!1));d.gf.postMessage(c.url);}}else{return jQuery.ajax(c);}},Af:function(c){return this.Pd.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.uf&&(c=CryptoJS.Je.encrypt(c.toString(),CryptoJS.qc.Ie.parse(eb.Sg?P():eb.fe.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);},Ib:function(c,d){return this.cj.replace("{page}",c).replace("{sector}",d);},Ff:function(c){var d=null!=FLOWPAPER.CHUNK_SIZE?FLOWPAPER.CHUNK_SIZE:10;return 0===d?c:c+(d-c%d);},tc:function(c,d,e){var g=this;g.od!=g.Ff(c)&&(g.od=g.Ff(c),g.Ve({url:g.Af(g.od),dataType:g.config.JSONDataType,async:d,success:function(c){c.e&&(c=CryptoJS.Je.decrypt(c.e,CryptoJS.qc.Ie.parse(eb.Sg?P():eb.fe.innerHTML)),c=jQuery.parseJSON(c.toString(CryptoJS.qc.gg)),g.uf=!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.Gl(f);}g.ya.xc(g.S);jQuery(g).trigger("onTextDataUpdated",c[0].number);null!=e&&e();}g.od=null;},error:function(c){O("Error loading JSON file ("+c.statusText+"). Please check your configuration.","onDocumentLoadedError",g.P);g.od=null;}}));},Da:function(c){return c.Re;},Ga:function(c,d){c.Re=d;},Ob:function(c,d,e){var g=this;if(c.H!=g.Ja(c)&&-1<g.Da(c)){window.clearTimeout(c.kc),c.kc=setTimeout(function(){g.Ob(c,d,e);},250);}else{if(g.sa&&c.H!=g.Ja(c)&&(!g.Te&&c.Nk!=c.scale||g.Te&&!c.Ok||"SinglePage"==c.H)&&("Portrait"==c.H||"SinglePage"==c.H)){"SinglePage"!=c.H?g.Ga(c,c.pageNumber):0<=g.Da(c)&&jQuery(c.oa).css("background-image","url('"+g.ga(c.pages.R+1)+"')");var h=jQuery(c.oa).get(0),f=1.5<g.Ya?g.Ya:1.5;g.Te&&(f=2);h.width=jQuery(h).width()*f;h.height=jQuery(h).height()*f;c.Nk=c.scale;jQuery(h).data("needs-overlay",1);c.Ok||(c.Ok=!0);g.Te?(c.U=new Image,jQuery(c.U).bind("load",function(){var d=jQuery(c.oa).get(0);d.getContext("2d").drawImage(c.U,0,0,d.width,d.height);c.Xd(d).then(function(){jQuery("#"+g.P).trigger("onPageLoaded",c.pageNumber+1);},function(){});}),jQuery(c.U).attr("src",g.ga(c.pageNumber+1,"ThumbView"==c.H?200:null))):c.Xd(h).then(function(){},function(){});}if(!c.pa||c.H==g.Ja(c)){f=c.Bg;if("Portrait"==c.H||"SinglePage"==c.H||"TwoPage"==c.H||"BookView"==c.H||c.H==g.Ja(c)){var k=c.xa(),l=c.Ha(),h=c.Yb();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.Ja(c)||"SinglePage"==c.H?jQuery(c.va).append(f):"TwoPage"!=c.H&&"BookView"!=c.H||jQuery(c.va+"_"+(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.zb).css({"z-index":11,"margin-left":h}),jQuery(c.zb).transition({rotate:c.rotation,translate:"-"+h+"px, 0px"},0);}}if("Portrait"==c.H||"ThumbView"==c.H){c.pa||jQuery(c.oa).attr("src")!=g.ea&&!g.Bb&&!g.sa||c.af||(g.Ga(c,c.pageNumber),c.dimensions.loaded||g.tc(c.pageNumber+1,!0,function(){g.Ec(c);}),c.Sc(),g.U=new Image,jQuery(g.U).bind("load",function(){c.af=!0;c.bf=this.height;c.df=this.width;g.Rc(c);c.dimensions.na>c.dimensions.width&&(c.dimensions.width=c.dimensions.na,c.dimensions.height=c.dimensions.za,"Portrait"!=c.H&&"SinglePage"!=c.H||c.Pa());}).bind("error",function(){O("Error loading image ("+this.src+")","onErrorLoadingPage",g.P,c.pageNumber);}),jQuery(g.U).bind("error",function(){g.Ga(c,-1);}),jQuery(g.U).attr("src",g.ga(c.pageNumber+1,"ThumbView"==c.H?200:null))),!c.pa&&jQuery(c.oa).attr("src")==g.ea&&c.af&&g.Rc(c),null!=e&&e();}c.H==g.Ja(c)&&(c.dimensions.loaded||g.dimensions[c.pageNumber-1].loaded&&(g.getNumPages()!=c.pageNumber+1||0!=g.getNumPages()%2)||g.tc(c.pageNumber+1,!0,function(){g.Ec(c);}),g.vb(c).Ob(g,c,d,e));"SinglePage"==c.H&&(c.uc||(c.Sc(),c.uc=!0),0==c.pageNumber&&(g.Ga(c,c.pages.R),g.getDimensions()[g.Da(c)].loaded||g.tc(g.Da(c)+1,!0,function(){g.Ec(c);}),g.U=new Image,jQuery(g.U).bind("load",function(){c.af=!0;c.bf=this.height;c.df=this.width;c.Kb();g.Rc(c);c.dimensions.na>c.dimensions.width&&(c.dimensions.width=c.dimensions.na,c.dimensions.height=c.dimensions.za,c.Pa());c.pa||jQuery("#"+g.P).trigger("onPageLoaded",c.pageNumber+1);c.pa=!0;g.Ga(c,-1);}),jQuery(g.U).bind("error",function(){c.Kb();g.Ga(c,-1);}),jQuery(g.U).attr("src",g.ga(c.pages.R+1)),jQuery(c.V+"_1").removeClass("flowpaper_load_on_demand"),null!=e&&e()));if("TwoPage"==c.H||"BookView"==c.H){c.uc||(c.Sc(),c.uc=!0),0==c.pageNumber?(jQuery(c.oa),"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.tc(g.Da(c)+1,!0,function(){g.Ec(c);}),g.U=new Image,jQuery(g.U).bind("load",function(){c.af=!0;c.bf=this.height;c.df=this.width;c.Kb();g.Rc(c);c.dimensions.na>c.dimensions.width&&(c.dimensions.width=c.dimensions.na,c.dimensions.height=c.dimensions.za,c.Pa());c.pa||jQuery("#"+g.P).trigger("onPageLoaded",c.pageNumber+1);c.pa=!0;g.Ga(c,-1);}),jQuery(g.U).bind("error",function(){c.Kb();g.Ga(c,-1);}),"BookView"==c.H&&jQuery(g.U).attr("src",g.ga(0!=c.pages.R?c.pages.R:c.pages.R+1)),"TwoPage"==c.H&&jQuery(g.U).attr("src",g.ga(c.pages.R+1)),jQuery(c.V+"_1").removeClass("flowpaper_load_on_demand"),null!=e&&e()):1==c.pageNumber&&(h=jQuery(c.oa),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.U=new Image,jQuery(g.U).bind("load",function(){c.Kb();g.Rc(c);c.dimensions.na>c.dimensions.width&&(c.dimensions.width=c.dimensions.na,c.dimensions.height=c.dimensions.za);c.pa||jQuery("#"+g.P).trigger("onPageLoaded",c.pageNumber+1);c.pa=!0;g.Ga(c,-1);}),jQuery(g.U).bind("error",function(){g.Ga(c,-1);c.Kb();})):c.Kb(),"BookView"==c.H&&jQuery(g.U).attr("src",g.ga(c.pages.R+1)),"TwoPage"==c.H&&jQuery(g.U).attr("src",g.ga(c.pages.R+2)),1<c.pages.R&&jQuery(c.V+"_2").removeClass("flowpaper_hidden"),jQuery(c.V+"_2").removeClass("flowpaper_load_on_demand")),null!=e&&e());}}}},Rc:function(c){if("Portrait"!=c.H||Math.round(c.df/c.bf*100)==Math.round(c.dimensions.width/c.dimensions.height*100)&&!this.Bb||eb.browser.msie&&9>eb.browser.version){c.H==this.Ja(c)?this.vb(c).Rc(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.Bh!=d&&(eb.browser.msie||eb.browser.safari&&5>eb.browser.Lb?jQuery(c.oa).attr("src",this.ga(d)):jQuery(c.oa).css("background-image","url('"+this.ga(d)+"')"),jQuery(c.V+"_1").removeClass("flowpaper_hidden"),c.Bh=d),jQuery(c.oa).removeClass("flowpaper_hidden")),1==c.pageNumber&&(d="BookView"==c.H?c.pages.R+1:c.pages.R+2,c.Bh!=d&&(eb.browser.msie||eb.browser.safari&&5>eb.browser.Lb?jQuery(c.oa).attr("src",this.ga(d)):jQuery(c.oa).css("background-image","url('"+this.ga(d)+"')"),c.Bh=d,"TwoPage"==c.H&&jQuery(c.V+"_2").removeClass("flowpaper_hidden")),jQuery(c.oa).removeClass("flowpaper_hidden")),c.pa||jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1),c.pa=!0):"SinglePage"==c.H?(this.sa?jQuery(c.oa).css("background-image","url('"+this.ga(this.Da(c)+1)+"')"):jQuery(c.oa).attr("src",this.ga(this.Da(c)+1)),jQuery("#"+c.$b).hide(),c.pa||jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1),c.pa=!0):this.Te?this.Te&&(jQuery("#"+c.$b).hide(),c.pa||jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1),c.pa=!0):(this.Bb?(jQuery(c.oa).attr("data",this.ga(c.pageNumber+1,null,!0)),jQuery(c.V).removeClass("flowpaper_load_on_demand")):this.sa?jQuery(c.oa).css("background-image","url('"+this.ga(c.pageNumber+1)+"')"):jQuery(c.oa).attr("src",this.ga(c.pageNumber+1),"ThumbView"==c.H?200:null),jQuery("#"+c.$b).hide(),c.pa||jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1),c.pa=!0);}else{if(this.Bb){jQuery(c.oa).attr("data",this.ga(c.pageNumber+1,null,!0)),jQuery(c.V).removeClass("flowpaper_load_on_demand"),jQuery(c.oa).css("width",jQuery(c.oa).css("width"));}else{if(this.Te&&this.sa){var d=jQuery(c.oa).css("background-image");0<d.length&&"none"!=d?(jQuery(c.oa).css("background-image",d+",url('"+this.ga(c.pageNumber+1)+"')"),jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1),aa(jQuery(c.oa).get(0))):jQuery(c.oa).css("background-image","url('"+this.ga(c.pageNumber+1)+"')");}else{jQuery(c.oa).css("background-image","url('"+this.ga(c.pageNumber+1)+"')"),jQuery(c.oa).attr("src",this.ea);}}jQuery("#"+c.$b).hide();c.pa||this.sa||jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1);c.pa=!0;}this.Ga(c,-1);this.Kf||(this.Kf=!0,c.F.zh());},yl: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+")");},unload:function(c){jQuery(c.V).addClass("flowpaper_load_on_demand");var d=null;if("Portrait"==c.H||"ThumbView"==c.H||"SinglePage"==c.H){d=jQuery(c.oa);}if("TwoPage"==c.H||"BookView"==c.H){d=jQuery(c.oa),jQuery(c.oa).addClass("flowpaper_hidden");}c.H==this.Ja(c)&&this.vb(c).unload(this,c);null!=d&&0<d.length&&(d.attr("alt",d.attr("src")),d.attr("src","data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"));c.uc=!1;c.Bh=-1;jQuery(".flowpaper_pageword_"+this.P+"_page_"+c.pageNumber+":not(.flowpaper_selected_searchmatch, .flowpaper_annotation_"+this.P+")").remove();c.gj&&c.gj();jQuery(".flowpaper_annotation_"+this.P+"_page_"+c.pageNumber).remove();c.Jg&&c.Jg();},getNumPages:function(){return this.S.length;},Ec:function(c,d,e,g){this.ya.Ec(c,d,e,g);},Dc:function(c,d,e,g){this.ya.Dc(c,d,e,g);},Ke:function(c,d,e,g){this.ya.Ke(c,d,e,g);},Ea:function(c,d,e){this.ya.Ea(c,e);},oh:function(c,d){if(this.mb){if(c.scale<c.ug()){c.Tl=d,c.Ul=!1;}else{!d&&c.Tl&&(d=c.Tl);var e=0.25*Math.round(c.Gi()),g=0.25*Math.round(c.Fi());jQuery(".flowpaper_flipview_canvas_highres_"+c.pageNumber).remove();null==d&&(d=c.V);var h=eb.platform.Od||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.Ul=!0;}}},Pc:function(c){if(!(c.scale<c.ug())){!c.Ul&&this.mb&&this.oh(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"),t=document.getElementById(c.aa+"_canvas_highres_l2b1"),q=document.getElementById(c.aa+"_canvas_highres_l1b2"),n=document.getElementById(c.aa+"_canvas_highres_l2b2"),u=document.getElementById(c.aa+"_canvas_highres_r1b1"),v=document.getElementById(c.aa+"_canvas_highres_r2b1"),x=document.getElementById(c.aa+"_canvas_highres_r1b2"),z=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 w=c.H==this.Ja(c)?c.pages.J:null,D=c.H==this.Ja(c)?c.pageNumber+1:c.pages.R+1;jQuery(d).visible(!0,w)&&"none"===jQuery(d).css("background-image")&&jQuery(d).css("background-image","url('"+this.Ib(D,"l1t1")+"')");jQuery(e).visible(!0,w)&&"none"===jQuery(e).css("background-image")&&jQuery(e).css("background-image","url('"+this.Ib(D,"l2t1")+"')");jQuery(g).visible(!0,w)&&"none"===jQuery(g).css("background-image")&&jQuery(g).css("background-image","url('"+this.Ib(D,"l1t2")+"')");jQuery(h).visible(!0,w)&&"none"===jQuery(h).css("background-image")&&jQuery(h).css("background-image","url('"+this.Ib(D,"l2t2")+"')");jQuery(f).visible(!0,w)&&"none"===jQuery(f).css("background-image")&&jQuery(f).css("background-image","url('"+this.Ib(D,"r1t1")+"')");jQuery(k).visible(!0,w)&&"none"===jQuery(k).css("background-image")&&jQuery(k).css("background-image","url('"+this.Ib(D,"r2t1")+"')");jQuery(l).visible(!0,w)&&"none"===jQuery(l).css("background-image")&&jQuery(l).css("background-image","url('"+this.Ib(D,"r1t2")+"')");jQuery(m).visible(!0,w)&&"none"===jQuery(m).css("background-image")&&jQuery(m).css("background-image","url('"+this.Ib(D,"r2t2")+"')");jQuery(p).visible(!0,w)&&"none"===jQuery(p).css("background-image")&&jQuery(p).css("background-image","url('"+this.Ib(D,"l1b1")+"')");jQuery(t).visible(!0,w)&&"none"===jQuery(t).css("background-image")&&jQuery(t).css("background-image","url('"+this.Ib(D,"l2b1")+"')");jQuery(q).visible(!0,w)&&"none"===jQuery(q).css("background-image")&&jQuery(q).css("background-image","url('"+this.Ib(D,"l1b2")+"')");jQuery(n).visible(!0,w)&&"none"===jQuery(n).css("background-image")&&jQuery(n).css("background-image","url('"+this.Ib(D,"l2b2")+"')");jQuery(u).visible(!0,w)&&"none"===jQuery(u).css("background-image")&&jQuery(u).css("background-image","url('"+this.Ib(D,"r1b1")+"')");jQuery(v).visible(!0,w)&&"none"===jQuery(v).css("background-image")&&jQuery(v).css("background-image","url('"+this.Ib(D,"r2b1")+"')");jQuery(x).visible(!0,w)&&"none"===jQuery(x).css("background-image")&&jQuery(x).css("background-image","url('"+this.Ib(D,"r1b2")+"')");jQuery(z).visible(!0,w)&&"none"===jQuery(z).css("background-image")&&jQuery(z).css("background-image","url('"+this.Ib(D,"r2b2")+"')");}}c.wl=!0;}},Gc:function(c){if(this.mb){var d=eb.platform.Od||eb.platform.android?"flowpaper_flipview_canvas_highres":c.aa+"_canvas_highres";c.wl&&0<jQuery("."+d).length&&(jQuery("."+d).css("background-image",""),c.wl=!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.La=this.dimensions=null;this.pageThumbImagePattern=g.pageThumbImagePattern;this.pageImagePattern=g.pageImagePattern;this.config=g;this.bh=this.P+"_dummyPageCanvas_[pageNumber]";this.ri="#"+this.bh;this.dh=this.P+"dummyPageCanvas2_[pageNumber]";this.si="#"+this.dh;this.qb=[];this.context=this.fa=null;this.Ra=[];this.Gh=[];this.tb=this.Kf=!1;this.ea="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7";this.xh=1;this.qa=[];this.Cg={};this.JSONPageDataFormat=null;this.le=!0;this.Fa=null!=g.compressedJSONFormat?g.compressedJSONFormat:!0;this.hi=[];}f.prototype={Hf:function(){return"CanvasPageRenderer";},Ja:function(c){return c.F?c.F.I?c.F.I.W:"":!1;},vb:function(c){return c.F.I.pn;},dispose:function(){jQuery(this.ya).unbind();this.ya.dispose();delete this.fc;this.fc=null;delete this.dimensions;this.dimensions=null;delete this.ya;this.ya=null;delete this.Ra;this.Ra=null;delete this.Gh;this.Gh=null;},initialize:function(c,d){var e=this;e.fc=c;e.Ya=eb.platform.Ya;1<e.Ya&&eb.platform.touchonlydevice&&(e.Ya=1);e.config.MixedMode&&(eb.browser.jf||eb.browser.msie)&&0==e.file.indexOf("http")&&(e.config.MixedMode=!1);e.Qo=("undefined"!=e.jsDirectory&&null!=e.jsDirectory?e.jsDirectory:"js/")+"pdf.min.js";e.Fa?e.JSONPageDataFormat={nf:"width",mf:"height",Ee:"text",rb:"d",Fg:"f",lc:"l",Cb:"t",Bd:"w",Ad:"h"}:e.JSONPageDataFormat={nf:e.config.JSONPageDataFormat.pageWidth,mf:e.config.JSONPageDataFormat.pageHeight,Ee:e.config.JSONPageDataFormat.textCollection,rb:e.config.JSONPageDataFormat.textFragment,Fg:e.config.JSONPageDataFormat.textFont,lc:e.config.JSONPageDataFormat.textLeft,Cb:e.config.JSONPageDataFormat.textTop,Bd:e.config.JSONPageDataFormat.textWidth,Ad:e.config.JSONPageDataFormat.textHeight};e.wa=e.file.indexOf&&0<=e.file.indexOf("[*,")&&e.config&&null!=e.config.jsonfile&&!d.Ek;e.ya=new ua(e.P,e.wa,e.JSONPageDataFormat,!0);e.wa&&(e.Cp=e.file.substr(e.file.indexOf("[*,"),e.file.indexOf("]")-e.file.indexOf("[*,")),e.xk=e.xk=!1);PDFJS.workerSrc=("undefined"!=e.jsDirectory&&null!=e.jsDirectory?e.jsDirectory:"js/")+"pdf.worker.min.js";jQuery.getScript(e.Qo,function(){if(e.xk){var g=new XMLHttpRequest;g.open("HEAD",e.mi(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],r=f.indexOf(": ");0<r&&(d[f.substring(0,r)]=f.substring(r+2));}}e.Vj="bytes"===d["Accept-Ranges"];e.tn="identity"===d["Content-Encoding"]||null===d["Content-Encoding"]||!d["Content-Encoding"];e.Vj&&e.tn&&!eb.platform.ios&&!eb.browser.safari&&(e.file=e.file.substr(0,e.file.indexOf(e.Cp)-1)+".pdf",e.wa=!1);}g.abort();};try{g.send(null);}catch(f){}}window["wordPageList_"+e.P]=e.ya.Ra;jQuery("#"+e.P).trigger("onDocumentLoading");FLOWPAPER.RANGE_CHUNK_SIZE&&(PDFJS.RANGE_CHUNK_SIZE=FLOWPAPER.RANGE_CHUNK_SIZE);PDFJS.disableWorker=e.wa||eb.browser.jf||eb.browser.msie;PDFJS.disableRange=e.wa;PDFJS.disableAutoFetch=e.wa||!1;PDFJS.disableStream=e.wa||!1;PDFJS.pushTextGeometries=!e.wa;PDFJS.verbosity=PDFJS.VERBOSITY_LEVELS.errors;PDFJS.enableStats=!1;PDFJS.fr=!0;PDFJS.gr=!0;if(e.wa){e.wa&&e.config&&null!=e.config.jsonfile&&(e.wa=!0,e.Pd=e.config.jsonfile,e.Vr=new Promise(function(){}),r=null!=FLOWPAPER.CHUNK_SIZE?FLOWPAPER.CHUNK_SIZE:10,e.Ve({url:e.Af(r),dataType:e.config.JSONDataType,success:function(c){c.e&&(c=CryptoJS.Je.decrypt(c.e,CryptoJS.qc.Ie.parse(eb.Sg?P():eb.fe.innerHTML)),c=jQuery.parseJSON(c.toString(CryptoJS.qc.gg)),e.uf=!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.Eh(d);}0<e.S.length&&(e.bb=e.S[0].twofold,e.bb&&(e.Ya=1));for(d=0;d<e.S.length;d++){null==e.S[d]&&(e.S[d]=[],e.S[d].loaded=!1);}e.ya&&e.ya.xc&&e.ya.xc(e.S);}e.Qe=1;e.La=Array(c[0].pages);e.qb=Array(c[0].pages);e.Ti(e.Qe,function(){jQuery(e).trigger("loadingProgress",{P:e.P,progress:1});e.fc();},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.Ek=!0,e.wa=!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.Pd=e.config.jsonfile;var h=new jQuery.Deferred,r=null!=FLOWPAPER.CHUNK_SIZE?FLOWPAPER.CHUNK_SIZE:10;e.Pd&&0<e.Pd.length?e.Ve({url:e.Af(r),dataType:e.config.JSONDataType,success:function(c){c.e&&(c=CryptoJS.Je.decrypt(c.e,CryptoJS.qc.Ie.parse(eb.Sg?P():eb.fe.innerHTML)),c=jQuery.parseJSON(c.toString(CryptoJS.qc.gg)),e.uf=!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.Eh(d);}for(d=0;d<e.S.length;d++){null==e.S[d]&&(e.S[d]=[],e.S[d].loaded=!1);}e.ya&&e.ya.xc&&e.ya.xc(e.S);0<e.S.length&&(e.bb=e.S[0].twofold,e.bb&&(e.Ya=1));}h.resolve();}}):h.resolve();h.then(function(){var c={},g=e.file;d&&d.Ek&&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.xl()&&(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.La=c;e.La.getPageLabels().then(function(c){jQuery(e).trigger("labelsLoaded",{Zk:c});});e.initialized=!0;e.dimensions=null;e.qb=Array(e.bb?e.S.length:e.La.numPages);e.dimensions=[];(e.xn=e.La.getDestinations()).then(function(c){e.destinations=c;});(e.Mo=e.La.getOutline()).then(function(c){e.outline=c||[];});var g=d&&d.StartAtPage?parseInt(d.StartAtPage):1;e.La.getPage(g).then(function(c){c=c.getViewport(1);var d=e.La.numPages;!e.wa&&e.bb&&(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].na=c.width,e.dimensions[i-1].za=c.height;}e.ni=!0;jQuery(e).trigger("loadingProgress",{P:e.P,progress:1});1==g&&1<d&&window.zine?e.La.getPage(2).then(function(c){c=c.getViewport(1);e.bb=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.bb){e.S=Array(d);for(var g=0;g<e.S.length;g++){e.S[g]={},e.S[g].text=[],e.S[g].pages=d,e.S[g].bb=!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.Eh(g);}}e.fc();}):e.fc();});(null==e.config.jsonfile||null!=e.config.jsonfile&&0==e.config.jsonfile.length||!e.wa)&&e.Vl(e.La);},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={nf:"width",mf:"height",Ee:"text",rb:"d",Fg:"f",lc:"l",Cb:"t",Bd:"w",Ad:"h"};},Ti:function(c,d,e){var g=this,h={};h.url=g.mi(c);g.xl()&&(h.password=g.config.signature+"e0737b87e9be157a2f73ae6ba1352a65");h.rangeChunkSize=FLOWPAPER.RANGE_CHUNK_SIZE;g.Cs=PDFJS.getDocument(h).then(function(h){g.La[c-1]=h;g.initialized=!0;g.dimensions||(g.dimensions=[]);g.La[c-1].getDestinations().then(function(c){g.destinations=c;});g.La[c-1].getPage(1).then(function(h){g.qb[c-1]=h;var f=h.getViewport(g.bb?1:1.5),r=g.dimensions&&g.dimensions[c-1]?g.dimensions[c-1]:[],p=Math.floor(f.width),f=Math.floor(f.height),t=r&&r.width&&!(p>r.width-1&&p<r.width+1),q=r&&r.height&&!(f>r.height-1&&f<r.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.bb&&(c<g.La[c-1].numPages||0!=g.La[c-1].numPages%2)?(g.dimensions[c-1].width=g.dimensions[c-1].width/2,g.dimensions[c-1].na=p/2):g.dimensions[c-1].na=p;r.width&&!ka(g.dimensions[c-1].width,r.width-1,r.width+1)&&e&&!g.bb&&(e.dimensions.na=p,e.dimensions.za=f,e.Pa());if(t||!g.dimensions[c-1].na){g.dimensions[c-1].na=p;}if(q||!g.dimensions[c-1].za){g.dimensions[c-1].za=f;}g.dimensions[c-1].height=f;1<c&&g.bb&&(c<g.La[c-1].numPages||0!=g.La[c-1].numPages%2)&&(g.dimensions[c-1].na=g.dimensions[c-1].na/2);null!=g.Aa[c-1]&&g.Aa.length>c&&(g.dimensions[c-1].Uc=g.Aa[c].Uc,g.dimensions[c-1].Tc=g.Aa[c].Tc,g.dimensions[c-1].nb=g.Aa[c].nb,g.dimensions[c-1].hd=g.Aa[c].hd);g.Cg[c-1+" "+h.ref.gen+" R"]=c-1;g.ni=!0;g.Qe=-1;d&&d();});g.Qe=-1;},function(c){O("Cannot load PDF file ("+c+")","onDocumentLoadedError",g.P);jQuery(g).trigger("loadingProgress",{P:g.P,progress:"Error"});g.Qe=-1;});},Ve:function(c){var d=this;if("lz"==d.config.JSONDataType){if("undefined"===typeof Worker||eb.browser.msie&&11>eb.browser.version){ta(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.Vb||(d.Vb={});d.Vb[c.url]=c;d.gf||(d.gf=new Worker(("undefined"!=d.jsDirectory&&null!=d.jsDirectory?d.jsDirectory:"js/")+"flowpaper.worker.js"),d.gf.addEventListener("message",function(c){d.Vb[c.data.url]&&("undefined"!==typeof Response?(new Response(c.data.JSON)).json().then(function(e){d.Vb[c.data.url].success(e);d.Vb[c.data.url]=null;}):(d.Vb[c.data.url].success(JSON.parse(c.data.JSON)),d.Vb[c.data.url]=null));},!1));d.gf.postMessage(c.url);}}else{return jQuery.ajax(c);}},Af:function(c){return this.Pd.replace("{page}",c);},vi: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;},xl:function(){return null!=this.config.signature&&0<this.config.signature.length;},mi:function(c){this.config.PageIndexAdjustment&&(c+=this.config.PageIndexAdjustment);this.bb&&1<c&&(c=this.vi(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,la(c,parseInt(d.substr(d.indexOf(",")+1,d.indexOf("]")-2))));}},Ff:function(c){var d=null!=FLOWPAPER.CHUNK_SIZE?FLOWPAPER.CHUNK_SIZE:10;return 0===d?c:c+(d-c%d);},tc:function(c,d,e,g,h){var f=this;f.od==f.Ff(c)?(window.clearTimeout(h.yo),h.yo=setTimeout(function(){h.dimensions.loaded||f.tc(c,d,e,g,h);},100)):(f.od=f.Ff(c),f.Ve({url:f.Af(f.od),dataType:f.config.JSONDataType,async:d,success:function(c){c.e&&(c=CryptoJS.Je.decrypt(c.e,CryptoJS.qc.Ie.parse(eb.Sg?P():eb.fe.innerHTML)),c=jQuery.parseJSON(c.toString(CryptoJS.qc.gg)),f.uf=!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.Co(g);f.Eh(g,h);}f.ya.xc&&f.ya.xc(f.S);jQuery(f).trigger("onTextDataUpdated");null!=e&&e();}f.od=null;},error:function(c){O("Error loading JSON file ("+c.statusText+"). Please check your configuration.","onDocumentLoadedError",f.P);f.od=null;}}));},Eh:function(c){this.Aa||(this.Aa=[]);this.Aa[c]||(this.Aa[c]=[]);this.Aa[c].Uc=this.S[c][this.JSONPageDataFormat.nf];this.Aa[c].Tc=this.S[c][this.JSONPageDataFormat.mf];this.Aa[c].nb=this.Aa[c].Uc;this.Aa[c].hd=this.Aa[c].Tc;c=this.Aa[c];for(var d=0;d<this.getNumPages();d++){null==this.Aa[d]&&(this.Aa[d]=[],this.Aa[d].Uc=c.Uc,this.Aa[d].Tc=c.Tc,this.Aa[d].nb=c.nb,this.Aa[d].hd=c.hd);}},getDimensions:function(){var c=this;if(null==c.dimensions||c.ni||null!=c.dimensions&&0==c.dimensions.length){null==c.dimensions&&(c.dimensions=[]);var d=c.La.numPages;!c.wa&&c.bb&&(d=c.S.length);if(c.wa){for(var e=0;e<c.getNumPages();e++){null!=c.dimensions[e]||null!=c.dimensions[e]&&!c.dimensions[e].loaded?(null==c.pc&&(c.pc=c.dimensions[e]),c.dimensions[e].nb||null==c.Aa[e]||(c.dimensions[e].nb=c.Aa[e].nb,c.dimensions[e].hd=c.Aa[e].hd)):null!=c.pc&&(c.dimensions[e]=[],c.dimensions[e].page=e,c.dimensions[e].loaded=!1,c.dimensions[e].width=c.pc.width,c.dimensions[e].height=c.pc.height,c.dimensions[e].na=c.pc.na,c.dimensions[e].za=c.pc.za,null!=c.Aa[e]&&(c.dimensions[e].width=c.Aa[e].Uc,c.dimensions[e].height=c.Aa[e].Tc,c.dimensions[e].na=c.Aa[e].nb,c.dimensions[e].za=c.Aa[e].hd),null!=c.Aa[e-1]&&(c.dimensions[e-1].Uc=c.Aa[e].Uc,c.dimensions[e-1].Tc=c.Aa[e].Tc,c.dimensions[e-1].nb=c.Aa[e].nb,c.dimensions[e-1].hd=c.Aa[e].hd),e==c.getNumPages()-1&&(c.dimensions[e].Uc=c.Aa[e].Uc,c.dimensions[e].Tc=c.Aa[e].Tc,c.dimensions[e].nb=c.Aa[e].nb,c.dimensions[e].hd=c.Aa[e].hd),c.Cg[e+" 0 R"]=e);}}else{c.Fk=[];for(e=1;e<=d;e++){var g=e;c.bb&&(g=c.vi(e));c.Fk.push(c.La.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].na=e.width;c.dimensions[d.pageIndex].za=e.height;e=d.ref;c.Cg[e.num+" "+e.gen+" R"]=d.pageIndex;}));}Promise.all&&Promise.all(c.Fk.concat(c.xn).concat(c.Mo)).then(function(){jQuery(c).trigger("outlineAdded",{P:c.P});});}c.ni=!1;}return c.dimensions;},Co:function(c){if(this.dimensions[c]){this.dimensions[c].page=c;this.dimensions[c].loaded=!0;this.qa[c]=[];this.qa[c]="";for(var d=null,e=0,g;g=this.S[c][this.JSONPageDataFormat.Ee][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.qa[c]+=" "),d&&Math.round(d[0])!=Math.round(g[0])&&!this.qa[c].endsWith(" ")&&(this.qa[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.qa[c]+=d),this.config.RTLMode&&(this.qa[c]+=Q(d))):!isNaN(g[this.JSONPageDataFormat.lc].toString())&&0<=Number(g[this.JSONPageDataFormat.lc].toString())&&!isNaN(g[this.JSONPageDataFormat.Cb].toString())&&0<=Number(g[this.JSONPageDataFormat.Cb].toString())&&!isNaN(g[this.JSONPageDataFormat.Bd].toString())&&0<Number(g[this.JSONPageDataFormat.Bd].toString())&&!isNaN(g[this.JSONPageDataFormat.Ad].toString())&&0<Number(g[this.JSONPageDataFormat.Ad].toString())&&(d&&Math.round(d[this.JSONPageDataFormat.Cb])!=Math.round(g[this.JSONPageDataFormat.Cb])&&Math.round(d[this.JSONPageDataFormat.lc])==Math.round(prev[this.JSONPageDataFormat.lc])&&(this.qa[c]+=" "),d&&Math.round(d[this.JSONPageDataFormat.Cb])!=Math.round(g[this.JSONPageDataFormat.Cb])&&!this.qa[c].endsWith(" ")&&(this.qa[c]+=" "),d=/\\u([\d\w]{4})/gi,d=(g[this.JSONPageDataFormat.rb]+"").replace(d,function(c,d){return String.fromCharCode(parseInt(d,16));}),this.config.RTLMode||(this.qa[c]+=d),this.config.RTLMode&&(this.qa[c]+=Q(d))),d=g;}this.qa[c]=this.qa[c].toLowerCase();}},getNumPages:function(){return this.wa?this.S.length:this.bb?this.S.length:this.La?this.La.numPages:this.S.length;},getPage:function(c){this.La.getPage(c).then(function(c){return c;});return null;},Rc: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.U=new Image;jQuery(c.U).bind("load",function(){var e=Math.round(c.U.width/c.U.height*100),g=Math.round(c.dimensions.width/c.dimensions.height*100);if("SinglePage"==c.H){var e=d.Aa[c.pages.R],h=Math.round(e.Uc/e.Tc*100),g=Math.round(c.dimensions.na/c.dimensions.za*100);h!=g&&(c.dimensions.na=e.Uc,c.dimensions.za=e.Tc,c.Pa(),c.Aj=-1,d.Ea(c,!0,null));}else{e!=g&&(c.dimensions.na=c.U.width,c.dimensions.za=c.U.height,c.Pa(),c.Aj=-1,d.Ea(c,!0,null));}});jQuery(c.U).attr("src",d.ga(c.pageNumber+1));},yl: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+")");},Nd:function(c){this.sb=c.sb=this.wa&&this.config.MixedMode;"Portrait"!=c.H&&"SinglePage"!=c.H||jQuery(c.V).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.Ja(c)&&this.vb(c).Nd(this,c);"ThumbView"==c.H&&jQuery(c.V).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.V+"_1").append("<img id='"+c.$b+"_1' src='"+c.F.ge+"' style='position:absolute;left:"+(c.xa()-30)+"px;top:"+c.Ha()/2+"px;' />"),jQuery(c.V+"_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.V+"_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.V+"_2").append("<img id='"+c.$b+"_2' src='"+c.F.ge+"' style='position:absolute;left:"+(c.xa()/2-10)+"px;top:"+c.Ha()/2+"px;' />"),jQuery(c.V+"_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.V+"_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.bh.replace("[pageNumber]",e);}if(2==c){return this.dh.replace("[pageNumber]",e);}},Wn: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.ri.replace("[pageNumber]",d.pageNumber);}if(2==c){return this.si.replace("[pageNumber]",d.pageNumber);}},Ob:function(c,d,e){var g=this;g.ui=!0;if(c.H!=g.Ja(c)||g.vb(c).xp(g,c,d,e)){if("Portrait"!=c.H&&"TwoPage"!=c.H&&"BookView"!=c.H||null!=c.context||c.uc||(c.Sc(),c.uc=!0),1==g.ap&&1<c.scale&&c.sb&&g.Ga(c,-1),-1<g.Da(c)||g.wa&&null!=g.Vf){window.clearTimeout(c.kc),c.kc=setTimeout(function(){setTimeout(function(){g.Ob(c,d,e);});},50);}else{g.al=c;g.ap=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.sk=c,c.Kb();}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.sk=c,jQuery(c.V+"_2").removeClass("flowpaper_hidden"),jQuery(c.V+"_2").removeClass("flowpaper_load_on_demand"),c.Kb();}else{return;}}}else{"SinglePage"==c.H?g.Ga(c,c.pages.R):(g.Ga(c,c.pageNumber),g.sk=c);}g.sj(c);if((c.sb||g.wa)&&!c.dimensions.loaded){var h=c.pageNumber+1;"SinglePage"==c.H&&(h=g.Da(c)+1);g.tc(h,!0,function(){c.dimensions.loaded=!1;g.Ec(c);},!0,c);}var h=!1,f=c.Bg;if("Portrait"==c.H||"SinglePage"==c.H||"TwoPage"==c.H||"BookView"==c.H||c.H==g.Ja(c)&&g.vb(c).cq(g,c)){var h=!0,k=c.Yb(),l=c.xa(),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.Ja(c)||"SinglePage"==c.H?jQuery(c.va).append(f):"TwoPage"!=c.H&&"BookView"!=c.H||jQuery(c.va+"_"+(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.zb).css({"z-index":11,"margin-left":k}),jQuery(c.zb).transition({rotate:c.rotation,translate:"-"+k+"px, 0px"},0);}}if(c.sb&&c.scale<=g.vh(c)&&!c.oi){-1<g.Da(c)&&window.clearTimeout(c.kc),jQuery(c.V).removeClass("flowpaper_load_on_demand"),g.wa&&c.F.initialized&&!c.nn?g.hi.push(function(){var d=new XMLHttpRequest;d.open("GET",g.mi(c.pageNumber+1),!0);d.overrideMimeType("text/plain; charset=x-user-defined");d.addEventListener("load",function(){g.Hd();});d.addEventListener("error",function(){g.Hd();});d.send(null);c.nn=!0;}):g.Vj&&null==g.qb[g.Da(c)]&&(k=g.Da(c)+1,g.La&&g.La.getPage&&g.La.getPage(k).then(function(d){g.qb[g.Da(c)]=d;})),c.H==g.Ja(c)?g.vb(c).Ob(g,c,d,e):(g.Rc(c),g.We(c,e)),c.pa=!0;}else{if(c.sb&&c.scale>g.vh(c)&&!c.oi){c.H!=g.Ja(c)&&g.Rc(c);}else{if(!c.sb&&c.Lc&&c.H==g.Ja(c)&&1==c.scale&&!g.$g){if(!c.jd&&100!=c.fa.width){c.jd=c.fa.toDataURL(),k=jQuery("#"+g.Ca(1,c)),k.css("background-image").length<c.jd.length+5&&k.css("background-image","url("+c.jd+")"),k[0].width=100;}else{if(c.jd&&!g.wa&&"none"!=jQuery("#"+g.Ca(1,c)).css("background-image")){g.Ga(c,-1);c.pa=!0;return;}}g.ql(c);}}null!=g.qb[g.Da(c)]||g.wa||(k=g.Da(c)+1,g.bb&&(k=g.vi(k)),g.La&&g.La.getPage&&g.La.getPage(k).then(function(h){g.qb[g.Da(c)]=h;window.clearTimeout(c.kc);g.Ga(c,-1);g.Ob(c,d,e);}));if(c.fa){if(100==c.fa.width||1!=c.scale||c.H!=g.Ja(c)||c.Bl){if(k=!0,null==g.qb[g.Da(c)]&&g.wa&&(c.H==g.Ja(c)&&(k=g.vb(c).wp(g,c)),null==g.La[g.Da(c)]&&-1==g.Qe&&k&&null==g.Vf&&(g.Qe=g.Da(c)+1,g.Ti(g.Qe,function(){window.clearTimeout(c.kc);g.Ga(c,-1);g.Ob(c,d,e);},c))),null!=g.qb[g.Da(c)]||!k){if(c.H==g.Ja(c)?g.vb(c).Ob(g,c,d,e):(c.fa.width=c.xa(),c.fa.height=c.Ha()),g.bb&&0<c.Gb.indexOf("cropCanvas")&&(c.fa.width=2*c.fa.width),null!=g.qb[g.Da(c)]||!k){if(g.ui){k=c.fa.height/g.getDimensions()[c.pageNumber].height;c.H!=g.Ja(c)&&(k*=g.Ya);g.Yp=k;1.5>k&&(k=1.5);g.Wr=k;var p=g.qb[g.Da(c)].getViewport(k);g.bb||(c.fa.width=p.width,c.fa.height=p.height);var t=c.Zo={canvasContext:c.context,viewport:p,pageNumber:c.pageNumber,Hh:h&&!g.wa?new va:null};g.qb[g.Da(c)].objs.geometryTextList=[];window.requestAnim(function(){c.fa.style.display="none";c.fa.redraw=c.fa.offsetHeight;c.fa.style.display="";g.Vf=g.qb[g.Da(c)].render(t);g.Vf.onContinue=function(c){c();};g.Vf.promise.then(function(){g.Vf=null;if(null!=g.qb[g.Da(c)]){if(g.wa||c.sb&&c.scale<=g.vh(c)||!c.fa){g.wa||g.Ol(g.qb[g.Da(c)],c,p,g.wa),g.We(c,e);}else{var d=c.fa.height/g.getDimensions()[c.pageNumber].height,h=g.qb[g.Da(c)].objs.geometryTextList;if(h){for(var f=0;f<h.length;f++){h[f].lp!=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].lp=d);}"SinglePage"==c.H||"TwoPage"==c.H||"BookView"==c.H?g.ya.Il(h,g.Da(c),g.getNumPages()):g.ya.Il(h,c.pageNumber,g.getNumPages());}g.Ol(g.qb[g.Da(c)],c,p,g.wa);g.We(c,e);g.Ea(c,!0,e);}}else{g.We(c,e),M(c.pageNumber+" is missing its pdf page ("+g.Da(c)+")");}},function(c){O(c.toString(),"onDocumentLoadedError",g.P);g.Vf=null;});},50);}else{g.Ga(c,-1);}jQuery(c.V).removeClass("flowpaper_load_on_demand");}}}else{jQuery("#"+g.Ca(1,c)).yd(),jQuery("#"+g.Ca(2,c)).rc(),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.kc);}}}}},ql: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.Ja(c)&&!c.sb&&c.Lc&&d&&e&&(!d.cd||!e.cd)&&!this.$g){var g=e.jd,d=d.jd;g&&d&&!c.cd&&e.Lc(g,d);}},vh:function(){return 1.1;},Da:function(c){return this.wa||PDFJS.disableWorker||null==c?this.Re:c.Re;},Ga:function(c,d){(!this.wa||c&&c.sb&&1==c.scale)&&c&&(c.Re=d);this.Re=d;},sj:function(c){"Portrait"==c.H||"SinglePage"==c.H?jQuery(this.Wn(1,c)).is(":visible")?(c.Gb=this.Ca(2,c),c.Nf=this.Ca(1,c)):(c.Gb=this.Ca(1,c),c.Nf=this.Ca(2,c)):c.H==this.Ja(c)?this.vb(c).sj(this,c):(c.Gb=this.Ca(1,c),c.Nf=null);this.bb&&0<c.pageNumber&&0==c.pageNumber%2?(c.fa=document.createElement("canvas"),c.fa.width=c.fa.height=100,c.fa.id=c.Gb+"_cropCanvas",c.Gb=c.Gb+"_cropCanvas"):c.fa=document.getElementById(c.Gb);null!=c.ko&&(c.ko=document.getElementById(c.Nf));c.fa&&c.fa.getContext&&(c.context=c.fa.getContext("2d"),c.context.dg=c.context.mozImageSmoothingEnabled=c.context.imageSmoothingEnabled=!1);},un:function(c,d,e,g){c=g.convertToViewportRectangle(d.rect);c=PDFJS.Util.normalizeRect(c);d=e.Yb();g=document.createElement("a");var h=e.H==this.Ja(e)?1:this.Ya;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;},Ol:function(c,d,e,g){var h=this;if(1==d.scale||d.H!=h.Ja(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.un("a",l,d,c.getViewport(h.Yp),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.Kc});}),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.va).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.Cg[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.va).append(m));}}});}},We:function(c,d){this.Ea(c,!0,d);jQuery("#"+c.Gb).yd();this.Qk(c);"Portrait"!=c.H&&"SinglePage"!=c.H||jQuery(c.Nb).remove();c.H==this.Ja(c)&&this.vb(c).We(this,c,d);if(c.Gb&&0<c.Gb.indexOf("cropCanvas")){var e=c.fa;c.Gb=c.Gb.substr(0,c.Gb.length-11);c.fa=jQuery("#"+c.Gb).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).yd();}c.sb||!c.Lc||c.cd||!c.fa||this.$g||(c.jd=c.fa.toDataURL(),this.ql(c));if(c.jd&&1==c.scale&&!this.$g){var g=jQuery("#"+this.Ca(1,c));requestAnim(function(){g.css("background-image").length<c.jd.length+5&&g.css("background-image","url("+c.jd+")");g[0].width=100;});}if("TwoPage"==c.H||"BookView"==c.H){0==c.pageNumber&&(jQuery(c.oa).removeClass("flowpaper_hidden"),jQuery(c.V+"_1").removeClass("flowpaper_hidden")),1==c.pageNumber&&jQuery(c.oa).removeClass("flowpaper_hidden");}c.pa||jQuery("#"+this.P).trigger("onPageLoaded",c.pageNumber+1);c.pa=!0;c.Bl=!1;c.Mr=!1;this.Kf||(this.Kf=!0,c.F.zh());null!=d&&d();this.Hd();},Hd:function(){0<this.hi.length&&-1==this.Da()&&this.al.pa&&!this.al.xb&&this.hi.shift()();},Qk:function(c){"TwoPage"==c.H||"BookView"==c.H||c.H==this.Ja(c)&&!eb.browser.safari||jQuery("#"+c.Nf).rc();this.Ga(c,-1);},ga:function(c,d){this.config.RTLMode&&this.S&&this.S.length&&(c=this.S.length-c+1);this.uf&&(c=CryptoJS.Je.encrypt(c.toString(),CryptoJS.qc.Ie.parse(eb.Sg?P():eb.fe.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;}},unload:function(c){jQuery(".flowpaper_pageword_"+this.P+"_page_"+c.pageNumber+":not(.flowpaper_selected_searchmatch, .flowpaper_annotation_"+this.P+")").remove();c.H!=this.Ja(c)&&this.yl(c);c.sb&&(jQuery(c.fa).css("background-image","url("+this.ea+")"),c.U=null);null!=c.context&&null!=c.fa&&100!=c.fa.width&&(this.context=this.fa=c.Zo=null,c.gj&&c.gj(),jQuery(".flowpaper_annotation_"+this.P+"_page_"+c.pageNumber).remove());this.wa&&(this.qb[c.pageNumber]&&this.qb[c.pageNumber].cleanup(),this.La[c.pageNumber]=null,this.qb[c.pageNumber]=null);c.Jg&&c.Jg();},Vl:function(c){var d=this;d.La&&d.La.getPage(d.xh).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.qa[d.xh-1]=h.toLowerCase();d.xh+1<d.getNumPages()+1&&(d.xh++,d.Vl(c));});});},Ec:function(c,d,e,g){this.ya.Ec(c,d,e,g);},Dc:function(c,d,e,g){this.ya.Dc(c,d,e,g);},Ke:function(c,d,e,g){this.ya.Ke(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.wa;if(c.pa||d||g){c.Aj!=c.scale&&(jQuery(".flowpaper_pageword_"+this.P+"_page_"+c.pageNumber).remove(),c.Aj=c.scale),d=null!=this.ag?this.ag:e,this.ag=null,this.ya&&this.ya.Ea&&this.ya.Ea(c,d);}else{if(null!=e){if(null!=this.ag){var h=this.ag;this.ag=function(){h();e();};}else{this.ag=e;}}}}};return f;}();function va(){this.beginLayout=function(){this.textDivs=[];this.Gh=[];};this.endLayout=function(){};}var ua=window.TextOverlay=function(){function f(c,d,e,g){this.P=c;this.JSONPageDataFormat=e;this.S=[];this.Oa=null;this.Ra=[];this.Fa=this.bq=d;this.tb=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.Ra;this.Ra=null;delete this.state;this.state=null;delete this.ea;this.ea=null;delete this.tb;this.tb=null;},kp: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].Ra=this.Ra,window["wordPageList_"+this.P]=null);this.S=[];this.Oa=null;this.Ra=[];this.Fa=this.bq;},Ja:function(c){return c.F.I?c.F.I.W:"";},vb:function(c){return c.F.I.Vp;},bn:function(c){return c.F.document.AutoDetectLinks;},xc:function(c){this.S=c;null==this.Oa&&(this.Oa=Array(c.length));window["wordPageList_"+this.P]=this.Ra;},Il:function(c,d,e){null==this.Oa&&(this.Oa=Array(e));this.S[d]=[];this.S[d].text=c;window["wordPageList_"+this.P]=this.Ra;},Ec:function(c,d,e,g){var h=c.pageNumber,f=!1,k=!1;if(!this.Oa){if(c.sb&&(this.Fa=!0),this.state[this.Fa]){if(this.S=this.state[this.Fa].S,this.Oa=this.state[this.Fa].Oa,this.Ra=this.state[this.Fa].Ra,window["wordPageList_"+this.P]=this.Ra,!this.Oa){return;}}else{return;}}if(window.annotations||!eb.touchdevice||g){if(window.annotations||c.F.mc||g||c.F.Uk||(f=!0),k=null!=this.vd&&null!=this.vd[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.Va||!d;c.H==this.Ja(c)&&(isvisble=this.vb(c).Jc(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.na,l=this.tb?c.xa()/l:1;if(d&&0==g){var m=g="",p=0,t=h;c.F.config.document.RTLMode&&(t=c.pages.getTotalPages()-h-1);if(null==this.Oa[t]||!this.tb){if(null==this.S[t]){return;}this.Oa[t]=this.S[t][this.JSONPageDataFormat.Ee];}if(null!=this.Oa[t]){c.sb&&(this.Fa=!0);var q=new WordPage(this.P,h),h=c.Yb(),n=[],u=c.Ic(),v=c.Ef(),x=!1,z=-1,w=-1,D=0,C=-1,H=-1,A=!1;this.Ra[t]=q;c.H==this.Ja(c)&&(l=this.vb(c).Sn(this,c,l));c.ls=l;for(var G=0,B;B=this.Oa[t][G++];){var F=G-1,y=this.Fa?B[5]:B[this.JSONPageDataFormat.rb],E=G,I=G+1,K=G<this.Oa[t].length?this.Oa[t][G]:null,N=G+1<this.Oa[t].length?this.Oa[t][G+1]:null,x=K?this.Fa?K[5]:K[this.JSONPageDataFormat.rb]:"",L=N?this.Fa?N[5]:N[this.JSONPageDataFormat.rb]:"";" "==x&&(E=G+1,I=G+2,x=(K=E<this.Oa[t].length?this.Oa[t][E]:null)?this.Fa?K[5]:K[this.JSONPageDataFormat.rb]:"",L=(N=I<this.Oa[t].length?this.Oa[t][I]:null)?this.Fa?N[5]:N[this.JSONPageDataFormat.rb]:"");K=N=null;if(null==y){M("word not found in node");e&&e();return;}0==y.length&&(y=" ");A=null;if(-1==y.indexOf("actionGoToR")&&-1==y.indexOf("actionGoTo")&&-1==y.indexOf("actionURI")&&this.bn(c)){if(A=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("+A[0]+"):"+A[0],this.Oa[t][F][this.Fa?5:this.JSONPageDataFormat.rb]=y;}!A&&-1<y.indexOf("@")&&(A=y.trim().match(/([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+)/gi),!A&&(A=(y.trim()+x.trim()).match(/([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+)/gi))&&(x="actionURI(mailto:"+A[0]+"):"+A[0],this.Oa[t][E][this.Fa?5:this.JSONPageDataFormat.rb]=x),!A&&(A=(y.trim()+x.trim()+L.trim()).match(/([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+)/gi))&&(x="actionURI(mailto:"+A[0]+"):"+A[0],this.Oa[t][E][this.Fa?5:this.JSONPageDataFormat.rb]=x,L="actionURI(mailto:"+A[0]+"):"+A[0],this.Oa[t][I][this.Fa?5:this.JSONPageDataFormat.rb]=L),A&&(y=A[0],y.endsWith(".")&&(y=y.substr(0,y.length-1)),y="actionURI(mailto:"+y+"):"+y,this.Oa[t][F][this.Fa?5:this.JSONPageDataFormat.rb]=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")||A){if(0<=y.indexOf("actionURI(")&&0<y.indexOf("):")?(K=y.substring(y.indexOf("actionURI(")+10,y.lastIndexOf("):")),y=y.substring(y.indexOf("):")+2)):(K=y.substring(y.indexOf("actionURI")+10),y=y.substring(y.indexOf("actionURI")+10)),-1==K.indexOf("http")&&-1==K.indexOf("mailto")&&0!=K.indexOf("/")){K="http://"+K;}else{if(!A){for(F=G,E=this.Fa?B[5]:B[this.JSONPageDataFormat.rb],I=1;2>=I;I++){for(F=G;F<this.Oa[t].length&&0<=this.Oa[t][F].toString().indexOf("actionURI")&&-1==this.Oa[t][F].toString().indexOf("actionURI(");){x=this.Oa[t][F],A=this.Fa?x[5]:x[this.JSONPageDataFormat.rb],1==I?0<=A.indexOf("actionURI")&&11<A.length&&-1==A.indexOf("http://")&&-1==A.indexOf("https://")&&-1==A.indexOf("mailto")&&(E+=A.substring(A.indexOf("actionURI")+10)):this.Fa?x[5]=E:x[this.JSONPageDataFormat.rb],F++;}2==I&&-1==E.indexOf("actionURI(")&&(y=E,K=y.substring(y.indexOf("actionURI")+10),y=y.substring(y.indexOf("actionURI")+10));}}}}}}if(N||K||!f||k){E=(this.Fa?B[0]:B[this.JSONPageDataFormat.Cb])*l+0;I=(this.Fa?B[1]:B[this.JSONPageDataFormat.lc])*l+0;F=(this.Fa?B[2]:B[this.JSONPageDataFormat.Bd])*l;B=(this.Fa?B[3]:B[this.JSONPageDataFormat.Ad])*l;q.tp(p,y);x=-1!=z&&z!=E;A=G==this.Oa[t].length;I+F>u&&(F=u-I);E+B>v&&(B=v-E);n[p]={};n[p].left=I;n[p].right=I+F;n[p].top=E;n[p].bottom=E+B;n[p].el="#"+this.P+"page_"+t+"_word_"+p;n[p].i=p;n[p].nl=N;n[p].qm=K;g+="<span id='"+this.P+"page_"+t+"_word_"+p+"' class='flowpaper_pageword flowpaper_pageword_"+this.P+"_page_"+t+" flowpaper_pageword_"+this.P+(null!=N||null!=K?" pdfPageLink_"+c.pageNumber:"")+"' style='left:"+I+"px;top:"+E+"px;width:"+F+"px;height:"+B+"px;margin-left:0px;"+(n[p].nl||n[p].qm?"cursor:hand;":"")+";"+(eb.browser.msie?"background-image:url("+this.ea+");color:transparent;":"")+"'>"+(c.F.Uk?y:"")+"</span>";if(null!=N||null!=K){L=document.createElement("a");L.style.position="absolute";L.style.left=Math.floor(I)+h+"px";L.style.top=Math.floor(E)+"px";L.style.width=Math.ceil(F)+"px";L.style.height=Math.ceil(B)+"px";L.style["margin-left"]=h;L.style.cursor="pointer";L.setAttribute("data-href",null!=K?K:"");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_"+t+" gotoPage_"+N+" flowpaper_pageword_"+this.P;eb.platform.touchonlydevice&&(L.style.background=c.F.linkColor,L.style.opacity=c.F.Kc);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!=K){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.Kc});}),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.V+"_1_textoverlay").append(L),1==c.pageNumber&&jQuery(c.V+"_2_textoverlay").append(L)):jQuery(c.va).append(L);}eb.platform.touchdevice&&"Portrait"==c.H&&(x||A?(A&&(D+=F,m=m+"<div style='float:left;width:"+F+"px'>"+(" "==y?" ":y)+"</div>"),m="<div id='"+this.P+"page_"+t+"_word_"+p+"_wordspan' class='flowpaper_pageword flowpaper_pageword_"+this.P+"_page_"+t+" flowpaper_pageword_"+this.P+"' style='color:transparent;left:"+C+"px;top:"+z+"px;width:"+D+"px;height:"+w+"px;margin-left:"+H+"px;font-size:"+w+"px"+(n[p].nl||n[p].qm?"cursor:hand;":"")+"'>"+m+"</div>",jQuery(c.aj).append(m),z=E,w=B,D=F,C=I,H=h,m="<div style='background-colorfloat:left;width:"+F+"px'>"+(" "==y?" ":y)+"</div>"):(-1==C&&(C=I),-1==H&&(H=h),-1==z&&(z=E),-1==w&&(w=B),m=m+"<div style='float:left;width:"+F+"px'>"+(" "==y?" ":y)+"</div>",D+=F,w=B));}p++;}q.qp(n);"Portrait"==c.H&&(0==jQuery(c.zb).length&&(f=c.Bg,F=c.xa(),B=c.Ha(),h=c.Yb(),f="<div id='"+f+"' class='flowpaper_textLayer' style='width:"+F+"px;height:"+B+"px;margin-left:"+h+"px;'></div>",jQuery(c.va).append(f)),jQuery(c.zb).append(g));"SinglePage"==c.H&&(0==jQuery(c.zb).length&&(f=c.Bg,F=c.xa(),B=c.Ha(),h=c.Yb(),f="<div id='"+f+"' class='flowpaper_textLayer' style='width:"+F+"px;height:"+B+"px;margin-left:"+h+"px;'></div>",jQuery(c.va).append(f)),jQuery(c.zb).append(g));c.H==this.Ja(c)&&(0==jQuery(c.zb).length&&(f=c.ud+"_textLayer",F=c.xa(),B=c.Ha(),h=c.Yb(),f="<div id='"+f+"' class='flowpaper_textLayer' style='width:"+F+"px;height:"+B+"px;margin-left:"+h+"px;'></div>",jQuery(c.va).append(f)),this.vb(c).an(this,c,g));if("TwoPage"==c.H||"BookView"==c.H){0==c.pageNumber&&jQuery(c.V+"_1_textoverlay").append(g),1==c.pageNumber&&jQuery(c.V+"_2_textoverlay").append(g);}d&&jQuery(c).trigger("onAddedTextOverlay",c.pageNumber);if(k){for(k=0;k<this.vd[c.pageNumber].length;k++){this.Um(c,this.vd[c.pageNumber][k].Fp,this.vd[c.pageNumber][k].Wp);}}}}null!=e&&e();}}else{e&&e();}},Dc: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.Va||!e)&&c.F.Ta-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.Ra[k]&&0!=l){h=f.Ra[k].Kh;for(var l="",m=0,p=0,t=-1,q=-1,n=d.split(" "),u=0,v=0,x=0;x<h.length;x++){var z=(h[x]+"").toLowerCase(),u=u+z.length;u>g&&u-d.length<=g+v&&(v+=d.length);z||jQuery.trim(z)!=d&&jQuery.trim(l+z)!=d||(z=jQuery.trim(z));if(0==d.indexOf(l+z)&&(l+z).length<=d.length&&" "!=l+z){if(l+=z,-1==t&&(t=m,q=m+1),d.length==z.length&&(t=m),l.length==d.length){if(p++,c.F.ze==p){if("Portrait"==c.H||"SinglePage"==c.H){eb.browser.capabilities.Ab?jQuery("#pagesContainer_"+f.P).scrollTo(jQuery(f.Ra[k].Za[t].el),0,{axis:"xy",offset:-30}):jQuery("#pagesContainer_"+f.P).data("jsp").scrollToElement(jQuery(f.Ra[k].Za[t].el),!1);}for(var w=t;w<m+1;w++){c.H==f.Ja(c)?(z=jQuery(f.Ra[k].Za[w].el).clone(),f.vb(c).ek(f,c,z,d,!0,w==t,w==m)):(jQuery(f.Ra[k].Za[w].el).addClass("flowpaper_selected"),jQuery(f.Ra[k].Za[w].el).addClass("flowpaper_selected_default"),jQuery(f.Ra[k].Za[w].el).addClass("flowpaper_selected_searchmatch"));}}else{l="",t=-1;}}}else{if(0<=(l+z).indexOf(n[0])){-1==t&&(t=m,q=m+1);l+=z;if(1<n.length){for(z=0;z<n.length-1;z++){0<n[z].length&&h.length>m+1+z&&0<=(l+h[m+1+z]).toLowerCase().indexOf(n[z])?(l+=h[m+1+z].toLowerCase(),q=m+1+z+1):(l="",q=t=-1);}}-1==l.indexOf(d)&&(l="",q=t=-1);w=(l.match(new RegExp(d.replace(/[-[\]{}()*+?.,\\^$|#\s]/g,"\\$&"),"g"))||[]).length;if(0<l.length){for(var D=0;D<w;D++){if(-1<l.indexOf(d)&&p++,c.F.ze==p){for(var C=jQuery(f.Ra[k].Za[t].el),H=parseFloat(C.css("left").substring(0,C.css("left").length-2))-(c.H==f.Ja(c)?c.Yb():0),z=C.clone(),A=0,G=0,B=0;t<q;t++){A+=parseFloat(jQuery(f.Ra[k].Za[t].el).css("width").substring(0,C.css("width").length-2));}G=1-(l.length-d.length)/l.length;q=-1;for(t=0;t<D+1;t++){q=l.indexOf(d,q+1),B=q/l.length;}z.addClass("flowpaper_tmpselection");z.attr("id",z.attr("id")+"tmp");z.addClass("flowpaper_selected");z.addClass("flowpaper_selected_searchmatch");z.addClass("flowpaper_selected_default");z.css("width",A*G+"px");z.css("left",H+A*B+"px");if("Portrait"==c.H||"SinglePage"==c.H){jQuery(c.zb).append(z),eb.browser.capabilities.Ab?jQuery("#pagesContainer_"+f.P).scrollTo(z,0,{axis:"xy",offset:-30}):jQuery("#pagesContainer_"+f.P).data("jsp").scrollToElement(z,!1);}c.H==f.Ja(c)&&f.vb(c).ek(f,c,z,d);"BookView"==c.H&&(0==k?jQuery("#dummyPage_0_"+f.P+"_1_textoverlay").append(z):jQuery("#dummyPage_"+(k-1)%2+"_"+f.P+"_"+((k-1)%2+1)+"_textoverlay").append(z));"TwoPage"==c.H&&jQuery("#dummyPage_"+k%2+"_"+f.P+"_"+(k%2+1)+"_textoverlay").append(z);q=t=-1;}else{D==w-1&&(l="",q=t=-1);}}}}else{0<l.length&&(l="",t=-1);}}m++;}}else{jQuery(c).bind("onAddedTextOverlay",function(){f.Dc(c,d,e,g,!0);}),f.Ec(c,e,null,!0);}}},Ke:function(c,d,e){null==this.vd&&(this.vd=Array(this.Oa.length));null==this.vd[c.pageNumber]&&(this.vd[c.pageNumber]=[]);var g={};g.Fp=d;g.Wp=e;this.vd[c.pageNumber][this.vd[c.pageNumber].length]=g;},Um: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.Ra[g].Kh,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.Ja(c)?jQuery(this.Ra[g].Za[d].el).clone():(jQuery(this.Ra[g].Za[d].el).addClass("flowpaper_selected"),jQuery(this.Ra[g].Za[d].el).addClass("flowpaper_selected_yellow"),jQuery(this.Ra[g].Za[d].el).addClass("flowpaper_selected_searchmatch"));}},Ea:function(c,d){this.Ec(c,null==d,d);}};return f;}();window.WordPage=function(f,c){this.P=f;this.pageNumber=c;this.Kh=[];this.Za=null;this.tp=function(c,e){this.Kh[c]=e;};this.qp=function(c){this.Za=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.Za.length;g++){this.jo(c,this.Za[g],e)&&(null==h||null!=h&&h.top<this.Za[g].top||null!=h&&h.top<=this.Za[g].top&&null!=h&&h.left<this.Za[g].left)&&(h=this.Za[g],h.pageNumber=this.pageNumber);}return h;};this.il=function(c){for(var e=0;e<this.Za.length;e++){if(this.Za[e]&&this.Za[e].el=="#"+c){return this.Za[e];}}return null;};this.jo=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.Bf=function(c,e){var g=window.a,h=window.b,f=new wa,k,l,m=0,p=-1;if(null==g){return f;}if(g&&h){var t=[],q;g.top>h.top?(k=h,l=g):(k=g,l=h);for(k=k.i;k<=l.i;k++){if(this.Za[k]){var n=jQuery(this.Za[k].el);0!=n.length&&(q=parseInt(n.attr("id").substring(n.attr("id").indexOf("word_")+5)),p=parseInt(n.attr("id").substring(n.attr("id").indexOf("page_")+5,n.attr("id").indexOf("word_")-1))+1,0<=q&&t.push(this.Kh[q]),m++,c&&(n.addClass("flowpaper_selected"),n.addClass(e),"flowpaper_selected_strikeout"!=e||n.data("adjusted")||(q=n.height(),n.css("margin-top",q/2-q/3/1.5),n.height(q/2.3),n.data("adjusted",!0))));}}eb.platform.touchonlydevice||jQuery(".flowpaper_selector").val(t.join("")).select();}else{eb.platform.touchdevice||jQuery("#selector").val("");}f.Gr=m;f.zs=g.left;f.As=g.right;f.Bs=g.top;f.ys=g.bottom;f.vs=g.left;f.ws=g.right;f.xs=g.top;f.us=g.bottom;f.In=null!=t&&0<t.length?t[0]:null;f.Or=null!=t&&0<t.length?t[t.length-1]:f.In;f.Jn=null!=g?g.i:-1;f.Pr=null!=h?h.i:f.Jn;f.text=null!=t?t.join(""):"";f.page=p;f.ts=this;return f;};};function wa(){}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.De=g;this.Vd=this.Yf=null;this.bd=this.ad=-1;this.xe=this.sd=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];},$i:function(){null!=this.ti&&(window.clearTimeout(this.ti),this.ti=null);this.F.I&&this.F.H==this.F.I.W&&this.F.I.kb.$i(this);},Pb:function(){return this.F.I&&this.F.H==this.F.I.W&&this.F.I.kb.Pb(this)||"SinglePage"==this.F.H;},cp:function(){return !(this.F.I&&this.F.I.kb.Pb(this));},Pa: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.Gf()});}this.pages[0]&&(this.pages[0].scale=c);if("Portrait"==this.F.H||"SinglePage"==this.F.H){for(h=this.xg=0;h<this.document.numPages;h++){if(this.Ua(h)){var f=this.pages[h].xa(c);f>this.xg&&(this.xg=f);}}}for(h=0;h<this.document.numPages;h++){this.Ua(h)&&(this.pages[h].scale=c,this.pages[h].Pa());}this.F.I&&this.F.H==this.F.I.W&&this.F.I.kb.Pa(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.Ab?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.Fj=this.L.height()-(eb.platform.touchdevice?0:27),this.F.Ig=c/2-2,this.M(this.J).height(this.F.Fj),this.M("#"+this.container+"_2").css("left",this.M("#"+this.container).width()/2),eb.platform.touchdevice||(this.M(this.J+"_1").width(this.F.Ig),this.M(this.J+"_2").width(this.F.Ig)));if(this.F.I&&this.F.H==this.F.I.W){this.F.I.kb.resize(this,c,d,e);}else{for(this.gd(),c=0;c<this.document.numPages;c++){this.Ua(c)&&this.pages[c].Pa();}}this.Jj=null;null!=this.jScrollPane&&(this.jScrollPane.data("jsp").reinitialise(this.$c),this.jScrollPane.data("jsp").scrollTo(this.ad,this.bd,!1));},re:function(c){var d=this;if(!d.ba){var e=!1;"function"===typeof d.Ji&&d.Dr();jQuery(".flowpaper_pageword").each(function(){jQuery(this).hasClass("flowpaper_selected_default")&&(e=!0);});null!=d.touchwipe&&(d.touchwipe.config.preventDefaultEvents=!1);d.Pb()||(jQuery(".flowpaper_pageword_"+d.P).remove(),setTimeout(function(){"TwoPage"!=d.F.H&&"BookView"!=d.F.H||d.jc();d.Ea();e&&d.getPage(d.F.Ta-1).Dc(d.F.Wd,!1);},500));d.F.I&&d.F.H==d.F.I.W?d.F.I.kb.re(d,c):d.Pa(1);null!=d.jScrollPane?(d.jScrollPane.data("jsp").reinitialise(d.$c),d.jScrollPane.data("jsp").scrollTo(d.ad,d.bd,!1)):"TwoPage"!=d.F.H&&"BookView"!=d.F.H||d.M(d.J).parent().scrollTo({left:d.ad+"px",top:d.bd+"px"},0,{axis:"xy"});}},nd:function(c){var d=this;if(!d.ba){var e=!1;null!=d.touchwipe&&(d.touchwipe.config.preventDefaultEvents=!0);"function"===typeof d.Ji&&d.Er();jQuery(".flowpaper_pageword").each(function(){jQuery(this).hasClass("flowpaper_selected_default")&&(e=!0);});d.Pb()||jQuery(".flowpaper_pageword_"+d.P).remove();d.F.I&&d.F.H==d.F.I.W?d.F.I.kb.nd(d,c):d.Pa(window.FitHeightScale);setTimeout(function(){d.Ea();e&&d.getPage(d.F.Ta-1).Dc(d.F.Wd,!1);},500);d.Ea();null!=d.jScrollPane?(d.jScrollPane.data("jsp").scrollTo(0,0,!1),d.jScrollPane.data("jsp").reinitialise(d.$c)):d.M(d.J).parent().scrollTo({left:0,top:0},0,{axis:"xy"});}},Zi:function(){var c=this;c.Ne();if(c.F.I&&c.F.H==c.F.I.W){c.F.I.kb.Zi(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.Zc&&!window.Eb&&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.na/c.getPage(g).dimensions.za,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.Zc&&!window.Eb&&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.na/c.getPage(g).dimensions.za,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.ad=d.pageX;c.bd=d.pageY;});}c.M(c.J).on("touchstart",function(d){c.ad=d.originalEvent.touches[0].pageX;c.bd=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.hb&&"SinglePage"==c.F.H){for(var d=0;d<c.document.numPages;d++){c.Ua(d)&&c.M(c.pages[d].oa).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.Wc-c.he&&c.ba<c.F.scale&&(c.ba=c.F.scale+c.F.document.ZoomInterval);c.F.ib(c.ba,{og:!0});c.ba=null;});}c.pages[0]&&c.pages[0].Ne();c.M(c.J).addClass("flowpaper_pages_border");c.dj=c.hb<c.ba;c.hb=null;c.Tf=null;c.ba=null;c.yb=null;c.sc=null;}});if(c.F.I&&c.F.H==c.F.I.W){c.F.I.kb.fk(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.nd():c.re(),d.preventDefault();}},null,300);}else{c.F.Zb&&(d=c.M(c.J),d.doubletap(function(d){var g=jQuery(".activeElement").data("hint-pageNumber");window.parent.postMessage("EditPage:"+g,"*");window.clearTimeout(c.Oi);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.Pc(c.pages[0]):c.F.I&&c.F.H==c.F.I.W||(eb.platform.ios&&c.lj(-1*c.M(c.J).scrollTop()),eb.platform.ios?(setTimeout(function(){c.Kg();c.ed();},1000),setTimeout(function(){c.Kg();c.ed();},2000),setTimeout(function(){c.Kg();c.ed();},3000)):c.Kg(),c.ed(),c.Ea(),null!=c.Yf&&(window.clearTimeout(c.Yf),c.Yf=null),c.Yf=setTimeout(function(){c.Pk();window.clearTimeout(c.Yf);c.Yf=null;},100),c.Xr=!0);});this.Pk();},fk:function(){},lj:function(c){for(var d=0;d<this.document.numPages;d++){this.Ua(d)&&this.pages[d].lj(c);}},hm: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.sd=parseFloat(c[0]),this.xe=parseFloat(c[1]),isNaN(this.sd)&&(this.xe=this.sd=0));},mk:function(c,d){this.M(this.J).transition({x:this.sd+(c-this.yb)/this.F.scale,y:this.xe+(d-this.sc)/this.F.scale},0);},Yg:function(c,d){this.F.I&&this.F.I.kb.Yg(this,c,d);},Un:function(c,d){var e=this.L.width();return c/d-this.Cd/e/d*e;},Vn:function(c){var d=this.L.height();return c/this.F.scale-this.Dd/d/this.F.scale*d;},Ne:function(){this.F.I&&this.F.I.kb.Ne(this);},Hi:function(){if(this.F.I){return this.F.I.kb.Hi(this);}},getTotalPages:function(){return this.document.numPages;},li:function(c){var d=this;c.empty();jQuery(d.F.renderer).on("onTextDataUpdated",function(){d.Ea(d);});null!=d.F.Vd||d.F.document.DisableOverflow||d.F.ab||(d.F.Vd=d.L.height(),eb.platform.touchonlydevice?d.F.Ub||d.L.height(d.F.Vd-10):d.L.height(d.F.Vd-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.Ab=!1);var g=jQuery(d.F.K).height()+(window.zine&&"Portrait"==d.F.wb?20:0),h=eb.platform.touchonlydevice?31:26;window.zine&&"Portrait"!=d.F.wb&&(h=eb.platform.touchonlydevice?41:36);var g=d.L.height()+(eb.browser.capabilities.Ab?window.annotations?0:h-g:-5),h=d.L.width()-2,f=1<d.De?"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.rm?"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.Ab?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.rm)&&(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.pi)){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.hb=1,d.Tf=c);null==d.ba&&(d.hb=1,d.he=1+(jQuery(d.pages[0].oa).width()-d.L.width())/d.L.width());var e=c=(d.hb+(c-d.Tf)/jQuery(d.J).width()-d.hb)/d.hb;d.Pb()||(1<e&&(e=1),-0.3>e&&(e=-0.3),0<c&&(c*=0.7));d.Wc=d.he+d.he*c;d.Wc<d.F.document.MinZoomSize&&(d.Wc=d.F.document.MinZoomSize);d.Wc>d.F.document.MaxZoomSize&&(d.Wc=d.F.document.MaxZoomSize);d.Ac=1+(d.Wc-d.he);d.ba=d.pages[0].Gk(jQuery(d.pages[0].oa).width()*d.Ac);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].oa).width()>jQuery(d.pages[0].oa).height()?d.ba<d.F.ih()&&(d.Ac=d.zg,d.ba=d.F.ih()):d.ba<d.F.Ze()&&(d.Ac=d.zg,d.ba=d.F.Ze());d.zg=d.Ac;if(d.Pb()&&0<d.Ac){for(jQuery(".flowpaper_annotation_"+d.P).hide(),c=0;c<d.document.numPages;c++){d.Ua(c)&&jQuery(d.pages[c].oa).transition({transformOrigin:"50% 50%",scale:d.Ac},0,"ease",function(){});}}}}),jQuery(d.J).on("touchstart",function(){}),jQuery(d.J).on("gesturechange",function(c){if(1!=d.Tp&&1!=d.pi){d.F.renderer.mb&&jQuery(".flowpaper_flipview_canvas_highres").hide();null==d.ba&&(d.hb=1,d.he=1+(jQuery(d.pages[0].oa).width()-d.L.width())/d.L.width());var e,g=e=(c.originalEvent.scale-d.hb)/d.hb;d.Pb()||(1<g&&(g=1),-0.3>g&&(g=-0.3),0<e&&(e*=0.7));d.Wc=d.he+d.he*e;d.Wc<d.F.document.MinZoomSize&&(d.Wc=d.F.document.MinZoomSize);d.Wc>d.F.document.MaxZoomSize&&(d.Wc=d.F.document.MaxZoomSize);d.Ac=1+(d.Wc-d.he);d.ba=d.pages[0].Gk(jQuery(d.pages[0].oa).width()*d.Ac);jQuery(d.pages[0].oa).width()>jQuery(d.pages[0].oa).height()?d.ba<d.F.ih()&&(d.Ac=d.zg,d.ba=d.F.ih()):d.ba<d.F.Ze()&&(d.Ac=d.zg,d.ba=d.F.Ze());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.zg=d.Ac;if(d.Pb()&&0<d.Ac){for(jQuery(".flowpaper_annotation_"+d.P).hide(),c=0;c<d.document.numPages;c++){d.Ua(c)&&jQuery(d.pages[c].oa).transition({transformOrigin:"50% 50%",scale:d.Ac},0,"ease",function(){});}}!d.Pb()&&(0.7<=g||-0.3>=g)&&(d.Tp=!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.sa&&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 r=jQuery(f.oa).get(0);if(r){var k=f.xa(),v=f.Ha(),x=1.5<d.F.renderer.Ya?d.F.renderer.Ya:1.5;r.width!=k*x&&(jQuery(r).data("needs-overlay",1),d.F.document.DisableOverflow&&(x=2),r.width=k*x,r.height=v*x,f.Xd(r).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.Ab?(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.De?"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.Fj&&(d.F.Fj=d.L.height()-(eb.platform.touchdevice?0:27),d.F.Ig=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.Ig),d.M(d.J+"_2").width(d.F.Ig));}"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.li(d,c);d.L.trigger("onPagesContainerCreated");jQuery(d).bind("onScaleChanged",d.$i);},create:function(c){var d=this;d.li(c);eb.browser.capabilities.Ab||"ThumbView"==d.F.H||(d.$c={},"TwoPage"!=d.F.H&&"BookView"!=d.F.H)||(d.jScrollPane=d.M(d.J+"_jpane").jScrollPane(d.$c));for(c=0;c<this.document.numPages;c++){d.Ua(c)&&this.addPage(c);}d.Zi();if(!eb.browser.capabilities.Ab){if("Portrait"==d.F.H||"SinglePage"==d.F.H){d.jScrollPane=d.M(this.J).jScrollPane(d.$c);}!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.Ab||"ThumbView"!=d.F.H||(d.jScrollPane=d.M(d.J).jScrollPane(d.$c));1<d.De&&"Portrait"==d.F.H&&setTimeout(function(){d.scrollTo(d.De,!0);d.De=-1;jQuery(d.J).css("visibility","visible");},500);d.De&&"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];}},Ua: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 xa(this.P,c,this,this.L,this.F,this.jh(c));this.pages[c].create(this.M(this.J));jQuery(this.F.L).trigger("onPageCreated",c);},jh: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.Ab&&this.jScrollPane?this.jScrollPane.data("jsp").scrollToElement(this.pages[c-1].M(this.pages[c-1].va),!0,!1):jQuery(this.J).scrollTo&&jQuery(this.J).scrollTo(this.pages[c-1].M(this.pages[c-1].va),0);}this.Ea();},fp:function(){for(var c=0;c<this.getTotalPages();c++){this.Ua(c)&&this.pages[c]&&this.pages[c].kc&&window.clearTimeout(this.pages[c].kc);}},Pk:function(){this.gd();},gd:function(){var c=this;null!=c.Yd&&(window.clearTimeout(c.Yd),c.Yd=null);c.Yd=setTimeout(function(){c.jc();},200);},zj:function(){if(null!=this.jScrollPane){try{this.jScrollPane.data("jsp").reinitialise(this.$c);}catch(c){}}},jc:function(c){var d=this;if(d.F){if(d.F.I&&d.F.H==d.F.I.W){d.F.I.kb.jc(d,c);}else{null!=d.Yd&&(window.clearTimeout(d.Yd),d.Yd=null);c=d.M(this.J).scrollTop();for(var e=0;e<this.document.numPages;e++){if(this.pages[e]&&d.Ua(e)){var g=!d.pages[e].Va;this.pages[e].Jc(c,d.M(this.J).height(),!0)?(g&&d.L.trigger("onVisibilityChanged",e+1),this.pages[e].Va=!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.Gf()),d.M("#"+this.container+"_2").css("left",d.M("#"+d.container).width()/2)),d.initialized||null==d.jScrollPane||(d.jScrollPane.data("jsp").reinitialise(d.$c),d.initialized=!0);}}),this.pages[e].wo(),this.pages[e].Ea()):"TwoPage"!=d.F.H&&"BookView"!=d.F.H&&this.pages[e].unload();}}}}},ed:function(){this.F.H!=this.F.W()?this.F.Hc(this.R+1):this.F.Hc(this.R);},Ea:function(c){c=c?c:this;for(var d=0;d<c.document.numPages;d++){c.Ua(d)&&c.pages[d]&&c.pages[d].Va&&c.pages[d].Ea();}},Kg:function(){for(var c=this.R,d=this.M(this.J).scrollTop(),e=0;e<this.document.numPages;e++){if(this.Ua(e)&&"SinglePage"!=this.F.H){var g=!this.pages[e].Va;if(this.pages[e].Jc(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.Ua(d)&&("TextSelectorCursor"==c?jQuery(this.pages[d].V).addClass("flowpaper_nograb"):jQuery(this.pages[d].V).removeClass("flowpaper_nograb"));}},gotoPage:function(c){this.F.gotoPage(c);},vg:function(c,d){c=parseInt(c);var e=this;e.F.renderer.Gc&&e.F.renderer.Gc(e.pages[0]);jQuery(".flowpaper_pageword").remove();jQuery(".flowpaper_interactiveobject_"+e.P).remove();e.pages[0].unload();e.pages[0].visible=!0;var g=e.M(e.J).scrollTop();e.F.Hc(c);e.L.trigger("onCurrentPageChanged",c);e.pages[0].Jc(g,e.M(this.J).height(),!0)&&(e.L.trigger("onVisibilityChanged",c+1),e.pages[0].load(function(){null!=d&&d();e.gd();null!=e.jScrollPane&&e.jScrollPane.data("jsp").reinitialise(e.$c);}));},wg: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.Hc(c);e.R!=c&&e.L.trigger("onCurrentPageChanged",c);e.pages[0].unload();e.pages[0].load(function(){if("TwoPage"==e.F.H||"BookView"==e.F.H){e.M(e.J).animate({"margin-left":e.Gf()},{duration:250}),e.M("#"+this.container+"_2").css("left",e.M("#"+e.container).width()/2),e.Pa(e.F.scale);}});1<e.F.da?(e.M(e.pages[1].V+"_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].V+"_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].V+"_2").addClass("flowpaper_hidden");0==e.getTotalPages()%2&&"BookView"==e.F.H&&c>=e.getTotalPages()&&e.M(e.pages[1].V+"_2").addClass("flowpaper_hidden");var g=e.M(this.J).scrollTop();e.pages[1].unload();e.pages[1].visible=!0;!e.M(e.pages[1].V+"_2").hasClass("flowpaper_hidden")&&e.pages[1].Jc(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.Gf()},{duration:250});e.M("#"+this.container+"_2").css("left",e.M("#"+e.container).width()/2);e.gd();null!=e.jScrollPane&&e.jScrollPane.data("jsp").reinitialise(e.$c);}));}},rotate:function(c){this.pages[c].rotate();},Gf: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.Ab?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].va),!0,!0);}"SinglePage"==c.F.H&&0<c.F.da-1&&(eb.platform.touchdevice&&1!=this.F.scale?(c.F.Zc=!0,c.M(c.J).removeClass("flowpaper_pages_border"),c.M(c.J).transition({x:1000},350,function(){c.pages[0].unload();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.vg(c.F.da-1,function(){});c.M(c.J).transition({x:0},350,function(){c.F.Zc=!1;window.annotations||c.M(c.J).addClass("flowpaper_pages_border");});})):c.vg(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.Zc=!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].V+"_2").addClass("flowpaper_hidden");setTimeout(function(){c.M(c.J).css("margin-left",-800);c.pages[0].unload();c.pages[1].unload();c.M(c.J).animate({"margin-left":c.Gf()},{duration:350,complete:function(){setTimeout(function(){c.F.Zc=!1;c.wg(c.F.da-2);},500);}});},500);}})):c.wg(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].va).offset().top-c.L.offset().top?d=c.F.da-1:d=c.F.da;eb.browser.capabilities.Ab?this.pages[d]&&c.M(c.J).scrollTo(this.pages[d].M(this.pages[d].va),{axis:"y",duration:500}):c.jScrollPane.data("jsp").scrollToElement(this.pages[c.F.da].M(this.pages[c.F.da].va),!0,!0);}"SinglePage"==c.F.H&&c.F.da<c.getTotalPages()&&(eb.platform.touchdevice&&1!=c.F.scale?(c.F.Zc=!0,c.M(c.J).removeClass("flowpaper_pages_border"),c.M(c.J).transition({x:-1000},350,"ease",function(){c.pages[0].unload();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.vg(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.Zc=!1;});})):c.vg(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.Zc=!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].V+"_2").removeClass("flowpaper_hidden");setTimeout(function(){c.M(c.J).css("margin-left",800);c.pages[0].unload();c.pages[1].unload();c.pages[0].Va=!0;c.pages[1].Va=!0;c.L.trigger("onVisibilityChanged",c.R);c.M(c.J).animate({"margin-left":c.Gf(!0)},{duration:350,complete:function(){setTimeout(function(){c.F.Zc=!1;c.wg(c.F.da+2);},500);}});},500);}})):c.wg(c.F.da+2);}},ef:function(c){this.F.I&&this.F.H==this.F.I.W&&this.F.I.kb.ef(this,c);}};return f;}(),xa=function(){function f(c,d,e,g,h,f){this.L=g;this.F=h;this.pages=e;this.Ma=1000;this.pa=this.Va=!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.ud="pageContainer_"+this.pageNumber+"_"+this.P;this.Bg=this.ud+"_textLayer";this.bh="dummyPageCanvas_"+this.pageNumber+"_"+this.P;this.dh="dummyPageCanvas2_"+this.pageNumber+"_"+this.P;this.ii=this.page+"_canvasOverlay";this.$b="pageLoader_"+this.pageNumber+"_"+this.P;this.ml=this.ud+"_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.V="#"+this.aa;this.oa="#"+this.page;this.va="#"+this.ud;this.zb="#"+this.Bg;this.ri="#"+this.bh;this.si="#"+this.dh;this.Nb="#"+this.$b;this.aj="#"+this.ml;this.ra={bottom:3,top:2,right:0,left:1,Xa:4,back:5};this.Sa=[];this.duration=1.3;this.No=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.oa).removeClass("flowpaper_hidden");},Ne:function(){this.pages.jScrollPane&&(!eb.browser.capabilities.Ab&&this.pages.jScrollPane?"SinglePage"==this.F.H?0>this.M(this.pages.J).width()-this.M(this.va).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.va).parent().scrollTo&&this.M(this.va).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.ud+"' 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.Kj).length){var e=this.Ma*this.scale;jQuery(d.F.Kj).append("<div id='"+d.ml+"' class='flowpaper_page' style='position:relative;height:"+e+"px;width:100%;overflow:hidden;'></div>");}d.Vk();}"SinglePage"==d.F.H&&0==d.pageNumber&&c.append("<div class='flowpaper_page' id='"+d.ud+"' 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.ud+"_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.ud+"_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.ud+"' 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.va).on("mousedown touchstart",function(){d.F.gotoPage(d.pageNumber+1);}));d.F.H==d.W?d.F.I.Bc.create(d,c):(d.F.renderer.Nd(d),d.show(),d.height=d.M(d.va).height(),d.Pl());},Vk:function(){var c=this;if(c.F.Zb){jQuery(c.va).on("mouseover, mousemove",function(){"Portrait"==c.F.H?qa("pageContainer_"+c.pageNumber+"_documentViewer_textLayer",c.pageNumber+1):qa("turn-page-wrapper-"+(c.pageNumber+1),c.pageNumber+1);});}},Tn:function(){if("Portrait"==this.F.H||"SinglePage"==this.F.H){return this.ii;}if("TwoPage"==this.F.H||"BookView"==this.F.H){if(0==this.pageNumber){return this.ii+"_1";}if(1==this.pageNumber){return this.ii+"_2";}}},lj:function(c){this.M(this.aj).css({top:c});},Kb:function(){"Portrait"!=this.F.H&&"SinglePage"!=this.F.H&&this.F.H!=this.W||jQuery("#"+this.$b).remove();if("TwoPage"==this.F.H||"BookView"==this.F.H){0==this.pageNumber&&this.M(this.Nb+"_1").hide(),1==this.pageNumber&&this.M(this.Nb+"_2").hide();}},Sc: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.Nb).length){return;}var c=0<jQuery(this.va).length?jQuery(this.va):this.Oc;c&&c.find&&0!=c.length?0==c.find("#"+this.$b).length&&c.append("<img id='"+this.$b+"' src='"+this.F.ge+"' class='flowpaper_pageLoader' style='position:absolute;left:50%;top:50%;height:8px;margin-left:"+(this.Yb()-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.Nb+"_1").length){this.M(this.Nb+"_1").show();return;}this.M(this.V+"_1").append("<img id='"+this.$b+"_1' src='"+this.F.ge+"' style='position:absolute;left:"+(this.xa()-30)+"px;top:"+this.Ha()/2+"px;' />");this.M(this.Nb+"_1").show();}1==this.pageNumber&&(0<this.M(this.Nb+"_2").length||this.M(this.V+"_2").append("<img id='"+this.$b+"_2' src='"+this.F.ge+"' style='position:absolute;left:"+(this.xa()/2-10)+"px;top:"+this.Ha()/2+"px;' />"),this.M(this.Nb+"_2").show());}}},Pa:function(){var c,d;d=this.xa();c=this.Ha();var e=this.Yb();this.F.document.DisableOverflow&&(c=Math.floor(c),d=Math.floor(d));if("Portrait"==this.F.H||"SinglePage"==this.F.H){this.M(this.va).css({height:c,width:d,"margin-left":e,"margin-top":0}),this.M(this.V).css({height:c,width:d,"margin-left":e}),this.M(this.oa).css({height:c,width:d,"margin-left":e}),this.M(this.ri).css({height:c,width:d}),this.M(this.si).css({height:c,width:d}),this.M(this.aj).css({height:c,width:d}),this.M(this.Nb).css({"margin-left":e}),jQuery(this.zb).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.ug()?this.F.renderer.Gc(this):this.F.renderer.Pc(this)),this.Of(this.scale,e);}if("TwoPage"==this.F.H||"BookView"==this.F.H){this.M(this.V+"_1").css({height:c,width:d}),this.M(this.V+"_2").css({height:c,width:d}),this.M(this.V+"_1_textoverlay").css({height:c,width:d}),this.M(this.V+"_2_textoverlay").css({height:c,width:d}),this.M(this.oa).css({height:c,width:d}),eb.browser.capabilities.Ab||(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.qg()*this.Ma,h=this.xa()/g;null!=this.dimensions.nb&&this.tb&&this.F.renderer.wa&&(h=this.pages.ld/2/g);this.F.H==this.W?1==this.scale&&this.Of(h,e):this.Of(h,e);}this.height=c;this.width=d;},ug:function(){return 1;},Pb:function(){return"SinglePage"==this.F.H;},resize:function(){},qg:function(){return this.dimensions.na/this.dimensions.za;},Ic:function(){return this.F.H==this.W?this.F.I.Bc.Ic(this):this.dimensions.na/this.dimensions.za*this.scale*this.Ma;},Ef:function(){return this.F.H==this.W?this.F.I.Bc.Ef(this):this.Ma*this.scale;},getDimensions:function(){var c=this.oe(),d=this.F.Ic();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.Bc.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";}},oe:function(){return this.dimensions.na/this.dimensions.za;},xa:function(c){return this.F.H==this.W?this.F.I.Bc.xa(this):this.Ma*this.oe()*(c?c:this.scale);},Gi:function(){return this.F.H==this.W?this.F.I.Bc.Gi(this):this.Ma*this.oe()*this.scale;},Gk:function(c){return c/(this.Ma*this.oe());},Ii:function(){return this.F.H==this.W?this.F.I.Bc.Ii(this):this.Ma*this.oe();},Ha:function(){return this.F.H==this.W?this.F.I.Bc.Ha(this):this.Ma*this.scale;},Fi:function(){return this.F.H==this.W?this.F.I.Bc.Fi(this):this.Ma*this.scale;},Yb:function(){var c=this.F.Ic(),d=0;if(this.F.document.DisableOverflow){return 0;}if("Portrait"==this.F.H||"SinglePage"==this.F.H){return this.pages.xg&&this.pages.xg>c&&(c=this.pages.xg),d=(c-this.xa())/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.Bc.Yb(this);}},Jc:function(c,d,e){var g=!1;if("Portrait"==this.F.H||"ThumbView"==this.F.H){if(this.offset=this.M(this.va).offset()){this.pages.Jj||(this.pages.Jj=this.F.N.offset().top);var g=this.offset.top-this.pages.Jj+c,h=this.offset.top+this.height;d=c+d;g=e||eb.platform.touchdevice&&!eb.browser.capabilities.Ab?this.Va=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.Va=0==this.pageNumber);this.F.H==this.W&&(g=this.Va=this.F.I.Bc.Jc(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.Va=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.Va=0==this.pageNumber||1==this.pageNumber;}return g;},wo: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.Pa());"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.Pa());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.Pa(),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.Pa(),jQuery(".flowpaper_pageword_"+this.P).remove(),this.Ea());this.F.renderer.Ob(this,!1);"function"===typeof this.Ji&&this.loadOverlay();}},unload:function(){if(this.pa||"TwoPage"==this.F.H||"BookView"==this.F.H||this.F.H==this.W){delete this.selectors,this.selectors={},jQuery(this.U).unbind(),delete this.U,this.U=null,this.pa=!1,this.F.renderer.unload(this),jQuery(this.Nb).remove(),this.Oj&&(delete this.Oj,this.Oj=null),this.F.H==this.W&&this.F.I.Bc.unload(this),"TwoPage"!=this.F.H&&"BookView"!=this.F.H&&this.M("#"+this.Tn()).remove(),"function"===typeof this.Ji&&this.ss();}},Ea:function(c){"ThumbView"==this.F.H||!this.Va&&null==c||this.pages.animating||this.F.renderer.Ea(this,!1,c);},Dc:function(c,d,e){this.F.renderer.Dc(this,c,d,e);},Ke:function(c,d,e){this.F.renderer.Ke(this,c,d,e);},Pl: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.Hf()?this.V:this.oa,this.M(this.va).parent())).scroll();}},Of: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].so*c,f=e.F.Z[e.pageNumber][g].uo*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].yp,p=e.F.Z[e.pageNumber][g].zp,t=e.F.Z[e.pageNumber][g].Go;if(0==jQuery("#flowpaper_mark_link_"+e.pageNumber+"_"+g).length){var q=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)),n=e.va;0==jQuery(n).length&&(n=e.Oc);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(n).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(n).append(h);}n=jQuery(n).append(q).find("#flowpaper_mark_link_"+e.pageNumber+"_"+g);p&&(n.data("mouseOverText",t),n.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)));}),n.bind("mouseout",function(){for(var c=document.querySelectorAll(".popover"),d=0;d<c.length;d++){c[d].remove();}}));n.data("link",e.F.Z[e.pageNumber][g].href);n.bind("mouseup touchend",function(c){if(e.pages.He||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(n).on("mouseover",function(){jQuery(this).stop(!0,!0);jQuery(this).css("background",e.F.linkColor);jQuery(this).css({opacity:e.F.Kc});}),jQuery(n).on("mouseout",function(){jQuery(this).css("background","");jQuery(this).css({opacity:0});}));}else{q=jQuery("#flowpaper_mark_link_"+e.pageNumber+"_"+g),q.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&&(t=e.F.Z[e.pageNumber][g].Hj*c,q=e.F.Z[e.pageNumber][g].Ij*c,n=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,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>",t,q,n,p,e.pageNumber,g,h,d,f)),n=e.va,0==jQuery(n).length&&(n=e.Oc),n=jQuery(n).append(h).find("#flowpaper_mark_video_"+e.pageNumber+"_"+g),n.data("video",e.F.Z[e.pageNumber][g].url),n.data("maximizevideo",e.F.Z[e.pageNumber][g].Eo),n.bind("mouseup touchend",function(c){jQuery(e.L).trigger("onVideoStarted",{VideoUrl:jQuery(this).data("video"),PageNumber:e.pageNumber+1});if(e.pages.He||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="",r=0;r<h.length;r++){0==h[r].indexOf("v=")&&(f=h[r].substr(2));}if(g){e.F.vc=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.vc);jQuery(e.F.vc).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.jg));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.vc=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.vc),jQuery(e.F.vc).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.jg)),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.vc=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.vc),jQuery(e.F.vc).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.jg)),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),n="vimeoframe_"+FLOWPAPER.Rn();if(g){jQuery(this).html(""),e.F.vc=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.vc),jQuery(e.F.vc).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 preload="auto" width="{3}" height="{4}" data-setup=\'{"example_option":true}\'><source src="{0}" type="video/mp4" /><source src="{1}" type="video/webm" /></video>',l.mp4,l.webm,n,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.jg)),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 preload="auto" width="{3}" height="{4}" data-setup=\'{"example_option":true}\'><source src="{0}" type="video/mp4" /><source src="{1}" type="video/webm" /></video>',l.mp4,l.webm,n,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:t+"px",top:q+"px",width:n+"px",height:p+"px","margin-left":d+"px"}).find(".flowpaper_mark").css({width:n+"px",height:p+"px"}),q=h.find("iframe"),0<q.length&&(q.attr("width",n),q.attr("height",p))));"image"==e.F.Z[e.pageNumber][g].type&&(n=e.F.Z[e.pageNumber][g].mh*c,f=e.F.Z[e.pageNumber][g].nh*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,t=e.F.Z[e.pageNumber][g].href,q=e.F.Z[e.pageNumber][g].ho,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>",n,f,k,l,e.pageNumber,g,p)),n=e.va,0==jQuery(n).length&&(n=e.Oc),n=jQuery(n).append(h).find("#flowpaper_mark_image_"+e.pageNumber+"_"+g),n.data("image",e.F.Z[e.pageNumber][g].url),null!=t&&0<t.length?(n.data("link",t),n.bind("mouseup touchend",function(c){if(e.pages.He||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.Zb||h.css({"pointer-events":"none"}),null!=q&&0<q.length&&(n.data("hoversrc",q),n.data("imagesrc",p),n.bind("mouseover",function(){jQuery(this).find(".flowpaper_mark").attr("src",jQuery(this).data("hoversrc"));}),n.bind("mouseout",function(){jQuery(this).find(".flowpaper_mark").attr("src",jQuery(this).data("imagesrc"));}),e.F.Zb||h.css({"pointer-events":"auto"}))):(h=jQuery("#flowpaper_mark_image_"+e.pageNumber+"_"+g),h.css({left:n+"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&&(q=e.F.Z[e.pageNumber][g].Ci*c,h=e.F.Z[e.pageNumber][g].Di*c,n=e.F.Z[e.pageNumber][g].width*c,t=e.F.Z[e.pageNumber][g].height*c,f=e.F.Z[e.pageNumber][g].src,0==jQuery("#flowpaper_mark_frame_"+e.pageNumber+"_"+g).length?(p=n-10,50<p&&(p=50),50>n&&(p=n-10),50>t&&(p=t-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>",q,h,n,t,e.pageNumber,g,f,d,n/2-p/3,t/2-p)),n=e.va,0==jQuery(n).length&&(n=e.Oc),n=jQuery(n).append(f).find("#flowpaper_mark_frame_"+e.pageNumber+"_"+g),jQuery("#flowpaper_mark_frame_"+e.pageNumber+"_"+g+"_play").wd(p,"#AAAAAA",!0),n.data("url",e.F.Z[e.pageNumber][g].url),n.data("maximizeframe",e.F.Z[e.pageNumber][g].Do),jQuery("#flowpaper_mark_frame_"+e.pageNumber+"_"+g+"_play").bind("mouseup touchend",function(c){if(e.pages.He||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.jl=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.jl),jQuery(e.F.jl).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.jg)),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:q+"px",top:h+"px",width:n+"px",height:t+"px","margin-left":d+"px"}).find(".flowpaper_mark").css({width:n+"px",height:t+"px"}),q=f.find("iframe"),0<q.length&&(q.attr("width",n),q.attr("height",t))));}}},dispose:function(){jQuery(this.va).find("*").unbind();jQuery(this).unbind();jQuery(this.U).unbind();delete this.U;this.U=null;jQuery(this.va).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.Yb();if("Portrait"==this.F.H||"SinglePage"==this.F.H){this.Pa(),90==this.rotation?(this.M(this.V).transition({rotate:this.rotation},0),jQuery(this.oa).transition({rotate:this.rotation,translate:"-"+c+"px, 0px"},0),jQuery(this.zb).css({"z-index":11,"margin-left":c}),jQuery(this.zb).transition({rotate:this.rotation,translate:"-"+c+"px, 0px"},0)):270==this.rotation?(jQuery(this.oa).transition({rotate:this.rotation,translate:"-"+c+"px, 0px"},0),jQuery(this.zb).css({"z-index":11,"margin-left":c}),this.M(this.V).transition({rotate:this.rotation},0),jQuery(this.zb).transition({rotate:this.rotation,translate:"-"+c+"px, 0px"},0)):180==this.rotation?(jQuery(this.oa).transition({rotate:this.rotation,translate:"-"+c+"px, 0px"},0),jQuery(this.zb).css({"z-index":11,"margin-left":c}),this.M(this.V).transition({rotate:this.rotation},0),jQuery(this.zb).transition({rotate:this.rotation,translate:"-"+c+"px, 0px"},0)):(jQuery(this.oa).css("transform",""),jQuery(this.zb).css({"z-index":"","margin-left":0}),this.M(this.V).css("transform",""),jQuery(this.zb).css("transform",""));}},Xd:function(c,d,e,g,h,f){var k=this,l=k.pageNumber+(d?d:0),m=new jQuery.Deferred;if(!k.F.renderer.sa){return m.resolve(),m;}k.pages.animating&&(window.clearTimeout(k.$o),k.$o=setTimeout(function(){k.Xd(c,d,e,g,h,f);},50));k.Sc();var p=k.F.renderer;"SinglePage"==k.H&&(l=k.pages.R);k.F.config.document.RTLMode&&(l=k.pages.getTotalPages()-l-1);p.S[l]&&p.S[l].loaded&&jQuery(c).data("needs-overlay")?k.xo(d).then(function(){jQuery(c).data("needs-overlay",jQuery(c).data("needs-overlay")-1);k.zo=!0;var d=p.S[l].text,f=c.getContext("2d"),r=(e?e:c.width)/(p.S[0]?p.S[0].width:p.S[l].width),u=!0;g||(g=0,u=!1);h||(h=0,u=!1);f.setTransform(1,0,0,1,g,h);f.save();f.scale(r,r);for(var v=0;v<d.length;v++){var x=d[v],z=x[1],w=x[0]+x[10]*x[3],D=x[9],C=x[2],H=x[3],A=x[7],G=x[8],B=x[6],F=x[11],x=x[12],y=A&&0==A.indexOf("(bold)"),E=A&&0==A.indexOf("(italic)");A&&(A=A.replace("(bold) ",""),A=A.replace("(italic) ",""),f.font=(E?"italic ":"")+(y?"bold ":"")+Math.abs(H)+"px "+A+", "+G);if("object"==typeof B&&B.length&&6==B.length){var I,A=B[1],G=B[2],y=B[3],E=B[4],H=B[5];"axial"===B[0]?I=f.createLinearGradient(A[0],A[1],G[0],G[1]):"radial"===B[0]&&(I=f.createRadialGradient(A[0],A[1],y,G[0],G[1],E));B=0;for(A=H.length;B<A;++B){G=H[B],I.addColorStop(G[0],G[1]);}f.fillStyle=I;}else{f.fillStyle=B;}0!=F&&(f.save(),f.translate(z,w),f.rotate(F));if(x){for(B=0;B<x.length;B++){H=x[B],0==F?u&&(0>g+(z+H[0]*D+C)*r||g+(z+H[0]*D)*r>c.width)||f.fillText(H[1],z+H[0]*D,w):f.fillText(H[1],H[0]*Math.abs(D),0);}}0!=F&&f.restore();}f.restore();jQuery(c).data("overlay-scale",r);m.resolve(c);k.Kb();}):(p.S[l].loaded?m.resolve(c):(k.zo=!1,c.width=100,m.reject()),k.Kb());return m;},xo:function(c){var d=new jQuery.Deferred,e=this.F.renderer;e.Mc||(e.Mc={});for(var g=[],h=!1,f=e.Ff(this.pageNumber),k=f-10;k<f;k++){e.S[k]&&e.S[k].fonts&&0<e.S[k].fonts.length&&(h=!0);}if(!eb.browser.msie&&!eb.browser.jf||h){if(k=this.pageNumber+(c?c:0),c=e.S[k].text,h){for(k=f-(10<f?11:10);k<f;k++){if(e.S[k]&&e.S[k].fonts&&0<e.S[k].fonts.length){for(h=0;h<e.S[k].fonts.length;h++){e.Mc[e.S[k].fonts[h].name]||(ha(e.S[k].fonts[h].name,e.S[k].fonts[h].data),g.push(e.S[k].fonts[h].name));}}}}else{if(c&&0<c.length){for(h=0;h<c.length;h++){c[h][7]&&!e.Mc[c[h][7]]&&-1==g.indexOf(c[h][7])&&0==c[h][7].indexOf("g_font")&&c[h][7]&&g.push(c[h][7]);}}}}else{for(f=this.pages.getTotalPages(),k=0;k<f;k++){if(h=e.S[k],h.loaded){for(c=h.text,h=0;h<c.length;h++){c[h][7]&&!e.Mc[c[h][7]]&&-1==g.indexOf(c[h][7])&&0==c[h][7].indexOf("g_font")&&c[h][7]&&g.push(c[h][7]);}}}}0<g.length?WebFont.load({custom:{families:g},inactive:function(){d.resolve();},fontactive:function(c){e.Mc[c]="loaded";},fontinactive:function(c){e.Mc[c]="inactive";},active:function(){d.resolve();},timeout:eb.browser.msie||eb.browser.jf?5000:25000}):d.resolve();return d;}};return f;}();function ya(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.wf=null;this.Ia="toolbar_"+this.F.P;this.K="#"+this.Ia;this.jk=this.Ia+"_bttnPrintdialogPrint";this.ci=this.Ia+"_bttnPrintdialogCancel";this.gk=this.Ia+"_bttnPrintDialog_RangeAll";this.hk=this.Ia+"_bttnPrintDialog_RangeCurrent";this.ik=this.Ia+"_bttnPrintDialog_RangeSpecific";this.$h=this.Ia+"_bttnPrintDialogRangeText";this.$k=this.Ia+"_labelPrintProgress";this.rg=null;this.create=function(){var c=this;c.Sl="";if(eb.platform.touchonlydevice||c.rg){c.rg||(e=c.resources.ka.wq,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.ka.Iq))+(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.ka.Jq,"Portrait"==c.F.wb?"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.ka.Qq,"TwoPage"==c.F.wb?"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.ka.Pq))+(eb.platform.lb?"":String.format("<img src='{0}' style='margin-left:-1px;' class='flowpaper_tbbutton_large flowpaper_fitmode flowpaper_fitwidth flowpaper_bttnFitWidth'>",c.resources.ka.yq))+(eb.platform.lb?"":String.format("<img src='{0}' style='margin-left:-1px;' class='flowpaper_tbbutton_large flowpaper_fitmode fitheight flowpaper_bttnFitHeight'>",c.resources.ka.Gq))+"":"")+(c.F.config.document.ZoomToolsVisible?String.format("<img class='flowpaper_tbbutton_large flowpaper_bttnZoomIn' src='{0}' style='margin-left:5px;' />",c.resources.ka.Tq)+String.format("<img class='flowpaper_tbbutton_large flowpaper_bttnZoomOut' src='{0}' style='margin-left:-1px;' />",c.resources.ka.Uq)+(eb.platform.lb?"":String.format("<img class='flowpaper_tbbutton_large flowpaper_bttnFullScreen' src='{0}' style='margin-left:-1px;' />",c.resources.ka.Aq))+"":"")+(c.F.config.document.NavToolsVisible?String.format("<img src='{0}' class='flowpaper_tbbutton_large flowpaper_previous flowpaper_bttnPrevPage' style='margin-left:15px;'/>",c.resources.ka.mq)+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.ka.nq)+"":"")+(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.ka.xq)+"":"")),jQuery(c.K).addClass("flowpaper_toolbarios"));}else{var e=c.resources.ka.vm,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.ka.Nm);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.ka.Jm)+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.wb?"flowpaper_tbbutton_pressed":"",c.resources.ka.Mm)+String.format("<img src='{1}' class='flowpaper_bttnTwoPage flowpaper_tbbutton flowpaper_viewmode flowpaper_twopage {0}' />","TwoPage"==c.F.wb?"flowpaper_tbbutton_pressed":"",c.resources.ka.Qm)+String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_thumbview flowpaper_viewmode flowpaper_bttnThumbView' />",c.resources.ka.Pm)+String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_fitmode flowpaper_fitwidth flowpaper_bttnFitWidth' />",c.resources.ka.Im)+String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_fitmode flowpaper_fitheight flowpaper_bttnFitHeight'/>",c.resources.ka.Hm)+String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_bttnRotate'/>",c.resources.ka.Lm)+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.Sl:"")+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.ka.zm)+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.ka.sm)+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.ka.tm)+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.ka.Om)+String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_tbbutton_pressed flowpaper_bttnHand'/>",c.resources.ka.Bm)+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.ka.ym)+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.dl=function(c){c=this.Ka=c.split("\n");jQuery(this.K).find(".flowpaper_bttnPrint").attr("title",this.la(c,"Print"));jQuery(this.K).find(".flowpaper_bttnSinglePage").attr("title",this.la(c,"SinglePage"));jQuery(this.K).find(".flowpaper_bttnTwoPage, .flowpaper_bttnBookView").attr("title",this.la(c,"TwoPage"));jQuery(this.K).find(".flowpaper_bttnThumbView").attr("title",this.la(c,"ThumbView"));jQuery(this.K).find(".flowpaper_bttnFitWidth").attr("title",this.la(c,"FitWidth"));jQuery(this.K).find(".flowpaper_bttnFitHeight").attr("title",this.la(c,"FitHeight"));jQuery(this.K).find(".flowpaper_bttnFitHeight").attr("title",this.la(c,"FitPage"));jQuery(this.K).find(".flowpaper_zoomSlider").attr("title",this.la(c,"Scale"));jQuery(this.K).find(".flowpaper_txtZoomFactor").attr("title",this.la(c,"Scale"));jQuery(this.K).find(".flowpaper_bttnFullScreen, .flowpaper_bttnFullscreen").attr("title",this.la(c,"Fullscreen"));jQuery(this.K).find(".flowpaper_bttnPrevPage").attr("title",this.la(c,"PreviousPage"));jQuery(this.K).find(".flowpaper_txtPageNumber").attr("title",this.la(c,"CurrentPage"));jQuery(this.K).find(".flowpaper_bttnPrevNext").attr("title",this.la(c,"NextPage"));jQuery(this.K).find(".flowpaper_txtSearch, .flowpaper_bttnTextSearch").attr("title",this.la(c,"Search"));jQuery(this.K).find(".flowpaper_bttnFind").attr("title",this.la(c,"Search"));var e=this.F.Nj&&0<this.F.Nj.length?this.F.Nj:this.F.N;e.find(".flowpaper_bttnHighlight").find(".flowpaper_tbtextbutton").html(this.la(c,"Highlight","Highlight"));e.find(".flowpaper_bttnComment").find(".flowpaper_tbtextbutton").html(this.la(c,"Comment","Comment"));e.find(".flowpaper_bttnStrikeout").find(".flowpaper_tbtextbutton").html(this.la(c,"Strikeout","Strikeout"));e.find(".flowpaper_bttnDraw").find(".flowpaper_tbtextbutton").html(this.la(c,"Draw","Draw"));e.find(".flowpaper_bttnDelete").find(".flowpaper_tbtextbutton").html(this.la(c,"Delete","Delete"));e.find(".flowpaper_bttnShowHide").find(".flowpaper_tbtextbutton").html(this.la(c,"ShowAnnotations","Show Annotations"));};this.la=function(c,e,g){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.la(c.Ka,"Enterpagenumbers","Enter page numbers and/or page ranges separated by commas. For example 1,3,5-12");c.F.Zb?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.ci+"'>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.la(c.Ka,"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.gk+"'/></td><td>"+c.la(c.Ka,"All","All")+"</td></tr><tr><td><input type='radio' name='PrintRange' id='"+c.hk+"'/></td><td>"+c.la(c.Ka,"CurrentPage","Current Page")+"</td></tr><tr><td><input type='radio' name='PrintRange' id='"+c.ik+"'/></td><td>"+c.la(c.Ka,"Pages","Pages")+"</td><td><input type='text' style='width:120px' id='"+c.$h+"' /><td></tr><tr><td colspan='3'>"+e+"</td></tr></table><a id='"+c.jk+"' class='flowpaper_printdialog_button'>"+c.la(c.Ka,"Print","Print")+"</a> <a class='flowpaper_printdialog_button' id='"+c.ci+"'>"+c.la(c.Ka,"Cancel","Cancel")+"</a><span id='"+c.$k+"' style='padding-left:5px;'></span><div style='height:5px;display:block;margin-top:5px;'> </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",function(){if(!jQuery(this).hasClass("flowpaper_tbbutton_disabled")){return !1;}}),jQuery(c.K).find(".flowpaper_currPageNum").bind("click",function(){jQuery(c.K).find(".flowpaper_currPageNum").focus();}),jQuery(c.K).find(".flowpaper_txtSearch").bind("click",function(){jQuery(c.K).find(".flowpaper_txtSearch").focus();return !1;}),jQuery(c.K).find(".flowpaper_bttnFind").bind("click",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",function(){jQuery(this).hasClass("flowpaper_tbbutton_disabled")||(c.F.fitwidth(),jQuery("#toolbar").trigger("onFitModeChanged","Fit Width"));}),jQuery(c.K).find(".flowpaper_bttnFitHeight").bind("click",function(){jQuery(this).hasClass("flowpaper_tbbutton_disabled")||(c.F.fitheight(),jQuery("#toolbar").trigger("onFitModeChanged","Fit Height"));}),jQuery(c.K).find(".flowpaper_bttnTwoPage").bind("click",function(){jQuery(this).hasClass("flowpaper_tbbutton_disabled")||("BookView"==c.F.wb?c.F.switchMode("BookView"):c.F.switchMode("TwoPage"));}),jQuery(c.K).find(".flowpaper_bttnSinglePage").bind("click",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",function(){c.F.switchMode("Tile");}),jQuery(c.K).find(".flowpaper_bttnPrint").bind("click",function(){eb.platform.touchonlydevice?c.F.printPaper("current"):(jQuery("#modal-print").css("background-color","#dedede"),c.F.fj=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",function(){if(window.zine){var e=FLOWPAPER.Dj(c.document.PDFFile,c.F.getCurrPage());FLOWPAPER.authenticated&&(e=FLOWPAPER.appendUrlParameter(e,FLOWPAPER.authenticated.getParams()));window.open(e,"windowname3",null);0<c.document.PDFFile.indexOf("[*,")&&-1==c.document.PDFFile.indexOf("[*,2,true]")&&1<c.F.getTotalPages()&&1<c.F.getCurrPage()&&(e=FLOWPAPER.Dj(c.document.PDFFile,c.F.getCurrPage()-1),FLOWPAPER.authenticated&&(e=FLOWPAPER.appendUrlParameter(e,FLOWPAPER.authenticated.getParams())),window.open(e,"windowname4",null));jQuery(c.F).trigger("onDownloadDocument",e);}else{e=FLOWPAPER.Dj(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",function(){c.F.expandOutline();}),jQuery(c.K).find(".flowpaper_bttnPrevPage").bind("click",function(){c.F.previous();return !1;}),jQuery(c.K).find(".flowpaper_bttnPrevNext").bind("click",function(){c.F.next();return !1;}),jQuery(c.K).find(".flowpaper_bttnZoomIn").bind("click",function(){"TwoPage"==c.F.H||"BookView"==c.F.H?c.F.pages.re():"Portrait"!=c.F.H&&"SinglePage"!=c.F.H||c.F.ZoomIn();}),jQuery(c.K).find(".flowpaper_bttnZoomOut").bind("click",function(){"TwoPage"==c.F.H||"BookView"==c.F.H?c.F.pages.nd():"Portrait"!=c.F.H&&"SinglePage"!=c.F.H||c.F.ZoomOut();}),jQuery(c.K).find(".flowpaper_txtZoomFactor").bind("click",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",function(){jQuery(c.K).find(".flowpaper_currPageNum").focus();}),jQuery(c.K).find(".flowpaper_txtSearch").bind("click",function(){jQuery(c.K).find(".flowpaper_txtSearch").focus();return !1;}),jQuery(c.K).find(".flowpaper_bttnFullScreen, .flowpaper_bttnFullscreen").bind("click",function(){c.F.openFullScreen();}),jQuery(c.K).find(".flowpaper_bttnFind").bind("click",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",function(){c.F.Ce="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",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",function(){c.F.rotate();}));jQuery("#"+c.$h).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.Cf/c.F.document.MaxZoomSize*100*c.F.document.MaxZoomSize)+"%";jQuery(c.K).find(".flowpaper_txtZoomFactor").val(f);c.Cf!=h.Cf&&(c.Cf=h.Cf,jQuery(c.F).trigger("onScaleChanged",h.Cf));});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.yc&&c.F.toolbar.yc.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.yc&&c.F.toolbar.yc.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.yc&&c.F.toolbar.yc.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.yc&&c.F.toolbar.yc.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.yc&&c.yc.setValue(h,!0);});jQuery("#"+c.ci).bind("click",function(e){jQuery.smodal.close();e.stopImmediatePropagation();c.F.fj=null;return !1;});jQuery("#"+c.jk).bind("click",function(){var e="";jQuery("#"+c.gk).is(":checked")&&(c.F.printPaper("all"),e="1-"+c.F.renderer.getNumPages());jQuery("#"+c.hk).is(":checked")&&(c.F.printPaper("current"),e=jQuery(c.K).find(".flowpaper_txtPageNumber").val());jQuery("#"+c.ik).is(":checked")&&(e=jQuery("#"+c.$h).val(),c.F.printPaper(e));jQuery(this).html("Please wait");window.onPrintRenderingProgress=function(e){jQuery("#"+c.$k).html("Processing page:"+e);};window.onPrintRenderingCompleted=function(){jQuery.smodal.close();c.F.fj=null;c.L.trigger("onDocumentPrinted",e);};return !1;});c.$p();};this.ak=function(c,e){var g=this;if(0!=jQuery(g.K).find(".flowpaper_zoomSlider").length&&null==g.yc){g=this;this.Qf=c;this.Pf=e;if(window.zine){var h={xf:0,Rb:g.F.L.width()/2,oc:g.F.L.height()/2};g.yc=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.yc=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.wh||(c*g.F.document.MaxZoomSize>=g.Qf&&c<=g.Pf?g.F.ib(g.F.document.MaxZoomSize*c):c*g.F.document.MaxZoomSize<g.Qf?g.F.ib(g.Qf):c>g.Pf&&g.F.ib(g.Pf));},animation_callback:function(c){jQuery(g.K).find(".flowpaper_bttnFitWidth, .flowpaper_bttnFitHeight").hasClass("flowpaper_tbbutton_pressed")&&"up"===g.F.wh||(c*g.F.document.MaxZoomSize>=g.Qf&&c<=g.Pf?g.F.ib(g.F.document.MaxZoomSize*c):c*g.F.document.MaxZoomSize<g.Qf?g.F.ib(g.Qf):c>g.Pf&&g.F.ib(g.Pf));},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={xf:0,Rb:g.F.L.width()/2,oc: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.aq=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.Zp=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.Ba?jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.zd(c,c)):(0!=parseInt(c)%2&&1<parseInt(c)&&--c,jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.zd(c,1<parseInt(c)?c+1+"-"+c:c))):jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.zd(1,"1")):"0"!=c&&jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.zd(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.Ba?jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.zd(c,c)):(0!=parseInt(c)%2&&1<parseInt(c)&&(c=c-1),jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.zd(c,1<parseInt(c)?c+"-"+(c+1):c))):jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.zd(1,"1")):"0"!=c&&jQuery(this.K).find(".flowpaper_txtPageNumber").val(this.zd(c,c));};this.hp=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.zd=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=ma(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.Ba||g||(0!=parseInt(e)%2&&(e=parseInt(e)-1),e=e+"-"+(parseInt(e)+1)));}return e;};this.$p=function(){this.rg?jQuery(this.rg.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.hp(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.aq(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],r=h.cssRules||h.rules,k=f.toLowerCase();if(null!=r){null==e&&(e=document.styleSheets[g]);for(var l=0,m=r.length;l<m;l++){if(r[l].selectorText&&r[l].selectorText.toLowerCase()==k){if(null!=d){r[l].style[c]=d;return;}h.deleteRule?h.deleteRule(l):h.removeRule?h.removeRule(l):r[l].style.cssText="";}}}}catch(p){}}h=e||{};h.insertRule?(r=h.cssRules||h.rules,h.insertRule(f+"{ "+c+":"+d+"; }",r.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.en=this.toolbar.Ia+"_barPrint";this.hn=this.toolbar.Ia+"_barViewMode";this.dn=this.toolbar.Ia+"_barNavTools";this.cn=this.toolbar.Ia+"_barCursorTools";this.gn=this.toolbar.Ia+"_barSearchTools";this.ln=this.toolbar.Ia+"_bttnMoreTools";this.ea="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7";this.ai="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgchEmOlRoEAAAFUSURBVDjLrZS9SgNREIW/m531JyGbQFAQJE+w4EuYWvQd7C0sAjYpfQcfwsJSXyJgbZFKEhTUuIZkd8Yimx/Dboyytzz345yZuZdxF2x0SpthiBbsZ3/gXnofuYBXbjZSrtevHeRycfQ0bIIo76+HlZ08zDSoPgcBYgz2Ai/t+mYZOQfAbXnJoIoYVFzmcGaiq0SGKL6XPcO56vmKGNgvnGFTztZzTDlNsltdyGqIEec88UKODdEfATm5irBJLoihClTaIaerfrc8Xn/O60OBdgjKyapn2L6a95soEJJdZ6hAYkjMyE+1u6wqv4BRXPB/to25onP/43e8evmw5Jd+vm6Oz1Q3ExAHdDpHOO6XkRbQ7ThAQIxdczC8zDBrpallw53h9731PST7E0pmWsetoRx1NRNjUi6/jfL3i1+zCASI/MZ2LqeTaDKb33hc2J4sep9+A+KGjvNJJ1I+AAAAAElFTkSuQmCC";this.bi="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGggFBG3FVUsAAAFTSURBVDjLrZQxSwNBEIXfbuaSUxKUNDYKRmJhZXMIgv/FIm0K/0kau/wdqxQeaGEQksJW0CJ4SC6ZZ5G9eIZbc8pdOfftm/d2ljE3KPXZchhEK9bjH7jX+8TfsH7addzLRA683HI+ZhcQxdukUQ+8nIbhdL8NIR6D0DqXd3niCgBgxOr4EkKwYQrDZEXTmBGiqBVjaw6mpqu8xXet+SPC3EGPnuO4lSMhhHpG/F1WQrRMX4UA3KpHwJJKks1hHG8YJeN42CRJJbO8gwggzjc1o0HvZ94IxT4jurwLpDVXeyhymQJIFxW/Z5bmqu77H72zzZ9POT03rJFHZ+RGKG4l9G8v8gKZ/KjvloYQO0sAs+sCscxISAhw8my8DlddO4Alw441vyQ1ONwlhUjbremHf7/I0V4CCIAkOG6teyxSAlYCAAgMkHyaJLu/Od6r2pNV79MvlFCWQTKpHw8AAAAASUVORK5CYII%3D";this.Vh="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgcmKZ3vOWIAAAG3SURBVDjLrZS9bhNBFIW/uzOLwVacSIYCCUVCyivwAkgGJ31cpMwT8A6UlKnSpKTgARBPkCK8QZCIlAqRBPGXxbF37qFYO8aWNk6QVyvNnNlP52juzlx7xa2e7HYY0ZfspztwF6e/aoHQXO+MudOvq49rubL4/HsdovPz25PW/TpM3l750m4Txdmjdqjftd0L6WyFKGjZjcWxViGikwcHE/0eMmHsHiBMxod3mCDkTiYhdyXf7h0PDYDK3YbHvW1PchfSmEve3zzfvwQz8Gq43D/f7Hu65jyllHa2OLpqgASpGhpXR2ztpJSSS1GUDrvPP318nyJYlWtAvHj7/Vk3HEApMnfcvXuydxg3AkjIhQRhIx7unXTdHfcInoCnb/IMZIAlA1B4jY8iCRyicAeFMC3YtJpZAzm4iKrWZTI0w8mQqfpKFGn+b/i8SiKWDPI57s+8GpRLPs+acPbPO9XYWOuuuZN000SZZnKv/QyrMmxm9p/7WMxBNHg5cyFezCiIEMUD2QK3psjg4aJW5B3IJF/jJkNjrTr3o2bzx6C+v+SrKiACRd5p1IeOitGkfsPh0vrksvvpX4Z15Dxt627DAAAAAElFTkSuQmCC";this.Og="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.Ug="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.di="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGggfGb7uw0kAAAGtSURBVDjLrZS/bhNBEIe/Wc/5DksRKA0NSASFBvEQvAM0IJ4gFfRUtJSJ0tHyEFQU1DQ0bpKCBgkEFBEny2fvj+LW98f2gSN5pdPt7nya2flpZuwlO62wG4bHPfvTNbgfn8vhgOMHx4n7euG3B7nlfKpj8Mivi3ycDXKxKC5vHRKkL1nhGlzmxWQquVBudTKfSBsFvT8nJMksvxIeGSUrpvrDZtPndrZswFEkSBDrJcOEmXH15tuzk7hI9yAFidVTkASSyOcf7cUrdQwu1Ept1Pv8++nPx0/C23QtEaQYO/5r3B+NP7yePm0skkfo+JMJLI7eWZyNW0PEQeslI4AwIcb2wkVUh1Dnv9KLKFxt3FY/TJjauGItX/V2avP1BdWIjQcagKp0rha9em5cmKmBt9WzYchqwvoBepwsZaqUSMv1+0gJE6KbH3W9dALX8QyjG1ra2pe2Y1/KNoTaytmmoN4dCUkXtKZLABc3lun4cKg3CxHg/v9Gh44gSMVRsH9Qxp2J5KI6PLj8Mzxf/O7NEhwos3sHTYxFJQieAWQG5czKlX5zfu9rTu57nv4FFIsPySkiwzoAAAAASUVORK5CYII%3D";this.Vg="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgcoGry8dfoAAAFASURBVDjLrZRNSgNBEEZfJzUqCZkERhdCCB7GC+jCrXgDb+QRvIBnEQkuxKAQI2NIeqpcTCI9Mp3JQHrzaPj6q5/uLnfPXquznwzRA/tZC93HdBEVdHuTbKObvg/PozqfP39PQJSvz3H/JCYzTQdvaYoYs7O0G6/aHXWL2QAx6LudzXH93BAlKd0eALiroiwlUcTAAjutgWGlbtNDj6D/sVGKoUWQTFEHNcTw21NSRqoCwBuif7tofqC4W16HTZc7HyOGlqceAbiqIsxvj7iGGMV2F+1LYYhnmQR+P3VYeiR8i3Vo9Z4Nd8PLoEm2uAjcnwC4rKJ13PBfel+Dln6hLt4XQ0Bc+BnqIOCumeMaorqUDpw2jSLNoGOmo52GjpGaibHu9ebL+HxJhpaXVeVJdhwPus7X2/6tVgebk4eep79dEZnAuEZ32QAAAABJRU5ErkJggg%3D%3D";this.ei="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.Wg="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.fi="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.Xg="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.gi="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.Qg="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.Xh="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.Tg="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.Zh="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.Rg="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGgcrBRqZK8wAAAE8SURBVDjLrZTNSsRAEIRrfuJPwmYXogdB9mmy7+P7iIgIIoKIL+RhT+Ki4A8hbJIuD+qaSWbWCKnTUPmopjM9rU4wSHoYBisj5/Ef3PPyPQiYeJ59c8un6VGQq4uHjzlgBW8vx8leCKOkk8c0hSVWh6kJd612TLOaQJNIlPzqVLpSCUgtEpm2i7MeaCIRTYIOh/MuR5AeDhd+Tpq2AOCycSWkJmvp5AFXbmBNahH0OVy7nogG+nUB3Dh1AU2KJw+4dTqhJuHlcNfySE02fg73G68hbY0y8t9svjmV9ZZ5zofNs4MxyLlpDNXNh72jLhbIy4e9yz7m7cOTRljAKsdbqH5RwBL7bH9ZeNJiQgMHf60iyb7maga1hVKYCWmJKo5fy/B+iaYsAAugiLLdcNGqqH7+33o92p4ce59+Av+enpsD10kAAAAAAElFTkSuQmCC";this.Yh="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACcAAAAnCAAAAACpyA7pAAAAAXNSR0IArs4c6QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wGGggiBLcA5y4AAAE5SURBVDjLrZS7TsNAEEWPN+vERIpAaWhAIigU7vkwPhIQRDxFkyYpaJGgwkJxmEsRiPzaxEi5lTU6vuNZz97oglZy7TC87dhP/+DeHrJww+7Z+Jd7nfnDIPe9mGoM3nif9bpxkLMkmR8McdJLnHgFFfmkP5WcpF5UqF/Wyd5CcmadIiau6mDHzElgBcG1VQSSkyi9DNxUDVecqhy39XG8sPovnpyXz0Y4s1pf4K5cM3OgykcDcF+sCZxkDX7wWKhZ87wrPW2fd6Xn0rxL8k7zBqTrp3y5YZ/TdvtcwhTkym4K9U3b3aMqFvBL293LOtY4R4ObcLVISBtDw0l72zASycHptujQCJyUjFy0gYo46kte5MPB/DOcL/54PwMPZPHJYN1jmQucjwHiCLKvKPs7vwUfu8rJXefpD93iniqiS4VUAAAAAElFTkSuQmCC";this.Pg="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.Wh="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.mn="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXlJREFUeNrsmT1Ow0AYRG1ER8glkCioyQk4ARIF9OEA3IeeBnEDJH4qkh4JRXAB6AgtZgxLg2SPKSx7d9+TRoqcr7BeNt7spKyqqoBmNlCAIAQhCEEIQhCCEAQIQlCagibKmXKvvCmvyl24tjX0zZUDH1Z3lAtl1vD+QjlRXnIUNFWulX0zt1QOlPfcvmLzDnKKsLrmOT6DjnqaTUbQbk+zyQiKosocUtDqH7NPOQq67Gk2mW1+O2zzMzO3CNv8OrcVVP+uOQ4CmngIM+scV9Av9XHiVDlU9sK1R+VKOVc+cj5q/F3Nk/C6XjGfY7ipkj8Ox3+aRxCCEmZzZB/W6B7SY2oUb4ufYuxZuSloFL+hUWyBRtFAo2igUTTQKBpoFA00igYaRQONooFGsSM0ijEfVmkUIzjNIwhBCUOjGMEKolFsgUaxBRpFA42igUbRQKNooFE00CgaaBQNNIoGGsWO0CjGDHUHghCEIAQhCEEIQhAgCEE98CXAAHw9kRr/el3HAAAAAElFTkSuQmCC";this.kn="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEgAAABICAYAAABV7bNHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAbtJREFUeNrs20tKxEAQgOFEZyu6EA/gEbyYex+kwMfei3kEDyAudB+J3Rg3wmBM18vxLyiyGSbVH10d0k36aZo6YnvsQQAQQAABBBBAAP3T2Dje66jk43xtideSZ/N1p4D6ksclDxRq7ne1xcYk/8EaBBBAAAEEEEAEQAABBBBAAAHk/Rbu9kbfuh90Mhe75Hi2bpRp7ON87SttFv62/u559c0aj57PS96UfF+AVIs9VECq93lbeL/9ktclH6KAatyWvEy6hNyVvIpeg2oBkhBHWnE+52uZQUopU54QrXFpAmVBEs0xaQPVHAJxBu3xWABFzSSxGIsVkDeSWI3DEsir3QbLMVgDWc8ksa7fA8gKSTxq9wLSbrfBq25PIK2ZJJ41ewO1Iol3vRFAa9ttiKg1Cui3M0mi6owEWookkTVGA/3UbkN0fRmAts0kyVBbFqDvSJKlLo0tV824n68XWQrKBsTBIUAAAUQoHj1rHSdbRn0Krf6uo/Up9tS1f5xiHRXnNGoGaXyckrpLWtegscsfYyQQTzHjFk3fYq0DfPkDbdb0ZSLvYqxBAAEEEEAAAQQQARBAAPnHhwADADsGwOIWz5onAAAAAElFTkSuQmCC";this.lg="data:image/gif;base64,R0lGODlhAwAVAIABAJmZmf///yH5BAEKAAEALAAAAAADABUAAAINRBynaaje0pORrWnhKQA7";this.Ip="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAANCAYAAAB/9ZQ7AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAB3RJTUUH3QkaAjcFsynwDgAAAMxJREFUKM+9kLEuRQEQRGeuV5FIJApBQZ5EReFP/IBCBIVvpFT4BR9AR+29cxTukyvRaEyzmd3Jzu4kI4Ad9d4JANVLdS1JhvwB/yBuu0jiL5pl22WSzNRBPVE3225MVW2TZA84bfsWYFDvgNX30zQY6wtwmCRRo96qy9V8Et2zevDjMKDqFfA+2fykzr9F6o16vnIALtRX4AE4GvtbwHVGq8epi3qm7k74HFjMRrINnLdd/6KS5FgdkpBkv206DkzykaSTbWkbdUyxs094zOEo59nhUAAAAABJRU5ErkJggg%3D%3D";this.Mp="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAANCAYAAACZ3F9/AAAAAXNSR0IArs4c6QAAAAZiS0dEAFEAUQBRjSJ44QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wCCgAwB/13ZqAAAADXSURBVCjPhZIxTkMxEETf2F9I0EaCI9DRUZEL0XINbpMzQJ2eG1DQpvszNDbyN4kylde7O+PxLgxIckgS2+mw3ePDWFumxrPnc/GmURKXMOfKXDAzX8LcWEfmTtLu6li42O4SD8ARuAHW6RVV0tH2PfANsAyMT8A7cJo9JSHJHfAsiSSoKa6S6jWfjWxNUrtiAbKtUQaSLh+gSEppSf3/3I1qBmIl0ejxC3BnHz02X2lTeASgr5ft3bXZ2d71NVyA1yS3pZSfJB/AS5I/xWGWn5L2tt+A0y9ldpXCCID4IwAAAABJRU5ErkJggg%3D%3D";this.am="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3gIDABU3A51oagAAAIpJREFUOMulk9ENgCAMRKkTOAqjMIKj6CSOghs4gm7gCM+fGgmCsXJJP0i4cj16zhkBjNwYreSeDJ1rhLVByM6TRf6gqgf3w7g6GTi0fGJUTHxaX19W8oVNK8f6RaYHZiqo8aTQqHhZROTrNy4VhcGybamJMRltBvpfGwcENXxryYJvzcLemp1HnE/SdAV9Q8z4YgAAAABJRU5ErkJggg%3D%3D";this.Hp="data:image/png;base64,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%3D%3D";this.Pp="data:image/png;base64,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%3D%3D";this.Kp="data:image/gif;base64,R0lGODlhEAAPAKECAGZmZv///1FRUVFRUSH5BAEKAAIALAAAAAAQAA8AAAIrlI+pB7DYQAjtSTplTbdjB2Wixk3myDTnCnqr2b4vKFxyBtnsouP8/AgaCgA7";this.Lp="data:image/gif;base64,R0lGODlhDQANAIABAP///1FRUSH5BAEHAAEALAAAAAANAA0AAAIXjG+Am8oH4mvyxWtvZdrl/U2QJ5Li+RQAOw%3D%3D";this.Np="data:image/gif;base64,R0lGODlhDQANAIABAP///1FRUSH5BAEHAAEALAAAAAANAA0AAAIYjAOnC7ncnmpRIuoerpBabF2ZxH3hiSoFADs%3D";this.Qp="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAAAXNSR0IArs4c6QAAAAZiS0dEAFEAUQBRjSJ44QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wCCgEMO6ApCe8AAAFISURBVCjPfZJBi49hFMV/521MUYxEsSGWDDWkFKbkA/gAajaytPIFLKx8BVkodjP5AINGU0xZKAslC3Ys2NjP+VnM++rfPzmb23065z6de27aDsMwVD0C3AfOAYeB38BP9fEwDO/aMgwDAAFQDwKbwC9gZxScUM8Al5M8SPJ0Eu5JYV0FeAZcBFaAxSSPkjwHnrQ9Pf1E22XVsX5s+1m9o54cB9J2q+361KM+VN+ot9uqrjIH9VJbpz7qOvAeuAIcSnJzThA1SXaTBGAAvgCrwEvg0yxRXUhikrOjZ1RQz7uHFfUu/4C60fb16G9hetxq+1a9Pkdears2Dt1Rj87mdAx4BfwAttWvSQ4AV9W1aYlJtoFbmQJTjwP3gAvAIlDgG7CsXvu7uWQzs+cxmj0F7Fd3k3wfuRvqDWAfM+HxP6hL6oe2tn3xB7408HFbpc41AAAAAElFTkSuQmCC";this.Jp="data:image/png;base64,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%3D%3D";this.Op="data:image/gif;base64,R0lGODlhEAAPAIABAP///1FRUSH5BAEKAAEALAAAAAAQAA8AAAIkjI+pi+DhgJGMnrfsxEnDqHgRN3WjJp5Wel6mVzbsR8HMjScFADs%3D";this.$l="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDJBOEJGMUEyN0IyMTFFMTlFOTNFMjNDNDUxOUFGMTciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDJBOEJGMUIyN0IyMTFFMTlFOTNFMjNDNDUxOUFGMTciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0MkE4QkYxODI3QjIxMUUxOUU5M0UyM0M0NTE5QUYxNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0MkE4QkYxOTI3QjIxMUUxOUU5M0UyM0M0NTE5QUYxNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PrESQzQAAAF3SURBVHjaYvz//z8DPQATA53A8LOIkRLNNpaWAkCqHogVgBjEbjxy/PgBbGpZKLRkPxAbQIUuAPEHXOqZsRhwX05WVhCIHzx68gSnRqB8O5AKQBKSAGIPoPhFoL4HBIMOaNF5JFcuAOKF6MEBVOMA9Q0ukAjUs4BQYkhECoIEkIFAg/dDDYeBfAIh2w9Ur0BMqkMPMgeohfOhBgQQsAiWSPAGHcig+3gMeQBNZYTAA2jogCy1Z8SRokAung9VRCkAWRiIK+guQBVQCj5AzalnITKOyAWg1HoQlHoZCWRIUBD2kxmEG4BJPJBgWQdUBPM2ufG0EaVkALkcmJN/YFMJyuHAnM4IzcAcpAQZ0KGF6PkoAGhZAzSosAUfP4m+AoVEINYiCGQRNLeDIu8iVE6fiIyJzRJHoG8u4CzrgJYlUBDxsBQWCI1b/PURtFSoh5ZxxIIL0HpoA8kVH1J55g9NCAJowXMBmj82YAsmrBaNtoIGvUUAAQYApBd2hzrzVVQAAAAASUVORK5CYII%3D";this.Xl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDJBOEJGMUUyN0IyMTFFMTlFOTNFMjNDNDUxOUFGMTciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDJBOEJGMUYyN0IyMTFFMTlFOTNFMjNDNDUxOUFGMTciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0MkE4QkYxQzI3QjIxMUUxOUU5M0UyM0M0NTE5QUYxNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0MkE4QkYxRDI3QjIxMUUxOUU5M0UyM0M0NTE5QUYxNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pj8crNUAAAFxSURBVHjavFbNbYMwGDU0A7BA2oxAj5EqlU7QZgKSY4+ZgDJBmgmAY09JN8ihUo7NBqVVBmCD9H3qc4UsnCBi8qQnGwN+fL/GU8TdePyCIQZHyg1KsPjYbmVf5VEkwzBV/SCH2MyjJYnqF6lPd/WN2HcYk2O4hMYfJEaHSwj5l7JocOTeBgzAd84j8J6jM6E5U16EQq69go8uXZeDO4po6DpLXQoVYNWwHlrWOwuFaBk79qomMRseyNbpLQK34BOYca1i3BaGS/+Bj9N989A2GaSKv8AlNw8Ys1WvBStfimfEZZ82K2yo732yYPHwlDGbnZMMTRbJZmvOA+06iM1tlnWJUcXMyYwMi7BBxHt5l0PSdF1qdAMztSUTv120oNJSP6rmyvhU4NtYlNB9TYHfsKmOulpU1l7WwZYamtQ69Q3nXU/KcsDelhgFu3B8HBU6JVcMdB9YI/UnVzL72e/frodDj9YEDn8glxB5lotfAQYAtCJqk8z+2M8AAAAASUVORK5CYII%3D";this.Yl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Q0FBOEM3Q0EyOTQ4MTFFMUFDMjBDMDlDMDQxRTYzMzkiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Q0FBOEM3Q0IyOTQ4MTFFMUFDMjBDMDlDMDQxRTYzMzkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBMENEMDM3NTI5NDgxMUUxQUMyMEMwOUMwNDFFNjMzOSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBMENEMDM3NjI5NDgxMUUxQUMyMEMwOUMwNDFFNjMzOSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Ptz3FgYAAAErSURBVHjaYmQAAhtLSwEgVQ/ECUAMYlMDfADiBUDceOT48Q+MUEv2A7EBA23ABSB2ZJaTlW0HMgIYaAckgJiDCRpctAYJLFjiBBS2E4GYn4pxJsCCRdAQGHkPoIlkIzT+KAZM6L6BWQICQPYBaoUdukUCQF/A4wzILqCWRaDk/R9HkmSgZpJnwiFuQKIlFwgpwEgMwHhhRObDfIxDvBAoPgFJDBTs/dhSKhMFoZGIbAnUMaAixxGaRahjEchQoA8MgNgBTfwCtIyjjkVAC0BBdB6Uz4Bs9Ly2kZpBh5z0HQglDiZaFGygaoEuFpGSj0YtGoEWgUrv91Rs+eBsETFhKy5oABaALGokppinsLnVyPzoyZMfwCbXSlCTCIg1oDS1GpAzoKX8B4AAAwAuBFgKFwVWUgAAAABJRU5ErkJggg%3D%3D";this.Zl="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.Wl="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDJBOEJGMTYyN0IyMTFFMTlFOTNFMjNDNDUxOUFGMTciIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDJBOEJGMTcyN0IyMTFFMTlFOTNFMjNDNDUxOUFGMTciPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDNTQyQTc3NTI3QjExMUUxOUU5M0UyM0M0NTE5QUYxNyIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDNTQyQTc3NjI3QjExMUUxOUU5M0UyM0M0NTE5QUYxNyIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PkQAqvIAAADoSURBVHjaYmEAAhtLSwEgVQ/ECUAMYlMDfADiBUDceOT48Q+MUEv2A7EBA23ABSB2ZJaTlW0HMgIYaAckgJiDCRpctAYJTFSME3xAgIlCAw4AcSAoDoBYEBjpjCCMTSELJZYADXUkVjElPppIimIWCpMtHACzyXt88U22j4DB9gA9wmkVdCQBcixqxJaykFJcIb18JEAvi+SxCYIK1f9kJgZGtFT3f8gmhlGLRi2i3KIPdLDnAwu0SVRAqk4SM/oCkI8a0esWGjS3GpkfPXnyA9jkWglqEgGxBpSmVgNyBhAnghqQAAEGADc+O4K5UN0FAAAAAElFTkSuQmCC";this.O=f.O;this.F.ob=-1;this.kf=!0;this.kb=new za;this.Bc=new Aa;this.io=new Ba;this.pn=new Ca;this.Vp=new Da;this.qn=function(){};this.vn=function(c){var d=this;d.Ia=c;d.O.ab="FlipView"==d.F.H;if(!d.O.document.DisableOverflow){d.Na=d.F.Ub?jQuery("#"+d.Ia).wrap("<div id='"+d.Ia+"_wrap' style='"+(d.O.ab?"position:absolute;z-index:50;":"")+"opacity:0;text-align:center;width:100%;position:absolute;z-index:100;top:-70px'></div>").parent():jQuery("#"+d.Ia).wrap("<div id='"+d.Ia+"_wrap' style='"+(d.O.ab?"position:absolute;z-index:50;":"")+"opacity:0;text-align:center;width:100%;'></div>").parent();jQuery("#"+d.Ia).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.Ic()&&600>d.O.Ic()&&!d.O.Zb&&!FLOWPAPER.getLocationHashParameter("DisablePreview");}c.PreviewMode=h;null!=d.O.config.document.UIConfig?d.fl(null!=d.O.config.document.UIConfig?d.O.config.document.UIConfig:"UI_Zine.xml",function(){d.Ng=!0;d.F.Zg&&d.F.Zg();}):d.Wj();d.O.PreviewMode&&(d.Rk(),d.lh());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.fl=function(c,d){var h=this;jQuery.ajax({type:"GET",url:c,dataType:"xml",error:function(){h.Wj();},success:function(c){h.Yc=c;c=eb.platform.touchonlydevice?"mobile":"desktop";!eb.platform.lb&&eb.platform.touchonlydevice&&0<jQuery(h.Yc).find("tablet").length&&(c="tablet");toolbar_el=jQuery(h.Yc).find(c).find("toolbar");var e=jQuery(h.Yc).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.Kc=null!=jQuery(e).attr("linkAlpha")?jQuery(e).attr("linkAlpha"):0.4;h.O.Kc=h.Kc;h.zf=null!=jQuery(e).attr("arrowSize")?jQuery(e).attr("arrowSize"):22;h.O.zf=h.zf;h.backgroundImage=jQuery(e).attr("backgroundImage");h.xj=null==jQuery(e).attr("stretchBackgroundImage")||null!=jQuery(e).attr("stretchBackgroundImage")&&"true"==jQuery(e).attr("stretchBackgroundImage");h.F.Ue=null==jQuery(e).attr("enablePageShadows")||null!=jQuery(e).attr("enablePageShadows")&&"true"==jQuery(e).attr("enablePageShadows");h.Ba=("true"==jQuery(e).attr("forceSinglePage")||(eb.platform.lb||eb.platform.ios||eb.platform.android)&&eb.browser.ph||h.F.Xe||h.vq)&&!(h.O.PreviewMode&&!eb.browser.ph);h.gb=jQuery(e).attr("panelColor");h.pb=null!=jQuery(e).attr("arrowColor")?jQuery(e).attr("arrowColor"):"#AAAAAA";h.Me=jQuery(e).attr("backgroundAlpha");h.ye=jQuery(e).attr("navPanelBackgroundAlpha");h.Mi=jQuery(e).attr("imageAssets");h.fb=!eb.platform.touchonlydevice&&(null==jQuery(e).attr("enableFisheyeThumbnails")||jQuery(e).attr("enableFisheyeThumbnails")&&"false"!=jQuery(e).attr("enableFisheyeThumbnails"))&&(!h.Ba||h.F.Xe)&&!h.F.config.document.RTLMode;h.kf="false"!=jQuery(e).attr("navPanelsVisible");h.sg="false"!=jQuery(e).attr("firstLastButtonsVisible");h.Gp=null!=jQuery(e).attr("startWithTOCOpen")&&"false"!=jQuery(e).attr("startWithTOCOpen");h.vf=null!=jQuery(e).attr("zoomDragMode")&&"false"!=jQuery(e).attr("zoomDragMode");h.Fr=null!=jQuery(e).attr("hideNavPanels")&&"false"!=jQuery(e).attr("hideNavPanels");h.yn=null!=jQuery(e).attr("disableMouseWheel")&&"false"!=jQuery(e).attr("disableMouseWheel");h.pg=null!=jQuery(e).attr("disableZoom")&&"false"!=jQuery(e).attr("disableZoom");h.tk=null!=jQuery(e).attr("disableSharingURL")&&"false"!=jQuery(e).attr("disableSharingURL");h.Ge=null!=jQuery(e).attr("flipAnimation")?jQuery(e).attr("flipAnimation"):"3D, Soft";h.Vc=null!=jQuery(e).attr("flipSpeed")?jQuery(e).attr("flipSpeed").toLowerCase():"medium";h.ub=h.ub&&!h.Ba;h.jn=null!=jQuery(e).attr("bindBindNavigationKeys")&&"false"!=jQuery(e).attr("bindBindNavigationKeys");h.Ai=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.xj?(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.Me?parseFloat(h.Me):1)+")";jQuery(h.O.L).css("background",f);jQuery(h.O.N).css("background",f);h.O.ab||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.Zj();jQuery(h.toolbar.K).children().css("display","none");h.ai=h.ea;h.bi=h.ea;h.Vh=h.ea;h.Og=h.ea;h.Ug=h.ea;h.di=h.ea;h.Vg=h.ea;h.ei=h.ea;h.Wg=h.ea;h.fi=h.ea;h.Xg=h.ea;h.gi=h.ea;h.Qg=h.ea;h.Xh=h.ea;h.Tg=h.ea;h.Zh=h.ea;h.Rg=h.ea;h.Yh=h.ea;h.Pg=h.ea;h.Wh=h.ea;var p="",t=null,f=0;jQuery(toolbar_el).attr("visible")&&"false"==jQuery(toolbar_el).attr("visible")?h.tf=!1:h.tf=!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.gb);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.Gg=!0:h.Gg=!1;jQuery(toolbar_el).attr("location")&&"bottom"==jQuery(toolbar_el).attr("location")&&(h.Fe=!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.gb),jQuery(jQuery(h.F.L).css("height",jQuery(h.F.L).height()-40+"px")));var q=1<eb.platform.Ya&&!eb.platform.touchonlydevice?"@2x":"";jQuery(jQuery(h.Yc).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.Mi+d+q+".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.Gg?jQuery(p).css("margin-top","0px"):jQuery(p).css("margin-top","2px");null!=t&&jQuery(p).insertAfter(t);t=jQuery(p);break;case"separator":p="#"+h.toolbar.Ia+"_"+jQuery(this).attr("id");jQuery(p).css("display","false"==jQuery(this).attr("visible")?"none":"block");jQuery(p).attr("src",h.Mi+"bar"+q+".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!=t&&jQuery(p).insertAfter(t);t=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.Gg?jQuery(p).css("margin-top","-5px"):jQuery(p).css("margin-top","-3px");null!=t&&jQuery(p).insertAfter(t);t=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!=t&&jQuery(p).insertAfter(t);eb.platform.touchonlydevice?jQuery(p).css("margin-top",jQuery(this).attr("marginTop")?jQuery(this).attr("marginTop")+"px":"7px"):h.Gg?jQuery(p).css("margin-top","-2px"):jQuery(p).css("margin-top","0px");t=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!=t&&jQuery(p).insertAfter(t),eb.platform.touchonlydevice?jQuery(p).css("margin-top",jQuery(this).attr("marginTop")?jQuery(this).attr("marginTop")+"px":"9px"):h.Gg?jQuery(p).css("margin-top","1px"):jQuery(p).css("margin-top","3px"),t=jQuery(p);}});h.O.outline=jQuery(jQuery(h.Yc).find("outline"));h.O.labels=jQuery(jQuery(h.Yc).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.Dq=!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.gb?jQuery(h.toolbar.K).css("background-color",h.gb):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.tf?jQuery(h.toolbar.K).css("visibility","visible"):jQuery(h.toolbar.K).hide();jQuery(jQuery(h.Yc).find("content")).find("page").each(function(){var c=jQuery(this);jQuery(this).find("link").each(function(){h.F.addLink(jQuery(c).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(){h.F.addVideo(jQuery(c).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(){h.F.Yj(jQuery(c).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(){h.F.addImage(jQuery(c).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"));});});h.jn&&jQuery(window).bind("keydown",function(c){!c||Mouse.down||jQuery(c.target).hasClass("flowpaper_zoomSlider")||"INPUT"==jQuery(c.target).get(0).tagName||h.F.pages.animating||(h.O.pages.je()||h.O.pages&&h.O.pages.animating)&&!h.eh||("37"==c.keyCode?h.O.previous():"39"==c.keyCode&&h.O.next());});d&&d();}});};this.lh=function(){this.F.N.find(".flowpaper_fisheye").hide();};this.uj=function(){this.pk();};this.Rk=function(){this.F.PreviewMode||jQuery(this.O.L).css("padding-top","20px");jQuery("#"+this.Ia).hide();};this.Ap=function(){jQuery(this.O.L).css("padding-top","0px");jQuery("#"+this.Ia).show();};this.Wj=function(){this.Ba=eb.platform.lb&&!this.O.PreviewMode;this.vf=!0;this.fb=!eb.platform.touchonlydevice;this.ye=1;this.F.Ue=!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.gb=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.gb?jQuery(this.toolbar.K).css("background-color",this.gb):eb.platform.touchonlydevice?jQuery(this.toolbar.K).addClass("flowpaper_toolbarios_gradients"):jQuery(this.toolbar.K).css("background-color","#555555");this.Zj();this.Ng=!0;this.F.Zg&&this.F.Zg();};this.Zj=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.kn,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.Vh,d)+String.format("<img src='{0}' class='flowpaper_bttnSinglePage flowpaper_tbbutton_large flowpaper_singlepage flowpaper_viewmode' style='margin-left:{1}px;'>",this.Ug,c)+String.format("<img src='{0}' style='margin-left:{1}px;' class='flowpaper_tbbutton_large flowpaper_thumbview flowpaper_bttnThumbView flowpaper_viewmode' >",this.Vg,c)+"":"")+(this.toolbar.O.config.document.ZoomToolsVisible?String.format("<img class='flowpaper_tbbutton_large flowpaper_bttnZoomIn' src='{0}' style='margin-left:{1}px;' />",this.Wg,d)+String.format("<img class='flowpaper_tbbutton_large flowpaper_bttnZoomOut' src='{0}' style='margin-left:{1}px;' />",this.Xg,c)+String.format("<img class='flowpaper_tbbutton_large flowpaper_bttnFullscreen' src='{0}' style='margin-left:{1}px;' />",this.Qg,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.Tg,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.Rg)+"":"")+(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?"🔍":"")+String.format("<img src='{0}' class='flowpaper_bttnFind flowpaper_find flowpaper_tbbutton_large' style=''/>",this.Pg)+"":"")+String.format("<img src='{0}' id='{1}' class='flowpaper_bttnMore flowpaper_tbbutton_large' style='display:none' />",this.mn,this.ln));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.Mp)+(this.F.document.PDFFile&&0<this.F.document.PDFFile.length&&!c?String.format("<img src='{0}' class='flowpaper_bttnDownload flowpaper_tbbutton download'/>",this.Ip):"")+String.format("<img src='{0}' id='{1}' class='flowpaper_tbseparator' />",this.lg,this.en)+(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.wb?"flowpaper_tbbutton_pressed":"",this.Pp)+String.format("<img src='{1}' class='flowpaper_tbbutton {0} flowpaper_bttnSinglePage flowpaper_singlepage flowpaper_tbbuttonviewmode flowpaper_viewmode' />","Portrait"==this.O.wb?"flowpaper_tbbutton_pressed":"",this.Hp)+String.format("<img src='{0}' id='{1}' class='flowpaper_tbseparator' />",this.lg,this.hn):"")+(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.Sl:"","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.Jp):"")+(this.O.config.document.NavToolsVisible?String.format("<img src='{0}' class='flowpaper_tbbutton flowpaper_previous flowpaper_bttnPrevPage'/>",this.Lp)+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.Np)+String.format("<img src='{0}' id='{1}' class='flowpaper_tbseparator' />",this.lg,this.dn):"")+(this.O.config.document.CursorToolsVisible?String.format("<img style='margin-top:5px;margin-left:6px;' src='{0}' class='flowpaper_tbbutton flowpaper_bttnTextSelect'/>",this.Op)+String.format("<img style='margin-top:4px;' src='{0}' class='flowpaper_tbbutton flowpaper_tbbutton_pressed flowpaper_bttnHand'/>",this.Kp)+String.format("<img src='{0}' id='{1}' class='flowpaper_tbseparator' />",this.lg,this.cn):"")+(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.Qp):"")+String.format("<img src='{0}' id='{1}' class='flowpaper_tbseparator' />",this.lg,this.gn));}};this.nk=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,t=jQuery(c.toolbar.K).children();jQuery(c.toolbar.K).last();jQuery(c.Na).find(".toolbarMore").css({"margin-right":l+"px","margin-left":l+"px"});t.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(),t.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 focus",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(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.bi!=c.ea&&jQuery(this).attr("src",c.bi);}),jQuery(c.toolbar.K).find(".flowpaper_bttnPrint").on("mouseup touchend",function(){c.ai!=c.ea&&jQuery(this).attr("src",c.ai);}),jQuery(c.toolbar.K).find(".flowpaper_bttnBookView").on("mousedown touchstart",function(){c.Og!=c.ea&&jQuery(this).attr("src",c.Og);}),jQuery(c.toolbar.K).find(".flowpaper_bttnBookView").on("mouseup touchend",function(){c.Og!=c.ea&&jQuery(this).attr("src",c.Vh);}),jQuery(c.toolbar.K).find(".flowpaper_bttnSinglePage").on("mousedown touchstart",function(){c.di!=c.ea&&jQuery(this).attr("src",c.di);}),jQuery(c.toolbar.K).find(".flowpaper_bttnSinglePage").on("mouseup touchend",function(){c.Ug!=c.ea&&jQuery(this).attr("src",c.Ug);}),jQuery(c.toolbar.K).find(".flowpaper_bttnThumbView").on("mousedown touchstart",function(){c.ei!=c.ea&&jQuery(this).attr("src",c.ei);}),jQuery(c.toolbar.K).find(".flowpaper_bttnThumbView").on("mouseup touchend",function(){c.Vg!=c.ea&&jQuery(this).attr("src",c.Vg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnZoomIn").on("mousedown touchstart",function(){c.fi!=c.ea&&jQuery(this).attr("src",c.fi);}),jQuery(c.toolbar.K).find(".flowpaper_bttnZoomIn").on("mouseup touchend",function(){c.Wg!=c.ea&&jQuery(this).attr("src",c.Wg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnZoomOut").on("mousedown touchstart",function(){c.gi!=c.ea&&jQuery(this).attr("src",c.gi);}),jQuery(c.toolbar.K).find(".flowpaper_bttnZoomOut").on("mouseup touchend",function(){c.Xg!=c.ea&&jQuery(this).attr("src",c.Xg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnFullscreen").on("mousedown touchstart",function(){c.Xh!=c.ea&&jQuery(this).attr("src",c.Xh);}),jQuery(c.toolbar.K).find(".flowpaper_bttnFullscreen").on("mouseup touchend",function(){c.Qg!=c.ea&&jQuery(this).attr("src",c.Qg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnPrevPage").on("mousedown touchstart",function(){c.Zh!=c.ea&&jQuery(this).attr("src",c.Zh);}),jQuery(c.toolbar.K).find(".flowpaper_bttnPrevPage").on("mouseup touchend",function(){c.Tg!=c.ea&&jQuery(this).attr("src",c.Tg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnNextPage").on("mousedown touchstart",function(){c.Yh!=c.ea&&jQuery(this).attr("src",c.Yh);}),jQuery(c.toolbar.K).find(".flowpaper_bttnNextPage").on("mouseup touchend",function(){c.Rg!=c.ea&&jQuery(this).attr("src",c.Rg);}),jQuery(c.toolbar.K).find(".flowpaper_bttnFind").on("mousedown touchstart",function(){c.Wh!=c.ea&&jQuery(this).attr("src",c.Wh);}),jQuery(c.toolbar.K).find(".flowpaper_bttnFind").on("mouseup touchend",function(){c.Pg!=c.ea&&jQuery(this).attr("src",c.Pg);})):(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",function(){c.O.pages.re(!0);});jQuery(c.toolbar.K).find(".flowpaper_bttnZoomOut").bind("click",function(){c.O.pages.nd();});0==c.F.N.find(".flowpaper_socialsharedialog").length&&(c.tk?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' /> <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='<{10}>' 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.am,c.$l,c.Wl,c.Xl,c.Zl,c.Yl,c.F.toolbar.la(c.F.toolbar.Ka,"CopyUrlToPublication","Copy URL to publication"),c.F.toolbar.la(c.F.toolbar.Ka,"DefaultStartPage","Default start page"),c.F.toolbar.la(c.F.toolbar.Ka,"ShareOnSocialNetwork","Share on Social Network"),c.F.toolbar.la(c.F.toolbar.Ka,"ShareOnSocialNetworkDesc","You can easily share this publication to social networks. Just click on the appropriate button below."),c.F.toolbar.la(c.F.toolbar.Ka,"SharingTitle","Sharing Title"),c.F.toolbar.la(c.F.toolbar.Ka,"EmbedOnSite","Embed on Site"),c.F.toolbar.la(c.F.toolbar.Ka,"EmbedOnSiteDesc","Use the code below to embed this publication to your website."),c.F.toolbar.la(c.F.toolbar.Ka,"EmbedOnSiteMiniature","Linkable Miniature"),c.F.toolbar.la(c.F.toolbar.Ka,"EmbedOnSiteFull","Full Publication"),c.F.toolbar.la(c.F.toolbar.Ka,"Share","Share"),c.F.toolbar.la(c.F.toolbar.Ka,"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' /> <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='<{10}>' 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 /> {13} <input type='radio' name='InsertCode' class='flowpaper_radio_fullembed' /> {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.am,c.$l,c.Wl,c.Xl,c.Zl,c.Yl,c.F.toolbar.la(c.F.toolbar.Ka,"CopyUrlToPublication","Copy URL to publication"),c.F.toolbar.la(c.F.toolbar.Ka,"DefaultStartPage","Default start page"),c.F.toolbar.la(c.F.toolbar.Ka,"ShareOnSocialNetwork","Share on Social Network"),c.F.toolbar.la(c.F.toolbar.Ka,"ShareOnSocialNetworkDesc","You can easily share this publication to social networks. Just click on the appropriate button below."),c.F.toolbar.la(c.F.toolbar.Ka,"SharingTitle","Sharing Title"),c.F.toolbar.la(c.F.toolbar.Ka,"EmbedOnSite","Embed on Site"),c.F.toolbar.la(c.F.toolbar.Ka,"EmbedOnSiteDesc","Use the code below to embed this publication to your website."),c.F.toolbar.la(c.F.toolbar.Ka,"EmbedOnSiteMiniature","Linkable Miniature"),c.F.toolbar.la(c.F.toolbar.Ka,"EmbedOnSiteFull","Full Publication"),c.F.toolbar.la(c.F.toolbar.Ka,"Share","Share"),c.F.toolbar.la(c.F.toolbar.Ka,"StartOnCurrentPage","Start on current page"))));c.F.N.find(".flowpaper_radio_miniature, .flowpaper_radio_fullembed, .flowpaper_ddlSharingOptions").on("change",function(){c.Jh();});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.Jh();});c.Jh();jQuery(c.toolbar.K).find(".flowpaper_bttnSocialShare").bind("click",function(){c.Jh();jQuery("#modal-socialshare").css("background-color","#dedede");jQuery("#modal-socialshare").smodal({minHeight:c.tk?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",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",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.Ye(!1))+"&text="+escape(c.kh()),"_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.Ye(!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.Ye(!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.kh())+"&url="+escape(c.Ye(!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.Ye(!1))+"&title="+escape(c.kh()),"_flowpaper_exturl");c.F.L.trigger("onSocialMediaShareClicked","LinkedIn");});};this.Jh=function(){this.F.N.find(".flowpaper_txtEmbedCode").val('<iframe frameborder="0" width="400" height="300" title="'+this.kh()+'" src="'+this.Ye()+'" type="text/html" scrolling="no" marginwidth="0" marginheight="0" allowFullScreen></iframe>');this.F.N.find(".flowpaper_socialsharing_txtUrl").val(this.Ye(!1));};this.kh=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.Ye=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.ub=c.I.ki();c.I.eh=!1;c.I.ub||(c.renderer.$g=!0);eb.platform.ios&&8>eb.platform.iosversion&&(c.I.ub=!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.Xe=!0),"Flip-SinglePage"!=c.config.document.InitViewMode||(eb.platform.lb||eb.platform.ios||eb.platform.android)&&eb.browser.ph||(c.Xe=!0),c.wb="FlipView",c.config.document.MinZoomSize=1,c.H=c.wb,"TwoPage"==c.H&&(c.H="FlipView"),c.scale=1;}c.config.document.kl=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.Zb&&(jQuery(".activeElement-label").remove(),jQuery(".activeElement").removeClass("activeElement"));c.T&&c.rn();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.Zb&&window.history.replaceState(null,null,f+"#page="+h+k);if(jQuery(this).data("TrackingNumber")&&window.createTimeSpent&&!c.Zb&&!W()){f=(-1<document.location.pathname.indexOf(".html")?document.location.pathname.substr(0,document.location.pathname.lastIndexOf(".html"))+"/":document.location.pathname)+"#page="+h;FLOWPAPER.ic||(FLOWPAPER.ic=[]);for(var l in FLOWPAPER.ic){FLOWPAPER.ic[l]&&(FLOWPAPER.ic[l].end(),FLOWPAPER.ic[l]=null);}FLOWPAPER.ic[f]||(FLOWPAPER.ic[f]=createTimeSpent(),FLOWPAPER.ic[f].init({location:f,gaTracker:"FlowPaperEventTracker"}));}});window.addEventListener("beforeunload",function(){FLOWPAPER.ic||(FLOWPAPER.ic=[]);for(var c in FLOWPAPER.ic){FLOWPAPER.ic[c]&&(FLOWPAPER.ic[c].end(),FLOWPAPER.ic[c]=null);}});};this.Up=function(d){eb.platform.touchonlydevice?c.switchMode("SinglePage",d):c.switchMode("Portrait",d);};FlowPaperViewer_HTML.prototype.jj=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.gb?d.I.gb:"#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.Xm(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.Bk)))*d.zk+d.Jb;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=jQuery(this).context.dataset&&1==jQuery(this).context.dataset.pageindex?d.gh/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.xi=c.pageX,d.yi=c.pageY,d.ne=c.target,jQuery(d.ne).get(0),d.Rl(),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.ne=c.target,d.xi=c.pageX,d.yi=c.pageY,jQuery(d.ne).get(0),d.zi=!0,d.sl());});});jQuery(d.T).bind("mouseleave",function(){d.T.find("li").each(function(){var c=this;requestAnim(function(){jQuery(c).find("a").css({width:d.Jb,top:d.Jb/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.Lb)&&d.ne)){d.ne=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.Jb/3});jQuery(this).find("a").find("canvas").css({height:e,width:c,top:d.Jb/3});});}});}d.ob=c;};FlowPaperViewer_HTML.prototype.rn=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;ka(c.da,c.ob-20,c.ob+20)?c.qh(d):(c.jj(c.da-c.da%20-1+20),window.setTimeout(function(){c.zc=(c.ob-20+1)/2+1;c.bg=c.zc+9;0>c.getTotalPages()-c.ob&&(c.bg=c.bg+(c.getTotalPages()-c.ob)/2+(c.ob-c.getTotalPages())%2);c.zc<=c.getTotalPages()&&c.renderer.me(c,c.zc,2*c.Kd);},300));}};FlowPaperViewer_HTML.prototype.qh=function(c){var d=this;0!=c&&d.jj(d.ob+c);window.setTimeout(function(){d.zc=(d.ob-20+1)/2+1;d.bg=d.zc+9;0>d.getTotalPages()-d.ob&&(d.bg=d.bg+(d.getTotalPages()-d.ob)/2+(d.ob-d.getTotalPages())%2);d.zc<=d.getTotalPages()&&d.renderer.me(d,d.zc,2*d.Kd);},300);};FlowPaperViewer_HTML.prototype.Xm=function(c){var d=0==i?1:2*i+1,h=this;if(h.T){var f=null!=h.I.gb?h.I.gb:"#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=" "+d+" ":d==h.getTotalPages()&&0==h.getTotalPages()%2?k=(d-1).toString():d>h.getTotalPages()?k=(d-1).toString():k=d-1+"-"+d:k=" "+c+" ";k=h.toolbar.zd(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.Df,0.8*h.Kd,h.gh,k,d,c,h.Jb,1==d?h.gh:0,h.Jb/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.pk=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].na/c.getDimensions(0)[0].za-0.3);c.rr=25;c.Kd=0.25*c.L.height();c.gh=0.41*c.Kd;c.Df=jQuery(c.L).offset().top+jQuery(c.pages.J).height()-c.N.offset().top+c.nc;c.Bk=1.25*c.Kd;c.Jb=c.Kd/(3.5-d);c.Ln=2.5*c.Jb;c.Mn=-(c.Jb/3);d=null!=c.I.gb?c.I.gb:"#555555";c.I.ye&&(d=R(d),d="rgba("+d.r+","+d.g+","+d.b+","+c.I.ye+")");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.Fe||!c.I.tf?"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.Df,0.8*c.Kd,c.gh,c.Mn)));c.T=c.N.find(".flowpaper_fisheye");c.T.css({top:c.Df-(c.T.find(".flowpaper_fisheye_panelLeft").offset().top-jQuery(c.T).offset().top)+c.T.find(".flowpaper_fisheye_panelLeft").height()/2});c.zk=c.Ln-c.Jb;c.xi=-1;c.yi=-1;c.wi=!1;c.zi=!1;c.tg=c.Jb-0.4*c.Jb;c.qr=c.tg/c.Jb;c.T.find(".flowpaper_fisheye_panelLeft").bind("mousedown",function(){c.qh(-20);});c.T.find(".flowpaper_fisheye_panelRight").bind("mousedown",function(){c.qh(20);});36<c.tg&&(c.tg=36);c.T.find(".flowpaper_fisheye_panelLeft").css({opacity:0,height:c.tg+"px",top:"-10px"});c.T.find(".flowpaper_fisheye_panelRight").css({height:c.tg+"px",top:"-10px"});c.T.css({top:c.Df-(c.T.find(".flowpaper_fisheye_panelLeft").offset().top-jQuery(c.T).offset().top)+c.T.find(".flowpaper_fisheye_panelLeft").height()/3});c.fh=30<c.T.find(".flowpaper_fisheye_panelLeft").height()?11:0.35*c.T.find(".flowpaper_fisheye_panelLeft").height();c.T.find(".flowpaper_fisheye_leftArrow").Be(c.fh,c.I.pb?c.I.pb:"#AAAAAA");c.T.find(".flowpaper_fisheye_rightArrow").wd(c.fh,c.I.pb?c.I.pb:"#AAAAAA");jQuery(c).unbind("onThumbPanelThumbAdded");jQuery(c).bind("onThumbPanelThumbAdded",function(d,g){var f=c.T.find(String.format('*[data-thumbIndex="{0}"]',g.rf));f.data("pageIndex");var l=(g.rf-1)%10;f&&f.animate({opacity:1},300);c.zc<c.bg&&(c.ob-20+1)/2+l+2>c.zc&&(c.Xp?(c.zc++,c.Xp=!1):c.zc=(c.ob-20+1)/2+l+2,c.zc<=c.getTotalPages()&&c.renderer.me(c,c.zc,2*c.Kd));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.jj(19);c.PreviewMode||c.qh(0);1!=c.scale&&c.T.animate({opacity:0},0);c.Qa&&c.I.Fh();c.$a&&c.I.Ql();}};this.zh=function(){c.I.nk();if("FlipView"==c.H&&window.zine){c.nc=c.ab&&!c.I.Fe?c.I.Na.height():0;c.Ub&&c.ab&&(c.nc=5);c.document.StartAtPage&&!c.Mg&&(c.Mg=0==c.document.StartAtPage%2||c.I.Ba?c.document.StartAtPage:c.document.StartAtPage-1);c.cg=!1;var d=1400;"very fast"==c.I.Vc&&(d=300);"fast"==c.I.Vc&&(d=700);"slow"==c.I.Vc&&(d=2300);"very slow"==c.I.Vc&&(d=6300);c.em=600;c.ta=jQuery(c.pages.J).turn({gradients:!eb.platform.android,acceleration:!0,elevation:50,duration:d,page:c.Mg?c.Mg:1,display:c.I.Ba?"single":"double",pages:c.getTotalPages(),cornerDragging:c.document.EnableCornerDragging,disableCornerNavigation:c.I.ub,when:{turning:function(d,e){c.pages.animating=!0;c.pages.Wf=null;c.pages.R=0!=e%2||c.I.Ba?e:e+1;c.pages.R>c.getTotalPages()&&(c.pages.R=c.pages.R-1);if(1!=e||c.I.Ba){c.I.Ba?c.I.Ba&&c.nc&&jQuery(c.pages.J+"_parent").transition({x:0,y:c.nc},0):jQuery(c.pages.J+"_parent").transition({x:0,y:c.nc},c.em,"ease",function(){});}else{var g=c.cg?c.em:0;jQuery(c.pages.J+"_parent").transition({x:-(c.pages.md()/4),y:c.nc},g,"ease",function(){});}c.da=1<e?c.pages.R:e;c.renderer.le&&c.cg&&c.pages.ef(e-1);c.renderer.le&&c.cg&&c.pages.ef(e);"FlipView"==c.H&&(!c.pages.pages[e-1]||c.pages.pages[e-1].uc||c.pages.pages[e-1].pa||(c.pages.pages[e-1].uc=!0,c.pages.pages[e-1].Sc()),e<c.getTotalPages()&&c.pages.pages[e]&&!c.pages.pages[e].uc&&!c.pages.pages[e].pa&&(c.pages.pages[e].uc=!0,c.pages.pages[e].Sc()));},turned:function(d,e){c.I.ub&&c.ta?c.pages.je()||(c.ta.css({opacity:1}),c.Sf?(c.cg=!0,c.pages.animating=!1,c.Hc(e),c.pages.jc(),c.L.trigger("onCurrentPageChanged",e),null!=c.ae&&(c.ae(),c.ae=null)):jQuery("#"+c.pages.Qb).animate({opacity:0.5},{duration:50,always:function(){jQuery("#"+c.pages.Qb).animate({opacity:0},{duration:50,always:function(){jQuery("#"+c.pages.Qb).css("z-index",-1);c.cg=!0;c.pages.animating=!1;c.Hc(e);c.pages.jc();c.L.trigger("onCurrentPageChanged",e);null!=c.ae&&(c.ae(),c.ae=null);}});}})):(c.cg=!0,c.pages.animating=!1,c.Hc(e),c.pages.jc(),c.L.trigger("onCurrentPageChanged",e),null!=c.ae&&(c.ae(),c.ae=null));},pageAdded:function(d,e){var g=c.pages.getPage(e-1);g.Vk();c.I.Bc.lo(g);},foldedPageClicked:function(d,e){0<c.N.find(".simplemodal-container").length||c.fj||(c.pages.je()||c.pages.animating)&&!c.I.eh||c.Qa||c.$a||requestAnim(function(){window.clearTimeout(c.Sf);c.Sf=null;e>=c.pages.R&&e<c.getTotalPages()?c.pages.Ej("next"):c.pages.Ej("previous");});},destroyed:function(){c.An&&c.L.parent().remove();}}});jQuery(c.ta).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.Me?parseFloat(this.Me):1)+")",jQuery(this.O.L).css("background",d),this.O.ab||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.uj&&c.I.fb?(c.I.pk(),c.PreviewMode&&c.I.lh()):(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.Ai&&"None"!=d.I.Ai&&(d.bj&&d.bj.remove(),window.setTimeout(function(){d.bj=new pa(d.I.Mi+"../sounds/"+d.I.Ai+".mp3");d.bj.start();},200));var e=arguments[0],g=2==arguments.length?arguments[1]:null;!d.I.ub||"next"!=e&&"previous"!=e||d.Qa||d.$a?(jQuery("#"+d.pages.Qb).css("z-index",-1),d.ta&&(1==arguments.length&&d.ta.turn(arguments[0]),2==arguments.length&&d.ta.turn(arguments[0],arguments[1]))):!d.pages.je()&&!d.pages.animating||d.I.eh?requestAnim(function(){window.clearTimeout(d.Sf);d.Sf=null;d.pages.Ej(e,g);}):(window.clearTimeout(d.Sf),d.Sf=window.setTimeout(function(){d.turn(e,g);},500));};FlowPaperViewer_HTML.prototype.sl=function(){var c=this;c.wi||(c.wi=!0,c.yk&&window.clearTimeout(c.yk),c.yk=requestAnim(function(){c.Kn(c);},40));};FlowPaperViewer_HTML.prototype.Kn=function(c){c.Rl();c.wi=!1;c.zi&&(c.zi=!1,c.sl());};FlowPaperViewer_HTML.prototype.Rl=function(){var c=this;c.T.find("li").each(function(){var d=c.ne;if(!(eb.browser.msie||eb.browser.safari&&5>eb.browser.Lb)||c.ne){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.Jb,top:c.Jb/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.xi,c.yi),d=(1-Math.min(1,Math.max(0,d/c.Bk)))*c.zk+c.Jb,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.Lb?(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.Nr=c.ne):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.Gp&&c.expandOutline();};this.dispose=function(){c.ta.turn("destroy");delete c.ta;};this.Dg=function(){c.ta=null;};this.switchMode=function(d,g){c.ta&&c.ta.turn("destroy");c.ta=null;"Portrait"==d||"SinglePage"==d?(c.Vd=c.L.height(),c.Vd=c.Vd-jQuery(c.K).outerHeight()+20,c.L.height(c.Vd)):(c.Mg=0!=g%2?g-1:g,c.Vd=null,c.L.css({left:"0px",top:"0px",position:"relative",width:c.L.parent().width()+"px",height:c.L.parent().height()+"px"}),c.bk());"FlipView"==c.H&&"FlipView"!=d&&(c.config.document.MinZoomSize=1,jQuery(c.pages.J).turn("destroy"),c.T&&c.T.remove());c.pages.ce&&c.pages.Id&&c.pages.Id();"FlipView"!=d&&c.config.document.kl&&(c.config.document.MinZoomSize=c.config.document.kl);"FlipView"==d&&(c.scale=1,c.H="FlipView",c.I.ub=c.I.ki());};this.ki=function(){return c.config.document.EnableWebGL&&!eb.platform.lb&&!eb.platform.android&&!eb.browser.ph&&!c.I.Ba&&eb.browser.capabilities.jq&&"Flip-SinglePage"!=c.config.document.InitViewMode&&window.THREE;};this.gotoPage=function(d,g){"FlipView"==c.H&&c.pages.ao(d,g);};this.Hc=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.ro),c.ro=setTimeout(function(){0!=parseInt(d)%2&&(d=d-1);var g=[d-1];1<d&&parseInt(d)+1<=c.document.numPages&&!c.Ba&&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.Kc}),jQuery(".flowpaper_mark_link, .pdfPageLink_"+g[h]).animate({opacity:0},{duration:1700,complete:function(){}});}},100));}};this.Fh=function(){this.F.T&&(this.Ak=this.F.T.css("margin-left"),this.F.T.animate({"margin-left":parseFloat(this.F.T.css("margin-left"))+0.5*this.F.Qa.width()+"px"},200));};this.Ql=function(){this.F.T&&(this.Ak=this.F.T.css("margin-left"),this.F.T.animate({"margin-left":parseFloat(this.F.T.css("margin-left"))+0.5*this.F.$a.width()+"px"},200));};this.Lf=function(){this.F.T&&this.F.T.animate({"margin-left":parseFloat(this.Ak)+"px"},200);};this.resize=function(d,g,h,f){if(!$(".flowpaper_videoframe").length||!eb.platform.ios){if(c.nc=c.ab&&!c.I.Fe?c.I.Na.height():0,c.I.nk(),"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.Qa||c.$a)&&(c.L.data("pct-width",c.L.get(0).style.width),k=!1);l&&(c.Qa||c.$a)&&(c.L.data("pct-height",c.L.get(0).style.height),l=!1);k||!c.L.data("pct-width")||c.Qa||c.$a||(c.L.css("width",c.L.data("pct-width")),k=!0);l||!c.L.data("pct-height")||c.Qa||c.$a||(c.L.css("height",c.L.data("pct-height")),l=!0);c.L.css({width:k?c.L.get(0).style.width:d-(c.Qa?c.Qa.width():0)-(c.$a?c.$a.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.Fe&&jQuery(jQuery(c.L).css("height",jQuery(c.L).height()-40+"px"))):null!=h&&1!=h||c.N.css({width:d+(c.Qa?c.Qa.width():0)+(c.$a?c.$a.width():0),height:g+37}));c.pages.resize(d,g,f);c.T&&c.L&&(c.Df=jQuery(c.L).offset().top+jQuery(c.pages.J).height()-jQuery(c.N).offset().top+c.nc,c.T.css({top:c.Df-(c.T.find(".flowpaper_fisheye_panelLeft").offset().top-jQuery(c.T).offset().top)+c.T.find(".flowpaper_fisheye_panelLeft").height()/2}),c.Kd=0.25*c.L.height());for(d=0;d<c.document.numPages;d++){c.pages.Ua(d)&&(c.pages.pages[d].Bl=!0,c.pages.pages[d].pa=!1);}window.clearTimeout(c.kq);c.kq=setTimeout(function(){c.jc();c.pages.Ea();},350);}}};this.setCurrentCursor=function(){};this.sp=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",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.Me=d),"stretchBackground"==c&&(h.xj=d),"backgroundImage"==c&&(h.backgroundImage=d),h.backgroundImage){FLOWPAPER.authenticated&&(h.backgroundImage=FLOWPAPER.appendUrlParameter(h.backgroundImage,FLOWPAPER.authenticated.getParams())),h.xj?(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.Me?parseFloat(h.Me):1)+")";jQuery(h.O.L).css("background",f);jQuery(h.O.N).css("background",f);h.O.ab||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");}}}}if("panelColor"==c||"navPanelBackgroundAlpha"==c){"panelColor"==c&&(h.gb=d),"navPanelBackgroundAlpha"==c&&(h.ye=d),h.gb?(jQuery(h.toolbar.K).css("background-color",h.gb),jQuery(h.toolbar.K).css("border-color",h.gb),h.Fe&&jQuery(h.toolbar.K+"_wrap").css("background-color",h.gb)):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.gb),jQuery(h.F.pages.J+"_panelLeft").css("background-color","rgba("+f.r+","+f.g+","+f.b+","+h.ye+")"),jQuery(h.F.pages.J+"_panelRight").css("background-color","rgba("+f.r+","+f.g+","+f.b+","+h.ye+")");}"linkColor"==c&&(h.linkColor=d,h.O.linkColor=h.linkColor,jQuery("a.flowpaper_interactiveobject_documentViewer").css("background-color",h.linkColor),h.Hc(h.O.getCurrPage()));"linkAlpha"==c&&(h.Kc=d,h.O.Kc=h.Kc,jQuery("a.flowpaper_interactiveobject_documentViewer").css("opacity",h.Kc),h.Hc(h.O.getCurrPage()));"arrowColor"==c&&(h.O.pb=d,h.O.I.pb=d,h.O.T.find(".flowpaper_fisheye_leftArrow").Be(h.O.fh,h.O.I.pb?h.O.I.pb:"#AAAAAA"),h.O.T.find(".flowpaper_fisheye_rightArrow").wd(h.O.fh,h.O.I.pb?h.O.I.pb:"#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").Be(f,h.O.pb),jQuery(h.O.pages.J+"_arrowright").wd(f,h.O.pb),h.O.I.sg&&(f=jQuery(h.O.pages.J+"_arrowleftbottom").css("border-bottom"),f=f.substr(0,f.indexOf("px")),jQuery(h.O.pages.J+"_arrowleftbottom").Be(f,h.O.pb),jQuery(h.O.pages.J+"_arrowleftbottommarker").hj(f,h.O.pb,jQuery(h.O.pages.J+"_arrowleftbottom")),jQuery(h.O.pages.J+"_arrowrightbottom").wd(f,h.O.pb),jQuery(h.O.pages.J+"_arrowrightbottommarker").ij(f,h.O.pb,jQuery(h.O.pages.J+"_arrowrightbottom"))));"enablePageShadows"==c&&(h.O.Ue=d,h.O.Ue?(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")),jQuery(window).trigger("resize"));if("arrowSize"==c){h.O.I.zf=h.O.pages.ia=h.O.zf=d;jQuery(window).trigger("resize");var f=h.O.pages,k=h.O.I.pb?h.O.I.pb:"#AAAAAA",l=f.$e();jQuery(f.J+"_arrowleft").Be(f.ia-0.4*f.ia,k);jQuery(f.J+"_arrowright").wd(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.Gn=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.sg=d,h.O.I.sg?(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.$e(),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.tf=d;h.O.pages.Fb=h.O.Ub&&!h.O.I.fb||0==k?(h.L.height()-f)/2:0;h.O.pages.Fb=0==h.O.pages.Fb&&h.O.ab&&!h.O.Ub&&0<k&&!h.O.I.fb?(h.L.height()-f)/2-k:h.O.pages.Fb;h.O.ab||h.O.I.fb?0<h.O.pages.Fb&&!h.O.I.fb&&jQuery(h.O.pages.J+"_parent").css("padding-top",h.O.pages.Fb+"px"):jQuery(h.O.pages.J+"_parent").css("margin-top","2.5%");jQuery(window).trigger("resize");}"navPanelsVisible"==c&&(h.kf=d,h.kf?(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.fb=d,f=h.O.pages.$e(),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.Fb=h.O.Ub&&!h.O.I.fb||0==k?(h.L.height()-f)/2:0,h.O.pages.Fb=0==h.O.pages.Fb&&h.O.ab&&!h.O.Ub&&0<k&&!h.O.I.fb?(h.L.height()-f)/2-k:h.O.pages.Fb,h.O.ab||h.O.I.fb?0<h.O.pages.Fb&&!h.O.I.fb?(jQuery(h.O.pages.J+"_parent").css("margin-top",""),jQuery(h.O.pages.J+"_parent").css("padding-top",h.O.pages.Fb+"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.fb?jQuery(".flowpaper_fisheye").css("visibility",""):jQuery(".flowpaper_fisheye").css("visibility","hidden"),jQuery(window).trigger("resize"));};window[this.O.ff].setStyleSetting=this.sp;FLOWPAPER.setStyleSetting=function(c,d){$FlowPaper("documentViewer").setStyleSetting(c,d);};window[this.O.ff].enableDisableUIControl=this.Gn;FLOWPAPER.enableDisableUIControl=function(c,d){$FlowPaper("documentViewer").enableDisableUIControl(c,d);};window[this.O.ff].changeConfigSetting=this.qn;window[this.O.ff].loadUIConfig=function(c){var d=this;jQuery("#"+d.Ia+"_wrap").remove();d.Toolbar=d.N.prepend("<div id='"+d.Ia+"' class='flowpaper_toolbarstd' style='z-index:200;overflow-y:hidden;overflow-x:hidden;'></div>").parent();d.I.Na=d.Ub?jQuery("#"+d.Ia).wrap("<div id='"+d.Ia+"_wrap' style='"+(d.ab?"position:absolute;z-index:50;":"")+"text-align:center;width:100%;position:absolute;z-index:100;top:-70px'></div>").parent():jQuery("#"+d.Ia).wrap("<div id='"+d.Ia+"_wrap' style='"+(d.ab?"position:absolute;z-index:50;":"")+"text-align:center;width:100%;'></div>").parent();d.I.fl(c,function(){d.toolbar.bindEvents(d.L);d.toolbar.yc=null;d.toolbar.ak(d.config.document.MinZoomSize,d.config.document.MaxZoomSize);});};};window.FlowPaper_Resources=function(f){this.F=f;this.ka={};this.ka.lq="";this.ka.Nm="";this.ka.Jm="";this.ka.vm="";this.ka.Mm="";this.ka.Qm="";this.ka.Pm="";this.ka.Im="";this.ka.Hm="";this.ka.zm="";this.ka.sm="";this.ka.tm="";this.ka.Om="";this.ka.Bm="";this.ka.ym="";this.ka.Lm="";this.ka.zq="";this.ka.Bq="";this.ka.Cq="";this.ka.Hq="";this.ka.Fq="";this.ka.Lq="";this.ka.Mq="";this.ka.Nq="";this.ka.Kq="";this.ka.Oq="";this.To=function(){var c=this.F,d=this,e=-1===document.URL.indexOf("http://")&&-1===document.URL.indexOf("https://");W();var g=window.navigator.fg||(window.matchMedia&&window.matchMedia("(display-mode: standalone)")).matches,h=!0,h=h="",h=["Z1n3d0ma1n"],h=h[0],h=c.resources.lm(h,g&&e);h||(h=["d0ma1n"],h=h[0]+"#FlexPaper-1-4-5-Annotations-1.0.10",h=c.resources.lm(h,g&&e));h||alert("License key not accepted. Please check your configuration settings.");jQuery(".flowpaper_tbloader").hide();h&&(c.Ui=new Image,jQuery(c.Ui).bind("load",function(){jQuery(d).trigger("onPostinitialized");}),c.Ui.src=c.ge);};this.lm=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)+Ea(!0)+k,h=parseInt(h)+Ea(!0)+"AdaptiveUId0ma1n",g=ja(parseInt(g)+(f?e.config.key.split("$")[0]:Ea(!0))+c),h=ja(h),k=ja(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.1. 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,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"));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 Ea(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=Ea(!1),c=window.navigator.fg||(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 Ca=function(){function f(){}f.prototype={Nd:function(c,d){if(d.Va&&(d.Qi||d.create(d.pages.J),!d.initialized)){c.sb=d.sb=c.config.MixedMode;c.im=!1;c.jm=!1;var e=d.V;0==jQuery(e).length&&(e=jQuery(d.Oc).find(d.V));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.Ue||(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.im?"":"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;}},xp: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.uc||d.pa||(d.Sc(),d.uc=!0);return !0;},wp:function(c,d){return 1==d.scale||1<d.scale&&d.pageNumber==d.pages.R-1||d.pageNumber==d.pages.R-2;},Ob: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,Ro:!0});var h=3>d.scale?2236:3236;magnifier=h*Math.sqrt(1/(d.xa()*d.Ha()));d.fa.width=d.xa()*magnifier;d.fa.height=d.Ha()*magnifier;}else{c.ui=!1,d.fa.width=2*d.xa(),d.fa.height=2*d.Ha(),d.pa=!0,jQuery("#"+d.Gb).yd(),c.Qk(d),eb.platform.touchdevice&&(null!=c.Li&&window.clearTimeout(c.Li),c.Li=setTimeout(function(){},1500)),null!=g&&g();}}else{d.sb&&c.pageImagePattern&&!d.oi?(d.Lc&&d.Lc(c.ga(d.pageNumber+1),c.ga(d.pageNumber+2)),d.dimensions.loaded||c.tc(d.pageNumber+1,!0,function(){c.Ec(d);},!0,d),d.Tm=!0,c.im?(d.U=new Image,jQuery(d.U).bind("load",function(){d.Ir=!0;d.af=!0;d.bf=this.height;d.df=this.width;c.vp(d);d.dimensions.na>d.dimensions.width&&(d.dimensions.width=d.dimensions.na,d.dimensions.height=d.dimensions.za);d.xb=!1;c.Hd();}),jQuery(d.U).attr("src",c.ga(d.pageNumber+1))):null==d.U?(d.xb=!0,d.U=new Image,jQuery(d.U).bind("load",function(){window.clearTimeout(d.se);jQuery(d.Nb).remove();jQuery(d.fa).css("background-image","url('"+c.ga(d.pageNumber+1)+"')");d.xb=!1;c.Hd();}),jQuery(d.U).bind("error",function(){jQuery.ajax({url:this.src,type:"HEAD",error:function(h){if(404==h.status||500<=h.status){d.oi=!0,d.xb=!1,d.Tm=!0,d.pa=!1,1==d.pageNumber&&d.F.pages.Id&&d.F.pages.Id(),c.Ob(d,e,g);}},success:function(){}});}),jQuery(d.U).bind("error",function(){window.clearTimeout(d.se);jQuery(d.Nb).remove();jQuery(d.fa).css("background-image","url('"+c.ga(d.pageNumber+1)+"')");d.xb=!1;c.Hd();}),jQuery(d.U).attr("src",c.ga(d.pageNumber+1)),d.se=setTimeout(function(){d.pa||(jQuery(d.Nb).remove(),jQuery(d.fa).css("background-image","url('"+c.ga(d.pageNumber+1)+"')"),d.xb=!1,c.Hd());},3000),c.Li=setTimeout(function(){d.xb&&("none"==jQuery(d.fa).css("background-image")&&jQuery(d.fa).css("background-image","url('"+c.ga(d.pageNumber+1)+"')"),d.xb=!1,c.Hd());},6000)):d.xb||"none"==jQuery(d.fa).css("background-image")&&jQuery(d.fa).css("background-image","url('"+c.ga(d.pageNumber+1)+"')"),c.We(d,g)):!c.wa&&c.bb?(magnifier=1236*Math.sqrt(1/(d.xa()*d.Ha())),d.fa.width=d.xa()*magnifier,d.fa.height=d.Ha()*magnifier):(d.fa.width=1*d.xa(),d.fa.height=1*d.Ha());}}}},cq:function(c,d){return"FlipView"==d.H;},sj:function(c,d){"FlipView"==d.H&&(1<d.scale?(d.Gb=c.Ca(2,d),d.Nf=c.Ca(1,d)):(d.Gb=c.Ca(1,d),d.Nf=c.Ca(2,d)));},We:function(c,d){"FlipView"==d.H&&(1<d.scale?requestAnim(function(){var e=jQuery("#"+c.Ca(2,d)).get(0);eb.browser.safari&&c.jm&&(jQuery(e).css("background-image","url('"+e.toDataURL()+"')"),e.width=100,e.height=100);jQuery("#"+c.Ca(1,d)).rc();}):(jQuery("#"+c.Ca(1,d)).yd(),jQuery("#"+c.Ca(2,d)).rc(),eb.browser.safari&&c.jm&&jQuery("#"+c.Ca(2,d)).css("background-image","")),d.sb&&c.pageImagePattern&&1==d.scale||jQuery(d.Nb).remove());jQuery(c).trigger("UIBlockingRenderingOperationCompleted",{P:c.P});c.Hd();}};CanvasPageRenderer.prototype.vh=function(c){return"FlipView"==c.H?1:1.4;};CanvasPageRenderer.prototype.vp=function(c){var d=c.fa;if(1==c.scale&&d&&(100==d.width||jQuery(d).hasClass("flowpaper_redraw"))&&d){d.width=c.xa();d.height=c.Ha();var e=d.getContext("2d"),g=document.createElement("canvas"),h=g.getContext("2d");g.width=c.U.width;g.height=c.U.height;h.drawImage(c.U,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.V+"_canvas").yd(),jQuery(c.V+"_canvas_highres").rc());1<c.pageNumber&&jQuery(c.V+"_pixel").css({width:2*c.xa(),height:2*c.Ha()});}jQuery(c.Nb).remove();};CanvasPageRenderer.prototype.me=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].na<c.getDimensions(0)[0].za&&(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 r=jQuery(l).parent().width()/l.width;l.getContext("2d").fillStyle="#999999";var t=(l.height-l.height*k)/2,q=l.height*k;0>t&&(l.height+=l.width-q,t+=(l.width-q)/2);eb.browser.msie&&jQuery(l).css({width:l.width*r+"px",height:l.height*r+"px"});jQuery(l).data("origwidth",l.width*r);jQuery(l).data("origheight",l.height*r);l.getContext("2d").fillRect(1==d?l.width/2:0,t,m==c.getTotalPages()?l.width/2+2:l.width+2,q+2);l.getContext("2d").drawImage(p,1==d?l.width/2+1:1,t+1,l.width/2,q);if(1<d&&h+1<=c.getTotalPages()&&m+1<=c.getTotalPages()){var w=new Image;jQuery(w).bind("load",function(){l.getContext("2d").drawImage(w,l.width/2+1,t+1,l.width/2,q);l.getContext("2d").strokeStyle="#999999";l.getContext("2d").moveTo(l.width-1,t);l.getContext("2d").lineTo(l.width-1,q+1);l.getContext("2d").stroke();jQuery(c).trigger("onThumbPanelThumbAdded",{rf:f,thumbData:l});});jQuery(w).attr("src",g.ga(m+1,200));}else{jQuery(c).trigger("onThumbPanelThumbAdded",{rf: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.sf),g.sf=setTimeout(function(){g.me(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;}var m=1==d?h+1:h,p=new Image,t=d%10;0==t&&(t=10);f=c.N.find(".flowpaper_fisheye").find(String.format('*[data-thumbIndex="{0}"]',t)).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 q=f.height/g.getDimensions()[m-1].height;g.Ga(null,"thumb_"+m);g.La.getPage(m).then(function(l){var p=l.getViewport(q),v=f.getContext("2d"),x=document.createElement("canvas");x.height=f.height;x.width=x.height*k;var z={canvasContext:x.getContext("2d"),viewport:p,Hh:null,pageNumber:m,continueCallback:function(h){1!=c.scale?(window.clearTimeout(g.sf),g.sf=setTimeout(function(){g.me(c,d,e);},50)):h();}};l.render(z).promise.then(function(){var l=(f.height-f.height*k)/2,n=f.height*k;0>l&&(f.height+=f.width-n,l+=(f.width-n)/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.sf),g.sf=setTimeout(function(){g.me(c,d,e);},50)):(g.Ga(null,"thumb_"+(m+1)),g.La.getPage(m+1).then(function(h){p=h.getViewport(q);var k=document.createElement("canvas");k.width=x.width;k.height=x.height;z={canvasContext:k.getContext("2d"),viewport:p,Hh:null,pageNumber:m+1,continueCallback:function(h){1!=c.scale?(window.clearTimeout(g.sf),g.sf=setTimeout(function(){g.me(c,d,e);},50)):h();}};h.render(z).promise.then(function(){g.Ga(null,-1);v.fillStyle="#ffffff";v.fillRect(1==d?f.width/2:0,l,f.width/2,n);1!=d&&v.fillRect(f.width/2,l,f.width/2,n);v.drawImage(x,1==d?f.width/2:0,l,f.width/2,n);1!=d&&v.drawImage(k,f.width/2,l,f.width/2,n);jQuery(c).trigger("onThumbPanelThumbAdded",{rf:t,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,n),1!=d&&v.fillRect(f.width/2,l,f.width/2,n),v.drawImage(x,1==d?f.width/2:0,l,f.width/2,n),jQuery(c).trigger("onThumbPanelThumbAdded",{rf:t,thumbData:f}));},function(){g.Ga(null,-1);});});}}};return f;}(),Ba=function(){function f(){}f.prototype={Nd:function(c,d){if(d.Va&&(d.Qi||d.create(d.pages.J),!d.initialized)){c.mb=!c.sa&&null!=c.cj&&0<c.cj.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.Ue||(e=0!=d.pageNumber%2?"flowpaper_zine_page_left_noshadow":"flowpaper_zine_page_right_noshadow");var g=d.V;0==jQuery(g).length&&(g=jQuery(d.Oc).find(d.V));c.oh(d,g);c.sa&&c.be(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.So=new Image,jQuery(c.So).attr("src",c.ea)):c.Bb?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;}},Ob:function(c,d,e,g){d.initialized||c.Nd(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.kc),d.pageNumber==d.pages.R||d.pageNumber==d.pages.R-2||d.pageNumber==d.pages.R-1){d.kc=setTimeout(function(){c.Ob(d,e,g);},250);}}else{1==d.scale&&d.Lc&&!c.sa&&d.Lc(c.ga(d.pageNumber+1),c.ga(d.pageNumber+2));if(!d.pa){c.cr=d.scale;c.Ga(d,d.pageNumber);1==d.scale&&d.Sc();d.xb=!0;if(!d.U||d.po!=d.scale||c.be(c,d)||!c.be(c,d)&&c.sa){d.po=d.scale,d.U=new Image,jQuery(d.U).data("pageNumber",d.pageNumber),jQuery(d.U).bind("load",function(){d.oo=!0;d.xb=!1;d.af=!0;d.bf=this.height;d.df=this.width;d.Kb();window.clearTimeout(d.se);c.Rc(d);d.dimensions.na>d.dimensions.width&&(d.dimensions.width=d.dimensions.na,d.dimensions.height=d.dimensions.za);}),jQuery(d.U).bind("abort",function(){window.clearTimeout(d.se);jQuery(this).Xf(function(){d.xb=!1;c.Ga(d,-1);});}),jQuery(d.U).bind("error",function(){window.clearTimeout(d.se);jQuery(this).Xf(function(){d.xb=!1;c.Ga(d,-1);});});}1>=d.scale?jQuery(d.U).attr("src",c.ga(d.pageNumber+1,null,c.Bb)):c.mb&&1<d.scale?d.pageNumber==d.pages.R-1||d.pageNumber==d.pages.R-2?jQuery(d.U).attr("src",c.ga(d.pageNumber+1,null,c.Bb)):c.sa||jQuery(d.U).attr("src",c.ea):d.pageNumber==d.pages.R-1||d.pageNumber==d.pages.R-2?(!c.Bb||-1!=jQuery(d.U).attr("src").indexOf(".svg")&&d.Ao==d.scale||c.Da(d)!=d.pageNumber||d.pageNumber!=d.pages.R-1&&d.pageNumber!=d.pages.R-2?d.yj==d.scale&&(jQuery(d.V+"_canvas_highres").show(),jQuery(d.V+"_canvas").hide()):(jQuery(c).trigger("UIBlockingRenderingOperation",c.P),d.Ao=d.scale,jQuery(d.U).attr("src",c.ga(d.pageNumber+1,null,c.Bb))),c.Bb||jQuery(d.U).attr("src",c.ga(d.pageNumber+1,null,c.Bb))):c.sa||jQuery(d.U).attr("src",c.ea);d.se=setTimeout(function(){d.oo||jQuery(d.U).Xf(function(){d.xb=!1;c.Ga(d,-1);});},3000);}jQuery(d.V).removeClass("flowpaper_load_on_demand");jQuery(d.oa).attr("src")==c.ea&&d.af&&c.Rc(d);null!=g&&g();}}},Rc:function(c,d){if("FlipView"==d.H){jQuery(d.V).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.be(c,d)){1==d.scale?(jQuery(d.va).css("background-image","url('"+c.ga(d.pageNumber+1,null,c.Bb)+"')"),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","visible"),jQuery("#"+d.aa+"_textoverlay").css("backface-visibility","visible"),c.Gc(d)):(d.pageNumber==d.pages.R-1||d.pageNumber==d.pages.R-2?jQuery(d.va).css("background-image","url('"+c.ga(d.pageNumber+1)+"')"):jQuery(d.va).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.V+"_canvas").hide(),c.mb&&d.scale>d.ug()&&(d.kc=setTimeout(function(){c.Pc(d);jQuery(".flowpaper_flipview_canvas_highres").show();jQuery(".flowpaper_flipview_canvas").hide();},500)));}else{var e=document.getElementById(d.aa+"_canvas");c.sa?(jQuery(d.va).css("background-image","url('"+c.ga(d.pageNumber+1,null,c.Bb)+"')"),jQuery("#"+d.aa+"_textoverlay").css("-webkit-backface-visibility","visible"),jQuery("#"+d.aa+"_textoverlay").css("backface-visibility","visible")):jQuery(d.va).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 h=d.xa(),f=d.Ha();g.width=2*h;g.height=2*f;h=g.getContext("2d");h.dg=h.mozImageSmoothingEnabled=h.imageSmoothingEnabled=!0;h.drawImage(d.U,0,0,g.width,g.height);jQuery(g).data("needs-overlay",1);jQuery(e).removeClass("flowpaper_redraw");1==d.scale&&(jQuery(d.V+"_canvas").show(),jQuery(d.V+"_canvas_highres").hide());1<d.pageNumber&&jQuery(d.V+"_pixel").css({width:2*d.xa(),height:2*d.Ha()});jQuery(g).data("needs-overlay",1);c.Gc(d);}}else{1==d.scale&&e&&100!=e.width&&(jQuery(d.V+"_canvas").show(),jQuery(d.V+"_canvas_highres").hide(),c.Gc(d));}if(1<d.scale&&!c.sa){if(g=document.getElementById(d.aa+"_canvas_highres")){!(c.Bb&&d.yj!=d.scale||c.sa&&d.yj!=d.scale||100==g.width||jQuery(g).hasClass("flowpaper_redraw"))||d.pageNumber!=d.pages.R-1&&d.pageNumber!=d.pages.R-2?(jQuery(d.V+"_pixel").css({width:2*d.xa(),height:2*d.Ha()}),jQuery(d.V+"_canvas_highres").show(),jQuery(d.V+"_canvas").hide(),c.mb&&jQuery(d.V+"_canvas_highres").css("z-index","-1")):(d.yj=d.scale,e=1000<d.L.width()||1000<d.L.height()?1:2,h=(d.L.width()-30)*d.scale,c.sa&&1==e&&(e=c.Ya),eb.platform.ios&&(1500<h*d.oe()||535<d.Ef())&&(e=2236*Math.sqrt(1/(d.xa()*d.Ha()))),eb.browser.safari&&!eb.platform.touchdevice&&3>e&&(e=3),h=g.getContext("2d"),h.dg||h.mozImageSmoothingEnabled||h.imageSmoothingEnabled?(h.dg=h.mozImageSmoothingEnabled=h.imageSmoothingEnabled=!1,c.Bb||c.sa?(g.width=d.xa()*e,g.height=d.Ha()*e,h.drawImage(d.U,0,0,d.xa()*e,d.Ha()*e)):(g.width=d.U.width,g.height=d.U.height,h.drawImage(d.U,0,0))):(g.width=d.xa()*e,g.height=d.Ha()*e,h.drawImage(d.U,0,0,d.xa()*e,d.Ha()*e)),c.Bb?c.vo(d,g.width/d.U.width,function(){jQuery(g).removeClass("flowpaper_redraw");jQuery(d.V+"_canvas_highres").show();jQuery(d.V+"_canvas").hide();jQuery(d.V+"_canvas_highres").addClass("flowpaper_flipview_canvas_highres");jQuery(d.V+"_canvas").addClass("flowpaper_flipview_canvas");c.Ga(d,-1);}):(jQuery(g).removeClass("flowpaper_redraw"),c.sa||(jQuery(d.V+"_canvas_highres").show(),jQuery(d.V+"_canvas").hide(),jQuery(d.V+"_canvas_highres").addClass("flowpaper_flipview_canvas_highres"),jQuery(d.V+"_canvas").addClass("flowpaper_flipview_canvas")),c.mb&&jQuery(d.V+"_canvas_highres").css("z-index","-1")));}d.kc=setTimeout(function(){c.Pc(d);},500);}}c.sa&&1==d.scale&&(jQuery(d.V+"_canvas").addClass("flowpaper_flipview_canvas"),jQuery(d.V+"_canvas").show(),g=document.getElementById(d.aa+"_canvas"),h=d.xa(),f=d.Ha(),e=1.5<c.Ya?c.Ya:1,g.width!=h*e&&c.be(c,d)?(d.pa||(g.width=100),g.width!=h*e&&c.be(c,d)&&(g.width=h*e,g.height=f*e),jQuery(g).css({width:g.width/e+"px",height:g.height/e+"px"}),c.El=!0,jQuery(g).data("needs-overlay",1),d.Xd(g).then(function(){d.Lc(c.ga(d.pageNumber+1),c.ga(d.pageNumber+2),!0);})):c.be(c,d)||1!=jQuery(g).data("needs-overlay")?d.pa||d.Lc(c.ga(d.pageNumber+1),c.ga(d.pageNumber+2),!0):d.Xd(g).then(function(){d.Lc(c.ga(d.pageNumber+1),c.ga(d.pageNumber+2),!0);}));d.pa=0<jQuery(d.va).length&&(c.be(c,d)&&-1<jQuery(d.va).css("background-image").indexOf("http")||!c.be(c,d));}},unload:function(c,d){d.U=null;jQuery(d.va).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.be=function(c,d){return c.sa&&(eb.platform.ios||eb.browser.mozilla&&57>eb.browser.version)?!1:c.sa?!0:eb.platform.touchdevice&&(eb.platform.Od||d&&d.df&&d.bf&&5000000<d.df*d.bf||eb.platform.android)&&(eb.platform.Od||eb.platform.android)||eb.browser.chrome||eb.browser.mozilla||c.sa||eb.browser.safari&&!eb.platform.touchdevice;};ImagePageRenderer.prototype.resize=function(c,d){this.oh(d);};ImagePageRenderer.prototype.vo=function(c,d,e){var g=this;window.Nh=d;jQuery.ajax({type:"GET",url:g.ga(c.pageNumber+1,null,g.Bb),cache:!0,dataType:"xml",success:function(h){var f=new Image;jQuery(f).bind("load",function(){var g=document.getElementById(c.aa+"_canvas"),l=document.getElementById(c.aa+"_canvas_highres").getContext("2d");l.dg=l.mozImageSmoothingEnabled=l.imageSmoothingEnabled=!1;var m=g.getContext("2d");m.dg=m.mozImageSmoothingEnabled=m.imageSmoothingEnabled=!1;g.width=c.U.width*d;g.height=c.U.height*d;m.drawImage(f,0,0,c.U.width*d,c.U.height*d);if(c.cm){p=c.cm;}else{var p=[];jQuery(h).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(h).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.Ih=c.transform.split(" "),c.x=S(c.Ih[c.Ih.length-2]),c.y=S(c.Ih[c.Ih.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(h).find("*[id='"+d+"']").each(function(){c.ng=[];jQuery(this).find("path").each(function(){var d={};d.d=jQuery(this).attr("d");c.ng[c.ng.length]=d;});});}});});c.cm=p;}for(m=0;m<p.length;m++){if(p[m].ng){for(var t=0;t<p[m].ng.length;t++){for(var q=p[m].ng[t].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/),n=0,u=0,v=0,x=0,z=!1,w,D=!0,C=0;C<q.length;C+=2){if("M"==q[C]&&q.length>C+1&&(w=T(q[C+1]),v=n=S(w[0]),x=u=S(w[1]),D&&(z=!0)),"m"==q[C]&&q.length>C+1&&(w=T(q[C+1]),v=n+=S(w[0]),x=u+=S(w[1]),D&&(z=!0)),"l"==q[C]&&q.length>C+1&&(w=T(q[C+1]),n+=S(w[0]),u+=S(w[1])),"h"==q[C]&&q.length>C+1&&(w=T(q[C+1]),n+=S(w[0])),"v"==q[C]&&q.length>C+1&&(w=T(q[C+1]),u+=S(w[0])),"s"==q[C]&&q.length>C+1&&(w=T(q[C+1])),"c"==q[C]&&q.length>C+1&&(w=T(q[C+1])),"z"==q[C]&&q.length>C+1&&(n=v,u=x,w=null),z&&(l.save(),l.beginPath(),D=z=!1),"M"==q[C]||"m"==q[C]){l.moveTo(n,u);}else{if("c"==q[C]&&null!=w){for(var H=0;H<w.length;H+=6){var A=n+S(w[H+0]),G=u+S(w[H+1]),B=n+S(w[H+2]),F=u+S(w[H+3]),y=n+S(w[H+4]),E=u+S(w[H+5]);l.bezierCurveTo(A,G,B,F,y,E);n=y;u=E;}}else{"s"==q[C]&&null!=w?(B=n+S(w[0]),F=u+S(w[1]),y=n+S(w[2]),E=u+S(w[3]),l.bezierCurveTo(n,u,B,F,y,E),n=y,u=E):"z"==q[C]?(l.lineTo(n,u),l.closePath(),l.clip(),l.drawImage(g,0,0),l.restore(),D=!0,C--):l.lineTo(n,u);}}}}}else{M("no clip path for image!");}}e&&e();});f.src=g.ga(c.pageNumber+1);}});};ImagePageRenderer.prototype.me=function(c,d,e){var g=this,h=0,f=c.getDimensions(d)[d-1].na/c.getDimensions(d)[d-1].za;g.bb&&1<d&&(f=c.getDimensions(1)[0].na/c.getDimensions(1)[0].za);0.5>f&&g.config.JSONDataType&&c.getDimensions(0)[0].na<c.getDimensions(0)[0].za&&(f=0.7);for(var k=1;k<d;k++){h+=2;}var l=1==d?h+1:h,m=new Image;jQuery(m).bind("load",function(){var k=d%10;0==k&&(k=10);var t=jQuery(".flowpaper_fisheye").find(String.format('*[data-thumbIndex="{0}"]',k)).get(0);t.width=e*f-2;t.height=e/f/2-2;var q=jQuery(t).parent().width()/t.width;t.getContext("2d").fillStyle="#999999";var n=(t.height-t.height*f)/2,u=t.height*f;0>n&&(t.height+=t.width-u,n+=(t.width-u)/2);jQuery(t).data("origwidth",t.width*q);jQuery(t).data("origheight",t.height*q);(eb.browser.msie||eb.browser.safari&&5>eb.browser.Lb)&&jQuery(t).css({width:t.width*q+"px",height:t.height*q+"px"});t.getContext("2d").fillRect(1==d?t.width/2:0,n,l==c.getTotalPages()?t.width/2+2:t.width+2,u+2);t.getContext("2d").drawImage(m,1==d?t.width/2+1:1,n+1,t.width/2,u);if(1<d&&h+1<=c.getTotalPages()&&l+1<=c.getTotalPages()){var v=new Image;jQuery(v).bind("load",function(){t.getContext("2d").drawImage(v,t.width/2+1,n+1,t.width/2,u);t.getContext("2d").strokeStyle="#999999";t.getContext("2d").moveTo(t.width-1,n);t.getContext("2d").lineTo(t.width-1,u+1);t.getContext("2d").stroke();jQuery(c).trigger("onThumbPanelThumbAdded",{rf:k,thumbData:t});});jQuery(v).attr("src",g.ga(l+1,200));}else{jQuery(c).trigger("onThumbPanelThumbAdded",{rf:k,thumbData:t});}});l<=c.getTotalPages()&&jQuery(m).attr("src",g.ga(l,200));};return f;}(),za=function(){function f(){}V.prototype.$e=function(){var c=this.F.I.kf,d=this.jh(0),d=d.na/d.za,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,h=this.F.I.tf?this.F.I.Na.height():0;if(this.F.I.fb&&!this.F.PreviewMode){e-=eb.platform.touchonlydevice?this.F.ab?h:0:this.L.height()*(this.F.ab?0.2:0.15);}else{if(this.F.PreviewMode){this.F.PreviewMode&&(e=this.F.N.height()-15,e-=eb.platform.touchonlydevice?this.F.ab?h+30:0:this.L.height()*(g?0.5:0.09));}else{var f=0.07;this.F.I.fb||(f=0.07);eb.platform.touchonlydevice?e=this.F.Ub?e-(this.F.ab?5:0):e-(this.F.ab?h:0):(h=this.F.I.tf?jQuery(this.F.K).parent().height()||0:0,0==h&&this.F.I.tf&&(h=this.L.height()*f),e-=this.F.ab&&!this.F.I.Fe?h:this.L.height()*(g?0.5:f));}}g=this.L.width();2*e*d>g-(c?2.4*this.ia:0)&&!this.F.I.Ba&&(e=g/2/d-+(c?1.5*this.ia:75));if(e*d>g-(c?2.4*this.ia:0)&&this.F.I.Ba){for(f=10;e*d>g-(c?2.4*this.ia:0)&&1000>f;){e=g/d-f+(c?0:50),f+=10;}}if(!eb.browser.pr){for(c=2.5*Math.floor(e*(this.F.I.Ba?1:2)*d),g=0;0!=c%4&&20>g;){e+=0.5,c=2.5*Math.floor(e*(this.F.I.Ba?1:2)*d),g++;}}return e;};V.prototype.Ed=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).rc(),jQuery(".flowpaper_flipview_canvas").yd(),d.ed();}else{if(d.F.renderer.sa&&d.F.I.W==d.F.H&&(c=jQuery(d.J+"_glyphcanvas").get(0),void 0==d.kk&&(d.kk=jQuery(c).offset().left),void 0==d.lk&&(d.lk=jQuery(c).offset().top),void 0==d.nm&&(d.nm=jQuery(d.F.N).position().left),void 0==d.om&&(d.om=jQuery(d.F.N).position().top),1<e)){var g=c.getContext("2d"),h=1<d.R?d.R-(d.F.I.Ba||0==d.R%2||d.R+(0==d.R%2?1:0)>d.F.getTotalPages()?1:2):0,f=d.F.I.Ba||0==h||null==d.pages[h+1]?1:2,k=0,l=eb.platform.Ya,m=0,p=d.kk-d.nm,t=d.lk-d.om;d.F.Qa&&(m=parseFloat(d.L.css("left")));d.F.$a&&(m=parseFloat(d.L.css("left")));if(!l||1>l){l=1;}for(var q=0;q<f;q++){var n=jQuery(d.pages[h+q].V),u=n.get(0).getBoundingClientRect(),n=u.right<d.L.width()?u.right-(0<u.left?u.left:0):d.L.width()-(0<u.left?u.left:0),k=k+(0<n?n:0);}for(q=0;q<f;q++){var h=h+q,n=jQuery(d.pages[h].V),u=n.get(0).getBoundingClientRect(),v=0<u.left?u.left:0+p,x=0<u.top?u.top:0+t,n=k,z=u.bottom<d.L.height()?u.bottom-(0<u.top?u.top:0):d.L.height()-(0<u.top?u.top:0),w=d.getPage(h);jQuery(c).data("needs-overlay",f);0==q&&(jQuery(c).css({left:v+"px",top:x+"px","z-index":49,display:"block"}),g.clearRect(0,0,c.width,c.height),c.width=n+m,c.height=z,1<l&&(c.width=(n+m)*l,c.height=z*l,jQuery(c).css({width:c.width/l+"px",height:c.height/l+"px"})));n=0>u.left?u.left*l:0;v=0>u.top?u.top*l:0;1<f&&0<q&&0<u.left&&(n+=u.left*l,x=jQuery(d.pages[h-1].V),0<x.length&&(x=x.get(0).getBoundingClientRect(),0<x.left&&(n-=x.left*l)));w.Xd(c,0,u.width*l,n,v).then(function(){if(d.F.Z[h]){g.save();g.globalCompositeOperation="destination-out";g.beginPath();for(var c=u.width/(w.qg()*w.Ma)*l,k=0;k<d.F.Z[h].length;k++){"video"==d.F.Z[h][k].type&&g.rect(d.F.Z[h][k].Hj*c,d.F.Z[h][k].Ij*c,d.F.Z[h][k].width*c,d.F.Z[h][k].height*c),"image"==d.F.Z[h][k].type&&g.rect(d.F.Z[h][k].mh*c,d.F.Z[h][k].nh*c,d.F.Z[h][k].width*c,d.F.Z[h][k].height*c);}g.closePath();g.fill();g.restore();}w.Nk=e;q==f-1&&requestAnim(function(){jQuery(".flowpaper_flipview_canvas").rc();},50);});}}}};V.prototype.ao=function(c,d){var e=this;c=parseInt(c);e.F.ae=d;e.F.renderer.le&&e.ef(c);1!=this.F.scale?e.Pa(1,!0,function(){e.F.turn("page",c);}):e.F.turn("page",c);};V.prototype.Ei=function(){return(this.L.width()-this.md())/2;};V.prototype.md=function(){var c=this.jh(0),c=c.na/c.za;return Math.floor(this.$e()*(this.F.I.Ba?1:2)*c);};V.prototype.Ic=function(){if("FlipView"==this.F.H){return 0<this.width?this.width:this.width=this.M(this.J).width();}};V.prototype.Ef=function(){if("FlipView"==this.F.H){return 0<this.height?this.height:this.height=this.M(this.J).height();}};f.prototype={ef: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).Va=!0,c.F.renderer.Nd(c.getPage(e)),c.getPage(e).Va=!1);}},jc:function(c){null!=c.Yd&&(window.clearTimeout(c.Yd),c.Yd=null);var d=1<c.R?c.R-1:c.R;if(!c.F.renderer.tb||c.F.renderer.sb&&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(),h=0;h<c.document.numPages;h++){c.Ua(h)&&(c.pages[h].Jc(e,g,!0)?(c.pages[h].Va=!0,c.pages[h].load(function(){}),c.pages[h].Ea()):c.pages[h].unload());}});}),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(),h=0;h<c.document.numPages;h++){c.Ua(h)&&(c.pages[h].Jc(e,g,!0)?(c.pages[h].Va=!0,c.pages[h].load(function(){}),c.pages[h].Ea()):c.pages[h].unload());}});}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(),h=0;h<c.document.numPages;h++){c.Ua(h)&&(c.pages[h].Jc(e,g,!0)?(c.pages[h].Va=!0,c.pages[h].load(function(){}),c.pages[h].Ea()):c.pages[h].unload());}}},$i:function(c){1.1<c.F.scale&&c.F.ta&&(c.F.ta.data().opts.cornerDragging=!1);c.ti=setTimeout(function(){c.F.pages&&"FlipView"==c.F.H&&(1.1<c.F.scale||!c.F.ta||!c.F.ta.data().opts||(c.F.ta.data().opts.cornerDragging=!0),c.yh=!1);},1000);},Pb:function(c){return"FlipView"==c.F.H;},Pa:function(c,d,e,g,h){jQuery(c).trigger("onScaleChanged");1<e&&0<jQuery("#"+c.Qb).length&&jQuery("#"+c.Qb).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 f=c.jh(0),k=f.na/f.za,f=c.$e()*e,k=2*f*k;c.F.renderer.sa&&0==g.xf&&setTimeout(function(){c.animating=!1;},50);if(!g||!c.Pb()||1<d&&!c.M(c.J+"_parent").Jf()){if(c.M(c.J+"_parent").Jf()&&e>=1+c.F.document.ZoomInterval&&((d=c.Hi())?(c.M(c.J+"_parent").transition({transformOrigin:"0px 0px"},0),c.M(c.J+"_parent").transition({x:0,y:0,scale:1},0),g.Rb=d.left,g.oc=d.top,g.Xc=!0):(l=1!=c.F.da||c.F.I.Ba?0:-(c.md()/4),c.M(c.J+"_parent").transition({x:l,y:c.F.nc,scale:1},0))),c.M(c.J).Jf()&&c.M(c.J).transition({x:0,y:0,scale:1},0),!c.animating){c.Ah||(c.Ah=c.F.ta.width(),c.Uo=c.F.ta.height());1==e&&c.Ah?(turnwidth=c.Ah,turnheight=c.Uo):(turnwidth=k-(c.M(c.J+"_panelLeft").width()+c.M(c.J+"_panelRight").width()+40),turnheight=f);c.M(c.J).css({width:k,height:f});c.F.ta.turn("size",turnwidth,turnheight,!1);e>=1+c.F.document.ZoomInterval?(g.Xc||eb.platform.touchonlydevice)&&requestAnim(function(){c.L.scrollTo({left:jQuery(c.L).scrollLeft()+g.Rb/e+"px",top:jQuery(c.L).scrollTop()+g.oc/e+"px"});},500):c.Ne();for(f=0;f<c.document.numPages;f++){c.Ua(f)&&(c.pages[f].pa=!1);}1<e?c.F.ta.turn("setCornerDragging",!1):(c.M(c.J+"_panelLeft").show(),c.M(c.J+"_panelRight").show(),c.F.ta.turn("setCornerDragging",!0),jQuery(".flowpaper_shadow").show());c.gd();c.ed();setTimeout(function(){null!=h&&h();},200);}}else{if(!c.animating||!c.dk){c.animating=!0;c.dk=g.Xc;jQuery(".flowpaper_flipview_canvas").yd();jQuery(".flowpaper_flipview_canvas_highres").rc();c.F.renderer.sa&&jQuery(c.J+"_glyphcanvas").css("z-index",-1).rc();jQuery("#"+c.Qb).css("z-index",-1);jQuery(c).trigger("onScaleChanged");f=400;d="snap";c.F.document.ZoomTime&&(f=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",f/=2));g&&g.Rb&&g.oc?(g.Xc&&(g.Rb=g.Rb+c.Ei()),g.Xc||eb.platform.touchonlydevice?(c.Cd=g.Rb,c.Dd=g.oc):(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.Cd=parseFloat(k[0]),c.Dd=parseFloat(k[1])):(c.Cd=g.Rb,c.Dd=g.oc),c.Dl=!0),g.xf&&(f=g.xf)):(c.Cd=0,c.Dd=0);c.F.renderer.tb&&c.F.renderer.mb&&1==e&&(k=1<c.R?c.R-1:c.R,1<c.R&&c.F.renderer.Gc(c.pages[k-1]),c.F.renderer.Gc(c.pages[k]));"undefined"!=g.xf&&(f=g.xf);e>=1+c.F.document.ZoomInterval?("preserve-3d"==c.M(c.J+"_parent").css("transform-style")&&(f=0),(g.Xc||eb.platform.touchonlydevice)&&c.M(c.J+"_parent").css({transformOrigin:c.Cd+"px "+c.Dd+"px"}),c.F.ta.turn("setCornerDragging",!1)):(c.M(c.J).transition({x:0,y:0},0),c.F.ta.turn("setCornerDragging",!0));var l=1!=c.F.da||c.F.I.Ba?0:-(c.md()/4);c.M(c.J+"_parent").transition({x:l,y:c.F.nc,scale:e},f,d,function(){c.M(c.J+"_parent").css("will-change","");c.Ed();c.ed();null!=c.Ae&&(window.clearTimeout(c.Ae),c.Ae=null);c.Ae=setTimeout(function(){if(!c.F.renderer.sa){for(var d=0;d<c.document.numPages;d++){c.pages[d].pa=!1;}}c.sd=0;c.xe=0;c.gd();c.animating=!1;c.dk=!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!=h&&h();});}}}},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.sa&&c.F.renderer.El&&(jQuery(".flowpaper_flipview_page").css({height:"100%",width:"100%"}),c.F.renderer.El=!1);1!=c.F.da||c.F.I.Ba?c.F.I.Ba||jQuery(c.J+"_parent").transition({x:0,y:c.F.nc},0,"snap",function(){}):jQuery(c.J+"_parent").transition({x:-(c.md()/4),y:c.F.nc},0,"snap",function(){});var h=c.$e(),f=c.md();c.M(c.J+"_parent").css({width:d,height:h});c.ld=f;c.ig=h;d=c.Ei();c.F.ta&&c.F.ta.turn("size",f,h,!1);c.M(c.J+"_panelLeft").css({"margin-left":d-c.ia,width:c.ia,height:h-30});c.M(c.J+"_arrowleft").css({top:(h-30)/2+"px"});c.M(c.J+"_arrowright").css({top:(h-30)/2+"px"});c.M(c.J+"_panelRight").css({width:c.ia,height:h-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.Ah=null;c.Zr=null;c.Ed();}jQuery(".flowpaper_flipview_page").addClass("flowpaper_redraw");for(d=0;d<c.document.numPages;d++){c.Ua(d)&&c.pages[d].Pa();}"FlipView"==c.F.H?(window.clearTimeout(c.gp),c.gp=setTimeout(function(){c.Al&&c.Al();for(var d=0;d<c.document.numPages;d++){c.Ua(d)&&(c.pages[d].pa=!1,null!=c.F.renderer.resize&&c.F.renderer.resize(c.F.renderer,c.pages[d]));}c.gd();jQuery(c.F).trigger("onResizeCompleted");c.F.I.ub&&jQuery("#"+c.pages.container+"_webglcanvas").css({width:f,height:h});g&&g();},300)):g&&g();},re:function(c,d){if(c.F.PreviewMode){c.F.openFullScreen();}else{if(!c.je()){var e=c.document.TouchZoomInterval?c.F.scale+c.document.TouchZoomInterval:2.5;"FlipView"==c.F.H?d?c.Pa(e,{Rb:jQuery(c.J+"_parent").width()/2,oc:jQuery(c.J+"_parent").height()/2}):c.Pa(e,{Rb:c.ad,oc:c.bd}):c.Pa(1);c.ed();}}},nd:function(c,d){"FlipView"==c.F.H?c.Pa(1,!0,d):c.Pa(window.FitHeightScale);c.ed();},Zi:function(c){"FlipView"==c.F.H&&(this.touchwipe=c.M(c.J).touchwipe({wipeLeft:function(){c.He=!0;setTimeout(function(){c.He=!1;},3800);c.Zf=null;null==c.ba&&(c.F.ta.turn("cornerActivated")||c.animating||1==c.F.scale&&c.next());},wipeRight:function(){c.He=!0;setTimeout(function(){c.He=!1;},3800);c.Zf=null;c.F.ta.turn("cornerActivated")||c.animating||null==c.ba&&1==c.F.scale&&c.previous();},preventDefaultEvents:!0,min_move_x:100,min_move_y:100}));},fk:function(c){if(c.F.Zb||!eb.platform.touchdevice||c.F.I.pg){c.F.Zb?(d=c.M(c.J),d.doubletap(function(d){var g=jQuery(".activeElement").data("hint-pageNumber");window.parent.postMessage("EditPage:"+g,"*");window.clearTimeout(c.Oi);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.Zf=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.yh?"FlipView"==c.F.H&&1<=c.F.scale&&!c.dj?c.nd():"TwoPage"==c.F.H&&1==c.F.scale&&c.nd():c.re():c.re(),d.preventDefault(),c.dj=!1,c.yh=!1;}},null,300);}},li:function(c,d){if("FlipView"==c.F.H){c.F.I.zf&&(c.ia=c.F.I.zf);var e=c.$e(),g=c.md(),f=c.Ei(),r=c.F.I.kf&&(430<g||c.F.PreviewMode||c.F.I.Ba),k=r?0:f,f=f-c.ia,l=c.F.I.gb?c.F.I.gb:"#555555",m=c.F.I.pb?c.F.I.pb:"#AAAAAA",p=c.F.I.Na.height();c.Fb=c.F.Ub&&!c.F.I.fb||0==p?(c.L.height()-e)/2:0;c.Fb=0==c.Fb&&c.F.ab&&!c.F.Ub&&0<p&&!c.F.I.fb?(c.L.height()-e)/2-p:c.Fb;c.ld=g;c.ig=e;d.append("<div id='"+c.container+"_parent' style='white-space:nowrap;width:100%;height:"+e+"px;"+(!c.F.ab&&!c.F.I.fb||c.F.I.Fe?"margin-top:2.5%;":0<c.Fb?"padding-top:"+c.Fb+"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;")+"'>"+(r?"<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>"+(r?"<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.sa&&(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.xa(),r=h.Ha(),p=1.5<c.F.renderer.Ya?c.F.renderer.Ya:1.5;k.width!=l*p&&(jQuery(k).data("needs-overlay",1),k.width=l*p,k.height=r*p,h.Xd(k).then(function(){h.Va&&c.F.renderer.Ob(h,!0);}));}}}}));jQuery(c.J+"_panelLeft").css("background-color","rgba("+g.r+","+g.g+","+g.b+","+c.F.I.ye+")");jQuery(c.J+"_panelRight").css("background-color","rgba("+g.r+","+g.g+","+g.b+","+c.F.I.ye+")");jQuery(c.J+"_arrowleft").Be(c.ia-0.4*c.ia,m);jQuery(c.J+"_arrowright").wd(c.ia-0.4*c.ia,m);c.F.I.sg&&!c.F.Zb&&(jQuery(c.J+"_arrowleftbottom").Be(c.ia-0.55*c.ia,m),jQuery(c.J+"_arrowleftbottommarker").hj(c.ia-0.55*c.ia,m,jQuery(c.J+"_arrowleftbottom")),jQuery(c.J+"_arrowrightbottom").wd(c.ia-0.55*c.ia,m),jQuery(c.J+"_arrowrightbottommarker").ij(c.ia-0.55*c.ia,m,jQuery(c.J+"_arrowrightbottom")));c.F.Zb&&(jQuery(c.J+"_arrowleftbottom").Be(c.ia-0.55*c.ia,m),jQuery(c.J+"_arrowleftbottommarker").hj(c.ia-0.55*c.ia,m,jQuery(c.J+"_arrowleftbottom")),jQuery(c.J+"_arrowrightbottom").wd(c.ia-0.55*c.ia,m),jQuery(c.J+"_arrowrightbottommarker").ij(c.ia-0.55*c.ia,m,jQuery(c.J+"_arrowrightbottom")),c.F.I.sg||(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.Ba||c.F.Xe||c.F.ab||d.css("top",(d.height()-e)/2.1+"px");c.F.I.kf||(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());jQuery(c.J).on(c.F.I.vf?"mouseup":"mousedown",function(d){if(jQuery(d.target).hasClass("flowpaper_mark")){return !1;}var e=!0;c.F.I.vf&&(c.hm(),null==c.yb||d.pageX&&d.pageY&&d.pageX<=c.yb+2&&d.pageX>=c.yb-2&&d.pageY<=c.sc+2&&d.pageY>=c.sc-2||(e=!1),c.yb=null,c.sc=null,c.Mf&&(eb.browser.safari||c.F.renderer.sa)&&(jQuery(".flowpaper_flipview_canvas_highres").show(),jQuery(".flowpaper_flipview_canvas").hide(),c.Mf=!1,c.Ed()));if((!c.F.I.vf||e)&&!c.F.I.pg){var g=!1,e=0<jQuery(d.target).parents(".flowpaper_page").children().find(".flowpaper_zine_page_left, .flowpaper_zine_page_left_noshadow").length;c.Wf=e?c.F.da-2:c.F.da-1;jQuery(d.target).hasClass("flowpaper_interactiveobject_"+c.P)&&(g=!0);if(c.F.ta.turn("cornerActivated")||c.animating||jQuery(d.target).hasClass("turn-page-wrapper")||jQuery(d.target).hasClass("flowpaper_shadow")&&jQuery(d.target).Jf()){return;}if(c.F.PreviewMode&&"A"!=d.target.tagName){c.F.openFullScreen();return;}eb.platform.mobilepreview||c.je()||"transform"==c.M(c.J+"_parent").css("will-change")||(c.F.Zb?(clearTimeout(c.Oi),c.Oi=setTimeout(function(){c.Pb()&&c.M(c.J+"_parent").css("will-change","transform");var e=jQuery(c.J).If(d.pageX,d.pageY);g||c.F.mc||1!=c.F.scale?!g&&!c.F.mc&&1<c.F.scale?c.F.Zoom(1,{Xc:!0,Rb:e.x,oc:e.y}):g&&c.M(c.J+"_parent").css("will-change",""):c.F.Zoom(2.5,{Xc:!0,Rb:e.x,oc:e.y});},350)):(c.Pb()&&c.M(c.J+"_parent").css("will-change","transform"),requestAnim(function(){var e=jQuery(c.J).If(d.pageX,d.pageY);g||c.F.mc||1!=c.F.scale?!g&&!c.F.mc&&1<c.F.scale?c.F.Zoom(1,{Xc:!0,Rb:e.x,oc:e.y}):g&&c.M(c.J+"_parent").css("will-change",""):c.F.Zoom(2.5,{Xc:!0,Rb:e.x,oc: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.tb&&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.Pc(c.pages[h-1]),c.F.renderer.Pc(c.pages[h])):(1<c.R&&c.F.renderer.Gc(c.pages[h-1]),c.F.renderer.Gc(c.pages[h]));},500);}});jQuery(c.J+"_parent").on("mousemove",function(d){if(1<c.F.scale&&!c.F.mc){if(c.F.I.vf&&"down"==c.F.wh){c.yb||(c.yb=d.pageX,c.sc=d.pageY),c.Mf||!eb.browser.safari&&!c.F.renderer.sa||(jQuery(".flowpaper_flipview_canvas").show(),jQuery(".flowpaper_flipview_canvas_highres").hide(),jQuery(c.J+"_glyphcanvas").css("z-index",-1).rc(),c.Mf=!0),eb.platform.touchdevice||c.M(c.J+"_parent").Jf()?(c.Dl&&(c.hm(),c.Dl=!1),c.mk(d.pageX,d.pageY)):(c.L.scrollTo({left:jQuery(c.L).scrollLeft()+(c.yb-d.pageX)+"px",top:jQuery(c.L).scrollTop()+(c.sc-d.pageY)+"px"},0,{axis:"xy"}),c.yb=d.pageX+3,c.sc=d.pageY+3);}else{if(!c.F.I.vf){var e=c.L.If(d.pageX,d.pageY);eb.platform.touchdevice||c.M(c.J+"_parent").Jf()||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.Ed();},10);c.Yg((jQuery(c.L).width()+150)*d-20,(jQuery(c.L).height()+150)*e-250);}}c.F.renderer.tb&&c.F.renderer.mb&&!c.F.I.vf&&(e=1<c.R?c.R-1:c.R,1<c.F.scale?(1<c.R&&c.F.renderer.Pc(c.pages[e-1]),c.F.renderer.Pc(c.pages[e])):(1<c.R&&c.F.renderer.Gc(c.pages[e-1]),c.F.renderer.Gc(c.pages[e])));}});jQuery(c.J+"_parent").on("touchmove",function(d){if(!eb.platform.ios&&2==d.originalEvent.touches.length){d.preventDefault&&d.preventDefault();d.returnValue=!1;if(c.Xk){return !1;}var e=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)),e=2*e;if(null==c.ba){c.hb=c.F.scale,c.Tf=e;}else{c.ba==c.hb&&c.F.ta.turn("setCornerDragging",!1);if(null==c.hb||null==c.Tf){return;}1>c.ba&&(c.ba=1);3<c.ba&&!eb.platform.Od&&!c.F.renderer.sa&&(c.ba=3);c.F.renderer.mb&&4<c.ba&&eb.platform.ipad&&!c.F.renderer.sa&&(c.ba=4);!c.F.renderer.mb&&3<c.ba&&eb.platform.ipad&&!c.F.renderer.sa&&(c.ba=3);var g=0;1!=c.F.da||c.F.I.Ba||(g=-(c.md()/4));c.Xk=!0;c.M(c.J+"_parent").transition({x:g,y:c.F.nc,scale:c.ba},0,"ease",function(){c.Xk=!1;});}c.ba=c.hb+(e-c.Tf)/jQuery(c.J+"_parent").width();}if(1<c.F.scale||null!=c.ba&&1<c.ba){e=d.originalEvent.touches[0]||d.originalEvent.changedTouches[0],eb.platform.ios||2!=d.originalEvent.touches.length?c.yb||(c.yb=e.pageX,c.sc=e.pageY):c.yb||(g=d.originalEvent.touches[1]||d.originalEvent.changedTouches[1],g.pageX>e.pageX?(c.yb=e.pageX+(g.pageX-e.pageX)/2,c.sc=e.pageY+(g.pageY-e.pageY)/2):(c.yb=g.pageX+(e.pageX-g.pageX)/2,c.sc=g.pageY+(e.pageY-g.pageY)/2)),c.Mf||c.F.renderer.sa||(jQuery(".flowpaper_flipview_canvas").show(),jQuery(".flowpaper_flipview_canvas_highres").hide(),c.Mf=!0),(1==d.originalEvent.touches.length||eb.platform.ios)&&c.mk(e.pageX,e.pageY),eb.platform.ios?(jQuery(c.J+"_glyphcanvas").css("z-index",-1).rc(),jQuery(".flowpaper_flipview_canvas").yd()):c.Ed(2==d.originalEvent.touches.length&&null!=c.ba?c.ba:null),d.preventDefault();}});jQuery(c.J+"_parent, "+c.J).on(!eb.platform.touchonlydevice||eb.platform.mobilepreview?"mousedown":"touchstart",function(){c.Zf=(new Date).getTime();});jQuery(c.J+"_parent").on("mouseup touchend",function(d){!c.F.Ub||null!=c.ba||c.He||c.F.ta.turn("cornerActivated")||c.animating?c.F.Ub&&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.Zf&&c.Zf>(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.Zf=null;},600);if(null!=c.hb){c.dj=c.hb<c.ba;c.hb=null;c.Tf=null;c.yb=null;c.sc=null;1.1>c.ba&&(c.ba=1);c.F.scale=c.ba;for(var e=0;e<c.document.numPages;e++){c.Ua(e)&&(c.pages[e].scale=c.F.scale,c.pages[e].Pa());}c.Ed();setTimeout(function(){1==c.F.scale&&(c.M(c.J).transition({x:0,y:0},0),c.F.ta.turn("setCornerDragging",!0),c.F.I.fb&&(c.F.T.show(),c.F.T.animate({opacity:1},100)));1<c.F.scale&&c.F.I.fb&&c.F.T.animate({opacity:0},0,function(){c.F.T.hide();});for(var d=0;d<c.document.numPages;d++){c.Ua(d)&&(c.pages[d].pa=!1);}c.gd();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.sd=parseFloat(e[0]),c.xe=parseFloat(e[1]),isNaN(c.sd)&&(c.sd=0,c.xe=0)),c.yb&&1.9<c.F.scale&&(jQuery(".flowpaper_flipview_canvas_highres").show(),jQuery(".flowpaper_flipview_canvas").hide()),c.F.renderer.tb&&c.F.renderer.mb&&1.9<c.F.scale&&(e=1<c.R?c.R-1:c.R,1<c.R&&c.F.renderer.Pc(c.pages[e-1]),c.F.renderer.Pc(c.pages[e])),null!=c.yb&&c.Ed(null!=c.ba?c.ba:c.F.scale)):(c.sd=0,c.xe=0);c.Mf=!1;c.yb=null;c.sc=null;});jQuery(c.J+"_parent").on("gesturechange",function(d){d.preventDefault();c.F.I.pg||(null==c.hb&&(c.hb=d.originalEvent.scale),c.F.ta.turn("setCornerDragging",!1),c.ba=c.F.scale+(c.hb>c.F.scale?(d.originalEvent.scale-c.hb)/2:4*(d.originalEvent.scale-c.hb)),1>c.ba&&(c.ba=1),3<c.ba&&!eb.platform.Od&&!c.F.renderer.sa&&(c.ba=3),c.F.renderer.mb&&4<c.ba&&eb.platform.ipad&&!c.F.renderer.sa&&(c.ba=4),!c.F.renderer.mb&&3<c.ba&&(eb.platform.ipad||eb.platform.iphone)&&!c.F.renderer.sa&&(c.ba=3),d=1!=c.F.da||c.F.I.Ba?0:-(c.md()/4),c.M(c.J+"_parent").transition({x:d,y:c.F.nc,scale:c.ba},0,"ease",function(){}));});jQuery(c.J+"_parent").on("gestureend",function(d){d.preventDefault();if(!c.F.I.pg){c.yh=c.ba<c.F.scale||c.yh;c.F.scale=c.ba;for(d=0;d<c.document.numPages;d++){c.Ua(d)&&(c.pages[d].scale=c.F.scale,c.pages[d].Pa());}c.Ed();setTimeout(function(){1==c.F.scale&&(c.M(c.J).transition({x:0,y:0},0),c.F.ta.turn("setCornerDragging",!0));for(var d=0;d<c.document.numPages;d++){c.Ua(d)&&(c.pages[d].pa=!1);}c.gd();jQuery(c).trigger("onScaleChanged");c.ba=null;},500);}});jQuery(c.J+"_parent").on("mousewheel",function(d){if(!(c.je()||c.F.PreviewMode||(c.F.ta.turn("cornerActivated")&&c.F.ta.turn("stop"),c.F.I.pg||c.F.I.yn))){d.preventDefault&&d.preventDefault();d.returnValue=!1;c.Gd||(c.Gd=0);0<d.deltaY?c.F.scale+c.Gd+2*c.F.document.ZoomInterval<c.F.document.MaxZoomSize&&(c.Gd=c.Gd+2*c.F.document.ZoomInterval):c.Gd=1.2<c.F.scale+c.Gd-3*c.F.document.ZoomInterval?c.Gd-3*c.F.document.ZoomInterval:-(c.F.scale-1);null!=c.Ae&&(window.clearTimeout(c.Ae),c.Ae=null);1.1<=c.F.scale+c.Gd?(c.F.I.fb&&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.ta.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.fb&&(c.F.T.show(),c.F.T.animate({opacity:1},100)),c.yb=null,c.sc=null,c.sd=0,c.xe=0);c.dd=c.F.scale+c.Gd;1>c.dd&&(c.dd=1);if(!(eb.browser.mozilla&&30>eb.browser.version)&&0<jQuery(c.J).find(d.target).length){if(1==c.dd){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.ta.turn("setCornerDragging",!1),0<jQuery(c.J).has(d.target).length){d=jQuery(c.J+"_parent").If(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.Cd=parseFloat(e[0]),c.Dd=parseFloat(e[1]),0==c.Cd&&(c.Cd=d.x),0==c.Dd&&(c.Dd=d.y)):(c.Cd=d.x,c.Dd=d.y);c.M(c.J+"_parent").transition({transformOrigin:c.Cd+"px "+c.Dd+"px"},0,null,function(){if(eb.platform.touchonlydevice){c.F.scale=c.dd;for(var d=0;d<c.document.numPages;d++){c.Ua(d)&&(c.pages[d].scale=c.dd,c.pages[d].Pa());}c.Ed();}});}}}jQuery(".flowpaper_flipview_canvas").yd();jQuery(".flowpaper_flipview_canvas_highres").rc();jQuery(c.J+"_glyphcanvas").css("z-index",-1).rc();c.F.ta.turn("setCornerDragging",!1);c.M(c.J+"_parent").transition({scale:c.dd},0,"ease",function(){window.clearTimeout(c.Ae);c.Ae=setTimeout(function(){c.F.scale==c.dd&&c.Ed();c.F.scale=c.dd;for(var d=c.Gd=0;d<c.document.numPages;d++){c.Ua(d)&&(c.pages[d].scale=c.F.scale,c.pages[d].Pa());}1==c.F.scale&&(c.M(c.J).transition({x:0,y:0},0),c.F.ta.turn("setCornerDragging",!0));for(d=0;d<c.document.numPages;d++){c.Ua(d)&&(c.pages[d].pa=!1);}c.gd();c.dd=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.kf){return jQuery(d.target).hasClass("flowpaper_arrow_start")?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.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");}},Uh:function(c,d){c.pl=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.ig/2-25)+"px;width:"+c.ld+"px;height:"+c.ig+"px;z-index:100;'></div>");jQuery("#"+c.container+"_play").wd(50,"#AAAAAA",!0);},Yo:function(c,d){d.find("#"+c.container+"_play").remove();c.pl=null;},previous:function(c){if("FlipView"==c.F.H){var d=c.R-1;c.F.renderer.le&&c.ef(d);1!=c.F.scale?c.Pa(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.Ba){d++,c.F.renderer.le&&c.ef(d),1!=c.F.scale?c.Pa(1,!0,function(){jQuery(c.F.K).trigger("onScaleChanged",1/c.F.document.MaxZoomSize);c.F.turn("next");}):c.F.turn("next");}}},Yg:function(c,d,e){if(!c.animating){var g=c.L.width(),f=c.L.height(),r=null==c.dd?c.F.scale:c.dd;"FlipView"==c.F.H&&1<r&&!eb.browser.safari?c.M(c.J).transition({x:-c.Un(d,c.F.scale),y:-c.Vn(e)},0):"FlipView"==c.F.H&&1<r&&eb.browser.safari&&jQuery(".flowpaper_viewer").scrollTo({top:0.9*e/f*100+"%",left:d/g*100+"%"},0,{axis:"xy"});}},Hi: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;},Ne: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.Pb()||jQuery(".flowpaper_viewer").scrollTo({left:"0%",top:"0%"},0,{axis:"xy"});}};return f;}(),X=window.Eq=X||{},Y=X;Y.Lh={PI:Math.PI,Jr:1/Math.PI,bo:0.5*Math.PI,Fn:2*Math.PI,ns:Math.PI/180,ms:180/Math.PI};Y.ee={NONE:0,LEFT:-1,RIGHT:1,X:1,Y:2,Rh:4,Rq:0,Sq:1,Vq:2};Y.um="undefined"!==typeof Float32Array?Float32Array:Array;Y.sq="undefined"!==typeof Float64Array?Float64Array:Array;Y.tq="undefined"!==typeof Int8Array?Int8Array:Array;Y.oq="undefined"!==typeof Int16Array?Int16Array:Array;Y.qq="undefined"!==typeof Int32Array?Int32Array:Array;Y.uq="undefined"!==typeof Uint8Array?Uint8Array:Array;Y.pq="undefined"!==typeof Uint16Array?Uint16Array:Array;Y.rq="undefined"!==typeof Uint32Array?Uint32Array:Array;Y.Qh=Y.um;!0;!function(f,c){var d=f.Sj=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};},Db: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.Sj,h=f.Em=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};},Db: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,q=c.m12,n=c.m21;c=c.m22;this.m11=d*h+e*n;this.m12=d*q+e*c;this.m21=g*h+f*n;this.m22=g*q+f*c;return this;},ps:function(c){var d=c.x;c=c.y;return new g(this.m11*d+this.m12*c,this.m21*d+this.m22*c);},dm: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.Qh,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};},Db:function(c){c&&this.name===c.name&&(this.ca=c.ca);return this;},Md:function(){return new e(this.ca);},Lk:function(){return this.ca;},setXYZ:function(c){this.ca=new e(c);return this;},Nl:function(c){this.ca=c;return this;},clone:function(){return new g(this.ca);},mr:function(c){var d=this.ca;c=c.ca;return d[0]==c[0]&&d[1]==c[1]&&d[2]==c[2];},Ds: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]]);},Ur: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]]);},Wm:function(c){var d=this.ca;c=c.ca;d[0]+=c[0];d[1]+=c[1];d[2]+=c[2];return this;},hs:function(c){var d=this.ca;c=c.ca;return new g([d[0]-c[0],d[1]-c[1],d[2]-c[2]]);},js: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]);},Rr: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]]);},Sr: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]);},ir: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]);},Ho: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;},vr:function(){var c=this.ca,e=c[0],g=c[1],c=c[2];return d(e*e+g*g+c*c);},ds:function(c){this.Ho();var d=this.ca;d[0]*=c;d[1]*=c;d[2]*=c;return this;},jr:function(c){var d=this.ca;c=c.ca;return d[0]*c[0]+d[1]*c[1]+d[2]*c[2];},ar:function(c){var d=this.ca,e=c.ca;c=d[0];var g=d[1],f=d[2],p=e[0],t=e[1],e=e[2];d[0]=g*e-f*t;d[1]=f*p-c*e;d[2]=c*t-g*p;return this;},hr: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],t=f[0],q=f[1],f=f[2];return new g([p*f-e*q,e*t-m*f,m*q-p*t]);};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.ks=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.ee,e=d.X,g=d.Y,h=d.Rh,r=f.Vector3,k=f.Qh;f.hg=ring.create({constructor:function(d){this.ca=new k([0,0,0]);this.Mb=new k([0,0,0]);this.ratio=new k([0,0,0]);c!==d&&null!==d&&!1!==d&&this.Ml(d);},jb:null,ca:null,Mb:null,ratio:null,dispose:function(){this.ratio=this.Mb=this.ca=this.jb=null;return this;},serialize:function(){return{jb:this.name,ca:this.Md(),Mb:this.Mb,ratio:this.ratio};},Db:function(c){c&&(this.setXYZ(c.ca),this.Mb=c.Mb,this.ratio=c.ratio);return this;},Ml:function(c){this.jb=c;return this;},Br:function(){return new r(this.ratio);},Ar:function(c){switch(c){case e:return this.ratio[0];case g:return this.ratio[1];case h:return this.ratio[2];}return -1;},zr:function(c){switch(c){case e:return this.Mb[0];case g:return this.Mb[1];case h:return this.Mb[2];}return 0;},rp: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;},pp:function(d,e,g){d=d===c?0:d;e=e===c?0:e;g=g===c?0:g;this.Mb=new k([d,e,g]);return this;},Md:function(){return new k(this.ca);},Lk: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;},Nl: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.Mb);return this;},collapse:function(){this.Mb=this.Md();return this;},Hk:function(){return new r(this.Md());},Ll:function(c){this.setXYZ(c.ca);}});}(X);!function(f,c){var d=f.ee,e=d.X,g=d.Y,h=d.Rh,r=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.hg).Db(c):c;}:function(c,d){return c&&c.jb?this.vertices[d].Db(c):c;};f.Lg=ring.create({constructor:function(d){this.depth=this.height=this.width=this.wc=this.hc=this.gc=this.Td=this.Sd=this.Rd=this.we=this.ve=this.ue=null;this.vertices=[];this.faces=[];this.ja=null;c!==d&&this.tj(d);},ue:null,ve:null,we:null,Rd:null,Sd:null,Td:null,gc:null,hc:null,wc:null,width:null,height:null,depth:null,vertices:null,faces:null,ja:null,dispose:function(){this.depth=this.height=this.width=this.wc=this.hc=this.gc=this.Td=this.Sd=this.Rd=this.we=this.ve=this.ue=null;this.uk();this.vk();this.ja=null;return this;},vk: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;},uk: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,ue:this.ue,ve:this.ve,we:this.we,Rd:this.Rd,Sd:this.Sd,Td:this.Td,gc:this.gc,hc:this.hc,wc:this.wc,width:this.width,height:this.height,depth:this.depth,vertices:this.vertices?this.vertices.map(l):null,faces:null};},Db:function(c){c&&(f.isWorker&&(this.uk(),this.vk()),this.ue=c.ue,this.ve=c.ve,this.we=c.we,this.Rd=c.Rd,this.Sd=c.Sd,this.Td=c.Td,this.gc=c.gc,this.hc=c.hc,this.wc=c.wc,this.width=c.width,this.height=c.height,this.depth=c.depth,this.vertices=(c.vertices||[]).map(m,this),this.faces=null);return this;},tj:function(c){this.ja=c;this.vertices=[];return this;},Ik:function(){return this.vertices;},sr:function(){return this.faces;},ck:function(){var c=this.vertices,d=c.length,f=d,l,m,v,x,z,w,D,C,H,A,G;for(d&&(l=c[0],m=l.Md(),v=m[0],x=m[1],m=m[2],z=w=v,D=C=x,H=A=m);0<=--f;){l=c[f],m=l.Md(),v=m[0],x=m[1],m=m[2],l.pp(v,x,m),z=r(z,v),D=r(D,x),H=r(H,m),w=k(w,v),C=k(C,x),A=k(A,m);}v=w-z;x=C-D;G=A-H;this.width=v;this.height=x;this.depth=G;this.Rd=z;this.ue=w;this.Sd=D;this.ve=C;this.Td=H;this.we=A;f=k(v,x,G);l=r(v,x,G);f==v&&l==x?(this.wc=g,this.hc=h,this.gc=e):f==v&&l==G?(this.wc=h,this.hc=g,this.gc=e):f==x&&l==v?(this.wc=e,this.hc=h,this.gc=g):f==x&&l==G?(this.wc=h,this.hc=e,this.gc=g):f==G&&l==v?(this.wc=e,this.hc=g,this.gc=h):f==G&&l==x&&(this.wc=g,this.hc=e,this.gc=h);for(f=d;0<=--f;){l=c[f],m=l.Md(),l.rp((m[0]-z)/v,(m[1]-D)/x,(m[2]-H)/G);}return this;},ep:function(){for(var c=this.vertices,d=c.length;0<=--d;){c[d].reset();}this.update();return this;},sn:function(){for(var c=this.vertices,d=c.length;0<=--d;){c[d].collapse();}this.update();this.ck();return this;},Zn:function(c){switch(c){case e:return this.Rd;case g:return this.Sd;case h:return this.Td;}return -1;},wr:function(c){switch(c){case e:return this.ue;case g:return this.ve;case h:return this.we;}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;},Yr:function(){return this;},gm:function(){return this;}});}(X);!function(f){var c=0,d=f.ee.NONE;f.Rj=ring.create({constructor:function(e){this.id=++c;this.ma=e||null;this.dc=this.Le=d;this.enabled=!0;},id:null,ma:null,Le:null,dc:null,enabled:!0,dispose:function(c){!0===c&&this.ma&&this.ma.dispose();this.dc=this.Le=this.name=this.ma=null;return this;},serialize:function(){return{rd:this.name,params:{Le:this.Le,dc:this.dc,enabled:!!this.enabled}};},Db:function(c){c&&this.name===c.rd&&(c=c.params,this.Le=c.Le,this.dc=c.dc,this.enabled=c.enabled);return this;},enable:function(c){return arguments.length?(this.enabled=!!c,this):this.enabled;},Zq:function(c){this.Le=c||d;return this;},bs:function(c){this.dc=c||d;return this;},Dh:function(c){this.ma=c;return this;},Ik:function(){return this.ma?this.ma.Ik():null;},yf:function(){return this;},apply:function(c){var d=this;d._worker?d.bind("apply",function(f){d.unbind("apply");f&&f.Ag&&(d.ma.Db(f.Ag),d.ma.update());c&&c.call(d);}).send("apply",{params:d.serialize(),Ag:d.ma.serialize()}):(d.yf(),c&&c.call(d));return d;},toString:function(){return"[Modifier "+this.name+"]";}});}(X);!function(f){f.Oh=ring.create({constructor:function(){this.Xi=f.Lg;this.mm=f.hg;},Xi:null,mm:null});var c=ring.create({Yn:function(c){if(arguments.length){var e=c.Xi;return e?new e:null;}return null;},$n:function(c){return c&&c.rd&&f[c.rd]?new f[c.rd]:null;},ur:function(c){return c&&c.cl&&f[c.cl]?new f[c.cl]:new f.Oh;},xr:function(c){return c&&c.ja&&f[c.ja]?(new f.Lg).Db(c):new f.Lg;},Cr:function(c){return c&&c.jb&&f[c.jb]?(new f.hg).Db(c):new f.hg;}});f.Pj=new c;}(X);!function(f){function c(c){return c?c.serialize():c;}var d=f.Pj.Yn,e=f.Gm=ring.create({constructor:function(c,e){this.ma=null;this.stack=[];this.Si=f.isWorker?new f.Oh:c;this.ma=d(this.Si);e&&(this.ma.tj(e),this.ma.ck());},Si:null,ma:null,stack:null,dispose:function(c){this.Si=null;if(c&&this.stack){for(;this.stack.length;){this.stack.pop().dispose();}}this.stack=null;this.ma&&this.ma.dispose();this.ma=null;return this;},serialize:function(){return{rd:this.name,params:{Fo:this.stack.map(c)}};},Db:function(c){if(c&&this.name===c.rd){c=c.params.Fo;var d=this.stack,e;if(c.length!==d.length){for(e=d.length=0;e<c.length;e++){d.push(f.Pj.$n(c[e]));}}for(e=0;e<d.length;e++){d[e]=d[e].Db(c[e]).Dh(this.ma);}this.stack=d;}return this;},Dh:function(c){this.ma=c;return this;},add:function(c){c&&(c.Dh(this.ma),this.stack.push(c));return this;},yf:function(){if(this.ma&&this.stack&&this.stack.length){var c=this.stack,d=c.length,e=this.ma,f=0;for(e.ep();f<d;){c[f].enabled&&c[f].yf(),f++;}e.update();}return this;},apply:function(c){var d=this;d._worker?d.bind("apply",function(e){d.unbind("apply");e&&e.Ag&&(d.ma.Db(e.Ag),d.ma.update());c&&c.call(d);}).send("apply",{params:d.serialize(),Ag:d.ma.serialize()}):(d.yf(),c&&c.call(d));return d;},collapse:function(){this.ma&&this.stack&&this.stack.length&&(this.apply(),this.ma.sn(),this.stack.length=0);return this;},clear:function(){this.stack&&(this.stack.length=0);return this;},yr:function(){return this.ma;}});e.prototype.$j=e.prototype.add;}(X);!function(f){var c=f.Vector3;f.Km=ring.create([f.Rj],{constructor:function(d,e,g){this.$super();this.ac=new c([d||0,e||0,g||0]);},ac:null,dispose:function(){this.ac.dispose();this.ac=null;this.$super();return this;},serialize:function(){return{rd:this.name,params:{ac:this.ac.serialize(),enabled:!!this.enabled}};},Db:function(c){c&&this.name===c.rd&&(c=c.params,this.ac.Db(c.ac),this.enabled=!!c.enabled);return this;},es:function(){var d=this.ma;this.ac=new c(-(d.Rd+0.5*d.width),-(d.Sd+0.5*d.height),-(d.Td+0.5*d.depth));return this;},yf:function(){for(var c=this.ma.vertices,e=c.length,g=this.ac,f;0<=--e;){f=c[e],f.Ll(f.Hk().Wm(g));}this.ma.gm(g.negate());return this;}});}(X);!function(f,c){var d=f.ee.NONE,e=f.ee.LEFT,g=f.ee.RIGHT,h=f.Em,r=Math.atan,k=Math.sin,l=Math.cos,m=f.Lh.PI,p=f.Lh.bo,t=f.Lh.Fn,q=f.Sj;f.wm=ring.create([f.Rj],{constructor:function(e,g,f){this.$super();this.dc=d;this.origin=this.height=this.width=this.Qd=this.min=this.max=0;this.qd=this.pd=null;this.Se=0;this.$d=!1;this.force=e!==c?e:0;this.offset=g!==c?g:0;f!==c?this.Eg(f):this.Eg(0);},force:0,offset:0,angle:0,Se:0,max:0,min:0,Qd:0,width:0,height:0,origin:0,pd:null,qd:null,$d:!1,dispose:function(){this.origin=this.height=this.width=this.Qd=this.min=this.max=this.Se=this.angle=this.offset=this.force=null;this.pd&&this.pd.dispose();this.qd&&this.qd.dispose();this.$d=this.qd=this.pd=null;this.$super();return this;},serialize:function(){return{rd:this.name,params:{force:this.force,offset:this.offset,angle:this.angle,Se:this.Se,max:this.max,min:this.min,Qd:this.Qd,width:this.width,height:this.height,origin:this.origin,pd:this.pd.serialize(),qd:this.qd.serialize(),$d:this.$d,dc:this.dc,enabled:!!this.enabled}};},Db:function(c){c&&this.name===c.rd&&(c=c.params,this.force=c.force,this.offset=c.offset,this.angle=c.angle,this.Se=c.Se,this.max=c.max,this.min=c.min,this.Qd=c.Qd,this.width=c.width,this.height=c.height,this.origin=c.origin,this.pd.Db(c.pd),this.qd.Db(c.qd),this.$d=c.$d,this.dc=c.dc,this.enabled=!!c.enabled);return this;},Eg:function(c){this.angle=c;this.pd=(new h).rotate(c);this.qd=(new h).rotate(-c);return this;},Dh:function(c){this.$super(c);this.max=this.$d?this.ma.hc:this.ma.gc;this.min=this.ma.wc;this.Qd=this.$d?this.ma.gc:this.ma.hc;this.width=this.ma.getSize(this.max);this.height=this.ma.getSize(this.Qd);this.origin=this.ma.Zn(this.max);this.Se=r(this.width/this.height);return this;},yf:function(){if(!this.force){return this;}for(var c=this.ma.vertices,d=c.length,f=this.dc,h=this.width,r=this.offset,w=this.origin,D=this.max,C=this.min,H=this.Qd,A=this.pd,G=this.qd,B=w+h*r,F=h/m/this.force,y=h/(F*t)*t,E,I,K,N,L=1/h;0<=--d;){h=c[d],E=h.getValue(D),I=h.getValue(H),K=h.getValue(C),I=A.dm(new q(E,I)),E=I.x,I=I.y,N=(E-w)*L,e===f&&N<=r||g===f&&N>=r||(N=p-y*r+y*N,E=k(N)*(F+K),N=l(N)*(F+K),K=E-F,E=B-N),I=G.dm(new q(E,I)),E=I.x,I=I.y,h.setValue(D,E),h.setValue(H,I),h.setValue(C,K);}return this;}});}(X);!function(f){var c=f.ee,d=c.X,e=c.Y,g=c.Rh,h=f.Vector3,r=f.Qh,c=f.Tj=ring.create([f.hg],{constructor:function(c,d){this.ja=c;this.$super(d);},ja:null,dispose:function(){this.ja=null;this.$super();return this;},Ml:function(c){this.jb=c;this.Mb=new r([c.x,c.y,c.z]);this.ca=new r(this.Mb);return this;},Md:function(){var c=this.jb;return new r([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.Mb;c.x=d[0];c.y=d[1];c.z=d[2];return this;},collapse:function(){var c=this.jb;this.Mb=new r([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;},Ll:function(c){var d=this.jb;c=c.ca;d.x=c[0];d.y=c[1];d.z=c[2];return this;},Hk:function(){var c=this.jb;return new h([c.x,c.y,c.z]);}});c.prototype.Lk=c.prototype.Md;c.prototype.Nl=c.prototype.setXYZ;}(X);!function(f){var c=f.Tj;f.Fm=ring.create([f.Lg],{constructor:function(c){this.$super(c);},tj:function(d){this.$super(d);var e=0;d=this.ja;for(var f=this.vertices,h=d.geometry.vertices,r=h.length,k,e=0;e<r;){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.Xq=!0;c.dynamic=!0;return this;},gm: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.Oh],{constructor:function(){this.Xi=f.Fm;this.mm=f.Tj;}});f.Dm=new c;}(X);J=V.prototype;J.Wk=function(){var f=this;if(f.F.H&&(!f.F.H||0!=f.F.H.length)&&f.F.I.ub&&!f.Pi){f.Pi=!0;f.Qb=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.Sb=new THREE.Scene;f.ce=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.Qb,g,c));f.ce.get(0).addEventListener("webglcontextlost",function(c){f.Id();c.preventDefault&&c.preventDefault();f.ce.remove();return !1;},!1);f.Fd=new THREE.WebGLRenderer({alpha:!0,antialias:!0,canvas:f.ce.get(0)});f.Fd.setPixelRatio(eb.platform.Ya);f.Fd.shadowMap.type=THREE.PCFShadowMap;f.Fd.shadowMap.enabled=!0;f.Hb=new THREE.PerspectiveCamera(180/Math.PI*Math.atan(e/1398)*2,d/e,1,1000);f.Hb.position.z=700;f.Sb.add(f.Hb);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.Sb.add(g);f.Fd.setSize(d,e);0==f.Fd.context.getError()?(jQuery(f.F.N).append(f.Fd.domElement),f.WebGLObject=new THREE.Object3D,f.WebGLObject.scale.set(1,1,0.35),f.Cc=new THREE.Object3D,f.WebGLObject.add(f.Cc),f.Sb.add(f.WebGLObject),f.cb=new THREE.DirectionalLight(16777215,0.2),f.cb.position.set(500,0,800),f.cb.intensity=0.37,f.cb.shadow=new THREE.LightShadow(new THREE.PerspectiveCamera(70,1,5,2000)),f.cb.castShadow=!0,f.cb.shadow.bias=-0.000222,f.cb.shadow.mapSize.height=1024,f.cb.shadow.mapSize.width=1024,f.Sb.add(f.cb),d=f.gs=new THREE.CameraHelper(f.cb.shadow.camera),d.visible=!1,f.Sb.add(d),f.Tb=new THREE.AmbientLight(16777215),f.Tb.intensity=0.75,f.Tb.visible=!0,f.Sb.add(f.Tb),f.Hb.lookAt(f.Sb.position),f.Wi(),f.F.renderer.sa&&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 t=f.getPage(g);if(t&&t.Jc(e,p)&&0==t.pageNumber%2){var q=f.pages.length>g+1?f.pages[g]:null;f.F.renderer.S[t.pageNumber].loaded?q&&!f.F.renderer.S[q.pageNumber].loaded&&f.F.renderer.tc(q.pageNumber+1,!0,function(){}):f.F.renderer.tc(t.pageNumber+1,!0,function(){q&&!f.F.renderer.S[q.pageNumber].loaded&&f.F.renderer.tc(q.pageNumber+1,!0,function(){});});t.Lc(f.F.renderer.ga(t.pageNumber+1),f.F.renderer.ga(t.pageNumber+2),!0);}}})):f.Id();f.Pi=!1;}};J.Id=function(){this.F.I.ub=!1;for(var f=0;f<this.document.numPages;f++){this.pages[f]&&this.pages[f].ja&&this.pages[f].zn();}this.Sb&&(this.WebGLObject&&this.Sb.remove(this.WebGLObject),this.Hb&&this.Sb.remove(this.Hb),this.Tb&&this.Sb.remove(this.Tb),this.cb&&this.Sb.remove(this.cb),this.ce.remove());this.Qb=null;};J.Al=function(){if(this.F.I.ub){if(this.pe=[],this.ce){for(var f=0;f<this.document.numPages;f++){this.pages[f].ja&&this.pages[f].Jg(!0);}var f=this.F.N.width(),c=this.F.N.height(),d=180/Math.PI*Math.atan(c/1398)*2;this.Fd.setSize(f,c);this.Hb.fov=d;this.Hb.aspect=f/c;this.Hb.position.z=700;this.Hb.position.x=0;this.Hb.position.y=0;this.Hb.updateProjectionMatrix();jQuery("#"+this.Qb).css("opacity","0");}else{this.Wk();}}};J.Bp=function(){var f=jQuery(this.J).offset();jQuery(this.J).width();var c=jQuery(this.J).height();this.Hb.position.y=-1*((this.ce.height()-c)/2-f.top)-this.F.N.offset().top;this.Hb.position.x=0;this.eo=!0;};J.je=function(){if(!this.F.I.ub){return !1;}for(var f=this.kg,c=0;c<this.document.numPages;c++){if(this.pages[c].Wb||this.pages[c].Xb){f=!0;}}return f;};J.Xn=function(f){return f==this.ua?2:f==this.ua-2?1:f==this.ua+2?1:0;};J.Ym=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].Wb||this.pages[c].Xb||this.pages[c].ja.rotation.y==-Math.PI||this.pages[c].mo():this.pages[c].Wb||this.pages[c].Xb||0==this.pages[c].ja.rotation.y||this.pages[c].no(),this.pages[c].ja.position.x=800<f?0.5:0,this.pages[c].ja.position.y=0,this.pages[c].Wb||this.pages[c].Xb||(this.pages[c].ja.position.z=this.Xn(c)),this.pages[c].ja.visible=0==this.pages[c].ja.position.z?!1:!0);}};J.Ej=function(f,c){var d=this;d.Sk=!1;var e=d.F.getTotalPages();d.kg=!0;d.Lj=f;d.iq=c;if(1==d.F.scale){if("next"==f&&(d.ua?d.ua=d.ua+2:d.ua=d.R-1,0==e%2&&d.ua==e-2&&(d.Sk=!0),0!=d.ua%2&&(d.ua=d.ua-1),d.ua>=e-1&&0!=e%2)){d.kg=!1;return;}"previous"==f&&(d.ua=d.ua?d.ua-2:d.R-3,0!=d.ua%2&&(d.ua+=1),d.ua>=e&&(d.ua=e-3));"page"==f&&(d.ua=c-3,f=d.ua>=d.R-1?"next":"previous");d.pages[d.ua]&&!d.pages[d.ua].ja&&d.pages[d.ua].Pe();d.pages[d.ua-2]&&!d.pages[d.ua-2].ja&&d.pages[d.ua-2].Pe();d.pages[d.ua+2]&&!d.pages[d.ua+2].ja&&d.pages[d.ua+2].Pe();d.Bp();"0"==jQuery("#"+d.Qb).css("opacity")&&jQuery("#"+d.Qb).animate({opacity:0.5},50,function(){});jQuery("#"+d.Qb).animate({opacity:1},{duration:60,always:function(){d.Ym();d.kg=!1;if("next"==f&&!d.pages[d.ua].Wb&&!d.pages[d.ua].Xb){if(0==d.ua||d.Sk){d.F.ta.css({opacity:0}),d.Cc.position.x=d.pages[d.ua].Nc/2*-1,jQuery(d.J+"_parent").transition({x:0},0,"ease",function(){});}0<d.ua&&(d.Cc.position.x=0);jQuery("#"+d.Qb).css("z-index",99);d.de||(d.de=!0,d.kj());d.cb.position.set(300,d.h/2,400);d.cb.intensity=0;d.Tb.color.setRGB(1,1,1);var c=d.Kk();(new TWEEN.Tween({intensity:d.cb.intensity})).to({intensity:0.37},c/2).easing(TWEEN.Easing.Sinusoidal.EaseInOut).onUpdate(function(){d.cb.intensity=this.intensity;d.Tb.intensity=1-this.intensity;d.Tb.color.setRGB(1-this.intensity/6,1-this.intensity/6,1-this.intensity/6);}).onComplete(function(){(new TWEEN.Tween({intensity:d.cb.intensity})).to({intensity:0},c/2).easing(TWEEN.Easing.Sinusoidal.EaseInOut).onUpdate(function(){d.cb.intensity=this.intensity;d.Tb.intensity=1-this.intensity;d.Tb.color.setRGB(1-this.intensity/6,1-this.intensity/6,1-this.intensity/6);}).start();}).start();d.pages[d.ua].Nn(d.Jk());}"previous"==f&&(d.kg=!1,!d.pages[d.ua]||d.pages[d.ua].Xb||d.pages[d.ua].Wb||(0==d.ua&&(d.F.ta.css({opacity:0}),jQuery(d.J+"_parent").transition({x:-(d.md()/4)},0,"ease",function(){}),d.Cc.position.x=0),0<d.ua&&(d.Cc.position.x=0),jQuery("#"+d.Qb).css("z-index",99),d.de||(d.de=!0,d.kj()),d.cb.position.set(-300,d.h/2,400),d.cb.intensity=0,d.Tb.color.setRGB(1,1,1),c=d.Kk(),(new TWEEN.Tween({intensity:d.cb.intensity})).to({intensity:0.37},c/2).easing(TWEEN.Easing.Sinusoidal.EaseInOut).onUpdate(function(){d.cb.intensity=this.intensity;d.Tb.intensity=1-this.intensity;d.Tb.color.setRGB(1-this.intensity/6,1-this.intensity/6,1-this.intensity/6);}).onComplete(function(){(new TWEEN.Tween({intensity:d.cb.intensity})).to({intensity:0},c/2).easing(TWEEN.Easing.Sinusoidal.EaseInOut).onUpdate(function(){d.cb.intensity=this.intensity;d.Tb.intensity=1-this.intensity;d.Tb.color.setRGB(1-this.intensity/6,1-this.intensity/6,1-this.intensity/6);}).start();}).start(),d.pages[d.ua].On(d.Jk())));}});}};J.Kk=function(){var f=800;"very fast"==this.F.I.Vc&&(f=200);"fast"==this.F.I.Vc&&(f=300);"slow"==this.F.I.Vc&&(f=1700);"very slow"==this.F.I.Vc&&(f=2700);return f;};J.Jk=function(){var f=1.5;"very fast"==this.F.I.Vc&&(f=0.4);"fast"==this.F.I.Vc&&(f=0.7);"slow"==this.F.I.Vc&&(f=2.3);"very slow"==this.F.I.Vc&&(f=3.7);return f;};J.fo=function(){this.F.I.eh?("next"==this.Lj&&this.F.ta.turn("page",this.ua+2,"instant"),"previous"==this.Lj&&this.F.ta.turn("page",this.ua,"instant")):this.F.ta.turn(this.Lj,this.iq,"instant");this.ua=null;};J.kj=function(){var f,c=this;c.ec||(c.ec=[]);3>c.ec.length&&(f=!0);if((c.F.I.ub||c.de)&&(c.de||f)&&(c.Ld||(c.Ld=0,c.yg=(new Date).getTime(),c.elapsedTime=0),f=(new Date).getTime(),requestAnim(function(){c.kj();}),TWEEN.update(),c.Fd.render(c.Sb,c.Hb),c.Ld++,c.elapsedTime+=f-c.yg,c.yg=f,1000<=c.elapsedTime&&4>c.ec.length&&(f=c.Ld,c.Ld=0,c.elapsedTime-=1000,c.ec.push(f),3==c.ec.length&&!c.Bi))){c.Bi=!0;for(var d=f=0;3>d;d++){f+=c.ec[d];}25>f/3&&c.Id();}};J.Uf=function(f){var c=this;if(f&&!c.fd){c.fd=f;}else{if(f&&c.fd&&10>c.fd+f){c.fd=c.fd+f;return;}}c.Fd&&c.Sb&&c.Hb&&c.eo?c.animating?setTimeout(function(){c.Uf();},500):(0<c.fd?(c.fd=c.fd-1,requestAnim(function(){c.Uf();})):c.fd=null,!c.de&&0<c.fd&&c.Fd.render(c.Sb,c.Hb)):c.fd=null;};J.Wi=function(){var f=this;if(!f.F.initialized){setTimeout(function(){f.Wi();},1000);}else{if(!eb.platform.ios&&(f.ec||(f.ec=[]),f.ce&&f.F.I.ub&&!f.de&&4>f.ec.length)){f.Ld||(f.Ld=0,f.yg=(new Date).getTime(),f.elapsedTime=0);var c=(new Date).getTime();requestAnim(function(){f.Wi();});f.Ld++;f.elapsedTime+=c-f.yg;f.yg=c;c=f.ce.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.ec.length&&(c=f.Ld,f.Ld=0,f.elapsedTime-=1000,f.ec.push(c),4==f.ec.length&&!f.Bi)){f.Bi=!0;for(var d=c=0;3>d;d++){c+=f.ec[d];}25>c/3&&f.Id();}}else{f.Id();}}}};J.Oo=function(){for(var f=this,c=!1,d=0;d<f.document.numPages;d++){if(f.pages[d].Wb||f.pages[d].Xb){c=!0;}}c||(f.kg=!1,3>f.ec?setTimeout(function(){f.je()||(f.de=!1);},3000):f.de=!1,f.fo());};var Da=function(){function f(){}f.prototype={Jc:function(c,d){return d.pages.R==d.pageNumber||d.R==d.pageNumber+1;},Sn:function(c,d,e){var f=null!=d.dimensions.nb?d.dimensions.nb:d.dimensions.na;return !d.pages.Pb()&&c.tb&&(!eb.browser.safari||eb.platform.touchdevice||eb.browser.safari&&7.1>eb.browser.Lb)?e:null!=d.dimensions.nb&&c.tb&&d.F.renderer.wa?d.pages.ld/(d.F.Xe?1:2)/f:d.sb&&!d.F.renderer.wa?d.pages.ld/2/d.F.renderer.Aa[d.pageNumber].nb:c.tb&&!d.sb&&!d.F.renderer.wa&&1<d.scale?d.Ii()/f:e;},an:function(c,d,e){jQuery(d.V+"_textoverlay").append(e);},ek:function(c,d,e,f,h,r,k){var l=c.Vo==f&&!d.F.renderer.tb;e&&(c.Vo=f,c.$r=e.attr("id"),c.Wo!=e.css("top")||h||c.Xo!=d.pageNumber?(null==c.xd||h||c.xd.remove(),c.Wo=e.css("top"),c.xd=h?r?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.xd.css({"margin-left":"-3px","margin-top":"-4px","z-index":"11"}),jQuery(d.va).append(c.xd)):l?(c.xd.css("width",c.xd.width()+e.width()),jQuery(c.xd.children()[0]).width(c.xd.width())):(c.xd.css("left",e.css("left")),c.xd.append(e)),e.css({left:"0px",top:"0px"}),e.addClass("flowpaper_selected"),e.addClass("flowpaper_selected_default"),e.addClass("flowpaper_selected_searchmatch"),c.Xo=d.pageNumber);}};return f;}(),Aa=function(){function f(){}f.prototype={create:function(c,d){if("FlipView"==c.F.H&&(c.wn=10<c.pages.De?c.pages.De:10,!(c.Qi||c.F.renderer.le&&!c.Va&&c.pageNumber>c.wn+6))){c.Oc=jQuery("<div class='flowpaper_page flowpaper_page_zoomIn' id='"+c.ud+"' 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.ta&&c.F.renderer.le?c.pages.F.ta.turn("addPage",c.Oc,c.pageNumber+1):jQuery(d).append(c.Oc);var e=c.qg()*c.Ma,f=c.xa()/e;null!=c.dimensions.nb&&c.tb&&c.F.renderer.wa&&(f=c.pages.ld/2/e);c.Vi=f;c.Of(f);c.Qi=!0;c.Va=!0;c.F.renderer.Nd(c);c.Pl();c.Pe&&c.Pe();}},lo:function(c){var d=c.qg()*c.Ma,e=c.xa()/d;null!=c.dimensions.nb&&c.tb&&c.F.renderer.wa&&(e=c.pages.ld/2/d);c.Vi=e;c.Of(e);},Ic:function(c){return c.pages.Ic()/(c.F.I.Ba?1:2);},Ef:function(c){return c.pages.Ef();},getDimensions:function(c){if("FlipView"==c.F.H){return c.L.width(),"position:absolute;left:0px;top:0px;width:"+c.xa(c)+";height:"+c.Ha(c);}},xa:function(c){if("FlipView"==c.F.H){return c.pages.ld/(c.F.I.Ba?1:2)*c.scale;}},Gi:function(c){if("FlipView"==c.F.H){return c.pages.ld/(c.F.I.Ba?1:2)*1;}},Ii:function(c){if("FlipView"==c.F.H){return c.pages.ld/(c.F.I.Ba?1:2);}},Ha:function(c){if("FlipView"==c.F.H){return c.pages.ig*c.scale;}},Fi:function(c){if("FlipView"==c.F.H){return 1*c.pages.ig;}},Yb:function(){return 0;},Jc:function(c){var d=c.F.I.ub;if("FlipView"==c.F.H){return c.pages.R>=c.pageNumber-(d?3:2)&&c.pages.R<=c.pageNumber+(d?5:4);}},unload:function(c){var d=c.V;0==jQuery(d).length&&(d=jQuery(c.Oc).find(c.V));(c.pageNumber<c.pages.R-15||c.pageNumber>c.pages.R+15)&&c.Oc&&!c.Oc.parent().hasClass("turn-page-wrapper")&&!c.xb&&0!=c.pageNumber&&(jQuery(d).find("*").unbind(),jQuery(d).find("*").remove(),c.initialized=!1,c.uc=!1);}};xa.prototype.ug=function(){return eb.platform.touchdevice?"FlipView"==this.F.H?!this.F.I.Ba&&window.devicePixelRatio&&1<window.devicePixelRatio?1.9:2.6:1:"FlipView"==this.F.H?2:1;};return f;}();J=xa.prototype;J.Pe=function(){var f=this;if(0==f.pageNumber%2&&1==f.scale&&f.F.I.ub){if(f.ja&&f.pages.Cc.remove(f.ja),f.pages.Qb||f.pages.Wk(),f.pages.Pi){setTimeout(function(){f.Pe();},200);}else{f.Nc=f.xa(f);f.Ud=f.Ha(f);f.angle=0.25*Math.PI*this.Nc/this.Ud;f.Gj=!eb.platform.touchonlydevice;for(var c=0;6>c;c++){c!=f.ra.Xa||f.Sa[f.ra.Xa]?c!=f.ra.back||f.Sa[f.ra.back]?f.Sa[c]||c==f.ra.back||c==f.ra.Xa||(f.Sa[c]=new THREE.MeshPhongMaterial({color:f.No}),f.Sa[c].name="edge"):(f.Sa[f.ra.back]=new THREE.MeshPhongMaterial({map:null,overdraw:!0,shininess:15}),f.Sa[f.ra.back].name="back",f.Xj(f.pageNumber,f.Nc,f.Ud,f.ra.back,function(c){f.cd||(f.Cj=new THREE.TextureLoader,f.Cj.load(c,function(c){c.minFilter=THREE.LinearFilter;f.Sa[f.ra.back].map=c;}));})):(f.Sa[f.ra.Xa]=new THREE.MeshPhongMaterial({map:null,overdraw:!0,shininess:15}),f.Sa[f.ra.Xa].name="front",f.Xj(f.pageNumber,f.Nc,f.Ud,f.ra.Xa,function(c){f.cd||(f.Bj=new THREE.TextureLoader,f.Bj.load(c,function(c){c.minFilter=THREE.LinearFilter;f.Sa[f.ra.Xa].map=c;}));}));}f.ja=new THREE.Mesh(new THREE.BoxGeometry(f.Nc,f.Ud,0.1,10,10,1),new THREE.MeshFaceMaterial(f.Sa));f.ja.receiveShadow=f.Gj;f.ja.overdraw=!0;f.ma=new X.Gm(X.Dm,f.ja);f.ac=new X.Km(f.Nc/2,0,0);f.ma.$j(f.ac);f.ma.collapse();f.cc=new X.wm(0,0,0);f.cc.dc=X.ee.LEFT;f.Ud>f.Nc&&(f.cc.$d=!0);f.ma.$j(f.cc);f.pages.Cc.add(f.ja);f.ja.position.x=0;f.ja.position.z=-1;f.rh&&(f.ja.rotation.y=-Math.PI);f.sh&&(f.ja.rotation.y=0);}}};J.Xj=function(f,c,d,e,g){var h="image/jpeg",r,k,l;this.pages.pe||(this.pages.pe=[]);h="image/jpeg";r=0.95;if(e==this.ra.Xa&&this.pages.pe[this.ra.Xa]){g(this.pages.pe[this.ra.Xa]);}else{if(e==this.ra.back&&this.pages.pe[this.ra.back]){g(this.pages.pe[this.ra.back]);}else{if(k=document.createElement("canvas"),k.width=c,k.height=d,l=k.getContext("2d"),l.dg=l.mozImageSmoothingEnabled=l.imageSmoothingEnabled=!0,l.fillStyle="white",l.fillRect(0,0,k.width,k.height),l.drawImage(this.F.Ui,k.width/2+(this.Yb()-10),k.height/2,24,8),this.F.Ue){if(e==this.ra.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, 0.3)");l.fillStyle=m;l.fill();l.stroke();l.closePath();m=k.toDataURL(h,r);this.pages.pe[this.ra.back]=m;g(m);}e==this.ra.Xa&&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, 0.3)"),m.addColorStop(0.93,"rgba(255, 255, 255, 0)"),l.fillStyle=m,l.fill(),l.stroke(),l.closePath(),m=k.toDataURL(h,r),this.pages.pe[this.ra.Xa]=m,g(m));}}}};J.Jg=function(f){if(this.ja&&this.cd||f){this.fm(),this.ma.dispose(),this.ac.dispose(),this.ma=this.ja=this.ac=null,this.Sa=[],this.jd=this.resources=null,this.Pe(),this.cd=!1;}};J.zn=function(){this.ja&&this.cd&&(this.fm(),this.ma.dispose(),this.ac.dispose(),this.ma=this.ja=this.ac=null,this.Sa=[],this.resources=null,this.cd=!1);};J.fm=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.Cc.remove(f);}};J.Lc=function(f,c,d){var e=this;if(e.F.I.ub&&(!e.cd||d)&&0==e.pageNumber%2&&1==e.F.scale&&1==e.scale){for(e.cd=!0,e.uh=!0,e.Nc=e.xa(e),e.Ud=e.Ha(e),e.angle=0.25*Math.PI*this.Nc/this.Ud,d=0;6>d;d++){d==e.ra.Xa?e.loadResources(e.pageNumber,function(){e.mj(e.pageNumber,e.ra.Xa,f,"image/jpeg",0.95,e.Nc,e.Ud,function(c){e.Sa[e.ra.Xa]&&(e.Sa[e.ra.Xa].map=null);e.pages.Uf(2);e.Bj=new THREE.TextureLoader;e.Bj.load(c,function(c){c.minFilter=THREE.LinearFilter;e.Sa[e.ra.Xa]=new THREE.MeshPhongMaterial({map:c,overdraw:!0});e.ja&&e.ja.material.materials&&e.ja.material.materials&&(e.ja.material.materials[e.ra.Xa]=e.Sa[e.ra.Xa]);e.uh&&e.Sa[e.ra.Xa]&&e.Sa[e.ra.Xa].map&&e.Sa[e.ra.back]&&e.Sa[e.ra.back].map&&(e.uh=!1,e.pages.Uf(2));});});}):d==e.ra.back&&e.loadResources(e.pageNumber+1,function(){e.mj(e.pageNumber+1,e.ra.back,c,"image/jpeg",0.95,e.Nc,e.Ud,function(c){e.Sa[e.ra.back]&&(e.Sa[e.ra.back].map=null);e.pages.Uf(2);e.Cj=new THREE.TextureLoader;e.Cj.load(c,function(c){c.minFilter=THREE.LinearFilter;e.Sa[e.ra.back]=new THREE.MeshPhongMaterial({map:c,overdraw:!0});e.ja&&e.ja.material.materials&&e.ja.material.materials&&(e.ja.material.materials[e.ra.back]=e.Sa[e.ra.back]);e.uh&&e.Sa[e.ra.Xa]&&e.Sa[e.ra.Xa].map&&e.Sa[e.ra.back]&&e.Sa[e.ra.back].map&&(e.uh=!1,e.pages.Uf(2));});});});}}};J.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,r=new Image;r.loaded=!1;r.setAttribute("crossOrigin","anonymous");r.setAttribute("data-x",d.F.Z[f][g].mh?d.F.Z[f][g].mh:d.F.Z[f][g].Hj);r.setAttribute("data-y",d.F.Z[f][g].nh?d.F.Z[f][g].nh:d.F.Z[f][g].Ij);d.F.Z[f][g].Ci&&r.setAttribute("data-x",d.F.Z[f][g].Ci);d.F.Z[f][g].Di&&r.setAttribute("data-y",d.F.Z[f][g].Di);r.setAttribute("data-width",d.F.Z[f][g].width);r.setAttribute("data-height",d.F.Z[f][g].height);jQuery(r).bind("load",function(){this.loaded=!0;d.Cl(f)&&c();});r.src=h;e.resources.push(r);}}}d.Cl(f)&&c();}};J.Cl=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;};J.mo=function(){this.ja.rotation.y=-Math.PI;this.page.Wb=!1;this.page.rh=!0;this.page.Xb=!1;this.page.sh=!1;};J.no=function(){this.ja.rotation.y=0;this.page.Wb=!1;this.page.sh=!0;this.page.Xb=!1;this.page.rh=!1;};J.mj=function(f,c,d,e,g,h,r,k){var l=this,m=new Image,p,t,q,n,u=new jQuery.Deferred;e=0==d.indexOf("data:image/png")?"image/png":"image/jpeg";g=g||0.92;l.U&&!l.xb&&0!=l.U.naturalWidth&&l.U.getAttribute("src")==d?(m=l.U,u.resolve()):l.pages.pages[f]&&!l.pages.pages[f].xb&&l.pages.pages[f].U&&0!=l.pages.pages[f].U.naturalWidth&&l.pages.pages[f].U.getAttribute("src")==d?(m=l.pages.pages[f].U,u.resolve()):l.pages.pages[f-1]&&!l.pages.pages[f-1].xb&&l.pages.pages[f-1].U&&0!=l.pages.pages[f-1].U.naturalWidth&&l.pages.pages[f-1].U.getAttribute("src")==d?(m=l.pages.pages[f-1].U,u.resolve()):l.pages.pages[f+1]&&!l.pages.pages[f+1].xb&&l.pages.pages[f+1].U&&0!=l.pages.pages[f+1].U.naturalWidth&&l.pages.pages[f+1].U.getAttribute("src")==d?(m=l.pages.pages[f+1].U,u.resolve()):(l.pages.pages[f]&&l.pages.pages[f].U&&(m=l.pages.pages[f].U),l.pages.pages[f-1]&&l.pages.pages[f-1].U&&l.pages.pages[f-1].U.getAttribute("src")==d&&(m=l.pages.pages[f-1].U),l.pages.pages[f+1]&&l.pages.pages[f+1].U&&l.pages.pages[f+1].U.getAttribute("src")==d&&(m=l.pages.pages[f+1].U),jQuery(m).bind("error",function(){jQuery(this).Xf(function(){});}),jQuery(m).bind("abort",function(){jQuery(this).Xf(function(){});}),m.setAttribute("crossOrigin","anonymous"),m.src=d,jQuery(m).one("load",function(){window.clearTimeout(l.se);l.hq=!0;u.resolve();}).each(function(){this.complete&&jQuery(this).load();}),l.se=setTimeout(function(){l.hq||jQuery(m).Xf(function(){});},3000));u.then(function(){q=l.renderer.sa&&l.renderer.S[0]?l.renderer.S[0].width:m.naturalWidth;n=l.renderer.sa&&l.renderer.S[0]?l.renderer.S[0].height:m.naturalHeight;if(l.renderer.sa){var u=1.5<l.renderer.Ya?l.renderer.Ya:1;q=l.xa()*u;n=l.Ha()*u;}else{q/=2,n/=2;}p=document.createElement("canvas");t=p.getContext("2d");if(q<h||n<r){q=h,n=r;}q<d.width&&(q=d.width);n<d.height&&(n=d.height);p.width=q;p.height=n;t.clearRect(0,0,p.width,p.height);t.fillStyle="rgba(255, 255, 255, 1)";t.fillRect(0,0,q,n);t.drawImage(m,0,0,q,n);jQuery(p).data("needs-overlay",1);l.Xd(p,c==l.ra.Xa?0:1).then(function(){l.vl?l.vl++:l.vl=1;var m=q/(l.qg()*l.Ma),u=l.pages.getPage(f).resources;if(u){for(var v=0;v<u.length;v++){t.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.Ue&&(c==l.ra.back&&(t.beginPath(),t.strokeStyle="transparent",t.rect(0.65*q,0,0.35*q,n),m=t.createLinearGradient(0,0,q,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)"),t.fillStyle=m,t.fill(),t.stroke(),t.closePath()),c==l.ra.Xa&&0!=f&&(t.beginPath(),t.strokeStyle="transparent",t.rect(0,0,0.35*q,n),m=t.createLinearGradient(0,0,0.07*q,0),m.addColorStop(0.07,"rgba(125, 124, 125, 0.3)"),m.addColorStop(0.93,"rgba(255, 255, 255, 0)"),t.fillStyle=m,t.fill(),t.stroke(),t.closePath()));try{var D=p.toDataURL(e,g);k(D);}catch(C){if(0!=this.src.indexOf("blob:")){ia(d,function(d){l.mj(f,c,d,e,g,h,r,k);});}else{throw C;}}});});};J.nearestPowerOfTwo=function(f){return Math.pow(2,Math.round(Math.log(f)/Math.LN2));};J.Nn=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,r=415*c.duration;"3D, Curled"==c.F.I.Ge&&(f=0.6,d=0.1,e=-0.15,r=210*c.duration);"3D, Soft"==c.F.I.Ge&&(f=0.8,d=0.1,e=0,r=415*c.duration);"3D, Hard"==c.F.I.Ge&&(f=0,d=0.1,e=0);"3D, Bend"==c.F.I.Ge&&(f=-0.3,d=0.2,e=-0.4,g=515*c.duration,h=215*c.duration,r=372*c.duration);c.Wb||c.Xb||(c.Wb=!0,c.cc.Eg(e),c.ja.castShadow=c.Gj,c.cc.force=0,c.cc.offset=0,c.ma.apply(),c.to={angle:c.ja.rotation.y,t:-1,eg:0,page:c,force:c.force,offset:c.offset},(new TWEEN.Tween(c.to)).to({angle:-Math.PI,eg:1,t:1},g).easing(TWEEN.Easing.Sinusoidal.EaseInOut).onUpdate(c.ul).start(),(new TWEEN.Tween(c.to)).to({force:f},h).easing(TWEEN.Easing.Quadratic.EaseInOut).onUpdate(c.Rf).onComplete(function(){(new TWEEN.Tween(c.to)).to({force:0,offset:1},r).easing(TWEEN.Easing.Sinusoidal.EaseOut).onUpdate(c.Rf).onComplete(c.Ck).start();}).start(),(new TWEEN.Tween(c.to)).to({offset:d},h).easing(TWEEN.Easing.Quadratic.EaseOut).onUpdate(c.Rf).start(),c.ja.position.z=2);};J.On=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,r=415*c.duration;"3D, Curled"==c.F.I.Ge&&(f=-0.6,d=0.1,e=-0.15,r=210*c.duration);"3D, Soft"==c.F.I.Ge&&(f=-0.8,d=0.1,e=0,r=415*c.duration);"3D, Hard"==c.F.I.Ge&&(f=0,d=0.1,e=0);"3D, Bend"==c.F.I.Ge&&(f=0.3,d=0.2,e=-0.4,g=515*c.duration,h=215*c.duration,r=372*c.duration);c.Xb||c.Wb||(c.Xb=!0,c.ja.castShadow=c.Gj,c.cc.Eg(e),c.cc.force=0,c.cc.offset=0,c.ma.apply(),c.to={angle:c.ja.rotation.y,t:-1,eg:0,page:c,force:c.force,offset:c.offset},(new TWEEN.Tween(c.to)).to({angle:0,eg:1,t:1},g).easing(TWEEN.Easing.Sinusoidal.EaseInOut).onUpdate(c.ul).start(),(new TWEEN.Tween(c.to)).to({force:f},h).easing(TWEEN.Easing.Quadratic.EaseInOut).onUpdate(c.Rf).onComplete(function(){(new TWEEN.Tween(c.to)).to({force:0,offset:1},r).easing(TWEEN.Easing.Sinusoidal.EaseOut).onUpdate(c.Rf).onComplete(c.Ck).start();}).start(),(new TWEEN.Tween(c.to)).to({offset:d},h).easing(TWEEN.Easing.Quadratic.EaseOut).onUpdate(c.Rf).start(),c.ja.position.z=2);};J.ul=function(){this.page.ja.rotation.y=this.angle;this.page.Wb&&0==this.page.pageNumber&&(this.page.pages.Cc.position.x=(1-this.eg)*this.page.pages.Cc.position.x);this.page.Xb&&0==this.page.pageNumber&&(this.page.pages.Cc.position.x=(1-this.eg)*this.page.pages.Cc.position.x-this.eg*this.page.Nc*0.5);};J.Rf=function(){this.page.cc.force=this.force;this.page.cc.offset=this.offset;this.page.ma.apply();};J.Ck=function(){this.page.Wb?(this.page.Wb=!1,this.page.rh=!0,this.page.Xb=!1,this.page.sh=!1,this.page.ja.position.z=2):this.page.Xb&&(this.page.Wb=!1,this.page.sh=!0,this.page.Xb=!1,this.page.rh=!1,this.page.ja.position.z=2);this.page.cc.force=0;this.page.cc.Eg(0);this.page.cc.offset=0;this.page.ma.apply();this.page.ja.castShadow=!1;this.page.pages.Oo();};var Fa="undefined"==typeof window;Fa&&(window=[]);var FlowPaperViewer_HTML=window.FlowPaperViewer_HTML=function(){function f(c){window.zine=!0;this.config=c;this.ff=this.config.instanceid;this.document=this.config.document;this.P=this.config.rootid;this.L={};this.kd=this.N=null;this.selectors={};this.H="Portrait";this.wb=null!=c.document.InitViewMode&&"undefined"!=c.document.InitViewMode&&""!=c.document.InitViewMode?c.document.InitViewMode:window.zine?"FlipView":"Portrait";this.initialized=!1;this.Ce="flowpaper_selected_default";this.Wa={};this.Z=[];this.Rm="data:image/gif;base64,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%3D";this.Uj="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAANCAYAAABy6+R8AAAAAXNSR0IArs4c6QAAAAZiS0dEAFEAUQBRjSJ44QAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9wCCgEMO6ApCe8AAAFISURBVCjPfZJBi49hFMV/521MUYxEsSGWDDWkFKbkA/gAajaytPIFLKx8BVkodjP5AINGU0xZKAslC3Ys2NjP+VnM++rfPzmb23065z6de27aDsMwVD0C3AfOAYeB38BP9fEwDO/aMgwDAAFQDwKbwC9gZxScUM8Al5M8SPJ0Eu5JYV0FeAZcBFaAxSSPkjwHnrQ9Pf1E22XVsX5s+1m9o54cB9J2q+361KM+VN+ot9uqrjIH9VJbpz7qOvAeuAIcSnJzThA1SXaTBGAAvgCrwEvg0yxRXUhikrOjZ1RQz7uHFfUu/4C60fb16G9hetxq+1a9Pkdears2Dt1Rj87mdAx4BfwAttWvSQ4AV9W1aYlJtoFbmQJTjwP3gAvAIlDgG7CsXvu7uWQzs+cxmj0F7Fd3k3wfuRvqDWAfM+HxP6hL6oe2tn3xB7408HFbpc41AAAAAElFTkSuQmCC";this.Sh="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfcCBUXESpvlMWrAAAAYklEQVQ4y9VTQQrAIAxLiv//cnaYDNeVWqYXA4LYNpoEKQkrMCxiLwFJABAAkcS4xvPXjPNAjvCe/Br1sLTseSo4bNGNGXyPzRpmtf0xZrqjWppCZkVJAjt+pVDZRxIO/EwXL00iPZwDxWYAAAAASUVORK5CYII%3D";this.Sm="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAMAAADzN3VRAAAARVBMVEX///////////////////////////////////////////////////////////////////////////////////////////+QFj7cAAAAFnRSTlMAHDE8PkJmcXR4eY+Vs8fL09Xc5vT5J4/h6AAAAFtJREFUeNqt0kkOgDAMQ9EPZSgztMX3PyoHiMKi6ttHkZ1QI+UDpmwkXl0QZbwUnTDLKEg3LLIIQw/dYATa2vYI425sSA+ssvw8/szPnrb83vyu/Tz+Tf0/qPABFzEW/E1C02AAAAAASUVORK5CYII=";this.ge="data:image/gif;base64,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%3D";this.jg="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.fq=this.P+"_textoverlay";this.Kj="#"+this.fq;this.da=1;this.renderer=this.config.renderer;this.Ia="toolbar_"+this.P;this.K="#"+this.Ia;this.mc=!1;this.scale=this.config.document.Scale;this.resources=new FlowPaper_Resources(this);this.Ub=!1;this.mg=0;this.linkColor="#72e6ff";this.Kc=0.4;}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.Dg();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.Rp&&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.Jl(c,e);});jQuery(d.renderer).bind("labelsLoaded",function(c,e){d.Hl(c,e);});jQuery(d.renderer).bind("loadingProgressStatusChanged",function(c,e){d.Kl(c,e);});jQuery(d.renderer).bind("UIBlockingRenderingOperation",function(c,e){d.Sc(c,e);});jQuery(d.renderer).bind("UIBlockingRenderingOperationCompleted",function(){d.Kb();});jQuery(d.renderer).bind("outlineAdded",function(c,e){d.ol(c,e);});e&&(d.te="",d.vj(),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);},Dn:function(c){if(jQuery(c.target).hasClass("flowpaper_note_container")&&eb.platform.touchdevice){return window.Eb=!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.mc||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.Eb||!window.Eb){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.il(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.Oe(!0);this.ke=hoverPageObject.Bf(!0,this.Ce);}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.Eb){return !0;}}},Oe:function(c){eb.platform.touchdevice||(this.ke=null);this.mc&&(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");});},En:function(c){this.wh="up";this.Zc=this.Ri=!1;this.hl=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.mc||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.ad==d.pageX&&this.bd==d.pageY&&(this.Oe(),this.ke=hoverPageObject.Bf(window.Eb,this.Ce));null!=d&&(this.ad=d.pageX,this.bd=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.ke&&this.L.trigger("onSelectionCreated",this.ke.text);window.Eb=!1;window.a=null;window.b=null;}}else{hoverPageObject&&(window.b=hoverPageObject.match({left:c.pageX,top:c.pageY},!1),window.Eb=!1,this.Oe(),this.ke=hoverPageObject.Bf(!1,this.Ce));}}},Cn:function(c){var d=this;d.wh="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.ad=e;d.bd=f;eb.platform.touchdevice&&(eb.platform.touchonlydevice&&window.annotations&&(d.mc=!0,d.Oe(!0)),window.clearTimeout(d.Bo),d.hl=(new Date).getTime(),document.activeElement&&jQuery(document.activeElement).hasClass("flowpaper_note_textarea")&&document.activeElement.blur(),d.Bo=setTimeout(function(){if(null!=d.hl&&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.ad+20>e&&d.ad-20<e&&d.bd+20>f&&d.bd-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.Eb=!0,d.Oe(!0),window.b=hoverPageObject.match({left:e,top:f},!1),window.a=hoverPageObject.match({left:e-1,top:f-1},!1),d.ke=hoverPageObject.Bf(!0,d.Ce)));}},800));if(d.mc||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.il(c.target.id):window.a=hoverPageObject.match({left:e,top:f},!0);if(window.a){return window.Eb=!0,d.Oe(),d.ke=hoverPageObject.Bf(!1,d.Ce),!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.Oe(),d.ke=hoverPageObject.Bf(!1,d.Ce));window.Eb=!1;return !0;}window.a=hoverPageObject?hoverPageObject.match({left:e,top:f},!0):null;}}},Ic:function(){this.width||(this.width=this.N.width());return this.width;},xm: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.Dn(d);});c.N.bind("mousedown",function(d){return c.Cn(d);});c.N.bind("mouseup",function(d){return c.En(d);});var d=jQuery._data(jQuery(window)[0],"events");eb.platform.android?jQuery(window).bind("orientationchange",function(d){c.Mj(d);}):jQuery(window).bind("resize",function(d){c.Mj(d);});jQuery(window).bind("orientationchange",function(d){c.Jo(d);});d&&d.resize&&(c.zl=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.dl(d);c.vj();}).error(function(){c.vj();O("Failed loading supplied locale ("+c.document.localeChain+")");}),c.toolbar.dl("");}catch(e){}}c.te||(c.te="");},Jo:function(c){var d=this;d.ji=!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.Ba="Flip-SinglePage"!=d.config.document.TouchInitViewMode?!1:!0;break;default:d.I.Ba=!0;}}d.I.ub=d.I.ki();setTimeout(function(){d.H="";d.switchMode(d.W(),d.getCurrPage()-1);d.ji=!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.Mj(c);d.N.height("auto");d.ji=!1;});},1000);}},Mj:function(c){if(!this.document.DisableOverflow&&!this.ji&&!jQuery(c.target).hasClass("flowpaper_note")){c=this.N.width();var d=this.N.height(),e=!1,f=-1;this.pj?f=this.pj:0<this.N[0].style.width.indexOf("%")&&(this.pj=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.oj?f=this.oj:0<this.N[0].style.height.indexOf("%")&&(this.oj=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.Eb||document.mozFullScreen||document.webkitIsFullScreen||window.Cm||window.fg;e&&!f&&this.resize(c,d);}},vj:function(){var c=this;if(!c.document.DisableOverflow){if(c.hf||(c.hf=null!=c.toolbar&&null!=c.toolbar.Ka?c.toolbar.la(c.toolbar.Ka,"LoadingPublication"):"Loading Publication"),null==c.hf&&(c.hf="Loading Publication"),c.km=window.zine&&(c.renderer.config.pageThumbImagePattern&&0<c.renderer.config.pageThumbImagePattern.length||c.config.document.LoaderImage),c.km){var d=new Image;jQuery(d).bind("load",function(){if(!c.initialized&&(!c.Wa||c.Wa&&!c.Wa.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.Wa=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.Ba&&!c.Xe?"35%":"47%",c.I.gb,c.renderer.ga(1,200),d,f,0,d,c.I.Ba&&!c.Xe?"30%":"40%",d/2,f/2));c.N.append(c.Wa);jQuery(this).css({width:d+"px",height:f+"px"});c.Wa.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.Wa=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.hf+"<br/><div style='margin-left:30px;' class='flowpaper_notifystatus'>"+c.te+"</div></div></div></div>",c.Rm,"margin: 0px auto;","static"==c.N.css("position")?"relative":"absolute")),c.N.append(c.Wa)):(c.Wa=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.Wa),c.Fc=new CanvasLoader("flowpaper_initloader_"+c.P),c.Fc.setColor("#555555"),c.Fc.setShape("square"),c.Fc.setDiameter(70),c.Fc.setDensity(151),c.Fc.setRange(0.8),c.Fc.setSpeed(2),c.Fc.setFPS(42),c.Fc.show());}}},initialize:function(){var c=this;FLOWPAPER.Mk.init();c.np();c.mp();c.Zb=location.hash&&0<=location.hash.substr(1).indexOf("inpublisher")?!0:!1;c.L=jQuery("#"+c.P);c.toolbar=new ya(this,this.document);c.Uk=c.document.ImprovedAccessibility;!eb.platform.iphone||c.config.document.InitViewMode||window.zine||(c.wb="Portrait");"BookView"==c.config.document.InitViewMode&&0==c.document.StartAtPage%2&&(c.document.StartAtPage+=1);c.config.document.TouchInitViewMode&&c.config.document.TouchInitViewMode!=c.wb&&eb.platform.touchonlydevice&&(c.wb=c.config.document.TouchInitViewMode);c.config.document.TouchInitViewMode||!eb.platform.touchonlydevice||window.zine||(c.wb="SinglePage");window.zine&&!c.document.DisableOverflow?(c.I=c.toolbar.rg=new FlowPaperViewer_Zine(c.toolbar,this,c.L),"Portrait"!=c.wb&&"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.wb)):c.H=c.wb;"CADView"==c.H&&(c.H="SinglePage");window.zine&&(eb.browser.msie&&9>eb.browser.version||eb.browser.safari&&5>eb.browser.Lb)&&!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.Ub=c.H==c.W()&&(eb.platform.iphone||eb.platform.lb);null!==c.N||c.I||(0<c.L.css("width").indexOf("%")&&(c.pj=parseFloat(c.L[0].style.width.substr(0,c.L[0].style.width.length-1)/100)),0<c.L.css("height").indexOf("%")&&(c.oj=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.mg=eb.platform.touchdevice?15:22,c.L.height(c.L.height()-c.mg)):c.mg=0);c.gq=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.Ia).length?(c.Toolbar=c.N.prepend("<div id='"+c.Ia+"' class='flowpaper_toolbarstd' style='z-index:200;overflow-y:hidden;overflow-x:hidden;'></div>").parent(),c.toolbar.create(c.Ia)):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.Ia),c.N.prepend(c.Toolbar)));c.bk();c.document.DisableOverflow||c.resources.initialize();c.document.DisplayRange&&(c.DisplayRange=ca(c.document.DisplayRange));hoverPage=0;hoverPageObject=null;null!=c.I?c.I.vn(c.Ia):window.annotations&&(c.plugin=new FlowPaperViewerAnnotations_Plugin(this,this.document,c.Ia+"_annotations"),c.plugin.create(c.Ia+"_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.Jl(d,e);});jQuery(c.renderer).bind("labelsLoaded",function(d,e){c.Hl(d,e);});jQuery(c.renderer).bind("loadingProgressStatusChanged",function(d,e){c.Kl(d,e);});jQuery(c.renderer).bind("UIBlockingRenderingOperation",function(d,e){c.Sc(d,e);});jQuery(c.renderer).bind("UIBlockingRenderingOperationCompleted",function(){c.Kb();});jQuery(c.renderer).bind("outlineAdded",function(d,e){c.ol(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;},bk:function(){this.Zm||this.document.DisableOverflow||(eb.platform.touchonlydevice&&!this.Ub?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.Zm=!0);},Hl:function(c,d){if(window.zine&&this.I&&this.I.Yc){var e=this.I.Yc.createElement("labels");this.I.Yc.childNodes[0].appendChild(e);try{for(var f=0;f<d.Zk.length;f++){var h=d.Zk[f],r=e,k=this.I.Yc.createElement("node");k.setAttribute("pageNumber",f+1);k.setAttribute("title",escape(h));r.appendChild(k);}}catch(l){}this.labels=jQuery(e);}},Jl:function(c,d){var e=this;e.te=Math.round(100*d.progress)+"%";e.Wa&&e.Wa.find&&0<e.Wa.find(".flowpaper_notifystatus").length&&e.Wa.find(".flowpaper_notifystatus").html(e.te);if(e.km&&e.Wa&&e.Wa.find){var f=e.Wa.find(".flowpaper_titleloader_progress");if(f){var h=e.Wa.find(".flowpaper_titleloader_image");if(0<h.length){var r=h.css("width"),r=parseFloat(r.replace("px",""));requestAnim(function(){(isNaN(e.te)||parseFloat(e.te)<Math.round(100*d.progress))&&f.animate({left:r*d.progress+"px",width:r*(1-d.progress)+"px"},100);});}}}},Kl:function(c,d){this.hf=d.label;this.Wa.find(".flowpaper_notifylabel").html(d.label);},Sc:function(c,d){var e=this;e.document.DisableOverflow||null!==e.kd||(e.kd=jQuery("<div style='position:absolute;left:50%;top:50%;'></div>"),e.N.append(e.kd),e.kd.spin({color:"#777"}),null!=e.Ki&&(window.clearTimeout(e.Ki),e.Ki=null),d.Ro||(e.Ki=setTimeout(function(){e.kd&&(e.kd.remove(),e.kd=null);},1000)));},Kb:function(){this.kd&&(this.kd.remove(),this.kd=null);},show:function(){var c=this;jQuery(c.resources).bind("onPostinitialized",function(){setTimeout(function(){c.Dg();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.Ng&&c.toolbar.bindEvents(c.L):c.toolbar.bindEvents(c.L);c.I&&c.I.Ng&&null!=c.I&&!c.document.DisableOverflow&&c.I.bindEvents(c.L);c.I&&!c.I.Ng?c.Zg=function(){c.toolbar.bindEvents(c.L);c.I.bindEvents(c.L);c.Th(c.document.StartAtPage);jQuery(c.L).trigger("onDocumentLoaded",c.renderer.getNumPages());}:(c.Th(c.document.StartAtPage),jQuery(c.L).trigger("onDocumentLoaded",c.renderer.getNumPages()));},50);jQuery(c.resources).unbind("onPostinitialized");});c.resources.To();},dispose:function(){this.An=!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.zl);delete this.zl;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.ya,delete this.renderer.S,delete this.renderer.Ra,delete this.renderer.Gh,delete this.renderer.qa);delete this.renderer;var e=jQuery(this.gq);e.attr("style",d);e.attr("class","flowpaper_viewer");c.append(e);this.plugin&&delete this.plugin;},zh: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.Kg(),c.pages.ed()):(c.initialized=!0,c.dr||c.toolbar.ak(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.zh();c.Wa&&c.Wa.fadeOut?c.Wa.fadeOut(300,function(){c.Wa&&(c.Wa.remove(),c.N.find(".flowpaper_loader").remove(),c.Fc&&(c.Fc.kill(),delete c.Fc),delete c.Wa,c.Fc=null,jQuery(c.pages.J).fadeIn(300,function(){}),c.PreviewMode&&c.I.kb.Uh(c.pages,c.L));}):(c.N.find(".flowpaper_loader").remove(),jQuery(c.pages.J).fadeIn(300,function(){}),c.PreviewMode&&c.I.kb.Uh(c.pages,c.L));c.L.trigger("onInitializationComplete");},Dg:function(){this.renderer.ui=!1;if(this.pages){for(var c=0;c<this.document.numPages;c++){this.pages.pages[c]&&window.clearTimeout(this.pages.pages[c].kc);}}this.da=1;this.L.find("*").unbind();this.L.find("*").remove();this.L.empty();this.te=0;this.renderer.Kf=!1;jQuery(".flowpaper_glyphcanvas").css("z-index",-1);jQuery(this.Kj).remove();this.I&&this.I.Dg();},Th:function(c){this.pages=new V(this.L,this,this.P,c);this.pages.create(this.L);},previous:function(){var c=this;c.ej||c.H==c.W()?c.H==c.W()&&c.pages.previous():(c.ej=setTimeout(function(){window.clearTimeout(c.ej);c.ej=null;},700),c.pages.previous());},ol: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.Qa&&c.Lf();if(!c.$a&&c.outline&&(!c.outline||0!=c.outline.length)){c.na=c.L.width();c.za=c.L.height();var d=c.hf=null!=c.toolbar&&null!=c.toolbar.Ka?c.toolbar.la(c.toolbar.Ka,"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 r=c.H==c.W()?30:40,k=c.H==c.W()?0:41,l=c.I&&!c.I.Fe?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.Hg=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.Sm,"20%","250px",c.Sh,m,e,m-20,l,f,p?"font-size:1.4em;":"")));c.$a=c.N.find(".flowpaper_toc");jQuery(c.$a.children()[0]).css({"border-radius":"3px","-moz-border-radius":"3px"});jQuery(c.$a.children()[0]).append("<div class='flowpaper_toc_content' style='display:block;position:relative;height:"+(jQuery(c.$a.children()[0]).height()-r)+"px;margin-bottom:50px;width:100%;overflow-y: auto;overflow-x: hidden;'><ul class='flowpaper_accordionSkinClear'>"+na(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.Ic()&&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").qo();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.$a.width()+"px"},0);k=0.5*c.$a.width();jQuery(c.K).width()+k>c.N.width()&&(k=0);jQuery(c.K).animate({"margin-left":parseFloat(c.Hg)+k+"px"},200,function(){if(window.onresize){window.onresize();}});0==k&&c.$a.css({top:h,height:c.L.height()-40+"px"});c.H==c.W()&&c.I.Ql();c.$a.fadeTo("fast",1);c.N.find(".flowpaper_toc_close").bind("mousedown",function(){c.Tk();});}},Tk:function(){this.$a.hide();this.N.find(".flowpaper_tocitem, .flowpaper_tocitem_separator").remove();this.$a.remove();this.$a=null;window.zine&&(jQuery(this.K).css("opacity",1),600<this.Ic()&&this.resize(this.na,this.za+33,!1));this.L.css({left:"0px"});jQuery(this.K).animate({"margin-left":parseFloat(this.Hg)+"px"},200);this.H==this.W()&&this.I.Lf();},setCurrentCursor:function(c){"ArrowCursor"==c&&(this.mc=!1,addCSSRule(".flowpaper_pageword","cursor","default"),window.annotations||jQuery(".flowpaper_pageword_"+this.P).remove());"TextSelectorCursor"==c&&(this.mc=!0,this.Ce="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,r=-1;jQuery(c).find("loc").each(function(){f=parseInt(jQuery(this).attr("pg"));h=parseInt(jQuery(this).attr("pos"));r=parseInt(jQuery(this).attr("len"));d.pages.getPage(f).Ke(h,r,!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.Hf()||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.Hf()&&(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.jf?window.open().document:jQuery("#printFrame_"+this.P)[0].contentWindow.document||jQuery("#printFrame_"+this.P)[0].contentDocument,h="",r=Math.floor(this.renderer.getDimensions()[0].width),k=Math.floor(this.renderer.getDimensions()[0].height);jQuery("#printFrame_"+this.P).css({width:S(r)+"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.sa||(h+="<script type='text/javascript'>window.printWidth = '"+r+"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:"+r+"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.sa?this.renderer.sa&&(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: "+r+"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.xm()+", "+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.Qa&&e.Lf(),jQuery(e.pages.J).Hn(function(){e.I&&e.I.switchMode(c,d);"Tile"==c&&(e.H="ThumbView");"Portrait"==c&&(e.H="SinglePage"==e.wb?"SinglePage":"Portrait");"SinglePage"==c&&(e.H="SinglePage");"TwoPage"==c&&(e.H="TwoPage");"BookView"==c&&(e.H="BookView");e.Dg();e.pages.fp();e.renderer.Re=-1;e.renderer.ya&&e.renderer.ya.kp();"TwoPage"!=c&&"BookView"!=c&&(null!=d?e.pages.R=d-1:d=1);e.Th(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.Hc(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.Qa&&(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.na/this.pages.getPage(d).dimensions.za;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.zj();}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.Ze();}window.FitWidthScale=f;jQuery(this.K).trigger("onScaleChanged",f/this.document.MaxZoomSize);if(this.document.DisableOverflow){for(var h=S(parseFloat(window.printHeight))-0,r=this.pages.getPage(d).Ma*this.document.MaxZoomSize*f,k=this.pages.getPage(d).Ma*this.pages.getPage(d).oe()*this.document.MaxZoomSize*f,l=0;r>h;){f=c/(this.pages.getPage(d).Ma*this.document.MaxZoomSize*e)+l,r=this.pages.getPage(d).Ma*this.document.MaxZoomSize*f,k=this.pages.getPage(d).Ma*this.pages.getPage(d).oe()*this.document.MaxZoomSize*f,l-=0.0001;}this.N.css("width",Math.floor(k)+"px");this.N.css("height",Math.floor(r)+"px");}f*this.document.MaxZoomSize>=this.document.MinZoomSize&&f<=this.document.MaxZoomSize&&("Portrait"==this.H?this.ib(this.document.MaxZoomSize*f,{og:!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.og=!0);if(!d||d&&!d.og){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.wf&&(window.clearTimeout(e.wf),e.wf=null);e.pages.cp()&&e.scale!=c&&(jQuery(".flowpaper_annotation_"+e.P).remove(),jQuery(".flowpaper_pageword_"+e.P).remove());e.wf=setTimeout(function(){e.jc();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.Pa(c,d);e.scale=c;!d||d&&!d.Xc?e.pages.pages[0]&&e.pages.pages[0].Ne():e.pages.Yg(d.Rb,d.oc);jQuery(e.K).trigger("onZoomFactorChanged",{Cf: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.ed(),e.pages.gd(),e.pages.zj(),h=jQuery(e.pages.J).prop("scrollHeight"),eb.browser.capabilities.Ab&&(!d||d&&!d.Xc?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"})));}}},jc:function(){if(this.renderer){null!=this.wf&&(window.clearTimeout(this.wf),this.wf=null);"CanvasPageRenderer"==this.renderer.Hf()&&(jQuery(".flowpaper_pageword_"+this.P+":not(.flowpaper_selected_searchmatch)").remove(),window.annotations&&this.pages.Ea());this.pages.Wf&&0<=this.pages.Wf&&this.pages.pages[this.pages.Wf].Va&&this.renderer.Ob(this.pages.pages[this.pages.Wf],!0);for(var c=0;c<this.document.numPages;c++){this.pages.Ua(c)&&c!=this.pages.Wf&&this.pages.pages[c]&&(this.pages.pages[c].Va?this.renderer.Ob(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.re():"Portrait"!=this.H&&"SinglePage"!=this.H||this.fitwidth():"TwoPage"==this.H||"BookView"==this.H?this.pages.nd():"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.$c)):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));},Fh:function(){var c=this;if(!eb.platform.mobilepreview&&!eb.platform.lb&&(c.$a&&c.Tk(),!c.Qa)){c.N.find(".flowpaper_searchabstract_result, .flowpaper_searchabstract_result_separator").remove();var d=c.hf=null!=c.toolbar&&null!=c.toolbar.Ka?c.toolbar.la(c.toolbar.Ka,"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,r=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.Hg=c.N.find(c.K).css("margin-left");c.H==c.W()?(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.Uj,"20%","250px",c.Sh,e,f,e-20,0,c.I.backgroundImage?"":"background-color:"+c.I.backgroundColor))),c.Qa=c.N.find(".flowpaper_searchabstracts"),jQuery(c.Qa.children()[0]).css({"border-radius":"0 3px 3px 0px","-moz-border-radius":"3px"}),jQuery(c.Qa.children()[0]).append("<div class='flowpaper_searchabstracts_content' style='display:block;position:relative;height:"+(jQuery(c.Qa.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)):(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.Uj,"20%","250px",c.Sh,parseFloat(jQuery(c.pages.J).css("height"))+10,f,c.N.height()-58))),c.Qa=c.N.find(".flowpaper_searchabstracts"),jQuery(c.Qa.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.Qa.width()/2+"px"},0),c.document.FitWidthOnLoad?c.fitwidth():c.fitheight());d=0.5*c.Qa.width();jQuery(c.K).width()+d>c.N.width()&&(d=0);jQuery(c.K).animate({"margin-left":parseFloat(c.Hg)+d+"px"},200,function(){if(window.onresize){window.onresize();}});0==d&&c.Qa.css({top:h,height:parseFloat(jQuery(c.pages.J).css("height"))+10+"px"});c.H==c.W()&&c.I.Fh();c.Qa.fadeTo("fast",1);var m=c.N.find(".flowpaper_searchabstracts_content");jQuery(c).bind("onSearchAbstractAdded",function(d,e){var f=e.ie.Qn;100<f.length&&(f=f.substr(0,100)+"...");f=f.replace(new RegExp(c.Wd,"g"),"<font style='color:#ffffff'>["+c.Wd+"]</font>");f="<b>p."+c.toolbar.zd(e.ie.pageIndex+1,e.ie.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.ie.id,r)));jQuery("#flowpaper_searchabstract_item_"+e.ie.id).bind("mousedown",function(d){c.Ta=e.ie.pageIndex+1;c.ze=e.ie.ip;c.bc=-1;c.searchText(c.Wd,!1);d.preventDefault&&d.preventDefault();d.returnValue=!1;});jQuery("#flowpaper_searchabstract_item_"+e.ie.id).bind("mouseup",function(c){c.preventDefault&&c.preventDefault();c.returnValue=!1;});});c.N.find(".flowpaper_searchabstracts_close").bind("mousedown",function(){c.Lf();});}},Lf:function(){this.Qa&&(this.L.css({left:"0px"}),this.Qa.remove(),this.Qa=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.Hg)+"px"},200),this.H==this.W()&&this.I.Lf());jQuery(this).unbind("onSearchAbstractAdded");},Yk:function(c,d){jQuery(".flowpaper_searchabstract_blockspan").remove();var e=this.renderer.getNumPages();d||(d=0);for(var f=d;f<e;f++){this.Vm(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>"));},Vm:function(c,d){var e=this.renderer.qa;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 r=0<f-50?f-50:0,k=f+75<e[c].length?f+75:e[c].length,l=this.Qc.length;this.Qc.qf[l]=[];this.Qc.qf[l].pageIndex=c;this.Qc.qf[l].ip=h;this.Qc.qf[l].id=this.P+"_"+c+"_"+h;this.Qc.qf[l].Qn=e[c].substr(r,k-r);f=e[c].toLowerCase().indexOf(d,f+1);jQuery(this).trigger("onSearchAbstractAdded",{ie:this.Qc.qf[l]});h++;}}else{null==this.Fl&&this.pm(d,c);}},pm:function(c,d){var e=this;e.Fl=setTimeout(function(){null==e.renderer.od?e.renderer.tc(d+1,!1,function(){e.Fl=null;e.Yk(c,d);}):e.pm(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.Pc&&e.renderer.Pc(),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.qa,h=e.renderer.getNumPages();e.Ch||(e.Ch=0);if(0==e.renderer.ya.Ra.length&&10>e.Ch){window.clearTimeout(e.jp),e.jp=setTimeout(function(){e.searchText(c,d);},500),e.Ch++;}else{e.Ch=0;e.ze||(e.ze=0);e.Ta||(e.Ta=-1);null!=c&&0<c.length&&(c=c.toLowerCase());e.Wd!=c&&(e.bc=-1,e.Wd=c,e.ze=0,e.Ta=-1,e.Qc=[],e.Qc.qf=[]);-1==e.Ta?(e.Ta=parseInt(e.da),e.config.document.RTLMode&&(e.Ta=parseInt(e.da)-h+1)):e.bc=e.bc+c.length;0==e.Qc.qf.length&&e.Qc.searchText!=c&&d&&(e.Qc.searchText!=c&&e.N.find(".flowpaper_searchabstract_result, .flowpaper_searchabstract_result_separator").remove(),e.Qc.searchText=c,e.Fh(),e.Yk(c));1>e.Ta&&(e.Ta=1);for(;e.Ta-1<h;){var r=f[e.Ta-1];if(e.renderer.wa&&null==r){jQuery(e.renderer).trigger("UIBlockingRenderingOperation",e.P);e.Dp=e.Ta;e.renderer.tc(e.Ta,!1,function(){r=f[e.Ta-1];e.Dp=null;});return;}e.bc=r.indexOf(c,-1==e.bc?0:e.bc);if(0<=e.bc){e.da==e.Ta||!(e.H==e.W()&&e.da!=e.Ta+1||"BookView"==e.H&&e.da!=e.Ta+1||"TwoPage"==e.H&&e.da!=e.Ta-1||"SinglePage"==e.H&&e.da!=e.Ta)||"TwoPage"!=e.H&&"BookView"!=e.H&&"SinglePage"!=e.H&&e.H!=e.W()?(e.ze++,e.renderer.tb?this.pages.getPage(e.Ta-1).load(function(){e.pages.getPage(e.Ta-1).Dc(e.Wd,!1,e.bc);}):("Portrait"==e.H&&this.pages.getPage(e.Ta-1).load(function(){e.pages.getPage(e.Ta-1).Dc(e.Wd,!1,e.bc);}),"TwoPage"!=e.H&&"SinglePage"!=e.H&&e.H!=e.W()||this.pages.getPage(e.Ta-1).Dc(e.Wd,!1,e.bc))):e.gotoPage(e.Ta,function(){e.bc=e.bc-c.length;e.searchText(c);});break;}e.Ta++;e.bc=-1;e.ze=0;}-1==e.bc&&(e.bc=-1,e.ze=0,e.Ta=-1,e.Kb(),alert(null!=e.toolbar&&null!=e.toolbar.Ka?e.toolbar.la(e.toolbar.Ka,"Finishedsearching"):"No more search matches."),e.gotoPage(1));}}}},fitheight:function(){if(this.H!=this.W()){try{if(eb.platform.touchdevice){if(c=this.Ze()){window.FitHeightScale=c,this.ib(c,{og:!0}),this.pages.zj();}}else{var c=this.Ze();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,{og:!0}):this.ib(this.document.MaxZoomSize*c));}}catch(d){}}},ih: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.na/this.pages.getPage(d).dimensions.za;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;},Ze: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.na/e.dimensions.za*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.na/e.dimensions.za*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.Yi||c.H==c.W()?c.H==c.W()&&c.pages.next():(c.Yi=setTimeout(function(){window.clearTimeout(c.Yi);c.Yi=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.Up(c):e.switchMode("Portrait",c):e.switchMode("Portrait",c):("Portrait"==e.H&&e.pages.scrollTo(c),"SinglePage"==e.H&&setTimeout(function(){e.pages.vg(c,d);},300),"TwoPage"!=e.H&&"BookView"!=e.H||setTimeout(function(){e.pages.wg(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.jc(),this.pages.Ea());},getCurrPage:function(){return null!=this.pages?this.H!=this.W()?this.pages.R+1:this.pages.R:1;},np:function(){this.version="3.3.1";},mp:function(){this.build="23-May-2019";},getTotalPages:function(){return this.pages.getTotalPages();},Hc: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.Hc(c));d.vc&&(jQuery(".flowpaper_mark_video_maximized").remove(),jQuery(".flowpaper_mark_video_maximized_closebutton").remove(),d.vc=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.Ba&&0<e&&e!=d.pages.R-1&&e!=d.pages.R-2||d.I.Ba&&e!=d.pages.R-1){jQuery(this).parent().remove();var f=d.pages.pages[e];f.Of(f.Vi?f.Vi:f.scale,f.Yb());}}catch(g){}});this.toolbar.Zp(c);null!=d.plugin&&("TwoPage"==this.H?(d.plugin.ah(this.pages.R+1),d.plugin.ah(this.pages.R+2)):"BookView"==this.H?(1!=c&&d.plugin.ah(this.pages.R),d.plugin.ah(this.pages.R+1)):d.plugin.ah(this.da));},addLink:function(c,d,e,f,h,r,k,l,m){window[this.ff].addLink=this.addLink;c=parseInt(c);null==this.Z[c-1]&&(this.Z[c-1]=[]);var p={type:"link"};p.href=d;p.so=e;p.uo=f;p.width=h;p.height=r;p.yp=k;p.zp=l;p.Go=m;this.Z[c-1][this.Z[c-1].length]=p;},addVideo:function(c,d,e,f,h,r,k,l,m){window[this.ff].addVideo=this.addVideo;c=parseInt(c);null==this.Z[c-1]&&(this.Z[c-1]=[]);var p={type:"video"};p.src=d;p.url=e;p.Hj=f;p.Ij=h;p.width=r;p.height=k;p.Eo=l;p.autoplay="true"==m+"";this.Z[c-1][this.Z[c-1].length]=p;},Yj:function(c,d,e,f,h,r,k,l){window[this.ff].addIFrame=this.Yj;c=parseInt(c);null==this.Z[c-1]&&(this.Z[c-1]=[]);var m={type:"iframe"};m.src=d;m.url=e;m.Ci=f;m.Di=h;m.width=r;m.height=k;m.Do=l;this.Z[c-1][this.Z[c-1].length]=m;},addImage:function(c,d,e,f,h,r,k,l){c=parseInt(c);null==this.Z[c-1]&&(this.Z[c-1]=[]);var m={type:"image"};m.src=d;m.mh=e;m.nh=f;m.width=h;m.height=r;m.href=k;m.ho=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.Zb){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.Qr=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.Eb||document.mozFullScreen||document.webkitIsFullScreen||window.Cm||window.fg||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.fg&&window.close(),!1;}"0"!=c.N.css("top")&&(c.Lo=c.N.css("top"));"0"!=c.N.css("left")&&(c.Ko=c.N.css("left"));c.H==c.W()&&1<c.scale&&(c.pages.nd(),c.T.show(),c.T.animate({opacity:1},100));c.na=c.N.width();c.za=c.N.height();c.PreviewMode&&c.pages.pl&&(c.PreviewMode=!1,c.Ph=!0,c.I.kb.Yo(c.pages,c.L),c.I.Ap());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.jc(),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.Ni=!1;c.N.css({top:c.Lo,left:c.Ko});c.Ph&&(c.PreviewMode=!0,c.I.Rk(),c.I.lh(),setTimeout(function(){c.PreviewMode&&c.I.lh();},1000));c.H==c.W()&&1<c.scale?c.pages.nd(function(){c.T.show();c.T.animate({opacity:1},100);c.resize(c.na,c.za-2);jQuery(c.K).trigger("onFullscreenChanged",!1);}):(c.resize(c.na,c.za-2),jQuery(c.K).trigger("onFullscreenChanged",!1));jQuery(document).unbind("webkitfullscreenchange mozfullscreenchange fullscreenchange MSFullscreenChange");c.Ph&&(c.Ph=!1,c.I.kb.Uh(c.pages,c.L));window.annotations&&(jQuery(".flowpaper_pageword_"+c.P).remove(),c.jc(),c.pages.Ea());});window.clearTimeout(c.nj);c.nj=setTimeout(function(){!c.PreviewMode&&c.I&&c.I.fb&&c.I.uj();},1000);});d=eb.platform.android&&!e.webkitRequestFullScreen||eb.platform.ios;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.Ni?(c.Ni=!1,window.document.msExitFullscreen()):(c.Ni=!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.jc(),c.pages.Ea());},500)):(c.Io(),setTimeout(function(){c.N.css({visibility:"visible"});},500)):(c.N.css({visibility:"hidden"}),e.webkitRequestFullScreen(eb.browser.safari&&10>eb.browser.Lb?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);}},Io: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 onload="openViewer();">';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.nf+'",',c+='pageHeight : "'+this.document.JSONPageDataFormat.mf+'",',c+='textCollection : "'+this.document.JSONPageDataFormat.Ee+'",',c+='textFragment : "'+this.document.JSONPageDataFormat.rb+'",',c+='textFont : "'+this.document.JSONPageDataFormat.Fg+'",',c+='textLeft : "'+this.document.JSONPageDataFormat.lc+'",',c+='textTop : "'+this.document.JSONPageDataFormat.Cb+'",',c+='textWidth : "'+this.document.JSONPageDataFormat.Bd+'",',c+='textHeight : "'+this.document.JSONPageDataFormat.Ad+'"',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.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.fg=!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.Qa&&(c=c-h.Qa.width()/2,h.L.animate({left:h.Qa.width()/2+"px"},0));var r=jQuery(h.K).height()+1+14,k=0<h.mg?h.mg+1:0;h.I&&(k=37);h.L.css({width:c,height:d-r-k});null!=e&&1!=e||this.N.css({width:c,height:d});h.pages.resize(c,d-r-k,f);jQuery(".flowpaper_interactiveobject_"+h.P).remove();jQuery(".flowpaper_pageword_"+h.P).remove();"TwoPage"!=h.H&&"BookView"!=h.H||h.fitheight();window.clearTimeout(h.Po);h.Po=setTimeout(function(){h.pages.Ea();},700);}h.I&&h.I.fb&&(window.clearTimeout(h.nj),h.nj=setTimeout(function(){h.PreviewMode||h.I.uj();},2500));}}};f.loadFromUrl=f.loadFromUrl;return f;}();window.print_flowpaper_Document=function(f,c,d,e,g){FLOWPAPER.Mk.init();var h=Array(g+1),r=0;if("all"==d){for(var k=1;k<g+1;k++){h[k]=!0;}r=g;}else{if("current"==d){h[e]=!0,r=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,r++;}}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,r++;}}else{h[parseInt(p[k].toString())]=!0,r++;}}}else{isNaN(d)||(h[parseInt(d)]=!0,r=1);}}}}jQuery(document.body).append("<div id='documentViewer' style='position:absolute;width:100%;height:100%'></div>");h="1-"+g;window.Mh=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.Mh==r-1&&setTimeout(function(){if(window.parent.onPrintRenderingCompleted){window.parent.onPrintRenderingCompleted();}window.focus&&window.focus();window.print();window.close&&window.close();},2000);window.Mh++;if(window.parent.onPrintRenderingProgress){window.parent.onPrintRenderingProgress(window.Mh);}});};window.renderPrintPage=function Z(c,d){"CanvasPageRenderer"==c.Hf()&&(d<c.getNumPages()?c.wa?document.getElementById("ppage_"+d)?c.Ti(d+1,function(){if(parent.onPrintRenderingProgress){parent.onPrintRenderingProgress(d+1);}document.getElementById("ppage_"+d)?c.La[d].getPage(1).then(function(e){var g=document.getElementById("ppage_"+d);if(g){var h=g.getContext("2d"),r=e.getViewport(4),h={canvasContext:h,viewport:r,Hh:null,continueCallback:function(c){c();}};g.width=r.width;g.height=r.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.La.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"),r=e.getViewport(4),h={canvasContext:h,viewport:r,Hh:null,continueCallback:function(c){c();}};g.width=r.width;g.height=r.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()));};Fa&&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.Eb=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);