/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 */
var Cufon=(function(){var api=function(){return api.replace.apply(null,arguments);};var DOM=api.DOM={ready:(function(){var complete=false,readyStatus={loaded:1,complete:1};var queue=[],perform=function(){if(complete)return;complete=true;for(var fn;fn=queue.shift();fn());};if(document.addEventListener){document.addEventListener('DOMContentLoaded',perform,false);window.addEventListener('pageshow',perform,false);}
if(!window.opera&&document.readyState)(function(){readyStatus[document.readyState]?perform():setTimeout(arguments.callee,10);})();if(document.readyState&&document.createStyleSheet)(function(){try{document.body.doScroll('left');perform();}
catch(e){setTimeout(arguments.callee,1);}})();addEvent(window,'load',perform);return function(listener){if(!arguments.length)perform();else complete?listener():queue.push(listener);};})(),root:function(){return document.documentElement||document.body;}};var CSS=api.CSS={Size:function(value,base){this.value=parseFloat(value);this.unit=String(value).match(/[a-z%]*$/)[0]||'px';this.convert=function(value){return value/base*this.value;};this.convertFrom=function(value){return value/this.value*base;};this.toString=function(){return this.value+this.unit;};},addClass:function(el,className){var current=el.className;el.className=current+(current&&' ')+className;return el;},color:cached(function(value){var parsed={};parsed.color=value.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function($0,$1,$2){parsed.opacity=parseFloat($2);return'rgb('+$1+')';});return parsed;}),fontStretch:cached(function(value){if(typeof value=='number')return value;if(/%$/.test(value))return parseFloat(value)/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}[value]||1;}),getStyle:function(el){var view=document.defaultView;if(view&&view.getComputedStyle)return new Style(view.getComputedStyle(el,null));if(el.currentStyle)return new Style(el.currentStyle);return new Style(el.style);},gradient:cached(function(value){var gradient={id:value,type:value.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},colors=value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var i=0,l=colors.length,stop;i<l;++i){stop=colors[i].split('=',2).reverse();gradient.stops.push([stop[1]||i/(l-1),stop[0]]);}
return gradient;}),quotedList:cached(function(value){var list=[],re=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,match;while(match=re.exec(value))list.push(match[3]||match[1]);return list;}),recognizesMedia:cached(function(media){var el=document.createElement('style'),sheet,container,supported;el.type='text/css';el.media=media;try{el.appendChild(document.createTextNode('/**/'));}catch(e){}
container=elementsByTagName('head')[0];container.insertBefore(el,container.firstChild);sheet=(el.sheet||el.styleSheet);supported=sheet&&!sheet.disabled;container.removeChild(el);return supported;}),removeClass:function(el,className){var re=RegExp('(?:^|\\s+)'+className+'(?=\\s|$)','g');el.className=el.className.replace(re,'');return el;},supports:function(property,value){var checker=document.createElement('span').style;if(checker[property]===undefined)return false;checker[property]=value;return checker[property]===value;},textAlign:function(word,style,position,wordCount){if(style.get('textAlign')=='right'){if(position>0)word=' '+word;}
else if(position<wordCount-1)word+=' ';return word;},textDecoration:function(el,style){if(!style)style=this.getStyle(el);var types={underline:null,overline:null,'line-through':null};for(var search=el;search.parentNode&&search.parentNode.nodeType==1;){var foundAll=true;for(var type in types){if(!hasOwnProperty(types,type)||types[type])continue;if(style.get('textDecoration').indexOf(type)!=-1)types[type]=style.get('color');foundAll=false;}
if(foundAll)break;style=this.getStyle(search=search.parentNode);}
return types;},textShadow:cached(function(value){if(value=='none')return null;var shadows=[],currentShadow={},result,offCount=0;var re=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(result=re.exec(value)){if(result[0]==','){shadows.push(currentShadow);currentShadow={};offCount=0;}
else if(result[1]){currentShadow.color=result[1];}
else{currentShadow[['offX','offY','blur'][offCount++]]=result[2];}}
shadows.push(currentShadow);return shadows;}),textTransform:(function(){var map={uppercase:function(s){return s.toUpperCase();},lowercase:function(s){return s.toLowerCase();},capitalize:function(s){return s.replace(/\b./g,function($0){return $0.toUpperCase();});}};return function(text,style){var transform=map[style.get('textTransform')];return transform?transform(text):text;};})(),whiteSpace:(function(){var ignore={inline:1,'inline-block':1,'run-in':1};return function(text,style,node){if(ignore[style.get('display')])return text;if(!node.previousSibling)text=text.replace(/^\s+/,'');if(!node.nextSibling)text=text.replace(/\s+$/,'');return text;};})()};CSS.ready=(function(){var complete=!CSS.recognizesMedia('all'),hasLayout=false;var queue=[],perform=function(){complete=true;for(var fn;fn=queue.shift();fn());};var links=elementsByTagName('link'),styles=elementsByTagName('style');function isContainerReady(el){return el.disabled||isSheetReady(el.sheet,el.media||'screen');}
function isSheetReady(sheet,media){if(!CSS.recognizesMedia(media||'all'))return true;if(!sheet||sheet.disabled)return false;try{var rules=sheet.cssRules,rule;if(rules){search:for(var i=0,l=rules.length;rule=rules[i],i<l;++i){switch(rule.type){case 2:break;case 3:if(!isSheetReady(rule.styleSheet,rule.media.mediaText))return false;break;default:break search;}}}}
catch(e){}
return true;}
function allStylesLoaded(){if(document.createStyleSheet)return true;var el,i;for(i=0;el=links[i];++i){if(el.rel.toLowerCase()=='stylesheet'&&!isContainerReady(el))return false;}
for(i=0;el=styles[i];++i){if(!isContainerReady(el))return false;}
return true;}
DOM.ready(function(){if(!hasLayout)hasLayout=CSS.getStyle(document.body).isUsable();if(complete||(hasLayout&&allStylesLoaded()))perform();else setTimeout(arguments.callee,10);});return function(listener){if(complete)listener();else queue.push(listener);};})();function Font(data){var face=this.face=data.face;this.glyphs=data.glyphs;this.w=data.w;this.baseSize=parseInt(face['units-per-em'],10);this.family=face['font-family'].toLowerCase();this.weight=face['font-weight'];this.style=face['font-style']||'normal';this.viewBox=(function(){var parts=face.bbox.split(/\s+/);var box={minX:parseInt(parts[0],10),minY:parseInt(parts[1],10),maxX:parseInt(parts[2],10),maxY:parseInt(parts[3],10)};box.width=box.maxX-box.minX;box.height=box.maxY-box.minY;box.toString=function(){return[this.minX,this.minY,this.width,this.height].join(' ');};return box;})();this.ascent=-parseInt(face.ascent,10);this.descent=-parseInt(face.descent,10);this.height=-this.ascent+this.descent;}
function FontFamily(){var styles={},mapping={oblique:'italic',italic:'oblique'};this.add=function(font){(styles[font.style]||(styles[font.style]={}))[font.weight]=font;};this.get=function(style,weight){var weights=styles[style]||styles[mapping[style]]||styles.normal||styles.italic||styles.oblique;if(!weights)return null;weight={normal:400,bold:700}[weight]||parseInt(weight,10);if(weights[weight])return weights[weight];var up={1:1,99:0}[weight%100],alts=[],min,max;if(up===undefined)up=weight>400;if(weight==500)weight=400;for(var alt in weights){if(!hasOwnProperty(weights,alt))continue;alt=parseInt(alt,10);if(!min||alt<min)min=alt;if(!max||alt>max)max=alt;alts.push(alt);}
if(weight<min)weight=min;if(weight>max)weight=max;alts.sort(function(a,b){return(up?(a>weight&&b>weight)?a<b:a>b:(a<weight&&b<weight)?a>b:a<b)?-1:1;});return weights[alts[0]];};}
function HoverHandler(){function contains(node,anotherNode){if(node.contains)return node.contains(anotherNode);return node.compareDocumentPosition(anotherNode)&16;}
function onOverOut(e){var related=e.relatedTarget;if(!related||contains(this,related))return;trigger(this);}
function onEnterLeave(e){trigger(this);}
function trigger(el){setTimeout(function(){api.replace(el,sharedStorage.get(el).options,true);},10);}
this.attach=function(el){if(el.onmouseenter===undefined){addEvent(el,'mouseover',onOverOut);addEvent(el,'mouseout',onOverOut);}
else{addEvent(el,'mouseenter',onEnterLeave);addEvent(el,'mouseleave',onEnterLeave);}};}
function ReplaceHistory(){var list=[],map={};function filter(keys){var values=[],key;for(var i=0;key=keys[i];++i)values[i]=list[map[key]];return values;}
this.add=function(key,args){map[key]=list.push(args)-1;};this.repeat=function(){var snapshot=arguments.length?filter(arguments):list,args;for(var i=0;args=snapshot[i++];)api.replace(args[0],args[1],true);};}
function Storage(){var map={},at=0;function identify(el){return el.cufid||(el.cufid=++at);}
this.get=function(el){var id=identify(el);return map[id]||(map[id]={});};}
function Style(style){var custom={},sizes={};this.extend=function(styles){for(var property in styles){if(hasOwnProperty(styles,property))custom[property]=styles[property];}
return this;};this.get=function(property){return custom[property]!=undefined?custom[property]:style[property];};this.getSize=function(property,base){return sizes[property]||(sizes[property]=new CSS.Size(this.get(property),base));};this.isUsable=function(){return!!style;};}
function addEvent(el,type,listener){if(el.addEventListener){el.addEventListener(type,listener,false);}
else if(el.attachEvent){el.attachEvent('on'+type,function(){return listener.call(el,window.event);});}}
function attach(el,options){var storage=sharedStorage.get(el);if(storage.options)return el;if(options.hover&&options.hoverables[el.nodeName.toLowerCase()]){hoverHandler.attach(el);}
storage.options=options;return el;}
function cached(fun){var cache={};return function(key){if(!hasOwnProperty(cache,key))cache[key]=fun.apply(null,arguments);return cache[key];};}
function getFont(el,style){var families=CSS.quotedList(style.get('fontFamily').toLowerCase()),family;for(var i=0;family=families[i];++i){if(fonts[family])return fonts[family].get(style.get('fontStyle'),style.get('fontWeight'));}
return null;}
function elementsByTagName(query){return document.getElementsByTagName(query);}
function hasOwnProperty(obj,property){return obj.hasOwnProperty(property);}
function merge(){var merged={},args,key;for(var i=0,l=arguments.length;args=arguments[i],i<l;++i){for(key in args){if(hasOwnProperty(args,key))merged[key]=args[key];}}
return merged;}
function process(font,text,style,options,node,el){var fragment=document.createDocumentFragment(),processed;if(text==='')return fragment;var separate=options.separate;var parts=text.split(separators[separate]),needsAligning=(separate=='words');if(needsAligning&&HAS_BROKEN_REGEXP){if(/^\s/.test(text))parts.unshift('');if(/\s$/.test(text))parts.push('');}
for(var i=0,l=parts.length;i<l;++i){processed=engines[options.engine](font,needsAligning?CSS.textAlign(parts[i],style,i,l):parts[i],style,options,node,el,i<l-1);if(processed)fragment.appendChild(processed);}
return fragment;}
function replaceElement(el,options){var style=CSS.getStyle(attach(el,options)).extend(options);var font=getFont(el,style),node,type,next,anchor,text;for(node=el.firstChild;node;node=next){type=node.nodeType;next=node.nextSibling;if(type==3){if(anchor){anchor.appendData(node.data);el.removeChild(node);}
else anchor=node;if(next)continue;}
if(anchor){el.replaceChild(process(font,CSS.whiteSpace(anchor.data,style,node),style,options,node,el),anchor);anchor=null;}
if(type==1&&node.firstChild){if(/cufon/.test(node.className)){engines[options.engine](font,null,style,options,node,el);}
else arguments.callee(node,options);}}}
var HAS_BROKEN_REGEXP=' '.split(/\s+/).length==0;var sharedStorage=new Storage();var hoverHandler=new HoverHandler();var replaceHistory=new ReplaceHistory();var initialized=false;var engines={},fonts={},defaultOptions={enableTextDecoration:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(query){return jQuery(query);})||(window.dojo&&dojo.query)||(window.$$&&function(query){return $$(query);})||(window.$&&function(query){return $(query);})||(document.querySelectorAll&&function(query){return document.querySelectorAll(query);})||(window.Ext&&Ext.query)||elementsByTagName),separate:'words',textShadow:'none'};var separators={words:/[^\S\u00a0]+/,characters:'',none:/^/};api.now=function(){DOM.ready();return api;};api.refresh=function(){replaceHistory.repeat.apply(replaceHistory,arguments);return api;};api.registerEngine=function(id,engine){if(!engine)return api;engines[id]=engine;return api.set('engine',id);};api.registerFont=function(data){var font=new Font(data),family=font.family;if(!fonts[family])fonts[family]=new FontFamily();fonts[family].add(font);return api.set('fontFamily','"'+family+'"');};api.replace=function(elements,options,ignoreHistory){options=merge(defaultOptions,options);if(!options.engine)return api;if(!initialized){CSS.addClass(DOM.root(),'cufon-active cufon-loading');CSS.ready(function(){CSS.removeClass(DOM.root(),'cufon-loading');});initialized=true;}
if(options.hover)options.forceHitArea=true;if(typeof options.textShadow=='string')
options.textShadow=CSS.textShadow(options.textShadow);if(typeof options.color=='string'&&/^-/.test(options.color))
options.textGradient=CSS.gradient(options.color);if(!ignoreHistory)replaceHistory.add(elements,arguments);if(elements.nodeType||typeof elements=='string')elements=[elements];CSS.ready(function(){for(var i=0,l=elements.length;i<l;++i){var el=elements[i];if(typeof el=='string')api.replace(options.selector(el),options,true);else replaceElement(el,options);}});return api;};api.set=function(option,value){defaultOptions[option]=value;return api;};return api;})();Cufon.registerEngine('canvas',(function(){var check=document.createElement('canvas');if(!check||!check.getContext||!check.getContext.apply)return;check=null;var HAS_INLINE_BLOCK=Cufon.CSS.supports('display','inline-block');var HAS_BROKEN_LINEHEIGHT=!HAS_INLINE_BLOCK&&(document.compatMode=='BackCompat'||/frameset|transitional/i.test(document.doctype.publicId));var styleSheet=document.createElement('style');styleSheet.type='text/css';styleSheet.appendChild(document.createTextNode(('.cufon-canvas{text-indent:0;}'+'@media screen,projection{'+'.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;'+
(HAS_BROKEN_LINEHEIGHT?'':'font-size:1px;line-height:1px;')+'}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}'+
(HAS_INLINE_BLOCK?'.cufon-canvas canvas{position:relative;}':'.cufon-canvas canvas{position:absolute;}')+'}'+'@media print{'+'.cufon-canvas{padding:0;}'+'.cufon-canvas canvas{display:none;}'+'.cufon-canvas .cufon-alt{display:inline;}'+'}').replace(/;/g,'!important;')));document.getElementsByTagName('head')[0].appendChild(styleSheet);function generateFromVML(path,context){var atX=0,atY=0;var code=[],re=/([mrvxe])([^a-z]*)/g,match;generate:for(var i=0;match=re.exec(path);++i){var c=match[2].split(',');switch(match[1]){case'v':code[i]={m:'bezierCurveTo',a:[atX+~~c[0],atY+~~c[1],atX+~~c[2],atY+~~c[3],atX+=~~c[4],atY+=~~c[5]]};break;case'r':code[i]={m:'lineTo',a:[atX+=~~c[0],atY+=~~c[1]]};break;case'm':code[i]={m:'moveTo',a:[atX=~~c[0],atY=~~c[1]]};break;case'x':code[i]={m:'closePath'};break;case'e':break generate;}
context[code[i].m].apply(context,code[i].a);}
return code;}
function interpret(code,context){for(var i=0,l=code.length;i<l;++i){var line=code[i];context[line.m].apply(context,line.a);}}
return function(font,text,style,options,node,el){var redraw=(text===null);if(redraw)text=node.alt;var viewBox=font.viewBox;var size=style.getSize('fontSize',font.baseSize);var letterSpacing=style.get('letterSpacing');letterSpacing=(letterSpacing=='normal')?0:size.convertFrom(parseInt(letterSpacing,10));var expandTop=0,expandRight=0,expandBottom=0,expandLeft=0;var shadows=options.textShadow,shadowOffsets=[];if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];var x=size.convertFrom(parseFloat(shadow.offX));var y=size.convertFrom(parseFloat(shadow.offY));shadowOffsets[i]=[x,y];if(y<expandTop)expandTop=y;if(x>expandRight)expandRight=x;if(y>expandBottom)expandBottom=y;if(x<expandLeft)expandLeft=x;}}
var chars=Cufon.CSS.textTransform(text,style).split(''),chr;var glyphs=font.glyphs,glyph,kerning,k;var width=0,advance,jumps=[];for(var i=0,j=0,l=chars.length;i<l;++i){glyph=glyphs[chr=chars[i]]||font.missingGlyph;if(!glyph)continue;if(kerning){width-=k=kerning[chr]||0;jumps[j-1]-=k;}
width+=advance=jumps[j++]=~~(glyph.w||font.w)+letterSpacing;kerning=glyph.k;}
if(advance===undefined)return null;expandRight+=viewBox.width-advance;expandLeft+=viewBox.minX;var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('span');wrapper.className='cufon cufon-canvas';wrapper.alt=text;canvas=document.createElement('canvas');wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('span');print.className='cufon-alt';print.appendChild(document.createTextNode(text));wrapper.appendChild(print);}}
var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height);var roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var stretchFactor=roundingFactor*Cufon.CSS.fontStretch(style.get('fontStretch'));var stretchedWidth=width*stretchFactor;var canvasWidth=Math.ceil(size.convert(stretchedWidth+expandRight-expandLeft));var canvasHeight=Math.ceil(size.convert(viewBox.height-expandTop+expandBottom));canvas.width=canvasWidth;canvas.height=canvasHeight;cStyle.width=canvasWidth+'px';cStyle.height=canvasHeight+'px';expandTop+=viewBox.minY;cStyle.top=Math.round(size.convert(expandTop-font.ascent))+'px';cStyle.left=Math.round(size.convert(expandLeft))+'px';var wrapperWidth=Math.ceil(size.convert(stretchedWidth))+'px';if(HAS_INLINE_BLOCK){wStyle.width=wrapperWidth;wStyle.height=size.convert(font.height)+'px';}
else{wStyle.paddingLeft=wrapperWidth;wStyle.paddingBottom=(size.convert(font.height)-1)+'px';}
var g=canvas.getContext('2d'),scale=height/viewBox.height;g.scale(scale,scale*roundingFactor);g.translate(-expandLeft,-expandTop);g.lineWidth=font.face['underline-thickness'];g.save();function line(y,color){g.strokeStyle=color;g.beginPath();g.moveTo(0,y);g.lineTo(width,y);g.stroke();}
var textDecoration=options.enableTextDecoration?Cufon.CSS.textDecoration(el,style):{};if(textDecoration.underline)line(-font.face['underline-position'],textDecoration.underline);if(textDecoration.overline)line(font.ascent,textDecoration.overline);function renderText(){g.scale(stretchFactor,1);for(var i=0,j=0,l=chars.length;i<l;++i){var glyph=glyphs[chars[i]]||font.missingGlyph;if(!glyph)continue;if(glyph.d){g.beginPath();if(glyph.code)interpret(glyph.code,g);else glyph.code=generateFromVML('m'+glyph.d,g);g.fill();}
g.translate(jumps[j++],0);}
g.restore();}
if(shadows){for(var i=shadows.length;i--;){var shadow=shadows[i];g.save();g.fillStyle=shadow.color;g.translate.apply(g,shadowOffsets[i]);renderText();}}
var gradient=options.textGradient;if(gradient){var stops=gradient.stops,fill=g.createLinearGradient(0,viewBox.minY,0,viewBox.maxY);for(var i=0,l=stops.length;i<l;++i){fill.addColorStop.apply(fill,stops[i]);}
g.fillStyle=fill;}
else g.fillStyle=style.get('color');renderText();if(textDecoration['line-through'])line(-font.descent,textDecoration['line-through']);return wrapper;};})());Cufon.registerEngine('vml',(function(){if(!document.namespaces)return;if(document.namespaces.cvml==null){document.namespaces.add('cvml','urn:schemas-microsoft-com:vml');}
var check=document.createElement('cvml:shape');check.style.behavior='url(#default#VML)';if(!check.coordsize)return;check=null;var HAS_BROKEN_LINEHEIGHT=(document.documentMode||0)<8;document.write(('<style type="text/css">'+'.cufon-vml-canvas{text-indent:0;}'+'@media screen{'+'cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}'+'.cufon-vml-canvas{position:absolute;text-align:left;}'+'.cufon-vml{display:inline-block;position:relative;vertical-align:'+
(HAS_BROKEN_LINEHEIGHT?'middle':'text-bottom')+';}'+'.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}'+'a .cufon-vml{cursor:pointer}'+'}'+'@media print{'+'.cufon-vml *{display:none;}'+'.cufon-vml .cufon-alt{display:inline;}'+'}'+'</style>').replace(/;/g,'!important;'));function getFontSizeInPixels(el,value){return getSizeInPixels(el,/(?:em|ex|%)$|^[a-z-]+$/i.test(value)?'1em':value);}
function getSizeInPixels(el,value){if(/px$/i.test(value))return parseFloat(value);var style=el.style.left,runtimeStyle=el.runtimeStyle.left;el.runtimeStyle.left=el.currentStyle.left;el.style.left=value.replace('%','em');var result=el.style.pixelLeft;el.style.left=style;el.runtimeStyle.left=runtimeStyle;return result;}
var fills={};function gradientFill(gradient){var id=gradient.id;if(!fills[id]){var stops=gradient.stops,fill=document.createElement('cvml:fill'),colors=[];fill.type='gradient';fill.angle=180;fill.focus='0';fill.method='sigma';fill.color=stops[0][1];for(var j=1,k=stops.length-1;j<k;++j){colors.push(stops[j][0]*100+'% '+stops[j][1]);}
fill.colors=colors.join(',');fill.color2=stops[k][1];fills[id]=fill;}
return fills[id];}
return function(font,text,style,options,node,el,hasNext){var redraw=(text===null);if(redraw)text=node.alt;var viewBox=font.viewBox;var size=style.computedFontSize||(style.computedFontSize=new Cufon.CSS.Size(getFontSizeInPixels(el,style.get('fontSize'))+'px',font.baseSize));var letterSpacing=style.computedLSpacing;if(letterSpacing==undefined){letterSpacing=style.get('letterSpacing');style.computedLSpacing=letterSpacing=(letterSpacing=='normal')?0:~~size.convertFrom(getSizeInPixels(el,letterSpacing));}
var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('span');wrapper.className='cufon cufon-vml';wrapper.alt=text;canvas=document.createElement('span');canvas.className='cufon-vml-canvas';wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('span');print.className='cufon-alt';print.appendChild(document.createTextNode(text));wrapper.appendChild(print);}
if(!hasNext)wrapper.appendChild(document.createElement('cvml:shape'));}
var wStyle=wrapper.style;var cStyle=canvas.style;var height=size.convert(viewBox.height),roundedHeight=Math.ceil(height);var roundingFactor=roundedHeight/height;var stretchFactor=roundingFactor*Cufon.CSS.fontStretch(style.get('fontStretch'));var minX=viewBox.minX,minY=viewBox.minY;cStyle.height=roundedHeight;cStyle.top=Math.round(size.convert(minY-font.ascent));cStyle.left=Math.round(size.convert(minX));wStyle.height=size.convert(font.height)+'px';var textDecoration=options.enableTextDecoration?Cufon.CSS.textDecoration(el,style):{};var color=style.get('color');var chars=Cufon.CSS.textTransform(text,style).split(''),chr;var glyphs=font.glyphs,glyph,kerning,k;var width=0,jumps=[],offsetX=0,advance;var shape,shadows=options.textShadow;for(var i=0,j=0,l=chars.length;i<l;++i){glyph=glyphs[chr=chars[i]]||font.missingGlyph;if(!glyph)continue;if(kerning){width-=k=kerning[chr]||0;jumps[j-1]-=k;}
width+=advance=jumps[j++]=~~(glyph.w||font.w)+letterSpacing;kerning=glyph.k;}
if(advance===undefined)return null;var fullWidth=-minX+width+(viewBox.width-advance);var shapeWidth=size.convert(fullWidth*stretchFactor),roundedShapeWidth=Math.round(shapeWidth);var coordSize=fullWidth+','+viewBox.height,coordOrigin;var stretch='r'+coordSize+'ns';var fill=options.textGradient&&gradientFill(options.textGradient);for(i=0,j=0;i<l;++i){glyph=glyphs[chars[i]]||font.missingGlyph;if(!glyph)continue;if(redraw){shape=canvas.childNodes[j];while(shape.firstChild)shape.removeChild(shape.firstChild);}
else{shape=document.createElement('cvml:shape');canvas.appendChild(shape);}
shape.stroked='f';shape.coordsize=coordSize;shape.coordorigin=coordOrigin=(minX-offsetX)+','+minY;shape.path=(glyph.d?'m'+glyph.d+'xe':'')+'m'+coordOrigin+stretch;shape.fillcolor=color;if(fill)shape.appendChild(fill.cloneNode(false));var sStyle=shape.style;sStyle.width=roundedShapeWidth;sStyle.height=roundedHeight;if(shadows){var shadow1=shadows[0],shadow2=shadows[1];var color1=Cufon.CSS.color(shadow1.color),color2;var shadow=document.createElement('cvml:shadow');shadow.on='t';shadow.color=color1.color;shadow.offset=shadow1.offX+','+shadow1.offY;if(shadow2){color2=Cufon.CSS.color(shadow2.color);shadow.type='double';shadow.color2=color2.color;shadow.offset2=shadow2.offX+','+shadow2.offY;}
shadow.opacity=color1.opacity||(color2&&color2.opacity)||1;shape.appendChild(shadow);}
offsetX+=jumps[j++];}
var cover=shape.nextSibling,coverFill,vStyle;if(options.forceHitArea){if(!cover){cover=document.createElement('cvml:rect');cover.stroked='f';cover.className='cufon-vml-cover';coverFill=document.createElement('cvml:fill');coverFill.opacity=0;cover.appendChild(coverFill);canvas.appendChild(cover);}
vStyle=cover.style;vStyle.width=roundedShapeWidth;vStyle.height=roundedHeight;}
else if(cover)canvas.removeChild(cover);wStyle.width=Math.max(Math.ceil(size.convert(width*stretchFactor)),0);if(HAS_BROKEN_LINEHEIGHT){var yAdjust=style.computedYAdjust;if(yAdjust===undefined){var lineHeight=style.get('lineHeight');if(lineHeight=='normal')lineHeight='1em';else if(!isNaN(lineHeight))lineHeight+='em';style.computedYAdjust=yAdjust=0.5*(getSizeInPixels(el,lineHeight)-parseFloat(wStyle.height));}
if(yAdjust){wStyle.marginTop=Math.ceil(yAdjust)+'px';wStyle.marginBottom=yAdjust+'px';}}
return wrapper;};})());;
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1985, 1987, 1990, 2001 Adobe Systems Incorporated.  All Rights
 * Reserved.
 * 
 * Trademark:
 * ITC Machine is a trademark of International Typeface Corporation.
 * 
 * Full name:
 * MachineStd
 * 
 * Designer:
 * Bonder & Carnase, Inc.
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":172,"face":{"font-family":"ITC Machine Std","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 6 0 0 0 0 0 0 0","ascent":"258","descent":"-102","bbox":"-17 -334 367 109","underline-thickness":"18","underline-position":"-18","stemh":"49","stemv":"58","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":100},"!":{"d":"95,-258v4,71,-8,128,-18,185r-24,0v-10,-58,-22,-114,-18,-185r60,0xm95,-50r0,50r-60,0r0,-50r60,0","w":129},"\"":{"d":"125,-161r-25,0r-9,-97r43,0xm59,-161r-25,0r-9,-97r43,0","w":158},"#":{"d":"187,-116r0,35r-37,0r-11,81r-32,0r11,-81r-31,0r-11,81r-32,0r11,-81r-36,0r0,-35r41,0r5,-32r-35,0r0,-34r39,0r11,-76r32,0r-11,76r31,0r11,-76r32,0r-11,76r33,0r0,34r-38,0r-4,32r32,0xm127,-148r-31,0r-4,32r31,0","w":216},"$":{"d":"97,-258r17,0r40,38r0,45r-52,0r0,-35r-38,0r0,53r52,5r41,36r0,79r-41,37r-19,0r0,28r-31,0r0,-28r-17,0r-41,-37r0,-45r56,0r0,34r38,0r0,-54r-53,-3r-41,-37r0,-78r41,-38r17,0r0,-26r31,0r0,26","w":165},"%":{"d":"216,-258r-81,258r-27,0r83,-258r25,0xm85,-225r-18,0r0,95r18,0r0,-95xm257,-128r-18,0r0,95r18,0r0,-95xm124,-233r0,111r-25,25r-46,0r-25,-25r0,-111r25,-25r46,0xm296,-136r0,112r-25,24r-46,0r-25,-24r0,-112r25,-25r46,0","w":324},"&":{"d":"138,0r-67,0r-38,-37r0,-67r35,-25r-31,-25r0,-67r36,-37r59,0r37,37r0,45r-26,29r15,24r9,-15r50,0r-32,57r51,81r-62,0r-19,-30xm115,-210r-24,0r0,55r24,0r0,-55xm91,-49r26,0r13,-23r-23,-39r-16,0r0,62","w":230},"(":{"d":"104,-267r0,29r-45,0r0,217r45,0r0,30r-38,0r-48,-44r0,-189r48,-43r38,0","w":122},")":{"d":"18,-267r39,0r47,43r0,189r-47,44r-39,0r0,-30r45,0r0,-217r-45,0r0,-29","w":122},"*":{"d":"149,-222r0,20r-39,0r28,28r-14,14r-28,-28r0,40r-19,0r0,-40r-28,28r-14,-14r28,-28r-40,0r0,-20r40,0r-28,-27r14,-14r28,27r0,-39r19,0r0,39r28,-27r14,14r-28,27r39,0"},"+":{"d":"87,-150r0,-69r42,0r0,69r70,0r0,42r-70,0r0,71r-42,0r0,-71r-70,0r0,-42r70,0","w":216},",":{"d":"73,-50r0,40r-32,49r-20,-13r18,-26r-26,0r0,-50r60,0","w":86},"-":{"d":"64,-149r0,34r-64,0r0,-34r64,0","w":64},".":{"d":"73,-50r0,50r-60,0r0,-50r60,0","w":86},"\/":{"d":"157,-258r36,19r-134,239r-36,-19","w":216},"0":{"d":"155,-221r0,184r-38,37r-67,0r-39,-37r0,-184r39,-37r64,0xm95,-210r-25,0r0,161r25,0r0,-161","w":165},"1":{"d":"114,-258r0,258r-60,0r0,-208r-24,0r0,-36v26,-7,48,-17,84,-14","w":165},"2":{"d":"70,-210r0,35r-58,0r0,-46r39,-37r64,0r39,37r0,71r-84,78r0,23r84,0r0,49r-142,0r0,-90r84,-80r0,-40r-26,0","w":165},"3":{"d":"150,-221r0,62r-34,28r34,28r0,66r-39,37r-64,0r-37,-37r0,-47r57,0r0,35r24,0r0,-57r-32,0r0,-49r32,0r0,-55r-24,0r0,33r-57,0r0,-44r37,-37r62,0","w":165},"4":{"d":"142,-258r0,162r23,0r0,45r-23,0r0,51r-58,0r0,-51r-68,0r-17,-48r87,-159r56,0xm84,-96r0,-81r-40,81r40,0","w":165},"5":{"d":"116,0r-65,0r-39,-37r0,-50r60,0r0,38r23,0r0,-62r-40,-1r-41,-37r0,-109r124,0r0,48r-66,0r0,48r44,1r38,36r0,88","w":165},"6":{"d":"154,-120r0,83r-38,37r-65,0r-39,-37r0,-184r39,-37r63,0r40,37r0,46r-58,0r0,-35r-26,0r0,57r47,0xm96,-105r-26,0r0,56r26,0r0,-56","w":165},"7":{"d":"151,-258r0,48r-72,210r-62,0r80,-210r-30,0r0,25r-52,0r0,-73r136,0","w":165},"8":{"d":"149,-158r-28,26r33,26r0,69r-38,37r-65,0r-39,-37r0,-69r31,-26r-27,-26r0,-63r36,-37r57,0r40,37r0,63xm95,-210r-25,0r0,55r25,0r0,-55xm95,-106r-25,0r0,57r25,0r0,-57","w":165},"9":{"d":"153,-221r0,184r-39,37r-65,0r-39,-37r0,-46r58,0r0,34r25,0r0,-54r-47,0r-36,-33r0,-85r38,-37r66,0xm93,-210r-25,0r0,59r25,0r0,-59","w":165},":":{"d":"73,-181r0,50r-60,0r0,-50r60,0xm73,-50r0,50r-60,0r0,-50r60,0","w":86},";":{"d":"73,-50r0,40r-32,49r-20,-13r18,-26r-26,0r0,-50r60,0xm73,-181r0,50r-60,0r0,-50r60,0","w":86},"<":{"d":"200,-71r0,40r-183,-81r0,-35r183,-82r0,40r-131,60","w":216},"=":{"d":"199,-185r0,42r-182,0r0,-42r182,0xm199,-115r0,42r-182,0r0,-42r182,0","w":216},">":{"d":"17,-71r130,-58r-130,-60r0,-40r183,82r0,35r-183,81r0,-40","w":216},"?":{"d":"159,-221r0,65r-39,37r0,46r-60,0r0,-52r40,-38r0,-47r-21,0r0,48r-57,0r0,-59r38,-37r58,0xm120,-50r0,50r-60,0r0,-50r60,0","w":180},"@":{"d":"194,-80v24,-3,37,-37,36,-62v0,-57,-38,-91,-92,-91v-59,0,-101,44,-101,104v0,93,113,137,171,75r31,0v-60,100,-226,49,-226,-75v0,-73,55,-129,126,-129v59,0,112,47,114,105v2,51,-38,94,-82,99v-13,1,-19,-8,-20,-18v-30,37,-93,4,-87,-44v-6,-58,69,-107,108,-58r3,-18r31,0r-17,107v0,3,2,5,5,5xm136,-159v-34,-1,-47,65,-7,67v37,3,47,-67,7,-67","w":266},"A":{"d":"118,-258r38,258r-58,0r-5,-48r-35,0r-5,48r-58,0r37,-258r86,0xm89,-96r-12,-107r-5,0r-9,107r26,0","w":151,"k":{"y":4,"\u00fd":4,"\u00ff":4,"Y":4,"\u00dd":4}},"B":{"d":"153,-158r-28,26r33,25r0,70r-39,37r-104,0r0,-258r104,0r34,32r0,68xm99,-210r-25,0r0,55r25,0r0,-55xm99,-106r-25,0r0,57r25,0r0,-57","k":{"a":5,"\u00e6":5,"\u00e1":5,"\u00e2":5,"\u00e4":5,"\u00e0":5,"\u00e5":5,"\u00e3":5,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5}},"C":{"d":"156,-221r0,62r-58,0r0,-51r-26,0r0,161r26,0r0,-61r58,0r0,73r-40,37r-61,0r-42,-37r0,-184r38,-37r65,0","w":165},"D":{"d":"159,-221r0,184r-38,37r-105,0r0,-258r103,0xm100,-210r-25,0r0,161r25,0r0,-161","k":{"y":4,"\u00fd":4,"\u00ff":4,"Y":4,"\u00dd":4}},"E":{"d":"123,-258r0,48r-50,0r0,49r43,0r0,49r-43,0r0,63r52,0r0,49r-111,0r0,-258r109,0","w":129},"F":{"d":"129,-258r0,48r-56,0r0,49r45,0r0,49r-45,0r0,112r-59,0r0,-258r115,0","w":129,"k":{",":4,".":4}},"G":{"d":"156,-221r0,60r-60,0r0,-49r-27,0r0,161r27,0r0,-37r-14,0r0,-49r74,0r0,98r-39,37r-66,0r-41,-37r0,-184r39,-37r67,0","w":165},"H":{"d":"158,-258r0,258r-59,0r0,-105r-25,0r0,105r-59,0r0,-258r59,0r0,105r25,0r0,-105r59,0"},"I":{"d":"76,-258r0,258r-59,0r0,-258r59,0","w":93},"J":{"d":"132,-258r0,221r-39,37r-54,0r-40,-37r0,-66r54,0r0,54r20,0r0,-209r59,0","w":144},"K":{"d":"75,-258r0,110r39,-110r61,0r-52,120r60,138r-65,0r-43,-110r0,110r-60,0r0,-258r60,0","w":180,"k":{"o":13,"\u00f8":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"O":13,"\u00d8":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13}},"L":{"d":"75,-258r0,209r54,0r0,49r-114,0r0,-258r60,0","w":129,"k":{"y":16,"\u00fd":16,"\u00ff":16,"Y":16,"\u00dd":16,"t":12,"T":12}},"M":{"d":"201,-258r0,258r-54,0r0,-164r-3,0r-25,164r-22,0r-25,-164r-2,0r0,164r-55,0r0,-258r70,0r21,125r6,0r19,-125r70,0","w":216},"N":{"d":"159,-258r0,258r-50,0r-39,-126r0,126r-56,0r0,-258r50,0r39,124r0,-124r56,0"},"O":{"d":"158,-221r0,184r-38,37r-66,0r-39,-37r0,-184r39,-37r64,0xm99,-210r-25,0r0,161r25,0r0,-161","k":{"y":9,"\u00fd":9,"\u00ff":9,"Y":9,"\u00dd":9,"t":4,"T":4}},"P":{"d":"156,-221r0,97r-40,36r-39,0r0,88r-60,0r0,-258r99,0xm99,-210r-22,0r0,74r22,0r0,-74","w":158,"k":{",":4,".":4}},"Q":{"d":"159,-221r0,167r-29,26r29,0r0,28r-106,0r-40,-37r0,-184r40,-37r66,0xm100,-210r-27,0r0,161r27,0r0,-161"},"R":{"d":"158,-221r0,68r-30,25r30,25r0,103r-58,0r0,-103r-24,0r0,103r-60,0r0,-258r102,0xm100,-210r-24,0r0,58r24,0r0,-58","k":{"y":4,"\u00fd":4,"\u00ff":4,"Y":4,"\u00dd":4}},"S":{"d":"50,-258r63,0r42,37r0,46r-60,0r0,-35r-24,0r0,53r43,4r41,37r0,79r-39,37r-66,0r-38,-37r0,-46r59,0r0,34r24,0r0,-54r-42,-3r-41,-37r0,-78","w":165},"T":{"d":"128,-258r0,48r-34,0r0,210r-59,0r0,-210r-34,0r0,-48r127,0","w":129,"k":{"\u00f2":4,"\u00f6":4,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"O":4,"\u00d8":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4}},"U":{"d":"159,-258r0,221r-39,37r-66,0r-40,-37r0,-221r59,0r0,209r26,0r0,-209r60,0"},"V":{"d":"153,-258r-31,258r-90,0r-33,-258r59,0r17,196r3,0r15,-196r60,0","w":151},"W":{"d":"199,-258r-43,258r-43,0r-13,-111r-6,0r-12,111r-43,0r-44,-258r56,0r19,130r15,-130r24,0r16,130r18,-130r56,0","w":194},"X":{"d":"159,-258r-45,123r49,135r-60,0v-9,-24,-15,-52,-25,-75r-21,75r-61,0r49,-135r-47,-123r61,0v7,24,11,51,20,73r19,-73r61,0","w":158},"Y":{"d":"160,-258r-51,150r0,108r-60,0r0,-108r-51,-150r60,0r22,93r21,-93r59,0","w":158,"k":{"\u00f6":9,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,"A":4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4,",":4,".":4,"o":9,"\u00f8":9,"\u00f3":9,"\u00f4":9,"\u00f2":9,"\u00f5":9,"O":9,"\u00d8":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"\u00d5":9,"s":4,":":4,";":4,"S":4}},"Z":{"d":"149,-212r-85,163r70,0r0,49r-106,0r-33,-45r85,-165r-63,0r0,-48r96,0","w":144},"[":{"d":"104,-267r0,28r-45,0r0,220r45,0r0,28r-86,0r0,-276r86,0","w":122},"\\":{"d":"23,-239r36,-19r134,239r-36,19","w":216},"]":{"d":"19,-267r85,0r0,276r-85,0r0,-28r44,0r0,-220r-44,0r0,-28","w":122},"^":{"d":"59,-103r-37,-17r64,-138r44,0r64,138r-37,17r-49,-103","w":216},"_":{"d":"367,45r-367,0r0,-18r367,0r0,18","w":367},"a":{"d":"118,-258r38,258r-58,0r-5,-48r-35,0r-5,48r-58,0r37,-258r86,0xm89,-96r-12,-107r-5,0r-9,107r26,0","w":151},"b":{"d":"153,-158r-28,26r33,25r0,70r-39,37r-104,0r0,-258r104,0r34,32r0,68xm99,-210r-25,0r0,55r25,0r0,-55xm99,-106r-25,0r0,57r25,0r0,-57","k":{"a":5,"\u00e6":5,"\u00e1":5,"\u00e2":5,"\u00e4":5,"\u00e0":5,"\u00e5":5,"\u00e3":5}},"c":{"d":"156,-221r0,62r-58,0r0,-51r-26,0r0,161r26,0r0,-61r58,0r0,73r-40,37r-61,0r-42,-37r0,-184r38,-37r65,0","w":165},"d":{"d":"159,-221r0,184r-38,37r-105,0r0,-258r103,0xm100,-210r-25,0r0,161r25,0r0,-161","k":{"y":4,"\u00fd":4,"\u00ff":4}},"e":{"d":"123,-258r0,48r-50,0r0,49r43,0r0,49r-43,0r0,63r52,0r0,49r-111,0r0,-258r109,0","w":129},"f":{"d":"129,-258r0,48r-56,0r0,49r45,0r0,49r-45,0r0,112r-59,0r0,-258r115,0","w":129,"k":{",":4,".":4}},"g":{"d":"156,-221r0,60r-60,0r0,-49r-27,0r0,161r27,0r0,-37r-14,0r0,-49r74,0r0,98r-39,37r-66,0r-41,-37r0,-184r39,-37r67,0","w":165},"h":{"d":"158,-258r0,258r-59,0r0,-105r-25,0r0,105r-59,0r0,-258r59,0r0,105r25,0r0,-105r59,0"},"i":{"d":"76,-258r0,258r-59,0r0,-258r59,0","w":93},"j":{"d":"132,-258r0,221r-39,37r-54,0r-40,-37r0,-66r54,0r0,54r20,0r0,-209r59,0","w":144},"k":{"d":"75,-258r0,110r39,-110r61,0r-52,120r60,138r-65,0r-43,-110r0,110r-60,0r0,-258r60,0","w":180,"k":{"o":13,"\u00f8":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13}},"l":{"d":"75,-258r0,209r54,0r0,49r-114,0r0,-258r60,0","w":129,"k":{"y":16,"\u00fd":16,"\u00ff":16,"t":12}},"m":{"d":"201,-258r0,258r-54,0r0,-164r-3,0r-25,164r-22,0r-25,-164r-2,0r0,164r-55,0r0,-258r70,0r21,125r6,0r19,-125r70,0","w":216},"n":{"d":"159,-258r0,258r-50,0r-39,-126r0,126r-56,0r0,-258r50,0r39,124r0,-124r56,0"},"o":{"d":"158,-221r0,184r-38,37r-66,0r-39,-37r0,-184r39,-37r64,0xm99,-210r-25,0r0,161r25,0r0,-161","k":{"y":9,"\u00fd":9,"\u00ff":9,"t":4}},"p":{"d":"156,-221r0,97r-40,36r-39,0r0,88r-60,0r0,-258r99,0xm99,-210r-22,0r0,74r22,0r0,-74","w":158,"k":{",":4,".":4}},"q":{"d":"159,-221r0,167r-29,26r29,0r0,28r-106,0r-40,-37r0,-184r40,-37r66,0xm100,-210r-27,0r0,161r27,0r0,-161"},"r":{"d":"158,-221r0,68r-30,25r30,25r0,103r-58,0r0,-103r-24,0r0,103r-60,0r0,-258r102,0xm100,-210r-24,0r0,58r24,0r0,-58","k":{"y":4,"\u00fd":4,"\u00ff":4}},"s":{"d":"50,-258r63,0r42,37r0,46r-60,0r0,-35r-24,0r0,53r43,4r41,37r0,79r-39,37r-66,0r-38,-37r0,-46r59,0r0,34r24,0r0,-54r-42,-3r-41,-37r0,-78","w":165},"t":{"d":"128,-258r0,48r-34,0r0,210r-59,0r0,-210r-34,0r0,-48r127,0","w":129,"k":{"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4}},"u":{"d":"159,-258r0,221r-39,37r-66,0r-40,-37r0,-221r59,0r0,209r26,0r0,-209r60,0"},"v":{"d":"153,-258r-31,258r-90,0r-33,-258r59,0r17,196r3,0r15,-196r60,0","w":151},"w":{"d":"199,-258r-43,258r-43,0r-13,-111r-6,0r-12,111r-43,0r-44,-258r56,0r19,130r15,-130r24,0r16,130r18,-130r56,0","w":194},"x":{"d":"159,-258r-45,123r49,135r-60,0v-9,-24,-15,-52,-25,-75r-21,75r-61,0r49,-135r-47,-123r61,0v7,24,11,51,20,73r19,-73r61,0","w":158},"y":{"d":"160,-258r-51,150r0,108r-60,0r0,-108r-51,-150r60,0r22,93r21,-93r59,0","w":158,"k":{"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,",":4,".":4,"o":9,"\u00f8":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9,"s":4,":":4,";":4}},"z":{"d":"149,-212r-85,163r70,0r0,49r-106,0r-33,-45r85,-165r-63,0r0,-48r96,0","w":144},"{":{"d":"119,-21r0,30r-39,0r-47,-44r0,-69v-7,-7,-13,-15,-29,-12r0,-25v17,3,22,-6,29,-13r0,-69r47,-44r39,0r0,30r-45,0r0,87r-23,21r23,22r0,86r45,0","w":122},"|":{"d":"87,0r0,-258r43,0r0,258r-43,0","w":216},"}":{"d":"4,9r0,-30r45,0r0,-86r22,-22r-22,-21r0,-87r-45,0r0,-30r38,0r48,44r0,69v7,7,12,16,28,13r0,25v-16,-2,-21,5,-28,12r0,69r-48,44r-38,0","w":122},"~":{"d":"176,-166r23,26v-14,39,-61,54,-100,28v-24,-16,-51,-5,-59,20r-23,-26v11,-21,28,-45,54,-45v26,0,59,24,76,24v15,0,22,-16,29,-27","w":216},"\u00a1":{"d":"95,109r-60,0v-4,-71,8,-128,18,-185r24,0v10,58,22,114,18,185xm95,-149r0,50r-60,0r0,-50r60,0","w":129},"\u00a2":{"d":"156,-194r0,46r-56,0r0,-35r-35,0r0,107r35,0r0,-40r56,0r0,51r-38,37r-20,0r0,28r-29,0r0,-28r-19,0r-41,-37r0,-129r37,-37r23,0r0,-27r29,0r0,27r20,0","w":165},"\u00a3":{"d":"70,-258r68,0r37,37r0,55r-57,0r0,-44r-28,0r0,59r25,0r0,31r-25,0r0,71r35,0r0,-59r56,0r0,71r-40,37r-128,0r0,-49r19,0r0,-71r-19,0r0,-31r19,0r0,-70","w":194},"\u00a5":{"d":"175,-258r-28,84r28,0r0,30r-38,0r-11,31r49,0r0,31r-50,0r0,82r-60,0r0,-82r-50,0r0,-31r48,0r-12,-31r-36,0r0,-30r26,0r-29,-84r59,0r23,93r22,-93r59,0","w":187},"\u00a7":{"d":"148,-233r-28,20v-7,-13,-42,-28,-42,-4v0,20,87,63,87,100v0,17,-15,35,-36,39v29,31,14,79,-40,78v-22,0,-44,-10,-62,-28r32,-20v5,17,44,32,44,5v0,-24,-88,-67,-88,-107v0,-21,16,-33,39,-36v-34,-27,-14,-73,36,-72v24,0,42,10,58,25xm55,-154v0,11,47,53,54,53v9,0,15,-4,15,-11v0,-11,-47,-53,-54,-53v-9,0,-15,4,-15,11","w":180},"\u00a4":{"d":"17,-67r16,-16v-19,-28,-18,-65,0,-93r-16,-16r28,-28r16,16v28,-18,67,-19,95,0r16,-16r27,28r-15,16v17,27,18,66,0,93r15,16r-27,28r-16,-15v-28,19,-67,18,-95,0r-16,15xm108,-85v25,0,45,-21,45,-44v0,-23,-20,-45,-45,-45v-25,0,-44,22,-44,45v0,23,19,44,44,44","w":216},"'":{"d":"59,-161r-24,0r-9,-97r42,0","w":93},"\u00ab":{"d":"54,-212r18,11r-18,69r18,69r-18,11r-33,-52r0,-56xm113,-212r18,11r-18,69r18,69r-18,11r-34,-52r0,-56","w":151},"\u00b7":{"d":"113,-154r0,50r-60,0r0,-50r60,0","w":165},"\u00b6":{"d":"88,0r0,-132r-23,0r-39,-37r0,-53r39,-36r118,0r0,258r-41,0r0,-226r-13,0r0,226r-41,0","w":216},"\u00bb":{"d":"97,-212r34,52r0,56r-34,52r-18,-11r18,-69r-18,-69xm39,-212r33,52r0,56r-33,52r-19,-11r19,-69r-19,-69","w":151},"\u00bf":{"d":"22,72r0,-65r38,-37r0,-46r60,0r0,52r-40,38r0,47r22,0r0,-47r57,0r0,58r-39,37r-58,0xm120,-149r0,50r-60,0r0,-50r60,0","w":180},"`":{"d":"36,-333r52,49r-12,18r-64,-29r-8,-16r15,-23","w":136},"\u00b4":{"d":"99,-333r18,-1r14,23r-7,16r-65,29r-11,-18","w":136},"\u00af":{"d":"144,-314r0,28r-118,0r0,-28r118,0"},"\u00a8":{"d":"135,-323r0,45r-47,0r0,-45r47,0xm73,-323r0,45r-47,0r0,-45r47,0","w":158},"\u00b8":{"d":"54,0r0,10v24,-2,20,27,20,51r-14,14r-34,0r0,-21r24,0r0,-24v-16,0,-19,-12,-18,-30r22,0","w":100},"\u00c6":{"d":"208,-258r0,48r-50,0r0,50r43,0r0,48r-43,0r0,63r53,0r0,49r-109,0r0,-49r-43,0r-11,49r-58,0r74,-258r144,0xm102,-96r0,-114r-6,0r-26,114r32,0","w":216},"\u00aa":{"d":"92,-258r25,155r-37,0r-4,-29r-22,0r-4,29r-37,0r23,-155r56,0xm73,-161r-7,-64r-4,0r-5,64r16,0","w":129},"\u00d8":{"d":"165,-221r0,184r-39,37r-67,0r-18,-17r-24,48r-15,-7r27,-53r-8,-8r0,-184r38,-37r67,0r14,14r22,-43r15,7r-25,48xm80,-210r1,85v9,-27,28,-45,24,-85r-25,0xm105,-49r0,-95r-25,55r0,40r25,0","w":180,"k":{"y":9,"\u00fd":9,"\u00ff":9,"Y":9,"\u00dd":9,"t":4,"T":4}},"\u00ba":{"d":"104,-236r0,110r-24,23r-44,0r-25,-23r0,-110r25,-22r42,0xm66,-229r-17,0r0,97r17,0r0,-97","w":114},"\u00e6":{"d":"208,-258r0,48r-50,0r0,50r43,0r0,48r-43,0r0,63r53,0r0,49r-109,0r0,-49r-43,0r-11,49r-58,0r74,-258r144,0xm102,-96r0,-114r-6,0r-26,114r32,0","w":216},"\u00f8":{"d":"165,-221r0,184r-39,37r-67,0r-18,-17r-24,48r-15,-7r27,-53r-8,-8r0,-184r38,-37r67,0r14,14r22,-43r15,7r-25,48xm105,-210r-25,0r1,85v9,-27,28,-45,24,-85xm80,-49r25,0r0,-95r-25,55r0,40","w":180,"k":{"y":9,"\u00fd":9,"\u00ff":9,"t":4}},"\u00df":{"d":"50,-258r63,0r42,37r0,46r-60,0r0,-35r-24,0r0,53r43,4r41,37r0,79r-39,37r-66,0r-38,-37r0,-46r59,0r0,34r24,0r0,-54r-42,-3r-41,-37r0,-78xm216,-258r63,0r41,37r0,46r-59,0r0,-35r-24,0r0,53r43,4r40,37r0,79r-38,37r-66,0r-39,-37r0,-46r60,0r0,34r24,0r0,-54r-42,-3r-42,-37r0,-78","w":331},"\u00b9":{"d":"89,-258r0,155r-44,0r0,-123r-18,0r0,-23v18,-5,36,-11,62,-9","w":116},"\u00ac":{"d":"159,-76r0,-67r-144,0r0,-42r186,0r0,109r-42,0","w":216},"\u00b5":{"d":"157,-166r0,117r20,0r0,49r-25,0r-25,-25r-25,25r-28,0r0,37r-59,0r0,-203r59,0r0,117r24,0r0,-117r59,0","w":178},"\u00d0":{"d":"16,-153r0,-105r103,0r40,37r0,184r-38,37r-105,0r0,-105r-16,0r0,-48r16,0xm75,-210r0,57r11,0r0,48r-11,0r0,56r25,0r0,-161r-25,0","k":{"y":4,"\u00fd":4,"\u00ff":4,"Y":4,"\u00dd":4}},"\u00bd":{"d":"247,-126r0,21r-36,0r0,-27r24,-23r41,0r25,23r0,42r-54,47r0,14r54,0r0,29r-91,0r0,-54r54,-48r0,-24r-17,0xm92,-258r0,155r-44,0r0,-123r-18,0r0,-23v18,-5,36,-11,62,-9xm234,-258r-114,258r-44,0r114,-258r44,0","w":331},"\u00b1":{"d":"87,-189r0,-69r42,0r0,69r70,0r0,41r-70,0r0,72r-42,0r0,-72r-70,0r0,-41r70,0xm17,0r0,-42r182,0r0,42r-182,0","w":216},"\u00de":{"d":"17,0r0,-258r60,0r0,39r39,0r40,38r0,96r-40,37r-39,0r0,48r-60,0xm99,-170r-22,0r0,73r22,0r0,-73","w":158},"\u00bc":{"d":"285,-155r0,97r16,0r0,27r-16,0r0,31r-36,0r0,-31r-45,0r-11,-28r58,-96r34,0xm238,-258r-115,258r-44,0r114,-258r45,0xm249,-58v-1,-15,2,-35,-1,-48r-26,48r27,0xm92,-258r0,155r-44,0r0,-123r-18,0r0,-23v18,-5,36,-11,62,-9","w":331},"\u00f7":{"d":"17,-108r0,-42r182,0r0,42r-182,0xm129,-78r0,42r-42,0r0,-42r42,0xm129,-222r0,42r-42,0r0,-42r42,0","w":216},"\u00a6":{"d":"87,-155r0,-103r43,0r0,103r-43,0xm87,0r0,-103r43,0r0,103r-43,0","w":216},"\u00b0":{"d":"111,-239r0,41r-20,19r-39,0r-19,-19r0,-41r19,-19r39,0xm90,-237r-36,0r0,36r36,0r0,-36","w":144},"\u00fe":{"d":"17,0r0,-258r60,0r0,39r39,0r40,38r0,96r-40,37r-39,0r0,48r-60,0xm99,-170r-22,0r0,73r22,0r0,-73","w":158,"k":{"a":5,"\u00e6":5,"\u00e1":5,"\u00e2":5,"\u00e4":5,"\u00e0":5,"\u00e5":5,"\u00e3":5}},"\u00be":{"d":"249,-58v-1,-15,2,-35,-1,-48r-26,48r27,0xm248,-258r-114,258r-44,0r114,-258r44,0xm285,-155r0,97r16,0r0,27r-16,0r0,31r-36,0r0,-31r-45,0r-11,-28r58,-96r34,0xm122,-236r0,37r-22,17r22,17r0,39r-26,23r-41,0r-25,-23r0,-27r37,0r0,21r16,0r0,-35r-20,0r0,-29r20,0r0,-33r-16,0r0,20r-37,0r0,-27r25,-22r40,0","w":331},"\u00b2":{"d":"50,-229r0,21r-37,0r0,-28r25,-22r41,0r25,22r0,43r-54,46r0,15r54,0r0,29r-92,0r0,-54r55,-48r0,-24r-17,0","w":116},"\u00ae":{"d":"134,0v-69,0,-125,-57,-125,-129v0,-71,56,-129,125,-129v69,0,124,58,124,129v0,72,-55,129,-124,129xm134,-24v56,0,101,-47,101,-105v0,-58,-45,-105,-101,-105v-56,0,-102,47,-102,105v0,58,46,105,102,105xm82,-198v55,1,117,-12,117,43v0,25,-12,35,-36,37r32,59r-30,0r-30,-59r-27,0r0,59r-26,0r0,-139xm108,-139v26,-3,67,12,65,-20v-2,-30,-39,-16,-65,-19r0,39","w":266},"\u00f0":{"d":"16,-153r0,-105r103,0r40,37r0,184r-38,37r-105,0r0,-105r-16,0r0,-48r16,0xm75,-210r0,57r11,0r0,48r-11,0r0,56r25,0r0,-161r-25,0"},"\u00d7":{"d":"78,-117r-49,-48r30,-30r49,49r49,-49r30,29r-49,49r49,51r-29,29r-50,-50r-49,49r-30,-29","w":216},"\u00b3":{"d":"104,-236r0,37r-22,17r22,17r0,39r-25,23r-42,0r-24,-23r0,-27r36,0r0,21r17,0r0,-35r-21,0r0,-29r21,0r0,-33r-17,0r0,20r-36,0r0,-27r24,-22r40,0","w":116},"\u00a9":{"d":"134,0v-69,0,-125,-57,-125,-129v0,-71,56,-129,125,-129v69,0,124,58,124,129v0,72,-55,129,-124,129xm134,-24v55,0,101,-47,101,-105v0,-58,-46,-105,-101,-105v-56,0,-102,47,-102,105v0,58,46,105,102,105xm169,-106r28,0v-3,31,-29,50,-58,50v-42,0,-69,-32,-69,-74v0,-79,115,-104,127,-26r-28,0v-3,-16,-16,-25,-31,-25v-27,0,-40,24,-40,50v0,25,15,52,41,52v15,0,29,-11,30,-27","w":266},"\u00c1":{"d":"118,-258r38,258r-58,0r-5,-48r-35,0r-5,48r-58,0r37,-258r86,0xm89,-96r-12,-107r-5,0r-9,107r26,0xm106,-333r18,-1r15,23r-8,16r-64,29r-12,-18","w":151,"k":{"y":4,"\u00fd":4,"\u00ff":4,"Y":4,"\u00dd":4}},"\u00c2":{"d":"118,-258r38,258r-58,0r-5,-48r-35,0r-5,48r-58,0r37,-258r86,0xm89,-96r-12,-107r-5,0r-9,107r26,0xm133,-275r-56,-18r-56,18r-9,-18r38,-33r54,0r39,33","w":151,"k":{"y":4,"\u00fd":4,"\u00ff":4,"Y":4,"\u00dd":4}},"\u00c4":{"d":"118,-258r38,258r-58,0r-5,-48r-35,0r-5,48r-58,0r37,-258r86,0xm89,-96r-12,-107r-5,0r-9,107r26,0xm131,-323r0,45r-47,0r0,-45r47,0xm69,-323r0,45r-47,0r0,-45r47,0","w":151,"k":{"y":4,"\u00fd":4,"\u00ff":4,"Y":4,"\u00dd":4}},"\u00c0":{"d":"118,-258r38,258r-58,0r-5,-48r-35,0r-5,48r-58,0r37,-258r86,0xm89,-96r-12,-107r-5,0r-9,107r26,0xm44,-333r51,49r-12,18r-64,-29r-7,-16r14,-23","w":151,"k":{"y":4,"\u00fd":4,"\u00ff":4,"Y":4,"\u00dd":4}},"\u00c5":{"d":"118,-258r38,258r-58,0r-5,-48r-35,0r-5,48r-58,0r37,-258r86,0xm89,-96r-12,-107r-5,0r-9,107r26,0xm109,-316r0,33r-16,16r-33,0r-16,-16r0,-33r16,-17r33,0xm91,-314r-29,0r0,29r29,0r0,-29","w":151,"k":{"y":4,"\u00fd":4,"\u00ff":4,"Y":4,"\u00dd":4}},"\u00c3":{"d":"118,-258r38,258r-58,0r-5,-48r-35,0r-5,48r-58,0r37,-258r86,0xm89,-96r-12,-107r-5,0r-9,107r26,0xm133,-310r-51,35r-25,-19r-26,18r-16,-15r49,-35r27,20r26,-19","w":151,"k":{"y":4,"\u00fd":4,"\u00ff":4,"Y":4,"\u00dd":4}},"\u00c7":{"d":"156,-37r-40,37r-20,0r0,9v25,-2,20,26,20,50r-14,14r-34,0r0,-20r24,0r0,-24v-16,0,-21,-11,-19,-29r-18,0r-42,-37r0,-184r38,-37r65,0r40,37r0,62r-58,0r0,-51r-26,0r0,161r26,0r0,-61r58,0r0,73","w":165},"\u00c9":{"d":"123,-258r0,48r-50,0r0,49r43,0r0,49r-43,0r0,63r52,0r0,49r-111,0r0,-258r109,0xm95,-333r18,-1r15,23r-8,16r-64,29r-12,-18","w":129},"\u00ca":{"d":"123,-258r0,48r-50,0r0,49r43,0r0,49r-43,0r0,63r52,0r0,49r-111,0r0,-258r109,0xm122,-275r-55,-18r-57,18r-9,-18r39,-33r53,0r39,33","w":129},"\u00cb":{"d":"123,-258r0,48r-50,0r0,49r43,0r0,49r-43,0r0,63r52,0r0,49r-111,0r0,-258r109,0xm120,-323r0,45r-47,0r0,-45r47,0xm58,-323r0,45r-46,0r0,-45r46,0","w":129},"\u00c8":{"d":"123,-258r0,48r-50,0r0,49r43,0r0,49r-43,0r0,63r52,0r0,49r-111,0r0,-258r109,0xm33,-333r52,49r-13,18r-64,-29r-7,-16r14,-23","w":129},"\u00cd":{"d":"76,-258r0,258r-59,0r0,-258r59,0xm77,-333r18,-1r15,23r-8,16r-64,29r-12,-18","w":93},"\u00ce":{"d":"76,-258r0,258r-59,0r0,-258r59,0xm104,-275r-55,-18r-57,18r-9,-18r39,-33r53,0r39,33","w":93},"\u00cf":{"d":"76,-258r0,258r-59,0r0,-258r59,0xm102,-323r0,45r-47,0r0,-45r47,0xm40,-323r0,45r-46,0r0,-45r46,0","w":93},"\u00cc":{"d":"76,-258r0,258r-59,0r0,-258r59,0xm15,-333r52,49r-13,18r-64,-29r-7,-16r14,-23","w":93},"\u00d1":{"d":"159,-258r0,258r-50,0r-39,-126r0,126r-56,0r0,-258r50,0r39,124r0,-124r56,0xm144,-310r-51,35r-26,-19r-25,18r-16,-15r49,-35r27,20r25,-19"},"\u00d3":{"d":"158,-221r0,184r-38,37r-66,0r-39,-37r0,-184r39,-37r64,0xm99,-210r-25,0r0,161r25,0r0,-161xm117,-333r18,-1r14,23r-7,16r-65,29r-11,-18","k":{"y":9,"\u00fd":9,"\u00ff":9,"Y":9,"\u00dd":9,"t":4,"T":4}},"\u00d4":{"d":"158,-221r0,184r-38,37r-66,0r-39,-37r0,-184r39,-37r64,0xm99,-210r-25,0r0,161r25,0r0,-161xm144,-275r-56,-18r-56,18r-10,-18r39,-33r54,0r39,33","k":{"y":9,"\u00fd":9,"\u00ff":9,"Y":9,"\u00dd":9,"t":4,"T":4}},"\u00d6":{"d":"158,-221r0,184r-38,37r-66,0r-39,-37r0,-184r39,-37r64,0xm99,-210r-25,0r0,161r25,0r0,-161xm142,-323r0,45r-47,0r0,-45r47,0xm80,-323r0,45r-47,0r0,-45r47,0","k":{"y":9,"\u00fd":9,"\u00ff":9,"Y":9,"\u00dd":9,"t":4,"T":4}},"\u00d2":{"d":"158,-221r0,184r-38,37r-66,0r-39,-37r0,-184r39,-37r64,0xm99,-210r-25,0r0,161r25,0r0,-161xm54,-333r52,49r-12,18r-64,-29r-8,-16r15,-23","k":{"y":9,"\u00fd":9,"\u00ff":9,"Y":9,"\u00dd":9,"t":4,"T":4}},"\u00d5":{"d":"158,-221r0,184r-38,37r-66,0r-39,-37r0,-184r39,-37r64,0xm99,-210r-25,0r0,161r25,0r0,-161xm144,-310r-51,35r-26,-19r-25,18r-16,-15r49,-35r27,20r25,-19","k":{"y":9,"\u00fd":9,"\u00ff":9,"Y":9,"\u00dd":9,"t":4,"T":4}},"\u00da":{"d":"159,-258r0,221r-39,37r-66,0r-40,-37r0,-221r59,0r0,209r26,0r0,-209r60,0xm117,-333r18,-1r14,23r-7,16r-65,29r-11,-18"},"\u00db":{"d":"159,-258r0,221r-39,37r-66,0r-40,-37r0,-221r59,0r0,209r26,0r0,-209r60,0xm144,-275r-56,-18r-56,18r-10,-18r39,-33r54,0r39,33"},"\u00dc":{"d":"159,-258r0,221r-39,37r-66,0r-40,-37r0,-221r59,0r0,209r26,0r0,-209r60,0xm142,-323r0,45r-47,0r0,-45r47,0xm80,-323r0,45r-47,0r0,-45r47,0"},"\u00d9":{"d":"159,-258r0,221r-39,37r-66,0r-40,-37r0,-221r59,0r0,209r26,0r0,-209r60,0xm54,-333r52,49r-12,18r-64,-29r-8,-16r15,-23"},"\u00dd":{"d":"160,-258r-51,150r0,108r-60,0r0,-108r-51,-150r60,0r22,93r21,-93r59,0xm110,-333r17,-1r15,23r-7,16r-65,29r-12,-18","w":158,"k":{"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,"A":4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4,",":4,".":4,"o":9,"\u00f8":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9,"O":9,"\u00d8":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"\u00d5":9,"s":4,":":4,";":4,"S":4}},"\u00e1":{"d":"118,-258r38,258r-58,0r-5,-48r-35,0r-5,48r-58,0r37,-258r86,0xm89,-96r-12,-107r-5,0r-9,107r26,0xm106,-333r18,-1r15,23r-8,16r-64,29r-12,-18","w":151},"\u00e2":{"d":"118,-258r38,258r-58,0r-5,-48r-35,0r-5,48r-58,0r37,-258r86,0xm89,-96r-12,-107r-5,0r-9,107r26,0xm133,-275r-56,-18r-56,18r-9,-18r38,-33r54,0r39,33","w":151},"\u00e4":{"d":"118,-258r38,258r-58,0r-5,-48r-35,0r-5,48r-58,0r37,-258r86,0xm89,-96r-12,-107r-5,0r-9,107r26,0xm131,-323r0,45r-47,0r0,-45r47,0xm69,-323r0,45r-47,0r0,-45r47,0","w":151},"\u00e0":{"d":"118,-258r38,258r-58,0r-5,-48r-35,0r-5,48r-58,0r37,-258r86,0xm89,-96r-12,-107r-5,0r-9,107r26,0xm44,-333r51,49r-12,18r-64,-29r-7,-16r14,-23","w":151},"\u00e5":{"d":"118,-258r38,258r-58,0r-5,-48r-35,0r-5,48r-58,0r37,-258r86,0xm89,-96r-12,-107r-5,0r-9,107r26,0xm109,-316r0,33r-16,16r-33,0r-16,-16r0,-33r16,-17r33,0xm91,-314r-29,0r0,29r29,0r0,-29","w":151},"\u00e3":{"d":"118,-258r38,258r-58,0r-5,-48r-35,0r-5,48r-58,0r37,-258r86,0xm89,-96r-12,-107r-5,0r-9,107r26,0xm133,-310r-51,35r-25,-19r-26,18r-16,-15r49,-35r27,20r26,-19","w":151},"\u00e7":{"d":"156,-37r-40,37r-20,0r0,9v25,-2,20,26,20,50r-14,14r-34,0r0,-20r24,0r0,-24v-16,0,-21,-11,-19,-29r-18,0r-42,-37r0,-184r38,-37r65,0r40,37r0,62r-58,0r0,-51r-26,0r0,161r26,0r0,-61r58,0r0,73","w":165},"\u00e9":{"d":"123,-258r0,48r-50,0r0,49r43,0r0,49r-43,0r0,63r52,0r0,49r-111,0r0,-258r109,0xm95,-333r18,-1r15,23r-8,16r-64,29r-12,-18","w":129},"\u00ea":{"d":"123,-258r0,48r-50,0r0,49r43,0r0,49r-43,0r0,63r52,0r0,49r-111,0r0,-258r109,0xm122,-275r-55,-18r-57,18r-9,-18r39,-33r53,0r39,33","w":129},"\u00eb":{"d":"123,-258r0,48r-50,0r0,49r43,0r0,49r-43,0r0,63r52,0r0,49r-111,0r0,-258r109,0xm120,-323r0,45r-47,0r0,-45r47,0xm58,-323r0,45r-46,0r0,-45r46,0","w":129},"\u00e8":{"d":"123,-258r0,48r-50,0r0,49r43,0r0,49r-43,0r0,63r52,0r0,49r-111,0r0,-258r109,0xm33,-333r52,49r-13,18r-64,-29r-7,-16r14,-23","w":129},"\u00ed":{"d":"76,-258r0,258r-59,0r0,-258r59,0xm77,-333r18,-1r15,23r-8,16r-64,29r-12,-18","w":93},"\u00ee":{"d":"76,-258r0,258r-59,0r0,-258r59,0xm104,-275r-55,-18r-57,18r-9,-18r39,-33r53,0r39,33","w":93},"\u00ef":{"d":"76,-258r0,258r-59,0r0,-258r59,0xm102,-323r0,45r-47,0r0,-45r47,0xm40,-323r0,45r-46,0r0,-45r46,0","w":93},"\u00ec":{"d":"76,-258r0,258r-59,0r0,-258r59,0xm15,-333r52,49r-13,18r-64,-29r-7,-16r14,-23","w":93},"\u00f1":{"d":"159,-258r0,258r-50,0r-39,-126r0,126r-56,0r0,-258r50,0r39,124r0,-124r56,0xm144,-310r-51,35r-26,-19r-25,18r-16,-15r49,-35r27,20r25,-19"},"\u00f3":{"d":"158,-221r0,184r-38,37r-66,0r-39,-37r0,-184r39,-37r64,0xm99,-210r-25,0r0,161r25,0r0,-161xm117,-333r18,-1r14,23r-7,16r-65,29r-11,-18","k":{"y":9,"\u00fd":9,"\u00ff":9,"t":4}},"\u00f4":{"d":"158,-221r0,184r-38,37r-66,0r-39,-37r0,-184r39,-37r64,0xm99,-210r-25,0r0,161r25,0r0,-161xm144,-275r-56,-18r-56,18r-10,-18r39,-33r54,0r39,33","k":{"y":9,"\u00fd":9,"\u00ff":9,"t":4}},"\u00f6":{"d":"158,-221r0,184r-38,37r-66,0r-39,-37r0,-184r39,-37r64,0xm99,-210r-25,0r0,161r25,0r0,-161xm142,-323r0,45r-47,0r0,-45r47,0xm80,-323r0,45r-47,0r0,-45r47,0","k":{"y":9,"\u00fd":9,"\u00ff":9,"t":4}},"\u00f2":{"d":"158,-221r0,184r-38,37r-66,0r-39,-37r0,-184r39,-37r64,0xm99,-210r-25,0r0,161r25,0r0,-161xm54,-333r52,49r-12,18r-64,-29r-8,-16r15,-23","k":{"y":9,"\u00fd":9,"\u00ff":9,"t":4}},"\u00f5":{"d":"158,-221r0,184r-38,37r-66,0r-39,-37r0,-184r39,-37r64,0xm99,-210r-25,0r0,161r25,0r0,-161xm144,-310r-51,35r-26,-19r-25,18r-16,-15r49,-35r27,20r25,-19","k":{"y":9,"\u00fd":9,"\u00ff":9,"t":4}},"\u00fa":{"d":"159,-258r0,221r-39,37r-66,0r-40,-37r0,-221r59,0r0,209r26,0r0,-209r60,0xm117,-333r18,-1r14,23r-7,16r-65,29r-11,-18"},"\u00fb":{"d":"159,-258r0,221r-39,37r-66,0r-40,-37r0,-221r59,0r0,209r26,0r0,-209r60,0xm144,-275r-56,-18r-56,18r-10,-18r39,-33r54,0r39,33"},"\u00fc":{"d":"159,-258r0,221r-39,37r-66,0r-40,-37r0,-221r59,0r0,209r26,0r0,-209r60,0xm142,-323r0,45r-47,0r0,-45r47,0xm80,-323r0,45r-47,0r0,-45r47,0"},"\u00f9":{"d":"159,-258r0,221r-39,37r-66,0r-40,-37r0,-221r59,0r0,209r26,0r0,-209r60,0xm54,-333r52,49r-12,18r-64,-29r-8,-16r15,-23"},"\u00fd":{"d":"160,-258r-51,150r0,108r-60,0r0,-108r-51,-150r60,0r22,93r21,-93r59,0xm110,-333r17,-1r15,23r-7,16r-65,29r-12,-18","w":158,"k":{"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,",":4,".":4,"o":9,"\u00f8":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9,"s":4,":":4,";":4}},"\u00ff":{"d":"160,-258r-51,150r0,108r-60,0r0,-108r-51,-150r60,0r22,93r21,-93r59,0xm135,-323r0,45r-47,0r0,-45r47,0xm73,-323r0,45r-47,0r0,-45r47,0","w":158,"k":{"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,",":4,".":4,"o":9,"\u00f8":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9,"s":4,":":4,";":4}},"\u00ad":{"d":"64,-149r0,34r-64,0r0,-34r64,0","w":64},"\u00a0":{"w":100}}});;if(!(navigator.appName=="Microsoft Internet Explorer"&&navigator.appVersion.match(/MSIE 6\.0/))){Cufon
('h2')
('ul.listing-calendar .date span')
('ul.listing-calendar-home .date')
('ul.listing-calendar-home a',{hover:true})
('.month-selection a')
('.button-allevents')
('table.event-overview th');}