function convertEntities(b){var d,a;d=function(c){if(/&[^;]+;/.test(c)){var f=document.createElement("div");f.innerHTML=c;return!f.firstChild?c:f.firstChild.nodeValue}return c};if(typeof b==="string"){return d(b)}else{if(typeof b==="object"){for(a in b){if(typeof b[a]==="string"){b[a]=d(b[a])}}}}return b};;
/*
 * jQuery Countdown plugin v1.2
 * http://www.twinpictures.de/t-countdown-widget
 * http://www.littlewebthings.com/projects/countdown/
 *
 * Copyright 2011, Twinpictures, Vassilis Dourdounis
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, blend, trade,
 * bake, hack, scramble, difiburlate, digest and/or sell copies of the Software,
 * and to permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
(function($){$.fn.countDown=function(options){config={};$.extend(config,options);diffSecs=this.setCountDown(config);before=new Date();$.data($(this)[0],'before',before);$.data($(this)[0],'status','play');style=config.style;$.data($(this)[0],'style',config.style);if(config.onComplete){$.data($(this)[0],'callback',config.onComplete);}
if(config.hangtime){$.data($(this)[0],'hangtime',config.hangtime);}
if(config.omitWeeks){$.data($(this)[0],'omitWeeks',config.omitWeeks);}
$('#'+$(this).attr('id')+' .'+style+'-digit').html('<div class="top"></div><div class="bottom"></div>');$(this).doCountDown($(this).attr('id'),diffSecs,500);return this;};$.fn.stopCountDown=function(){$.data(this[0],'status','stop');};$.fn.startCountDown=function(){$.data(this[0],'status','play');this.doCountDown($(this).attr('id'),$.data(this[0],'diffSecs'),500);};$.fn.setCountDown=function(options){var targetTime=new Date();if(options.targetDate){targetTime=new Date(options.targetDate.month+'/'+options.targetDate.day+'/'+options.targetDate.year+' '+options.targetDate.hour+':'+options.targetDate.min+':'+options.targetDate.sec+(options.targetDate.utc?' UTC':''));}
else if(options.targetOffset){targetTime.setFullYear(options.targetOffset.year+targetTime.getFullYear());targetTime.setMonth(options.targetOffset.month+targetTime.getMonth());targetTime.setDate(options.targetOffset.day+targetTime.getDate());targetTime.setHours(options.targetOffset.hour+targetTime.getHours());targetTime.setMinutes(options.targetOffset.min+targetTime.getMinutes());targetTime.setSeconds(options.targetOffset.sec+targetTime.getSeconds());}
var nowTime=new Date(options.targetDate.localtime);diffSecs=Math.floor((targetTime.valueOf()-nowTime.valueOf())/1000);$.data(this[0],'diffSecs',diffSecs);return diffSecs;};$.fn.doCountDown=function(id,diffSecs,duration){$this=$('#'+id);if(diffSecs<=0){diffSecs=0;$.data($this[0],'status','stop');}
secs=diffSecs%60;mins=Math.floor(diffSecs/60)%60;hours=Math.floor(diffSecs/60/60)%24;if($.data($this[0],'omitWeeks')==true){days=Math.floor(diffSecs/60/60/24);weeks=Math.floor(diffSecs/60/60/24/7);}
else{days=Math.floor(diffSecs/60/60/24)%7;weeks=Math.floor(diffSecs/60/60/24/7);}
style=$.data($this[0],'style');$this.dashChangeTo(id,style+'-seconds_dash',secs,duration?duration:500);$this.dashChangeTo(id,style+'-minutes_dash',mins,duration?duration:1000);$this.dashChangeTo(id,style+'-hours_dash',hours,duration?duration:1000);$this.dashChangeTo(id,style+'-days_dash',days,duration?duration:1000);$this.dashChangeTo(id,style+'-days_trip_dash',days,duration?duration:1000);$this.dashChangeTo(id,style+'-weeks_dash',weeks,duration?duration:1000);$this.dashChangeTo(id,style+'-weeks_trip_dash',weeks,duration?duration:1000);$.data($this[0],'diffSecs',diffSecs);if(diffSecs>0){if($.data($this[0],'status')=='play'){a=0;delay=1000;now=new Date();befor=$.data($this[0],'before');elapsedTime=(now.getTime()-before.getTime());if(elapsedTime>=delay+1000){a+=Math.floor(1*(elapsedTime/delay));}
else{a=1;}
before=new Date();$.data($this[0],'before',before);e=$this;e.children('.t-throbTimer').toggle(1000,function(){e.doCountDown(id,diffSecs-a);});}}
else if(cb=$.data($this[0],'callback')){if($.data($this[0],'hangtime')){}
$.data($this[0],'callback')();}};$.fn.dashChangeTo=function(id,dash,n,duration){$this=$('#'+id);style=$.data($this[0],'style');for(var i=($this.find('.'+dash+' .'+style+'-digit').length-1);i>=0;i--){var d=n%10;n=(n-d)/10;$this.digitChangeTo('#'+$this.attr('id')+' .'+dash+' .'+style+'-digit:eq('+i+')',d,duration);}};$.fn.digitChangeTo=function(digit,n,duration){if(!duration){duration=500;}
if($(digit+' div.top').html()!=n+''){$(digit+' div.top').css({'display':'none'});$(digit+' div.top').html((n?n:'0')).slideDown(duration);$(digit+' div.bottom').animate({'height':''},duration,function(){$(digit+' div.bottom').html($(digit+' div.top').html());$(digit+' div.bottom').css({'display':'block','height':''});$(digit+' div.top').hide().slideUp(10);});}};})(jQuery);;window.Modernizr=function(i,e,u){function s(a,b){return(""+a).indexOf(b)!==-1}function D(a,b){for(var c in a)if(j[a[c]]!==u&&(!b||b(a[c],E)))return true}function n(a,b){var c=a.charAt(0).toUpperCase()+a.substr(1);c=(a+" "+F.join(c+" ")+c).split(" ");return!!D(c,b)}function S(){f.input=function(a){for(var b=0,c=a.length;b<c;b++)L[a[b]]=!!(a[b]in h);return L}("autocomplete autofocus list placeholder max min multiple pattern required step".split(" "));f.inputtypes=function(a){for(var b=0,c,k=a.length;b<k;b++){h.setAttribute("type",a[b]);if(c=h.type!=="text"){h.value=M;if(/^range$/.test(h.type)&&h.style.WebkitAppearance!==u){l.appendChild(h);c=e.defaultView;c=c.getComputedStyle&&c.getComputedStyle(h,null).WebkitAppearance!=="textfield"&&h.offsetHeight!==0;l.removeChild(h)}else/^(search|tel)$/.test(h.type)||(c=/^(url|email)$/.test(h.type)?h.checkValidity&&h.checkValidity()===false:h.value!=M)}N[a[b]]=!!c}return N}("search tel url email datetime date month week time datetime-local number range color".split(" "))}
var f={},l=e.documentElement,E=e.createElement("modernizr"),j=E.style,h=e.createElement("input"),M=":)",O=Object.prototype.toString,q=" -webkit- -moz- -o- -ms- -khtml- ".split(" "),F="Webkit Moz O ms Khtml".split(" "),v={svg:"http://www.w3.org/2000/svg"},d={},N={},L={},P=[],w,Q=function(a){var b=document.createElement("style"),c=e.createElement("div");b.textContent=a+"{#modernizr{height:3px}}";(e.head||e.getElementsByTagName("head")[0]).appendChild(b);c.id="modernizr";l.appendChild(c);a=c.offsetHeight===3;b.parentNode.removeChild(b);c.parentNode.removeChild(c);return!!a},o=function(){var a={select:"input",change:"input",submit:"form",reset:"form",error:"img",load:"img",abort:"img"};return function(b,c){c=c||document.createElement(a[b]||"div");b="on"+b;var k=b in c;if(!k){c.setAttribute||(c=document.createElement("div"));if(c.setAttribute&&c.removeAttribute){c.setAttribute(b,"");k=typeof c[b]=="function";if(typeof c[b]!="undefined")c[b]=u;c.removeAttribute(b)}}return k}}(),G={}.hasOwnProperty,R;R=typeof G!=="undefined"&&typeof G.call!=="undefined"?function(a,b){return G.call(a,b)}:function(a,b){return b in a&&typeof a.constructor.prototype[b]==="undefined"};d.flexbox=function(){var a=e.createElement("div"),b=e.createElement("div");(function(k,g,r,x){g+=":";k.style.cssText=(g+q.join(r+";"+g)).slice(0,-g.length)+(x||"")})(a,"display","box","width:42px;padding:0;");b.style.cssText=q.join("box-flex:1;")+"width:10px;";a.appendChild(b);l.appendChild(a);var c=b.offsetWidth===42;a.removeChild(b);l.removeChild(a);return c};d.canvas=function(){var a=e.createElement("canvas");return!!(a.getContext&&a.getContext("2d"))};d.canvastext=function(){return!!(f.canvas&&typeof e.createElement("canvas").getContext("2d").fillText=="function")};d.webgl=function(){var a=e.createElement("canvas");try{if(a.getContext("webgl"))return true}catch(b){}try{if(a.getContext("experimental-webgl"))return true}catch(c){}return false};d.touch=function(){return"ontouchstart"in i||Q("@media ("+q.join("touch-enabled),(")+"modernizr)")};d.geolocation=function(){return!!navigator.geolocation};d.postmessage=function(){return!!i.postMessage};d.websqldatabase=function(){return!!i.openDatabase};d.indexedDB=function(){for(var a=-1,b=F.length;++a<b;){var c=F[a].toLowerCase();if(i[c+"_indexedDB"]||i[c+"IndexedDB"])return true}return false};d.hashchange=function(){return o("hashchange",i)&&(document.documentMode===u||document.documentMode>7)};d.history=function(){return!!(i.history&&history.pushState)};d.draganddrop=function(){return o("drag")&&o("dragstart")&&o("dragenter")&&o("dragover")&&o("dragleave")&&o("dragend")&&o("drop")};d.websockets=function(){return"WebSocket"in i};d.rgba=function(){j.cssText="background-color:rgba(150,255,150,.5)";return s(j.backgroundColor,"rgba")};d.hsla=function(){j.cssText="background-color:hsla(120,40%,100%,.5)";return s(j.backgroundColor,"rgba")||s(j.backgroundColor,"hsla")};d.multiplebgs=function(){j.cssText="background:url(//:),url(//:),red url(//:)";return/(url\s*\(.*?){3}/.test(j.background)};d.backgroundsize=function(){return n("backgroundSize")};d.borderimage=function(){return n("borderImage")};d.borderradius=function(){return n("borderRadius","",function(a){return s(a,"orderRadius")})};d.boxshadow=function(){return n("boxShadow")};d.textshadow=function(){return e.createElement("div").style.textShadow===""};d.opacity=function(){var a=q.join("opacity:.5;")+"";j.cssText=a;return s(j.opacity,"0.5")};d.cssanimations=function(){return n("animationName")};d.csscolumns=function(){return n("columnCount")};d.cssgradients=function(){var a=("background-image:"+q.join("gradient(linear,left top,right bottom,from(#9f9),to(white));background-image:")+q.join("linear-gradient(left top,#9f9, white);background-image:")).slice(0,-17);j.cssText=a;return s(j.backgroundImage,"gradient")};d.cssreflections=function(){return n("boxReflect")};d.csstransforms=function(){return!!D(["transformProperty","WebkitTransform","MozTransform","OTransform","msTransform"])};d.csstransforms3d=function(){var a=!!D(["perspectiveProperty","WebkitPerspective","MozPerspective","OPerspective","msPerspective"]);if(a)a=Q("@media ("+q.join("transform-3d),(")+"modernizr)");return a};d.csstransitions=function(){return n("transitionProperty")};d.fontface=function(){var a,b=e.head||e.getElementsByTagName("head")[0]||l,c=e.createElement("style"),k=e.implementation||{hasFeature:function(){return false}};c.type="text/css";b.insertBefore(c,b.firstChild);a=c.sheet||c.styleSheet;b=k.hasFeature("CSS2","")?function(g){if(!(a&&g))return false;var r=false;try{a.insertRule(g,0);r=!/unknown/i.test(a.cssRules[0].cssText);a.deleteRule(a.cssRules.length-1)}catch(x){}return r}:function(g){if(!(a&&g))return false;a.cssText=g;return a.cssText.length!==0&&!/unknown/i.test(a.cssText)&&a.cssText.replace(/\r+|\n+/g,"").indexOf(g.split(" ")[0])===0};f._fontfaceready=function(g){g(f.fontface)};return b('@font-face { font-family: "font"; src: "font.ttf"; }')};d.video=function(){var a=e.createElement("video"),b=!!a.canPlayType;if(b){b=new Boolean(b);b.ogg=a.canPlayType('video/ogg; codecs="theora"');b.h264=a.canPlayType('video/mp4; codecs="avc1.42E01E"')||a.canPlayType('video/mp4; codecs="avc1.42E01E, mp4a.40.2"');b.webm=a.canPlayType('video/webm; codecs="vp8, vorbis"')}return b};d.audio=function(){var a=e.createElement("audio"),b=!!a.canPlayType;if(b){b=new Boolean(b);b.ogg=a.canPlayType('audio/ogg; codecs="vorbis"');b.mp3=a.canPlayType("audio/mpeg;");b.wav=a.canPlayType('audio/wav; codecs="1"');b.m4a=a.canPlayType("audio/x-m4a;")||a.canPlayType("audio/aac;")}return b};d.localstorage=function(){try{return"localStorage"in
i&&i.localStorage!==null}catch(a){return false}};d.sessionstorage=function(){try{return"sessionStorage"in i&&i.sessionStorage!==null}catch(a){return false}};d.webWorkers=function(){return!!i.Worker};d.applicationcache=function(){return!!i.applicationCache};d.svg=function(){return!!e.createElementNS&&!!e.createElementNS(v.svg,"svg").createSVGRect};d.inlinesvg=function(){var a=document.createElement("div");a.innerHTML="<svg/>";return(a.firstChild&&a.firstChild.namespaceURI)==v.svg};d.smil=function(){return!!e.createElementNS&&/SVG/.test(O.call(e.createElementNS(v.svg,"animate")))};d.svgclippaths=function(){return!!e.createElementNS&&/SVG/.test(O.call(e.createElementNS(v.svg,"clipPath")))};for(var H in d)if(R(d,H)){w=H.toLowerCase();f[w]=d[H]();P.push((f[w]?"":"no-")+w)}f.input||S();f.crosswindowmessaging=f.postmessage;f.historymanagement=f.history;f.addTest=function(a,b){a=a.toLowerCase();if(!f[a]){b=!!b();l.className+=" "+(b?"":"no-")+a;f[a]=b;return f}};j.cssText="";E=h=null;i.attachEvent&&function(){var a=e.createElement("div");a.innerHTML="<elem></elem>";return a.childNodes.length!==1}()&&function(a,b){function c(p){for(var m=-1;++m<r;)p.createElement(g[m])}function k(p,m){for(var I=p.length,t=-1,y,J=[];++t<I;){y=p[t];m=y.media||m;J.push(k(y.imports,m));J.push(y.cssText)}return J.join("")}var g="abbr|article|aside|audio|canvas|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video".split("|"),r=g.length,x=RegExp("<(/*)(abbr|article|aside|audio|canvas|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video)","gi"),T=RegExp("\\b(abbr|article|aside|audio|canvas|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video)\\b(?!.*[;}])","gi"),z=b.createDocumentFragment(),A=b.documentElement,K=A.firstChild,B=b.createElement("style"),C=b.createElement("body");B.media="all";c(b);c(z);a.attachEvent("onbeforeprint",function(){for(var p=-1;++p<r;)for(var m=b.getElementsByTagName(g[p]),I=m.length,t=-1;++t<I;)if(m[t].className.indexOf("iepp_")<0)m[t].className+=" iepp_"+
g[p];K.insertBefore(B,K.firstChild);B.styleSheet.cssText=k(b.styleSheets,"all").replace(T,".iepp_$1");z.appendChild(b.body);A.appendChild(C);C.innerHTML=z.firstChild.innerHTML.replace(x,"<$1bdo")});a.attachEvent("onafterprint",function(){C.innerHTML="";A.removeChild(C);K.removeChild(B);A.appendChild(z.firstChild)})}(this,document);f._enableHTML5=true;f._version="1.6";l.className=l.className.replace(/\bno-js\b/,"")+" js";l.className+=" "+P.join(" ");return f}(this,this.document);;var swfobject=function(){var D="undefined",r="object",S="Shockwave Flash",W="ShockwaveFlash.ShockwaveFlash",q="application/x-shockwave-flash",R="SWFObjectExprInst",x="onreadystatechange",O=window,j=document,t=navigator,T=false,U=[h],o=[],N=[],I=[],l,Q,E,B,J=false,a=false,n,G,m=true,M=function(){var aa=typeof j.getElementById!=D&&typeof j.getElementsByTagName!=D&&typeof j.createElement!=D,ah=t.userAgent.toLowerCase(),Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/mac/.test(Y):/mac/.test(ah),af=/webkit/.test(ah)?parseFloat(ah.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,X=!+"\v1",ag=[0,0,0],ab=null;if(typeof t.plugins!=D&&typeof t.plugins[S]==r){ab=t.plugins[S].description;if(ab&&!(typeof t.mimeTypes!=D&&t.mimeTypes[q]&&!t.mimeTypes[q].enabledPlugin)){T=true;X=false;ab=ab.replace(/^.*\s+(\S+\s+\S+$)/,"$1");ag[0]=parseInt(ab.replace(/^(.*)\..*$/,"$1"),10);ag[1]=parseInt(ab.replace(/^.*\.(.*)\s.*$/,"$1"),10);ag[2]=/[a-zA-Z]/.test(ab)?parseInt(ab.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof O.ActiveXObject!=D){try{var ad=new ActiveXObject(W);if(ad){ab=ad.GetVariable("$version");if(ab){X=true;ab=ab.split(" ")[1].split(",");ag=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}}catch(Z){}}}return{w3:aa,pv:ag,wk:af,ie:X,win:ae,mac:ac}}(),k=function(){if(!M.w3){return}if((typeof j.readyState!=D&&j.readyState=="complete")||(typeof j.readyState==D&&(j.getElementsByTagName("body")[0]||j.body))){f()}if(!J){if(typeof j.addEventListener!=D){j.addEventListener("DOMContentLoaded",f,false)}if(M.ie&&M.win){j.attachEvent(x,function(){if(j.readyState=="complete"){j.detachEvent(x,arguments.callee);f()}});if(O==top){(function(){if(J){return}try{j.documentElement.doScroll("left")}catch(X){setTimeout(arguments.callee,0);return}f()})()}}if(M.wk){(function(){if(J){return}if(!/loaded|complete/.test(j.readyState)){setTimeout(arguments.callee,0);return}f()})()}s(f)}}();function f(){if(J){return}try{var Z=j.getElementsByTagName("body")[0].appendChild(C("span"));Z.parentNode.removeChild(Z)}catch(aa){return}J=true;var X=U.length;for(var Y=0;Y<X;Y++){U[Y]()}}function K(X){if(J){X()}else{U[U.length]=X}}function s(Y){if(typeof O.addEventListener!=D){O.addEventListener("load",Y,false)}else{if(typeof j.addEventListener!=D){j.addEventListener("load",Y,false)}else{if(typeof O.attachEvent!=D){i(O,"onload",Y)}else{if(typeof O.onload=="function"){var X=O.onload;O.onload=function(){X();Y()}}else{O.onload=Y}}}}}function h(){if(T){V()}else{H()}}function V(){var X=j.getElementsByTagName("body")[0];var aa=C(r);aa.setAttribute("type",q);var Z=X.appendChild(aa);if(Z){var Y=0;(function(){if(typeof Z.GetVariable!=D){var ab=Z.GetVariable("$version");if(ab){ab=ab.split(" ")[1].split(",");M.pv=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}else{if(Y<10){Y++;setTimeout(arguments.callee,10);return}}X.removeChild(aa);Z=null;H()})()}else{H()}}function H(){var ag=o.length;if(ag>0){for(var af=0;af<ag;af++){var Y=o[af].id;var ab=o[af].callbackFn;var aa={success:false,id:Y};if(M.pv[0]>0){var ae=c(Y);if(ae){if(F(o[af].swfVersion)&&!(M.wk&&M.wk<312)){w(Y,true);if(ab){aa.success=true;aa.ref=z(Y);ab(aa)}}else{if(o[af].expressInstall&&A()){var ai={};ai.data=o[af].expressInstall;ai.width=ae.getAttribute("width")||"0";ai.height=ae.getAttribute("height")||"0";if(ae.getAttribute("class")){ai.styleclass=ae.getAttribute("class")}if(ae.getAttribute("align")){ai.align=ae.getAttribute("align")}var ah={};var X=ae.getElementsByTagName("param");var ac=X.length;for(var ad=0;ad<ac;ad++){if(X[ad].getAttribute("name").toLowerCase()!="movie"){ah[X[ad].getAttribute("name")]=X[ad].getAttribute("value")}}P(ai,ah,Y,ab)}else{p(ae);if(ab){ab(aa)}}}}}else{w(Y,true);if(ab){var Z=z(Y);if(Z&&typeof Z.SetVariable!=D){aa.success=true;aa.ref=Z}ab(aa)}}}}}function z(aa){var X=null;var Y=c(aa);if(Y&&Y.nodeName=="OBJECT"){if(typeof Y.SetVariable!=D){X=Y}else{var Z=Y.getElementsByTagName(r)[0];if(Z){X=Z}}}return X}function A(){return!a&&F("6.0.65")&&(M.win||M.mac)&&!(M.wk&&M.wk<312)}function P(aa,ab,X,Z){a=true;E=Z||null;B={success:false,id:X};var ae=c(X);if(ae){if(ae.nodeName=="OBJECT"){l=g(ae);Q=null}else{l=ae;Q=X}aa.id=R;if(typeof aa.width==D||(!/%$/.test(aa.width)&&parseInt(aa.width,10)<310)){aa.width="310"}if(typeof aa.height==D||(!/%$/.test(aa.height)&&parseInt(aa.height,10)<137)){aa.height="137"}j.title=j.title.slice(0,47)+" - Flash Player Installation";var ad=M.ie&&M.win?"ActiveX":"PlugIn",ac="MMredirectURL="+O.location.toString().replace(/&/g,"%26")+"&MMplayerType="+ad+"&MMdoctitle="+j.title;if(typeof ab.flashvars!=D){ab.flashvars+="&"+ac}else{ab.flashvars=ac}if(M.ie&&M.win&&ae.readyState!=4){var Y=C("div");X+="SWFObjectNew";Y.setAttribute("id",X);ae.parentNode.insertBefore(Y,ae);ae.style.display="none";(function(){if(ae.readyState==4){ae.parentNode.removeChild(ae)}else{setTimeout(arguments.callee,10)}})()}u(aa,ab,X)}}function p(Y){if(M.ie&&M.win&&Y.readyState!=4){var X=C("div");Y.parentNode.insertBefore(X,Y);X.parentNode.replaceChild(g(Y),X);Y.style.display="none";(function(){if(Y.readyState==4){Y.parentNode.removeChild(Y)}else{setTimeout(arguments.callee,10)}})()}else{Y.parentNode.replaceChild(g(Y),Y)}}function g(ab){var aa=C("div");if(M.win&&M.ie){aa.innerHTML=ab.innerHTML}else{var Y=ab.getElementsByTagName(r)[0];if(Y){var ad=Y.childNodes;if(ad){var X=ad.length;for(var Z=0;Z<X;Z++){if(!(ad[Z].nodeType==1&&ad[Z].nodeName=="PARAM")&&!(ad[Z].nodeType==8)){aa.appendChild(ad[Z].cloneNode(true))}}}}}return aa}function u(ai,ag,Y){var X,aa=c(Y);if(M.wk&&M.wk<312){return X}if(aa){if(typeof ai.id==D){ai.id=Y}if(M.ie&&M.win){var ah="";for(var ae in ai){if(ai[ae]!=Object.prototype[ae]){if(ae.toLowerCase()=="data"){ag.movie=ai[ae]}else{if(ae.toLowerCase()=="styleclass"){ah+=' class="'+ai[ae]+'"'}else{if(ae.toLowerCase()!="classid"){ah+=" "+ae+'="'+ai[ae]+'"'}}}}}var af="";for(var ad in ag){if(ag[ad]!=Object.prototype[ad]){af+='<param name="'+ad+'" value="'+ag[ad]+'" />'}}aa.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+ah+">"+af+"</object>";N[N.length]=ai.id;X=c(ai.id)}else{var Z=C(r);Z.setAttribute("type",q);for(var ac in ai){if(ai[ac]!=Object.prototype[ac]){if(ac.toLowerCase()=="styleclass"){Z.setAttribute("class",ai[ac])}else{if(ac.toLowerCase()!="classid"){Z.setAttribute(ac,ai[ac])}}}}for(var ab in ag){if(ag[ab]!=Object.prototype[ab]&&ab.toLowerCase()!="movie"){e(Z,ab,ag[ab])}}aa.parentNode.replaceChild(Z,aa);X=Z}}return X}function e(Z,X,Y){var aa=C("param");aa.setAttribute("name",X);aa.setAttribute("value",Y);Z.appendChild(aa)}function y(Y){var X=c(Y);if(X&&X.nodeName=="OBJECT"){if(M.ie&&M.win){X.style.display="none";(function(){if(X.readyState==4){b(Y)}else{setTimeout(arguments.callee,10)}})()}else{X.parentNode.removeChild(X)}}}function b(Z){var Y=c(Z);if(Y){for(var X in Y){if(typeof Y[X]=="function"){Y[X]=null}}Y.parentNode.removeChild(Y)}}function c(Z){var X=null;try{X=j.getElementById(Z)}catch(Y){}return X}function C(X){return j.createElement(X)}function i(Z,X,Y){Z.attachEvent(X,Y);I[I.length]=[Z,X,Y]}function F(Z){var Y=M.pv,X=Z.split(".");X[0]=parseInt(X[0],10);X[1]=parseInt(X[1],10)||0;X[2]=parseInt(X[2],10)||0;return(Y[0]>X[0]||(Y[0]==X[0]&&Y[1]>X[1])||(Y[0]==X[0]&&Y[1]==X[1]&&Y[2]>=X[2]))?true:false}function v(ac,Y,ad,ab){if(M.ie&&M.mac){return}var aa=j.getElementsByTagName("head")[0];if(!aa){return}var X=(ad&&typeof ad=="string")?ad:"screen";if(ab){n=null;G=null}if(!n||G!=X){var Z=C("style");Z.setAttribute("type","text/css");Z.setAttribute("media",X);n=aa.appendChild(Z);if(M.ie&&M.win&&typeof j.styleSheets!=D&&j.styleSheets.length>0){n=j.styleSheets[j.styleSheets.length-1]}G=X}if(M.ie&&M.win){if(n&&typeof n.addRule==r){n.addRule(ac,Y)}}else{if(n&&typeof j.createTextNode!=D){n.appendChild(j.createTextNode(ac+" {"+Y+"}"))}}}function w(Z,X){if(!m){return}var Y=X?"visible":"hidden";if(J&&c(Z)){c(Z).style.visibility=Y}else{v("#"+Z,"visibility:"+Y)}}function L(Y){var Z=/[\\\"<>\.;]/;var X=Z.exec(Y)!=null;return X&&typeof encodeURIComponent!=D?encodeURIComponent(Y):Y}var d=function(){if(M.ie&&M.win){window.attachEvent("onunload",function(){var ac=I.length;for(var ab=0;ab<ac;ab++){I[ab][0].detachEvent(I[ab][1],I[ab][2])}var Z=N.length;for(var aa=0;aa<Z;aa++){y(N[aa])}for(var Y in M){M[Y]=null}M=null;for(var X in swfobject){swfobject[X]=null}swfobject=null})}}();return{registerObject:function(ab,X,aa,Z){if(M.w3&&ab&&X){var Y={};Y.id=ab;Y.swfVersion=X;Y.expressInstall=aa;Y.callbackFn=Z;o[o.length]=Y;w(ab,false)}else{if(Z){Z({success:false,id:ab})}}},getObjectById:function(X){if(M.w3){return z(X)}},embedSWF:function(ab,ah,ae,ag,Y,aa,Z,ad,af,ac){var X={success:false,id:ah};if(M.w3&&!(M.wk&&M.wk<312)&&ab&&ah&&ae&&ag&&Y){w(ah,false);K(function(){ae+="";ag+="";var aj={};if(af&&typeof af===r){for(var al in af){aj[al]=af[al]}}aj.data=ab;aj.width=ae;aj.height=ag;var am={};if(ad&&typeof ad===r){for(var ak in ad){am[ak]=ad[ak]}}if(Z&&typeof Z===r){for(var ai in Z){if(typeof am.flashvars!=D){am.flashvars+="&"+ai+"="+Z[ai]}else{am.flashvars=ai+"="+Z[ai]}}}if(F(Y)){var an=u(aj,am,ah);if(aj.id==ah){w(ah,true)}X.success=true;X.ref=an}else{if(aa&&A()){aj.data=aa;P(aj,am,ah,ac);return}else{w(ah,true)}}if(ac){ac(X)}})}else{if(ac){ac(X)}}},switchOffAutoHideShow:function(){m=false},ua:M,getFlashPlayerVersion:function(){return{major:M.pv[0],minor:M.pv[1],release:M.pv[2]}},hasFlashPlayerVersion:F,createSWF:function(Z,Y,X){if(M.w3){return u(Z,Y,X)}else{return undefined}},showExpressInstall:function(Z,aa,X,Y){if(M.w3&&A()){P(Z,aa,X,Y)}},removeSWF:function(X){if(M.w3){y(X)}},createCSS:function(aa,Z,Y,X){if(M.w3){v(aa,Z,Y,X)}},addDomLoadEvent:K,addLoadEvent:s,getQueryParamValue:function(aa){var Z=j.location.search||j.location.hash;if(Z){if(/\?/.test(Z)){Z=Z.split("?")[1]}if(aa==null){return L(Z)}var Y=Z.split("&");for(var X=0;X<Y.length;X++){if(Y[X].substring(0,Y[X].indexOf("="))==aa){return L(Y[X].substring((Y[X].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(a){var X=c(R);if(X&&l){X.parentNode.replaceChild(l,X);if(Q){w(Q,true);if(M.ie&&M.win){l.style.display="block"}}if(E){E(B)}}a=false}}}}();;var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return!!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;jQuery(document).ready(function($){$.each($("span.delicious_hash"),function(){var elem=$(this);$.ajax({type:"GET",dataType:"jsonp",url:"http://feeds.delicious.com/v2/json/urlinfo/"+$(this).html(),success:function(data){if(data.length>0){var posts=parseInt(data[0].total_posts);if(posts>1000000){var txt=parseInt(posts/1000000);elem.next().prepend(txt+'M');}else if(posts>1000){var txt=parseInt(posts/1000);elem.next().prepend(txt+'K');}else{elem.next().prepend(posts);}}else{elem.next().prepend('0');}}});});$.each($("a.mr_social_sharing_popup_link"),function(){var elem=$(this);elem.click(function(event){event.preventDefault();var popup=window.open(elem.attr('href'),'mr_social_sharing','height=400,width=650');if(popup){popup.focus();}});});});;(function($){var ver="2.94";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){if($.fn.cycle.debug){log(s);}}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.backwards);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,!opts.backwards);},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"destroy":case"stop":var opts=$(cont).data("cycle.opts");if(!opts){return false;}cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");if(options=="destroy"){destroy(opts);}return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;checkInstantResume(false,arg2,cont);return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;function checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,!options.backwards);}}}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function destroy(opts){if(opts.next){$(opts.next).unbind(opts.prevNextEvent);}if(opts.prev){$(opts.prev).unbind(opts.prevNextEvent);}if(opts.pager||opts.pagerAnchorBuilder){$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});}opts.pagerAnchors=null;if(opts.destroy){opts.destroy(opts);}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.backwards);});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}else{if(opts.backwards){opts.startingSlide=els.length-1;}}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z;if(opts.backwards){z=first?i<=first?els.length+(i-first):first-i:els.length-i;}else{z=first?i>=first?els.length-(i-first):first-i:els.length-i;}$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}var buffer=opts.fx=="shuffle"?500:250;while((opts.timeout-opts.speed)<buffer){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.backwards){opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,0);});}if(opts.pager||opts.pagerAnchorBuilder){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}debug("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$s.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||opts.pagerAnchorBuilder){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){debug("manualTrump in go(), stopping active transition");$(els).stop(true,true);opts.busy=false;}if(opts.busy){debug("transition active, ignoring new tx request");return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&!opts.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing; currSlide: "+opts.currSlide+"; nextSlide: "+opts.nextSlide);opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}}}if(changed||opts.nextSlide==opts.currSlide){opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];if(opts.nextSlide==opts.currSlide){opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}}else{if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}}if(changed&&opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.backwards);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while((t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,1);};$.fn.cycle.prev=function(opts){advance(opts,0);};function advance(opts,moveForward){var val=moveForward?1:-1;var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb)){cb(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,moveForward);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}else{$a.appendTo($p);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){debug("applying clearType background-color hack");function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(opts.slideResize&&w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(opts.slideResize&&h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,fwd,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,onPrevNextEvent:null,prevNextEvent:"click.cycle",pager:null,onPagerEvent:null,pagerEvent:"click.cycle",allowPagerClickBubble:false,pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,slideResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250,activePagerClass:"activeSlide",updateActivePagerLink:null,backwards:false};})(jQuery);(function($){$.fn.cycle.transitions.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};};$.fn.cycle.transitions.fadeout=function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css({display:"block",opacity:1});opts.before.push(function(curr,next,opts,w,h,rev){$(curr).css("zIndex",opts.slideCount+(!rev===true?1:0));$(next).css("zIndex",opts.slideCount+(!rev===true?0:1));});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={opacity:1,display:"block"};opts.cssAfter={zIndex:0};};$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){if(opts.rev){fwd=!fwd;}$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){if(opts.rev){fwd=!fwd;}$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){if(opts.rev){fwd=!fwd;}var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;opts.animOut.width=next.cycleW;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var top=parseInt(h/2);var left=parseInt(w/2);clip="rect("+top+"px "+left+"px "+top+"px "+left+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);;var q=null;window.PR_SHOULD_USE_CONTINUATION=!0;(function(){function L(a){function m(a){var f=a.charCodeAt(0);if(f!==92)return f;var b=a.charAt(1);return(f=r[b])?f:"0"<=b&&b<="7"?parseInt(a.substring(1),8):b==="u"||b==="x"?parseInt(a.substring(2),16):a.charCodeAt(1)}function e(a){if(a<32)return(a<16?"\\x0":"\\x")+a.toString(16);a=String.fromCharCode(a);if(a==="\\"||a==="-"||a==="["||a==="]")a="\\"+a;return a}function h(a){for(var f=a.substring(1,a.length-1).match(/\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\[0-3][0-7]{0,2}|\\[0-7]{1,2}|\\[\S\s]|[^\\]/g),a=[],b=[],o=f[0]==="^",c=o?1:0,i=f.length;c<i;++c){var j=f[c];if(/\\[bdsw]/i.test(j))a.push(j);else{var j=m(j),d;c+2<i&&"-"===f[c+1]?(d=m(f[c+2]),c+=2):d=j;b.push([j,d]);d<65||j>122||(d<65||j>90||b.push([Math.max(65,j)|32,Math.min(d,90)|32]),d<97||j>122||b.push([Math.max(97,j)&-33,Math.min(d,122)&-33]))}}b.sort(function(a,f){return a[0]-f[0]||f[1]-a[1]});f=[];j=[NaN,NaN];for(c=0;c<b.length;++c)i=b[c],i[0]<=j[1]+1?j[1]=Math.max(j[1],i[1]):f.push(j=i);b=["["];o&&b.push("^");b.push.apply(b,a);for(c=0;c<f.length;++c)i=f[c],b.push(e(i[0])),i[1]>i[0]&&(i[1]+1>i[0]&&b.push("-"),b.push(e(i[1])));b.push("]");return b.join("")}function y(a){for(var f=a.source.match(/\[(?:[^\\\]]|\\[\S\s])*]|\\u[\dA-Fa-f]{4}|\\x[\dA-Fa-f]{2}|\\\d+|\\[^\dux]|\(\?[!:=]|[()^]|[^()[\\^]+/g),b=f.length,d=[],c=0,i=0;c<b;++c){var j=f[c];j==="("?++i:"\\"===j.charAt(0)&&(j=+j.substring(1))&&j<=i&&(d[j]=-1)}for(c=1;c<d.length;++c)-1===d[c]&&(d[c]=++t);for(i=c=0;c<b;++c)j=f[c],j==="("?(++i,d[i]===void 0&&(f[c]="(?:")):"\\"===j.charAt(0)&&(j=+j.substring(1))&&j<=i&&(f[c]="\\"+d[i]);for(i=c=0;c<b;++c)"^"===f[c]&&"^"!==f[c+1]&&(f[c]="");if(a.ignoreCase&&s)for(c=0;c<b;++c)j=f[c],a=j.charAt(0),j.length>=2&&a==="["?f[c]=h(j):a!=="\\"&&(f[c]=j.replace(/[A-Za-z]/g,function(a){a=a.charCodeAt(0);return"["+String.fromCharCode(a&-33,a|32)+"]"}));return f.join("")}for(var t=0,s=!1,l=!1,p=0,d=a.length;p<d;++p){var g=a[p];if(g.ignoreCase)l=!0;else if(/[a-z]/i.test(g.source.replace(/\\u[\da-f]{4}|\\x[\da-f]{2}|\\[^UXux]/gi,""))){s=!0;l=!1;break}}for(var r={b:8,t:9,n:10,v:11,f:12,r:13},n=[],p=0,d=a.length;p<d;++p){g=a[p];if(g.global||g.multiline)throw Error(""+g);n.push("(?:"+y(g)+")")}return RegExp(n.join("|"),l?"gi":"g")}function M(a){function m(a){switch(a.nodeType){case 1:if(e.test(a.className))break;for(var g=a.firstChild;g;g=g.nextSibling)m(g);g=a.nodeName;if("BR"===g||"LI"===g)h[s]="\n",t[s<<1]=y++,t[s++<<1|1]=a;break;case 3:case 4:g=a.nodeValue,g.length&&(g=p?g.replace(/\r\n?/g,"\n"):g.replace(/[\t\n\r ]+/g," "),h[s]=g,t[s<<1]=y,y+=g.length,t[s++<<1|1]=a)}}var e=/(?:^|\s)nocode(?:\s|$)/,h=[],y=0,t=[],s=0,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=document.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);m(a);return{a:h.join("").replace(/\n$/,""),c:t}}function B(a,m,e,h){m&&(a={a:m,d:a},e(a),h.push.apply(h,a.e))}function x(a,m){function e(a){for(var l=a.d,p=[l,"pln"],d=0,g=a.a.match(y)||[],r={},n=0,z=g.length;n<z;++n){var f=g[n],b=r[f],o=void 0,c;if(typeof b==="string")c=!1;else{var i=h[f.charAt(0)];if(i)o=f.match(i[1]),b=i[0];else{for(c=0;c<t;++c)if(i=m[c],o=f.match(i[1])){b=i[0];break}o||(b="pln")}if((c=b.length>=5&&"lang-"===b.substring(0,5))&&!(o&&typeof o[1]==="string"))c=!1,b="src";c||(r[f]=b)}i=d;d+=f.length;if(c){c=o[1];var j=f.indexOf(c),k=j+c.length;o[2]&&(k=f.length-o[2].length,j=k-c.length);b=b.substring(5);B(l+i,f.substring(0,j),e,p);B(l+i+j,c,C(b,c),p);B(l+i+k,f.substring(k),e,p)}else p.push(l+i,b)}a.e=p}var h={},y;(function(){for(var e=a.concat(m),l=[],p={},d=0,g=e.length;d<g;++d){var r=e[d],n=r[3];if(n)for(var k=n.length;--k>=0;)h[n.charAt(k)]=r;r=r[1];n=""+r;p.hasOwnProperty(n)||(l.push(r),p[n]=q)}l.push(/[\S\s]/);y=L(l)})();var t=m.length;return e}function u(a){var m=[],e=[];a.tripleQuotedStrings?m.push(["str",/^(?:'''(?:[^'\\]|\\[\S\s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$))/,q,"'\""]):a.multiLineStrings?m.push(["str",/^(?:'(?:[^'\\]|\\[\S\s])*(?:'|$)|"(?:[^"\\]|\\[\S\s])*(?:"|$)|`(?:[^\\`]|\\[\S\s])*(?:`|$))/,q,"'\"`"]):m.push(["str",/^(?:'(?:[^\n\r'\\]|\\.)*(?:'|$)|"(?:[^\n\r"\\]|\\.)*(?:"|$))/,q,"\"'"]);a.verbatimStrings&&e.push(["str",/^@"(?:[^"]|"")*(?:"|$)/,q]);var h=a.hashComments;h&&(a.cStyleComments?(h>1?m.push(["com",/^#(?:##(?:[^#]|#(?!##))*(?:###|$)|.*)/,q,"#"]):m.push(["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warning)\b|[^\n\r]*)/,q,"#"]),e.push(["str",/^<(?:(?:(?:\.\.\/)*|\/?)(?:[\w-]+(?:\/[\w-]+)+)?[\w-]+\.h|[a-z]\w*)>/,q])):m.push(["com",/^#[^\n\r]*/,q,"#"]));a.cStyleComments&&(e.push(["com",/^\/\/[^\n\r]*/,q]),e.push(["com",/^\/\*[\S\s]*?(?:\*\/|$)/,q]));a.regexLiterals&&e.push(["lang-regex",/^(?:^^\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=|&=|\(|\*|\*=|\+=|,|-=|->|\/|\/=|:|::|;|<|<<|<<=|<=|=|==|===|>|>=|>>|>>=|>>>|>>>=|[?@[^]|\^=|\^\^|\^\^=|{|\||\|=|\|\||\|\|=|~|break|case|continue|delete|do|else|finally|instanceof|return|throw|try|typeof)\s*(\/(?=[^*/])(?:[^/[\\]|\\[\S\s]|\[(?:[^\\\]]|\\[\S\s])*(?:]|$))+\/)/]);(h=a.types)&&e.push(["typ",h]);a=(""+a.keywords).replace(/^ | $/g,"");a.length&&e.push(["kwd",RegExp("^(?:"+a.replace(/[\s,]+/g,"|")+")\\b"),q]);m.push(["pln",/^\s+/,q," \r\n\t\xa0"]);e.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+_t\b)/,q],["pln",/^[$_a-z][\w$@]*/i,q],["lit",/^(?:0x[\da-f]+|(?:\d(?:_\d+)*\d*(?:\.\d*)?|\.\d\+)(?:e[+-]?\d+)?)[a-z]*/i,q,"0123456789"],["pln",/^\\[\S\s]?/,q],["pun",/^.[^\s\w"-$'./@\\`]*/,q]);return x(m,e)}function D(a,m){function e(a){switch(a.nodeType){case 1:if(k.test(a.className))break;if("BR"===a.nodeName)h(a),a.parentNode&&a.parentNode.removeChild(a);else for(a=a.firstChild;a;a=a.nextSibling)e(a);break;case 3:case 4:if(p){var b=a.nodeValue,d=b.match(t);if(d){var c=b.substring(0,d.index);a.nodeValue=c;(b=b.substring(d.index+d[0].length))&&a.parentNode.insertBefore(s.createTextNode(b),a.nextSibling);h(a);c||a.parentNode.removeChild(a)}}}}function h(a){function b(a,d){var e=d?a.cloneNode(!1):a,f=a.parentNode;if(f){var f=b(f,1),g=a.nextSibling;f.appendChild(e);for(var h=g;h;h=g)g=h.nextSibling,f.appendChild(h)}return e}
for(;!a.nextSibling;)if(a=a.parentNode,!a)return;for(var a=b(a.nextSibling,0),e;(e=a.parentNode)&&e.nodeType===1;)a=e;d.push(a)}var k=/(?:^|\s)nocode(?:\s|$)/,t=/\r\n?|\n/,s=a.ownerDocument,l;a.currentStyle?l=a.currentStyle.whiteSpace:window.getComputedStyle&&(l=s.defaultView.getComputedStyle(a,q).getPropertyValue("white-space"));var p=l&&"pre"===l.substring(0,3);for(l=s.createElement("LI");a.firstChild;)l.appendChild(a.firstChild);for(var d=[l],g=0;g<d.length;++g)e(d[g]);m===(m|0)&&d[0].setAttribute("value",m);var r=s.createElement("OL");r.className="linenums";for(var n=Math.max(0,m-1|0)||0,g=0,z=d.length;g<z;++g)l=d[g],l.className="L"+(g+n)%10,l.firstChild||l.appendChild(s.createTextNode("\xa0")),r.appendChild(l);a.appendChild(r)}function k(a,m){for(var e=m.length;--e>=0;){var h=m[e];A.hasOwnProperty(h)?window.console&&console.warn("cannot override language handler %s",h):A[h]=a}}function C(a,m){if(!a||!A.hasOwnProperty(a))a=/^\s*</.test(m)?"default-markup":"default-code";return A[a]}function E(a){var m=a.g;try{var e=M(a.h),h=e.a;a.a=h;a.c=e.c;a.d=0;C(m,h)(a);var k=/\bMSIE\b/.test(navigator.userAgent),m=/\n/g,t=a.a,s=t.length,e=0,l=a.c,p=l.length,h=0,d=a.e,g=d.length,a=0;d[g]=s;var r,n;for(n=r=0;n<g;)d[n]!==d[n+2]?(d[r++]=d[n++],d[r++]=d[n++]):n+=2;g=r;for(n=r=0;n<g;){for(var z=d[n],f=d[n+1],b=n+2;b+2<=g&&d[b+1]===f;)b+=2;d[r++]=z;d[r++]=f;n=b}for(d.length=r;h<p;){var o=l[h+2]||s,c=d[a+2]||s,b=Math.min(o,c),i=l[h+1],j;if(i.nodeType!==1&&(j=t.substring(e,b))){k&&(j=j.replace(m,"\r"));i.nodeValue=j;var u=i.ownerDocument,v=u.createElement("SPAN");v.className=d[a+1];var x=i.parentNode;x.replaceChild(v,i);v.appendChild(i);e<o&&(l[h+1]=i=u.createTextNode(t.substring(b,o)),x.insertBefore(i,v.nextSibling))}e=b;e>=o&&(h+=2);e>=c&&(a+=2)}}catch(w){"console"in window&&console.log(w&&w.stack?w.stack:w)}}var v=["break,continue,do,else,for,if,return,while"],w=[[v,"auto,case,char,const,default,double,enum,extern,float,goto,int,long,register,short,signed,sizeof,static,struct,switch,typedef,union,unsigned,void,volatile"],"catch,class,delete,false,import,new,operator,private,protected,public,this,throw,true,try,typeof"],F=[w,"alignof,align_union,asm,axiom,bool,concept,concept_map,const_cast,constexpr,decltype,dynamic_cast,explicit,export,friend,inline,late_check,mutable,namespace,nullptr,reinterpret_cast,static_assert,static_cast,template,typeid,typename,using,virtual,where"],G=[w,"abstract,boolean,byte,extends,final,finally,implements,import,instanceof,null,native,package,strictfp,super,synchronized,throws,transient"],H=[G,"as,base,by,checked,decimal,delegate,descending,dynamic,event,fixed,foreach,from,group,implicit,in,interface,internal,into,is,lock,object,out,override,orderby,params,partial,readonly,ref,sbyte,sealed,stackalloc,string,select,uint,ulong,unchecked,unsafe,ushort,var"],w=[w,"debugger,eval,export,function,get,null,set,undefined,var,with,Infinity,NaN"],I=[v,"and,as,assert,class,def,del,elif,except,exec,finally,from,global,import,in,is,lambda,nonlocal,not,or,pass,print,raise,try,with,yield,False,True,None"],J=[v,"alias,and,begin,case,class,def,defined,elsif,end,ensure,false,in,module,next,nil,not,or,redo,rescue,retry,self,super,then,true,undef,unless,until,when,yield,BEGIN,END"],v=[v,"case,done,elif,esac,eval,fi,function,in,local,set,then,until"],K=/^(DIR|FILE|vector|(de|priority_)?queue|list|stack|(const_)?iterator|(multi)?(set|map)|bitset|u?(int|float)\d*)/,N=/\S/,O=u({keywords:[F,H,w,"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END"+
I,J,v],hashComments:!0,cStyleComments:!0,multiLineStrings:!0,regexLiterals:!0}),A={};k(O,["default-code"]);k(x([],[["pln",/^[^<?]+/],["dec",/^<!\w[^>]*(?:>|$)/],["com",/^<\!--[\S\s]*?(?:--\>|$)/],["lang-",/^<\?([\S\s]+?)(?:\?>|$)/],["lang-",/^<%([\S\s]+?)(?:%>|$)/],["pun",/^(?:<[%?]|[%?]>)/],["lang-",/^<xmp\b[^>]*>([\S\s]+?)<\/xmp\b[^>]*>/i],["lang-js",/^<script\b[^>]*>([\S\s]*?)(<\/script\b[^>]*>)/i],["lang-css",/^<style\b[^>]*>([\S\s]*?)(<\/style\b[^>]*>)/i],["lang-in.tag",/^(<\/?[a-z][^<>]*>)/i]]),["default-markup","htm","html","mxml","xhtml","xml","xsl"]);k(x([["pln",/^\s+/,q," \t\r\n"],["atv",/^(?:"[^"]*"?|'[^']*'?)/,q,"\"'"]],[["tag",/^^<\/?[a-z](?:[\w-.:]*\w)?|\/?>$/i],["atn",/^(?!style[\s=]|on)[a-z](?:[\w:-]*\w)?/i],["lang-uq.val",/^=\s*([^\s"'>]*(?:[^\s"'/>]|\/(?=\s)))/],["pun",/^[/<->]+/],["lang-js",/^on\w+\s*=\s*"([^"]+)"/i],["lang-js",/^on\w+\s*=\s*'([^']+)'/i],["lang-js",/^on\w+\s*=\s*([^\s"'>]+)/i],["lang-css",/^style\s*=\s*"([^"]+)"/i],["lang-css",/^style\s*=\s*'([^']+)'/i],["lang-css",/^style\s*=\s*([^\s"'>]+)/i]]),["in.tag"]);k(x([],[["atv",/^[\S\s]+/]]),["uq.val"]);k(u({keywords:F,hashComments:!0,cStyleComments:!0,types:K}),["c","cc","cpp","cxx","cyc","m"]);k(u({keywords:"null,true,false"}),["json"]);k(u({keywords:H,hashComments:!0,cStyleComments:!0,verbatimStrings:!0,types:K}),["cs"]);k(u({keywords:G,cStyleComments:!0}),["java"]);k(u({keywords:v,hashComments:!0,multiLineStrings:!0}),["bsh","csh","sh"]);k(u({keywords:I,hashComments:!0,multiLineStrings:!0,tripleQuotedStrings:!0}),["cv","py"]);k(u({keywords:"caller,delete,die,do,dump,elsif,eval,exit,foreach,for,goto,if,import,last,local,my,next,no,our,print,package,redo,require,sub,undef,unless,until,use,wantarray,while,BEGIN,END",hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["perl","pl","pm"]);k(u({keywords:J,hashComments:!0,multiLineStrings:!0,regexLiterals:!0}),["rb"]);k(u({keywords:w,cStyleComments:!0,regexLiterals:!0}),["js"]);k(u({keywords:"all,and,by,catch,class,else,extends,false,finally,for,if,in,is,isnt,loop,new,no,not,null,of,off,on,or,return,super,then,true,try,unless,until,when,while,yes",hashComments:3,cStyleComments:!0,multilineStrings:!0,tripleQuotedStrings:!0,regexLiterals:!0}),["coffee"]);k(x([],[["str",/^[\S\s]+/]]),["regex"]);window.prettyPrintOne=function(a,m,e){var h=document.createElement("PRE");h.innerHTML=a;e&&D(h,e);E({g:m,i:e,h:h});return h.innerHTML};window.prettyPrint=function(a){function m(){for(var e=window.PR_SHOULD_USE_CONTINUATION?l.now()+250:Infinity;p<h.length&&l.now()<e;p++){var n=h[p],k=n.className;if(k.indexOf("prettyprint")>=0){var k=k.match(g),f,b;if(b=!k){b=n;for(var o=void 0,c=b.firstChild;c;c=c.nextSibling)var i=c.nodeType,o=i===1?o?b:c:i===3?N.test(c.nodeValue)?b:o:o;b=(f=o===b?void 0:o)&&"CODE"===f.tagName}b&&(k=f.className.match(g));k&&(k=k[1]);b=!1;for(o=n.parentNode;o;o=o.parentNode)if((o.tagName==="pre"||o.tagName==="code"||o.tagName==="xmp")&&o.className&&o.className.indexOf("prettyprint")>=0){b=!0;break}b||((b=(b=n.className.match(/\blinenums\b(?::(\d+))?/))?b[1]&&b[1].length?+b[1]:!0:!1)&&D(n,b),d={g:k,h:n,i:b},E(d))}}p<h.length?setTimeout(m,250):a&&a()}for(var e=[document.getElementsByTagName("pre"),document.getElementsByTagName("code"),document.getElementsByTagName("xmp")],h=[],k=0;k<e.length;++k)for(var t=0,s=e[k].length;t<s;++t)h.push(e[k][t]);var e=q,l=Date;l.now||(l={now:function(){return+new Date}});var p=0,d,g=/\blang(?:uage)?-([\w.]+)(?!\S)/;m()};window.PR={createSimpleLexer:x,registerLangHandler:k,sourceDecorator:u,PR_ATTRIB_NAME:"atn",PR_ATTRIB_VALUE:"atv",PR_COMMENT:"com",PR_DECLARATION:"dec",PR_KEYWORD:"kwd",PR_LITERAL:"lit",PR_NOCODE:"nocode",PR_PLAIN:"pln",PR_PUNCTUATION:"pun",PR_SOURCE:"src",PR_STRING:"str",PR_TAG:"tag",PR_TYPE:"typ"}})();;(function($){$.fn.toggleFade=function(settings){if(settings==undefined){settings={speedIn:'slow'};}settings=jQuery.extend({speedIn:"normal",speedOut:settings.speedIn},settings);return this.each(function(){var isHidden=jQuery(this).is(":hidden");jQuery(this)[isHidden?"fadeIn":"fadeOut"](isHidden?settings.speedIn:settings.speedOut);});};})(jQuery);(function($){$.fn.toggleSlide=function(settings){if(settings==undefined){settings={speedIn:'slow'};}settings=jQuery.extend({speedIn:"normal",speedOut:settings.speedIn},settings);return this.each(function(){var isHidden=jQuery(this).is(":hidden");jQuery(this)[isHidden?"slideDown":"slideUp"](isHidden?settings.speedIn:settings.speedOut);});};})(jQuery);jQuery(document).ready(function($){$('div.faq-title a').click(function(){$(this).parent().next("div").toggleFade()
return false;});});;var ddsmoothmenu={arrowimages:{down:['subDown','down.gif','hasSubMenu'],right:['subRight','right.gif']},transition:{overtime:300,outtime:300},shadow:{enable:false,offsetx:5,offsety:5},showhidedelay:{showdelay:100,hidedelay:200},detectwebkit:navigator.userAgent.toLowerCase().indexOf("applewebkit")!=-1,detectie6:document.all&&!window.XMLHttpRequest,css3support:window.msPerformance||(!document.all&&document.querySelector),getajaxmenu:function($,setting){var $menucontainer=$('#'+setting.contentsource[0])
$menucontainer.html("Loading Menu...")
$.ajax({url:setting.contentsource[1],async:true,error:function(ajaxrequest){$menucontainer.html('Error fetching content. Server Response: '+ajaxrequest.responseText)},success:function(content){$menucontainer.html(content)
ddsmoothmenu.buildmenu($,setting)}})},buildmenu:function($,setting){var smoothmenu=ddsmoothmenu
var $mainmenu=$("#"+setting.mainmenuid+">ul")
$mainmenu.parent().get(0).className=setting.classname||"ddsmoothmenu"
var $headers=$mainmenu.find("ul").parent()
$headers.hover(function(e){$(this).children('a:eq(0)').addClass('hover').parent('li').addClass('li_hover');},function(e){$(this).children('a:eq(0)').removeClass('hover').parent('li').removeClass('li_hover');})
$headers.each(function(i){var $curobj=$(this).css({zIndex:300-i})
var $subul=$(this).find('ul:eq(0)').css({display:'block'})
$subul.data('timers',{})
this._dimensions={w:this.offsetWidth,h:this.offsetHeight,subulw:$subul.outerWidth(),subulh:$subul.outerHeight()}
this.istopheader=$curobj.parents("ul").length==1?true:false
$subul.css({top:this.istopheader&&setting.orientation!='v'?this._dimensions.h+"px":0})
$curobj.children("a:eq(0)").addClass(this.istopheader?smoothmenu.arrowimages.down[2]:{}).append('<span class="'+(this.istopheader&&setting.orientation!='v'?smoothmenu.arrowimages.down[0]:smoothmenu.arrowimages.right[0])+'"></span>')
if(smoothmenu.shadow.enable&&!smoothmenu.css3support){this._shadowoffset={x:(this.istopheader?$subul.offset().left+smoothmenu.shadow.offsetx:this._dimensions.w),y:(this.istopheader?$subul.offset().top+smoothmenu.shadow.offsety:$curobj.position().top)}
if(this.istopheader)
$parentshadow=$(document.body)
else{var $parentLi=$curobj.parents("li:eq(0)")
$parentshadow=$parentLi.get(0).$shadow}
this.$shadow=$('<div class="ddshadow'+(this.istopheader?' toplevelshadow':'')+'"></div>').prependTo($parentshadow).css({left:this._shadowoffset.x+'px',top:this._shadowoffset.y+'px'})}
$curobj.hover(function(e){var $targetul=$subul
var header=$curobj.get(0)
clearTimeout($targetul.data('timers').hidetimer)
$targetul.data('timers').showtimer=setTimeout(function(){header._offsets={left:$curobj.offset().left,top:$curobj.offset().top}
var menuleft=header.istopheader&&setting.orientation!='v'?0:header._dimensions.w
menuleft=(header._offsets.left+menuleft+header._dimensions.subulw>$(window).width())?(header.istopheader&&setting.orientation!='v'?-header._dimensions.subulw+header._dimensions.w:-header._dimensions.w):menuleft
if($targetul.queue().length<=1){$targetul.css({left:menuleft+"px",width:header._dimensions.subulw+'px'}).animate({height:'show',opacity:'show'},ddsmoothmenu.transition.overtime)
if(smoothmenu.shadow.enable&&!smoothmenu.css3support){var shadowleft=header.istopheader?$targetul.offset().left+ddsmoothmenu.shadow.offsetx:menuleft
var shadowtop=header.istopheader?$targetul.offset().top+smoothmenu.shadow.offsety:header._shadowoffset.y
if(!header.istopheader&&ddsmoothmenu.detectwebkit){header.$shadow.css({opacity:1})}
header.$shadow.css({overflow:'',width:header._dimensions.subulw+'px',left:shadowleft+'px',top:shadowtop+'px'}).animate({height:header._dimensions.subulh+'px'},ddsmoothmenu.transition.overtime)}}},ddsmoothmenu.showhidedelay.showdelay)},function(e){var $targetul=$subul
var header=$curobj.get(0)
clearTimeout($targetul.data('timers').showtimer)
$targetul.data('timers').hidetimer=setTimeout(function(){$targetul.animate({height:'hide',opacity:'hide'},ddsmoothmenu.transition.outtime)
if(smoothmenu.shadow.enable&&!smoothmenu.css3support){if(ddsmoothmenu.detectwebkit){header.$shadow.children('div:eq(0)').css({opacity:0})}
header.$shadow.css({overflow:'hidden'}).animate({height:0},ddsmoothmenu.transition.outtime)}},ddsmoothmenu.showhidedelay.hidedelay)})})
if(smoothmenu.shadow.enable&&smoothmenu.css3support){var $toplevelul=$('#'+setting.mainmenuid+' ul li ul')
var css3shadow=parseInt(smoothmenu.shadow.offsetx)+"px "+parseInt(smoothmenu.shadow.offsety)+"px 5px #aaa"
var shadowprop=["boxShadow","MozBoxShadow","WebkitBoxShadow","MsBoxShadow"]
for(var i=0;i<shadowprop.length;i++){$toplevelul.css(shadowprop[i],css3shadow)}}
$mainmenu.find("ul").css({display:'none',visibility:'visible'})},init:function(setting){if(typeof setting.customtheme=="object"&&setting.customtheme.length==2){var mainmenuid='#'+setting.mainmenuid
var mainselector=(setting.orientation=="v")?mainmenuid:mainmenuid+', '+mainmenuid
document.write('<style type="text/css">\n'
+mainselector+' ul li a {background:'+setting.customtheme[0]+';}\n'
+mainmenuid+' ul li a:hover {background:'+setting.customtheme[1]+';}\n'
+'</style>')}
this.shadow.enable=(document.all&&!window.XMLHttpRequest)?false:this.shadow.enable
jQuery(document).ready(function($){if(typeof setting.contentsource=="object"){ddsmoothmenu.getajaxmenu($,setting)}
else{ddsmoothmenu.buildmenu($,setting)}})}};(function(a,b,c){function ba(b){if(!T){O=b,Z(a.extend(J,a.data(O,e))),x=a(O),P=0,J.rel!=="nofollow"&&(x=a("."+V).filter(function(){var b=a.data(this,e).rel||this.rel;return b===J.rel}),P=x.index(O),P===-1&&(x=x.add(O),P=x.length-1));if(!R){R=S=!0,q.show();if(J.returnFocus)try{O.blur(),a(O).one(k,function(){try{this.focus()}catch(a){}})}catch(c){}p.css({opacity:+J.opacity,cursor:J.overlayClose?"pointer":"auto"}).show(),J.w=X(J.initialWidth,"x"),J.h=X(J.initialHeight,"y"),U.position(0),n&&y.bind("resize."+o+" scroll."+o,function(){p.css({width:y.width(),height:y.height(),top:y.scrollTop(),left:y.scrollLeft()})}).trigger("resize."+o),$(g,J.onOpen),I.add(C).hide(),H.html(J.close).show()}U.load(!0)}}function _(){var a,b=f+"Slideshow_",c="click."+f,d,e,g;J.slideshow&&x[1]&&(d=function(){E.text(J.slideshowStop).unbind(c).bind(i,function(){if(P<x.length-1||J.loop)a=setTimeout(U.next,J.slideshowSpeed)}).bind(h,function(){clearTimeout(a)}).one(c+" "+j,e),q.removeClass(b+"off").addClass(b+"on"),a=setTimeout(U.next,J.slideshowSpeed)},e=function(){clearTimeout(a),E.text(J.slideshowStart).unbind([i,h,j,c].join(" ")).one(c,d),q.removeClass(b+"on").addClass(b+"off")},J.slideshowAuto?d():e())}function $(b,c){c&&c.call(O),a.event.trigger(b)}function Z(b){for(var c in b)a.isFunction(b[c])&&c.substring(0,2)!=="on"&&(b[c]=b[c].call(O));b.rel=b.rel||O.rel||"nofollow",b.href=a.trim(b.href||a(O).attr("href")),b.title=b.title||O.title}function Y(a){return J.photo||/\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i.test(a)}function X(a,b){b=b==="x"?y.width():y.height();return typeof a=="string"?Math.round(/%/.test(a)?b/100*parseInt(a,10):parseInt(a,10)):a}function W(c,d){var e=b.createElement("div");c&&(e.id=f+c),e.style.cssText=d||!1;return a(e)}var d={transition:"elastic",speed:300,width:!1,initialWidth:"600",innerWidth:!1,maxWidth:!1,height:!1,initialHeight:"450",innerHeight:!1,maxHeight:!1,scalePhotos:!0,scrolling:!0,inline:!1,html:!1,iframe:!1,fastIframe:!0,photo:!1,href:!1,title:!1,rel:!1,opacity:.9,preloading:!0,current:"image {current} of {total}",previous:"previous",next:"next",close:"close",open:!1,returnFocus:!0,loop:!0,slideshow:!1,slideshowAuto:!0,slideshowSpeed:2500,slideshowStart:"start slideshow",slideshowStop:"stop slideshow",onOpen:!1,onLoad:!1,onComplete:!1,onCleanup:!1,onClosed:!1,overlayClose:!0,escKey:!0,arrowKey:!0},e="colorbox",f="cbox",g=f+"_open",h=f+"_load",i=f+"_complete",j=f+"_cleanup",k=f+"_closed",l=f+"_purge",m=a.browser.msie&&!a.support.opacity,n=m&&a.browser.version<7,o=f+"_IE6",p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J={},K,L,M,N,O,P,Q,R,S,T=!1,U,V=f+"Element";U=a.fn[e]=a[e]=function(b,c){var f=this,g;if(!f[0]&&f.selector)return f;b=b||{},c&&(b.onComplete=c);if(!f[0]||f.selector===undefined)f=a("<a/>"),b.open=!0;f.each(function(){a.data(this,e,a.extend({},a.data(this,e)||d,b)),a(this).addClass(V)}),g=b.open,a.isFunction(g)&&(g=g.call(f)),g&&ba(f[0]);return f},U.init=function(){y=a(c),q=W().attr({id:e,"class":m?f+(n?"IE6":"IE"):""}),p=W("Overlay",n?"position:absolute":"").hide(),r=W("Wrapper"),s=W("Content").append(z=W("LoadedContent","width:0; height:0; overflow:hidden"),B=W("LoadingOverlay").add(W("LoadingGraphic")),C=W("Title"),D=W("Current"),F=W("Next"),G=W("Previous"),E=W("Slideshow").bind(g,_),H=W("Close")),r.append(W().append(W("TopLeft"),t=W("TopCenter"),W("TopRight")),W(!1,"clear:left").append(u=W("MiddleLeft"),s,v=W("MiddleRight")),W(!1,"clear:left").append(W("BottomLeft"),w=W("BottomCenter"),W("BottomRight"))).children().children().css({"float":"left"}),A=W(!1,"position:absolute; width:9999px; visibility:hidden; display:none"),a("body").prepend(p,q.append(r,A)),s.children().hover(function(){a(this).addClass("hover")},function(){a(this).removeClass("hover")}).addClass("hover"),K=t.height()+w.height()+s.outerHeight(!0)-s.height(),L=u.width()+v.width()+s.outerWidth(!0)-s.width(),M=z.outerHeight(!0),N=z.outerWidth(!0),q.css({"padding-bottom":K,"padding-right":L}).hide(),F.click(function(){U.next()}),G.click(function(){U.prev()}),H.click(function(){U.close()}),I=F.add(G).add(D).add(E),s.children().removeClass("hover"),a("."+V).live("click",function(a){a.button!==0&&typeof a.button!="undefined"||a.ctrlKey||a.shiftKey||a.altKey||(a.preventDefault(),ba(this))}),p.click(function(){J.overlayClose&&U.close()}),a(b).bind("keydown."+f,function(a){var b=a.keyCode;R&&J.escKey&&b===27&&(a.preventDefault(),U.close()),R&&J.arrowKey&&x[1]&&(b===37?(a.preventDefault(),G.click()):b===39&&(a.preventDefault(),F.click()))})},U.remove=function(){q.add(p).remove(),a("."+V).die("click").removeData(e).removeClass(V)},U.position=function(a,c){function g(a){t[0].style.width=w[0].style.width=s[0].style.width=a.style.width,B[0].style.height=B[1].style.height=s[0].style.height=u[0].style.height=v[0].style.height=a.style.height}var d,e=Math.max(b.documentElement.clientHeight-J.h-M-K,0)/2+y.scrollTop(),f=Math.max(y.width()-J.w-N-L,0)/2+y.scrollLeft();d=q.width()===J.w+N&&q.height()===J.h+M?0:a,r[0].style.width=r[0].style.height="9999px",q.dequeue().animate({width:J.w+N,height:J.h+M,top:e,left:f},{duration:d,complete:function(){g(this),S=!1,r[0].style.width=J.w+N+L+"px",r[0].style.height=J.h+M+K+"px",c&&c()},step:function(){g(this)}})},U.resize=function(a){if(R){a=a||{},a.width&&(J.w=X(a.width,"x")-N-L),a.innerWidth&&(J.w=X(a.innerWidth,"x")),z.css({width:J.w}),a.height&&(J.h=X(a.height,"y")-M-K),a.innerHeight&&(J.h=X(a.innerHeight,"y"));if(!a.innerHeight&&!a.height){var b=z.wrapInner("<div style='overflow:auto'></div>").children();J.h=b.height(),b.replaceWith(b.children())}z.css({height:J.h}),U.position(J.transition==="none"?0:J.speed)}},U.prep=function(b){function h(b){U.position(b,function(){var b,d,g,h,j=x.length,k,n;!R||(n=function(){B.hide(),$(i,J.onComplete)},m&&Q&&z.fadeIn(100),C.html(J.title).add(z).show(),j>1?(typeof J.current=="string"&&D.html(J.current.replace(/\{current\}/,P+1).replace(/\{total\}/,j)).show(),F[J.loop||P<j-1?"show":"hide"]().html(J.next),G[J.loop||P?"show":"hide"]().html(J.previous),b=P?x[P-1]:x[j-1],g=P<j-1?x[P+1]:x[0],J.slideshow&&E.show(),J.preloading&&(h=a.data(g,e).href||g.href,d=a.data(b,e).href||b.href,h=a.isFunction(h)?h.call(g):h,d=a.isFunction(d)?d.call(b):d,Y(h)&&(a("<img/>")[0].src=h),Y(d)&&(a("<img/>")[0].src=d))):I.hide(),J.iframe?(k=a("<iframe/>").addClass(f+"Iframe")[0],J.fastIframe?n():a(k).load(n),k.name=f++(new Date),k.src=J.href,J.scrolling||(k.scrolling="no"),m&&(k.frameBorder=0,k.allowTransparency="true"),a(k).appendTo(z).one(l,function(){k.src="//about:blank"})):n(),J.transition==="fade"?q.fadeTo(c,1,function(){q[0].style.filter=""}):q[0].style.filter="",y.bind("resize."+f,function(){U.position(0)}))})}function g(){J.h=J.h||z.height(),J.h=J.mh&&J.mh<J.h?J.mh:J.h;return J.h}function d(){J.w=J.w||z.width(),J.w=J.mw&&J.mw<J.w?J.mw:J.w;return J.w}if(!!R){var c=J.transition==="none"?0:J.speed;y.unbind("resize."+f),z.remove(),z=W("LoadedContent").html(b),z.hide().appendTo(A.show()).css({width:d(),overflow:J.scrolling?"auto":"hidden"}).css({height:g()}).prependTo(s),A.hide(),a(Q).css({"float":"none"}),n&&a("select").not(q.find("select")).filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one(j,function(){this.style.visibility="inherit"}),J.transition==="fade"?q.fadeTo(c,0,function(){h(0)}):h(c)}},U.load=function(b){var c,d,g=U.prep;S=!0,Q=!1,O=x[P],b||Z(a.extend(J,a.data(O,e))),$(l),$(h,J.onLoad),J.h=J.height?X(J.height,"y")-M-K:J.innerHeight&&X(J.innerHeight,"y"),J.w=J.width?X(J.width,"x")-N-L:J.innerWidth&&X(J.innerWidth,"x"),J.mw=J.w,J.mh=J.h,J.maxWidth&&(J.mw=X(J.maxWidth,"x")-N-L,J.mw=J.w&&J.w<J.mw?J.w:J.mw),J.maxHeight&&(J.mh=X(J.maxHeight,"y")-M-K,J.mh=J.h&&J.h<J.mh?J.h:J.mh),c=J.href,B.show(),J.inline?(W().hide().insertBefore(a(c)[0]).one(l,function(){a(this).replaceWith(z.children())}),g(a(c))):J.iframe?g(" "):J.html?g(J.html):Y(c)?(a(Q=new Image).addClass(f+"Photo").error(function(){J.title=!1,g(W("Error").text("This image could not be loaded"))}).load(function(){var a;Q.onload=null,J.scalePhotos&&(d=function(){Q.height-=Q.height*a,Q.width-=Q.width*a},J.mw&&Q.width>J.mw&&(a=(Q.width-J.mw)/Q.width,d()),J.mh&&Q.height>J.mh&&(a=(Q.height-J.mh)/Q.height,d())),J.h&&(Q.style.marginTop=Math.max(J.h-Q.height,0)/2+"px"),x[1]&&(P<x.length-1||J.loop)&&(Q.style.cursor="pointer",Q.onclick=function(){U.next()}),m&&(Q.style.msInterpolationMode="bicubic"),setTimeout(function(){g(Q)},1)}),setTimeout(function(){Q.src=c},1)):c&&A.load(c,function(b,c,d){g(c==="error"?W("Error").text("Request unsuccessful: "+d.statusText):a(this).contents())})},U.next=function(){!S&&x[1]&&(P<x.length-1||J.loop)&&(P=P<x.length-1?P+1:0,U.load())},U.prev=function(){!S&&x[1]&&(P||J.loop)&&(P=P?P-1:x.length-1,U.load())},U.close=function(){R&&!T&&(T=!0,R=!1,$(j,J.onCleanup),y.unbind("."+f+" ."+o),p.fadeTo(200,0),q.stop().fadeTo(300,0,function(){q.add(p).css({opacity:1,cursor:"auto"}).hide(),$(l),z.remove(),setTimeout(function(){T=!1,$(k,J.onClosed)},1)}))},U.element=function(){return a(O)},U.settings=d,a(U.init)})(jQuery,document,this);;(function($){$.fn.overlabel=function(options){var opts=$.extend({},$.fn.overlabel.defaults,options),selection=this.filter('label[for]').map(function(){var label=$(this),id=label.attr('for');field=$('#'+id);if(!field)return;var o=$.meta?$.extend({},opts,label.data()):opts,hide_label=function(){label.css(o.hide_css)},show_label=function(){this.value||label.css(o.show_css)};label.css(o.label_css);field.parent().css(o.wrapper_css).end().focus(hide_label).blur(show_label).each(hide_label).each(show_label);return this});return opts.filter?selection:selection.end()};$.fn.overlabel.defaults={label_css:{'position':'absolute','display':'inline','top':'3px','left':'5px','z-index':'1'},wrapper_css:{'position':'relative'},hide_css:{'text-indent':'-10000px'},show_css:{'text-indent':'0px','cursor':'text'},filter:false}})(jQuery);;
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Digitized data copyright © 2006, Google Corporation.
 * 
 * Trademark:
 * Droid is a trademark of Google and may be registered in certain jurisdictions.
 * 
 * Description:
 * Droid Sans is a humanist sans serif typeface designed for user interfaces and
 * electronic communication.
 * 
 * Manufacturer:
 * Ascender Corporation
 * 
 * Vendor URL:
 * http://www.ascendercorp.com/
 * 
 * License information:
 * http://ascendercorp.com/eula10.html
 */
Cufon.registerFont({"w":198,"face":{"font-family":"Droid Sans","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 6 6 3 8 4 2 2 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-32 -335 346 86.762","underline-thickness":"17.9297","underline-position":"-18.1055","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":93},"!":{"d":"59,-73r-21,0r-9,-184r39,0xm48,5v-16,1,-22,-10,-22,-25v0,-14,7,-25,22,-24v15,0,22,8,22,24v0,16,-7,25,-22,25","w":96},"\"":{"d":"58,-257r-7,93r-20,0r-8,-93r35,0xm121,-257r-7,93r-20,0r-7,-93r34,0","w":144,"k":{"\u00ff":-7,"\u00fd":-7,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":11,"\u00dd":-14,"\u00cf":-7,"\u00ce":-7,"\u00cd":-7,"\u00cc":-7,"\u00c6":29,"\u00c5":14,"\u00c4":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"y":-7,"w":-4,"v":-7,"t":-7,"q":11,"o":11,"g":7,"e":11,"d":11,"c":11,"Z":-7,"Y":-14,"X":-7,"W":-18,"V":-14,"T":-14,"I":-7,"A":14}},"#":{"d":"173,-157r-11,58r49,0r0,24r-54,0r-14,75r-26,0r14,-75r-51,0r-14,75r-25,0r13,-75r-45,0r0,-24r50,0r11,-58r-48,0r0,-24r53,0r14,-76r26,0r-14,76r51,0r15,-76r25,0r-14,76r46,0r0,24r-51,0xm85,-99r51,0r11,-58r-51,0","w":232},"$":{"d":"110,-142v30,13,63,22,63,64v0,38,-28,53,-63,58r0,41r-24,0r0,-39v-24,0,-48,-4,-64,-12r0,-30v20,7,39,15,64,16r0,-77v-32,-12,-62,-22,-62,-64v0,-36,28,-52,62,-57r0,-31r24,0r0,31v23,2,43,5,59,13r-12,26v-14,-6,-29,-11,-47,-13r0,74xm110,-46v33,1,43,-47,15,-59v-4,-2,-9,-5,-15,-7r0,66xm86,-215v-32,1,-41,44,-15,59v4,2,9,4,15,6r0,-65"},"%":{"d":"70,-238v-24,0,-26,28,-26,58v0,30,3,58,26,58v18,0,28,-19,28,-58v0,-38,-10,-58,-28,-58xm70,-261v42,0,54,38,54,81v0,45,-12,81,-54,81v-41,0,-52,-37,-52,-81v0,-45,10,-81,52,-81xm226,-135v-25,1,-27,28,-27,58v0,30,3,57,27,57v18,0,27,-18,27,-57v0,-38,-9,-58,-27,-58xm226,-158v41,0,53,36,53,81v0,45,-11,81,-53,81v-41,0,-53,-36,-53,-81v0,-45,11,-81,53,-81xm234,-257r-143,257r-27,0r142,-257r28,0","w":297},"&":{"d":"107,-235v-47,-2,-34,62,-9,77v19,-11,41,-20,41,-47v0,-18,-13,-29,-32,-30xm53,-68v0,57,83,49,105,17r-68,-71v-19,13,-37,23,-37,54xm178,-30v-37,48,-163,49,-159,-37v2,-41,26,-59,53,-75v-14,-16,-29,-33,-29,-63v0,-39,26,-56,65,-56v38,0,62,18,62,56v0,38,-29,51,-53,67r62,66v11,-13,20,-29,24,-50r33,0v-8,29,-18,53,-38,70r49,52r-40,0","w":252},"'":{"d":"58,-257r-7,93r-20,0r-8,-93r35,0","w":81,"k":{"\u00ff":-7,"\u00fd":-7,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":11,"\u00dd":-14,"\u00cf":-7,"\u00ce":-7,"\u00cd":-7,"\u00cc":-7,"\u00c6":29,"\u00c5":14,"\u00c4":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"y":-7,"w":-4,"v":-7,"t":-7,"q":11,"o":11,"g":7,"e":11,"d":11,"c":11,"Z":-7,"Y":-14,"X":-7,"W":-18,"V":-14,"T":-14,"I":-7,"A":14}},"(":{"d":"67,57v-69,-68,-68,-245,0,-314r31,0v-30,41,-51,93,-51,158v0,66,21,116,50,156r-30,0","w":108,"k":{"J":-22}},")":{"d":"41,-257v68,67,70,248,0,314r-30,0v64,-72,65,-240,0,-314r30,0","w":108},"*":{"d":"117,-274r-8,70r70,-20r5,34r-67,5r43,57r-31,17r-31,-63r-28,63r-32,-17r42,-57r-66,-5r6,-34r68,20r-7,-70r36,0"},"+":{"d":"86,-114r-68,0r0,-26r68,0r0,-68r26,0r0,68r68,0r0,26r-68,0r0,68r-26,0r0,-68"},",":{"d":"11,46v7,-28,12,-59,18,-88v12,2,32,-5,37,4v-8,30,-19,60,-31,84r-24,0","w":90,"k":{"\u00dd":18,"\u00dc":7,"\u00db":7,"\u00da":7,"\u00d9":7,"\u00d8":11,"\u00d6":11,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00c7":11,"Y":18,"W":14,"V":18,"U":7,"T":18,"Q":11,"O":11,"G":11,"C":11}},"-":{"d":"14,-82r0,-29r88,0r0,29r-88,0","w":115,"k":{"T":18}},".":{"d":"48,5v-16,1,-22,-10,-22,-25v0,-14,7,-25,22,-24v15,0,22,8,22,24v0,16,-7,25,-22,25","w":96,"k":{"\u00dd":18,"\u00dc":7,"\u00db":7,"\u00da":7,"\u00d9":7,"\u00d8":11,"\u00d6":11,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00c7":11,"Y":18,"W":14,"V":18,"U":7,"T":18,"Q":11,"O":11,"G":11,"C":11}},"\/":{"d":"131,-257r-96,257r-31,0r95,-257r32,0","w":134},"0":{"d":"99,-261v67,0,82,61,82,132v0,73,-13,133,-82,133v-67,0,-82,-62,-82,-133v0,-71,13,-132,82,-132xm99,-234v-47,0,-49,52,-49,105v0,52,1,105,49,105v49,0,50,-54,50,-105v0,-52,-2,-105,-50,-105"},"1":{"d":"125,0r-31,0r1,-224v-13,16,-31,28,-47,41r-17,-21r68,-53r26,0r0,257"},"2":{"d":"135,-191v2,-57,-75,-48,-98,-19r-17,-20v36,-44,154,-44,147,38v-7,82,-75,108,-111,163r121,0r0,29r-160,0r0,-27r85,-93v17,-19,32,-38,33,-71"},"3":{"d":"136,-195v0,-54,-80,-43,-104,-17r-17,-22v38,-40,154,-40,154,37v0,39,-26,55,-56,63v38,4,62,23,64,61v3,79,-102,92,-163,63r0,-30v40,22,132,31,130,-34v-1,-44,-44,-47,-90,-46r0,-26v45,2,81,-7,82,-49"},"4":{"d":"191,-58r-37,0r0,58r-31,0r0,-58r-119,0r0,-28r117,-172r33,0r0,171r37,0r0,29xm123,-87v-2,-45,6,-98,0,-138v-23,52,-59,92,-88,138r88,0"},"5":{"d":"59,-154v62,-12,119,8,119,72v0,83,-93,103,-155,72r0,-31v37,26,122,28,122,-38v0,-52,-55,-58,-101,-47r-16,-10r10,-121r121,0r0,29r-93,0"},"6":{"d":"104,4v-61,0,-82,-49,-84,-114v-3,-96,42,-168,142,-147r0,27v-69,-21,-118,30,-107,99v10,-18,26,-30,54,-30v48,1,73,30,73,78v0,52,-26,87,-78,87xm52,-89v0,36,16,66,51,66v34,0,48,-25,48,-60v0,-32,-15,-53,-47,-53v-30,0,-52,18,-52,47"},"7":{"d":"49,0r99,-228r-132,0r0,-29r165,0r0,25r-98,232r-34,0"},"8":{"d":"27,-200v0,-41,31,-61,72,-61v42,0,73,20,73,62v0,35,-22,51,-46,63v26,15,54,31,54,69v0,47,-33,71,-81,71v-48,0,-80,-22,-80,-70v0,-38,24,-55,49,-69v-21,-15,-41,-30,-41,-65xm95,-122v-25,12,-45,25,-45,57v0,29,19,42,49,42v56,0,64,-68,21,-86xm140,-198v0,-24,-16,-36,-41,-36v-48,0,-53,62,-16,76v5,3,11,6,17,9v20,-10,40,-20,40,-49"},"9":{"d":"97,-261v61,0,82,50,84,114v4,97,-43,167,-143,147r0,-27v70,21,118,-32,108,-99v-11,17,-26,31,-54,30v-48,-1,-73,-29,-73,-78v0,-53,26,-87,78,-87xm149,-168v0,-35,-15,-66,-52,-66v-33,0,-48,24,-47,60v0,32,14,53,46,53v31,0,53,-18,53,-47"},":":{"d":"48,5v-16,1,-22,-10,-22,-25v0,-14,7,-25,22,-24v15,0,22,8,22,24v0,16,-7,25,-22,25xm48,-149v-15,1,-22,-10,-22,-24v0,-16,6,-26,22,-25v16,0,22,8,22,25v0,16,-7,24,-22,24","w":96},";":{"d":"11,46v7,-28,12,-59,18,-88v12,2,32,-5,37,4v-8,30,-19,60,-31,84r-24,0xm48,-149v-15,1,-22,-10,-22,-24v0,-16,6,-26,22,-25v16,0,22,8,22,25v0,16,-7,24,-22,24","w":96},"<":{"d":"180,-42r-162,-74r0,-18r162,-85r0,28r-129,64r129,57r0,28"},"=":{"d":"18,-150r0,-26r162,0r0,26r-162,0xm18,-78r0,-26r162,0r0,26r-162,0"},">":{"d":"18,-70r129,-57r-129,-64r0,-28r162,85r0,18r-162,74r0,-28"},"?":{"d":"7,-243v53,-36,155,-16,132,69v-12,44,-64,47,-65,101r-25,0v-6,-67,60,-63,62,-122v1,-49,-66,-41,-93,-22xm63,5v-16,1,-22,-10,-22,-25v0,-14,7,-25,22,-24v15,0,23,9,23,24v0,15,-7,25,-23,25","w":153},"@":{"d":"167,-257v80,0,126,49,126,129v0,46,-14,87,-61,89v-22,0,-32,-14,-37,-31v-9,17,-23,32,-50,31v-39,-2,-55,-28,-57,-68v-3,-70,66,-95,129,-72r-4,87v1,17,4,30,21,30v29,0,33,-36,33,-67v0,-66,-36,-104,-100,-104v-82,0,-122,51,-122,131v0,71,36,109,107,110v29,0,55,-7,76,-15r0,25v-20,8,-47,15,-76,14v-86,-2,-133,-47,-133,-133v0,-94,53,-156,148,-156xm189,-161v-43,-13,-73,12,-73,55v0,28,9,43,33,44v45,0,36,-56,40,-99","w":311},"A":{"d":"185,0r-28,-80r-95,0r-29,80r-33,0r94,-258r30,0r95,258r-34,0xm147,-109r-38,-114v-10,40,-24,77,-37,114r75,0","w":218,"k":{"\u201d":14,"\u2019":14,"\u00dd":18,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"Y":18,"W":7,"V":11,"U":4,"T":22,"Q":4,"O":4,"G":4,"C":4,"'":14,"\"":14}},"B":{"d":"204,-75v2,82,-86,77,-169,75r0,-257v75,1,163,-12,162,65v-1,34,-24,49,-52,57v34,5,58,21,59,60xm163,-190v0,-46,-50,-39,-95,-39r0,81v46,0,95,7,95,-42xm169,-76v0,-49,-52,-46,-101,-45r0,93v51,1,101,4,101,-48","w":223,"k":{"\u00dd":4,"Y":4,"X":4,"V":4,"T":4,"I":4}},"C":{"d":"193,-218v-14,-7,-32,-15,-54,-14v-58,2,-82,43,-82,104v0,62,22,102,82,103v22,0,40,-5,58,-10r0,28v-18,8,-38,11,-63,11v-79,0,-109,-53,-112,-133v-4,-105,89,-160,185,-117","w":217,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"}":-7,"]":-7,"Q":7,"O":7,"G":7,"C":7,")":-7,"'":-7,"\"":-7}},"D":{"d":"107,-257v78,2,115,47,117,126v2,110,-73,141,-189,131r0,-257r72,0xm68,-28v80,6,122,-26,122,-102v0,-76,-41,-107,-122,-99r0,201","w":246,"k":{"\u00dd":7,"\u00cf":4,"\u00ce":4,"\u00cd":4,"\u00cc":4,"\u00c6":11,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Z":4,"Y":7,"X":4,"W":4,"V":4,"T":11,"I":4,"A":4,".":11,",":11}},"E":{"d":"168,0r-133,0r0,-257r133,0r0,29r-100,0r0,79r94,0r0,29r-94,0r0,91r100,0r0,29","w":190},"F":{"d":"68,0r-33,0r0,-257r133,0r0,29r-100,0r0,91r94,0r0,28r-94,0r0,109","w":176,"k":{"\u201d":-11,"\u2019":-11,"\u00dd":-4,"\u00c6":11,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"}":-7,"]":-7,"Y":-4,"W":-4,"V":-4,"A":7,"?":-7,".":18,",":18,")":-7,"'":-11,"\"":-11}},"G":{"d":"57,-128v0,82,54,117,133,98r0,-77r-53,0r0,-29r86,0r0,126v-25,8,-53,15,-87,14v-77,-2,-110,-54,-114,-133v-5,-110,99,-158,196,-117r-12,29v-17,-8,-37,-15,-61,-15v-61,1,-88,41,-88,104","w":248},"H":{"d":"217,0r-32,0r0,-120r-117,0r0,120r-33,0r0,-257r33,0r0,108r117,0r0,-108r32,0r0,257","w":252},"I":{"d":"108,0r-94,0r0,-18r31,-7r0,-207r-31,-7r0,-18r94,0r0,18r-31,7r0,207r31,7r0,18","w":121,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"Q":4,"O":4,"G":4,"C":4,"'":-7,"\"":-7}},"J":{"d":"65,-4v4,57,-45,83,-97,68r0,-28v30,10,64,2,64,-36r0,-257r33,0r0,253","w":97},"K":{"d":"208,0r-37,0r-79,-123r-24,20r0,103r-33,0r0,-257r33,0r0,129v31,-45,67,-86,100,-129r37,0r-91,112","w":208,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"Q":7,"O":7,"G":7,"C":7,"'":-7,"\"":-7}},"L":{"d":"35,0r0,-257r33,0r0,228r100,0r0,29r-133,0","w":176,"k":{"\u201d":18,"\u2019":18,"\u00dd":18,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"Y":18,"W":11,"V":14,"U":4,"T":22,"Q":4,"O":4,"G":4,"C":4,"'":18,"\"":18}},"M":{"d":"141,0r-79,-225r3,71r0,154r-30,0r0,-257r48,0r74,210r73,-210r48,0r0,257r-32,0r1,-225r-79,225r-27,0","w":313},"N":{"d":"227,0r-37,0r-128,-213r3,213r-30,0r0,-257r37,0r126,212r2,0r-3,-212r30,0r0,257","w":262},"O":{"d":"134,-261v78,0,111,54,111,132v0,79,-34,133,-111,133v-79,0,-112,-53,-112,-133v0,-79,32,-132,112,-132xm134,-232v-58,0,-77,43,-77,103v0,60,18,104,77,104v58,0,76,-44,76,-104v0,-60,-18,-103,-76,-103","w":267,"k":{"\u00dd":7,"\u00cf":4,"\u00ce":4,"\u00cd":4,"\u00cc":4,"\u00c6":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"I":4,"A":4,".":11,",":11}},"P":{"d":"35,-257v78,-2,156,-4,154,75v-2,65,-49,87,-121,82r0,100r-33,0r0,-257xm155,-180v0,-47,-39,-51,-87,-49r0,101v49,2,87,-4,87,-52","w":207,"k":{"\u00dd":4,"\u00c7":4,"\u00c6":25,"\u00c5":14,"\u00c4":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"Z":7,"Y":4,"X":4,"C":4,"A":14,".":36,",":36}},"Q":{"d":"134,-261v137,-8,143,223,44,257v11,23,27,38,48,52r-22,25v-24,-17,-45,-40,-57,-70v-86,7,-125,-49,-125,-132v0,-79,32,-127,112,-132xm134,-232v-58,0,-77,43,-77,103v0,60,18,104,77,104v58,0,76,-44,76,-104v0,-60,-18,-103,-76,-103","w":266,"k":{"\u00dd":7,"\u00cf":4,"\u00ce":4,"\u00cd":4,"\u00cc":4,"\u00c6":11,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"I":4,"A":4,".":11,",":11}},"R":{"d":"189,-184v0,40,-23,58,-51,69r70,115r-38,0r-62,-106r-40,0r0,106r-33,0r0,-257v78,-2,154,-4,154,73xm155,-182v0,-47,-40,-48,-87,-47r0,95v47,2,87,-1,87,-48","w":212,"k":{"T":4}},"S":{"d":"53,-195v5,72,117,41,117,126v0,76,-95,85,-152,60r0,-31v38,21,139,29,118,-42v-26,-47,-114,-32,-114,-113v0,-72,91,-77,144,-52r-12,28v-30,-16,-105,-24,-101,24","w":186},"T":{"d":"110,0r-33,0r0,-228r-73,0r0,-29r179,0r0,29r-73,0r0,228","w":186,"k":{"\u201d":-14,"\u2019":-14,"\u2014":18,"\u2013":14,"\u00ff":11,"\u00fd":11,"\u00fc":14,"\u00fb":14,"\u00fa":14,"\u00f9":14,"\u00f8":22,"\u00f6":22,"\u00f5":22,"\u00f4":22,"\u00f3":22,"\u00f2":22,"\u00f1":14,"\u00eb":22,"\u00ea":22,"\u00e9":22,"\u00e8":22,"\u00e7":22,"\u00e6":22,"\u00e5":22,"\u00e4":22,"\u00e3":22,"\u00e2":22,"\u00e1":22,"\u00e0":22,"\u00d8":11,"\u00d6":11,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00c7":11,"\u00c6":25,"\u00c5":22,"\u00c4":22,"\u00c3":22,"\u00c2":22,"\u00c1":22,"\u00c0":22,"z":11,"y":11,"x":11,"w":11,"v":11,"u":14,"s":22,"r":14,"q":22,"p":14,"o":22,"n":14,"m":14,"g":18,"e":22,"d":22,"c":22,"a":22,"T":-4,"S":4,"Q":11,"O":11,"G":11,"C":11,"A":22,"?":-7,".":18,"-":18,",":18,"'":-14,"\"":-14}},"U":{"d":"126,-25v41,0,59,-25,60,-65r0,-167r33,0r0,166v-1,60,-34,95,-94,95v-60,0,-93,-35,-93,-95r0,-166r33,0r0,167v0,42,19,65,61,65","w":251,"k":{"\u00c6":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"A":4,".":7,",":7}},"V":{"d":"170,-257r34,0r-86,257r-32,0r-86,-257r35,0r67,222v19,-77,45,-148,68,-222","w":204,"k":{"\u201d":-14,"\u2019":-14,"\u00fc":7,"\u00fb":7,"\u00fa":7,"\u00f9":7,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00f1":7,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":11,"\u00e5":11,"\u00e4":11,"\u00e3":11,"\u00e2":11,"\u00e1":11,"\u00e0":11,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"\u00c6":22,"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"u":7,"s":7,"r":7,"q":11,"p":7,"o":11,"n":7,"m":7,"g":11,"e":11,"d":11,"c":11,"a":11,"Q":7,"O":7,"G":7,"C":7,"A":11,"?":-7,".":18,",":18,"'":-14,"\"":-14}},"W":{"d":"142,-257r35,0r57,222v9,-80,31,-148,46,-222r35,0r-65,257r-33,0r-58,-220v-14,77,-37,146,-55,220r-33,0r-67,-257r34,0r51,222v12,-80,35,-148,53,-222","w":318,"k":{"\u201d":-18,"\u2019":-18,"\u00fc":4,"\u00fb":4,"\u00fa":4,"\u00f9":4,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00f1":4,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c6":14,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"z":4,"u":4,"s":7,"r":4,"q":7,"p":4,"o":7,"n":4,"m":4,"g":4,"e":7,"d":7,"c":7,"a":7,"Q":4,"O":4,"G":4,"C":4,"A":7,".":14,",":14,"'":-18,"\"":-18}},"X":{"d":"197,0r-37,0r-62,-112r-65,112r-33,0r80,-134r-75,-123r35,0r59,98r58,-98r34,0r-74,122","w":196,"k":{"\u201d":-7,"\u2019":-7,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"q":4,"o":4,"e":4,"d":4,"c":4,"Q":7,"O":7,"G":7,"C":7,"'":-7,"\"":-7}},"Y":{"d":"95,-127r60,-130r35,0r-79,157r0,100r-33,0r0,-98r-78,-159r36,0","w":189,"k":{"\u201d":-14,"\u2019":-14,"\u00ff":4,"\u00fd":4,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00f8":18,"\u00f6":18,"\u00f5":18,"\u00f4":18,"\u00f3":18,"\u00f2":18,"\u00f1":11,"\u00eb":18,"\u00ea":18,"\u00e9":18,"\u00e8":18,"\u00e7":18,"\u00e6":18,"\u00e5":18,"\u00e4":18,"\u00e3":18,"\u00e2":18,"\u00e1":18,"\u00e0":18,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"\u00c6":25,"\u00c5":18,"\u00c4":18,"\u00c3":18,"\u00c2":18,"\u00c1":18,"\u00c0":18,"z":11,"y":4,"x":7,"u":11,"s":14,"r":11,"q":18,"p":11,"o":18,"n":11,"m":11,"g":18,"e":18,"d":18,"c":18,"a":18,"S":4,"Q":7,"O":7,"G":7,"C":7,"A":18,"?":-7,".":18,",":18,"'":-14,"\"":-14}},"Z":{"d":"180,0r-166,0r0,-25r125,-203r-121,0r0,-29r158,0r0,25r-125,203r129,0r0,29","w":194,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"Q":4,"O":4,"G":4,"C":4,"'":-7,"\"":-7}},"[":{"d":"100,57r-71,0r0,-314r71,0r0,26r-39,0r0,262r39,0r0,26","w":109,"k":{"J":-22}},"\\":{"d":"35,-257r96,257r-31,0r-96,-257r31,0","w":134},"]":{"d":"9,31r39,0r0,-262r-39,0r0,-26r71,0r0,314r-71,0r0,-26","w":109},"^":{"d":"7,-97r81,-162r18,0r78,162r-28,0r-59,-129r-61,129r-29,0","w":191},"_":{"d":"149,57r-150,0r0,-25r150,0r0,25","w":148},"`":{"d":"108,-276v7,21,24,36,30,58r-21,0v-16,-17,-40,-33,-48,-58r39,0","w":207},"a":{"d":"30,-180v45,-28,132,-27,132,48r0,132r-23,0v-3,-8,-2,-22,-8,-27v-20,45,-114,43,-114,-27v0,-55,55,-62,114,-62v2,-33,-6,-54,-38,-54v-22,0,-36,7,-52,14xm50,-54v0,22,12,32,31,32v38,0,53,-29,50,-72v-40,1,-81,0,-81,40","w":191,"k":{"'":7}},"b":{"d":"61,-168v15,-13,28,-30,57,-29v53,2,73,43,73,100v0,58,-20,101,-73,101v-26,0,-43,-12,-55,-28v-8,3,-5,17,-9,24r-23,0r0,-274r32,0xm158,-97v0,-42,-8,-73,-46,-73v-41,0,-49,30,-49,73v0,43,8,74,49,74v37,0,46,-33,46,-74","w":210,"k":{"'":7}},"c":{"d":"151,-7v-63,31,-131,-7,-131,-88v0,-82,63,-123,135,-91r-10,27v-47,-23,-100,-1,-92,63v-7,67,49,85,98,61r0,28","w":166,"k":{"\u201d":-11,"\u2019":-11,"'":-11,"\"":-11}},"d":{"d":"93,-197v28,-1,43,15,57,29v-3,-33,-2,-70,-2,-106r32,0r0,274r-25,0v-3,-8,-1,-21,-7,-26v-11,17,-28,30,-55,30v-53,0,-73,-43,-73,-100v0,-58,20,-98,73,-101xm53,-96v0,42,8,72,46,73v42,1,49,-31,49,-73v0,-43,-8,-74,-49,-74v-37,0,-46,33,-46,74","w":210},"e":{"d":"166,-9v-67,32,-152,0,-146,-86v4,-58,23,-102,80,-102v57,0,78,45,75,107r-122,0v-7,69,63,78,113,52r0,29xm140,-116v7,-47,-45,-70,-73,-40v-8,9,-12,23,-13,40r86,0","w":192,"k":{"'":7}},"f":{"d":"124,-244v-33,-16,-62,4,-53,51r43,0r0,24r-43,0r0,169r-32,0r0,-169r-34,0r0,-13r34,-12v-10,-66,34,-95,93,-75","w":118,"k":{"\u201d":-18,"\u2019":-18,"\u00ff":-4,"\u00fd":-4,"y":-4,"w":-4,"v":-4,"'":-18,"\"":-18}},"g":{"d":"22,-130v-3,-53,44,-77,93,-63r64,0r0,20r-34,5v29,45,-3,113,-69,98v-15,4,-25,37,0,37v49,0,103,0,101,53v-2,51,-41,67,-96,66v-43,0,-73,-12,-74,-53v0,-30,19,-42,42,-48v-10,-3,-18,-14,-17,-27v0,-19,10,-25,23,-34v-20,-8,-32,-27,-33,-54xm105,-3v-36,0,-69,-2,-68,35v1,23,19,30,44,30v37,0,66,-9,66,-39v0,-23,-17,-26,-42,-26xm89,-173v-26,0,-36,15,-36,42v0,25,11,40,36,40v25,0,36,-14,36,-40v0,-27,-10,-42,-36,-42","w":186,"k":{"\u201d":-7,"\u2019":-7,"g":-4,"'":-7,"\"":-7}},"h":{"d":"118,-197v91,-6,60,115,65,197r-32,0r0,-124v0,-28,-10,-47,-38,-46v-73,0,-44,102,-50,170r-32,0r0,-274r32,0v1,34,-6,77,0,107v11,-18,28,-29,55,-30","w":211,"k":{"'":11}},"i":{"d":"63,0r-32,0r0,-193r32,0r0,193xm47,-225v-11,0,-20,-6,-19,-20v-1,-14,7,-20,19,-20v13,0,18,8,19,20v1,13,-8,20,-19,20","w":93},"j":{"d":"63,28v4,45,-34,68,-75,54r0,-26v20,9,43,2,43,-26r0,-223r32,0r0,221xm47,-225v-11,0,-20,-6,-19,-20v-1,-14,7,-20,19,-20v13,0,18,8,19,20v1,13,-8,20,-19,20","w":93},"k":{"d":"59,-100r76,-93r37,0r-70,83r75,110r-37,0r-59,-89r-19,15r0,74r-31,0r0,-274r31,0r0,126","w":178,"k":{"\u201d":-7,"\u2019":-7,"'":-7,"\"":-7}},"l":{"d":"63,0r-32,0r0,-274r32,0r0,274","w":93},"m":{"d":"232,-197v89,-4,56,117,62,197r-32,0r0,-124v0,-28,-9,-47,-36,-46v-72,0,-41,104,-48,170r-32,0r0,-124v0,-28,-9,-47,-36,-46v-70,1,-41,103,-47,170r-32,0r0,-193r26,0v3,8,0,21,6,26v16,-39,96,-39,110,2v11,-19,30,-31,59,-32","w":322,"k":{"'":7}},"n":{"d":"118,-197v91,-6,60,115,65,197r-32,0r0,-124v0,-28,-10,-47,-38,-46v-73,0,-44,102,-50,170r-32,0r0,-193r26,0v3,8,0,21,6,26v11,-18,28,-29,55,-30","w":211,"k":{"'":7}},"o":{"d":"104,-197v57,0,84,40,84,100v0,61,-26,101,-85,101v-56,0,-83,-41,-83,-101v0,-60,26,-100,84,-100xm104,-170v-40,0,-51,29,-51,73v0,44,11,74,51,74v40,0,51,-30,51,-74v0,-44,-11,-73,-51,-73","w":207,"k":{"z":4,"x":7}},"p":{"d":"191,-97v0,58,-20,101,-73,101v-26,0,-43,-12,-55,-28r-3,0v5,33,2,73,3,110r-32,0r0,-279r26,0v3,8,0,21,6,26v10,-17,28,-30,55,-30v53,0,73,43,73,100xm158,-97v0,-42,-8,-72,-46,-73v-42,-1,-49,31,-49,73v0,43,8,74,49,74v37,0,46,-33,46,-74","w":210},"q":{"d":"53,-96v0,42,8,72,46,73v42,1,49,-31,49,-73v0,-43,-8,-74,-49,-74v-37,0,-46,33,-46,74xm150,-26v-15,13,-28,32,-57,30v-53,-3,-73,-43,-73,-100v0,-58,20,-98,73,-101v29,-1,43,16,57,30r5,-26r25,0r0,279r-32,0","w":210},"r":{"d":"62,-158v13,-24,34,-46,74,-37r-4,30v-44,-11,-69,18,-69,61r0,104r-32,0r0,-193r26,0v3,11,-1,28,5,35","w":143,"k":{"\u201d":-18,"\u2019":-18,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"g":4,"a":4,"'":-18,"\"":-18}},"s":{"d":"133,-157v-26,-21,-110,-16,-75,29v30,23,86,23,88,75v2,63,-87,67,-130,44r0,-29v23,15,95,29,99,-12v-10,-52,-96,-30,-96,-95v0,-60,84,-60,125,-38","w":162,"k":{"\u201d":-11,"\u2019":-11,"'":-11,"\"":-11}},"t":{"d":"65,-57v-3,31,21,40,50,31r0,24v-42,17,-82,-3,-82,-55r0,-112r-27,0r0,-14r27,-14r14,-40r18,0r0,44r49,0r0,24r-49,0r0,112","w":121,"k":{"\u201d":-14,"\u2019":-14,"t":-4,"'":-14,"\"":-14}},"u":{"d":"99,-23v73,0,44,-102,50,-170r32,0r0,193r-25,0v-3,-8,-1,-21,-7,-26v-11,18,-28,29,-55,30v-91,5,-60,-115,-65,-197r32,0r0,124v0,28,10,47,38,46","w":211},"v":{"d":"66,0r-66,-193r33,0r54,172v14,-60,34,-116,52,-172r33,0r-65,193r-41,0","w":172,"k":{"\u201d":-14,"\u2019":-14,"f":-4,"'":-14,"\"":-14}},"w":{"d":"177,0r-44,-163r-43,163r-37,0r-49,-193r33,0r36,168v12,-59,28,-113,44,-168r35,0r43,168r37,-168r33,0r-50,193r-38,0","w":268,"k":{"\u201d":-14,"\u2019":-14,"f":-4,"'":-14,"\"":-14}},"x":{"d":"72,-99r-62,-94r36,0r44,72r44,-72r36,0r-62,94r65,99r-36,0r-47,-77r-47,77r-37,0","w":180,"k":{"\u201d":-7,"\u2019":-7,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00e6":7,"o":7,"'":-7,"\"":-7}},"y":{"d":"98,25v-10,41,-42,73,-93,58r0,-25v28,8,52,-5,60,-28r10,-28r-73,-195r33,0r55,166v14,-60,34,-110,51,-166r33,0","w":175,"k":{"\u201d":-11,"\u2019":-11,"f":-4,"'":-11,"\"":-11}},"z":{"d":"144,0r-130,0r0,-22r95,-147r-89,0r0,-24r121,0r0,26r-92,143r95,0r0,24","w":158,"k":{"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00e6":4,"o":4}},"{":{"d":"47,-99v46,2,42,53,41,102v-1,21,11,27,30,28r0,26v-36,-1,-63,-14,-62,-52v0,-46,9,-98,-45,-91r0,-28v95,14,-13,-143,107,-143r0,26v-42,-4,-30,49,-30,86v0,29,-21,37,-41,46","w":127,"k":{"J":-22}},"|":{"d":"86,-274r26,0r0,360r-26,0r0,-360"},"}":{"d":"9,31v42,3,31,-49,31,-86v0,-30,21,-37,41,-46v-47,-2,-41,-53,-41,-102v0,-20,-12,-27,-31,-28r0,-26v37,1,63,15,63,52v0,47,-9,100,45,91r0,28v-28,0,-45,6,-45,33v3,58,3,114,-63,110r0,-26","w":127},"~":{"d":"18,-131v43,-54,121,35,162,-20r0,29v-34,40,-82,-2,-122,-2v-19,0,-29,12,-40,21r0,-28"},"\u00a0":{"w":93},"\u00a1":{"d":"37,-119r22,0r9,185r-40,0xm48,-197v14,0,22,8,22,25v0,16,-7,24,-22,24v-15,1,-22,-9,-22,-24v0,-15,8,-25,22,-25","w":96},"\u00a2":{"d":"66,-131v-8,67,50,84,99,61r0,28v-13,5,-23,10,-42,10r0,36r-24,0r0,-37v-47,-8,-66,-43,-66,-98v1,-56,18,-92,66,-99r0,-31r24,0r0,29v15,1,35,5,45,11r-10,27v-46,-24,-100,-1,-92,63"},"\u00a3":{"d":"47,-139v-5,-68,4,-121,70,-121v24,0,45,6,61,14r-12,25v-29,-18,-93,-21,-87,31r0,51r66,0r0,25r-66,0v1,37,1,74,-24,85r131,0r0,29r-174,0r0,-27v34,-6,37,-44,35,-87r-35,0r0,-25r35,0"},"\u00a4":{"d":"44,-90v-15,-18,-14,-56,0,-75r-22,-22r17,-17r22,22v18,-15,57,-16,75,0r23,-22r17,16r-22,23v14,19,16,58,0,76r22,22r-17,17r-23,-22v-18,15,-58,14,-75,-1r-22,23r-17,-17xm99,-170v-26,0,-42,17,-42,43v0,26,16,42,42,42v26,0,43,-16,43,-42v0,-26,-17,-43,-43,-43"},"\u00a5":{"d":"99,-127r61,-130r33,0r-67,135r42,0r0,24r-53,0r0,28r53,0r0,24r-53,0r0,46r-32,0r0,-46r-52,0r0,-24r52,0r0,-28r-52,0r0,-24r41,0r-67,-135r34,0"},"\u00a6":{"d":"86,-274r26,0r0,138r-26,0r0,-138xm86,-51r26,0r0,137r-26,0r0,-137"},"\u00a7":{"d":"21,-37v26,14,105,30,98,-20v-24,-34,-95,-26,-95,-85v0,-24,13,-37,28,-46v-16,-7,-28,-20,-28,-41v0,-53,84,-54,124,-34r-9,25v-24,-19,-110,-17,-75,25v30,22,88,24,88,75v0,23,-10,40,-26,48v53,30,14,92,-48,92v-25,0,-42,-3,-57,-12r0,-27xm75,-177v-22,4,-33,38,-13,54v10,10,26,16,42,22v17,-7,29,-40,10,-55v-11,-9,-22,-15,-39,-21","w":174},"\u00a8":{"d":"71,-227v-10,0,-17,-7,-17,-18v0,-11,6,-18,17,-18v11,0,17,7,17,18v0,11,-7,18,-17,18xm137,-227v-10,-1,-16,-7,-17,-18v-2,-19,26,-24,32,-8v5,13,-3,27,-15,26","w":207},"\u00a9":{"d":"190,-176v-36,-22,-84,-1,-78,48v-5,49,39,68,82,48v5,27,-12,33,-38,32v-50,0,-69,-32,-72,-81v-3,-66,60,-97,117,-69xm150,4v-80,0,-132,-51,-132,-132v0,-82,52,-133,132,-133v81,0,132,52,132,133v0,80,-52,132,-132,132xm150,-242v-68,0,-113,46,-113,114v0,67,45,113,113,113v68,0,113,-46,113,-113v0,-68,-45,-114,-113,-114","w":299},"\u00aa":{"d":"19,-249v27,-17,83,-18,83,29r0,80r-16,0r-5,-15v-15,26,-72,22,-69,-19v2,-33,30,-39,67,-38v7,-35,-34,-31,-52,-20xm51,-157v23,1,29,-16,28,-39v-21,1,-44,1,-44,23v-1,11,6,16,16,16","w":119},"\u00ab":{"d":"14,-97r55,-73r20,14r-42,61r42,61r-20,14r-55,-72r0,-5xm86,-97r54,-73r21,14r-42,61r42,61r-21,14r-54,-72r0,-5","w":175},"\u00ac":{"d":"180,-140r0,94r-26,0r0,-68r-136,0r0,-26r162,0"},"\u00ad":{"d":"14,-82r0,-29r88,0r0,29r-88,0","w":115},"\u00ae":{"d":"173,-160v0,-24,-19,-23,-42,-23r0,48v24,1,42,-2,42,-25xm103,-207v50,-1,98,-3,98,47v0,23,-11,34,-28,40r42,70r-31,0r-37,-62r-16,0r0,62r-28,0r0,-157xm150,4v-80,0,-132,-51,-132,-132v0,-82,52,-133,132,-133v81,0,132,52,132,133v0,80,-52,132,-132,132xm150,-242v-68,0,-113,46,-113,114v0,67,45,113,113,113v68,0,113,-46,113,-113v0,-68,-45,-114,-113,-114","w":299},"\u00af":{"d":"181,-274r-182,0r0,-24r182,0r0,24","w":180},"\u00b0":{"d":"77,-150v-34,0,-55,-22,-55,-55v0,-34,22,-56,55,-56v33,0,56,23,56,56v0,32,-22,55,-56,55xm111,-205v2,-36,-53,-46,-65,-13v-8,23,6,47,31,46v21,0,32,-14,34,-33","w":154},"\u00b1":{"d":"86,-114r-68,0r0,-26r68,0r0,-68r26,0r0,68r68,0r0,26r-68,0r0,68r-26,0r0,-68xm18,0r0,-26r162,0r0,26r-162,0"},"\u00b2":{"d":"10,-240v25,-36,114,-21,90,39v-13,32,-39,51,-60,76r69,0r0,22r-100,0r0,-20v23,-31,63,-49,69,-94v4,-33,-43,-22,-55,-7","w":119},"\u00b3":{"d":"6,-243v24,-24,98,-26,98,22v0,20,-12,31,-27,37v18,5,31,14,31,36v0,52,-67,57,-103,38r0,-23v22,14,78,23,77,-15v0,-25,-26,-26,-53,-25r0,-20v26,1,49,-1,48,-25v0,-31,-46,-22,-59,-8","w":119},"\u00b4":{"d":"138,-276v-7,25,-31,42,-48,58r-21,0v7,-23,23,-37,31,-58r38,0","w":207},"\u00b5":{"d":"151,-26v-12,30,-67,41,-89,14r1,98r-32,0r0,-279r32,0r0,124v0,28,10,47,38,46v73,0,44,-102,50,-170r32,0r0,193r-26,0v-3,-8,0,-21,-6,-26","w":213},"\u00b6":{"d":"20,-183v0,-58,23,-90,79,-91r99,0r0,320r-21,0r0,-292r-37,0r0,292r-21,0r0,-144v-62,13,-99,-20,-99,-85","w":235},"\u00b7":{"d":"48,-103v-16,0,-21,-10,-22,-24v0,-15,7,-25,22,-25v14,0,22,8,22,25v0,16,-7,24,-22,24","w":96},"\u00b8":{"d":"6,66v30,10,60,-20,23,-32r-12,-3r15,-31r22,0r-10,20v15,5,28,10,28,30v0,31,-31,40,-66,35r0,-19","w":73},"\u00b9":{"d":"11,-224v21,-12,30,-37,67,-33r0,154r-26,0r2,-130v-8,11,-20,18,-30,26","w":119},"\u00ba":{"d":"63,-260v34,0,52,24,51,61v0,37,-16,61,-51,61v-34,0,-52,-24,-51,-61v0,-37,15,-61,51,-61xm63,-240v-23,0,-28,16,-28,41v0,26,5,42,28,42v22,0,28,-18,28,-42v0,-24,-5,-41,-28,-41","w":126},"\u00bb":{"d":"161,-92r-54,72r-21,-14r42,-61r-42,-61r21,-14r54,73r0,5xm90,-92r-55,72r-20,-14r42,-61r-42,-61r20,-14r55,73r0,5","w":175},"\u00bc":{"d":"249,-34r-22,0r0,34r-25,0r0,-34r-66,0r0,-19r67,-102r24,0r0,99r22,0r0,22xm202,-56r1,-68v-12,24,-27,46,-41,68r40,0xm211,-257r-142,257r-28,0r143,-257r27,0xm11,-224v21,-12,30,-37,67,-33r0,154r-26,0r2,-130v-8,11,-20,18,-30,26","w":265},"\u00bd":{"d":"208,-257r-143,257r-28,0r143,-257r28,0xm8,-224v21,-12,30,-37,67,-33r0,154r-26,0r2,-130v-8,11,-20,18,-30,26xm154,-137v25,-36,114,-21,90,39v-13,32,-39,51,-60,76r69,0r0,22r-100,0r0,-20v23,-31,63,-49,69,-94v4,-33,-43,-22,-55,-7","w":265},"\u00be":{"d":"261,-34r-22,0r0,34r-25,0r0,-34r-66,0r0,-19r66,-102r25,0r0,99r22,0r0,22xm214,-56r1,-68v-12,24,-27,46,-41,68r40,0xm228,-257r-143,257r-27,0r142,-257r28,0xm6,-243v24,-24,98,-26,98,22v0,20,-12,31,-27,37v18,5,31,14,31,36v0,52,-67,57,-103,38r0,-23v22,14,78,23,77,-15v0,-25,-26,-26,-53,-25r0,-20v26,1,49,-1,48,-25v0,-31,-46,-22,-59,-8","w":265},"\u00bf":{"d":"12,4v0,-67,67,-61,68,-123r24,0v8,70,-59,62,-61,122v-1,51,65,40,93,23r11,26v-47,28,-135,24,-135,-48xm90,-197v14,0,22,8,22,25v0,16,-7,24,-22,24v-15,0,-22,-8,-22,-24v0,-17,8,-25,22,-25","w":153},"\u00c0":{"d":"185,0r-28,-80r-95,0r-29,80r-33,0r94,-258r30,0r95,258r-34,0xm147,-109r-38,-114v-10,40,-24,77,-37,114r75,0xm96,-335v7,21,24,36,30,58r-21,0v-16,-17,-40,-33,-48,-58r39,0","w":218,"k":{"\u201d":14,"\u2019":14,"\u00ff":7,"\u00fd":7,"\u00dd":18,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c0":7,"y":7,"w":4,"v":7,"t":4,"f":4,"Z":-10,"Y":18,"W":7,"V":11,"U":4,"T":22,"Q":4,"O":4,"J":-17,"G":4,"C":4,"?":11,";":-12,",":-12,"*":22,"'":14,"\"":14}},"\u00c1":{"d":"185,0r-28,-80r-95,0r-29,80r-33,0r94,-258r30,0r95,258r-34,0xm147,-109r-38,-114v-10,40,-24,77,-37,114r75,0xm163,-335v-7,25,-31,42,-48,58r-21,0v7,-23,23,-37,31,-58r38,0","w":218,"k":{"\u201d":14,"\u2019":14,"\u00ff":7,"\u00fd":7,"\u00dd":18,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00ce":5,"\u00cd":7,"\u00c8":7,"\u00c7":4,"\u00c2":7,"y":7,"w":4,"v":7,"t":4,"f":4,"Z":-10,"Y":18,"W":7,"V":11,"U":4,"T":22,"Q":4,"O":4,"J":-17,"G":4,"C":4,"?":11,";":-12,",":-12,"*":22,"'":14,"\"":14}},"\u00c2":{"d":"109,-310v-17,13,-24,36,-58,32v8,-21,32,-36,41,-57r34,0v9,22,33,36,42,57v-34,4,-42,-19,-59,-32xm185,0r-28,-80r-95,0r-29,80r-33,0r94,-258r30,0r95,258r-34,0xm147,-109r-38,-114v-10,40,-24,77,-37,114r75,0","w":218,"k":{"\u201d":14,"\u2019":14,"\u00ff":7,"\u00fd":7,"\u00dd":18,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00ce":5,"\u00cd":7,"\u00c8":7,"\u00c7":4,"\u00c2":7,"y":7,"w":4,"v":7,"t":4,"f":4,"Z":-10,"Y":18,"W":7,"V":11,"U":4,"T":22,"Q":4,"O":4,"J":-17,"G":4,"C":4,"?":11,";":-12,",":-12,"*":22,"'":14,"\"":14}},"\u00c3":{"d":"173,-324v-3,24,-12,46,-37,46v-26,0,-62,-42,-71,0r-19,0v3,-24,12,-46,37,-46v27,0,62,42,71,0r19,0xm185,0r-28,-80r-95,0r-29,80r-33,0r94,-258r30,0r95,258r-34,0xm147,-109r-38,-114v-10,40,-24,77,-37,114r75,0","w":218,"k":{"\u201d":14,"\u2019":14,"\u00ff":7,"\u00fd":7,"\u00dd":18,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c0":7,"y":7,"w":4,"v":7,"t":4,"f":4,"Z":-10,"Y":18,"W":7,"V":11,"U":4,"T":22,"Q":4,"O":4,"J":-17,"G":4,"C":4,"?":11,";":-12,",":-12,"*":22,"'":14,"\"":14}},"\u00c4":{"d":"185,0r-28,-80r-95,0r-29,80r-33,0r94,-258r30,0r95,258r-34,0xm147,-109r-38,-114v-10,40,-24,77,-37,114r75,0xm77,-286v-10,0,-17,-7,-17,-18v0,-11,6,-18,17,-18v11,0,17,7,17,18v0,11,-7,18,-17,18xm143,-286v-10,-1,-16,-7,-17,-18v-2,-19,26,-24,32,-8v5,13,-3,27,-15,26","w":218,"k":{"\u201d":14,"\u2019":14,"\u00ff":7,"\u00fd":7,"\u00dd":18,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"y":7,"w":5,"v":8,"t":5,"Z":-10,"Y":18,"W":7,"V":11,"U":4,"T":22,"Q":4,"O":4,"J":-17,"G":4,"C":4,"?":7,";":-12,",":-12,"*":23,"'":14,"\"":14}},"\u00c5":{"d":"109,-316v24,0,39,13,40,38v0,25,-16,38,-40,38v-24,0,-39,-12,-39,-38v0,-26,15,-38,39,-38xm109,-258v12,0,19,-8,19,-20v0,-11,-8,-20,-19,-20v-11,0,-21,8,-20,20v1,12,6,20,20,20xm185,0r-28,-80r-95,0r-29,80r-33,0r94,-258r30,0r95,258r-34,0xm147,-109r-38,-114v-10,40,-24,77,-37,114r75,0","w":218,"k":{"\u2122":18,"\u201d":14,"\u201c":27,"\u2019":14,"\u2018":27,"\u00ff":7,"\u00fd":7,"\u00dd":18,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"y":7,"w":5,"v":8,"t":5,"Z":-10,"Y":18,"W":7,"V":11,"U":4,"T":22,"Q":4,"O":4,"J":-17,"G":4,"C":4,"?":7,";":-12,",":-12,"*":23,"'":27,"\"":27}},"\u00c6":{"d":"285,0r-133,0r0,-80r-84,0r-36,80r-32,0r115,-257r170,0r0,29r-101,0r0,79r94,0r0,29r-94,0r0,91r101,0r0,29xm81,-109r71,0r0,-119r-19,0","w":306},"\u00c7":{"d":"193,-218v-14,-7,-32,-15,-54,-14v-58,2,-82,43,-82,104v0,62,22,102,82,103v22,0,40,-5,58,-10r0,28v-18,8,-38,11,-63,11v-79,0,-109,-53,-112,-133v-4,-105,89,-160,185,-117xm95,66v30,10,60,-20,23,-32r-12,-3r15,-31r22,0r-10,20v15,5,28,10,28,30v0,31,-31,40,-66,35r0,-19","w":217,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"}":-7,"]":-7,"Q":7,"O":7,"G":7,"C":7,")":-7,"'":-7,"\"":-7}},"\u00c8":{"d":"168,0r-133,0r0,-257r133,0r0,29r-100,0r0,79r94,0r0,29r-94,0r0,91r100,0r0,29xm95,-335v7,21,24,36,30,58r-21,0v-16,-17,-40,-33,-48,-58r39,0","w":190,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00cd":4,"\u00c8":4,"\u00c7":4,"\u00c2":4,"Q":4,"O":4,"C":4,"-":7,"'":-7,"\"":-7}},"\u00c9":{"d":"168,0r-133,0r0,-257r133,0r0,29r-100,0r0,79r94,0r0,29r-94,0r0,91r100,0r0,29xm149,-335v-7,25,-31,42,-48,58r-21,0v7,-23,23,-37,31,-58r38,0","w":190,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c9":4,"\u00c7":4,"Q":4,"O":4,"C":4,"-":7,"'":-7,"\"":-7}},"\u00ca":{"d":"101,-310v-17,13,-24,36,-58,32v8,-21,32,-36,41,-57r34,0v9,22,32,34,41,57v-34,4,-41,-19,-58,-32xm168,0r-133,0r0,-257r133,0r0,29r-100,0r0,79r94,0r0,29r-94,0r0,91r100,0r0,29","w":190,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00cd":4,"\u00c8":4,"\u00c7":4,"\u00c2":4,"Q":4,"O":4,"C":4,"-":7,"'":-7,"\"":-7}},"\u00cb":{"d":"168,0r-133,0r0,-257r133,0r0,29r-100,0r0,79r94,0r0,29r-94,0r0,91r100,0r0,29xm69,-286v-10,0,-17,-7,-17,-18v0,-11,6,-18,17,-18v11,0,17,7,17,18v0,11,-7,18,-17,18xm135,-286v-10,-1,-16,-7,-17,-18v-2,-19,26,-24,32,-8v5,13,-3,27,-15,26","w":190,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00cd":4,"\u00c8":4,"\u00c7":4,"\u00c2":4,"Q":4,"O":4,"C":4,"-":7,"'":-7,"\"":-7}},"\u00cc":{"d":"108,0r-94,0r0,-18r31,-7r0,-207r-31,-7r0,-18r94,0r0,18r-31,7r0,207r31,7r0,18xm50,-335v7,21,24,36,30,58r-21,0v-16,-17,-40,-33,-48,-58r39,0","w":121,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"Q":4,"O":4,"G":4,"C":4,"'":-7,"\"":-7}},"\u00cd":{"d":"108,0r-94,0r0,-18r31,-7r0,-207r-31,-7r0,-18r94,0r0,18r-31,7r0,207r31,7r0,18xm114,-335v-7,25,-31,42,-48,58r-21,0v7,-23,23,-37,31,-58r38,0","w":121,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"Q":4,"O":4,"G":4,"C":4,"'":-7,"\"":-7}},"\u00ce":{"d":"3,-278v9,-22,31,-35,41,-57r34,0v9,22,33,36,42,57v-34,4,-42,-19,-59,-32v-17,14,-24,36,-58,32xm108,0r-94,0r0,-18r31,-7r0,-207r-31,-7r0,-18r94,0r0,18r-31,7r0,207r31,7r0,18","w":121,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"Q":4,"O":4,"G":4,"C":4,"'":-7,"\"":-7}},"\u00cf":{"d":"108,0r-94,0r0,-18r31,-7r0,-207r-31,-7r0,-18r94,0r0,18r-31,7r0,207r31,7r0,18xm28,-286v-10,0,-17,-7,-17,-18v0,-11,6,-18,17,-18v11,0,17,7,17,18v0,11,-7,18,-17,18xm94,-286v-10,-1,-16,-7,-17,-18v-2,-19,26,-24,32,-8v5,13,-3,27,-15,26","w":121,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"Q":4,"O":4,"G":4,"C":4,"'":-7,"\"":-7}},"\u00d0":{"d":"224,-131v2,110,-73,141,-189,131r0,-113r-27,0r0,-29r27,0r0,-115r72,0v78,2,115,47,117,126xm68,-28v80,6,122,-26,122,-102v0,-76,-41,-107,-122,-99r0,87r59,0r0,29r-59,0r0,85","w":246,"k":{"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"A":4}},"\u00d1":{"d":"196,-324v-3,24,-11,46,-37,46v-27,0,-60,-41,-71,0r-18,0v3,-24,11,-46,37,-46v27,0,61,41,71,0r18,0xm227,0r-37,0r-128,-213r3,213r-30,0r0,-257r37,0r126,212r2,0r-3,-212r30,0r0,257","w":262},"\u00d2":{"d":"134,-261v78,0,111,54,111,132v0,79,-34,133,-111,133v-79,0,-112,-53,-112,-133v0,-79,32,-132,112,-132xm134,-232v-58,0,-77,43,-77,103v0,60,18,104,77,104v58,0,76,-44,76,-104v0,-60,-18,-103,-76,-103xm123,-335v7,21,24,36,30,58r-21,0v-16,-17,-40,-33,-48,-58r39,0","w":267,"k":{"\u00dd":7,"\u00cf":4,"\u00ce":4,"\u00cd":4,"\u00cc":4,"\u00c6":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"}":7,"]":7,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"S":4,"J":2,"I":4,"A":4,".":11,",":11,")":7}},"\u00d3":{"d":"134,-261v78,0,111,54,111,132v0,79,-34,133,-111,133v-79,0,-112,-53,-112,-133v0,-79,32,-132,112,-132xm134,-232v-58,0,-77,43,-77,103v0,60,18,104,77,104v58,0,76,-44,76,-104v0,-60,-18,-103,-76,-103xm183,-335v-7,25,-31,42,-48,58r-21,0v7,-23,23,-37,31,-58r38,0","w":267,"k":{"\u00dd":7,"\u00cf":4,"\u00ce":4,"\u00cd":4,"\u00cc":4,"\u00c6":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"}":7,"]":7,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"S":4,"J":2,"I":4,"A":4,".":11,",":11,")":7}},"\u00d4":{"d":"134,-310v-17,13,-24,36,-58,32v8,-21,32,-36,41,-57r34,0v9,22,33,36,42,57v-34,4,-42,-19,-59,-32xm134,-261v78,0,111,54,111,132v0,79,-34,133,-111,133v-79,0,-112,-53,-112,-133v0,-79,32,-132,112,-132xm134,-232v-58,0,-77,43,-77,103v0,60,18,104,77,104v58,0,76,-44,76,-104v0,-60,-18,-103,-76,-103","w":267,"k":{"\u00dd":7,"\u00cf":4,"\u00ce":4,"\u00cd":4,"\u00cc":4,"\u00c6":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"}":7,"]":7,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"S":4,"J":2,"I":4,"A":4,".":11,",":11,")":7}},"\u00d5":{"d":"194,-324v-3,24,-12,46,-37,46v-26,0,-62,-42,-71,0r-19,0v3,-24,12,-46,37,-46v28,0,61,42,71,0r19,0xm134,-261v78,0,111,54,111,132v0,79,-34,133,-111,133v-79,0,-112,-53,-112,-133v0,-79,32,-132,112,-132xm134,-232v-58,0,-77,43,-77,103v0,60,18,104,77,104v58,0,76,-44,76,-104v0,-60,-18,-103,-76,-103","w":267,"k":{"\u00dd":7,"\u00cf":4,"\u00ce":4,"\u00cd":4,"\u00cc":4,"\u00c6":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"}":7,"]":7,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"S":4,"J":2,"I":4,"A":4,".":11,",":11,")":7}},"\u00d6":{"d":"134,-261v78,0,111,54,111,132v0,79,-34,133,-111,133v-79,0,-112,-53,-112,-133v0,-79,32,-132,112,-132xm134,-232v-58,0,-77,43,-77,103v0,60,18,104,77,104v58,0,76,-44,76,-104v0,-60,-18,-103,-76,-103xm101,-286v-10,0,-17,-7,-17,-18v0,-11,6,-18,17,-18v11,0,17,7,17,18v0,11,-7,18,-17,18xm167,-286v-10,-1,-16,-7,-17,-18v-2,-19,26,-24,32,-8v5,13,-3,27,-15,26","w":267,"k":{"\u00dd":7,"\u00cf":4,"\u00ce":4,"\u00cd":4,"\u00cc":4,"\u00c6":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"}":7,"]":7,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"S":4,"J":2,"I":4,"A":4,".":11,",":11,")":7}},"\u00d7":{"d":"81,-127r-56,-56r18,-19r56,56r57,-56r18,18r-57,57r56,56r-17,18r-57,-56r-56,56r-18,-18"},"\u00d8":{"d":"134,-261v23,1,41,5,56,14r14,-22r25,13r-17,27v21,22,33,56,33,100v0,101,-78,160,-168,120r-14,22r-24,-13r16,-26v-22,-24,-33,-58,-33,-103v0,-79,32,-132,112,-132xm134,-232v-86,0,-91,115,-61,177r102,-166v-11,-6,-24,-11,-41,-11xm134,-25v84,0,89,-117,61,-176r-102,166v11,6,25,10,41,10","w":267,"k":{"\u00dd":7,"\u00cf":4,"\u00ce":4,"\u00cd":4,"\u00cc":4,"\u00c6":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"I":4,"A":4,".":11,",":11}},"\u00d9":{"d":"126,-25v41,0,59,-25,60,-65r0,-167r33,0r0,166v-1,60,-34,95,-94,95v-60,0,-93,-35,-93,-95r0,-166r33,0r0,167v0,42,19,65,61,65xm119,-335v7,21,24,36,30,58r-21,0v-16,-17,-40,-33,-48,-58r39,0","w":251,"k":{"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c6":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"a":4,"Z":4,"M":4,"A":4,".":7,",":7}},"\u00da":{"d":"126,-25v41,0,59,-25,60,-65r0,-167r33,0r0,166v-1,60,-34,95,-94,95v-60,0,-93,-35,-93,-95r0,-166r33,0r0,167v0,42,19,65,61,65xm173,-335v-7,25,-31,42,-48,58r-21,0v7,-23,23,-37,31,-58r38,0","w":251,"k":{"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c6":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"a":4,"Z":4,"M":4,"A":4,".":7,",":7}},"\u00db":{"d":"125,-310v-17,13,-24,36,-58,32v8,-21,32,-36,41,-57r34,0v9,22,32,34,41,57v-34,4,-41,-19,-58,-32xm126,-25v41,0,59,-25,60,-65r0,-167r33,0r0,166v-1,60,-34,95,-94,95v-60,0,-93,-35,-93,-95r0,-166r33,0r0,167v0,42,19,65,61,65","w":251,"k":{"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c6":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"a":4,"Z":4,"M":4,"A":4,".":7,",":7}},"\u00dc":{"d":"126,-25v41,0,59,-25,60,-65r0,-167r33,0r0,166v-1,60,-34,95,-94,95v-60,0,-93,-35,-93,-95r0,-166r33,0r0,167v0,42,19,65,61,65xm93,-286v-10,0,-17,-7,-17,-18v0,-11,6,-18,17,-18v11,0,17,7,17,18v0,11,-7,18,-17,18xm159,-286v-10,-1,-16,-7,-17,-18v-2,-19,26,-24,32,-8v5,13,-3,27,-15,26","w":251,"k":{"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c6":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"a":4,"Z":4,"M":4,"A":4,".":7,",":7}},"\u00dd":{"d":"95,-127r60,-130r35,0r-79,157r0,100r-33,0r0,-98r-78,-159r36,0xm147,-335v-7,25,-31,42,-48,58r-21,0v7,-23,23,-37,31,-58r38,0","w":189,"k":{"\u201d":-14,"\u2019":-14,"\u00ff":4,"\u00fd":4,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00f8":18,"\u00f6":18,"\u00f5":18,"\u00f4":18,"\u00f3":18,"\u00f2":18,"\u00f1":11,"\u00eb":18,"\u00ea":18,"\u00e9":18,"\u00e8":18,"\u00e7":18,"\u00e6":18,"\u00e5":18,"\u00e4":18,"\u00e3":18,"\u00e2":18,"\u00e1":18,"\u00e0":18,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"\u00c6":25,"\u00c5":18,"\u00c4":18,"\u00c3":18,"\u00c2":18,"\u00c1":18,"\u00c0":18,"}":-11,"z":11,"y":4,"x":7,"w":4,"v":7,"u":11,"s":14,"r":11,"q":18,"p":11,"o":18,"n":11,"m":11,"g":18,"f":5,"e":18,"d":18,"c":18,"a":18,"]":-11,"W":-4,"V":-7,"T":-7,"S":4,"Q":7,"O":7,"M":11,"J":12,"G":7,"C":7,"A":18,"?":-7,".":18,"-":18,",":18,"*":-7,")":-11,"'":-14,"&":11,"\"":-14}},"\u00de":{"d":"68,-213v70,-3,122,10,121,76v-2,64,-48,86,-121,81r0,56r-33,0r0,-257r33,0r0,44xm155,-136v0,-47,-39,-51,-87,-49r0,102v50,2,87,-5,87,-53","w":207},"\u00df":{"d":"105,-275v42,0,72,15,73,54v1,43,-51,41,-50,80v23,29,70,35,73,86v3,62,-78,70,-119,46r0,-29v21,16,87,29,86,-15v-2,-52,-72,-41,-72,-94v0,-38,49,-38,49,-73v0,-22,-18,-29,-40,-29v-26,0,-42,10,-42,38r0,211r-32,0r0,-211v-1,-47,28,-64,74,-64","w":216},"\u00e0":{"d":"30,-180v45,-28,132,-27,132,48r0,132r-23,0v-3,-8,-2,-22,-8,-27v-20,45,-114,43,-114,-27v0,-55,55,-62,114,-62v2,-33,-6,-54,-38,-54v-22,0,-36,7,-52,14xm50,-54v0,22,12,32,31,32v38,0,53,-29,50,-72v-40,1,-81,0,-81,40xm89,-276v7,21,24,36,30,58r-21,0v-16,-17,-40,-33,-48,-58r39,0","w":191,"k":{"'":7}},"\u00e1":{"d":"30,-180v45,-28,132,-27,132,48r0,132r-23,0v-3,-8,-2,-22,-8,-27v-20,45,-114,43,-114,-27v0,-55,55,-62,114,-62v2,-33,-6,-54,-38,-54v-22,0,-36,7,-52,14xm50,-54v0,22,12,32,31,32v38,0,53,-29,50,-72v-40,1,-81,0,-81,40xm147,-276v-7,25,-31,42,-48,58r-21,0v7,-23,23,-37,31,-58r38,0","w":191,"k":{"'":7}},"\u00e2":{"d":"115,-276v10,20,28,38,42,53r0,5v-34,4,-41,-20,-59,-33v-17,13,-24,37,-58,33v8,-23,33,-36,42,-58r33,0xm30,-180v45,-28,132,-27,132,48r0,132r-23,0v-3,-8,-2,-22,-8,-27v-20,45,-114,43,-114,-27v0,-55,55,-62,114,-62v2,-33,-6,-54,-38,-54v-22,0,-36,7,-52,14xm50,-54v0,22,12,32,31,32v38,0,53,-29,50,-72v-40,1,-81,0,-81,40","w":191,"k":{"'":7}},"\u00e3":{"d":"71,-265v25,0,62,41,71,0r18,0v-3,25,-12,47,-37,47v-25,0,-62,-41,-71,0r-18,0v2,-26,12,-47,37,-47xm30,-180v45,-28,132,-27,132,48r0,132r-23,0v-3,-8,-2,-22,-8,-27v-20,45,-114,43,-114,-27v0,-55,55,-62,114,-62v2,-33,-6,-54,-38,-54v-22,0,-36,7,-52,14xm50,-54v0,22,12,32,31,32v38,0,53,-29,50,-72v-40,1,-81,0,-81,40","w":191,"k":{"'":7}},"\u00e4":{"d":"30,-180v45,-28,132,-27,132,48r0,132r-23,0v-3,-8,-2,-22,-8,-27v-20,45,-114,43,-114,-27v0,-55,55,-62,114,-62v2,-33,-6,-54,-38,-54v-22,0,-36,7,-52,14xm50,-54v0,22,12,32,31,32v38,0,53,-29,50,-72v-40,1,-81,0,-81,40xm65,-227v-10,0,-17,-7,-17,-18v0,-11,6,-18,17,-18v11,0,17,7,17,18v0,11,-7,18,-17,18xm131,-227v-10,-1,-16,-7,-17,-18v-2,-19,26,-24,32,-8v5,13,-3,27,-15,26","w":191,"k":{"'":7}},"\u00e5":{"d":"97,-294v24,0,41,13,41,38v0,25,-17,38,-41,38v-24,0,-39,-14,-39,-38v0,-24,15,-38,39,-38xm97,-236v12,0,20,-8,20,-20v0,-12,-8,-20,-20,-20v-12,0,-20,8,-19,20v1,11,5,20,19,20xm30,-180v45,-28,132,-27,132,48r0,132r-23,0v-3,-8,-2,-22,-8,-27v-20,45,-114,43,-114,-27v0,-55,55,-62,114,-62v2,-33,-6,-54,-38,-54v-22,0,-36,7,-52,14xm50,-54v0,22,12,32,31,32v38,0,53,-29,50,-72v-40,1,-81,0,-81,40","w":191,"k":{"'":7}},"\u00e6":{"d":"76,4v-57,4,-78,-71,-39,-102v18,-15,58,-18,94,-18v2,-33,-6,-54,-38,-54v-22,0,-36,7,-52,14r-11,-24v33,-22,109,-27,123,15v10,-19,30,-32,56,-32v55,0,77,45,73,107r-118,0v-7,67,61,79,109,52r0,29v-41,23,-112,14,-128,-28v-15,22,-32,38,-69,41xm131,-94v-40,1,-81,0,-81,40v0,22,12,32,31,32v38,0,53,-29,50,-72xm247,-116v8,-46,-42,-71,-69,-40v-7,9,-12,23,-13,40r82,0","w":299,"k":{"z":4,"x":7}},"\u00e7":{"d":"151,-7v-63,31,-131,-7,-131,-88v0,-82,63,-123,135,-91r-10,27v-47,-23,-100,-1,-92,63v-7,67,49,85,98,61r0,28xm63,66v30,10,60,-20,23,-32r-12,-3r15,-31r22,0r-10,20v15,5,28,10,28,30v0,31,-31,40,-66,35r0,-19","w":166,"k":{"\u201d":-11,"\u2019":-11,"'":-11,"\"":-11}},"\u00e8":{"d":"166,-9v-67,32,-152,0,-146,-86v4,-58,23,-102,80,-102v57,0,78,45,75,107r-122,0v-7,69,63,78,113,52r0,29xm140,-116v7,-47,-45,-70,-73,-40v-8,9,-12,23,-13,40r86,0xm89,-276v7,21,24,36,30,58r-21,0v-16,-17,-40,-33,-48,-58r39,0","w":192,"k":{"'":7,"\"":18}},"\u00e9":{"d":"166,-9v-67,32,-152,0,-146,-86v4,-58,23,-102,80,-102v57,0,78,45,75,107r-122,0v-7,69,63,78,113,52r0,29xm140,-116v7,-47,-45,-70,-73,-40v-8,9,-12,23,-13,40r86,0xm152,-276v-7,25,-31,42,-48,58r-21,0v7,-23,23,-37,31,-58r38,0","w":192,"k":{"'":7,"\"":18}},"\u00ea":{"d":"39,-223v15,-15,31,-33,42,-53r34,0v11,20,27,36,41,53r0,5v-33,4,-41,-19,-58,-33v-18,13,-24,38,-59,33r0,-5xm166,-9v-67,32,-152,0,-146,-86v4,-58,23,-102,80,-102v57,0,78,45,75,107r-122,0v-7,69,63,78,113,52r0,29xm140,-116v7,-47,-45,-70,-73,-40v-8,9,-12,23,-13,40r86,0","w":192,"k":{"'":7,"\"":18}},"\u00eb":{"d":"166,-9v-67,32,-152,0,-146,-86v4,-58,23,-102,80,-102v57,0,78,45,75,107r-122,0v-7,69,63,78,113,52r0,29xm140,-116v7,-47,-45,-70,-73,-40v-8,9,-12,23,-13,40r86,0xm64,-227v-10,0,-17,-7,-17,-18v0,-11,6,-18,17,-18v11,0,17,7,17,18v0,11,-7,18,-17,18xm130,-227v-10,-1,-16,-7,-17,-18v-2,-19,26,-24,32,-8v5,13,-3,27,-15,26","w":192,"k":{"'":7,"\"":18}},"\u00ec":{"d":"63,0r-32,0r0,-193r32,0r0,193xm33,-276v7,21,24,36,30,58r-21,0v-16,-17,-40,-33,-48,-58r39,0","w":93},"\u00ed":{"d":"63,0r-32,0r0,-193r32,0r0,193xm101,-276v-7,25,-31,42,-48,58r-21,0v7,-23,23,-37,31,-58r38,0","w":93},"\u00ee":{"d":"-12,-223v15,-15,31,-33,42,-53r33,0v11,20,29,38,42,53r0,5v-33,4,-41,-19,-58,-33v-18,13,-25,37,-59,33r0,-5xm63,0r-32,0r0,-193r32,0r0,193","w":93},"\u00ef":{"d":"63,0r-32,0r0,-193r32,0r0,193xm14,-227v-10,0,-17,-7,-17,-18v0,-11,6,-18,17,-18v11,0,17,7,17,18v0,11,-7,18,-17,18xm80,-227v-10,-1,-16,-7,-17,-18v-2,-19,26,-24,32,-8v5,13,-3,27,-15,26","w":93},"\u00f0":{"d":"135,-234v64,45,87,240,-32,238v-53,-1,-78,-33,-83,-88v-7,-79,85,-110,133,-66v-8,-29,-21,-51,-42,-69r-45,27r-13,-20r38,-23r-30,-20r12,-21v16,8,29,16,43,26r40,-24r13,19xm104,-23v39,-1,51,-27,51,-69v0,-32,-17,-52,-51,-52v-37,0,-51,24,-51,61v1,36,14,60,51,60","w":207},"\u00f1":{"d":"81,-265v27,0,61,41,71,0r19,0v-3,25,-12,47,-38,47v-25,0,-62,-41,-71,0r-18,0v3,-25,12,-47,37,-47xm118,-197v91,-6,60,115,65,197r-32,0r0,-124v0,-28,-10,-47,-38,-46v-73,0,-44,102,-50,170r-32,0r0,-193r26,0v3,8,0,21,6,26v11,-18,28,-29,55,-30","w":211,"k":{"\u201d":7,"'":7,"\"":18}},"\u00f2":{"d":"104,-197v57,0,84,40,84,100v0,61,-26,101,-85,101v-56,0,-83,-41,-83,-101v0,-60,26,-100,84,-100xm104,-170v-40,0,-51,29,-51,73v0,44,11,74,51,74v40,0,51,-30,51,-74v0,-44,-11,-73,-51,-73xm101,-276v7,21,24,36,30,58r-21,0v-16,-17,-40,-33,-48,-58r39,0","w":207,"k":{"z":4,"x":7,"f":7,"'":25,"\"":25}},"\u00f3":{"d":"104,-197v57,0,84,40,84,100v0,61,-26,101,-85,101v-56,0,-83,-41,-83,-101v0,-60,26,-100,84,-100xm104,-170v-40,0,-51,29,-51,73v0,44,11,74,51,74v40,0,51,-30,51,-74v0,-44,-11,-73,-51,-73xm152,-276v-7,25,-31,42,-48,58r-21,0v7,-23,23,-37,31,-58r38,0","w":207,"k":{"z":4,"x":7,"f":7,"'":25,"\"":25}},"\u00f4":{"d":"44,-223v15,-15,31,-33,42,-53r34,0v11,20,27,36,41,53r0,5v-33,4,-41,-19,-58,-33v-18,13,-24,38,-59,33r0,-5xm104,-197v57,0,84,40,84,100v0,61,-26,101,-85,101v-56,0,-83,-41,-83,-101v0,-60,26,-100,84,-100xm104,-170v-40,0,-51,29,-51,73v0,44,11,74,51,74v40,0,51,-30,51,-74v0,-44,-11,-73,-51,-73","w":207,"k":{"z":4,"x":7,"f":7,"'":25,"\"":25}},"\u00f5":{"d":"77,-265v26,0,62,41,71,0r18,0v-2,26,-12,45,-37,47v-25,-3,-62,-41,-71,0r-18,0v3,-25,12,-47,37,-47xm104,-197v57,0,84,40,84,100v0,61,-26,101,-85,101v-56,0,-83,-41,-83,-101v0,-60,26,-100,84,-100xm104,-170v-40,0,-51,29,-51,73v0,44,11,74,51,74v40,0,51,-30,51,-74v0,-44,-11,-73,-51,-73","w":207,"k":{"z":4,"x":7,"f":7,"'":25,"\"":25}},"\u00f6":{"d":"104,-197v57,0,84,40,84,100v0,61,-26,101,-85,101v-56,0,-83,-41,-83,-101v0,-60,26,-100,84,-100xm104,-170v-40,0,-51,29,-51,73v0,44,11,74,51,74v40,0,51,-30,51,-74v0,-44,-11,-73,-51,-73xm70,-227v-10,0,-17,-7,-17,-18v0,-11,6,-18,17,-18v11,0,17,7,17,18v0,11,-7,18,-17,18xm136,-227v-10,-1,-16,-7,-17,-18v-2,-19,26,-24,32,-8v5,13,-3,27,-15,26","w":207,"k":{"z":4,"x":7,"f":7,"'":25,"\"":25}},"\u00f7":{"d":"18,-114r0,-26r162,0r0,26r-162,0xm99,-44v-14,0,-20,-9,-20,-22v0,-14,7,-22,20,-22v12,0,20,7,20,22v0,14,-6,22,-20,22xm99,-166v-13,0,-20,-8,-20,-22v0,-13,6,-22,20,-22v13,0,20,7,20,22v0,15,-8,22,-20,22"},"\u00f8":{"d":"165,-170v43,53,26,174,-61,174v-15,0,-28,-4,-39,-10r-12,19r-23,-13r14,-23v-15,-17,-24,-41,-24,-74v0,-75,58,-120,124,-90r12,-18r23,12xm130,-164v-64,-30,-94,48,-70,114xm78,-29v45,20,77,-13,77,-68v0,-19,-2,-33,-7,-45","w":207,"k":{"z":4,"x":7}},"\u00f9":{"d":"99,-23v73,0,44,-102,50,-170r32,0r0,193r-25,0v-3,-8,-1,-21,-7,-26v-11,18,-28,29,-55,30v-91,5,-60,-115,-65,-197r32,0r0,124v0,28,10,47,38,46xm92,-276v7,21,24,36,30,58r-21,0v-16,-17,-40,-33,-48,-58r39,0","w":211,"k":{"'":12,"\"":12}},"\u00fa":{"d":"99,-23v73,0,44,-102,50,-170r32,0r0,193r-25,0v-3,-8,-1,-21,-7,-26v-11,18,-28,29,-55,30v-91,5,-60,-115,-65,-197r32,0r0,124v0,28,10,47,38,46xm155,-276v-7,25,-31,42,-48,58r-21,0v7,-23,23,-37,31,-58r38,0","w":211,"k":{"'":12,"\"":12}},"\u00fb":{"d":"47,-218v7,-24,32,-34,41,-58r34,0v11,20,27,36,41,53r0,5v-34,4,-40,-20,-58,-33v-18,13,-24,37,-58,33xm99,-23v73,0,44,-102,50,-170r32,0r0,193r-25,0v-3,-8,-1,-21,-7,-26v-11,18,-28,29,-55,30v-91,5,-60,-115,-65,-197r32,0r0,124v0,28,10,47,38,46","w":211,"k":{"'":12,"\"":12}},"\u00fc":{"d":"99,-23v73,0,44,-102,50,-170r32,0r0,193r-25,0v-3,-8,-1,-21,-7,-26v-11,18,-28,29,-55,30v-91,5,-60,-115,-65,-197r32,0r0,124v0,28,10,47,38,46xm71,-227v-10,0,-17,-7,-17,-18v0,-11,6,-18,17,-18v11,0,17,7,17,18v0,11,-7,18,-17,18xm137,-227v-10,-1,-16,-7,-17,-18v-2,-19,26,-24,32,-8v5,13,-3,27,-15,26","w":211,"k":{"'":12,"\"":12}},"\u00fd":{"d":"98,25v-10,41,-42,73,-93,58r0,-25v28,8,52,-5,60,-28r10,-28r-73,-195r33,0r55,166v14,-60,34,-110,51,-166r33,0xm140,-276v-7,25,-31,42,-48,58r-21,0v7,-23,23,-37,31,-58r38,0","w":175,"k":{"\u2026":22,"\u201d":-11,"\u2019":-11,"\u00f8":2,"\u00f6":2,"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":2,"\u00e6":2,"t":-1,"q":2,"o":2,"g":2,"f":-4,"e":2,"d":2,"c":2,"?":13,".":12,",":12,"'":-11,"\"":-11}},"\u00fe":{"d":"118,4v-26,0,-43,-12,-55,-28r-3,0v5,33,2,73,3,110r-32,0r0,-360r32,0v1,34,-6,77,0,107v10,-17,28,-30,55,-30v53,0,73,43,73,100v0,58,-20,101,-73,101xm158,-97v0,-42,-8,-72,-46,-73v-42,-1,-49,31,-49,73v0,43,8,74,49,74v37,0,46,-33,46,-74","w":210},"\u00ff":{"d":"98,25v-10,41,-42,73,-93,58r0,-25v28,8,52,-5,60,-28r10,-28r-73,-195r33,0r55,166v14,-60,34,-110,51,-166r33,0xm57,-227v-10,0,-17,-7,-17,-18v0,-11,6,-18,17,-18v11,0,17,7,17,18v0,11,-7,18,-17,18xm123,-227v-10,-1,-16,-7,-17,-18v-2,-19,26,-24,32,-8v5,13,-3,27,-15,26","w":175,"k":{"\u201d":-11,"\u2019":-11,"f":-4,".":12,",":12,"'":-11,"\"":-11}},"\u2013":{"d":"14,-82r0,-29r152,0r0,29r-152,0","w":180,"k":{"T":18}},"\u2014":{"d":"14,-82r0,-29r332,0r0,29r-332,0","w":360,"k":{"T":18}},"\u2018":{"d":"59,-257r-18,88v-12,-2,-32,4,-37,-4v8,-29,20,-59,31,-84r24,0","w":62,"k":{"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":11,"\u00dd":-14,"\u00cf":-7,"\u00ce":-7,"\u00cd":-7,"\u00cc":-7,"\u00c6":29,"\u00c5":14,"\u00c4":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"w":-4,"v":-7,"t":-7,"q":11,"o":11,"g":7,"e":11,"d":11,"c":11,"Z":-7,"Y":-14,"X":-7,"W":-18,"V":-14,"T":-14,"I":-7,"A":14}},"\u2019":{"d":"4,-169r18,-88v12,2,32,-5,37,4r-31,84r-24,0","w":62},"\u201c":{"d":"127,-257r-18,88v-12,-2,-32,5,-37,-4v8,-29,20,-59,31,-84r24,0xm59,-257r-18,88v-12,-2,-32,4,-37,-4v8,-29,20,-59,31,-84r24,0","w":130,"k":{"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":11,"\u00dd":-14,"\u00cf":-7,"\u00ce":-7,"\u00cd":-7,"\u00cc":-7,"\u00c6":29,"\u00c5":14,"\u00c4":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"w":-4,"v":-7,"t":-7,"q":11,"o":11,"g":7,"e":11,"d":11,"c":11,"Z":-7,"Y":-14,"X":-7,"W":-18,"V":-14,"T":-14,"I":-7,"A":14}},"\u201d":{"d":"4,-169r18,-88v12,2,32,-5,37,4r-31,84r-24,0xm72,-169r17,-88v12,2,32,-4,38,4v-9,29,-19,60,-31,84r-24,0","w":130},"\u2026":{"d":"48,5v-16,1,-22,-10,-22,-25v0,-14,7,-25,22,-24v15,0,22,8,22,24v0,16,-7,25,-22,25xm145,5v-16,0,-23,-10,-23,-25v0,-15,8,-24,23,-24v15,0,22,10,22,24v0,15,-7,25,-22,25xm241,5v-14,0,-23,-9,-22,-25v1,-14,7,-25,22,-24v15,0,22,8,22,24v0,16,-7,25,-22,25","w":289},"\u2032":{"d":"58,-257r-7,93r-20,0r-8,-93r35,0","w":81},"\u2033":{"d":"58,-257r-7,93r-20,0r-8,-93r35,0xm121,-257r-7,93r-20,0r-7,-93r34,0","w":144},"\u2122":{"d":"63,-130r-22,0r0,-108r-34,0r0,-19r91,0r0,19r-35,0r0,108xm165,-130r-34,-97r0,97r-21,0r0,-127r33,0r31,97r34,-97r31,0r0,127r-22,0r-1,-97r-34,97r-17,0","w":269}}});
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Digitized data copyright © 2006, Google Corporation.
 * 
 * Trademark:
 * Droid is a trademark of Google and may be registered in certain jurisdictions.
 * 
 * Description:
 * Droid Sans is a humanist sans serif typeface designed for user interfaces and
 * electronic communication.
 * 
 * Manufacturer:
 * Ascender Corporation
 * 
 * Vendor URL:
 * http://www.ascendercorp.com/
 * 
 * License information:
 * http://ascendercorp.com/eula10.html
 */
Cufon.registerFont({"w":198,"face":{"font-family":"Droid Sans","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 6 3 8 4 2 2 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-35 -335 346 86.332","underline-thickness":"17.9297","underline-position":"-18.1055","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":93},"!":{"d":"73,-85r-43,0r-9,-172r61,0xm52,5v-19,0,-31,-10,-31,-30v0,-21,12,-30,31,-30v18,0,30,9,30,30v0,20,-12,30,-30,30","w":103},"\"":{"d":"72,-257r-7,93r-34,0r-8,-93r49,0xm147,-257r-8,93r-34,0r-7,-93r49,0","w":169,"k":{"\u00ff":-7,"\u00fd":-7,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":11,"\u00dd":-14,"\u00cf":-7,"\u00ce":-7,"\u00cd":-7,"\u00cc":-7,"\u00c6":29,"\u00c5":14,"\u00c4":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"y":-7,"w":-4,"v":-7,"t":-7,"q":11,"o":11,"g":7,"e":11,"d":11,"c":11,"Z":-7,"Y":-14,"X":-7,"W":-18,"V":-14,"T":-14,"I":-7,"A":14}},"#":{"d":"176,-148r-9,40r46,0r0,37r-53,0r-13,71r-39,0r14,-71r-34,0r-13,71r-38,0r13,-71r-42,0r0,-37r49,0r8,-40r-44,0r0,-37r50,0r14,-72r38,0r-13,72r35,0r13,-72r38,0r-14,72r43,0r0,37r-49,0xm95,-108r34,0r8,-40r-34,0","w":232},"$":{"d":"17,-184v0,-42,33,-56,72,-62r0,-28r24,0r0,27v24,2,45,5,65,15r-18,42v-14,-7,-30,-12,-47,-13r0,51v33,15,74,25,74,72v0,43,-32,61,-74,65r0,36r-24,0r0,-35v-28,-2,-52,-6,-71,-16r0,-46v20,9,43,19,71,20r0,-56v-35,-14,-72,-26,-72,-72xm113,-58v23,1,27,-31,10,-39v-3,-1,-6,-3,-10,-5r0,44xm89,-203v-26,1,-23,38,0,41r0,-41"},"%":{"d":"72,-224v-25,3,-24,85,0,88v27,0,20,-92,0,-88xm72,-261v45,0,61,34,61,81v0,48,-16,81,-61,81v-45,0,-61,-34,-61,-81v0,-47,15,-81,61,-81xm250,-257r-142,257r-42,0r142,-257r42,0xm245,-121v-25,3,-24,85,0,88v27,0,20,-92,0,-88xm245,-158v45,1,61,34,61,80v0,46,-14,81,-61,81v-46,0,-61,-35,-61,-81v0,-46,13,-81,61,-80","w":317},"&":{"d":"249,-138v-10,32,-21,62,-39,87r49,51r-66,0r-17,-18v-49,39,-164,25,-162,-51v1,-39,21,-58,46,-73v-13,-15,-24,-34,-24,-60v0,-40,31,-59,73,-59v39,0,69,17,69,56v0,37,-25,56,-50,70r46,47v8,-15,15,-32,19,-50r56,0xm90,-110v-28,16,-24,69,18,69v15,0,26,-5,36,-11xm101,-164v25,-5,42,-51,7,-54v-31,-1,-24,41,-7,54","w":259},"'":{"d":"72,-257r-7,93r-34,0r-8,-93r49,0","w":95,"k":{"\u00ff":-7,"\u00fd":-7,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":11,"\u00dd":-14,"\u00cf":-7,"\u00ce":-7,"\u00cd":-7,"\u00cc":-7,"\u00c6":29,"\u00c5":14,"\u00c4":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"y":-7,"w":-4,"v":-7,"t":-7,"q":11,"o":11,"g":7,"e":11,"d":11,"c":11,"Z":-7,"Y":-14,"X":-7,"W":-18,"V":-14,"T":-14,"I":-7,"A":14}},"(":{"d":"67,57v-69,-68,-68,-245,0,-314r44,0v-64,74,-65,242,0,314r-44,0","w":121,"k":{"J":-22}},")":{"d":"55,-257v67,69,69,246,0,314r-44,0v64,-72,65,-240,0,-314r44,0","w":121},"*":{"d":"121,-274r-7,65r65,-18r6,44r-60,4r40,53r-40,21r-28,-55r-24,55r-41,-21r38,-53r-59,-4r7,-44r64,18r-7,-65r46,0","w":196},"+":{"d":"80,-108r-65,0r0,-38r65,0r0,-65r38,0r0,65r65,0r0,38r-65,0r0,64r-38,0r0,-64"},",":{"d":"11,46v7,-28,12,-59,18,-88v17,2,42,-5,52,4v-8,29,-19,60,-31,84r-39,0","w":104,"k":{"\u00dd":18,"\u00dc":7,"\u00db":7,"\u00da":7,"\u00d9":7,"\u00d8":11,"\u00d6":11,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00c7":11,"Y":18,"W":14,"V":18,"U":7,"T":18,"Q":11,"O":11,"G":11,"C":11}},"-":{"d":"11,-75r0,-43r94,0r0,43r-94,0","w":115,"k":{"T":18}},".":{"d":"52,5v-19,0,-31,-10,-31,-30v0,-21,12,-30,31,-30v18,0,30,9,30,30v0,20,-12,30,-30,30","w":102,"k":{"\u00dd":18,"\u00dc":7,"\u00db":7,"\u00da":7,"\u00d9":7,"\u00d8":11,"\u00d6":11,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00c7":11,"Y":18,"W":14,"V":18,"U":7,"T":18,"Q":11,"O":11,"G":11,"C":11}},"\/":{"d":"147,-257r-96,257r-49,0r96,-257r49,0","w":148},"0":{"d":"99,-261v70,0,88,60,88,133v0,73,-17,132,-88,132v-69,0,-88,-59,-88,-132v0,-74,16,-133,88,-133xm99,-217v-35,5,-34,48,-34,89v0,44,1,83,34,88v33,-5,34,-43,34,-88v0,-44,-1,-84,-34,-89"},"1":{"d":"144,0r-55,0r2,-200v-15,16,-32,28,-48,42r-27,-33r83,-66r45,0r0,257"},"2":{"d":"14,-224v37,-51,172,-54,166,36v-5,71,-65,96,-98,142r105,0r0,46r-173,0r0,-38r82,-88v15,-17,30,-33,30,-62v0,-46,-66,-23,-83,-1"},"3":{"d":"10,-235v42,-36,167,-42,167,35v1,41,-28,54,-56,66v37,5,62,21,63,59v4,83,-109,92,-174,65r0,-47v31,19,121,35,120,-21v-2,-35,-42,-35,-80,-35r0,-38v38,0,73,-1,73,-37v0,-43,-67,-30,-85,-11"},"4":{"d":"191,-53r-31,0r0,53r-53,0r0,-53r-106,0r0,-38r109,-166r50,0r0,162r31,0r0,42xm107,-95r1,-98v-17,36,-39,66,-59,98r58,0"},"5":{"d":"73,-160v57,-15,110,13,110,74v0,88,-97,106,-168,76r0,-47v31,18,113,33,113,-24v0,-42,-51,-44,-86,-33r-22,-12r10,-131r136,0r0,46r-89,0"},"6":{"d":"104,4v-64,0,-89,-46,-91,-113v-2,-101,50,-166,157,-148r0,43v-63,-15,-119,15,-108,77v10,-18,26,-30,54,-30v49,1,72,32,72,81v0,56,-30,90,-84,90xm67,-90v3,25,9,50,36,50v23,0,32,-19,32,-45v0,-24,-8,-40,-32,-40v-22,1,-34,15,-36,35"},"7":{"d":"36,0r92,-211r-118,0r0,-46r177,0r0,34r-94,223r-57,0"},"8":{"d":"21,-199v0,-43,35,-61,78,-61v45,0,79,17,79,62v0,35,-22,50,-46,62v26,15,54,31,54,69v0,48,-37,71,-87,71v-50,0,-86,-19,-86,-69v0,-38,22,-57,49,-69v-21,-15,-41,-30,-41,-65xm97,-112v-17,9,-34,19,-34,44v0,22,15,31,36,32v42,4,45,-51,14,-65v-7,-3,-8,-8,-16,-11xm99,-158v28,-6,42,-61,0,-63v-32,-1,-34,47,-10,56v3,2,6,5,10,7"},"9":{"d":"95,-260v64,0,88,47,90,113v3,103,-49,165,-156,148r0,-44v60,17,119,-16,108,-76v-10,17,-27,30,-54,30v-48,0,-72,-32,-72,-82v0,-55,29,-89,84,-89xm131,-167v0,-25,-9,-48,-35,-49v-25,0,-32,19,-32,45v1,23,9,40,31,40v22,0,36,-14,36,-36"},":":{"d":"52,5v-19,0,-31,-10,-31,-30v0,-21,12,-30,31,-30v18,0,30,9,30,30v0,20,-12,30,-30,30xm52,-140v-19,0,-31,-10,-31,-30v0,-21,10,-31,31,-30v20,0,30,9,30,30v0,20,-12,30,-30,30","w":102},";":{"d":"11,46v7,-28,12,-59,18,-88v17,2,42,-5,52,4v-8,29,-19,60,-31,84r-39,0xm52,-140v-19,0,-31,-10,-31,-30v0,-21,10,-31,31,-30v20,0,30,9,30,30v0,20,-12,30,-30,30","w":104},"<":{"d":"183,-36r-168,-77r0,-25r168,-87r0,42r-113,56r113,49r0,42"},"=":{"d":"15,-142r0,-38r168,0r0,38r-168,0xm15,-73r0,-39r168,0r0,39r-168,0"},">":{"d":"15,-78r113,-49r-113,-56r0,-42r168,87r0,25r-168,77r0,-42"},"?":{"d":"4,-239v51,-38,172,-28,149,62v-11,41,-63,39,-60,92r-47,0v-8,-64,52,-61,59,-109v-4,-39,-61,-18,-83,-6xm72,5v-19,0,-31,-10,-31,-30v0,-21,13,-30,31,-30v18,0,30,9,30,30v0,20,-12,30,-30,30","w":165},"@":{"d":"167,-260v80,0,127,47,127,128v0,48,-18,91,-65,91v-18,0,-32,-9,-37,-23v-15,8,-23,24,-47,23v-42,-1,-60,-28,-61,-70v-2,-73,69,-96,138,-73r-4,86v0,13,1,24,13,25v22,-5,25,-34,25,-60v0,-58,-32,-94,-89,-94v-73,0,-105,47,-110,120v-7,98,95,119,175,84r0,34v-21,10,-48,17,-79,16v-87,-1,-135,-46,-135,-133v0,-95,53,-154,149,-154xm181,-159v-36,-10,-58,15,-56,49v0,21,6,37,24,37v36,0,29,-50,32,-86","w":311},"A":{"d":"179,0r-18,-61r-88,0r-18,61r-55,0r83,-258r67,0r84,258r-55,0xm149,-107r-32,-115r-31,115r63,0","w":233,"k":{"\u201d":14,"\u2019":14,"\u00dd":18,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"Y":18,"W":7,"V":11,"U":4,"T":22,"Q":4,"O":4,"G":4,"C":4,"'":14,"\"":14}},"B":{"d":"212,-75v1,86,-94,76,-180,75r0,-257v78,2,173,-15,173,65v0,32,-16,49,-39,57v29,5,46,25,46,60xm151,-185v0,-32,-33,-27,-64,-27r0,57v32,0,64,3,64,-30xm157,-80v0,-35,-35,-33,-70,-32r0,67v37,1,70,2,70,-35","w":231,"k":{"\u00dd":4,"Y":4,"X":4,"V":4,"T":4,"I":4}},"C":{"d":"199,-198v-17,-8,-36,-17,-57,-17v-48,0,-64,38,-65,87v0,50,15,86,65,86v25,0,44,-6,65,-13r0,45v-21,8,-43,14,-71,14v-79,-2,-111,-51,-115,-132v-5,-111,101,-162,196,-115","w":229,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"}":-7,"]":-7,"Q":7,"O":7,"G":7,"C":7,")":-7,"'":-7,"\"":-7}},"D":{"d":"108,-257v81,1,121,46,123,126v2,112,-79,141,-199,131r0,-257r76,0xm87,-45v63,5,89,-24,89,-85v0,-59,-26,-88,-89,-82r0,167","w":252,"k":{"\u00dd":7,"\u00cf":4,"\u00ce":4,"\u00cd":4,"\u00cc":4,"\u00c6":11,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Z":4,"Y":7,"X":4,"W":4,"V":4,"T":11,"I":4,"A":4,".":11,",":11}},"E":{"d":"180,0r-148,0r0,-257r148,0r0,45r-93,0r0,56r87,0r0,45r-87,0r0,66r93,0r0,45","w":201},"F":{"d":"86,0r-54,0r0,-257r148,0r0,45r-94,0r0,66r87,0r0,44r-87,0r0,102","w":197,"k":{"\u201d":-11,"\u2019":-11,"\u00dd":-4,"\u00c6":11,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"}":-7,"]":-7,"Y":-4,"W":-4,"V":-4,"A":7,"?":-7,".":18,",":18,")":-7,"'":-11,"\"":-11}},"G":{"d":"77,-128v0,64,37,98,102,83r0,-54r-49,0r0,-45r102,0r0,133v-27,8,-57,15,-92,15v-82,0,-116,-50,-119,-133v-5,-115,111,-156,211,-116r-19,44v-58,-32,-136,-6,-136,73","w":260},"H":{"d":"229,0r-55,0r0,-111r-87,0r0,111r-55,0r0,-257r55,0r0,101r87,0r0,-101r55,0r0,257","w":261},"I":{"d":"128,0r-116,0r0,-31r31,-14r0,-167r-31,-14r0,-31r116,0r0,31r-31,14r0,167r31,14r0,31","w":140,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"Q":4,"O":4,"G":4,"C":4,"'":-7,"\"":-7}},"J":{"d":"-35,26v30,9,67,4,67,-34r0,-249r55,0r0,248v1,69,-54,95,-122,81r0,-46","w":119},"K":{"d":"228,0r-62,0r-59,-107r-20,15r0,92r-55,0r0,-257r55,0r0,124v24,-44,53,-83,80,-124r60,0r-82,116","w":228,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"Q":7,"O":7,"G":7,"C":7,"'":-7,"\"":-7}},"L":{"d":"32,0r0,-257r55,0r0,212r93,0r0,45r-148,0","w":192,"k":{"\u201d":18,"\u2019":18,"\u00dd":18,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"Y":18,"W":11,"V":14,"U":4,"T":22,"Q":4,"O":4,"G":4,"C":4,"'":18,"\"":18}},"M":{"d":"136,0r-58,-202r3,202r-49,0r0,-257r75,0r56,197r59,-197r74,0r0,257r-50,0r1,-201r-61,201r-50,0","w":328},"N":{"d":"249,0r-69,0r-102,-194r3,194r-49,0r0,-257r69,0r102,192r-2,-192r48,0r0,257","w":281},"O":{"d":"136,-261v82,0,115,52,115,132v0,81,-35,133,-115,133v-80,0,-115,-52,-115,-133v0,-80,34,-131,115,-132xm136,-216v-46,0,-59,40,-59,87v0,47,12,87,59,87v47,0,59,-39,59,-87v0,-48,-13,-87,-59,-87","w":272,"k":{"\u00dd":7,"\u00cf":4,"\u00ce":4,"\u00cd":4,"\u00cc":4,"\u00c6":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"I":4,"A":4,".":11,",":11}},"P":{"d":"144,-175v0,-33,-23,-39,-57,-37r0,76v34,1,57,-6,57,-39xm32,-257v84,-2,170,-5,167,80v-2,63,-43,89,-112,86r0,91r-55,0r0,-257","w":215,"k":{"\u00dd":4,"\u00c7":4,"\u00c6":25,"\u00c5":14,"\u00c4":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"Z":7,"Y":4,"X":4,"C":4,"A":14,".":36,",":36}},"Q":{"d":"136,-261v82,0,113,52,115,132v1,58,-18,99,-56,119r64,71r-70,0v-19,-17,-28,-50,-53,-57v-80,-2,-115,-52,-115,-133v0,-80,34,-131,115,-132xm136,-216v-46,0,-59,40,-59,87v0,47,12,87,59,87v47,0,59,-39,59,-87v0,-48,-13,-87,-59,-87","w":272,"k":{"\u00dd":7,"\u00cf":4,"\u00ce":4,"\u00cd":4,"\u00cc":4,"\u00c6":11,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"I":4,"A":4,".":11,",":11}},"R":{"d":"144,-179v0,-31,-24,-34,-57,-33r0,69v34,2,57,-4,57,-36xm199,-180v-2,36,-18,55,-42,68r70,112r-61,0r-55,-99r-24,0r0,99r-55,0r0,-257v83,-2,171,-7,167,77","w":226,"k":{"T":4}},"S":{"d":"155,-200v-25,-17,-95,-28,-80,23v28,39,98,38,98,106v0,78,-100,90,-156,59r0,-51v20,10,41,20,69,22v32,3,45,-34,22,-51v-33,-27,-88,-33,-88,-96v0,-79,95,-86,152,-55","w":188},"T":{"d":"126,0r-54,0r0,-212r-65,0r0,-45r183,0r0,45r-64,0r0,212","w":197,"k":{"\u201d":-14,"\u2019":-14,"\u2014":18,"\u2013":14,"\u00ff":11,"\u00fd":11,"\u00fc":14,"\u00fb":14,"\u00fa":14,"\u00f9":14,"\u00f8":22,"\u00f6":22,"\u00f5":22,"\u00f4":22,"\u00f3":22,"\u00f2":22,"\u00f1":14,"\u00eb":22,"\u00ea":22,"\u00e9":22,"\u00e8":22,"\u00e7":22,"\u00e6":22,"\u00e5":22,"\u00e4":22,"\u00e3":22,"\u00e2":22,"\u00e1":22,"\u00e0":22,"\u00d8":11,"\u00d6":11,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00c7":11,"\u00c6":25,"\u00c5":22,"\u00c4":22,"\u00c3":22,"\u00c2":22,"\u00c1":22,"\u00c0":22,"z":11,"y":11,"x":11,"w":11,"v":11,"u":14,"s":22,"r":14,"q":22,"p":14,"o":22,"n":14,"m":14,"g":18,"e":22,"d":22,"c":22,"a":22,"T":-4,"S":4,"Q":11,"O":11,"G":11,"C":11,"A":22,"?":-7,".":18,"-":18,",":18,"'":-14,"\"":-14}},"U":{"d":"129,-42v32,-1,45,-20,44,-54r0,-161r54,0r0,166v-1,62,-37,95,-99,95v-62,0,-96,-33,-97,-95r0,-166r54,0r0,162v0,32,12,53,44,53","w":257,"k":{"\u00c6":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"A":4,".":7,",":7}},"V":{"d":"165,-257r55,0r-81,257r-59,0r-80,-257r55,0r55,211v15,-74,36,-141,55,-211","w":219,"k":{"\u201d":-14,"\u2019":-14,"\u00fc":7,"\u00fb":7,"\u00fa":7,"\u00f9":7,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00f1":7,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":11,"\u00e5":11,"\u00e4":11,"\u00e3":11,"\u00e2":11,"\u00e1":11,"\u00e0":11,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"\u00c6":22,"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"u":7,"s":7,"r":7,"q":11,"p":7,"o":11,"n":7,"m":7,"g":11,"e":11,"d":11,"c":11,"a":11,"Q":7,"O":7,"G":7,"C":7,"A":11,"?":-7,".":18,",":18,"'":-14,"\"":-14}},"W":{"d":"95,-45v11,-75,31,-142,48,-212r48,0r47,212r42,-212r54,0r-62,257r-62,0r-43,-190v-11,67,-28,128,-43,190r-62,0r-62,-257r54,0","w":333,"k":{"\u201d":-18,"\u2019":-18,"\u00fc":4,"\u00fb":4,"\u00fa":4,"\u00f9":4,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00f1":4,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c6":14,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"z":4,"u":4,"s":7,"r":4,"q":7,"p":4,"o":7,"n":4,"m":4,"g":4,"e":7,"d":7,"c":7,"a":7,"Q":4,"O":4,"G":4,"C":4,"A":7,".":14,",":14,"'":-18,"\"":-18}},"X":{"d":"226,0r-63,0r-52,-97r-53,97r-58,0r78,-133r-73,-124r61,0r48,92r47,-92r59,0r-74,127","w":225,"k":{"\u201d":-7,"\u2019":-7,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"q":4,"o":4,"e":4,"d":4,"c":4,"Q":7,"O":7,"G":7,"C":7,"'":-7,"\"":-7}},"Y":{"d":"105,-151r47,-106r58,0r-78,157r0,100r-54,0r0,-98r-78,-159r59,0","w":210,"k":{"\u201d":-14,"\u2019":-14,"\u00ff":4,"\u00fd":4,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00f8":18,"\u00f6":18,"\u00f5":18,"\u00f4":18,"\u00f3":18,"\u00f2":18,"\u00f1":11,"\u00eb":18,"\u00ea":18,"\u00e9":18,"\u00e8":18,"\u00e7":18,"\u00e6":18,"\u00e5":18,"\u00e4":18,"\u00e3":18,"\u00e2":18,"\u00e1":18,"\u00e0":18,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"\u00c6":25,"\u00c5":18,"\u00c4":18,"\u00c3":18,"\u00c2":18,"\u00c1":18,"\u00c0":18,"z":11,"y":4,"x":7,"u":11,"s":14,"r":11,"q":18,"p":11,"o":18,"n":11,"m":11,"g":18,"e":18,"d":18,"c":18,"a":18,"S":4,"Q":7,"O":7,"G":7,"C":7,"A":18,"?":-7,".":18,",":18,"'":-14,"\"":-14}},"Z":{"d":"185,0r-176,0r0,-35r108,-177r-105,0r0,-45r170,0r0,35r-109,177r112,0r0,45","w":194,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"Q":4,"O":4,"G":4,"C":4,"'":-7,"\"":-7}},"[":{"d":"110,57r-85,0r0,-314r85,0r0,37r-39,0r0,240r39,0r0,37","w":119,"k":{"J":-22}},"\\":{"d":"51,-257r96,257r-49,0r-96,-257r49,0","w":148},"]":{"d":"9,20r39,0r0,-240r-39,0r0,-37r85,0r0,314r-85,0r0,-37","w":119},"^":{"d":"1,-91r77,-167r26,0r87,167r-42,0r-57,-113r-49,113r-42,0","w":191},"_":{"d":"149,57r-150,0r0,-25r150,0r0,25","w":148},"`":{"d":"118,-276v8,20,25,36,31,58v-53,7,-65,-29,-91,-54r0,-4r60,0","w":207},"a":{"d":"33,-183v49,-30,147,-26,147,52r0,131r-38,0v-5,-8,-5,-21,-12,-27v-22,47,-115,40,-115,-32v0,-57,52,-63,111,-63v10,-51,-49,-42,-75,-25xm92,-36v29,0,36,-23,34,-55v-30,0,-56,3,-56,33v0,16,9,21,22,22","w":206,"k":{"'":7}},"b":{"d":"80,-171v14,-13,24,-31,53,-29v52,3,68,46,68,101v0,57,-17,103,-70,103v-24,0,-40,-11,-49,-26v-10,2,-8,15,-13,22r-41,0r0,-274r54,0xm146,-99v0,-32,-4,-57,-31,-58v-30,0,-33,27,-33,58v-1,31,4,59,33,59v27,0,31,-27,31,-59","w":218,"k":{"'":7}},"c":{"d":"162,-9v-67,33,-154,-1,-144,-88v-10,-91,77,-125,150,-89r-15,41v-13,-5,-26,-12,-43,-12v-30,1,-37,25,-37,59v1,34,6,56,36,58v23,0,36,-7,53,-14r0,45","w":179,"k":{"\u201d":-11,"\u2019":-11,"'":-11,"\"":-11}},"d":{"d":"139,-25v-14,13,-25,31,-53,29v-52,-3,-68,-46,-68,-102v0,-56,16,-100,70,-102v28,-1,40,15,53,29v-4,-31,-4,-67,-4,-103r54,0r0,274r-41,0xm105,-157v-46,0,-46,118,0,118v32,0,36,-27,36,-59v-1,-31,-5,-58,-36,-59","w":218},"e":{"d":"142,-121v2,-33,-34,-54,-58,-31v-6,7,-10,17,-11,31r69,0xm181,-10v-70,33,-169,5,-163,-87v4,-63,28,-103,89,-103v65,0,90,44,85,115r-120,0v-4,59,74,56,109,33r0,42","w":209,"k":{"'":7}},"f":{"d":"135,-228v-24,-11,-52,-3,-45,31r40,0r0,41r-40,0r0,156r-53,0r0,-156r-30,0r0,-26r30,-15v-12,-73,51,-92,111,-70","w":139,"k":{"\u201d":-18,"\u2019":-18,"\u00ff":-4,"\u00fd":-4,"y":-4,"w":-4,"v":-4,"'":-18,"\"":-18}},"g":{"d":"18,-133v0,-56,50,-76,106,-63r67,0r0,29r-29,9v22,54,-19,104,-84,92v-17,13,-3,27,19,25v52,-5,92,7,92,55v0,55,-48,71,-106,72v-45,1,-77,-13,-79,-54v0,-30,20,-40,43,-47v-10,-5,-19,-14,-20,-28v0,-20,13,-25,25,-34v-20,-7,-34,-29,-34,-56xm106,4v-27,0,-56,-2,-56,24v0,37,91,27,91,-6v0,-18,-15,-17,-35,-18xm117,-132v0,-20,-5,-34,-23,-35v-16,0,-25,12,-25,35v0,20,6,33,25,33v18,0,24,-13,23,-33","k":{"\u201d":-7,"\u2019":-7,"g":-4,"'":-7,"\"":-7}},"h":{"d":"134,-200v91,-3,60,117,65,200r-54,0r0,-115v-1,-24,-5,-42,-27,-42v-59,0,-29,100,-36,157r-54,0r0,-274r54,0r-3,103r3,0v10,-18,27,-29,52,-29","w":225,"k":{"'":11}},"i":{"d":"55,-221v-18,0,-29,-8,-29,-26v0,-20,12,-27,29,-27v17,0,29,7,29,27v0,18,-11,26,-29,26xm82,0r-54,0r0,-197r54,0r0,197","w":109},"j":{"d":"82,21v2,53,-45,75,-96,61r0,-42v23,8,42,1,42,-27r0,-210r54,0r0,218xm55,-221v-18,0,-29,-8,-29,-26v0,-20,12,-27,29,-27v17,0,29,7,29,27v0,18,-11,26,-29,26","w":109},"k":{"d":"79,-107v21,-32,44,-61,68,-90r61,0r-71,86r75,111r-62,0r-47,-76r-21,15r0,61r-54,0r0,-274r54,0r0,122","w":212,"k":{"\u201d":-7,"\u2019":-7,"'":-7,"\"":-7}},"l":{"d":"82,0r-54,0r0,-274r54,0r0,274","w":109},"m":{"d":"232,-157v-57,0,-28,101,-35,157r-54,0r0,-115v0,-24,-4,-42,-26,-42v-58,0,-28,100,-35,157r-54,0r0,-197r41,0r7,26r3,0v14,-37,96,-39,110,0r5,0v10,-17,27,-29,54,-29v91,0,58,118,64,200r-54,0r0,-115v0,-24,-4,-42,-26,-42","w":339,"k":{"'":7}},"n":{"d":"135,-200v90,0,59,118,64,200r-54,0r0,-115v0,-25,-5,-42,-27,-42v-59,0,-29,100,-36,157r-54,0r0,-197r41,0r7,26r3,0v12,-17,27,-29,56,-29","w":225,"k":{"'":7}},"o":{"d":"108,-157v-29,0,-35,24,-35,58v0,34,6,58,35,59v29,0,36,-26,35,-59v0,-34,-6,-58,-35,-58xm108,-200v61,1,90,41,90,101v0,62,-29,103,-91,103v-60,0,-89,-42,-89,-103v0,-62,28,-101,90,-101","w":215,"k":{"z":4,"x":7}},"p":{"d":"201,-99v0,57,-17,103,-70,103v-23,0,-40,-11,-49,-26v-7,2,1,20,0,29r0,79r-54,0r0,-283r44,0r7,26r3,0v10,-16,24,-30,51,-29v52,2,68,46,68,101xm146,-99v0,-32,-4,-57,-31,-58v-30,0,-33,27,-33,58v-1,31,4,59,33,59v27,0,31,-27,31,-59","w":218},"q":{"d":"105,-157v-45,0,-45,120,1,119v30,-1,36,-27,35,-60v-1,-31,-5,-59,-36,-59xm139,-25v-14,13,-25,31,-53,29v-52,-3,-68,-46,-68,-102v0,-56,16,-100,70,-102v28,-1,40,14,53,29r4,-26r46,0r0,283r-54,0","w":218},"r":{"d":"79,-167v11,-23,33,-38,69,-32r0,51v-37,-8,-66,7,-66,48r0,100r-54,0r0,-197r41,0v4,9,3,24,10,30","w":156,"k":{"\u201d":-18,"\u2019":-18,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"g":4,"a":4,"'":-18,"\"":-18}},"s":{"d":"70,-146v19,39,89,27,89,88v0,67,-89,73,-141,50r0,-44v18,7,36,16,61,16v22,0,37,-18,21,-30v-29,-23,-83,-26,-83,-79v0,-67,95,-63,140,-39r-16,38v-16,-6,-30,-13,-50,-14v-13,-1,-21,4,-21,14","w":173,"k":{"\u201d":-11,"\u2019":-11,"'":-11,"\"":-11}},"t":{"d":"88,-62v-3,28,30,25,49,17r0,40v-46,21,-103,6,-103,-57r0,-94r-26,0r0,-23r30,-18r15,-41r35,0r0,41r47,0r0,41r-47,0r0,94","w":149,"k":{"\u201d":-14,"\u2019":-14,"t":-4,"'":-14,"\"":-14}},"u":{"d":"108,-39v58,0,29,-100,36,-158r54,0r0,197r-41,0v-4,-8,-3,-20,-10,-25v-11,17,-29,28,-56,29v-89,1,-59,-118,-64,-201r54,0r0,115v0,25,5,43,27,43","w":225},"v":{"d":"69,0r-69,-197r56,0r38,133v2,7,1,16,4,20v6,-58,28,-102,40,-153r56,0r-69,197r-56,0","w":194,"k":{"\u201d":-14,"\u2019":-14,"f":-4,"'":-14,"\"":-14}},"w":{"d":"84,-41v6,-18,6,-42,10,-61r22,-95r59,0r30,156v8,-55,20,-106,33,-156r52,0r-53,197r-59,0r-34,-159r-33,159r-58,0r-53,-197r53,0","w":290,"k":{"\u201d":-14,"\u2019":-14,"f":-4,"'":-14,"\"":-14}},"x":{"d":"68,-100r-63,-97r61,0r33,60r33,-60r61,0r-65,97r67,100r-60,0r-36,-64r-36,64r-61,0","w":197,"k":{"\u201d":-7,"\u2019":-7,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00e6":7,"o":7,"'":-7,"\"":-7}},"y":{"d":"116,25v-11,45,-52,70,-104,58r0,-42v34,10,59,-9,62,-39r-74,-199r59,0r38,149v9,-54,25,-100,38,-149r59,0","w":194,"k":{"\u201d":-11,"\u2019":-11,"f":-4,"'":-11,"\"":-11}},"z":{"d":"154,0r-144,0r0,-32r80,-124r-75,0r0,-41r136,0r0,35r-78,121r81,0r0,41","w":164,"k":{"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00e6":4,"o":4}},"{":{"d":"50,-47v0,-25,-18,-32,-45,-32r0,-42v24,-1,45,-5,45,-31v0,-46,-9,-97,39,-102v10,-1,23,-3,38,-3r0,40v-41,-5,-30,43,-30,77v0,24,-19,32,-41,41v23,4,41,13,41,39v0,34,-11,83,30,77r0,40v-44,0,-77,-6,-77,-49r0,-55","w":130,"k":{"J":-22}},"|":{"d":"80,-272r38,0r0,354r-38,0r0,-354"},"}":{"d":"127,-79v-62,-8,-39,61,-48,109v-10,23,-39,27,-74,27r0,-40v42,6,31,-42,31,-77v0,-28,22,-32,41,-41v-48,-4,-41,-45,-41,-92v0,-19,-12,-24,-31,-24r0,-40v44,1,77,5,77,49r0,56v0,25,20,30,45,31r0,42","w":130},"~":{"d":"15,-137v41,-54,127,34,168,-20r0,41v-34,39,-85,4,-126,-2v-19,1,-31,12,-42,21r0,-40"},"\u00a0":{"w":93},"\u00a1":{"d":"30,-107r42,0r9,172r-60,0xm51,-197v19,0,31,10,31,30v0,21,-11,30,-31,30v-20,0,-30,-10,-30,-30v0,-20,12,-30,30,-30","w":103},"\u00a2":{"d":"170,-43v-12,6,-26,11,-43,11r0,36r-32,0r0,-37v-49,-7,-70,-41,-70,-98v1,-57,20,-93,70,-99r0,-31r32,0r0,29v18,0,35,6,48,11r-16,39v-11,-4,-22,-9,-36,-9v-35,-1,-40,24,-43,59v-6,61,52,68,90,47r0,42"},"\u00a3":{"d":"46,-153v-18,-96,61,-131,138,-93r-16,40v-24,-11,-72,-23,-69,19r0,34r59,0r0,39r-59,0v3,35,-4,60,-27,68r120,0r0,46r-178,0r0,-44v29,-6,35,-33,32,-70r-31,0r0,-39r31,0"},"\u00a4":{"d":"134,-67v-17,11,-53,13,-70,0r-22,22r-25,-25r22,-22v-12,-21,-11,-52,0,-70r-23,-22r26,-26r23,22v19,-11,52,-12,69,1r22,-23r26,25r-23,23v13,18,12,52,0,70r22,22r-25,25xm99,-160v-21,0,-33,14,-33,33v0,20,13,33,33,33v20,0,34,-13,34,-33v0,-20,-13,-33,-34,-33"},"\u00a5":{"d":"99,-151r43,-106r55,0r-63,131r34,0r0,32r-43,0r0,24r43,0r0,31r-43,0r0,39r-51,0r0,-39r-43,0r0,-31r43,0r0,-24r-43,0r0,-32r33,0r-63,-131r56,0"},"\u00a6":{"d":"80,-272r38,0r0,143r-38,0r0,-143xm80,-62r38,0r0,144r-38,0r0,-144"},"\u00a7":{"d":"19,-47v21,14,99,36,94,-11v-25,-32,-93,-26,-92,-84v1,-21,11,-35,24,-43v-13,-9,-24,-21,-24,-41v1,-61,92,-59,135,-36r-14,33v-19,-12,-85,-30,-76,10v28,28,90,27,91,82v0,23,-8,36,-22,45v12,9,23,18,22,39v1,63,-94,67,-138,43r0,-37xm76,-170v-15,6,-23,32,-6,44v7,6,19,14,34,19v19,-11,15,-48,-7,-54v-5,-3,-13,-6,-21,-9","w":174},"\u00a8":{"d":"68,-224v-16,0,-23,-8,-24,-23v0,-16,9,-24,24,-24v15,0,25,8,25,24v-1,15,-9,23,-25,23xm139,-224v-15,0,-25,-9,-25,-23v0,-16,10,-24,25,-24v15,0,25,8,25,24v-1,15,-9,23,-25,23","w":207},"\u00a9":{"d":"81,-129v0,-72,69,-101,127,-68r-13,30v-35,-23,-77,-8,-73,39v-8,53,46,57,79,38r0,34v-58,27,-120,-3,-120,-73xm150,4v-80,0,-132,-51,-132,-132v0,-82,52,-133,132,-133v81,0,132,52,132,133v0,80,-52,132,-132,132xm150,-236v-64,0,-107,43,-107,108v0,65,44,107,107,107v63,0,107,-42,107,-107v0,-65,-43,-108,-107,-108","w":299},"\u00aa":{"d":"15,-246v32,-21,100,-23,100,34r0,78r-24,0r-5,-20v-15,31,-80,30,-78,-17v2,-37,36,-40,72,-41v1,-31,-38,-21,-53,-10xm56,-159v18,-1,25,-13,24,-32v-17,1,-36,1,-36,19v0,7,5,13,12,13","w":130},"\u00ab":{"d":"14,-96v13,-34,38,-55,55,-85r38,21r-38,61r38,62r-38,20xm103,-96v13,-34,38,-55,55,-85r38,21r-38,61r38,62r-38,20","w":210},"\u00ac":{"d":"183,-44r-39,0r0,-64r-129,0r0,-38r168,0r0,102"},"\u00ad":{"d":"11,-75r0,-43r94,0r0,43r-94,0","w":115},"\u00ae":{"d":"95,-209v54,-1,108,-6,108,50v0,23,-10,34,-25,41r42,70r-45,0r-31,-59r-8,0r0,59r-41,0r0,-161xm163,-158v0,-16,-9,-23,-27,-21r0,42v18,0,27,-3,27,-21xm150,4v-80,0,-132,-51,-132,-132v0,-82,52,-133,132,-133v81,0,132,52,132,133v0,80,-52,132,-132,132xm150,-236v-64,0,-107,43,-107,108v0,65,44,107,107,107v63,0,107,-42,107,-107v0,-65,-43,-108,-107,-108","w":299},"\u00af":{"d":"181,-274r-182,0r0,-35r182,0r0,35","w":180},"\u00b0":{"d":"77,-139v-36,0,-61,-25,-61,-61v0,-36,25,-61,61,-61v37,0,61,25,61,61v0,36,-24,61,-61,61xm77,-227v-17,0,-27,11,-27,27v0,17,10,27,27,27v17,0,27,-10,27,-27v0,-16,-10,-27,-27,-27","w":154},"\u00b1":{"d":"80,-118r-65,0r0,-39r65,0r0,-65r38,0r0,65r65,0r0,39r-65,0r0,64r-38,0r0,-64xm15,0r0,-38r168,0r0,38r-168,0"},"\u00b2":{"d":"8,-238v29,-35,129,-31,109,36v-9,29,-36,44,-55,64r61,0r0,35r-113,0r0,-30v22,-24,48,-43,66,-71v4,-34,-32,-23,-46,-7","w":136},"\u00b3":{"d":"11,-241v25,-26,105,-29,106,21v0,20,-13,30,-30,35r0,3v20,4,33,14,35,36v4,52,-76,55,-112,34r0,-34v16,13,70,30,73,-3v2,-22,-27,-18,-49,-18r0,-28v22,0,46,1,45,-20v-2,-25,-39,-14,-51,-1","w":136},"\u00b4":{"d":"58,-218v6,-23,23,-36,31,-58r60,0v-10,26,-37,40,-55,58r-36,0","w":207},"\u00b5":{"d":"148,-26v-6,31,-51,40,-68,14r2,98r-54,0r0,-283r54,0r0,115v0,25,5,43,27,43v58,0,29,-100,36,-158r54,0r0,197r-41,0v-4,-8,-3,-21,-10,-26","w":226},"\u00b6":{"d":"20,-183v0,-58,23,-90,79,-91r106,0r0,320r-28,0r0,-284r-29,0r0,284r-29,0r0,-144v-62,13,-99,-20,-99,-85","w":235},"\u00b7":{"d":"52,-97v-19,0,-31,-9,-31,-30v0,-21,12,-30,31,-30v18,0,30,9,30,30v0,20,-12,30,-30,30","w":102},"\u00b8":{"d":"45,11v16,4,26,14,28,33v4,43,-43,47,-80,39r0,-30v13,2,40,11,38,-7v-1,-13,-13,-15,-29,-19r14,-27r34,0","w":73},"\u00b9":{"d":"103,-103r-42,0r1,-115v-8,9,-17,18,-27,25r-19,-23r53,-41r34,0r0,154","w":136},"\u00ba":{"d":"67,-260v37,0,55,26,55,64v0,39,-18,64,-56,64v-37,0,-56,-26,-56,-64v0,-39,18,-64,57,-64xm66,-231v-17,0,-20,15,-20,35v0,20,3,35,20,35v17,0,20,-14,20,-35v0,-21,-3,-35,-20,-35","w":132},"\u00bb":{"d":"197,-96r-55,79r-38,-20r38,-62r-38,-61r38,-21r55,80r0,5xm108,-96r-55,79r-38,-20r38,-62r-38,-61r38,-21r55,80r0,5","w":210},"\u00bc":{"d":"296,-27r-22,0r0,27r-42,0r0,-27r-67,0r0,-27r67,-101r42,0r0,99r22,0r0,29xm232,-56r1,-61v-10,23,-24,41,-36,61r35,0xm241,-257r-143,257r-42,0r143,-257r42,0xm95,-103r-42,0r1,-115v-8,9,-17,18,-27,25r-19,-23r53,-41r34,0r0,154","w":317},"\u00bd":{"d":"241,-257r-143,257r-42,0r143,-257r42,0xm95,-103r-42,0r1,-115v-8,9,-17,18,-27,25r-19,-23r53,-41r34,0r0,154xm186,-135v29,-35,129,-31,109,36v-9,29,-36,44,-55,64r61,0r0,35r-113,0r0,-30v22,-24,48,-43,66,-71v4,-34,-32,-23,-46,-7","w":317},"\u00be":{"d":"301,-27r-22,0r0,27r-42,0r0,-27r-67,0r0,-27r67,-101r42,0r0,99r22,0r0,29xm237,-56r1,-61v-10,23,-23,42,-36,61r35,0xm253,-257r-142,257r-42,0r142,-257r42,0xm16,-241v25,-26,105,-29,106,21v0,20,-13,30,-30,35r0,3v20,4,33,14,35,36v4,52,-76,55,-112,34r0,-34v16,13,70,30,73,-3v2,-22,-27,-18,-49,-18r0,-28v22,0,46,1,45,-20v-2,-25,-39,-14,-51,-1","w":317},"\u00bf":{"d":"12,5v0,-62,65,-51,62,-112r47,0v8,64,-52,61,-59,109v4,39,61,18,83,6r18,39v-45,31,-151,35,-151,-42xm95,-197v19,0,31,10,31,30v0,21,-10,31,-31,30v-20,0,-30,-9,-30,-30v0,-20,12,-30,30,-30","w":165},"\u00c0":{"d":"179,0r-18,-61r-88,0r-18,61r-55,0r83,-258r67,0r84,258r-55,0xm149,-107r-32,-115r-31,115r63,0xm116,-335v8,20,25,36,31,58v-53,7,-65,-29,-91,-54r0,-4r60,0","w":233,"k":{"\u201d":14,"\u2019":14,"\u00ff":7,"\u00fd":7,"\u00dd":18,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c0":7,"y":7,"w":4,"v":7,"t":4,"f":4,"Z":-10,"Y":18,"W":7,"V":11,"U":4,"T":22,"Q":4,"O":4,"J":-17,"G":4,"C":4,"?":11,";":-12,",":-12,"*":22,"'":14,"\"":14}},"\u00c1":{"d":"179,0r-18,-61r-88,0r-18,61r-55,0r83,-258r67,0r84,258r-55,0xm149,-107r-32,-115r-31,115r63,0xm86,-277v6,-23,23,-36,31,-58r60,0v-10,26,-37,40,-55,58r-36,0","w":233,"k":{"\u201d":14,"\u2019":14,"\u00ff":7,"\u00fd":7,"\u00dd":18,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00ce":5,"\u00cd":7,"\u00c8":7,"\u00c7":4,"\u00c2":5,"y":7,"w":4,"v":7,"t":4,"f":4,"Z":-10,"Y":18,"W":7,"V":11,"U":4,"T":22,"Q":4,"O":4,"J":-17,"G":4,"C":4,"?":11,";":-12,",":-12,"*":22,"'":14,"\"":14}},"\u00c2":{"d":"45,-278v9,-24,29,-37,41,-57r63,0v11,21,32,34,41,57r-35,0v-14,-9,-26,-18,-38,-30v-11,12,-24,21,-37,30r-35,0xm179,0r-18,-61r-88,0r-18,61r-55,0r83,-258r67,0r84,258r-55,0xm149,-107r-32,-115r-31,115r63,0","w":233,"k":{"\u201d":14,"\u2019":14,"\u00ff":7,"\u00fd":7,"\u00dd":18,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00ce":5,"\u00cd":7,"\u00c8":7,"\u00c7":4,"\u00c2":5,"y":7,"w":4,"v":7,"t":4,"f":4,"Z":-10,"Y":18,"W":7,"V":11,"U":4,"T":22,"Q":4,"O":4,"J":-17,"G":4,"C":4,"?":11,";":-12,",":-12,"*":22,"'":14,"\"":14}},"\u00c3":{"d":"143,-278v-27,1,-59,-40,-68,1r-27,0v3,-31,14,-55,45,-55v25,0,59,39,68,0r26,0v-3,29,-13,53,-44,54xm179,0r-18,-61r-88,0r-18,61r-55,0r83,-258r67,0r84,258r-55,0xm149,-107r-32,-115r-31,115r63,0","w":233,"k":{"\u201d":14,"\u2019":14,"\u00ff":7,"\u00fd":7,"\u00dd":18,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"\u00c0":7,"y":7,"w":4,"v":7,"t":4,"f":4,"Z":-10,"Y":18,"W":7,"V":11,"U":4,"T":22,"Q":4,"O":4,"J":-17,"G":4,"C":4,"?":11,";":-12,",":-12,"*":22,"'":14,"\"":14}},"\u00c4":{"d":"179,0r-18,-61r-88,0r-18,61r-55,0r83,-258r67,0r84,258r-55,0xm149,-107r-32,-115r-31,115r63,0xm81,-283v-16,0,-23,-8,-24,-23v0,-16,9,-24,24,-24v15,0,25,8,25,24v-1,15,-9,23,-25,23xm152,-283v-15,0,-25,-9,-25,-23v0,-16,10,-24,25,-24v15,0,25,8,25,24v-1,15,-9,23,-25,23","w":233,"k":{"\u201d":14,"\u2019":14,"\u00ff":7,"\u00fd":7,"\u00dd":18,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"y":7,"w":5,"v":8,"t":5,"Z":-10,"Y":18,"W":7,"V":11,"U":4,"T":22,"Q":4,"O":4,"J":-17,"G":4,"C":4,"?":7,";":-12,",":-12,"*":23,"'":14,"\"":14}},"\u00c5":{"d":"117,-317v26,0,44,15,44,42v-1,27,-18,42,-44,42v-27,0,-44,-15,-44,-42v0,-27,17,-42,44,-42xm117,-258v10,0,17,-7,17,-17v0,-10,-7,-17,-17,-17v-10,0,-17,7,-17,17v0,11,6,17,17,17xm179,0r-18,-61r-88,0r-18,61r-55,0r83,-258r67,0r84,258r-55,0xm149,-107r-32,-115r-31,115r63,0","w":233,"k":{"\u2122":18,"\u201d":14,"\u201c":27,"\u2019":14,"\u2018":27,"\u00ff":7,"\u00fd":7,"\u00dd":18,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"y":7,"w":5,"v":8,"t":5,"Z":-10,"Y":18,"W":7,"V":11,"U":4,"T":22,"Q":4,"O":4,"J":-17,"G":4,"C":4,"?":7,";":-12,",":-12,"*":23,"'":27,"\"":27}},"\u00c6":{"d":"311,0r-148,0r0,-61r-81,0r-27,61r-55,0r115,-257r196,0r0,45r-94,0r0,56r87,0r0,45r-87,0r0,66r94,0r0,45xm102,-107r61,0r0,-104r-17,0","w":331},"\u00c7":{"d":"199,-198v-17,-8,-36,-17,-57,-17v-48,0,-64,38,-65,87v0,50,15,86,65,86v25,0,44,-6,65,-13r0,45v-21,8,-43,14,-71,14v-79,-2,-111,-51,-115,-132v-5,-111,101,-162,196,-115xm134,11v16,4,26,14,28,33v4,43,-43,47,-80,39r0,-30v13,2,40,11,38,-7v-1,-13,-13,-15,-29,-19r14,-27r34,0","w":229,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"}":-7,"]":-7,"Q":7,"O":7,"G":7,"C":7,")":-7,"'":-7,"\"":-7}},"\u00c8":{"d":"180,0r-148,0r0,-257r148,0r0,45r-93,0r0,56r87,0r0,45r-87,0r0,66r93,0r0,45xm105,-335v8,20,25,36,31,58v-53,7,-65,-29,-91,-54r0,-4r60,0","w":201,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00cd":4,"\u00c8":4,"\u00c7":4,"\u00c2":4,"Q":4,"O":4,"C":4,"-":7,"'":-7,"\"":-7}},"\u00c9":{"d":"180,0r-148,0r0,-257r148,0r0,45r-93,0r0,56r87,0r0,45r-87,0r0,66r93,0r0,45xm74,-277v6,-23,23,-36,31,-58r60,0v-10,26,-37,40,-55,58r-36,0","w":201,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c9":4,"\u00c7":4,"Q":4,"O":4,"C":4,"-":7,"'":-7,"\"":-7}},"\u00ca":{"d":"109,-308v-11,12,-24,21,-37,30r-36,0v8,-21,32,-37,42,-57r62,0v10,21,33,34,42,57r-36,0v-13,-9,-26,-18,-37,-30xm180,0r-148,0r0,-257r148,0r0,45r-93,0r0,56r87,0r0,45r-87,0r0,66r93,0r0,45","w":201,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00cd":4,"\u00c8":4,"\u00c7":4,"\u00c2":4,"Q":4,"O":4,"C":4,"-":7,"'":-7,"\"":-7}},"\u00cb":{"d":"180,0r-148,0r0,-257r148,0r0,45r-93,0r0,56r87,0r0,45r-87,0r0,66r93,0r0,45xm72,-283v-16,0,-23,-8,-24,-23v0,-16,9,-24,24,-24v15,0,25,8,25,24v-1,15,-9,23,-25,23xm143,-283v-15,0,-25,-9,-25,-23v0,-16,10,-24,25,-24v15,0,25,8,25,24v-1,15,-9,23,-25,23","w":201,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00cd":4,"\u00c8":4,"\u00c7":4,"\u00c2":4,"Q":4,"O":4,"C":4,"-":7,"'":-7,"\"":-7}},"\u00cc":{"d":"128,0r-116,0r0,-31r31,-14r0,-167r-31,-14r0,-31r116,0r0,31r-31,14r0,167r31,14r0,31xm67,-335v8,20,25,36,31,58v-53,7,-65,-29,-91,-54r0,-4r60,0","w":140,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"Q":4,"O":4,"G":4,"C":4,"'":-7,"\"":-7}},"\u00cd":{"d":"128,0r-116,0r0,-31r31,-14r0,-167r-31,-14r0,-31r116,0r0,31r-31,14r0,167r31,14r0,31xm41,-277v6,-23,23,-36,31,-58r60,0v-10,26,-37,40,-55,58r-36,0","w":140,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"Q":4,"O":4,"G":4,"C":4,"'":-7,"\"":-7}},"\u00ce":{"d":"70,-308v-11,12,-24,21,-37,30r-36,0v8,-21,32,-37,42,-57r62,0v10,21,33,34,42,57r-36,0v-14,-9,-26,-17,-37,-30xm128,0r-116,0r0,-31r31,-14r0,-167r-31,-14r0,-31r116,0r0,31r-31,14r0,167r31,14r0,31","w":140,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"Q":4,"O":4,"G":4,"C":4,"'":-7,"\"":-7}},"\u00cf":{"d":"128,0r-116,0r0,-31r31,-14r0,-167r-31,-14r0,-31r116,0r0,31r-31,14r0,167r31,14r0,31xm34,-283v-16,0,-23,-8,-24,-23v0,-16,9,-24,24,-24v15,0,25,8,25,24v-1,15,-9,23,-25,23xm105,-283v-15,0,-25,-9,-25,-23v0,-16,10,-24,25,-24v15,0,25,8,25,24v-1,15,-9,23,-25,23","w":140,"k":{"\u201d":-7,"\u2019":-7,"\u00d8":4,"\u00d6":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"Q":4,"O":4,"G":4,"C":4,"'":-7,"\"":-7}},"\u00d0":{"d":"231,-131v2,112,-79,141,-199,131r0,-105r-24,0r0,-44r24,0r0,-108r76,0v81,1,121,46,123,126xm87,-45v63,5,89,-24,89,-85v0,-59,-26,-88,-89,-82r0,63r41,0r0,44r-41,0r0,60","w":252,"k":{"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"A":4}},"\u00d1":{"d":"163,-278v0,0,-59,-39,-68,1r-26,0v3,-31,14,-55,45,-55v25,0,59,39,68,0r26,0v-3,30,-13,54,-45,54xm249,0r-69,0r-102,-194r3,194r-49,0r0,-257r69,0r102,192r-2,-192r48,0r0,257","w":281},"\u00d2":{"d":"136,-261v82,0,115,52,115,132v0,81,-35,133,-115,133v-80,0,-115,-52,-115,-133v0,-80,34,-131,115,-132xm136,-216v-46,0,-59,40,-59,87v0,47,12,87,59,87v47,0,59,-39,59,-87v0,-48,-13,-87,-59,-87xm133,-335v8,20,25,36,31,58v-53,7,-65,-29,-91,-54r0,-4r60,0","w":272,"k":{"\u00dd":7,"\u00cf":4,"\u00ce":4,"\u00cd":4,"\u00cc":4,"\u00c6":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"}":7,"]":7,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"S":4,"J":2,"I":4,"A":4,".":11,",":11,")":7}},"\u00d3":{"d":"136,-261v82,0,115,52,115,132v0,81,-35,133,-115,133v-80,0,-115,-52,-115,-133v0,-80,34,-131,115,-132xm136,-216v-46,0,-59,40,-59,87v0,47,12,87,59,87v47,0,59,-39,59,-87v0,-48,-13,-87,-59,-87xm103,-277v6,-23,23,-36,31,-58r60,0v-10,26,-37,40,-55,58r-36,0","w":272,"k":{"\u00dd":7,"\u00cf":4,"\u00ce":4,"\u00cd":4,"\u00cc":4,"\u00c6":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":7,"\u00c1":4,"\u00c0":4,"}":7,"]":7,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"S":4,"J":2,"I":4,"A":4,".":11,",":11,")":7}},"\u00d4":{"d":"62,-278v9,-24,29,-37,41,-57r63,0v11,21,32,34,41,57r-36,0v-13,-9,-26,-18,-37,-30v-11,12,-24,21,-37,30r-35,0xm136,-261v82,0,115,52,115,132v0,81,-35,133,-115,133v-80,0,-115,-52,-115,-133v0,-80,34,-131,115,-132xm136,-216v-46,0,-59,40,-59,87v0,47,12,87,59,87v47,0,59,-39,59,-87v0,-48,-13,-87,-59,-87","w":272,"k":{"\u00dd":7,"\u00cf":4,"\u00ce":4,"\u00cd":4,"\u00cc":4,"\u00c6":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":7,"\u00c1":4,"\u00c0":4,"}":7,"]":7,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"S":4,"J":2,"I":4,"A":4,".":11,",":11,")":7}},"\u00d5":{"d":"162,-278v-27,1,-60,-40,-68,1r-27,0v3,-31,14,-55,45,-55v25,0,59,39,68,0r26,0v-3,29,-13,53,-44,54xm136,-261v82,0,115,52,115,132v0,81,-35,133,-115,133v-80,0,-115,-52,-115,-133v0,-80,34,-131,115,-132xm136,-216v-46,0,-59,40,-59,87v0,47,12,87,59,87v47,0,59,-39,59,-87v0,-48,-13,-87,-59,-87","w":272,"k":{"\u00dd":7,"\u00cf":4,"\u00ce":4,"\u00cd":4,"\u00cc":4,"\u00c6":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":7,"}":7,"]":7,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"S":4,"J":2,"I":4,"A":4,".":11,",":11,")":7}},"\u00d6":{"d":"136,-261v82,0,115,52,115,132v0,81,-35,133,-115,133v-80,0,-115,-52,-115,-133v0,-80,34,-131,115,-132xm136,-216v-46,0,-59,40,-59,87v0,47,12,87,59,87v47,0,59,-39,59,-87v0,-48,-13,-87,-59,-87xm100,-283v-16,0,-23,-8,-24,-23v0,-16,9,-24,24,-24v15,0,25,8,25,24v-1,15,-9,23,-25,23xm171,-283v-15,0,-25,-9,-25,-23v0,-16,10,-24,25,-24v15,0,25,8,25,24v-1,15,-9,23,-25,23","w":272,"k":{"\u00dd":7,"\u00cf":4,"\u00ce":4,"\u00cd":4,"\u00cc":4,"\u00c6":7,"\u00c5":4,"\u00c4":7,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"}":7,"]":7,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"S":4,"J":2,"I":4,"A":4,".":11,",":11,")":7}},"\u00d7":{"d":"72,-127r-53,-53r27,-27r53,52r53,-52r27,26r-53,54r53,53r-27,27r-53,-53r-53,53r-26,-27"},"\u00d8":{"d":"218,-230v22,23,31,56,33,101v5,101,-76,157,-169,122r-13,20r-29,-16r14,-24v-23,-23,-31,-57,-33,-102v-6,-102,77,-157,170,-121r12,-19r30,17xm166,-208v-73,-38,-108,61,-81,131xm108,-49v72,34,105,-58,80,-130","w":272,"k":{"\u00dd":7,"\u00cf":4,"\u00ce":4,"\u00cd":4,"\u00cc":4,"\u00c6":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"I":4,"A":4,".":11,",":11}},"\u00d9":{"d":"129,-42v32,-1,45,-20,44,-54r0,-161r54,0r0,166v-1,62,-37,95,-99,95v-62,0,-96,-33,-97,-95r0,-166r54,0r0,162v0,32,12,53,44,53xm129,-335v8,20,25,36,31,58v-53,7,-65,-29,-91,-54r0,-4r60,0","w":257,"k":{"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c6":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"a":4,"Z":4,"M":4,"A":4,".":7,",":7}},"\u00da":{"d":"129,-42v32,-1,45,-20,44,-54r0,-161r54,0r0,166v-1,62,-37,95,-99,95v-62,0,-96,-33,-97,-95r0,-166r54,0r0,162v0,32,12,53,44,53xm100,-277v6,-23,23,-36,31,-58r60,0v-10,26,-37,40,-55,58r-36,0","w":257,"k":{"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c6":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"a":4,"Z":4,"M":4,"A":4,".":7,",":7}},"\u00db":{"d":"56,-278v9,-24,29,-37,41,-57r63,0v11,21,32,34,41,57r-35,0v-14,-9,-26,-18,-38,-30v-11,13,-23,21,-37,30r-35,0xm129,-42v32,-1,45,-20,44,-54r0,-161r54,0r0,166v-1,62,-37,95,-99,95v-62,0,-96,-33,-97,-95r0,-166r54,0r0,162v0,32,12,53,44,53","w":257,"k":{"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c6":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"a":4,"Z":4,"M":4,"A":4,".":7,",":7}},"\u00dc":{"d":"129,-42v32,-1,45,-20,44,-54r0,-161r54,0r0,166v-1,62,-37,95,-99,95v-62,0,-96,-33,-97,-95r0,-166r54,0r0,162v0,32,12,53,44,53xm93,-283v-16,0,-23,-8,-24,-23v0,-16,9,-24,24,-24v15,0,25,8,25,24v-1,15,-9,23,-25,23xm164,-283v-15,0,-25,-9,-25,-23v0,-16,10,-24,25,-24v15,0,25,8,25,24v-1,15,-9,23,-25,23","w":257,"k":{"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c6":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"a":4,"Z":4,"M":4,"A":4,".":7,",":7}},"\u00dd":{"d":"105,-151r47,-106r58,0r-78,157r0,100r-54,0r0,-98r-78,-159r59,0xm74,-277v6,-23,23,-36,31,-58r60,0v-10,26,-37,40,-55,58r-36,0","w":210,"k":{"\u201d":-14,"\u2019":-14,"\u00ff":4,"\u00fd":4,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00f8":18,"\u00f6":18,"\u00f5":18,"\u00f4":18,"\u00f3":18,"\u00f2":18,"\u00f1":11,"\u00eb":18,"\u00ea":18,"\u00e9":18,"\u00e8":18,"\u00e7":18,"\u00e6":18,"\u00e5":18,"\u00e4":18,"\u00e3":18,"\u00e2":18,"\u00e1":18,"\u00e0":18,"\u00d8":7,"\u00d6":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"\u00c6":25,"\u00c5":18,"\u00c4":18,"\u00c3":18,"\u00c2":18,"\u00c1":18,"\u00c0":18,"}":-11,"z":11,"y":4,"x":7,"w":4,"v":7,"u":11,"s":14,"r":11,"q":18,"p":11,"o":18,"n":11,"m":11,"g":18,"f":5,"e":18,"d":18,"c":18,"a":18,"]":-11,"W":-4,"V":-7,"T":-7,"S":4,"Q":7,"O":7,"M":11,"J":12,"G":7,"C":7,"A":18,"?":-7,".":18,"-":18,",":18,"*":-7,")":-11,"'":-14,"&":11,"\"":-14}},"\u00de":{"d":"87,-217v69,-5,113,17,112,82v0,63,-41,89,-112,83r0,52r-55,0r0,-257r55,0r0,40xm144,-135v0,-34,-23,-39,-57,-37r0,77v35,2,57,-7,57,-40","w":215},"\u00df":{"d":"120,-275v83,0,120,78,51,113v-5,6,-12,7,-13,15v18,34,75,35,75,90v0,63,-88,73,-135,49r0,-42v19,12,77,30,80,-7v-10,-42,-91,-38,-69,-98v8,-23,45,-24,45,-54v0,-16,-15,-25,-34,-25v-26,0,-38,11,-38,36r0,198r-54,0r0,-200v2,-54,36,-75,92,-75","w":245},"\u00e0":{"d":"33,-183v49,-30,147,-26,147,52r0,131r-38,0v-5,-8,-5,-21,-12,-27v-22,47,-115,40,-115,-32v0,-57,52,-63,111,-63v10,-51,-49,-42,-75,-25xm92,-36v29,0,36,-23,34,-55v-30,0,-56,3,-56,33v0,16,9,21,22,22xm102,-276v8,20,25,36,31,58v-53,7,-65,-29,-91,-54r0,-4r60,0","w":206,"k":{"'":7}},"\u00e1":{"d":"33,-183v49,-30,147,-26,147,52r0,131r-38,0v-5,-8,-5,-21,-12,-27v-22,47,-115,40,-115,-32v0,-57,52,-63,111,-63v10,-51,-49,-42,-75,-25xm92,-36v29,0,36,-23,34,-55v-30,0,-56,3,-56,33v0,16,9,21,22,22xm77,-218v6,-23,23,-36,31,-58r60,0v-10,26,-37,40,-55,58r-36,0","w":206,"k":{"'":7}},"\u00e2":{"d":"135,-276v11,18,28,39,41,53r0,5r-35,0v-13,-9,-26,-19,-38,-31v-11,13,-23,22,-36,31r-36,0r0,-5v14,-14,29,-35,41,-53r63,0xm33,-183v49,-30,147,-26,147,52r0,131r-38,0v-5,-8,-5,-21,-12,-27v-22,47,-115,40,-115,-32v0,-57,52,-63,111,-63v10,-51,-49,-42,-75,-25xm92,-36v29,0,36,-23,34,-55v-30,0,-56,3,-56,33v0,16,9,21,22,22","w":206,"k":{"'":7}},"\u00e3":{"d":"129,-218v-25,0,-60,-40,-68,0r-27,0v3,-30,13,-54,45,-54v25,1,60,38,68,0r26,0v-3,29,-13,53,-44,54xm33,-183v49,-30,147,-26,147,52r0,131r-38,0v-5,-8,-5,-21,-12,-27v-22,47,-115,40,-115,-32v0,-57,52,-63,111,-63v10,-51,-49,-42,-75,-25xm92,-36v29,0,36,-23,34,-55v-30,0,-56,3,-56,33v0,16,9,21,22,22","w":206,"k":{"'":7}},"\u00e4":{"d":"33,-183v49,-30,147,-26,147,52r0,131r-38,0v-5,-8,-5,-21,-12,-27v-22,47,-115,40,-115,-32v0,-57,52,-63,111,-63v10,-51,-49,-42,-75,-25xm92,-36v29,0,36,-23,34,-55v-30,0,-56,3,-56,33v0,16,9,21,22,22xm69,-224v-16,0,-23,-8,-24,-23v0,-16,9,-24,24,-24v15,0,25,8,25,24v-1,15,-9,23,-25,23xm140,-224v-15,0,-25,-9,-25,-23v0,-16,10,-24,25,-24v15,0,25,8,25,24v-1,15,-9,23,-25,23","w":206,"k":{"'":7}},"\u00e5":{"d":"103,-301v27,0,45,15,45,41v0,28,-18,42,-45,42v-26,0,-43,-15,-43,-42v0,-26,17,-41,43,-41xm103,-243v11,0,17,-7,17,-17v0,-10,-7,-17,-17,-17v-10,0,-17,7,-17,17v1,10,5,17,17,17xm33,-183v49,-30,147,-26,147,52r0,131r-38,0v-5,-8,-5,-21,-12,-27v-22,47,-115,40,-115,-32v0,-57,52,-63,111,-63v10,-51,-49,-42,-75,-25xm92,-36v29,0,36,-23,34,-55v-30,0,-56,3,-56,33v0,16,9,21,22,22","w":206,"k":{"'":7}},"\u00e6":{"d":"289,-10v-42,23,-120,19,-139,-23v-16,23,-37,35,-75,37v-58,4,-78,-77,-40,-109v17,-14,56,-17,91,-17v10,-51,-49,-42,-75,-25r-18,-36v33,-20,102,-29,127,5v52,-48,149,-13,140,67r0,26r-120,0v-3,59,73,56,109,33r0,42xm92,-36v29,0,36,-23,34,-55v-30,0,-56,3,-56,33v0,16,9,21,22,22xm250,-121v4,-35,-35,-54,-58,-31v-6,7,-10,17,-11,31r69,0","w":317,"k":{"z":4,"x":7}},"\u00e7":{"d":"162,-9v-67,33,-154,-1,-144,-88v-10,-91,77,-125,150,-89r-15,41v-13,-5,-26,-12,-43,-12v-30,1,-37,25,-37,59v1,34,6,56,36,58v23,0,36,-7,53,-14r0,45xm108,11v16,4,26,14,28,33v4,43,-43,47,-80,39r0,-30v13,2,40,11,38,-7v-1,-13,-13,-15,-29,-19r14,-27r34,0","w":179,"k":{"\u201d":-11,"\u2019":-11,"'":-11,"\"":-11}},"\u00e8":{"d":"142,-121v2,-33,-34,-54,-58,-31v-6,7,-10,17,-11,31r69,0xm181,-10v-70,33,-169,5,-163,-87v4,-63,28,-103,89,-103v65,0,90,44,85,115r-120,0v-4,59,74,56,109,33r0,42xm106,-276v8,20,25,36,31,58v-53,7,-65,-29,-91,-54r0,-4r60,0","w":209,"k":{"'":7,"\"":18}},"\u00e9":{"d":"142,-121v2,-33,-34,-54,-58,-31v-6,7,-10,17,-11,31r69,0xm181,-10v-70,33,-169,5,-163,-87v4,-63,28,-103,89,-103v65,0,90,44,85,115r-120,0v-4,59,74,56,109,33r0,42xm78,-218v6,-23,23,-36,31,-58r60,0v-10,26,-37,40,-55,58r-36,0","w":209,"k":{"'":7,"\"":18}},"\u00ea":{"d":"107,-249v-12,12,-24,21,-37,31r-36,0v9,-23,30,-37,42,-58r62,0v13,20,27,36,42,53r0,5r-36,0v-13,-9,-26,-18,-37,-31xm142,-121v2,-33,-34,-54,-58,-31v-6,7,-10,17,-11,31r69,0xm181,-10v-70,33,-169,5,-163,-87v4,-63,28,-103,89,-103v65,0,90,44,85,115r-120,0v-4,59,74,56,109,33r0,42","w":209,"k":{"'":7,"\"":18}},"\u00eb":{"d":"142,-121v2,-33,-34,-54,-58,-31v-6,7,-10,17,-11,31r69,0xm181,-10v-70,33,-169,5,-163,-87v4,-63,28,-103,89,-103v65,0,90,44,85,115r-120,0v-4,59,74,56,109,33r0,42xm71,-224v-16,0,-23,-8,-24,-23v0,-16,9,-24,24,-24v15,0,25,8,25,24v-1,15,-9,23,-25,23xm142,-224v-15,0,-25,-9,-25,-23v0,-16,10,-24,25,-24v15,0,25,8,25,24v-1,15,-9,23,-25,23","w":209,"k":{"'":7,"\"":18}},"\u00ec":{"d":"82,0r-54,0r0,-197r54,0r0,197xm52,-276v8,20,25,36,31,58v-53,7,-65,-29,-91,-54r0,-4r60,0","w":109},"\u00ed":{"d":"82,0r-54,0r0,-197r54,0r0,197xm25,-218v6,-23,23,-36,31,-58r60,0v-10,26,-37,40,-55,58r-36,0","w":109},"\u00ee":{"d":"54,-249v-11,13,-24,22,-37,31r-35,0v8,-23,31,-37,41,-58r63,0v13,20,33,33,41,58r-35,0v-13,-9,-26,-19,-38,-31xm82,0r-54,0r0,-197r54,0r0,197","w":109},"\u00ef":{"d":"82,0r-54,0r0,-197r54,0r0,197xm19,-224v-16,0,-23,-8,-24,-23v0,-16,9,-24,24,-24v15,0,25,8,25,24v-1,15,-9,23,-25,23xm90,-224v-15,0,-25,-9,-25,-23v0,-16,10,-24,25,-24v15,0,25,8,25,24v-1,15,-9,23,-25,23","w":109},"\u00f0":{"d":"91,-175v21,0,38,8,46,20r4,-1v-6,-20,-19,-39,-34,-52r-41,25r-18,-27r32,-20v-8,-6,-17,-11,-27,-16r17,-30v17,7,31,16,45,25r40,-25r18,27r-31,19v65,48,81,238,-40,234v-57,-1,-89,-34,-89,-90v0,-53,26,-88,78,-89xm103,-36v30,0,35,-25,35,-58v0,-24,-10,-41,-35,-41v-29,1,-34,18,-35,49v0,28,8,50,35,50","w":207},"\u00f1":{"d":"138,-218v-25,0,-60,-40,-68,0r-26,0v2,-31,12,-53,44,-54v25,0,59,38,68,0r26,0v-4,29,-12,54,-44,54xm135,-200v90,0,59,118,64,200r-54,0r0,-115v0,-25,-5,-42,-27,-42v-59,0,-29,100,-36,157r-54,0r0,-197r41,0r7,26r3,0v12,-17,27,-29,56,-29","w":225,"k":{"\u201d":7,"'":7,"\"":18}},"\u00f2":{"d":"108,-157v-29,0,-35,24,-35,58v0,34,6,58,35,59v29,0,36,-26,35,-59v0,-34,-6,-58,-35,-58xm108,-200v61,1,90,41,90,101v0,62,-29,103,-91,103v-60,0,-89,-42,-89,-103v0,-62,28,-101,90,-101xm107,-276v8,20,25,36,31,58v-53,7,-65,-29,-91,-54r0,-4r60,0","w":215,"k":{"z":4,"x":7,"f":7,"'":25,"\"":25}},"\u00f3":{"d":"108,-157v-29,0,-35,24,-35,58v0,34,6,58,35,59v29,0,36,-26,35,-59v0,-34,-6,-58,-35,-58xm108,-200v61,1,90,41,90,101v0,62,-29,103,-91,103v-60,0,-89,-42,-89,-103v0,-62,28,-101,90,-101xm76,-218v6,-23,23,-36,31,-58r60,0v-10,26,-37,40,-55,58r-36,0","w":215,"k":{"z":4,"x":7,"f":7,"'":25,"\"":25}},"\u00f4":{"d":"107,-249v-12,12,-24,21,-37,31r-36,0v9,-22,32,-37,42,-58r63,0v9,24,33,34,41,58r-36,0v-13,-10,-25,-19,-37,-31xm108,-157v-29,0,-35,24,-35,58v0,34,6,58,35,59v29,0,36,-26,35,-59v0,-34,-6,-58,-35,-58xm108,-200v61,1,90,41,90,101v0,62,-29,103,-91,103v-60,0,-89,-42,-89,-103v0,-62,28,-101,90,-101","w":215,"k":{"z":4,"x":7,"f":7,"'":25,"\"":25}},"\u00f5":{"d":"132,-218v-25,0,-60,-40,-68,0r-26,0v2,-31,13,-53,44,-54v25,0,60,39,68,0r26,0v-2,31,-13,53,-44,54xm108,-157v-29,0,-35,24,-35,58v0,34,6,58,35,59v29,0,36,-26,35,-59v0,-34,-6,-58,-35,-58xm108,-200v61,1,90,41,90,101v0,62,-29,103,-91,103v-60,0,-89,-42,-89,-103v0,-62,28,-101,90,-101","w":215,"k":{"z":4,"x":7,"f":7,"'":25,"\"":25}},"\u00f6":{"d":"108,-157v-29,0,-35,24,-35,58v0,34,6,58,35,59v29,0,36,-26,35,-59v0,-34,-6,-58,-35,-58xm108,-200v61,1,90,41,90,101v0,62,-29,103,-91,103v-60,0,-89,-42,-89,-103v0,-62,28,-101,90,-101xm71,-224v-16,0,-23,-8,-24,-23v0,-16,9,-24,24,-24v15,0,25,8,25,24v-1,15,-9,23,-25,23xm142,-224v-15,0,-25,-9,-25,-23v0,-16,10,-24,25,-24v15,0,25,8,25,24v-1,15,-9,23,-25,23","w":215,"k":{"z":4,"x":7,"f":7,"'":25,"\"":25}},"\u00f7":{"d":"15,-108r0,-38r168,0r0,38r-168,0xm99,-39v-16,-1,-24,-9,-24,-27v0,-18,8,-25,24,-26v16,0,24,10,24,26v0,17,-7,27,-24,27xm99,-162v-16,-1,-24,-8,-24,-26v0,-18,8,-26,24,-27v17,0,24,10,24,27v0,17,-8,26,-24,26"},"\u00f8":{"d":"174,-171v46,55,24,183,-67,175v-15,-1,-25,-3,-37,-7r-10,16r-28,-15r12,-20v-48,-52,-31,-178,64,-178v15,0,29,3,40,8r9,-13r28,16xm125,-153v-44,-19,-59,33,-50,81xm95,-42v43,13,53,-32,47,-76","w":215,"k":{"z":4,"x":7}},"\u00f9":{"d":"108,-39v58,0,29,-100,36,-158r54,0r0,197r-41,0v-4,-8,-3,-20,-10,-25v-11,17,-29,28,-56,29v-89,1,-59,-118,-64,-201r54,0r0,115v0,25,5,43,27,43xm107,-276v8,20,25,36,31,58v-53,7,-65,-29,-91,-54r0,-4r60,0","w":225,"k":{"'":12,"\"":12}},"\u00fa":{"d":"108,-39v58,0,29,-100,36,-158r54,0r0,197r-41,0v-4,-8,-3,-20,-10,-25v-11,17,-29,28,-56,29v-89,1,-59,-118,-64,-201r54,0r0,115v0,25,5,43,27,43xm81,-218v6,-23,23,-36,31,-58r60,0v-10,26,-37,40,-55,58r-36,0","w":225,"k":{"'":12,"\"":12}},"\u00fb":{"d":"111,-249v-12,12,-24,21,-37,31r-36,0v9,-23,31,-37,42,-58r62,0v13,20,27,36,42,53r0,5r-36,0v-13,-9,-26,-18,-37,-31xm108,-39v58,0,29,-100,36,-158r54,0r0,197r-41,0v-4,-8,-3,-20,-10,-25v-11,17,-29,28,-56,29v-89,1,-59,-118,-64,-201r54,0r0,115v0,25,5,43,27,43","w":225,"k":{"'":12,"\"":12}},"\u00fc":{"d":"108,-39v58,0,29,-100,36,-158r54,0r0,197r-41,0v-4,-8,-3,-20,-10,-25v-11,17,-29,28,-56,29v-89,1,-59,-118,-64,-201r54,0r0,115v0,25,5,43,27,43xm76,-224v-16,0,-23,-8,-24,-23v0,-16,9,-24,24,-24v15,0,25,8,25,24v-1,15,-9,23,-25,23xm147,-224v-15,0,-25,-9,-25,-23v0,-16,10,-24,25,-24v15,0,25,8,25,24v-1,15,-9,23,-25,23","w":225,"k":{"'":12,"\"":12}},"\u00fd":{"d":"116,25v-11,45,-52,70,-104,58r0,-42v34,10,59,-9,62,-39r-74,-199r59,0r38,149v9,-54,25,-100,38,-149r59,0xm69,-218v6,-23,23,-36,31,-58r60,0v-10,26,-37,40,-55,58r-36,0","w":194,"k":{"\u2026":22,"\u201d":-11,"\u2019":-11,"\u00f8":2,"\u00f6":2,"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00eb":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"\u00e7":2,"\u00e6":2,"t":-1,"q":2,"o":2,"g":2,"f":-4,"e":2,"d":2,"c":2,"?":13,".":12,",":12,"'":-11,"\"":-11}},"\u00fe":{"d":"133,4v-25,0,-41,-10,-51,-25r-3,0v5,32,3,71,3,107r-54,0r0,-360r54,0v-1,34,2,72,-3,103r3,0v10,-16,24,-30,51,-29v52,3,68,46,68,101v0,56,-16,103,-68,103xm146,-99v0,-32,-4,-57,-31,-58v-30,0,-33,27,-33,58v-1,31,4,59,33,59v27,0,31,-27,31,-59","w":218},"\u00ff":{"d":"116,25v-11,45,-52,70,-104,58r0,-42v34,10,59,-9,62,-39r-74,-199r59,0r38,149v9,-54,25,-100,38,-149r59,0xm61,-224v-16,0,-23,-8,-24,-23v0,-16,9,-24,24,-24v15,0,25,8,25,24v-1,15,-9,23,-25,23xm132,-224v-15,0,-25,-9,-25,-23v0,-16,10,-24,25,-24v15,0,25,8,25,24v-1,15,-9,23,-25,23","w":194,"k":{"\u201d":-11,"\u2019":-11,"f":-4,".":12,",":12,"'":-11,"\"":-11}},"\u2013":{"d":"14,-77r0,-40r152,0r0,40r-152,0","w":180,"k":{"T":18}},"\u2014":{"d":"14,-77r0,-40r332,0r0,40r-332,0","w":360,"k":{"T":18}},"\u2018":{"d":"73,-257v-7,28,-13,57,-17,88v-17,-2,-42,5,-52,-4v8,-29,20,-59,31,-84r38,0","w":77,"k":{"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":11,"\u00dd":-14,"\u00cf":-7,"\u00ce":-7,"\u00cd":-7,"\u00cc":-7,"\u00c6":29,"\u00c5":14,"\u00c4":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"w":-4,"v":-7,"t":-7,"q":11,"o":11,"g":7,"e":11,"d":11,"c":11,"Z":-7,"Y":-14,"X":-7,"W":-18,"V":-14,"T":-14,"I":-7,"A":14}},"\u2019":{"d":"4,-169r18,-88r49,0v2,30,-20,62,-28,88r-39,0","w":77},"\u201c":{"d":"156,-257v-8,27,-14,57,-18,88v-17,-2,-42,5,-52,-4v8,-29,20,-59,31,-84r39,0xm73,-257v-7,28,-13,57,-17,88v-17,-2,-42,5,-52,-4v8,-29,20,-59,31,-84r38,0","w":159,"k":{"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":11,"\u00dd":-14,"\u00cf":-7,"\u00ce":-7,"\u00cd":-7,"\u00cc":-7,"\u00c6":29,"\u00c5":14,"\u00c4":14,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"w":-4,"v":-7,"t":-7,"q":11,"o":11,"g":7,"e":11,"d":11,"c":11,"Z":-7,"Y":-14,"X":-7,"W":-18,"V":-14,"T":-14,"I":-7,"A":14}},"\u201d":{"d":"4,-169r18,-88r49,0v2,30,-20,62,-28,88r-39,0xm86,-169v7,-28,12,-59,18,-88v17,2,42,-5,52,4v-9,29,-19,60,-31,84r-39,0","w":159},"\u2026":{"d":"52,5v-19,0,-31,-10,-31,-30v0,-21,12,-30,31,-30v18,0,30,9,30,30v0,20,-12,30,-30,30xm154,5v-19,0,-31,-10,-31,-30v0,-21,13,-30,31,-30v19,0,31,10,31,30v-1,19,-12,30,-31,30xm257,5v-19,0,-31,-10,-31,-30v0,-21,13,-30,31,-30v18,0,30,9,30,30v0,20,-12,30,-30,30","w":307},"\u2032":{"d":"72,-257r-7,93r-34,0r-8,-93r49,0","w":95},"\u2033":{"d":"72,-257r-7,93r-34,0r-8,-93r49,0xm147,-257r-8,93r-34,0r-7,-93r49,0","w":169},"\u2122":{"d":"67,-130r-30,0r0,-101r-34,0r0,-26r99,0r0,26r-35,0r0,101xm168,-130r-30,-93r1,93r-29,0r0,-127r43,0r28,90r30,-90r42,0r0,127r-29,0r0,-93r-31,93r-25,0","w":269}}});;jQuery(document).ready(function(c){if(fadeContent!=="none"&&!oldIE){elems=(fadeContent==="all")?"#Top, #Middle, #Bottom":"#Middle";hiddenClass=(fadeContent==="all")?"invisibleAll":"invisibleMiddle";if(fadeContent==="all"||fadeContent==="content"){c("#Wrapper").children(elems).css("opacity","0").end().parent("body").removeClass(hiddenClass);setTimeout(function(){c("#Middle").animate({opacity:"1"},250)},100);if(fadeContent==="all"){setTimeout(function(){c("#Top").animate({opacity:"1"},200)},0);setTimeout(function(){c("#Bottom").animate({opacity:"1"},300)},200)}}}if(screen.width>990){c("body").css("background",jQuery("#Bottom .sub-footer").css("background-color"))}postitionCurveBg(jQuery);setTimeout("postitionCurveBg(jQuery)",90);setTimeout("postitionCurveBg(jQuery)",500);var b=c('input[type="submit"]:not(.noStyle), input[type="button"]:not(.noStyle), input[type="reset"]:not(.noStyle), button:not(.noStyle)');c(b).addClass("btn");c("label.overlabel").overlabel();var d=c(".posts-list .style-image-left");if(d.length>0){d.each(function(){var e=jQuery(this).children(".the-post-image").outerWidth(true);if(e){jQuery(this).children(".the-post-container").css("margin-left",e+"px")}})}var d=c(".content-post-single .style-image-left");if(d.length>0){d.each(function(){var e=jQuery(this).find(".the-post-image").outerWidth(true);if(e){jQuery(this).find("header.entry-header").css("margin-left",e+"px")}})}c(".gallery .gallery-item a").attr("rel","gallery");c("a.popup[href*='http://www.youtube.com/watch?']").colorbox({href:function(){var e=/[\?\&]v=([^\?\&]+)/.exec(this.href);url="http://www.youtube.com/embed/"+e[1];if(!e[1]){url=this.href}return url},iframe:true,innerWidth:function(){w=c.getUrlVars(this.href)["width"]||640;return w},innerHeight:function(){h=c.getUrlVars(this.href)["height"]||390;return h}});c("a.popup[href*='http://www.vimeo.com/'], a.popup[href*='http://vimeo.com/']").colorbox({href:function(){var e=/vimeo\.com\/(\d+)/.exec(this.href);url="http://www.vimeo.com/moogaloop.swf?clip_id="+e[1];if(!e[1]){url=this.href}return url},iframe:true,innerWidth:function(){w=c.getUrlVars(this.href)["width"]||640;return w},innerHeight:function(){h=c.getUrlVars(this.href)["height"]||360;return h}});c("a[href$='.jpg'],a[href$='.jpeg'],a[href$='.png'],a[href$='.gif'],a[href$='.tif'],a[href$='.tiff'],a[href$='.bmp']").colorbox({maxWidth:"95%",maxHeight:"95%"});c("a.popup[href^='#'], .popup > a[href^='#']").colorbox({maxWidth:"95%",maxHeight:"95%",inline:true,href:this.href}).removeClass("popup");c(".popup > a[href^='#']").parent().removeClass("popup");c(".popup").colorbox({maxWidth:"95%",maxHeight:"95%"});c("a[href$='#popup']").colorbox({maxWidth:"95%",maxHeight:"95%",href:function(){if(this.href){return this.href.replace("#popup","")}}});c(".iframe").colorbox({width:"80%",height:"80%",iframe:true});c("a[href$='#iframe']").colorbox({width:"80%",height:"80%",iframe:true,href:function(){if(this.href){return this.href.replace("#iframe","")}}});if(c(".portfolio-list").length>0){var a=c(".portfolio-list");a.each(function(){var e=0;pItems=jQuery(this).find(".the-post-container");pItems.each(function(f,g){if(jQuery(this).height()>e){e=jQuery(this).height()}});pItems.css("height",e+"px")})}c(".messageBox .closeBox").click(function(){jQuery(this).parent(".messageBox").fadeTo(400,0.001).slideUp()});if(BrowserDetect.browser=="Safari"&&BrowserDetect.OS=="Windows"){c("button.btn span").css("margin","-1px -3px")}if(jQuery(".tabList").length>0){c(".tabList").sTabs()}if(jQuery(".toggleItem").length>0){c(".toggleItem").simpleToggle()}if(typeof jq=="function"&&typeof Cufon=="function"){jq("#BP-Content").ajaxComplete(function(e,g,f){setTimeout(function(){Cufon.refresh()},250)})}});function postitionCurveBg(d){var b=d(".curve #Wrapper");if(b.length>0){var g=b.offset();var a=d("#Showcase").offset();var f=266;var e=119;var c=a.top-g.top-f;if(c!=e){b.css("background-position","50% "+c+"px")}}}jQuery.extend({getUrlVars:function(b){var e=[],d;if(!b){b=window.location.href}var a=b.slice(window.location.href.indexOf("?")+1).split("&");for(var c=0;c<a.length;c++){d=a[c].split("=");e.push(d[0]);e[d[0]]=d[1]}return e},getUrlVar:function(b,a){if(!a){a=window.location.href}return jQuery.getUrlVars(a)[b]}});var oldIE=false;var BrowserDetect={init:function(){this.browser=this.searchString(this.dataBrowser)||"An unknown browser";this.version=this.searchVersion(navigator.userAgent)||this.searchVersion(navigator.appVersion)||"an unknown version";this.OS=this.searchString(this.dataOS)||"an unknown OS"},searchString:function(d){for(var a=0;a<d.length;a++){var b=d[a].string;var c=d[a].prop;this.versionSearchString=d[a].versionSearch||d[a].identity;if(b){if(b.indexOf(d[a].subString)!=-1){return d[a].identity}}else{if(c){return d[a].identity}}}},searchVersion:function(b){var a=b.indexOf(this.versionSearchString);if(a==-1){return}return parseFloat(b.substring(a+this.versionSearchString.length+1))},dataBrowser:[{string:navigator.vendor,subString:"Apple",identity:"Safari",versionSearch:"Version"},{string:navigator.userAgent,subString:"MSIE",identity:"Explorer",versionSearch:"MSIE"}],dataOS:[{string:navigator.platform,subString:"Win",identity:"Windows"}]};BrowserDetect.init();if(BrowserDetect.browser=="Explorer"&&BrowserDetect.version<9){oldIE=BrowserDetect.version}(function(a){a.fn.sTabs=function(c){var b=a.extend({},a.fn.sTabs.defaults,c);return this.each(function(){a(this).addClass("tabs");a(this).find("a").each(function(){a(a(this).attr("href")).addClass("tab").hide();a(this).bind(b.eventType,function(f){f.preventDefault();a(this).addClass("active");b.animate?a(a(this).attr("href")).fadeIn(b.duration):a(a(this).attr("href")).show();a(a(this).parent().siblings().find("a")).each(function(){a(this).removeClass("active");a(a(this).attr("href")).hide()})})});var d=a(this).find("li:nth-child("+b.startWith+")").children("a");a(d).addClass("active");a(a(d).attr("href")).show()})};a.fn.sTabs.defaults={animate:false,duration:300,startWith:1,eventType:"click"}})(jQuery);(function(a){a.fn.simpleToggle=function(c){var b=a.extend({},a.fn.simpleToggle.defaults,c);return this.each(function(){$title=a(this).children(".togTitle");$title.each(function(){a(this).click(function(){$item=a(this);$item.next(".togDesc").slideToggle("fast",function(){$icon=$item.children(".iconSymbol");if(a(this).css("display")=="block"){$icon.removeClass("plus").addClass("minus")}else{$icon.removeClass("minus").addClass("plus")}})})})})};a.fn.simpleToggle.defaults={}})(jQuery);if(fadeContent!=="none"&&!oldIE){setTimeout(function(){jQuery("body").removeClass("invisibleAll invisibleMiddle")},1000)};
