(function(){var
window=this,undefined,_jQuery=window.jQuery,_$=window.$,jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context);},quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;this.context=selector;return this;}
if(typeof selector==="string"){var match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1])
selector=jQuery.clean([match[1]],context);else{var elem=document.getElementById(match[3]);if(elem){if(elem.id!=match[3])
return jQuery().find(selector);var ret=jQuery(elem);ret.context=document;ret.selector=selector;return ret;}
selector=[];}}else
return jQuery(context).find(selector);}else if(jQuery.isFunction(selector))
return jQuery(document).ready(selector);if(selector.selector&&selector.context){this.selector=selector.selector;this.context=selector.context;}
return this.setArray(jQuery.makeArray(selector));},selector:"",jquery:"1.3",size:function(){return this.length;},get:function(num){return num===undefined?jQuery.makeArray(this):this[num];},pushStack:function(elems,name,selector){var ret=jQuery(elems);ret.prevObject=this;ret.context=this.context;if(name==="find")
ret.selector=this.selector+(this.selector?" ":"")+selector;else if(name)
ret.selector=this.selector+"."+name+"("+selector+")";return ret;},setArray:function(elems){this.length=0;Array.prototype.push.apply(this,elems);return this;},each:function(callback,args){return jQuery.each(this,callback,args);},index:function(elem){return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this);},attr:function(name,value,type){var options=name;if(typeof name==="string")
if(value===undefined)
return this[0]&&jQuery[type||"attr"](this[0],name);else{options={};options[name]=value;}
return this.each(function(i){for(name in options)
jQuery.attr(type?this.style:this,name,jQuery.prop(this,options[name],type,i,name));});},css:function(key,value){if((key=='width'||key=='height')&&parseFloat(value)<0)
value=undefined;return this.attr(key,value,"curCSS");},text:function(text){if(typeof text!=="object"&&text!=null)
return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));var ret="";jQuery.each(text||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8)
ret+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this]);});});return ret;},wrapAll:function(html){if(this[0]){var wrap=jQuery(html,this[0].ownerDocument).clone();if(this[0].parentNode)
wrap.insertBefore(this[0]);wrap.map(function(){var elem=this;while(elem.firstChild)
elem=elem.firstChild;return elem;}).append(this);}
return this;},wrapInner:function(html){return this.each(function(){jQuery(this).contents().wrapAll(html);});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},append:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType==1)
this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType==1)
this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},push:[].push,find:function(selector){if(this.length===1&&!/,/.test(selector)){var ret=this.pushStack([],"find",selector);ret.length=0;jQuery.find(selector,this[0],ret);return ret;}else{var elems=jQuery.map(this,function(elem){return jQuery.find(selector,elem);});return this.pushStack(/[^+>] [^+>]/.test(selector)?jQuery.unique(elems):elems,"find",selector);}},clone:function(events){var ret=this.map(function(){if(!jQuery.support.noCloneEvent&&!jQuery.isXMLDoc(this)){var clone=this.cloneNode(true),container=document.createElement("div");container.appendChild(clone);return jQuery.clean([container.innerHTML])[0];}else
return this.cloneNode(true);});var clone=ret.find("*").andSelf().each(function(){if(this[expando]!==undefined)
this[expando]=null;});if(events===true)
this.find("*").andSelf().each(function(i){if(this.nodeType==3)
return;var events=jQuery.data(this,"events");for(var type in events)
for(var handler in events[type])
jQuery.event.add(clone[i],type,events[type][handler],events[type][handler].data);});return ret;},filter:function(selector){return this.pushStack(jQuery.isFunction(selector)&&jQuery.grep(this,function(elem,i){return selector.call(elem,i);})||jQuery.multiFilter(selector,jQuery.grep(this,function(elem){return elem.nodeType===1;})),"filter",selector);},closest:function(selector){var pos=jQuery.expr.match.POS.test(selector)?jQuery(selector):null;return this.map(function(){var cur=this;while(cur&&cur.ownerDocument){if(pos?pos.index(cur)>-1:jQuery(cur).is(selector))
return cur;cur=cur.parentNode;}});},not:function(selector){if(typeof selector==="string")
if(isSimple.test(selector))
return this.pushStack(jQuery.multiFilter(selector,this,true),"not",selector);else
selector=jQuery.multiFilter(selector,this);var isArrayLike=selector.length&&selector[selector.length-1]!==undefined&&!selector.nodeType;return this.filter(function(){return isArrayLike?jQuery.inArray(this,selector)<0:this!=selector;});},add:function(selector){return this.pushStack(jQuery.unique(jQuery.merge(this.get(),typeof selector==="string"?jQuery(selector):jQuery.makeArray(selector))));},is:function(selector){return!!selector&&jQuery.multiFilter(selector,this).length>0;},hasClass:function(selector){return!!selector&&this.is("."+selector);},val:function(value){if(value===undefined){var elem=this[0];if(elem){if(jQuery.nodeName(elem,'option'))
return(elem.attributes.value||{}).specified?elem.value:elem.text;if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type=="select-one";if(index<0)
return null;for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery(option).val();if(one)
return value;values.push(value);}}
return values;}
return(elem.value||"").replace(/\r/g,"");}
return undefined;}
if(typeof value==="number")
value+='';return this.each(function(){if(this.nodeType!=1)
return;if(jQuery.isArray(value)&&/radio|checkbox/.test(this.type))
this.checked=(jQuery.inArray(this.value,value)>=0||jQuery.inArray(this.name,value)>=0);else if(jQuery.nodeName(this,"select")){var values=jQuery.makeArray(value);jQuery("option",this).each(function(){this.selected=(jQuery.inArray(this.value,values)>=0||jQuery.inArray(this.text,values)>=0);});if(!values.length)
this.selectedIndex=-1;}else
this.value=value;});},html:function(value){return value===undefined?(this[0]?this[0].innerHTML:null):this.empty().append(value);},replaceWith:function(value){return this.after(value).remove();},eq:function(i){return this.slice(i,+i+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},andSelf:function(){return this.add(this.prevObject);},domManip:function(args,table,callback){if(this[0]){var fragment=(this[0].ownerDocument||this[0]).createDocumentFragment(),scripts=jQuery.clean(args,(this[0].ownerDocument||this[0]),fragment),first=fragment.firstChild,extra=this.length>1?fragment.cloneNode(true):fragment;if(first)
for(var i=0,l=this.length;i<l;i++)
callback.call(root(this[i],first),i>0?extra.cloneNode(true):fragment);if(scripts)
jQuery.each(scripts,evalScript);}
return this;function root(elem,cur){return table&&jQuery.nodeName(elem,"table")&&jQuery.nodeName(cur,"tr")?(elem.getElementsByTagName("tbody")[0]||elem.appendChild(elem.ownerDocument.createElement("tbody"))):elem;}}};jQuery.fn.init.prototype=jQuery.fn;function evalScript(i,elem){if(elem.src)
jQuery.ajax({url:elem.src,async:false,dataType:"script"});else
jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"");if(elem.parentNode)
elem.parentNode.removeChild(elem);}
function now(){return+new Date;}
jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options;if(typeof target==="boolean"){deep=target;target=arguments[1]||{};i=2;}
if(typeof target!=="object"&&!jQuery.isFunction(target))
target={};if(length==i){target=this;--i;}
for(;i<length;i++)
if((options=arguments[i])!=null)
for(var name in options){var src=target[name],copy=options[name];if(target===copy)
continue;if(deep&&copy&&typeof copy==="object"&&!copy.nodeType)
target[name]=jQuery.extend(deep,src||(copy.length!=null?[]:{}),copy);else if(copy!==undefined)
target[name]=copy;}
return target;};var exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,defaultView=document.defaultView||{},toString=Object.prototype.toString;jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)
window.jQuery=_jQuery;return jQuery;},isFunction:function(obj){return toString.call(obj)==="[object Function]";},isArray:function(obj){return toString.call(obj)==="[object Array]";},isXMLDoc:function(elem){return elem.documentElement&&!elem.body||elem.tagName&&elem.ownerDocument&&!elem.ownerDocument.body;},globalEval:function(data){data=jQuery.trim(data);if(data){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.support.scriptEval)
script.appendChild(document.createTextNode(data));else
script.text=data;head.insertBefore(script,head.firstChild);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},each:function(object,callback,args){var name,i=0,length=object.length;if(args){if(length===undefined){for(name in object)
if(callback.apply(object[name],args)===false)
break;}else
for(;i<length;)
if(callback.apply(object[i++],args)===false)
break;}else{if(length===undefined){for(name in object)
if(callback.call(object[name],name,object[name])===false)
break;}else
for(var value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}}
return object;},prop:function(elem,value,type,i,name){if(jQuery.isFunction(value))
value=value.call(elem,i);return typeof value==="number"&&type=="curCSS"&&!exclude.test(name)?value+"px":value;},className:{add:function(elem,classNames){jQuery.each((classNames||"").split(/\s+/),function(i,className){if(elem.nodeType==1&&!jQuery.className.has(elem.className,className))
elem.className+=(elem.className?" ":"")+className;});},remove:function(elem,classNames){if(elem.nodeType==1)
elem.className=classNames!==undefined?jQuery.grep(elem.className.split(/\s+/),function(className){return!jQuery.className.has(classNames,className);}).join(" "):"";},has:function(elem,className){return jQuery.inArray(className,(elem.className||elem).toString().split(/\s+/))>-1;}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name];}
callback.call(elem);for(var name in options)
elem.style[name]=old[name];},css:function(elem,name,force){if(name=="width"||name=="height"){var val,props={position:"absolute",visibility:"hidden",display:"block"},which=name=="width"?["Left","Right"]:["Top","Bottom"];function getWH(){val=name=="width"?elem.offsetWidth:elem.offsetHeight;var padding=0,border=0;jQuery.each(which,function(){padding+=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;border+=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;});val-=Math.round(padding+border);}
if(jQuery(elem).is(":visible"))
getWH();else
jQuery.swap(elem,props,getWH);return Math.max(0,val);}
return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret,style=elem.style;if(name=="opacity"&&!jQuery.support.opacity){ret=jQuery.attr(style,"opacity");return ret==""?"1":ret;}
if(name.match(/float/i))
name=styleFloat;if(!force&&style&&style[name])
ret=style[name];else if(defaultView.getComputedStyle){if(name.match(/float/i))
name="float";name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var computedStyle=defaultView.getComputedStyle(elem,null);if(computedStyle)
ret=computedStyle.getPropertyValue(name);if(name=="opacity"&&ret=="")
ret="1";}else if(elem.currentStyle){var camelCase=name.replace(/\-(\w)/g,function(all,letter){return letter.toUpperCase();});ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!/^\d+(px)?$/i.test(ret)&&/^\d/.test(ret)){var left=style.left,rsLeft=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;style.left=ret||0;ret=style.pixelLeft+"px";style.left=left;elem.runtimeStyle.left=rsLeft;}}
return ret;},clean:function(elems,context,fragment){context=context||document;if(typeof context.createElement==="undefined")
context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;if(!fragment&&elems.length===1&&typeof elems[0]==="string"){var match=/^<(\w+)\s*\/?>$/.exec(elems[0]);if(match)
return[context.createElement(match[1])];}
var ret=[],scripts=[],div=context.createElement("div");jQuery.each(elems,function(i,elem){if(typeof elem==="number")
elem+='';if(!elem)
return;if(typeof elem==="string"){elem=elem.replace(/(<(\w+)[^>]*?)\/>/g,function(all,front,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?all:front+"></"+tag+">";});var tags=jQuery.trim(elem).toLowerCase();var wrap=!tags.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!tags.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||tags.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!tags.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!tags.indexOf("<td")||!tags.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!tags.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!jQuery.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)
div=div.lastChild;if(!jQuery.support.tbody){var tbody=!tags.indexOf("<table")&&tags.indexOf("<tbody")<0?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&tags.indexOf("<tbody")<0?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j)
if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length)
tbody[j].parentNode.removeChild(tbody[j]);}
if(!jQuery.support.leadingWhitespace&&/^\s/.test(elem))
div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);elem=jQuery.makeArray(div.childNodes);}
if(elem.nodeType)
ret.push(elem);else
ret=jQuery.merge(ret,elem);});if(fragment){for(var i=0;ret[i];i++){if(jQuery.nodeName(ret[i],"script")&&(!ret[i].type||ret[i].type.toLowerCase()==="text/javascript")){scripts.push(ret[i].parentNode?ret[i].parentNode.removeChild(ret[i]):ret[i]);}else{if(ret[i].nodeType===1)
ret.splice.apply(ret,[i+1,0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))));fragment.appendChild(ret[i]);}}
return scripts;}
return ret;},attr:function(elem,name,value){if(!elem||elem.nodeType==3||elem.nodeType==8)
return undefined;var notxml=!jQuery.isXMLDoc(elem),set=value!==undefined;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name=="selected"&&elem.parentNode)
elem.parentNode.selectedIndex;if(name in elem&&notxml&&!special){if(set){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode)
throw"type property can't be changed";elem[name]=value;}
if(jQuery.nodeName(elem,"form")&&elem.getAttributeNode(name))
return elem.getAttributeNode(name).nodeValue;if(name=="tabIndex"){var attributeNode=elem.getAttributeNode("tabIndex");return attributeNode&&attributeNode.specified?attributeNode.value:elem.nodeName.match(/^(a|area|button|input|object|select|textarea)$/i)?0:undefined;}
return elem[name];}
if(!jQuery.support.style&&notxml&&name=="style")
return jQuery.attr(elem.style,"cssText",value);if(set)
elem.setAttribute(name,""+value);var attr=!jQuery.support.hrefNormalized&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}
if(!jQuery.support.opacity&&name=="opacity"){if(set){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+
(parseInt(value)+''=="NaN"?"":"alpha(opacity="+value*100+")");}
return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100)+'':"";}
name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(set)
elem[name]=value;return elem[name];},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"");},makeArray:function(array){var ret=[];if(array!=null){var i=array.length;if(i==null||typeof array==="string"||jQuery.isFunction(array)||array.setInterval)
ret[0]=array;else
while(i)
ret[--i]=array[i];}
return ret;},inArray:function(elem,array){for(var i=0,length=array.length;i<length;i++)
if(array[i]===elem)
return i;return-1;},merge:function(first,second){var i=0,elem,pos=first.length;if(!jQuery.support.getAll){while((elem=second[i++])!=null)
if(elem.nodeType!=8)
first[pos++]=elem;}else
while((elem=second[i++])!=null)
first[pos++]=elem;return first;},unique:function(array){var ret=[],done={};try{for(var i=0,length=array.length;i<length;i++){var id=jQuery.data(array[i]);if(!done[id]){done[id]=true;ret.push(array[i]);}}}catch(e){ret=array;}
return ret;},grep:function(elems,callback,inv){var ret=[];for(var i=0,length=elems.length;i<length;i++)
if(!inv!=!callback(elems[i],i))
ret.push(elems[i]);return ret;},map:function(elems,callback){var ret=[];for(var i=0,length=elems.length;i<length;i++){var value=callback(elems[i],i);if(value!=null)
ret[ret.length]=value;}
return ret.concat.apply([],ret);}});var userAgent=navigator.userAgent.toLowerCase();jQuery.browser={version:(userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,'0'])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};jQuery.each({parent:function(elem){return elem.parentNode;},parents:function(elem){return jQuery.dir(elem,"parentNode");},next:function(elem){return jQuery.nth(elem,2,"nextSibling");},prev:function(elem){return jQuery.nth(elem,2,"previousSibling");},nextAll:function(elem){return jQuery.dir(elem,"nextSibling");},prevAll:function(elem){return jQuery.dir(elem,"previousSibling");},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},children:function(elem){return jQuery.sibling(elem.firstChild);},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}},function(name,fn){jQuery.fn[name]=function(selector){var ret=jQuery.map(this,fn);if(selector&&typeof selector=="string")
ret=jQuery.multiFilter(selector,ret);return this.pushStack(jQuery.unique(ret),name,selector);};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(){var args=arguments;return this.each(function(){for(var i=0,length=args.length;i<length;i++)
jQuery(args[i])[original](this);});};});jQuery.each({removeAttr:function(name){jQuery.attr(this,name,"");if(this.nodeType==1)
this.removeAttribute(name);},addClass:function(classNames){jQuery.className.add(this,classNames);},removeClass:function(classNames){jQuery.className.remove(this,classNames);},toggleClass:function(classNames,state){if(typeof state!=="boolean")
state=!jQuery.className.has(this,classNames);jQuery.className[state?"add":"remove"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).length){jQuery("*",this).add([this]).each(function(){jQuery.event.remove(this);jQuery.removeData(this);});if(this.parentNode)
this.parentNode.removeChild(this);}},empty:function(){jQuery(">*",this).remove();while(this.firstChild)
this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0;}
var expando="jQuery"+now(),uuid=0,windowData={};jQuery.extend({cache:{},data:function(elem,name,data){elem=elem==window?windowData:elem;var id=elem[expando];if(!id)
id=elem[expando]=++uuid;if(name&&!jQuery.cache[id])
jQuery.cache[id]={};if(data!==undefined)
jQuery.cache[id][name]=data;return name?jQuery.cache[id][name]:id;},removeData:function(elem,name){elem=elem==window?windowData:elem;var id=elem[expando];if(name){if(jQuery.cache[id]){delete jQuery.cache[id][name];name="";for(name in jQuery.cache[id])
break;if(!name)
jQuery.removeData(elem);}}else{try{delete elem[expando];}catch(e){if(elem.removeAttribute)
elem.removeAttribute(expando);}
delete jQuery.cache[id];}},queue:function(elem,type,data){if(elem){type=(type||"fx")+"queue";var q=jQuery.data(elem,type);if(!q||jQuery.isArray(data))
q=jQuery.data(elem,type,jQuery.makeArray(data));else if(data)
q.push(data);}
return q;},dequeue:function(elem,type){var queue=jQuery.queue(elem,type),fn=queue.shift();if(!type||type==="fx")
fn=queue[0];if(fn!==undefined)
fn.call(elem);}});jQuery.fn.extend({data:function(key,value){var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value===undefined){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data===undefined&&this.length)
data=jQuery.data(this[0],key);return data===undefined&&parts[1]?this.data(parts[0]):data;}else
return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value);});},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});},queue:function(type,data){if(typeof type!=="string"){data=type;type="fx";}
if(data===undefined)
return jQuery.queue(this[0],type);return this.each(function(){var queue=jQuery.queue(this,type,data);if(type=="fx"&&queue.length==1)
queue[0].call(this);});},dequeue:function(type){return this.each(function(){jQuery.dequeue(this,type);});}});(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|[^[\]]+)+\]|\\.|[^ >+~,(\[]+)+|[>+~])(\s*,\s*)?/g,done=0,toString=Object.prototype.toString;var Sizzle=function(selector,context,results,seed){results=results||[];context=context||document;if(context.nodeType!==1&&context.nodeType!==9)
return[];if(!selector||typeof selector!=="string"){return results;}
var parts=[],m,set,checkSet,check,mode,extra,prune=true;chunker.lastIndex=0;while((m=chunker.exec(selector))!==null){parts.push(m[1]);if(m[2]){extra=RegExp.rightContext;break;}}
if(parts.length>1&&Expr.match.POS.exec(selector)){if(parts.length===2&&Expr.relative[parts[0]]){var later="",match;while((match=Expr.match.POS.exec(selector))){later+=match[0];selector=selector.replace(Expr.match.POS,"");}
set=Sizzle.filter(later,Sizzle(/\s$/.test(selector)?selector+"*":selector,context));}else{set=Expr.relative[parts[0]]?[context]:Sizzle(parts.shift(),context);while(parts.length){var tmpSet=[];selector=parts.shift();if(Expr.relative[selector])
selector+=parts.shift();for(var i=0,l=set.length;i<l;i++){Sizzle(selector,set[i],tmpSet);}
set=tmpSet;}}}else{var ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&context.parentNode?context.parentNode:context);set=Sizzle.filter(ret.expr,ret.set);if(parts.length>0){checkSet=makeArray(set);}else{prune=false;}
while(parts.length){var cur=parts.pop(),pop=cur;if(!Expr.relative[cur]){cur="";}else{pop=parts.pop();}
if(pop==null){pop=context;}
Expr.relative[cur](checkSet,pop,isXML(context));}}
if(!checkSet){checkSet=set;}
if(!checkSet){throw"Syntax error, unrecognized expression: "+(cur||selector);}
if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet);}else if(context.nodeType===1){for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&contains(context,checkSet[i]))){results.push(set[i]);}}}else{for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&checkSet[i].nodeType===1){results.push(set[i]);}}}}else{makeArray(checkSet,results);}
if(extra){Sizzle(extra,context,results,seed);}
return results;};Sizzle.matches=function(expr,set){return Sizzle(expr,null,null,set);};Sizzle.find=function(expr,context){var set,match;if(!expr){return[];}
for(var i=0,l=Expr.order.length;i<l;i++){var type=Expr.order[i],match;if((match=Expr.match[type].exec(expr))){var left=RegExp.leftContext;if(left.substr(left.length-1)!=="\\"){match[1]=(match[1]||"").replace(/\\/g,"");set=Expr.find[type](match,context);if(set!=null){expr=expr.replace(Expr.match[type],"");break;}}}}
if(!set){set=context.getElementsByTagName("*");}
return{set:set,expr:expr};};Sizzle.filter=function(expr,set,inplace,not){var old=expr,result=[],curLoop=set,match,anyFound;while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.match[type].exec(expr))!=null){var filter=Expr.filter[type],goodArray=null,goodPos=0,found,item;anyFound=false;if(curLoop==result){result=[];}
if(Expr.preFilter[type]){match=Expr.preFilter[type](match,curLoop,inplace,result,not);if(!match){anyFound=found=true;}else if(match===true){continue;}else if(match[0]===true){goodArray=[];var last=null,elem;for(var i=0;(elem=curLoop[i])!==undefined;i++){if(elem&&last!==elem){goodArray.push(elem);last=elem;}}}}
if(match){for(var i=0;(item=curLoop[i])!==undefined;i++){if(item){if(goodArray&&item!=goodArray[goodPos]){goodPos++;}
found=filter(item,match,goodPos,goodArray);var pass=not^!!found;if(inplace&&found!=null){if(pass){anyFound=true;}else{curLoop[i]=false;}}else if(pass){result.push(item);anyFound=true;}}}}
if(found!==undefined){if(!inplace){curLoop=result;}
expr=expr.replace(Expr.match[type],"");if(!anyFound){return[];}
break;}}}
expr=expr.replace(/\s*,\s*/,"");if(expr==old){if(anyFound==null){throw"Syntax error, unrecognized expression: "+expr;}else{break;}}
old=expr;}
return curLoop;};var Expr=Sizzle.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href");}},relative:{"+":function(checkSet,part){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var cur=elem.previousSibling;while(cur&&cur.nodeType!==1){cur=cur.previousSibling;}
checkSet[i]=typeof part==="string"?cur||false:cur===part;}}
if(typeof part==="string"){Sizzle.filter(part,checkSet,true);}},">":function(checkSet,part,isXML){if(typeof part==="string"&&!/\W/.test(part)){part=isXML?part:part.toUpperCase();for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName===part?parent:false;}}}else{for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){checkSet[i]=typeof part==="string"?elem.parentNode:elem.parentNode===part;}}
if(typeof part==="string"){Sizzle.filter(part,checkSet,true);}}},"":function(checkSet,part,isXML){var doneName="done"+(done++),checkFn=dirCheck;if(!part.match(/\W/)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck;}
checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML);},"~":function(checkSet,part,isXML){var doneName="done"+(done++),checkFn=dirCheck;if(typeof part==="string"&&!part.match(/\W/)){var nodeCheck=part=isXML?part:part.toUpperCase();checkFn=dirNodeCheck;}
checkFn("previousSibling",part,doneName,checkSet,nodeCheck,isXML);}},find:{ID:function(match,context){if(context.getElementById){var m=context.getElementById(match[1]);return m?[m]:[];}},NAME:function(match,context){return context.getElementsByName?context.getElementsByName(match[1]):null;},TAG:function(match,context){return context.getElementsByTagName(match[1]);}},preFilter:{CLASS:function(match,curLoop,inplace,result,not){match=" "+match[1].replace(/\\/g,"")+" ";for(var i=0;curLoop[i];i++){if(not^(" "+curLoop[i].className+" ").indexOf(match)>=0){if(!inplace)
result.push(curLoop[i]);}else if(inplace){curLoop[i]=false;}}
return false;},ID:function(match){return match[1].replace(/\\/g,"");},TAG:function(match,curLoop){for(var i=0;!curLoop[i];i++){}
return isXML(curLoop[i])?match[1]:match[1].toUpperCase();},CHILD:function(match){if(match[1]=="nth"){var test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(match[2]=="even"&&"2n"||match[2]=="odd"&&"2n+1"||!/\D/.test(match[2])&&"0n+"+match[2]||match[2]);match[2]=(test[1]+(test[2]||1))-0;match[3]=test[3]-0;}
match[0]="done"+(done++);return match;},ATTR:function(match){var name=match[1];if(Expr.attrMap[name]){match[1]=Expr.attrMap[name];}
if(match[2]==="~="){match[4]=" "+match[4]+" ";}
return match;},PSEUDO:function(match,curLoop,inplace,result,not){if(match[1]==="not"){if(match[3].match(chunker).length>1){match[3]=Sizzle(match[3],null,null,curLoop);}else{var ret=Sizzle.filter(match[3],curLoop,inplace,true^not);if(!inplace){result.push.apply(result,ret);}
return false;}}else if(Expr.match.POS.test(match[0])){return true;}
return match;},POS:function(match){match.unshift(true);return match;}},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden";},disabled:function(elem){return elem.disabled===true;},checked:function(elem){return elem.checked===true;},selected:function(elem){elem.parentNode.selectedIndex;return elem.selected===true;},parent:function(elem){return!!elem.firstChild;},empty:function(elem){return!elem.firstChild;},has:function(elem,i,match){return!!Sizzle(match[3],elem).length;},header:function(elem){return/h\d/i.test(elem.nodeName);},text:function(elem){return"text"===elem.type;},radio:function(elem){return"radio"===elem.type;},checkbox:function(elem){return"checkbox"===elem.type;},file:function(elem){return"file"===elem.type;},password:function(elem){return"password"===elem.type;},submit:function(elem){return"submit"===elem.type;},image:function(elem){return"image"===elem.type;},reset:function(elem){return"reset"===elem.type;},button:function(elem){return"button"===elem.type||elem.nodeName.toUpperCase()==="BUTTON";},input:function(elem){return/input|select|textarea|button/i.test(elem.nodeName);}},setFilters:{first:function(elem,i){return i===0;},last:function(elem,i,match,array){return i===array.length-1;},even:function(elem,i){return i%2===0;},odd:function(elem,i){return i%2===1;},lt:function(elem,i,match){return i<match[3]-0;},gt:function(elem,i,match){return i>match[3]-0;},nth:function(elem,i,match){return match[3]-0==i;},eq:function(elem,i,match){return match[3]-0==i;}},filter:{CHILD:function(elem,match){var type=match[1],parent=elem.parentNode;var doneName="child"+parent.childNodes.length;if(parent&&(!parent[doneName]||!elem.nodeIndex)){var count=1;for(var node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType==1){node.nodeIndex=count++;}}
parent[doneName]=count-1;}
if(type=="first"){return elem.nodeIndex==1;}else if(type=="last"){return elem.nodeIndex==parent[doneName];}else if(type=="only"){return parent[doneName]==1;}else if(type=="nth"){var add=false,first=match[2],last=match[3];if(first==1&&last==0){return true;}
if(first==0){if(elem.nodeIndex==last){add=true;}}else if((elem.nodeIndex-last)%first==0&&(elem.nodeIndex-last)/first>=0){add=true;}
return add;}},PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name];if(filter){return filter(elem,i,match,array);}else if(name==="contains"){return(elem.textContent||elem.innerText||"").indexOf(match[3])>=0;}else if(name==="not"){var not=match[3];for(var i=0,l=not.length;i<l;i++){if(not[i]===elem){return false;}}
return true;}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match;},TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName===match;},CLASS:function(elem,match){return match.test(elem.className);},ATTR:function(elem,match){var result=Expr.attrHandle[match[1]]?Expr.attrHandle[match[1]](elem):elem[match[1]]||elem.getAttribute(match[1]),value=result+"",type=match[2],check=match[4];return result==null?false:type==="="?value===check:type==="*="?value.indexOf(check)>=0:type==="~="?(" "+value+" ").indexOf(check)>=0:!match[4]?result:type==="!="?value!=check:type==="^="?value.indexOf(check)===0:type==="$="?value.substr(value.length-check.length)===check:type==="|="?value===check||value.substr(0,check.length+1)===check+"-":false;},POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name];if(filter){return filter(elem,i,match,array);}}}};for(var type in Expr.match){Expr.match[type]=RegExp(Expr.match[type].source+/(?![^\[]*\])(?![^\(]*\))/.source);}
var makeArray=function(array,results){array=Array.prototype.slice.call(array);if(results){results.push.apply(results,array);return results;}
return array;};try{Array.prototype.slice.call(document.documentElement.childNodes);}catch(e){makeArray=function(array,results){var ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array);}else{if(typeof array.length==="number"){for(var i=0,l=array.length;i<l;i++){ret.push(array[i]);}}else{for(var i=0;array[i];i++){ret.push(array[i]);}}}
return ret;};}
(function(){var form=document.createElement("form"),id="script"+(new Date).getTime();form.innerHTML="<input name='"+id+"'/>";var root=document.documentElement;root.insertBefore(form,root.firstChild);if(!!document.getElementById(id)){Expr.find.ID=function(match,context){if(context.getElementById){var m=context.getElementById(match[1]);return m?m.id===match[1]||m.getAttributeNode&&m.getAttributeNode("id").nodeValue===match[1]?[m]:undefined:[];}};Expr.filter.ID=function(elem,match){var node=elem.getAttributeNode&&elem.getAttributeNode("id");return elem.nodeType===1&&node&&node.nodeValue===match;};}
root.removeChild(form);})();(function(){var div=document.createElement("div");div.appendChild(document.createComment(""));if(div.getElementsByTagName("*").length>0){Expr.find.TAG=function(match,context){var results=context.getElementsByTagName(match[1]);if(match[1]==="*"){var tmp=[];for(var i=0;results[i];i++){if(results[i].nodeType===1){tmp.push(results[i]);}}
results=tmp;}
return results;};}
div.innerHTML="<a href='#'></a>";if(div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAttribute("href",2);};}})();if(document.querySelectorAll)(function(){var oldSizzle=Sizzle;Sizzle=function(query,context,extra,seed){context=context||document;if(!seed&&context.nodeType===9){try{return makeArray(context.querySelectorAll(query),extra);}catch(e){}}
return oldSizzle(query,context,extra,seed);};Sizzle.find=oldSizzle.find;Sizzle.filter=oldSizzle.filter;Sizzle.selectors=oldSizzle.selectors;Sizzle.matches=oldSizzle.matches;})();if(document.documentElement.getElementsByClassName){Expr.order.splice(1,0,"CLASS");Expr.find.CLASS=function(match,context){return context.getElementsByClassName(match[1]);};}
function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){elem=elem[dir];var match=false;while(elem&&elem.nodeType){var done=elem[doneName];if(done){match=checkSet[done];break;}
if(elem.nodeType===1&&!isXML)
elem[doneName]=i;if(elem.nodeName===cur){match=elem;break;}
elem=elem[dir];}
checkSet[i]=match;}}}
function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){elem=elem[dir];var match=false;while(elem&&elem.nodeType){if(elem[doneName]){match=checkSet[elem[doneName]];break;}
if(elem.nodeType===1){if(!isXML)
elem[doneName]=i;if(typeof cur!=="string"){if(elem===cur){match=true;break;}}else if(Sizzle.filter(cur,[elem]).length>0){match=elem;break;}}
elem=elem[dir];}
checkSet[i]=match;}}}
var contains=document.compareDocumentPosition?function(a,b){return a.compareDocumentPosition(b)&16;}:function(a,b){return a!==b&&(a.contains?a.contains(b):true);};var isXML=function(elem){return elem.documentElement&&!elem.body||elem.tagName&&elem.ownerDocument&&!elem.ownerDocument.body;};jQuery.find=Sizzle;jQuery.filter=Sizzle.filter;jQuery.expr=Sizzle.selectors;jQuery.expr[":"]=jQuery.expr.filters;Sizzle.selectors.filters.hidden=function(elem){return"hidden"===elem.type||jQuery.css(elem,"display")==="none"||jQuery.css(elem,"visibility")==="hidden";};Sizzle.selectors.filters.visible=function(elem){return"hidden"!==elem.type&&jQuery.css(elem,"display")!=="none"&&jQuery.css(elem,"visibility")!=="hidden";};Sizzle.selectors.filters.animated=function(elem){return jQuery.grep(jQuery.timers,function(fn){return elem===fn.elem;}).length;};jQuery.multiFilter=function(expr,elems,not){if(not){expr=":not("+expr+")";}
return Sizzle.matches(expr,elems);};jQuery.dir=function(elem,dir){var matched=[],cur=elem[dir];while(cur&&cur!=document){if(cur.nodeType==1)
matched.push(cur);cur=cur[dir];}
return matched;};jQuery.nth=function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir])
if(cur.nodeType==1&&++num==result)
break;return cur;};jQuery.sibling=function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&n!=elem)
r.push(n);}
return r;};return;window.Sizzle=Sizzle;})();jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)
return;if(elem.setInterval&&elem!=window)
elem=window;if(!handler.guid)
handler.guid=this.guid++;if(data!==undefined){var fn=handler;handler=this.proxy(fn);handler.data=data;}
var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){return typeof jQuery!=="undefined"&&!jQuery.event.triggered?jQuery.event.handle.apply(arguments.callee.elem,arguments):undefined;});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var namespaces=type.split(".");type=namespaces.shift();handler.type=namespaces.slice().sort().join(".");var handlers=events[type];if(jQuery.event.specialAll[type])
jQuery.event.specialAll[type].setup.call(elem,data,namespaces);if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem,data,namespaces)===false){if(elem.addEventListener)
elem.addEventListener(type,handle,false);else if(elem.attachEvent)
elem.attachEvent("on"+type,handle);}}
handlers[handler.guid]=handler;jQuery.event.global[type]=true;});elem=null;},guid:1,global:{},remove:function(elem,types,handler){if(elem.nodeType==3||elem.nodeType==8)
return;var events=jQuery.data(elem,"events"),ret,index;if(events){if(types===undefined||(typeof types==="string"&&types.charAt(0)=="."))
for(var type in events)
this.remove(elem,type+(types||""));else{if(types.type){handler=types.handler;types=types.type;}
jQuery.each(types.split(/\s+/),function(index,type){var namespaces=type.split(".");type=namespaces.shift();var namespace=RegExp("(^|\\.)"+namespaces.slice().sort().join(".*\\.")+"(\\.|$)");if(events[type]){if(handler)
delete events[type][handler.guid];else
for(var handle in events[type])
if(namespace.test(events[type][handle].type))
delete events[type][handle];if(jQuery.event.specialAll[type])
jQuery.event.specialAll[type].teardown.call(elem,namespaces);for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem,namespaces)===false){if(elem.removeEventListener)
elem.removeEventListener(type,jQuery.data(elem,"handle"),false);else if(elem.detachEvent)
elem.detachEvent("on"+type,jQuery.data(elem,"handle"));}
ret=null;delete events[type];}}});}
for(ret in events)break;if(!ret){var handle=jQuery.data(elem,"handle");if(handle)handle.elem=null;jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle");}}},trigger:function(event,data,elem,bubbling){var type=event.type||event;if(!bubbling){event=typeof event==="object"?event[expando]?event:jQuery.extend(jQuery.Event(type),event):jQuery.Event(type);if(type.indexOf("!")>=0){event.type=type=type.slice(0,-1);event.exclusive=true;}
if(!elem){event.stopPropagation();if(this.global[type])
jQuery.each(jQuery.cache,function(){if(this.events&&this.events[type])
jQuery.event.trigger(event,data,this.handle.elem);});}
if(!elem||elem.nodeType==3||elem.nodeType==8)
return undefined;event.result=undefined;event.target=elem;data=jQuery.makeArray(data);data.unshift(event);}
event.currentTarget=elem;var handle=jQuery.data(elem,"handle");if(handle)
handle.apply(elem,data);if((!elem[type]||(jQuery.nodeName(elem,'a')&&type=="click"))&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)
event.result=false;if(!bubbling&&elem[type]&&!event.isDefaultPrevented()&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}}
this.triggered=false;if(!event.isPropagationStopped()){var parent=elem.parentNode||elem.ownerDocument;if(parent)
jQuery.event.trigger(event,data,parent,true);}},handle:function(event){var all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);var namespaces=event.type.split(".");event.type=namespaces.shift();all=!namespaces.length&&!event.exclusive;var namespace=RegExp("(^|\\.)"+namespaces.slice().sort().join(".*\\.")+"(\\.|$)");handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||namespace.test(handler.type)){event.handler=handler;event.data=handler.data;var ret=handler.apply(this,arguments);if(ret!==undefined){event.result=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}
if(event.isImmediatePropagationStopped())
break;}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(event){if(event[expando])
return event;var originalEvent=event;event=jQuery.Event(originalEvent);for(var i=this.props.length,prop;i;){prop=this.props[--i];event[prop]=originalEvent[prop];}
if(!event.target)
event.target=event.srcElement||document;if(event.target.nodeType==3)
event.target=event.target.parentNode;if(!event.relatedTarget&&event.fromElement)
event.relatedTarget=event.fromElement==event.target?event.toElement:event.fromElement;if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc.clientTop||0);}
if(!event.which&&((event.charCode||event.charCode===0)?event.charCode:event.keyCode))
event.which=event.charCode||event.keyCode;if(!event.metaKey&&event.ctrlKey)
event.metaKey=event.ctrlKey;if(!event.which&&event.button)
event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));return event;},proxy:function(fn,proxy){proxy=proxy||function(){return fn.apply(this,arguments);};proxy.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy;},special:{ready:{setup:bindReady,teardown:function(){}}},specialAll:{live:{setup:function(selector,namespaces){jQuery.event.add(this,namespaces[0],liveHandler);},teardown:function(namespaces){if(namespaces.length){var remove=0,name=RegExp("(^|\\.)"+namespaces[0]+"(\\.|$)");jQuery.each((jQuery.data(this,"events").live||{}),function(){if(name.test(this.type))
remove++;});if(remove<1)
jQuery.event.remove(this,namespaces[0],liveHandler);}}}}};jQuery.Event=function(src){if(!this.preventDefault)
return new jQuery.Event(src);if(src&&src.type){this.originalEvent=src;this.type=src.type;this.timeStamp=src.timeStamp;}else
this.type=src;if(!this.timeStamp)
this.timeStamp=now();this[expando]=true;};function returnFalse(){return false;}
function returnTrue(){return true;}
jQuery.Event.prototype={preventDefault:function(){this.isDefaultPrevented=returnTrue;var e=this.originalEvent;if(!e)
return;if(e.preventDefault)
e.preventDefault();e.returnValue=false;},stopPropagation:function(){this.isPropagationStopped=returnTrue;var e=this.originalEvent;if(!e)
return;if(e.stopPropagation)
e.stopPropagation();e.cancelBubble=true;},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=returnTrue;this.stopPropagation();},isDefaultPrevented:returnFalse,isPropagationStopped:returnFalse,isImmediatePropagationStopped:returnFalse};var withinElement=function(event){var parent=event.relatedTarget;while(parent&&parent!=this)
try{parent=parent.parentNode;}
catch(e){parent=this;}
if(parent!=this){event.type=event.data;jQuery.event.handle.apply(this,arguments);}};jQuery.each({mouseover:'mouseenter',mouseout:'mouseleave'},function(orig,fix){jQuery.event.special[fix]={setup:function(){jQuery.event.add(this,orig,withinElement,fix);},teardown:function(){jQuery.event.remove(this,orig,withinElement);}};});jQuery.fn.extend({bind:function(type,data,fn){return type=="unload"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data);});},one:function(type,data,fn){var one=jQuery.event.proxy(fn||data,function(event){jQuery(this).unbind(event,one);return(fn||data).apply(this,arguments);});return this.each(function(){jQuery.event.add(this,type,one,fn&&data);});},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data){return this.each(function(){jQuery.event.trigger(type,data,this);});},triggerHandler:function(type,data){if(this[0]){var event=jQuery.Event(type);event.preventDefault();event.stopPropagation();jQuery.event.trigger(event,data,this[0]);return event.result;}},toggle:function(fn){var args=arguments,i=1;while(i<args.length)
jQuery.event.proxy(fn,args[i++]);return this.click(jQuery.event.proxy(fn,function(event){this.lastToggle=(this.lastToggle||0)%i;event.preventDefault();return args[this.lastToggle++].apply(this,arguments)||false;}));},hover:function(fnOver,fnOut){return this.mouseenter(fnOver).mouseleave(fnOut);},ready:function(fn){bindReady();if(jQuery.isReady)
fn.call(document,jQuery);else
jQuery.readyList.push(fn);return this;},live:function(type,fn){var proxy=jQuery.event.proxy(fn);proxy.guid+=this.selector+type;jQuery(document).bind(liveConvert(type,this.selector),this.selector,proxy);return this;},die:function(type,fn){jQuery(document).unbind(liveConvert(type,this.selector),fn?{guid:fn.guid+this.selector+type}:null);return this;}});function liveHandler(event){var check=RegExp("(^|\\.)"+event.type+"(\\.|$)"),stop=true,elems=[];jQuery.each(jQuery.data(this,"events").live||[],function(i,fn){if(check.test(fn.type)){var elem=jQuery(event.target).closest(fn.data)[0];if(elem)
elems.push({elem:elem,fn:fn});}});jQuery.each(elems,function(){if(!event.isImmediatePropagationStopped()&&this.fn.call(this.elem,event,this.fn.data)===false)
stop=false;});return stop;}
function liveConvert(type,selector){return["live",type,selector.replace(/\./g,"`").replace(/ /g,"|")].join(".");}
jQuery.extend({isReady:false,readyList:[],ready:function(){if(!jQuery.isReady){jQuery.isReady=true;if(jQuery.readyList){jQuery.each(jQuery.readyList,function(){this.call(document,jQuery);});jQuery.readyList=null;}
jQuery(document).triggerHandler("ready");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);jQuery.ready();},false);}else if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);jQuery.ready();}});if(document.documentElement.doScroll&&!window.frameElement)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left");}catch(error){setTimeout(arguments.callee,0);return;}
jQuery.ready();})();}
jQuery.event.add(window,"load",jQuery.ready);}
jQuery.each(("blur,focus,load,resize,scroll,unload,click,dblclick,"+"mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,"+"change,select,submit,keydown,keypress,keyup,error").split(","),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name);};});jQuery(window).bind('unload',function(){for(var id in jQuery.cache)
if(id!=1&&jQuery.cache[id].handle)
jQuery.event.remove(jQuery.cache[id].handle.elem);});(function(){jQuery.support={};var root=document.documentElement,script=document.createElement("script"),div=document.createElement("div"),id="script"+(new Date).getTime();div.style.display="none";div.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var all=div.getElementsByTagName("*"),a=div.getElementsByTagName("a")[0];if(!all||!all.length||!a){return;}
jQuery.support={leadingWhitespace:div.firstChild.nodeType==3,tbody:!div.getElementsByTagName("tbody").length,objectAll:!!div.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!div.getElementsByTagName("link").length,style:/red/.test(a.getAttribute("style")),hrefNormalized:a.getAttribute("href")==="/a",opacity:a.style.opacity==="0.5",cssFloat:!!a.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};script.type="text/javascript";try{script.appendChild(document.createTextNode("window."+id+"=1;"));}catch(e){}
root.insertBefore(script,root.firstChild);if(window[id]){jQuery.support.scriptEval=true;delete window[id];}
root.removeChild(script);if(div.attachEvent&&div.fireEvent){div.attachEvent("onclick",function(){jQuery.support.noCloneEvent=false;div.detachEvent("onclick",arguments.callee);});div.cloneNode(true).fireEvent("onclick");}
jQuery(function(){var div=document.createElement("div");div.style.width="1px";div.style.paddingLeft="1px";document.body.appendChild(div);jQuery.boxModel=jQuery.support.boxModel=div.offsetWidth===2;document.body.removeChild(div);});})();var styleFloat=jQuery.support.cssFloat?"cssFloat":"styleFloat";jQuery.props={"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};jQuery.fn.extend({_load:jQuery.fn.load,load:function(url,params,callback){if(typeof url!=="string")
return this._load(url);var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}
var type="GET";if(params)
if(jQuery.isFunction(params)){callback=params;params=null;}else if(typeof params==="object"){params=jQuery.param(params);type="POST";}
var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(res,status){if(status=="success"||status=="notmodified")
self.html(selector?jQuery("<div/>").append(res.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(selector):res.responseText);if(callback)
self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return this.elements?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:jQuery.isArray(val)?jQuery.map(val,function(val,i){return{name:elem.name,value:val};}):{name:elem.name,value:val};}).get();}});jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});var jsc=now();jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data=null;}
return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type});},getScript:function(url,callback){return jQuery.get(url,null,callback,"script");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json");},post:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data={};}
return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type});},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings);},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(s){s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));var jsonp,jsre=/=\?(&|$)/g,status,data,type=s.type.toUpperCase();if(s.data&&s.processData&&typeof s.data!=="string")
s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(type=="GET"){if(!s.url.match(jsre))
s.url+=(s.url.match(/\?/)?"&":"?")+(s.jsonp||"callback")+"=?";}else if(!s.data||!s.data.match(jsre))
s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?";s.dataType="json";}
if(s.dataType=="json"&&(s.data&&s.data.match(jsre)||s.url.match(jsre))){jsonp="jsonp"+jsc++;if(s.data)
s.data=(s.data+"").replace(jsre,"="+jsonp+"$1");s.url=s.url.replace(jsre,"="+jsonp+"$1");s.dataType="script";window[jsonp]=function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp];}catch(e){}
if(head)
head.removeChild(script);};}
if(s.dataType=="script"&&s.cache==null)
s.cache=false;if(s.cache===false&&type=="GET"){var ts=now();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"");}
if(s.data&&type=="GET"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;}
if(s.global&&!jQuery.active++)
jQuery.event.trigger("ajaxStart");var parts=/^(\w+:)?\/\/([^\/?#]+)/.exec(s.url);if(s.dataType=="script"&&type=="GET"&&parts&&(parts[1]&&parts[1]!=location.protocol||parts[2]!=location.host)){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;if(s.scriptCharset)
script.charset=s.scriptCharset;if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){done=true;success();complete();head.removeChild(script);}};}
head.appendChild(script);return undefined;}
var requestDone=false;var xhr=s.xhr();if(s.username)
xhr.open(type,s.url,s.async,s.username,s.password);else
xhr.open(type,s.url,s.async);try{if(s.data)
xhr.setRequestHeader("Content-Type",s.contentType);if(s.ifModified)
xhr.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xhr.setRequestHeader("X-Requested-With","XMLHttpRequest");xhr.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){}
if(s.beforeSend&&s.beforeSend(xhr,s)===false){if(s.global&&!--jQuery.active)
jQuery.event.trigger("ajaxStop");xhr.abort();return false;}
if(s.global)
jQuery.event.trigger("ajaxSend",[xhr,s]);var onreadystatechange=function(isTimeout){if(xhr.readyState==0){if(ival){clearInterval(ival);ival=null;if(s.global&&!--jQuery.active)
jQuery.event.trigger("ajaxStop");}}else if(!requestDone&&xhr&&(xhr.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;}
status=isTimeout=="timeout"?"timeout":!jQuery.httpSuccess(xhr)?"error":s.ifModified&&jQuery.httpNotModified(xhr,s.url)?"notmodified":"success";if(status=="success"){try{data=jQuery.httpData(xhr,s.dataType,s);}catch(e){status="parsererror";}}
if(status=="success"){var modRes;try{modRes=xhr.getResponseHeader("Last-Modified");}catch(e){}
if(s.ifModified&&modRes)
jQuery.lastModified[s.url]=modRes;if(!jsonp)
success();}else
jQuery.handleError(s,xhr,status);complete();if(s.async)
xhr=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)
setTimeout(function(){if(xhr){if(!requestDone)
onreadystatechange("timeout");if(xhr)
xhr.abort();}},s.timeout);}
try{xhr.send(s.data);}catch(e){jQuery.handleError(s,xhr,null,e);}
if(!s.async)
onreadystatechange();function success(){if(s.success)
s.success(data,status);if(s.global)
jQuery.event.trigger("ajaxSuccess",[xhr,s]);}
function complete(){if(s.complete)
s.complete(xhr,status);if(s.global)
jQuery.event.trigger("ajaxComplete",[xhr,s]);if(s.global&&!--jQuery.active)
jQuery.event.trigger("ajaxStop");}
return xhr;},handleError:function(s,xhr,status,e){if(s.error)s.error(xhr,status,e);if(s.global)
jQuery.event.trigger("ajaxError",[xhr,s,e]);},active:0,httpSuccess:function(xhr){try{return!xhr.status&&location.protocol=="file:"||(xhr.status>=200&&xhr.status<300)||xhr.status==304||xhr.status==1223;}catch(e){}
return false;},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader("Last-Modified");return xhr.status==304||xhrRes==jQuery.lastModified[url];}catch(e){}
return false;},httpData:function(xhr,type,s){var ct=xhr.getResponseHeader("content-type"),xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0,data=xml?xhr.responseXML:xhr.responseText;if(xml&&data.documentElement.tagName=="parsererror")
throw"parsererror";if(s&&s.dataFilter)
data=s.dataFilter(data,type);if(typeof data==="string"){if(type=="script")
jQuery.globalEval(data);if(type=="json")
data=window["eval"]("("+data+")");}
return data;},param:function(a){var s=[];function add(key,value){s[s.length]=encodeURIComponent(key)+'='+encodeURIComponent(value);};if(jQuery.isArray(a)||a.jquery)
jQuery.each(a,function(){add(this.name,this.value);});else
for(var j in a)
if(jQuery.isArray(a[j]))
jQuery.each(a[j],function(){add(j,this);});else
add(j,jQuery.isFunction(a[j])?a[j]():a[j]);return s.join("&").replace(/%20/g,"+");}});var elemdisplay={},fxAttrs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function genFx(type,num){var obj={};jQuery.each(fxAttrs.concat.apply([],fxAttrs.slice(0,num)),function(){obj[this]=type;});return obj;}
jQuery.fn.extend({show:function(speed,callback){if(speed){return this.animate(genFx("show",3),speed,callback);}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");this[i].style.display=old||"";if(jQuery.css(this[i],"display")==="none"){var tagName=this[i].tagName,display;if(elemdisplay[tagName]){display=elemdisplay[tagName];}else{var elem=jQuery("<"+tagName+" />").appendTo("body");display=elem.css("display");if(display==="none")
display="block";elem.remove();elemdisplay[tagName]=display;}
this[i].style.display=jQuery.data(this[i],"olddisplay",display);}}
return this;}},hide:function(speed,callback){if(speed){return this.animate(genFx("hide",3),speed,callback);}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");if(!old&&old!=="none")
jQuery.data(this[i],"olddisplay",jQuery.css(this[i],"display"));this[i].style.display="none";}
return this;}},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){var bool=typeof fn==="boolean";return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle.apply(this,arguments):fn==null||bool?this.each(function(){var state=bool?fn:jQuery(this).is(":hidden");jQuery(this)[state?"show":"hide"]();}):this.animate(genFx("toggle",3),fn,fn2);},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);return this[optall.queue===false?"each":"queue"](function(){var opt=jQuery.extend({},optall),p,hidden=this.nodeType==1&&jQuery(this).is(":hidden"),self=this;for(p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden)
return opt.complete.call(this);if((p=="height"||p=="width")&&this.style){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow;}}
if(opt.overflow!=null)
this.style.overflow="hidden";opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(/toggle|show|hide/.test(val))
e[val=="toggle"?hidden?"show":"hide":val](prop);else{var parts=val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit;}
if(parts[1])
end=((parts[1]=="-="?-1:1)*end)+start;e.custom(start,end,unit);}else
e.custom(start,val,"");}});return true;});},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue)
this.queue([]);this.each(function(){for(var i=timers.length-1;i>=0;i--)
if(timers[i].elem==this){if(gotoEnd)
timers[i](true);timers.splice(i,1);}});if(!gotoEnd)
this.dequeue();return this;}});jQuery.each({slideDown:genFx("show",1),slideUp:genFx("hide",1),slideToggle:genFx("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(name,props){jQuery.fn[name]=function(speed,callback){return this.animate(props,speed,callback);};});jQuery.extend({speed:function(speed,easing,fn){var opt=typeof speed==="object"?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&!jQuery.isFunction(easing)&&easing};opt.duration=jQuery.fx.off?0:typeof opt.duration==="number"?opt.duration:jQuery.fx.speeds[opt.duration]||jQuery.fx.speeds._default;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false)
jQuery(this).dequeue();if(jQuery.isFunction(opt.old))
opt.old.call(this);};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],timerId:null,fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig)
options.orig={};}});jQuery.fx.prototype={update:function(){if(this.options.step)
this.options.step.call(this.elem,this.now,this);(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style)
this.elem.style.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))
return this.elem[this.prop];var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=now();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;var self=this;function t(gotoEnd){return self.step(gotoEnd);}
t.elem=this.elem;jQuery.timers.push(t);if(t()&&jQuery.timerId==null){jQuery.timerId=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++)
if(!timers[i]())
timers.splice(i--,1);if(!timers.length){clearInterval(jQuery.timerId);jQuery.timerId=null;}},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var t=now();if(gotoEnd||t>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var done=true;for(var i in this.options.curAnim)
if(this.options.curAnim[i]!==true)
done=false;if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(jQuery.css(this.elem,"display")=="none")
this.elem.style.display="block";}
if(this.options.hide)
jQuery(this.elem).hide();if(this.options.hide||this.options.show)
for(var p in this.options.curAnim)
jQuery.attr(this.elem.style,p,this.options.orig[p]);}
if(done)
this.options.complete.call(this.elem);return false;}else{var n=t-this.startTime;this.state=n/this.options.duration;this.pos=jQuery.easing[this.options.easing||(jQuery.easing.swing?"swing":"linear")](this.state,n,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update();}
return true;}};jQuery.extend(jQuery.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){if(fx.elem.style&&fx.elem.style[fx.prop]!=null)
fx.elem.style[fx.prop]=fx.now+fx.unit;else
fx.elem[fx.prop]=fx.now;}}});if(document.documentElement["getBoundingClientRect"])
jQuery.fn.offset=function(){if(!this[0])return{top:0,left:0};if(this[0]===this[0].ownerDocument.body)return jQuery.offset.bodyOffset(this[0]);var box=this[0].getBoundingClientRect(),doc=this[0].ownerDocument,body=doc.body,docElem=doc.documentElement,clientTop=docElem.clientTop||body.clientTop||0,clientLeft=docElem.clientLeft||body.clientLeft||0,top=box.top+(self.pageYOffset||jQuery.boxModel&&docElem.scrollTop||body.scrollTop)-clientTop,left=box.left+(self.pageXOffset||jQuery.boxModel&&docElem.scrollLeft||body.scrollLeft)-clientLeft;return{top:top,left:left};};else
jQuery.fn.offset=function(){if(!this[0])return{top:0,left:0};if(this[0]===this[0].ownerDocument.body)return jQuery.offset.bodyOffset(this[0]);jQuery.offset.initialized||jQuery.offset.initialize();var elem=this[0],offsetParent=elem.offsetParent,prevOffsetParent=elem,doc=elem.ownerDocument,computedStyle,docElem=doc.documentElement,body=doc.body,defaultView=doc.defaultView,prevComputedStyle=defaultView.getComputedStyle(elem,null),top=elem.offsetTop,left=elem.offsetLeft;while((elem=elem.parentNode)&&elem!==body&&elem!==docElem){computedStyle=defaultView.getComputedStyle(elem,null);top-=elem.scrollTop,left-=elem.scrollLeft;if(elem===offsetParent){top+=elem.offsetTop,left+=elem.offsetLeft;if(jQuery.offset.doesNotAddBorder&&!(jQuery.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(elem.tagName)))
top+=parseInt(computedStyle.borderTopWidth,10)||0,left+=parseInt(computedStyle.borderLeftWidth,10)||0;prevOffsetParent=offsetParent,offsetParent=elem.offsetParent;}
if(jQuery.offset.subtractsBorderForOverflowNotVisible&&computedStyle.overflow!=="visible")
top+=parseInt(computedStyle.borderTopWidth,10)||0,left+=parseInt(computedStyle.borderLeftWidth,10)||0;prevComputedStyle=computedStyle;}
if(prevComputedStyle.position==="relative"||prevComputedStyle.position==="static")
top+=body.offsetTop,left+=body.offsetLeft;if(prevComputedStyle.position==="fixed")
top+=Math.max(docElem.scrollTop,body.scrollTop),left+=Math.max(docElem.scrollLeft,body.scrollLeft);return{top:top,left:left};};jQuery.offset={initialize:function(){if(this.initialized)return;var body=document.body,container=document.createElement('div'),innerDiv,checkDiv,table,td,rules,prop,bodyMarginTop=body.style.marginTop,html='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"cellpadding="0"cellspacing="0"><tr><td></td></tr></table>';rules={position:'absolute',top:0,left:0,margin:0,border:0,width:'1px',height:'1px',visibility:'hidden'};for(prop in rules)container.style[prop]=rules[prop];container.innerHTML=html;body.insertBefore(container,body.firstChild);innerDiv=container.firstChild,checkDiv=innerDiv.firstChild,td=innerDiv.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(checkDiv.offsetTop!==5);this.doesAddBorderForTableAndCells=(td.offsetTop===5);innerDiv.style.overflow='hidden',innerDiv.style.position='relative';this.subtractsBorderForOverflowNotVisible=(checkDiv.offsetTop===-5);body.style.marginTop='1px';this.doesNotIncludeMarginInBodyOffset=(body.offsetTop===0);body.style.marginTop=bodyMarginTop;body.removeChild(container);this.initialized=true;},bodyOffset:function(body){jQuery.offset.initialized||jQuery.offset.initialize();var top=body.offsetTop,left=body.offsetLeft;if(jQuery.offset.doesNotIncludeMarginInBodyOffset)
top+=parseInt(jQuery.curCSS(body,'marginTop',true),10)||0,left+=parseInt(jQuery.curCSS(body,'marginLeft',true),10)||0;return{top:top,left:left};}};jQuery.fn.extend({position:function(){var left=0,top=0,results;if(this[0]){var offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].tagName)?{top:0,left:0}:offsetParent.offset();offset.top-=num(this,'marginTop');offset.left-=num(this,'marginLeft');parentOffset.top+=num(offsetParent,'borderTopWidth');parentOffset.left+=num(offsetParent,'borderLeftWidth');results={top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};}
return results;},offsetParent:function(){var offsetParent=this[0].offsetParent||document.body;while(offsetParent&&(!/^body|html$/i.test(offsetParent.tagName)&&jQuery.css(offsetParent,'position')=='static'))
offsetParent=offsetParent.offsetParent;return jQuery(offsetParent);}});jQuery.each(['Left','Top'],function(i,name){var method='scroll'+name;jQuery.fn[method]=function(val){if(!this[0])return null;return val!==undefined?this.each(function(){this==window||this==document?window.scrollTo(!i?val:jQuery(window).scrollLeft(),i?val:jQuery(window).scrollTop()):this[method]=val;}):this[0]==window||this[0]==document?self[i?'pageYOffset':'pageXOffset']||jQuery.boxModel&&document.documentElement[method]||document.body[method]:this[0][method];};});jQuery.each(["Height","Width"],function(i,name){var tl=i?"Left":"Top",br=i?"Right":"Bottom";jQuery.fn["inner"+name]=function(){return this[name.toLowerCase()]()+
num(this,"padding"+tl)+
num(this,"padding"+br);};jQuery.fn["outer"+name]=function(margin){return this["inner"+name]()+
num(this,"border"+tl+"Width")+
num(this,"border"+br+"Width")+
(margin?num(this,"margin"+tl)+num(this,"margin"+br):0);};var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(document.documentElement["client"+name],document.body["scroll"+name],document.documentElement["scroll"+name],document.body["offset"+name],document.documentElement["offset"+name]):size===undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,typeof size==="string"?size:size+"px");};});})();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;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;};})());Cufon.registerFont({"w":500,"face":{"font-family":"Nimbus Sans D","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 3 3 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"13","bbox":"-71 -861 844 291","underline-thickness":"21","underline-position":"-94","stemh":"16","stemv":"16","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":250},"\u00c4":{"d":"459,-217r-345,0r-89,217r-18,0r273,-667r18,0r267,667r-19,0xm451,-233r-163,-411r-166,411r329,0xm389,-736r-16,0r0,-98r16,0r0,98xm199,-736r-16,0r0,-98r16,0r0,98","w":571},"\u00c1":{"d":"459,-217r-345,0r-89,217r-18,0r273,-667r18,0r267,667r-19,0xm451,-233r-163,-411r-166,411r329,0xm262,-737r-31,0r160,-98r30,0","w":571},"\u00c0":{"d":"459,-217r-345,0r-89,217r-18,0r273,-667r18,0r267,667r-19,0xm451,-233r-163,-411r-166,411r329,0xm310,-737r-159,-98r30,0r160,98r-31,0","w":571},"\u00c2":{"d":"459,-217r-345,0r-89,217r-18,0r273,-667r18,0r267,667r-19,0xm451,-233r-163,-411r-166,411r329,0xm431,-736r-28,0r-119,-86r-115,86r-28,0r133,-99r22,0","w":571},"\u00c3":{"d":"459,-217r-345,0r-89,217r-18,0r273,-667r18,0r267,667r-19,0xm451,-233r-163,-411r-166,411r329,0xm394,-823r17,0v-8,46,-31,71,-63,71v-18,0,-36,-8,-60,-28v-34,-27,-44,-32,-62,-32v-24,0,-40,19,-48,58r-17,0v8,-44,34,-73,66,-73v19,0,34,7,63,31v27,22,43,30,59,30v21,0,35,-19,45,-57","w":571},"\u00c5":{"d":"459,-217r-345,0r-89,217r-18,0r273,-667r18,0r267,667r-19,0xm451,-233r-163,-411r-166,411r329,0xm286,-861v41,0,71,30,71,71v0,41,-30,71,-71,71v-42,0,-72,-30,-72,-71v0,-42,30,-71,72,-71xm285,-845v-32,0,-55,23,-55,55v0,32,23,55,55,55v33,0,56,-23,56,-55v0,-33,-23,-55,-56,-55","w":571},"\u00cb":{"d":"90,0r0,-667r445,0r0,16r-429,0r0,298r403,0r0,16r-403,0r0,321r429,0r0,16r-445,0xm407,-736r-16,0r0,-98r16,0r0,98xm217,-736r-16,0r0,-98r16,0r0,98","w":609},"\u00c9":{"d":"90,0r0,-667r445,0r0,16r-429,0r0,298r403,0r0,16r-403,0r0,321r429,0r0,16r-445,0xm280,-737r-31,0r160,-98r30,0","w":609},"\u00c8":{"d":"90,0r0,-667r445,0r0,16r-429,0r0,298r403,0r0,16r-403,0r0,321r429,0r0,16r-445,0xm328,-737r-159,-98r30,0r160,98r-31,0","w":609},"\u00ca":{"d":"90,0r0,-667r445,0r0,16r-429,0r0,298r403,0r0,16r-403,0r0,321r429,0r0,16r-445,0xm449,-736r-28,0r-119,-86r-115,86r-28,0r133,-99r22,0","w":609},"\u00cf":{"d":"119,-667r0,667r-16,0r0,-667r16,0xm148,-736r-16,0r0,-98r16,0r0,98xm91,-736r-16,0r0,-98r16,0r0,98","w":222},"\u00cd":{"d":"119,-667r0,667r-16,0r0,-667r16,0xm87,-737r-31,0r160,-98r30,0","w":222},"\u00cc":{"d":"119,-667r0,667r-16,0r0,-667r16,0xm135,-737r-159,-98r30,0r160,98r-31,0","w":222},"\u00ce":{"d":"119,-667r0,667r-16,0r0,-667r16,0xm256,-736r-28,0r-119,-86r-115,86r-28,0r133,-99r22,0","w":222},"\u00d1":{"d":"90,0r0,-667r24,0r463,646r0,-646r16,0r0,667r-22,0r-465,-649r0,649r-16,0xm449,-823r17,0v-8,46,-31,71,-63,71v-18,0,-36,-8,-60,-28v-34,-27,-44,-32,-62,-32v-24,0,-40,19,-48,58r-17,0v8,-44,34,-73,66,-73v19,0,34,7,63,31v27,22,43,30,59,30v21,0,35,-19,45,-57","w":683},"\u00d6":{"d":"347,-680v180,0,305,143,305,347v0,206,-125,346,-310,346v-183,0,-309,-140,-309,-345v0,-105,29,-189,87,-252v60,-66,131,-96,227,-96xm338,-664v-171,0,-289,135,-289,331v0,197,119,330,294,330v174,0,293,-133,293,-329v0,-101,-27,-181,-82,-241v-58,-63,-125,-91,-216,-91xm445,-736r-16,0r0,-98r16,0r0,98xm255,-736r-16,0r0,-98r16,0r0,98","w":686},"\u00d3":{"d":"347,-680v180,0,305,143,305,347v0,206,-125,346,-310,346v-183,0,-309,-140,-309,-345v0,-105,29,-189,87,-252v60,-66,131,-96,227,-96xm338,-664v-171,0,-289,135,-289,331v0,197,119,330,294,330v174,0,293,-133,293,-329v0,-101,-27,-181,-82,-241v-58,-63,-125,-91,-216,-91xm318,-737r-31,0r160,-98r30,0","w":686},"\u00d2":{"d":"347,-680v180,0,305,143,305,347v0,206,-125,346,-310,346v-183,0,-309,-140,-309,-345v0,-105,29,-189,87,-252v60,-66,131,-96,227,-96xm338,-664v-171,0,-289,135,-289,331v0,197,119,330,294,330v174,0,293,-133,293,-329v0,-101,-27,-181,-82,-241v-58,-63,-125,-91,-216,-91xm366,-737r-159,-98r30,0r160,98r-31,0","w":686},"\u00d4":{"d":"347,-680v180,0,305,143,305,347v0,206,-125,346,-310,346v-183,0,-309,-140,-309,-345v0,-105,29,-189,87,-252v60,-66,131,-96,227,-96xm338,-664v-171,0,-289,135,-289,331v0,197,119,330,294,330v174,0,293,-133,293,-329v0,-101,-27,-181,-82,-241v-58,-63,-125,-91,-216,-91xm487,-736r-28,0r-119,-86r-115,86r-28,0r133,-99r22,0","w":686},"\u00d5":{"d":"347,-680v180,0,305,143,305,347v0,206,-125,346,-310,346v-183,0,-309,-140,-309,-345v0,-105,29,-189,87,-252v60,-66,131,-96,227,-96xm338,-664v-171,0,-289,135,-289,331v0,197,119,330,294,330v174,0,293,-133,293,-329v0,-101,-27,-181,-82,-241v-58,-63,-125,-91,-216,-91xm450,-823r17,0v-8,46,-31,71,-63,71v-18,0,-36,-8,-60,-28v-34,-27,-44,-32,-62,-32v-24,0,-40,19,-48,58r-17,0v8,-44,34,-73,66,-73v19,0,34,7,63,31v27,22,43,30,59,30v21,0,35,-19,45,-57","w":686},"\u00dc":{"d":"570,-667r16,0r0,398v0,115,-16,169,-66,219v-43,43,-101,63,-182,63v-95,0,-160,-28,-203,-88v-34,-48,-45,-93,-45,-194r0,-398r16,0r0,398v0,105,16,160,59,205v40,41,95,61,173,61v91,0,153,-27,192,-85v29,-43,40,-91,40,-181r0,-398xm441,-736r-16,0r0,-98r16,0r0,98xm251,-736r-16,0r0,-98r16,0r0,98","w":676},"\u00da":{"d":"570,-667r16,0r0,398v0,115,-16,169,-66,219v-43,43,-101,63,-182,63v-95,0,-160,-28,-203,-88v-34,-48,-45,-93,-45,-194r0,-398r16,0r0,398v0,105,16,160,59,205v40,41,95,61,173,61v91,0,153,-27,192,-85v29,-43,40,-91,40,-181r0,-398xm314,-737r-31,0r160,-98r30,0","w":676},"\u00d9":{"d":"570,-667r16,0r0,398v0,115,-16,169,-66,219v-43,43,-101,63,-182,63v-95,0,-160,-28,-203,-88v-34,-48,-45,-93,-45,-194r0,-398r16,0r0,398v0,105,16,160,59,205v40,41,95,61,173,61v91,0,153,-27,192,-85v29,-43,40,-91,40,-181r0,-398xm362,-737r-159,-98r30,0r160,98r-31,0","w":676},"\u00db":{"d":"570,-667r16,0r0,398v0,115,-16,169,-66,219v-43,43,-101,63,-182,63v-95,0,-160,-28,-203,-88v-34,-48,-45,-93,-45,-194r0,-398r16,0r0,398v0,105,16,160,59,205v40,41,95,61,173,61v91,0,153,-27,192,-85v29,-43,40,-91,40,-181r0,-398xm483,-736r-28,0r-119,-86r-115,86r-28,0r133,-99r22,0","w":676},"\u00dd":{"d":"300,0r-16,0r0,-282r-277,-385r20,0r265,371r258,-371r20,0r-270,385r0,282xm264,-737r-31,0r160,-98r30,0","w":576},"\u00e4":{"d":"462,-16r0,16v-40,0,-50,-2,-60,-8v-16,-10,-19,-19,-19,-58r0,-50v-36,84,-102,129,-189,129v-98,0,-164,-53,-164,-133v0,-60,35,-105,99,-127v31,-10,65,-14,167,-20v49,-3,70,-9,80,-22v6,-8,7,-11,7,-35r0,-18v0,-52,-12,-81,-44,-103v-25,-16,-59,-25,-102,-25v-103,0,-150,41,-162,138r-17,0v10,-104,67,-154,176,-154v54,0,100,14,129,40v27,25,36,53,36,108r0,265v0,51,5,57,45,57r18,0xm383,-194r0,-87v-20,24,-38,28,-150,33v-124,6,-187,50,-187,129v0,70,59,116,148,116v63,0,110,-23,149,-72v28,-37,40,-71,40,-119xm340,-549r-16,0r0,-99r16,0r0,99xm150,-549r-16,0r0,-99r16,0r0,99","w":475},"\u00e1":{"d":"462,-16r0,16v-40,0,-50,-2,-60,-8v-16,-10,-19,-19,-19,-58r0,-50v-36,84,-102,129,-189,129v-98,0,-164,-53,-164,-133v0,-60,35,-105,99,-127v31,-10,65,-14,167,-20v49,-3,70,-9,80,-22v6,-8,7,-11,7,-35r0,-18v0,-52,-12,-81,-44,-103v-25,-16,-59,-25,-102,-25v-103,0,-150,41,-162,138r-17,0v10,-104,67,-154,176,-154v54,0,100,14,129,40v27,25,36,53,36,108r0,265v0,51,5,57,45,57r18,0xm383,-194r0,-87v-20,24,-38,28,-150,33v-124,6,-187,50,-187,129v0,70,59,116,148,116v63,0,110,-23,149,-72v28,-37,40,-71,40,-119xm227,-550r-31,0r160,-98r30,0","w":475},"\u00e0":{"d":"462,-16r0,16v-40,0,-50,-2,-60,-8v-16,-10,-19,-19,-19,-58r0,-50v-36,84,-102,129,-189,129v-98,0,-164,-53,-164,-133v0,-60,35,-105,99,-127v31,-10,65,-14,167,-20v49,-3,70,-9,80,-22v6,-8,7,-11,7,-35r0,-18v0,-52,-12,-81,-44,-103v-25,-16,-59,-25,-102,-25v-103,0,-150,41,-162,138r-17,0v10,-104,67,-154,176,-154v54,0,100,14,129,40v27,25,36,53,36,108r0,265v0,51,5,57,45,57r18,0xm383,-194r0,-87v-20,24,-38,28,-150,33v-124,6,-187,50,-187,129v0,70,59,116,148,116v63,0,110,-23,149,-72v28,-37,40,-71,40,-119xm248,-550r-159,-98r30,0r160,98r-31,0","w":475},"\u00e2":{"d":"462,-16r0,16v-40,0,-50,-2,-60,-8v-16,-10,-19,-19,-19,-58r0,-50v-36,84,-102,129,-189,129v-98,0,-164,-53,-164,-133v0,-60,35,-105,99,-127v31,-10,65,-14,167,-20v49,-3,70,-9,80,-22v6,-8,7,-11,7,-35r0,-18v0,-52,-12,-81,-44,-103v-25,-16,-59,-25,-102,-25v-103,0,-150,41,-162,138r-17,0v10,-104,67,-154,176,-154v54,0,100,14,129,40v27,25,36,53,36,108r0,265v0,51,5,57,45,57r18,0xm383,-194r0,-87v-20,24,-38,28,-150,33v-124,6,-187,50,-187,129v0,70,59,116,148,116v63,0,110,-23,149,-72v28,-37,40,-71,40,-119xm382,-550r-28,0r-119,-87r-115,87r-28,0r133,-100r22,0","w":475},"\u00e3":{"d":"462,-16r0,16v-40,0,-50,-2,-60,-8v-16,-10,-19,-19,-19,-58r0,-50v-36,84,-102,129,-189,129v-98,0,-164,-53,-164,-133v0,-60,35,-105,99,-127v31,-10,65,-14,167,-20v49,-3,70,-9,80,-22v6,-8,7,-11,7,-35r0,-18v0,-52,-12,-81,-44,-103v-25,-16,-59,-25,-102,-25v-103,0,-150,41,-162,138r-17,0v10,-104,67,-154,176,-154v54,0,100,14,129,40v27,25,36,53,36,108r0,265v0,51,5,57,45,57r18,0xm383,-194r0,-87v-20,24,-38,28,-150,33v-124,6,-187,50,-187,129v0,70,59,116,148,116v63,0,110,-23,149,-72v28,-37,40,-71,40,-119xm345,-636r17,0v-8,46,-31,71,-63,71v-18,0,-36,-8,-60,-28v-34,-27,-44,-32,-62,-32v-24,0,-40,19,-48,58r-17,0v8,-44,34,-73,66,-73v19,0,34,7,63,31v27,22,43,30,59,30v21,0,35,-19,45,-57","w":475},"\u00e5":{"d":"462,-16r0,16v-40,0,-50,-2,-60,-8v-16,-10,-19,-19,-19,-58r0,-50v-36,84,-102,129,-189,129v-98,0,-164,-53,-164,-133v0,-60,35,-105,99,-127v31,-10,65,-14,167,-20v49,-3,70,-9,80,-22v6,-8,7,-11,7,-35r0,-18v0,-52,-12,-81,-44,-103v-25,-16,-59,-25,-102,-25v-103,0,-150,41,-162,138r-17,0v10,-104,67,-154,176,-154v54,0,100,14,129,40v27,25,36,53,36,108r0,265v0,51,5,57,45,57r18,0xm383,-194r0,-87v-20,24,-38,28,-150,33v-124,6,-187,50,-187,129v0,70,59,116,148,116v63,0,110,-23,149,-72v28,-37,40,-71,40,-119xm238,-675v41,0,71,30,71,71v0,41,-30,71,-71,71v-42,0,-72,-30,-72,-71v0,-42,30,-71,72,-71xm237,-659v-32,0,-55,23,-55,55v0,32,23,55,55,55v33,0,56,-23,56,-55v0,-33,-23,-55,-56,-55","w":475},"\u00eb":{"d":"425,-165r17,0v-21,112,-95,178,-201,178v-125,0,-211,-99,-211,-245v0,-153,85,-254,215,-254v124,0,203,93,203,240r0,18r-400,0v2,68,14,111,43,151v35,48,89,74,151,74v97,0,166,-61,183,-162xm48,-244r383,0v1,-47,-2,-66,-12,-96v-27,-83,-91,-130,-175,-130v-118,0,-192,85,-196,226xm342,-549r-16,0r0,-99r16,0r0,99xm152,-549r-16,0r0,-99r16,0r0,99","w":478},"\u00e9":{"d":"425,-165r17,0v-21,112,-95,178,-201,178v-125,0,-211,-99,-211,-245v0,-153,85,-254,215,-254v124,0,203,93,203,240r0,18r-400,0v2,68,14,111,43,151v35,48,89,74,151,74v97,0,166,-61,183,-162xm48,-244r383,0v1,-47,-2,-66,-12,-96v-27,-83,-91,-130,-175,-130v-118,0,-192,85,-196,226xm228,-550r-31,0r160,-98r30,0","w":478},"\u00e8":{"d":"425,-165r17,0v-21,112,-95,178,-201,178v-125,0,-211,-99,-211,-245v0,-153,85,-254,215,-254v124,0,203,93,203,240r0,18r-400,0v2,68,14,111,43,151v35,48,89,74,151,74v97,0,166,-61,183,-162xm48,-244r383,0v1,-47,-2,-66,-12,-96v-27,-83,-91,-130,-175,-130v-118,0,-192,85,-196,226xm249,-550r-159,-98r30,0r160,98r-31,0","w":478},"\u00ea":{"d":"425,-165r17,0v-21,112,-95,178,-201,178v-125,0,-211,-99,-211,-245v0,-153,85,-254,215,-254v124,0,203,93,203,240r0,18r-400,0v2,68,14,111,43,151v35,48,89,74,151,74v97,0,166,-61,183,-162xm48,-244r383,0v1,-47,-2,-66,-12,-96v-27,-83,-91,-130,-175,-130v-118,0,-192,85,-196,226xm384,-550r-28,0r-119,-87r-115,87r-28,0r133,-100r22,0","w":478},"\u00ef":{"d":"86,-473r0,473r-16,0r0,-473r16,0xm117,-549r-16,0r0,-99r16,0r0,99xm54,-549r-16,0r0,-99r16,0r0,99","w":156},"\u00ed":{"d":"86,-473r0,473r-16,0r0,-473r16,0xm67,-550r-31,0r160,-98r30,0","w":156},"\u00ec":{"d":"85,-473r0,473r-16,0r0,-473r16,0xm88,-550r-159,-98r30,0r160,98r-31,0","w":156},"\u00ee":{"d":"86,-473r0,473r-16,0r0,-473r16,0xm223,-550r-28,0r-119,-87r-115,87r-28,0r133,-100r22,0","w":156},"\u00f1":{"d":"70,-473r16,0r0,122v19,-47,32,-67,56,-89v33,-30,74,-46,122,-46v60,0,112,24,143,67v23,32,32,66,32,123r0,296r-16,0r0,-283v0,-73,-10,-108,-42,-141v-29,-30,-69,-46,-117,-46v-66,0,-117,31,-150,90v-21,36,-28,71,-28,130r0,250r-16,0r0,-473xm357,-636r17,0v-8,46,-31,71,-63,71v-18,0,-36,-8,-60,-28v-34,-27,-44,-32,-62,-32v-24,0,-40,19,-48,58r-17,0v8,-44,34,-73,66,-73v19,0,34,7,63,31v27,22,43,30,59,30v21,0,35,-19,45,-57","w":499},"\u00f6":{"d":"249,-486v128,0,211,101,211,258v0,148,-83,241,-215,241v-129,0,-215,-100,-215,-250v0,-151,86,-249,219,-249xm243,-470v-118,0,-197,94,-197,233v0,141,79,234,199,234v123,0,199,-86,199,-225v0,-151,-76,-242,-201,-242xm348,-549r-16,0r0,-99r16,0r0,99xm158,-549r-16,0r0,-99r16,0r0,99","w":490},"\u00f3":{"d":"249,-486v128,0,211,101,211,258v0,148,-83,241,-215,241v-129,0,-215,-100,-215,-250v0,-151,86,-249,219,-249xm243,-470v-118,0,-197,94,-197,233v0,141,79,234,199,234v123,0,199,-86,199,-225v0,-151,-76,-242,-201,-242xm234,-550r-31,0r160,-98r30,0","w":490},"\u00f2":{"d":"249,-486v128,0,211,101,211,258v0,148,-83,241,-215,241v-129,0,-215,-100,-215,-250v0,-151,86,-249,219,-249xm243,-470v-118,0,-197,94,-197,233v0,141,79,234,199,234v123,0,199,-86,199,-225v0,-151,-76,-242,-201,-242xm255,-550r-159,-98r30,0r160,98r-31,0","w":490},"\u00f4":{"d":"249,-486v128,0,211,101,211,258v0,148,-83,241,-215,241v-129,0,-215,-100,-215,-250v0,-151,86,-249,219,-249xm243,-470v-118,0,-197,94,-197,233v0,141,79,234,199,234v123,0,199,-86,199,-225v0,-151,-76,-242,-201,-242xm390,-550r-28,0r-119,-87r-115,87r-28,0r133,-100r22,0","w":490},"\u00f5":{"d":"249,-486v128,0,211,101,211,258v0,148,-83,241,-215,241v-129,0,-215,-100,-215,-250v0,-151,86,-249,219,-249xm243,-470v-118,0,-197,94,-197,233v0,141,79,234,199,234v123,0,199,-86,199,-225v0,-151,-76,-242,-201,-242xm353,-636r17,0v-8,46,-31,71,-63,71v-18,0,-36,-8,-60,-28v-34,-27,-44,-32,-62,-32v-24,0,-40,19,-48,58r-17,0v8,-44,34,-73,66,-73v19,0,34,7,63,31v27,22,43,30,59,30v21,0,35,-19,45,-57","w":490},"\u00fc":{"d":"421,-473r0,473r-16,0r0,-116v-23,80,-88,129,-170,129v-58,0,-110,-26,-142,-72v-23,-33,-33,-71,-33,-130r0,-284r16,0r0,284v0,62,12,102,42,135v29,33,69,51,115,51v57,0,108,-28,141,-77v23,-36,31,-67,31,-129r0,-264r16,0xm348,-549r-16,0r0,-99r16,0r0,99xm158,-549r-16,0r0,-99r16,0r0,99","w":491},"\u00fa":{"d":"421,-473r0,473r-16,0r0,-116v-23,80,-88,129,-170,129v-58,0,-110,-26,-142,-72v-23,-33,-33,-71,-33,-130r0,-284r16,0r0,284v0,62,12,102,42,135v29,33,69,51,115,51v57,0,108,-28,141,-77v23,-36,31,-67,31,-129r0,-264r16,0xm235,-550r-31,0r160,-98r30,0","w":491},"\u00f9":{"d":"421,-473r0,473r-16,0r0,-116v-23,80,-88,129,-170,129v-58,0,-110,-26,-142,-72v-23,-33,-33,-71,-33,-130r0,-284r16,0r0,284v0,62,12,102,42,135v29,33,69,51,115,51v57,0,108,-28,141,-77v23,-36,31,-67,31,-129r0,-264r16,0xm256,-550r-159,-98r30,0r160,98r-31,0","w":491},"\u00fb":{"d":"421,-473r0,473r-16,0r0,-116v-23,80,-88,129,-170,129v-58,0,-110,-26,-142,-72v-23,-33,-33,-71,-33,-130r0,-284r16,0r0,284v0,62,12,102,42,135v29,33,69,51,115,51v57,0,108,-28,141,-77v23,-36,31,-67,31,-129r0,-264r16,0xm390,-550r-28,0r-119,-87r-115,87r-28,0r133,-100r22,0","w":491},"\u00fd":{"d":"412,-473r-211,543v-29,75,-48,91,-110,91v-8,0,-14,0,-28,-1r0,-16v13,1,20,1,26,1v53,0,69,-13,92,-73r29,-73r-203,-472r19,0r193,453r175,-453r18,0xm199,-550r-31,0r160,-98r30,0","w":418},"\u00ff":{"d":"412,-473r-211,543v-29,75,-48,91,-110,91v-8,0,-14,0,-28,-1r0,-16v13,1,20,1,26,1v53,0,69,-13,92,-73r29,-73r-203,-472r19,0r193,453r175,-453r18,0xm312,-549r-16,0r0,-99r16,0r0,99xm122,-549r-16,0r0,-99r16,0r0,99","w":418},"A":{"d":"459,-217r-345,0r-89,217r-18,0r273,-667r18,0r267,667r-19,0xm451,-233r-163,-411r-166,411r329,0","w":571},"B":{"d":"90,0r0,-667r250,0v137,0,221,63,221,166v0,48,-20,90,-55,120v-24,19,-45,28,-93,37v57,6,88,17,120,44v33,28,52,73,52,121v0,60,-32,116,-85,148v-31,18,-97,31,-160,31r-250,0xm106,-353r248,0v120,0,191,-55,191,-147v0,-95,-76,-151,-205,-151r-234,0r0,298xm106,-16r234,0v82,0,134,-13,170,-42v38,-31,59,-73,59,-121v0,-101,-78,-158,-215,-158r-248,0r0,321","w":618},"C":{"d":"608,-257r16,0v-5,65,-20,105,-55,153v-58,76,-139,117,-232,117v-82,0,-155,-31,-211,-88v-62,-64,-93,-148,-93,-255v0,-208,125,-350,309,-350v98,0,181,42,234,117v22,31,32,56,40,101r-17,0v-28,-127,-123,-202,-256,-202v-177,0,-294,134,-294,336v0,104,27,179,88,242v54,55,121,83,199,83v101,0,189,-53,240,-142v19,-35,27,-63,32,-112","w":658},"D":{"d":"90,0r0,-667r196,0v111,0,183,25,237,82v51,54,82,148,82,250v0,108,-36,206,-98,264v-54,51,-117,71,-222,71r-195,0xm106,-16r174,0v121,0,185,-24,239,-91v45,-57,70,-139,70,-232v0,-111,-36,-202,-100,-255v-50,-41,-109,-57,-210,-57r-173,0r0,635","w":638},"E":{"d":"90,0r0,-667r445,0r0,16r-429,0r0,298r403,0r0,16r-403,0r0,321r429,0r0,16r-445,0","w":609},"F":{"d":"106,-337r0,337r-16,0r0,-667r413,0r0,16r-397,0r0,298r352,0r0,16r-352,0","w":573},"G":{"d":"636,-313r0,313r-16,0r0,-194v-16,56,-32,88,-63,122v-49,53,-128,85,-210,85v-81,0,-163,-32,-219,-86v-62,-60,-95,-146,-95,-250v0,-210,125,-352,308,-352v136,0,243,84,279,220r-15,0v-33,-126,-134,-204,-263,-204v-176,0,-293,134,-293,335v0,102,29,180,90,239v55,53,128,82,209,82v103,0,189,-48,236,-132v24,-43,33,-81,36,-162r-262,0r0,-16r278,0","w":690},"H":{"d":"593,-667r0,667r-16,0r0,-338r-471,0r0,338r-16,0r0,-667r16,0r0,313r471,0r0,-313r16,0","w":683},"I":{"d":"119,-667r0,667r-16,0r0,-667r16,0","w":222},"J":{"d":"392,-667r0,488v0,72,-13,109,-49,144v-33,31,-83,48,-138,48v-79,0,-136,-34,-159,-93v-10,-29,-13,-58,-13,-127r16,0r0,27v0,66,10,103,35,131v27,30,69,46,121,46v66,0,119,-26,148,-72v18,-29,23,-59,23,-132r0,-460r16,0","w":482},"K":{"d":"106,-239r0,239r-16,0r0,-667r16,0r0,408r466,-408r24,0r-322,282r342,385r-20,0r-334,-375","w":642},"L":{"d":"90,0r0,-667r16,0r0,651r395,0r0,16r-411,0","w":528},"M":{"d":"90,0r0,-667r27,0r287,650r289,-650r26,0r0,667r-16,0r0,-644r-289,644r-21,0r-287,-644r0,644r-16,0","w":809},"N":{"d":"90,0r0,-667r24,0r463,646r0,-646r16,0r0,667r-22,0r-465,-649r0,649r-16,0","w":683},"O":{"d":"347,-680v180,0,305,143,305,347v0,206,-125,346,-310,346v-183,0,-309,-140,-309,-345v0,-105,29,-189,87,-252v60,-66,131,-96,227,-96xm338,-664v-171,0,-289,135,-289,331v0,197,119,330,294,330v174,0,293,-133,293,-329v0,-101,-27,-181,-82,-241v-58,-63,-125,-91,-216,-91","w":686},"P":{"d":"90,0r0,-667r269,0v74,0,121,17,156,55v29,32,45,77,45,124v0,59,-25,110,-69,143v-38,27,-76,37,-143,37r-242,0r0,308r-16,0xm106,-324r242,0v72,0,114,-14,151,-49v28,-27,45,-69,45,-115v0,-52,-22,-102,-59,-130v-30,-24,-68,-33,-137,-33r-242,0r0,327","w":580},"Q":{"d":"665,2r-10,15r-112,-78v-56,51,-118,74,-198,74v-185,0,-312,-138,-312,-337v0,-213,125,-356,310,-356v183,0,309,140,309,344v0,108,-29,187,-96,263xm421,-164r121,81v67,-78,94,-151,94,-254v0,-192,-121,-327,-293,-327v-174,0,-294,138,-294,340v0,91,24,164,74,222v55,63,135,99,221,99v73,0,136,-23,184,-68r-116,-79","w":685},"R":{"d":"91,0r0,-667r244,0v89,0,136,11,174,42v40,33,60,78,60,135v0,55,-21,99,-62,130v-26,20,-50,29,-98,37v66,8,98,24,123,61v23,40,25,52,30,198v2,36,3,43,9,64r-17,0v-6,-19,-7,-29,-8,-64v-4,-99,-6,-127,-12,-151v-19,-72,-71,-100,-186,-100r-241,0r0,315r-16,0xm107,-331r246,0v126,0,200,-59,200,-160v0,-60,-28,-109,-77,-136v-32,-18,-71,-24,-154,-24r-215,0r0,320","w":624},"S":{"d":"53,-253r16,0r0,27v0,147,84,223,247,223v139,0,228,-67,228,-174v0,-45,-19,-82,-53,-104v-26,-17,-59,-29,-120,-46r-131,-35v-57,-16,-84,-26,-108,-41v-37,-23,-59,-65,-59,-112v0,-102,85,-165,223,-165v111,0,188,38,223,111v17,34,20,49,20,113r-17,0r0,-16v-1,-125,-80,-192,-227,-192v-124,0,-206,59,-206,150v0,39,18,75,49,95v23,16,44,24,105,41r133,37v80,22,99,30,127,49v36,25,57,68,57,116v0,114,-97,189,-247,189v-169,0,-260,-84,-260,-239r0,-27","w":613},"T":{"d":"284,0r-16,0r0,-651r-241,0r0,-16r501,0r0,16r-244,0r0,651","w":554},"U":{"d":"570,-667r16,0r0,398v0,115,-16,169,-66,219v-43,43,-101,63,-182,63v-95,0,-160,-28,-203,-88v-34,-48,-45,-93,-45,-194r0,-398r16,0r0,398v0,105,16,160,59,205v40,41,95,61,173,61v91,0,153,-27,192,-85v29,-43,40,-91,40,-181r0,-398","w":676},"V":{"d":"533,-667r19,0r-260,667r-23,0r-262,-667r19,0r254,649","w":558},"W":{"d":"827,-667r17,0r-195,667r-24,0r-199,-658r-200,658r-19,0r-200,-667r18,0r192,642r195,-642r29,0r196,651","w":851},"X":{"d":"564,0r-20,0r-248,-329r-248,329r-21,0r259,-343r-244,-324r21,0r233,311r235,-311r21,0r-245,324","w":591},"Y":{"d":"300,0r-16,0r0,-282r-277,-385r20,0r265,371r258,-371r20,0r-270,385r0,282","w":576},"Z":{"d":"548,-16r0,16r-495,0r0,-24r467,-627r-446,0r0,-16r462,0r0,22r-468,629r480,0","w":602},"\u00c6":{"d":"839,-16r0,16r-425,0r0,-219r-304,0r-85,219r-18,0r259,-667r573,0r0,16r-409,0r0,299r365,0r0,16r-365,0r0,320r409,0xm414,-235r0,-416r-137,0r-160,416r297,0","w":892},"\u00d8":{"d":"613,-656r12,12r-57,64v58,69,83,143,83,247v0,111,-28,192,-87,254v-56,59,-136,92,-224,92v-88,0,-155,-29,-217,-93r-67,74r-12,-11r68,-76v-61,-83,-79,-139,-79,-243v0,-105,28,-188,85,-250v56,-60,135,-94,222,-94v88,0,156,28,217,88xm557,-568r-423,475v67,66,121,90,205,90v84,0,160,-31,213,-88v56,-59,83,-137,83,-238v0,-99,-25,-174,-78,-239xm124,-106r422,-474v-57,-57,-124,-84,-207,-84v-80,0,-157,34,-210,92v-53,59,-80,138,-80,235v0,99,20,160,75,231","w":685},"\u00c7":{"d":"608,-257r16,0v-5,65,-20,105,-55,153v-58,76,-139,117,-232,117v-82,0,-155,-31,-211,-88v-62,-64,-93,-148,-93,-255v0,-208,125,-350,309,-350v98,0,181,42,234,117v22,31,32,56,40,101r-17,0v-28,-127,-123,-202,-256,-202v-177,0,-294,134,-294,336v0,104,27,179,88,242v54,55,121,83,199,83v101,0,189,-53,240,-142v19,-35,27,-63,32,-112xm336,61r16,0r0,70v0,64,-7,82,-46,110r0,-24v25,-20,30,-34,30,-86r0,-70","w":658},"\u00d0":{"d":"90,-337r-67,0r0,-16r67,0r0,-314r196,0v110,0,183,25,237,82v51,54,82,148,82,250v0,109,-36,206,-98,265v-54,50,-117,70,-222,70r-195,0r0,-337xm106,-337r0,321r174,0v121,0,185,-24,239,-91v45,-57,70,-138,70,-231v0,-112,-36,-203,-100,-256v-50,-41,-110,-57,-211,-57r-172,0r0,298r320,0r0,16r-320,0","w":638},"\u00de":{"d":"90,0r0,-667r16,0r0,80r253,0v74,0,121,17,156,55v29,32,45,77,45,124v0,59,-25,110,-69,143v-38,27,-76,37,-143,37r-242,0r0,228r-16,0xm106,-244r242,0v72,0,114,-14,151,-49v28,-27,45,-69,45,-115v0,-52,-22,-102,-59,-130v-30,-24,-68,-33,-137,-33r-242,0r0,327","w":580},"a":{"d":"462,-16r0,16v-40,0,-50,-2,-60,-8v-16,-10,-19,-19,-19,-58r0,-50v-36,84,-102,129,-189,129v-98,0,-164,-53,-164,-133v0,-60,35,-105,99,-127v31,-10,65,-14,167,-20v49,-3,70,-9,80,-22v6,-8,7,-11,7,-35r0,-18v0,-52,-12,-81,-44,-103v-25,-16,-59,-25,-102,-25v-103,0,-150,41,-162,138r-17,0v10,-104,67,-154,176,-154v54,0,100,14,129,40v27,25,36,53,36,108r0,265v0,51,5,57,45,57r18,0xm383,-194r0,-87v-20,24,-38,28,-150,33v-124,6,-187,50,-187,129v0,70,59,116,148,116v63,0,110,-23,149,-72v28,-37,40,-71,40,-119","w":475},"b":{"d":"70,0r0,-667r16,0r0,323v15,-43,26,-63,49,-86v36,-36,87,-56,142,-56v131,0,209,96,209,255v0,152,-77,244,-205,244v-63,0,-114,-21,-149,-61v-21,-23,-31,-43,-46,-89r0,137r-16,0xm275,-470v-112,0,-189,93,-189,229v0,147,75,238,195,238v116,0,189,-88,189,-227v0,-149,-74,-240,-195,-240","w":516},"c":{"d":"425,-163r16,0v-9,54,-22,85,-50,116v-36,38,-89,60,-149,60v-126,0,-212,-102,-212,-251v0,-148,87,-248,216,-248v106,0,182,61,188,151r-17,0v-4,-80,-73,-135,-170,-135v-121,0,-201,91,-201,230v0,143,78,237,195,237v102,0,164,-54,184,-160","w":471},"d":{"d":"446,0r-16,0r0,-137v-15,46,-25,66,-46,89v-35,40,-86,61,-149,61v-128,0,-205,-92,-205,-244v0,-159,78,-255,209,-255v55,0,106,20,142,56v23,23,34,43,49,86r0,-323r16,0r0,667xm236,-470v-115,0,-190,94,-190,239v0,140,73,228,189,228v120,0,195,-91,195,-238v0,-138,-76,-229,-194,-229","w":516},"e":{"d":"425,-165r17,0v-21,112,-95,178,-201,178v-125,0,-211,-99,-211,-245v0,-153,85,-254,215,-254v124,0,203,93,203,240r0,18r-400,0v2,68,14,111,43,151v35,48,89,74,151,74v97,0,166,-61,183,-162xm48,-244r383,0v1,-47,-2,-66,-12,-96v-27,-83,-91,-130,-175,-130v-118,0,-192,85,-196,226","w":478},"f":{"d":"132,0r-16,0r0,-457r-76,0r0,-16r76,0r0,-64v0,-65,5,-85,24,-107v16,-17,39,-25,74,-25v5,0,15,0,26,1r0,15v-55,0,-64,2,-80,14v-21,14,-28,38,-28,89r0,77r97,0r0,16r-97,0r0,457","w":267},"g":{"d":"420,-473r16,0r0,429v0,88,-11,126,-50,165v-34,34,-85,52,-151,52v-68,0,-121,-20,-150,-58v-18,-23,-25,-45,-29,-87r17,0v6,86,61,129,164,129v69,0,121,-22,151,-64v23,-31,32,-71,32,-139r0,-115v-14,39,-26,60,-51,83v-36,32,-86,51,-140,51v-122,0,-200,-88,-200,-227v0,-142,79,-232,205,-232v58,0,110,22,147,61v15,17,23,31,39,68r0,-116xm230,-470v-112,0,-185,85,-185,216v0,128,72,211,185,211v53,0,105,-22,139,-59v34,-37,51,-87,51,-151v0,-69,-16,-119,-53,-158v-36,-40,-81,-59,-137,-59","w":506},"h":{"d":"70,-667r16,0r0,316v19,-47,32,-67,56,-89v33,-30,74,-46,122,-46v60,0,112,24,143,67v23,32,32,66,32,123r0,296r-16,0r0,-283v0,-73,-10,-108,-42,-141v-29,-30,-69,-46,-117,-46v-66,0,-117,31,-150,90v-21,36,-28,71,-28,130r0,250r-16,-6r0,-661","w":499},"i":{"d":"86,-473r0,473r-16,0r0,-473r16,0xm86,-571r-16,0r0,-96r16,0r0,96","w":156},"j":{"d":"97,-473r0,547v0,41,-9,62,-32,76v-19,12,-35,14,-85,14r0,-15r17,-1v43,-1,59,-6,72,-21v10,-11,12,-26,12,-70r0,-530r16,0xm97,-571r-16,0r0,-96r16,0r0,96","w":167},"k":{"d":"460,0r-19,0r-228,-287r-127,103r0,184r-16,0r0,-667r16,0r0,462r332,-268r23,0r-216,176","w":460},"l":{"d":"86,0r-16,0r0,-667r16,0r0,667","w":156},"m":{"d":"70,-473r16,0r0,112v14,-41,25,-61,45,-81v28,-29,68,-44,112,-44v48,0,91,19,117,51v14,18,20,33,27,64v16,-42,27,-59,50,-78v28,-24,67,-37,108,-37v49,0,94,19,122,53v24,29,30,52,30,113r0,320r-16,0r0,-320v0,-58,-10,-89,-36,-114v-24,-23,-59,-36,-97,-36v-93,0,-156,66,-156,163r0,307r-16,0r0,-307v0,-67,-8,-97,-35,-125v-22,-24,-58,-38,-97,-38v-96,0,-158,77,-158,196r0,274r-16,0r0,-473","w":757},"n":{"d":"70,-473r16,0r0,122v19,-47,32,-67,56,-89v33,-30,74,-46,122,-46v60,0,112,24,143,67v23,32,32,66,32,123r0,296r-16,0r0,-283v0,-73,-10,-108,-42,-141v-29,-30,-69,-46,-117,-46v-66,0,-117,31,-150,90v-21,36,-28,71,-28,130r0,250r-16,0r0,-473","w":499},"o":{"d":"249,-486v128,0,211,101,211,258v0,148,-83,241,-215,241v-129,0,-215,-100,-215,-250v0,-151,86,-249,219,-249xm243,-470v-118,0,-197,94,-197,233v0,141,79,234,199,234v123,0,199,-86,199,-225v0,-151,-76,-242,-201,-242","w":490},"p":{"d":"70,-473r16,0r0,137v15,-46,25,-66,46,-89v35,-40,86,-61,149,-61v128,0,205,92,205,244v0,159,-79,255,-209,255v-55,0,-106,-20,-142,-56v-23,-23,-34,-43,-49,-86r0,289r-16,0r0,-633xm278,-470v-117,0,-192,93,-192,238v0,137,77,229,191,229v118,0,193,-93,193,-238v0,-143,-72,-229,-192,-229","w":516},"q":{"d":"446,-473r0,633r-16,0r0,-289v-15,43,-26,63,-49,86v-36,36,-87,56,-142,56v-130,0,-209,-96,-209,-255v0,-152,77,-244,205,-244v63,0,114,21,149,61v21,23,31,43,46,89r0,-137r16,0xm233,-470v-114,0,-187,89,-187,228v0,146,75,239,193,239v114,0,191,-92,191,-228v0,-149,-74,-239,-197,-239","w":516},"r":{"d":"86,0r-16,0r0,-473r16,0r0,139v31,-97,90,-140,191,-139r0,14v-64,3,-95,14,-128,45v-43,40,-63,99,-63,181r0,233","w":277},"s":{"d":"47,-162r17,0v0,102,62,159,172,159v99,0,161,-46,161,-120v0,-38,-15,-63,-47,-79v-25,-12,-42,-18,-107,-34r-38,-9v-49,-12,-70,-19,-91,-32v-32,-18,-49,-48,-49,-85v0,-76,63,-124,162,-124v68,0,120,21,148,59v17,25,23,46,23,89r-16,0v-1,-47,-9,-71,-33,-94v-26,-25,-69,-38,-124,-38v-88,0,-144,42,-144,107v0,54,33,80,127,102r39,9v126,30,166,61,166,128v0,83,-70,137,-177,137v-120,0,-187,-62,-189,-175","w":459},"t":{"d":"140,-628r0,155r102,0r0,16r-102,0r0,335v0,83,16,104,79,104r18,0r0,17v-61,0,-70,-3,-89,-22v-20,-20,-24,-37,-24,-99r0,-335r-81,0r0,-16r81,0r0,-155r16,0","w":289},"u":{"d":"421,-473r0,473r-16,0r0,-116v-23,80,-88,129,-170,129v-58,0,-110,-26,-142,-72v-23,-33,-33,-71,-33,-130r0,-284r16,0r0,284v0,62,12,102,42,135v29,33,69,51,115,51v57,0,108,-28,141,-77v23,-36,31,-67,31,-129r0,-264r16,0","w":491},"v":{"d":"395,-473r19,0r-183,473r-23,0r-201,-473r19,0r193,456","w":420},"w":{"d":"663,-473r18,0r-158,473r-23,0r-149,-459r-152,459r-25,0r-154,-473r17,0r149,460r153,-460r25,0r147,454","w":701},"x":{"d":"457,0r-24,0r-196,-237r-197,237r-20,0r205,-249r-185,-224r20,0r177,212r173,-212r23,0r-184,224","w":477},"y":{"d":"412,-473r-211,543v-29,75,-48,91,-110,91v-8,0,-14,0,-28,-1r0,-16v13,1,20,1,26,1v53,0,69,-13,92,-73r29,-73r-203,-472r19,0r193,453r175,-453r18,0","w":418},"z":{"d":"419,-16r0,16r-376,0r0,-23r340,-434r-315,0r0,-16r334,0r0,21r-342,436r359,0","w":453},"\u00e6":{"d":"778,-165r17,0v-21,112,-95,178,-201,178v-70,0,-131,-32,-170,-91v-13,-19,-19,-34,-32,-72v-10,42,-17,60,-36,85v-38,50,-96,78,-162,78v-98,0,-164,-54,-164,-134v0,-60,35,-103,99,-125v30,-10,67,-15,167,-21v48,-3,70,-9,80,-22v6,-7,7,-14,7,-45v0,-61,-11,-88,-44,-111v-24,-16,-59,-25,-102,-25v-103,0,-150,41,-162,138r-17,0v10,-104,67,-154,177,-154v54,0,99,14,128,40v28,25,37,52,37,108v12,-36,20,-53,37,-74v39,-48,96,-74,161,-74v124,0,203,93,203,239r0,19r-401,0v2,68,14,111,43,151v36,48,89,74,152,74v97,0,166,-61,183,-162xm400,-244r384,0v0,-47,-2,-66,-12,-97v-27,-82,-91,-129,-176,-129v-118,0,-192,85,-196,226xm383,-195r0,-86v-19,24,-38,28,-150,33v-124,6,-187,49,-187,128v0,71,59,117,148,117v63,0,110,-23,149,-72v28,-37,40,-72,40,-120","w":831},"\u00f8":{"d":"451,-465r13,13r-46,48v33,53,46,102,46,172v0,151,-82,245,-215,245v-66,0,-117,-23,-159,-72r-47,51r-13,-12r50,-54v-32,-52,-45,-99,-45,-165v0,-148,86,-247,215,-247v64,0,109,19,158,68xm406,-392r-305,320v43,49,86,69,149,69v121,0,198,-87,198,-225v0,-67,-13,-118,-42,-164xm92,-86r303,-320v-43,-44,-87,-64,-147,-64v-118,0,-197,93,-197,231v0,62,14,114,41,153","w":494},"\u00df":{"d":"86,0r-16,0r0,-508v0,-69,13,-104,48,-135v28,-24,67,-37,110,-37v103,0,175,66,175,160v0,73,-42,124,-117,145v51,9,75,18,99,38v36,29,55,79,55,144v0,83,-36,148,-98,176v-29,13,-57,17,-137,17r0,-18v18,1,34,1,42,1v117,0,177,-60,177,-178v0,-85,-31,-134,-98,-156v-27,-9,-58,-13,-121,-14r0,-17v59,1,89,-5,118,-23v41,-26,64,-67,64,-116v0,-85,-65,-143,-158,-143v-53,0,-96,20,-121,57v-18,28,-22,47,-22,111r0,496","w":470},"\u00e7":{"d":"425,-163r16,0v-9,54,-22,85,-50,116v-36,38,-89,60,-149,60v-126,0,-212,-102,-212,-251v0,-148,87,-248,216,-248v106,0,182,61,188,151r-17,0v-4,-80,-73,-135,-170,-135v-121,0,-201,91,-201,230v0,143,78,237,195,237v102,0,164,-54,184,-160xm242,66r16,0r0,66v0,54,-7,70,-45,101r0,-22v25,-22,29,-34,29,-81r0,-64","w":471},"\u00f0":{"d":"342,-682r-83,64v63,71,88,102,120,153v61,95,81,153,81,236v0,149,-83,242,-215,242v-129,0,-215,-100,-215,-250v0,-150,86,-249,216,-249v49,0,90,13,127,41v-25,-43,-75,-108,-126,-163r-85,65r-10,-12r84,-65r-69,-78r12,-9r70,78r84,-65xm243,-470v-118,0,-197,94,-197,233v0,141,79,234,199,234v123,0,199,-86,199,-225v0,-151,-76,-242,-201,-242","w":490},"\u00fe":{"d":"70,-667r16,0r0,331v15,-46,25,-66,46,-89v35,-40,86,-61,149,-61v128,0,205,92,205,244v0,159,-79,255,-209,255v-55,0,-106,-20,-142,-56v-23,-23,-34,-43,-49,-86r0,289r-16,0r0,-827xm278,-470v-117,0,-192,93,-192,238v0,137,77,229,191,229v118,0,193,-93,193,-238v0,-143,-72,-229,-192,-229","w":516},"1":{"d":"225,0r-16,0r0,-621v-30,49,-100,98,-171,120r0,-16v62,-18,130,-65,171,-120r16,0r0,637","w":356},"2":{"d":"467,-16r0,16r-429,0v16,-92,44,-124,215,-240v129,-90,182,-160,182,-239v0,-94,-71,-155,-179,-155v-117,0,-189,73,-189,191r0,16r-16,0v-1,-8,-1,-15,-1,-19v0,-124,81,-204,206,-204v115,0,195,69,195,170v0,61,-26,110,-87,170v-42,39,-56,51,-156,119v-107,75,-137,111,-148,175r407,0","w":504},"3":{"d":"28,-216r19,0v0,44,2,62,10,89v24,76,99,124,193,124v124,0,209,-73,209,-179v0,-69,-38,-121,-105,-141v-27,-9,-55,-12,-129,-14r0,-17v53,0,71,-1,100,-7v72,-13,117,-63,117,-127v0,-88,-72,-146,-181,-146v-78,0,-134,25,-169,77v-23,33,-32,63,-33,119r-18,0v3,-73,17,-111,54,-148v41,-42,97,-64,166,-64v117,0,197,66,197,161v0,79,-53,131,-144,144v53,8,76,16,103,37v38,31,58,74,58,127v0,115,-90,194,-223,194v-143,0,-225,-83,-224,-229","w":517},"4":{"d":"341,0r-16,0r0,-170r-321,0r0,-23r315,-444r22,0r0,451r118,0r0,16r-118,0r0,170xm325,-186r0,-431r-305,431r305,0","w":484},"5":{"d":"459,-637r0,16r-315,0r-61,274v44,-60,101,-88,178,-88v130,0,221,92,221,223v0,125,-94,220,-219,220v-83,0,-158,-39,-194,-101v-20,-35,-28,-68,-27,-117r16,0v0,36,4,58,14,84v28,72,102,118,192,118v116,0,202,-87,202,-204v0,-123,-83,-207,-204,-207v-80,0,-142,34,-179,97r-20,0r67,-315r329,0","w":524},"6":{"d":"467,-488r-16,0v-22,-95,-86,-146,-182,-146v-105,0,-173,62,-198,182v-12,62,-15,100,-15,202v12,-60,28,-90,64,-122v40,-35,93,-54,146,-54v121,0,218,97,218,218v0,124,-96,221,-219,221v-76,0,-146,-39,-185,-102v-28,-46,-40,-103,-40,-195v0,-249,73,-366,229,-366v105,0,173,56,198,162xm263,-410v-111,0,-202,91,-202,204v0,112,91,203,203,203v113,0,204,-91,204,-203v0,-115,-90,-204,-205,-204","w":524},"7":{"d":"149,0r-17,0v7,-232,117,-470,288,-621r-396,0r0,-16r408,0r0,24v-170,154,-275,381,-283,613","w":457},"8":{"d":"322,-348v57,7,83,16,110,37v39,29,62,82,62,139v0,111,-92,185,-231,185v-129,0,-223,-80,-223,-189v0,-62,33,-119,85,-147v25,-14,47,-19,94,-25v-52,-7,-74,-14,-97,-29v-38,-24,-61,-68,-61,-116v0,-97,78,-157,203,-157v128,0,210,62,210,160v0,49,-24,90,-67,116v-23,14,-43,20,-85,26xm263,-340v-63,0,-109,12,-145,37v-39,28,-62,75,-62,125v0,103,87,175,211,175v127,0,211,-67,211,-170v0,-53,-21,-100,-56,-128v-35,-27,-85,-39,-159,-39xm263,-634v-115,0,-186,54,-186,142v0,89,67,135,194,135v120,0,187,-48,187,-133v0,-88,-75,-144,-195,-144","w":534},"9":{"d":"57,-149r15,0v23,95,86,146,182,146v106,0,173,-62,198,-182v13,-62,16,-100,16,-202v-12,60,-28,90,-65,122v-39,35,-92,54,-146,54v-120,0,-217,-97,-217,-218v0,-124,96,-221,219,-221v76,0,146,39,185,102v28,46,40,103,40,195v0,249,-73,366,-229,366v-105,0,-173,-56,-198,-162xm257,-634v-111,0,-201,91,-201,204v0,112,91,203,204,203v112,0,203,-91,203,-203v0,-115,-90,-204,-206,-204","w":524},"0":{"d":"281,-650v67,0,134,37,174,94v41,61,62,143,62,246v0,198,-93,323,-239,323v-146,0,-238,-126,-238,-326v0,-206,94,-337,241,-337xm275,-634v-131,0,-219,128,-219,320v0,192,85,311,222,311v136,0,223,-118,223,-305v0,-203,-85,-326,-226,-326","w":557},"\u00a3":{"d":"508,-81r11,12v-44,52,-99,82,-152,82v-29,0,-52,-5,-100,-24v-43,-16,-64,-21,-92,-21v-38,0,-67,11,-113,43r-14,-18v48,-44,55,-50,70,-72v26,-39,40,-79,40,-117v0,-31,-8,-64,-29,-112r-73,0r0,-16r66,0v-5,-7,-9,-14,-14,-22v-47,-76,-56,-98,-56,-140v0,-98,86,-164,214,-164v135,0,214,73,214,196r0,21r-16,0v-1,-68,-11,-104,-37,-137v-34,-42,-89,-64,-160,-64v-123,0,-199,57,-199,150v0,41,3,48,58,137v4,8,9,15,14,23r150,0r0,16r-143,0v20,44,27,74,27,111v0,71,-31,125,-107,190v56,-36,71,-41,113,-41v28,0,51,5,89,19v60,23,72,26,99,26v46,0,92,-26,140,-78","w":567},"$":{"d":"37,-195r17,0v-4,126,65,187,221,194r0,-321v-89,-19,-105,-24,-133,-40v-47,-27,-71,-68,-71,-121v0,-100,75,-160,204,-165r0,-67r16,0r0,67v146,7,212,66,208,186r-17,0v3,-111,-56,-164,-191,-170r0,296v173,31,239,80,239,177v0,71,-41,126,-113,154v-34,13,-65,18,-126,20r0,68r-16,0r0,-68v-163,-4,-244,-75,-238,-210xm291,-318r0,318v65,-2,103,-10,140,-29v54,-27,83,-74,83,-131v0,-63,-34,-103,-110,-130v-22,-8,-54,-16,-113,-28xm275,-339r0,-293v-115,1,-188,59,-188,149v0,53,29,95,83,118v19,8,34,12,105,26","w":567},"\u00a2":{"d":"470,-256r18,0v-13,105,-86,175,-187,179r0,98r-16,0r0,-98v-68,-5,-109,-23,-147,-67v-37,-45,-59,-114,-59,-189v0,-145,77,-238,206,-248r0,-82r16,0r0,82v102,5,167,62,179,155r-17,0v-12,-84,-77,-140,-162,-138r0,470v94,-5,152,-61,169,-162xm285,-94r0,-470v-57,5,-91,19,-126,53v-41,41,-64,104,-64,178v0,82,28,155,74,196v32,28,63,40,116,43","w":567},"\u00a5":{"d":"278,-262r-179,0r0,-16r179,0r0,-3r-66,-115r-113,0r0,-16r104,0r-148,-255r20,0r145,255r130,0r141,-255r20,0r-144,255r100,0r0,16r-109,0r-64,115r0,3r173,0r0,16r-173,0r0,262r-16,0r0,-262xm229,-396r57,101r55,-101r-112,0","w":567},"\u00b9":{"d":"206,-254r-16,0r0,-360v-19,26,-62,53,-103,65r0,-17v39,-10,79,-37,105,-71r14,0r0,383","w":373},"\u00b2":{"d":"318,-270r0,16r-264,0v7,-56,27,-79,131,-148v76,-52,108,-93,108,-139v0,-53,-41,-88,-105,-88v-69,0,-111,42,-111,111v0,3,0,6,1,12r-16,0v-1,-6,-1,-11,-1,-13v0,-77,49,-126,127,-126v72,0,121,43,121,104v0,58,-31,94,-148,174v-61,42,-80,63,-87,97r244,0","w":373},"\u00b3":{"d":"49,-388r18,0v0,32,0,38,6,55v15,44,57,71,113,71v72,0,122,-42,122,-103v0,-44,-29,-76,-74,-83v-18,-3,-29,-4,-67,-5r0,-17v36,0,45,0,62,-4v42,-7,68,-35,68,-72v0,-50,-42,-82,-105,-82v-51,0,-88,19,-106,55v-9,17,-11,29,-12,60r-17,0v1,-35,4,-48,14,-67v21,-40,66,-64,121,-64v71,0,121,40,121,98v0,41,-25,72,-70,85v51,10,81,47,81,97v0,70,-56,118,-137,118v-87,0,-138,-50,-138,-135r0,-7","w":373},".":{"d":"67,-91r16,0r0,91r-16,0r0,-91","w":149},":":{"d":"67,-91r16,0r0,91r-16,0r0,-91xm67,-473r16,0r0,90r-16,0r0,-90","w":149},"\u00b7":{"d":"60,-291r16,0r0,91r-16,0r0,-91","w":136},",":{"d":"63,-91r16,0r0,83v0,52,-8,77,-39,118r0,-27v17,-23,23,-46,23,-86r0,-88","w":146},";":{"d":"63,-91r16,0r0,83v0,52,-8,77,-39,118r0,-27v17,-23,23,-46,23,-86r0,-88xm64,-473r16,0r0,90r-16,0r0,-90","w":146},"!":{"d":"89,-173r-16,0r0,-494r16,0r0,494xm89,-91r0,91r-16,0r0,-91r16,0","w":162},"\u00a1":{"d":"89,-373r0,493r-16,0r0,-493r16,0xm89,-456r-16,0r0,-91r16,0r0,91","w":162},"?":{"d":"245,-171r-16,0r0,-13v0,-69,13,-93,89,-162v70,-64,93,-102,93,-153v0,-89,-71,-149,-174,-149v-70,0,-125,30,-156,86v-16,29,-22,58,-25,116r-16,0v2,-72,12,-109,42,-146v36,-47,91,-72,156,-72v111,0,189,67,189,163v0,61,-18,91,-102,169v-72,67,-80,84,-80,161xm245,-91r0,91r-16,0r0,-91r16,0","w":467},"\u00bf":{"d":"222,-376r16,0r0,13r0,8v-2,63,-19,91,-89,154v-70,64,-93,102,-93,153v0,88,71,148,174,148v70,0,125,-30,156,-86v16,-28,23,-57,25,-115r16,0v-1,72,-12,108,-41,146v-37,46,-92,71,-157,71v-111,0,-189,-67,-189,-163v0,-60,19,-91,102,-168v72,-67,81,-85,80,-161xm222,-456r0,-91r16,0r0,91r-16,0","w":467},"\u00bb":{"d":"40,-374r91,126r0,17r-91,123r0,-30r76,-102r-76,-103r0,-31xm153,-374r91,126r0,17r-91,123r0,-30r76,-102r-76,-103r0,-31","w":304},"\u00ab":{"d":"264,-374r0,31r-76,103r76,102r0,30r-91,-123r0,-17xm151,-374r0,31r-76,103r76,102r0,30r-91,-123r0,-17","w":304},"\/":{"d":"361,-677r-354,794r-19,0r353,-794r20,0","w":397},"-":{"d":"208,-245r0,16r-208,0r0,-16r208,0","w":208},"\u00ad":{"d":"208,-245r0,16r-208,0r0,-16r208,0","w":208},"(":{"d":"306,117r-20,0v-79,-141,-113,-263,-113,-407v0,-135,29,-246,103,-387r17,0v-78,155,-104,252,-104,389v0,144,36,269,117,405","w":347},")":{"d":"40,-677r20,0v80,141,114,263,114,407v0,136,-29,246,-104,387r-16,0v78,-155,104,-252,104,-389v0,-144,-36,-269,-118,-405","w":347},"[":{"d":"315,-667r0,16r-126,0r0,742r126,0r0,16r-142,0r0,-774r142,0","w":329},"]":{"d":"155,-667r0,774r-142,0r0,-16r126,0r0,-742r-126,0r0,-16r142,0","w":329},"&":{"d":"532,0r-19,0r-88,-112v-51,86,-110,125,-193,125v-108,0,-192,-74,-192,-169v0,-50,26,-99,75,-139v21,-18,44,-34,107,-74r-53,-63v-31,-39,-47,-74,-47,-107v0,-75,57,-128,137,-128v76,0,133,53,133,126v0,45,-21,81,-70,122v-14,11,-19,15,-75,55r175,220v17,-38,24,-74,24,-115r18,0v0,45,-11,91,-31,132xm414,-126r-183,-229v-62,37,-93,59,-118,82v-38,34,-57,74,-57,116v0,86,78,154,176,154v44,0,86,-16,122,-46v22,-19,35,-36,60,-77xm180,-448r56,70v56,-36,72,-48,91,-66v34,-31,49,-61,49,-97v0,-66,-48,-110,-119,-110v-70,0,-119,45,-119,110v0,33,9,53,42,93","w":572},"\u00a7":{"d":"402,-546r-15,0v-8,-94,-41,-119,-157,-119v-99,0,-150,35,-150,103v0,35,15,65,41,85v13,9,24,14,71,29r101,31v87,26,125,65,125,125v0,39,-14,70,-42,95v-16,14,-34,24,-79,46v81,25,116,62,116,124v0,89,-70,147,-178,147v-90,0,-155,-29,-182,-82v-12,-24,-15,-42,-15,-86r17,0v-1,9,-1,18,-1,24v0,80,70,129,183,129v97,0,161,-52,161,-131v0,-34,-14,-63,-40,-81v-22,-14,-37,-21,-92,-36r-95,-27v-80,-23,-121,-68,-121,-132v0,-38,17,-74,47,-99v19,-16,35,-25,74,-39v-30,-9,-44,-16,-59,-27v-30,-23,-47,-56,-47,-94v0,-75,61,-119,166,-119v81,0,132,19,154,57v11,19,15,37,17,77xm278,-156r15,-8v54,-27,63,-32,78,-48v21,-22,32,-48,32,-78v0,-54,-32,-87,-106,-110r-106,-33v-83,24,-126,68,-126,130v0,29,13,61,35,82v19,19,34,26,84,39","w":455},"*":{"d":"183,-530r-72,91r-13,-11r69,-89r-106,-38r5,-15r108,37r0,-112r17,0r0,112r108,-37r5,15r-106,38r69,89r-13,11","w":365},"'":{"d":"87,-667r22,0r-3,264r-16,0","w":196},"\"":{"d":"87,-667r22,0r-3,264r-16,0xm189,-667r23,0r-4,264r-15,0","w":298},"@":{"d":"600,-56r6,19v-71,34,-145,50,-227,50v-100,0,-179,-33,-240,-98v-58,-63,-92,-154,-92,-248v0,-195,141,-346,321,-346v168,0,291,127,291,299v0,124,-64,236,-136,236v-31,0,-53,-30,-53,-72v0,-8,1,-21,2,-33v-36,72,-91,107,-169,107v-84,0,-135,-51,-135,-134v0,-61,21,-126,54,-167v37,-45,84,-67,144,-67v49,0,87,17,112,49v9,13,14,25,21,55r17,-93r16,0r-41,230v-6,33,-6,33,-6,48v0,37,17,61,43,61v58,0,115,-110,115,-221v0,-165,-114,-282,-275,-282v-172,0,-305,145,-305,331v0,88,30,171,83,232v57,66,132,97,232,97v78,0,137,-14,222,-53xm361,-494v-60,0,-110,28,-141,80v-21,35,-36,91,-36,135v0,74,49,121,124,121v107,0,181,-87,181,-212v0,-76,-49,-124,-128,-124","w":705},"#":{"d":"133,-229r-99,0r3,-16r99,0r41,-213r-98,0r3,-16r98,0r38,-193r15,0r-37,193r227,0r37,-193r16,0r-38,193r99,0r-3,16r-99,0r-41,213r99,0r-3,16r-99,0r-45,229r-15,0r44,-229r-227,0r-44,229r-16,0xm193,-458r-41,213r226,0r42,-213r-227,0","w":571},"\u00b0":{"d":"173,-671v79,0,137,59,137,138v0,79,-58,137,-139,137v-80,0,-138,-58,-138,-137v0,-81,58,-138,140,-138xm170,-655v-70,0,-121,51,-121,122v0,71,50,121,122,121v72,0,123,-50,123,-121v0,-73,-50,-122,-124,-122","w":343},"+":{"d":"292,-329r0,176r-16,0r0,-176r-177,0r0,-16r177,0r0,-177r16,0r0,177r176,0r0,16r-176,0","w":567},"\u00d7":{"d":"284,-326r-163,162r-11,-11r163,-162r-163,-163r11,-11r163,163r162,-163r11,11r-162,163r162,162r-11,11","w":567},"\u00f7":{"d":"99,-345r369,0r0,16r-369,0r0,-16xm284,-508v13,0,24,11,24,24v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24xm284,-207v13,0,24,11,24,24v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24","w":567},"=":{"d":"99,-406r369,0r0,16r-369,0r0,-16xm99,-284r369,0r0,16r-369,0r0,-16","w":567},"\u00b6":{"d":"320,80r-16,0r0,-388r-42,0v-77,0,-121,-14,-159,-51v-34,-32,-53,-78,-53,-129v0,-55,23,-107,61,-139v32,-27,76,-40,140,-40r182,0r0,747r-16,0r0,-731r-97,0r0,731","w":520},"\u00a4":{"d":"455,-166r61,61r-11,11r-61,-61v-45,42,-102,62,-173,62v-71,0,-124,-20,-169,-64r-64,63r-11,-11r64,-64v-42,-49,-61,-105,-61,-175v0,-67,18,-123,55,-169r-58,-58r11,-11r58,57v45,-44,105,-68,176,-68v71,0,130,23,175,68r58,-57r11,11r-59,58v38,47,56,105,56,178v0,71,-18,124,-58,169xm270,-577v-134,0,-224,94,-224,233v0,142,90,235,226,235v138,0,225,-87,225,-225v0,-151,-86,-243,-227,-243","w":543},"{":{"d":"290,-667r0,16r-13,0v-56,0,-82,34,-82,108r0,152v0,62,-14,90,-54,111v40,21,54,49,54,111r0,152v0,41,8,69,24,86v13,12,37,22,57,22r14,0r0,16r-12,0v-37,0,-70,-17,-84,-45v-11,-21,-15,-50,-15,-107r0,-128v0,-60,-14,-84,-59,-99r0,-16v45,-15,59,-39,59,-99r0,-128v0,-57,4,-86,15,-107v14,-28,47,-45,84,-45r12,0","w":329},"}":{"d":"40,107r0,-16r13,0v56,0,82,-34,82,-108r0,-152v0,-62,14,-90,54,-111v-40,-21,-54,-49,-54,-111r0,-152v0,-41,-8,-69,-24,-86v-13,-12,-37,-22,-57,-22r-14,0r0,-16r12,0v37,0,70,17,84,45v11,21,15,50,15,107r0,128v0,60,14,84,59,99r0,16v-45,15,-59,39,-59,99r0,128v0,57,-4,86,-15,107v-14,28,-47,45,-84,45r-12,0","w":329},"\u00aa":{"d":"296,-283r0,16v-47,0,-54,-5,-54,-42r0,-14v-27,44,-61,64,-110,64v-61,0,-102,-33,-102,-82v0,-36,22,-64,62,-77v18,-7,39,-9,101,-13v43,-2,49,-6,49,-29r0,-11v0,-51,-26,-73,-85,-73v-61,0,-86,22,-93,82r-17,0v7,-68,40,-98,109,-98v33,0,62,9,79,25v17,15,23,32,23,66r0,156v0,26,3,30,22,30r10,0r6,0xm242,-385r0,-42v-13,10,-24,11,-87,14v-72,4,-109,28,-109,73v0,39,34,65,86,65v63,0,110,-47,110,-110","w":322},"\u00ba":{"d":"166,-560v79,0,130,61,130,155v0,90,-51,146,-133,146v-79,0,-132,-61,-132,-151v0,-91,53,-150,135,-150xm163,-544v-70,0,-116,54,-116,134v0,81,46,135,116,135v73,0,117,-49,117,-129v0,-88,-44,-140,-117,-140","w":327},"\u00b1":{"d":"292,-329r0,176r-16,0r0,-176r-177,0r0,-16r177,0r0,-177r16,0r0,177r176,0r0,16r-176,0xm99,-79r369,0r0,16r-369,0r0,-16","w":567},"\u00bd":{"d":"206,-254r-16,0r0,-360v-19,26,-62,53,-103,65r0,-17v39,-10,79,-37,105,-71r14,0r0,383xm211,0r427,-667r20,0r-427,667r-20,0xm794,-16r0,16r-264,0v9,-58,27,-78,131,-148v76,-52,108,-93,108,-139v0,-53,-41,-88,-105,-88v-69,0,-111,42,-111,111v0,3,0,6,1,12r-16,0v-1,-6,-1,-11,-1,-13v0,-77,49,-126,127,-126v72,0,121,43,121,104v0,58,-31,95,-148,174v-61,43,-80,63,-87,97r244,0","w":849},"\u00bc":{"d":"206,-254r-16,0r0,-360v-19,26,-62,53,-103,65r0,-17v39,-10,79,-37,105,-71r14,0r0,383xm211,0r427,-667r20,0r-427,667r-20,0xm731,0r-16,0r0,-100r-193,0r0,-18r191,-265r18,0r0,267r71,0r0,16r-71,0r0,100xm715,-116r0,-241r-173,241r173,0","w":849},"\u00be":{"d":"49,-388r18,0v0,32,0,38,6,55v15,44,57,71,113,71v72,0,122,-42,122,-103v0,-44,-29,-76,-74,-83v-18,-3,-29,-4,-67,-5r0,-17v36,0,45,0,62,-4v42,-7,68,-35,68,-72v0,-50,-42,-82,-105,-82v-51,0,-88,19,-106,55v-9,17,-11,29,-12,60r-17,0v1,-35,4,-48,14,-67v21,-40,66,-64,121,-64v71,0,121,40,121,98v0,41,-25,72,-70,85v51,10,81,47,81,97v0,70,-56,118,-137,118v-87,0,-138,-50,-138,-135r0,-7xm211,0r428,-667r19,0r-427,667r-20,0xm731,0r-16,0r0,-100r-193,0r0,-18r191,-265r18,0r0,267r71,0r0,16r-71,0r0,100xm715,-116r0,-241r-173,241r173,0","w":849},"%":{"d":"549,-676r-438,703r-22,0r438,-703r22,0xm479,-306v87,0,142,60,142,156v0,99,-54,160,-142,160v-91,0,-144,-59,-144,-158v0,-98,55,-158,144,-158xm476,-290v-80,0,-125,52,-125,144v0,89,46,140,127,140v79,0,127,-55,127,-145v0,-87,-48,-139,-129,-139xm168,-660v86,0,141,62,141,158v0,95,-58,158,-144,158v-89,0,-143,-60,-143,-159v0,-97,56,-157,146,-157xm164,-644v-78,0,-126,54,-126,143v0,89,47,141,126,141v79,0,129,-56,129,-143v0,-89,-47,-141,-129,-141","w":642},"\\":{"d":"34,-677r20,0r353,794r-19,0","w":397},"\u00a8":{"d":"353,-549r-16,0r0,-99r16,0r0,99xm163,-549r-16,0r0,-99r16,0r0,99"},"\u00b4":{"d":"239,-550r-31,0r160,-98r30,0"},"`":{"d":"261,-550r-159,-98r30,0r160,98r-31,0"},"\u00b8":{"d":"256,66r16,0r0,66v0,54,-7,70,-45,101r0,-22v25,-22,29,-34,29,-81r0,-64"},"\u00af":{"d":"395,-609r0,16r-290,0r0,-16r290,0"},"\u00a9":{"d":"396,-679v186,0,340,157,340,346v0,190,-154,345,-344,345v-190,0,-345,-155,-345,-345v0,-193,154,-346,349,-346xm388,-663v-178,0,-325,149,-325,329v0,182,148,330,329,330v181,0,328,-148,328,-329v0,-184,-146,-330,-332,-330xm545,-297r16,0v-3,30,-4,36,-11,53v-26,64,-86,105,-154,105v-102,0,-174,-81,-174,-196v0,-118,71,-199,176,-199v62,0,115,30,143,80v8,16,10,23,15,49r-16,0v-15,-72,-66,-113,-141,-113v-97,0,-161,73,-161,184v0,106,64,179,157,179v62,0,118,-38,140,-96v6,-14,8,-24,10,-46","w":782},"\u00ae":{"d":"396,-679v186,0,340,157,340,346v0,190,-154,345,-344,345v-190,0,-345,-155,-345,-345v0,-193,154,-346,349,-346xm388,-663v-178,0,-325,149,-325,329v0,182,148,330,329,330v181,0,328,-148,328,-329v0,-184,-146,-330,-332,-330xm253,-147r0,-380r140,0v51,0,78,7,100,25v23,19,35,45,35,78v0,47,-26,80,-74,94v58,15,68,37,70,144v1,22,1,23,6,39r-17,0v-4,-14,-4,-17,-5,-39v-3,-83,-6,-99,-25,-116v-15,-13,-42,-20,-82,-20r-132,0r0,175r-16,0xm269,-338r134,0v69,0,109,-32,109,-86v0,-33,-15,-59,-41,-74v-18,-10,-39,-13,-85,-13r-117,0r0,173","w":782},"\u00a0":{"w":250},"<":{"d":"466,-530r0,21r-410,176r410,176r0,20r-433,-186r0,-21"},">":{"d":"34,-137r0,-20r410,-176r-410,-176r0,-21r433,186r0,21"},"\u00ac":{"d":"447,0r0,-249r-414,0r0,-18r433,0r0,267r-19,0"},"^":{"d":"70,-393r-25,0r192,-274r26,0r193,274r-27,0r-180,-259"},"|":{"d":"240,-667r19,0r0,834r-19,0r0,-834"},"\u00a6":{"d":"240,-667r19,0r0,320r-19,0r0,-320xm240,-153r19,0r0,320r-19,0r0,-320"},"_":{"d":"0,83r500,0r0,21r-500,0r0,-21"},"~":{"d":"113,-603r-17,-10v38,-65,75,-93,124,-93v29,0,60,11,119,44v58,32,80,40,107,40v43,0,72,-23,109,-86r16,10v-38,66,-74,94,-124,94v-32,0,-54,-9,-138,-54v-41,-22,-65,-30,-91,-30v-39,0,-71,26,-105,85","w":667}}});Cufon.registerFont({"w":196,"face":{"font-family":"Nimbus Sans Novus T","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-13 -323 382 642","underline-thickness":"15.48","underline-position":"-34.56","stemh":"18","stemv":"21","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":90},"\u00c4":{"d":"126,-241r95,241r-25,0r-29,-76r-110,0r-29,76r-25,0r97,-241r26,0xm160,-94r-34,-89v-8,-20,-10,-28,-13,-36v-3,8,-8,20,-14,35r-35,90r96,0xm160,-299r0,34r-22,0r0,-34r22,0xm87,-299r0,34r-22,0r0,-34r22,0","w":224},"\u00c1":{"d":"126,-241r95,241r-25,0r-29,-76r-110,0r-29,76r-25,0r97,-241r26,0xm160,-94r-34,-89v-8,-20,-10,-28,-13,-36v-3,8,-8,20,-14,35r-35,90r96,0xm161,-305r-47,45r-18,0r38,-45r27,0","w":224},"\u00c0":{"d":"126,-241r95,241r-25,0r-29,-76r-110,0r-29,76r-25,0r97,-241r26,0xm160,-94r-34,-89v-8,-20,-10,-28,-13,-36v-3,8,-8,20,-14,35r-35,90r96,0xm64,-305r28,0r37,45r-17,0","w":224},"\u00c2":{"d":"126,-241r95,241r-25,0r-29,-76r-110,0r-29,76r-25,0r97,-241r26,0xm160,-94r-34,-89v-8,-20,-10,-28,-13,-36v-3,8,-8,20,-14,35r-35,90r96,0xm165,-260r-21,0r-32,-33r-33,33r-19,0r41,-45r22,0","w":224},"\u00c3":{"d":"126,-241r95,241r-25,0r-29,-76r-110,0r-29,76r-25,0r97,-241r26,0xm160,-94r-34,-89v-8,-20,-10,-28,-13,-36v-3,8,-8,20,-14,35r-35,90r96,0xm155,-299r13,0v-4,21,-14,32,-29,32v-9,0,-13,-1,-36,-12v-4,-2,-9,-3,-13,-3v-8,0,-13,6,-16,17r-12,0v4,-21,14,-33,30,-33v6,0,14,3,23,7v17,8,18,8,24,8v8,0,13,-5,16,-16","w":224},"\u00c5":{"d":"126,-241r95,241r-25,0r-29,-76r-110,0r-29,76r-25,0r97,-241r26,0xm160,-94r-34,-89v-8,-20,-10,-28,-13,-36v-3,8,-8,20,-14,35r-35,90r96,0xm113,-323v19,0,34,16,34,35v0,19,-16,35,-35,35v-19,0,-35,-15,-35,-35v0,-19,17,-35,36,-35xm112,-309v-11,0,-21,9,-21,21v0,12,10,21,21,21v12,0,21,-9,21,-21v0,-12,-9,-21,-21,-21","w":224},"\u00cb":{"d":"196,-240r0,20r-144,0r0,86r134,0r0,20r-134,0r0,94r145,0r0,20r-168,0r0,-240r167,0xm160,-299r0,34r-22,0r0,-34r22,0xm87,-299r0,34r-22,0r0,-34r22,0","w":210},"\u00c9":{"d":"196,-240r0,20r-144,0r0,86r134,0r0,20r-134,0r0,94r145,0r0,20r-168,0r0,-240r167,0xm157,-305r-47,45r-18,0r38,-45r27,0","w":210},"\u00c8":{"d":"196,-240r0,20r-144,0r0,86r134,0r0,20r-134,0r0,94r145,0r0,20r-168,0r0,-240r167,0xm68,-305r28,0r37,45r-18,0","w":210},"\u00ca":{"d":"196,-240r0,20r-144,0r0,86r134,0r0,20r-134,0r0,94r145,0r0,20r-168,0r0,-240r167,0xm166,-260r-22,0r-32,-33r-32,33r-20,0r42,-45r22,0","w":210},"\u00cf":{"d":"51,-240r0,240r-22,0r0,-240r22,0xm73,-299r0,34r-22,0r0,-34r22,0xm30,-299r0,34r-23,0r0,-34r23,0","w":80},"\u00cd":{"d":"51,-240r0,240r-22,0r0,-240r22,0xm82,-305r-41,45r-17,0r32,-45r26,0","w":80},"\u00cc":{"d":"52,-240r0,240r-23,0r0,-240r23,0xm-2,-305r26,0r32,45r-16,0","w":80},"\u00ce":{"d":"51,-240r0,240r-22,0r0,-240r22,0xm85,-260r-21,0r-24,-33r-26,33r-19,0r34,-45r22,0","w":80},"\u00d1":{"d":"218,-240r0,240r-25,0r-112,-161v-23,-35,-25,-39,-31,-52v1,9,1,15,1,24r0,34r0,155r-22,0r0,-240r26,0r111,163v12,17,24,36,32,50v-1,-17,-2,-47,-2,-63r0,-150r22,0xm167,-299r13,0v-4,21,-14,32,-29,32v-9,0,-12,-1,-35,-12v-4,-2,-9,-3,-13,-3v-8,0,-14,6,-17,17r-12,0v4,-21,14,-33,30,-33v6,0,14,3,23,7v17,8,18,8,24,8v8,0,13,-5,16,-16","w":246},"\u00d6":{"d":"131,-246v66,0,112,52,112,126v0,75,-46,125,-114,125v-67,0,-112,-50,-112,-125v0,-76,45,-126,114,-126xm129,-226v-25,0,-48,10,-65,29v-17,19,-25,44,-25,76v0,64,37,107,91,107v54,0,90,-42,90,-105v0,-64,-36,-107,-91,-107xm177,-299r0,34r-22,0r0,-34r22,0xm105,-299r0,34r-23,0r0,-34r23,0","w":259},"\u00d3":{"d":"131,-246v66,0,112,52,112,126v0,75,-46,125,-114,125v-67,0,-112,-50,-112,-125v0,-76,45,-126,114,-126xm129,-226v-25,0,-48,10,-65,29v-17,19,-25,44,-25,76v0,64,37,107,91,107v54,0,90,-42,90,-105v0,-64,-36,-107,-91,-107xm174,-305r-47,45r-18,0r38,-45r27,0","w":259},"\u00d2":{"d":"131,-246v66,0,112,52,112,126v0,75,-46,125,-114,125v-67,0,-112,-50,-112,-125v0,-76,45,-126,114,-126xm129,-226v-25,0,-48,10,-65,29v-17,19,-25,44,-25,76v0,64,37,107,91,107v54,0,90,-42,90,-105v0,-64,-36,-107,-91,-107xm85,-305r28,0r37,45r-18,0","w":259},"\u00d4":{"d":"131,-246v66,0,112,52,112,126v0,75,-46,125,-114,125v-67,0,-112,-50,-112,-125v0,-76,45,-126,114,-126xm129,-226v-25,0,-48,10,-65,29v-17,19,-25,44,-25,76v0,64,37,107,91,107v54,0,90,-42,90,-105v0,-64,-36,-107,-91,-107xm182,-260r-21,0r-32,-33r-33,33r-19,0r41,-45r22,0","w":259},"\u00d5":{"d":"131,-246v66,0,112,52,112,126v0,75,-46,125,-114,125v-67,0,-112,-50,-112,-125v0,-76,45,-126,114,-126xm129,-226v-25,0,-48,10,-65,29v-17,19,-25,44,-25,76v0,64,37,107,91,107v54,0,90,-42,90,-105v0,-64,-36,-107,-91,-107xm173,-299r13,0v-4,21,-14,32,-29,32v-9,0,-12,-1,-35,-12v-4,-2,-9,-3,-13,-3v-8,0,-13,6,-16,17r-13,0v4,-21,15,-33,31,-33v6,0,13,3,22,7v17,8,18,8,24,8v8,0,13,-5,16,-16","w":259},"\u00dc":{"d":"212,-240r0,144v0,35,-3,50,-16,68v-16,22,-41,33,-76,33v-40,0,-68,-13,-83,-40v-9,-15,-11,-32,-11,-62r0,-143r22,0r0,144v0,28,3,42,11,55v12,18,33,27,62,27v28,0,47,-9,58,-26v8,-13,11,-28,11,-56r0,-144r22,0xm167,-299r0,34r-23,0r0,-34r23,0xm94,-299r0,34r-23,0r0,-34r23,0","w":237},"\u00da":{"d":"212,-240r0,144v0,35,-3,50,-16,68v-16,22,-41,33,-76,33v-40,0,-68,-13,-83,-40v-9,-15,-11,-32,-11,-62r0,-143r22,0r0,144v0,28,3,42,11,55v12,18,33,27,62,27v28,0,47,-9,58,-26v8,-13,11,-28,11,-56r0,-144r22,0xm162,-305r-47,45r-18,0r38,-45r27,0","w":237},"\u00d9":{"d":"212,-240r0,144v0,35,-3,50,-16,68v-16,22,-41,33,-76,33v-40,0,-68,-13,-83,-40v-9,-15,-11,-32,-11,-62r0,-143r22,0r0,144v0,28,3,42,11,55v12,18,33,27,62,27v28,0,47,-9,58,-26v8,-13,11,-28,11,-56r0,-144r22,0xm74,-305r28,0r37,45r-18,0","w":237},"\u00db":{"d":"212,-240r0,144v0,35,-3,50,-16,68v-16,22,-41,33,-76,33v-40,0,-68,-13,-83,-40v-9,-15,-11,-32,-11,-62r0,-143r22,0r0,144v0,28,3,42,11,55v12,18,33,27,62,27v28,0,47,-9,58,-26v8,-13,11,-28,11,-56r0,-144r22,0xm172,-260r-22,0r-32,-33r-32,33r-19,0r41,-45r22,0","w":237},"\u00dd":{"d":"211,-240r-95,141r0,99r-23,0r0,-99r-95,-141r28,0r67,100v4,6,8,16,12,22v4,-7,10,-17,13,-21r67,-101r26,0xm149,-305r-47,45r-18,0r37,-45r28,0","w":208},"\u00e4":{"d":"173,-18r0,17v-5,2,-11,2,-17,2v-17,0,-22,-8,-22,-31v-15,24,-36,35,-66,35v-35,0,-56,-19,-56,-49v0,-23,12,-39,34,-47v12,-4,14,-5,59,-10v21,-2,28,-7,28,-22v0,-26,-15,-38,-46,-38v-30,0,-44,13,-47,41r-20,0v2,-37,27,-58,70,-58v32,0,55,12,61,31v2,7,2,13,2,29r0,77v0,22,2,25,12,25v3,0,4,-1,8,-2xm133,-66r0,-29v-7,6,-12,8,-48,13v-37,5,-52,15,-52,36v0,21,16,34,40,34v35,0,60,-23,60,-54xm131,-240r0,34r-21,0r0,-34r21,0xm71,-240r0,34r-22,0r0,-34r22,0","w":179},"\u00e1":{"d":"173,-18r0,17v-5,2,-11,2,-17,2v-17,0,-22,-8,-22,-31v-15,24,-36,35,-66,35v-35,0,-56,-19,-56,-49v0,-23,12,-39,34,-47v12,-4,14,-5,59,-10v21,-2,28,-7,28,-22v0,-26,-15,-38,-46,-38v-30,0,-44,13,-47,41r-20,0v2,-37,27,-58,70,-58v32,0,55,12,61,31v2,7,2,13,2,29r0,77v0,22,2,25,12,25v3,0,4,-1,8,-2xm133,-66r0,-29v-7,6,-12,8,-48,13v-37,5,-52,15,-52,36v0,21,16,34,40,34v35,0,60,-23,60,-54xm130,-247r-42,48r-17,0r34,-48r25,0","w":179},"\u00e0":{"d":"173,-18r0,17v-5,2,-11,2,-17,2v-17,0,-22,-8,-22,-31v-15,24,-36,35,-66,35v-35,0,-56,-19,-56,-49v0,-23,12,-39,34,-47v12,-4,14,-5,59,-10v21,-2,28,-7,28,-22v0,-26,-15,-38,-46,-38v-30,0,-44,13,-47,41r-20,0v2,-37,27,-58,70,-58v32,0,55,12,61,31v2,7,2,13,2,29r0,77v0,22,2,25,12,25v3,0,4,-1,8,-2xm133,-66r0,-29v-7,6,-12,8,-48,13v-37,5,-52,15,-52,36v0,21,16,34,40,34v35,0,60,-23,60,-54xm50,-247r26,0r33,48r-17,0","w":179},"\u00e2":{"d":"173,-18r0,17v-5,2,-11,2,-17,2v-17,0,-22,-8,-22,-31v-15,24,-36,35,-66,35v-35,0,-56,-19,-56,-49v0,-23,12,-39,34,-47v12,-4,14,-5,59,-10v21,-2,28,-7,28,-22v0,-26,-15,-38,-46,-38v-30,0,-44,13,-47,41r-20,0v2,-37,27,-58,70,-58v32,0,55,12,61,31v2,7,2,13,2,29r0,77v0,22,2,25,12,25v3,0,4,-1,8,-2xm133,-66r0,-29v-7,6,-12,8,-48,13v-37,5,-52,15,-52,36v0,21,16,34,40,34v35,0,60,-23,60,-54xm136,-199r-20,0r-27,-36r-27,36r-18,0r35,-48r21,0","w":179},"\u00e3":{"d":"173,-18r0,17v-5,2,-11,2,-17,2v-17,0,-22,-8,-22,-31v-15,24,-36,35,-66,35v-35,0,-56,-19,-56,-49v0,-23,12,-39,34,-47v12,-4,14,-5,59,-10v21,-2,28,-7,28,-22v0,-26,-15,-38,-46,-38v-30,0,-44,13,-47,41r-20,0v2,-37,27,-58,70,-58v32,0,55,12,61,31v2,7,2,13,2,29r0,77v0,22,2,25,12,25v3,0,4,-1,8,-2xm133,-66r0,-29v-7,6,-12,8,-48,13v-37,5,-52,15,-52,36v0,21,16,34,40,34v35,0,60,-23,60,-54xm125,-240r13,0v-4,22,-13,32,-26,32v-8,0,-11,-1,-32,-12v-4,-2,-8,-3,-12,-3v-7,0,-11,5,-14,17r-12,0v3,-21,13,-33,28,-33v6,0,12,2,20,6v15,9,17,9,22,9v6,0,10,-5,13,-16","w":179},"\u00e5":{"d":"173,-18r0,17v-5,2,-11,2,-17,2v-17,0,-22,-8,-22,-31v-15,24,-36,35,-66,35v-35,0,-56,-19,-56,-49v0,-23,12,-39,34,-47v12,-4,14,-5,59,-10v21,-2,28,-7,28,-22v0,-26,-15,-38,-46,-38v-30,0,-44,13,-47,41r-20,0v2,-37,27,-58,70,-58v32,0,55,12,61,31v2,7,2,13,2,29r0,77v0,22,2,25,12,25v3,0,4,-1,8,-2xm133,-66r0,-29v-7,6,-12,8,-48,13v-37,5,-52,15,-52,36v0,21,16,34,40,34v35,0,60,-23,60,-54xm91,-259v18,0,33,15,33,33v0,18,-16,34,-34,34v-19,0,-33,-15,-33,-34v0,-18,15,-33,34,-33xm90,-245v-11,0,-19,9,-19,19v0,11,8,20,19,20v11,0,20,-9,20,-20v0,-11,-9,-19,-20,-19","w":179},"\u00eb":{"d":"148,-57r20,0v-8,40,-34,62,-74,62v-48,0,-79,-35,-79,-90v0,-54,33,-93,79,-93v30,0,56,17,68,45v6,14,8,30,8,52r-134,0v1,44,23,68,59,68v28,0,46,-15,53,-44xm36,-99r113,0v-2,-38,-24,-62,-56,-62v-32,0,-52,22,-57,62xm135,-240r0,34r-21,0r0,-34r21,0xm75,-240r0,34r-22,0r0,-34r22,0","w":183},"\u00e9":{"d":"148,-57r20,0v-8,40,-34,62,-74,62v-48,0,-79,-35,-79,-90v0,-54,33,-93,79,-93v30,0,56,17,68,45v6,14,8,30,8,52r-134,0v1,44,23,68,59,68v28,0,46,-15,53,-44xm36,-99r113,0v-2,-38,-24,-62,-56,-62v-32,0,-52,22,-57,62xm136,-247r-43,48r-17,0r34,-48r26,0","w":183},"\u00e8":{"d":"148,-57r20,0v-8,40,-34,62,-74,62v-48,0,-79,-35,-79,-90v0,-54,33,-93,79,-93v30,0,56,17,68,45v6,14,8,30,8,52r-134,0v1,44,23,68,59,68v28,0,46,-15,53,-44xm36,-99r113,0v-2,-38,-24,-62,-56,-62v-32,0,-52,22,-57,62xm53,-247r25,0r34,48r-17,0","w":183},"\u00ea":{"d":"148,-57r20,0v-8,40,-34,62,-74,62v-48,0,-79,-35,-79,-90v0,-54,33,-93,79,-93v30,0,56,17,68,45v6,14,8,30,8,52r-134,0v1,44,23,68,59,68v28,0,46,-15,53,-44xm36,-99r113,0v-2,-38,-24,-62,-56,-62v-32,0,-52,22,-57,62xm142,-199r-21,0r-26,-36r-27,36r-19,0r36,-48r21,0","w":183},"\u00ef":{"d":"48,-173r0,173r-22,0r0,-173r22,0xm68,-240r0,34r-21,0r0,-34r21,0xm27,-240r0,34r-22,0r0,-34r22,0","w":73},"\u00ed":{"d":"48,-173r0,173r-22,0r0,-173r22,0xm75,-247r-35,48r-17,0r27,-48r25,0","w":73},"\u00ec":{"d":"48,-173r0,173r-22,0r0,-173r22,0xm-1,-247r24,0r28,48r-17,0","w":73},"\u00ee":{"d":"48,-173r0,173r-21,0r0,-173r21,0xm76,-199r-20,0r-19,-35r-20,35r-19,0r29,-48r21,0","w":73},"\u00f1":{"d":"46,-173r0,32v6,-10,10,-14,15,-19v12,-12,28,-18,47,-18v22,0,41,9,51,24v7,10,9,20,9,43r0,111r-21,0r0,-105v0,-18,-1,-25,-4,-33v-5,-13,-21,-22,-40,-22v-21,0,-38,10,-47,27v-6,12,-8,23,-8,46r0,87r-21,0r0,-173r19,0xm130,-240r13,0v-4,22,-14,32,-27,32v-8,0,-11,-1,-32,-12v-4,-2,-7,-3,-11,-3v-7,0,-11,5,-14,17r-12,0v3,-21,13,-33,28,-33v6,0,12,2,20,6v15,9,16,9,21,9v6,0,11,-5,14,-16","w":192},"\u00f6":{"d":"98,-178v49,0,81,36,81,92v0,56,-32,91,-82,91v-50,0,-82,-35,-82,-91v0,-56,32,-92,83,-92xm96,-161v-36,0,-60,30,-60,74v0,46,24,74,62,74v37,0,60,-28,60,-73v0,-46,-24,-75,-62,-75xm138,-240r0,34r-21,0r0,-34r21,0xm77,-240r0,34r-21,0r0,-34r21,0","w":193},"\u00f3":{"d":"98,-178v49,0,81,36,81,92v0,56,-32,91,-82,91v-50,0,-82,-35,-82,-91v0,-56,32,-92,83,-92xm96,-161v-36,0,-60,30,-60,74v0,46,24,74,62,74v37,0,60,-28,60,-73v0,-46,-24,-75,-62,-75xm139,-247r-43,48r-17,0r34,-48r26,0","w":193},"\u00f2":{"d":"98,-178v49,0,81,36,81,92v0,56,-32,91,-82,91v-50,0,-82,-35,-82,-91v0,-56,32,-92,83,-92xm96,-161v-36,0,-60,30,-60,74v0,46,24,74,62,74v37,0,60,-28,60,-73v0,-46,-24,-75,-62,-75xm55,-247r26,0r33,48r-16,0","w":193},"\u00f4":{"d":"98,-178v49,0,81,36,81,92v0,56,-32,91,-82,91v-50,0,-82,-35,-82,-91v0,-56,32,-92,83,-92xm96,-161v-36,0,-60,30,-60,74v0,46,24,74,62,74v37,0,60,-28,60,-73v0,-46,-24,-75,-62,-75xm143,-199r-21,0r-26,-36r-27,36r-19,0r36,-48r21,0","w":193},"\u00f5":{"d":"98,-178v49,0,81,36,81,92v0,56,-32,91,-82,91v-50,0,-82,-35,-82,-91v0,-56,32,-92,83,-92xm96,-161v-36,0,-60,30,-60,74v0,46,24,74,62,74v37,0,60,-28,60,-73v0,-46,-24,-75,-62,-75xm134,-240r13,0v-4,22,-13,32,-26,32v-8,0,-11,-1,-32,-12v-4,-2,-7,-3,-11,-3v-7,0,-11,5,-14,17r-13,0v3,-21,13,-33,28,-33v6,0,12,2,20,6v15,9,17,9,22,9v6,0,10,-5,13,-16","w":193},"\u00fc":{"d":"166,-173r0,173r-20,0r0,-32v-14,25,-34,37,-61,37v-20,0,-39,-9,-49,-22v-8,-10,-11,-24,-11,-45r0,-111r21,0r0,102v0,18,2,27,5,35v5,14,21,23,39,23v19,0,36,-10,45,-26v7,-12,10,-24,10,-45r0,-89r21,0xm137,-240r0,34r-21,0r0,-34r21,0xm76,-240r0,34r-21,0r0,-34r21,0","w":192},"\u00fa":{"d":"166,-173r0,173r-20,0r0,-32v-14,25,-34,37,-61,37v-20,0,-39,-9,-49,-22v-8,-10,-11,-24,-11,-45r0,-111r21,0r0,102v0,18,2,27,5,35v5,14,21,23,39,23v19,0,36,-10,45,-26v7,-12,10,-24,10,-45r0,-89r21,0xm135,-247r-42,48r-17,0r34,-48r25,0","w":192},"\u00f9":{"d":"166,-173r0,173r-20,0r0,-32v-14,25,-34,37,-61,37v-20,0,-39,-9,-49,-22v-8,-10,-11,-24,-11,-45r0,-111r21,0r0,102v0,18,2,27,5,35v5,14,21,23,39,23v19,0,36,-10,45,-26v7,-12,10,-24,10,-45r0,-89r21,0xm53,-247r26,0r34,48r-17,0","w":192},"\u00fb":{"d":"166,-173r0,173r-20,0r0,-32v-14,25,-34,37,-61,37v-20,0,-39,-9,-49,-22v-8,-10,-11,-24,-11,-45r0,-111r21,0r0,102v0,18,2,27,5,35v5,14,21,23,39,23v19,0,36,-10,45,-26v7,-12,10,-24,10,-45r0,-89r21,0xm142,-199r-21,0r-26,-36r-27,36r-19,0r36,-48r21,0","w":192},"\u00fd":{"d":"157,-173r-68,180v-10,26,-15,35,-20,43v-7,11,-18,16,-32,16v-4,0,-9,0,-14,-1r-4,-1r0,-18v8,2,10,2,15,2v13,0,22,-8,28,-25v2,-4,4,-10,6,-16v2,-3,3,-6,3,-7r0,-1r-70,-172r23,0r47,119v2,6,4,9,11,31v5,-17,8,-24,11,-33r42,-117r22,0xm119,-247r-42,48r-17,0r34,-48r25,0","w":157},"\u00ff":{"d":"157,-173r-68,180v-10,26,-15,35,-20,43v-7,11,-18,16,-32,16v-4,0,-9,0,-14,-1r-4,-1r0,-18v8,2,10,2,15,2v13,0,22,-8,28,-25v2,-4,4,-10,6,-16v2,-3,3,-6,3,-7r0,-1r-70,-172r23,0r47,119v2,6,4,9,11,31v5,-17,8,-24,11,-33r42,-117r22,0xm120,-240r0,34r-21,0r0,-34r21,0xm59,-240r0,34r-21,0r0,-34r21,0","w":157},"A":{"d":"126,-241r95,241r-25,0r-29,-76r-110,0r-29,76r-25,0r97,-241r26,0xm160,-94r-34,-89v-8,-20,-10,-28,-13,-36v-3,8,-8,20,-14,35r-35,90r96,0","w":224},"B":{"d":"29,-240r97,0v25,0,38,2,51,9v19,10,30,29,30,51v0,26,-15,47,-41,53v12,3,17,5,24,9v17,10,27,28,27,49v0,27,-15,49,-39,61v-12,5,-26,8,-46,8r-103,0r0,-240xm52,-220r0,86r64,0v21,0,33,-1,42,-4v16,-6,27,-21,27,-39v0,-18,-9,-31,-25,-38v-9,-4,-19,-5,-38,-5r-70,0xm52,-115r0,95r71,0v26,0,41,-3,51,-10v13,-9,20,-21,20,-38v0,-32,-22,-47,-72,-47r-70,0","w":231},"C":{"d":"207,-92r23,0v-5,59,-46,97,-104,97v-66,0,-109,-49,-109,-125v0,-75,45,-126,112,-126v32,0,58,11,77,32v12,14,19,29,21,46r-23,0v-8,-36,-37,-58,-76,-58v-53,0,-89,43,-89,106v0,64,35,106,88,106v45,0,74,-29,80,-78","w":242},"D":{"d":"29,-240r84,0v35,0,57,7,76,24v22,21,34,52,34,91v0,42,-12,75,-34,98v-19,19,-40,27,-75,27r-85,0r0,-240xm52,-220r0,200r57,0v34,0,51,-6,66,-22v17,-19,26,-44,26,-81v0,-34,-9,-59,-27,-76v-15,-15,-33,-21,-61,-21r-61,0","w":239},"E":{"d":"196,-240r0,20r-144,0r0,86r134,0r0,20r-134,0r0,94r145,0r0,20r-168,0r0,-240r167,0","w":210},"F":{"d":"183,-240r0,20r-131,0r0,86r116,0r0,20r-116,0r0,114r-23,0r0,-240r154,0","w":189},"G":{"d":"233,-122r0,122r-15,0r-5,-45v-14,32,-45,50,-84,50v-67,0,-113,-50,-113,-123v0,-76,46,-128,114,-128v32,0,57,10,76,31v14,14,21,28,24,49r-22,0v-6,-36,-38,-60,-78,-60v-55,0,-91,43,-91,108v0,63,36,104,91,104v33,0,61,-17,74,-44v6,-13,9,-26,9,-45r-82,0r0,-19r102,0","w":257},"H":{"d":"218,-240r0,240r-23,0r0,-116r-144,0r0,116r-22,0r0,-240r22,0r0,104r144,0r0,-104r23,0","w":246},"I":{"d":"51,-240r0,240r-22,0r0,-240r22,0","w":80},"J":{"d":"141,-242r0,171v0,26,-2,38,-10,51v-8,12,-14,16,-28,20v-10,3,-22,4,-32,4v-28,0,-50,-12,-60,-33v-4,-10,-6,-24,-6,-42r0,-9r22,0v0,23,0,23,2,31v4,22,19,34,45,34v17,0,30,-6,37,-17v6,-8,8,-20,8,-42r0,-168r22,0","w":167},"K":{"d":"222,-240r-108,98r114,142r-30,0r-100,-126r-46,41r0,85r-23,0r0,-240r23,0r0,129v9,-9,12,-12,16,-15r124,-114r30,0","w":225},"L":{"d":"187,-20r0,20r-158,0r0,-240r22,0r0,220r136,0","w":192},"M":{"d":"263,-240r0,240r-22,0r0,-145v0,-26,1,-59,3,-76v-2,4,-4,10,-7,19v-6,18,-6,19,-9,25r-71,177r-21,0r-72,-175r-15,-44v2,30,2,55,2,73r0,146r-22,0r0,-240r31,0r70,171v11,28,13,33,17,45v5,-13,10,-29,16,-44r68,-172r32,0","w":291},"N":{"d":"218,-240r0,240r-25,0r-112,-161v-23,-35,-25,-39,-31,-52v1,9,1,15,1,24r0,34r0,155r-22,0r0,-240r26,0r111,163v12,17,24,36,32,50v-1,-17,-2,-47,-2,-63r0,-150r22,0","w":246},"O":{"d":"131,-246v66,0,112,52,112,126v0,75,-46,125,-114,125v-67,0,-112,-50,-112,-125v0,-76,45,-126,114,-126xm129,-226v-25,0,-48,10,-65,29v-17,19,-25,44,-25,76v0,64,37,107,91,107v54,0,90,-42,90,-105v0,-64,-36,-107,-91,-107","w":259},"P":{"d":"29,-240r96,0v27,0,42,3,55,12v18,12,27,32,27,56v0,25,-9,44,-27,56v-13,10,-28,14,-52,14r-76,0r0,102r-23,0r0,-240xm52,-220r0,98r69,0v21,0,32,-2,42,-8v14,-9,21,-23,21,-41v0,-18,-7,-33,-20,-41v-10,-6,-21,-8,-44,-8r-68,0","w":218},"Q":{"d":"241,1r-11,14r-38,-28v-15,12,-39,18,-62,18v-67,0,-113,-50,-113,-124v0,-75,46,-127,113,-127v67,0,113,51,113,125v0,39,-13,73,-36,96xm154,-66r36,28v21,-22,30,-48,30,-83v0,-63,-36,-105,-90,-105v-54,0,-91,43,-91,106v0,64,36,106,92,106v17,0,31,-4,44,-13r-32,-24","w":257},"R":{"d":"28,-240r105,0v23,0,37,3,50,11v18,12,28,29,28,53v0,31,-17,53,-47,60v14,2,23,7,31,17v9,13,10,16,13,58v2,24,3,35,9,41r-25,0v-4,-5,-5,-14,-6,-33v-2,-40,-5,-50,-15,-61v-9,-9,-23,-13,-50,-13r-71,0r0,107r-22,0r0,-240xm50,-220r0,94r68,0v24,0,38,-2,49,-8v14,-8,21,-22,21,-40v0,-18,-8,-31,-23,-39v-9,-5,-21,-7,-39,-7r-76,0","w":237},"S":{"d":"188,-171r-22,0v-3,-37,-25,-55,-67,-55v-37,0,-59,16,-59,45v0,13,5,24,14,30v10,6,20,9,50,16v38,9,51,13,63,20v19,11,29,27,29,49v0,22,-10,41,-28,54v-15,12,-36,17,-63,17v-59,0,-95,-31,-95,-82r0,-3r22,0v1,21,5,33,14,44v13,15,34,22,61,22v42,0,67,-18,67,-49v0,-18,-9,-30,-28,-38v-10,-5,-20,-7,-53,-15v-32,-8,-43,-11,-55,-19v-13,-9,-21,-25,-21,-44v0,-41,32,-67,84,-67v54,0,85,27,87,75","w":211},"T":{"d":"197,-240r0,20r-85,0r0,220r-22,0r0,-220r-85,0r0,-20r192,0","w":201},"U":{"d":"212,-240r0,144v0,35,-3,50,-16,68v-16,22,-41,33,-76,33v-40,0,-68,-13,-83,-40v-9,-15,-11,-32,-11,-62r0,-143r22,0r0,144v0,28,3,42,11,55v12,18,33,27,62,27v28,0,47,-9,58,-26v8,-13,11,-28,11,-56r0,-144r22,0","w":237},"V":{"d":"209,-240r-89,240r-27,0r-90,-240r26,0r62,173v2,6,3,6,10,28v2,6,4,13,6,20v5,-17,10,-33,15,-48r63,-173r24,0","w":212},"W":{"d":"310,-240r-67,240r-25,0r-48,-169v-8,-28,-11,-39,-13,-50v-5,19,-7,29,-13,49r-48,170r-25,0r-66,-240r24,0r44,167v6,26,10,37,12,49v2,-10,4,-21,12,-50r47,-166r27,0r48,169v2,6,3,9,5,18v2,7,3,11,4,16r2,13v3,-14,5,-22,11,-47r46,-169r23,0","w":314},"X":{"d":"199,-240r-82,117r86,123r-27,0r-60,-86v-2,-4,-7,-11,-13,-21r-3,4v-2,3,-3,5,-5,8r-6,9r-61,86r-26,0r87,-123r-81,-117r27,0r53,77v4,7,9,15,15,24v2,-3,4,-7,6,-10v4,-7,7,-11,9,-14r55,-77r26,0","w":205},"Y":{"d":"211,-240r-95,141r0,99r-23,0r0,-99r-95,-141r28,0r67,100v4,6,8,16,12,22v4,-7,10,-17,13,-21r67,-101r26,0","w":208},"Z":{"d":"194,-240r0,20r-146,185r-5,7v-3,3,-5,6,-7,9r14,0r21,-1r127,0r0,20r-188,0r0,-21r147,-186r6,-8v1,-2,3,-4,5,-6v-21,0,-24,1,-31,1r-116,0r0,-20r173,0","w":206},"\u00c6":{"d":"299,-240r0,20r-124,0r0,86r116,0r0,20r-116,0r0,94r126,0r0,20r-148,0r0,-78r-86,0r-40,78r-27,0r126,-240r173,0xm153,-98r0,-122r-14,0r-63,122r77,0","w":314},"\u00d8":{"d":"242,-233r-25,29v18,23,26,51,26,84v0,75,-46,125,-114,125v-30,0,-54,-9,-75,-28r-25,27r-12,-11r25,-29v-18,-24,-25,-50,-25,-84v0,-75,45,-126,112,-126v30,0,57,11,77,30r24,-28xm201,-189r-132,151v20,17,38,24,61,24v54,0,90,-43,90,-106v0,-28,-6,-50,-19,-69xm58,-51r132,-151v-19,-17,-36,-24,-60,-24v-54,0,-91,42,-91,105v0,28,6,51,19,70","w":259},"\u00c7":{"d":"207,-92r23,0v-5,59,-46,97,-103,97r-11,15v6,-1,9,-1,12,-1v15,0,26,9,26,22v0,17,-14,28,-36,28v-10,0,-19,-1,-32,-6r5,-10v9,4,17,5,25,5v12,0,19,-7,19,-16v0,-8,-7,-13,-17,-13v-5,0,-7,0,-14,3r-6,-5r17,-22v-60,-4,-98,-53,-98,-124v0,-76,45,-127,112,-127v52,0,89,31,97,78r-22,0v-8,-35,-38,-58,-76,-58v-53,0,-89,43,-89,106v0,64,35,106,88,106v45,0,77,-32,80,-78","w":242},"\u00d0":{"d":"29,-240r84,0v35,0,57,7,76,24v22,21,34,52,34,91v0,42,-12,75,-34,98v-19,19,-40,27,-75,27r-85,0r0,-117r-25,0r0,-19r25,0r0,-104xm52,-220r0,84r72,0r0,19r-72,0r0,97r57,0v34,0,51,-5,66,-22v17,-18,26,-44,26,-81v0,-34,-9,-59,-27,-76v-15,-15,-33,-21,-61,-21r-61,0","w":239},"\u00de":{"d":"29,-240r23,0r0,36r73,0v27,0,42,3,55,12v18,12,27,32,27,56v0,25,-9,44,-27,56v-13,10,-29,14,-53,14r-75,0r0,66r-23,0r0,-240xm52,-184r0,98r69,0v21,0,32,-2,42,-8v14,-9,21,-23,21,-41v0,-18,-7,-33,-21,-41v-10,-6,-19,-8,-43,-8r-68,0","w":219},"a":{"d":"173,-18r0,17v-5,2,-11,2,-17,2v-17,0,-22,-8,-22,-31v-15,24,-36,35,-66,35v-35,0,-56,-19,-56,-49v0,-23,12,-39,34,-47v12,-4,14,-5,59,-10v21,-2,28,-7,28,-22v0,-26,-15,-38,-46,-38v-30,0,-44,13,-47,41r-20,0v2,-37,27,-58,70,-58v32,0,55,12,61,31v2,7,2,13,2,29r0,77v0,22,2,25,12,25v3,0,4,-1,8,-2xm133,-66r0,-29v-7,6,-12,8,-48,13v-37,5,-52,15,-52,36v0,21,16,34,40,34v35,0,60,-23,60,-54","w":179},"b":{"d":"48,-240r0,99v10,-24,33,-37,62,-37v47,0,77,36,77,91v0,57,-30,92,-78,92v-31,0,-51,-13,-63,-39r0,34r-19,0r0,-240r21,0xm106,-161v-36,0,-59,29,-59,74v0,45,24,74,60,74v36,0,59,-28,59,-73v0,-46,-23,-75,-60,-75","w":201},"c":{"d":"147,-62r21,0v-6,42,-33,67,-73,67v-48,0,-80,-36,-80,-90v0,-57,31,-93,80,-93v40,0,67,22,72,60r-22,0v-5,-27,-22,-43,-49,-43v-36,0,-60,29,-60,74v0,45,23,74,58,74v29,0,49,-18,53,-49","w":178},"d":{"d":"175,-240r0,240r-19,0r0,-35v-12,27,-33,40,-63,40v-48,0,-78,-36,-78,-92v0,-55,31,-91,78,-91v29,0,49,12,61,37r0,-99r21,0xm94,-161v-35,0,-58,29,-58,74v0,46,23,74,59,74v37,0,60,-28,60,-73v0,-46,-23,-75,-61,-75","w":201},"e":{"d":"148,-57r20,0v-8,40,-34,62,-74,62v-48,0,-79,-35,-79,-90v0,-54,33,-93,79,-93v30,0,56,17,68,45v6,14,8,30,8,52r-134,0v1,44,23,68,59,68v28,0,46,-15,53,-44xm36,-99r113,0v-2,-38,-24,-62,-56,-62v-32,0,-52,22,-57,62","w":183},"f":{"d":"90,-240r0,18v-6,-1,-9,-2,-14,-2v-12,0,-20,4,-23,12v-2,4,-2,9,-2,22r0,17r35,0r0,17r-35,0r0,156r-21,0r0,-156r-30,0r0,-17r30,0r0,-15v0,-22,1,-29,6,-37v8,-11,19,-17,37,-17v6,0,10,1,17,2","w":93},"g":{"d":"171,-173r0,156v0,26,-3,41,-11,54v-12,20,-35,31,-67,31v-42,0,-68,-20,-71,-53r21,0v4,23,20,36,50,36v40,0,57,-20,57,-63r0,-28v-12,26,-32,37,-60,37v-46,0,-75,-34,-75,-86v0,-54,31,-89,77,-89v27,0,45,11,59,37r0,-32r20,0xm91,-161v-33,0,-55,29,-55,71v0,43,22,70,56,70v35,0,57,-28,57,-71v0,-43,-22,-70,-58,-70","w":197},"h":{"d":"48,-240r0,79r0,20v12,-24,32,-37,60,-37v23,0,41,8,51,25v6,10,9,21,9,41r0,112r-21,0r0,-109v0,-18,-2,-27,-8,-35v-8,-10,-21,-16,-37,-16v-21,0,-37,10,-46,28v-6,12,-8,23,-8,47r0,85r-21,0r0,-240r21,0","w":193},"i":{"d":"48,-240r0,34r-22,0r0,-34r22,0xm48,-173r0,173r-22,0r0,-173r22,0","w":73},"j":{"d":"48,-173r0,185v0,25,-2,34,-8,42v-6,9,-18,13,-35,13v-4,0,-6,0,-10,-1r0,-18v4,1,6,1,9,1v19,0,22,-6,22,-37r0,-185r22,0xm48,-240r0,34r-22,0r0,-34r22,0","w":74},"k":{"d":"173,-173r-74,64r79,109r-27,0r-69,-95r-34,29r0,66r-21,0r0,-240r21,0r0,151r7,-6r6,-6r83,-72r29,0","w":181},"l":{"d":"48,-240r0,240r-22,0r0,-240r22,0","w":73},"m":{"d":"46,-173r0,30v17,-25,33,-35,58,-35v26,0,42,11,50,34v14,-23,32,-34,58,-34v19,0,35,7,45,20v8,10,10,20,10,39r0,119r-21,0r0,-113v0,-15,-2,-25,-6,-31v-6,-10,-19,-16,-34,-16v-19,0,-34,9,-42,25v-5,9,-6,18,-6,35r0,100r-22,0r0,-113v0,-14,-1,-23,-4,-29v-6,-11,-19,-18,-34,-18v-19,0,-36,11,-44,28v-5,9,-6,21,-6,37r0,95r-21,0r0,-173r19,0","w":292},"n":{"d":"46,-173r0,32v6,-10,10,-14,15,-19v12,-12,28,-18,47,-18v22,0,41,9,51,24v7,10,9,20,9,43r0,111r-21,0r0,-105v0,-18,-1,-25,-4,-33v-5,-13,-21,-22,-40,-22v-21,0,-38,10,-47,27v-6,12,-8,23,-8,46r0,87r-21,0r0,-173r19,0","w":192},"o":{"d":"98,-178v49,0,81,36,81,92v0,56,-32,91,-82,91v-50,0,-82,-35,-82,-91v0,-56,32,-92,83,-92xm96,-161v-36,0,-60,30,-60,74v0,46,24,74,62,74v37,0,60,-28,60,-73v0,-46,-24,-75,-62,-75","w":193},"p":{"d":"46,-173r0,33v14,-26,33,-38,62,-38v48,0,79,36,79,92v0,55,-32,91,-78,91v-29,0,-50,-13,-61,-37r0,96r-21,0r0,-237r19,0xm105,-161v-36,0,-58,30,-58,75v0,45,23,73,60,73v35,0,59,-29,59,-73v0,-46,-24,-75,-61,-75","w":201},"q":{"d":"175,-173r0,237r-21,0r0,-96v-12,24,-33,37,-62,37v-47,0,-77,-36,-77,-91v0,-57,31,-92,79,-92v22,0,38,7,50,20v4,4,7,8,12,18r0,-33r19,0xm95,-161v-35,0,-59,30,-59,75v0,45,23,73,59,73v36,0,60,-29,60,-74v0,-46,-23,-74,-60,-74","w":201},"r":{"d":"113,-176r0,22r-6,0v-18,0,-33,6,-44,19v-12,14,-15,28,-15,64r0,71r-21,0r0,-173r19,0r0,41v13,-31,35,-45,67,-44","w":111},"s":{"d":"142,-123r-21,0v-3,-26,-16,-38,-46,-38v-25,0,-41,11,-41,29v0,18,8,23,50,33v24,6,36,9,46,16v12,8,18,21,18,35v0,32,-27,53,-68,53v-45,0,-71,-22,-72,-62r21,0v2,30,19,44,51,44v29,0,47,-12,47,-33v0,-17,-10,-25,-47,-34v-31,-8,-38,-10,-47,-15v-12,-6,-20,-19,-20,-34v0,-30,24,-49,63,-49v24,0,43,7,54,20v8,9,11,18,12,35","w":161},"t":{"d":"84,-173r0,17r-36,0r0,110v0,24,3,29,21,29v5,0,9,0,15,-1r0,18v-8,1,-12,1,-18,1v-19,0,-30,-5,-35,-15v-3,-6,-4,-13,-4,-43r0,-99r-30,0r0,-17r30,0r0,-53r21,0r0,53r36,0","w":94},"u":{"d":"166,-173r0,173r-20,0r0,-32v-14,25,-34,37,-61,37v-20,0,-39,-9,-49,-22v-8,-10,-11,-24,-11,-45r0,-111r21,0r0,102v0,18,2,27,5,35v5,14,21,23,39,23v19,0,36,-10,45,-26v7,-12,10,-24,10,-45r0,-89r21,0","w":192},"v":{"d":"155,-173r-64,173r-23,0r-67,-173r23,0r40,105v3,9,8,21,16,47v7,-21,10,-33,16,-48r37,-104r22,0","w":155},"w":{"d":"248,-173r-57,173r-23,0r-34,-114v-3,-10,-5,-17,-9,-34v-4,18,-5,25,-8,34r-34,114r-24,0r-56,-173r23,0r33,105v4,13,6,22,12,45r6,-23v1,-8,3,-16,5,-22r31,-105r25,0r33,110v3,10,5,18,10,40v5,-20,6,-28,10,-40r35,-110r22,0","w":250},"x":{"d":"155,-173r-62,80r69,93r-27,0r-46,-63v-3,-4,-5,-7,-9,-14r-4,7r-5,6r-46,64r-25,0r67,-91r-62,-82r27,0r37,51v2,3,5,5,6,7r5,8v6,-9,8,-12,11,-15r39,-51r25,0","w":162},"y":{"d":"157,-173r-68,180v-10,26,-15,35,-20,43v-7,11,-18,16,-32,16v-4,0,-9,0,-14,-1r-4,-1r0,-18v8,2,10,2,15,2v13,0,22,-8,28,-25v2,-4,4,-10,6,-16v2,-3,3,-6,3,-7r0,-1r-70,-172r23,0r47,119v2,6,4,9,11,31v5,-17,8,-24,11,-33r42,-117r22,0","w":157},"z":{"d":"149,-173r0,15r-104,127r-5,6v-2,3,-4,5,-6,7r18,0r101,0r0,18r-145,0r0,-17r102,-125v3,-3,4,-5,7,-8v2,-2,4,-4,5,-6r-7,0r-7,0r-92,0r0,-17r133,0","w":157},"\u00e6":{"d":"261,-57r21,0v-8,39,-35,62,-75,62v-32,0,-55,-16,-65,-44v-11,27,-40,45,-74,45v-34,0,-56,-21,-56,-52v0,-16,6,-30,18,-39v10,-8,25,-11,51,-14v47,-4,51,-6,51,-24v0,-26,-13,-38,-44,-38v-31,0,-46,14,-49,42r-20,0v4,-39,28,-59,70,-59v21,0,37,5,46,14v6,5,9,9,12,21v11,-23,31,-35,60,-35v30,0,53,14,66,39v8,15,10,29,10,58r-131,0v0,17,2,25,6,35v9,22,27,33,51,33v28,0,45,-14,52,-44xm152,-99r110,0v-1,-38,-22,-62,-55,-62v-20,0,-38,11,-47,28v-5,9,-7,18,-8,34xm132,-73r0,-21v-6,5,-12,7,-31,9v-23,2,-38,5,-46,8v-15,6,-22,15,-22,30v0,22,16,36,41,36v18,0,34,-7,46,-20v9,-11,12,-21,12,-42","w":296},"\u00f8":{"d":"182,-167r-19,21v12,19,16,36,16,60v0,56,-32,91,-82,91v-23,0,-40,-6,-56,-20r-19,20r-11,-10r21,-22v-12,-18,-17,-36,-17,-60v0,-55,32,-91,82,-91v23,0,41,7,56,21r18,-20xm147,-131r-92,102v13,12,26,16,43,16v37,0,60,-28,60,-73v0,-18,-3,-31,-11,-45xm46,-41r93,-103v-13,-12,-25,-17,-42,-17v-36,0,-61,30,-61,74v0,19,3,33,10,46","w":193},"\u00df":{"d":"80,2r0,-17r13,0v37,0,57,-21,57,-57v0,-36,-20,-53,-62,-53r-8,0r0,-17v19,0,27,-2,36,-6v14,-7,23,-19,23,-37v0,-25,-19,-42,-46,-42v-16,0,-29,5,-36,15v-6,9,-9,20,-9,41r0,171r-21,0r0,-165v0,-31,1,-41,9,-53v11,-17,32,-27,57,-27v40,0,67,23,67,59v0,26,-14,45,-38,51v32,4,50,28,50,63v0,45,-30,75,-75,75v-6,0,-9,0,-17,-1","w":186},"\u00e7":{"d":"93,5r-11,14v6,-1,8,-1,12,-1v16,0,27,9,27,22v0,18,-14,28,-37,28v-10,0,-18,-1,-31,-6r4,-11v9,4,16,6,24,6v13,0,21,-6,21,-15v0,-8,-8,-14,-18,-14v-5,0,-8,1,-14,3r-5,-5r17,-22v-41,-5,-67,-40,-67,-89v0,-57,31,-93,80,-93v40,0,67,22,72,60r-22,0v-5,-27,-22,-43,-49,-43v-36,0,-60,29,-60,74v0,45,23,74,58,74v29,0,49,-18,53,-49r21,0v-5,41,-35,69,-75,67","w":178},"\u00f0":{"d":"73,-204r26,-13r-17,-23r13,-8r19,23r27,-13r8,12r-25,13v40,57,55,92,55,127v0,55,-32,91,-82,91v-50,0,-82,-37,-82,-92v0,-54,33,-91,81,-91v14,0,20,1,33,10v-9,-16,-13,-22,-22,-36r-27,13xm96,-161v-36,0,-60,30,-60,74v0,46,24,74,62,74v37,0,60,-28,60,-73v0,-46,-24,-75,-62,-75","w":193},"\u00fe":{"d":"48,-240r0,99v10,-24,33,-37,62,-37v47,0,77,36,77,91v0,56,-30,92,-77,92v-29,0,-52,-14,-62,-40r0,99r-21,0r0,-304r21,0xm106,-161v-36,0,-58,29,-58,74v0,45,22,74,59,74v36,0,59,-28,59,-73v0,-46,-23,-75,-60,-75","w":201},"1":{"d":"126,-235r0,235r-23,0r0,-175r-9,0r-23,0r-19,0r-10,0r0,-17v48,-1,59,-7,67,-43r17,0"},"2":{"d":"175,-19r0,19r-156,0v3,-42,18,-62,74,-97v46,-30,59,-47,59,-74v0,-30,-21,-49,-52,-49v-20,0,-37,9,-46,25v-6,10,-8,23,-8,41r-21,0v0,-53,27,-84,76,-84v44,0,73,26,73,67v0,21,-8,37,-23,53v-12,13,-22,20,-54,41v-38,24,-49,37,-54,58r12,0r120,0"},"3":{"d":"40,-161r-20,0v2,-50,29,-77,77,-77v42,0,71,25,71,61v0,26,-15,45,-40,51v31,6,48,27,48,58v0,44,-32,73,-81,73v-33,0,-58,-13,-71,-37v-7,-12,-9,-25,-9,-44r20,0v0,14,3,26,8,36v10,17,29,27,52,27v34,0,59,-23,59,-53v0,-18,-6,-31,-20,-40v-10,-7,-23,-10,-42,-10v-4,0,-7,1,-11,1r0,-18r3,0r6,0v35,0,56,-16,56,-43v0,-26,-20,-44,-50,-44v-35,0,-55,21,-56,59"},"4":{"d":"179,-75r0,17r-36,0r0,58r-20,0r0,-58r-108,0r0,-19r110,-158r18,0r0,160r36,0xm123,-75r0,-93v0,-16,1,-23,1,-39v-4,5,-7,11,-11,17v-3,6,-6,11,-10,16r-52,72v-3,4,-9,14,-19,27r23,0r68,0"},"5":{"d":"166,-233r0,19r-103,0r-11,55r-3,14r-3,12v13,-16,31,-24,54,-24v45,0,77,34,77,80v0,47,-34,82,-81,82v-46,0,-78,-30,-78,-73r21,0v3,34,24,55,57,55v34,0,59,-27,59,-63v0,-37,-24,-62,-59,-62v-23,0,-40,9,-53,27r-18,-1r23,-121r118,0"},"6":{"d":"175,-176r-21,0v-5,-27,-23,-44,-50,-44v-29,0,-48,17,-58,53v-4,14,-6,30,-7,55v13,-26,36,-41,66,-41v44,0,75,32,75,77v0,47,-33,81,-78,81v-28,0,-53,-13,-67,-36v-11,-19,-16,-43,-16,-80v0,-82,30,-127,85,-127v40,0,66,22,71,62xm100,-135v-32,0,-56,26,-56,60v0,36,25,62,58,62v33,0,56,-26,56,-61v0,-36,-23,-61,-58,-61"},"7":{"d":"179,-233r0,19v-55,56,-90,134,-96,214r-23,0v4,-74,43,-159,98,-213r-24,0r-107,0r0,-20r152,0"},"8":{"d":"66,-127v-24,-7,-39,-26,-39,-51v0,-36,29,-60,72,-60v43,0,71,23,71,59v0,26,-13,44,-38,52v31,8,47,28,47,59v0,45,-31,73,-81,73v-49,0,-80,-27,-80,-71v0,-31,18,-54,48,-61xm98,-220v-30,0,-50,17,-50,43v0,26,20,42,51,42v31,0,50,-16,50,-42v0,-27,-19,-43,-51,-43xm97,-118v-35,0,-57,20,-57,51v0,32,23,54,59,54v36,0,58,-22,58,-54v0,-31,-23,-51,-60,-51"},"9":{"d":"23,-57r20,0v4,27,24,44,52,44v31,0,52,-23,59,-65v2,-12,3,-24,3,-45v-5,11,-8,16,-14,22v-12,13,-31,21,-51,21v-44,0,-75,-33,-75,-78v0,-47,33,-80,78,-80v33,0,59,17,72,47v8,17,11,37,11,68v0,33,-4,60,-13,79v-14,32,-39,49,-71,49v-40,0,-67,-25,-71,-62xm94,-220v-32,0,-55,26,-55,61v0,36,23,61,56,61v34,0,57,-25,57,-60v0,-36,-24,-62,-58,-62"},"0":{"d":"99,-238v30,0,54,15,67,41v10,20,15,46,15,82v0,35,-5,58,-14,78v-13,27,-37,42,-68,42v-55,0,-83,-38,-83,-118v0,-37,5,-65,15,-84v14,-27,37,-41,68,-41xm98,-220v-40,0,-60,36,-60,108v0,26,4,48,10,64v9,22,28,35,51,35v40,0,60,-35,60,-103v0,-70,-20,-104,-61,-104"},"\u00a3":{"d":"181,-159r-21,0v-1,-39,-22,-62,-58,-62v-32,0,-55,19,-55,47v0,12,3,22,12,39v1,2,3,4,4,7v1,1,2,3,3,5r55,0r0,15r-47,0v5,10,6,19,6,30v0,21,-9,36,-32,58v-1,2,-2,4,-4,5v18,-9,24,-11,37,-11v12,0,14,1,42,10v5,2,11,3,17,3v13,0,27,-6,39,-17r11,16v-13,13,-32,20,-50,20v-12,0,-14,0,-41,-10v-10,-4,-20,-5,-28,-5v-13,0,-21,3,-37,14r-12,-17v25,-19,38,-41,38,-63v0,-10,-3,-18,-9,-33r-28,0r0,-15r19,0v-14,-24,-17,-34,-17,-51v0,-38,32,-65,77,-65v50,0,79,29,79,80"},"$":{"d":"92,-267r15,0r0,29v43,2,69,27,68,66r-20,0v-1,-30,-17,-46,-48,-48r0,91v51,9,74,30,74,67v0,26,-12,46,-34,58v-10,5,-21,8,-40,9r0,40r-15,0r0,-40v-49,-1,-79,-30,-78,-76r21,0v0,37,18,56,57,59r0,-101v-46,-9,-68,-29,-68,-62v0,-36,27,-60,68,-63r0,-29xm92,-133r0,-87v-29,1,-47,18,-47,44v0,15,7,27,20,35v6,3,13,5,27,8xm107,-110r0,98v18,-1,29,-5,38,-13v10,-9,15,-21,15,-35v0,-18,-8,-31,-23,-39v-6,-3,-11,-5,-30,-11"},"\u00a2":{"d":"157,-98r20,0v-4,37,-31,65,-67,66r0,36r-15,0r0,-36v-45,-5,-72,-38,-72,-91v0,-33,11,-59,32,-76v11,-8,22,-13,40,-16r0,-29r15,0r0,29v37,1,63,26,66,60r-21,0v-3,-23,-22,-40,-45,-42r0,147v24,-1,43,-20,47,-48xm95,-50r0,-146v-32,6,-50,32,-50,72v0,42,18,68,50,74"},"\u00a5":{"d":"67,-137r-57,-96r24,0r54,94v4,6,6,11,11,21v3,-6,8,-17,11,-21r53,-94r23,0r-56,96r49,0r0,15r-57,0r-14,23r0,17r64,0r0,15r-64,0r0,67r-19,0r0,-67r-64,0r0,-15r64,0r0,-17r-14,-23r-57,0r0,-15r49,0"},"\u00b9":{"d":"82,-237r0,141r-16,0r0,-103r-4,0r-15,0r-12,0r-7,0r0,-12v31,-1,36,-4,41,-26r13,0","w":128},"\u00b2":{"d":"112,-110r0,14r-99,0v2,-26,11,-39,47,-60v28,-18,36,-26,36,-42v0,-17,-12,-28,-31,-28v-21,0,-32,13,-33,39r-15,0r0,-3v0,-30,19,-49,49,-49v28,0,46,16,46,41v0,21,-10,34,-48,57v-22,13,-30,20,-33,31r81,0","w":128},"\u00b3":{"d":"29,-190r-15,0v1,-31,18,-49,49,-49v27,0,45,16,45,38v0,14,-7,24,-21,30v17,5,26,17,26,34v0,26,-20,44,-51,44v-33,0,-51,-18,-51,-50r15,0r0,3r0,1v0,20,15,33,36,33v21,0,36,-13,36,-30v0,-19,-13,-28,-39,-28r-7,0r0,-13v4,0,5,1,8,1v20,0,32,-10,32,-25v0,-15,-12,-25,-30,-25v-21,0,-32,13,-33,36","w":128},".":{"d":"54,-36r0,36r-28,0r0,-36r28,0","w":80},":":{"d":"60,-36r0,36r-28,0r0,-36r28,0xm60,-173r0,36r-28,0r0,-36r28,0","w":86},"\u00b7":{"d":"54,-107r0,36r-28,0r0,-36r28,0","w":80},",":{"d":"54,-35r0,25v0,34,-8,48,-30,56r0,-14v10,-4,16,-15,16,-32r-14,0r0,-35r28,0","w":80},";":{"d":"60,-35r0,25v0,34,-8,48,-30,56r0,-14v10,-4,16,-15,16,-32r-14,0r0,-35r28,0xm60,-173r0,36r-28,0r0,-36r28,0","w":86},"!":{"d":"62,-240r0,70r-5,110r-12,0r-5,-110r0,-70r22,0xm64,-33r0,33r-25,0r0,-33r25,0","w":94},"\u00a1":{"d":"32,67r0,-71r5,-109r13,0r5,109r0,71r-23,0xm31,-140r0,-33r26,0r0,33r-26,0","w":94},"?":{"d":"38,-166r-20,0v1,-22,4,-35,12,-48v13,-20,36,-31,63,-31v42,0,69,25,69,62v0,16,-5,30,-14,42v-4,5,-9,11,-26,26v-18,17,-21,25,-21,55r-20,0v0,-39,2,-43,38,-78v15,-15,21,-28,21,-43v0,-27,-19,-45,-48,-45v-20,0,-36,8,-45,24v-6,10,-8,18,-9,36xm103,-33r0,33r-25,0r0,-33r25,0","w":177},"\u00bf":{"d":"140,-8r20,0v-1,22,-4,36,-12,49v-13,20,-36,31,-63,31v-41,0,-70,-25,-70,-62v0,-16,6,-29,15,-41v4,-6,10,-12,26,-27v18,-17,21,-25,21,-55r20,0v0,39,-2,43,-38,78v-15,15,-22,28,-22,43v0,27,20,45,49,45v20,0,36,-8,45,-24v6,-10,8,-19,9,-37xm75,-140r0,-33r25,0r0,33r-25,0","w":177},"\u00bb":{"d":"77,-141r45,42r0,21r-45,42r0,-22r32,-31r-32,-29r0,-23xm23,-141r45,42r0,20r-45,43r0,-22r31,-31r-31,-30r0,-22","w":139},"\u00ab":{"d":"63,-36r-45,-43r0,-20r45,-42r0,21r-32,31r32,30r0,23xm117,-36r-45,-42r0,-21r45,-42r0,21r-32,31r32,30r0,23","w":139},"\/":{"d":"129,-240r-124,304r-18,0r124,-304r18,0","w":141},"-":{"d":"80,-98r0,19r-80,0r0,-19r80,0","w":79},"\u00ad":{"d":"80,-98r0,19r-80,0r0,-19r80,0","w":79},"(":{"d":"63,-240r17,0v-28,44,-43,99,-43,153v0,52,15,105,43,151r-17,0v-34,-55,-48,-100,-48,-151v0,-52,18,-111,48,-153","w":99},")":{"d":"37,64r-17,0v28,-44,43,-99,43,-153v0,-52,-15,-105,-43,-151r17,0v34,56,48,101,48,152v0,52,-18,110,-48,152","w":99},"[":{"d":"81,-240r0,17r-35,0r0,271r35,0r0,16r-54,0r0,-304r54,0","w":99},"]":{"d":"19,64r0,-16r34,0r0,-271r-34,0r0,-17r54,0r0,304r-54,0","w":99},"&":{"d":"163,-106r20,0v0,17,-7,43,-14,55r43,51r-27,0r-28,-33v-17,25,-40,38,-70,38v-42,0,-72,-26,-72,-65v0,-21,10,-39,29,-54v10,-8,23,-16,31,-20v-21,-26,-29,-42,-29,-58v0,-28,21,-48,53,-48v31,0,53,20,53,48v0,24,-15,42,-48,63r51,62v4,-11,7,-26,8,-39xm93,-143v26,-14,39,-31,39,-48v0,-18,-14,-31,-33,-31v-19,0,-33,12,-33,30v0,12,7,26,27,49xm145,-48r-59,-72v-37,21,-49,36,-49,59v0,27,23,48,52,48v23,0,41,-11,56,-35","w":216},"\u00a7":{"d":"158,-177r-20,0v-2,-28,-15,-43,-41,-43v-22,0,-37,13,-37,31v0,11,5,20,17,28r40,24v47,27,60,42,60,66v0,22,-14,39,-37,48v14,13,19,24,19,39v0,30,-25,51,-60,51v-40,0,-62,-23,-64,-63r21,0v2,30,17,45,44,45v22,0,38,-13,38,-32v0,-13,-7,-22,-26,-35v-7,-5,-11,-7,-50,-30v-31,-18,-42,-33,-42,-56v0,-23,14,-42,36,-49v-12,-11,-17,-21,-17,-35v0,-29,24,-49,58,-49v39,0,60,22,61,60xm68,-142v-20,9,-28,20,-28,36v0,10,4,17,14,26v7,6,11,9,42,27v15,9,24,15,31,20v19,-7,30,-20,30,-35v0,-20,-11,-30,-74,-65v-8,-5,-11,-6,-15,-9"},"*":{"d":"149,-200r-40,13r25,33r-11,8r-25,-34r-25,34r-11,-8r25,-33r-39,-13r4,-13r39,14r0,-41r14,0r0,41r39,-14"},"'":{"d":"36,-144r-17,0r-3,-96r23,0","w":55},"\"":{"d":"36,-144r-17,0r-3,-96r23,0xm83,-144r-17,0r-3,-96r23,0","w":102},"@":{"d":"237,-60r12,0v-8,17,-14,25,-29,37v-23,18,-52,28,-80,28v-69,0,-123,-55,-123,-124v0,-71,55,-127,126,-127v63,0,112,46,112,104v0,28,-12,52,-33,70v-14,12,-32,19,-46,19v-14,0,-23,-7,-25,-20v-14,14,-26,20,-41,20v-23,0,-39,-18,-39,-45v0,-45,35,-89,71,-89v16,0,27,8,34,24r7,-18r16,0r-30,89v-2,6,-3,12,-3,16v0,8,5,13,14,13v12,0,26,-7,38,-19v16,-16,24,-36,24,-59v0,-53,-43,-93,-99,-93v-64,0,-113,50,-113,115v0,63,49,113,111,113v39,0,78,-21,96,-54xm156,-105r8,-24v4,-9,5,-15,5,-21v0,-14,-11,-26,-24,-26v-27,0,-55,42,-55,82v0,18,9,30,23,30v9,0,19,-4,27,-12v6,-7,10,-13,16,-29","w":271},"#":{"d":"130,-83r-10,71r-16,0r10,-71r-42,0r-10,71r-16,0r10,-71r-44,0r2,-15r44,0r6,-40r-44,0r2,-15r44,0r9,-66r16,0r-9,66r42,0r9,-66r16,0r-10,66r46,0r-2,15r-46,0r-5,40r45,0r-2,15r-45,0xm122,-138r-42,0r-6,40r42,0"},"\u00b0":{"d":"68,-239v27,0,51,23,51,51v0,28,-23,52,-51,52v-29,0,-52,-24,-52,-52v0,-29,23,-51,52,-51xm67,-225v-19,0,-37,17,-37,37v0,21,17,38,38,38v20,0,37,-17,37,-37v0,-22,-16,-38,-38,-38","w":134},"+":{"d":"18,-124r72,0r0,-73r16,0r0,73r73,0r0,15r-73,0r0,73r-16,0r0,-73r-72,0r0,-15"},"\u00d7":{"d":"30,-59r57,-57r-57,-58r11,-11r57,58r58,-58r11,11r-58,58r58,57r-11,11r-58,-57r-57,57"},"\u00f7":{"d":"18,-124r161,0r0,15r-161,0r0,-15xm99,-185v8,0,15,7,15,16v0,9,-7,16,-16,16v-9,0,-16,-7,-16,-16v0,-9,8,-16,17,-16xm99,-80v8,0,15,7,15,16v0,9,-7,16,-16,16v-9,0,-16,-7,-16,-16v0,-9,8,-16,17,-16"},"=":{"d":"18,-150r161,0r0,15r-161,0r0,-15xm18,-98r161,0r0,15r-161,0r0,-15"},"\u00b6":{"d":"85,64r0,-177r-6,0v-37,0,-63,-26,-63,-63v0,-24,11,-45,30,-55v11,-6,26,-9,45,-9r84,0r0,16r-16,0r0,288r-20,0r0,-288r-34,0r0,288r-20,0"},"\u00a4":{"d":"23,-43r33,-33v-13,-16,-19,-33,-19,-52v0,-19,6,-34,19,-51r-34,-33r12,-13r33,33v18,-13,34,-19,53,-19v19,0,35,6,52,19r33,-33r12,13r-33,33v13,17,19,32,19,51v0,19,-6,35,-19,52r34,33r-12,12r-34,-33v-16,13,-33,19,-52,19v-18,0,-34,-6,-52,-19r-33,33xm119,-192v-34,0,-62,29,-62,64v0,35,28,64,63,64v35,0,63,-29,63,-64v0,-36,-28,-64,-64,-64","w":240},"{":{"d":"46,-189r0,60v0,23,-4,34,-19,42v15,8,19,18,19,41r0,58v0,15,3,24,9,29v4,4,13,7,22,7r4,0r0,16r-4,0v-37,0,-50,-14,-50,-53r0,-57v0,-21,-6,-30,-21,-34r0,-16v15,-4,21,-14,21,-34r0,-61v0,-35,15,-49,50,-49r4,0r0,17r-4,0v-10,0,-20,3,-24,8v-5,5,-7,13,-7,26","w":99},"}":{"d":"53,14r0,-61v0,-23,5,-33,20,-41v-15,-8,-20,-19,-20,-42r0,-58v0,-15,-2,-24,-8,-29v-4,-4,-14,-6,-22,-6r-4,0r0,-17r4,0v36,0,50,15,50,54r0,56v0,21,6,30,21,34r0,17v-15,4,-21,13,-21,33r0,61v0,35,-15,49,-50,49r-4,0r0,-16r4,0v10,0,19,-3,23,-8v5,-6,7,-13,7,-26","w":99},"\u00aa":{"d":"119,-107r-107,0r0,-12r107,0r0,12xm113,-156r0,11v-4,1,-6,2,-10,2v-9,0,-13,-5,-14,-15v-8,11,-20,17,-35,17v-20,0,-33,-11,-33,-28v0,-13,7,-22,20,-27v7,-3,7,-3,33,-5v11,-1,15,-4,15,-11v0,-14,-8,-19,-25,-19v-17,0,-24,6,-25,22r-14,0v1,-22,15,-34,41,-34v13,0,24,4,30,10v5,5,7,10,7,22r-1,32v0,24,1,24,6,24v2,0,2,0,5,-1xm89,-181r0,-13v-7,3,-9,3,-16,4v-17,2,-23,3,-28,6v-6,3,-10,8,-10,14v0,10,9,17,22,17v19,0,32,-12,32,-28","w":131},"\u00ba":{"d":"119,-107r-107,0r0,-12r107,0r0,12xm67,-243v28,0,46,20,46,51v0,31,-18,51,-47,51v-28,0,-47,-20,-47,-51v0,-31,19,-51,48,-51xm66,-231v-19,0,-33,16,-33,39v0,24,12,39,33,39v20,0,33,-15,33,-39v0,-24,-12,-39,-33,-39","w":131},"\u00b1":{"d":"18,-142r72,0r0,-73r16,0r0,73r73,0r0,15r-73,0r0,73r-16,0r0,-73r-72,0r0,-15xm18,-33r161,0r0,15r-161,0r0,-15"},"\u00bd":{"d":"82,-237r0,141r-16,0r0,-103r-4,0r-15,0r-12,0r-7,0r0,-12v31,-1,37,-4,42,-26r12,0xm234,-236r-143,236r-16,0r143,-236r16,0xm293,-14r0,14r-99,0v2,-26,12,-38,47,-59v28,-18,36,-28,36,-43v0,-17,-12,-28,-31,-28v-21,0,-32,13,-33,39r-15,0r0,-4v0,-30,19,-48,49,-48v28,0,46,16,46,41v0,22,-10,34,-48,57v-22,13,-30,20,-33,31r81,0","w":308},"\u00bc":{"d":"82,-237r0,141r-16,0r0,-103r-4,0r-15,0r-12,0r-7,0r0,-12v31,-1,37,-4,42,-26r12,0xm234,-236r-143,236r-16,0r143,-236r16,0xm296,-47r0,13r-22,0r0,34r-15,0r0,-34r-67,0r0,-14r69,-93r13,0r0,94r22,0xm259,-47r0,-73r-53,73r53,0","w":308},"\u00be":{"d":"29,-190r-15,0v1,-31,18,-49,49,-49v27,0,45,16,45,38v0,14,-7,24,-21,30v17,5,26,17,26,34v0,26,-20,44,-51,44v-33,0,-51,-18,-51,-50r15,0r0,3r0,1v0,20,15,33,36,33v21,0,36,-13,36,-30v0,-19,-13,-28,-39,-28r-7,0r0,-13v4,0,5,1,8,1v20,0,32,-10,32,-25v0,-15,-12,-25,-30,-25v-21,0,-32,13,-33,36xm234,-236r-143,236r-16,0r143,-236r16,0xm296,-47r0,13r-22,0r0,34r-15,0r0,-34r-67,0r0,-14r69,-93r13,0r0,94r22,0xm259,-47r0,-73r-53,73r53,0","w":308},"%":{"d":"216,-233r-132,233r-17,0r131,-233r18,0xm217,-123v33,0,52,22,52,61v0,43,-19,66,-54,66v-35,0,-53,-22,-53,-62v0,-42,20,-65,55,-65xm215,-108v-22,0,-34,17,-34,50v0,32,12,48,35,48v22,0,34,-18,34,-50v0,-31,-12,-48,-35,-48xm69,-239v33,0,53,22,53,62v0,41,-20,65,-54,65v-35,0,-53,-23,-53,-64v0,-40,19,-63,54,-63xm68,-224v-22,0,-35,18,-35,50v0,31,13,48,35,48v23,0,35,-18,35,-50v0,-32,-11,-48,-35,-48","w":283},"\\":{"d":"13,-240r18,0r124,304r-18,0","w":141},"\u00a8":{"d":"131,-240r0,34r-22,0r0,-34r22,0xm70,-240r0,34r-21,0r0,-34r21,0","w":180},"\u00b4":{"d":"134,-247r-43,48r-16,0r33,-48r26,0","w":180},"`":{"d":"46,-247r26,0r33,48r-17,0","w":180},"\u00b8":{"d":"100,0r-15,19v6,-1,9,-1,13,-1v16,0,26,9,26,22v0,18,-15,28,-37,28v-10,0,-18,-1,-31,-6r5,-11v9,4,16,6,24,6v13,0,20,-6,20,-15v0,-8,-8,-14,-18,-14v-5,0,-8,1,-14,3r-5,-5r21,-26r11,0","w":180},"\u00af":{"d":"0,-305r180,0r0,14r-180,0r0,-14","w":180},"\u00a9":{"d":"144,-246v67,0,123,57,123,126v0,69,-56,125,-125,125v-69,0,-125,-56,-125,-125v0,-70,56,-126,127,-126xm141,-233v-60,0,-111,51,-111,113v0,63,50,113,112,113v62,0,111,-51,111,-113v0,-63,-49,-113,-112,-113xm192,-106r16,0v-3,35,-27,57,-63,57v-41,0,-67,-28,-67,-71v0,-43,27,-72,68,-72v33,0,58,19,61,46r-17,0v-5,-20,-21,-32,-44,-32v-31,0,-52,23,-52,58v0,35,20,58,51,58v27,0,43,-16,47,-44","w":283},"\u00ae":{"d":"144,-246v67,0,123,57,123,126v0,69,-56,125,-125,125v-69,0,-125,-56,-125,-125v0,-70,56,-126,127,-126xm141,-233v-60,0,-111,51,-111,113v0,63,50,113,112,113v62,0,111,-51,111,-113v0,-63,-49,-113,-112,-113xm91,-189r64,0v31,0,48,14,48,38v0,16,-8,27,-23,33v17,6,20,12,21,42v1,15,3,20,8,25r-19,0v-3,-3,-4,-9,-5,-20v-2,-35,-6,-41,-37,-41r-41,0r0,61r-16,0r0,-138xm107,-175r0,50r39,0v29,0,41,-7,41,-25v0,-17,-11,-25,-36,-25r-44,0","w":283},"\u00a0":{"w":90},"<":{"d":"168,-202r0,22r-132,60r132,59r0,22r-156,-72r0,-19","w":180},">":{"d":"12,-39r0,-22r132,-60r-132,-59r0,-22r156,72r0,19","w":180},"\u00ac":{"d":"146,0r0,-79r-134,0r0,-20r156,0r0,99r-22,0","w":180},"^":{"d":"35,-136r-22,0r64,-104r26,0r64,104r-22,0r-55,-89","w":180},"|":{"d":"79,-240r23,0r0,300r-23,0r0,-300","w":180},"\u00a6":{"d":"79,-240r23,0r0,119r-23,0r0,-119xm79,-55r23,0r0,115r-23,0r0,-115","w":180},"_":{"d":"0,27r180,0r0,15r-180,0r0,-15","w":180},"~":{"d":"47,-211r-13,-10v13,-26,29,-39,48,-39v10,0,21,4,42,15v21,10,26,13,35,13v14,0,23,-7,35,-28r12,9v-12,25,-28,39,-49,39v-11,0,-16,-2,-46,-17v-14,-7,-22,-10,-31,-10v-12,0,-22,9,-33,28","w":240}}});Cufon.registerFont({"w":191,"face":{"font-family":"Nimbus Sans Novus T","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-14 -331 390 638","underline-thickness":"20.16","underline-position":"-35.28","stemh":"24","stemv":"29","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":90},"\u00c4":{"d":"132,-241r94,241r-35,0r-27,-74r-101,0r-27,74r-34,0r94,-241r36,0xm154,-99r-23,-64v-12,-31,-13,-37,-17,-49v-4,10,-5,14,-8,22r-10,25r-24,66r82,0xm167,-298r0,33r-32,0r0,-33r32,0xm93,-298r0,33r-31,0r0,-33r31,0","w":227},"\u00c1":{"d":"132,-241r94,241r-35,0r-27,-74r-101,0r-27,74r-34,0r94,-241r36,0xm154,-99r-23,-64v-12,-31,-13,-37,-17,-49v-4,10,-5,14,-8,22r-10,25r-24,66r82,0xm163,-305r-41,46r-24,0r28,-46r37,0","w":227},"\u00c0":{"d":"132,-241r94,241r-35,0r-27,-74r-101,0r-27,74r-34,0r94,-241r36,0xm154,-99r-23,-64v-12,-31,-13,-37,-17,-49v-4,10,-5,14,-8,22r-10,25r-24,66r82,0xm65,-305r38,0r27,46r-23,0","w":227},"\u00c2":{"d":"132,-241r94,241r-35,0r-27,-74r-101,0r-27,74r-34,0r94,-241r36,0xm154,-99r-23,-64v-12,-31,-13,-37,-17,-49v-4,10,-5,14,-8,22r-10,25r-24,66r82,0xm169,-260r-32,0r-22,-29r-22,29r-30,0r35,-44r36,0","w":227},"\u00c3":{"d":"132,-241r94,241r-35,0r-27,-74r-101,0r-27,74r-34,0r94,-241r36,0xm154,-99r-23,-64v-12,-31,-13,-37,-17,-49v-4,10,-5,14,-8,22r-10,25r-24,66r82,0xm156,-302r16,0v-3,24,-15,38,-33,38v-8,0,-12,-1,-36,-10v-5,-2,-10,-3,-14,-3v-8,0,-12,5,-15,15r-16,0v3,-23,16,-38,35,-38v10,0,11,1,36,11v3,1,7,2,11,2v8,0,13,-5,16,-15","w":227},"\u00c5":{"d":"132,-241r94,241r-35,0r-27,-74r-101,0r-27,74r-34,0r94,-241r36,0xm154,-99r-23,-64v-12,-31,-13,-37,-17,-49v-4,10,-5,14,-8,22r-10,25r-24,66r82,0xm115,-331v21,0,38,17,38,38v0,21,-18,38,-39,38v-22,0,-38,-16,-38,-38v0,-21,17,-38,39,-38xm113,-314v-11,0,-20,9,-20,21v0,12,9,21,21,21v12,0,21,-9,21,-21v0,-12,-10,-21,-22,-21","w":227},"\u00cb":{"d":"194,-240r0,28r-135,0r0,76r126,0r0,25r-126,0r0,83r137,0r0,28r-168,0r0,-240r166,0xm164,-298r0,33r-32,0r0,-33r32,0xm90,-298r0,33r-31,0r0,-33r31,0","w":210},"\u00c9":{"d":"194,-240r0,28r-135,0r0,76r126,0r0,25r-126,0r0,83r137,0r0,28r-168,0r0,-240r166,0xm159,-305r-41,46r-24,0r28,-46r37,0","w":210},"\u00c8":{"d":"194,-240r0,28r-135,0r0,76r126,0r0,25r-126,0r0,83r137,0r0,28r-168,0r0,-240r166,0xm70,-305r38,0r27,46r-23,0","w":210},"\u00ca":{"d":"194,-240r0,28r-135,0r0,76r126,0r0,25r-126,0r0,83r137,0r0,28r-168,0r0,-240r166,0xm164,-260r-32,0r-22,-29r-22,29r-30,0r35,-44r36,0","w":210},"\u00cf":{"d":"59,-240r0,240r-31,0r0,-240r31,0xm85,-298r0,33r-31,0r0,-33r31,0xm33,-298r0,33r-31,0r0,-33r31,0","w":86},"\u00cd":{"d":"59,-240r0,240r-31,0r0,-240r31,0xm93,-305r-42,46r-23,0r27,-46r38,0","w":86},"\u00cc":{"d":"59,-240r0,240r-31,0r0,-240r31,0xm-6,-305r38,0r27,46r-23,0","w":86},"\u00ce":{"d":"59,-240r0,240r-32,0r0,-240r32,0xm94,-260r-33,0r-19,-29r-20,29r-29,0r32,-44r36,0","w":86},"\u00d1":{"d":"220,-240r0,240r-35,0r-86,-130v-30,-46,-36,-57,-43,-71v1,13,1,21,1,33r1,47r0,121r-30,0r0,-240r34,0r90,137v19,30,31,47,40,65v-1,-17,-3,-70,-3,-82r0,-120r31,0xm167,-302r17,0v-3,24,-16,38,-34,38v-8,0,-12,-1,-36,-10v-5,-2,-10,-3,-14,-3v-8,0,-12,5,-15,15r-16,0v3,-23,16,-38,35,-38v10,0,11,1,36,11v3,1,7,2,11,2v8,0,13,-5,16,-15","w":247},"\u00d6":{"d":"133,-246v67,0,113,51,113,125v0,76,-47,126,-116,126v-69,0,-114,-50,-114,-125v0,-76,46,-126,117,-126xm130,-219v-22,0,-43,9,-58,26v-16,17,-24,41,-24,72v0,60,33,99,83,99v50,0,82,-39,82,-98v0,-60,-32,-99,-83,-99xm183,-298r0,33r-31,0r0,-33r31,0xm109,-298r0,33r-31,0r0,-33r31,0","w":261},"\u00d3":{"d":"133,-246v67,0,113,51,113,125v0,76,-47,126,-116,126v-69,0,-114,-50,-114,-125v0,-76,46,-126,117,-126xm130,-219v-22,0,-43,9,-58,26v-16,17,-24,41,-24,72v0,60,33,99,83,99v50,0,82,-39,82,-98v0,-60,-32,-99,-83,-99xm178,-305r-42,46r-23,0r27,-46r38,0","w":261},"\u00d2":{"d":"133,-246v67,0,113,51,113,125v0,76,-47,126,-116,126v-69,0,-114,-50,-114,-125v0,-76,46,-126,117,-126xm130,-219v-22,0,-43,9,-58,26v-16,17,-24,41,-24,72v0,60,33,99,83,99v50,0,82,-39,82,-98v0,-60,-32,-99,-83,-99xm89,-305r37,0r28,46r-24,0","w":261},"\u00d4":{"d":"133,-246v67,0,113,51,113,125v0,76,-47,126,-116,126v-69,0,-114,-50,-114,-125v0,-76,46,-126,117,-126xm130,-219v-22,0,-43,9,-58,26v-16,17,-24,41,-24,72v0,60,33,99,83,99v50,0,82,-39,82,-98v0,-60,-32,-99,-83,-99xm184,-260r-33,0r-21,-29r-23,29r-29,0r34,-44r36,0","w":261},"\u00d5":{"d":"133,-246v67,0,113,51,113,125v0,76,-47,126,-116,126v-69,0,-114,-50,-114,-125v0,-76,46,-126,117,-126xm130,-219v-22,0,-43,9,-58,26v-16,17,-24,41,-24,72v0,60,33,99,83,99v50,0,82,-39,82,-98v0,-60,-32,-99,-83,-99xm174,-302r16,0v-3,24,-15,38,-33,38v-8,0,-12,-1,-36,-10v-5,-2,-10,-3,-14,-3v-8,0,-12,5,-15,15r-16,0v3,-23,16,-38,35,-38v10,0,11,1,36,11v3,1,7,2,11,2v8,0,13,-5,16,-15","w":261},"\u00dc":{"d":"217,-240r0,140v0,40,-3,55,-17,73v-16,22,-41,32,-78,32v-42,0,-69,-11,-85,-38v-10,-16,-13,-32,-13,-67r0,-140r32,0r0,140v0,31,1,40,8,53v9,17,30,25,58,25v27,0,46,-8,55,-23v7,-12,9,-25,9,-55r0,-140r31,0xm173,-298r0,33r-31,0r0,-33r31,0xm99,-298r0,33r-31,0r0,-33r31,0","w":241},"\u00da":{"d":"217,-240r0,140v0,40,-3,55,-17,73v-16,22,-41,32,-78,32v-42,0,-69,-11,-85,-38v-10,-16,-13,-32,-13,-67r0,-140r32,0r0,140v0,31,1,40,8,53v9,17,30,25,58,25v27,0,46,-8,55,-23v7,-12,9,-25,9,-55r0,-140r31,0xm170,-305r-41,46r-24,0r27,-46r38,0","w":241},"\u00d9":{"d":"217,-240r0,140v0,40,-3,55,-17,73v-16,22,-41,32,-78,32v-42,0,-69,-11,-85,-38v-10,-16,-13,-32,-13,-67r0,-140r32,0r0,140v0,31,1,40,8,53v9,17,30,25,58,25v27,0,46,-8,55,-23v7,-12,9,-25,9,-55r0,-140r31,0xm76,-305r38,0r27,46r-23,0","w":241},"\u00db":{"d":"217,-240r0,140v0,40,-3,55,-17,73v-16,22,-41,32,-78,32v-42,0,-69,-11,-85,-38v-10,-16,-13,-32,-13,-67r0,-140r32,0r0,140v0,31,1,40,8,53v9,17,30,25,58,25v27,0,46,-8,55,-23v7,-12,9,-25,9,-55r0,-140r31,0xm174,-260r-33,0r-21,-29r-23,29r-29,0r34,-44r36,0","w":241},"\u00dd":{"d":"214,-240r-92,142r0,98r-32,0r0,-98r-94,-142r39,0r56,90r7,11v3,4,5,8,9,14v5,-10,7,-12,15,-25r56,-90r36,0xm155,-305r-42,46r-23,0r27,-46r38,0","w":210},"\u00e4":{"d":"175,-23r0,22v-7,3,-14,4,-21,4v-16,0,-24,-9,-24,-26v-17,19,-37,28,-64,28v-34,0,-55,-19,-55,-49v0,-23,11,-40,34,-49v11,-4,13,-4,52,-9v23,-3,31,-9,31,-23v0,-21,-13,-30,-39,-30v-28,0,-40,10,-43,35r-28,0v1,-37,28,-59,73,-59v23,0,43,6,54,17v9,9,12,18,12,46v0,12,-1,53,-1,67r0,11v0,12,3,17,11,17v3,0,5,-1,8,-2xm128,-64r0,-26v-8,6,-13,7,-38,10v-20,3,-27,4,-35,8v-9,5,-15,14,-15,25v0,18,14,30,35,30v19,0,38,-10,48,-24v4,-6,5,-10,5,-23xm136,-238r0,34r-31,0r0,-34r31,0xm72,-238r0,34r-30,0r0,-34r30,0","w":182},"\u00e1":{"d":"175,-23r0,22v-7,3,-14,4,-21,4v-16,0,-24,-9,-24,-26v-17,19,-37,28,-64,28v-34,0,-55,-19,-55,-49v0,-23,11,-40,34,-49v11,-4,13,-4,52,-9v23,-3,31,-9,31,-23v0,-21,-13,-30,-39,-30v-28,0,-40,10,-43,35r-28,0v1,-37,28,-59,73,-59v23,0,43,6,54,17v9,9,12,18,12,46v0,12,-1,53,-1,67r0,11v0,12,3,17,11,17v3,0,5,-1,8,-2xm128,-64r0,-26v-8,6,-13,7,-38,10v-20,3,-27,4,-35,8v-9,5,-15,14,-15,25v0,18,14,30,35,30v19,0,38,-10,48,-24v4,-6,5,-10,5,-23xm132,-246r-40,48r-20,0r25,-48r35,0","w":182},"\u00e0":{"d":"175,-23r0,22v-7,3,-14,4,-21,4v-16,0,-24,-9,-24,-26v-17,19,-37,28,-64,28v-34,0,-55,-19,-55,-49v0,-23,11,-40,34,-49v11,-4,13,-4,52,-9v23,-3,31,-9,31,-23v0,-21,-13,-30,-39,-30v-28,0,-40,10,-43,35r-28,0v1,-37,28,-59,73,-59v23,0,43,6,54,17v9,9,12,18,12,46v0,12,-1,53,-1,67r0,11v0,12,3,17,11,17v3,0,5,-1,8,-2xm128,-64r0,-26v-8,6,-13,7,-38,10v-20,3,-27,4,-35,8v-9,5,-15,14,-15,25v0,18,14,30,35,30v19,0,38,-10,48,-24v4,-6,5,-10,5,-23xm47,-246r35,0r25,48r-20,0","w":182},"\u00e2":{"d":"175,-23r0,22v-7,3,-14,4,-21,4v-16,0,-24,-9,-24,-26v-17,19,-37,28,-64,28v-34,0,-55,-19,-55,-49v0,-23,11,-40,34,-49v11,-4,13,-4,52,-9v23,-3,31,-9,31,-23v0,-21,-13,-30,-39,-30v-28,0,-40,10,-43,35r-28,0v1,-37,28,-59,73,-59v23,0,43,6,54,17v9,9,12,18,12,46v0,12,-1,53,-1,67r0,11v0,12,3,17,11,17v3,0,5,-1,8,-2xm128,-64r0,-26v-8,6,-13,7,-38,10v-20,3,-27,4,-35,8v-9,5,-15,14,-15,25v0,18,14,30,35,30v19,0,38,-10,48,-24v4,-6,5,-10,5,-23xm139,-199r-29,0r-22,-32r-24,32r-26,0r35,-48r31,0","w":182},"\u00e3":{"d":"175,-23r0,22v-7,3,-14,4,-21,4v-16,0,-24,-9,-24,-26v-17,19,-37,28,-64,28v-34,0,-55,-19,-55,-49v0,-23,11,-40,34,-49v11,-4,13,-4,52,-9v23,-3,31,-9,31,-23v0,-21,-13,-30,-39,-30v-28,0,-40,10,-43,35r-28,0v1,-37,28,-59,73,-59v23,0,43,6,54,17v9,9,12,18,12,46v0,12,-1,53,-1,67r0,11v0,12,3,17,11,17v3,0,5,-1,8,-2xm128,-64r0,-26v-8,6,-13,7,-38,10v-20,3,-27,4,-35,8v-9,5,-15,14,-15,25v0,18,14,30,35,30v19,0,38,-10,48,-24v4,-6,5,-10,5,-23xm125,-244r16,0v-4,24,-14,38,-31,38v-5,0,-12,-2,-21,-6v-17,-7,-18,-7,-23,-7v-7,0,-12,5,-15,15r-15,0v3,-24,14,-38,32,-38v9,0,11,1,34,11v3,1,6,2,9,2v7,0,11,-5,14,-15","w":182},"\u00e5":{"d":"175,-23r0,22v-7,3,-14,4,-21,4v-16,0,-24,-9,-24,-26v-17,19,-37,28,-64,28v-34,0,-55,-19,-55,-49v0,-23,11,-40,34,-49v11,-4,13,-4,52,-9v23,-3,31,-9,31,-23v0,-21,-13,-30,-39,-30v-28,0,-40,10,-43,35r-28,0v1,-37,28,-59,73,-59v23,0,43,6,54,17v9,9,12,18,12,46v0,12,-1,53,-1,67r0,11v0,12,3,17,11,17v3,0,5,-1,8,-2xm128,-64r0,-26v-8,6,-13,7,-38,10v-20,3,-27,4,-35,8v-9,5,-15,14,-15,25v0,18,14,30,35,30v19,0,38,-10,48,-24v4,-6,5,-10,5,-23xm89,-265v19,0,36,17,36,37v0,20,-16,36,-36,36v-20,0,-37,-16,-37,-37v0,-20,16,-36,37,-36xm87,-249v-11,0,-20,9,-20,21v0,12,9,21,21,21v12,0,21,-9,21,-21v0,-12,-10,-21,-22,-21","w":182},"\u00eb":{"d":"145,-56r28,0v-9,41,-35,61,-76,61v-51,0,-83,-35,-83,-91v0,-55,34,-93,82,-93v33,0,59,18,71,48v5,13,8,28,8,51r-131,0v1,41,20,61,55,61v24,0,38,-11,46,-37xm44,-103r101,0v-3,-32,-21,-52,-50,-52v-29,0,-47,18,-51,52xm142,-238r0,34r-31,0r0,-34r31,0xm78,-238r0,34r-30,0r0,-34r30,0","w":187},"\u00e9":{"d":"145,-56r28,0v-9,41,-35,61,-76,61v-51,0,-83,-35,-83,-91v0,-55,34,-93,82,-93v33,0,59,18,71,48v5,13,8,28,8,51r-131,0v1,41,20,61,55,61v24,0,38,-11,46,-37xm44,-103r101,0v-3,-32,-21,-52,-50,-52v-29,0,-47,18,-51,52xm139,-246r-40,48r-20,0r25,-48r35,0","w":187},"\u00e8":{"d":"145,-56r28,0v-9,41,-35,61,-76,61v-51,0,-83,-35,-83,-91v0,-55,34,-93,82,-93v33,0,59,18,71,48v5,13,8,28,8,51r-131,0v1,41,20,61,55,61v24,0,38,-11,46,-37xm44,-103r101,0v-3,-32,-21,-52,-50,-52v-29,0,-47,18,-51,52xm50,-246r36,0r25,48r-20,0","w":187},"\u00ea":{"d":"145,-56r28,0v-9,41,-35,61,-76,61v-51,0,-83,-35,-83,-91v0,-55,34,-93,82,-93v33,0,59,18,71,48v5,13,8,28,8,51r-131,0v1,41,20,61,55,61v24,0,38,-11,46,-37xm44,-103r101,0v-3,-32,-21,-52,-50,-52v-29,0,-47,18,-51,52xm145,-199r-29,0r-22,-32r-24,32r-26,0r35,-48r31,0","w":187},"\u00ef":{"d":"54,-174r0,174r-29,0r0,-174r29,0xm78,-238r0,34r-30,0r0,-34r30,0xm31,-238r0,34r-30,0r0,-34r30,0","w":78},"\u00ed":{"d":"54,-174r0,174r-29,0r0,-174r29,0xm84,-246r-38,48r-20,0r24,-48r34,0","w":78},"\u00ec":{"d":"54,-174r0,174r-29,0r0,-174r29,0xm-4,-246r34,0r24,48r-20,0","w":78},"\u00ee":{"d":"54,-174r0,174r-29,0r0,-174r29,0xm87,-199r-28,0r-20,-32r-22,32r-26,0r33,-48r31,0","w":78},"\u00f1":{"d":"52,-174r0,27v15,-23,34,-32,61,-32v23,0,40,9,49,25v5,10,8,21,8,42r0,112r-29,0r0,-102v0,-19,0,-25,-3,-33v-5,-12,-18,-20,-35,-20v-20,0,-36,10,-43,26v-5,10,-6,22,-6,45r0,84r-29,0r0,-174r27,0xm135,-244r15,0v-4,24,-14,38,-31,38v-5,0,-12,-2,-21,-6v-17,-7,-18,-7,-23,-7v-7,0,-11,5,-14,15r-15,0v3,-24,13,-38,31,-38v9,0,11,1,34,11v3,1,6,2,9,2v7,0,12,-5,15,-15","w":193},"\u00f6":{"d":"100,-179v50,0,83,36,83,92v0,58,-31,92,-83,92v-52,0,-86,-36,-86,-92v0,-57,33,-92,86,-92xm98,-155v-33,0,-54,27,-54,68v0,42,21,68,56,68v33,0,54,-26,54,-68v0,-42,-21,-68,-56,-68xm145,-238r0,34r-30,0r0,-34r30,0xm82,-238r0,34r-31,0r0,-34r31,0","w":196},"\u00f3":{"d":"100,-179v50,0,83,36,83,92v0,58,-31,92,-83,92v-52,0,-86,-36,-86,-92v0,-57,33,-92,86,-92xm98,-155v-33,0,-54,27,-54,68v0,42,21,68,56,68v33,0,54,-26,54,-68v0,-42,-21,-68,-56,-68xm143,-246r-40,48r-20,0r25,-48r35,0","w":196},"\u00f2":{"d":"100,-179v50,0,83,36,83,92v0,58,-31,92,-83,92v-52,0,-86,-36,-86,-92v0,-57,33,-92,86,-92xm98,-155v-33,0,-54,27,-54,68v0,42,21,68,56,68v33,0,54,-26,54,-68v0,-42,-21,-68,-56,-68xm55,-246r35,0r25,48r-20,0","w":196},"\u00f4":{"d":"100,-179v50,0,83,36,83,92v0,58,-31,92,-83,92v-52,0,-86,-36,-86,-92v0,-57,33,-92,86,-92xm98,-155v-33,0,-54,27,-54,68v0,42,21,68,56,68v33,0,54,-26,54,-68v0,-42,-21,-68,-56,-68xm149,-199r-29,0r-22,-32r-24,32r-26,0r34,-48r32,0","w":196},"\u00f5":{"d":"100,-179v50,0,83,36,83,92v0,58,-31,92,-83,92v-52,0,-86,-36,-86,-92v0,-57,33,-92,86,-92xm98,-155v-33,0,-54,27,-54,68v0,42,21,68,56,68v33,0,54,-26,54,-68v0,-42,-21,-68,-56,-68xm136,-244r16,0v-4,24,-14,38,-31,38v-5,0,-12,-2,-21,-6v-17,-7,-19,-7,-24,-7v-7,0,-11,5,-14,15r-15,0v3,-24,14,-38,32,-38v9,0,11,1,34,11v3,1,6,2,9,2v7,0,11,-5,14,-15","w":196},"\u00fc":{"d":"169,-174r0,174r-26,0r0,-27v-13,21,-35,32,-61,32v-21,0,-37,-7,-47,-20v-8,-10,-11,-23,-11,-46r0,-113r29,0r0,103v0,18,0,24,3,32v4,12,16,20,34,20v19,0,36,-10,45,-27v4,-9,6,-21,6,-44r0,-84r28,0xm144,-238r0,34r-30,0r0,-34r30,0xm81,-238r0,34r-31,0r0,-34r31,0","w":194},"\u00fa":{"d":"169,-174r0,174r-26,0r0,-27v-13,21,-35,32,-61,32v-21,0,-37,-7,-47,-20v-8,-10,-11,-23,-11,-46r0,-113r29,0r0,103v0,18,0,24,3,32v4,12,16,20,34,20v19,0,36,-10,45,-27v4,-9,6,-21,6,-44r0,-84r28,0xm141,-246r-40,48r-20,0r25,-48r35,0","w":194},"\u00f9":{"d":"169,-174r0,174r-26,0r0,-27v-13,21,-35,32,-61,32v-21,0,-37,-7,-47,-20v-8,-10,-11,-23,-11,-46r0,-113r29,0r0,103v0,18,0,24,3,32v4,12,16,20,34,20v19,0,36,-10,45,-27v4,-9,6,-21,6,-44r0,-84r28,0xm54,-246r35,0r25,48r-20,0","w":194},"\u00fb":{"d":"169,-174r0,174r-26,0r0,-27v-13,21,-35,32,-61,32v-21,0,-37,-7,-47,-20v-8,-10,-11,-23,-11,-46r0,-113r29,0r0,103v0,18,0,24,3,32v4,12,16,20,34,20v19,0,36,-10,45,-27v4,-9,6,-21,6,-44r0,-84r28,0xm148,-199r-29,0r-23,-32r-23,32r-26,0r34,-48r32,0","w":194},"\u00fd":{"d":"163,-174r-64,168v-15,39,-18,47,-24,56v-8,13,-20,20,-36,20v-5,0,-12,-1,-18,-2r-4,-1r0,-26v10,3,14,4,19,4v8,0,15,-4,20,-14v4,-7,6,-13,13,-32r-69,-173r32,0r39,102v3,9,6,17,13,40v7,-22,9,-29,14,-43r35,-99r30,0xm127,-246r-40,48r-20,0r25,-48r35,0","w":163},"\u00ff":{"d":"163,-174r-64,168v-15,39,-18,47,-24,56v-8,13,-20,20,-36,20v-5,0,-12,-1,-18,-2r-4,-1r0,-26v10,3,14,4,19,4v8,0,15,-4,20,-14v4,-7,6,-13,13,-32r-69,-173r32,0r39,102v3,9,6,17,13,40v7,-22,9,-29,14,-43r35,-99r30,0xm129,-238r0,34r-31,0r0,-34r31,0xm66,-238r0,34r-31,0r0,-34r31,0","w":163},"A":{"d":"132,-241r94,241r-35,0r-27,-74r-101,0r-27,74r-34,0r94,-241r36,0xm154,-99r-23,-64v-12,-31,-13,-37,-17,-49v-4,10,-5,14,-8,22r-10,25r-24,66r82,0","w":227},"B":{"d":"28,-240r96,0v26,0,39,2,51,8v20,10,32,30,32,52v0,23,-13,43,-35,51v10,3,15,5,21,9v17,11,25,28,25,49v0,28,-13,51,-37,63v-11,6,-24,8,-42,8r-111,0r0,-240xm59,-212r0,74r58,0v17,0,26,0,34,-3v15,-4,25,-17,25,-34v0,-17,-8,-30,-23,-35v-6,-2,-15,-2,-33,-2r-61,0xm59,-112r0,84r64,0v25,0,36,-1,45,-6v12,-6,18,-19,18,-35v0,-19,-9,-34,-27,-40v-7,-3,-20,-3,-42,-3r-58,0","w":232},"C":{"d":"199,-90r32,0v-5,60,-44,95,-104,95v-68,0,-111,-48,-111,-125v0,-39,12,-69,34,-93v20,-21,47,-33,80,-33v34,0,59,11,78,32v12,14,20,29,21,46r-32,0v-7,-31,-32,-51,-68,-51v-29,0,-51,12,-65,35v-10,17,-16,40,-16,64v0,60,31,98,81,98v41,0,65,-23,70,-68","w":243},"D":{"d":"28,-240r86,0v36,0,57,7,76,24v23,21,35,52,35,91v0,42,-11,75,-33,98v-20,20,-39,27,-75,27r-89,0r0,-240xm59,-212r0,184r52,0v33,0,48,-5,61,-20v15,-17,21,-41,21,-76v0,-58,-27,-88,-79,-88r-55,0","w":241},"E":{"d":"194,-240r0,28r-135,0r0,76r126,0r0,25r-126,0r0,83r137,0r0,28r-168,0r0,-240r166,0","w":210},"F":{"d":"185,-240r0,28r-126,0r0,76r111,0r0,25r-111,0r0,111r-31,0r0,-240r157,0","w":192},"G":{"d":"236,-127r0,127r-20,0r-5,-18r-2,-6r-2,-6v-20,24,-44,35,-77,35v-68,0,-114,-50,-114,-123v0,-76,46,-128,116,-128v56,0,96,32,101,80r-31,0v-5,-32,-33,-53,-70,-53v-52,0,-84,39,-84,100v0,59,32,97,84,97v30,0,55,-14,67,-39v5,-11,8,-23,8,-40r-76,0r0,-26r105,0","w":258},"H":{"d":"218,-240r0,240r-32,0r0,-112r-127,0r0,112r-31,0r0,-240r31,0r0,100r127,0r0,-100r32,0","w":245},"I":{"d":"59,-240r0,240r-31,0r0,-240r31,0","w":86},"J":{"d":"145,-240r0,163v0,29,-2,40,-9,53v-11,19,-32,29,-60,29v-32,0,-55,-12,-65,-34v-5,-10,-7,-23,-7,-41r0,-9r31,0r0,9v0,34,11,48,40,48v15,0,27,-5,32,-14v5,-8,6,-19,6,-41r0,-163r32,0","w":168},"K":{"d":"223,-240r-102,96r106,144r-41,0r-87,-122r-40,38r0,84r-31,0r0,-240r31,0r0,95r0,12r0,12r8,-8r8,-7r106,-104r42,0","w":223},"L":{"d":"187,-28r0,28r-159,0r0,-240r31,0r0,212r128,0","w":193},"M":{"d":"268,-240r0,240r-31,0r1,-108v1,-53,1,-74,4,-107v-10,28,-17,48,-22,61r-57,154r-28,0r-60,-152v-10,-26,-16,-44,-21,-60v3,40,4,57,4,103r0,109r-30,0r0,-240r43,0r56,146v14,36,16,42,22,61v8,-24,8,-25,21,-60r54,-147r44,0","w":295},"N":{"d":"220,-240r0,240r-35,0r-86,-130v-30,-46,-36,-57,-43,-71v1,13,1,21,1,33r1,47r0,121r-30,0r0,-240r34,0r90,137v19,30,31,47,40,65v-1,-17,-3,-70,-3,-82r0,-120r31,0","w":247},"O":{"d":"133,-246v67,0,113,51,113,125v0,76,-47,126,-116,126v-69,0,-114,-50,-114,-125v0,-76,46,-126,117,-126xm130,-219v-22,0,-43,9,-58,26v-16,17,-24,41,-24,72v0,60,33,99,83,99v50,0,82,-39,82,-98v0,-60,-32,-99,-83,-99","w":261},"P":{"d":"28,-240r95,0v28,0,42,3,56,13v18,13,28,32,28,56v0,27,-9,47,-28,60v-14,9,-26,12,-54,12r-66,0r0,99r-31,0r0,-240xm59,-212r0,88r62,0v18,0,29,-3,37,-9v10,-8,17,-21,17,-36v0,-16,-7,-30,-19,-37v-9,-5,-18,-6,-40,-6r-57,0","w":217},"Q":{"d":"242,0r-17,20r-36,-29v-17,9,-37,14,-59,14v-68,0,-114,-50,-114,-125v0,-75,46,-126,114,-126v69,0,116,50,116,125v0,40,-13,74,-36,96xm154,-69r32,26v19,-19,27,-45,27,-78v0,-59,-33,-98,-83,-98v-49,0,-82,39,-82,98v0,60,33,99,84,99v12,0,21,-1,32,-6r-26,-21","w":257},"R":{"d":"27,-240r110,0v22,0,35,2,47,10v19,12,29,32,29,55v0,30,-14,50,-41,59v12,2,20,8,27,18v7,13,7,13,11,57v2,21,4,31,9,37r3,4r-36,0v-5,-9,-6,-13,-7,-47v-2,-45,-15,-57,-57,-57r-63,0r0,104r-32,0r0,-240xm59,-212r0,82r59,0v24,0,36,-2,45,-7v12,-7,18,-19,18,-35v0,-18,-9,-31,-23,-36v-7,-3,-17,-4,-31,-4r-68,0","w":240},"S":{"d":"192,-170r-30,0v-4,-34,-23,-49,-60,-49v-34,0,-54,15,-54,40v0,11,4,20,12,25v11,6,20,9,53,16v33,7,48,12,61,21v18,12,28,29,28,50v0,22,-10,40,-27,54v-16,12,-37,18,-67,18v-63,0,-99,-30,-99,-84r31,0v1,38,26,57,71,57v37,0,59,-16,59,-43v0,-18,-11,-29,-33,-37v-10,-4,-10,-3,-51,-12v-28,-6,-39,-11,-49,-19v-13,-10,-20,-25,-20,-44v0,-42,33,-69,85,-69v57,0,88,27,90,76","w":216},"T":{"d":"198,-240r0,28r-80,0r0,212r-32,0r0,-212r-81,0r0,-28r193,0","w":203},"U":{"d":"217,-240r0,140v0,40,-3,55,-17,73v-16,22,-41,32,-78,32v-42,0,-69,-11,-85,-38v-10,-16,-13,-32,-13,-67r0,-140r32,0r0,140v0,31,1,40,8,53v9,17,30,25,58,25v27,0,46,-8,55,-23v7,-12,9,-25,9,-55r0,-140r31,0","w":241},"V":{"d":"210,-240r-86,240r-36,0r-86,-240r35,0r51,151r12,38v1,5,3,12,6,24v3,-12,11,-39,19,-62r51,-151r34,0","w":212},"W":{"d":"308,-240r-64,240r-33,0r-41,-147v-7,-28,-12,-50,-14,-63v-6,25,-8,34,-16,61r-40,149r-34,0r-62,-240r32,0r36,147v5,23,10,45,13,60v1,-10,6,-33,14,-61r40,-146r35,0r41,150v7,27,11,44,13,57v2,-14,5,-29,12,-57r36,-150r32,0","w":312},"X":{"d":"203,-240r-80,116r84,124r-38,0r-49,-75v-5,-8,-13,-19,-16,-25r-17,25r-50,75r-36,0r84,-124r-79,-116r38,0r41,63v10,17,10,17,14,23v2,4,3,5,5,9v5,-8,14,-22,21,-32r42,-63r36,0","w":208},"Y":{"d":"214,-240r-92,142r0,98r-32,0r0,-98r-94,-142r39,0r56,90r7,11v3,4,5,8,9,14v5,-10,7,-12,15,-25r56,-90r36,0","w":210},"Z":{"d":"197,-240r0,26r-136,170v-2,3,-4,5,-7,8v-3,3,-5,6,-8,9v34,-1,37,-1,44,-1r111,0r0,28r-192,0r0,-27r138,-171r8,-9r6,-6v-17,1,-26,1,-43,1r-97,0r0,-28r176,0","w":209},"\u00c6":{"d":"302,-240r0,28r-118,0r0,76r112,0r0,25r-112,0r0,83r121,0r0,28r-152,0r0,-71r-83,0r-35,71r-36,0r122,-240r181,0xm153,-96r0,-117r-14,0r-56,117r70,0","w":318},"\u00d8":{"d":"10,-8r29,-31v-16,-22,-23,-48,-23,-81v0,-75,46,-126,115,-126v30,0,54,9,74,26r26,-29r15,14r-27,30v19,26,27,50,27,84v0,76,-47,126,-116,126v-31,0,-55,-9,-77,-29r-28,30xm60,-62r125,-136v-14,-13,-33,-21,-55,-21v-50,0,-82,39,-82,98v0,23,3,42,12,59xm198,-182r-126,136v17,16,36,24,59,24v50,0,82,-39,82,-98v0,-24,-4,-43,-15,-62","w":261},"\u00c7":{"d":"199,-91r32,0v-4,56,-45,95,-99,96r-11,16v6,-1,9,-2,12,-2v16,0,28,10,28,23v0,18,-16,31,-40,31v-10,0,-18,-1,-32,-6r5,-13v8,3,16,5,24,5v10,0,17,-6,17,-14v0,-8,-6,-13,-16,-13v-4,0,-8,1,-14,3r-5,-7r18,-23v-26,-1,-51,-12,-69,-31v-22,-24,-33,-54,-33,-94v0,-39,11,-69,33,-93v20,-22,47,-33,82,-33v33,0,58,11,77,32v12,14,19,29,21,46r-32,0v-2,-11,-8,-22,-17,-31v-12,-13,-29,-20,-50,-20v-49,0,-82,39,-82,98v0,26,6,49,18,67v15,22,34,32,63,32v24,0,43,-8,55,-25v9,-13,14,-28,15,-44","w":243},"\u00d0":{"d":"28,-240r86,0v36,0,57,6,76,23v23,20,35,53,35,92v0,42,-11,75,-33,98v-20,20,-39,27,-75,27r-89,0r0,-113r-24,0r0,-24r24,0r0,-103xm59,-213r0,76r63,0r0,24r-63,0r0,85r52,0v33,0,48,-5,61,-20v15,-17,21,-40,21,-75v0,-59,-27,-90,-79,-90r-55,0","w":241},"\u00de":{"d":"28,-240r31,0r0,36r64,0v28,0,42,3,56,12v19,13,28,32,28,57v0,27,-9,47,-28,60v-14,9,-26,12,-54,12r-66,0r0,63r-31,0r0,-240xm59,-177r0,89r62,0v18,0,29,-3,37,-9v10,-8,17,-21,17,-36v0,-17,-7,-29,-19,-37v-9,-5,-18,-7,-40,-7r-57,0","w":218},"a":{"d":"175,-23r0,22v-7,3,-14,4,-21,4v-16,0,-24,-9,-24,-26v-17,19,-37,28,-64,28v-34,0,-55,-19,-55,-49v0,-23,11,-40,34,-49v11,-4,13,-4,52,-9v23,-3,31,-9,31,-23v0,-21,-13,-30,-39,-30v-28,0,-40,10,-43,35r-28,0v1,-37,28,-59,73,-59v23,0,43,6,54,17v9,9,12,18,12,46v0,12,-1,53,-1,67r0,11v0,12,3,17,11,17v3,0,5,-1,8,-2xm128,-64r0,-26v-8,6,-13,7,-38,10v-20,3,-27,4,-35,8v-9,5,-15,14,-15,25v0,18,14,30,35,30v19,0,38,-10,48,-24v4,-6,5,-10,5,-23","w":182},"b":{"d":"54,-240r0,90v12,-19,31,-29,57,-29v48,0,78,36,78,91v0,57,-31,93,-80,93v-27,0,-47,-10,-57,-30r0,25r-27,0r0,-240r29,0xm106,-155v-14,0,-28,6,-37,16v-11,12,-16,30,-16,53v0,42,21,67,54,67v32,0,53,-27,53,-68v0,-42,-21,-68,-54,-68","w":203},"c":{"d":"144,-63r29,0v-6,43,-34,68,-76,68v-51,0,-83,-35,-83,-90v0,-58,33,-94,84,-94v42,0,69,23,74,62r-30,0v-5,-24,-20,-38,-44,-38v-33,0,-54,26,-54,68v0,42,19,68,52,68v26,0,44,-16,48,-44","w":182},"d":{"d":"179,-240r0,240r-27,0r0,-26v-9,19,-30,31,-57,31v-49,0,-81,-35,-81,-92v0,-29,8,-51,22,-67v14,-16,35,-25,57,-25v27,0,47,10,57,29r0,-90r29,0xm96,-155v-32,0,-52,27,-52,67v0,42,21,69,54,69v33,0,53,-26,53,-67v0,-24,-5,-41,-16,-53v-10,-10,-24,-16,-39,-16","w":203},"e":{"d":"145,-56r28,0v-9,41,-35,61,-76,61v-51,0,-83,-35,-83,-91v0,-55,34,-93,82,-93v33,0,59,18,71,48v5,13,8,28,8,51r-131,0v1,41,20,61,55,61v24,0,38,-11,46,-37xm44,-103r101,0v-3,-32,-21,-52,-50,-52v-29,0,-47,18,-51,52","w":187},"f":{"d":"98,-241r0,25v-7,-1,-11,-2,-17,-2v-17,0,-22,5,-22,24r0,20r34,0r0,24r-34,0r0,150r-28,0r0,-150r-29,0r0,-24r29,0r0,-11v0,-25,2,-32,8,-41v8,-11,20,-16,38,-16v6,0,12,0,21,1","w":100},"g":{"d":"174,-174r0,155v0,28,-3,44,-12,58v-12,21,-37,32,-69,32v-43,0,-69,-18,-73,-51r29,0v3,19,18,29,45,29v35,0,51,-19,51,-58r0,-21v-13,22,-29,32,-55,32v-46,0,-76,-34,-76,-88v0,-55,32,-93,78,-93v25,0,41,9,55,30r0,-25r27,0xm93,-155v-31,0,-50,26,-50,67v0,41,20,66,51,66v31,0,51,-27,51,-69v0,-40,-20,-64,-52,-64","w":199},"h":{"d":"54,-240r0,70v0,3,0,3,-1,21v13,-20,32,-30,58,-30v25,0,43,9,52,26v5,9,7,20,7,40r0,113r-29,0r0,-109v0,-18,-1,-26,-6,-32v-6,-9,-18,-14,-32,-14v-21,0,-37,10,-44,28v-4,10,-5,18,-5,45r0,82r-29,0r0,-240r29,0","w":193},"i":{"d":"54,-240r0,35r-29,0r0,-35r29,0xm54,-174r0,174r-29,0r0,-174r29,0","w":78},"j":{"d":"54,-174r0,178v0,33,-1,40,-6,49v-6,12,-19,17,-38,17v-4,0,-7,0,-13,-1r0,-24v5,1,7,1,11,1v12,0,16,-4,17,-14v1,-9,1,-14,1,-27r0,-179r28,0xm54,-240r0,35r-28,0r0,-35r28,0","w":78},"k":{"d":"172,-174r-69,63r74,111r-36,0r-60,-91r-27,25r0,66r-29,0r0,-240r29,0r0,118r0,25r12,-12r68,-65r38,0","w":179},"l":{"d":"54,-240r0,240r-29,0r0,-240r29,0","w":78},"m":{"d":"52,-174r0,25v16,-22,33,-30,57,-30v24,0,39,10,48,31v15,-21,33,-31,58,-31v20,0,37,8,46,22v6,9,8,19,8,37r0,120r-28,0r0,-109v0,-15,-1,-25,-4,-30v-5,-10,-16,-16,-31,-16v-19,0,-35,10,-41,27v-3,7,-4,15,-4,36r0,92r-28,0r0,-112v0,-14,-1,-22,-4,-28v-4,-9,-15,-15,-28,-15v-19,0,-36,10,-43,27v-3,8,-4,18,-4,36r0,92r-29,0r0,-174r27,0","w":293},"n":{"d":"52,-174r0,27v15,-23,34,-32,61,-32v23,0,40,9,49,25v5,10,8,21,8,42r0,112r-29,0r0,-102v0,-19,0,-25,-3,-33v-5,-12,-18,-20,-35,-20v-20,0,-36,10,-43,26v-5,10,-6,22,-6,45r0,84r-29,0r0,-174r27,0","w":193},"o":{"d":"100,-179v50,0,83,36,83,92v0,58,-31,92,-83,92v-52,0,-86,-36,-86,-92v0,-57,33,-92,86,-92xm98,-155v-33,0,-54,27,-54,68v0,42,21,68,56,68v33,0,54,-26,54,-68v0,-42,-21,-68,-56,-68","w":196},"p":{"d":"52,-174r0,25v14,-21,32,-30,58,-30v49,0,80,36,80,93v0,54,-31,91,-78,91v-26,0,-44,-9,-58,-29r0,92r-29,0r0,-242r27,0xm106,-155v-33,0,-53,27,-53,68v0,42,20,68,54,68v32,0,54,-27,54,-67v0,-42,-22,-69,-55,-69","w":203},"q":{"d":"179,-174r0,242r-29,0r0,-92v-14,21,-31,29,-58,29v-47,0,-77,-36,-77,-91v0,-58,31,-93,80,-93v27,0,45,9,57,30r0,-25r27,0xm96,-155v-32,0,-52,28,-52,69v0,41,21,67,53,67v34,0,55,-26,55,-69v0,-41,-21,-67,-56,-67","w":203},"r":{"d":"117,-179r0,30v-4,0,-8,-1,-10,-1v-14,0,-28,5,-37,15v-13,13,-16,28,-16,67r0,68r-29,0r0,-174r27,0r0,36v12,-28,34,-42,65,-41","w":116},"s":{"d":"148,-123r-29,0v-3,-22,-16,-32,-42,-32v-22,0,-36,9,-36,24v0,15,6,19,46,28v28,6,41,10,52,18v10,7,16,20,16,34v0,34,-29,56,-73,56v-47,0,-73,-21,-74,-60r28,0v3,24,17,36,46,36v26,0,43,-12,43,-29v0,-15,-8,-21,-43,-29v-39,-9,-40,-10,-50,-15v-13,-6,-20,-21,-20,-36v0,-31,25,-51,66,-51v25,0,45,7,57,21v8,9,12,18,13,35","w":167},"t":{"d":"91,-174r0,24r-34,0r0,102v0,23,3,27,19,27v6,0,9,0,15,-2r0,24v-8,1,-14,2,-22,2v-21,0,-32,-4,-37,-16v-3,-7,-4,-7,-4,-51r0,-86r-29,0r0,-24r29,0r0,-52r29,0r0,52r34,0","w":101},"u":{"d":"169,-174r0,174r-26,0r0,-27v-13,21,-35,32,-61,32v-21,0,-37,-7,-47,-20v-8,-10,-11,-23,-11,-46r0,-113r29,0r0,103v0,18,0,24,3,32v4,12,16,20,34,20v19,0,36,-10,45,-27v4,-9,6,-21,6,-44r0,-84r28,0","w":194},"v":{"d":"159,-174r-63,174r-31,0r-65,-174r32,0r31,88v7,19,13,38,19,58v3,-12,4,-16,7,-25v4,-12,7,-23,11,-35r29,-86r30,0","w":159},"w":{"d":"246,-174r-56,174r-30,0r-26,-95v-4,-16,-6,-22,-11,-43v-4,21,-6,26,-10,43r-24,95r-31,0r-56,-174r31,0r25,83v7,23,8,31,15,59v7,-31,10,-44,14,-59r21,-83r32,0r25,93v4,14,6,24,11,49v5,-24,8,-32,13,-49r27,-93r30,0","w":247},"x":{"d":"160,-174r-60,80r67,94r-36,0r-38,-55r-3,-5r-8,-12v-2,3,-3,6,-5,9r-6,8r-37,55r-35,0r65,-91r-60,-83r36,0r28,39v3,4,5,8,14,22v9,-13,11,-17,15,-22r29,-39r34,0","w":166},"y":{"d":"163,-174r-64,168v-15,39,-18,47,-24,56v-8,13,-20,20,-36,20v-5,0,-12,-1,-18,-2r-4,-1r0,-26v10,3,14,4,19,4v8,0,15,-4,20,-14v4,-7,6,-13,13,-32r-69,-173r32,0r39,102v3,9,6,17,13,40v7,-22,9,-29,14,-43r35,-99r30,0","w":163},"z":{"d":"151,-174r0,19r-93,116v-2,3,-5,6,-7,8r-7,8r22,0r89,0r0,23r-147,0r0,-21r91,-114v4,-4,5,-4,15,-15r-16,0r-83,0r0,-24r136,0","w":158},"\u00e6":{"d":"253,-55r29,0v-9,38,-37,60,-77,60v-30,0,-51,-12,-62,-35v-14,24,-36,35,-70,35v-38,0,-62,-19,-62,-51v0,-17,8,-32,22,-41v9,-6,26,-10,49,-13v46,-5,48,-6,48,-25v0,-19,-14,-29,-40,-29v-18,0,-31,5,-38,15v-4,5,-5,9,-6,20r-28,0v2,-19,7,-29,17,-39v13,-13,33,-21,57,-21v30,0,49,9,58,27v11,-17,31,-27,56,-27v49,0,77,33,77,90r0,9r-126,0r0,3v0,35,19,58,50,58v23,0,38,-12,46,-36xm157,-103r97,0v-2,-32,-21,-51,-49,-51v-17,0,-33,8,-41,22v-4,7,-6,15,-7,29xm130,-62r0,-28v-8,6,-13,7,-43,10v-36,4,-47,13,-47,32v0,19,14,31,37,31v15,0,29,-5,39,-14v9,-8,14,-16,14,-31","w":296},"\u00f8":{"d":"9,-4r22,-24v-12,-17,-17,-35,-17,-59v0,-55,33,-92,84,-92v22,0,40,6,54,18r19,-22r14,12r-20,23v12,17,17,35,17,61v0,57,-32,92,-83,92v-23,0,-41,-6,-56,-19r-21,23xm50,-50r84,-91v-10,-9,-22,-14,-36,-14v-33,0,-55,26,-55,67v0,14,2,29,7,38xm145,-127r-84,93v10,10,23,15,38,15v33,0,54,-26,54,-68v0,-16,-2,-29,-8,-40","w":196},"\u00df":{"d":"80,3r0,-24v5,1,7,1,11,1v32,0,52,-19,52,-52v0,-33,-18,-49,-55,-49r-8,0r0,-23v19,0,24,-1,32,-5v13,-6,19,-18,19,-34v0,-22,-15,-37,-38,-37v-15,0,-27,6,-33,16v-5,9,-6,16,-6,42r0,162r-29,0r0,-157v0,-37,2,-47,11,-60v11,-17,32,-27,57,-27v41,0,68,23,68,59v0,24,-14,45,-35,50v29,5,46,28,46,62v0,24,-9,44,-26,59v-14,12,-31,18,-53,18v-5,0,-8,0,-13,-1","w":186},"\u00e7":{"d":"145,-64r28,0v-4,41,-35,69,-76,68r-12,16v5,-1,7,-1,11,-1v18,0,29,9,29,23v0,19,-16,31,-40,31v-11,0,-21,-2,-33,-7r6,-12v7,3,14,4,23,4v11,0,18,-5,18,-13v0,-8,-6,-13,-17,-13v-4,0,-8,1,-13,2r-5,-6r19,-24v-44,-6,-69,-40,-69,-91v0,-56,33,-93,84,-93v26,0,47,9,60,26v8,10,12,20,14,36r-30,0v-5,-25,-20,-38,-45,-38v-20,0,-33,8,-43,24v-7,12,-10,26,-10,43v0,43,20,69,53,69v26,0,42,-14,48,-44","w":182},"\u00f0":{"d":"70,-207r27,-11r-15,-24r21,-8r14,23r30,-13r8,17r-28,12r29,46v21,33,27,51,27,78v0,56,-33,92,-84,92v-51,0,-85,-36,-85,-92v0,-54,33,-92,81,-92v8,0,14,1,26,4r-15,-27r-28,12xm98,-155v-33,0,-54,27,-54,68v0,42,21,68,56,68v33,0,54,-26,54,-68v0,-42,-21,-68,-56,-68","w":196},"\u00fe":{"d":"54,-240r0,90v13,-21,30,-29,56,-29v48,0,80,37,80,93v0,54,-31,90,-78,90v-26,0,-45,-9,-58,-28r0,91r-29,0r0,-307r29,0xm106,-155v-33,0,-53,26,-53,67v0,42,20,68,54,68v32,0,54,-26,54,-66v0,-42,-22,-69,-55,-69","w":203},"1":{"d":"129,-240r0,240r-31,0r0,-174r-18,0r-17,0r-18,0r-8,0r0,-21v42,0,62,-13,70,-45r22,0"},"2":{"d":"174,-26r0,26r-156,0v3,-46,20,-70,71,-101v26,-16,37,-24,44,-33v9,-10,13,-23,13,-36v0,-27,-19,-45,-46,-45v-29,0,-45,21,-46,61r-29,0v0,-3,-1,-7,-1,-8v0,-22,9,-44,23,-58v13,-14,32,-20,55,-20v45,0,74,28,74,70v0,21,-7,39,-21,54v-11,12,-22,19,-50,36v-37,22,-49,33,-54,54r7,0r5,0r111,0"},"3":{"d":"48,-162r-28,0v1,-50,28,-78,75,-78v42,0,71,25,71,62v0,23,-12,41,-33,50v27,7,43,28,43,57v0,45,-33,76,-82,76v-49,0,-80,-30,-80,-76r0,-4r29,0v1,35,20,55,52,55v30,0,52,-20,52,-48v0,-14,-6,-27,-16,-35v-10,-8,-20,-11,-38,-11v-6,0,-10,0,-15,1r0,-24v5,0,6,1,9,1v30,0,49,-16,49,-40v0,-23,-17,-39,-42,-39v-29,0,-45,20,-46,53"},"4":{"d":"176,-82r0,24r-32,0r0,58r-27,0r0,-58r-104,0r0,-27r108,-155r23,0r0,158r32,0xm117,-82r0,-68v0,-23,1,-30,1,-50v-4,7,-9,14,-14,21v-3,4,-6,9,-9,14v-3,5,-1,3,-4,7r-31,44v-4,4,-8,9,-12,15r-12,17r28,0r53,0"},"5":{"d":"162,-235r0,25r-96,0r-9,44v-3,14,-3,15,-6,27v12,-13,27,-18,48,-18v45,0,76,31,76,78v0,49,-33,84,-82,84v-45,0,-77,-27,-78,-69r29,0v2,26,22,43,49,43v30,0,52,-24,52,-56v0,-33,-21,-55,-52,-55v-20,0,-36,7,-47,23r-24,-2r22,-124r118,0"},"6":{"d":"171,-178r-28,0v-4,-25,-18,-38,-41,-38v-24,0,-40,14,-49,43v-4,13,-6,22,-8,50v13,-20,33,-31,59,-31v44,0,74,31,74,76v0,49,-32,83,-78,83v-29,0,-54,-14,-67,-38v-11,-19,-16,-46,-16,-82v0,-81,30,-125,86,-125v40,0,65,22,68,62xm99,-129v-28,0,-49,22,-49,53v0,33,21,56,50,56v28,0,48,-23,48,-55v0,-33,-18,-54,-49,-54"},"7":{"d":"177,-235r0,25r-2,3r-9,10v-45,53,-73,123,-80,197r-32,0v5,-69,40,-148,91,-204r3,-4r-30,1r-95,0r0,-28r154,0"},"8":{"d":"58,-128v-21,-9,-33,-28,-33,-51v0,-36,29,-61,71,-61v41,0,71,25,71,60v0,24,-11,42,-33,52v28,10,42,29,42,58v0,46,-31,75,-81,75v-48,0,-79,-29,-79,-73v0,-29,16,-52,42,-60xm95,-215v-24,0,-40,16,-40,38v0,23,16,38,41,38v24,0,41,-15,41,-38v0,-23,-16,-38,-42,-38xm95,-116v-29,0,-49,21,-49,48v0,28,21,48,50,48v30,0,50,-20,50,-48v0,-28,-20,-48,-51,-48"},"9":{"d":"20,-58r29,0v3,24,19,38,43,38v34,0,54,-34,54,-94v-15,23,-33,33,-59,33v-43,0,-72,-32,-72,-78v0,-48,32,-81,78,-81v34,0,59,16,72,47v8,18,10,38,10,70v0,81,-30,128,-84,128v-40,0,-69,-26,-71,-63xm92,-215v-28,0,-47,23,-47,56v0,32,18,53,47,53v30,0,49,-21,49,-53v0,-34,-19,-56,-49,-56"},"0":{"d":"97,-240v32,0,55,15,67,43v8,19,12,43,12,83v0,35,-4,57,-12,76v-12,28,-35,43,-67,43v-34,0,-58,-15,-70,-43v-8,-19,-11,-40,-11,-76v0,-41,3,-66,11,-84v13,-28,36,-42,70,-42xm95,-215v-21,0,-36,11,-42,32v-4,14,-7,39,-7,68v0,26,2,48,7,62v6,21,22,33,43,33v21,0,37,-12,43,-33v5,-15,7,-35,7,-63v0,-31,-2,-51,-7,-66v-7,-22,-22,-33,-44,-33"},"\u00a3":{"d":"181,-163r-29,0v-2,-34,-19,-52,-50,-52v-27,0,-48,16,-48,40v0,12,4,22,12,37r5,11r1,2r56,0r0,20r-46,0v3,9,4,14,4,20v0,21,-8,36,-34,59r-4,4v18,-9,25,-11,38,-11v12,0,14,1,41,9v4,1,10,2,15,2v11,0,23,-4,32,-12r14,22v-11,10,-29,17,-47,17v-12,0,-15,-1,-38,-9v-13,-4,-23,-6,-32,-6v-12,0,-18,3,-35,14r-15,-24v26,-19,37,-37,37,-59v0,-9,-2,-16,-7,-26r-32,0r0,-20r22,0v-13,-21,-17,-32,-17,-49v0,-39,32,-66,78,-66v49,0,79,29,79,77"},"$":{"d":"12,-73r28,0v0,33,15,51,45,52r0,-91v-45,-8,-69,-29,-69,-64v0,-37,27,-62,69,-64r0,-29r18,0r0,29v40,3,64,26,64,63r-28,0v-2,-26,-13,-39,-36,-40r0,82v29,7,35,11,45,17v18,12,26,29,26,53v0,25,-12,45,-33,57v-10,6,-19,10,-38,11r0,36r-18,0r0,-36v-47,-2,-72,-29,-73,-76xm103,-108r0,87v25,0,43,-18,43,-42v0,-25,-13,-39,-43,-45xm85,-139r0,-78v-26,1,-41,15,-41,39v0,22,13,34,41,39"},"\u00a2":{"d":"148,-98r28,0v-3,38,-32,67,-67,67r0,36r-18,0r0,-36v-44,-2,-72,-38,-72,-91v0,-52,27,-87,72,-92r0,-29r18,0r0,29v37,1,64,26,67,62r-30,0v-3,-21,-18,-36,-37,-38r0,135v19,-1,36,-19,39,-43xm91,-55r0,-134v-26,4,-42,29,-42,66v0,39,16,64,42,68"},"\u00a5":{"d":"131,-136r41,0r0,20r-52,0r-9,18r0,20r54,0r0,20r-54,0r0,58r-29,0r0,-58r-55,0r0,-20r55,0r0,-20r-10,-18r-53,0r0,-20r43,0r-53,-99r33,0r55,110r55,-110r31,0"},"\u00b9":{"d":"86,-240r0,144r-23,0r0,-103r-9,0r-11,0r-11,0r-6,0r0,-15v27,0,38,-7,43,-26r17,0","w":127},"\u00b2":{"d":"114,-113r0,17r-101,0v2,-29,13,-44,46,-62v28,-17,35,-24,35,-39v0,-15,-11,-26,-28,-26v-18,0,-27,12,-28,36r-20,0v0,-34,17,-53,49,-53v29,0,48,16,48,42v0,22,-10,34,-46,55v-23,13,-30,18,-34,30r79,0","w":127},"\u00b3":{"d":"34,-192r-20,0v1,-31,18,-48,49,-48v27,0,46,15,46,38v0,13,-6,22,-19,29v17,6,25,17,25,34v0,27,-21,46,-53,46v-31,0,-51,-19,-51,-46r0,-4r20,0v1,21,12,32,32,32v18,0,31,-11,31,-26v0,-16,-12,-26,-32,-26v-5,0,-7,0,-11,1r0,-17r7,0v18,0,29,-8,29,-22v0,-13,-10,-22,-25,-22v-18,0,-28,11,-28,31","w":127},".":{"d":"64,-37r0,37r-39,0r0,-37r39,0","w":89},":":{"d":"71,-37r0,37r-40,0r0,-37r40,0xm71,-174r0,38r-40,0r0,-38r40,0","w":95},"\u00b7":{"d":"64,-108r0,37r-39,0r0,-37r39,0","w":89},",":{"d":"64,-36r0,22v0,24,-2,35,-10,45v-7,9,-16,16,-28,19r0,-17v13,-4,19,-15,19,-33r-19,0r0,-36r38,0","w":89},";":{"d":"70,-174r0,36r-38,0r0,-36r38,0xm70,-36r0,22v0,21,-2,31,-8,41v-7,12,-16,20,-30,23r0,-17v13,-5,19,-16,19,-33r-19,0r0,-36r38,0","w":95},"!":{"d":"71,-240r0,74r-9,106r-15,0r-8,-106r0,-74r32,0xm72,-34r0,34r-35,0r0,-34r35,0","w":102},"\u00a1":{"d":"32,66r0,-74r8,-106r15,0r8,106r0,74r-31,0xm30,-140r0,-34r35,0r0,34r-35,0","w":102},"?":{"d":"46,-166r-28,0v1,-23,4,-36,13,-49v13,-20,36,-31,63,-31v43,0,71,26,71,65v0,17,-4,29,-13,41v-5,7,-6,9,-26,28v-17,15,-20,25,-20,53r-28,0v1,-40,5,-47,38,-80v14,-14,19,-24,19,-39v0,-25,-16,-42,-41,-42v-30,0,-45,18,-48,54xm110,-34r0,34r-36,0r0,-34r36,0","w":179},"\u00bf":{"d":"134,-8r28,0v-1,24,-4,36,-13,49v-13,20,-36,31,-63,31v-43,0,-72,-26,-72,-66v0,-16,4,-29,13,-41v5,-7,7,-8,27,-27v17,-15,19,-24,19,-53r28,0v-1,40,-4,47,-37,80v-14,14,-19,25,-19,40v0,25,16,41,41,41v30,0,45,-17,48,-54xm70,-140r0,-34r36,0r0,34r-36,0","w":179},"\u00bb":{"d":"87,-145r52,42r0,28r-52,41r0,-29r34,-26r-34,-26r0,-30xm22,-144r51,41r0,28r-51,40r0,-28r33,-26r-33,-26r0,-29","w":156},"\u00ab":{"d":"135,-145r0,29r-34,26r34,27r0,28r-51,-40r0,-29xm69,-145r0,29r-34,26r34,26r0,30r-52,-42r0,-28","w":156},"\/":{"d":"132,-240r-122,308r-24,0r123,-308r23,0","w":145},"-":{"d":"82,-104r0,29r-82,0r0,-29r82,0","w":81},"\u00ad":{"d":"82,-104r0,29r-82,0r0,-29r82,0","w":81},"(":{"d":"67,-240r22,0v-29,44,-45,100,-45,155v0,54,16,107,45,153r-22,0v-2,-3,-2,-2,-9,-14v-31,-49,-44,-91,-44,-139v0,-55,19,-110,53,-155","w":105},")":{"d":"39,68r-22,0v29,-45,45,-99,45,-155v0,-54,-16,-107,-45,-153r22,0v1,3,2,2,9,14v31,49,43,90,43,138v0,55,-18,111,-52,156","w":105},"[":{"d":"89,-240r0,23r-36,0r0,262r36,0r0,23r-63,0r0,-308r63,0","w":105},"]":{"d":"17,68r0,-23r36,0r0,-262r-36,0r0,-23r63,0r0,308r-63,0","w":105},"&":{"d":"163,-114r27,0v-1,19,-8,49,-16,60r46,54r-37,0r-26,-30v-3,5,-9,11,-16,17v-14,12,-32,18,-54,18v-44,0,-73,-27,-73,-68v0,-22,9,-39,27,-53v10,-8,22,-15,30,-19v-18,-22,-27,-39,-27,-56v0,-30,23,-51,56,-51v33,0,55,20,55,50v0,25,-15,47,-44,63r44,53v4,-10,7,-28,8,-38xm96,-148v22,-13,31,-25,31,-41v0,-17,-11,-29,-27,-29v-16,0,-28,11,-28,26v0,11,5,22,23,43xm86,-116r-2,1v-29,17,-40,30,-40,51v0,24,20,45,46,45v20,0,35,-10,51,-31","w":225},"\u00a7":{"d":"159,-181r-28,0v-2,-24,-14,-36,-35,-36v-19,0,-32,11,-32,27v0,10,5,18,16,26v5,4,6,4,42,25v44,26,55,38,55,63v0,23,-12,40,-35,50v14,13,19,23,19,40v0,31,-27,54,-63,54v-40,0,-65,-24,-67,-63r29,0v2,25,15,39,39,39v19,0,32,-12,32,-29v0,-15,-9,-24,-53,-49v-35,-20,-41,-25,-50,-34v-9,-10,-13,-21,-13,-36v0,-24,15,-44,36,-49v-10,-11,-16,-22,-16,-35v0,-32,25,-53,62,-53v39,0,62,23,62,60xm67,-139v-16,7,-25,18,-25,32v0,10,4,18,15,26v8,6,8,6,41,25v9,5,13,8,27,17v15,-6,24,-19,24,-32v0,-18,-8,-23,-70,-59v-7,-4,-9,-6,-12,-9"},"*":{"d":"147,-199r-36,13r22,30r-14,11r-24,-32r-22,32r-15,-11r22,-30r-35,-13r5,-16r36,13r0,-38r19,0r0,38r35,-13"},"'":{"d":"35,-144r-14,0r-5,-96r24,0","w":56},"\"":{"d":"96,-144r-14,0r-4,-96r23,0xm35,-144r-14,0r-5,-96r24,0","w":117},"@":{"d":"229,-63r19,0v-8,18,-15,27,-30,39v-23,18,-52,29,-80,29v-68,0,-122,-54,-122,-122v0,-69,55,-123,124,-123v62,0,111,44,111,101v0,28,-11,52,-32,69v-14,12,-32,19,-46,19v-13,0,-23,-7,-26,-17v-13,12,-25,17,-39,17v-24,0,-40,-20,-40,-47v0,-43,35,-85,70,-85v15,0,27,6,33,18r5,-13r24,0r-30,88v-3,8,-3,11,-3,14v0,6,3,9,10,9v11,0,24,-6,35,-17v14,-15,22,-33,22,-54v0,-48,-42,-86,-94,-86v-60,0,-106,47,-106,107v0,59,46,105,105,105v37,0,72,-20,90,-51xm150,-105r8,-22v3,-9,4,-14,4,-19v0,-12,-8,-21,-19,-21v-24,0,-50,39,-50,76v0,15,7,24,19,24v16,0,29,-12,38,-38","w":266},"#":{"d":"129,-81r-9,68r-20,0r10,-68r-40,0r-10,68r-19,0r10,-68r-42,0r2,-18r43,0r5,-39r-42,0r2,-18r43,0r9,-63r18,0r-8,63r40,0r9,-63r18,0r-8,63r44,0r-3,18r-44,0r-6,39r45,0r-3,18r-44,0xm118,-138r-40,0r-5,39r40,0"},"\u00b0":{"d":"70,-240v28,0,52,24,52,53v0,30,-23,53,-53,53v-30,0,-53,-24,-53,-53v0,-30,24,-53,54,-53xm68,-224v-19,0,-35,17,-35,37v0,21,16,37,36,37v20,0,37,-16,37,-36v0,-21,-17,-38,-38,-38","w":138},"+":{"d":"18,-129r67,0r0,-66r22,0r0,66r67,0r0,22r-67,0r0,67r-22,0r0,-67r-67,0r0,-22"},"\u00d7":{"d":"28,-66r52,-52r-52,-51r17,-16r51,51r51,-51r16,16r-51,51r51,52r-16,16r-51,-52r-51,52"},"\u00f7":{"d":"96,-194v11,0,20,10,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm96,-81v11,0,20,10,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm18,-129r156,0r0,22r-156,0r0,-22"},"=":{"d":"18,-102r156,0r0,23r-156,0r0,-23xm18,-156r156,0r0,23r-156,0r0,-23"},"\u00b6":{"d":"80,68r0,-182v-16,0,-19,-1,-29,-4v-24,-9,-38,-30,-38,-58v0,-24,10,-45,29,-55v11,-6,26,-9,46,-9r85,0r0,19r-15,0r0,289r-24,0r0,-289r-31,0r0,289r-23,0"},"\u00a4":{"d":"30,-51r20,-20v-14,-19,-18,-32,-18,-53v0,-22,4,-37,18,-54r-20,-20r15,-16r21,20v17,-13,34,-19,55,-19v20,0,35,6,53,19r20,-20r15,16r-20,19v14,18,20,33,20,55v0,21,-5,35,-19,53r20,20r-15,16r-20,-20v-18,14,-33,19,-55,19v-21,0,-36,-5,-54,-19r-21,20xm120,-189v-35,0,-64,30,-64,65v0,36,29,64,65,64v36,0,64,-29,64,-65v0,-35,-29,-64,-65,-64","w":240},"{":{"d":"53,-179r0,52v0,23,-5,33,-20,41v15,8,20,19,20,42r0,51v0,30,7,38,34,38r0,23r-2,0v-28,0,-40,-4,-49,-13v-8,-9,-11,-20,-11,-41r0,-54v0,-21,-5,-31,-20,-35r0,-24v15,-4,20,-13,20,-32r0,-60v0,-18,4,-30,12,-38v9,-9,21,-11,48,-11r2,0r0,23v-27,1,-34,9,-34,38","w":105},"}":{"d":"53,7r0,-52v0,-23,4,-33,19,-41v-15,-8,-19,-19,-19,-42r0,-51v0,-30,-8,-38,-35,-38r0,-23r3,0v28,0,39,3,48,12v8,9,11,21,11,42r0,54v0,21,6,30,21,34r0,24v-15,4,-21,14,-21,33r0,60v0,18,-4,29,-12,37v-9,9,-20,12,-47,12r-3,0r0,-23v27,-1,35,-9,35,-38","w":105},"\u00aa":{"d":"123,-107r-107,0r0,-12r107,0r0,12xm118,-159r0,14v-5,1,-9,2,-13,2v-8,0,-13,-4,-15,-12v-8,9,-19,14,-33,14v-20,0,-33,-11,-33,-28v0,-13,7,-22,20,-27v7,-3,7,-2,29,-5v12,-1,17,-4,17,-11v0,-10,-7,-15,-21,-15v-15,0,-22,5,-23,19r-18,0v0,-22,15,-35,42,-35v14,0,25,4,31,10v6,5,7,10,7,25r0,36r0,6v0,6,0,8,4,8v2,0,3,0,6,-1xm90,-180r0,-12v-10,3,-11,4,-21,5v-20,2,-26,6,-26,16v0,9,7,15,18,15v11,0,21,-5,26,-12v2,-3,3,-6,3,-12","w":139},"\u00ba":{"d":"123,-107r-107,0r0,-12r107,0r0,12xm71,-243v29,0,47,20,47,51v0,32,-18,51,-48,51v-30,0,-49,-20,-49,-51v0,-31,20,-51,50,-51xm69,-227v-18,0,-29,14,-29,35v0,22,11,35,30,35v18,0,29,-13,29,-35v0,-22,-11,-35,-30,-35","w":139},"\u00b1":{"d":"18,-129r67,0r0,-66r22,0r0,66r67,0r0,22r-67,0r0,65r-22,0r0,-65r-67,0r0,-22xm18,-30r156,0r0,23r-156,0r0,-23"},"\u00bd":{"d":"86,-240r0,144r-23,0r0,-103r-9,0r-11,0r-11,0r-6,0r0,-15v27,0,38,-7,43,-26r17,0xm233,-237r-136,237r-20,0r137,-237r19,0xm296,-18r0,18r-101,0v1,-29,12,-44,45,-62v28,-17,36,-24,36,-39v0,-15,-11,-26,-28,-26v-18,0,-27,12,-28,36r-21,0v0,-34,18,-53,50,-53v29,0,48,16,48,42v0,22,-10,35,-46,55v-23,13,-30,17,-34,29r79,0","w":308},"\u00bc":{"d":"86,-240r0,144r-23,0r0,-103r-9,0r-11,0r-11,0r-6,0r0,-15v27,0,38,-7,43,-26r17,0xm233,-237r-136,237r-20,0r137,-237r19,0xm298,-51r0,17r-21,0r0,34r-19,0r0,-34r-66,0r0,-18r69,-92r16,0r0,93r21,0xm258,-51r0,-39r0,-25r-6,9r-9,12r-19,26r-14,17r15,0r33,0","w":308},"\u00be":{"d":"34,-192r-20,0v1,-31,18,-48,49,-48v27,0,46,15,46,38v0,13,-6,22,-19,29v17,6,25,17,25,34v0,27,-21,46,-53,46v-31,0,-51,-19,-51,-46r0,-4r20,0v1,21,12,32,32,32v18,0,31,-11,31,-26v0,-16,-12,-26,-32,-26v-5,0,-7,0,-11,1r0,-17r7,0v18,0,29,-8,29,-22v0,-13,-10,-22,-25,-22v-18,0,-28,11,-28,31xm233,-237r-136,237r-21,0r138,-237r19,0xm297,-51r0,17r-20,0r0,34r-20,0r0,-34r-65,0r0,-18r68,-92r17,0r0,93r20,0xm257,-51r0,-39v0,-13,1,-16,1,-25r-6,9r-9,12r-19,26v-1,2,-3,3,-14,17r15,0r32,0","w":308},"%":{"d":"228,-246r-134,258r-23,0r135,-258r22,0xm232,-130v34,0,52,23,52,64v0,47,-18,71,-54,71v-35,0,-54,-23,-54,-65v0,-45,19,-70,56,-70xm230,-111v-10,0,-19,6,-24,16v-3,8,-5,18,-5,33v0,32,10,48,29,48v19,0,29,-17,29,-49v0,-32,-10,-48,-29,-48xm70,-240v34,0,52,23,52,65v0,46,-19,70,-54,70v-36,0,-54,-23,-54,-68v0,-43,20,-67,56,-67xm68,-220v-19,0,-28,17,-28,49v0,31,9,47,28,47v12,0,20,-5,25,-18v3,-8,5,-20,5,-32v0,-31,-10,-46,-30,-46","w":298},"\\":{"d":"13,-240r23,0r123,308r-24,0","w":145},"\u00a8":{"d":"137,-238r0,34r-31,0r0,-34r31,0xm73,-238r0,34r-30,0r0,-34r30,0","w":180},"\u00b4":{"d":"134,-246r-40,48r-20,0r25,-48r35,0","w":180},"`":{"d":"45,-246r36,0r24,48r-19,0","w":180},"\u00b8":{"d":"96,0r-15,21v5,-1,8,-2,12,-2v17,0,29,10,29,24v0,18,-16,30,-41,30v-11,0,-20,-2,-32,-7r6,-12v8,3,15,4,23,4v11,0,18,-5,18,-13v0,-8,-7,-13,-16,-13v-4,0,-7,0,-13,2r-6,-6r21,-28r14,0","w":180},"\u00af":{"d":"0,-308r180,0r0,19r-180,0r0,-19","w":180},"\u00a9":{"d":"143,-246v67,0,123,57,123,126v0,69,-56,125,-125,125v-69,0,-125,-56,-125,-125v0,-70,56,-126,127,-126xm140,-228v-58,0,-105,49,-105,108v0,60,48,108,106,108v59,0,106,-49,106,-108v0,-60,-47,-108,-107,-108xm181,-105r23,0v-3,36,-27,57,-64,57v-42,0,-69,-28,-69,-72v0,-43,28,-72,70,-72v34,0,59,19,62,47r-23,0v-4,-18,-18,-29,-39,-29v-28,0,-47,22,-47,54v0,33,18,54,47,54v24,0,37,-13,40,-39","w":282},"\u00ae":{"d":"143,-246v67,0,123,57,123,126v0,69,-56,125,-125,125v-69,0,-125,-56,-125,-125v0,-70,56,-126,127,-126xm140,-228v-58,0,-105,49,-105,108v0,60,48,108,106,108v59,0,106,-49,106,-108v0,-60,-47,-108,-107,-108xm86,-189r67,0v14,0,21,2,29,6v12,7,19,18,19,32v0,15,-7,26,-21,33v14,7,17,13,19,42v1,12,2,16,5,20r4,5r-26,0v-3,-4,-5,-10,-5,-18v-2,-36,-6,-40,-33,-40r-36,0r0,58r-22,0r0,-138xm108,-170r0,43r34,0v27,0,36,-5,36,-22v0,-15,-9,-21,-31,-21r-39,0","w":282},"\u00a0":{"w":90},"<":{"d":"168,-209r0,32r-123,56r123,57r0,31r-156,-74r0,-27","w":180},">":{"d":"12,-33r0,-31r123,-57r-123,-57r0,-31r156,75r0,27","w":180},"\u00ac":{"d":"138,0r0,-73r-126,0r0,-27r156,0r0,100r-30,0","w":180},"^":{"d":"40,-134r-30,0r62,-107r36,0r61,107r-29,0r-50,-86","w":180},"|":{"d":"75,-240r31,0r0,300r-31,0r0,-300","w":180},"\u00a6":{"d":"75,-240r31,0r0,121r-31,0r0,-121xm75,-55r31,0r0,115r-31,0r0,-115","w":180},"_":{"d":"0,25r180,0r0,20r-180,0r0,-20","w":180},"~":{"d":"50,-208r-16,-13v12,-27,29,-41,49,-41v10,0,21,4,42,14v20,10,25,11,33,11v13,0,22,-7,32,-26r16,13v-12,28,-29,41,-52,41v-9,0,-15,-2,-43,-16v-14,-6,-22,-9,-30,-9v-12,0,-21,7,-31,26","w":240}}});Cufon.registerFont({"w":196,"face":{"font-family":"Nimbus Sans Novus T","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-41 -322 341 297","underline-thickness":"15.48","underline-position":"-34.56","slope":"-12","stemh":"17","stemv":"22","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":90},"\u00c4":{"d":"157,-240r44,240r-24,0r-12,-76r-109,0r-45,76r-26,0r147,-240r25,0xm162,-95r-14,-79v-3,-20,-5,-31,-7,-46r-30,53r-44,72r95,0xm134,-299r-7,34r-23,0r8,-34r22,0xm202,-299r-8,34r-23,0r8,-34r23,0","w":221},"\u00c1":{"d":"157,-240r44,240r-24,0r-12,-76r-109,0r-45,76r-26,0r147,-240r25,0xm162,-95r-14,-79v-3,-20,-5,-31,-7,-46r-30,53r-44,72r95,0xm197,-306r-48,46r-17,0r37,-46r28,0","w":221},"\u00c0":{"d":"157,-240r44,240r-24,0r-12,-76r-109,0r-45,76r-26,0r147,-240r25,0xm162,-95r-14,-79v-3,-20,-5,-31,-7,-46r-30,53r-44,72r95,0xm164,-260r-17,0r-35,-46r26,0","w":221},"\u00c2":{"d":"157,-240r44,240r-24,0r-12,-76r-109,0r-45,76r-26,0r147,-240r25,0xm162,-95r-14,-79v-3,-20,-5,-31,-7,-46r-30,53r-44,72r95,0xm198,-260r-19,0r-22,-33r-40,33r-21,0r52,-46r21,0","w":221},"\u00c3":{"d":"157,-240r44,240r-24,0r-12,-76r-109,0r-45,76r-26,0r147,-240r25,0xm162,-95r-14,-79v-3,-20,-5,-31,-7,-46r-30,53r-44,72r95,0xm195,-297r13,0v-7,22,-17,33,-30,33v-6,0,-11,-1,-20,-6v-20,-11,-22,-12,-26,-12v-7,0,-13,6,-17,17r-13,0v6,-22,16,-33,30,-33v8,0,9,0,34,14v5,3,10,4,13,4v6,0,12,-6,16,-17","w":221},"\u00c5":{"d":"157,-240r44,240r-24,0r-12,-76r-109,0r-45,76r-26,0r147,-240r25,0xm162,-95r-14,-79v-3,-20,-5,-31,-7,-46r-30,53r-44,72r95,0xm153,-322v18,0,33,15,33,34v0,19,-15,34,-34,34v-19,0,-34,-15,-34,-34v0,-19,16,-34,35,-34xm152,-308v-12,0,-20,9,-20,20v0,11,9,20,20,20v11,0,20,-9,20,-20v0,-11,-9,-20,-20,-20","w":221},"\u00cb":{"d":"223,-240r-4,19r-139,0r-18,87r130,0r-5,20r-129,0r-21,95r143,0r-5,19r-164,0r51,-240r161,0xm132,-299r-7,34r-22,0r7,-34r22,0xm200,-299r-7,34r-23,0r7,-34r23,0","w":207},"\u00c9":{"d":"223,-240r-4,19r-139,0r-18,87r130,0r-5,20r-129,0r-21,95r143,0r-5,19r-164,0r51,-240r161,0xm192,-306r-48,46r-16,0r37,-46r27,0","w":207},"\u00c8":{"d":"223,-240r-4,19r-139,0r-18,87r130,0r-5,20r-129,0r-21,95r143,0r-5,19r-164,0r51,-240r161,0xm165,-260r-16,0r-36,-46r26,0","w":207},"\u00ca":{"d":"223,-240r-4,19r-139,0r-18,87r130,0r-5,20r-129,0r-21,95r143,0r-5,19r-164,0r51,-240r161,0xm195,-260r-19,0r-22,-33r-40,33r-21,0r52,-46r21,0","w":207},"\u00cf":{"d":"84,-240r-51,240r-22,0r51,-240r22,0xm74,-299r-7,34r-23,0r7,-34r23,0xm120,-299r-7,34r-23,0r7,-34r23,0","w":80},"\u00cd":{"d":"84,-240r-51,240r-22,0r51,-240r22,0xm123,-306r-42,46r-16,0r32,-46r26,0","w":80},"\u00cc":{"d":"84,-240r-51,240r-22,0r51,-240r22,0xm90,-260r-17,0r-30,-46r25,0","w":80},"\u00ce":{"d":"84,-240r-51,240r-22,0r51,-240r22,0xm117,-260r-18,0r-15,-33r-32,33r-20,0r43,-46r22,0","w":80},"\u00d1":{"d":"251,-240r-52,240r-25,0r-78,-170v-10,-22,-12,-25,-19,-45v-2,14,-4,28,-11,63r-33,152r-22,0r51,-240r25,0r77,168v13,29,17,40,20,48v6,-35,9,-50,14,-75r30,-141r23,0xm207,-297r14,0v-7,22,-18,33,-31,33v-6,0,-11,-1,-20,-6v-20,-11,-22,-12,-26,-12v-7,0,-13,6,-17,17r-13,0v6,-22,17,-33,31,-33v8,0,9,0,34,14v5,3,9,4,12,4v6,0,12,-6,16,-17","w":246},"\u00d6":{"d":"153,-246v60,0,99,39,99,101v0,41,-13,81,-37,109v-24,28,-55,42,-93,42v-62,0,-99,-39,-99,-104v0,-40,15,-81,38,-108v23,-26,55,-40,92,-40xm152,-227v-29,0,-52,11,-71,32v-21,23,-34,60,-34,97v0,52,30,85,77,85v27,0,51,-10,70,-31v22,-24,35,-63,35,-101v0,-51,-29,-82,-77,-82xm151,-299r-7,34r-23,0r7,-34r23,0xm218,-299r-7,34r-23,0r7,-34r23,0","w":259},"\u00d3":{"d":"153,-246v60,0,99,39,99,101v0,41,-13,81,-37,109v-24,28,-55,42,-93,42v-62,0,-99,-39,-99,-104v0,-40,15,-81,38,-108v23,-26,55,-40,92,-40xm152,-227v-29,0,-52,11,-71,32v-21,23,-34,60,-34,97v0,52,30,85,77,85v27,0,51,-10,70,-31v22,-24,35,-63,35,-101v0,-51,-29,-82,-77,-82xm210,-306r-48,46r-16,0r37,-46r27,0","w":259},"\u00d2":{"d":"153,-246v60,0,99,39,99,101v0,41,-13,81,-37,109v-24,28,-55,42,-93,42v-62,0,-99,-39,-99,-104v0,-40,15,-81,38,-108v23,-26,55,-40,92,-40xm152,-227v-29,0,-52,11,-71,32v-21,23,-34,60,-34,97v0,52,30,85,77,85v27,0,51,-10,70,-31v22,-24,35,-63,35,-101v0,-51,-29,-82,-77,-82xm182,-260r-16,0r-36,-46r26,0","w":259},"\u00d4":{"d":"153,-246v60,0,99,39,99,101v0,41,-13,81,-37,109v-24,28,-55,42,-93,42v-62,0,-99,-39,-99,-104v0,-40,15,-81,38,-108v23,-26,55,-40,92,-40xm152,-227v-29,0,-52,11,-71,32v-21,23,-34,60,-34,97v0,52,30,85,77,85v27,0,51,-10,70,-31v22,-24,35,-63,35,-101v0,-51,-29,-82,-77,-82xm214,-260r-20,0r-22,-33r-40,33r-20,0r51,-46r22,0","w":259},"\u00d5":{"d":"153,-246v60,0,99,39,99,101v0,41,-13,81,-37,109v-24,28,-55,42,-93,42v-62,0,-99,-39,-99,-104v0,-40,15,-81,38,-108v23,-26,55,-40,92,-40xm152,-227v-29,0,-52,11,-71,32v-21,23,-34,60,-34,97v0,52,30,85,77,85v27,0,51,-10,70,-31v22,-24,35,-63,35,-101v0,-51,-29,-82,-77,-82xm210,-297r13,0v-7,22,-17,33,-30,33v-6,0,-12,-1,-21,-6v-20,-11,-21,-12,-25,-12v-7,0,-13,6,-17,17r-14,0v6,-22,17,-33,31,-33v8,0,9,0,34,14v5,3,9,4,12,4v6,0,13,-6,17,-17","w":259},"\u00dc":{"d":"245,-240r-31,147v-8,35,-12,47,-21,61v-17,24,-46,37,-84,37v-52,0,-85,-28,-85,-69v0,-10,1,-20,4,-36r30,-140r23,0r-31,142v-4,18,-4,22,-4,32v0,32,23,52,62,52v30,0,55,-11,68,-31v7,-10,10,-23,16,-50r31,-145r22,0xm142,-299r-7,34r-23,0r7,-34r23,0xm209,-299r-7,34r-23,0r7,-34r23,0","w":237},"\u00da":{"d":"245,-240r-31,147v-8,35,-12,47,-21,61v-17,24,-46,37,-84,37v-52,0,-85,-28,-85,-69v0,-10,1,-20,4,-36r30,-140r23,0r-31,142v-4,18,-4,22,-4,32v0,32,23,52,62,52v30,0,55,-11,68,-31v7,-10,10,-23,16,-50r31,-145r22,0xm203,-306r-48,46r-17,0r37,-46r28,0","w":237},"\u00d9":{"d":"245,-240r-31,147v-8,35,-12,47,-21,61v-17,24,-46,37,-84,37v-52,0,-85,-28,-85,-69v0,-10,1,-20,4,-36r30,-140r23,0r-31,142v-4,18,-4,22,-4,32v0,32,23,52,62,52v30,0,55,-11,68,-31v7,-10,10,-23,16,-50r31,-145r22,0xm174,-260r-16,0r-36,-46r26,0","w":237},"\u00db":{"d":"245,-240r-31,147v-8,35,-12,47,-21,61v-17,24,-46,37,-84,37v-52,0,-85,-28,-85,-69v0,-10,1,-20,4,-36r30,-140r23,0r-31,142v-4,18,-4,22,-4,32v0,32,23,52,62,52v30,0,55,-11,68,-31v7,-10,10,-23,16,-50r31,-145r22,0xm206,-260r-20,0r-22,-33r-39,33r-21,0r51,-46r22,0","w":237},"\u00dd":{"d":"236,-240r-119,143r-21,97r-23,0r22,-99r-64,-141r24,0r39,87v10,22,11,25,15,35v11,-15,12,-16,24,-30r76,-92r27,0xm182,-306r-48,46r-17,0r37,-46r28,0","w":200},"\u00e4":{"d":"48,-122r-20,0v8,-37,31,-56,72,-56v38,0,61,15,61,42v0,6,-1,9,-5,29r-12,56v-5,20,-5,20,-5,25v0,7,3,11,9,11v3,0,5,0,10,-1r-3,16v-7,2,-11,3,-16,3v-13,0,-20,-8,-20,-21v0,-3,1,-5,2,-9v-16,22,-37,32,-64,32v-33,0,-53,-19,-53,-48v0,-17,8,-32,21,-41v13,-9,30,-13,64,-16v33,-2,40,-4,45,-11v3,-5,6,-15,6,-25v0,-16,-12,-25,-38,-25v-31,0,-47,12,-54,39xm129,-78r4,-16v-6,6,-17,9,-48,11v-19,1,-30,2,-39,6v-13,5,-22,18,-22,32v0,20,15,32,39,32v21,0,40,-9,52,-26v5,-7,11,-23,14,-39xm101,-240r-7,34r-22,0r8,-34r21,0xm156,-240r-7,34r-22,0r8,-34r21,0","w":179},"\u00e1":{"d":"48,-122r-20,0v8,-37,31,-56,72,-56v38,0,61,15,61,42v0,6,-1,9,-5,29r-12,56v-5,20,-5,20,-5,25v0,7,3,11,9,11v3,0,5,0,10,-1r-3,16v-7,2,-11,3,-16,3v-13,0,-20,-8,-20,-21v0,-3,1,-5,2,-9v-16,22,-37,32,-64,32v-33,0,-53,-19,-53,-48v0,-17,8,-32,21,-41v13,-9,30,-13,64,-16v33,-2,40,-4,45,-11v3,-5,6,-15,6,-25v0,-16,-12,-25,-38,-25v-31,0,-47,12,-54,39xm129,-78r4,-16v-6,6,-17,9,-48,11v-19,1,-30,2,-39,6v-13,5,-22,18,-22,32v0,20,15,32,39,32v21,0,40,-9,52,-26v5,-7,11,-23,14,-39xm157,-247r-49,48r-18,0r40,-48r27,0","w":179},"\u00e0":{"d":"48,-122r-20,0v8,-37,31,-56,72,-56v38,0,61,15,61,42v0,6,-1,9,-5,29r-12,56v-5,20,-5,20,-5,25v0,7,3,11,9,11v3,0,5,0,10,-1r-3,16v-7,2,-11,3,-16,3v-13,0,-20,-8,-20,-21v0,-3,1,-5,2,-9v-16,22,-37,32,-64,32v-33,0,-53,-19,-53,-48v0,-17,8,-32,21,-41v13,-9,30,-13,64,-16v33,-2,40,-4,45,-11v3,-5,6,-15,6,-25v0,-16,-12,-25,-38,-25v-31,0,-47,12,-54,39xm129,-78r4,-16v-6,6,-17,9,-48,11v-19,1,-30,2,-39,6v-13,5,-22,18,-22,32v0,20,15,32,39,32v21,0,40,-9,52,-26v5,-7,11,-23,14,-39xm128,-199r-17,0r-37,-48r26,0","w":179},"\u00e2":{"d":"48,-122r-20,0v8,-37,31,-56,72,-56v38,0,61,15,61,42v0,6,-1,9,-5,29r-12,56v-5,20,-5,20,-5,25v0,7,3,11,9,11v3,0,5,0,10,-1r-3,16v-7,2,-11,3,-16,3v-13,0,-20,-8,-20,-21v0,-3,1,-5,2,-9v-16,22,-37,32,-64,32v-33,0,-53,-19,-53,-48v0,-17,8,-32,21,-41v13,-9,30,-13,64,-16v33,-2,40,-4,45,-11v3,-5,6,-15,6,-25v0,-16,-12,-25,-38,-25v-31,0,-47,12,-54,39xm129,-78r4,-16v-6,6,-17,9,-48,11v-19,1,-30,2,-39,6v-13,5,-22,18,-22,32v0,20,15,32,39,32v21,0,40,-9,52,-26v5,-7,11,-23,14,-39xm156,-199r-19,0r-19,-36r-36,36r-21,0r48,-48r22,0","w":179},"\u00e3":{"d":"48,-122r-20,0v8,-37,31,-56,72,-56v38,0,61,15,61,42v0,6,-1,9,-5,29r-12,56v-5,20,-5,20,-5,25v0,7,3,11,9,11v3,0,5,0,10,-1r-3,16v-7,2,-11,3,-16,3v-13,0,-20,-8,-20,-21v0,-3,1,-5,2,-9v-16,22,-37,32,-64,32v-33,0,-53,-19,-53,-48v0,-17,8,-32,21,-41v13,-9,30,-13,64,-16v33,-2,40,-4,45,-11v3,-5,6,-15,6,-25v0,-16,-12,-25,-38,-25v-31,0,-47,12,-54,39xm129,-78r4,-16v-6,6,-17,9,-48,11v-19,1,-30,2,-39,6v-13,5,-22,18,-22,32v0,20,15,32,39,32v21,0,40,-9,52,-26v5,-7,11,-23,14,-39xm153,-239r13,0v-7,22,-17,33,-30,33v-6,0,-10,-1,-19,-6v-19,-11,-21,-12,-25,-12v-6,0,-12,5,-16,17r-13,0v6,-21,17,-33,30,-33v7,0,8,0,32,14v5,3,9,5,12,5v6,0,12,-7,16,-18","w":179},"\u00e5":{"d":"48,-122r-20,0v8,-37,31,-56,72,-56v38,0,61,15,61,42v0,6,-1,9,-5,29r-12,56v-5,20,-5,20,-5,25v0,7,3,11,9,11v3,0,5,0,10,-1r-3,16v-7,2,-11,3,-16,3v-13,0,-20,-8,-20,-21v0,-3,1,-5,2,-9v-16,22,-37,32,-64,32v-33,0,-53,-19,-53,-48v0,-17,8,-32,21,-41v13,-9,30,-13,64,-16v33,-2,40,-4,45,-11v3,-5,6,-15,6,-25v0,-16,-12,-25,-38,-25v-31,0,-47,12,-54,39xm129,-78r4,-16v-6,6,-17,9,-48,11v-19,1,-30,2,-39,6v-13,5,-22,18,-22,32v0,20,15,32,39,32v21,0,40,-9,52,-26v5,-7,11,-23,14,-39xm115,-259v18,0,33,15,33,33v0,18,-16,34,-34,34v-19,0,-33,-15,-33,-34v0,-18,15,-33,34,-33xm114,-245v-11,0,-19,8,-19,19v0,11,8,20,19,20v11,0,20,-9,20,-20v0,-10,-10,-19,-20,-19","w":179},"\u00eb":{"d":"141,-55r22,0v-11,39,-39,60,-78,60v-45,0,-71,-28,-71,-74v0,-62,40,-109,92,-109v42,0,66,26,66,70v0,8,0,15,-2,26r-134,0v-1,5,-2,9,-2,14v0,34,20,56,51,56v27,0,47,-15,56,-43xm39,-100r113,0r0,-9v0,-33,-18,-52,-48,-52v-32,0,-56,23,-65,61xm104,-240r-7,34r-21,0r7,-34r21,0xm159,-240r-7,34r-21,0r7,-34r21,0","w":183},"\u00e9":{"d":"141,-55r22,0v-11,39,-39,60,-78,60v-45,0,-71,-28,-71,-74v0,-62,40,-109,92,-109v42,0,66,26,66,70v0,8,0,15,-2,26r-134,0v-1,5,-2,9,-2,14v0,34,20,56,51,56v27,0,47,-15,56,-43xm39,-100r113,0r0,-9v0,-33,-18,-52,-48,-52v-32,0,-56,23,-65,61xm161,-247r-49,48r-18,0r39,-48r28,0","w":183},"\u00e8":{"d":"141,-55r22,0v-11,39,-39,60,-78,60v-45,0,-71,-28,-71,-74v0,-62,40,-109,92,-109v42,0,66,26,66,70v0,8,0,15,-2,26r-134,0v-1,5,-2,9,-2,14v0,34,20,56,51,56v27,0,47,-15,56,-43xm39,-100r113,0r0,-9v0,-33,-18,-52,-48,-52v-32,0,-56,23,-65,61xm131,-199r-17,0r-37,-48r26,0","w":183},"\u00ea":{"d":"141,-55r22,0v-11,39,-39,60,-78,60v-45,0,-71,-28,-71,-74v0,-62,40,-109,92,-109v42,0,66,26,66,70v0,8,0,15,-2,26r-134,0v-1,5,-2,9,-2,14v0,34,20,56,51,56v27,0,47,-15,56,-43xm39,-100r113,0r0,-9v0,-33,-18,-52,-48,-52v-32,0,-56,23,-65,61xm159,-199r-19,0r-19,-36r-36,36r-21,0r48,-48r22,0","w":183},"\u00ef":{"d":"66,-173r-37,173r-20,0r36,-173r21,0xm60,-240r-7,34r-21,0r7,-34r21,0xm101,-240r-7,34r-22,0r8,-34r21,0","w":73},"\u00ed":{"d":"66,-173r-37,173r-20,0r36,-173r21,0xm108,-247r-44,48r-16,0r34,-48r26,0","w":73},"\u00ec":{"d":"66,-173r-37,173r-20,0r36,-173r21,0xm74,-199r-16,0r-32,-48r24,0","w":73},"\u00ee":{"d":"66,-173r-37,173r-20,0r36,-173r21,0xm100,-199r-18,0r-11,-36r-29,36r-20,0r40,-48r21,0","w":73},"\u00f1":{"d":"65,-173r-7,32v20,-26,39,-37,66,-37v30,0,50,17,50,43v0,7,-1,16,-5,33r-22,102r-20,0r22,-104v2,-10,4,-23,4,-28v0,-18,-13,-29,-35,-29v-16,0,-31,7,-43,18v-14,13,-21,27,-27,54r-19,89r-20,0r36,-173r20,0xm160,-239r13,0v-7,22,-17,33,-30,33v-6,0,-10,-1,-19,-6v-19,-11,-21,-12,-25,-12v-6,0,-12,5,-16,17r-13,0v6,-21,16,-33,29,-33v7,0,9,0,33,14v5,3,9,5,12,5v6,0,12,-7,16,-18","w":190},"\u00f6":{"d":"109,-178v44,0,70,27,70,70v0,30,-11,62,-29,83v-17,20,-38,30,-64,30v-46,0,-72,-26,-72,-73v0,-63,41,-110,95,-110xm108,-161v-41,0,-73,41,-73,93v0,35,19,56,52,56v40,0,71,-42,71,-96v0,-33,-19,-53,-50,-53xm112,-240r-7,34r-21,0r7,-34r21,0xm167,-240r-7,34r-21,0r7,-34r21,0","w":191},"\u00f3":{"d":"109,-178v44,0,70,27,70,70v0,30,-11,62,-29,83v-17,20,-38,30,-64,30v-46,0,-72,-26,-72,-73v0,-63,41,-110,95,-110xm108,-161v-41,0,-73,41,-73,93v0,35,19,56,52,56v40,0,71,-42,71,-96v0,-33,-19,-53,-50,-53xm168,-247r-48,48r-18,0r39,-48r27,0","w":191},"\u00f2":{"d":"109,-178v44,0,70,27,70,70v0,30,-11,62,-29,83v-17,20,-38,30,-64,30v-46,0,-72,-26,-72,-73v0,-63,41,-110,95,-110xm108,-161v-41,0,-73,41,-73,93v0,35,19,56,52,56v40,0,71,-42,71,-96v0,-33,-19,-53,-50,-53xm137,-199r-17,0r-37,-48r26,0","w":191},"\u00f4":{"d":"109,-178v44,0,70,27,70,70v0,30,-11,62,-29,83v-17,20,-38,30,-64,30v-46,0,-72,-26,-72,-73v0,-63,41,-110,95,-110xm108,-161v-41,0,-73,41,-73,93v0,35,19,56,52,56v40,0,71,-42,71,-96v0,-33,-19,-53,-50,-53xm168,-199r-20,0r-18,-36r-36,36r-21,0r48,-48r21,0","w":191},"\u00f5":{"d":"109,-178v44,0,70,27,70,70v0,30,-11,62,-29,83v-17,20,-38,30,-64,30v-46,0,-72,-26,-72,-73v0,-63,41,-110,95,-110xm108,-161v-41,0,-73,41,-73,93v0,35,19,56,52,56v40,0,71,-42,71,-96v0,-33,-19,-53,-50,-53xm164,-239r13,0v-7,22,-17,33,-30,33v-6,0,-10,-1,-19,-6v-19,-11,-21,-12,-25,-12v-6,0,-12,5,-16,17r-13,0v6,-21,16,-33,29,-33v7,0,9,0,33,14v5,3,9,5,12,5v6,0,12,-7,16,-18","w":191},"\u00fc":{"d":"181,-173r-36,173r-20,0r7,-32v-14,24,-36,37,-63,37v-32,0,-51,-17,-51,-44v0,-7,1,-19,4,-32r22,-102r20,0r-19,93v-5,24,-6,31,-6,38v0,18,15,29,37,29v33,0,56,-26,66,-71r19,-89r20,0xm111,-240r-7,34r-22,0r7,-34r22,0xm166,-240r-7,34r-22,0r7,-34r22,0","w":189},"\u00fa":{"d":"181,-173r-36,173r-20,0r7,-32v-14,24,-36,37,-63,37v-32,0,-51,-17,-51,-44v0,-7,1,-19,4,-32r22,-102r20,0r-19,93v-5,24,-6,31,-6,38v0,18,15,29,37,29v33,0,56,-26,66,-71r19,-89r20,0xm166,-247r-49,48r-18,0r39,-48r28,0","w":189},"\u00f9":{"d":"181,-173r-36,173r-20,0r7,-32v-14,24,-36,37,-63,37v-32,0,-51,-17,-51,-44v0,-7,1,-19,4,-32r22,-102r20,0r-19,93v-5,24,-6,31,-6,38v0,18,15,29,37,29v33,0,56,-26,66,-71r19,-89r20,0xm136,-199r-17,0r-37,-48r26,0","w":189},"\u00fb":{"d":"181,-173r-36,173r-20,0r7,-32v-14,24,-36,37,-63,37v-32,0,-51,-17,-51,-44v0,-7,1,-19,4,-32r22,-102r20,0r-19,93v-5,24,-6,31,-6,38v0,18,15,29,37,29v33,0,56,-26,66,-71r19,-89r20,0xm165,-199r-19,0r-19,-36r-36,36r-21,0r48,-48r22,0","w":189},"\u00fd":{"d":"171,-173r-93,164v-13,22,-26,42,-32,51v-11,16,-25,24,-42,24v-6,0,-10,-1,-18,-2r4,-18v6,2,10,3,14,3v13,0,23,-8,33,-25v2,-4,4,-8,7,-11v5,-6,8,-11,8,-13r-32,-173r22,0r16,91v5,32,8,48,9,58v6,-12,12,-23,26,-49r55,-100r23,0xm148,-247r-49,48r-18,0r39,-48r28,0","w":152},"\u00ff":{"d":"171,-173r-93,164v-13,22,-26,42,-32,51v-11,16,-25,24,-42,24v-6,0,-10,-1,-18,-2r4,-18v6,2,10,3,14,3v13,0,23,-8,33,-25v2,-4,4,-8,7,-11v5,-6,8,-11,8,-13r-32,-173r22,0r16,91v5,32,8,48,9,58v6,-12,12,-23,26,-49r55,-100r23,0xm91,-240r-7,34r-21,0r7,-34r21,0xm147,-240r-8,34r-21,0r7,-34r22,0","w":152},"A":{"d":"157,-240r44,240r-24,0r-12,-76r-109,0r-45,76r-26,0r147,-240r25,0xm162,-95r-14,-79v-3,-20,-5,-31,-7,-46r-30,53r-44,72r95,0","w":221},"B":{"d":"62,-240r76,0v32,0,47,3,59,9v16,9,25,25,25,46v0,32,-20,55,-52,60v26,6,41,24,41,50v0,28,-17,54,-42,66v-14,6,-27,9,-62,9r-96,0xm80,-221r-18,88r66,0v26,0,38,-3,49,-10v13,-9,21,-24,21,-41v0,-15,-7,-27,-20,-33v-8,-3,-19,-4,-38,-4r-60,0xm58,-115r-21,96r66,0v33,0,49,-3,61,-11v14,-10,23,-27,23,-45v0,-17,-9,-30,-24,-36v-8,-4,-16,-4,-40,-4r-65,0","w":228},"C":{"d":"207,-83r23,0v-13,55,-55,88,-111,88v-60,0,-96,-39,-96,-102v0,-45,18,-89,46,-116v22,-21,51,-33,84,-33v54,0,89,33,89,81r-22,0v-2,-40,-26,-61,-67,-61v-35,0,-63,16,-83,47v-15,24,-24,53,-24,81v0,52,28,85,73,85v43,0,75,-26,88,-70","w":243},"D":{"d":"62,-240r61,0v46,0,64,5,82,22v17,17,26,41,26,74v0,41,-18,83,-45,110v-15,15,-33,25,-54,30v-13,3,-25,4,-51,4r-70,0xm80,-221r-43,202r49,0v30,0,44,-2,58,-8v38,-17,65,-66,65,-118v0,-33,-10,-55,-31,-67v-12,-6,-25,-9,-49,-9r-49,0","w":237},"E":{"d":"223,-240r-4,19r-139,0r-18,87r130,0r-5,20r-129,0r-21,95r143,0r-5,19r-164,0r51,-240r161,0","w":207},"F":{"d":"216,-240r-4,19r-132,0r-18,87r117,0r-4,19r-117,0r-25,115r-22,0r51,-240r154,0","w":189},"G":{"d":"243,-122r-26,122r-15,0r2,-23r1,-9r2,-9v-22,32,-50,46,-88,46v-60,0,-97,-38,-97,-102v0,-39,14,-79,36,-105v25,-29,57,-44,98,-44v55,0,89,30,91,79r-22,0v-3,-39,-27,-60,-69,-60v-62,0,-110,57,-110,131v0,52,29,82,77,82v34,0,60,-14,78,-42v8,-13,13,-25,18,-47r-83,0r4,-19r103,0","w":258},"H":{"d":"246,-240r-51,240r-23,0r25,-116r-139,0r-25,116r-22,0r51,-240r22,0r-22,105r139,0r23,-105r22,0","w":241},"I":{"d":"84,-240r-51,240r-22,0r51,-240r22,0","w":80},"J":{"d":"175,-240r-35,163v-6,30,-11,42,-18,54v-12,18,-32,28,-59,28v-40,0,-63,-20,-63,-55v0,-8,1,-16,3,-27r22,0v-3,14,-3,20,-3,27v0,23,15,36,41,36v17,0,30,-5,39,-17v6,-7,10,-22,15,-44r35,-165r23,0","w":166},"K":{"d":"244,-240r-123,100r86,140r-26,0r-77,-126r-53,43r-18,83r-22,0r51,-240r22,0r-27,128v4,-3,15,-13,33,-28r122,-100r32,0","w":222},"L":{"d":"84,-240r-47,221r133,0r-5,19r-154,0r51,-240r22,0","w":189},"M":{"d":"297,-240r-51,240r-22,0r29,-136v7,-33,10,-44,21,-84v-6,12,-12,22,-32,55r-102,165r-21,0r-33,-168v-4,-18,-5,-26,-9,-52v-5,31,-11,63,-16,89r-28,131r-22,0r51,-240r31,0r32,165v3,15,7,40,8,53v5,-11,17,-31,25,-44r107,-174r32,0","w":293},"N":{"d":"251,-240r-52,240r-25,0r-78,-170v-10,-22,-12,-25,-19,-45v-2,14,-4,28,-11,63r-33,152r-22,0r51,-240r25,0r77,168v13,29,17,40,20,48v6,-35,9,-50,14,-75r30,-141r23,0","w":246},"O":{"d":"153,-246v60,0,99,39,99,101v0,41,-13,81,-37,109v-24,28,-55,42,-93,42v-62,0,-99,-39,-99,-104v0,-40,15,-81,38,-108v23,-26,55,-40,92,-40xm152,-227v-29,0,-52,11,-71,32v-21,23,-34,60,-34,97v0,52,30,85,77,85v27,0,51,-10,70,-31v22,-24,35,-63,35,-101v0,-51,-29,-82,-77,-82","w":259},"P":{"d":"62,-240r79,0v29,0,43,3,55,10v16,10,25,29,25,51v0,28,-14,54,-37,66v-14,8,-30,10,-63,10r-66,0r-22,103r-22,0xm80,-221r-21,99r62,0v31,0,44,-2,55,-10v14,-9,23,-27,23,-46v0,-17,-7,-31,-19,-37v-9,-4,-21,-6,-46,-6r-54,0","w":214},"Q":{"d":"230,8r-13,13r-34,-32v-18,11,-38,16,-62,16v-60,0,-98,-40,-98,-103v0,-85,55,-148,130,-148v61,0,99,39,99,102v0,48,-21,95,-53,122xm154,-65r30,29v27,-22,45,-65,45,-107v0,-51,-30,-83,-76,-83v-36,0,-66,17,-85,49v-14,22,-22,51,-22,78v0,52,32,86,79,86v16,0,30,-4,43,-12r-28,-26","w":265},"R":{"d":"61,-240r84,0v29,0,41,2,53,8v18,10,28,28,28,51v0,36,-25,63,-61,67v20,5,30,18,30,43v0,6,-1,15,-2,33v0,6,-1,12,-1,16v0,9,1,16,4,22r-24,0v-2,-6,-2,-11,-2,-20v0,-4,0,-9,1,-20v1,-13,2,-24,2,-31v0,-28,-12,-36,-52,-36r-66,0r-23,107r-22,0xm79,-221r-20,95r69,0v28,0,43,-3,55,-11v12,-9,20,-25,20,-42v0,-17,-8,-31,-21,-37v-8,-4,-19,-5,-40,-5r-63,0","w":233},"S":{"d":"207,-171r-22,0r0,-4v0,-33,-21,-50,-62,-50v-39,0,-63,18,-63,46v0,24,13,34,64,48v23,6,34,11,44,18v14,10,22,27,22,45v0,44,-37,72,-92,72v-57,0,-90,-28,-90,-76r0,-8r22,0r0,6v0,40,23,60,69,60v41,0,69,-22,69,-53v0,-23,-11,-33,-50,-44v-43,-12,-52,-16,-64,-28v-10,-10,-16,-23,-16,-39v0,-40,34,-66,85,-66v55,0,84,23,84,68r0,5","w":209},"T":{"d":"228,-240r-4,19r-83,0r-47,221r-22,0r47,-221r-85,0r4,-19r190,0","w":199},"U":{"d":"245,-240r-31,147v-8,35,-12,47,-21,61v-17,24,-46,37,-84,37v-52,0,-85,-28,-85,-69v0,-10,1,-20,4,-36r30,-140r23,0r-31,142v-4,18,-4,22,-4,32v0,32,23,52,62,52v30,0,55,-11,68,-31v7,-10,10,-23,16,-50r31,-145r22,0","w":237},"V":{"d":"238,-240r-138,240r-27,0r-37,-240r23,0r25,164v3,24,3,23,6,49r0,6r28,-50r95,-169r25,0","w":208},"W":{"d":"341,-240r-114,240r-25,0r-13,-162v-3,-35,-4,-47,-4,-57r-28,62r-76,157r-25,0r-18,-240r22,0r11,151v1,17,2,49,2,57r0,8v5,-12,11,-24,29,-62r74,-154r27,0r12,142v3,35,3,53,4,72v5,-13,17,-40,31,-71r68,-143r23,0","w":313},"X":{"d":"223,-240r-103,118r62,122r-24,0r-31,-59v-8,-16,-11,-25,-16,-35v-3,-5,-4,-6,-7,-13v-5,6,-5,7,-18,22r-75,85r-27,0r110,-125r-59,-115r25,0r32,64v7,14,14,28,17,37r3,-4r13,-15r20,-24r51,-58r27,0","w":202},"Y":{"d":"236,-240r-119,143r-21,97r-23,0r22,-99r-64,-141r24,0r39,87v10,22,11,25,15,35v11,-15,12,-16,24,-30r76,-92r27,0","w":200},"Z":{"d":"219,-240r-4,19r-170,180r-16,16v-3,3,-2,3,-6,6r5,0r14,0r13,0r128,0r-4,19r-187,0r4,-20r167,-175v6,-7,15,-16,25,-26r-8,0r-15,0r-123,0r4,-19r173,0","w":205},"\u00c6":{"d":"329,-240r-4,19r-121,0r-18,87r113,0r-4,20r-113,0r-20,95r124,0r-4,19r-147,0r17,-78r-85,0r-58,78r-27,0r180,-240r167,0xm182,-221r-11,0r-90,123r75,0","w":313},"\u00d8":{"d":"263,-238r-28,29v12,18,18,40,18,66v0,40,-16,81,-41,109v-24,26,-54,40,-90,40v-30,0,-51,-8,-69,-26r-29,30r-11,-12r29,-30v-12,-19,-18,-41,-18,-67v0,-38,14,-78,36,-104v24,-28,58,-43,95,-43v29,0,50,9,68,25r28,-28xm59,-49r149,-157v-17,-15,-32,-20,-53,-20v-59,0,-106,55,-106,123v0,22,2,38,10,54xm218,-191r-149,156v12,14,31,21,54,21v59,0,106,-56,106,-128v0,-21,-3,-35,-11,-49","w":259},"\u00c7":{"d":"242,-165r-22,0r0,-3v0,-35,-27,-58,-67,-58v-30,0,-57,13,-76,36v-19,23,-31,60,-31,95v0,50,29,81,74,81v42,0,74,-26,86,-69r23,0v-11,52,-56,88,-109,88r-5,0r-12,14v5,-1,7,-1,11,-1v15,0,26,9,26,22v0,16,-15,28,-36,28v-11,0,-22,-3,-34,-8r5,-9v12,5,18,6,26,6v13,0,21,-6,21,-15v0,-8,-8,-14,-18,-14v-5,0,-8,1,-14,3r-5,-5r19,-22v-53,-8,-81,-44,-81,-102v0,-38,14,-78,36,-104v23,-28,57,-44,94,-44v54,0,89,32,89,81","w":243},"\u00d0":{"d":"40,-135r22,-105r61,0v46,0,64,5,82,22v17,17,26,41,26,74v0,41,-18,83,-45,110v-15,15,-33,25,-54,30v-13,3,-25,4,-51,4r-70,0r24,-116r-26,0r4,-19r27,0xm62,-135r72,0r-4,19r-72,0r-21,97r49,0v30,0,44,-2,58,-8v38,-17,65,-66,65,-118v0,-33,-10,-55,-31,-67v-12,-6,-25,-9,-49,-9r-49,0","w":237},"\u00de":{"d":"62,-240r22,0r-8,36r58,0v29,0,43,3,55,10v16,10,25,29,25,51v0,28,-14,54,-37,66v-14,8,-30,10,-63,10r-66,0r-15,67r-22,0xm72,-185r-21,99r62,0v31,0,45,-2,56,-10v14,-9,23,-28,23,-46v0,-17,-8,-31,-20,-37v-9,-4,-21,-6,-45,-6r-55,0","w":215},"a":{"d":"48,-122r-20,0v8,-37,31,-56,72,-56v38,0,61,15,61,42v0,6,-1,9,-5,29r-12,56v-5,20,-5,20,-5,25v0,7,3,11,9,11v3,0,5,0,10,-1r-3,16v-7,2,-11,3,-16,3v-13,0,-20,-8,-20,-21v0,-3,1,-5,2,-9v-16,22,-37,32,-64,32v-33,0,-53,-19,-53,-48v0,-17,8,-32,21,-41v13,-9,30,-13,64,-16v33,-2,40,-4,45,-11v3,-5,6,-15,6,-25v0,-16,-12,-25,-38,-25v-31,0,-47,12,-54,39xm129,-78r4,-16v-6,6,-17,9,-48,11v-19,1,-30,2,-39,6v-13,5,-22,18,-22,32v0,20,15,32,39,32v21,0,40,-9,52,-26v5,-7,11,-23,14,-39","w":179},"b":{"d":"80,-240r-21,97v16,-23,37,-35,63,-35v39,0,64,29,64,73v0,30,-11,60,-29,81v-17,19,-37,29,-61,29v-21,0,-37,-7,-48,-20v-8,-9,-11,-17,-11,-25r-9,40r-19,0r51,-240r20,0xm117,-161v-23,0,-43,13,-56,36v-9,17,-16,40,-16,59v0,32,18,54,48,54v39,0,72,-42,72,-93v0,-35,-18,-56,-48,-56","w":198},"c":{"d":"141,-56r21,0v-12,39,-41,61,-80,61v-44,0,-68,-26,-68,-72v0,-30,11,-61,29,-81v17,-19,41,-30,67,-30v39,0,62,21,62,58r-20,0v0,-26,-16,-41,-43,-41v-42,0,-74,40,-74,93v0,36,18,56,49,56v26,0,48,-16,57,-44","w":179},"d":{"d":"206,-240r-52,240r-19,0r6,-33v-15,25,-37,38,-65,38v-40,0,-63,-26,-63,-69v0,-28,10,-58,26,-79v18,-23,41,-35,68,-35v31,0,51,15,56,40r22,-102r21,0xm108,-161v-42,0,-74,42,-74,97v0,33,17,51,47,51v20,0,39,-10,52,-28v13,-18,23,-48,23,-72v0,-30,-19,-48,-48,-48","w":199},"e":{"d":"141,-55r22,0v-11,39,-39,60,-78,60v-45,0,-71,-28,-71,-74v0,-62,40,-109,92,-109v42,0,66,26,66,70v0,8,0,15,-2,26r-134,0v-1,5,-2,9,-2,14v0,34,20,56,51,56v27,0,47,-15,56,-43xm39,-100r113,0r0,-9v0,-33,-18,-52,-48,-52v-32,0,-56,23,-65,61","w":183},"f":{"d":"104,-173r-4,17r-35,0r-33,156r-20,0r33,-156r-30,0r4,-17r29,0r3,-13v5,-22,8,-33,13,-40v8,-11,22,-17,41,-17v7,0,12,1,18,3r-3,18v-5,-2,-10,-3,-15,-3v-12,0,-20,5,-25,13v-3,4,-6,16,-8,26r-3,13r35,0","w":93},"g":{"d":"188,-173r-32,150v-7,33,-12,47,-22,61v-14,20,-37,30,-67,30v-22,0,-39,-5,-50,-15v-9,-9,-16,-23,-16,-35r0,-3r21,0r0,2v0,22,18,34,46,34v21,0,38,-7,49,-20v6,-8,13,-25,17,-46r5,-20v-13,21,-34,33,-59,33v-39,0,-65,-28,-65,-70v0,-59,38,-106,87,-106v32,0,55,16,59,43r8,-38r19,0xm104,-161v-38,0,-68,39,-68,88v0,33,18,54,48,54v14,0,29,-6,39,-16v17,-17,29,-47,29,-76v0,-30,-19,-50,-48,-50","w":195},"h":{"d":"80,-240r-21,99v10,-13,18,-20,28,-26v10,-6,26,-11,38,-11v11,0,25,5,34,11v10,7,15,18,15,33v0,7,-1,16,-4,32r-22,102r-21,0r22,-101v4,-19,4,-20,4,-29v0,-19,-13,-31,-35,-31v-21,0,-41,11,-54,30v-8,11,-12,23,-16,41r-19,90r-20,0r51,-240r20,0","w":191},"i":{"d":"66,-173r-37,173r-20,0r36,-173r21,0xm80,-240r-7,35r-21,0r8,-35r20,0","w":73},"j":{"d":"63,-173r-37,176v-8,33,-8,36,-12,44v-6,13,-18,19,-35,19v-5,0,-10,0,-16,-1r4,-18v4,1,7,2,11,2v10,0,15,-4,19,-13v1,-4,3,-7,9,-36r37,-173r20,0xm77,-240r-7,35r-20,0r7,-35r20,0","w":71},"k":{"d":"80,-240r-32,151v1,-1,3,-3,5,-4r9,-7r90,-73r28,0r-83,66r53,107r-23,0r-46,-94r-39,31r-13,63r-20,0r51,-240r20,0","w":171},"l":{"d":"80,-240r-51,240r-20,0r51,-240r20,0","w":73},"m":{"d":"65,-173r-7,32v12,-22,38,-37,62,-37v26,0,41,14,42,38v15,-24,37,-38,62,-38v28,0,47,16,47,39v0,8,-1,17,-5,35r-22,104r-20,0r22,-105v3,-15,4,-22,4,-29v0,-16,-13,-27,-32,-27v-15,0,-29,7,-41,20v-12,13,-15,23,-21,50r-20,91r-20,0r22,-104v3,-14,4,-24,4,-30v0,-16,-11,-27,-29,-27v-14,0,-28,7,-41,20v-12,13,-18,26,-23,50r-20,91r-20,0r36,-173r20,0","w":286},"n":{"d":"65,-173r-7,32v20,-26,39,-37,66,-37v30,0,50,17,50,43v0,7,-1,16,-5,33r-22,102r-20,0r22,-104v2,-10,4,-23,4,-28v0,-18,-13,-29,-35,-29v-16,0,-31,7,-43,18v-14,13,-21,27,-27,54r-19,89r-20,0r36,-173r20,0","w":190},"o":{"d":"109,-178v44,0,70,27,70,70v0,30,-11,62,-29,83v-17,20,-38,30,-64,30v-46,0,-72,-26,-72,-73v0,-63,41,-110,95,-110xm108,-161v-41,0,-73,41,-73,93v0,35,19,56,52,56v40,0,71,-42,71,-96v0,-33,-19,-53,-50,-53","w":191},"p":{"d":"64,-173r-6,32v12,-23,36,-37,64,-37v39,0,64,28,64,73v0,33,-13,66,-34,87v-15,15,-34,23,-56,23v-32,0,-55,-18,-59,-45r-22,104r-20,0r50,-237r19,0xm116,-161v-19,0,-38,11,-51,28v-12,17,-21,46,-21,70v0,30,20,51,50,51v15,0,30,-7,41,-17v18,-18,30,-47,30,-77v0,-35,-18,-55,-49,-55","w":198},"q":{"d":"191,-173r-50,237r-21,0r21,-97v-15,25,-37,38,-65,38v-40,0,-63,-26,-63,-69v0,-28,10,-58,26,-79v18,-23,41,-35,68,-35v31,0,52,15,57,41r8,-36r19,0xm108,-161v-42,0,-74,42,-74,97v0,33,17,52,47,52v14,0,28,-5,39,-14v21,-17,36,-54,36,-87v0,-30,-19,-48,-48,-48","w":199},"r":{"d":"29,0r-20,0r36,-173r20,0r-9,41v12,-27,37,-44,64,-44r11,0r-5,22r-9,0v-20,0,-34,6,-47,21v-12,14,-19,30,-25,59","w":110},"s":{"d":"149,-123r-21,0v0,-1,1,-3,1,-3v0,-23,-15,-35,-43,-35v-25,0,-41,12,-41,29v0,9,5,16,14,21v7,4,12,7,33,15v17,7,26,10,32,16v9,8,14,20,14,32v0,32,-28,53,-69,53v-42,0,-67,-20,-67,-55r0,-7r21,0v0,2,-1,5,-1,6v0,24,18,38,48,38v27,0,46,-13,46,-33v0,-8,-5,-17,-12,-22v-7,-5,-9,-6,-37,-17v-17,-7,-25,-11,-31,-17v-8,-7,-12,-17,-12,-28v0,-29,25,-48,64,-48v39,0,61,19,61,51r0,4","w":159},"t":{"d":"103,-173r-4,17r-36,0r-22,105v-3,15,-4,17,-4,21v0,9,6,14,19,14v5,0,10,-1,18,-3r-4,19v-7,1,-12,1,-20,1v-23,0,-34,-7,-34,-25v0,-5,1,-12,4,-27r22,-105r-30,0r3,-17r31,0r12,-53r20,0r-11,53r36,0","w":98},"u":{"d":"181,-173r-36,173r-20,0r7,-32v-14,24,-36,37,-63,37v-32,0,-51,-17,-51,-44v0,-7,1,-19,4,-32r22,-102r20,0r-19,93v-5,24,-6,31,-6,38v0,18,15,29,37,29v33,0,56,-26,66,-71r19,-89r20,0","w":189},"v":{"d":"168,-173r-97,173r-23,0r-28,-173r22,0r16,109v2,15,5,33,5,44v5,-12,9,-21,19,-39r63,-114r23,0","w":149},"w":{"d":"263,-173r-91,173r-22,0r-11,-114v-1,-14,-1,-18,-2,-34r-14,30r-58,118r-23,0r-20,-173r22,0r8,84v4,43,5,54,5,67v4,-10,4,-11,15,-33r57,-118r25,0r9,104v3,23,3,31,3,46v4,-12,9,-20,28,-59r47,-91r22,0","w":246},"x":{"d":"165,-173r-76,83r46,90r-23,0r-26,-52v-6,-12,-9,-20,-11,-24v-7,9,-10,11,-17,19r-50,57r-26,0r83,-91r-41,-82r24,0r23,48v4,8,6,14,9,21v1,-1,4,-3,5,-5r11,-14r44,-50r25,0","w":153},"y":{"d":"171,-173r-93,164v-13,22,-26,42,-32,51v-11,16,-25,24,-42,24v-6,0,-10,-1,-18,-2r4,-18v6,2,10,3,14,3v13,0,23,-8,33,-25v2,-4,4,-8,7,-11v5,-6,8,-11,8,-13r-32,-173r22,0r16,91v5,32,8,48,9,58v6,-12,12,-23,26,-49r55,-100r23,0","w":152},"z":{"d":"159,-173r-3,16r-114,118r-23,22v9,0,23,-1,38,-1r75,0r-4,18r-138,0r4,-17r111,-115r7,-7r4,-4r9,-9r4,-4r-15,0r-24,0r-65,0r3,-17r131,0","w":150},"\u00e6":{"d":"251,-55r21,0v-15,40,-42,60,-81,60v-35,0,-58,-18,-61,-46v-14,31,-38,46,-73,46v-33,0,-53,-18,-53,-47v0,-18,8,-33,23,-43v13,-8,24,-10,64,-14v26,-3,32,-5,38,-9v5,-4,9,-13,9,-23v0,-18,-15,-30,-39,-30v-28,0,-45,13,-51,39r-20,0v8,-36,32,-56,72,-56v31,0,50,12,56,35v14,-22,36,-35,63,-35v37,0,62,26,62,66v0,8,-1,17,-3,30r-130,0v-2,9,-3,14,-3,21v0,30,19,48,49,48v26,0,45,-14,57,-42xm127,-75r4,-20v-6,7,-15,9,-64,14v-26,3,-42,16,-42,37v0,19,14,31,36,31v17,0,33,-7,45,-18v10,-10,17,-22,21,-44xm151,-100r109,0v1,-5,1,-8,1,-12v0,-31,-18,-49,-46,-49v-31,0,-57,24,-64,61","w":291},"\u00f8":{"d":"189,-169r-21,20v8,11,11,23,11,41v0,32,-12,65,-31,86v-17,18,-37,27,-62,27v-23,0,-40,-6,-53,-18r-22,22r-10,-10r23,-23v-8,-14,-10,-27,-10,-45v0,-63,40,-109,95,-109v22,0,42,7,51,18r19,-19xm41,-39r105,-108v-11,-10,-22,-14,-37,-14v-18,0,-33,6,-46,19v-17,17,-28,47,-28,74v0,11,2,18,6,29xm153,-135r-104,108v10,10,22,14,38,14v20,0,37,-8,50,-24v14,-19,23,-46,23,-69v0,-12,-2,-19,-7,-29","w":191},"\u00df":{"d":"61,2r3,-17v5,1,8,1,14,1v39,0,67,-28,67,-68v0,-28,-17,-42,-52,-42r-6,0r4,-17r7,0v34,0,60,-22,60,-52v0,-21,-16,-35,-39,-35v-16,0,-30,6,-39,17v-7,9,-10,18,-15,44r-36,167r-20,0r36,-168v7,-33,10,-44,22,-56v13,-13,31,-20,53,-20v37,0,58,19,58,51v0,30,-20,54,-51,60v26,5,40,23,40,51v0,23,-10,44,-27,61v-17,17,-35,24,-61,24v-7,0,-11,0,-18,-1","w":182},"\u00e7":{"d":"172,-120r-21,0v0,-27,-15,-41,-43,-41v-41,0,-73,41,-73,94v0,34,18,55,48,55v26,0,49,-18,57,-44r22,0v-12,41,-42,63,-85,61r-13,14v5,-1,8,-1,11,-1v16,0,28,10,28,23v0,15,-16,27,-37,27v-11,0,-22,-2,-33,-7r5,-10v9,4,17,6,25,6v13,0,21,-6,21,-15v0,-9,-7,-14,-18,-14v-5,0,-9,0,-14,3r-5,-5r20,-22v-22,-5,-34,-12,-43,-28v-7,-12,-10,-26,-10,-42v0,-29,9,-58,26,-79v17,-22,41,-33,69,-33v39,0,63,22,63,58","w":179},"\u00f0":{"d":"98,-206r26,-11r-13,-23r15,-7r14,24r28,-11r7,13r-29,11v22,36,33,70,33,98v0,34,-8,62,-25,84v-17,23,-40,33,-70,33v-44,0,-69,-26,-69,-72v0,-32,11,-63,30,-84v15,-17,40,-27,64,-27v18,0,27,3,40,15v-6,-17,-8,-22,-18,-40r-26,10xm109,-161v-22,0,-39,10,-53,28v-13,18,-21,41,-21,63v0,36,19,57,52,57v21,0,39,-9,52,-27v12,-17,19,-44,19,-68v0,-33,-18,-53,-49,-53","w":191},"\u00fe":{"d":"80,-240r-21,99v12,-23,35,-37,63,-37v39,0,64,29,64,73v0,33,-13,66,-34,87v-15,15,-34,23,-56,23v-32,0,-55,-18,-59,-45r-22,104r-20,0r64,-304r21,0xm116,-161v-19,0,-38,11,-51,28v-12,17,-21,46,-21,70v0,30,20,51,50,51v15,0,30,-7,41,-17v18,-18,30,-47,30,-77v0,-35,-18,-55,-49,-55","w":198},"1":{"d":"158,-235r-50,235r-22,0r41,-196v-14,9,-45,18,-65,19r4,-16v33,-4,60,-19,74,-42r18,0"},"2":{"d":"167,-19r-4,19r-153,0v5,-43,27,-67,98,-105v46,-26,61,-44,61,-71v0,-27,-19,-44,-48,-44v-33,0,-56,24,-59,63r-20,0v3,-50,34,-81,80,-81v41,0,68,24,68,62v0,26,-11,46,-39,66v-9,7,-12,8,-52,31v-38,21,-59,42,-64,61v10,0,13,-1,21,-1r111,0"},"3":{"d":"17,-75r20,0v-1,5,-1,8,-1,12v0,32,21,50,54,50v36,0,62,-25,62,-60v0,-15,-9,-29,-22,-35v-9,-4,-17,-6,-34,-6r-7,0r4,-17r12,0v22,0,36,-4,46,-12v10,-8,16,-22,16,-36v0,-25,-18,-41,-46,-41v-31,0,-54,21,-59,56r-20,0v7,-46,36,-74,80,-74v40,0,67,24,67,58v0,30,-19,52,-50,58v22,7,36,24,36,49v0,27,-15,52,-38,66v-13,8,-30,12,-48,12v-45,0,-74,-26,-74,-67v0,-4,1,-8,2,-13"},"4":{"d":"180,-76r-4,18r-35,0r-13,58r-20,0r12,-58r-109,0r4,-20r144,-158r20,0r-35,160r36,0xm124,-76r19,-89r2,-14r4,-16r2,-9v-5,7,-16,19,-30,34r-74,82v-4,5,-7,7,-12,12r5,0r11,0r73,0"},"5":{"d":"193,-233r-5,19r-102,0r-27,76v13,-12,31,-18,50,-18v41,0,69,28,69,69v0,22,-8,44,-21,61v-16,20,-39,31,-67,31v-44,0,-71,-25,-71,-65r0,-7r21,0r-1,8v0,28,20,46,51,46v38,0,65,-30,65,-71v0,-33,-20,-54,-52,-54v-22,0,-38,9,-50,26r-20,0r39,-121r121,0"},"6":{"d":"194,-176r-21,0v-1,-30,-15,-44,-43,-44v-24,0,-43,12,-57,36v-9,15,-14,28,-24,64v13,-21,37,-33,61,-33v41,0,69,28,69,70v0,51,-35,88,-83,88v-47,0,-73,-30,-73,-82v0,-33,12,-78,27,-108v19,-35,44,-53,80,-53v41,0,64,22,64,62xm106,-135v-35,0,-62,28,-62,67v0,33,21,55,53,55v35,0,60,-30,60,-70v0,-32,-20,-52,-51,-52"},"7":{"d":"203,-233r-4,18v-59,60,-104,135,-130,215r-23,0v21,-71,72,-154,131,-213r-10,0r-13,0r-105,0r4,-20r150,0"},"8":{"d":"136,-124v24,8,39,29,39,55v0,25,-15,50,-37,63v-12,7,-29,11,-47,11v-46,0,-75,-26,-75,-67v0,-35,23,-61,62,-66v-21,-9,-32,-26,-32,-48v0,-36,29,-62,72,-62v41,0,68,23,68,58v0,28,-21,52,-50,56xm119,-220v-32,0,-53,18,-53,46v0,24,18,40,48,40v30,0,51,-18,51,-45v0,-26,-18,-41,-46,-41xm99,-117v-37,0,-61,22,-61,55v0,30,21,49,55,49v36,0,60,-22,60,-56v0,-30,-20,-48,-54,-48"},"9":{"d":"18,-57r20,0v0,28,17,44,46,44v24,0,42,-12,56,-36v9,-16,15,-34,22,-66v-14,23,-36,36,-62,36v-41,0,-68,-28,-68,-70v0,-51,36,-89,84,-89v25,0,46,11,58,29v9,14,13,29,13,52v0,35,-11,81,-25,109v-19,37,-43,53,-79,53v-42,0,-65,-22,-65,-62xm115,-220v-21,0,-36,9,-48,26v-9,13,-14,30,-14,45v0,31,20,52,51,52v34,0,61,-30,61,-69v0,-33,-19,-54,-50,-54"},"0":{"d":"123,-238v44,0,67,28,67,81v0,38,-11,84,-29,114v-18,32,-44,48,-75,48v-42,0,-66,-30,-66,-83v0,-39,12,-86,31,-116v17,-28,43,-44,72,-44xm123,-220v-26,0,-45,16,-60,49v-13,27,-22,68,-22,97v0,39,17,61,47,61v26,0,45,-17,60,-51v12,-27,21,-65,21,-93v0,-42,-15,-63,-46,-63"},"\u00a3":{"d":"129,-121r-3,12r-48,0v3,10,3,16,3,23v0,15,-5,29,-13,39v-7,9,-12,14,-29,29v14,-6,23,-8,34,-8v8,0,15,2,30,6v14,4,21,6,29,6v14,0,23,-4,39,-18r9,17v-17,14,-33,21,-50,21v-10,0,-12,0,-39,-9v-12,-4,-20,-6,-28,-6v-13,0,-22,3,-40,14r-8,-18v35,-28,46,-47,46,-71v0,-8,-1,-15,-4,-25r-29,0r3,-12r23,0v-6,-17,-9,-32,-9,-46v0,-42,34,-72,79,-72v44,0,74,27,74,69v0,3,-1,4,-1,8r-20,0r0,-5v0,-34,-19,-53,-52,-53v-34,0,-59,22,-59,55v0,14,3,29,9,44r54,0"},"$":{"d":"144,-263r-6,25v19,4,26,7,34,13v13,10,21,26,21,45v0,1,-1,5,-1,8r-20,0r0,-7v0,-23,-12,-37,-37,-42r-20,92v41,12,59,31,59,62v0,42,-33,71,-81,71r-6,0r-6,30r-14,0r7,-30v-40,-7,-60,-30,-60,-67v0,-2,1,-5,1,-9r20,0r0,9v0,17,5,32,17,40v6,5,12,7,25,10r22,-101v-41,-13,-56,-29,-56,-57v0,-40,31,-68,75,-68v1,0,4,1,7,1r6,-25r13,0xm103,-133r19,-89r-5,0v-31,0,-53,21,-53,49v0,21,10,31,39,40xm111,-110r-21,98r5,0v33,0,59,-22,59,-52v0,-22,-14,-37,-43,-46"},"\u00a2":{"d":"187,-152r-21,0v0,-23,-13,-39,-36,-41r-31,148v26,0,47,-16,57,-43r21,0v-10,35,-42,60,-78,60r-4,0r-8,36r-12,0r7,-36v-18,-4,-29,-9,-38,-20v-10,-13,-15,-30,-15,-50v0,-63,39,-111,92,-112r6,-30r13,0r-6,30v33,4,53,25,53,58xm86,-46r31,-147v-38,3,-67,44,-67,93v0,31,11,47,36,54"},"\u00a5":{"d":"84,-67r-63,0r3,-15r62,0r4,-16r-9,-24r-55,0r3,-15r47,0r-36,-96r23,0r41,116r86,-116r25,0r-72,96r47,0r-3,15r-55,0r-20,26r-3,14r62,0r-3,15r-63,0r-14,67r-22,0"},"\u00b9":{"d":"114,-237r-29,141r-17,0r25,-115v-12,6,-26,10,-40,11r2,-12v21,-2,38,-11,47,-25r12,0","w":128},"\u00b2":{"d":"123,-109r-3,13r-97,0v2,-27,16,-41,61,-64v27,-15,37,-25,37,-40v0,-15,-12,-26,-30,-26v-21,0,-33,13,-35,37r-15,0v1,-31,22,-50,52,-50v26,0,43,15,43,38v0,16,-8,28,-25,40v-6,4,-6,4,-32,18v-23,13,-33,22,-38,34r12,0r70,0","w":128},"\u00b3":{"d":"26,-143r15,0v-1,3,-1,5,-1,8v0,18,12,29,32,29v21,0,37,-15,37,-34v0,-9,-5,-16,-13,-20v-5,-2,-10,-3,-20,-3r-6,0r2,-13r9,0v24,0,37,-9,37,-26v0,-14,-11,-24,-28,-24v-19,0,-32,12,-35,33r-15,0v5,-29,23,-46,51,-46v26,0,43,15,43,36v0,17,-9,28,-27,34v13,6,19,15,19,29v0,27,-23,47,-54,47v-29,0,-47,-16,-47,-41v0,-3,0,-5,1,-9","w":128},".":{"d":"44,-36r-8,36r-28,0r8,-36r28,0","w":80},":":{"d":"50,-36r-8,36r-28,0r8,-36r28,0xm78,-169r-8,36r-27,0r7,-36r28,0","w":86},"\u00b7":{"d":"59,-107r-8,36r-28,0r8,-36r28,0","w":80},",":{"d":"44,-35r-8,35v-6,29,-18,42,-41,46r3,-13v12,-3,19,-13,23,-33r-13,0r8,-35r28,0","w":80},";":{"d":"50,-35r-8,35v-6,29,-18,42,-41,46r3,-13v12,-3,19,-13,23,-33r-13,0r8,-35r28,0xm78,-169r-7,36r-28,0r7,-36r28,0","w":86},"!":{"d":"53,-33r-7,33r-25,0r7,-33r25,0xm95,-240r-15,74r-28,106r-12,0r17,-106r16,-74r22,0","w":94},"\u00a1":{"d":"43,-140r7,-33r25,0r-7,33r-25,0xm0,67r16,-75r28,-105r12,0r-17,105r-16,75r-23,0","w":94},"?":{"d":"91,-33r-7,33r-25,0r7,-33r25,0xm94,-61r-20,0v6,-35,14,-49,43,-68v29,-20,42,-37,42,-57v0,-24,-17,-40,-44,-40v-33,0,-53,20,-59,60r-20,0v6,-51,34,-78,80,-78v40,0,65,23,65,57v0,16,-5,30,-16,43v-8,9,-11,11,-39,31v-21,15,-26,24,-32,52","w":176},"\u00bf":{"d":"86,-140r8,-33r25,0r-7,33r-26,0xm84,-112r20,0v-6,35,-15,48,-44,67v-30,20,-42,38,-42,58v0,24,17,39,44,39v33,0,54,-20,59,-60r20,0v-5,51,-33,79,-79,79v-40,0,-66,-23,-66,-57v0,-16,5,-31,16,-44v8,-9,11,-10,39,-30v21,-15,27,-24,33,-52","w":176},"\u00bb":{"d":"35,-142r35,47r-4,21r-54,39r5,-24r39,-28r-25,-34xm89,-142r35,47r-4,21r-54,38r5,-23r39,-28r-26,-34","w":139},"\u00ab":{"d":"75,-142r-5,23r-39,28r26,35r-4,21r-36,-47r5,-22xm129,-142r-5,23r-39,28r26,35r-4,20r-36,-46r5,-22","w":139},"\/":{"d":"148,-240r-171,304r-18,0r171,-304r18,0","w":128},"-":{"d":"83,-98r-4,19r-80,0r4,-19r80,0","w":79},"\u00ad":{"d":"83,-98r-4,19r-80,0r4,-19r80,0","w":79},"(":{"d":"95,-240r17,0v-21,25,-42,58,-55,88v-15,35,-24,74,-24,115v0,34,7,70,17,101r-15,0v-13,-31,-22,-77,-22,-113v0,-67,28,-132,82,-191","w":100},")":{"d":"7,64r-17,0v21,-23,42,-59,55,-88v15,-36,24,-74,24,-115v0,-34,-7,-70,-17,-101r15,0v13,31,22,77,22,113v0,67,-28,131,-82,191","w":100},"[":{"d":"115,-240r-4,16r-34,0r-58,272r35,0r-4,16r-55,0r65,-304r55,0","w":100},"]":{"d":"-13,64r4,-16r34,0r58,-272r-35,0r4,-16r55,0r-65,304r-55,0","w":100},"&":{"d":"167,-106r21,0v-3,20,-14,44,-29,62r29,44r-24,0r-19,-30v-21,24,-41,35,-69,35v-39,0,-66,-24,-66,-60v0,-22,10,-40,29,-54v10,-8,12,-9,40,-24v-15,-26,-20,-38,-20,-54v0,-31,23,-52,55,-52v30,0,52,18,52,44v0,26,-16,44,-60,68r42,66v11,-15,16,-29,19,-45xm97,-142v36,-18,50,-32,50,-51v0,-17,-14,-29,-33,-29v-21,0,-36,14,-36,34v0,12,4,21,19,46xm135,-45r-46,-73v-17,9,-27,15,-32,18v-17,11,-26,27,-26,43v0,25,19,44,45,44v21,0,45,-13,59,-32","w":210},"\u00a7":{"d":"180,-179r-21,0v0,-3,1,-4,1,-5v0,-22,-15,-36,-38,-36v-21,0,-36,12,-36,30v0,15,6,23,34,50v28,27,34,33,41,43v7,10,11,20,11,31v0,27,-19,48,-48,52v7,9,11,19,11,30v0,28,-25,49,-59,49v-37,0,-62,-22,-62,-55v0,-2,0,-4,1,-7r20,0v-1,3,0,4,0,6v0,24,16,39,42,39v20,0,36,-14,36,-31v0,-15,-6,-24,-39,-57v-30,-30,-31,-31,-38,-41v-6,-10,-10,-20,-10,-31v0,-26,19,-47,47,-51v-6,-9,-8,-17,-8,-26v0,-28,24,-49,57,-49v35,0,58,20,58,52r0,7xm125,-107r-43,-42r-1,0v-4,0,-16,4,-21,8v-9,7,-14,16,-14,27v0,13,6,23,26,43r42,44r1,0v22,-3,35,-17,35,-36v0,-13,-7,-26,-25,-44"},"*":{"d":"139,-239r-9,41r39,-9r2,13r-39,9r20,34r-12,6r-20,-35r-30,31r-9,-10r28,-30r-34,-18r7,-12r34,19r9,-40"},"'":{"d":"49,-144r-17,0r17,-96r23,0","w":55},"\"":{"d":"49,-144r-17,0r17,-96r23,0xm95,-144r-16,0r17,-96r23,0","w":102},"@":{"d":"241,-60r13,0v-8,17,-15,25,-30,37v-23,18,-50,28,-79,28v-69,0,-124,-55,-124,-124v0,-71,55,-127,126,-127v63,0,112,46,112,104v0,28,-12,52,-33,70v-14,12,-32,19,-46,19v-14,0,-23,-7,-25,-20v-14,14,-26,20,-41,20v-23,0,-38,-19,-38,-46v0,-44,34,-88,70,-88v16,0,27,8,34,24r7,-18r16,0r-30,89v-2,6,-3,12,-3,16v0,8,6,13,15,13v12,0,25,-7,37,-19v16,-16,25,-36,25,-59v0,-53,-44,-93,-100,-93v-64,0,-113,50,-113,115v0,63,49,113,111,113v40,0,78,-21,96,-54xm160,-105r8,-24v3,-9,5,-15,5,-20v0,-15,-11,-27,-24,-27v-27,0,-55,42,-55,82v0,19,9,30,23,30v9,0,19,-4,27,-12v6,-6,10,-14,16,-29","w":271},"#":{"d":"131,-83r-21,71r-16,0r21,-71r-42,0r-21,71r-16,0r22,-71r-45,0r5,-15r44,0r12,-40r-44,0r5,-15r44,0r20,-66r15,0r-20,66r42,0r20,-66r16,0r-20,66r46,0r-5,15r-45,0r-13,40r46,0r-5,15r-45,0xm132,-138r-42,0r-12,40r42,0"},"\u00b0":{"d":"96,-239v28,0,51,23,51,51v0,28,-23,52,-51,52v-28,0,-51,-24,-51,-52v0,-28,23,-51,51,-51xm96,-225v-20,0,-37,16,-37,37v0,21,16,38,37,38v20,0,38,-17,38,-37v0,-22,-17,-38,-38,-38","w":149},"+":{"d":"24,-124r73,0r0,-73r16,0r0,73r72,0r0,15r-72,0r0,73r-16,0r0,-73r-73,0r0,-15"},"\u00d7":{"d":"37,-59r57,-57r-57,-58r11,-11r57,58r57,-58r12,11r-58,58r58,57r-12,11r-57,-57r-57,57"},"\u00f7":{"d":"25,-125r161,0r0,16r-161,0r0,-16xm106,-185v8,0,15,7,15,16v0,9,-7,16,-16,16v-9,0,-15,-7,-15,-16v0,-9,7,-16,16,-16xm106,-80v8,0,15,7,15,16v0,9,-7,16,-16,16v-9,0,-15,-7,-15,-16v0,-9,7,-16,16,-16"},"=":{"d":"24,-150r161,0r0,16r-161,0r0,-16xm24,-99r161,0r0,16r-161,0r0,-16"},"\u00b6":{"d":"53,64r38,-177r-6,0v-32,0,-51,-18,-51,-48v0,-23,12,-47,30,-61v15,-12,33,-18,60,-18r84,0r-4,16r-15,0r-61,288r-21,0r61,-288r-33,0r-61,288r-21,0"},"\u00a4":{"d":"23,-43r33,-33v-13,-16,-19,-33,-19,-52v0,-19,6,-34,19,-51r-34,-33r12,-13r33,33v18,-13,34,-19,53,-19v19,0,35,6,52,19r33,-33r12,13r-33,33v13,17,19,32,19,51v0,19,-6,35,-19,52r34,33r-12,12r-34,-33v-16,13,-33,19,-52,19v-18,0,-34,-6,-52,-19r-33,33xm121,-192v-36,0,-64,28,-64,64v0,35,28,64,63,64v35,0,63,-29,63,-64v0,-35,-28,-64,-62,-64","w":240},"{":{"d":"69,-189r-13,61v-6,24,-12,34,-29,41v10,6,13,12,13,23v0,5,-1,13,-2,18r-12,59v-1,4,-2,14,-2,17v0,12,9,18,24,18r4,0r-3,16r-4,0v-28,0,-41,-9,-41,-30v0,-7,0,-14,2,-23r12,-56v1,-6,2,-11,2,-15v0,-10,-5,-16,-15,-20r3,-16v16,-5,24,-13,28,-33r13,-62v7,-35,25,-49,60,-49r4,0r-3,17r-4,0v-10,0,-20,3,-25,8v-6,6,-9,13,-12,26","w":99},"}":{"d":"32,14r13,-61v6,-24,12,-34,29,-41v-10,-6,-13,-13,-13,-24v0,-5,1,-13,2,-18r12,-58v1,-4,2,-14,2,-17v0,-12,-9,-18,-24,-18r-4,0r4,-17r4,0v28,0,41,9,41,31v0,7,-1,14,-3,23r-12,56v-1,6,-2,11,-2,15v0,10,5,16,15,20r-3,16v-16,5,-24,13,-28,33r-13,62v-7,35,-25,48,-60,48r-4,0r3,-16r4,0v10,0,20,-3,25,-8v6,-6,9,-13,12,-26","w":99},"\u00aa":{"d":"124,-107r-107,0r2,-12r107,0xm61,-210r-14,0v4,-22,18,-33,42,-33v22,0,35,9,35,24v0,4,0,6,-2,16r-7,30v-2,9,-2,11,-2,13v0,3,2,5,4,5v2,0,1,0,6,-1r-2,12v-5,1,-6,1,-9,1v-8,0,-13,-4,-13,-13v-10,10,-19,15,-33,15v-19,0,-31,-10,-31,-27v0,-9,4,-19,12,-24v8,-5,17,-8,36,-9v24,-1,28,-3,28,-18v0,-8,-7,-12,-21,-12v-17,0,-25,6,-29,21xm104,-188r2,-5v-5,2,-7,2,-11,3v0,0,-2,0,-14,1v-11,1,-16,1,-21,3v-7,3,-11,9,-11,16v0,10,7,17,20,17v19,0,30,-12,35,-35","w":131},"\u00ba":{"d":"124,-107r-107,0r2,-12r107,0xm92,-243v25,0,40,15,40,39v0,36,-23,63,-53,63v-26,0,-41,-16,-41,-42v0,-35,23,-60,54,-60xm90,-231v-22,0,-38,21,-38,48v0,19,10,30,28,30v22,0,38,-22,38,-50v0,-17,-11,-28,-28,-28","w":131},"\u00b1":{"d":"24,-124r73,0r0,-73r16,0r0,73r72,0r0,15r-72,0r0,73r-16,0r0,-73r-73,0r0,-15xm24,-25r161,0r0,15r-161,0r0,-15"},"\u00bd":{"d":"114,-237r-29,141r-17,0r25,-115v-12,6,-26,10,-40,11r2,-12v21,-2,38,-11,47,-25r12,0xm239,-236r-140,236r-16,0r141,-236r15,0xm282,-13r-3,13r-96,0v2,-27,15,-41,60,-64v27,-15,37,-25,37,-40v0,-15,-11,-26,-29,-26v-21,0,-33,13,-35,37r-15,0v2,-31,21,-50,51,-50v26,0,43,15,43,38v0,16,-8,28,-25,40v-6,4,-6,4,-31,18v-23,13,-34,22,-39,34r12,0r70,0","w":308},"\u00bc":{"d":"114,-237r-29,141r-17,0r25,-115v-12,6,-26,10,-40,11r2,-12v21,-2,38,-11,47,-25r12,0xm239,-236r-140,236r-16,0r141,-236r15,0xm290,-47r-3,12r-22,0r-7,35r-16,0r8,-35r-68,0r3,-13r89,-94r14,0r-21,95r23,0xm252,-47r12,-52v1,-6,2,-10,3,-14r0,-4r0,0v-8,9,-11,13,-15,17r-51,53r51,0","w":308},"\u00be":{"d":"26,-143r15,0v-1,3,-1,5,-1,8v0,18,12,29,32,29v21,0,37,-15,37,-34v0,-9,-5,-16,-13,-20v-5,-2,-10,-3,-20,-3r-6,0r2,-13r9,0v24,0,37,-9,37,-26v0,-14,-11,-24,-28,-24v-19,0,-32,12,-35,33r-15,0v5,-29,23,-46,51,-46v26,0,43,15,43,36v0,17,-9,28,-27,34v13,6,19,15,19,29v0,27,-23,47,-54,47v-29,0,-47,-16,-47,-41v0,-3,0,-5,1,-9xm239,-236r-140,236r-16,0r141,-236r15,0xm290,-47r-3,12r-22,0r-7,35r-16,0r8,-35r-68,0r3,-13r89,-94r14,0r-21,95r23,0xm252,-47r12,-52v1,-6,2,-10,3,-14r0,-4r0,0v-8,9,-11,13,-15,17r-51,53r51,0","w":308},"%":{"d":"238,-246r-192,257r-18,0r192,-257r18,0xm93,-239v27,0,42,17,42,46v0,39,-25,68,-57,68v-27,0,-43,-17,-43,-44v0,-22,9,-45,23,-57v9,-8,21,-13,35,-13xm91,-224v-23,0,-39,24,-39,56v0,19,9,29,26,29v10,0,19,-3,25,-11v9,-11,14,-28,14,-45v0,-19,-9,-29,-26,-29xm190,-110v27,0,43,17,43,44v0,21,-9,44,-22,56v-10,9,-23,14,-37,14v-26,0,-42,-16,-42,-44v0,-40,25,-70,58,-70xm188,-96v-9,0,-17,4,-23,11v-9,10,-16,29,-16,46v0,19,10,29,27,29v22,0,39,-23,39,-54v0,-20,-10,-32,-27,-32","w":253},"\\":{"d":"48,-240r18,0r42,304r-18,0","w":131},"\u00a8":{"d":"106,-240r-7,34r-22,0r8,-34r21,0xm161,-240r-7,34r-22,0r8,-34r21,0","w":180},"\u00b4":{"d":"167,-247r-49,48r-18,0r40,-48r27,0","w":180},"`":{"d":"131,-199r-17,0r-37,-48r26,0","w":180},"\u00b8":{"d":"86,0r-17,19v5,-1,8,-1,11,-1v16,0,27,10,27,23v0,15,-16,27,-36,27v-11,0,-22,-2,-33,-7r5,-10v8,4,16,6,24,6v13,0,21,-6,21,-15v0,-8,-7,-14,-18,-14v-5,0,-8,1,-13,3r-6,-5r23,-26r12,0","w":180},"\u00af":{"d":"168,-229r-3,15r-94,0r3,-15r94,0","w":180},"\u00a9":{"d":"151,-246v67,0,124,57,124,126v0,69,-57,125,-126,125v-69,0,-125,-56,-125,-125v0,-70,56,-126,127,-126xm151,-233v-63,0,-113,50,-113,113v0,62,50,113,111,113v62,0,112,-50,112,-113v0,-62,-50,-113,-110,-113xm200,-106r16,0v-3,35,-27,57,-63,57v-41,0,-68,-28,-68,-71v0,-42,28,-72,69,-72v33,0,57,19,60,46r-16,0v-5,-20,-22,-32,-45,-32v-31,0,-51,23,-51,58v0,35,20,58,51,58v27,0,43,-16,47,-44","w":283},"\u00ae":{"d":"151,-246v67,0,124,57,124,126v0,69,-57,125,-126,125v-69,0,-125,-56,-125,-125v0,-70,56,-126,127,-126xm151,-233v-63,0,-113,50,-113,113v0,62,50,113,111,113v62,0,112,-50,112,-113v0,-62,-50,-113,-110,-113xm98,-189r65,0v31,0,48,14,48,38v0,16,-9,27,-24,33v17,6,21,12,22,42v1,15,2,20,7,25r-19,0v-3,-3,-3,-9,-4,-20v-2,-35,-6,-41,-37,-41r-42,0r0,61r-16,0r0,-138xm114,-175r0,50r40,0v29,0,41,-7,41,-25v0,-17,-12,-25,-37,-25r-44,0","w":283},"\u00a0":{"w":90},"<":{"d":"175,-202r0,22r-131,60r131,59r0,22r-156,-72r0,-19","w":180},">":{"d":"20,-39r0,-22r131,-60r-131,-59r0,-22r156,72r0,19","w":180},"\u00ac":{"d":"153,0r0,-79r-134,0r0,-20r156,0r0,99r-22,0","w":180},"^":{"d":"42,-136r-22,0r65,-104r26,0r64,104r-22,0r-56,-89","w":180},"|":{"d":"86,-240r23,0r0,300r-23,0r0,-300","w":180},"\u00a6":{"d":"86,-240r23,0r0,119r-23,0r0,-119xm86,-55r23,0r0,115r-23,0r0,-115","w":180},"_":{"d":"8,27r180,0r0,15r-180,0r0,-15","w":180},"~":{"d":"54,-211r-12,-10v13,-26,29,-39,48,-39v10,0,20,4,41,15v21,10,26,13,35,13v14,0,23,-7,35,-28r13,9v-12,25,-29,39,-50,39v-10,0,-16,-2,-45,-17v-14,-7,-22,-10,-30,-10v-13,0,-24,8,-35,28","w":240}}});Cufon.registerFont({"w":191,"face":{"font-family":"Nimbus Sans Novus T","font-weight":500,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-42 -324 341 299","underline-thickness":"20.16","underline-position":"-35.28","slope":"-12","stemh":"24","stemv":"29","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":90},"\u00c4":{"d":"165,-240r43,240r-33,0r-12,-73r-100,0r-43,73r-36,0r145,-240r36,0xm159,-99r-9,-58v-6,-36,-6,-40,-8,-56r-39,69r-26,45r82,0xm139,-299r-8,34r-31,0r7,-34r32,0xm212,-299r-7,34r-31,0r7,-34r31,0","w":227},"\u00c1":{"d":"165,-240r43,240r-33,0r-12,-73r-100,0r-43,73r-36,0r145,-240r36,0xm159,-99r-9,-58v-6,-36,-6,-40,-8,-56r-39,69r-26,45r82,0xm209,-306r-56,47r-22,0r40,-47r38,0","w":227},"\u00c0":{"d":"165,-240r43,240r-33,0r-12,-73r-100,0r-43,73r-36,0r145,-240r36,0xm159,-99r-9,-58v-6,-36,-6,-40,-8,-56r-39,69r-26,45r82,0xm169,-259r-22,0r-33,-47r34,0","w":227},"\u00c2":{"d":"165,-240r43,240r-33,0r-12,-73r-100,0r-43,73r-36,0r145,-240r36,0xm159,-99r-9,-58v-6,-36,-6,-40,-8,-56r-39,69r-26,45r82,0xm199,-259r-25,0r-17,-30r-33,30r-27,0r48,-46r29,0","w":227},"\u00c3":{"d":"165,-240r43,240r-33,0r-12,-73r-100,0r-43,73r-36,0r145,-240r36,0xm159,-99r-9,-58v-6,-36,-6,-40,-8,-56r-39,69r-26,45r82,0xm198,-300r17,0v-8,25,-19,37,-34,37v-6,0,-11,-1,-22,-6v-19,-9,-23,-11,-27,-11v-6,0,-9,5,-15,16r-17,0v7,-24,18,-37,33,-37v8,0,8,0,37,14v5,2,9,3,12,3v6,0,12,-6,16,-16","w":227},"\u00c5":{"d":"165,-240r43,240r-33,0r-12,-73r-100,0r-43,73r-36,0r145,-240r36,0xm159,-99r-9,-58v-6,-36,-6,-40,-8,-56r-39,69r-26,45r82,0xm153,-324v19,0,35,17,35,36v0,20,-16,36,-35,36v-20,0,-36,-16,-36,-36v0,-20,16,-36,36,-36xm152,-306v-11,0,-18,7,-18,18v0,11,8,19,18,19v10,0,19,-9,19,-19v0,-10,-9,-18,-19,-18","w":227},"\u00cb":{"d":"227,-240r-6,27r-135,0r-17,77r127,0r-6,25r-126,0r-18,84r137,0r-6,27r-167,0r51,-240r166,0xm135,-299r-7,34r-32,0r8,-34r31,0xm208,-299r-7,34r-31,0r7,-34r31,0","w":210},"\u00c9":{"d":"227,-240r-6,27r-135,0r-17,77r127,0r-6,25r-126,0r-18,84r137,0r-6,27r-167,0r51,-240r166,0xm202,-306r-56,47r-22,0r39,-47r39,0","w":210},"\u00c8":{"d":"227,-240r-6,27r-135,0r-17,77r127,0r-6,25r-126,0r-18,84r137,0r-6,27r-167,0r51,-240r166,0xm167,-259r-21,0r-33,-47r34,0","w":210},"\u00ca":{"d":"227,-240r-6,27r-135,0r-17,77r127,0r-6,25r-126,0r-18,84r137,0r-6,27r-167,0r51,-240r166,0xm198,-259r-26,0r-16,-30r-33,30r-27,0r48,-46r29,0","w":210},"\u00cf":{"d":"91,-240r-51,240r-30,0r51,-240r30,0xm77,-299r-7,34r-30,0r7,-34r30,0xm130,-299r-7,34r-30,0r7,-34r30,0","w":86},"\u00cd":{"d":"91,-240r-51,240r-30,0r51,-240r30,0xm133,-306r-49,47r-23,0r35,-47r37,0","w":86},"\u00cc":{"d":"91,-240r-51,240r-30,0r51,-240r30,0xm98,-259r-21,0r-33,-47r33,0","w":86},"\u00ce":{"d":"91,-240r-51,240r-30,0r51,-240r30,0xm126,-259r-25,0r-14,-30r-31,30r-26,0r45,-46r29,0","w":86},"\u00d1":{"d":"253,-240r-51,240r-36,0r-67,-159v-10,-24,-13,-31,-17,-46v-2,14,-5,31,-13,68r-29,137r-30,0r51,-240r34,0r68,159v8,20,14,36,18,48v4,-27,9,-56,14,-81r27,-126r31,0xm208,-300r18,0v-8,25,-19,37,-34,37v-6,0,-11,-1,-22,-6v-19,-9,-23,-11,-27,-11v-6,0,-9,5,-15,16r-17,0v7,-24,18,-37,33,-37v8,0,8,0,37,14v5,2,9,3,12,3v6,0,11,-6,15,-16","w":247},"\u00d6":{"d":"154,-246v62,0,101,40,101,103v0,39,-12,76,-35,104v-24,30,-57,44,-97,44v-62,0,-101,-40,-101,-105v0,-51,22,-98,57,-123v22,-15,47,-23,75,-23xm152,-219v-58,0,-98,50,-98,119v0,49,27,79,72,79v56,0,98,-52,98,-122v0,-20,-7,-41,-18,-54v-12,-14,-31,-22,-54,-22xm153,-299r-7,34r-32,0r8,-34r31,0xm226,-299r-7,34r-31,0r7,-34r31,0","w":262},"\u00d3":{"d":"154,-246v62,0,101,40,101,103v0,39,-12,76,-35,104v-24,30,-57,44,-97,44v-62,0,-101,-40,-101,-105v0,-51,22,-98,57,-123v22,-15,47,-23,75,-23xm152,-219v-58,0,-98,50,-98,119v0,49,27,79,72,79v56,0,98,-52,98,-122v0,-20,-7,-41,-18,-54v-12,-14,-31,-22,-54,-22xm221,-306r-55,47r-22,0r39,-47r38,0","w":262},"\u00d2":{"d":"154,-246v62,0,101,40,101,103v0,39,-12,76,-35,104v-24,30,-57,44,-97,44v-62,0,-101,-40,-101,-105v0,-51,22,-98,57,-123v22,-15,47,-23,75,-23xm152,-219v-58,0,-98,50,-98,119v0,49,27,79,72,79v56,0,98,-52,98,-122v0,-20,-7,-41,-18,-54v-12,-14,-31,-22,-54,-22xm187,-259r-21,0r-34,-47r34,0","w":262},"\u00d4":{"d":"154,-246v62,0,101,40,101,103v0,39,-12,76,-35,104v-24,30,-57,44,-97,44v-62,0,-101,-40,-101,-105v0,-51,22,-98,57,-123v22,-15,47,-23,75,-23xm152,-219v-58,0,-98,50,-98,119v0,49,27,79,72,79v56,0,98,-52,98,-122v0,-20,-7,-41,-18,-54v-12,-14,-31,-22,-54,-22xm214,-259r-25,0r-17,-30r-33,30r-27,0r48,-46r29,0","w":262},"\u00d5":{"d":"154,-246v62,0,101,40,101,103v0,39,-12,76,-35,104v-24,30,-57,44,-97,44v-62,0,-101,-40,-101,-105v0,-51,22,-98,57,-123v22,-15,47,-23,75,-23xm152,-219v-58,0,-98,50,-98,119v0,49,27,79,72,79v56,0,98,-52,98,-122v0,-20,-7,-41,-18,-54v-12,-14,-31,-22,-54,-22xm212,-300r17,0v-8,25,-18,37,-33,37v-6,0,-11,-1,-22,-6v-19,-9,-23,-11,-27,-11v-6,0,-10,5,-16,16r-17,0v7,-24,19,-37,34,-37v8,0,8,0,37,14v5,2,8,3,11,3v6,0,12,-6,16,-16","w":262},"\u00dc":{"d":"249,-240r-30,144v-8,37,-14,53,-24,67v-17,23,-44,34,-82,34v-56,0,-90,-27,-90,-72v0,-9,2,-20,5,-36r29,-137r31,0r-30,140v-4,18,-5,23,-5,32v0,29,22,46,59,46v28,0,49,-9,60,-26v7,-10,11,-22,17,-51r30,-141r30,0xm145,-299r-7,34r-32,0r7,-34r32,0xm218,-299r-7,34r-31,0r7,-34r31,0","w":240},"\u00da":{"d":"249,-240r-30,144v-8,37,-14,53,-24,67v-17,23,-44,34,-82,34v-56,0,-90,-27,-90,-72v0,-9,2,-20,5,-36r29,-137r31,0r-30,140v-4,18,-5,23,-5,32v0,29,22,46,59,46v28,0,49,-9,60,-26v7,-10,11,-22,17,-51r30,-141r30,0xm213,-306r-55,47r-23,0r40,-47r38,0","w":240},"\u00d9":{"d":"249,-240r-30,144v-8,37,-14,53,-24,67v-17,23,-44,34,-82,34v-56,0,-90,-27,-90,-72v0,-9,2,-20,5,-36r29,-137r31,0r-30,140v-4,18,-5,23,-5,32v0,29,22,46,59,46v28,0,49,-9,60,-26v7,-10,11,-22,17,-51r30,-141r30,0xm177,-259r-21,0r-33,-47r34,0","w":240},"\u00db":{"d":"249,-240r-30,144v-8,37,-14,53,-24,67v-17,23,-44,34,-82,34v-56,0,-90,-27,-90,-72v0,-9,2,-20,5,-36r29,-137r31,0r-30,140v-4,18,-5,23,-5,32v0,29,22,46,59,46v28,0,49,-9,60,-26v7,-10,11,-22,17,-51r30,-141r30,0xm207,-259r-25,0r-17,-30r-33,30r-27,0r48,-46r29,0","w":240},"\u00dd":{"d":"240,-240r-117,145r-20,95r-31,0r21,-98r-63,-142r33,0r33,78v11,25,13,29,16,38v9,-13,12,-17,23,-31r68,-85r37,0xm192,-306r-55,47r-23,0r40,-47r38,0","w":203},"\u00e4":{"d":"53,-122r-27,0v5,-37,32,-57,75,-57v40,0,62,16,62,43v0,7,0,12,-4,29r-12,58v-3,12,-4,14,-4,19v0,7,3,10,9,10v3,0,4,0,8,-1r-4,21v-7,3,-11,4,-17,4v-14,0,-23,-8,-23,-21r0,-4v-16,18,-33,26,-58,26v-34,0,-55,-19,-55,-50v0,-19,10,-34,26,-44v12,-7,26,-10,53,-12v34,-3,40,-4,46,-9v4,-4,7,-12,7,-22v0,-14,-12,-23,-35,-23v-27,0,-42,10,-47,33xm125,-77r2,-13v-5,5,-15,8,-39,10v-18,1,-26,2,-34,5v-13,4,-22,16,-22,29v0,17,14,28,34,28v18,0,35,-8,45,-22v5,-7,10,-21,14,-37xm104,-240r-8,33r-29,0r7,-33r30,0xm162,-240r-7,33r-30,0r7,-33r30,0","w":181},"\u00e1":{"d":"53,-122r-27,0v5,-37,32,-57,75,-57v40,0,62,16,62,43v0,7,0,12,-4,29r-12,58v-3,12,-4,14,-4,19v0,7,3,10,9,10v3,0,4,0,8,-1r-4,21v-7,3,-11,4,-17,4v-14,0,-23,-8,-23,-21r0,-4v-16,18,-33,26,-58,26v-34,0,-55,-19,-55,-50v0,-19,10,-34,26,-44v12,-7,26,-10,53,-12v34,-3,40,-4,46,-9v4,-4,7,-12,7,-22v0,-14,-12,-23,-35,-23v-27,0,-42,10,-47,33xm125,-77r2,-13v-5,5,-15,8,-39,10v-18,1,-26,2,-34,5v-13,4,-22,16,-22,29v0,17,14,28,34,28v18,0,35,-8,45,-22v5,-7,10,-21,14,-37xm166,-248r-57,49r-20,0r40,-49r37,0","w":181},"\u00e0":{"d":"53,-122r-27,0v5,-37,32,-57,75,-57v40,0,62,16,62,43v0,7,0,12,-4,29r-12,58v-3,12,-4,14,-4,19v0,7,3,10,9,10v3,0,4,0,8,-1r-4,21v-7,3,-11,4,-17,4v-14,0,-23,-8,-23,-21r0,-4v-16,18,-33,26,-58,26v-34,0,-55,-19,-55,-50v0,-19,10,-34,26,-44v12,-7,26,-10,53,-12v34,-3,40,-4,46,-9v4,-4,7,-12,7,-22v0,-14,-12,-23,-35,-23v-27,0,-42,10,-47,33xm125,-77r2,-13v-5,5,-15,8,-39,10v-18,1,-26,2,-34,5v-13,4,-22,16,-22,29v0,17,14,28,34,28v18,0,35,-8,45,-22v5,-7,10,-21,14,-37xm131,-199r-19,0r-35,-49r32,0","w":181},"\u00e2":{"d":"53,-122r-27,0v5,-37,32,-57,75,-57v40,0,62,16,62,43v0,7,0,12,-4,29r-12,58v-3,12,-4,14,-4,19v0,7,3,10,9,10v3,0,4,0,8,-1r-4,21v-7,3,-11,4,-17,4v-14,0,-23,-8,-23,-21r0,-4v-16,18,-33,26,-58,26v-34,0,-55,-19,-55,-50v0,-19,10,-34,26,-44v12,-7,26,-10,53,-12v34,-3,40,-4,46,-9v4,-4,7,-12,7,-22v0,-14,-12,-23,-35,-23v-27,0,-42,10,-47,33xm125,-77r2,-13v-5,5,-15,8,-39,10v-18,1,-26,2,-34,5v-13,4,-22,16,-22,29v0,17,14,28,34,28v18,0,35,-8,45,-22v5,-7,10,-21,14,-37xm158,-199r-26,0r-14,-32r-32,32r-27,0r47,-49r29,0","w":181},"\u00e3":{"d":"53,-122r-27,0v5,-37,32,-57,75,-57v40,0,62,16,62,43v0,7,0,12,-4,29r-12,58v-3,12,-4,14,-4,19v0,7,3,10,9,10v3,0,4,0,8,-1r-4,21v-7,3,-11,4,-17,4v-14,0,-23,-8,-23,-21r0,-4v-16,18,-33,26,-58,26v-34,0,-55,-19,-55,-50v0,-19,10,-34,26,-44v12,-7,26,-10,53,-12v34,-3,40,-4,46,-9v4,-4,7,-12,7,-22v0,-14,-12,-23,-35,-23v-27,0,-42,10,-47,33xm125,-77r2,-13v-5,5,-15,8,-39,10v-18,1,-26,2,-34,5v-13,4,-22,16,-22,29v0,17,14,28,34,28v18,0,35,-8,45,-22v5,-7,10,-21,14,-37xm153,-241r16,0v-10,27,-18,37,-32,37v-6,0,-9,-2,-20,-7v-13,-7,-22,-10,-26,-10v-6,0,-11,5,-14,16r-16,0v8,-27,17,-36,31,-36v6,0,10,2,41,16v1,0,3,1,4,1v7,0,13,-7,16,-17","w":181},"\u00e5":{"d":"53,-122r-27,0v5,-37,32,-57,75,-57v40,0,62,16,62,43v0,7,0,12,-4,29r-12,58v-3,12,-4,14,-4,19v0,7,3,10,9,10v3,0,4,0,8,-1r-4,21v-7,3,-11,4,-17,4v-14,0,-23,-8,-23,-21r0,-4v-16,18,-33,26,-58,26v-34,0,-55,-19,-55,-50v0,-19,10,-34,26,-44v12,-7,26,-10,53,-12v34,-3,40,-4,46,-9v4,-4,7,-12,7,-22v0,-14,-12,-23,-35,-23v-27,0,-42,10,-47,33xm125,-77r2,-13v-5,5,-15,8,-39,10v-18,1,-26,2,-34,5v-13,4,-22,16,-22,29v0,17,14,28,34,28v18,0,35,-8,45,-22v5,-7,10,-21,14,-37xm115,-261v19,0,35,16,35,35v0,20,-17,36,-36,36v-20,0,-36,-16,-36,-36v0,-20,17,-35,37,-35xm114,-244v-11,0,-18,7,-18,18v0,11,8,19,18,19v10,0,19,-9,19,-19v0,-10,-9,-18,-19,-18","w":181},"\u00eb":{"d":"136,-55r30,0v-3,12,-9,24,-18,34v-15,17,-36,26,-62,26v-46,0,-73,-27,-73,-74v0,-61,41,-110,94,-110v43,0,68,27,68,72v0,9,0,16,-2,28r-131,0v-1,5,-1,8,-1,12v0,30,18,48,46,48v24,0,41,-13,49,-36xm46,-102r101,0v0,-3,1,-5,1,-6v0,-31,-15,-47,-43,-47v-28,0,-50,20,-59,53xm110,-240r-7,33r-30,0r7,-33r30,0xm168,-240r-7,33r-30,0r8,-33r29,0","w":186},"\u00e9":{"d":"136,-55r30,0v-3,12,-9,24,-18,34v-15,17,-36,26,-62,26v-46,0,-73,-27,-73,-74v0,-61,41,-110,94,-110v43,0,68,27,68,72v0,9,0,16,-2,28r-131,0v-1,5,-1,8,-1,12v0,30,18,48,46,48v24,0,41,-13,49,-36xm46,-102r101,0v0,-3,1,-5,1,-6v0,-31,-15,-47,-43,-47v-28,0,-50,20,-59,53xm171,-248r-57,49r-20,0r40,-49r37,0","w":187},"\u00e8":{"d":"136,-55r30,0v-3,12,-9,24,-18,34v-15,17,-36,26,-62,26v-46,0,-73,-27,-73,-74v0,-61,41,-110,94,-110v43,0,68,27,68,72v0,9,0,16,-2,28r-131,0v-1,5,-1,8,-1,12v0,30,18,48,46,48v24,0,41,-13,49,-36xm46,-102r101,0v0,-3,1,-5,1,-6v0,-31,-15,-47,-43,-47v-28,0,-50,20,-59,53xm134,-199r-20,0r-34,-49r32,0","w":186},"\u00ea":{"d":"136,-55r30,0v-3,12,-9,24,-18,34v-15,17,-36,26,-62,26v-46,0,-73,-27,-73,-74v0,-61,41,-110,94,-110v43,0,68,27,68,72v0,9,0,16,-2,28r-131,0v-1,5,-1,8,-1,12v0,30,18,48,46,48v24,0,41,-13,49,-36xm46,-102r101,0v0,-3,1,-5,1,-6v0,-31,-15,-47,-43,-47v-28,0,-50,20,-59,53xm163,-199r-25,0r-15,-32r-32,32r-27,0r47,-49r29,0","w":186},"\u00ef":{"d":"72,-174r-36,174r-29,0r37,-174r28,0xm63,-240r-7,33r-29,0r8,-33r28,0xm110,-240r-7,33r-29,0r7,-33r29,0","w":78},"\u00ed":{"d":"72,-174r-36,174r-29,0r37,-174r28,0xm118,-248r-51,49r-20,0r35,-49r36,0","w":78},"\u00ec":{"d":"72,-174r-36,174r-29,0r37,-174r28,0xm80,-199r-19,0r-35,-49r33,0","w":78},"\u00ee":{"d":"72,-174r-36,174r-29,0r37,-174r28,0xm107,-199r-25,0r-11,-32r-29,32r-25,0r42,-49r29,0","w":78},"\u00f1":{"d":"71,-174r-6,28v13,-19,38,-33,62,-33v31,0,52,17,52,43v0,5,-3,21,-5,31r-22,105r-29,0r23,-106v2,-9,3,-19,3,-25v0,-15,-10,-24,-29,-24v-17,0,-34,7,-46,21v-10,10,-15,23,-19,43r-19,91r-29,0r37,-174r27,0xm159,-241r17,0v-10,27,-18,37,-32,37v-6,0,-10,-2,-21,-7v-13,-7,-21,-10,-25,-10v-6,0,-11,5,-14,16r-17,0v8,-27,17,-36,31,-36v6,0,10,2,41,16v1,0,4,1,5,1v7,0,12,-7,15,-17","w":194},"\u00f6":{"d":"111,-179v47,0,73,27,73,73v0,29,-11,58,-28,79v-18,22,-40,32,-68,32v-47,0,-75,-27,-75,-75v0,-62,43,-109,98,-109xm109,-155v-19,0,-34,8,-47,24v-12,16,-20,39,-20,60v0,33,18,52,48,52v36,0,65,-38,65,-86v0,-31,-17,-50,-46,-50xm116,-240r-7,33r-30,0r7,-33r30,0xm175,-240r-8,33r-29,0r7,-33r30,0","w":195},"\u00f3":{"d":"111,-179v47,0,73,27,73,73v0,29,-11,58,-28,79v-18,22,-40,32,-68,32v-47,0,-75,-27,-75,-75v0,-62,43,-109,98,-109xm109,-155v-19,0,-34,8,-47,24v-12,16,-20,39,-20,60v0,33,18,52,48,52v36,0,65,-38,65,-86v0,-31,-17,-50,-46,-50xm179,-248r-57,49r-20,0r40,-49r37,0","w":195},"\u00f2":{"d":"111,-179v47,0,73,27,73,73v0,29,-11,58,-28,79v-18,22,-40,32,-68,32v-47,0,-75,-27,-75,-75v0,-62,43,-109,98,-109xm109,-155v-19,0,-34,8,-47,24v-12,16,-20,39,-20,60v0,33,18,52,48,52v36,0,65,-38,65,-86v0,-31,-17,-50,-46,-50xm139,-199r-19,0r-35,-49r32,0","w":195},"\u00f4":{"d":"111,-179v47,0,73,27,73,73v0,29,-11,58,-28,79v-18,22,-40,32,-68,32v-47,0,-75,-27,-75,-75v0,-62,43,-109,98,-109xm109,-155v-19,0,-34,8,-47,24v-12,16,-20,39,-20,60v0,33,18,52,48,52v36,0,65,-38,65,-86v0,-31,-17,-50,-46,-50xm169,-199r-25,0r-15,-32r-32,32r-27,0r47,-49r30,0","w":195},"\u00f5":{"d":"111,-179v47,0,73,27,73,73v0,29,-11,58,-28,79v-18,22,-40,32,-68,32v-47,0,-75,-27,-75,-75v0,-62,43,-109,98,-109xm109,-155v-19,0,-34,8,-47,24v-12,16,-20,39,-20,60v0,33,18,52,48,52v36,0,65,-38,65,-86v0,-31,-17,-50,-46,-50xm165,-241r16,0v-10,27,-18,37,-32,37v-6,0,-9,-2,-20,-7v-13,-7,-22,-10,-26,-10v-6,0,-11,5,-14,16r-17,0v8,-27,17,-36,31,-36v6,0,10,2,41,16v1,0,4,1,5,1v7,0,13,-7,16,-17","w":195},"\u00fc":{"d":"185,-174r-37,174r-26,0r5,-27v-14,20,-35,32,-59,32v-32,0,-51,-18,-51,-45v0,-9,1,-13,4,-29r22,-105r28,0r-19,90v-6,29,-7,35,-7,41v0,16,11,24,32,24v16,0,29,-6,41,-20v10,-11,15,-22,20,-43r19,-92r28,0xm113,-240r-7,33r-30,0r7,-33r30,0xm172,-240r-7,33r-30,0r7,-33r30,0"},"\u00fa":{"d":"185,-174r-37,174r-26,0r5,-27v-14,20,-35,32,-59,32v-32,0,-51,-18,-51,-45v0,-9,1,-13,4,-29r22,-105r28,0r-19,90v-6,29,-7,35,-7,41v0,16,11,24,32,24v16,0,29,-6,41,-20v10,-11,15,-22,20,-43r19,-92r28,0xm175,-248r-56,49r-20,0r40,-49r36,0"},"\u00f9":{"d":"185,-174r-37,174r-26,0r5,-27v-14,20,-35,32,-59,32v-32,0,-51,-18,-51,-45v0,-9,1,-13,4,-29r22,-105r28,0r-19,90v-6,29,-7,35,-7,41v0,16,11,24,32,24v16,0,29,-6,41,-20v10,-11,15,-22,20,-43r19,-92r28,0xm137,-199r-19,0r-35,-49r32,0"},"\u00fb":{"d":"185,-174r-37,174r-26,0r5,-27v-14,20,-35,32,-59,32v-32,0,-51,-18,-51,-45v0,-9,1,-13,4,-29r22,-105r28,0r-19,90v-6,29,-7,35,-7,41v0,16,11,24,32,24v16,0,29,-6,41,-20v10,-11,15,-22,20,-43r19,-92r28,0xm167,-199r-25,0r-15,-32r-32,32r-27,0r47,-49r29,0"},"\u00fd":{"d":"175,-174r-88,157v-29,50,-28,51,-36,61v-13,18,-28,26,-47,26v-6,0,-12,-1,-21,-3r6,-24r2,1v8,3,11,2,15,2v10,0,18,-6,26,-18r8,-12r8,-11r2,-5r-31,-174r31,0r11,72v8,48,7,49,9,69v7,-15,11,-23,27,-54r47,-87r31,0xm157,-248r-57,49r-20,0r40,-49r37,0","w":156},"\u00ff":{"d":"175,-174r-88,157v-29,50,-28,51,-36,61v-13,18,-28,26,-47,26v-6,0,-12,-1,-21,-3r6,-24r2,1v8,3,11,2,15,2v10,0,18,-6,26,-18r8,-12r8,-11r2,-5r-31,-174r31,0r11,72v8,48,7,49,9,69v7,-15,11,-23,27,-54r47,-87r31,0xm96,-240r-7,33r-30,0r7,-33r30,0xm154,-240r-7,33r-30,0r8,-33r29,0","w":156},"A":{"d":"165,-240r43,240r-33,0r-12,-73r-100,0r-43,73r-36,0r145,-240r36,0xm159,-99r-9,-58v-6,-36,-6,-40,-8,-56r-39,69r-26,45r82,0","w":227},"B":{"d":"61,-240r77,0v35,0,48,2,61,9v17,9,25,25,25,46v0,31,-16,54,-46,60v23,6,36,24,36,48v0,29,-16,57,-42,69v-14,6,-27,8,-65,8r-97,0xm86,-213r-17,77r59,0v26,0,38,-3,47,-9v11,-8,18,-22,18,-36v0,-14,-7,-24,-19,-29v-7,-3,-15,-3,-35,-3r-53,0xm64,-112r-18,85r58,0v30,0,46,-3,57,-9v13,-8,22,-23,22,-40v0,-15,-7,-26,-20,-32v-8,-4,-14,-4,-42,-4r-57,0","w":231},"C":{"d":"197,-82r33,0v-12,55,-52,87,-109,87v-62,0,-99,-39,-99,-104v0,-37,14,-76,35,-102v24,-30,57,-45,97,-45v53,0,89,32,89,78v0,1,-1,3,-1,5r-30,0v-2,-38,-22,-56,-63,-56v-20,0,-39,7,-54,20v-25,22,-42,61,-42,100v0,49,26,78,69,78v38,0,65,-22,75,-61","w":242},"D":{"d":"61,-240r56,0v29,0,42,0,52,3v41,9,65,44,65,93v0,37,-14,75,-36,101v-15,18,-33,31,-54,37v-17,5,-31,6,-65,6r-69,0xm86,-213r-40,186r40,0v28,0,40,-1,53,-6v37,-14,64,-61,64,-111v0,-31,-11,-53,-32,-63v-11,-5,-22,-6,-45,-6r-40,0","w":239},"E":{"d":"227,-240r-6,27r-135,0r-17,77r127,0r-6,25r-126,0r-18,84r137,0r-6,27r-167,0r51,-240r166,0","w":210},"F":{"d":"219,-240r-6,27r-127,0r-17,77r112,0r-5,25r-112,0r-24,111r-30,0r51,-240r158,0","w":192},"G":{"d":"245,-128r-28,128r-20,0r0,-16r0,-5r-1,-5v-19,22,-42,31,-75,31v-62,0,-99,-38,-99,-104v0,-87,56,-147,134,-147v32,0,55,9,72,26v14,15,20,30,21,53r-31,0v-1,-15,-5,-24,-12,-32v-11,-13,-30,-20,-52,-20v-59,0,-100,50,-100,121v0,48,26,77,71,77v46,0,72,-26,86,-81r-77,0r6,-26r105,0","w":257},"H":{"d":"249,-240r-51,240r-30,0r23,-112r-127,0r-24,112r-30,0r51,-240r30,0r-21,101r127,0r22,-101r30,0","w":243},"I":{"d":"91,-240r-51,240r-30,0r51,-240r30,0","w":86},"J":{"d":"177,-240r-33,156v-8,36,-12,50,-20,62v-12,18,-32,28,-59,28v-41,0,-65,-21,-65,-57v0,-9,1,-17,3,-28r30,0v-2,15,-2,20,-2,26v0,21,12,32,34,32v14,0,25,-5,33,-15v5,-6,9,-21,14,-43r35,-161r30,0","w":168},"K":{"d":"247,-240r-116,99r77,141r-35,0r-66,-122r-49,41r-18,81r-30,0r51,-240r30,0r-25,120v4,-4,17,-14,37,-32r101,-88r43,0","w":223},"L":{"d":"91,-240r-45,213r129,0r-6,27r-159,0r51,-240r30,0","w":194},"M":{"d":"301,-240r-51,240r-31,0r23,-105v10,-45,11,-51,27,-108v-9,18,-17,31,-38,67r-86,146r-28,0r-26,-154v-2,-11,-5,-31,-9,-59v-6,37,-13,78,-20,111r-22,102r-30,0r51,-240r43,0r25,151v4,24,6,44,7,58v7,-14,13,-25,25,-45r95,-164r45,0","w":295},"N":{"d":"253,-240r-51,240r-36,0r-67,-159v-10,-24,-13,-31,-17,-46v-2,14,-5,31,-13,68r-29,137r-30,0r51,-240r34,0r68,159v8,20,14,36,18,48v4,-27,9,-56,14,-81r27,-126r31,0","w":247},"O":{"d":"154,-246v62,0,101,40,101,103v0,39,-12,76,-35,104v-24,30,-57,44,-97,44v-62,0,-101,-40,-101,-105v0,-51,22,-98,57,-123v22,-15,47,-23,75,-23xm152,-219v-58,0,-98,50,-98,119v0,49,27,79,72,79v56,0,98,-52,98,-122v0,-20,-7,-41,-18,-54v-12,-14,-31,-22,-54,-22","w":262},"P":{"d":"61,-240r82,0v27,0,42,3,54,10v17,11,27,30,27,52v0,28,-13,54,-35,67v-15,9,-30,12,-67,12r-60,0r-22,99r-30,0xm86,-213r-19,88r55,0v30,0,40,-2,50,-9v12,-9,20,-24,20,-40v0,-15,-6,-27,-16,-33v-8,-5,-19,-6,-44,-6r-46,0","w":216},"Q":{"d":"233,5r-18,19r-34,-32v-17,9,-36,13,-59,13v-31,0,-54,-9,-72,-28v-18,-19,-27,-45,-27,-77v0,-84,55,-146,131,-146v62,0,101,41,101,105v0,47,-20,91,-52,118xm156,-69r27,26v25,-22,39,-59,39,-98v0,-49,-25,-78,-69,-78v-57,0,-99,50,-99,118v0,50,27,80,71,80v13,0,23,-2,35,-7r-22,-22","w":264},"R":{"d":"60,-240r90,0v29,0,41,2,54,9v18,10,27,28,27,51v0,34,-20,58,-54,66v18,8,25,18,25,39v0,7,-1,17,-3,36v-1,7,-1,15,-1,19v0,8,1,15,4,20r-33,0v-2,-4,-3,-9,-3,-18v0,-5,1,-11,2,-23v2,-15,3,-25,3,-33v0,-13,-4,-21,-12,-25v-6,-4,-14,-5,-32,-5r-65,0r-22,104r-31,0xm85,-213r-18,83r66,0v24,0,37,-2,46,-8v12,-8,19,-23,19,-38v0,-14,-6,-26,-16,-32v-7,-4,-16,-5,-35,-5r-62,0","w":238},"S":{"d":"207,-170r-30,0v0,-17,-3,-25,-10,-33v-9,-10,-25,-16,-46,-16v-34,0,-56,16,-56,41v0,21,12,30,53,40v26,7,38,11,49,18v17,10,27,29,27,51v0,19,-8,37,-23,51v-17,16,-39,23,-71,23v-59,0,-92,-29,-92,-80r0,-5r31,0r0,3v0,38,19,55,61,55v38,0,63,-18,63,-46v0,-12,-4,-21,-13,-27v-7,-6,-16,-9,-39,-15v-28,-7,-39,-11,-51,-19v-16,-10,-25,-27,-25,-47v0,-42,34,-69,87,-69v23,0,42,5,56,14v20,13,29,29,29,56r0,5","w":212},"T":{"d":"232,-240r-6,27r-81,0r-45,213r-31,0r45,-213r-82,0r6,-27r194,0","w":204},"U":{"d":"249,-240r-30,144v-8,37,-14,53,-24,67v-17,23,-44,34,-82,34v-56,0,-90,-27,-90,-72v0,-9,2,-20,5,-36r29,-137r31,0r-30,140v-4,18,-5,23,-5,32v0,29,22,46,59,46v28,0,49,-9,60,-26v7,-10,11,-22,17,-51r30,-141r30,0","w":240},"V":{"d":"242,-240r-136,240r-36,0r-35,-240r33,0r18,148v2,18,4,39,7,63v4,-9,10,-17,14,-26v8,-14,7,-15,15,-29r86,-156r34,0","w":210},"W":{"d":"341,-240r-110,240r-34,0r-11,-151r-1,-26r-2,-24r0,-9v-11,26,-16,37,-32,72r-64,138r-34,0r-16,-240r31,0r6,123v1,24,3,60,3,69v0,3,-1,8,-1,15v5,-13,7,-17,13,-31r23,-50r59,-126r35,0r9,113v4,54,5,67,5,91v8,-21,16,-41,38,-90r51,-114r32,0","w":311},"X":{"d":"225,-240r-99,119r61,121r-33,0r-20,-41v-18,-36,-17,-36,-28,-61r-9,12v0,0,-6,8,-10,12r-64,78r-37,0r105,-126r-57,-114r34,0r25,51v9,19,14,32,19,44v14,-17,28,-34,41,-51r36,-44r36,0","w":206},"Y":{"d":"240,-240r-117,145r-20,95r-31,0r21,-98r-63,-142r33,0r33,78v11,25,13,29,16,38v9,-13,12,-17,23,-31r68,-85r37,0","w":203},"Z":{"d":"222,-240r-5,26r-159,165r-23,23v9,-1,21,-1,36,-1r118,0r-6,27r-192,0r6,-26r152,-158v9,-10,19,-19,29,-29r-6,0r-16,0r-115,0r5,-27r176,0","w":209},"\u00c6":{"d":"333,-240r-6,27r-117,0r-17,77r111,0r-5,25r-111,0r-18,84r120,0r-6,27r-150,0r14,-71r-80,0r-50,71r-37,0r176,-240r176,0xm179,-213r-9,0r-83,117r67,0","w":316},"\u00d8":{"d":"271,-234r-32,31v11,13,16,33,16,61v0,44,-17,85,-46,113v-24,23,-53,34,-87,34v-32,0,-55,-8,-73,-27r-30,29r-14,-15r32,-29v-12,-25,-15,-39,-15,-62v0,-86,55,-147,133,-147v30,0,51,8,72,27r30,-29xm61,-59r142,-140v-8,-12,-30,-21,-50,-21v-59,0,-99,49,-99,120v0,16,1,26,7,41xm214,-183r-142,142v18,14,32,20,54,20v55,0,98,-52,98,-120v0,-18,-2,-29,-10,-42","w":262},"\u00c7":{"d":"243,-163r-32,0r0,-4v0,-30,-24,-52,-59,-52v-31,0,-58,15,-76,41v-14,21,-23,52,-23,80v0,48,27,77,69,77v38,0,65,-22,75,-60r32,0v-4,24,-18,47,-38,64v-15,13,-43,22,-68,22r-8,0r-12,14v5,-1,8,-1,11,-1v16,0,29,10,29,24v0,17,-17,30,-40,30v-11,0,-21,-3,-34,-8r6,-11v10,4,17,5,25,5v11,0,18,-6,18,-14v0,-8,-6,-13,-16,-13v-4,0,-8,1,-13,2r-6,-6r19,-23v-53,-9,-80,-44,-80,-102v0,-38,13,-76,34,-102v24,-30,58,-46,98,-46v55,0,88,32,89,83","w":242},"\u00d0":{"d":"61,-240r56,0v29,0,42,0,52,3v41,9,65,44,65,93v0,37,-14,76,-36,102v-15,18,-33,30,-54,36v-17,5,-31,6,-65,6r-69,0r24,-113r-24,0r5,-24r24,0xm69,-137r64,0r-5,24r-64,0r-18,86r40,0v28,0,40,-1,53,-6v37,-14,64,-61,64,-111v0,-31,-11,-53,-32,-63v-11,-5,-22,-6,-45,-6r-40,0","w":239},"\u00de":{"d":"61,-240r30,0r-7,36r51,0v28,0,42,3,54,10v17,11,27,30,27,52v0,28,-13,54,-35,67v-15,9,-30,12,-67,12r-60,0r-14,63r-30,0xm78,-177r-19,88r55,0v30,0,41,-2,51,-9v12,-9,20,-24,20,-40v0,-15,-7,-27,-17,-33v-8,-5,-19,-6,-44,-6r-46,0","w":217},"a":{"d":"53,-122r-27,0v5,-37,32,-57,75,-57v40,0,62,16,62,43v0,7,0,12,-4,29r-12,58v-3,12,-4,14,-4,19v0,7,3,10,9,10v3,0,4,0,8,-1r-4,21v-7,3,-11,4,-17,4v-14,0,-23,-8,-23,-21r0,-4v-16,18,-33,26,-58,26v-34,0,-55,-19,-55,-50v0,-19,10,-34,26,-44v12,-7,26,-10,53,-12v34,-3,40,-4,46,-9v4,-4,7,-12,7,-22v0,-14,-12,-23,-35,-23v-27,0,-42,10,-47,33xm125,-77r2,-13v-5,5,-15,8,-39,10v-18,1,-26,2,-34,5v-13,4,-22,16,-22,29v0,17,14,28,34,28v18,0,35,-8,45,-22v5,-7,10,-21,14,-37","w":181},"b":{"d":"86,-240r-18,88v15,-18,33,-27,55,-27v41,0,67,29,67,74v0,32,-11,62,-31,84v-17,18,-36,26,-60,26v-19,0,-34,-5,-45,-15v-8,-7,-12,-14,-14,-22r-7,32r-26,0r51,-240r28,0xm117,-155v-22,0,-41,13,-53,35v-8,14,-13,38,-13,54v0,28,18,47,45,47v37,0,66,-38,66,-85v0,-32,-16,-51,-45,-51","w":202},"c":{"d":"135,-57r30,0v-11,39,-41,62,-81,62v-45,0,-71,-27,-71,-73v0,-24,8,-53,21,-71v18,-26,45,-40,77,-40v40,0,64,22,64,57r0,3r-29,0r0,-2v0,-22,-14,-34,-39,-34v-37,0,-65,38,-65,87v0,32,15,49,43,49v23,0,41,-13,50,-38","w":181},"d":{"d":"210,-240r-51,240r-26,0r5,-26v-12,20,-32,31,-59,31v-44,0,-67,-25,-67,-69v0,-37,16,-74,41,-95v16,-13,34,-20,56,-20v27,0,46,11,53,31r20,-92r28,0xm110,-155v-40,0,-69,38,-69,89v0,30,17,47,44,47v22,0,40,-12,53,-35v9,-15,15,-39,15,-57v0,-27,-17,-44,-43,-44","w":202},"e":{"d":"136,-55r30,0v-3,12,-9,24,-18,34v-15,17,-36,26,-62,26v-46,0,-73,-27,-73,-74v0,-61,41,-110,94,-110v43,0,68,27,68,72v0,9,0,16,-2,28r-131,0v-1,5,-1,8,-1,12v0,30,18,48,46,48v24,0,41,-13,49,-36xm46,-102r101,0v0,-3,1,-5,1,-6v0,-31,-15,-47,-43,-47v-28,0,-50,20,-59,53","w":186},"f":{"d":"113,-174r-5,24r-35,0r-32,150r-28,0r32,-150r-29,0r5,-24r29,0r1,-6v7,-33,9,-36,14,-44v9,-13,22,-19,43,-19v9,0,16,1,23,3r-5,24v-5,-2,-9,-3,-14,-3v-19,0,-26,8,-32,36r-2,9r35,0","w":101},"g":{"d":"194,-174r-31,146v-8,37,-13,51,-22,65v-14,23,-40,35,-73,35v-22,0,-41,-6,-53,-17v-10,-9,-16,-23,-16,-36r0,-2r29,0v3,22,16,32,42,32v20,0,35,-6,45,-19v5,-7,13,-26,16,-41r3,-15v-13,18,-32,28,-56,28v-38,0,-65,-29,-65,-70v0,-29,11,-61,28,-81v16,-19,40,-30,64,-30v28,0,47,14,56,37r6,-32r27,0xm105,-155v-20,0,-38,11,-49,31v-9,16,-14,38,-14,55v0,29,16,47,43,47v36,0,63,-38,63,-87v0,-28,-16,-46,-43,-46","w":200},"h":{"d":"86,-240r-19,92v20,-22,37,-31,61,-31v30,0,50,18,50,44v0,6,-2,20,-4,31r-22,104r-29,0r22,-102v3,-14,4,-20,4,-27v0,-18,-10,-26,-29,-26v-18,0,-37,9,-49,25v-8,10,-12,20,-16,39r-19,91r-29,0r51,-240r28,0","w":194},"i":{"d":"72,-174r-36,174r-29,0r37,-174r28,0xm86,-240r-7,35r-28,0r7,-35r28,0","w":78},"j":{"d":"69,-174r-37,172v-9,40,-8,40,-12,48v-7,17,-19,24,-39,24v-6,0,-11,-1,-17,-2r5,-24v4,2,7,2,11,2v13,0,14,-2,24,-49r37,-171r28,0xm83,-240r-7,35r-29,0r8,-35r28,0","w":75},"k":{"d":"86,-240r-30,142v2,-1,4,-3,5,-4v3,-3,6,-5,9,-7r75,-65r39,0r-77,64r43,110r-32,0r-33,-92r-36,30r-13,62r-29,0r51,-240r28,0","w":170},"l":{"d":"86,-240r-50,240r-29,0r51,-240r28,0","w":78},"m":{"d":"71,-174r-6,27v10,-18,38,-32,61,-32v23,0,40,12,43,32v19,-22,38,-32,62,-32v28,0,47,16,47,38v0,8,-2,22,-5,36r-22,105r-28,0r22,-103v3,-17,4,-23,4,-30v0,-14,-10,-23,-27,-23v-14,0,-26,7,-38,19v-12,12,-16,21,-22,51r-19,86r-28,0r22,-103v5,-23,5,-25,5,-31v0,-13,-10,-21,-25,-21v-14,0,-27,6,-40,18v-12,11,-17,23,-22,46r-19,91r-29,0r37,-174r27,0","w":293},"n":{"d":"71,-174r-6,28v13,-19,38,-33,62,-33v31,0,52,17,52,43v0,5,-3,21,-5,31r-22,105r-29,0r23,-106v2,-9,3,-19,3,-25v0,-15,-10,-24,-29,-24v-17,0,-34,7,-46,21v-10,10,-15,23,-19,43r-19,91r-29,0r37,-174r27,0","w":194},"o":{"d":"111,-179v47,0,73,27,73,73v0,29,-11,58,-28,79v-18,22,-40,32,-68,32v-47,0,-75,-27,-75,-75v0,-62,43,-109,98,-109xm109,-155v-19,0,-34,8,-47,24v-12,16,-20,39,-20,60v0,33,18,52,48,52v36,0,65,-38,65,-86v0,-31,-17,-50,-46,-50","w":195},"p":{"d":"71,-174r-5,25v10,-17,34,-30,58,-30v41,0,66,29,66,75v0,37,-15,72,-41,93v-14,11,-30,16,-51,16v-30,0,-49,-12,-56,-34r-20,96r-29,0r51,-241r27,0xm117,-155v-19,0,-36,8,-48,25v-10,14,-19,45,-19,66v0,28,19,46,47,46v36,0,65,-38,65,-87v0,-31,-17,-50,-45,-50","w":202},"q":{"d":"197,-174r-52,241r-28,0r19,-90v-18,20,-35,28,-59,28v-41,0,-65,-26,-65,-69v0,-30,11,-62,28,-83v18,-21,42,-32,69,-32v28,0,46,10,56,33r5,-28r27,0xm109,-155v-39,0,-68,38,-68,89v0,30,16,47,43,47v13,0,25,-4,35,-12v19,-15,34,-49,34,-80v0,-27,-17,-44,-44,-44","w":203},"r":{"d":"36,0r-29,0r37,-174r27,0r-8,37v10,-24,35,-42,62,-42v4,0,7,1,11,1r-7,31v-4,-1,-6,-1,-11,-1v-18,0,-32,7,-45,21v-10,12,-16,26,-21,50","w":115},"s":{"d":"152,-123r-28,0v0,-21,-12,-32,-38,-32v-22,0,-35,9,-35,23v0,8,5,15,15,20v7,3,6,3,32,13v32,13,45,27,45,48v0,15,-8,30,-19,40v-12,10,-31,16,-53,16v-45,0,-70,-21,-70,-60r28,0v0,24,16,37,45,37v23,0,40,-11,40,-28v0,-13,-8,-20,-31,-29v-29,-11,-38,-16,-46,-23v-9,-8,-15,-19,-15,-31v0,-30,28,-50,67,-50v22,0,38,5,50,17v9,9,12,19,13,36r0,3","w":162},"t":{"d":"111,-174r-6,24r-34,0r-20,95v-2,8,-3,13,-3,18v0,11,4,15,17,15v5,0,10,-1,17,-3r-5,25v-8,1,-13,1,-21,1v-26,0,-38,-9,-38,-28v0,-6,0,-7,4,-28r21,-95r-30,0r5,-24r30,0r11,-51r28,0r-11,51r35,0","w":104},"u":{"d":"185,-174r-37,174r-26,0r5,-27v-14,20,-35,32,-59,32v-32,0,-51,-18,-51,-45v0,-9,1,-13,4,-29r22,-105r28,0r-19,90v-6,29,-7,35,-7,41v0,16,11,24,32,24v16,0,29,-6,41,-20v10,-11,15,-22,20,-43r19,-92r28,0"},"v":{"d":"172,-174r-97,174r-31,0r-25,-174r30,0r12,94v2,17,4,35,4,53v6,-14,10,-24,23,-48r52,-99r32,0","w":153},"w":{"d":"264,-174r-90,174r-30,0r-8,-107v-1,-13,-1,-13,-1,-21r-1,-10r-2,6r-5,12v-1,3,-3,7,-5,11r-50,109r-31,0r-20,-174r30,0r6,61v6,63,5,64,5,81v3,-9,6,-16,12,-30r51,-112r33,0r7,93v2,29,2,30,2,39r0,9v6,-16,10,-26,31,-70r35,-71r31,0","w":246},"x":{"d":"170,-174r-75,84r45,90r-33,0r-22,-50v-5,-11,-9,-18,-10,-22v-5,6,-9,12,-14,17r-45,55r-35,0r82,-92r-39,-82r33,0r20,47v4,9,4,10,6,17r13,-16r39,-48r35,0","w":156},"y":{"d":"175,-174r-88,157v-29,50,-28,51,-36,61v-13,18,-28,26,-47,26v-6,0,-12,-1,-21,-3r6,-24r2,1v8,3,11,2,15,2v10,0,18,-6,26,-18r8,-12r8,-11r2,-5r-31,-174r31,0r11,72v8,48,7,49,9,69v7,-15,11,-23,27,-54r47,-87r31,0","w":156},"z":{"d":"160,-174r-4,20r-102,108r-24,24v11,-1,24,-1,47,-1r61,0r-6,23r-142,0r5,-21r101,-107v3,-3,6,-7,9,-10r9,-8r4,-4r-18,0r-30,0r-48,0r5,-24r133,0","w":154},"\u00e6":{"d":"244,-55r29,0v-4,13,-12,24,-21,34v-17,18,-35,26,-63,26v-34,0,-53,-12,-61,-38v-15,24,-39,38,-68,38v-36,0,-57,-17,-57,-47v0,-17,8,-33,21,-43v13,-9,21,-12,67,-17v26,-3,30,-4,35,-7v6,-4,10,-12,10,-22v0,-15,-13,-24,-34,-24v-26,0,-41,11,-47,33r-28,0v4,-20,10,-32,24,-42v12,-9,32,-15,51,-15v30,0,49,10,58,28v16,-19,32,-28,58,-28v40,0,65,26,65,67v0,10,-1,18,-5,33r-126,0v-1,7,-2,13,-2,19v0,26,16,41,43,41v23,0,43,-15,51,-36xm124,-76r4,-15v-4,5,-20,9,-58,13v-24,3,-37,14,-37,33v0,16,12,26,33,26v18,0,35,-8,45,-21v6,-8,7,-12,13,-36xm157,-102r97,0v0,-4,1,-7,1,-11v0,-26,-16,-42,-41,-42v-28,0,-51,21,-57,53","w":292},"\u00f8":{"d":"198,-164r-22,20v5,10,8,22,8,38v0,31,-13,64,-32,84v-17,18,-38,27,-64,27v-25,0,-42,-5,-56,-19r-23,20r-12,-13r25,-22v-6,-13,-9,-24,-9,-40v0,-63,42,-110,97,-110v25,0,46,8,56,21r20,-19xm45,-48r99,-93v-7,-9,-20,-14,-35,-14v-38,0,-68,38,-68,88v0,8,0,11,4,19xm153,-126r-99,94v6,8,20,13,35,13v37,0,67,-40,67,-90v0,-6,-1,-10,-3,-17","w":195},"\u00df":{"d":"62,3r5,-24v5,1,9,2,13,2v36,0,61,-26,61,-63v0,-26,-15,-39,-47,-39r-6,0r5,-23r7,0v32,0,54,-19,54,-47v0,-17,-13,-29,-34,-29v-15,0,-30,7,-37,18v-5,8,-8,16,-13,39r-34,163r-29,0r35,-163v8,-36,12,-47,25,-60v13,-14,31,-20,55,-20v37,0,61,19,61,50v0,30,-19,52,-50,59v24,5,39,24,39,50v0,20,-8,42,-22,58v-17,20,-38,30,-68,30v-7,0,-12,0,-20,-1","w":187},"\u00e7":{"d":"79,5r-11,14v5,-1,8,-1,11,-1v16,0,28,10,28,24v0,17,-17,30,-40,30v-11,0,-21,-3,-34,-8r6,-11v10,4,17,5,25,5v11,0,18,-6,18,-14v0,-8,-6,-13,-16,-13v-4,0,-7,1,-13,2r-5,-6r19,-24v-35,-6,-54,-31,-54,-71v0,-24,8,-53,21,-71v18,-26,45,-40,77,-40v40,0,64,22,64,57r0,3r-29,0r0,-2v0,-22,-14,-34,-39,-34v-37,0,-65,38,-65,87v0,32,15,49,43,49v23,0,41,-13,50,-38r30,0v-10,39,-41,62,-80,62r-6,0","w":181},"\u00f0":{"d":"98,-210r25,-9r-12,-21r17,-7r15,21r28,-10r8,15r-28,10v21,35,32,72,32,105v0,31,-9,58,-26,79v-17,21,-39,32,-69,32v-25,0,-47,-9,-59,-24v-10,-12,-15,-30,-15,-53v0,-60,41,-107,95,-107v17,0,26,3,39,14v-6,-18,-13,-33,-17,-39r-27,10xm109,-155v-19,0,-34,8,-47,25v-13,16,-20,38,-20,58v0,33,18,53,47,53v38,0,67,-37,67,-87v0,-31,-17,-49,-47,-49","w":195},"\u00fe":{"d":"87,-240r-19,88v14,-18,33,-27,56,-27v41,0,66,29,66,75v0,37,-15,72,-41,93v-14,11,-30,16,-51,16v-30,0,-49,-12,-56,-34r-20,96r-29,0r65,-307r29,0xm117,-155v-19,0,-36,8,-48,25v-10,14,-19,45,-19,66v0,28,19,46,47,46v36,0,65,-39,65,-87v0,-32,-17,-50,-45,-50","w":202},"1":{"d":"159,-239r-50,239r-31,0r39,-181v-15,4,-34,5,-53,5r-9,0r5,-21v34,-1,62,-16,78,-42r21,0"},"2":{"d":"165,-26r-6,26r-153,0v5,-46,27,-70,97,-109v38,-22,53,-41,53,-66v0,-25,-16,-40,-42,-40v-30,0,-50,21,-53,57r-28,0v1,-17,6,-33,15,-47v15,-23,38,-35,68,-35v42,0,69,25,69,64v0,27,-12,48,-40,69v-8,6,-20,13,-42,26v-39,22,-58,40,-63,56v5,0,5,-1,23,-1r102,0"},"3":{"d":"41,-75r0,8v0,30,16,47,46,47v32,0,56,-23,56,-54v0,-26,-15,-40,-45,-40v-4,0,-8,0,-14,1r5,-24r10,0v21,0,34,-4,43,-12v8,-8,13,-19,13,-31v0,-21,-15,-35,-39,-35v-27,0,-47,19,-52,49r-27,0v6,-46,36,-74,80,-74v40,0,68,23,68,58v0,28,-15,48,-43,57v19,8,31,26,31,49v0,18,-7,38,-18,51v-15,19,-41,30,-69,30v-44,0,-74,-28,-74,-69v0,-3,0,-6,1,-11r28,0"},"4":{"d":"177,-81r-5,23r-33,0r-12,58r-28,0r12,-58r-105,0r6,-26r141,-156r25,0r-34,159r33,0xm116,-81r15,-71v3,-16,6,-28,10,-42v-11,14,-13,16,-33,38r-57,62v-4,5,-6,7,-12,13r5,0r13,0r59,0"},"5":{"d":"185,-235r-5,25r-97,0r-20,65v13,-9,26,-13,42,-13v40,0,68,30,68,72v0,22,-8,44,-22,61v-17,20,-39,30,-67,30v-45,0,-72,-26,-72,-67r0,-2r28,0v0,28,16,43,44,43v23,0,40,-10,50,-29v6,-11,9,-24,9,-37v0,-29,-18,-46,-46,-46v-19,0,-36,9,-45,24r-25,-2r37,-124r121,0"},"6":{"d":"192,-177r-29,0v-1,-26,-13,-39,-36,-39v-21,0,-37,10,-50,32v-8,12,-9,18,-21,54v13,-15,31,-24,52,-24v40,0,68,29,68,71v0,50,-35,88,-83,88v-48,0,-74,-30,-74,-84v0,-36,12,-81,29,-111v19,-34,45,-50,80,-50v40,0,64,22,64,59r0,4xm102,-129v-31,0,-53,25,-53,60v0,30,17,50,45,50v30,0,52,-26,52,-63v0,-29,-16,-47,-44,-47"},"7":{"d":"203,-235r-5,25v-54,55,-98,129,-124,210r-33,0v19,-67,71,-152,126,-207r-9,0r-14,0r-102,0r7,-28r154,0"},"8":{"d":"138,-126v21,9,34,30,34,55v0,23,-12,47,-31,61v-13,10,-31,15,-52,15v-45,0,-76,-28,-76,-70v0,-34,22,-58,58,-65v-21,-12,-29,-26,-29,-47v0,-37,29,-63,70,-63v41,0,69,24,69,59v0,27,-17,49,-43,55xm113,-215v-26,0,-42,15,-42,41v0,22,16,36,40,36v25,0,41,-16,41,-40v0,-23,-15,-37,-39,-37xm96,-115v-31,0,-52,20,-52,51v0,27,18,45,46,45v31,0,51,-22,51,-53v0,-27,-17,-43,-45,-43"},"9":{"d":"17,-58r28,0r0,2v0,22,15,36,39,36v20,0,36,-10,48,-31v8,-13,11,-25,19,-58v-14,18,-31,27,-54,27v-39,0,-66,-29,-66,-70v0,-50,35,-88,83,-88v25,0,47,10,59,28v9,14,12,31,12,55v0,36,-10,81,-24,109v-18,36,-42,53,-78,53v-42,0,-66,-23,-66,-63xm114,-216v-31,0,-54,27,-54,64v0,27,17,45,43,45v30,0,53,-26,53,-62v0,-29,-16,-47,-42,-47"},"0":{"d":"121,-240v44,0,67,27,67,81v0,39,-11,83,-29,114v-18,33,-43,50,-74,50v-42,0,-66,-31,-66,-85v0,-38,12,-83,30,-114v17,-30,42,-46,72,-46xm121,-215v-22,0,-38,14,-52,45v-12,27,-20,67,-20,96v0,36,13,54,38,54v16,0,30,-9,40,-26v18,-28,31,-77,31,-115v0,-37,-12,-54,-37,-54"},"\u00a3":{"d":"127,-125r-3,14r-46,0v2,10,3,16,3,23v0,23,-8,37,-38,61r-4,4v16,-7,26,-10,36,-10v6,0,14,1,24,4v23,7,24,7,32,7v10,0,15,-1,34,-13r11,24v-15,10,-33,17,-47,17v-10,0,-16,-2,-36,-9v-14,-5,-23,-7,-31,-7v-11,0,-16,2,-37,13r-4,2r-9,-26v30,-23,42,-42,42,-64v0,-8,-2,-16,-5,-26r-27,0r2,-14r22,0v-5,-15,-8,-29,-8,-41v0,-44,35,-77,81,-77v44,0,74,30,74,72v0,3,-1,4,-1,8r-29,0v0,-3,1,-5,1,-6v0,-30,-16,-47,-45,-47v-31,0,-52,21,-52,53v0,12,3,25,8,38r52,0"},"$":{"d":"141,-265r-6,26v15,2,25,6,33,12v14,11,21,26,21,45r0,7r-28,0v0,-3,1,-5,1,-6v0,-20,-12,-32,-32,-35r-17,83v22,6,32,12,41,20v12,11,18,26,18,42v0,45,-35,76,-84,76r-4,0r-7,28r-15,0r6,-28v-38,-5,-59,-29,-59,-67r0,-10r28,0v0,5,-1,7,-1,10v0,26,13,40,37,43r20,-93r-3,-1v-24,-8,-29,-9,-38,-17v-11,-10,-17,-23,-17,-39v0,-41,32,-71,78,-71r7,0r5,-25r16,0xm98,-138r17,-79r-3,0v-27,0,-49,20,-49,45v0,13,6,22,17,28v3,1,7,2,18,6xm107,-108r-19,90v32,0,56,-20,56,-50v0,-20,-11,-31,-37,-40"},"\u00a2":{"d":"187,-151r-28,0v0,-21,-12,-34,-31,-36r-29,136v22,0,40,-15,48,-38r30,0v-11,39,-44,63,-83,61r-7,35r-15,0r8,-35v-35,-7,-55,-32,-55,-71v0,-62,40,-111,93,-112r7,-31r15,0r-7,31v34,4,54,26,54,60xm85,-53r28,-134v-33,3,-59,41,-59,86v0,27,10,42,31,48"},"\u00a5":{"d":"76,-58r-55,0r5,-20r55,0r3,-16r-8,-22r-50,0r5,-20r38,0r-34,-99r31,0r25,80v3,9,8,25,11,36r20,-30r59,-86r34,0r-70,99r38,0r-4,20r-49,0r-17,24r-3,14r54,0r-5,20r-53,0r-12,58r-30,0"},"\u00b9":{"d":"117,-239r-31,143r-21,0r22,-107v-13,3,-19,3,-31,3r-7,0r3,-15v22,0,39,-8,49,-24r16,0","w":127},"\u00b2":{"d":"122,-113r-4,17r-98,0v2,-28,16,-44,60,-67v23,-13,32,-22,32,-36v0,-14,-10,-24,-25,-24v-19,0,-31,12,-32,34r-19,0v1,-31,21,-51,52,-51v27,0,45,15,45,39v0,17,-7,30,-25,42v-5,4,-12,7,-26,15v-24,13,-32,20,-38,31r13,0r65,0","w":127},"\u00b3":{"d":"23,-143r20,0r0,5v0,18,10,27,29,27v19,0,33,-12,33,-29v0,-15,-10,-23,-28,-23r-9,0r3,-16r7,0v22,0,34,-8,34,-24v0,-12,-9,-20,-24,-20v-17,0,-28,10,-31,29r-20,0v4,-29,23,-46,52,-46v26,0,44,15,44,36v0,16,-8,27,-24,33v12,7,17,16,17,29v0,28,-23,49,-55,49v-29,0,-48,-17,-48,-42v0,-2,-1,-5,0,-8","w":127},".":{"d":"54,-37r-8,37r-39,0r8,-37r39,0","w":89},":":{"d":"60,-37r-7,37r-40,0r8,-37r39,0xm89,-170r-8,37r-39,0r8,-37r39,0","w":95},"\u00b7":{"d":"69,-108r-7,37r-40,0r8,-37r39,0","w":89},",":{"d":"54,-36r-6,29v-9,40,-21,54,-51,57r4,-16v14,-2,22,-13,26,-34r-19,0r7,-36r39,0","w":89},";":{"d":"60,-36r-6,29v-9,40,-20,54,-50,57r4,-16v14,-2,22,-13,26,-34r-20,0r8,-36r38,0xm89,-170r-8,37r-39,0r8,-37r39,0","w":95},"!":{"d":"62,-33r-8,33r-35,0r7,-33r36,0xm103,-240r-16,75r-30,106r-15,0r14,-106r16,-75r31,0","w":102},"\u00a1":{"d":"42,-140r7,-34r35,0r-7,34r-35,0xm0,66r16,-75r30,-105r16,0r-14,105r-17,75r-31,0","w":102},"?":{"d":"98,-33r-7,33r-35,0r7,-33r35,0xm100,-62r-28,0v6,-36,17,-49,52,-73v23,-16,32,-31,32,-48v0,-22,-15,-36,-39,-36v-17,0,-32,8,-42,22v-6,9,-9,15,-12,32r-28,0v6,-50,36,-79,83,-79v41,0,68,23,68,58v0,15,-5,29,-13,41v-8,10,-16,17,-40,34v-22,15,-27,23,-33,49","w":180},"\u00bf":{"d":"84,-140r7,-34r35,0r-8,34r-34,0xm82,-112r27,0v-6,36,-15,49,-51,73v-23,16,-33,31,-33,48v0,22,16,36,40,36v17,0,32,-8,42,-22v6,-9,8,-17,11,-32r28,0v-5,50,-36,78,-83,78v-41,0,-68,-22,-68,-57v0,-15,5,-29,13,-41v8,-10,16,-17,40,-34v22,-16,28,-23,34,-49","w":180},"\u00bb":{"d":"35,-145r41,46r-7,31r-58,35r6,-31r40,-22r-28,-32xm100,-145r41,46r-7,31r-58,34r6,-30r40,-22r-28,-32","w":155},"\u00ab":{"d":"81,-145r-6,30r-40,23r28,31r-5,28r-42,-47r7,-31xm147,-145r-7,30r-40,22r29,32r-6,27r-42,-46r8,-31","w":155},"\/":{"d":"154,-240r-172,307r-24,0r171,-307r25,0","w":133},"-":{"d":"86,-103r-6,27r-82,0r6,-27r82,0","w":81},"\u00ad":{"d":"86,-103r-6,27r-82,0r6,-27r82,0","w":81},"(":{"d":"99,-240r24,0v-18,19,-45,60,-58,89v-16,35,-24,71,-24,112v0,34,8,83,18,106r-19,0v-17,-38,-27,-83,-27,-120v0,-42,12,-82,36,-121v13,-22,36,-52,50,-66","w":106},")":{"d":"8,67r-23,0v18,-19,43,-60,57,-89v16,-35,24,-72,24,-113v0,-34,-7,-81,-17,-105r18,0v17,38,28,83,28,120v0,42,-12,82,-36,121v-13,22,-37,51,-51,66","w":106},"[":{"d":"122,-240r-4,22r-36,0r-56,263r36,0r-5,22r-63,0r65,-307r63,0","w":106},"]":{"d":"-15,67r5,-22r36,0r55,-263r-36,0r5,-22r63,0r-65,307r-63,0","w":106},"&":{"d":"170,-113r28,0v-3,22,-20,54,-35,68r29,45r-33,0r-15,-25v-23,22,-41,29,-68,29v-39,0,-67,-25,-67,-61v0,-27,12,-44,42,-63v6,-4,12,-7,25,-14v-14,-24,-19,-36,-19,-51v0,-33,24,-56,59,-56v32,0,54,19,54,47v0,26,-14,42,-58,67r36,60v11,-12,19,-29,22,-46xm99,-147v32,-16,44,-28,44,-45v0,-15,-10,-25,-27,-25v-18,0,-32,13,-32,31v0,10,3,18,15,39xm130,-45r-41,-69v-37,20,-52,35,-52,56v0,23,17,39,41,39v19,0,38,-9,52,-26","w":214},"\u00a7":{"d":"181,-180r-28,0r0,-4v1,-19,-12,-32,-32,-32v-19,0,-31,10,-31,27v0,9,5,21,14,31r39,39v22,22,29,36,29,53v0,28,-20,49,-49,53v6,9,10,19,10,30v0,30,-26,51,-62,51v-38,0,-62,-23,-62,-58r0,-4r27,0r0,3v0,22,14,36,37,36v18,0,32,-11,32,-27v0,-12,-6,-20,-30,-45v-48,-51,-54,-61,-54,-83v0,-27,19,-47,48,-52v-5,-10,-8,-18,-8,-27v0,-30,25,-51,60,-51v37,0,60,20,60,53r0,7xm121,-101r-41,-43r-2,0v-16,3,-29,17,-29,32v0,11,6,21,23,39r40,43r0,0v0,0,1,1,2,0v3,-1,5,-2,8,-3v12,-4,22,-16,22,-28v0,-12,-6,-22,-23,-40"},"*":{"d":"138,-238r-8,36r37,-4r1,17r-35,4r16,34r-16,7r-16,-34r-27,29r-12,-12r26,-28r-32,-17r8,-15r33,17r7,-36"},"'":{"d":"47,-144r-14,0r16,-96r24,0","w":56},"\"":{"d":"109,-144r-14,0r16,-96r23,0xm47,-144r-14,0r16,-96r24,0","w":117},"@":{"d":"240,-63r19,0v-8,18,-15,27,-30,39v-23,18,-51,29,-79,29v-68,0,-123,-54,-123,-122v0,-69,56,-123,125,-123v62,0,110,44,110,101v0,28,-11,52,-32,69v-14,12,-32,19,-46,19v-13,0,-23,-7,-26,-17v-13,12,-24,17,-38,17v-24,0,-41,-20,-41,-47v0,-43,35,-85,70,-85v15,0,28,6,34,18r5,-13r23,0r-30,88v-3,8,-3,11,-3,14v0,6,4,9,11,9v11,0,23,-6,34,-17v14,-15,22,-33,22,-54v0,-49,-40,-86,-93,-86v-59,0,-106,47,-106,107v0,59,45,105,104,105v37,0,72,-20,90,-51xm161,-105r9,-22v3,-9,4,-14,4,-19v0,-12,-8,-21,-19,-21v-24,0,-51,39,-51,75v0,16,8,25,20,25v16,0,28,-12,37,-38","w":273},"#":{"d":"130,-81r-20,68r-19,0r20,-68r-40,0r-20,68r-19,0r20,-68r-42,0r5,-18r43,0r11,-38r-42,0r5,-19r43,0r19,-63r18,0r-18,63r40,0r19,-63r18,0r-18,63r44,0r-6,19r-44,0r-11,38r44,0r-6,18r-44,0xm128,-137r-40,0r-11,38r40,0"},"\u00b0":{"d":"97,-240v29,0,52,24,52,54v0,29,-23,52,-52,52v-30,0,-53,-23,-53,-53v0,-29,23,-53,53,-53xm96,-224v-19,0,-36,17,-36,37v0,21,16,37,36,37v20,0,37,-17,37,-36v0,-21,-16,-38,-37,-38","w":150},"+":{"d":"25,-129r66,0r0,-66r23,0r0,66r67,0r0,23r-67,0r0,66r-23,0r0,-66r-66,0r0,-23"},"\u00d7":{"d":"36,-66r51,-52r-51,-51r16,-16r51,51r51,-51r17,16r-52,51r52,52r-17,16r-51,-52r-51,52"},"\u00f7":{"d":"103,-194v11,0,19,10,19,20v0,11,-8,20,-19,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm103,-81v11,0,19,10,19,20v0,11,-8,20,-19,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm25,-129r156,0r0,22r-156,0r0,-22"},"=":{"d":"25,-102r156,0r1,23r-156,0xm24,-156r156,0r1,23r-157,0r0,-23"},"\u00b6":{"d":"48,67r38,-181r-5,0v-32,0,-51,-17,-51,-47v0,-23,11,-46,29,-61v15,-12,34,-18,62,-18r85,0r-4,19r-16,0r-61,288r-23,0r61,-288r-31,0r-61,288r-23,0"},"\u00a4":{"d":"39,-51r20,-20v-14,-19,-19,-32,-19,-53v0,-22,5,-37,19,-54r-20,-20r15,-16r21,20v17,-13,33,-19,54,-19v20,0,36,6,54,19r20,-20r15,16r-20,19v14,18,20,33,20,55v0,21,-5,35,-19,53r20,20r-16,16r-19,-20v-18,14,-33,19,-55,19v-21,0,-37,-5,-55,-19r-20,20xm130,-189v-36,0,-65,29,-65,64v0,36,29,65,65,65v36,0,64,-28,64,-64v0,-35,-29,-65,-64,-65","w":240},"{":{"d":"73,-179r-11,52v-5,24,-13,34,-29,41v10,6,13,12,13,24v0,5,-1,12,-2,17r-11,51v-2,8,-3,18,-3,23v0,11,7,15,29,15r-4,23r-3,0v-18,0,-31,-2,-37,-6v-8,-5,-13,-15,-13,-27v0,-5,1,-13,2,-21r12,-54v1,-5,2,-10,2,-14v0,-10,-5,-17,-15,-20r5,-24v16,-5,23,-13,27,-33r13,-59v4,-18,10,-30,20,-38v10,-9,23,-11,50,-11r2,0r-5,23v-26,0,-36,9,-42,38","w":105},"}":{"d":"33,6r12,-52v6,-24,12,-34,28,-41v-10,-6,-13,-12,-13,-24v0,-5,1,-12,2,-18r11,-50v1,-8,3,-18,3,-23v0,-11,-7,-15,-29,-15r4,-23r3,0v19,0,31,2,37,6v8,5,13,15,13,27v0,5,-1,15,-2,21r-12,54v-1,6,-1,10,-1,14v0,10,5,17,15,20r-5,24v-16,5,-23,13,-28,33r-13,59v-4,18,-9,29,-19,37v-11,9,-24,12,-51,12r-2,0r5,-23v27,0,36,-9,42,-38","w":105},"\u00aa":{"d":"125,-107r-107,0r2,-12r107,0xm64,-210r-18,0v3,-22,18,-33,44,-33v23,0,36,9,36,24v0,4,-1,9,-3,17r-6,31v-1,6,-2,6,-2,9v0,3,1,5,4,5v2,0,3,0,6,-1r-3,14v-5,1,-7,2,-11,2v-8,0,-13,-3,-14,-11v-10,9,-18,12,-31,12v-20,0,-32,-11,-32,-28v0,-10,5,-20,15,-25v7,-4,15,-6,30,-7v26,-2,28,-3,28,-15v0,-8,-6,-12,-18,-12v-15,0,-22,5,-25,18xm102,-186r1,-5v-6,3,-7,3,-21,4v-10,1,-15,2,-19,3v-6,2,-10,7,-10,14v0,8,7,14,18,14v17,0,27,-9,31,-30","w":132},"\u00ba":{"d":"122,-107r-107,0r3,-12r107,0xm90,-243v27,0,42,15,42,41v0,35,-23,61,-54,61v-27,0,-43,-15,-43,-42v0,-34,23,-60,55,-60xm89,-228v-20,0,-36,20,-36,44v0,17,10,27,26,27v19,0,35,-20,35,-45v0,-16,-9,-26,-25,-26","w":128},"\u00b1":{"d":"25,-129r66,0r0,-66r23,0r0,66r67,0r0,23r-67,0r0,64r-23,0r0,-64r-66,0r0,-23xm25,-30r156,0r0,23r-156,0r0,-23"},"\u00bd":{"d":"117,-239r-31,143r-21,0r22,-107v-13,3,-19,3,-31,3r-7,0r3,-15v22,0,39,-8,49,-24r16,0xm238,-237r-134,237r-20,0r135,-237r19,0xm283,-18r-4,18r-98,0v3,-28,16,-44,61,-67v23,-13,31,-22,31,-36v0,-14,-10,-24,-25,-24v-19,0,-31,12,-32,34r-19,0v1,-31,21,-51,52,-51v27,0,45,15,45,39v0,17,-7,29,-25,42v-5,4,-12,7,-26,15v-24,13,-32,20,-38,30r13,0r65,0","w":308},"\u00bc":{"d":"117,-239r-31,143r-21,0r22,-107v-13,3,-19,3,-31,3r-7,0r3,-15v22,0,39,-8,49,-24r16,0xm238,-237r-134,237r-20,0r135,-237r19,0xm291,-50r-4,16r-21,0r-7,34r-20,0r7,-34r-66,0r4,-17r89,-93r17,0r-20,94r21,0xm251,-49r13,-64r-61,64r48,0","w":308},"\u00be":{"d":"23,-143r20,0r0,5v0,18,10,27,29,27v19,0,33,-12,33,-29v0,-15,-10,-23,-28,-23r-9,0r3,-16r7,0v22,0,34,-8,34,-24v0,-12,-9,-20,-24,-20v-17,0,-28,10,-31,29r-20,0v4,-29,23,-46,52,-46v26,0,44,15,44,36v0,16,-8,27,-24,33v12,7,17,16,17,29v0,28,-23,49,-55,49v-29,0,-48,-17,-48,-42v0,-2,-1,-5,0,-8xm238,-237r-134,237r-20,0r135,-237r19,0xm291,-50r-4,16r-21,0r-7,34r-20,0r7,-34r-66,0r4,-17r88,-93r18,0r-20,94r21,0xm251,-49r13,-64r-61,64r48,0","w":308},"%":{"d":"245,-247r-200,258r-24,0r200,-258r24,0xm93,-239v27,0,42,16,42,46v0,39,-26,68,-58,68v-27,0,-43,-16,-43,-44v0,-21,8,-44,21,-56v9,-10,23,-14,38,-14xm90,-220v-7,0,-13,3,-18,8v-8,10,-14,28,-14,45v0,16,7,24,20,24v8,0,14,-3,19,-10v8,-10,13,-28,13,-44v0,-16,-7,-23,-20,-23xm190,-111v27,0,43,16,43,44v0,22,-10,46,-23,58v-10,9,-22,13,-36,13v-26,0,-42,-17,-42,-44v0,-17,6,-37,16,-50v9,-13,25,-21,42,-21xm188,-91v-9,0,-17,4,-22,13v-6,9,-10,27,-10,40v0,15,7,24,21,24v18,0,31,-24,31,-52v0,-17,-7,-25,-20,-25","w":252},"\\":{"d":"46,-240r22,0r42,307r-22,0","w":130},"\u00a8":{"d":"106,-240r-7,33r-30,0r7,-33r30,0xm165,-240r-7,33r-30,0r7,-33r30,0","w":180},"\u00b4":{"d":"172,-248r-56,49r-21,0r40,-49r37,0","w":180},"`":{"d":"131,-199r-19,0r-35,-49r32,0","w":180},"\u00b8":{"d":"91,0r-16,19v5,-1,8,-1,11,-1v16,0,28,10,28,24v0,17,-16,30,-39,30v-11,0,-21,-3,-34,-8r6,-11v10,4,17,5,25,5v11,0,18,-6,18,-14v0,-8,-7,-13,-17,-13v-4,0,-8,1,-13,2r-5,-6r22,-27r14,0","w":180},"\u00af":{"d":"172,-231r-5,19r-103,0r5,-19r103,0","w":180},"\u00a9":{"d":"150,-246v67,0,124,57,124,126v0,69,-56,125,-125,125v-69,0,-126,-56,-126,-125v0,-70,56,-126,127,-126xm150,-228v-60,0,-108,48,-108,108v0,59,49,108,107,108v59,0,106,-48,106,-108v0,-59,-48,-108,-105,-108xm189,-105r22,0v-3,36,-27,57,-64,57v-42,0,-68,-28,-68,-72v0,-43,28,-72,70,-72v34,0,58,19,61,47r-22,0v-4,-18,-19,-29,-40,-29v-28,0,-46,22,-46,54v0,33,17,54,46,54v24,0,38,-13,41,-39","w":282},"\u00ae":{"d":"150,-246v67,0,124,57,124,126v0,69,-56,125,-125,125v-69,0,-126,-56,-126,-125v0,-70,56,-126,127,-126xm150,-228v-60,0,-108,48,-108,108v0,59,49,108,107,108v59,0,106,-48,106,-108v0,-59,-48,-108,-105,-108xm93,-189r68,0v14,0,21,2,29,6v12,7,18,18,18,32v0,15,-6,26,-20,33v14,7,16,13,18,42v1,12,2,16,5,20r5,5r-27,0v-3,-4,-4,-10,-4,-18v-2,-36,-6,-40,-33,-40r-36,0r0,58r-23,0r0,-138xm116,-170r0,43r34,0v27,0,36,-6,36,-22v0,-15,-9,-21,-31,-21r-39,0","w":282},"\u00a0":{"w":90},"<":{"d":"175,-209r0,32r-122,56r122,57r0,31r-156,-74r0,-27","w":180},">":{"d":"20,-33r0,-31r122,-57r-122,-57r0,-31r156,75r0,27","w":180},"\u00ac":{"d":"145,0r0,-73r-126,0r0,-27r156,0r0,100r-30,0","w":180},"^":{"d":"47,-134r-29,0r62,-107r35,0r62,107r-29,0r-51,-86","w":180},"|":{"d":"82,-240r31,0r0,300r-31,0r0,-300","w":180},"\u00a6":{"d":"82,-240r31,0r0,121r-31,0r0,-121xm82,-55r31,0r0,115r-31,0r0,-115","w":180},"_":{"d":"8,25r180,0r0,20r-180,0r0,-20","w":180},"~":{"d":"58,-208r-17,-13v12,-28,30,-41,50,-41v10,0,20,4,41,14v20,10,25,11,33,11v13,0,23,-7,33,-26r16,13v-12,28,-29,41,-52,41v-9,0,-15,-2,-43,-16v-13,-6,-22,-9,-29,-9v-12,0,-22,7,-32,26","w":240}}});;jQuery.ui||(function($){var _remove=$.fn.remove,isFF2=$.browser.mozilla&&(parseFloat($.browser.version)<1.9);$.ui={version:"@VERSION",plugin:{add:function(module,option,set){var proto=$.ui[module].prototype;for(var i in set){proto.plugins[i]=proto.plugins[i]||[];proto.plugins[i].push([option,set[i]]);}},call:function(instance,name,args){var set=instance.plugins[name];if(!set||!instance.element[0].parentNode){return;}
for(var i=0;i<set.length;i++){if(instance.options[set[i][0]]){set[i][1].apply(instance.element,args);}}}},contains:function(a,b){return document.compareDocumentPosition?a.compareDocumentPosition(b)&16:a!==b&&a.contains(b);},hasScroll:function(el,a){if($(el).css('overflow')=='hidden'){return false;}
var scroll=(a&&a=='left')?'scrollLeft':'scrollTop',has=false;if(el[scroll]>0){return true;}
el[scroll]=1;has=(el[scroll]>0);el[scroll]=0;return has;},isOverAxis:function(x,reference,size){return(x>reference)&&(x<(reference+size));},isOver:function(y,x,top,left,height,width){return $.ui.isOverAxis(y,top,height)&&$.ui.isOverAxis(x,left,width);},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};if(isFF2){var attr=$.attr,removeAttr=$.fn.removeAttr,ariaNS="http://www.w3.org/2005/07/aaa",ariaState=/^aria-/,ariaRole=/^wairole:/;$.attr=function(elem,name,value){var set=value!==undefined;return(name=='role'?(set?attr.call(this,elem,name,"wairole:"+value):(attr.apply(this,arguments)||"").replace(ariaRole,"")):(ariaState.test(name)?(set?elem.setAttributeNS(ariaNS,name.replace(ariaState,"aaa:"),value):attr.call(this,elem,name.replace(ariaState,"aaa:"))):attr.apply(this,arguments)));};$.fn.removeAttr=function(name){return(ariaState.test(name)?this.each(function(){this.removeAttributeNS(ariaNS,name.replace(ariaState,""));}):removeAttr.call(this,name));};}
$.fn.extend({remove:function(){$("*",this).add(this).each(function(){$(this).triggerHandler("remove");});return _remove.apply(this,arguments);},enableSelection:function(){return this.attr('unselectable','off').css('MozUserSelect','').unbind('selectstart.ui');},disableSelection:function(){return this.attr('unselectable','on').css('MozUserSelect','none').bind('selectstart.ui',function(){return false;});},scrollParent:function(){var scrollParent;if(($.browser.msie&&(/(static|relative)/).test(this.css('position')))||(/absolute/).test(this.css('position'))){scrollParent=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test($.curCSS(this,'position',1))&&(/(auto|scroll)/).test($.curCSS(this,'overflow',1)+$.curCSS(this,'overflow-y',1)+$.curCSS(this,'overflow-x',1));}).eq(0);}else{scrollParent=this.parents().filter(function(){return(/(auto|scroll)/).test($.curCSS(this,'overflow',1)+$.curCSS(this,'overflow-y',1)+$.curCSS(this,'overflow-x',1));}).eq(0);}
return(/fixed/).test(this.css('position'))||!scrollParent.length?$(document):scrollParent;}});$.extend($.expr[':'],{data:function(elem,i,match){return!!$.data(elem,match[3]);},focusable:function(element){var nodeName=element.nodeName.toLowerCase(),tabIndex=$.attr(element,'tabindex');return(/input|select|textarea|button|object/.test(nodeName)?!element.disabled:'a'==nodeName||'area'==nodeName?element.href||!isNaN(tabIndex):!isNaN(tabIndex))&&!$(element)['area'==nodeName?'parents':'closest'](':hidden').length;},tabbable:function(element){var tabIndex=$.attr(element,'tabindex');return(isNaN(tabIndex)||tabIndex>=0)&&$(element).is(':focusable');}});function getter(namespace,plugin,method,args){function getMethods(type){var methods=$[namespace][plugin][type]||[];return(typeof methods=='string'?methods.split(/,?\s+/):methods);}
var methods=getMethods('getter');if(args.length==1&&typeof args[0]=='string'){methods=methods.concat(getMethods('getterSetter'));}
return($.inArray(method,methods)!=-1);}
$.widget=function(name,prototype){var namespace=name.split(".")[0];name=name.split(".")[1];$.fn[name]=function(options){var isMethodCall=(typeof options=='string'),args=Array.prototype.slice.call(arguments,1);if(isMethodCall&&options.substring(0,1)=='_'){return this;}
if(isMethodCall&&getter(namespace,name,options,args)){var instance=$.data(this[0],name);return(instance?instance[options].apply(instance,args):undefined);}
return this.each(function(){var instance=$.data(this,name);(!instance&&!isMethodCall&&$.data(this,name,new $[namespace][name](this,options))._init());(instance&&isMethodCall&&$.isFunction(instance[options])&&instance[options].apply(instance,args));});};$[namespace]=$[namespace]||{};$[namespace][name]=function(element,options){var self=this;this.namespace=namespace;this.widgetName=name;this.widgetEventPrefix=$[namespace][name].eventPrefix||name;this.widgetBaseClass=namespace+'-'+name;this.options=$.extend({},$.widget.defaults,$[namespace][name].defaults,$.metadata&&$.metadata.get(element)[name],options);this.element=$(element).bind('setData.'+name,function(event,key,value){if(event.target==element){return self._setData(key,value);}}).bind('getData.'+name,function(event,key){if(event.target==element){return self._getData(key);}}).bind('remove',function(){return self.destroy();});};$[namespace][name].prototype=$.extend({},$.widget.prototype,prototype);$[namespace][name].getterSetter='option';};$.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName).removeClass(this.widgetBaseClass+'-disabled'+' '+this.namespace+'-state-disabled').removeAttr('aria-disabled');},option:function(key,value){var options=key,self=this;if(typeof key=="string"){if(value===undefined){return this._getData(key);}
options={};options[key]=value;}
$.each(options,function(key,value){self._setData(key,value);});},_getData:function(key){return this.options[key];},_setData:function(key,value){this.options[key]=value;if(key=='disabled'){this.element
[value?'addClass':'removeClass'](this.widgetBaseClass+'-disabled'+' '+
this.namespace+'-state-disabled').attr("aria-disabled",value);}},enable:function(){this._setData('disabled',false);},disable:function(){this._setData('disabled',true);},_trigger:function(type,event,data){var callback=this.options[type],eventName=(type==this.widgetEventPrefix?type:this.widgetEventPrefix+type);event=$.Event(event);event.type=eventName;if(event.originalEvent){for(var i=$.event.props.length,prop;i;){prop=$.event.props[--i];event[prop]=event.originalEvent[prop];}}
this.element.trigger(event,data);return!($.isFunction(callback)&&callback.call(this.element[0],event,data)===false||event.isDefaultPrevented());}};$.widget.defaults={disabled:false};$.ui.mouse={_mouseInit:function(){var self=this;this.element.bind('mousedown.'+this.widgetName,function(event){return self._mouseDown(event);}).bind('click.'+this.widgetName,function(event){if(self._preventClickEvent){self._preventClickEvent=false;event.stopImmediatePropagation();return false;}});if($.browser.msie){this._mouseUnselectable=this.element.attr('unselectable');this.element.attr('unselectable','on');}
this.started=false;},_mouseDestroy:function(){this.element.unbind('.'+this.widgetName);($.browser.msie&&this.element.attr('unselectable',this._mouseUnselectable));},_mouseDown:function(event){event.originalEvent=event.originalEvent||{};if(event.originalEvent.mouseHandled){return;}
(this._mouseStarted&&this._mouseUp(event));this._mouseDownEvent=event;var self=this,btnIsLeft=(event.which==1),elIsCancel=(typeof this.options.cancel=="string"?$(event.target).parents().add(event.target).filter(this.options.cancel).length:false);if(!btnIsLeft||elIsCancel||!this._mouseCapture(event)){return true;}
this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){self.mouseDelayMet=true;},this.options.delay);}
if(this._mouseDistanceMet(event)&&this._mouseDelayMet(event)){this._mouseStarted=(this._mouseStart(event)!==false);if(!this._mouseStarted){event.preventDefault();return true;}}
this._mouseMoveDelegate=function(event){return self._mouseMove(event);};this._mouseUpDelegate=function(event){return self._mouseUp(event);};$(document).bind('mousemove.'+this.widgetName,this._mouseMoveDelegate).bind('mouseup.'+this.widgetName,this._mouseUpDelegate);($.browser.safari||event.preventDefault());event.originalEvent.mouseHandled=true;return true;},_mouseMove:function(event){if($.browser.msie&&!event.button){return this._mouseUp(event);}
if(this._mouseStarted){this._mouseDrag(event);return event.preventDefault();}
if(this._mouseDistanceMet(event)&&this._mouseDelayMet(event)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,event)!==false);(this._mouseStarted?this._mouseDrag(event):this._mouseUp(event));}
return!this._mouseStarted;},_mouseUp:function(event){$(document).unbind('mousemove.'+this.widgetName,this._mouseMoveDelegate).unbind('mouseup.'+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(event.target==this._mouseDownEvent.target);this._mouseStop(event);}
return false;},_mouseDistanceMet:function(event){return(Math.max(Math.abs(this._mouseDownEvent.pageX-event.pageX),Math.abs(this._mouseDownEvent.pageY-event.pageY))>=this.options.distance);},_mouseDelayMet:function(event){return this.mouseDelayMet;},_mouseStart:function(event){},_mouseDrag:function(event){},_mouseStop:function(event){},_mouseCapture:function(event){return true;}};$.ui.mouse.defaults={cancel:null,distance:1,delay:0};})(jQuery);(function($){$.widget("ui.draggable",$.extend({},$.ui.mouse,{_init:function(){if(this.options.helper=='original'&&!(/^(?:r|a|f)/).test(this.element.css("position")))
this.element[0].style.position='relative';(this.options.addClasses&&this.element.addClass("ui-draggable"));(this.options.disabled&&this.element.addClass("ui-draggable-disabled"));this._mouseInit();},destroy:function(){if(!this.element.data('draggable'))return;this.element.removeData("draggable").unbind(".draggable").removeClass("ui-draggable"
+" ui-draggable-dragging"
+" ui-draggable-disabled");this._mouseDestroy();},_mouseCapture:function(event){var o=this.options;if(this.helper||o.disabled||$(event.target).is('.ui-resizable-handle'))
return false;this.handle=this._getHandle(event);if(!this.handle)
return false;return true;},_mouseStart:function(event){var o=this.options;this.helper=this._createHelper(event);this._cacheHelperProportions();if($.ui.ddmanager)
$.ui.ddmanager.current=this;this._cacheMargins();this.cssPosition=this.helper.css("position");this.scrollParent=this.helper.scrollParent();this.offset=this.element.offset();this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left};$.extend(this.offset,{click:{left:event.pageX-this.offset.left,top:event.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()});this.originalPosition=this._generatePosition(event);this.originalPageX=event.pageX;this.originalPageY=event.pageY;if(o.cursorAt)
this._adjustOffsetFromHelper(o.cursorAt);if(o.containment)
this._setContainment();this._trigger("start",event);this._cacheHelperProportions();if($.ui.ddmanager&&!o.dropBehaviour)
$.ui.ddmanager.prepareOffsets(this,event);this.helper.addClass("ui-draggable-dragging");this._mouseDrag(event,true);return true;},_mouseDrag:function(event,noPropagation){this.position=this._generatePosition(event);this.positionAbs=this._convertPositionTo("absolute");if(!noPropagation){var ui=this._uiHash();this._trigger('drag',event,ui);this.position=ui.position;}
if(!this.options.axis||this.options.axis!="y")this.helper[0].style.left=this.position.left+'px';if(!this.options.axis||this.options.axis!="x")this.helper[0].style.top=this.position.top+'px';if($.ui.ddmanager)$.ui.ddmanager.drag(this,event);return false;},_mouseStop:function(event){var dropped=false;if($.ui.ddmanager&&!this.options.dropBehaviour)
dropped=$.ui.ddmanager.drop(this,event);if(this.dropped){dropped=this.dropped;this.dropped=false;}
if((this.options.revert=="invalid"&&!dropped)||(this.options.revert=="valid"&&dropped)||this.options.revert===true||($.isFunction(this.options.revert)&&this.options.revert.call(this.element,dropped))){var self=this;$(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){self._trigger("stop",event);self._clear();});}else{this._trigger("stop",event);this._clear();}
return false;},_getHandle:function(event){var handle=!this.options.handle||!$(this.options.handle,this.element).length?true:false;$(this.options.handle,this.element).find("*").andSelf().each(function(){if(this==event.target)handle=true;});return handle;},_createHelper:function(event){var o=this.options;var helper=$.isFunction(o.helper)?$(o.helper.apply(this.element[0],[event])):(o.helper=='clone'?this.element.clone():this.element);if(!helper.parents('body').length)
helper.appendTo((o.appendTo=='parent'?this.element[0].parentNode:o.appendTo));if(helper[0]!=this.element[0]&&!(/(fixed|absolute)/).test(helper.css("position")))
helper.css("position","absolute");return helper;},_adjustOffsetFromHelper:function(obj){if(obj.left!=undefined)this.offset.click.left=obj.left+this.margins.left;if(obj.right!=undefined)this.offset.click.left=this.helperProportions.width-obj.right+this.margins.left;if(obj.top!=undefined)this.offset.click.top=obj.top+this.margins.top;if(obj.bottom!=undefined)this.offset.click.top=this.helperProportions.height-obj.bottom+this.margins.top;},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var po=this.offsetParent.offset();if(this.cssPosition=='absolute'&&this.scrollParent[0]!=document&&$.ui.contains(this.scrollParent[0],this.offsetParent[0])){po.left+=this.scrollParent.scrollLeft();po.top+=this.scrollParent.scrollTop();}
if((this.offsetParent[0]==document.body)||(this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=='html'&&$.browser.msie))
po={top:0,left:0};return{top:po.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:po.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)};},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var p=this.element.position();return{top:p.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:p.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()};}else{return{top:0,left:0};}},_cacheMargins:function(){this.margins={left:(parseInt(this.element.css("marginLeft"),10)||0),top:(parseInt(this.element.css("marginTop"),10)||0)};},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()};},_setContainment:function(){var o=this.options;if(o.containment=='parent')o.containment=this.helper[0].parentNode;if(o.containment=='document'||o.containment=='window')this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,$(o.containment=='document'?document:window).width()-this.helperProportions.width-this.margins.left,($(o.containment=='document'?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top];if(!(/^(document|window|parent)$/).test(o.containment)&&o.containment.constructor!=Array){var ce=$(o.containment)[0];if(!ce)return;var co=$(o.containment).offset();var over=($(ce).css("overflow")!='hidden');this.containment=[co.left+(parseInt($(ce).css("borderLeftWidth"),10)||0)+(parseInt($(ce).css("paddingLeft"),10)||0)-this.margins.left,co.top+(parseInt($(ce).css("borderTopWidth"),10)||0)+(parseInt($(ce).css("paddingTop"),10)||0)-this.margins.top,co.left+(over?Math.max(ce.scrollWidth,ce.offsetWidth):ce.offsetWidth)-(parseInt($(ce).css("borderLeftWidth"),10)||0)-(parseInt($(ce).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,co.top+(over?Math.max(ce.scrollHeight,ce.offsetHeight):ce.offsetHeight)-(parseInt($(ce).css("borderTopWidth"),10)||0)-(parseInt($(ce).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top];}else if(o.containment.constructor==Array){this.containment=o.containment;}},_convertPositionTo:function(d,pos){if(!pos)pos=this.position;var mod=d=="absolute"?1:-1;var o=this.options,scroll=this.cssPosition=='absolute'&&!(this.scrollParent[0]!=document&&$.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,scrollIsRootNode=(/(html|body)/i).test(scroll[0].tagName);return{top:(pos.top
+this.offset.relative.top*mod
+this.offset.parent.top*mod
-($.browser.safari&&this.cssPosition=='fixed'?0:(this.cssPosition=='fixed'?-this.scrollParent.scrollTop():(scrollIsRootNode?0:scroll.scrollTop()))*mod)),left:(pos.left
+this.offset.relative.left*mod
+this.offset.parent.left*mod
-($.browser.safari&&this.cssPosition=='fixed'?0:(this.cssPosition=='fixed'?-this.scrollParent.scrollLeft():scrollIsRootNode?0:scroll.scrollLeft())*mod))};},_generatePosition:function(event){var o=this.options,scroll=this.cssPosition=='absolute'&&!(this.scrollParent[0]!=document&&$.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,scrollIsRootNode=(/(html|body)/i).test(scroll[0].tagName);if(this.cssPosition=='relative'&&!(this.scrollParent[0]!=document&&this.scrollParent[0]!=this.offsetParent[0])){this.offset.relative=this._getRelativeOffset();}
var pageX=event.pageX;var pageY=event.pageY;if(this.originalPosition){if(this.containment){if(event.pageX-this.offset.click.left<this.containment[0])pageX=this.containment[0]+this.offset.click.left;if(event.pageY-this.offset.click.top<this.containment[1])pageY=this.containment[1]+this.offset.click.top;if(event.pageX-this.offset.click.left>this.containment[2])pageX=this.containment[2]+this.offset.click.left;if(event.pageY-this.offset.click.top>this.containment[3])pageY=this.containment[3]+this.offset.click.top;}
if(o.grid){var top=this.originalPageY+Math.round((pageY-this.originalPageY)/o.grid[1])*o.grid[1];pageY=this.containment?(!(top-this.offset.click.top<this.containment[1]||top-this.offset.click.top>this.containment[3])?top:(!(top-this.offset.click.top<this.containment[1])?top-o.grid[1]:top+o.grid[1])):top;var left=this.originalPageX+Math.round((pageX-this.originalPageX)/o.grid[0])*o.grid[0];pageX=this.containment?(!(left-this.offset.click.left<this.containment[0]||left-this.offset.click.left>this.containment[2])?left:(!(left-this.offset.click.left<this.containment[0])?left-o.grid[0]:left+o.grid[0])):left;}}
return{top:(pageY
-this.offset.click.top
-this.offset.relative.top
-this.offset.parent.top
+($.browser.safari&&this.cssPosition=='fixed'?0:(this.cssPosition=='fixed'?-this.scrollParent.scrollTop():(scrollIsRootNode?0:scroll.scrollTop())))),left:(pageX
-this.offset.click.left
-this.offset.relative.left
-this.offset.parent.left
+($.browser.safari&&this.cssPosition=='fixed'?0:(this.cssPosition=='fixed'?-this.scrollParent.scrollLeft():scrollIsRootNode?0:scroll.scrollLeft())))};},_clear:function(){this.helper.removeClass("ui-draggable-dragging");if(this.helper[0]!=this.element[0]&&!this.cancelHelperRemoval)this.helper.remove();this.helper=null;this.cancelHelperRemoval=false;},_trigger:function(type,event,ui){ui=ui||this._uiHash();$.ui.plugin.call(this,type,[event,ui]);if(type=="drag")this.positionAbs=this._convertPositionTo("absolute");return $.widget.prototype._trigger.call(this,type,event,ui);},plugins:{},_uiHash:function(event){return{helper:this.helper,position:this.position,absolutePosition:this.positionAbs,offset:this.positionAbs};}}));$.extend($.ui.draggable,{version:"@VERSION",eventPrefix:"drag",defaults:{addClasses:true,appendTo:"parent",axis:false,cancel:":input,option",connectToSortable:false,containment:false,cursor:"auto",cursorAt:false,delay:0,distance:1,grid:false,handle:false,helper:"original",iframeFix:false,opacity:false,refreshPositions:false,revert:false,revertDuration:500,scope:"default",scroll:true,scrollSensitivity:20,scrollSpeed:20,snap:false,snapMode:"both",snapTolerance:20,stack:false,zIndex:false}});$.ui.plugin.add("draggable","connectToSortable",{start:function(event,ui){var inst=$(this).data("draggable"),o=inst.options,uiSortable=$.extend({},ui,{item:inst.element});inst.sortables=[];$(o.connectToSortable).each(function(){var sortable=$.data(this,'sortable');if(sortable&&!sortable.options.disabled){inst.sortables.push({instance:sortable,shouldRevert:sortable.options.revert});sortable._refreshItems();sortable._trigger("activate",event,uiSortable);}});},stop:function(event,ui){var inst=$(this).data("draggable"),uiSortable=$.extend({},ui,{item:inst.element});$.each(inst.sortables,function(){if(this.instance.isOver){this.instance.isOver=0;inst.cancelHelperRemoval=true;this.instance.cancelHelperRemoval=false;if(this.shouldRevert)this.instance.options.revert=true;this.instance._mouseStop(event);this.instance.options.helper=this.instance.options._helper;if(inst.options.helper=='original')
this.instance.currentItem.css({top:'auto',left:'auto'});}else{this.instance.cancelHelperRemoval=false;this.instance._trigger("deactivate",event,uiSortable);}});},drag:function(event,ui){var inst=$(this).data("draggable"),self=this;var checkPos=function(o){var dyClick=this.offset.click.top,dxClick=this.offset.click.left;var helperTop=this.positionAbs.top,helperLeft=this.positionAbs.left;var itemHeight=o.height,itemWidth=o.width;var itemTop=o.top,itemLeft=o.left;return $.ui.isOver(helperTop+dyClick,helperLeft+dxClick,itemTop,itemLeft,itemHeight,itemWidth);};$.each(inst.sortables,function(i){this.instance.positionAbs=inst.positionAbs;this.instance.helperProportions=inst.helperProportions;this.instance.offset.click=inst.offset.click;if(this.instance._intersectsWith(this.instance.containerCache)){if(!this.instance.isOver){this.instance.isOver=1;this.instance.currentItem=$(self).clone().appendTo(this.instance.element).data("sortable-item",true);this.instance.options._helper=this.instance.options.helper;this.instance.options.helper=function(){return ui.helper[0];};event.target=this.instance.currentItem[0];this.instance._mouseCapture(event,true);this.instance._mouseStart(event,true,true);this.instance.offset.click.top=inst.offset.click.top;this.instance.offset.click.left=inst.offset.click.left;this.instance.offset.parent.left-=inst.offset.parent.left-this.instance.offset.parent.left;this.instance.offset.parent.top-=inst.offset.parent.top-this.instance.offset.parent.top;inst._trigger("toSortable",event);inst.dropped=this.instance.element;inst.currentItem=inst.element;this.instance.fromOutside=inst;}
if(this.instance.currentItem)this.instance._mouseDrag(event);}else{if(this.instance.isOver){this.instance.isOver=0;this.instance.cancelHelperRemoval=true;this.instance.options.revert=false;this.instance._trigger('out',event,this.instance._uiHash(this.instance));this.instance._mouseStop(event,true);this.instance.options.helper=this.instance.options._helper;this.instance.currentItem.remove();if(this.instance.placeholder)this.instance.placeholder.remove();inst._trigger("fromSortable",event);inst.dropped=false;}};});}});$.ui.plugin.add("draggable","cursor",{start:function(event,ui){var t=$('body'),o=$(this).data('draggable').options;if(t.css("cursor"))o._cursor=t.css("cursor");t.css("cursor",o.cursor);},stop:function(event,ui){var o=$(this).data('draggable').options;if(o._cursor)$('body').css("cursor",o._cursor);}});$.ui.plugin.add("draggable","iframeFix",{start:function(event,ui){var o=$(this).data('draggable').options;$(o.iframeFix===true?"iframe":o.iframeFix).each(function(){$('<div class="ui-draggable-iframeFix" style="background: #fff;"></div>').css({width:this.offsetWidth+"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1000}).css($(this).offset()).appendTo("body");});},stop:function(event,ui){$("div.ui-draggable-iframeFix").each(function(){this.parentNode.removeChild(this);});}});$.ui.plugin.add("draggable","opacity",{start:function(event,ui){var t=$(ui.helper),o=$(this).data('draggable').options;if(t.css("opacity"))o._opacity=t.css("opacity");t.css('opacity',o.opacity);},stop:function(event,ui){var o=$(this).data('draggable').options;if(o._opacity)$(ui.helper).css('opacity',o._opacity);}});$.ui.plugin.add("draggable","scroll",{start:function(event,ui){var i=$(this).data("draggable");if(i.scrollParent[0]!=document&&i.scrollParent[0].tagName!='HTML')i.overflowOffset=i.scrollParent.offset();},drag:function(event,ui){var i=$(this).data("draggable"),o=i.options,scrolled=false;if(i.scrollParent[0]!=document&&i.scrollParent[0].tagName!='HTML'){if(!o.axis||o.axis!='x'){if((i.overflowOffset.top+i.scrollParent[0].offsetHeight)-event.pageY<o.scrollSensitivity)
i.scrollParent[0].scrollTop=scrolled=i.scrollParent[0].scrollTop+o.scrollSpeed;else if(event.pageY-i.overflowOffset.top<o.scrollSensitivity)
i.scrollParent[0].scrollTop=scrolled=i.scrollParent[0].scrollTop-o.scrollSpeed;}
if(!o.axis||o.axis!='y'){if((i.overflowOffset.left+i.scrollParent[0].offsetWidth)-event.pageX<o.scrollSensitivity)
i.scrollParent[0].scrollLeft=scrolled=i.scrollParent[0].scrollLeft+o.scrollSpeed;else if(event.pageX-i.overflowOffset.left<o.scrollSensitivity)
i.scrollParent[0].scrollLeft=scrolled=i.scrollParent[0].scrollLeft-o.scrollSpeed;}}else{if(!o.axis||o.axis!='x'){if(event.pageY-$(document).scrollTop()<o.scrollSensitivity)
scrolled=$(document).scrollTop($(document).scrollTop()-o.scrollSpeed);else if($(window).height()-(event.pageY-$(document).scrollTop())<o.scrollSensitivity)
scrolled=$(document).scrollTop($(document).scrollTop()+o.scrollSpeed);}
if(!o.axis||o.axis!='y'){if(event.pageX-$(document).scrollLeft()<o.scrollSensitivity)
scrolled=$(document).scrollLeft($(document).scrollLeft()-o.scrollSpeed);else if($(window).width()-(event.pageX-$(document).scrollLeft())<o.scrollSensitivity)
scrolled=$(document).scrollLeft($(document).scrollLeft()+o.scrollSpeed);}}
if(scrolled!==false&&$.ui.ddmanager&&!o.dropBehaviour)
$.ui.ddmanager.prepareOffsets(i,event);}});$.ui.plugin.add("draggable","snap",{start:function(event,ui){var i=$(this).data("draggable"),o=i.options;i.snapElements=[];$(o.snap.constructor!=String?(o.snap.items||':data(draggable)'):o.snap).each(function(){var $t=$(this);var $o=$t.offset();if(this!=i.element[0])i.snapElements.push({item:this,width:$t.outerWidth(),height:$t.outerHeight(),top:$o.top,left:$o.left});});},drag:function(event,ui){var inst=$(this).data("draggable"),o=inst.options;var d=o.snapTolerance;var x1=ui.offset.left,x2=x1+inst.helperProportions.width,y1=ui.offset.top,y2=y1+inst.helperProportions.height;for(var i=inst.snapElements.length-1;i>=0;i--){var l=inst.snapElements[i].left,r=l+inst.snapElements[i].width,t=inst.snapElements[i].top,b=t+inst.snapElements[i].height;if(!((l-d<x1&&x1<r+d&&t-d<y1&&y1<b+d)||(l-d<x1&&x1<r+d&&t-d<y2&&y2<b+d)||(l-d<x2&&x2<r+d&&t-d<y1&&y1<b+d)||(l-d<x2&&x2<r+d&&t-d<y2&&y2<b+d))){if(inst.snapElements[i].snapping)(inst.options.snap.release&&inst.options.snap.release.call(inst.element,event,$.extend(inst._uiHash(),{snapItem:inst.snapElements[i].item})));inst.snapElements[i].snapping=false;continue;}
if(o.snapMode!='inner'){var ts=Math.abs(t-y2)<=d;var bs=Math.abs(b-y1)<=d;var ls=Math.abs(l-x2)<=d;var rs=Math.abs(r-x1)<=d;if(ts)ui.position.top=inst._convertPositionTo("relative",{top:t-inst.helperProportions.height,left:0}).top-inst.margins.top;if(bs)ui.position.top=inst._convertPositionTo("relative",{top:b,left:0}).top-inst.margins.top;if(ls)ui.position.left=inst._convertPositionTo("relative",{top:0,left:l-inst.helperProportions.width}).left-inst.margins.left;if(rs)ui.position.left=inst._convertPositionTo("relative",{top:0,left:r}).left-inst.margins.left;}
var first=(ts||bs||ls||rs);if(o.snapMode!='outer'){var ts=Math.abs(t-y1)<=d;var bs=Math.abs(b-y2)<=d;var ls=Math.abs(l-x1)<=d;var rs=Math.abs(r-x2)<=d;if(ts)ui.position.top=inst._convertPositionTo("relative",{top:t,left:0}).top-inst.margins.top;if(bs)ui.position.top=inst._convertPositionTo("relative",{top:b-inst.helperProportions.height,left:0}).top-inst.margins.top;if(ls)ui.position.left=inst._convertPositionTo("relative",{top:0,left:l}).left-inst.margins.left;if(rs)ui.position.left=inst._convertPositionTo("relative",{top:0,left:r-inst.helperProportions.width}).left-inst.margins.left;}
if(!inst.snapElements[i].snapping&&(ts||bs||ls||rs||first))
(inst.options.snap.snap&&inst.options.snap.snap.call(inst.element,event,$.extend(inst._uiHash(),{snapItem:inst.snapElements[i].item})));inst.snapElements[i].snapping=(ts||bs||ls||rs||first);};}});$.ui.plugin.add("draggable","stack",{start:function(event,ui){var o=$(this).data("draggable").options;var group=$.makeArray($(o.stack.group)).sort(function(a,b){return(parseInt($(a).css("zIndex"),10)||o.stack.min)-(parseInt($(b).css("zIndex"),10)||o.stack.min);});$(group).each(function(i){this.style.zIndex=o.stack.min+i;});this[0].style.zIndex=o.stack.min+group.length;}});$.ui.plugin.add("draggable","zIndex",{start:function(event,ui){var t=$(ui.helper),o=$(this).data("draggable").options;if(t.css("zIndex"))o._zIndex=t.css("zIndex");t.css('zIndex',o.zIndex);},stop:function(event,ui){var o=$(this).data("draggable").options;if(o._zIndex)$(ui.helper).css('zIndex',o._zIndex);}});})(jQuery);(function($){jImageBox=function(){return this.initialize.apply(this,arguments);};jImageBox.prototype={options:{postOpen:null},webroot:(webroot||'/'),initialize:function($$,options){var self=this;self.options=$.extend(self.options,options);self.$$=$$;$$.each(function(i,a){$(a).click(function(){self.open(i,true);return false;});});},open:function(index){var self=this;self.close();var $link=self.$$.slice(index);var image_id=self.image_id=$link.attr('id').replace('image_','');var $overlay=$('<div id="overlay" class="overlay"></div>').css({display:'none'}).appendTo(document.body);var fadeIn=(arguments.length>1)&&arguments[1];if(fadeIn)
$overlay.fadeIn(200);else
$overlay.show()
var $loading=$('<img id="fullscreenLoad" class="fullscreenLoad" src="'+self.webroot+'img/loadingAnimation.gif" alt="loading" >');$loading.hide().appendTo(document.body);var $fsContainer=$('<div id="fullscreenContainer" class="fullscreenContainer"><img id="fullscreenImage" class="fullscreenImage" ><div id="fullscreenImageData" class="fullscreenImageData">'+'<div id="fullscreenCaption" class="fullscreenCaption"></div>'+'<a id="fullscreenCloseButton" class="fullscreenCloseButton" href="#">Close</a>'+'</div></div>').appendTo(document.body);$('#fullscreenCloseButton').click(self.close);if(self.$$.length>1){var count=self.$$.length;var cur=index+1;$('<div id="fullscreenControls" class="fullscreenControls"><span class="count">'+cur+' of '+count+'</span> &nbsp;<a id="fullscreenPrev" class="fullscreenPrev">&laquo;</a> <a id="fullscreenNext" class="fullscreenNext">&raquo;</a></div>').insertAfter('#fullscreenCaption');$('#fullscreenNext, #fullscreenImage').click(function(){var i=((index+1)+self.$$.length)%self.$$.length;self.open(i);});$('#fullscreenPrev').click(function(){var i=((index-1)+self.$$.length)%self.$$.length;self.open(i);});}
var caption=$link.attr('caption')||'';$('#fullscreenCaption').append(unescape(caption));var preload=new Image();if($.browser.safari){var webKitFields=RegExp("( AppleWebKit/)([^ ]+)").exec(navigator.userAgent);var version=parseFloat(webKitFields[2]);if(parseFloat(version)<200){preload=$('<img id="fullscreenPreload" class="fullscreenPreload">')[0];$(preload).css({'position':'absolute','top':'-5000px'});$(document.body).append(preload);}}
var captionHeight=$('#fullscreenImageData').height()||0;$fsContainer.hide();preload.onload=function(){var pad=parseInt($('#fullscreenContainer img').css('marginLeft'));var pagesize=[$(window).width(),$(window).height()];var x=(pagesize[0]-(pad*2))*0.9;var y=pagesize[1]-captionHeight-(pad*4);var imageWidth=preload.width;var imageHeight=preload.height;$('#fullscreenPreload').hide().remove();if(imageWidth>x){imageHeight=imageHeight*(x/imageWidth);imageWidth=x;if(imageHeight>y){imageWidth=imageWidth*(y/imageHeight);imageHeight=y;}}else if(imageHeight>y){imageWidth=imageWidth*(y/imageHeight);imageHeight=y;if(imageWidth>x){imageHeight=imageHeight*(x/imageWidth);imageWidth=x;}}
$('#fullscreenImage').attr({'src':preload.src}).css({'width':imageWidth,'height':imageHeight});$fsContainer.css({width:(imageWidth+(pad*2))});var t=parseInt((pagesize[1]-$fsContainer.height())/2);if(t<0)t=0;t+=document.documentElement.scrollTop||document.body.scrollTop;var l=parseInt((pagesize[0]-$fsContainer.width())/2);$fsContainer.css({'position':'absolute','top':t+'px','left':l+'px'});if(self.options.postOpen){self.options.postOpen.apply(self);}
$loading.remove();$fsContainer.show();};preload.src=self.$$.slice(index).attr('href');$loading.show();return false;},close:function(){var self=this;$('#overlay').hide().remove();$('#fullscreenContainer').remove();$('#fullscreenLoad').remove();return false;}}
$.fn.jImageBox=function(options){var ibox=new jImageBox(this,options);return this;}})(jQuery);(function($){var types=['DOMMouseScroll','mousewheel'];$.event.special.mousewheel={setup:function(){if(this.addEventListener)
for(var i=types.length;i;)
this.addEventListener(types[--i],handler,false);else
this.onmousewheel=handler;},teardown:function(){if(this.removeEventListener)
for(var i=types.length;i;)
this.removeEventListener(types[--i],handler,false);else
this.onmousewheel=null;}};$.fn.extend({mousewheel:function(fn){return fn?this.bind("mousewheel",fn):this.trigger("mousewheel");},unmousewheel:function(fn){return this.unbind("mousewheel",fn);}});function handler(event){var args=[].slice.call(arguments,1),delta=0,returnValue=true;event=$.event.fix(event||window.event);event.type="mousewheel";if(event.wheelDelta)delta=event.wheelDelta/120;if(event.detail)delta=-event.detail/3;args.unshift(event,delta);return $.event.handle.apply(this,args);}})(jQuery);(function($){new function(settings){var $separator=settings.separator||'&';var $spaces=settings.spaces===false?false:true;var $suffix=settings.suffix===false?'':'[]';var $prefix=settings.prefix===false?false:true;var $hash=$prefix?settings.hash===true?"#":"?":"";jQuery.query=new function(){var is=function(o,t){return o!=undefined&&o!==null&&(!!t?o.constructor==t:true);};var parse=function(path){var m,rx=/\[([^[]*)\]/g,match=/^(\S+?)(\[\S*\])?$/.exec(path),base=match[1],tokens=[];while(m=rx.exec(match[2]))tokens.push(m[1]);return[base,tokens];};var set=function(target,tokens,value){var o,token=tokens.shift();if(typeof target!='object')target=null;if(token===""){if(!target)target=[];if(is(target,Array)){target.push(tokens.length==0?value:set(null,tokens.slice(0),value));}else if(is(target,Object)){var i=0;while(target[i++]!=null);target[--i]=tokens.length==0?value:set(target[i],tokens.slice(0),value);}else{target=[];target.push(tokens.length==0?value:set(null,tokens.slice(0),value));}}else if(token&&token.match(/^\s*[0-9]+\s*$/)){var index=parseInt(token,10);if(!target)target=[];target[index]=tokens.length==0?value:set(target[index],tokens.slice(0),value);}else if(token){var index=token.replace(/^\s*|\s*$/g,"");if(!target)target={};if(is(target,Array)){var temp={};for(var i=0;i<target.length;++i){temp[i]=target[i];}
target=temp;}
target[index]=tokens.length==0?value:set(target[index],tokens.slice(0),value);}else{return value;}
return target;};var queryObject=function(a){var self=this;self.keys={};if(a.queryObject){jQuery.each(a.get(),function(key,val){self.SET(key,val);});}else{jQuery.each(arguments,function(){var q=""+this;q=q.replace(/^[?#]/,'');q=q.replace(/[;&]$/,'');if($spaces)q=q.replace(/[+]/g,' ');jQuery.each(q.split(/[&;]/),function(){var key=this.split('=')[0];var val=this.split('=')[1];if(!key)return;if(/^[+-]?[0-9]+\.[0-9]*$/.test(val))
val=parseFloat(val);else if(/^[+-]?[0-9]+$/.test(val))
val=parseInt(val,10);val=(!val&&val!==0)?true:val;if(val!==false&&val!==true&&typeof val!='number')
val=decodeURIComponent(val);self.SET(key,val);});});}
return self;};queryObject.prototype={queryObject:true,has:function(key,type){var value=this.get(key);return is(value,type);},GET:function(key,force_array){if(!is(key))return this.keys;var parsed=parse(key),base=parsed[0],tokens=parsed[1];var target=this.keys[base];while(target!=null&&tokens.length!=0){target=target[tokens.shift()];}
if(force_array)
return target?$.makeArray(target):[]
return target||"";},get:function(key){var target=this.GET(key);if(is(target,Object))
return jQuery.extend(true,{},target);else if(is(target,Array))
return target.slice(0);return target;},SET:function(key,val){var value=!is(val)?null:val;var parsed=parse(key),base=parsed[0],tokens=parsed[1];var target=this.keys[base];this.keys[base]=set(target,tokens.slice(0),value);return this;},set:function(key,val){return this.copy().SET(key,val);},REMOVE:function(key){return this.SET(key,null).COMPACT();},remove:function(key){return this.copy().REMOVE(key);},EMPTY:function(){var self=this;jQuery.each(self.keys,function(key,value){delete self.keys[key];});return self;},empty:function(){return this.copy().EMPTY();},copy:function(){return new queryObject(this);},COMPACT:function(){function build(orig){var obj=typeof orig=="object"?is(orig,Array)?[]:{}:orig;if(typeof orig=='object'){function add(o,key,value){if(is(o,Array))
o.push(value);else
o[key]=value;}
jQuery.each(orig,function(key,value){if(!is(value))return true;add(obj,key,build(value));});}
return obj;}
this.keys=build(this.keys);return this;},compact:function(){return this.copy().COMPACT();},toString:function(){var i=0,queryString=[],chunks=[],self=this;var addFields=function(arr,key,value){if(!is(value)||value===false)return;var o=[key];if(value!==true){o.push("=");o.push(encodeURIComponent(value));}
arr.push(o.join(""));};var build=function(obj,base){var newKey=function(key){return!base||base==""?[key].join(""):[base].join("");};jQuery.each(obj,function(key,value){if(typeof value=='object')
build(value,newKey(key));else
addFields(chunks,newKey(key),value);});};build(this.keys);if(chunks.length>0)queryString.push($hash);queryString.push(chunks.join($separator));return queryString.join("");}};return new queryObject(location.search,location.hash);};}(jQuery.query||{});function gen_id(){var id=""
for(var i=0;i<32;i++){id+=Math.floor(Math.random()*16).toString(16);}
return id}
jQuery.fn.uploadProgress=function(){return this.each(function(){var $form=$(this);if(!($form.is('form')&&$form.attr('enctype')=='multipart/form-data'))return;$form.submit(function(){var has_upload_data=false;var $inputs=$('input[@type=file]',this).each(function(){if(this.value)has_upload_data=true;});if(!has_upload_data)return true;if($.data(this,'submitted'))return false;var freq=5000;var id=gen_id();var progress_url=admin_root+'upload_progress/';this.action+=(this.action.indexOf('?')==-1?'?':'&')+'X-Progress-ID='+id;var $progress=$('<div id="upload-progress" class="upload-progress"></div>').insertAfter($inputs.slice(0,1)).append('<div class="progress-container"><span class="progress-info">uploading 0%</span><div class="progress-bar"></div></div>');$progress.show();$form.trigger('form-upload');function update_progress_info(){$progress.show();$.getJSON(progress_url,{'X-Progress-ID':id},function(data,status){if(data){var progress=parseInt(data.uploaded)/parseInt(data.length);var width=$progress.find('.progress-container').width()
var progress_width=width*progress;$progress.find('.progress-bar').width(progress_width);$progress.find('.progress-info').text('uploading '+parseInt(progress*100)+'%');}
window.setTimeout(update_progress_info,freq);});};window.setTimeout(update_progress_info,freq);$.data(this,'submitted',true);});});}})(jQuery);var Scroller=function(){return this.initialize.apply(this,arguments);};Scroller.prototype={defaults:{speed:12,delay:60,mouseWheel:true,wheelSpeed:24,buttonEvent:'mousedown',nextButtonHTML:'<a>more&raquo;</a>',prevButtonHTML:'<a>&laquo;back</a>',scrollbar:true,horizontal:false,animate:false,animateSpeed:100,paginate:false,autoResize:false},timeoutID:0,scrollCursor:0,initialize:function(obj,settings){var self=this;self.settings=jQuery.extend({},self.defaults,settings);self.container=obj;var $container=$(self.container);var dir_class=self.settings.horizontal?'scroller-horizontal':'scroller-vertical'
$container.css({overflow:'hidden'}).addClass('jquery-scroller '+dir_class);var dim;if(self.settings.horizontal){self.dim=dim={scrollPosition:'scrollLeft',scrollLength:'scrollWidth',position:'left',length:'width',axis:'x'};}
else{self.dim=dim={scrollPosition:'scrollTop',scrollLength:'scrollHeight',position:'top',length:'height',axis:'y'};}
if(self.settings.autoResize){var saved_scrollLength=self.container[dim.scrollLength];window.setInterval(function(){var cur_len=self.container[dim.scrollLength];if(cur_len!=saved_scrollLength){saved_scrollLength=cur_len;self.reset(self.scrollCursor);}},200);}
$(window).resize(function(){self.reset(self.scrollCursor);});$('.scroller-controls',$container.parent()).remove();$controls=$('<div class="scroller-controls '+dir_class+'"></div>').insertAfter($container);$prev=$(self.settings.prevButtonHTML).addClass('scroller-prev').addClass('disabled').appendTo($controls);$next=$(self.settings.nextButtonHTML).addClass('scroller-next').appendTo($controls);self.prevButton=$prev[0];self.nextButton=$next[0];self.controls=$controls[0];if(self.settings.animate){var amount=self.settings.animateSpeed;if(self.settings.paginate){amount=$container[dim.length]();self.settings.animateSpeed=amount;}
$(self.nextButton).click(function(){self.update(amount,true);});$(self.prevButton).click(function(){self.update(0-amount,true);});}else{switch(self.settings.buttonEvent){case'mousedown':$(self.nextButton).bind('mousedown',function(e){self.scrollNext()}).bind('mouseup',function(e){self.stopScroll()});$(self.prevButton).bind('mousedown',function(e){self.scrollPrev()}).bind('mouseup',function(e){self.stopScroll()});break;case'hover':$(self.nextButton).hover(function(e){self.scrollNext()},function(e){self.stopScroll()});$(self.prevButton).hover(function(e){self.scrollPrev()},function(e){self.stopScroll()});break;}}
if(self.settings.mouseWheel){$container.mousewheel(function(e,delta){self.wheel(e,delta);return false;});}
if(self.settings.scrollbar){var $scrollbar=$('<div class="scroller-scrollbar"><div class="scroller-handle"></div></div>').appendTo($controls);var $handle=$('.scroller-handle',$scrollbar);self.scrollbar=$scrollbar[0];self.resetScrollbar();$container.bind('scrolling',function(e,animate){if(self.dragging)return;var total_length=self.container[dim.scrollLength]-$container[dim.length]();var p=total_length>0?(self.scrollCursor/total_length):0;var pos=(p*($scrollbar[dim.length]()-$handle[dim.length]()));if(animate){var a={}
a[dim.position]=pos;$handle.animate(a);}else{$handle.css(dim.position,pos);}});$handle.draggable({axis:dim.axis,containment:'parent',start:function(){self.dragging=true;$handle.addClass('hover');},stop:function(){self.dragging=false;$handle.removeClass('hover');},drag:function(e,ui){var total_length=self.container[dim.scrollLength]-$container[dim.length]();var scrollable_length=$scrollbar[dim.length]()-$handle[dim.length]();var pos=parseInt($handle.css(dim.position));var percentage=(pos/scrollable_length);var scroll=(percentage*total_length);self.scrollTo(scroll,false);}});}
$container.bind('scrollbeginning',function(){$(self.prevButton).addClass('disabled');if(self.settings.animate){self.stopScroll();}});$container.bind('scrollend',function(){$(self.nextButton).addClass('disabled');;if(self.settings.animate){self.stopScroll();}});self.reset();},reset:function(s){var self=this;var pos=s||0;if(self.scrollNeeded()){$(self.controls).show();if(self.settings.scrollbar){self.resetScrollbar();}}else{$(self.controls).hide()}
self.scrollTo(s,false);if(pos==0)$(self.prevButton).addClass('disabled');$(self.container).trigger('scrollreset');},resetScrollbar:function(){var self=this;var dim=self.dim;var $controls=$(self.controls);var $scrollbar=$(self.scrollbar);$controls[dim.length]($(self.container)[dim.length]());$scrollbar[dim.length]($controls[dim.length]());var length_r=Math.round($scrollbar[dim.length]()*($(self.container)[dim.length]()/self.container[dim.scrollLength]));if(length_r<50)length_r=50;$scrollbar.find('.scroller-handle')[dim.length](length_r);},update:function(t){var self=this;var animate=(typeof(arguments[1])=='undefined')?self.settings.animate:arguments[1];var s=self.scrollCursor+t;self.scrollTo(s,animate);},scrollTo:function(s){var self=this;var $container=$(self.container);var animate=(typeof(arguments[1])=='undefined')?self.settings.animate:arguments[1];if(typeof(s)=='object'){var $$=$(s);if($$.parents().index(self.container)==-1)return;var offset=$$.offset()[self.dim.position]+$container[0][self.dim.scrollPosition]-$container.offset()[self.dim.position];s=offset;}
else if(animate){speed=self.settings.animateSpeed;if(s>=self.scrollCursor)
s=Math.floor(s/speed)*speed;else
s=Math.ceil(s/speed)*speed;}
self.scrollCursor=s;if(self.scrollCursor<=0){self.scrollCursor=0;$container.trigger('scrollbeginning');}else{$(self.prevButton).removeClass('disabled');}
var dim=self.dim;var scrollLength=self.container[dim.scrollLength];var length=$container[dim.length]();if(self.scrollCursor>=(scrollLength-length)){self.scrollCursor=scrollLength-length;$container.trigger('scrollend');}else{$(self.nextButton).removeClass('disabled');}
if(animate){var animation_options={easing:'linear'};animation_options[dim.scrollPosition]=self.scrollCursor;$container.animate(animation_options);}else{self.container[dim.scrollPosition]=self.scrollCursor;self.scrollCursor=self.container[dim.scrollPosition];}
$container.trigger('scrolling',[animate]);},scrollNeeded:function(){var self=this;var scrollLength,length;var $container=$(self.container);length=$container[self.dim.length]();scrollLength=self.container[self.dim.scrollLength];if(scrollLength>length)return true;return false;},stopScroll:function(){var self=this;clearTimeout(self.timeoutID);},scrollPrev:function(){var self=this;self.update(0-self.settings.speed);self.timeoutID=setTimeout(function(){self.scrollPrev();},self.settings.delay);},scrollNext:function(){var self=this;self.update(self.settings.speed);self.timeoutID=setTimeout(function(){self.scrollNext();},self.settings.delay);},wheel:function(event,delta){var self=this;if($.browser.opera)delta=delta*-1;direction=(delta<0)?1:-1;self.update(self.settings.wheelSpeed*direction,false);return false;}};jQuery.fn.Scroller=function(settings){return this.each(function(i,el){var scroller=$.data(el,'scroller');if(scroller){scroller.reset();}else{scroller=new Scroller(el,settings);$.data(el,'scroller',scroller);}});};$(function(){Cufon.replace('h1',{fontFamily:'Nimbus Sans D',hover:true});Cufon.replace('#footer a, #footer span',{hover:true});$('a[rel=bio]').click(function(event){var ww=$(window).width();var wh=$(window).height();var $overlay=$('<div class="bio-overlay"></div>').appendTo(document.body);var $container=$('<div class="container"></div>').appendTo(document.body);$overlay.css({opacity:0.75}).add($container).click(function(){$overlay.add($container).hide().remove()});$container.load(this.href,function(){var $page=$container.find('.page');Cufon.replace('.page',{fontSize:'16px',lineHeight:'1.6em'});$page.css({width:910,height:475,left:'50%',marginLeft:'-455px',top:'50%',marginTop:'-241px'});});return false;});$('a[rel=clients]').click(function(e){var ww=$(window).width();var wh=$(window).height();var $overlay=$('<div class="page-overlay"></div>').appendTo(document.body);var $container=$('<div class="container"></div>').appendTo(document.body);$overlay.css({opacity:0.75}).add($container).click(function(){$overlay.add($container).hide().remove()});$container.load(this.href,function(){var $page=$container.find('.page');Cufon.replace('.page td',{fontSize:'15px'});$page.find('table').css('margin','0 auto').find('td:not(:last)').css({paddingRight:46});$page.css({width:'906px',left:'50%',marginLeft:'-453px',top:'50%',marginTop:'-308px'});});return false;});});