(function($){$.fn.tweet=function(o){var s=$.extend({username:null,list:null,favorites:false,query:null,avatar_size:null,count:3,fetch:null,page:1,retweets:true,intro_text:null,outro_text:null,join_text:null,auto_join_text_default:"i said,",auto_join_text_ed:"i",auto_join_text_ing:"i am",auto_join_text_reply:"i replied to",auto_join_text_url:"i was looking at",loading_text:null,refresh_interval:null,twitter_url:"twitter.com",twitter_api_url:"api.twitter.com",twitter_search_url:"search.twitter.com",template:"{avatar}{time}{join}{text}",comparator:function(tweet1,tweet2){return tweet2["tweet_time"]-tweet1["tweet_time"];},filter:function(tweet){return true;}},o);var url_regexp=/\b((?:[a-z][\w-]+:(?:\/{1,3}|[a-z0-9%])|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}\/)(?:[^\s()<>]+|\(([^\s()<>]+|(\([^\s()<>]+\)))*\))+(?:\(([^\s()<>]+|(\([^\s()<>]+\)))*\)|[^\s`!()\[\]{};:'".,<>?Ã‚Â«Ã‚Â»Ã¢â‚¬Å"Ã¢â‚¬ÂÃ¢â‚¬ËœÃ¢â‚¬â"¢]))/gi;function t(template,info){if(typeof template==="string"){var result=template;for(var key in info){var val=info[key];result=result.replace(new RegExp('{'+key+'}','g'),val===null?'':val);}
return result;}else return template(info);}
$.extend({tweet:{t:t}});function replacer(regex,replacement){return function(){var returning=[];this.each(function(){returning.push(this.replace(regex,replacement));});return $(returning);};}
$.fn.extend({linkUrl:replacer(url_regexp,function(match){var url=(/^[a-z]+:/i).test(match)?match:"http://"+match;return"<a href=\""+url+"\">"+match+"</a>";}),linkUser:replacer(/@(\w+)/gi,"@<a href=\"http://"+s.twitter_url+"/$1\">$1</a>"),linkHash:replacer(/(?:^| )[\#]+([\w\u00c0-\u00d6\u00d8-\u00f6\u00f8-\u00ff\u0600-\u06ff]+)/gi,' <a href="http://'+s.twitter_search_url+'/search?q=&tag=$1&lang=all'+((s.username&&s.username.length==1)?'&from='+s.username.join("%2BOR%2B"):'')+'">#$1</a>'),capAwesome:replacer(/\b(awesome)\b/gi,'<span class="awesome">$1</span>'),capEpic:replacer(/\b(epic)\b/gi,'<span class="epic">$1</span>'),makeHeart:replacer(/(&lt;)+[3]/gi,"<tt class='heart'>&#x2665;</tt>")});function parse_date(date_str){return Date.parse(date_str.replace(/^([a-z]{3})( [a-z]{3} \d\d?)(.*)( \d{4})$/i,'$1,$2$4$3'));}
function relative_time(date){var relative_to=(arguments.length>1)?arguments[1]:new Date();var delta=parseInt((relative_to.getTime()-date)/1000,10);var r='';if(delta<60){r=delta+' seconds ago';}else if(delta<120){r='a minute ago';}else if(delta<(45*60)){r=(parseInt(delta/60,10)).toString()+' minutes ago';}else if(delta<(2*60*60)){r='an hour ago';}else if(delta<(24*60*60)){r=''+(parseInt(delta/3600,10)).toString()+' hours ago';}else if(delta<(48*60*60)){r='a day ago';}else{r=(parseInt(delta/86400,10)).toString()+' days ago';}
return'about '+r;}
function build_auto_join_text(text){if(text.match(/^(@([A-Za-z0-9-_]+)) .*/i)){return s.auto_join_text_reply;}else if(text.match(url_regexp)){return s.auto_join_text_url;}else if(text.match(/^((\w+ed)|just) .*/im)){return s.auto_join_text_ed;}else if(text.match(/^(\w*ing) .*/i)){return s.auto_join_text_ing;}else{return s.auto_join_text_default;}}
function maybe_https(url){return('https:'==document.location.protocol)?url.replace(/^http:/,'https:'):url;}
function build_api_url(){var proto=('https:'==document.location.protocol?'https:':'http:');var count=(s.fetch===null)?s.count:s.fetch;if(s.list){return proto+"//"+s.twitter_api_url+"/1/"+s.username[0]+"/lists/"+s.list+"/statuses.json?page="+s.page+"&per_page="+count+"&callback=?";}else if(s.favorites){return proto+"//"+s.twitter_api_url+"/favorites/"+s.username[0]+".json?page="+s.page+"&count="+count+"&callback=?";}else if(s.query===null&&s.username.length==1){return proto+'//'+s.twitter_api_url+'/1/statuses/user_timeline.json?screen_name='+s.username[0]+'&count='+count+(s.retweets?'&include_rts=1':'')+'&page='+s.page+'&callback=?';}else{var query=(s.query||'from:'+s.username.join(' OR from:'));return proto+'//'+s.twitter_search_url+'/search.json?&q='+encodeURIComponent(query)+'&rpp='+count+'&page='+s.page+'&callback=?';}}
function extract_template_data(item){var o={};o.item=item;o.source=item.source;o.screen_name=item.from_user||item.user.screen_name;o.avatar_size=s.avatar_size;o.avatar_url=maybe_https(item.profile_image_url||item.user.profile_image_url);o.retweet=typeof(item.retweeted_status)!='undefined';o.tweet_time=parse_date(item.created_at);o.join_text=s.join_text=="auto"?build_auto_join_text(item.text):s.join_text;o.tweet_id=item.id_str;o.twitter_base="http://"+s.twitter_url+"/";o.user_url=o.twitter_base+o.screen_name;o.tweet_url=o.user_url+"/status/"+o.tweet_id;o.reply_url=o.twitter_base+"intent/tweet?in_reply_to="+o.tweet_id;o.retweet_url=o.twitter_base+"intent/retweet?tweet_id="+o.tweet_id;o.favorite_url=o.twitter_base+"intent/favorite?tweet_id="+o.tweet_id;o.retweeted_screen_name=o.retweet&&item.retweeted_status.user.screen_name;o.tweet_relative_time=relative_time(o.tweet_time);o.tweet_raw_text=o.retweet?('RT @'+o.retweeted_screen_name+' '+item.retweeted_status.text):item.text;o.tweet_text=$([o.tweet_raw_text]).linkUrl().linkUser().linkHash()[0];o.tweet_text_fancy=$([o.tweet_text]).makeHeart().capAwesome().capEpic()[0];o.user=t('<a class="tweet_user" href="{user_url}">{screen_name}</a>',o);o.join=s.join_text?t(' <span class="tweet_join">{join_text}</span> ',o):' ';o.avatar=o.avatar_size?t('<a class="tweet_avatar" href="{user_url}"><img src="{avatar_url}" height="{avatar_size}" width="{avatar_size}" alt="{screen_name}\'s avatar" title="{screen_name}\'s avatar" border="0"/></a>',o):'';o.time=t('<span class="tweet_time"><a href="{tweet_url}" title="view tweet on twitter">{tweet_relative_time}</a></span>',o);o.text=t('<span class="tweet_text">{tweet_text_fancy}</span>',o);o.reply_action=t('<a class="tweet_action tweet_reply" href="{reply_url}">reply</a>',o);o.retweet_action=t('<a class="tweet_action tweet_retweet" href="{retweet_url}">retweet</a>',o);o.favorite_action=t('<a class="tweet_action tweet_favorite" href="{favorite_url}">favorite</a>',o);return o;}
return this.each(function(i,widget){var list=$('<ul class="tweet_list">').appendTo(widget);var intro='<p class="tweet_intro">'+s.intro_text+'</p>';var outro='<p class="tweet_outro">'+s.outro_text+'</p>';var loading=$('<p class="loading">'+s.loading_text+'</p>');if(s.username&&typeof(s.username)=="string"){s.username=[s.username];}
if(s.loading_text)$(widget).append(loading);$(widget).bind("tweet:load",function(){$.getJSON(build_api_url(),function(data){if(s.loading_text)loading.remove();if(s.intro_text)list.before(intro);list.empty();var tweets=$.map(data.results||data,extract_template_data);tweets=$.grep(tweets,s.filter).sort(s.comparator).slice(0,s.count);list.append($.map(tweets,function(o){return"<li>"+t(s.template,o)+"</li>";}).join('')).
children('li:first').addClass('tweet_first').end().
children('li:odd').addClass('tweet_even').end().
children('li:even').addClass('tweet_odd');if(s.outro_text)list.after(outro);$(widget).trigger("loaded").trigger((tweets.length===0?"empty":"full"));if(s.refresh_interval){window.setTimeout(function(){$(widget).trigger("tweet:load");},1000*s.refresh_interval);}});}).trigger("tweet:load");});};})(jQuery);

/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 */
var Cufon=(function(){var K=function(){return K.replace.apply(null,arguments)};var U=K.DOM={ready:(function(){var Z=false,b={loaded:1,complete:1};var Y=[],a=function(){if(Z){return}Z=true;for(var c;c=Y.shift();c()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",a,false);window.addEventListener("pageshow",a,false)}if(!window.opera&&document.readyState){(function(){b[document.readyState]?a():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");a()}catch(c){setTimeout(arguments.callee,1)}})()}O(window,"load",a);return function(c){if(!arguments.length){a()}else{Z?c():Y.push(c)}}})()};var L=K.CSS={Size:function(Z,Y){this.value=parseFloat(Z);this.unit=String(Z).match(/[a-z%]*$/)[0]||"px";this.convert=function(a){return a/Y*this.value};this.convertFrom=function(a){return a/this.value*Y};this.toString=function(){return this.value+this.unit}},getStyle:function(Z){var Y=document.defaultView;if(Y&&Y.getComputedStyle){return new A(Y.getComputedStyle(Z,null))}if(Z.currentStyle){return new A(Z.currentStyle)}return new A(Z.style)},ready:(function(){var a=false;var Z=[],b=function(){a=true;for(var d;d=Z.shift();d()){}};var Y=Object.prototype.propertyIsEnumerable?F("style"):{length:0};var c=F("link");U.ready(function(){var g=0,f;for(var e=0,d=c.length;f=c[e],e<d;++e){if(!f.disabled&&f.rel.toLowerCase()=="stylesheet"){++g}}if(document.styleSheets.length>=Y.length+g){b()}else{setTimeout(arguments.callee,10)}});return function(d){if(a){d()}else{Z.push(d)}}})(),supports:function(a,Z){var Y=document.createElement("span").style;if(Y[a]===undefined){return false}Y[a]=Z;return Y[a]===Z},textAlign:function(b,a,Y,Z){if(a.get("textAlign")=="right"){if(Y>0){b=" "+b}}else{if(Y<Z-1){b+=" "}}return b},textDecoration:function(d,c){if(!c){c=this.getStyle(d)}var Z={underline:null,overline:null,"line-through":null};for(var Y=d;Y.parentNode&&Y.parentNode.nodeType==1;){var b=true;for(var a in Z){if(Z[a]){continue}if(c.get("textDecoration").indexOf(a)!=-1){Z[a]=c.get("color")}b=false}if(b){break}c=this.getStyle(Y=Y.parentNode)}return Z},textShadow:I(function(c){if(c=="none"){return null}var b=[],d={},Y,Z=0;var a=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(Y=a.exec(c)){if(Y[0]==","){b.push(d);d={},Z=0}else{if(Y[1]){d.color=Y[1]}else{d[["offX","offY","blur"][Z++]]=Y[2]}}}b.push(d);return b}),color:I(function(Z){var Y={};Y.color=Z.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(b,a,c){Y.opacity=parseFloat(c);return"rgb("+a+")"});return Y}),textTransform:function(Z,Y){return Z[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[Y.get("textTransform")]||"toString"]()}};function Q(Z){var Y=this.face=Z.face;this.glyphs=Z.glyphs;this.w=Z.w;this.baseSize=parseInt(Y["units-per-em"],10);this.family=Y["font-family"].toLowerCase();this.weight=Y["font-weight"];this.style=Y["font-style"]||"normal";this.viewBox=(function(){var a=Y.bbox.split(/\s+/);return{minX:parseInt(a[0],10),minY:parseInt(a[1],10),width:parseInt(a[2],10)-parseInt(a[0],10),height:parseInt(a[3],10)-parseInt(a[1],10),toString:function(){return[this.minX,this.minY,this.width,this.height].join(" ")}}})();this.ascent=-parseInt(Y.ascent,10);this.descent=-parseInt(Y.descent,10);this.height=-this.ascent+this.descent}function E(){var Z={},Y={oblique:"italic",italic:"oblique"};this.add=function(a){(Z[a.style]||(Z[a.style]={}))[a.weight]=a};this.get=function(e,f){var d=Z[e]||Z[Y[e]]||Z.normal||Z.italic||Z.oblique;if(!d){return null}f={normal:400,bold:700}[f]||parseInt(f,10);if(d[f]){return d[f]}var b={1:1,99:0}[f%100],h=[],c,a;if(b===undefined){b=f>400}if(f==500){f=400}for(var g in d){g=parseInt(g,10);if(!c||g<c){c=g}if(!a||g>a){a=g}h.push(g)}if(f<c){f=c}if(f>a){f=a}h.sort(function(j,i){return(b?(j>f&&i>f)?j<i:j>i:(j<f&&i<f)?j>i:j<i)?-1:1});return d[h[0]]}}function P(){function a(c,d){if(c.contains){return c.contains(d)}return c.compareDocumentPosition(d)&16}function Y(d){var c=d.relatedTarget;if(!c||a(this,c)){return}Z(this)}function b(c){Z(this)}function Z(c){setTimeout(function(){K.replace(c,D.get(c).options,true)},10)}this.attach=function(c){if(c.onmouseenter===undefined){O(c,"mouseover",Y);O(c,"mouseout",Y)}else{O(c,"mouseenter",b);O(c,"mouseleave",b)}}}function X(){var a={},Y=0;function Z(b){return b.cufid||(b.cufid=++Y)}this.get=function(b){var c=Z(b);return a[c]||(a[c]={})}}function A(Y){var a={},Z={};this.get=function(b){return a[b]!=undefined?a[b]:Y[b]};this.getSize=function(c,b){return Z[c]||(Z[c]=new L.Size(this.get(c),b))};this.extend=function(b){for(var c in b){a[c]=b[c]}return this}}function O(Z,Y,a){if(Z.addEventListener){Z.addEventListener(Y,a,false)}else{if(Z.attachEvent){Z.attachEvent("on"+Y,function(){return a.call(Z,window.event)})}}}function R(Z,Y){var a=D.get(Z);if(a.options){return Z}if(Y.hover&&Y.hoverables[Z.nodeName.toLowerCase()]){B.attach(Z)}a.options=Y;return Z}function I(Y){var Z={};return function(a){if(!Z.hasOwnProperty(a)){Z[a]=Y.apply(null,arguments)}return Z[a]}}function C(d,c){if(!c){c=L.getStyle(d)}var Z=c.get("fontFamily").split(/\s*,\s*/),b;for(var a=0,Y=Z.length;a<Y;++a){b=Z[a].replace(/^(["'])(.*?)\1$/,"$2").toLowerCase();if(H[b]){return H[b].get(c.get("fontStyle"),c.get("fontWeight"))}}return null}function F(Y){return document.getElementsByTagName(Y)}function G(){var Y={},b;for(var a=0,Z=arguments.length;a<Z;++a){for(b in arguments[a]){Y[b]=arguments[a][b]}}return Y}function M(b,k,Z,m,c,a){var j=m.separate;if(j=="none"){return W[m.engine].apply(null,arguments)}var h=document.createDocumentFragment(),e;var f=k.split(N[j]),Y=(j=="words");if(Y&&S){if(/^\s/.test(k)){f.unshift("")}if(/\s$/.test(k)){f.push("")}}for(var g=0,d=f.length;g<d;++g){e=W[m.engine](b,Y?L.textAlign(f[g],Z,g,d):f[g],Z,m,c,a,g<d-1);if(e){h.appendChild(e)}}return h}function J(Z,g){var a,Y,d,f;for(var b=R(Z,g).firstChild;b;b=d){d=b.nextSibling;f=false;if(b.nodeType==1){if(!b.firstChild){continue}if(!/cufon/.test(b.className)){arguments.callee(b,g);continue}else{f=true}}if(!Y){Y=L.getStyle(Z).extend(g)}if(!a){a=C(Z,Y)}if(!a){continue}if(f){W[g.engine](a,null,Y,g,b,Z);continue}var e=b.data;if(e===""){continue}var c=M(a,e,Y,g,b,Z);if(c){b.parentNode.replaceChild(c,b)}else{b.parentNode.removeChild(b)}}}var S=" ".split(/\s+/).length==0;var D=new X();var B=new P();var V=[];var W={},H={},T={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||window.jQuery||(window.dojo&&dojo.query)||(window.$$&&function(Y){return $$(Y)})||(window.$&&function(Y){return $(Y)})||(document.querySelectorAll&&function(Y){return document.querySelectorAll(Y)})||F),separate:"words",textShadow:"none"};var N={words:/\s+/,characters:""};K.now=function(){U.ready();return K};K.refresh=function(){var a=V.splice(0,V.length);for(var Z=0,Y=a.length;Z<Y;++Z){K.replace.apply(null,a[Z])}return K};K.registerEngine=function(Z,Y){if(!Y){return K}W[Z]=Y;return K.set("engine",Z)};K.registerFont=function(a){var Y=new Q(a),Z=Y.family;if(!H[Z]){H[Z]=new E()}H[Z].add(Y);return K.set("fontFamily",Z)};K.replace=function(a,Z,Y){Z=G(T,Z);if(!Z.engine){return K}if(typeof Z.textShadow=="string"){Z.textShadow=L.textShadow(Z.textShadow)}if(!Y){V.push(arguments)}if(a.nodeType||typeof a=="string"){a=[a]}L.ready(function(){for(var c=0,b=a.length;c<b;++c){var d=a[c];if(typeof d=="string"){K.replace(Z.selector(d),Z,true)}else{J(d,Z)}}});return K};K.set=function(Y,Z){T[Y]=Z;return K};return K})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return null}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("@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle"+(E?"":";font-size:1px;line-height:1px")+"}.cufon-canvas .cufon-alt{display:none}"+(A?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(q,T,k,P,X,r){var I=(T===null);var V=q.viewBox;var J=k.getSize("fontSize",q.baseSize);var h=k.get("letterSpacing");h=(h=="normal")?0:J.convertFrom(parseInt(h,10));var W=0,j=0,f=0,R=0;var U=P.textShadow,d=[];if(U){for(var p=0,m=U.length;p<m;++p){var Z=U[p];var c=J.convertFrom(parseFloat(Z.offX));var b=J.convertFrom(parseFloat(Z.offY));d[p]=[c,b];if(b<W){W=b}if(c>j){j=c}if(b>f){f=b}if(c<R){R=c}}}var u=Cufon.CSS.textTransform(I?X.alt:T,k).split("");var G=0,S=null;for(var p=0,m=u.length;p<m;++p){var Q=q.glyphs[u[p]]||q.missingGlyph;if(!Q){continue}G+=S=Number(Q.w||q.w)+h}if(S===null){return null}j+=(V.width-S);R+=V.minX;var O,K;if(I){O=X;K=X.firstChild}else{O=document.createElement("span");O.className="cufon cufon-canvas";O.alt=T;K=document.createElement("canvas");O.appendChild(K);if(P.printable){var n=document.createElement("span");n.className="cufon-alt";n.appendChild(document.createTextNode(T));O.appendChild(n)}}var v=O.style;var a=K.style;var H=J.convert(V.height-W+f);var t=Math.ceil(H);var e=t/H;K.width=Math.ceil(J.convert(G+j-R)*e);K.height=t;W+=V.minY;a.top=Math.round(J.convert(W-q.ascent))+"px";a.left=Math.round(J.convert(R))+"px";var N=Math.ceil(J.convert(G*e))+"px";if(A){v.width=N;v.height=J.convert(q.height)+"px"}else{v.paddingLeft=N;v.paddingBottom=(J.convert(q.height)-1)+"px"}var s=K.getContext("2d"),Y=t/V.height;s.scale(Y,Y);s.translate(-R,-W);s.lineWidth=q.face["underline-thickness"];s.save();function L(i,g){s.strokeStyle=g;s.beginPath();s.moveTo(0,i);s.lineTo(G,i);s.stroke()}var M=P.enableTextDecoration?Cufon.CSS.textDecoration(r,k):{};if(M.underline){L(-q.face["underline-position"],M.underline)}if(M.overline){L(q.ascent,M.overline)}s.fillStyle=k.get("color");function o(){for(var w=0,g=u.length;w<g;++w){var x=q.glyphs[u[w]]||q.missingGlyph;if(!x){continue}s.beginPath();if(x.d){if(x.code){C(x.code,s)}else{x.code=D("m"+x.d,s)}}s.fill();s.translate(Number(x.w||q.w)+h,0)}}if(U){for(var p=0,m=U.length;p<m;++p){var Z=U[p];s.save();s.fillStyle=Z.color;s.translate.apply(s,d[p]);o();s.restore()}}o();s.restore();if(M["line-through"]){L(-q.descent,M["line-through"])}return O}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}document.write('<!--[if vml]><script type="text/javascript">Cufon.vmlEnabled=true;<\/script><![endif]-->');if(!Cufon.vmlEnabled){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml");document.write('<style type="text/css">@media screen{cvml\\:shape,cvml\\:group,cvml\\:shapetype,cvml\\:fill{behavior:url(#default#VML);display:inline-block;antialias:true;position:absolute}.cufon-vml{display:inline-block;position:relative;vertical-align:middle}.cufon-vml .cufon-alt{display:none}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none}.cufon-vml .cufon-alt{display:inline}}</style>')}var C=0;function B(E,F){return A(E,/(?:em|ex|%)$/i.test(F)?"1em":F)}function A(H,I){if(/px$/i.test(I)){return parseFloat(I)}var G=H.style.left,F=H.runtimeStyle.left;H.runtimeStyle.left=H.currentStyle.left;H.style.left=I;var E=H.style.pixelLeft;H.style.left=G;H.runtimeStyle.left=F;return E}function D(F,H){var E=document.createElement("cvml:shapetype");E.id="cufon-glyph-"+C++;F.typeRef="#"+E.id;E.stroked="f";E.coordsize=H.width+","+H.height;E.coordorigin=H.minX+","+H.minY;var G="m"+H.minX+","+H.minY+" r"+H.width+","+H.height;E.path=(F.d?"m"+F.d+"x":"")+G;document.body.insertBefore(E,document.body.firstChild)}return function(n,T,f,P,W,o,d){var G=(T===null);if(G){T=W.alt}var V=n.viewBox;var H=f.computedFontSize||(f.computedFontSize=new Cufon.CSS.Size(B(o,f.get("fontSize"))+"px",n.baseSize));var c=f.computedLSpacing;if(c==undefined){c=f.get("letterSpacing");f.computedLSpacing=c=(c=="normal")?0:H.convertFrom(A(o,c))}var O,I;if(G){O=W;I=W.firstChild}else{O=document.createElement("span");O.className="cufon cufon-vml";O.alt=T;I=document.createElement("cvml:group");O.appendChild(I);if(P.printable){var j=document.createElement("span");j.className="cufon-alt";j.innerText=T;O.appendChild(j)}if(!d){O.appendChild(document.createElement("cvml:group"))}}var u=O.style;var Y=I.style;var F=H.convert(V.height);Y.height=Math.ceil(F);Y.top=Math.round(H.convert(V.minY-n.ascent));Y.left=Math.round(H.convert(V.minX));var b=parseInt(Y.height,10)/F;u.height=H.convert(-n.ascent+n.descent)+"px";var K=P.enableTextDecoration?Cufon.CSS.textDecoration(o,f):{};var S=f.get("color");var s=Cufon.CSS.textTransform(T,f).split("");var E=0,a=0,L=null;var U=P.textShadow;for(var m=0,h=-1,g=s.length;m<g;++m){var Q=n.glyphs[s[m]]||n.missingGlyph,M;if(!Q){continue}if(!Q.typeRef){D(Q,V)}if(G){M=I.childNodes[++h]}else{M=document.createElement("cvml:shape");I.appendChild(M)}M.type=Q.typeRef;var q=M.style;q.width=V.width;q.height=V.height;q.top=0;q.left=a;q.zIndex=1;M.fillcolor=S;if(U){for(var Z=0,e=U.length;Z<e;++Z){var X=U[Z];var t=Cufon.CSS.color(X.color);var J=M.cloneNode(false),R=J.runtimeStyle;R.top=H.convertFrom(parseFloat(X.offY));R.left=a+H.convertFrom(parseFloat(X.offX));R.zIndex=0;J.fillcolor=t.color;if(t.opacity){var r=document.createElement("cvml:fill");r.opacity=t.opacity;J.appendChild(r)}I.appendChild(J)}++h}L=Number(Q.w||n.w)+c;E+=L;a+=L}if(L===null){return null}var N=-V.minX+E+(V.width-L);I.coordsize=N+","+V.height;Y.width=H.convert(N*b);u.width=Math.max(Math.ceil(H.convert(E*b)),0);return O}})());

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1987, 1991, 1992, 1993 Adobe Systems Incorporated. All Rights
 * Reserved.Futura is a registered trademark of Fundicion Tipografica Neufville
 * S.A.
 */
Cufon.registerFont({"w":147,"face":{"font-family":"Futura LT","font-weight":500,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 0 6 6 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"3","bbox":"-39 -302.298 278.046 77","underline-thickness":"18","underline-position":"-36","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":73},"!":{"d":"28,-271r36,0r0,206r-36,0r0,-206xm67,-19v0,12,-9,23,-22,22v-12,0,-21,-10,-21,-22v0,-12,9,-21,21,-21v12,0,22,9,22,21","w":90},"\"":{"d":"10,-190r-4,-81r31,0r-4,81r-23,0xm58,-190r-5,-81r31,0r-4,81r-22,0","w":90},"#":{"d":"-4,0r28,-93r-38,0r6,-21r39,0r14,-45r-40,0r7,-21r39,0r28,-91r20,0r-28,91r32,0r27,-91r20,0r-28,91r40,0r-6,21r-40,0r-14,45r41,0r-6,21r-41,0r-29,93r-19,0r28,-93r-31,0r-30,93r-19,0xm51,-114r31,0r14,-45r-32,0"},"$":{"d":"23,-157v-23,-39,-10,-116,43,-114r0,-24r16,0r0,24v28,2,45,15,52,40r-27,16v-2,-15,-16,-26,-32,-26v-23,0,-35,19,-29,44v14,58,92,45,92,121v0,47,-19,72,-56,76r0,24r-16,0r0,-24v-30,-3,-44,-15,-53,-41r29,-14v10,38,61,33,61,-16v0,-50,-63,-57,-80,-86"},"%":{"d":"15,-210v0,-34,6,-65,39,-65v33,0,38,32,38,65v0,33,-5,64,-38,64v-33,0,-39,-30,-39,-64xm107,-61v0,-34,5,-65,38,-65v33,0,39,31,39,65v0,34,-6,64,-39,64v-33,0,-38,-30,-38,-64xm156,-271r22,0r-135,271r-22,0xm145,-18v22,-5,18,-68,5,-85v-27,-6,-19,42,-18,70v3,6,4,15,13,15xm54,-253v-23,5,-19,69,-5,85v26,5,20,-45,17,-70v-1,-7,-4,-15,-12,-15","w":199},"&":{"d":"129,-203v-1,33,-20,50,-40,71r35,59r23,-31r23,18r-29,41r29,45r-40,0r-13,-21v-33,52,-108,14,-108,-43v0,-23,13,-48,38,-73v-33,-42,-31,-114,30,-115v29,-1,53,20,52,49xm64,-109v-29,24,-27,82,10,82v11,0,21,-7,28,-19xm80,-225v-34,1,-18,51,-7,66v14,-13,26,-21,26,-44v0,-12,-6,-22,-19,-22","w":177},"(":{"d":"47,-275r33,8v-43,112,-40,189,0,299r-33,9v-42,-103,-43,-216,0,-316","w":99},")":{"d":"53,-275v43,100,42,213,0,316r-34,-9v40,-110,43,-187,0,-299","w":99},"*":{"d":"57,-271r14,0r0,47r40,-25r7,12r-42,24r42,23r-7,13r-40,-25r1,47r-15,0r1,-48r-39,26r-9,-13r41,-23r-41,-21r7,-13r41,23","w":128},"+":{"d":"77,-105r0,-78r26,0r0,78r62,0r0,25r-62,0r0,79r-26,0r0,-79r-61,0r0,-25r61,0","w":180},",":{"d":"27,-38r30,9r-35,95r-19,-5","w":73},"-":{"d":"12,-107r64,0r0,27r-64,0r0,-27","w":87},".":{"d":"59,-19v0,27,-44,28,-44,0v0,-11,10,-21,22,-21v12,0,22,10,22,21","w":73},"\/":{"d":"129,-299r28,0r-138,336r-29,0","w":146},"0":{"d":"13,-108v0,-73,-9,-167,61,-167v70,0,62,95,62,167v0,52,-7,111,-62,111v-54,0,-61,-58,-61,-111xm74,-29v41,-14,26,-92,26,-148v0,-26,-1,-63,-26,-65v-40,15,-26,91,-26,147v0,27,2,63,26,66"},"1":{"d":"30,-271r62,0r0,271r-35,0r0,-240r-27,0r0,-31"},"2":{"d":"75,-242v-25,2,-22,34,-21,59r-37,0v-2,-52,7,-92,58,-92v44,0,57,23,60,67v3,36,-43,130,-69,177r67,0r0,31r-120,0v27,-64,86,-135,86,-210v0,-17,-6,-32,-24,-32"},"3":{"d":"97,-67v2,-33,-3,-64,-42,-58r0,-32v38,3,43,-17,41,-55v-1,-13,-5,-30,-20,-30v-16,0,-24,18,-22,43v-10,-2,-27,3,-34,-2v-1,-45,11,-74,55,-74v70,0,74,117,26,135v26,6,34,30,33,63v0,54,-20,80,-62,80v-41,1,-59,-25,-57,-71r34,0v-1,21,4,39,23,39v19,0,24,-19,25,-38"},"4":{"d":"119,-271r0,170r17,0r0,26r-17,0r0,75r-35,0r0,-75r-74,0r0,-30r74,-166r35,0xm84,-101r-1,-115r-44,115r45,0"},"5":{"d":"24,-40v41,30,73,-6,73,-50v0,-45,-29,-60,-69,-50r16,-131r86,0r0,31r-59,0r-8,68v48,-2,69,30,71,77v3,73,-53,120,-119,87"},"6":{"d":"15,-89v2,-79,28,-126,56,-182r38,0r-52,116v43,-35,85,14,75,73v2,50,-10,85,-58,85v-49,0,-59,-42,-59,-92xm75,-135v-24,0,-23,28,-23,53v0,35,8,53,23,53v18,5,24,-41,20,-73v-2,-16,-4,-33,-20,-33"},"7":{"d":"14,-271r121,0r-82,271r-39,0r75,-240r-75,0r0,-31"},"8":{"d":"15,-76v-1,-36,6,-64,33,-72v-20,-6,-30,-26,-30,-60v1,-41,13,-67,54,-67v44,1,57,22,58,67v0,34,-9,54,-29,61v21,5,32,28,32,66v0,48,-11,84,-59,84v-39,0,-59,-26,-59,-79xm74,-128v-35,2,-27,101,0,99v19,3,23,-32,22,-61v-1,-16,-5,-38,-22,-38xm54,-204v0,18,3,41,20,41v30,0,25,-79,0,-79v-13,0,-20,13,-20,38"},"9":{"d":"74,-275v75,-2,63,107,49,166v-7,29,-31,77,-47,109r-39,0r53,-114v-39,29,-76,-1,-74,-68v2,-51,7,-92,58,-93xm53,-188v0,23,-1,51,21,52v16,1,22,-21,22,-54v0,-35,-7,-52,-22,-52v-14,0,-21,18,-21,54"},":":{"d":"59,-19v0,27,-44,28,-44,0v0,-11,10,-21,22,-21v12,0,22,10,22,21xm59,-163v0,27,-44,28,-44,0v0,-11,10,-21,22,-21v12,0,22,10,22,21","w":73},";":{"d":"28,-38r29,9r-35,95r-18,-5xm59,-163v0,27,-44,28,-44,0v0,-11,10,-21,22,-21v12,0,22,10,22,21","w":73},"<":{"d":"16,-80r0,-23r149,-83r0,26r-121,69r121,68r0,27","w":180},"=":{"d":"165,-138r0,25r-149,0r0,-25r149,0xm165,-70r0,25r-149,0r0,-25r149,0","w":180},">":{"d":"165,-103r0,23r-149,84r0,-27r120,-68r-120,-69r0,-26","w":180},"?":{"d":"113,-219v2,41,6,96,-37,97r0,58r-32,0r0,-82v39,9,38,-35,34,-72v-1,-12,-3,-26,-16,-26v-18,0,-16,23,-16,40r-34,0v-1,-40,7,-71,48,-71v36,0,52,23,53,56xm81,-19v0,12,-9,22,-21,22v-12,0,-23,-9,-22,-22v0,-12,10,-21,22,-21v12,0,21,9,21,21","w":122},"@":{"d":"155,-219v19,0,35,10,41,25r6,-18r24,0r-42,130v0,6,5,11,11,11v32,-2,60,-48,60,-89v0,-56,-48,-93,-105,-93v-65,0,-117,54,-117,119v0,63,53,117,117,115v42,0,80,-19,97,-46r23,0v-20,38,-67,68,-120,69v-77,1,-140,-64,-140,-141v0,-75,66,-138,141,-138v66,0,129,51,127,116v-2,53,-36,107,-88,107v-14,0,-29,-7,-32,-19v-32,36,-97,13,-94,-37v3,-57,35,-111,91,-111xm155,-195v-45,2,-75,66,-55,109v43,35,81,-42,80,-85v0,-13,-11,-25,-25,-24","w":288},"A":{"d":"60,-271r29,0r58,271r-36,0r-10,-53r-54,0r-10,53r-36,0xm95,-81v-10,-43,-12,-94,-21,-138r-22,138r43,0","w":149,"k":{"y":6,"w":6,"v":6,"Y":20,"W":6,"V":13,"T":13}},"B":{"d":"134,-74v3,69,-44,78,-112,74r0,-271v66,-5,108,5,108,72v0,33,-11,52,-35,61v27,9,37,29,39,64xm56,-31v47,11,44,-55,31,-81v-5,-8,-16,-11,-31,-11r0,92xm56,-152v32,1,38,-15,38,-48v0,-26,-9,-44,-38,-41r0,89","w":150},"C":{"d":"127,-234v-59,-28,-76,40,-74,100v2,80,22,119,74,98r0,32v-70,28,-112,-24,-112,-127v0,-111,37,-164,112,-136r0,33","w":132},"D":{"d":"153,-131v3,93,-28,144,-131,131r0,-271r59,0v64,5,70,70,72,140xm58,-31v77,4,60,-99,53,-167v-3,-26,-21,-44,-53,-43r0,210","w":167},"E":{"d":"22,-271r97,0r0,31r-61,0r0,85r54,0r0,32r-54,0r0,92r61,0r0,31r-97,0r0,-271","w":124},"F":{"d":"22,-271r98,0r0,31r-62,0r0,85r55,0r0,32r-55,0r0,123r-36,0r0,-271","w":123,"k":{"A":13,".":40,",":40}},"G":{"d":"85,-30v36,-1,29,-44,31,-82r-30,0r0,-31r66,0v1,72,3,147,-65,147v-81,0,-73,-97,-71,-176v1,-53,13,-104,68,-103v41,1,56,21,66,55r-34,14v-4,-18,-9,-35,-31,-35v-41,0,-32,61,-32,106v0,47,-4,97,32,105","w":165},"H":{"d":"22,-271r36,0r0,105r54,0r0,-105r36,0r0,271r-36,0r0,-134r-54,0r0,134r-36,0r0,-271","w":170},"I":{"d":"58,-271r0,271r-36,0r0,-271r36,0","w":79},"J":{"d":"3,-40v26,20,48,6,48,-29r0,-202r36,0r0,204v8,56,-38,86,-84,63r0,-36","w":109},"K":{"d":"22,-271r37,0r0,130r50,-130r38,0r-54,131r58,140r-42,0r-50,-138r0,138r-37,0r0,-271","w":152},"L":{"d":"22,-271r36,0r0,240r60,0r0,31r-96,0r0,-271","w":119,"k":{"y":13,"Y":25,"W":18,"V":21,"T":21}},"M":{"d":"31,-271r31,0r39,195v9,-68,23,-130,35,-195r32,0r25,271r-35,0r-10,-187r-34,187r-25,0r-36,-187r-10,187r-34,0","w":201},"N":{"d":"51,-209r7,109r0,100r-36,0r0,-271r35,0r63,206v1,-34,-8,-74,-8,-110r0,-96r36,0r0,271r-34,0","w":169},"O":{"d":"15,-112v0,-76,-3,-163,71,-163v74,0,70,88,70,163v0,57,-11,116,-70,116v-59,0,-71,-59,-71,-116xm86,-30v49,-7,32,-135,26,-184v-2,-18,-13,-27,-26,-27v-36,0,-33,55,-33,105v0,51,-3,99,33,106","w":171},"P":{"d":"136,-199v-1,56,-21,81,-78,79r0,120r-36,0r0,-271r63,0v35,4,51,31,51,72xm58,-151v31,1,39,-14,40,-45v0,-32,-13,-47,-40,-45r0,90","w":139,"k":{"A":11,".":46,",":46}},"Q":{"d":"86,-275v66,0,69,72,70,139v0,48,-5,84,-16,106r25,34r-24,17r-19,-29v-9,7,-21,12,-36,12v-73,-4,-71,-86,-71,-163v0,-56,11,-116,71,-116xm53,-136v0,51,-3,99,33,106v6,0,10,-2,14,-6r-22,-33r22,-17v5,6,8,14,14,19v6,-51,5,-110,-2,-147v-4,-18,-13,-27,-26,-27v-36,0,-33,55,-33,105","w":172},"R":{"d":"82,-271v66,-3,66,127,13,139r50,132r-37,0r-50,-133r0,133r-36,0r0,-271r60,0xm94,-194v0,-30,-5,-49,-36,-47r0,90v24,2,36,-13,36,-43","w":149,"k":{"Y":6,"W":3,"V":3,"T":6}},"S":{"d":"7,-206v0,-54,53,-86,99,-60r-1,36v-25,-22,-65,-9,-62,24v6,61,76,68,76,139v0,56,-60,92,-104,58r0,-37v27,23,71,17,68,-23v-5,-62,-76,-67,-76,-137","w":127},"T":{"d":"-1,-271r119,0r0,31r-41,0r0,240r-36,0r0,-240r-42,0r0,-31","w":116,"k":{"y":17,"w":17,"u":14,"s":17,"r":14,"o":17,"i":3,"e":17,"c":17,"a":17,"A":13,";":14,":":14,".":24,"-":14,",":17}},"U":{"d":"84,4v-51,0,-62,-35,-62,-88r0,-187r36,0r0,199v0,27,4,42,25,42v25,0,28,-13,28,-38r0,-203r36,0r-1,208v1,43,-19,68,-62,67","w":168},"V":{"d":"3,-271r36,0r31,204r33,-204r34,0r-53,271r-29,0","w":139,"k":{"u":6,"r":6,"o":6,"e":6,"a":6,"A":13,";":6,":":6,".":33,"-":6,",":33}},"W":{"d":"1,-271r35,0r28,204r29,-204r28,0r31,202r9,-87r17,-115r35,0r-48,271r-29,0r-29,-202v-6,71,-19,136,-30,202r-29,0","w":213,"k":{"u":3,"r":3,"o":6,"e":6,"a":6,"A":6,";":6,":":6,".":27,"-":6,",":27}},"X":{"d":"12,-271r36,0r32,97r29,-97r36,0r-50,133r50,138r-36,0v-10,-28,-29,-77,-32,-102v-4,33,-20,71,-29,102r-39,0r51,-138","w":153},"Y":{"d":"1,-271r39,0r33,125v7,-45,19,-84,29,-125r39,0r-51,154r0,117r-36,0r0,-117","w":141,"k":{"v":6,"u":13,"q":20,"p":13,"o":20,"i":3,"e":20,"a":20,"A":20,";":13,":":13,".":26,"-":27,",":26}},"Z":{"d":"15,-271r120,0r-82,240r78,0r0,31r-126,0r83,-240r-73,0r0,-31","w":141},"[":{"d":"14,-271r79,0r0,24r-48,0r0,260r48,0r0,24r-79,0r0,-308","w":108},"\\":{"d":"-39,-299r29,0r139,336r-29,0","w":90},"]":{"d":"15,-271r79,0r0,308r-79,0r0,-24r48,0r0,-260r-48,0r0,-24","w":108},"^":{"d":"81,-271r18,0r66,150r-25,0r-50,-117r-50,117r-24,0","w":180},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"a":{"d":"11,-75v-1,-47,-3,-110,43,-110v15,0,26,8,33,23r0,-20r34,0r0,182r-34,0r0,-23v-8,16,-14,26,-34,26v-36,0,-40,-42,-42,-78xm46,-124v0,38,-10,91,21,97v14,3,23,-27,22,-64v-2,-38,0,-58,-22,-63v-17,0,-18,16,-21,30","w":136},"b":{"d":"84,3v-21,0,-25,-12,-35,-26r0,23r-34,0r0,-299r34,0r1,137v7,-14,14,-23,32,-23v47,0,45,61,44,110v-1,37,-7,78,-42,78xm48,-94v0,37,-1,62,21,67v32,-7,22,-59,22,-97v-4,-14,-5,-30,-22,-30v-14,0,-21,19,-21,60","w":136},"c":{"d":"10,-89v0,-59,23,-114,81,-90r0,35v-27,-22,-47,1,-46,51v0,52,15,77,46,57r0,32v-51,23,-81,-11,-81,-85","w":100},"d":{"d":"54,-185v18,0,26,9,33,23r0,-137r34,0r0,299r-34,0r0,-23v-8,16,-14,26,-34,26v-48,0,-44,-69,-42,-118v1,-32,8,-70,43,-70xm46,-124v0,38,-10,91,21,97v14,3,23,-27,22,-64v-2,-38,0,-58,-22,-63v-17,0,-18,16,-21,30","w":136},"e":{"d":"10,-90v0,-48,8,-93,55,-95v39,-2,56,38,55,101r-75,0v0,38,7,57,21,57v14,0,21,-11,21,-34r32,0v0,35,-17,65,-53,64v-48,-1,-56,-44,-56,-93xm65,-154v-21,0,-20,25,-20,46r40,0v0,-31,-6,-46,-20,-46","w":129},"f":{"d":"88,-261v-18,-13,-30,3,-30,24r0,55r28,0r0,27r-28,0r0,155r-34,0r0,-155r-16,0r0,-27r16,0v-2,-60,-8,-142,64,-115r0,36","w":89},"g":{"d":"54,-185v19,0,26,10,33,25v3,-5,0,-15,1,-22r34,0r0,183v0,47,-7,76,-55,76v-35,0,-57,-19,-54,-57r33,0v-6,28,34,37,41,12v-1,-17,3,-39,0,-54v-3,15,-15,25,-32,25v-47,0,-45,-60,-45,-107v0,-38,6,-81,44,-81xm67,-27v24,-3,21,-35,21,-63v0,-43,-7,-64,-22,-64v-16,0,-21,26,-21,62v1,37,0,59,22,65","w":137},"h":{"d":"70,-154v-21,-1,-20,20,-20,41r0,113r-34,0r0,-299r34,0r0,138v23,-45,87,-21,74,36r0,125r-34,0r0,-126v0,-19,-7,-28,-20,-28","w":139},"i":{"d":"49,-182r0,182r-34,0r0,-182r34,0xm55,-237v0,12,-10,23,-22,23v-12,0,-23,-11,-23,-23v0,-12,10,-22,23,-22v12,0,22,10,22,22","w":64},"j":{"d":"49,-182r0,257r-34,0r0,-257r34,0xm55,-237v0,12,-9,24,-22,23v-12,0,-23,-11,-23,-23v0,-12,10,-22,23,-22v12,0,21,11,22,22","w":64},"k":{"d":"16,-299r34,0r0,198r43,-81r37,0r-46,81r52,101r-39,0r-47,-96r0,96r-34,0r0,-299","w":142},"l":{"d":"49,-299r0,299r-34,0r0,-299r34,0","w":64},"m":{"d":"89,-123v9,-33,-36,-43,-38,-11v-3,41,-1,90,-2,134r-34,0r0,-182r35,0r0,23v11,-34,62,-34,69,0v15,-38,78,-35,78,18r0,141r-34,0r0,-127v6,-29,-33,-37,-39,-12r-1,139r-34,0r0,-123","w":212},"n":{"d":"70,-154v-21,-1,-20,20,-20,41r0,113r-34,0r0,-182r34,0r0,21v23,-45,87,-21,74,36r0,125r-34,0r0,-126v0,-19,-7,-28,-20,-28","w":139},"o":{"d":"125,-90v0,49,-9,93,-57,93v-49,0,-58,-44,-58,-93v0,-50,10,-95,58,-95v47,0,57,45,57,95xm68,-154v-36,7,-26,87,-14,119v27,19,39,-14,36,-50v-2,-28,5,-65,-22,-69","w":135},"p":{"d":"82,3v-19,0,-24,-12,-33,-24r0,96r-34,0r0,-257r34,0v1,7,-2,18,1,24v7,-16,13,-27,34,-27v48,0,42,67,42,118v0,33,-9,70,-44,70xm92,-91v0,-28,2,-60,-23,-63v-15,-2,-22,26,-21,63v1,38,0,58,21,64v24,-3,23,-32,23,-64","w":136},"q":{"d":"53,-185v21,0,27,11,34,27r0,-24r34,0r0,257r-34,0r0,-96v-7,14,-14,24,-33,24v-45,0,-45,-62,-43,-107v1,-38,5,-81,42,-81xm46,-124v0,38,-10,91,21,97v15,3,23,-27,22,-66v0,-41,-8,-61,-22,-61v-17,0,-18,16,-21,30","w":136},"r":{"d":"89,-151v-64,-7,-31,95,-39,151r-34,0r0,-182r34,0r0,23v8,-17,22,-26,39,-26r0,34","w":96,"k":{"z":-7,"y":-6,"x":-7,"w":-6,"v":-6,".":27,"-":13,",":27}},"s":{"d":"5,-135v0,-40,45,-63,79,-42r0,32v-13,-13,-47,-13,-48,10v8,37,57,36,57,84v0,44,-45,69,-82,45r0,-33v18,17,51,17,51,-11v0,-39,-57,-38,-57,-85","w":99},"t":{"d":"23,-233r34,0r0,51r18,0r0,27r-18,0r0,155r-34,0r0,-155r-19,0r0,-27r19,0r0,-51","w":79},"u":{"d":"72,3v-86,0,-47,-112,-56,-185r34,0r1,137v0,21,39,22,39,1r1,-138r34,0v-7,72,28,185,-53,185","w":140},"v":{"d":"5,-182r36,0r25,138v6,-48,16,-93,25,-138r33,0r-48,182r-22,0","w":128,"k":{".":20,",":24}},"w":{"d":"-1,-182r36,0r20,131r22,-131r24,0r21,131r21,-131r33,0r-42,182r-23,0v-8,-44,-20,-84,-22,-134r-22,134r-24,0","w":175,"k":{".":9,",":13}},"x":{"d":"5,-182r40,0r25,62v7,-22,15,-42,24,-62r35,0r-41,86r50,96r-40,0v-10,-19,-25,-58,-31,-74v-2,18,-18,55,-27,74r-35,0r45,-96","w":142},"y":{"d":"1,-182r38,0r28,127r30,-127r34,0r-74,257r-35,0r28,-90","w":134,"k":{".":20,",":24}},"z":{"d":"10,-182r106,0r-61,152r57,0r0,30r-107,0r63,-152r-58,0r0,-30","w":120},"{":{"d":"92,36v-38,1,-59,-9,-59,-48v0,-42,15,-95,-32,-96r0,-19v77,-1,-22,-160,91,-144r0,20v-65,-1,7,125,-62,134v44,3,31,57,33,101v0,23,7,29,29,31r0,21","w":92},"|":{"d":"32,-283r26,0r0,360r-26,0r0,-360","w":90},"}":{"d":"60,-79v0,59,12,126,-59,115r0,-21v64,1,-7,-125,62,-133v-43,-4,-31,-57,-33,-102v-1,-22,-7,-29,-29,-31r0,-20v38,-2,59,8,59,47v0,42,-15,96,32,97r0,19v-21,2,-32,12,-32,29","w":92},"~":{"d":"16,-77v11,-20,18,-39,42,-42v12,-2,58,25,65,25v11,0,20,-10,29,-30r13,17v-12,27,-26,40,-42,40v-5,4,-52,-26,-65,-25v-19,2,-23,16,-30,33","w":180},"'":{"d":"34,-190r-4,-81r30,0r-4,81r-22,0","w":90},"`":{"d":"24,-253r24,-16r29,54r-18,11","w":100},"\u00a0":{"w":73}}});


