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(/(?:^|\s)./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,simple){if(simple)return text.replace(wsStart,'').replace(wsEnd,'');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');var checkTypes={'':1,'text/css':1};function isContainerReady(el){if(!checkTypes[el.type.toLowerCase()])return true;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=(function(glyphs){var key,fallbacks={'\u2011':'\u002d','\u00ad':'\u2011'};for(key in fallbacks){if(!hasOwnProperty(fallbacks,key))continue;if(!glyphs[key])glyphs[key]=glyphs[fallbacks[key]];}
return 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){try{if(node.contains)return node.contains(anotherNode);return node.compareDocumentPosition(anotherNode)&16;}
catch(e){}
return false;}
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;if(options.ignoreClass&&options.ignoreClass.test(el.className))return;if(options.onBeforeReplace)options.onBeforeReplace(el,options);var replace=!options.textless[name],simple=(options.trim==='simple');var style=CSS.getStyle(attach(el,options)).extend(options);if(parseFloat(style.get('fontSize'))===0)return;var font=getFont(el,style),node,type,next,anchor,text,lastElement;var isShy=options.softHyphens,anyShy=false,pos,shy,reShy=/\u00ad/g;var modifyText=options.modifyText;if(!font)return;for(node=el.firstChild;node;node=next){type=node.nodeType;next=node.nextSibling;if(replace&&type==3){if(isShy&&el.nodeName.toLowerCase()!=TAG_SHY){pos=node.data.indexOf('\u00ad');if(pos>=0){node.splitText(pos);next=node.nextSibling;next.deleteData(0,1);shy=document.createElement(TAG_SHY);shy.appendChild(document.createTextNode('\u00ad'));el.insertBefore(shy,next);next=shy;anyShy=true;}}
if(anchor){anchor.appendData(node.data);el.removeChild(node);}
else anchor=node;if(next)continue;}
if(anchor){text=anchor.data;if(!isShy)text=text.replace(reShy,'');text=CSS.whiteSpace(text,style,anchor,lastElement,simple);if(modifyText)text=modifyText(text,anchor,el,options);el.replaceChild(process(font,text,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;}}
if(isShy&&anyShy){updateShy(el);if(!trackingShy)addEvent(window,'resize',updateShyOnResize);trackingShy=true;}
if(options.onAfterReplace)options.onAfterReplace(el,options);}
function updateShy(context){var shys,shy,parent,glue,newGlue,next,prev,i;shys=context.getElementsByTagName(TAG_SHY);for(i=0;shy=shys[i];++i){shy.className=C_SHY_DISABLED;glue=parent=shy.parentNode;if(glue.nodeName.toLowerCase()!=TAG_GLUE){newGlue=document.createElement(TAG_GLUE);newGlue.appendChild(shy.previousSibling);parent.insertBefore(newGlue,shy);newGlue.appendChild(shy);}
else{glue=glue.parentNode;if(glue.nodeName.toLowerCase()==TAG_GLUE){parent=glue.parentNode;while(glue.firstChild){parent.insertBefore(glue.firstChild,glue);}
parent.removeChild(glue);}}}
for(i=0;shy=shys[i];++i){shy.className='';glue=shy.parentNode;parent=glue.parentNode;next=glue.nextSibling||parent.nextSibling;prev=(next.nodeName.toLowerCase()==TAG_GLUE)?glue:shy.previousSibling;if(prev.offsetTop>=next.offsetTop){shy.className=C_SHY_DISABLED;if(prev.offsetTop<next.offsetTop){newGlue=document.createElement(TAG_GLUE);parent.insertBefore(newGlue,glue);newGlue.appendChild(glue);newGlue.appendChild(next);}}}}
function updateShyOnResize(){if(ignoreResize)return;CSS.addClass(DOM.root(),C_VIEWPORT_RESIZING);clearTimeout(shyTimer);shyTimer=setTimeout(function(){ignoreResize=true;CSS.removeClass(DOM.root(),C_VIEWPORT_RESIZING);updateShy(document);ignoreResize=false;},100);}
var HAS_BROKEN_REGEXP=' '.split(/\s+/).length==0;var TAG_GLUE='cufonglue';var TAG_SHY='cufonshy';var C_SHY_DISABLED='cufon-shy-disabled';var C_VIEWPORT_RESIZING='cufon-viewport-resizing';var sharedStorage=new Storage();var hoverHandler=new HoverHandler();var replaceHistory=new ReplaceHistory();var initialized=false;var trackingShy=false;var shyTimer;var ignoreResize=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},ignoreClass:null,modifyText:null,onAfterReplace:null,onBeforeReplace:null,printable:true,selector:(window.Sizzle||(window.jQuery&&function(query){return jQuery(query);})||(window.dojo&&dojo.query)||(window.glow&&glow.dom&&glow.dom.get)||(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',softHyphens:true,textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:'none',trim:'advanced'};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.ignoreClass=='string'){options.ignoreClass=new RegExp('(?:^|\\s)(?:'+options.ignoreClass.replace(/\s+/,'|')+')(?:\\s|$)');}
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('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;text-align:left;}'+'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}'+'cufonglue{white-space:nowrap;display:inline-block;}'+'.cufon-viewport-resizing cufonglue{white-space:normal;}'+'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(!isNaN(value)||/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='none';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;};})());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;text-align:left;text-indent:-10000in;}'+
(HAS_INLINE_BLOCK?'cufon canvas{position:relative;}':'cufon canvas{position:absolute;}')+'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}'+'cufonglue{white-space:nowrap;display:inline-block;}'+'.cufon-viewport-resizing cufonglue{white-space:normal;}'+'}'+'@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.registerFont({"w":192,"face":{"font-family":"VAGRounded Lt","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 4 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"2","cap-height":"2","bbox":"-19.6563 -333 323 80.0834","underline-thickness":"4.39453","underline-position":"-6.5918","unicode-range":"U+0020-U+0192"},"glyphs":{" ":{"w":86},"!":{"d":"69,-86v0,11,-5,18,-16,18v-10,0,-16,-7,-16,-17r0,-158v0,-10,6,-15,16,-15v11,0,16,5,16,15r0,157xm53,-35v9,0,19,10,19,19v0,9,-9,19,-19,18v-9,1,-19,-9,-18,-18v-1,-10,9,-19,18,-19","w":99},"\"":{"d":"100,-243v0,24,11,64,-15,64v-25,0,-14,-41,-14,-64v0,-10,5,-16,15,-16v10,0,14,6,14,16xm49,-243v0,24,11,64,-15,64v-25,0,-14,-41,-14,-64v0,-10,5,-16,15,-16v10,0,14,6,14,16","w":113},"#":{"d":"188,-166v0,15,-25,10,-40,11r-7,54v15,1,36,-4,36,12v0,16,-25,10,-40,11v-5,25,-5,56,-13,77v-8,8,-28,0,-22,-14r9,-63r-43,0r-9,66v0,17,-29,19,-27,1r9,-67v-15,-1,-37,4,-37,-11v1,-16,24,-11,41,-12r8,-54v-15,0,-37,4,-38,-11v0,-17,23,-12,40,-13v5,-25,5,-58,15,-78v10,-5,23,0,21,15r-9,63r43,0r9,-67v1,-8,6,-13,14,-13v8,0,14,5,12,16r-9,64v16,0,37,-3,37,13xm122,-155r-43,0r-7,54r42,0"},"$":{"d":"94,-153v43,15,72,31,72,79v0,41,-32,69,-72,75v-1,10,4,26,-8,26v-11,0,-6,-15,-7,-25v-31,0,-63,-9,-72,-32v11,-36,52,14,72,5r0,-100v-43,-16,-69,-24,-69,-69v0,-37,34,-63,69,-65v1,-9,-5,-24,7,-24v12,0,7,14,8,24v26,5,51,7,54,30v2,16,-17,15,-29,8v-13,-8,-12,-9,-25,-11r0,79xm79,-232v-18,2,-36,17,-35,37v0,17,11,29,35,37r0,-74xm94,-27v29,-3,50,-46,30,-74v-5,-7,-15,-14,-30,-19r0,93","w":166},"%":{"d":"70,-259v32,0,55,27,55,63v-1,34,-22,59,-55,59v-32,0,-56,-26,-55,-59v0,-36,20,-63,55,-63xm183,-262v12,-1,16,8,12,17r-101,241v-1,12,-23,12,-24,-1r102,-247v3,-7,6,-10,11,-10xm198,-119v33,-1,54,30,54,63v-1,34,-22,59,-55,59v-32,0,-55,-25,-55,-59v0,-37,19,-62,56,-63xm70,-239v-44,0,-41,83,0,83v21,0,30,-15,30,-41v1,-22,-10,-42,-30,-42xm197,-17v21,-1,31,-19,31,-41v0,-22,-10,-41,-31,-41v-22,-1,-30,19,-31,42v-1,21,12,40,31,40","w":266},"&":{"d":"161,-212v-2,31,-20,47,-46,62r57,68v11,-13,21,-43,38,-47v34,11,-9,50,-20,67v11,18,31,29,37,52v2,11,-18,15,-24,7r-31,-36v-21,24,-42,40,-81,41v-43,1,-78,-29,-78,-75v0,-46,23,-63,57,-83v-18,-23,-27,-27,-28,-56v-1,-29,27,-48,59,-47v31,0,62,17,60,47xm131,-209v0,-14,-15,-24,-30,-24v-36,-2,-32,43,-10,56r6,7v22,-12,34,-25,34,-39xm44,-76v-2,61,87,60,109,16r-65,-76v-29,15,-43,35,-44,60","w":240},"'":{"d":"49,-258v16,-1,20,14,13,25v-11,18,-18,47,-37,56v-35,-11,2,-48,9,-70v4,-7,8,-11,15,-11","w":66},"(":{"d":"72,-254v-24,80,-27,201,0,279v-2,14,-20,14,-26,-1v-29,-71,-30,-202,-1,-276v2,-16,26,-18,27,-2","w":73},")":{"d":"41,-252v27,68,29,211,0,276v-7,15,-25,16,-28,0v27,-75,28,-200,1,-277v1,-18,21,-14,27,1","w":73},"*":{"d":"80,-209v7,-5,19,-22,35,-23v12,-2,17,18,5,23r-34,14v13,8,38,7,41,25v-7,28,-37,-4,-47,-11v3,20,9,62,-19,46v-9,-12,3,-29,0,-46v-12,10,-40,38,-48,10v5,-17,28,-16,41,-24v-7,-4,-38,-9,-41,-23v-2,-9,6,-14,13,-14v6,-3,29,18,35,23v2,-5,-13,-50,9,-50v23,0,8,33,10,50","w":140},"+":{"d":"200,-91v0,27,-52,9,-77,14r0,63v0,9,-5,14,-15,14v-27,0,-9,-52,-14,-77v-27,-5,-73,13,-78,-14v4,-29,51,-10,78,-15r0,-62v0,-9,4,-14,14,-14v28,3,10,50,15,76r63,0v9,0,14,5,14,15","w":216},",":{"d":"49,-35v13,-1,17,16,11,25v-13,18,-15,51,-39,56v-14,3,-17,-15,-11,-25v13,-18,16,-49,39,-56","w":86},"-":{"d":"114,-97v0,9,-5,14,-15,14r-72,0v-9,0,-14,-4,-15,-13v1,-10,6,-14,15,-14r72,0v10,0,15,4,15,13","w":126},"\u2010":{"d":"114,-97v0,9,-5,14,-15,14r-72,0v-9,0,-14,-4,-15,-13v1,-10,6,-14,15,-14r72,0v10,0,15,4,15,13","w":126},".":{"d":"45,-35v9,0,19,9,18,19v1,9,-9,19,-18,18v-9,1,-19,-9,-18,-18v-1,-10,9,-19,18,-19","w":86},"\/":{"d":"110,-248v8,-19,37,-10,28,10r-102,229v-4,14,-29,16,-29,-2v0,-2,-1,-5,1,-9","w":146},"0":{"d":"97,-259v118,0,109,261,0,261v-61,0,-86,-66,-85,-135v0,-64,25,-126,85,-126xm97,-25v35,5,52,-55,51,-100v-2,-61,-8,-99,-52,-107v-39,7,-50,52,-50,101v0,56,8,100,51,106"},"1":{"d":"75,2v-10,0,-16,-7,-16,-17r0,-214v-19,-1,-47,6,-47,-14v0,-26,46,-10,70,-14v6,0,9,3,9,9r0,233v0,11,-5,17,-16,17","w":126},"2":{"d":"100,-259v64,0,88,69,50,119r-85,113r98,0v9,0,13,5,13,14v0,9,-5,13,-14,13r-126,0v-17,2,-17,-15,-11,-23r97,-130v26,-29,11,-78,-28,-78v-26,0,-45,24,-45,52v1,13,-8,22,-17,20v-9,-2,-14,-8,-14,-20v2,-47,32,-80,82,-80"},"3":{"d":"95,-259v63,-1,87,91,33,121v29,9,43,30,43,63v1,51,-35,77,-85,77v-36,0,-72,-24,-72,-60v0,-22,27,-22,31,-2v10,48,92,44,93,-10v0,-34,-15,-51,-44,-51v-20,0,-28,-17,-13,-24v23,-5,47,-18,45,-50v-3,-51,-74,-46,-73,1v1,9,-7,16,-15,16v-10,0,-14,-8,-14,-22v0,-35,30,-59,71,-59"},"4":{"d":"152,-94v26,-9,43,25,15,28r-15,0v-3,25,10,68,-16,68v-27,0,-13,-43,-16,-68r-102,0v-21,0,-15,-15,-8,-28r93,-150v10,-23,49,-20,49,11r0,139xm120,-94r0,-131r-76,131r76,0"},"5":{"d":"72,-160v55,-25,103,17,99,80v-3,48,-33,82,-82,82v-33,0,-67,-13,-74,-42v0,-9,5,-13,12,-13v20,6,36,26,60,26v28,0,50,-22,50,-53v0,-57,-46,-67,-88,-47v-8,0,-12,-7,-11,-16r18,-112v28,-5,67,-1,99,-2v9,0,14,5,14,14v0,9,-5,14,-14,14r-73,0"},"6":{"d":"68,-155v56,-33,106,11,106,75v0,45,-34,82,-79,82v-51,0,-84,-52,-75,-111v9,-64,52,-110,91,-145v10,-9,24,-5,24,11v3,7,-20,24,-26,30v-14,15,-27,34,-41,58xm52,-94v-5,33,11,68,43,67v32,-1,48,-27,45,-64v-3,-31,-18,-47,-43,-48v-27,0,-41,18,-45,45"},"7":{"d":"155,-259v19,2,18,5,12,21r-99,226v-4,15,-30,21,-32,2v27,-80,65,-146,96,-222r-107,0v-10,0,-16,-4,-17,-13v1,-9,7,-14,16,-14r131,0","w":172},"8":{"d":"128,-143v28,7,47,31,47,65v1,43,-30,80,-78,80v-79,0,-111,-128,-32,-145v-53,-23,-39,-116,30,-116v71,0,90,92,33,116xm97,-156v23,0,36,-16,36,-39v0,-20,-13,-36,-35,-37v-22,0,-39,16,-38,38v0,25,13,38,37,38xm96,-25v29,0,46,-23,46,-52v1,-28,-17,-51,-46,-51v-28,-1,-44,23,-44,51v0,26,16,52,44,52"},"9":{"d":"98,-259v98,0,91,147,30,209v-18,18,-31,43,-58,51v-16,-2,-17,-22,0,-31v24,-23,35,-37,54,-71v-11,6,-24,10,-39,10v-49,0,-65,-38,-67,-86v-2,-46,32,-82,80,-82xm96,-118v30,0,46,-21,46,-55v0,-31,-15,-56,-44,-56v-32,0,-49,30,-45,64v3,28,15,47,43,47"},":":{"d":"45,-155v9,-1,19,9,18,18v1,9,-9,19,-18,18v-9,1,-19,-9,-18,-18v-1,-9,9,-19,18,-18xm45,-35v9,0,19,9,18,19v0,11,-7,17,-18,18v-9,0,-19,-9,-18,-18v-1,-10,9,-19,18,-19","w":86},";":{"d":"45,-155v9,-1,19,9,18,18v1,9,-9,19,-18,18v-9,1,-19,-9,-18,-18v-1,-9,9,-19,18,-18xm38,35v-5,15,-31,12,-31,-4v7,-20,20,-37,28,-56v5,-13,31,-13,28,4v-3,21,-17,37,-25,56","w":86},"<":{"d":"188,-184v16,0,15,19,1,26r-135,67r137,68v12,4,12,26,-3,25v-57,-22,-108,-53,-162,-78v-14,-6,-11,-25,2,-31r149,-74v4,-2,7,-3,11,-3","w":216},"=":{"d":"199,-128v0,10,-5,14,-14,14r-153,0v-9,0,-15,-5,-16,-14v1,-10,7,-15,16,-15r154,0v9,0,13,5,13,15xm199,-53v0,10,-5,15,-14,15r-153,0v-9,0,-15,-6,-16,-15v1,-10,7,-15,16,-15r154,0v9,0,13,5,13,15","w":216},">":{"d":"27,-158v-16,-6,-15,-25,1,-26v57,21,106,53,160,77v14,6,17,25,2,31r-162,78v-14,2,-15,-23,-3,-25r137,-68","w":216},"?":{"d":"79,-259v40,0,74,28,75,64v0,40,-20,64,-61,73v-2,22,9,54,-16,54v-26,0,-13,-40,-16,-64v-2,-16,22,-18,32,-21v43,-11,28,-76,-16,-76v-21,0,-35,8,-39,26v-5,22,-32,18,-31,-2v0,-35,37,-54,72,-54xm77,-35v9,0,19,10,19,19v0,9,-9,19,-19,18v-10,1,-19,-9,-19,-18v0,-9,10,-19,19,-19","w":159},"@":{"d":"145,-259v71,0,131,41,130,108v0,51,-36,97,-88,100v-17,1,-23,-9,-27,-21v-29,39,-96,18,-96,-36v0,-66,84,-129,124,-65v6,-9,3,-26,17,-26v11,0,15,6,12,14r-27,99v0,6,3,10,10,11v29,-6,46,-35,48,-73v2,-51,-47,-89,-103,-87v-61,2,-106,44,-105,109v1,61,47,100,106,104v48,3,67,-25,102,-39v6,0,9,2,9,8v-12,35,-64,55,-112,55v-73,0,-132,-55,-132,-128v0,-78,59,-133,132,-133xm125,-78v28,1,48,-35,49,-69v0,-17,-7,-26,-21,-26v-53,0,-82,82,-28,95","w":288},"A":{"d":"216,-19v7,17,-9,27,-23,19v-12,-14,-15,-37,-23,-55r-119,0v-11,19,-8,54,-33,57v-13,2,-18,-10,-13,-21r83,-221v3,-24,35,-25,44,-1xm160,-83r-50,-139r-50,139r100,0","w":219},"B":{"d":"127,-139v35,7,55,28,56,65v2,65,-69,74,-145,74v-11,0,-17,-6,-17,-17r0,-223v0,-30,48,-15,74,-17v36,-3,68,26,68,61v0,29,-14,51,-36,57xm53,-148v42,2,78,0,78,-41v0,-40,-36,-43,-78,-40r0,81xm53,-27v50,2,98,0,98,-48v-1,-46,-47,-51,-98,-47r0,95","w":193},"C":{"d":"122,-25v33,2,44,-16,71,-23v8,0,12,5,12,14v-9,30,-45,34,-81,36v-68,3,-113,-60,-113,-127v-1,-74,42,-135,114,-134v32,1,69,11,75,40v0,8,-4,12,-13,13v-26,-11,-31,-26,-60,-26v-107,-1,-109,203,-5,207","w":213},"D":{"d":"104,-257v71,2,111,55,112,128v0,74,-41,133,-109,129v-29,-2,-78,11,-84,-14r0,-226v1,-31,54,-12,81,-17xm54,-27v84,9,128,-23,128,-104v0,-74,-46,-108,-128,-98r0,202","w":227},"E":{"d":"21,-239v-1,-9,6,-18,14,-18r96,0v9,0,14,5,14,15v0,10,-5,15,-14,15r-78,0r0,84r71,0v9,0,14,5,14,15v0,10,-5,15,-15,15r-70,0r0,83r78,0v9,0,14,6,14,16v0,9,-6,14,-16,14r-92,0v-10,0,-16,-6,-16,-17r0,-222","w":159},"F":{"d":"21,-239v-1,-9,6,-18,14,-18r96,0v8,0,12,6,12,16v0,9,-5,14,-15,14r-75,0r0,84r68,0v9,0,14,6,14,16v0,27,-55,9,-82,14r0,98v0,11,-5,17,-16,17v-10,0,-16,-7,-16,-16r0,-225","w":146},"G":{"d":"122,-25v51,0,84,-35,79,-92v-22,-3,-60,10,-60,-14v0,-29,45,-13,71,-16v16,-2,22,11,21,30v-1,71,-32,119,-109,119v-69,0,-113,-60,-113,-127v0,-75,38,-134,114,-134v38,0,81,12,91,42v0,8,-8,14,-16,14v-28,-9,-39,-29,-73,-29v-53,0,-81,49,-82,101v0,55,23,106,77,106","w":240},"H":{"d":"188,-240v-1,-10,6,-20,15,-20v11,0,16,7,16,20r0,225v0,12,-5,17,-16,17v-9,1,-15,-8,-15,-17r0,-100r-135,0r0,100v0,12,-5,17,-16,17v-10,0,-16,-5,-16,-17r0,-225v0,-12,6,-19,16,-19v11,0,16,7,16,19r0,98r135,0r0,-98","w":240},"I":{"d":"53,-15v0,12,-6,17,-16,17v-11,0,-16,-6,-16,-17r0,-227v0,-11,5,-17,16,-17v10,0,16,6,16,17r0,227","w":73},"J":{"d":"55,2v-20,1,-62,-13,-58,-28v8,-31,34,1,56,1v19,0,28,-12,28,-35r0,-183v0,-11,6,-16,16,-16v11,0,16,5,16,16r0,176v0,41,-17,68,-58,69","w":126},"K":{"d":"37,2v-10,0,-16,-7,-16,-16r0,-228v0,-11,6,-17,16,-17v11,0,16,5,16,16r0,95r113,-104v9,-10,28,-10,27,8v0,5,-2,9,-6,13r-105,95r116,113v12,8,4,27,-10,26v-5,0,-11,-3,-16,-8r-119,-117r0,108v0,11,-5,16,-16,16","w":200},"L":{"d":"36,0v-10,0,-15,-8,-15,-19r0,-223v0,-11,5,-17,16,-17v10,0,16,7,16,19r0,210v28,4,83,-12,83,15v0,10,-5,15,-14,15r-86,0","w":132},"M":{"d":"290,-18v3,25,-30,28,-32,7r-29,-207r-63,208v-4,17,-28,17,-32,0r-62,-208r-30,208v-2,22,-36,21,-32,-3r38,-224v0,-27,40,-30,47,-5r55,188r55,-189v6,-23,42,-21,47,5","w":300},"N":{"d":"188,-242v0,-10,6,-17,15,-17v11,0,16,6,16,17r0,229v1,21,-22,19,-31,6r-135,-194r0,188v0,10,-5,15,-16,15v-10,0,-16,-5,-16,-16r0,-229v-1,-22,22,-20,32,-6r135,194r0,-187","w":239},"O":{"d":"124,-259v70,-1,112,58,112,131v0,73,-40,130,-112,130v-71,0,-113,-56,-113,-130v0,-74,40,-130,113,-131xm124,-25v53,0,78,-45,79,-103v1,-58,-26,-103,-79,-104v-50,-2,-81,46,-79,104v1,56,23,103,79,103","w":246},"P":{"d":"37,-257v80,-8,148,9,147,81v-1,62,-57,90,-131,80r0,83v0,9,-7,15,-16,15v-10,0,-16,-7,-16,-16r0,-226v0,-11,6,-17,16,-17xm53,-123v54,4,99,-4,99,-54v0,-49,-46,-57,-99,-52r0,106","w":187},"Q":{"d":"124,-259v100,-5,140,134,90,212v10,13,28,20,32,39v-11,30,-41,-7,-51,-17v-20,18,-43,27,-71,27v-71,0,-113,-56,-113,-130v0,-74,40,-127,113,-131xm152,-68v-10,-7,-6,-26,8,-25v15,1,21,16,30,23v30,-63,8,-162,-66,-162v-50,0,-81,46,-79,104v1,56,23,101,79,103v20,0,37,-7,51,-21","w":246},"R":{"d":"175,-180v-2,45,-33,68,-84,66r82,90v10,8,11,26,-8,25v-6,0,-11,-2,-15,-6r-97,-108r0,100v0,10,-5,15,-16,15v-10,0,-16,-5,-16,-16r0,-226v1,-31,50,-15,77,-17v41,-3,79,32,77,77xm53,-138v47,2,90,3,90,-46v0,-45,-43,-48,-90,-45r0,91","w":187},"S":{"d":"43,-194v10,57,123,37,123,116v0,45,-35,81,-86,80v-30,-1,-68,-6,-73,-32v10,-36,51,13,76,5v25,1,48,-22,48,-50v0,-66,-124,-39,-121,-116v1,-41,38,-69,76,-68v27,1,58,7,62,30v-7,32,-44,-4,-64,-3v-23,1,-38,17,-41,38","w":166},"T":{"d":"80,2v-10,1,-17,-6,-16,-16r0,-213v-24,-3,-64,11,-64,-15v0,-10,6,-15,15,-15r129,0v10,0,16,5,16,15v-1,26,-41,11,-64,15r0,213v0,9,-6,16,-16,16","w":153},"U":{"d":"122,-25v39,0,66,-27,66,-64r0,-154v0,-11,5,-16,15,-16v11,0,16,5,16,16r0,144v0,64,-32,101,-97,101v-66,1,-100,-37,-101,-100r0,-145v0,-11,6,-16,16,-16v11,0,16,5,16,16r0,154v-2,40,29,64,69,64","w":239},"V":{"d":"3,-235v-6,-9,-2,-27,11,-27v8,0,14,5,18,16r68,194r68,-195v4,-17,32,-18,31,3v-22,81,-58,152,-81,231v-5,18,-28,20,-35,1","w":200},"W":{"d":"290,-243r-38,224v-1,26,-40,30,-47,6r-55,-189r-55,189v-5,25,-43,20,-47,-5r-38,-220v-4,-26,30,-27,32,-7r30,208r62,-209v4,-18,27,-16,32,0r62,209r30,-209v1,-10,7,-16,17,-16v10,0,17,6,15,19","w":293},"X":{"d":"21,-233v-10,-12,-6,-24,9,-26v7,0,12,3,16,9r61,89r61,-89v7,-12,30,-13,29,5v-17,42,-50,70,-72,107r82,115v8,11,3,26,-11,25v-6,0,-10,-3,-14,-8r-75,-107r-75,107v-7,12,-28,9,-29,-5v23,-48,59,-83,86,-127","w":213},"Y":{"d":"4,-235v-7,-11,-3,-23,10,-24v7,0,12,3,16,9r60,98r60,-98v7,-13,30,-12,29,5v-19,46,-50,81,-73,124r0,106v1,10,-6,19,-16,18v-9,0,-15,-8,-15,-18r0,-106","w":173},"Z":{"d":"192,-14v0,9,-6,14,-16,14r-150,0v-18,1,-21,-15,-13,-27r133,-202r-116,0v-9,0,-15,-5,-16,-14v1,-9,6,-14,16,-14r141,0v19,0,19,16,10,28r-134,202r130,0v10,0,15,4,15,13","w":200},"[":{"d":"83,-245v1,12,-12,15,-26,13r0,234v26,-9,37,28,11,28v-19,0,-41,4,-41,-17r0,-254v-1,-22,22,-18,42,-18v9,0,14,5,14,14","w":80},"\\":{"d":"138,-20v4,10,3,25,-11,24v-7,0,-12,-4,-15,-11r-105,-239v-2,-18,22,-16,28,-4","w":146},"]":{"d":"4,15v0,-12,12,-14,26,-13r0,-234v-27,8,-37,-26,-11,-27v19,0,40,-3,40,17r0,254v2,22,-21,18,-41,18v-9,0,-14,-6,-14,-15","w":80},"^":{"d":"194,-125v4,10,2,22,-11,22v-6,-1,-10,-5,-14,-12r-61,-112r-62,114v-5,11,-26,15,-26,-3v20,-48,48,-87,71,-132v9,-17,26,-15,34,1","w":216},"_":{"d":"191,36v0,6,-4,9,-11,9r-180,0v-7,0,-11,-3,-11,-10v0,-5,3,-8,10,-8r181,0v7,0,11,3,11,9","w":180},"`":{"d":"82,-297v-18,-5,-13,-27,4,-28v20,5,35,15,53,21v17,5,16,27,-3,27v-21,0,-36,-15,-54,-20","w":73},"a":{"d":"149,-168v2,-12,1,-26,16,-26v10,0,14,5,14,16r0,164v0,11,-4,16,-14,16v-17,0,-14,-16,-16,-29v-45,65,-146,9,-136,-68v-9,-79,85,-132,136,-73xm95,-25v38,0,54,-31,54,-71v0,-41,-16,-69,-52,-71v-35,-2,-53,34,-53,71v0,36,18,71,51,71","w":200},"b":{"d":"54,-168v51,-60,138,-7,134,73v-3,53,-30,96,-85,97v-24,1,-38,-11,-49,-26v9,28,-31,35,-31,10r0,-248v0,-11,5,-16,15,-16v11,0,16,5,16,16r0,94xm106,-25v68,0,67,-142,-1,-142v-35,0,-57,34,-54,71v3,41,16,71,55,71","w":200},"c":{"d":"98,-194v23,0,49,5,52,24v-4,26,-33,4,-51,4v-32,0,-53,33,-55,68v-3,49,37,91,85,64v9,-5,20,-2,20,11v0,18,-27,25,-50,25v-50,0,-86,-39,-86,-93v1,-59,27,-101,85,-103","w":159},"d":{"d":"13,-95v-6,-81,83,-131,133,-73r0,-94v0,-11,6,-16,16,-16v11,0,16,5,16,16r0,248v0,11,-5,16,-16,16v-14,1,-16,-14,-17,-26v-7,15,-24,26,-47,26v-56,-1,-81,-42,-85,-97xm94,-25v38,-1,55,-33,56,-71v1,-38,-21,-71,-53,-71v-34,0,-53,34,-53,70v-1,35,17,72,50,72","w":200},"e":{"d":"94,-194v53,0,82,44,84,95v0,10,-6,16,-18,16r-119,0v-1,36,23,55,58,58v22,2,44,-17,63,-26v7,0,11,5,11,14v-16,48,-115,51,-144,7v-39,-59,-15,-165,65,-164xm146,-108v5,-51,-57,-77,-89,-43v-10,10,-15,24,-16,43r105,0","w":187},"f":{"d":"31,-192v-4,-44,1,-86,41,-86v30,0,39,26,12,27v-32,-7,-18,35,-21,59v16,0,35,-2,35,13v1,18,-19,14,-35,14r0,151v0,11,-6,16,-17,16v-10,0,-15,-6,-15,-16r0,-151v-15,0,-29,1,-29,-14v0,-13,15,-14,29,-13","w":86},"g":{"d":"13,-97v0,-55,30,-97,85,-97v24,-1,38,12,48,27v-1,-15,1,-27,16,-26v11,0,16,5,16,16r0,164v7,79,-82,113,-145,74v-15,-9,-21,-29,-3,-33v21,3,41,23,64,23v37,0,59,-38,51,-76v-10,18,-27,27,-51,27v-52,0,-81,-44,-81,-99xm95,-25v35,0,55,-30,55,-69v0,-40,-18,-73,-56,-73v-68,0,-66,140,1,142","w":200},"h":{"d":"53,-169v36,-50,120,-21,120,46r0,109v0,11,-5,16,-16,16v-10,0,-15,-6,-15,-16v-4,-61,19,-153,-44,-153v-65,0,-41,91,-45,153v0,11,-5,16,-16,16v-10,0,-16,-7,-16,-16r0,-248v0,-11,6,-16,16,-16v11,0,16,5,16,16r0,93"},"i":{"d":"37,-259v10,0,19,10,19,20v0,10,-9,20,-19,20v-10,1,-20,-10,-20,-20v0,-10,10,-21,20,-20xm37,2v-10,0,-16,-7,-16,-16r0,-163v0,-11,6,-17,16,-17v11,0,16,5,16,16r0,164v0,11,-5,16,-16,16","w":73},"j":{"d":"37,-259v10,0,19,10,19,20v0,10,-9,20,-19,20v-10,1,-20,-10,-20,-20v0,-10,10,-21,20,-20xm53,61v0,11,-5,17,-16,17v-10,0,-16,-6,-16,-17r0,-238v0,-11,6,-17,16,-17v11,0,16,5,16,16r0,239","w":73},"k":{"d":"37,2v-10,0,-16,-7,-16,-16r0,-248v0,-10,6,-16,16,-16v11,0,16,5,16,16r0,136v29,-22,52,-50,86,-67v15,-2,18,19,8,26r-74,58r85,83v9,8,9,29,-8,28v-6,0,-11,-3,-16,-8r-81,-85r0,77v0,11,-5,16,-16,16","w":159},"l":{"d":"53,-15v0,11,-5,17,-16,17v-10,0,-16,-6,-16,-17r0,-246v0,-11,6,-17,16,-17v11,0,16,5,16,16r0,247","w":73},"m":{"d":"154,-162v29,-54,126,-33,126,37r0,112v0,10,-6,15,-17,15v-8,1,-15,-8,-15,-15v-6,-59,23,-152,-40,-154v-66,-2,-42,95,-42,154v0,10,-5,14,-16,14v-8,1,-16,-7,-16,-14v-5,-59,21,-154,-40,-154v-64,0,-35,95,-41,154v0,9,-7,15,-16,15v-8,1,-16,-7,-16,-15r0,-166v0,-7,8,-15,16,-14v12,0,17,8,16,22v26,-33,81,-31,101,9","w":299},"n":{"d":"53,-170v35,-44,120,-23,120,49r0,107v0,10,-5,15,-16,15v-10,0,-15,-5,-15,-15v-4,-62,19,-152,-45,-152v-63,-1,-40,92,-44,152v0,11,-6,17,-16,17v-9,0,-16,-8,-16,-17r0,-163v0,-11,6,-17,16,-17v14,0,17,10,16,24"},"o":{"d":"97,-194v53,0,83,44,84,98v1,54,-29,96,-84,98v-50,2,-84,-43,-84,-98v-1,-54,31,-98,84,-98xm97,-25v35,0,53,-33,53,-71v0,-37,-20,-71,-53,-71v-33,0,-53,33,-53,71v0,38,18,71,53,71"},"p":{"d":"103,-194v56,2,80,42,85,97v7,78,-84,132,-134,73r0,85v0,13,-6,19,-16,19v-10,1,-15,-9,-15,-18r0,-239v0,-11,5,-17,15,-17v17,0,15,13,17,26v9,-17,25,-26,48,-26xm103,-25v35,1,53,-33,53,-71v0,-37,-15,-70,-50,-71v-40,-2,-53,34,-55,70v-2,38,19,71,52,72","w":200},"q":{"d":"145,-168v-5,-25,32,-38,33,-9r0,239v0,9,-7,19,-17,18v-10,0,-15,-6,-15,-19r-1,-85v-47,61,-138,6,-133,-73v4,-55,31,-96,85,-97v24,0,41,11,48,26xm95,-25v36,0,54,-29,54,-69v0,-39,-17,-73,-55,-73v-35,0,-50,33,-50,71v0,40,16,71,51,71","w":200},"r":{"d":"96,-194v23,2,25,32,-4,35v-57,7,-34,87,-39,145v0,11,-6,16,-16,16v-11,0,-16,-6,-16,-17r0,-162v0,-11,6,-16,16,-16v18,-1,16,15,16,32v8,-13,24,-34,43,-33","w":113},"s":{"d":"48,-143v13,44,102,30,102,89v0,68,-121,74,-142,19v12,-37,43,10,71,10v17,0,40,-8,39,-27v-12,-46,-101,-30,-101,-89v0,-30,30,-53,63,-53v28,0,76,14,61,43v-24,16,-51,-36,-84,-9v-6,5,-9,10,-9,17","w":159},"t":{"d":"91,-178v0,15,-14,13,-28,13r0,152v0,10,-6,15,-17,15v-10,0,-15,-5,-15,-16r0,-151v-15,0,-30,1,-30,-13v0,-14,15,-15,30,-14v3,-22,-10,-58,15,-58v26,-1,14,35,17,58v14,-1,28,-1,28,14","w":86},"u":{"d":"96,2v-47,0,-75,-27,-75,-74r0,-106v0,-11,6,-16,16,-16v11,0,16,5,16,16v5,59,-22,153,44,153v67,0,45,-93,45,-153v0,-11,5,-16,15,-16v11,0,16,5,16,16r0,106v0,45,-28,74,-77,74"},"v":{"d":"136,-195v13,-1,18,11,14,23r-56,161v-3,15,-28,18,-34,1r-59,-171v-2,-21,25,-20,31,-3r45,135r45,-135v2,-7,7,-11,14,-11","w":153},"w":{"d":"252,-194v13,-1,17,11,13,23r-54,158v-8,20,-30,21,-36,-2r-41,-128v-16,46,-28,99,-48,141v-13,9,-25,3,-31,-15r-55,-162v0,-9,5,-14,15,-14v9,0,15,4,17,11r43,136r42,-135v5,-19,27,-19,33,0r43,134r42,-133v3,-9,9,-14,17,-14","w":266},"x":{"d":"15,-167v-9,-9,-7,-27,8,-27v6,0,11,2,14,7r46,62r47,-62v8,-12,28,-9,27,8v-13,31,-38,51,-55,78v20,32,52,54,64,93v-1,17,-21,13,-30,1r-53,-72r-52,73v-7,11,-29,11,-30,-6v16,-35,44,-58,64,-89","w":166},"y":{"d":"139,-194v13,-1,18,11,14,23r-83,236v-3,17,-30,23,-31,0v6,-26,18,-48,26,-72r-59,-172v0,-9,4,-14,14,-14v8,0,15,4,17,11r44,131r44,-132v2,-7,7,-11,14,-11","w":153},"z":{"d":"153,-13v0,9,-5,13,-15,13r-115,0v-24,0,-18,-16,-9,-28r91,-137r-80,0v-9,0,-14,-4,-15,-13v1,-9,6,-14,15,-14r109,0v19,0,16,16,8,27r-93,138r89,0v10,0,15,5,15,14","w":159},"{":{"d":"92,-248v-1,18,-38,3,-35,31v4,44,4,101,-33,103v39,-2,36,60,33,102v-2,29,32,11,35,31v2,12,-16,11,-29,11v-52,1,-31,-72,-38,-117v-2,-16,-31,-13,-31,-28v0,-14,28,-12,31,-28v7,-45,-21,-116,53,-116v9,0,14,4,14,11","w":92},"|":{"d":"55,-12v0,9,-5,14,-15,14v-10,0,-15,-5,-15,-15r0,-251v0,-9,5,-14,15,-14v10,0,15,6,15,15r0,251","w":80},"}":{"d":"30,-217v2,-28,-33,-11,-36,-31v-2,-13,18,-11,31,-11v52,-1,28,79,39,120v4,13,28,10,28,25v0,14,-27,11,-28,24v-14,41,20,120,-56,120v-9,0,-14,-4,-14,-11v2,-18,39,-3,36,-31v-4,-44,-5,-101,33,-103v-39,0,-36,-59,-33,-102","w":92},"~":{"d":"145,-93v11,1,24,-27,36,-24v8,0,12,4,12,10v2,21,-22,41,-47,42v-26,1,-48,-20,-75,-25v-11,-2,-24,25,-35,25v-9,0,-13,-4,-13,-11v-2,-19,23,-39,47,-41v22,-2,59,23,75,24","w":216},"\u00c4":{"d":"216,-19v7,17,-9,27,-23,19v-12,-14,-15,-37,-23,-55r-119,0v-11,19,-8,54,-33,57v-13,2,-18,-10,-13,-21r83,-221v3,-24,35,-25,44,-1xm160,-83r-50,-139r-50,139r100,0xm144,-315v11,0,20,9,20,20v1,10,-10,20,-20,19v-10,1,-19,-9,-19,-19v0,-11,8,-20,19,-20xm78,-315v11,0,19,10,19,20v0,9,-9,20,-19,19v-10,1,-20,-9,-20,-19v0,-12,9,-20,20,-20","w":219},"\u00c5":{"d":"109,-333v17,0,34,17,34,34v0,17,-17,34,-34,34v-17,0,-34,-17,-34,-34v0,-17,17,-34,34,-34xm109,-283v10,0,17,-6,17,-16v0,-10,-7,-17,-17,-17v-9,0,-16,8,-16,17v-1,10,6,17,16,16xm216,-19v7,17,-9,27,-23,19v-12,-14,-15,-37,-23,-55r-119,0v-11,19,-8,54,-33,57v-13,2,-18,-10,-13,-21r83,-221v3,-24,35,-25,44,-1xm160,-83r-50,-139r-50,139r100,0","w":219},"\u00c7":{"d":"122,-25v33,2,43,-17,71,-23v13,-3,15,19,7,26v-17,15,-41,23,-71,24r-9,13v15,-4,31,5,33,19v6,33,-60,41,-67,18v0,-24,37,8,39,-16v0,-12,-39,-1,-23,-23r8,-12v-59,-4,-99,-63,-99,-126v0,-74,42,-135,114,-134v32,1,69,11,75,40v0,8,-4,12,-13,13v-26,-11,-31,-26,-60,-26v-107,-1,-109,203,-5,207","w":213},"\u00c9":{"d":"21,-239v-1,-9,6,-18,14,-18r96,0v9,0,14,5,14,15v0,10,-5,15,-14,15r-78,0r0,84r71,0v9,0,14,5,14,15v0,10,-5,15,-15,15r-70,0r0,83r78,0v9,0,14,6,14,16v0,9,-6,14,-16,14r-92,0v-10,0,-16,-6,-16,-17r0,-222xm96,-322v18,-9,34,20,11,26v-20,5,-40,27,-63,16v-17,-26,34,-33,52,-42","w":159},"\u00d1":{"d":"67,-293v2,-33,50,-22,71,-15v13,-5,35,-15,35,6v0,42,-67,6,-95,23v-7,-4,-11,-8,-11,-14xm188,-242v0,-10,6,-17,15,-17v11,0,16,6,16,17r0,229v1,21,-22,19,-31,6r-135,-194r0,188v0,10,-5,15,-16,15v-10,0,-16,-5,-16,-16r0,-229v-1,-22,22,-20,32,-6r135,194r0,-187","w":239},"\u00d6":{"d":"124,-259v70,-1,112,58,112,131v0,73,-40,130,-112,130v-71,0,-113,-56,-113,-130v0,-74,40,-130,113,-131xm124,-25v53,0,78,-45,79,-103v1,-58,-26,-103,-79,-104v-50,-2,-81,46,-79,104v1,56,23,103,79,103xm157,-315v11,0,20,9,20,20v1,10,-10,20,-20,19v-10,1,-19,-9,-19,-19v0,-11,8,-20,19,-20xm91,-315v11,0,19,10,19,20v0,9,-9,20,-19,19v-10,1,-20,-9,-20,-19v0,-12,9,-20,20,-20","w":246},"\u00dc":{"d":"122,-25v39,0,66,-27,66,-64r0,-154v0,-11,5,-16,15,-16v11,0,16,5,16,16r0,144v0,64,-32,101,-97,101v-66,1,-100,-37,-101,-100r0,-145v0,-11,6,-16,16,-16v11,0,16,5,16,16r0,154v-2,40,29,64,69,64xm153,-315v11,0,20,9,20,20v1,10,-10,20,-20,19v-10,1,-19,-9,-19,-19v0,-11,8,-20,19,-20xm87,-315v11,0,19,10,19,20v0,9,-9,20,-19,19v-10,1,-20,-9,-20,-19v0,-12,9,-20,20,-20","w":239},"\u00e1":{"d":"149,-168v2,-12,1,-26,16,-26v10,0,14,5,14,16r0,164v0,11,-4,16,-14,16v-17,0,-14,-16,-16,-29v-45,65,-146,9,-136,-68v-9,-79,85,-132,136,-73xm95,-25v38,0,54,-31,54,-71v0,-41,-16,-69,-52,-71v-35,-2,-53,34,-53,71v0,36,18,71,51,71xm117,-265v18,-9,34,20,11,26v-20,5,-40,27,-63,16v-17,-26,34,-33,52,-42","w":200},"\u00e0":{"d":"149,-168v2,-12,1,-26,16,-26v10,0,14,5,14,16r0,164v0,11,-4,16,-14,16v-17,0,-14,-16,-16,-29v-45,65,-146,9,-136,-68v-9,-79,85,-132,136,-73xm95,-25v38,0,54,-31,54,-71v0,-41,-16,-69,-52,-71v-35,-2,-53,34,-53,71v0,36,18,71,51,71xm71,-241v-18,-5,-13,-27,4,-28v20,5,35,15,53,21v17,5,16,27,-3,27v-21,0,-36,-15,-54,-20","w":200},"\u00e2":{"d":"147,-245v13,4,13,29,-4,27v-17,-2,-28,-11,-43,-16v-15,5,-27,12,-44,16v-8,0,-12,-4,-12,-13v0,-25,39,-22,56,-34xm149,-168v2,-12,1,-26,16,-26v10,0,14,5,14,16r0,164v0,11,-4,16,-14,16v-17,0,-14,-16,-16,-29v-45,65,-146,9,-136,-68v-9,-79,85,-132,136,-73xm95,-25v38,0,54,-31,54,-71v0,-41,-16,-69,-52,-71v-35,-2,-53,34,-53,71v0,36,18,71,51,71","w":200},"\u00e4":{"d":"149,-168v2,-12,1,-26,16,-26v10,0,14,5,14,16r0,164v0,11,-4,16,-14,16v-17,0,-14,-16,-16,-29v-45,65,-146,9,-136,-68v-9,-79,85,-132,136,-73xm95,-25v38,0,54,-31,54,-71v0,-41,-16,-69,-52,-71v-35,-2,-53,34,-53,71v0,36,18,71,51,71xm133,-257v11,0,20,9,20,20v1,10,-10,20,-20,19v-10,1,-19,-9,-19,-19v0,-11,8,-20,19,-20xm67,-257v11,0,19,10,19,20v0,9,-9,20,-19,19v-10,1,-20,-9,-20,-19v0,-12,9,-20,20,-20","w":200},"\u00e3":{"d":"48,-235v1,-33,49,-21,71,-16v10,-4,37,-14,35,6v-5,45,-70,4,-95,24v-7,-4,-11,-8,-11,-14xm149,-168v2,-12,1,-26,16,-26v10,0,14,5,14,16r0,164v0,11,-4,16,-14,16v-17,0,-14,-16,-16,-29v-45,65,-146,9,-136,-68v-9,-79,85,-132,136,-73xm95,-25v38,0,54,-31,54,-71v0,-41,-16,-69,-52,-71v-35,-2,-53,34,-53,71v0,36,18,71,51,71","w":200},"\u00e5":{"d":"100,-279v17,0,34,17,34,34v0,17,-17,34,-34,34v-17,0,-34,-17,-34,-34v0,-17,17,-34,34,-34xm100,-229v10,0,17,-6,17,-16v0,-10,-7,-17,-17,-17v-9,0,-16,8,-16,17v0,9,6,16,16,16xm149,-168v2,-12,1,-26,16,-26v10,0,14,5,14,16r0,164v0,11,-4,16,-14,16v-17,0,-14,-16,-16,-29v-45,65,-146,9,-136,-68v-9,-79,85,-132,136,-73xm95,-25v38,0,54,-31,54,-71v0,-41,-16,-69,-52,-71v-35,-2,-53,34,-53,71v0,36,18,71,51,71","w":200},"\u00e7":{"d":"98,-194v19,0,54,5,52,24v-4,26,-33,4,-51,4v-32,0,-53,33,-55,68v-3,49,37,91,85,64v9,-5,21,-2,20,11v0,17,-26,25,-46,25r-9,13v16,-3,32,5,32,19v0,21,-13,31,-40,31v-18,0,-27,-5,-27,-13v0,-24,37,8,39,-16v2,-15,-38,2,-23,-23r8,-12v-43,-6,-69,-44,-70,-92v-2,-58,32,-103,85,-103","w":159},"\u00e9":{"d":"94,-194v53,0,82,44,84,95v0,10,-6,16,-18,16r-119,0v-1,36,23,55,58,58v22,2,44,-17,63,-26v7,0,11,5,11,14v-16,48,-115,51,-144,7v-39,-59,-15,-165,65,-164xm146,-108v5,-51,-57,-77,-89,-43v-10,10,-15,24,-16,43r105,0xm111,-266v18,-9,34,20,11,26v-20,5,-40,27,-63,16v-17,-26,34,-33,52,-42","w":187},"\u00e8":{"d":"94,-194v53,0,82,44,84,95v0,10,-6,16,-18,16r-119,0v-1,36,23,55,58,58v22,2,44,-17,63,-26v7,0,11,5,11,14v-16,48,-115,51,-144,7v-39,-59,-15,-165,65,-164xm146,-108v5,-51,-57,-77,-89,-43v-10,10,-15,24,-16,43r105,0xm66,-239v-18,-5,-13,-27,4,-28v20,5,35,15,53,21v17,5,16,27,-3,27v-21,0,-36,-15,-54,-20","w":187},"\u00ea":{"d":"140,-245v13,3,12,27,-4,27r-43,-17v-15,6,-27,14,-44,17v-15,3,-18,-24,-4,-27r48,-21xm94,-194v53,0,82,44,84,95v0,10,-6,16,-18,16r-119,0v-1,36,23,55,58,58v22,2,44,-17,63,-26v7,0,11,5,11,14v-16,48,-115,51,-144,7v-39,-59,-15,-165,65,-164xm146,-108v5,-51,-57,-77,-89,-43v-10,10,-15,24,-16,43r105,0","w":187},"\u00eb":{"d":"94,-194v53,0,82,44,84,95v0,10,-6,16,-18,16r-119,0v-1,36,23,55,58,58v22,2,44,-17,63,-26v7,0,11,5,11,14v-16,48,-115,51,-144,7v-39,-59,-15,-165,65,-164xm146,-108v5,-51,-57,-77,-89,-43v-10,10,-15,24,-16,43r105,0xm127,-257v11,0,20,9,20,20v1,10,-10,20,-20,19v-10,1,-19,-9,-19,-19v0,-11,8,-20,19,-20xm61,-257v11,0,19,10,19,20v0,9,-9,20,-19,19v-10,1,-20,-9,-20,-19v0,-12,9,-20,20,-20","w":187},"\u00ed":{"d":"37,2v-10,0,-16,-7,-16,-16r0,-164v0,-11,6,-16,16,-16v11,0,16,6,16,17r0,163v0,11,-5,16,-16,16xm52,-265v18,-9,34,20,11,26v-20,5,-40,27,-63,16v-17,-26,34,-33,52,-42","w":73},"\u00ec":{"d":"37,2v-10,0,-16,-7,-16,-16r0,-164v0,-11,6,-16,16,-16v11,0,16,6,16,17r0,163v0,11,-5,16,-16,16xm7,-240v-18,-5,-13,-27,4,-28v20,5,35,15,53,21v17,5,16,27,-3,27v-21,0,-36,-15,-54,-20","w":73},"\u00ee":{"d":"84,-245v14,4,14,27,-4,27v-16,-4,-28,-11,-43,-16v-15,5,-26,13,-44,16v-15,3,-15,-22,-3,-27r47,-20xm37,2v-10,0,-16,-7,-16,-16r0,-164v0,-11,6,-16,16,-16v11,0,16,6,16,17r0,163v0,11,-5,16,-16,16","w":73},"\u00ef":{"d":"37,2v-10,0,-16,-7,-16,-16r0,-164v0,-11,6,-16,16,-16v11,0,16,6,16,17r0,163v0,11,-5,16,-16,16xm71,-257v11,0,20,9,20,20v1,10,-10,20,-20,19v-10,1,-19,-9,-19,-19v0,-11,8,-20,19,-20xm5,-257v11,0,19,10,19,20v0,9,-9,20,-19,19v-10,1,-20,-9,-20,-19v0,-12,9,-20,20,-20","w":73},"\u00f1":{"d":"44,-235v7,-45,67,-4,95,-23v6,-1,11,7,11,13v-7,44,-69,4,-95,24v-7,-4,-11,-8,-11,-14xm53,-170v35,-44,120,-23,120,49r0,107v0,10,-5,15,-16,15v-10,0,-15,-5,-15,-15v-4,-62,19,-152,-45,-152v-63,-1,-40,92,-44,152v0,11,-6,17,-16,17v-9,0,-16,-8,-16,-17r0,-163v0,-11,6,-17,16,-17v14,0,17,10,16,24"},"\u00f3":{"d":"97,-194v53,0,83,44,84,98v1,54,-29,96,-84,98v-50,2,-84,-43,-84,-98v-1,-54,31,-98,84,-98xm97,-25v35,0,53,-33,53,-71v0,-37,-20,-71,-53,-71v-33,0,-53,33,-53,71v0,38,18,71,53,71xm114,-266v18,-9,34,20,11,26v-20,5,-40,27,-63,16v-17,-26,34,-33,52,-42"},"\u00f2":{"d":"97,-194v53,0,83,44,84,98v1,54,-29,96,-84,98v-50,2,-84,-43,-84,-98v-1,-54,31,-98,84,-98xm97,-25v35,0,53,-33,53,-71v0,-37,-20,-71,-53,-71v-33,0,-53,33,-53,71v0,38,18,71,53,71xm69,-239v-18,-5,-13,-27,4,-28v20,5,35,15,53,21v17,5,16,27,-3,27v-21,0,-36,-15,-54,-20"},"\u00f4":{"d":"144,-245v13,3,12,27,-4,27r-43,-17v-15,6,-27,14,-44,17v-14,3,-17,-24,-4,-27r48,-21xm97,-194v53,0,83,44,84,98v1,54,-29,96,-84,98v-50,2,-84,-43,-84,-98v-1,-54,31,-98,84,-98xm97,-25v35,0,53,-33,53,-71v0,-37,-20,-71,-53,-71v-33,0,-53,33,-53,71v0,38,18,71,53,71"},"\u00f6":{"d":"97,-194v53,0,83,44,84,98v1,54,-29,96,-84,98v-50,2,-84,-43,-84,-98v-1,-54,31,-98,84,-98xm97,-25v35,0,53,-33,53,-71v0,-37,-20,-71,-53,-71v-33,0,-53,33,-53,71v0,38,18,71,53,71xm130,-258v11,0,20,9,20,20v1,10,-10,20,-20,19v-10,1,-19,-9,-19,-19v0,-11,8,-20,19,-20xm64,-258v11,0,19,10,19,20v0,9,-9,20,-19,19v-10,1,-20,-9,-20,-19v0,-12,9,-20,20,-20"},"\u00f5":{"d":"43,-236v6,-45,68,-4,94,-23v7,-1,13,7,12,14v-7,42,-70,4,-95,23v-7,-4,-11,-8,-11,-14xm97,-194v53,0,83,44,84,98v1,54,-29,96,-84,98v-50,2,-84,-43,-84,-98v-1,-54,31,-98,84,-98xm97,-25v35,0,53,-33,53,-71v0,-37,-20,-71,-53,-71v-33,0,-53,33,-53,71v0,38,18,71,53,71"},"\u00fa":{"d":"96,2v-47,0,-75,-27,-75,-74r0,-106v0,-11,6,-16,16,-16v11,0,16,5,16,16v5,59,-22,153,44,153v67,0,45,-93,45,-153v0,-11,5,-16,15,-16v11,0,16,5,16,16r0,106v0,45,-28,74,-77,74xm112,-265v18,-9,34,20,11,26v-20,5,-40,27,-63,16v-17,-26,34,-33,52,-42"},"\u00f9":{"d":"96,2v-47,0,-75,-27,-75,-74r0,-106v0,-11,6,-16,16,-16v11,0,16,5,16,16v5,59,-22,153,44,153v67,0,45,-93,45,-153v0,-11,5,-16,15,-16v11,0,16,5,16,16r0,106v0,45,-28,74,-77,74xm69,-239v-18,-5,-13,-27,4,-28v20,5,35,15,53,21v17,5,16,27,-3,27v-21,0,-36,-15,-54,-20"},"\u00fb":{"d":"145,-245v13,4,13,29,-4,27v-17,-2,-28,-11,-43,-16v-15,5,-27,13,-44,16v-16,3,-16,-22,-4,-27r48,-20xm96,2v-47,0,-75,-27,-75,-74r0,-106v0,-11,6,-16,16,-16v11,0,16,5,16,16v5,59,-22,153,44,153v67,0,45,-93,45,-153v0,-11,5,-16,15,-16v11,0,16,5,16,16r0,106v0,45,-28,74,-77,74"},"\u00fc":{"d":"96,2v-47,0,-75,-27,-75,-74r0,-106v0,-11,6,-16,16,-16v11,0,16,5,16,16v5,59,-22,153,44,153v67,0,45,-93,45,-153v0,-11,5,-16,15,-16v11,0,16,5,16,16r0,106v0,45,-28,74,-77,74xm131,-256v11,0,20,9,20,20v1,10,-10,20,-20,19v-10,1,-19,-9,-19,-19v0,-11,8,-20,19,-20xm65,-256v11,0,19,10,19,20v0,9,-9,20,-19,19v-10,1,-20,-9,-20,-19v0,-12,9,-20,20,-20"},"\u00a2":{"d":"13,-102v1,-48,29,-85,69,-91v2,-10,-5,-28,7,-28v13,0,6,17,8,28v36,0,53,7,53,23v0,28,-38,1,-53,3r0,142v13,4,52,-27,52,2v0,17,-17,25,-52,25v-2,10,5,28,-8,27v-12,0,-6,-18,-7,-28v-45,-7,-69,-49,-69,-103xm82,-164v-50,15,-50,120,0,136r0,-136","w":159},"\u00a3":{"d":"68,-190v2,22,7,24,19,47v23,4,62,-11,62,15v0,24,-35,11,-55,14v9,35,-3,57,-28,84r122,0v10,0,15,5,15,15v0,10,-5,15,-15,15r-149,0v-9,0,-14,-5,-15,-13v14,-37,54,-46,39,-101v-21,-2,-53,8,-53,-14v0,-21,25,-14,44,-15v-41,-55,-5,-118,63,-116v39,1,89,33,76,74v-1,1,-6,3,-13,6v-23,-13,-23,-50,-67,-50v-24,0,-46,14,-45,39","w":213},"\u00a7":{"d":"30,-200v-3,-78,148,-74,151,-6v1,23,-27,25,-31,5v-9,-40,-84,-42,-88,0v15,56,128,45,128,119v0,27,-19,51,-39,62v51,35,10,102,-51,98v-37,-3,-83,-20,-82,-53v0,-11,4,-16,14,-17v27,9,26,49,68,43v37,5,59,-37,25,-55v-39,-21,-117,-39,-116,-94v1,-28,16,-48,45,-61v-15,-9,-24,-23,-24,-41xm127,-35v39,-25,46,-65,2,-85r-47,-22v-50,15,-54,57,-7,81","w":200},"\u00b6":{"d":"10,-192v-2,-66,86,-69,161,-65v11,0,17,7,17,19r0,301v0,9,-5,14,-15,14v-10,0,-15,-4,-15,-13r0,-297r-41,0r0,298v0,9,-5,13,-15,13v-10,0,-15,-5,-15,-14r0,-188v-44,0,-76,-23,-77,-68","w":216},"\u00df":{"d":"134,-152v30,7,48,36,48,73v0,41,-32,83,-73,81v-23,4,-25,-29,-5,-28v48,4,53,-60,34,-92v-8,-23,-59,-6,-46,-40v20,-8,41,-16,38,-47v7,-35,-39,-61,-64,-36v-8,10,-13,24,-13,40r0,188v0,10,-5,15,-16,15v-10,0,-16,-5,-16,-15r0,-194v0,-39,26,-71,69,-71v69,0,96,92,44,126","w":200},"\u00ae":{"d":"144,-259v70,0,132,61,130,131v-2,75,-54,130,-130,130v-76,0,-129,-56,-131,-130v-2,-69,60,-131,131,-131xm144,-25v58,0,101,-42,101,-103v0,-59,-43,-104,-101,-104v-58,0,-101,44,-101,104v0,59,42,103,101,103xm98,-201v48,1,102,-10,102,43v0,24,-12,38,-36,41v11,20,27,36,35,59v-1,7,-25,8,-27,-2r-35,-55r-23,0v-4,21,11,60,-12,63v-7,0,-11,-4,-11,-11r0,-131v0,-5,2,-7,7,-7xm114,-137v28,-1,65,6,63,-23v3,-21,-38,-19,-63,-19r0,42","w":288},"\u00a9":{"d":"144,-259v75,0,131,55,131,131v0,74,-54,130,-131,130v-76,0,-131,-55,-131,-130v0,-75,56,-131,131,-131xm144,-25v60,0,101,-44,101,-103v0,-59,-41,-104,-101,-104v-58,0,-101,44,-101,104v0,60,42,103,101,103xm145,-73v30,3,33,-27,53,-33v8,0,12,3,12,9v0,27,-33,48,-65,48v-45,1,-77,-35,-77,-79v0,-47,30,-79,77,-81v30,-1,63,22,65,46v0,7,-4,10,-12,10v-13,-1,-27,-38,-53,-32v-30,-1,-47,24,-47,57v0,30,17,52,47,55","w":288},"\u00b4":{"d":"127,-323v18,-9,34,20,11,26v-20,5,-40,27,-63,16v-17,-26,34,-33,52,-42","w":73},"\u00a8":{"d":"70,-257v11,0,20,9,20,20v1,10,-10,20,-20,19v-10,1,-19,-9,-19,-19v0,-11,8,-20,19,-20xm4,-257v11,0,19,10,19,20v0,9,-9,20,-19,19v-10,1,-20,-9,-20,-19v0,-12,9,-20,20,-20","w":73},"\u00c6":{"d":"259,-14v0,8,-8,14,-16,14r-92,0v-24,1,-15,-33,-17,-55r-82,0r-27,49v-4,11,-29,11,-28,-4v34,-82,79,-156,117,-234v4,-9,7,-13,20,-13r106,0v10,0,15,5,15,15v0,10,-6,15,-16,15r-73,0r0,84r71,0v9,0,14,5,14,16v0,10,-5,14,-15,14r-70,0r0,83r77,0v10,0,16,6,16,16xm134,-83r0,-137r-69,137r69,0","w":266},"\u00d8":{"d":"36,-43v-54,-79,-16,-216,88,-216v29,0,52,10,72,29v11,-10,16,-29,33,-32v10,-2,14,11,8,18r-26,30v53,77,19,216,-87,216v-28,0,-53,-10,-73,-29v-11,10,-18,29,-35,33v-10,2,-11,-14,-6,-19xm177,-208v-54,-58,-132,-5,-132,80v0,23,4,43,12,60xm70,-49v52,57,133,5,133,-79v0,-23,-4,-43,-13,-60","w":246},"\u00b1":{"d":"199,-112v0,28,-51,9,-76,14v-2,22,9,56,-15,56v-23,0,-11,-35,-14,-56v-27,-4,-74,12,-79,-15v5,-27,52,-9,79,-14v2,-20,-8,-55,14,-55v24,-1,12,34,15,55r63,0v9,0,13,5,13,15xm200,-14v0,9,-4,14,-14,14r-154,0v-10,0,-15,-5,-16,-15v1,-10,6,-15,16,-15r154,0v10,0,14,6,14,16","w":216},"\u00a5":{"d":"7,-235v-8,-7,-5,-24,8,-24v6,0,12,3,17,10r65,97r63,-96v10,-20,40,-8,27,13r-60,92v18,2,49,-7,49,12v0,21,-43,7,-63,11r0,26v21,3,63,-10,63,12v0,22,-42,8,-63,12v-4,25,12,72,-16,72v-28,0,-12,-46,-16,-72v-23,-3,-61,10,-65,-12v4,-22,43,-8,65,-12r0,-26v-23,-3,-61,9,-66,-11v2,-19,32,-10,51,-12"},"\u00b5":{"d":"101,-25v65,-3,41,-94,41,-153v0,-11,5,-16,15,-16v11,0,16,5,16,16r0,163v4,20,-29,22,-31,7v-25,14,-74,15,-89,-7r0,77v0,10,-5,15,-16,15v-10,0,-16,-4,-16,-14r0,-241v0,-11,6,-16,16,-16v11,0,16,5,16,16v0,61,-25,157,48,153"},"\u03bc":{"d":"101,-25v65,-3,41,-94,41,-153v0,-11,5,-16,15,-16v11,0,16,5,16,16r0,163v4,20,-29,22,-31,7v-25,14,-74,15,-89,-7r0,77v0,10,-5,15,-16,15v-10,0,-16,-4,-16,-14r0,-241v0,-11,6,-16,16,-16v11,0,16,5,16,16v0,61,-25,157,48,153"},"\u00aa":{"d":"10,-200v0,-46,57,-81,86,-43v-1,-10,1,-16,12,-16v8,0,12,3,12,9r0,100v0,6,-4,9,-12,9v-12,1,-11,-7,-13,-15v-29,36,-85,2,-85,-44xm66,-162v41,0,41,-75,0,-75v-17,0,-29,18,-29,37v0,20,11,38,29,38","w":129},"\u00ba":{"d":"63,-259v32,-2,54,25,55,59v0,33,-20,58,-55,59v-33,2,-54,-25,-55,-59v0,-33,20,-58,55,-59xm63,-162v36,0,40,-74,0,-75v-18,-1,-29,18,-29,37v-1,20,12,38,29,38","w":125},"\u00e6":{"d":"179,-170v47,-52,132,-6,132,69v0,12,-6,18,-18,18r-117,0v1,32,23,55,57,57v18,1,39,-13,62,-25v8,0,12,5,12,14v-13,43,-101,52,-128,16v7,27,-29,30,-29,8v-1,-4,2,-12,-1,-14v-46,63,-136,12,-136,-68v0,-80,84,-131,137,-73v-9,-26,28,-35,29,-10r0,8xm279,-108v5,-50,-59,-80,-88,-41v-8,10,-11,24,-12,41r100,0xm97,-25v34,2,53,-32,53,-69v0,-40,-18,-73,-54,-73v-36,0,-52,33,-52,70v0,40,15,70,53,72","w":320},"\u00f8":{"d":"148,-175v8,-10,27,-39,38,-15v-4,13,-16,21,-23,32v41,59,9,160,-66,160v-20,0,-36,-6,-51,-18v-7,10,-28,38,-39,15v4,-12,17,-23,24,-33v-40,-56,-13,-160,67,-160v22,0,38,6,50,19xm130,-153v-38,-35,-92,2,-86,59v1,15,4,27,8,36xm64,-38v57,46,107,-34,78,-95"},"\u00bf":{"d":"83,-193v11,0,17,7,18,18v0,9,-9,19,-18,18v-10,-1,-18,-7,-18,-18v0,-11,7,-18,18,-18xm7,4v0,-41,23,-67,60,-74v2,-20,-8,-52,15,-52v27,0,12,39,16,62v-4,32,-65,10,-57,66v5,40,74,40,81,5v3,-21,32,-19,31,2v-5,75,-145,70,-146,-9","w":159},"\u00a1":{"d":"53,-193v11,0,18,8,19,18v0,9,-9,19,-19,18v-9,0,-19,-7,-18,-18v-1,-11,9,-18,18,-18xm37,-107v0,-8,8,-16,16,-15v11,0,16,5,16,16r0,158v0,10,-5,15,-16,15v-10,0,-16,-5,-16,-15r0,-159","w":99},"\u00ac":{"d":"199,-53v0,8,-5,14,-15,15v-27,-5,-9,-50,-14,-76r-139,0v-9,0,-14,-4,-15,-14v1,-10,6,-15,14,-15r154,0v10,0,15,5,15,15r0,75","w":216},"\u0192":{"d":"168,-262v0,21,-41,6,-45,22v-9,16,-12,46,-18,67v14,1,35,-4,35,11v0,16,-22,11,-38,12v-15,61,-16,140,-42,189v-9,17,-27,24,-49,24v-11,0,-17,-5,-17,-14v0,-19,31,-8,40,-20v26,-42,28,-124,43,-179v-16,0,-36,4,-36,-12v0,-16,23,-10,39,-11v11,-49,8,-107,73,-102v10,0,15,5,15,13"},"\u00ab":{"d":"106,-161v14,-21,36,0,22,15r-29,49v11,21,27,38,34,62v1,11,-22,18,-26,3r-37,-65xm49,-161v6,-14,25,-10,26,3v-5,25,-23,40,-33,61v11,21,27,38,34,62v1,11,-23,18,-26,3r-37,-65","w":140},"\u00bb":{"d":"75,-146v-8,-7,-4,-23,8,-24v6,0,11,3,14,9r36,64r-36,65v-5,14,-26,10,-27,-3v9,-24,24,-40,35,-62xm18,-146v-8,-8,-4,-24,9,-24v5,0,10,3,13,9r36,64r-37,65v-3,14,-26,9,-26,-3v9,-24,24,-40,35,-62","w":140},"\u00a0":{"w":0},"\u00c0":{"d":"216,-19v7,17,-9,27,-23,19v-12,-14,-15,-37,-23,-55r-119,0v-11,19,-8,54,-33,57v-13,2,-18,-10,-13,-21r83,-221v3,-24,35,-25,44,-1xm160,-83r-50,-139r-50,139r100,0xm81,-297v-18,-5,-13,-27,4,-28v20,5,35,15,53,21v17,5,16,27,-3,27v-21,0,-36,-15,-54,-20","w":219},"\u00c3":{"d":"57,-293v7,-46,69,-2,94,-23v7,-1,13,7,12,14v-7,41,-68,5,-95,23v-7,-4,-11,-8,-11,-14xm216,-19v7,17,-9,27,-23,19v-12,-14,-15,-37,-23,-55r-119,0v-11,19,-8,54,-33,57v-13,2,-18,-10,-13,-21r83,-221v3,-24,35,-25,44,-1xm160,-83r-50,-139r-50,139r100,0","w":219},"\u00d5":{"d":"70,-293v2,-33,50,-22,71,-15v13,-5,35,-15,35,6v0,42,-67,6,-95,23v-7,-4,-11,-8,-11,-14xm124,-259v70,-1,112,58,112,131v0,73,-40,130,-112,130v-71,0,-113,-56,-113,-130v0,-74,40,-130,113,-131xm124,-25v53,0,78,-45,79,-103v1,-58,-26,-103,-79,-104v-50,-2,-81,46,-79,104v1,56,23,103,79,103","w":246},"\u0152":{"d":"11,-128v0,-70,45,-133,113,-131v28,0,54,12,76,36v-1,-18,0,-34,17,-34r89,0v9,0,14,5,14,15v0,10,-5,15,-16,15r-72,0r0,84r70,0v9,0,14,5,14,15v0,10,-5,15,-15,15r-69,0r0,83r76,0v9,0,15,6,15,16v0,9,-6,14,-16,14r-90,0v-20,2,-16,-21,-18,-37v-16,22,-40,38,-75,39v-68,2,-113,-62,-113,-130xm125,-25v55,0,77,-45,77,-104v0,-58,-23,-100,-78,-103v-50,-3,-80,48,-79,104v0,60,24,103,80,103","w":333},"\u0153":{"d":"235,-194v51,4,79,40,82,93v0,12,-5,18,-17,18r-119,0v-1,34,23,57,59,57v21,1,42,-15,62,-25v6,0,11,8,11,14v-16,50,-128,51,-148,2v-17,23,-39,37,-75,37v-47,0,-77,-46,-77,-97v0,-57,31,-97,85,-99v33,-1,54,20,67,38v12,-20,37,-39,70,-38xm285,-108v6,-51,-56,-78,-89,-43v-10,11,-15,25,-15,43r104,0xm97,-25v34,2,53,-33,52,-70v-1,-39,-15,-72,-53,-72v-36,0,-52,33,-52,70v0,41,16,69,53,72","w":326},"\u00ff":{"d":"139,-194v13,-1,18,11,14,23r-83,236v-3,17,-30,23,-31,0v6,-26,18,-48,26,-72r-59,-172v0,-9,4,-14,14,-14v8,0,15,4,17,11r44,131r44,-132v2,-7,7,-11,14,-11xm112,-257v11,0,20,9,20,20v1,10,-10,20,-20,19v-10,1,-19,-9,-19,-19v0,-11,8,-20,19,-20xm46,-257v11,0,19,10,19,20v0,9,-9,20,-19,19v-10,1,-20,-9,-20,-19v0,-12,9,-20,20,-20","w":153},"\u00a4":{"d":"124,-26v27,2,43,-30,64,-17v7,33,-35,44,-65,44v-47,0,-76,-43,-82,-88v-15,0,-34,3,-34,-12v0,-15,18,-12,32,-12v-1,-11,-1,-24,0,-35v-14,0,-32,3,-32,-12v0,-15,19,-12,34,-12v4,-46,38,-91,84,-90v30,1,57,9,62,37v1,7,-5,13,-12,13v-25,-20,-63,-38,-86,-3v-8,11,-12,25,-14,43r69,0v9,0,14,4,14,12v0,8,-5,12,-14,12r-72,0v-2,12,-1,23,0,35v23,4,64,-10,68,12v-3,22,-44,8,-65,12v3,31,20,59,49,61"},"\u00b7":{"d":"45,-128v11,0,20,8,20,19v0,10,-10,19,-20,19v-10,0,-20,-9,-20,-19v-1,-10,9,-19,20,-19","w":86},"\u2219":{"d":"45,-128v11,0,20,8,20,19v0,10,-10,19,-20,19v-10,0,-20,-9,-20,-19v-1,-10,9,-19,20,-19","w":86},"\u00c2":{"d":"156,-302v13,4,13,27,-4,27r-43,-17v-15,6,-27,13,-44,17v-8,0,-12,-4,-12,-13v0,-25,39,-22,56,-35xm216,-19v7,17,-9,27,-23,19v-12,-14,-15,-37,-23,-55r-119,0v-11,19,-8,54,-33,57v-13,2,-18,-10,-13,-21r83,-221v3,-24,35,-25,44,-1xm160,-83r-50,-139r-50,139r100,0","w":219},"\u00ca":{"d":"128,-302v13,4,13,27,-4,27r-43,-17v-15,6,-27,13,-44,17v-8,0,-12,-4,-12,-13v0,-25,39,-22,56,-35xm21,-239v-1,-9,6,-18,14,-18r96,0v9,0,14,5,14,15v0,10,-5,15,-14,15r-78,0r0,84r71,0v9,0,14,5,14,15v0,10,-5,15,-15,15r-70,0r0,83r78,0v9,0,14,6,14,16v0,9,-6,14,-16,14r-92,0v-10,0,-16,-6,-16,-17r0,-222","w":159},"\u00c1":{"d":"216,-19v7,17,-9,27,-23,19v-12,-14,-15,-37,-23,-55r-119,0v-11,19,-8,54,-33,57v-13,2,-18,-10,-13,-21r83,-221v3,-24,35,-25,44,-1xm160,-83r-50,-139r-50,139r100,0xm126,-322v18,-9,34,20,11,26v-20,5,-40,27,-63,16v-17,-26,34,-33,52,-42","w":219},"\u00cb":{"d":"21,-239v-1,-9,6,-18,14,-18r96,0v9,0,14,5,14,15v0,10,-5,15,-14,15r-78,0r0,84r71,0v9,0,14,5,14,15v0,10,-5,15,-15,15r-70,0r0,83r78,0v9,0,14,6,14,16v0,9,-6,14,-16,14r-92,0v-10,0,-16,-6,-16,-17r0,-222xm114,-314v11,0,20,9,20,20v1,10,-10,20,-20,19v-10,1,-19,-9,-19,-19v0,-11,8,-20,19,-20xm48,-314v11,0,19,10,19,20v0,9,-9,20,-19,19v-10,1,-20,-9,-20,-19v0,-12,9,-20,20,-20","w":159},"\u00c8":{"d":"21,-239v-1,-9,6,-18,14,-18r96,0v9,0,14,5,14,15v0,10,-5,15,-14,15r-78,0r0,84r71,0v9,0,14,5,14,15v0,10,-5,15,-15,15r-70,0r0,83r78,0v9,0,14,6,14,16v0,9,-6,14,-16,14r-92,0v-10,0,-16,-6,-16,-17r0,-222xm53,-297v-18,-5,-13,-27,4,-28v20,5,35,15,53,21v17,5,16,27,-3,27v-21,0,-36,-15,-54,-20","w":159},"\u00cd":{"d":"53,-15v0,12,-6,17,-16,17v-11,0,-16,-6,-16,-17r0,-227v0,-11,5,-17,16,-17v10,0,16,6,16,17r0,227xm50,-322v18,-9,34,20,11,26v-20,5,-40,27,-63,16v-17,-26,34,-33,52,-42","w":73},"\u00ce":{"d":"83,-302v13,3,14,27,-3,27r-43,-17v-16,6,-27,14,-45,17v-15,3,-15,-24,-3,-27r48,-21xm53,-15v0,12,-6,17,-16,17v-11,0,-16,-6,-16,-17r0,-227v0,-11,5,-17,16,-17v10,0,16,6,16,17r0,227","w":73},"\u00cf":{"d":"53,-15v0,12,-6,17,-16,17v-11,0,-16,-6,-16,-17r0,-227v0,-11,5,-17,16,-17v10,0,16,6,16,17r0,227xm70,-315v11,0,20,9,20,20v1,10,-10,20,-20,19v-10,1,-19,-9,-19,-19v0,-11,8,-20,19,-20xm4,-315v11,0,19,10,19,20v0,9,-9,20,-19,19v-10,1,-20,-9,-20,-19v0,-12,9,-20,20,-20","w":73},"\u00cc":{"d":"53,-15v0,12,-6,17,-16,17v-11,0,-16,-6,-16,-17r0,-227v0,-11,5,-17,16,-17v10,0,16,6,16,17r0,227xm9,-295v-18,-5,-13,-27,4,-28v20,5,35,15,53,21v17,5,16,27,-3,27v-21,0,-36,-15,-54,-20","w":73},"\u00d3":{"d":"124,-259v70,-1,112,58,112,131v0,73,-40,130,-112,130v-71,0,-113,-56,-113,-130v0,-74,40,-130,113,-131xm124,-25v53,0,78,-45,79,-103v1,-58,-26,-103,-79,-104v-50,-2,-81,46,-79,104v1,56,23,103,79,103xm140,-323v18,-9,34,20,11,26v-20,5,-40,27,-63,16v-17,-26,34,-33,52,-42","w":246},"\u00d4":{"d":"171,-303v13,4,13,29,-4,27v-17,-2,-28,-11,-43,-16v-15,5,-27,13,-44,16v-16,3,-16,-22,-4,-27r48,-20xm124,-259v70,-1,112,58,112,131v0,73,-40,130,-112,130v-71,0,-113,-56,-113,-130v0,-74,40,-130,113,-131xm124,-25v53,0,78,-45,79,-103v1,-58,-26,-103,-79,-104v-50,-2,-81,46,-79,104v1,56,23,103,79,103","w":246},"\u00d2":{"d":"124,-259v70,-1,112,58,112,131v0,73,-40,130,-112,130v-71,0,-113,-56,-113,-130v0,-74,40,-130,113,-131xm124,-25v53,0,78,-45,79,-103v1,-58,-26,-103,-79,-104v-50,-2,-81,46,-79,104v1,56,23,103,79,103xm95,-298v-18,-5,-13,-27,4,-28v20,5,35,15,53,21v17,5,16,27,-3,27v-21,0,-36,-15,-54,-20","w":246},"\u00da":{"d":"122,-25v39,0,66,-27,66,-64r0,-154v0,-11,5,-16,15,-16v11,0,16,5,16,16r0,144v0,64,-32,101,-97,101v-66,1,-100,-37,-101,-100r0,-145v0,-11,6,-16,16,-16v11,0,16,5,16,16r0,154v-2,40,29,64,69,64xm137,-323v18,-9,34,20,11,26v-20,5,-40,27,-63,16v-17,-26,34,-33,52,-42","w":239},"\u00db":{"d":"166,-302v14,4,14,27,-4,27r-42,-17v-16,6,-27,14,-45,17v-15,3,-15,-24,-3,-27r48,-21xm122,-25v39,0,66,-27,66,-64r0,-154v0,-11,5,-16,15,-16v11,0,16,5,16,16r0,144v0,64,-32,101,-97,101v-66,1,-100,-37,-101,-100r0,-145v0,-11,6,-16,16,-16v11,0,16,5,16,16r0,154v-2,40,29,64,69,64","w":239},"\u00d9":{"d":"122,-25v39,0,66,-27,66,-64r0,-154v0,-11,5,-16,15,-16v11,0,16,5,16,16r0,144v0,64,-32,101,-97,101v-66,1,-100,-37,-101,-100r0,-145v0,-11,6,-16,16,-16v11,0,16,5,16,16r0,154v-2,40,29,64,69,64xm92,-297v-18,-5,-13,-27,4,-28v20,5,35,15,53,21v17,5,16,27,-3,27v-21,0,-36,-15,-54,-20","w":239},"\u00b8":{"d":"55,15v15,-4,31,5,33,19v5,32,-59,41,-66,18v-1,-24,36,8,38,-16v1,-15,-37,2,-23,-23r10,-13r19,0","w":73},"\u00d0":{"d":"104,-257v71,2,111,55,112,128v0,74,-41,133,-109,129v-29,-2,-78,11,-84,-14r0,-102v-14,0,-30,2,-30,-13v0,-15,15,-15,30,-14r0,-97v1,-31,54,-12,81,-17xm54,-27v84,9,128,-23,128,-104v0,-74,-46,-108,-128,-98r0,86v21,3,59,-9,59,14v0,23,-39,10,-59,13r0,89","w":227},"\u00f0":{"d":"125,-243v69,45,90,245,-30,245v-52,-1,-82,-43,-82,-96v0,-71,77,-132,127,-76v-3,-20,-23,-41,-43,-59v-16,4,-40,30,-51,10v5,-15,23,-15,35,-23v-8,-8,-34,-10,-34,-25v0,-7,4,-11,13,-11v13,0,30,7,49,22v14,-6,27,-18,43,-20v12,-2,11,17,1,19xm97,-25v32,2,53,-33,53,-69v0,-37,-17,-69,-53,-70v-33,-2,-53,33,-53,70v0,37,17,67,53,69"},"\u00dd":{"d":"4,-235v-7,-11,-3,-23,10,-24v7,0,12,3,16,9r60,98r60,-98v7,-13,30,-12,29,5v-19,46,-50,81,-73,124r0,106v1,10,-6,19,-16,18v-9,0,-15,-8,-15,-18r0,-106xm107,-324v18,-9,34,20,11,26v-20,5,-40,27,-63,16v-17,-26,34,-33,52,-42","w":173},"\u00fd":{"d":"139,-194v13,-1,18,11,14,23r-83,236v-3,17,-30,23,-31,0v6,-26,18,-48,26,-72r-59,-172v0,-9,4,-14,14,-14v8,0,15,4,17,11r44,131r44,-132v2,-7,7,-11,14,-11xm97,-265v18,-9,34,20,11,26v-20,5,-40,27,-63,16v-17,-26,34,-33,52,-42","w":153},"\u00de":{"d":"53,-216v75,-7,129,13,131,80v2,61,-57,88,-131,80v-2,23,9,60,-16,60v-10,0,-16,-9,-16,-19r0,-227v-1,-10,6,-18,16,-18v21,0,15,25,16,44xm53,-83v54,4,98,-2,99,-53v2,-48,-46,-58,-99,-53r0,106","w":187},"\u00fe":{"d":"103,-194v56,2,80,42,85,97v7,78,-84,132,-134,73r0,85v0,13,-6,19,-16,19v-9,0,-15,-9,-15,-18r0,-324v0,-11,5,-16,15,-16v11,0,16,6,16,16r1,94v9,-17,25,-26,48,-26xm103,-25v35,1,53,-33,53,-71v0,-37,-15,-70,-50,-71v-40,-2,-53,34,-55,70v-2,38,19,71,52,72","w":200},"\u00b9":{"d":"57,-114v0,6,-5,10,-13,11v-8,-1,-12,-5,-12,-11r0,-121v-13,-1,-30,4,-30,-10v0,-20,30,-9,49,-12v4,0,6,2,6,5r0,138","w":82},"\u00b2":{"d":"65,-259v41,-2,61,37,34,69r-52,63v23,4,68,-11,68,12v0,7,-5,10,-13,10r-80,0v-11,1,-14,-9,-9,-14v23,-33,56,-60,73,-99v1,-12,-11,-19,-23,-19v-15,-1,-31,15,-30,30v0,5,-4,8,-11,9v-7,-1,-11,-5,-11,-13v-1,-29,25,-47,54,-48","w":125},"\u00b3":{"d":"50,-126v18,4,39,-6,39,-22v0,-19,-7,-26,-26,-26v-10,0,-15,-4,-15,-10v4,-14,37,-13,32,-35v0,-12,-11,-17,-22,-18v-22,-3,-19,22,-33,27v-6,-1,-10,-5,-10,-14v2,-23,20,-35,47,-35v40,0,61,54,24,72v57,19,22,84,-28,84v-27,0,-43,-13,-48,-37v12,-33,25,15,40,14","w":125},"\u00bd":{"d":"217,-154v41,0,61,40,35,70r-53,62r56,0v8,0,11,4,11,12v0,7,-4,10,-12,10r-80,0v-11,1,-13,-7,-8,-13v23,-34,56,-61,72,-101v0,-12,-10,-18,-22,-18v-15,0,-31,14,-31,29v0,5,-4,8,-11,9v-7,-1,-10,-4,-10,-12v-1,-29,23,-48,53,-48xm170,-262v15,1,14,14,8,27r-96,229v-4,13,-24,15,-27,2r103,-248v3,-7,6,-10,12,-10xm68,-114v0,6,-5,10,-14,11v-8,-1,-13,-5,-13,-11r0,-121v-13,-1,-29,4,-29,-10v0,-20,30,-10,48,-12v5,0,8,2,8,5r0,138","w":289},"\u00bc":{"d":"277,-46v0,11,-7,12,-18,11v-1,16,6,37,-13,37v-19,0,-11,-21,-13,-37r-65,0v-12,-1,-7,-14,-2,-21r58,-87v6,-15,35,-15,35,3r0,84v10,0,18,0,18,10xm181,-262v15,1,14,14,8,27r-96,229v-3,14,-23,15,-26,2r102,-248v3,-7,6,-10,12,-10xm68,-114v0,6,-5,10,-14,11v-8,-1,-13,-5,-13,-11r0,-121v-13,-1,-28,4,-28,-10v0,-20,29,-9,47,-12v5,0,8,2,8,5r0,138xm233,-56v-1,-23,2,-51,-1,-72r-42,72r43,0","w":289},"\u00be":{"d":"277,-46v0,12,-7,12,-18,11v-1,16,6,37,-13,37v-19,0,-11,-21,-13,-37r-65,0v-12,-1,-7,-14,-2,-21r58,-87v6,-15,35,-15,35,3r0,84v10,0,18,-1,18,10xm203,-262v15,1,14,14,8,27r-96,229v-4,13,-23,15,-26,2r101,-248v3,-7,7,-10,13,-10xm55,-126v18,4,39,-7,39,-22v0,-17,-9,-26,-26,-26v-10,0,-15,-4,-15,-10v4,-16,36,-11,31,-35v0,-12,-10,-18,-21,-18v-21,-2,-21,21,-33,27v-6,-1,-10,-5,-10,-14v2,-23,20,-35,47,-35v40,0,61,54,24,72v55,20,22,84,-28,84v-27,0,-43,-13,-48,-37v1,-8,5,-12,10,-12v14,2,15,27,30,26xm233,-56v-1,-23,2,-51,-1,-72r-42,72r43,0","w":289},"\u0131":{"d":"37,2v-10,0,-16,-7,-16,-16r0,-164v0,-11,6,-16,16,-16v11,0,16,6,16,17r0,163v0,11,-5,16,-16,16","w":73}}});var TabsAssociatedNumerically=(function(config){var $=jQuery;var __priv={};var __pub=$.extend(true,{jc:{box:null,tabs:null,contents:null},activeClass:'active',tabsSelector:null,contentsSelector:null,change:function(){},start:function(){}},config);var __private__={init:function(){this.cacheDom();this.bindEvents();__pub.start.call(__public__,__public__);return __public__;},cacheDom:function(){__pub.jc.box=$(__pub.boxSelector);__pub.jc.tabs=__pub.jc.box.find(__pub.tabsSelector);__pub.jc.contents=__pub.jc.box.find(__pub.contentsSelector);},bindEvents:function(){__pub.jc.tabs.bind('click',function(){__public__.openTab.call(__public__,$(this));});}};var __public__={options:__pub,openTab:function($tab){var $siblingActive=$tab.addClass(__pub.activeClass).siblings("."+__pub.activeClass).removeClass(__pub.activeClass);if($siblingActive.size()>0){var index=$tab.prevAll().size();var $newContent=__pub.jc.contents.eq(index).addClass(__pub.activeClass);var $oldContent=$newContent.siblings("."+__pub.activeClass).removeClass(__pub.activeClass);__pub.change.call($tab,$siblingActive,$tab,$oldContent,$newContent,index);}}};return __private__.init();});var tab_selected=0;(function($,window,glb){glb.agrupamentoMosaico={};var $tooltipTemplate=$(['<div class="maisvistas-tooltip destaque">','<a>','<div class="foto">','<span class="canto-ce"></span>','<span class="canto-cd"></span>','<span class="canto-re"></span>','<span class="canto-rd"></span>','</div>','<div class="texto"><span class="descricao"></span></div>','</a>','</div>'].join(""));glb.agrupamentoMosaico.init=function(){$(".maisvistas > .ui-tabs").tabs({cache:true,cookie:{expires:30}});$(".maisvistas-fotos, .maisvistas-videos").each(function(){var $container=$(this);var handlerContainerLeave=function(event){$container.find(".maisvistas-tooltip").stop().hide();};var handlerImageOver=function(event){var that=this,$thisImage=$(this),$imageList=$thisImage.parents("ul:first"),$tooltip=$container.find(".maisvistas-tooltip"),$tooltipLink=$tooltip.children(),$tooltipDivImage=$tooltipLink.children(".foto"),$tooltipImage=$thisImage.clone(),$tooltipText=$tooltipLink.children(".texto"),$tooltipNumber=$tooltipText.children(".numero"),$tooltipDescription=$tooltipText.children(".descricao"),positions=$thisImage.parents(".foto").position(),dimensions={height:$thisImage.height(),width:$thisImage.width()},resizeFactor=0.04,finalWidth=dimensions.width+parseInt((dimensions.width*resizeFactor).toFixed(0),10),finalHeight=dimensions.height+parseInt((dimensions.height*resizeFactor).toFixed(0),10),imageMargin=4,textHeight=54,itemNum=0,inverted=false,invertedModifier;$tooltip.attr("className","").addClass("maisvistas-tooltip").addClass($imageList.attr("className"));switch($thisImage.attr("className")){case"fotoPequena":$tooltip.addClass("inverted");inverted=true;$tooltip.addClass("bg2");break;case"fotoMedia":$tooltip.addClass("bg3");break;case"videoPequeno":$tooltip.addClass("inverted");inverted=true;$tooltip.addClass("bg1");break;case"videoGrande":$tooltip.addClass("bg4");break;}
invertedModifier=(inverted===true?60:0);$imageList.find("img").each(function(i,o){if(that===o){itemNum=i;}});$tooltip.stop().css({"top":(positions.top-(finalHeight-dimensions.height)/2).toFixed(0)-5-invertedModifier,"left":(positions.left-(finalWidth-dimensions.width)/2).toFixed(0)-4,"height":finalHeight+(imageMargin*2)+textHeight+(inverted===true?7:0),"width":(inverted===true?finalWidth+(imageMargin*2.0):finalWidth+(imageMargin*2)),"display":"block","opacity":0}).animate({"opacity":1});$tooltipLink.attr({"href":$thisImage.parent().attr("href"),"title":$thisImage.attr("alt")});$tooltipDivImage.css({"top":imageMargin+invertedModifier,"left":imageMargin,"height":finalHeight,"width":finalWidth}).children("img").remove().end().append($tooltipImage);$tooltipImage.attr("alt",$thisImage.attr("alt")).css({"height":finalHeight,"width":finalWidth});$tooltipText.css({"height":inverted===true?72:48,"top":inverted===true?0:finalHeight+(imageMargin*2)});$tooltipNumber.css("backgroundPosition","5px "+(10-50*itemNum)+"px");$tooltipDescription.text($thisImage.attr("alt").replace(/\([^)]*\)$/,''));};var handlerTooltipLeave=function(event){$(this).stop().hide();};$container.mouseleave(handlerContainerLeave).find("img").mouseover(handlerImageOver).end().append($tooltipTemplate.clone()).find(".maisvistas-tooltip").mouseleave(handlerTooltipLeave);});};$(document).ready(glb.agrupamentoMosaico.init);window.glb=glb;})(jQuery,window,window.glb||{});jQuery.cookie=function(name,value,options){if(typeof value!='undefined'){options=options||{};if(value===null){value='';options.expires=-1;}
var expires='';if(options.expires&&(typeof options.expires=='number'||options.expires.toUTCString)){var date;if(typeof options.expires=='number'){date=new Date();date.setTime(date.getTime()+(options.expires*24*60*60*1000));}else{date=options.expires;}
expires='; expires='+date.toUTCString();}
var path=options.path?'; path='+(options.path):'';var domain=options.domain?'; domain='+(options.domain):'';var secure=options.secure?'; secure':'';document.cookie=[name,'=',encodeURIComponent(value),expires,path,domain,secure].join('');}else{var cookieValue=null;if(document.cookie&&document.cookie!=''){var cookies=document.cookie.split(';');for(var i=0;i<cookies.length;i++){var cookie=jQuery.trim(cookies[i]);if(cookie.substring(0,name.length+1)==(name+'=')){cookieValue=decodeURIComponent(cookie.substring(name.length+1));break;}}}
return cookieValue;}};(function($){$.fn.mediaShare=function(options){var _options=$.extend({twitterURL:'http://twitter.com/share?url={urlShared}&text={textShared}',facebookURL:'http://facebook.com/sharer.php?u={urlShared}&t={textShared}',width:550,height:350,menubar:0,scrollbars:0,status:0,toolbar:0,resizable:0,location:0},options);var openwindow=function(url,urlShare,text){centeredY=(screen.height-_options.height)/2;centeredX=(screen.width-_options.width)/2;var windowFeatures='height='+_options.height+',width='+_options.width+',toolbar='+_options.toolbar+',scrollbars='+_options.scrollbars+',status='+_options.status+',resizable='+_options.resizable+',location='+_options.location+',menuBar='+_options.menubar+',left='+centeredX+',top='+centeredY;window.open(url.replace("{urlShared}",urlShare).replace("{textShared}",text),"",windowFeatures);};return this.each(function(){$el=$(this);$el.unbind().bind('click',function(){var text=$(this).attr("data-text");var urlShare=$(this).attr("data-url");var imgSrc=$(this).attr("data-img");var description=$(this).attr("data-description");var mediaHref=$(this).attr("data-mediaHref");var media=[];if(mediaHref&&imgSrc){media=[{type:'image',src:imgSrc,href:mediaHref}]}
if($(this).hasClass("facebook")){FB.ui({method:'stream.publish',attachment:{name:text,caption:urlShare,description:description,href:urlShare,media:media}});}
else{openwindow(_options.twitterURL,urlShare,text);}
return false;});});};})(jQuery);(function($,window){var show=function(){this.css('visibility','visible');};var hide=function(){this.css('visibility','hidden');};if($.support.opacity){var oldShow=show;show=function(){this.clearQueue().stop().delay(80).queue($.proxy(function(next){oldShow.call(this);next();this.animate({opacity:1},{duration:200});},this));};var oldHide=hide;hide=function(){this.clearQueue().stop().delay(100).animate({opacity:0},{complete:$.proxy(oldHide,this),duration:200});};}
window.libby=window.libby||{};window.libby.menu={init:function(element){this.element=element;if(!this.element.length){return;}
this.menuLeft=this.element.offset().left;this.menuWidth=this.element.width();this.setupSubmenus();},setupSubmenus:function(){var self=this;this.element.find('ul.menu-itens > li').each(function(){var li=$(this),submenu=li.find('div.submenu');if(!submenu.length){return;}
var columns=li.find('div.conteudo-subitens:first > ul'),nColumns=columns.length;columns.last().addClass('last');hide.call(submenu);if(nColumns>1){submenu.first().addClass('submenu-'+nColumns+'colunas');}
self.reflowSubmenuSide(li,submenu);li.hover($.proxy(show,submenu),$.proxy(hide,submenu));});},reflowSubmenuSide:function(li,submenu){if(li.hasClass('menu-item-especial')){return;}
var rightDiff=(submenu.offset().left+submenu.width())-(this.menuLeft+this.menuWidth);if(rightDiff>0){li.addClass('menu-item-esq');var leftDiff=this.menuLeft-submenu.offset().left;if(leftDiff>0&&rightDiff<leftDiff){li.removeClass('menu-item-esq');}}}};libby.menu.init($('#glb-menu'));})(jQuery,window);
