/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version ${Version}
 */
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;},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};var wsStart=/^\s+/,wsEnd=/\s+$/;return function(text,style,node,previousElement){if(previousElement){if(previousElement.nodeName.toLowerCase()=='br'){text=text.replace(wsStart,'');}}
if(ignore[style.get('display')])return text;if(!node.previousSibling)text=text.replace(wsStart,'');if(!node.nextSibling)text=text.replace(wsEnd,'');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,wordSeparators={'\u0020':1,'\u00a0':1,'\u3000':1};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;this.spacing=function(chars,letterSpacing,wordSpacing){var glyphs=this.glyphs,glyph,kerning,k,jumps=[],width=0,w,i=-1,j=-1,chr;while(chr=chars[++i]){glyph=glyphs[chr]||this.missingGlyph;if(!glyph)continue;if(kerning){width-=k=kerning[chr]||0;jumps[j]-=k;}
w=glyph.w;if(isNaN(w))w=+this.w;if(w>0){w+=letterSpacing;if(wordSeparators[chr])w+=wordSpacing;}
width+=jumps[++j]=~~w;kerning=glyph.k;}
jumps.total=width;return jumps;};}
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,e.type=='mouseover');}
function onEnterLeave(e){trigger(this,e.type=='mouseenter');}
function trigger(el,hoverState){setTimeout(function(){var options=sharedStorage.get(el).options;api.replace(el,hoverState?merge(options,options.hover):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={},arg,key;for(var i=0,l=arguments.length;arg=arguments[i],i<l;++i){for(key in arg){if(hasOwnProperty(arg,key))merged[key]=arg[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 name=el.nodeName.toLowerCase();if(options.ignore[name])return;var replace=!options.textless[name];var style=CSS.getStyle(attach(el,options)).extend(options);var font=getFont(el,style),node,type,next,anchor,text,lastElement;if(!font)return;for(node=el.firstChild;node;node=next){type=node.nodeType;next=node.nextSibling;if(replace&&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,anchor,lastElement),style,options,node,el),anchor);anchor=null;}
if(type==1){if(node.firstChild){if(node.nodeName.toLowerCase()=='cufon'){engines[options.engine](font,null,style,options,node,el);}
else arguments.callee(node,options);}
lastElement=node;}}}
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={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,noscript: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(query){return jQuery(query);})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(query){return $$(query);})||(window.$&&function(query){return $(query);})||(document.querySelectorAll&&function(query){return document.querySelectorAll(query);})||elementsByTagName),separate:'words',textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:'none'};var separators={words:/\s/.test('\u00a0')?/[^\S\u00a0]+/:/\s+/,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){if(!data)return api;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.addClass(CSS.removeClass(DOM.root(),'cufon-loading'),'cufon-ready');});initialized=true;}
if(options.hover)options.forceHitArea=true;if(options.autoDetect)delete options.fontFamily;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);}
else delete options.textGradient;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{text-indent:0;}'+'@media screen,projection{'+'cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;'+
(HAS_BROKEN_LINEHEIGHT?'':'font-size:1px;line-height:1px;')+'}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}'+
(HAS_INLINE_BLOCK?'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(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.getAttribute('alt');var viewBox=font.viewBox;var size=style.getSize('fontSize',font.baseSize);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('');var jumps=font.spacing(chars,~~size.convertFrom(parseFloat(style.get('letterSpacing'))||0),~~size.convertFrom(parseFloat(style.get('wordSpacing'))||0));if(!jumps.length)return null;var width=jumps.total;expandRight+=viewBox.width-jumps[jumps.length-1];expandLeft+=viewBox.minX;var wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('cufon');wrapper.className='cufon cufon-canvas';wrapper.setAttribute('alt',text);canvas=document.createElement('canvas');wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('cufontext');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.max(Math.ceil(size.convert(stretchedWidth)),0)+'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.save();function renderText(){var glyphs=font.glyphs,glyph,i=-1,j=-1,chr;g.scale(stretchFactor,1);while(chr=chars[++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();return wrapper;};})());Cufon.registerEngine('vml',(function(){var ns=document.namespaces;if(!ns)return;ns.add('cvml','urn:schemas-microsoft-com:vml');ns=null;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">'+'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:'+
(HAS_BROKEN_LINEHEIGHT?'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 getFontSizeInPixels(el,value){return getSizeInPixels(el,/(?:em|ex|%)$|^[a-z-]+$/i.test(value)?'1em':value);}
function getSizeInPixels(el,value){if(value==='0')return 0;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;}
function getSpacingValue(el,style,size,property){var key='computed'+property,value=style[key];if(isNaN(value)){value=style.get(property);style[key]=value=(value=='normal')?0:~~size.convertFrom(getSizeInPixels(el,value));}
return value;}
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 wrapper,canvas;if(redraw){wrapper=node;canvas=node.firstChild;}
else{wrapper=document.createElement('cufon');wrapper.className='cufon cufon-vml';wrapper.alt=text;canvas=document.createElement('cufoncanvas');wrapper.appendChild(canvas);if(options.printable){var print=document.createElement('cufontext');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 color=style.get('color');var chars=Cufon.CSS.textTransform(text,style).split('');var jumps=font.spacing(chars,getSpacingValue(el,style,size,'letterSpacing'),getSpacingValue(el,style,size,'wordSpacing'));if(!jumps.length)return null;var width=jumps.total;var fullWidth=-minX+width+(viewBox.width-jumps[jumps.length-1]);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);var glyphs=font.glyphs,offsetX=0;var shadows=options.textShadow;var i=-1,j=0,chr;while(chr=chars[++i]){var glyph=glyphs[chars[i]]||font.missingGlyph,shape;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 1990-2003 Bitstream Inc. All rights reserved.
 */
google.setOnLoadCallback(function(){Cufon.registerFont({"w":180,"face":{"font-family":"engravers","font-weight":400,"font-stretch":"semi-expanded","units-per-em":"360","panose-1":"2 11 5 7 2 2 3 2 2 4","ascent":"274","descent":"-86","x-height":"5","bbox":"-20 -298.036 360 85","underline-thickness":"14.7656","underline-position":"-17.0508","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":119},"!":{"d":"70,-50r-20,0r-3,-144r26,0xm45,-11v0,-20,30,-20,30,0v0,9,-6,16,-15,16v-9,0,-15,-7,-15,-16","w":119},"\"":{"d":"83,-252r0,97r-18,0r0,-97r18,0xm35,-252r0,97r-18,0r0,-97r18,0","w":100},"#":{"d":"171,-152r-46,0r-17,49r47,0xm161,-256r-29,85r46,0r30,-85r23,0r-30,85r55,0r-6,19r-56,0r-17,49r60,0r-7,19r-60,0r-30,84r-22,0r30,-84r-47,0r-31,84r-22,0r30,-84r-57,0r6,-19r58,0r17,-49r-62,0r6,-19r63,0r30,-85r22,0","w":276},"$":{"d":"130,-16v41,3,76,-39,40,-64v-10,-6,-23,-9,-40,-9r0,73xm209,-54v1,37,-39,60,-79,59r0,41r-20,0r0,-42v-33,-4,-57,-15,-79,-32r14,-19v18,14,40,25,65,29r0,-72v-39,-2,-71,-13,-71,-47v0,-33,34,-53,71,-52r0,-29r20,0r0,31v28,4,50,14,69,29r-12,18v-17,-13,-34,-21,-57,-26r0,55v44,1,78,18,79,57xm110,-167v-32,-2,-65,28,-35,47v8,5,19,7,35,8r0,-55","w":240},"%":{"d":"206,-51v0,18,14,35,33,35v18,0,32,-16,32,-35v0,-19,-14,-35,-32,-35v-19,0,-33,17,-33,35xm294,-51v0,31,-23,56,-55,56v-32,0,-55,-25,-55,-56v0,-31,23,-57,55,-56v32,1,55,24,55,56xm188,-185r25,0r-98,185r-25,0xm32,-133v0,19,14,35,33,35v18,0,32,-16,32,-35v0,-19,-14,-35,-32,-35v-19,0,-33,16,-33,35xm120,-133v0,31,-23,56,-55,56v-31,0,-56,-25,-56,-56v0,-31,25,-56,56,-56v32,0,55,26,55,56","w":303},"&":{"d":"50,-59v0,55,81,49,107,15r-59,-70v-26,12,-48,25,-48,55xm24,-58v1,-39,26,-56,58,-73r-53,-63r128,0r13,21r-91,0r95,112v6,-7,14,-13,19,-21r16,19v-6,7,-12,16,-19,22r34,40r-31,0r-21,-25v-37,45,-151,44,-148,-32","w":222},"'":{"d":"35,-252r0,97r-18,0r0,-97r18,0","w":51},"(":{"d":"68,5v-61,-42,-62,-160,0,-203r12,13v-47,33,-48,143,0,176","w":98},")":{"d":"18,-9v48,-31,48,-144,0,-176r12,-13v61,43,62,159,0,203","w":98},"*":{"d":"90,-128r-25,36r-16,-11r28,-34r-41,-11r7,-18r39,14r0,-42r17,0r-1,42r39,-14r6,18r-41,11r28,34r-16,12"},"+":{"d":"159,-215r0,99r96,0r0,17r-96,0r0,99r-17,0r0,-99r-97,0r0,-17r97,0r0,-99r17,0","w":299},",":{"d":"60,-33v34,11,8,58,-10,70v-14,-9,12,-26,8,-37v-20,-1,-15,-34,2,-33","w":119},"-":{"d":"8,-107r76,0r0,21r-76,0r0,-21","w":92,"k":{"Y":13,"T":20,"J":-13}},".":{"d":"45,-11v0,-20,30,-20,30,0v0,9,-6,16,-15,16v-9,0,-15,-7,-15,-16","w":119},"\/":{"d":"86,-198r21,0r-93,231r-21,0","w":100},"0":{"d":"38,-92v0,43,37,75,82,75v46,0,82,-31,82,-75v0,-44,-36,-74,-82,-74v-46,0,-82,30,-82,74xm227,-92v0,57,-48,97,-107,97v-59,0,-107,-39,-107,-97v0,-57,49,-97,107,-97v58,0,107,40,107,97","w":240},"1":{"d":"108,1r0,-186r24,0r0,186r-24,0","w":240},"2":{"d":"43,-156v37,-41,154,-52,160,19v12,35,-106,60,-127,79v-9,8,-12,21,-9,36r140,0r0,22r-165,0v-9,-69,28,-89,82,-104v37,-10,54,-23,54,-33v-13,-49,-93,-26,-120,0","w":240},"3":{"d":"220,-58v0,60,-96,76,-152,53v-17,-7,-32,-18,-47,-33r15,-18v26,24,47,38,89,39v33,1,70,-14,70,-41v0,-30,-34,-32,-70,-32r0,-23v26,2,57,2,56,-24v-11,-48,-98,-28,-122,-2r-15,-20v38,-35,158,-51,162,22v0,16,-7,27,-17,34v18,8,30,22,31,45","w":240},"4":{"d":"57,-67r111,0r0,-88xm168,0r0,-45r-148,0r0,-22r148,-118r24,0r0,118r31,0r0,22r-31,0r0,45r-24,0","w":240},"5":{"d":"210,-63v0,58,-77,83,-135,60v-15,-6,-31,-15,-46,-26r12,-21v27,18,46,31,83,32v30,0,62,-18,61,-48v-3,-53,-93,-49,-127,-23r-15,0r0,-96r150,0r0,23r-126,0r0,41v58,-23,144,-6,143,58","w":240},"6":{"d":"198,-62v0,-62,-112,-51,-150,-19v3,37,46,63,87,63v31,0,63,-17,63,-44xm21,-93v0,-93,130,-125,191,-64r-14,17v-40,-41,-146,-32,-150,32v54,-36,175,-30,175,45v0,43,-40,68,-88,68v-62,0,-114,-40,-114,-98","w":240},"7":{"d":"66,0r114,-162r-143,0r0,-23r188,0r-130,185r-29,0","w":240},"8":{"d":"120,-92v-40,0,-67,4,-67,35v0,54,134,54,134,0v0,-31,-27,-34,-67,-35xm200,-139v0,16,-10,27,-21,34v20,9,33,22,33,47v0,43,-44,64,-92,63v-48,0,-92,-19,-93,-62v0,-25,15,-39,34,-48v-50,-36,0,-84,59,-84v41,0,80,15,80,50xm66,-139v4,34,105,34,108,-1v-4,-36,-106,-37,-108,1","w":240},"9":{"d":"42,-121v0,62,112,50,150,18v-3,-37,-46,-63,-87,-63v-32,0,-63,18,-63,45xm219,-91v0,94,-131,125,-191,64r15,-16v40,41,146,30,149,-33v-53,37,-175,29,-175,-45v0,-43,40,-68,88,-68v62,0,114,40,114,98","w":240},":":{"d":"45,-11v0,-20,30,-20,30,0v0,9,-6,16,-15,16v-9,0,-15,-7,-15,-16xm45,-112v0,-20,30,-20,30,0v0,9,-6,16,-15,16v-9,0,-15,-7,-15,-16","w":119},";":{"d":"45,-112v0,-20,30,-20,30,0v0,9,-6,16,-15,16v-9,0,-15,-7,-15,-16xm60,-33v34,11,8,58,-10,70v-14,-9,12,-26,8,-37v-20,-1,-15,-34,2,-33","w":119},"<":{"d":"253,-180r-179,73r179,72r0,20r-207,-85r0,-14r207,-86r0,20","w":299},"=":{"d":"255,-83r0,17r-210,0r0,-17r210,0xm255,-149r0,18r-210,0r0,-18r210,0","w":299},">":{"d":"253,-114r0,14r-207,85r0,-20r180,-72r-180,-73r0,-20","w":299},"?":{"d":"10,-158v5,-52,115,-56,111,5v-3,47,-63,43,-52,106r-24,0v0,-28,-3,-49,15,-63v12,-15,33,-21,36,-45v-3,-32,-64,-25,-64,6xm43,-11v0,-9,7,-16,15,-16v7,0,14,7,14,16v0,9,-6,16,-14,16v-9,0,-15,-6,-15,-16","w":129},"@":{"d":"102,-80v-7,-70,90,-134,126,-67r11,-22r16,0r-27,115v0,10,7,17,19,16v50,-4,72,-48,73,-100v2,-63,-59,-104,-125,-102v-94,3,-149,58,-154,150v-7,128,167,153,250,91r7,10v-31,22,-67,39,-115,39v-97,0,-162,-49,-162,-144v0,-100,71,-162,175,-162v81,0,143,40,143,119v0,66,-33,115,-97,115v-22,0,-37,-10,-33,-32v-10,18,-26,31,-52,32v-37,0,-52,-21,-55,-58xm123,-78v0,41,44,51,70,29v20,-17,23,-49,31,-77v-4,-19,-17,-35,-38,-35v-38,0,-63,41,-63,83","w":360},"A":{"d":"63,-75r85,0r-43,-86xm0,0r95,-194r20,0r96,194r-26,0r-26,-52r-107,0r-26,52r-26,0","w":211,"k":{"\u2019":40,"\u2018":46,"\u201d":40,"\u201c":46,"\u00bb":-13,"\u00d8":6,"y":13,"w":6,"v":15,"u":6,"t":13,"Y":8,"V":18,"U":6,"T":20,"Q":6,"O":6,"G":6,"A":6,";":13,":":13,".":10,",":10}},"B":{"d":"178,-144v0,-48,-81,-21,-125,-28r0,55v45,-6,125,19,125,-27xm190,-59v0,-57,-85,-30,-137,-36r0,73v53,-6,137,21,137,-37xm184,-110v53,23,35,110,-34,110r-121,0r0,-194v67,6,173,-24,173,48v-1,17,-7,28,-18,36","w":235,"k":{"\u2019":13,"\u2018":13,"\u201d":13,"\u201c":13,"\u00ab":-7,"Y":6,"V":13}},"C":{"d":"114,-18v35,0,57,-18,70,-44r19,15v-16,31,-46,51,-89,52v-57,1,-100,-45,-100,-102v0,-100,139,-137,185,-56r-20,14v-11,-21,-34,-37,-65,-37v-43,0,-76,35,-76,79v0,44,32,80,76,79","w":217},"D":{"d":"189,-97v0,-67,-62,-82,-136,-75r0,150v74,5,136,-4,136,-75xm214,-97v0,59,-41,97,-102,97r-83,0r0,-194r83,0v59,-1,102,39,102,97","w":227,"k":{"\u00bb":-7,"\u00ab":-13,"\u00c5":6,"Y":6,"W":-7,"V":6,"A":6,"-":-13}},"E":{"d":"29,0r0,-194r153,0r0,22r-129,0r0,57r78,0r0,23r-78,0r0,70r137,0r0,22r-161,0","w":196},"F":{"d":"29,0r0,-194r153,0r0,22r-129,0r0,57r78,0r0,23r-78,0r0,92r-24,0","w":178,"k":{"\u2019":-20,"\u2018":-13,"\u201d":-20,"\u201c":-13,"\u00bb":6,"\u00ab":13,"\u00c5":31,"y":33,"u":36,"r":33,"o":33,"i":26,"e":33,"a":40,"A":31,";":50,":":50,".":60,",":60}},"G":{"d":"114,-18v32,0,50,-14,64,-35r0,-28r-53,0r0,-22r77,0r0,58v-17,28,-46,50,-88,50v-57,1,-100,-45,-100,-102v0,-100,139,-137,185,-56r-20,14v-11,-21,-34,-37,-65,-37v-43,0,-76,35,-76,79v0,44,32,79,76,79","w":222,"k":{"\u2018":6,"\u201c":6,"\u00c5":6,"W":-7,"A":6}},"H":{"d":"29,0r0,-194r25,0r0,77r114,0r0,-77r24,0r0,194r-24,0r0,-95r-114,0r0,95r-25,0","w":221},"I":{"d":"30,0r0,-195r24,0r0,195r-24,0","w":83},"J":{"d":"85,5v-61,1,-84,-26,-78,-88r24,0v-4,48,9,65,59,65v87,0,43,-109,53,-176r24,0r0,132v0,52,-27,66,-82,67","w":193,"k":{"\u2018":6,"\u201c":6,"\u00c5":6,"A":6}},"K":{"d":"29,0r0,-194r24,0r0,96r112,-96r31,0r-78,69r90,125r-29,0r-79,-109r-47,40r0,69r-24,0","w":210,"k":{"\u2019":6,"\u2018":13,"\u201d":6,"\u201c":13,"\u00ab":6,"\u00d8":13,"\u00c5":13,"y":16,"u":13,"o":8,"e":6,"a":6,"Y":13,"W":6,"O":13,"C":13,"A":13,"-":13}},"L":{"d":"29,0r0,-194r24,0r0,172r127,0r0,22r-151,0","k":{"\u2019":60,"\u2018":60,"\u201d":60,"\u201c":60,"\u00bb":-20,"\u00d8":6,"y":33,"u":6,"Y":26,"W":20,"V":33,"T":26,"O":6,"-":13}},"M":{"d":"28,0r0,-194r22,0r79,119r79,-119r22,0r0,194r-24,0r0,-152r-77,115r-77,-115r0,152r-24,0","w":257},"N":{"d":"29,0r0,-194r13,0r126,145r0,-145r24,0r0,194r-12,0r-127,-145r0,145r-24,0","w":220},"O":{"d":"38,-97v0,44,32,79,76,79v44,0,76,-35,76,-79v0,-44,-33,-79,-76,-79v-43,0,-76,35,-76,79xm215,-97v0,57,-44,102,-101,102v-57,0,-100,-45,-100,-102v0,-58,43,-101,100,-101v57,0,101,44,101,101","w":228,"k":{"\u00c5":6,"X":20,"V":6,"A":6}},"P":{"d":"175,-139v0,-50,-76,-29,-123,-33r0,64v46,-5,123,18,123,-31xm200,-142v0,34,-23,57,-57,57r-91,0r0,85r-24,0r0,-194v70,4,172,-21,172,52","w":210,"k":{"\u00bb":-7,"\u00c5":31,"y":-7,"u":6,"s":6,"r":6,"o":6,"n":6,"i":6,"e":6,"a":33,"Y":-13,"W":-7,"A":31,";":20,":":20,".":73,"-":-7,",":73}},"Q":{"d":"38,-97v0,45,32,82,79,79r-12,-25r27,0r10,21v28,-11,47,-38,48,-75v0,-44,-33,-79,-76,-79v-43,0,-76,35,-76,79xm215,-97v-1,47,-26,82,-63,96r13,26r-28,0v-6,-10,-5,-25,-25,-20v-55,1,-98,-45,-98,-102v0,-58,43,-101,100,-101v57,0,102,44,101,101","w":228},"R":{"d":"175,-139v0,-50,-76,-29,-123,-33r0,64v46,-5,123,18,123,-31xm200,-140v0,29,-20,51,-46,55r49,85r-27,0r-49,-85r-75,0r0,85r-24,0r0,-194v71,4,174,-21,172,54","w":214,"k":{"\u00c5":13,"a":6,"W":-7,"A":13}},"S":{"d":"180,-96v42,46,-4,101,-68,101v-43,0,-75,-13,-101,-34r14,-21v24,18,51,32,87,33v31,1,60,-15,60,-41v0,-27,-31,-34,-60,-36v-57,-5,-85,-6,-93,-51v5,-72,129,-60,168,-22r-14,20v-28,-28,-114,-48,-129,1v5,48,106,17,136,50","w":214,"k":{"\u00c5":6,"A":6}},"T":{"d":"63,0r0,-172r-82,0r0,-22r188,0r0,22r-82,0r0,172r-24,0","w":150,"k":{"\u2018":-13,"\u201c":-13,"\u00bb":13,"\u00ab":26,"\u00c5":20,"y":33,"w":26,"u":26,"s":33,"r":26,"o":33,"i":26,"e":26,"c":33,"a":33,"A":20,";":33,":":33,".":40,"-":20,",":40}},"U":{"d":"104,5v-55,0,-80,-15,-80,-67r0,-132r24,0r0,126v1,41,13,50,56,50v43,0,56,-8,56,-50r0,-126r24,0r0,132v-1,51,-25,67,-80,67","w":208,"k":{"\u00c5":6,"J":6,"A":6}},"V":{"d":"106,0r-15,0r-93,-194r26,0r75,156r74,-156r27,0","w":197,"k":{"\u2018":13,"\u201c":13,"\u00bb":13,"\u00ab":20,"\u00d8":6,"\u00c5":18,"u":11,"o":18,"i":13,"e":13,"a":23,"O":6,"A":18,";":33,":":33,".":53,",":53}},"W":{"d":"61,0r-63,-194r24,0r48,150r49,-150r22,0r49,149r48,-149r23,0r-63,194r-17,0r-51,-156r-51,156r-18,0","w":259,"k":{"\u2018":6,"\u201c":6,"\u00ab":13,"u":10,"r":8,"i":8,"e":8,"a":13,";":33,":":33,".":46,",":46}},"X":{"d":"5,0r79,-98r-78,-96r30,0r63,78r64,-78r29,0r-78,95r80,99r-31,0r-64,-80r-66,80r-28,0","w":197,"k":{"\u2019":6,"\u2018":20,"\u201d":6,"\u201c":20,"\u00bb":-7,"\u00ab":13,"\u00d8":20,"e":6,"O":20,"C":20}},"Y":{"d":"69,0r0,-97r-87,-97r30,0r70,77r69,-77r30,0r-87,97r0,97r-25,0","w":163,"k":{"\u2018":6,"\u201c":6,"\u00ab":20,"\u00c5":8,"u":20,"o":33,"i":16,"e":16,"a":31,"C":6,"A":8,";":33,":":33,".":40,"-":13,",":40}},"Z":{"d":"-1,0r131,-172r-120,0r0,-22r164,0r-128,172r127,0r0,22r-174,0","w":183,"k":{"\u2019":6,"\u2018":13,"\u201d":6,"\u201c":13}},"[":{"d":"20,0r0,-194r56,0r0,21r-33,0r0,152r33,0r0,21r-56,0","w":98},"\\":{"d":"86,33r-93,-231r21,0r93,231r-21,0","w":100},"]":{"d":"78,0r-56,0r0,-21r34,0r0,-152r-34,0r0,-21r56,0r0,194","w":98},"^":{"d":"192,-256r93,98r-25,0r-80,-80r-81,80r-25,0r94,-98r24,0","w":360},"_":{"d":"180,67r0,18r-180,0r0,-18r180,0"},"`":{"d":"96,-173r-47,-62r26,0r37,62r-16,0"},"a":{"d":"51,-58r59,0r-29,-57xm-3,0r76,-150r15,0r77,150r-25,0r-20,-38r-79,0r-19,38r-25,0","w":161,"k":{"\u00bb":-13,"\u00ab":6,"y":18,"x":6,"w":6,"v":15,"u":6,"t":13}},"b":{"d":"140,-111v-3,-32,-60,-12,-91,-17r0,35r69,0v14,0,22,-5,22,-18xm151,-46v0,-41,-64,-20,-102,-25r0,49v37,-5,102,16,102,-24xm150,-85v41,17,28,85,-27,85r-97,0r0,-150v53,5,139,-19,139,37v0,13,-5,23,-15,28","w":195,"k":{"y":20,"w":6,"v":13,"s":6}},"c":{"d":"37,-75v0,65,105,76,129,25r18,13v-33,67,-171,50,-171,-38v0,-82,126,-105,167,-44r-18,13v-27,-45,-125,-31,-125,31","w":198,"k":{"y":8,"a":-7}},"d":{"d":"174,-75v0,72,-70,81,-148,75r0,-150v77,-6,148,4,148,75xm150,-75v0,-49,-47,-58,-101,-53r0,106v54,4,101,-2,101,-53","w":185,"k":{"\u00ab":-7,"y":13,"v":6}},"e":{"d":"25,0r0,-150r141,0r0,22r-117,0r0,37r77,0r0,22r-77,0r0,47r124,0r0,22r-148,0"},"f":{"d":"49,-69r0,69r-24,0r0,-150r139,0r0,22r-115,0r0,37r74,0r0,22r-74,0","w":169,"k":{"\u00bb":-13,"t":10,"s":8,"a":29}},"g":{"d":"37,-75v0,62,101,75,129,33r0,-16r-39,0r0,-22r62,0r0,45v-35,65,-176,47,-176,-40v0,-83,131,-105,174,-44r-19,13v-29,-43,-131,-33,-131,31","w":206,"k":{"y":13,"t":6}},"h":{"d":"49,-70r0,70r-24,0r0,-150r24,0r0,58r106,0r0,-58r23,0r0,150r-23,0r0,-70r-106,0","w":203},"i":{"d":"26,0r0,-150r24,0r0,150r-24,0","w":75},"j":{"d":"72,5v-46,0,-68,-20,-63,-69r23,0v-3,34,9,47,43,47v62,0,32,-82,39,-133r23,0v-3,72,20,155,-65,155","w":160,"k":{"a":6}},"k":{"d":"26,0r0,-150r23,0r0,67r80,-67r31,0r-63,53r72,97r-26,0r-63,-83r-31,26r0,57r-23,0","w":171,"k":{"\u00bb":-7,"\u00ab":6,"y":13,"w":6,"t":6,"o":6,"c":6}},"l":{"d":"25,0r0,-150r24,0r0,128r111,0r0,22r-135,0","w":161,"k":{"\u00bb":-13,"\u00ab":6,"y":33,"w":16,"v":26,"t":28,"o":6}},"m":{"d":"25,0r0,-150r20,0r62,88r61,-88r20,0r0,150r-24,0r0,-108r-57,84r-58,-84r0,108r-24,0","w":213},"n":{"d":"26,0r0,-150r12,0r96,105r0,-105r23,0r0,150r-13,0r-95,-105r0,105r-23,0","w":182},"o":{"d":"37,-75v-1,35,30,58,67,58v37,0,68,-23,68,-58v0,-35,-32,-58,-68,-58v-36,0,-67,23,-67,58xm197,-75v0,48,-43,80,-93,80v-50,0,-91,-32,-91,-80v0,-48,41,-79,91,-79v51,0,93,31,93,79","w":209,"k":{"y":13,"x":6}},"p":{"d":"160,-108v0,-38,-74,-14,-111,-20r0,40r86,0v15,1,25,-7,25,-20xm184,-108v0,57,-79,40,-135,42r0,66r-23,0r0,-150v61,6,158,-22,158,42","w":191,"k":{"\u00bb":-13,"\u00ab":-13,"w":-13,"a":20}},"q":{"d":"37,-75v-1,36,34,62,72,57r-15,-18r28,0r12,14v21,-9,38,-26,38,-53v0,-35,-32,-58,-68,-58v-36,0,-67,23,-67,58xm197,-75v-1,35,-21,59,-48,71r21,25r-29,0r-15,-18v-61,11,-113,-23,-113,-78v0,-48,41,-79,91,-79v51,0,94,31,93,79","w":209},"r":{"d":"154,-108v0,-15,-10,-19,-25,-20r-80,0r0,40r80,0v15,1,25,-6,25,-20xm129,-150v58,-8,64,80,12,84r42,66r-26,0r-42,-66r-66,0r0,66r-23,0r0,-150r103,0","w":195,"k":{"y":6,"v":6,"a":6}},"s":{"d":"162,-45v0,65,-111,58,-149,26r11,-20v17,12,43,21,69,22v23,0,44,-9,44,-29v0,-22,-21,-25,-46,-26v-44,-2,-72,-3,-72,-39v0,-57,101,-50,135,-22r-12,20v-15,-11,-37,-20,-61,-20v-18,0,-38,6,-38,22v0,19,21,17,47,18v42,0,72,11,72,48","w":178,"k":{"s":6}},"t":{"d":"61,0r0,-129r-63,0r0,-21r150,0r0,21r-63,0r0,129r-24,0","w":145,"k":{"\u00bb":-20,"\u00ab":13,"t":13,"c":10,"a":13}},"u":{"d":"100,5v-47,0,-74,-9,-74,-52r0,-103r23,0v7,57,-26,145,51,133v78,12,44,-76,51,-133r23,0r0,103v-1,42,-29,52,-74,52","w":200,"k":{"j":13,"a":6}},"v":{"d":"91,0r-12,0r-75,-150r24,0r57,112r55,-112r26,0","w":169,"k":{"\u00ab":13,"a":15}},"w":{"d":"54,0r-51,-150r23,0r37,110r38,-110r19,0r38,110r37,-110r23,0r-51,150r-17,0r-39,-115r-41,115r-16,0","w":220,"k":{"\u00bb":-7,"a":6}},"x":{"d":"4,0r63,-75r-63,-75r29,0r48,58r48,-58r29,0r-63,74r64,76r-29,0r-49,-59r-50,59r-27,0","w":162,"k":{"\u00bb":-7,"\u00ab":6,"o":6,"c":6,"a":6}},"y":{"d":"69,0r0,-77r-69,-73r31,0r49,53r49,-53r31,0r-68,73r0,77r-23,0","w":160,"k":{"\u00ab":6,"o":13,"c":10,"a":18}},"z":{"d":"6,0r97,-128r-88,0r0,-22r132,0r-98,128r97,0r0,22r-140,0","w":157},"{":{"d":"83,-152v-1,-64,-6,-118,67,-108r0,19v-90,-19,-7,137,-80,148v41,6,34,55,34,103v0,37,9,45,46,44r0,19v-71,9,-69,-42,-67,-108v1,-38,-15,-50,-52,-49r0,-19v37,1,53,-10,52,-49"},"|":{"d":"100,-275r0,360r-19,0r0,-360r19,0"},"}":{"d":"30,-260v71,-9,70,42,68,108v-1,38,14,50,52,49r0,19v-56,-8,-52,40,-52,92v0,54,-15,66,-68,65r0,-19v90,19,6,-138,81,-147v-42,-6,-34,-54,-35,-103v0,-38,-10,-46,-46,-45r0,-19"},"~":{"d":"147,-117v47,20,88,15,122,-15r0,20v-20,14,-39,24,-68,25v-26,1,-78,-26,-102,-24v-28,3,-45,13,-68,28r0,-20v34,-24,69,-34,116,-14","w":299},"\u00c4":{"d":"63,-75r85,0r-43,-86xm0,0r95,-194r20,0r96,194r-26,0r-26,-52r-107,0r-26,52r-26,0xm134,-230v-9,1,-15,-7,-15,-16v0,-8,7,-15,15,-15v8,0,16,7,16,15v0,8,-7,17,-16,16xm78,-230v-9,1,-16,-8,-16,-16v0,-8,8,-15,16,-15v8,0,15,7,15,15v0,9,-6,17,-15,16","w":211},"\u00c5":{"d":"105,-282v-14,0,-26,12,-26,26v0,14,12,27,26,27v14,0,27,-13,27,-27v0,-14,-12,-26,-27,-26xm105,-213v-23,0,-42,-19,-42,-43v-1,-23,19,-43,42,-42v24,0,43,19,43,42v0,23,-20,43,-43,43xm63,-75r85,0r-43,-86xm0,0r95,-194r20,0r96,194r-26,0r-26,-52r-107,0r-26,52r-26,0","w":211,"k":{"\u2019":40,"\u2018":46,"\u201d":40,"\u201c":46,"\u00bb":-13,"\u00d8":6,"y":13,"w":6,"v":15,"u":6,"t":13,"Y":8,"V":18,"U":6,"T":20,"Q":6,"O":6,"G":6,";":13,":":13,".":10,",":10}},"\u00c7":{"d":"114,-18v35,0,57,-18,70,-44r19,15v-16,31,-46,51,-89,52v-57,1,-100,-45,-100,-102v0,-100,139,-137,185,-56r-20,14v-11,-21,-34,-37,-65,-37v-43,0,-76,35,-76,79v0,44,32,80,76,79xm155,50v0,39,-54,34,-84,23r0,-13v23,5,61,16,64,-10v2,-17,-14,-19,-33,-18r0,-32r11,0r0,20v25,-1,42,7,42,30","w":217},"\u00c9":{"d":"29,0r0,-194r153,0r0,22r-129,0r0,57r78,0r0,23r-78,0r0,70r137,0r0,22r-161,0xm102,-217r-16,0r37,-62r26,0","w":196},"\u00d1":{"d":"94,-260v20,1,45,20,53,-4r14,0v-5,36,-41,34,-71,23v-8,0,-13,6,-16,13r-14,0v5,-17,13,-33,34,-32xm29,0r0,-194r13,0r126,145r0,-145r24,0r0,194r-12,0r-127,-145r0,145r-24,0","w":220},"\u00d6":{"d":"38,-97v0,44,32,79,76,79v44,0,76,-35,76,-79v0,-44,-33,-79,-76,-79v-43,0,-76,35,-76,79xm215,-97v0,57,-44,102,-101,102v-57,0,-100,-45,-100,-102v0,-58,43,-101,100,-101v57,0,101,44,101,101xm142,-230v-9,1,-15,-7,-15,-16v0,-8,7,-15,15,-15v8,0,16,7,16,15v0,8,-7,17,-16,16xm86,-230v-9,1,-16,-8,-16,-16v0,-8,8,-15,16,-15v8,0,15,7,15,15v0,9,-6,17,-15,16","w":228},"\u00dc":{"d":"104,5v-55,0,-80,-15,-80,-67r0,-132r24,0r0,126v1,41,13,50,56,50v43,0,56,-8,56,-50r0,-126r24,0r0,132v-1,51,-25,67,-80,67xm132,-230v-9,1,-15,-7,-15,-16v0,-8,7,-15,15,-15v8,0,16,7,16,15v0,8,-7,17,-16,16xm76,-230v-9,1,-16,-8,-16,-16v0,-8,8,-15,16,-15v8,0,15,7,15,15v0,9,-6,17,-15,16","w":208},"\u00e1":{"d":"51,-58r59,0r-29,-57xm-3,0r76,-150r15,0r77,150r-25,0r-20,-38r-79,0r-19,38r-25,0xm75,-173r-16,0r37,-62r26,0","w":161},"\u00e0":{"d":"51,-58r59,0r-29,-57xm-3,0r76,-150r15,0r77,150r-25,0r-20,-38r-79,0r-19,38r-25,0xm87,-173r-47,-62r26,0r37,62r-16,0","w":161},"\u00e2":{"d":"33,-173r35,-62r26,0r36,62r-17,0r-32,-47r-32,47r-16,0xm51,-58r59,0r-29,-57xm-3,0r76,-150r15,0r77,150r-25,0r-20,-38r-79,0r-19,38r-25,0","w":161},"\u00e4":{"d":"51,-58r59,0r-29,-57xm-3,0r76,-150r15,0r77,150r-25,0r-20,-38r-79,0r-19,38r-25,0xm109,-186v-9,1,-15,-7,-15,-16v0,-8,7,-15,15,-15v8,0,16,7,16,15v0,8,-7,17,-16,16xm53,-186v-9,1,-16,-8,-16,-16v0,-8,8,-15,16,-15v8,0,15,7,15,15v0,9,-6,17,-15,16","w":161},"\u00e3":{"d":"65,-216v20,1,44,20,52,-4r15,0v-5,36,-42,35,-72,23v-7,1,-13,6,-16,13r-14,0v5,-17,14,-33,35,-32xm51,-58r59,0r-29,-57xm-3,0r76,-150r15,0r77,150r-25,0r-20,-38r-79,0r-19,38r-25,0","w":161},"\u00e5":{"d":"81,-239v-14,0,-26,11,-26,27v0,14,12,26,26,26v14,0,27,-12,27,-26v0,-14,-13,-27,-27,-27xm81,-170v-23,0,-42,-19,-42,-43v-1,-23,19,-43,42,-42v24,0,43,19,43,42v0,23,-20,43,-43,43xm51,-58r59,0r-29,-57xm-3,0r76,-150r15,0r77,150r-25,0r-20,-38r-79,0r-19,38r-25,0","w":161},"\u00e7":{"d":"37,-75v0,65,105,76,129,25r18,13v-33,67,-171,50,-171,-38v0,-82,126,-105,167,-44r-18,13v-27,-45,-125,-31,-125,31xm141,50v0,39,-54,34,-84,23r0,-13v23,5,61,16,64,-10v2,-17,-14,-19,-33,-18r0,-32r11,0r0,20v25,-1,42,7,42,30","w":198},"\u00e9":{"d":"25,0r0,-150r141,0r0,22r-117,0r0,37r77,0r0,22r-77,0r0,47r124,0r0,22r-148,0xm91,-173r-16,0r37,-62r26,0"},"\u00e8":{"d":"25,0r0,-150r141,0r0,22r-117,0r0,37r77,0r0,22r-77,0r0,47r124,0r0,22r-148,0xm103,-173r-47,-62r26,0r37,62r-16,0"},"\u00ea":{"d":"49,-173r35,-62r27,0r35,62r-16,0r-33,-47r-32,47r-16,0xm25,0r0,-150r141,0r0,22r-117,0r0,37r77,0r0,22r-77,0r0,47r124,0r0,22r-148,0"},"\u00eb":{"d":"25,0r0,-150r141,0r0,22r-117,0r0,37r77,0r0,22r-77,0r0,47r124,0r0,22r-148,0xm125,-186v-9,1,-15,-7,-15,-16v0,-8,7,-15,15,-15v8,0,16,7,16,15v0,8,-7,17,-16,16xm69,-186v-9,1,-16,-8,-16,-16v0,-8,8,-15,16,-15v8,0,15,7,15,15v0,9,-6,17,-15,16"},"\u00ed":{"d":"26,0r0,-150r24,0r0,150r-24,0xm32,-173r-16,0r37,-62r26,0","w":75},"\u00ec":{"d":"26,0r0,-150r24,0r0,150r-24,0xm44,-173r-47,-62r26,0r37,62r-16,0","w":75},"\u00ee":{"d":"-10,-173r35,-62r27,0r35,62r-17,0r-32,-47r-32,47r-16,0xm26,0r0,-150r24,0r0,150r-24,0","w":75},"\u00ef":{"d":"26,0r0,-150r24,0r0,150r-24,0xm66,-186v-9,1,-15,-7,-15,-16v0,-8,7,-15,15,-15v8,0,16,7,16,15v0,8,-7,17,-16,16xm10,-186v-9,1,-16,-8,-16,-16v0,-8,8,-15,16,-15v8,0,15,7,15,15v0,9,-6,17,-15,16","w":75},"\u00f1":{"d":"75,-216v20,1,45,20,53,-4r14,0v-5,36,-41,35,-71,23v-7,1,-13,6,-16,13r-14,0v5,-17,13,-33,34,-32xm26,0r0,-150r12,0r96,105r0,-105r23,0r0,150r-13,0r-95,-105r0,105r-23,0","w":182},"\u00f3":{"d":"37,-75v-1,35,30,58,67,58v37,0,68,-23,68,-58v0,-35,-32,-58,-68,-58v-36,0,-67,23,-67,58xm197,-75v0,48,-43,80,-93,80v-50,0,-91,-32,-91,-80v0,-48,41,-79,91,-79v51,0,93,31,93,79xm99,-173r-16,0r37,-62r26,0","w":209},"\u00f2":{"d":"37,-75v-1,35,30,58,67,58v37,0,68,-23,68,-58v0,-35,-32,-58,-68,-58v-36,0,-67,23,-67,58xm197,-75v0,48,-43,80,-93,80v-50,0,-91,-32,-91,-80v0,-48,41,-79,91,-79v51,0,93,31,93,79xm111,-173r-47,-62r26,0r37,62r-16,0","w":209},"\u00f4":{"d":"56,-173r35,-62r27,0r35,62r-16,0r-32,-47r-33,47r-16,0xm37,-75v-1,35,30,58,67,58v37,0,68,-23,68,-58v0,-35,-32,-58,-68,-58v-36,0,-67,23,-67,58xm197,-75v0,48,-43,80,-93,80v-50,0,-91,-32,-91,-80v0,-48,41,-79,91,-79v51,0,93,31,93,79","w":209},"\u00f6":{"d":"37,-75v-1,35,30,58,67,58v37,0,68,-23,68,-58v0,-35,-32,-58,-68,-58v-36,0,-67,23,-67,58xm197,-75v0,48,-43,80,-93,80v-50,0,-91,-32,-91,-80v0,-48,41,-79,91,-79v51,0,93,31,93,79xm133,-186v-9,1,-15,-7,-15,-16v0,-8,7,-15,15,-15v8,0,16,7,16,15v0,8,-7,17,-16,16xm77,-186v-9,1,-16,-8,-16,-16v0,-8,8,-15,16,-15v8,0,15,7,15,15v0,9,-6,17,-15,16","w":209},"\u00f5":{"d":"88,-216v20,1,45,20,53,-4r15,0v-5,36,-42,35,-72,23v-7,1,-13,6,-16,13r-14,0v5,-17,14,-32,34,-32xm37,-75v-1,35,30,58,67,58v37,0,68,-23,68,-58v0,-35,-32,-58,-68,-58v-36,0,-67,23,-67,58xm197,-75v0,48,-43,80,-93,80v-50,0,-91,-32,-91,-80v0,-48,41,-79,91,-79v51,0,93,31,93,79","w":209},"\u00fa":{"d":"100,5v-47,0,-74,-9,-74,-52r0,-103r23,0v7,57,-26,145,51,133v78,12,44,-76,51,-133r23,0r0,103v-1,42,-29,52,-74,52xm94,-173r-16,0r37,-62r26,0","w":200},"\u00f9":{"d":"100,5v-47,0,-74,-9,-74,-52r0,-103r23,0v7,57,-26,145,51,133v78,12,44,-76,51,-133r23,0r0,103v-1,42,-29,52,-74,52xm106,-173r-47,-62r26,0r37,62r-16,0","w":200},"\u00fb":{"d":"52,-173r35,-62r26,0r36,62r-17,0r-32,-47r-32,47r-16,0xm100,5v-47,0,-74,-9,-74,-52r0,-103r23,0v7,57,-26,145,51,133v78,12,44,-76,51,-133r23,0r0,103v-1,42,-29,52,-74,52","w":200},"\u00fc":{"d":"100,5v-47,0,-74,-9,-74,-52r0,-103r23,0v7,57,-26,145,51,133v78,12,44,-76,51,-133r23,0r0,103v-1,42,-29,52,-74,52xm128,-186v-9,1,-15,-7,-15,-16v0,-8,7,-15,15,-15v8,0,16,7,16,15v0,8,-7,17,-16,16xm72,-186v-9,1,-16,-8,-16,-16v0,-8,8,-15,16,-15v8,0,15,7,15,15v0,9,-6,17,-15,16","w":200},"\u00b0":{"d":"59,-170v19,0,37,-17,37,-36v0,-20,-17,-37,-37,-37v-20,0,-36,17,-36,37v0,20,17,36,36,36xm10,-206v-1,-27,23,-49,49,-49v27,0,49,23,49,49v0,26,-24,50,-49,49v-27,-1,-49,-21,-49,-49","w":118},"\u00a2":{"d":"117,-149v-40,3,-63,61,-34,94v8,10,20,17,34,20r0,-114xm46,-92v0,-43,31,-74,71,-79r0,-47r20,0r0,48v27,2,46,16,58,34r-19,13v-8,-14,-20,-22,-39,-25r0,113v22,-5,32,-15,42,-32r20,13v-12,23,-32,37,-62,41r0,59r-20,0r0,-59v-40,-4,-71,-37,-71,-79","w":240},"\u00a3":{"d":"81,-103r60,0r0,22r-58,0r5,59r126,0r0,22r-172,0r1,-22r22,0r-6,-59r-27,0r0,-22r26,0v-28,-94,101,-108,155,-53r-14,19v-37,-38,-138,-45,-118,34","w":240},"\u00a7":{"d":"123,-40v31,23,6,72,-35,72v-27,0,-48,-18,-47,-45r24,0v-1,17,10,24,26,24v21,0,29,-20,16,-34v-19,-20,-75,-26,-75,-67v0,-19,10,-31,24,-39v-26,-23,-6,-69,33,-69v28,0,47,16,46,44r-23,0v0,-14,-9,-24,-23,-24v-30,-1,-26,37,-1,42v23,16,59,21,60,57v0,19,-11,34,-25,39xm70,-118v-23,12,-12,36,10,48r30,17v21,-12,15,-43,-11,-49"},"\u00b6":{"d":"15,-199v-1,-68,80,-63,150,-61r0,12r-22,0r0,248r-15,0r0,-248r-32,0r0,248r-15,0r0,-137v-38,-1,-66,-24,-66,-62"},"\u00df":{"d":"162,-45v0,65,-111,58,-149,26r11,-20v17,12,43,21,69,22v23,0,44,-9,44,-29v0,-22,-21,-25,-46,-26v-44,-2,-72,-3,-72,-39v0,-57,101,-50,135,-22r-12,20v-15,-11,-37,-20,-61,-20v-18,0,-38,6,-38,22v0,19,21,17,47,18v42,0,72,11,72,48xm340,-45v0,65,-111,58,-149,26r11,-20v17,12,43,21,69,22v23,0,44,-9,44,-29v0,-22,-21,-25,-46,-26v-44,-2,-72,-3,-72,-39v0,-57,101,-50,135,-22r-12,20v-15,-11,-37,-20,-61,-20v-18,0,-38,6,-38,22v0,19,21,17,47,18v42,0,72,11,72,48","w":356},"\u00ae":{"d":"192,-161v0,-32,-38,-26,-70,-27r0,53v32,-1,70,5,70,-26xm215,-162v-1,21,-15,36,-35,39r33,68r-25,0r-32,-65r-34,0r0,65r-23,0r0,-148v51,1,117,-10,116,41xm150,-13v69,0,115,-46,115,-114v0,-69,-46,-115,-115,-115v-68,0,-115,47,-115,115v0,67,46,114,115,114xm21,-127v0,-76,52,-129,129,-129v78,0,129,52,129,129v0,77,-53,129,-129,129v-77,0,-129,-53,-129,-129","w":299},"\u00a9":{"d":"82,-128v0,-62,61,-100,109,-66v11,8,17,19,18,33r-20,0v-4,-17,-18,-30,-39,-29v-32,0,-45,28,-45,63v0,34,13,62,45,62v23,0,38,-14,41,-33r20,0v-2,30,-29,51,-62,51v-44,0,-67,-34,-67,-81xm150,-13v69,0,115,-46,115,-114v0,-68,-46,-115,-115,-115v-68,0,-115,47,-115,115v0,67,46,114,115,114xm21,-127v0,-76,52,-129,129,-129v77,0,129,52,129,129v0,77,-53,129,-129,129v-77,0,-129,-53,-129,-129","w":299},"\u2122":{"d":"165,-256r29,75r27,-75r21,0r0,94r-13,0r0,-83r-31,83r-8,0r-33,-83r0,83r-13,0r0,-94r21,0xm122,-256r0,10r-30,0r0,84r-15,0r0,-84r-31,0r0,-10r76,0","w":299},"\u00b4":{"d":"84,-173r-16,0r37,-62r26,0"},"\u00a8":{"d":"118,-186v-9,1,-15,-7,-15,-16v0,-8,7,-15,15,-15v8,0,16,7,16,15v0,8,-7,17,-16,16xm62,-186v-9,1,-16,-8,-16,-16v0,-8,8,-15,16,-15v8,0,15,7,15,15v0,9,-6,17,-15,16"},"\u00c6":{"d":"149,0r0,-52r-102,0r-30,52r-26,0r113,-194r198,0r0,22r-129,0r0,57r78,0r0,23r-78,0r0,70r137,0r0,22r-161,0xm60,-75r89,0r0,-97r-33,0","w":309,"k":{"\u2019":13,"\u2018":13,"\u201d":13,"\u201c":13}},"\u00d8":{"d":"14,-97v0,-77,81,-125,150,-89r12,-17r28,0r-22,30v18,16,33,42,33,76v0,76,-84,128,-151,89r-12,18r-28,0r22,-31v-18,-16,-32,-43,-32,-76xm151,-167v-75,-42,-152,61,-91,127xm77,-26v77,40,151,-61,91,-127","w":228,"k":{"\u00c5":6,"X":20,"V":6,"A":6}},"\u00b1":{"d":"255,-26r0,17r-210,0r0,-17r210,0xm159,-205r0,61r96,0r0,17r-96,0r0,61r-17,0r0,-61r-97,0r0,-17r97,0r0,-61r17,0","w":299},"\u00a5":{"d":"160,-134r46,0r0,17r-60,0r-19,20r79,0r0,16r-81,0r0,81r-23,0r0,-81r-81,0r0,-16r78,0r-18,-20r-60,0r0,-17r45,0r-49,-55r29,0r67,75r67,-75r30,0","w":226},"\u00b5":{"d":"125,-24v-14,35,-86,38,-100,1r-20,98r-25,0r56,-262r24,0v-7,43,-20,81,-24,128v-4,47,54,55,77,24v26,-35,31,-103,45,-152r24,0r-33,159v0,10,8,12,19,11v-3,11,0,21,-19,21v-18,0,-25,-9,-24,-28","w":195},"\u00aa":{"d":"34,-108r38,0r-19,-35xm-2,-73r50,-90r10,0r51,90r-17,0r-13,-24r-52,0r-13,24r-16,0","w":106},"\u00ba":{"d":"24,-118v0,45,90,45,90,0v-1,-21,-21,-35,-45,-35v-24,0,-44,14,-45,35xm130,-118v-1,30,-29,48,-61,48v-33,0,-61,-18,-61,-48v0,-30,29,-48,61,-48v33,0,61,18,61,48","w":137},"\u00e6":{"d":"57,-58r79,0r0,-70r-39,0xm44,-38r-22,38r-25,0r86,-150r195,0r0,22r-118,0r0,37r77,0r0,22r-77,0r0,47r124,0r0,22r-148,0r0,-38r-92,0","w":291,"k":{"\u00bb":-13,"\u00ab":6}},"\u00f8":{"d":"177,-75v4,63,-74,102,-126,67r-12,15r-28,0r24,-28v-44,-46,-9,-139,61,-133v19,2,32,5,45,12r12,-15r28,0r-24,29v13,14,19,30,20,53xm127,-126v-52,-32,-115,32,-77,88xm66,-24v51,32,116,-34,76,-88","w":192},"\u00bf":{"d":"62,5v-45,0,-69,-46,-39,-75v19,-19,45,-31,38,-76r24,0v0,0,3,48,-15,62v-12,16,-36,22,-36,46v0,13,13,21,28,21v20,0,32,-10,36,-27r22,8v-7,27,-25,41,-58,41xm87,-182v0,9,-7,16,-15,16v-7,0,-14,-7,-14,-16v0,-9,6,-16,14,-16v9,0,15,6,15,16","w":129},"\u00a1":{"d":"70,-143r3,143r-26,0r3,-143r20,0xm75,-182v0,20,-30,20,-30,0v0,-9,6,-16,15,-16v9,0,15,7,15,16","w":119},"\u00ac":{"d":"255,-151r0,88r-17,0r0,-70r-193,0r0,-18r210,0","w":299},"\u00ab":{"d":"65,-15r-57,-42r0,-35r57,-43r0,25r-44,35r44,35r0,25xm137,-15r-57,-42r0,-35r57,-43r0,25r-45,35r45,35r0,25","w":145,"k":{"\u00e6":-13,"\u00c5":-13,"x":-7,"w":-7,"t":-20,"j":-13,"a":-13,"X":-7,"V":13,"T":13,"J":-13,"A":-13}},"\u00bb":{"d":"81,-15r0,-25r44,-35r-44,-35r0,-25r56,43r0,35xm9,-15r0,-25r44,-35r-44,-35r0,-25r57,43r0,35","w":145,"k":{"\u00e6":6,"y":6,"x":6,"v":13,"t":13,"r":6,"j":-13,"b":6,"a":6,"Y":20,"X":13,"W":13,"V":20,"T":26,"J":-13}},"\u2026":{"d":"45,-11v0,-20,30,-20,30,0v0,9,-6,16,-15,16v-9,0,-15,-7,-15,-16xm165,-11v0,-20,30,-20,30,0v0,9,-6,16,-15,16v-9,0,-15,-7,-15,-16xm285,-11v0,-20,30,-20,30,0v0,9,-6,16,-15,16v-9,0,-15,-7,-15,-16","w":360},"\u00a0":{"w":240},"\u00c0":{"d":"63,-75r85,0r-43,-86xm0,0r95,-194r20,0r96,194r-26,0r-26,-52r-107,0r-26,52r-26,0xm112,-217r-47,-62r26,0r37,62r-16,0","w":211},"\u00c3":{"d":"89,-260v20,1,45,20,53,-4r15,0v-5,37,-41,34,-72,23v-8,0,-13,6,-16,13r-14,0v5,-17,14,-32,34,-32xm63,-75r85,0r-43,-86xm0,0r95,-194r20,0r96,194r-26,0r-26,-52r-107,0r-26,52r-26,0","w":211},"\u00d5":{"d":"98,-260v20,1,44,20,52,-4r15,0v-5,36,-41,34,-71,23v-8,0,-14,6,-17,13r-14,0v5,-17,14,-33,35,-32xm38,-97v0,44,32,79,76,79v44,0,76,-35,76,-79v0,-44,-33,-79,-76,-79v-43,0,-76,35,-76,79xm215,-97v0,57,-44,102,-101,102v-57,0,-100,-45,-100,-102v0,-58,43,-101,100,-101v57,0,101,44,101,101","w":228},"\u2013":{"d":"0,-104r180,0r0,15r-180,0r0,-15"},"\u2014":{"d":"360,-104r0,15r-360,0r0,-15r360,0","w":360},"\u201c":{"d":"60,-128v-32,-11,-9,-59,10,-70v16,8,-12,25,-8,37v20,1,15,34,-2,33xm118,-128v-31,-13,-8,-57,10,-70v17,8,-13,28,-7,37v19,2,14,34,-3,33","w":178,"k":{"\u00c6":40,"\u00c5":36,"J":66,"A":36}},"\u201d":{"d":"118,-198v34,11,8,58,-10,70v-15,-9,14,-28,7,-38v-19,-2,-13,-32,3,-32xm60,-198v34,11,8,58,-10,70v-15,-9,14,-28,7,-38v-8,0,-12,-6,-12,-15v-1,-10,7,-17,15,-17","w":178},"\u2018":{"d":"60,-128v-32,-11,-9,-59,10,-70v16,8,-12,25,-8,37v20,1,15,34,-2,33","w":119,"k":{"\u00c6":40,"\u00c5":36,"J":66,"A":36}},"\u2019":{"d":"60,-198v34,11,8,58,-10,70v-15,-9,14,-28,7,-38v-8,0,-12,-6,-12,-15v-1,-10,7,-17,15,-17","w":119},"\u00f7":{"d":"131,-45v0,-9,9,-20,19,-19v10,-1,19,10,19,19v0,9,-9,19,-19,18v-10,1,-19,-9,-19,-18xm255,-116r0,17r-210,0r0,-17r210,0xm131,-169v0,-9,9,-20,19,-19v10,-1,19,10,19,19v0,9,-10,19,-19,19v-9,0,-19,-10,-19,-19","w":299},"\u00ff":{"d":"69,0r0,-77r-69,-73r31,0r49,53r49,-53r31,0r-68,73r0,77r-23,0xm109,-186v-9,1,-15,-7,-15,-16v0,-8,7,-15,15,-15v8,0,16,7,16,15v0,8,-7,17,-16,16xm53,-186v-9,1,-16,-8,-16,-16v0,-8,8,-15,16,-15v8,0,15,7,15,15v0,9,-6,17,-15,16","w":160},"\u00a4":{"d":"59,-67v16,60,129,63,156,9r17,15v-17,29,-49,48,-94,48v-52,0,-95,-29,-105,-72r-27,0r8,-16v13,1,19,-1,18,-21r-26,0r8,-16r20,0v14,-76,154,-93,195,-26r-20,15v-17,-34,-81,-46,-119,-23v-14,8,-23,20,-29,34r131,0r-9,16r-126,0v0,7,-2,15,0,21r115,0r-8,16r-105,0","w":240},"\u00b7":{"d":"60,-79v-8,0,-15,-7,-15,-15v0,-8,7,-15,15,-15v8,0,15,7,15,15v0,8,-7,15,-15,15","w":119},"\u00c2":{"d":"57,-218r35,-61r27,0r35,61r-16,0r-32,-46r-33,46r-16,0xm63,-75r85,0r-43,-86xm0,0r95,-194r20,0r96,194r-26,0r-26,-52r-107,0r-26,52r-26,0","w":211},"\u00ca":{"d":"60,-218r35,-61r27,0r35,61r-16,0r-33,-46r-32,46r-16,0xm29,0r0,-194r153,0r0,22r-129,0r0,57r78,0r0,23r-78,0r0,70r137,0r0,22r-161,0","w":196},"\u00c1":{"d":"63,-75r85,0r-43,-86xm0,0r95,-194r20,0r96,194r-26,0r-26,-52r-107,0r-26,52r-26,0xm100,-217r-16,0r37,-62r26,0","w":211},"\u00cb":{"d":"29,0r0,-194r153,0r0,22r-129,0r0,57r78,0r0,23r-78,0r0,70r137,0r0,22r-161,0xm136,-230v-9,1,-15,-7,-15,-16v0,-8,7,-15,15,-15v8,0,16,7,16,15v0,8,-7,17,-16,16xm80,-230v-9,1,-16,-8,-16,-16v0,-8,8,-15,16,-15v8,0,15,7,15,15v0,9,-6,17,-15,16","w":196},"\u00c8":{"d":"29,0r0,-194r153,0r0,22r-129,0r0,57r78,0r0,23r-78,0r0,70r137,0r0,22r-161,0xm114,-217r-47,-62r26,0r37,62r-16,0","w":196},"\u00cd":{"d":"30,0r0,-195r24,0r0,195r-24,0xm36,-217r-16,0r37,-62r26,0","w":83},"\u00ce":{"d":"-7,-218r35,-61r27,0r35,61r-16,0r-32,-46r-33,46r-16,0xm30,0r0,-195r24,0r0,195r-24,0","w":83},"\u00cf":{"d":"30,0r0,-195r24,0r0,195r-24,0xm70,-230v-9,1,-15,-7,-15,-16v0,-8,7,-15,15,-15v8,0,16,7,16,15v0,8,-7,17,-16,16xm14,-230v-9,1,-16,-8,-16,-16v0,-8,8,-15,16,-15v8,0,15,7,15,15v0,9,-6,17,-15,16","w":83},"\u00cc":{"d":"30,0r0,-195r24,0r0,195r-24,0xm48,-217r-47,-62r26,0r37,62r-16,0","w":83},"\u00d3":{"d":"38,-97v0,44,32,79,76,79v44,0,76,-35,76,-79v0,-44,-33,-79,-76,-79v-43,0,-76,35,-76,79xm215,-97v0,57,-44,102,-101,102v-57,0,-100,-45,-100,-102v0,-58,43,-101,100,-101v57,0,101,44,101,101xm108,-217r-16,0r37,-62r26,0","w":228},"\u00d4":{"d":"66,-218r35,-61r26,0r36,61r-17,0r-32,-46r-32,46r-16,0xm38,-97v0,44,32,79,76,79v44,0,76,-35,76,-79v0,-44,-33,-79,-76,-79v-43,0,-76,35,-76,79xm215,-97v0,57,-44,102,-101,102v-57,0,-100,-45,-100,-102v0,-58,43,-101,100,-101v57,0,101,44,101,101","w":228},"\u00d2":{"d":"38,-97v0,44,32,79,76,79v44,0,76,-35,76,-79v0,-44,-33,-79,-76,-79v-43,0,-76,35,-76,79xm215,-97v0,57,-44,102,-101,102v-57,0,-100,-45,-100,-102v0,-58,43,-101,100,-101v57,0,101,44,101,101xm120,-217r-47,-62r26,0r37,62r-16,0","w":228},"\u00da":{"d":"104,5v-55,0,-80,-15,-80,-67r0,-132r24,0r0,126v1,41,13,50,56,50v43,0,56,-8,56,-50r0,-126r24,0r0,132v-1,51,-25,67,-80,67xm98,-217r-16,0r37,-62r26,0","w":208},"\u00db":{"d":"56,-218r35,-61r27,0r35,61r-16,0r-33,-46r-32,46r-16,0xm104,5v-55,0,-80,-15,-80,-67r0,-132r24,0r0,126v1,41,13,50,56,50v43,0,56,-8,56,-50r0,-126r24,0r0,132v-1,51,-25,67,-80,67","w":208},"\u00d9":{"d":"104,5v-55,0,-80,-15,-80,-67r0,-132r24,0r0,126v1,41,13,50,56,50v43,0,56,-8,56,-50r0,-126r24,0r0,132v-1,51,-25,67,-80,67xm110,-217r-47,-62r26,0r37,62r-16,0","w":208},"\u00af":{"d":"45,-191r0,-21r90,0r0,21r-90,0"},"\u00b8":{"d":"132,50v0,39,-54,34,-84,23r0,-13v23,5,61,16,64,-10v2,-17,-14,-19,-33,-18r0,-32r11,0r0,20v25,-1,42,7,42,30"},"\u00a6":{"d":"100,-72r0,134r-19,0r0,-134r19,0xm100,-252r0,134r-19,0r0,-134r19,0"},"\u00d0":{"d":"202,-97v0,-67,-62,-82,-136,-75r0,56r68,0r0,20r-68,0r0,74v74,5,136,-4,136,-75xm227,-97v0,59,-41,97,-102,97r-83,0r0,-96r-42,0r0,-20r42,0r0,-78r83,0v58,-1,102,39,102,97","w":240,"k":{"\u00bb":-7,"\u00ab":-13,"\u00c5":6,"Y":6,"W":-7,"V":6,"A":6,"-":-13}},"\u00f0":{"d":"180,-75v0,46,-33,75,-81,75r-67,0r0,-71r-32,0r0,-20r32,0r0,-59r67,0v46,-1,81,30,81,75xm156,-75v0,-49,-47,-58,-101,-53r0,37r46,0r0,20r-46,0r0,49v54,4,101,-2,101,-53","w":191,"k":{"\u00ab":-7,"y":13,"v":6}},"\u00dd":{"d":"69,0r0,-97r-87,-97r30,0r70,77r69,-77r30,0r-87,97r0,97r-25,0xm76,-217r-16,0r37,-62r26,0","w":163},"\u00fd":{"d":"69,0r0,-77r-69,-73r31,0r49,53r49,-53r31,0r-68,73r0,77r-23,0xm75,-173r-16,0r37,-62r26,0","w":160},"\u00de":{"d":"175,-102v0,-49,-76,-28,-123,-32r0,65v48,-4,123,17,123,-33xm200,-102v0,32,-24,56,-57,55r-91,0r0,47r-24,0r0,-194r24,0r0,38v66,1,148,-14,148,54","w":210},"\u00fe":{"d":"160,-79v-4,-37,-74,-14,-111,-20r0,41v38,-5,105,16,111,-21xm184,-79v0,58,-79,41,-135,43r0,36r-23,0r0,-150r23,0r0,29v56,3,135,-16,135,42","w":191},"\u00d7":{"d":"150,-120r85,-84r12,12r-84,85r84,84r-12,13r-85,-85r-84,85r-12,-13r84,-84r-84,-85r12,-12","w":299},"\u00b9":{"d":"71,-73r0,-112r16,0r0,112r-16,0","w":158},"\u00b2":{"d":"84,-122v-29,9,-40,7,-40,35r93,0r0,14r-109,0v-20,-67,76,-55,90,-83v-10,-29,-62,-15,-80,0r-10,-11v26,-24,99,-32,106,11v2,13,-23,26,-50,34","w":158},"\u00b3":{"d":"145,-108v-8,50,-105,46,-131,12r9,-11v18,13,31,23,59,23v21,1,47,-7,47,-24v0,-19,-23,-20,-46,-20v1,-6,-4,-16,8,-13v17,0,29,-1,29,-15v-10,-28,-64,-17,-81,-1r-10,-12v26,-21,107,-31,107,13v0,10,-4,16,-11,21v12,5,19,13,20,27","w":158},"\u00bc":{"d":"247,-38r70,0r0,-49xm317,0r0,-25r-93,0r0,-13r93,-65r15,0r0,65r20,0r0,13r-20,0r0,25r-15,0xm247,-189r24,0r-156,194r-24,0xm68,-80r0,-104r15,0r0,104r-15,0","w":362},"\u00bd":{"d":"339,-77v5,30,-93,24,-86,64r89,0r0,13r-104,0v-18,-61,71,-52,86,-77v-9,-28,-59,-14,-76,0r-9,-11v25,-21,94,-30,100,11xm247,-189r24,0r-156,194r-24,0xm68,-80r0,-104r15,0r0,104r-15,0","w":362},"\u00be":{"d":"247,-38r70,0r0,-49xm317,0r0,-25r-93,0r0,-13r93,-65r15,0r0,65r20,0r0,13r-20,0r0,25r-15,0xm247,-189r24,0r-156,194r-24,0xm139,-113v-7,47,-102,42,-126,11r9,-10v21,25,88,33,101,-1v-2,-17,-21,-18,-44,-18r0,-13v17,0,34,1,35,-13v-8,-28,-60,-16,-77,-2r-9,-11v25,-18,102,-31,102,13v0,9,-5,14,-11,19v12,4,19,11,20,25","w":362},"\u00ad":{"d":"8,-107r76,0r0,21r-76,0r0,-21","w":92}}});},true);;(function(w){var E=w(window),u,g,F=-1,o,x,D,v,y,L,s,n=!window.XMLHttpRequest,e=window.opera&&(document.compatMode=="CSS1Compat")&&(w.browser.version>=9.3),m=document.documentElement,l={},t=new Image(),J=new Image(),H,a,h,q,I,d,G,c,A,K;w(function(){w("body").append(w([H=w('<div id="lbOverlay" />')[0],a=w('<div id="lbCenter" />')[0],G=w('<div id="lbBottomContainer" />')[0]]).css("display","none"));h=w('<div id="lbImage" />').appendTo(a).append(q=w('<div style="position: relative;" />').append([I=w('<a id="lbPrevLink" href="#" />').click(B)[0],d=w('<a id="lbNextLink" href="#" />').click(f)[0]])[0])[0];c=w('<div id="lbBottom" />').appendTo(G).append([w('<a id="lbCloseLink" href="#" />').add(H).click(C)[0],A=w('<div id="lbCaption" />')[0],K=w('<div id="lbNumber" />')[0],w('<div style="clear: both;" />')[0]])[0]});w.slimbox=function(O,N,M){u=w.extend({loop:false,overlayOpacity:0.8,overlayFadeDuration:1,resizeDuration:400,resizeEasing:"swing",initialWidth:250,initialHeight:250,imageFadeDuration:400,captionAnimationDuration:400,counterText:"Image {x} of {y}",closeKeys:[27,88,67],previousKeys:[37,80],nextKeys:[39,78]},M);if(typeof O=="string"){O=[[O,N]];N=0}y=E.scrollTop()+((e?m.clientHeight:E.height())/2);L=u.initialWidth;s=u.initialHeight;w(a).css({top:Math.max(0,y-(s/2)),width:L,height:s,marginLeft:-L/2}).show();v=n||(H.currentStyle&&(H.currentStyle.position!="fixed"));if(v){H.style.position="absolute"}w(H).css("opacity",u.overlayOpacity).fadeIn(u.overlayFadeDuration);z();k(1);g=O;u.loop=u.loop&&(g.length>1);return b(N)};w.fn.slimbox=function(M,P,O){P=P||function(Q){return[Q.href,Q.title]};O=O||function(){return true};var N=this;return N.unbind("click").click(function(){var S=this,U=0,T,Q=0,R;T=w.grep(N,function(W,V){return O.call(S,W,V)});for(R=T.length;Q<R;++Q){if(T[Q]==S){U=Q}T[Q]=P(T[Q],Q)}return w.slimbox(T,U,M)})};function z(){var N=E.scrollLeft(),M=e?m.clientWidth:E.width();w([a,G]).css("left",N+(M/2));if(v){w(H).css({left:N,top:E.scrollTop(),width:M,height:E.height()})}}function k(M){w("object").add(n?"select":"embed").each(function(O,P){if(M){w.data(P,"slimbox",P.style.visibility)}P.style.visibility=M?"hidden":w.data(P,"slimbox")});var N=M?"bind":"unbind";E[N]("scroll resize",z);w(document)[N]("keydown",p)}function p(O){var N=O.keyCode,M=w.inArray;return(M(N,u.closeKeys)>=0)?C():(M(N,u.nextKeys)>=0)?f():(M(N,u.previousKeys)>=0)?B():false}function B(){return b(x)}function f(){return b(D)}function b(M){if(M>=0){F=M;o=g[F][0];x=(F||(u.loop?g.length:0))-1;D=((F+1)%g.length)||(u.loop?0:-1);r();a.className="lbLoading";l=new Image();l.onload=j;l.src=o}return false}function j(){a.className="";w(h).css({backgroundImage:"url("+o+")",visibility:"hidden",display:""});w(q).width(l.width);w([q,I,d]).height(l.height);w(A).html(g[F][1]||"");w(K).html((((g.length>1)&&u.counterText)||"").replace(/{x}/,F+1).replace(/{y}/,g.length));if(x>=0){t.src=g[x][0]}if(D>=0){J.src=g[D][0]}L=h.offsetWidth;s=h.offsetHeight;var M=Math.max(0,y-(s/2));if(a.offsetHeight!=s){w(a).animate({height:s,top:M},u.resizeDuration,u.resizeEasing)}if(a.offsetWidth!=L){w(a).animate({width:L,marginLeft:-L/2},u.resizeDuration,u.resizeEasing)}w(a).queue(function(){w(G).css({width:L,top:M+s,marginLeft:-L/2,visibility:"hidden",display:""});w(h).css({display:"none",visibility:"",opacity:""}).fadeIn(u.imageFadeDuration,i)})}function i(){if(x>=0){w(I).show()}if(D>=0){w(d).show()}w(c).css("marginTop",-c.offsetHeight).animate({marginTop:0},u.captionAnimationDuration);G.style.visibility=""}function r(){l.onload=null;l.src=t.src=J.src=o;w([a,h,c]).stop(true);w([I,d,h,G]).hide()}function C(){if(F>=0){r();F=x=D=-1;w(a).hide();w(H).stop().fadeOut(u.overlayFadeDuration,k)}return false}})(jQuery);if(!/android|iphone|ipod|series60|symbian|windows ce|blackberry/i.test(navigator.userAgent)){jQuery(function($){$("a[rel^='lightbox']").slimbox({},null,function(el){return(this==el)||((this.rel.length>8)&&(this.rel==el.rel));});});};google.setOnLoadCallback(function(){Cufon.replace('h1');Cufon.replace('h2');Cufon.replace('h4',{hover:true});jQuery('a').filter(function(){var theHref=this;if(theHref.hostname&&theHref.hostname!==location.hostname){jQuery(theHref).bind('click keypress',function(event){if(pageTracker){pageTracker._link(jQuery(theHref).attr('href'));return false;};});};});},true);;function load(){if(GBrowserIsCompatible()){var map=new GMap2(document.getElementById("map"));map.addControl(new GSmallMapControl());map.addControl(new GMapTypeControl());map.setCenter(new GLatLng(50.832119,4.358397),16);function createMarker(point,number){var marker=new GMarker(point);GEvent.addListener(marker,"click",function(){marker.openInfoWindowHtml("<b>Le Collection'Heure</b><br> Avenue Louise 85B, 1050 Bruxelles<br><img src='http://beta.collection-heure.be/_img/shop_3_f.jpg'>");});return marker;}
var bounds=map.getBounds();var southWest=bounds.getSouthWest();var northEast=bounds.getNorthEast();var lngSpan=northEast.lng()-southWest.lng();var latSpan=northEast.lat()-southWest.lat();for(var i=0;i<10;i++){var point=new GLatLng(50.832119,4.358397);map.addOverlay(createMarker(point,i+1));}}}