(function(){var _jQuery=window.jQuery,_$=window.$;var jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context);};var quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/,isSimple=/^.[^:#\[\.]*$/,undefined;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;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);return jQuery(elem);}selector=[];}}else
return jQuery(context).find(selector);}else if(jQuery.isFunction(selector))return jQuery(document)[jQuery.fn.ready?"ready":"load"](selector);return this.setArray(jQuery.makeArray(selector));},jquery:"1.2.6",size:function(){return this.length;},length:0,get:function(num){return num==undefined?jQuery.makeArray(this):this[num];},pushStack:function(elems){var ret=jQuery(elems);ret.prevObject=this;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){var ret=-1;return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this);},attr:function(name,value,type){var options=name;if(name.constructor==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])jQuery(html,this[0].ownerDocument).clone().insertBefore(this[0]).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,false,function(elem){if(this.nodeType==1)this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,true,function(elem){if(this.nodeType==1)this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,true,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},find:function(selector){var elems=jQuery.map(this,function(elem){return jQuery.find(selector,elem);});return this.pushStack(/[^+>] [^+>]/.test(selector)||selector.indexOf("..")>-1?jQuery.unique(elems):elems);},clone:function(events){var ret=this.map(function(){if(jQuery.browser.msie&&!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,this));},not:function(selector){if(selector.constructor==String)if(isSimple.test(selector))return this.pushStack(jQuery.multiFilter(selector,this,true));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 this.is("."+selector);},val:function(value){if(value==undefined){if(this.length){var elem=this[0];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.browser.msie&&!option.attributes.value.specified?option.text:option.value;if(one)return value;values.push(value);}}return values;}else
return(this[0].value||"").replace(/\r/g,"");}return undefined;}if(value.constructor==Number)value+='';return this.each(function(){if(this.nodeType!=1)return;if(value.constructor==Array&&/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));},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);},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);});},domManip:function(args,table,reverse,callback){var clone=this.length>1,elems;return this.each(function(){if(!elems){elems=jQuery.clean(args,this.ownerDocument);if(reverse)elems.reverse();}var obj=this;if(table&&jQuery.nodeName(this,"table")&&jQuery.nodeName(elems[0],"tr"))obj=this.getElementsByTagName("tbody")[0]||this.appendChild(this.ownerDocument.createElement("tbody"));var scripts=jQuery([]);jQuery.each(elems,function(){var elem=clone?jQuery(this).clone(true)[0]:this;if(jQuery.nodeName(elem,"script"))scripts=scripts.add(elem);else{if(elem.nodeType==1)scripts=scripts.add(jQuery("script",elem).remove());callback.call(obj,elem);}});scripts.each(evalScript);});}};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(target.constructor==Boolean){deep=target;target=arguments[1]||{};i=2;}if(typeof target!="object"&&typeof target!="function")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 expando="jQuery"+now(),uuid=0,windowData={},exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,defaultView=document.defaultView||{};jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)window.jQuery=_jQuery;return jQuery;},isFunction:function(fn){return!!fn&&typeof fn!="string"&&!fn.nodeName&&fn.constructor!=Array&&/^[\s[]?function/.test(fn+"");},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.browser.msie)script.text=data;else
script.appendChild(document.createTextNode(data));head.insertBefore(script,head.firstChild);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},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];}},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 value&&value.constructor==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;function color(elem){if(!jQuery.browser.safari)return false;var ret=defaultView.getComputedStyle(elem,null);return!ret||ret.getPropertyValue("color")=="";}if(name=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(style,"opacity");return ret==""?"1":ret;}if(jQuery.browser.opera&&name=="display"){var save=style.outline;style.outline="0 solid black";style.outline=save;}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&&!color(elem))ret=computedStyle.getPropertyValue(name);else{var swap=[],stack=[],a=elem,i=0;for(;a&&color(a);a=a.parentNode)stack.unshift(a);for(;i<stack.length;i++)if(color(stack[i])){swap[i]=stack[i].style.display;stack[i].style.display="block";}ret=name=="display"&&swap[stack.length-1]!=null?"none":(computedStyle&&computedStyle.getPropertyValue(name))||"";for(i=0;i<swap.length;i++)if(swap[i]!=null)stack[i].style.display=swap[i];}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){var ret=[];context=context||document;if(typeof context.createElement=='undefined')context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;jQuery.each(elems,function(i,elem){if(!elem)return;if(elem.constructor==Number)elem+='';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(),div=context.createElement("div");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.browser.msie&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)div=div.lastChild;if(jQuery.browser.msie){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(/^\s/.test(elem))div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);}elem=jQuery.makeArray(div.childNodes);}if(elem.length===0&&(!jQuery.nodeName(elem,"form")&&!jQuery.nodeName(elem,"select")))return;if(elem[0]==undefined||jQuery.nodeName(elem,"form")||elem.options)ret.push(elem);else
ret=jQuery.merge(ret,elem);});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,msie=jQuery.browser.msie;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name=="selected"&&jQuery.browser.safari)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;return elem[name];}if(msie&&notxml&&name=="style")return jQuery.attr(elem.style,"cssText",value);if(set)elem.setAttribute(name,""+value);var attr=msie&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}if(msie&&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||array.split||array.setInterval||array.call)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.browser.msie){while(elem=second[i++])if(elem.nodeType!=8)first[pos++]=elem;}else
while(elem=second[i++])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.]+)/)||[])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};var styleFloat=jQuery.browser.msie?"styleFloat":"cssFloat";jQuery.extend({boxModel:!jQuery.browser.msie||document.compatMode=="CSS1Compat",props:{"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing"}});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));};});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){jQuery.className[jQuery.className.has(this,classNames)?"remove":"add"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).r.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);};});jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?jQuery.browser.opera&&document.body["client"+name]||jQuery.browser.safari&&window["inner"+name]||document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(Math.max(document.body["scroll"+name],document.documentElement["scroll"+name]),Math.max(document.body["offset"+name],document.documentElement["offset"+name])):size==undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,size.constructor==String?size:size+"px");};});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0;}var chars=jQuery.browser.safari&&parseInt(jQuery.browser.version)<417?"(?:[\\w*_-]|\\\\.)":"(?:[\\w\u0128-\uFFFF*_-]|\\\\.)",quickChild=new RegExp("^>\\s*("+chars+"+)"),quickID=new RegExp("^("+chars+"+)(#)("+chars+"+)"),quickClass=new RegExp("^([#.]?)("+chars+"*)");jQuery.extend({expr:{"":function(a,i,m){return m[2]=="*"||jQuery.nodeName(a,m[2]);},"#":function(a,i,m){return a.getAttribute("id")==m[2];},":":{lt:function(a,i,m){return i<m[3]-0;},gt:function(a,i,m){return i>m[3]-0;},nth:function(a,i,m){return m[3]-0==i;},eq:function(a,i,m){return m[3]-0==i;},first:function(a,i){return i==0;},last:function(a,i,m,r){return i==r.length-1;},even:function(a,i){return i%2==0;},odd:function(a,i){return i%2;},"first-child":function(a){return a.parentNode.getElementsByTagName("*")[0]==a;},"last-child":function(a){return jQuery.nth(a.parentNode.lastChild,1,"previousSibling")==a;},"only-child":function(a){return!jQuery.nth(a.parentNode.lastChild,2,"previousSibling");},parent:function(a){return a.firstChild;},empty:function(a){return!a.firstChild;},contains:function(a,i,m){return(a.textContent||a.innerText||jQuery(a).text()||"").indexOf(m[3])>=0;},visible:function(a){return"hidden"!=a.type&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden";},hidden:function(a){return"hidden"==a.type||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden";},enabled:function(a){return!a.disabled;},disabled:function(a){return a.disabled;},checked:function(a){return a.checked;},selected:function(a){return a.selected||jQuery.attr(a,"selected");},text:function(a){return"text"==a.type;},radio:function(a){return"radio"==a.type;},checkbox:function(a){return"checkbox"==a.type;},file:function(a){return"file"==a.type;},password:function(a){return"password"==a.type;},submit:function(a){return"submit"==a.type;},image:function(a){return"image"==a.type;},reset:function(a){return"reset"==a.type;},button:function(a){return"button"==a.type||jQuery.nodeName(a,"button");},input:function(a){return/input|select|textarea|button/i.test(a.nodeName);},has:function(a,i,m){return jQuery.find(m[3],a).length;},header:function(a){return/h\d/i.test(a.nodeName);},animated:function(a){return jQuery.grep(jQuery.timers,function(fn){return a==fn.elem;}).length;}}},parse:[/^(\[) *@?([\w-]+) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/,/^(:)([\w-]+)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/,new RegExp("^([:.#]*)("+chars+"+)")],multiFilter:function(expr,elems,not){var old,cur=[];while(expr&&expr!=old){old=expr;var f=jQuery.filter(expr,elems,not);expr=f.t.replace(/^\s*,\s*/,"");cur=not?elems=f.r:jQuery.merge(cur,f.r);}return cur;},find:function(t,context){if(typeof t!="string")return[t];if(context&&context.nodeType!=1&&context.nodeType!=9)return[];context=context||document;var ret=[context],done=[],last,nodeName;while(t&&last!=t){var r=[];last=t;t=jQuery.trim(t);var foundToken=false,re=quickChild,m=re.exec(t);if(m){nodeName=m[1].toUpperCase();for(var i=0;ret[i];i++)for(var c=ret[i].firstChild;c;c=c.nextSibling)if(c.nodeType==1&&(nodeName=="*"||c.nodeName.toUpperCase()==nodeName))r.push(c);ret=r;t=t.replace(re,"");if(t.indexOf(" ")==0)continue;foundToken=true;}else{re=/^([>+~])\s*(\w*)/i;if((m=re.exec(t))!=null){r=[];var merge={};nodeName=m[2].toUpperCase();m=m[1];for(var j=0,rl=ret.length;j<rl;j++){var n=m=="~"||m=="+"?ret[j].nextSibling:ret[j].firstChild;for(;n;n=n.nextSibling)if(n.nodeType==1){var id=jQuery.data(n);if(m=="~"&&merge[id])break;if(!nodeName||n.nodeName.toUpperCase()==nodeName){if(m=="~")merge[id]=true;r.push(n);}if(m=="+")break;}}ret=r;t=jQuery.trim(t.replace(re,""));foundToken=true;}}if(t&&!foundToken){if(!t.indexOf(",")){if(context==ret[0])ret.shift();done=jQuery.merge(done,ret);r=ret=[context];t=" "+t.substr(1,t.length);}else{var re2=quickID;var m=re2.exec(t);if(m){m=[0,m[2],m[3],m[1]];}else{re2=quickClass;m=re2.exec(t);}m[2]=m[2].replace(/\\/g,"");var elem=ret[ret.length-1];if(m[1]=="#"&&elem&&elem.getElementById&&!jQuery.isXMLDoc(elem)){var oid=elem.getElementById(m[2]);if((jQuery.browser.msie||jQuery.browser.opera)&&oid&&typeof oid.id=="string"&&oid.id!=m[2])oid=jQuery('[@id="'+m[2]+'"]',elem)[0];ret=r=oid&&(!m[3]||jQuery.nodeName(oid,m[3]))?[oid]:[];}else{for(var i=0;ret[i];i++){var tag=m[1]=="#"&&m[3]?m[3]:m[1]!=""||m[0]==""?"*":m[2];if(tag=="*"&&ret[i].nodeName.toLowerCase()=="object")tag="param";r=jQuery.merge(r,ret[i].getElementsByTagName(tag));}if(m[1]==".")r=jQuery.classFilter(r,m[2]);if(m[1]=="#"){var tmp=[];for(var i=0;r[i];i++)if(r[i].getAttribute("id")==m[2]){tmp=[r[i]];break;}r=tmp;}ret=r;}t=t.replace(re2,"");}}if(t){var val=jQuery.filter(t,r);ret=r=val.r;t=jQuery.trim(val.t);}}if(t)ret=[];if(ret&&context==ret[0])ret.shift();done=jQuery.merge(done,ret);return done;},classFilter:function(r,m,not){m=" "+m+" ";var tmp=[];for(var i=0;r[i];i++){var pass=(" "+r[i].className+" ").indexOf(m)>=0;if(!not&&pass||not&&!pass)tmp.push(r[i]);}return tmp;},filter:function(t,r,not){var last;while(t&&t!=last){last=t;var p=jQuery.parse,m;for(var i=0;p[i];i++){m=p[i].exec(t);if(m){t=t.substring(m[0].length);m[2]=m[2].replace(/\\/g,"");break;}}if(!m)break;if(m[1]==":"&&m[2]=="not")r=isSimple.test(m[3])?jQuery.filter(m[3],r,true).r:jQuery(r).not(m[3]);else if(m[1]==".")r=jQuery.classFilter(r,m[2],not);else if(m[1]=="["){var tmp=[],type=m[3];for(var i=0,rl=r.length;i<rl;i++){var a=r[i],z=a[jQuery.props[m[2]]||m[2]];if(z==null||/href|src|selected/.test(m[2]))z=jQuery.attr(a,m[2])||'';if((type==""&&!!z||type=="="&&z==m[5]||type=="!="&&z!=m[5]||type=="^="&&z&&!z.indexOf(m[5])||type=="$="&&z.substr(z.length-m[5].length)==m[5]||(type=="*="||type=="~=")&&z.indexOf(m[5])>=0)^not)tmp.push(a);}r=tmp;}else if(m[1]==":"&&m[2]=="nth-child"){var merge={},tmp=[],test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(m[3]=="even"&&"2n"||m[3]=="odd"&&"2n+1"||!/\D/.test(m[3])&&"0n+"+m[3]||m[3]),first=(test[1]+(test[2]||1))-0,last=test[3]-0;for(var i=0,rl=r.length;i<rl;i++){var node=r[i],parentNode=node.parentNode,id=jQuery.data(parentNode);if(!merge[id]){var c=1;for(var n=parentNode.firstChild;n;n=n.nextSibling)if(n.nodeType==1)n.nodeIndex=c++;merge[id]=true;}var add=false;if(first==0){if(node.nodeIndex==last)add=true;}else if((node.nodeIndex-last)%first==0&&(node.nodeIndex-last)/first>=0)add=true;if(add^not)tmp.push(node);}r=tmp;}else{var fn=jQuery.expr[m[1]];if(typeof fn=="object")fn=fn[m[2]];if(typeof fn=="string")fn=eval("false||function(a,i){return "+fn+";}");r=jQuery.grep(r,function(elem,i){return fn(elem,i,m,r);},not);}}return{r:r,t:t};},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;},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;},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&n!=elem)r.push(n);}return r;}});jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)return;if(jQuery.browser.msie&&elem.setInterval)elem=window;if(!handler.guid)handler.guid=this.guid++;if(data!=undefined){var fn=handler;handler=this.proxy(fn,function(){return fn.apply(this,arguments);});handler.data=data;}var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){if(typeof jQuery!="undefined"&&!jQuery.event.triggered)return jQuery.event.handle.apply(arguments.callee.elem,arguments);});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];handler.type=parts[1];var handlers=events[type];if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem)===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 parts=type.split(".");type=parts[0];if(events[type]){if(handler)delete events[type][handler.guid];else
for(handler in events[type])if(!parts[1]||events[type][handler].type==parts[1])delete events[type][handler];for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem)===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(type,data,elem,donative,extra){data=jQuery.makeArray(data);if(type.indexOf("!")>=0){type=type.slice(0,-1);var exclusive=true;}if(!elem){if(this.global[type])jQuery("*").add([window,document]).trigger(type,data);}else{if(elem.nodeType==3||elem.nodeType==8)return undefined;var val,ret,fn=jQuery.isFunction(elem[type]||null),event=!data[0]||!data[0].preventDefault;if(event){data.unshift({type:type,target:elem,preventDefault:function(){},stopPropagation:function(){},timeStamp:now()});data[0][expando]=true;}data[0].type=type;if(exclusive)data[0].exclusive=true;var handle=jQuery.data(elem,"handle");if(handle)val=handle.apply(elem,data);if((!fn||(jQuery.nodeName(elem,'a')&&type=="click"))&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)val=false;if(event)data.shift();if(extra&&jQuery.isFunction(extra)){ret=extra.apply(elem,val==null?data:data.concat(val));if(ret!==undefined)val=ret;}if(fn&&donative!==false&&val!==false&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}}this.triggered=false;}return val;},handle:function(event){var val,ret,namespace,all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);namespace=event.type.split(".");event.type=namespace[0];namespace=namespace[1];all=!namespace&&!event.exclusive;handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||handler.type==namespace){event.handler=handler;event.data=handler.data;ret=handler.apply(this,arguments);if(val!==false)val=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}}return val;},fix:function(event){if(event[expando]==true)return event;var originalEvent=event;event={originalEvent:originalEvent};var 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 timeStamp toElement type view wheelDelta which".split(" ");for(var i=props.length;i;i--)event[props[i]]=originalEvent[props[i]];event[expando]=true;event.preventDefault=function(){if(originalEvent.preventDefault)originalEvent.preventDefault();originalEvent.returnValue=false;};event.stopPropagation=function(){if(originalEvent.stopPropagation)originalEvent.stopPropagation();originalEvent.cancelBubble=true;};event.timeStamp=event.timeStamp||now();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.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy;},special:{ready:{setup:function(){bindReady();return;},teardown:function(){return;}},mouseenter:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseover",jQuery.event.special.mouseenter.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseover",jQuery.event.special.mouseenter.handler);return true;},handler:function(event){if(withinElement(event,this))return true;event.type="mouseenter";return jQuery.event.handle.apply(this,arguments);}},mouseleave:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseout",jQuery.event.special.mouseleave.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseout",jQuery.event.special.mouseleave.handler);return true;},handler:function(event){if(withinElement(event,this))return true;event.type="mouseleave";return jQuery.event.handle.apply(this,arguments);}}}};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,fn){return this.each(function(){jQuery.event.trigger(type,data,this,true,fn);});},triggerHandler:function(type,data,fn){return this[0]&&jQuery.event.trigger(type,data,this[0],false,fn);},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.bind('mouseenter',fnOver).bind('mouseleave',fnOut);},ready:function(fn){bindReady();if(jQuery.isReady)fn.call(document,jQuery);else
jQuery.readyList.push(function(){return fn.call(this,jQuery);});return this;}});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.readyList=null;}jQuery(document).triggerHandler("ready");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener&&!jQuery.browser.opera)document.addEventListener("DOMContentLoaded",jQuery.ready,false);if(jQuery.browser.msie&&window==top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left");}catch(error){setTimeout(arguments.callee,0);return;}jQuery.ready();})();if(jQuery.browser.opera)document.addEventListener("DOMContentLoaded",function(){if(jQuery.isReady)return;for(var i=0;i<document.styleSheets.length;i++)if(document.styleSheets[i].disabled){setTimeout(arguments.callee,0);return;}jQuery.ready();},false);if(jQuery.browser.safari){var numStyles;(function(){if(jQuery.isReady)return;if(document.readyState!="loaded"&&document.readyState!="complete"){setTimeout(arguments.callee,0);return;}if(numStyles===undefined)numStyles=jQuery("style, link[rel=stylesheet]").length;if(document.styleSheets.length!=numStyles){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,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);};});var withinElement=function(event,elem){var parent=event.relatedTarget;while(parent&&parent!=elem)try{parent=parent.parentNode;}catch(error){parent=elem;}return parent==elem;};jQuery(window).bind("unload",function(){jQuery("*").add(document).unbind();});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);}callback=callback||function(){};var type="GET";if(params)if(jQuery.isFunction(params)){callback=params;params=null;}else{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);self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return jQuery.nodeName(this,"form")?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:val.constructor==Array?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",timeout:0,contentType:"application/x-www-form-urlencoded",processData:true,async:true,data:null,username:null,password:null,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 remote=/^(?:\w+:)?\/\/([^\/?#]+)/;if(s.dataType=="script"&&type=="GET"&&remote.test(s.url)&&remote.exec(s.url)[1]!=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=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();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){s.global&&jQuery.active--;xhr.abort();return false;}if(s.global)jQuery.event.trigger("ajaxSend",[xhr,s]);var onreadystatechange=function(isTimeout){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.dataFilter);}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){xhr.abort();if(!requestDone)onreadystatechange("timeout");}},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||jQuery.browser.safari&&xhr.status==undefined;}catch(e){}return false;},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader("Last-Modified");return xhr.status==304||xhrRes==jQuery.lastModified[url]||jQuery.browser.safari&&xhr.status==undefined;}catch(e){}return false;},httpData:function(xhr,type,filter){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(filter)data=filter(data,type);if(type=="script")jQuery.globalEval(data);if(type=="json")data=eval("("+data+")");return data;},param:function(a){var s=[];if(a.constructor==Array||a.jquery)jQuery.each(a,function(){s.push(encodeURIComponent(this.name)+"="+encodeURIComponent(this.value));});else
for(var j in a)if(a[j]&&a[j].constructor==Array)jQuery.each(a[j],function(){s.push(encodeURIComponent(j)+"="+encodeURIComponent(this));});else
s.push(encodeURIComponent(j)+"="+encodeURIComponent(jQuery.isFunction(a[j])?a[j]():a[j]));return s.join("&").replace(/%20/g,"+");}});jQuery.fn.extend({show:function(speed,callback){return speed?this.animate({height:"show",width:"show",opacity:"show"},speed,callback):this.filter(":hidden").each(function(){this.style.display=this.oldblock||"";if(jQuery.css(this,"display")=="none"){var elem=jQuery("<"+this.tagName+" />").appendTo("body");this.style.display=elem.css("display");if(this.style.display=="none")this.style.display="block";elem.remove();}}).end();},hide:function(speed,callback){return speed?this.animate({height:"hide",width:"hide",opacity:"hide"},speed,callback):this.filter(":visible").each(function(){this.oldblock=this.oldblock||jQuery.css(this,"display");this.style.display="none";}).end();},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle.apply(this,arguments):fn?this.animate({height:"toggle",width:"toggle",opacity:"toggle"},fn,fn2):this.each(function(){jQuery(this)[jQuery(this).is(":hidden")?"show":"hide"]();});},slideDown:function(speed,callback){return this.animate({height:"show"},speed,callback);},slideUp:function(speed,callback){return this.animate({height:"hide"},speed,callback);},slideToggle:function(speed,callback){return this.animate({height:"toggle"},speed,callback);},fadeIn:function(speed,callback){return this.animate({opacity:"show"},speed,callback);},fadeOut:function(speed,callback){return this.animate({opacity:"hide"},speed,callback);},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(){if(this.nodeType!=1)return false;var opt=jQuery.extend({},optall),p,hidden=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"){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;});},queue:function(type,fn){if(jQuery.isFunction(type)||(type&&type.constructor==Array)){fn=type;type="fx";}if(!type||(typeof type=="string"&&!fn))return queue(this[0],type);return this.each(function(){if(fn.constructor==Array)queue(this,type,fn);else{queue(this,type).push(fn);if(queue(this,type).length==1)fn.call(this);}});},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;}});var queue=function(elem,type,array){if(elem){type=type||"fx";var q=jQuery.data(elem,type+"queue");if(!q||array)q=jQuery.data(elem,type+"queue",jQuery.makeArray(array));}return q;};jQuery.fn.dequeue=function(type){type=type||"fx";return this.each(function(){var q=queue(this,type);q.shift();if(q.length)q[0].call(this);});};jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&speed.constructor==Object?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&easing.constructor!=Function&&easing};opt.duration=(opt.duration&&opt.duration.constructor==Number?opt.duration:jQuery.fx.speeds[opt.duration])||jQuery.fx.speeds.def;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.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&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;this.update();var self=this;function t(gotoEnd){return self.step(gotoEnd);}t.elem=this.elem;jQuery.timers.push(t);if(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(0,this.cur());if(this.prop=="width"||this.prop=="height")this.elem.style[this.prop]="1px";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)this.elem.style.display="none";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,def:400},step:{scrollLeft:function(fx){fx.elem.scrollLeft=fx.now;},scrollTop:function(fx){fx.elem.scrollTop=fx.now;},opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){fx.elem.style[fx.prop]=fx.now+fx.unit;}}});jQuery.fn.offset=function(){var left=0,top=0,elem=this[0],results;if(elem)with(jQuery.browser){var parent=elem.parentNode,offsetChild=elem,offsetParent=elem.offsetParent,doc=elem.ownerDocument,safari2=safari&&parseInt(version)<522&&!/adobeair/i.test(userAgent),css=jQuery.curCSS,fixed=css(elem,"position")=="fixed";if(elem.getBoundingClientRect){var box=elem.getBoundingClientRect();add(box.left+Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),box.top+Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));add(-doc.documentElement.clientLeft,-doc.documentElement.clientTop);}else{add(elem.offsetLeft,elem.offsetTop);while(offsetParent){add(offsetParent.offsetLeft,offsetParent.offsetTop);if(mozilla&&!/^t(able|d|h)$/i.test(offsetParent.tagName)||safari&&!safari2)border(offsetParent);if(!fixed&&css(offsetParent,"position")=="fixed")fixed=true;offsetChild=/^body$/i.test(offsetParent.tagName)?offsetChild:offsetParent;offsetParent=offsetParent.offsetParent;}while(parent&&parent.tagName&&!/^body|html$/i.test(parent.tagName)){if(!/^inline|table.*$/i.test(css(parent,"display")))add(-parent.scrollLeft,-parent.scrollTop);if(mozilla&&css(parent,"overflow")!="visible")border(parent);parent=parent.parentNode;}if((safari2&&(fixed||css(offsetChild,"position")=="absolute"))||(mozilla&&css(offsetChild,"position")!="absolute"))add(-doc.body.offsetLeft,-doc.body.offsetTop);if(fixed)add(Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));}results={top:top,left:left};}function border(elem){add(jQuery.curCSS(elem,"borderLeftWidth",true),jQuery.curCSS(elem,"borderTopWidth",true));}function add(l,t){left+=parseInt(l,10)||0;top+=parseInt(t,10)||0;}return results;};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;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;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);};});})();;(function(A){A.fn.jFlow=function(K){var B=A.extend({},A.fn.jFlow.defaults,K);var G=Math.floor(Math.random()*11);var I=B.controller;var C=B.slideWrapper;var H=B.selectedWrapper;var J=0;var E=A(I).length;var F=function(M,L){A(B.slides).children().css({overflow:"hidden"});A(B.slides+" iframe").hide().addClass("temp_hide");A(B.slides).animate({marginLeft:"-"+(L*A(B.slides).find(":first-child").width()+"px")},B.duration*(M),B.easing,function(){A(B.slides).children().css({overflow:"auto"});A(".temp_hide").show()})};A(this).find(I).each(function(L){A(this).click(function(){if(A(B.slides).is(":not(:animated)")){A(I).removeClass(H);A(this).addClass(H);var M=Math.abs(J-L);F(M,L);J=L}})});A(B.slides).before('<div id="'+C.substring(1,C.length)+'"></div>').appendTo(C);A(B.slides).find("div").each(function(){A(this).before('<div class="jFlowSlideContainer"></div>').appendTo(A(this).prev())});A(I).eq(J).addClass(H);var D=function(L){A(C).css({position:"relative",width:B.width,height:B.height,overflow:"hidden"});A(B.slides).css({position:"relative",width:A(C).width()*A(I).length+"px",height:A(C).height()+"px",overflow:"hidden"});A(B.slides).children().css({position:"relative",width:A(C).width()+"px",height:A(C).height()+"px","float":"left",overflow:"auto"});A(B.slides).css({marginLeft:"-"+(J*A(B.slides).find(":eq(0)").width()+"px")})};D();A(window).resize(function(){D()});A(B.prev).click(function(){if(A(B.slides).is(":not(:animated)")){var L=1;if(J>0){J--}else{J=E-1;L=J}A(I).removeClass(H);F(L,J);A(I).eq(J).addClass(H)}});A(B.next).click(function(){if(A(B.slides).is(":not(:animated)")){var L=1;if(J<E-1){J++}else{J=0;L=E-1}A(I).removeClass(H);F(L,J);A(I).eq(J).addClass(H)}})};A.fn.jFlow.defaults={controller:".jFlowControl",slideWrapper:"#jFlowSlide",selectedWrapper:"jFlowSelected",easing:"swing",duration:400,width:"100%",prev:".jFlowPrev",next:".jFlowNext"}})(jQuery);;jQuery.easing['jswing']=jQuery.easing['swing'];jQuery.extend(jQuery.easing,{def:'easeOutQuad',swing:function(x,t,b,c,d){return jQuery.easing[jQuery.easing.def](x,t,b,c,d);},easeInQuad:function(x,t,b,c,d){return c*(t/=d)*t+b;},easeOutQuad:function(x,t,b,c,d){return-c*(t/=d)*(t-2)+b;},easeInOutQuad:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t+b;return-c/2*((--t)*(t-2)-1)+b;},easeInCubic:function(x,t,b,c,d){return c*(t/=d)*t*t+b;},easeOutCubic:function(x,t,b,c,d){return c*((t=t/d-1)*t*t+1)+b;},easeInOutCubic:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t+b;return c/2*((t-=2)*t*t+2)+b;},easeInQuart:function(x,t,b,c,d){return c*(t/=d)*t*t*t+b;},easeOutQuart:function(x,t,b,c,d){return-c*((t=t/d-1)*t*t*t-1)+b;},easeInOutQuart:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t+b;return-c/2*((t-=2)*t*t*t-2)+b;},easeInQuint:function(x,t,b,c,d){return c*(t/=d)*t*t*t*t+b;},easeOutQuint:function(x,t,b,c,d){return c*((t=t/d-1)*t*t*t*t+1)+b;},easeInOutQuint:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t*t+b;return c/2*((t-=2)*t*t*t*t+2)+b;},easeInSine:function(x,t,b,c,d){return-c*Math.cos(t/d*(Math.PI/2))+c+b;},easeOutSine:function(x,t,b,c,d){return c*Math.sin(t/d*(Math.PI/2))+b;},easeInOutSine:function(x,t,b,c,d){return-c/2*(Math.cos(Math.PI*t/d)-1)+b;},easeInExpo:function(x,t,b,c,d){return(t==0)?b:c*Math.pow(2,10*(t/d-1))+b;},easeOutExpo:function(x,t,b,c,d){return(t==d)?b+c:c*(-Math.pow(2,-10*t/d)+1)+b;},easeInOutExpo:function(x,t,b,c,d){if(t==0)return b;if(t==d)return b+c;if((t/=d/2)<1)return c/2*Math.pow(2,10*(t-1))+b;return c/2*(-Math.pow(2,-10*--t)+2)+b;},easeInCirc:function(x,t,b,c,d){return-c*(Math.sqrt(1-(t/=d)*t)-1)+b;},easeOutCirc:function(x,t,b,c,d){return c*Math.sqrt(1-(t=t/d-1)*t)+b;},easeInOutCirc:function(x,t,b,c,d){if((t/=d/2)<1)return-c/2*(Math.sqrt(1-t*t)-1)+b;return c/2*(Math.sqrt(1-(t-=2)*t)+1)+b;},easeInElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return-(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;},easeOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return a*Math.pow(2,-10*t)*Math.sin((t*d-s)*(2*Math.PI)/p)+c+b;},easeInOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d/2)==2)return b+c;if(!p)p=d*(.3*1.5);if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);if(t<1)return-.5*(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;return a*Math.pow(2,-10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p)*.5+c+b;},easeInBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*(t/=d)*t*((s+1)*t-s)+b;},easeOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*((t=t/d-1)*t*((s+1)*t+s)+1)+b;},easeInOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;if((t/=d/2)<1)return c/2*(t*t*(((s*=(1.525))+1)*t-s))+b;return c/2*((t-=2)*t*(((s*=(1.525))+1)*t+s)+2)+b;},easeInBounce:function(x,t,b,c,d){return c-jQuery.easing.easeOutBounce(x,d-t,0,c,d)+b;},easeOutBounce:function(x,t,b,c,d){if((t/=d)<(1/2.75)){return c*(7.5625*t*t)+b;}else if(t<(2/2.75)){return c*(7.5625*(t-=(1.5/2.75))*t+.75)+b;}else if(t<(2.5/2.75)){return c*(7.5625*(t-=(2.25/2.75))*t+.9375)+b;}else{return c*(7.5625*(t-=(2.625/2.75))*t+.984375)+b;}},easeInOutBounce:function(x,t,b,c,d){if(t<d/2)return jQuery.easing.easeInBounce(x,t*2,0,c,d)*.5+b;return jQuery.easing.easeOutBounce(x,t*2-d,0,c,d)*.5+c*.5+b;}});;(function($){$.fn.kwicks=function(n){var p={isVertical:false,sticky:false,defaultKwick:0,event:'mouseover',spacing:0,duration:500};var o=$.extend(p,n);var q=(o.isVertical?'height':'width');var r=(o.isVertical?'top':'left');return this.each(function(){container=$(this);var k=container.children('li');var l=k.eq(0).css(q).replace(/px/,'');if(!o.max){o.max=(l*k.size())-(o.min*(k.size()-1))}else{o.min=((l*k.size())-o.max)/(k.size()-1)}if(o.isVertical){container.css({width:k.eq(0).css('width'),height:(l*k.size())+(o.spacing*(k.size()-1))+'px'})}else{container.css({width:(l*k.size())+(o.spacing*(k.size()-1))+'px',height:k.eq(0).css('height')})}var m=[];for(i=0;i<k.size();i++){m[i]=[];for(j=1;j<k.size()-1;j++){if(i==j){m[i][j]=o.isVertical?j*o.min+(j*o.spacing):j*o.min+(j*o.spacing)}else{m[i][j]=(j<=i?(j*o.min):(j-1)*o.min+o.max)+(j*o.spacing)}}}k.each(function(i){var h=$(this);if(i===0){h.css(r,'0px')}else if(i==k.size()-1){h.css(o.isVertical?'bottom':'right','0px')}else{if(o.sticky){h.css(r,m[o.defaultKwick][i])}else{h.css(r,(i*l)+(i*o.spacing))}}if(o.sticky){if(o.defaultKwick==i){h.css(q,o.max+'px');h.addClass('active')}else{h.css(q,o.min+'px')}}h.css({margin:0,position:'absolute'});h.bind(o.event,function(){var c=[];var d=[];k.stop().removeClass('active');for(j=0;j<k.size();j++){c[j]=k.eq(j).css(q).replace(/px/,'');d[j]=k.eq(j).css(r).replace(/px/,'')}var e={};e[q]=o.max;var f=o.max-c[i];var g=c[i]/f;h.addClass('active').animate(e,{step:function(a){var b=f!=0?a/f-g:1;k.each(function(j){if(j!=i){k.eq(j).css(q,c[j]-((c[j]-o.min)*b)+'px')}if(j>0&&j<k.size()-1){k.eq(j).css(r,d[j]-((d[j]-m[i][j])*b)+'px')}})},duration:o.duration,easing:o.easing})})});if(!o.sticky){container.bind("mouseleave",function(){var c=[];var d=[];k.removeClass('active').stop();for(i=0;i<k.size();i++){c[i]=k.eq(i).css(q).replace(/px/,'');d[i]=k.eq(i).css(r).replace(/px/,'')}var e={};e[q]=l;var f=l-c[0];k.eq(0).animate(e,{step:function(a){var b=f!=0?(a-c[0])/f:1;for(i=1;i<k.size();i++){k.eq(i).css(q,c[i]-((c[i]-l)*b)+'px');if(i<k.size()-1){k.eq(i).css(r,d[i]-((d[i]-((i*l)+(i*o.spacing)))*b)+'px')}}},duration:o.duration,easing:o.easing})})}})}})(jQuery);;(function($){$.fn.lavaLamp=function(o){o=$.extend({fx:"linear",speed:500,click:function(){}},o||{});return this.each(function(){var b=$(this),noop=function(){},$back=$('<li class="back"><div class="left"></div></li>').appendTo(b),$li=$("li",this),curr=$("li.current_page_item",this)[0]||$($li[0]).addClass("current")[0];$li.not(".back").hover(function(){move(this)},noop);$(this).hover(noop,function(){move(curr)});$li.click(function(e){setCurr(this);return o.click.apply(this,[e,this])});setCurr(curr);function setCurr(a){$back.css({"left":a.offsetLeft+"px","width":a.offsetWidth+"px"});curr=a};function move(a){$back.each(function(){$(this).dequeue()}).animate({width:a.offsetWidth,left:a.offsetLeft},o.speed,o.fx)}})}})(jQuery);;var Cufon=(function(){var K=function(){return K.replace.apply(null,arguments)};var U=K.DOM={ready:(function(){var Z=false,b={loaded:1,complete:1};var Y=[],a=function(){if(Z){return}Z=true;for(var c;c=Y.shift();c()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",a,false);window.addEventListener("pageshow",a,false)}if(!window.opera&&document.readyState){(function(){b[document.readyState]?a():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");a()}catch(c){setTimeout(arguments.callee,1)}})()}O(window,"load",a);return function(c){if(!arguments.length){a()}else{Z?c():Y.push(c)}}})()};var L=K.CSS={Size:function(Z,Y){this.value=parseFloat(Z);this.unit=String(Z).match(/[a-z%]*$/)[0]||"px";this.convert=function(a){return a/Y*this.value};this.convertFrom=function(a){return a/this.value*Y};this.toString=function(){return this.value+this.unit}},getStyle:function(Z){var Y=document.defaultView;if(Y&&Y.getComputedStyle){return new A(Y.getComputedStyle(Z,null))}if(Z.currentStyle){return new A(Z.currentStyle)}return new A(Z.style)},ready:(function(){var a=false;var Z=[],b=function(){a=true;for(var d;d=Z.shift();d()){}};var Y=Object.prototype.propertyIsEnumerable?F("style"):{length:0};var c=F("link");U.ready(function(){var g=0,f;for(var e=0,d=c.length;f=c[e],e<d;++e){if(!f.disabled&&f.rel.toLowerCase()=="stylesheet"){++g}}if(document.styleSheets.length>=Y.length+g){b()}else{setTimeout(arguments.callee,10)}});return function(d){if(a){d()}else{Z.push(d)}}})(),supports:function(a,Z){var Y=document.createElement("span").style;if(Y[a]===undefined){return false}Y[a]=Z;return Y[a]===Z},textAlign:function(b,a,Y,Z){if(a.get("textAlign")=="right"){if(Y>0){b=" "+b}}else{if(Y<Z-1){b+=" "}}return b},textDecoration:function(d,c){if(!c){c=this.getStyle(d)}var Z={underline:null,overline:null,"line-through":null};for(var Y=d;Y.parentNode&&Y.parentNode.nodeType==1;){var b=true;for(var a in Z){if(Z[a]){continue}if(c.get("textDecoration").indexOf(a)!=-1){Z[a]=c.get("color")}b=false}if(b){break}c=this.getStyle(Y=Y.parentNode)}return Z},textShadow:I(function(c){if(c=="none"){return null}var b=[],d={},Y,Z=0;var a=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(Y=a.exec(c)){if(Y[0]==","){b.push(d);d={},Z=0}else{if(Y[1]){d.color=Y[1]}else{d[["offX","offY","blur"][Z++]]=Y[2]}}}b.push(d);return b}),color:I(function(Z){var Y={};Y.color=Z.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(b,a,c){Y.opacity=parseFloat(c);return"rgb("+a+")"});return Y}),textTransform:function(Z,Y){return Z[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[Y.get("textTransform")]||"toString"]()}};function Q(Z){var Y=this.face=Z.face;this.glyphs=Z.glyphs;this.w=Z.w;this.baseSize=parseInt(Y["units-per-em"],10);this.family=Y["font-family"].toLowerCase();this.weight=Y["font-weight"];this.style=Y["font-style"]||"normal";this.viewBox=(function(){var b=Y.bbox.split(/\s+/);var a={minX:parseInt(b[0],10),minY:parseInt(b[1],10),maxX:parseInt(b[2],10),maxY:parseInt(b[3],10)};a.width=a.maxX-a.minX,a.height=a.maxY-a.minY;a.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return a})();this.ascent=-parseInt(Y.ascent,10);this.descent=-parseInt(Y.descent,10);this.height=-this.ascent+this.descent}function E(){var Z={},Y={oblique:"italic",italic:"oblique"};this.add=function(a){(Z[a.style]||(Z[a.style]={}))[a.weight]=a};this.get=function(e,f){var d=Z[e]||Z[Y[e]]||Z.normal||Z.italic||Z.oblique;if(!d){return null}f={normal:400,bold:700}[f]||parseInt(f,10);if(d[f]){return d[f]}var b={1:1,99:0}[f%100],h=[],c,a;if(b===undefined){b=f>400}if(f==500){f=400}for(var g in d){g=parseInt(g,10);if(!c||g<c){c=g}if(!a||g>a){a=g}h.push(g)}if(f<c){f=c}if(f>a){f=a}h.sort(function(j,i){return(b?(j>f&&i>f)?j<i:j>i:(j<f&&i<f)?j>i:j<i)?-1:1});return d[h[0]]}}function P(){function a(c,d){if(c.contains){return c.contains(d)}return c.compareDocumentPosition(d)&16}function Y(d){var c=d.relatedTarget;if(!c||a(this,c)){return}Z(this)}function b(c){Z(this)}function Z(c){setTimeout(function(){K.replace(c,D.get(c).options,true)},10)}this.attach=function(c){if(c.onmouseenter===undefined){O(c,"mouseover",Y);O(c,"mouseout",Y)}else{O(c,"mouseenter",b);O(c,"mouseleave",b)}}}function X(){var a={},Y=0;function Z(b){return b.cufid||(b.cufid=++Y)}this.get=function(b){var c=Z(b);return a[c]||(a[c]={})}}function A(Y){var a={},Z={};this.get=function(b){return a[b]!=undefined?a[b]:Y[b]};this.getSize=function(c,b){return Z[c]||(Z[c]=new L.Size(this.get(c),b))};this.extend=function(b){for(var c in b){a[c]=b[c]}return this}}function O(Z,Y,a){if(Z.addEventListener){Z.addEventListener(Y,a,false)}else{if(Z.attachEvent){Z.attachEvent("on"+Y,function(){return a.call(Z,window.event)})}}}function R(Z,Y){var a=D.get(Z);if(a.options){return Z}if(Y.hover&&Y.hoverables[Z.nodeName.toLowerCase()]){B.attach(Z)}a.options=Y;return Z}function I(Y){var Z={};return function(a){if(!Z.hasOwnProperty(a)){Z[a]=Y.apply(null,arguments)}return Z[a]}}function C(d,c){if(!c){c=L.getStyle(d)}var Z=c.get("fontFamily").split(/\s*,\s*/),b;for(var a=0,Y=Z.length;a<Y;++a){b=Z[a].replace(/^(["'])(.*?)\1$/,"$2").toLowerCase();if(H[b]){return H[b].get(c.get("fontStyle"),c.get("fontWeight"))}}return null}function F(Y){return document.getElementsByTagName(Y)}function G(){var Y={},b;for(var a=0,Z=arguments.length;a<Z;++a){for(b in arguments[a]){Y[b]=arguments[a][b]}}return Y}function M(b,k,Z,m,c,a){var j=m.separate;if(j=="none"){return W[m.engine].apply(null,arguments)}var h=document.createDocumentFragment(),e;var f=k.split(N[j]),Y=(j=="words");if(Y&&S){if(/^\s/.test(k)){f.unshift("")}if(/\s$/.test(k)){f.push("")}}for(var g=0,d=f.length;g<d;++g){e=W[m.engine](b,Y?L.textAlign(f[g],Z,g,d):f[g],Z,m,c,a,g<d-1);if(e){h.appendChild(e)}}return h}function J(Z,g){var a,Y,d,f;for(var b=R(Z,g).firstChild;b;b=d){d=b.nextSibling;f=false;if(b.nodeType==1){if(!b.firstChild){continue}if(!/cufon/.test(b.className)){arguments.callee(b,g);continue}else{f=true}}if(!Y){Y=L.getStyle(Z).extend(g)}if(!a){a=C(Z,Y)}if(!a){continue}if(f){W[g.engine](a,null,Y,g,b,Z);continue}var e=b.data;if(e===""){continue}var c=M(a,e,Y,g,b,Z);if(c){b.parentNode.replaceChild(c,b)}else{b.parentNode.removeChild(b)}}}var S=" ".split(/\s+/).length==0;var D=new X();var B=new P();var V=[];var W={},H={},T={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||window.jQuery||(window.dojo&&dojo.query)||(window.$$&&function(Y){return $$(Y)})||(window.$&&function(Y){return $(Y)})||(document.querySelectorAll&&function(Y){return document.querySelectorAll(Y)})||F),separate:"words",textShadow:"none"};var N={words:/\s+/,characters:""};K.now=function(){U.ready();return K};K.refresh=function(){var a=V.splice(0,V.length);for(var Z=0,Y=a.length;Z<Y;++Z){K.replace.apply(null,a[Z])}return K};K.registerEngine=function(Z,Y){if(!Y){return K}W[Z]=Y;return K.set("engine",Z)};K.registerFont=function(a){var Y=new Q(a),Z=Y.family;if(!H[Z]){H[Z]=new E()}H[Z].add(Y);return K.set("fontFamily",Z)};K.replace=function(a,Z,Y){Z=G(T,Z);if(!Z.engine){return K}if(typeof Z.textShadow=="string"){Z.textShadow=L.textShadow(Z.textShadow)}if(!Y){V.push(arguments)}if(a.nodeType||typeof a=="string"){a=[a]}L.ready(function(){for(var c=0,b=a.length;c<b;++c){var d=a[c];if(typeof d=="string"){K.replace(Z.selector(d),Z,true)}else{J(d,Z)}}});return K};K.set=function(Y,Z){T[Y]=Z;return K};return K})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return null}B=null;var A=Cufon.CSS.supports("display","inline-block");var E=!A&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var F=document.createElement("style");F.type="text/css";F.appendChild(document.createTextNode("@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle"+(E?"":";font-size:1px;line-height:1px")+"}.cufon-canvas .cufon-alt{position:absolute;left:-10000in;font-size:1px}"+(A?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(q,T,k,P,X,r){var I=(T===null);var V=q.viewBox;var J=k.getSize("fontSize",q.baseSize);var h=k.get("letterSpacing");h=(h=="normal")?0:J.convertFrom(parseInt(h,10));var W=0,j=0,f=0,R=0;var U=P.textShadow,d=[];if(U){for(var p=0,m=U.length;p<m;++p){var Z=U[p];var c=J.convertFrom(parseFloat(Z.offX));var b=J.convertFrom(parseFloat(Z.offY));d[p]=[c,b];if(b<W){W=b}if(c>j){j=c}if(b>f){f=b}if(c<R){R=c}}}var u=Cufon.CSS.textTransform(I?X.alt:T,k).split("");var G=0,S=null;for(var p=0,m=u.length;p<m;++p){var Q=q.glyphs[u[p]]||q.missingGlyph;if(!Q){continue}G+=S=Number(Q.w||q.w)+h}if(S===null){return null}j+=(V.width-S);R+=V.minX;var O,K;if(I){O=X;K=X.firstChild}else{O=document.createElement("span");O.className="cufon cufon-canvas";O.alt=T;K=document.createElement("canvas");O.appendChild(K);if(P.printable){var n=document.createElement("span");n.className="cufon-alt";n.appendChild(document.createTextNode(T));O.appendChild(n)}}var v=O.style;var a=K.style;var H=J.convert(V.height-W+f);var t=Math.ceil(H);var e=t/H;K.width=Math.ceil(J.convert(G+j-R)*e);K.height=t;W+=V.minY;a.top=Math.round(J.convert(W-q.ascent))+"px";a.left=Math.round(J.convert(R))+"px";var N=Math.ceil(J.convert(G*e))+"px";if(A){v.width=N;v.height=J.convert(q.height)+"px"}else{v.paddingLeft=N;v.paddingBottom=(J.convert(q.height)-1)+"px"}var s=K.getContext("2d"),Y=t/V.height;s.scale(Y,Y);s.translate(-R,-W);s.lineWidth=q.face["underline-thickness"];s.save();function L(i,g){s.strokeStyle=g;s.beginPath();s.moveTo(0,i);s.lineTo(G,i);s.stroke()}var M=P.enableTextDecoration?Cufon.CSS.textDecoration(r,k):{};if(M.underline){L(-q.face["underline-position"],M.underline)}if(M.overline){L(q.ascent,M.overline)}s.fillStyle=k.get("color");function o(){for(var w=0,g=u.length;w<g;++w){var x=q.glyphs[u[w]]||q.missingGlyph;if(!x){continue}s.beginPath();if(x.d){if(x.code){C(x.code,s)}else{x.code=D("m"+x.d,s)}}s.fill();s.translate(Number(x.w||q.w)+h,0)}}if(U){for(var p=0,m=U.length;p<m;++p){var Z=U[p];s.save();s.fillStyle=Z.color;s.translate.apply(s,d[p]);o();s.restore()}}o();s.restore();if(M["line-through"]){L(-q.descent,M["line-through"])}return O}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}document.write('<!--[if vml]><script type="text/javascript">Cufon.vmlEnabled=true;<\/script><![endif]-->');if(!Cufon.vmlEnabled){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml");document.write('<style type="text/css">@media screen{cvml\\:shape,cvml\\:group,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute}.cufon-vml-canvas{position:absolute;text-align:left}.cufon-vml{display:inline-block;position:relative;vertical-align:middle}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none}.cufon-vml .cufon-alt{display:inline}}</style>')}function B(C,D){return A(C,/(?:em|ex|%)$/i.test(D)?"1em":D)}function A(F,G){if(/px$/i.test(G)){return parseFloat(G)}var E=F.style.left,D=F.runtimeStyle.left;F.runtimeStyle.left=F.currentStyle.left;F.style.left=G;var C=F.style.pixelLeft;F.style.left=E;F.runtimeStyle.left=D;return C}return function(r,U,m,R,Y,s,h){var F=(U===null);if(F){U=Y.alt}var W=r.viewBox;var G=m.computedFontSize||(m.computedFontSize=new Cufon.CSS.Size(B(s,m.get("fontSize"))+"px",r.baseSize));var g=m.computedLSpacing;if(g==undefined){g=m.get("letterSpacing");m.computedLSpacing=g=(g=="normal")?0:G.convertFrom(A(s,g))}var O,H;if(F){O=Y;H=Y.firstChild}else{O=document.createElement("span");O.className="cufon cufon-vml";O.alt=U;H=document.createElement("span");H.className="cufon-vml-canvas";O.appendChild(H);if(R.printable){var p=document.createElement("span");p.className="cufon-alt";p.appendChild(document.createTextNode(U));O.appendChild(p)}if(!h){O.appendChild(document.createElement("cvml:group"))}}var x=O.style;var b=H.style;var D=G.convert(W.height),u=Math.ceil(D);var f=u/D;var e=W.minX,d=W.minY;b.height=u;b.top=Math.round(G.convert(d-r.ascent));b.left=Math.round(G.convert(e));x.height=G.convert(r.height)+"px";var K=R.enableTextDecoration?Cufon.CSS.textDecoration(s,m):{};var T=m.get("color");var v=Cufon.CSS.textTransform(U,m).split("");var C=0,c=0,L=null;var S,M,V=R.textShadow;for(var q=0,o=0,n=v.length;q<n;++q){S=r.glyphs[v[q]]||r.missingGlyph;if(S){C+=L=~~(S.w||r.w)+g}}if(L===null){return null}var N=-e+C+(W.width-L);var w=G.convert(N*f),j=Math.round(w);var a=N+","+W.height,E;var X="r"+a+"nsnf";for(q=0;q<n;++q){S=r.glyphs[v[q]]||r.missingGlyph;if(!S){continue}if(F){M=H.childNodes[o];if(M.firstChild){M.removeChild(M.firstChild)}}else{M=document.createElement("cvml:shape");H.appendChild(M)}M.stroked="f";M.coordsize=a;M.coordorigin=E=(e-c)+","+d;M.path=(S.d?"m"+S.d+"xe":"")+"m"+E+X;M.fillcolor=T;var t=M.style;t.width=j;t.height=u;if(V){var J=V[0],I=V[1];var Q=Cufon.CSS.color(J.color),P;var Z=document.createElement("cvml:shadow");Z.on="t";Z.color=Q.color;Z.offset=J.offX+","+J.offY;if(I){P=Cufon.CSS.color(I.color);Z.type="double";Z.color2=P.color;Z.offset2=I.offX+","+I.offY}Z.opacity=Q.opacity||(P&&P.opacity)||1;M.appendChild(Z)}c+=~~(S.w||r.w)+g;++o}x.width=Math.max(Math.ceil(G.convert(C*f)),0);return O}})());;Cufon.registerFont({"w":141,"face":{"font-family":"GeosansLight","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 2 0 0 2 0 3","ascent":"288","descent":"-72","x-height":"3","bbox":"-14 -325 391 76","underline-thickness":"6.84","underline-position":"-51.12","unicode-range":"U+0005-U+E00B"},"glyphs":{"\r":{"d":"41,0r0,-149r-15,0r0,149r15,0","w":66}," ":{"w":91},"!":{"d":"44,-53r0,-204r-14,0r0,204r14,0xm50,-12v-1,-8,-6,-12,-13,-12v-9,1,-13,5,-13,12v0,9,4,13,13,13v9,0,13,-5,13,-13","w":73},"\"":{"d":"77,-262r-15,0r4,58r7,0xm37,-262r-15,0r4,58r7,0","w":97},"#":{"d":"188,-186r-47,0r11,-45r-9,0r-11,45r-50,0r11,-45r-9,0r-11,45r-50,0r-3,9r51,0r-11,41r-46,0r-2,9r46,0r-10,46r8,0r11,-46r51,0r-12,47r9,0r11,-47r49,0r2,-9r-48,0r10,-41r46,0xm130,-177r-10,41r-51,0r10,-41r51,0","w":194},"$":{"d":"98,3v41,0,63,-31,63,-73v0,-34,-21,-58,-63,-75r0,-99v18,3,31,11,38,25r14,-6v-11,-22,-28,-33,-52,-33r0,-19r-14,0r0,19v-33,0,-58,26,-57,59v1,40,22,52,57,64r0,123v-29,0,-48,-15,-56,-46r-15,5v7,33,33,56,71,56r0,19r14,0r0,-19xm84,-150v-51,-8,-57,-88,0,-94r0,94xm98,-129v47,16,60,59,37,99v-8,12,-20,18,-37,18r0,-117","w":170},"%":{"d":"60,-162v23,0,46,-19,45,-44v1,-24,-21,-46,-45,-45v-24,-1,-46,22,-45,45v0,23,22,45,45,44xm176,-257r-14,0r-140,257r15,0xm132,3v23,1,46,-20,45,-44v1,-25,-21,-46,-45,-45v-24,-1,-46,21,-45,45v0,21,22,45,45,44xm60,-236v15,-1,31,15,30,30v1,15,-16,31,-30,30v-15,1,-31,-15,-30,-30v-1,-15,15,-31,30,-30xm132,-72v16,0,31,14,30,31v0,14,-15,30,-30,29v-15,0,-30,-14,-30,-29v-1,-17,14,-31,30,-31","w":191},"&":{"d":"42,-112v-47,35,-34,114,30,113v25,0,52,-11,81,-35r23,34r17,0r-28,-43r38,-31r-8,-10r-38,30r-56,-85v21,-15,61,-38,58,-65v0,-33,-22,-50,-55,-50v-47,-3,-68,59,-36,91r14,22xm104,-241v47,-6,53,58,17,73r-27,19v-9,-19,-26,-29,-28,-55v-1,-20,19,-37,38,-37xm146,-45v-27,33,-115,53,-118,-10v1,-34,34,-58,61,-76","w":216},"'":{"d":"37,-257r-15,0r4,57r7,0","w":59},"(":{"d":"41,-271v-37,91,-33,211,0,293r12,0v-37,-89,-32,-208,0,-293r-12,0","w":66},")":{"d":"32,22v37,-88,34,-210,0,-293r-13,0v37,92,33,209,0,293r13,0","w":69},"*":{"d":"98,-201v0,-13,-25,-20,-43,-22v16,-3,60,-19,35,-31v-12,2,-24,12,-37,27v5,-11,16,-46,-2,-49v-17,5,-5,36,-2,49v-10,-8,-21,-27,-36,-27v-15,7,-9,19,9,24v8,3,17,5,26,7v-29,7,-43,14,-43,22v11,24,34,-11,44,-18v-3,13,-7,18,-8,35v0,9,4,14,10,13v17,-4,5,-36,2,-48v10,8,22,25,37,26v6,0,8,-2,8,-8","w":104},"+":{"d":"114,-88r0,-15r-37,0r0,-36r-17,0r0,36r-36,0r0,15r36,0r0,37r17,0r0,-37r37,0","w":136},",":{"d":"56,-19r-13,-6r-26,59r4,3","w":64},"-":{"d":"82,-88r0,-15r-76,0r0,15r76,0","w":97},".":{"d":"18,-22v-17,2,-13,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12","w":40},"\/":{"d":"98,-262r-14,0r-76,262r15,0","w":103},"0":{"d":"101,4v61,0,96,-66,94,-135v1,-66,-33,-136,-94,-134v-62,-1,-95,68,-95,134v0,67,33,136,95,135xm101,-251v106,0,106,239,0,239v-52,2,-80,-60,-79,-119v-1,-59,28,-119,79,-120","w":200},"1":{"d":"121,0r0,-257r-49,0r-9,15r43,0r0,242r15,0","w":196},"2":{"d":"44,-198v7,-65,120,-59,119,7v0,16,-5,31,-15,45r-126,146r155,0r0,-15r-123,0r100,-114v48,-50,19,-133,-51,-130v-38,-2,-71,29,-76,61r17,0","w":196},"3":{"d":"97,2v41,0,75,-29,74,-71v0,-36,-17,-60,-51,-70v81,-14,51,-131,-21,-124v-38,0,-65,25,-69,60r17,0v6,-30,24,-45,52,-45v30,0,52,22,52,51v0,36,-26,51,-65,48r0,21v41,-4,68,22,68,59v1,30,-27,58,-57,56v-26,0,-49,-21,-55,-41r-15,0v7,32,32,56,70,56","w":196},"4":{"d":"194,-49r0,-14r-30,0r0,-198r-147,212r132,0r0,49r15,0r0,-49r30,0xm149,-63r-106,0r106,-152r0,152","w":196},"5":{"d":"94,4v54,1,92,-42,91,-96v1,-60,-56,-100,-121,-84r16,-66r87,0r0,-15r-99,0r-26,100v60,-22,130,4,128,65v1,45,-33,82,-76,81v-39,0,-57,-17,-71,-45r-13,6v15,36,43,54,84,54","w":196},"6":{"d":"99,6v76,6,118,-99,63,-151v-25,-29,-78,-34,-110,-12r55,-100r-17,0v-25,60,-73,97,-80,175v0,50,36,90,89,88xm99,-156v39,-2,75,36,74,74v1,41,-34,75,-74,74v-41,1,-75,-32,-74,-74v-1,-41,33,-75,74,-74","w":196},"7":{"d":"192,-257r-181,0r0,15r154,0r-156,236r12,10","w":196},"8":{"d":"99,5v42,1,76,-31,75,-73v0,-35,-21,-58,-50,-68v24,-7,40,-31,41,-59v0,-39,-27,-66,-67,-66v-72,-7,-87,108,-26,125v-27,10,-48,32,-48,68v-1,42,32,74,75,73xm98,-247v30,-1,52,23,52,52v-1,30,-21,52,-52,53v-65,0,-66,-107,0,-105xm98,-130v34,2,60,28,61,62v0,33,-26,59,-61,58v-32,1,-61,-26,-60,-58v0,-33,27,-60,60,-62","w":196},"9":{"d":"99,-259v-77,-5,-117,100,-63,152v25,29,77,31,110,12r-51,92r14,7r70,-128v27,-63,-11,-138,-80,-135xm99,-244v41,-1,75,32,74,74v1,41,-33,74,-74,74v-41,1,-75,-34,-74,-74v-1,-41,33,-75,74,-74","w":196},":":{"d":"30,-128v-17,2,-13,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm30,-22v-17,2,-13,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12","w":58},";":{"d":"37,-128v-17,2,-14,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm54,-19r-13,-6r-26,59r4,3","w":73},"<":{"d":"102,-40r0,-16r-64,-39r64,-39r0,-16r-90,55","w":113},"=":{"d":"95,-110r0,-15r-82,0r0,15r82,0xm95,-66r0,-14r-82,0r0,14r82,0","w":106},">":{"d":"107,-95r-90,-55r0,16r63,39r-63,39r0,16","w":113},"?":{"d":"105,-77v-13,11,-45,10,-44,-12v10,-54,95,-55,95,-117v1,-35,-30,-55,-67,-55v-35,0,-59,16,-72,48r13,6v13,-24,28,-38,59,-39v50,-5,70,55,29,79v-20,21,-73,42,-73,78v-3,34,48,44,69,23xm93,-12v0,-8,-5,-12,-12,-12v-19,0,-14,26,0,25v8,0,12,-4,12,-13","w":168},"@":{"d":"163,-19v27,0,40,-27,40,-56v1,-50,-44,-89,-95,-88v-53,-2,-97,41,-96,92v-8,81,101,121,161,71r-7,-7v-47,44,-153,12,-144,-64v-1,-46,38,-84,86,-83v45,-1,87,34,86,79v0,22,-12,46,-30,46v-30,-7,-9,-56,-11,-83r-9,0r-1,19v-19,-40,-93,-18,-87,28v-7,49,65,61,83,25v2,11,10,21,24,21xm105,-105v20,0,33,14,33,34v0,25,-14,42,-40,42v-22,0,-32,-12,-32,-36v-1,-22,18,-40,39,-40","w":214},"A":{"d":"217,0r-103,-265r-103,265r15,0r29,-77r117,0r30,77r15,0xm166,-92r-105,0r53,-136","w":227},"B":{"d":"108,0v43,0,81,-30,80,-75v0,-39,-26,-64,-59,-71v50,-28,26,-121,-39,-111r-63,0r0,257r81,0xm42,-242v50,-2,100,-2,99,47v1,47,-49,49,-99,46r0,-93xm42,-134v65,-4,132,-1,132,59v0,60,-66,64,-132,60r0,-119","w":201},"C":{"d":"18,-129v-12,113,142,174,222,101r0,-17v-27,21,-48,33,-90,34v-67,1,-118,-50,-117,-118v-1,-67,50,-118,117,-117v36,-1,69,13,90,31r0,-18v-22,-19,-52,-27,-90,-28v-77,-1,-133,57,-132,132","w":252},"D":{"d":"113,0v68,1,117,-58,115,-129v1,-69,-47,-129,-115,-128r-86,0r0,257r86,0xm113,-243v60,-1,101,52,100,114v3,63,-42,114,-100,114r-71,0r0,-228r71,0","w":247},"E":{"d":"149,0r0,-15r-109,0r0,-118r109,0r0,-16r-109,0r0,-93r109,0r0,-15r-123,0r0,257r123,0","w":170},"F":{"d":"139,-134r0,-15r-97,0r0,-93r97,0r0,-15r-112,0r0,257r15,0r0,-134r97,0","w":155},"G":{"d":"18,-129v-2,77,56,134,132,133v75,2,133,-55,133,-128r-102,0r0,15r85,0v-6,55,-56,100,-116,98v-67,1,-120,-51,-118,-118v-1,-64,51,-119,118,-117v42,0,74,16,97,47r12,-9v-27,-35,-63,-53,-109,-53v-74,-1,-134,57,-132,132","w":295},"H":{"d":"198,0r0,-257r-15,0r0,108r-141,0r0,-108r-15,0r0,257r15,0r0,-134r141,0r0,134r15,0","w":221},"I":{"d":"42,0r0,-257r-14,0r0,257r14,0","w":69},"J":{"d":"92,-51r0,-206r-15,0r0,205v4,44,-38,51,-54,24r-12,7v20,40,88,29,81,-30","w":113},"K":{"d":"185,0r-134,-134r123,-123r-21,0r-114,114r0,-114r-15,0r0,257r15,0v2,-40,-4,-88,2,-124r124,124r20,0","w":188},"L":{"d":"114,0r0,-15r-72,0r0,-242r-15,0r0,257r87,0","w":128},"M":{"d":"317,0r-67,-265r-87,230r-88,-230r-67,265r15,0r55,-216r85,222r84,-222r55,216r15,0","w":324},"N":{"d":"234,4r0,-261r-14,0r0,223r-192,-225r0,259r14,0r0,-218","w":257},"O":{"d":"150,4v77,1,134,-56,133,-133v1,-76,-57,-133,-133,-132v-77,-1,-133,57,-132,132v-2,77,56,134,132,133xm150,-246v68,-1,119,50,118,117v1,69,-50,119,-118,118v-67,1,-118,-50,-117,-118v-1,-67,50,-118,117,-117","w":295},"P":{"d":"42,-129v63,5,117,-7,118,-64v1,-63,-65,-69,-133,-64r0,257r15,0r0,-129xm42,-242v52,-3,105,-1,103,49v1,48,-50,54,-103,50r0,-99","w":176},"Q":{"d":"153,4v77,1,133,-57,132,-133v2,-75,-56,-133,-132,-132v-77,-1,-133,57,-132,132v-1,77,55,134,132,133xm153,-246v68,-1,119,50,118,117v1,69,-50,119,-118,118v-67,1,-119,-49,-117,-118v-1,-67,49,-118,117,-117xm229,35r0,-15r-76,0r0,15r76,0","w":295},"R":{"d":"157,-193v1,-64,-63,-68,-130,-64r0,257r15,0r0,-129r27,0r82,129r17,0r-82,-129v45,0,70,-20,71,-64xm42,-242v51,-2,100,-2,100,48v2,52,-47,54,-100,51r0,-99","w":174},"S":{"d":"90,3v86,8,95,-105,34,-136v-30,-16,-81,-26,-81,-66v-3,-52,83,-58,101,-20r14,-6v-25,-52,-133,-40,-130,26v-2,76,122,55,122,132v0,36,-24,56,-60,55v-32,0,-52,-15,-61,-46r-15,5v12,37,37,56,76,56","w":179},"T":{"d":"145,-242r0,-15r-129,0r0,15r57,0r0,242r15,0r0,-242r57,0","w":158},"U":{"d":"102,3v42,1,75,-27,74,-67r0,-193r-14,0r0,193v1,31,-29,52,-60,52v-34,0,-60,-20,-60,-52r0,-193r-15,0r0,193v0,41,33,68,75,67","w":199},"V":{"d":"179,-257r-16,0r-67,212r-68,-212r-15,0r83,261","w":189},"W":{"d":"306,-257r-15,0r-67,210r-65,-215r-65,215r-67,-210r-15,0r83,261r64,-216r64,216","w":315},"X":{"d":"181,0r-75,-132r71,-125r-17,0r-64,111r-63,-111r-17,0r71,124r-75,133r16,0r68,-119r69,119r16,0","w":190},"Y":{"d":"173,-257r-17,0r-64,111r-63,-111r-17,0r73,128r0,129r15,0r0,-129","w":183},"Z":{"d":"188,-257r-165,0r0,15r138,0r-147,242r173,0r0,-15r-147,0","w":199},"[":{"d":"61,17r0,-13r-25,0r0,-263r24,0r0,-13r-39,0r0,289r40,0","w":77},"\\":{"d":"96,0r-73,-257r-15,0r74,257r14,0","w":101},"]":{"d":"62,17r0,-289r-39,0r0,13r25,0r0,263r-26,0r0,13r40,0","w":77},"^":{"d":"114,-136r-44,-101r-12,0r-43,101r9,0r40,-74r40,74r10,0","w":126},"_":{"d":"132,76r0,-13r-132,0r0,13r132,0","w":128},"`":{"d":"89,-177r-48,-48r-8,8r47,48","w":119},"a":{"d":"13,-74v-4,70,95,106,136,48r0,26r14,0r0,-149r-14,0r0,26v-42,-55,-141,-22,-136,49xm89,-136v34,-1,63,29,63,62v0,33,-28,63,-63,62v-33,1,-63,-29,-62,-62v-1,-33,29,-63,62,-62","w":183},"b":{"d":"35,-27v39,58,141,24,137,-47v5,-71,-98,-106,-137,-47r0,-145r-15,0r0,266r15,0r0,-27xm95,-136v33,-1,64,29,63,62v1,33,-29,63,-63,62v-33,1,-63,-29,-62,-62v-1,-33,29,-63,62,-62","w":186},"c":{"d":"17,-74v0,61,70,99,122,64r0,-19v-39,37,-108,10,-108,-45v0,-56,67,-81,108,-47r0,-17v-49,-34,-122,3,-122,64","w":157},"d":{"d":"15,-74v-4,70,98,106,138,47r0,27r14,0r0,-266r-14,0r0,144v-42,-56,-141,-24,-138,48xm92,-136v33,-1,63,29,62,62v1,33,-29,63,-62,62v-33,1,-63,-29,-62,-62v-1,-33,29,-63,62,-62","w":187},"e":{"d":"144,-43v-25,55,-127,32,-117,-34r139,0v1,-43,-33,-75,-77,-74v-43,-1,-78,34,-77,77v-1,51,48,91,102,73v20,-6,34,-18,44,-36xm149,-91r-120,0v11,-64,112,-57,120,0","w":176},"f":{"d":"90,-249r0,-15v-25,-9,-58,0,-54,31r0,84r-21,0r0,15r21,0r0,134r14,0r0,-134r36,0r0,-15r-36,0r0,-80v-2,-25,22,-28,40,-20","w":97},"g":{"d":"90,70v43,1,74,-30,73,-73r0,-146r-14,0r0,26v-42,-55,-141,-22,-136,49v-4,70,95,106,136,48v4,49,-13,82,-59,81v-28,0,-53,-11,-58,-33r-14,0v8,32,32,48,72,48xm89,-136v34,-1,63,29,63,62v0,33,-28,63,-63,62v-33,1,-63,-29,-62,-62v-1,-33,29,-63,62,-62","w":183},"h":{"d":"41,0v3,-58,-18,-139,45,-136v62,-4,40,81,44,136r14,0v-2,-67,17,-157,-58,-151v-21,0,-36,7,-45,22r0,-137r-14,0r0,266r14,0","w":164},"i":{"d":"34,-199v-17,0,-14,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm41,0r0,-149r-15,0r0,149r15,0","w":66},"j":{"d":"34,-199v-17,0,-14,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm41,65r0,-214r-14,0r0,214r14,0","w":66},"k":{"d":"144,0r-87,-87r67,-67r-21,0r-64,64r0,-176r-15,0r0,266r15,0r0,-69r8,-8r78,77r19,0","w":150},"l":{"d":"42,0r0,-266r-14,0r0,266r14,0","w":69},"m":{"d":"158,-136v56,0,29,85,35,136r15,0v-3,-63,19,-154,-50,-151v-19,0,-33,8,-42,24v-12,-28,-62,-33,-77,-7r0,-15r-15,0r0,149r15,0v6,-51,-20,-135,34,-136v55,0,29,85,35,136r15,0v7,-50,-23,-137,35,-136","w":231},"n":{"d":"39,0v4,-55,-19,-138,42,-136v61,-3,39,81,43,136r15,0v-2,-68,16,-154,-58,-150v-21,0,-36,6,-42,19r0,-18r-15,0r0,149r15,0","w":162},"o":{"d":"89,3v42,1,78,-35,77,-77v1,-43,-34,-78,-77,-77v-41,-1,-78,35,-76,77v-2,42,35,78,76,77xm89,-137v34,-1,64,28,63,63v0,33,-28,63,-63,62v-33,1,-63,-29,-62,-62v-1,-33,29,-64,62,-63","w":179},"p":{"d":"38,-28v39,59,141,26,138,-46v4,-71,-99,-106,-138,-47r0,-28r-15,0r0,219r15,0r0,-98xm99,-136v33,-1,63,29,62,62v1,33,-29,63,-62,62v-33,1,-63,-29,-62,-62v-1,-33,29,-63,62,-62","w":184},"q":{"d":"11,-74v-5,70,97,106,137,47r0,97r15,0r0,-219r-15,0r0,27v-41,-56,-141,-23,-137,48xm87,-136v34,-1,64,29,63,62v1,33,-29,63,-63,62v-33,1,-63,-29,-62,-62v-1,-33,29,-63,62,-62","w":180},"r":{"d":"39,-98v-2,-31,33,-49,55,-29r8,-12v-18,-17,-55,-13,-63,10r0,-20r-15,0r0,149r15,0r0,-98","w":111},"s":{"d":"10,-28v19,44,101,41,101,-13v4,-48,-70,-35,-76,-73v-2,-29,44,-26,57,-10r11,-10v-24,-28,-83,-20,-83,20v-3,48,72,31,76,73v2,42,-65,33,-73,5","w":119},"t":{"d":"81,-134r0,-15r-35,0r0,-65r-15,0r0,65r-20,0r0,15r20,0r0,134r15,0r0,-134r35,0","w":90},"u":{"d":"77,3v71,3,55,-85,56,-152r-15,0v-5,54,20,140,-41,137v-61,3,-34,-83,-40,-137r-15,0v1,67,-15,156,55,152","w":154},"v":{"d":"150,-149r-16,0r-54,119r-54,-119r-16,0r70,155","w":156},"w":{"d":"238,-149r-17,0r-49,115r-48,-119r-48,120r-50,-116r-16,0r67,155r47,-118r47,118","w":246},"x":{"d":"125,0r-50,-75r49,-74r-17,0r-41,62r-42,-62r-17,0r50,74r-51,75r17,0r43,-62r42,62r17,0","w":129},"y":{"d":"152,-149r-16,0r-55,118r-55,-118r-16,0r63,135r-39,84r17,0","w":160},"z":{"d":"153,-149r-130,0r0,14r100,0r-106,135r134,0r0,-15r-104,0","w":164},"{":{"d":"3,-128v34,22,-1,106,27,138v5,6,18,8,34,8r0,-13v-65,5,-7,-99,-46,-133v38,-22,-19,-128,46,-129r0,-13v-80,-10,-18,104,-61,142","w":69},"|":{"d":"32,17r0,-289r-13,0r0,289r13,0","w":47},"}":{"d":"5,18v85,9,17,-123,62,-146v-47,-22,25,-142,-61,-142r0,13v62,-4,6,99,46,129v-25,23,-12,63,-15,104v0,25,-7,29,-32,29r0,13","w":69},"~":{"d":"145,-129r-12,-10v-24,28,-52,-1,-80,-4v-16,0,-30,6,-42,18v15,24,32,-19,57,0v22,15,57,21,77,-4","w":154},"\u201a":{"d":"28,12v24,0,11,-38,14,-60r-19,0r0,26r12,0v0,15,1,26,-7,34","w":56},"\u0192":{"d":"12,-211v-2,25,36,41,51,20r0,191r87,0r0,-15r-72,0r0,-242r-15,0r0,27v-15,-20,-52,-6,-51,19xm19,-211v-1,-25,40,-29,44,-4v2,16,-9,26,-22,26v-11,1,-23,-11,-22,-22xm53,-205v-1,-10,-15,-10,-16,0v0,4,4,8,8,8v4,0,8,-4,8,-8xm171,-181v15,1,31,-15,30,-30v0,-15,-15,-29,-30,-29v-15,0,-30,14,-30,29v-1,15,15,31,30,30xm171,-233v11,0,22,11,22,22v0,11,-10,23,-22,22v-12,1,-22,-11,-22,-22v0,-11,11,-22,22,-22xm183,-204v-1,-10,-15,-10,-16,0v0,4,4,8,8,8v4,0,8,-4,8,-8xm128,54r-6,-8v-18,18,-46,16,-64,-1r-7,9v18,20,60,20,77,0","w":213},"\u201e":{"d":"78,12v11,-14,4,-39,6,-60r-19,0r0,26r12,0v0,14,2,26,-6,34r7,0xm29,12v24,0,11,-38,14,-60r-19,0r0,26r12,0v0,15,1,26,-7,34","w":108},"\u2026":{"d":"10,-22v-15,2,-13,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm62,-22v-17,2,-14,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm113,-22v-17,2,-13,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12","w":150},"\u2020":{"d":"74,-197r0,-10r-24,0r0,-58r-10,0r0,58r-25,0r0,10r25,0r0,142r10,0r0,-142r24,0","w":88},"\u2021":{"d":"76,-131r0,-10r-24,0r0,-54r24,0r0,-10r-24,0r0,-60r-10,0r0,60r-24,0r0,10r24,0r0,54r-24,0r0,10r24,0r0,107r10,0r0,-107r24,0","w":88},"\u02c6":{"d":"112,-179r-43,-43r-43,43r7,8r36,-35r36,35","w":136},"\u2030":{"d":"242,3v24,1,46,-20,45,-44v1,-25,-20,-46,-45,-45v-24,-1,-45,22,-44,45v-2,21,22,45,44,44xm62,-162v24,0,46,-19,45,-44v1,-24,-20,-46,-45,-45v-24,-1,-45,22,-44,45v-2,23,22,45,44,44xm215,-257r-18,0r-189,257r18,0xm134,3v24,1,46,-20,45,-44v1,-25,-20,-46,-45,-45v-24,-1,-45,22,-44,45v-2,21,22,45,44,44xm242,-72v16,0,32,14,31,31v0,36,-63,37,-61,0v-1,-17,14,-31,30,-31xm62,-236v16,-1,32,14,31,30v1,16,-17,31,-31,30v-15,1,-31,-15,-30,-30v-1,-15,15,-31,30,-30xm134,-72v16,0,32,14,31,31v0,36,-63,37,-61,0v-1,-17,14,-31,30,-31","w":297},"\u0160":{"d":"138,-309r-7,-8r-36,35r-36,-35r-8,8r44,43xm90,3v86,8,95,-105,34,-136v-30,-16,-81,-26,-81,-66v-3,-52,83,-58,101,-20r14,-6v-25,-52,-133,-40,-130,26v-2,76,122,55,122,132v0,36,-24,56,-60,55v-32,0,-52,-15,-61,-46r-15,5v12,37,37,56,76,56","w":179},"\u2039":{"d":"85,-152r-8,-8r-68,68r67,67r7,-8r-59,-59","w":101},"\u0152":{"d":"150,4v58,0,97,-28,118,-68r0,64r123,0r0,-15r-108,0r0,-118r108,0r0,-16r-108,0r0,-93r108,0r0,-15r-123,0r0,64v-20,-40,-62,-67,-118,-68v-77,-1,-133,57,-132,132v-2,77,56,134,132,133xm150,-246v68,-1,119,50,118,117v1,69,-50,119,-118,118v-67,1,-118,-50,-117,-118v-1,-67,50,-118,117,-117","w":413},"\u2018":{"d":"40,-203r0,-26r-12,0v0,-14,-1,-25,6,-33v-23,-1,-9,38,-13,59r19,0","w":58},"\u2019":{"d":"28,-206v26,-3,10,-38,14,-59r-19,0r0,26r12,0v0,14,1,27,-7,33","w":56},"\u201c":{"d":"82,-203r0,-26r-11,0v0,-14,-1,-25,6,-33v-24,-1,-11,38,-14,59r19,0xm41,-203r0,-26r-12,0v0,-14,-2,-26,7,-33v-24,-2,-10,38,-14,59r19,0","w":102},"\u201d":{"d":"78,-206v11,-13,4,-38,6,-59r-19,0r0,26r12,0v0,13,1,26,-6,33r7,0xm29,-206v26,-3,10,-38,14,-59r-19,0r0,26r12,0v0,14,1,27,-7,33","w":108},"\u2022":{"d":"47,-88v17,1,30,-15,30,-30v0,-15,-13,-31,-30,-30v-15,-1,-31,15,-30,30v-1,15,15,31,30,30","w":105},"\u2013":{"d":"120,-88r0,-15r-105,0r0,15r105,0","w":133},"\u2014":{"d":"206,-88r0,-15r-187,0r0,15r187,0","w":222},"\u02dc":{"d":"136,-193r-11,-8v-26,33,-83,-30,-105,16r10,8v26,-35,76,29,106,-16","w":152},"\u2122":{"d":"113,-197r-11,-58r-19,53r-19,-53r-13,58r3,0r11,-50r18,53r18,-53v5,16,4,38,12,50xm35,-252v6,-1,16,3,18,-2v-12,2,-31,-3,-39,2r18,0r0,55r3,0r0,-55","w":121},"\u0161":{"d":"105,-201r-8,-8r-36,35r-36,-35r-7,8r43,43xm10,-28v19,44,101,41,101,-13v4,-48,-70,-35,-76,-73v-2,-29,44,-26,57,-10r11,-10v-24,-28,-83,-20,-83,20v-3,48,72,31,76,73v2,42,-65,33,-73,5","w":119},"\u203a":{"d":"91,-92r-68,-68r-7,8r61,60r-59,59r7,8","w":101},"\u0153":{"d":"284,-43v-14,36,-76,41,-101,13v-11,-11,-17,-27,-17,-47r140,0v6,-82,-125,-97,-148,-30v-11,-24,-37,-44,-69,-44v-42,0,-77,35,-76,77v-2,42,35,78,76,77v32,0,59,-20,69,-44v17,52,117,60,139,4xm289,-91r-121,0v12,-61,112,-57,121,0xm89,-136v34,-1,63,29,63,62v0,33,-28,63,-63,62v-33,1,-63,-29,-62,-62v-1,-33,29,-63,62,-62","w":317},"\u0178":{"d":"116,-298v-17,0,-14,24,0,23v7,0,11,-4,11,-12v0,-7,-5,-11,-11,-11xm66,-298v-18,0,-13,23,0,23v8,0,12,-4,12,-12v-2,-7,-6,-11,-12,-11xm173,-257r-17,0r-64,111r-63,-111r-17,0r73,128r0,129r15,0r0,-129","w":183},"\u00a1":{"d":"37,-206v19,0,14,-26,0,-26v-18,1,-17,27,0,26xm45,27r0,-204r-15,0r0,204r15,0","w":73},"\u00a2":{"d":"14,-126v-1,38,30,72,64,72r0,21r15,0r0,-21v16,-1,31,-5,40,-12r0,-17v-14,10,-28,15,-40,15r0,-117v15,-1,30,9,41,16r0,-17v-11,-9,-23,-15,-41,-15r0,-18r-15,0r0,18v-37,5,-65,33,-64,75xm78,-68v-43,-3,-63,-63,-35,-98v9,-10,21,-17,35,-19r0,117","w":152},"\u00a3":{"d":"23,0v38,-43,100,35,138,-18r-9,-9v-28,31,-56,3,-85,-3v14,-13,26,-33,26,-58r41,0r0,-15r-41,0v-10,-36,-48,-61,-49,-101v0,-27,15,-40,47,-40v27,-1,47,12,47,37r14,0v1,-33,-26,-53,-61,-52v-46,-2,-77,38,-57,83v10,25,37,49,43,73r-37,0r0,15r38,0v0,20,-10,39,-29,59v-14,0,-29,11,-35,19","w":170},"\u20ac":{"d":"244,-45v-43,42,-132,47,-175,1v-15,-15,-25,-33,-29,-54r199,0r0,-15r-202,0v-1,-10,-1,-18,0,-29r202,0r0,-15r-200,0v10,-87,143,-116,205,-58r0,-18v-23,-19,-51,-27,-90,-28v-68,-1,-120,44,-130,104r-24,0r0,15r22,0r0,29r-22,0r0,15r24,0v7,91,150,136,220,70r0,-17","w":252},"\u00a5":{"d":"173,-257r-17,0r-64,112r-63,-112r-17,0r72,127r-35,0r0,14r36,0r0,17r-36,0r0,14r36,0r0,85r15,0r0,-85r36,0r0,-14r-36,0r0,-17r36,0r0,-14r-35,0","w":185},"\u00a6":{"d":"32,-157r0,-115r-13,0r0,115r13,0xm32,0r0,-118r-13,0r0,118r13,0","w":47},"\u00a7":{"d":"17,-18v10,49,104,48,101,-11v0,-22,-8,-37,-24,-47v50,-26,38,-103,-25,-107v-43,0,-43,-67,-2,-65v15,0,27,8,35,23r11,-7v-17,-46,-94,-36,-92,15v0,18,8,31,25,41v-33,12,-45,61,-18,88v21,25,78,13,74,59v1,20,-16,33,-35,33v-23,0,-30,-13,-37,-28xm30,-126v-1,-21,15,-38,36,-38v28,0,42,13,42,40v1,22,-17,36,-39,36v-21,0,-39,-16,-39,-38","w":136},"\u00a8":{"d":"104,-199v-17,0,-14,25,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm54,-199v-18,0,-12,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12","w":154},"\u00a9":{"d":"107,-45v51,1,96,-45,95,-95v1,-51,-45,-97,-95,-95v-51,-1,-97,44,-95,95v-2,51,44,97,95,95xm107,-228v48,0,89,38,88,88v1,47,-40,89,-88,87v-47,2,-89,-40,-87,-87v-2,-49,39,-89,87,-88xm60,-142v-3,39,55,59,81,31r0,-9v-20,27,-77,16,-74,-22v-2,-36,51,-46,74,-24v0,-17,-17,-17,-34,-19v-27,0,-47,16,-47,43","w":211},"\u00aa":{"d":"21,-197v0,42,58,62,81,29r0,15r9,0r0,-89r-9,0r0,16v-24,-34,-81,-13,-81,29xm120,-121r0,-10r-102,0r0,10r102,0xm67,-235v19,-1,38,19,37,38v1,20,-18,37,-37,37v-19,0,-38,-16,-37,-37v-1,-19,17,-39,37,-38","w":134},"\u00ab":{"d":"141,-152r-7,-8r-68,68r66,67r8,-8r-60,-59xm89,-152r-7,-8r-68,68r66,67r7,-8r-59,-59","w":158},"\u00ac":{"d":"74,-151r0,-116v-11,0,-25,-3,-26,7r19,0r0,109r7,0xm114,-127r0,-10r-91,0r0,10r91,0xm70,3v37,0,47,-54,11,-63v27,-6,22,-61,-11,-56v-32,-4,-40,48,-12,56v-35,9,-25,63,12,63xm70,-110v12,-1,24,11,23,23v1,13,-10,23,-23,23v-13,0,-24,-10,-24,-23v0,-12,11,-24,24,-23xm70,-57v15,-1,28,14,27,27v1,15,-13,27,-27,27v-15,0,-28,-11,-28,-27v0,-13,13,-27,28,-27"},"\u00ae":{"d":"72,-137v30,0,58,-26,57,-57v1,-31,-27,-57,-57,-57v-31,0,-58,25,-57,57v-1,32,26,57,57,57xm72,-246v25,0,53,25,51,52v2,27,-26,52,-51,51v-27,1,-53,-24,-52,-51v-1,-27,25,-52,52,-52xm95,-211v2,-19,-23,-18,-43,-17r0,65r5,0r0,-30v26,-3,17,28,38,30r-21,-30v14,1,21,-5,21,-18xm90,-211v0,17,-18,12,-33,13r0,-25v14,0,33,-4,33,12","w":143},"\u00af":{"d":"123,-171r0,-13r-102,0r0,13r102,0"},"\u00b0":{"d":"38,-192v15,0,30,-14,30,-29v1,-15,-15,-31,-30,-30v-15,-1,-31,15,-30,30v0,15,15,29,30,29xm38,-244v11,0,23,10,22,22v1,12,-11,23,-22,23v-28,0,-28,-45,0,-45","w":76},"\u00b1":{"d":"114,-116r0,-15r-37,0r0,-37r-16,0r0,37r-37,0r0,15r37,0r0,36r16,0r0,-36r37,0xm117,-51r0,-15r-93,0r0,15r93,0","w":139},"\u00b2":{"d":"46,-240v7,-30,52,-26,54,4v-9,38,-44,57,-63,86r70,0r0,-7r-56,0v18,-26,50,-42,56,-79v2,-39,-64,-40,-68,-4r7,0"},"\u00b3":{"d":"40,-176v6,39,67,31,65,-7v0,-16,-8,-26,-23,-30v34,-6,25,-60,-9,-57v-17,1,-30,10,-31,28r7,0v1,-21,27,-28,40,-14v15,15,3,44,-22,38v-3,11,6,9,14,11v25,7,20,52,-9,50v-12,0,-22,-10,-25,-19r-7,0"},"\u00b4":{"d":"113,-217r-9,-8r-48,48r9,8","w":146},"\u00b5":{"d":"44,-198v7,-65,120,-59,119,7v0,16,-5,31,-15,45r-126,146r155,0r0,-15r-123,0r100,-114v48,-50,19,-133,-51,-130v-38,-2,-71,29,-76,61r17,0xm92,-130v15,1,31,-15,30,-30v1,-15,-15,-31,-30,-30v-15,-1,-31,15,-30,30v-1,15,15,31,30,30xm92,-183v11,-1,23,12,22,22v1,12,-11,23,-22,23v-28,-1,-28,-45,0,-45xm222,-130v15,1,31,-15,30,-30v1,-15,-15,-31,-30,-30v-15,-1,-31,15,-30,30v-1,15,15,31,30,30xm199,-161v0,-27,45,-28,45,0v0,11,-10,23,-22,23v-11,0,-23,-12,-23,-23xm96,-162v-4,-1,-8,3,-8,8v0,4,4,8,8,7v4,0,8,-3,8,-7v0,-4,-3,-8,-8,-8xm226,-161v-4,0,-8,3,-8,8v1,11,15,9,16,0v0,-4,-3,-7,-8,-8xm211,46r-7,-7v-17,18,-47,17,-63,-1r-7,8v16,22,61,21,77,0","w":282},"\u00b6":{"d":"161,22r0,-279r-15,0r0,279r15,0xm18,-193v0,49,40,70,94,64r0,151r14,0r0,-279v-60,-6,-109,11,-108,64","w":181},"\u00b7":{"d":"37,-129v-17,2,-15,25,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12","w":99},"\u2219":{"d":"37,-129v-17,2,-15,25,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12","w":99},"\u00b8":{"d":"26,45v13,14,45,12,44,-11v0,-10,-4,-16,-13,-19r5,-15r-17,0r-5,18v15,3,19,20,2,21v-5,-3,-13,-3,-16,-8r0,14","w":93},"\u00b9":{"d":"79,-151r0,-116v-11,0,-25,-3,-26,7r19,0r0,109r7,0"},"\u00ba":{"d":"67,-153v25,1,47,-21,46,-46v1,-26,-21,-46,-46,-46v-25,0,-46,21,-46,46v0,25,20,47,46,46xm118,-121r0,-10r-101,0r0,10r101,0xm67,-236v19,0,39,17,38,37v1,20,-18,39,-38,38v-20,1,-37,-19,-37,-38v0,-20,17,-37,37,-37","w":134},"\u00bb":{"d":"149,-92r-68,-68r-8,8r61,60r-59,59r7,8xm95,-92r-68,-68r-8,8r61,60r-59,59r7,8","w":158},"\u00bc":{"d":"79,-151r0,-116v-11,0,-25,-3,-26,7r19,0r0,109r7,0xm120,-127r0,-10r-92,0r0,10r92,0xm94,-22v5,0,12,1,10,-6r-10,0r0,-89r-67,95r60,0r0,22r7,0r0,-22xm87,-28r-48,0r48,-67r0,67"},"\u00bd":{"d":"81,-151r0,-116v-11,0,-25,-3,-26,7r20,0r0,109r6,0xm121,-127r0,-10r-92,0r0,10r92,0xm48,-89v5,-31,53,-24,54,3v-10,39,-44,56,-64,86r70,0r0,-6r-55,0v18,-26,50,-42,55,-80v1,-38,-64,-41,-67,-3r7,0"},"\u00be":{"d":"40,-176v6,39,67,31,65,-7v0,-16,-8,-26,-23,-30v34,-6,25,-60,-9,-57v-17,1,-30,10,-31,28r7,0v1,-21,27,-28,40,-14v15,15,3,44,-22,38v-3,11,6,9,14,11v25,7,20,52,-9,50v-12,0,-22,-10,-25,-19r-7,0xm118,-127r0,-10r-92,0r0,10r92,0xm95,-22v5,0,12,1,10,-6r-10,0r0,-89r-66,95r59,0r0,22r7,0r0,-22xm88,-28r-47,0r47,-67r0,67"},"\u00bf":{"d":"101,-220v-1,-19,-26,-14,-25,0v1,8,5,12,12,12v9,0,13,-5,13,-12xm39,-75v-45,36,-24,112,41,104v35,0,59,-16,72,-48r-13,-6v-12,21,-29,39,-59,39v-51,5,-68,-51,-30,-79v25,-19,72,-41,73,-78v3,-35,-48,-44,-68,-23r9,12v11,-13,45,-11,44,11v-4,36,-46,49,-69,68","w":168},"\u00c0":{"d":"123,-278r-43,-43r-7,7r42,43xm217,0r-103,-265r-103,265r15,0r29,-77r117,0r30,77r15,0xm166,-92r-105,0r53,-136","w":227},"\u00c1":{"d":"153,-311r-7,-8r-40,41r7,7xm217,0r-103,-265r-103,265r15,0r29,-77r117,0r30,77r15,0xm166,-92r-105,0r53,-136","w":227},"\u00c2":{"d":"158,-273r-44,-43r-43,43r7,8r36,-36r36,36xm217,0r-103,-265r-103,265r15,0r29,-77r117,0r30,77r15,0xm166,-92r-105,0r53,-136","w":227},"\u00c3":{"d":"161,-296v-29,31,-82,-29,-105,16r10,8v26,-35,77,29,105,-16xm217,0r-103,-265r-103,265r15,0r29,-77r117,0r30,77r15,0xm166,-92r-105,0r53,-136","w":226},"\u00c4":{"d":"137,-298v-18,0,-13,23,0,23v8,0,12,-4,12,-12v-2,-7,-6,-11,-12,-11xm88,-298v-17,0,-14,23,0,23v8,0,12,-4,12,-12v-2,-7,-6,-11,-12,-11xm217,0r-103,-265r-103,265r15,0r29,-77r117,0r30,77r15,0xm166,-92r-105,0r53,-136","w":226},"\u00c5":{"d":"114,-268v12,0,24,-11,24,-25v0,-12,-12,-24,-24,-24v-14,0,-25,12,-25,24v0,14,11,25,25,25xm217,0r-103,-265r-103,265r15,0r29,-77r117,0r30,77r15,0xm114,-311v24,0,22,36,0,36v-11,1,-18,-8,-18,-18v0,-10,8,-18,18,-18xm166,-92r-105,0r53,-136","w":227},"\u00c6":{"d":"247,0r0,-15r-109,0r0,-119r109,0r0,-15r-109,0r0,-93r109,0r0,-15r-122,0r-115,257r15,0r52,-118r46,0r0,118r124,0xm123,-132r-39,0r39,-88r0,88","w":266},"\u00c7":{"d":"134,17v10,0,20,22,2,22v-6,0,-10,-2,-14,-7r-6,12v13,15,48,14,46,-11v0,-8,-3,-14,-11,-19r4,-10v38,1,64,-14,85,-32r0,-17v-27,21,-48,33,-90,34v-67,1,-118,-50,-117,-118v-1,-67,50,-118,117,-117v36,-1,69,13,90,31r0,-18v-22,-19,-52,-27,-90,-28v-77,-1,-133,57,-132,132v-3,73,57,133,122,133","w":252},"\u00c8":{"d":"95,-278r-43,-43r-7,7r42,43xm149,0r0,-15r-109,0r0,-118r109,0r0,-16r-109,0r0,-93r109,0r0,-15r-123,0r0,257r123,0","w":170},"\u00c9":{"d":"127,-311r-7,-8r-40,41r7,7xm149,0r0,-15r-109,0r0,-118r109,0r0,-16r-109,0r0,-93r109,0r0,-15r-123,0r0,257r123,0","w":170},"\u00ca":{"d":"132,-280r-43,-43r-44,43r8,8r36,-36r36,36xm149,0r0,-15r-109,0r0,-118r109,0r0,-16r-109,0r0,-93r109,0r0,-15r-123,0r0,257r123,0","w":170},"\u00cb":{"d":"113,-298v-17,0,-14,24,0,23v8,0,12,-4,12,-12v-2,-7,-6,-11,-12,-11xm63,-298v-18,0,-13,23,0,23v8,0,12,-4,12,-12v-2,-7,-6,-11,-12,-11xm149,0r0,-15r-109,0r0,-118r109,0r0,-16r-109,0r0,-93r109,0r0,-15r-123,0r0,257r123,0","w":170},"\u00cc":{"d":"46,-278r-43,-43r-7,7r43,43xm42,0r0,-257r-14,0r0,257r14,0","w":69},"\u00cd":{"d":"72,-311r-6,-8r-41,41r7,7xm42,0r0,-257r-14,0r0,257r14,0","w":69},"\u00ce":{"d":"78,-273r-43,-43r-44,43r8,8r36,-36r36,36xm42,0r0,-257r-14,0r0,257r14,0","w":69},"\u00cf":{"d":"59,-298v-17,0,-14,23,0,23v8,0,12,-4,12,-12v-2,-7,-6,-11,-12,-11xm10,-298v-17,0,-14,24,0,23v8,0,12,-4,12,-12v-2,-7,-6,-11,-12,-11xm42,0r0,-257r-14,0r0,257r14,0","w":69},"\u00d0":{"d":"113,0v68,1,117,-58,115,-129v1,-69,-47,-129,-115,-128r-86,0r0,120r-15,0r0,15r15,0r0,122r86,0xm113,-243v60,-1,101,52,100,114v3,63,-42,114,-100,114r-71,0r0,-107r45,0r0,-15r-45,0r0,-106r71,0","w":247},"\u00d1":{"d":"177,-296v-19,25,-48,-3,-71,-2v-16,0,-27,6,-34,18r10,8v27,-35,76,28,106,-16xm234,4r0,-261r-14,0r0,223r-192,-225r0,259r14,0r0,-218","w":257},"\u00d2":{"d":"156,-278r-44,-43r-7,7r42,43xm150,4v77,1,134,-56,133,-133v1,-76,-57,-133,-133,-132v-77,-1,-133,57,-132,132v-2,77,56,134,132,133xm150,-246v68,-1,119,50,118,117v1,69,-50,119,-118,118v-67,1,-118,-50,-117,-118v-1,-67,50,-118,117,-117","w":295},"\u00d3":{"d":"184,-311r-7,-8r-40,41r7,7xm150,4v77,1,134,-56,133,-133v1,-76,-57,-133,-133,-132v-77,-1,-133,57,-132,132v-2,77,56,134,132,133xm150,-246v68,-1,119,50,118,117v1,69,-50,119,-118,118v-67,1,-118,-50,-117,-118v-1,-67,50,-118,117,-117","w":295},"\u00d4":{"d":"193,-282r-44,-43r-44,43r8,8r36,-36r36,36xm150,4v77,1,134,-56,133,-133v1,-76,-57,-133,-133,-132v-77,-1,-133,57,-132,132v-2,77,56,134,132,133xm150,-246v68,-1,119,50,118,117v1,69,-50,119,-118,118v-67,1,-118,-50,-117,-118v-1,-67,50,-118,117,-117","w":295},"\u00d5":{"d":"193,-300v-20,25,-48,-3,-71,-3v-16,0,-27,6,-34,19r10,8v27,-35,77,28,106,-16xm150,4v77,1,134,-56,133,-133v1,-76,-57,-133,-133,-132v-77,-1,-133,57,-132,132v-2,77,56,134,132,133xm150,-246v68,-1,119,50,118,117v1,69,-50,119,-118,118v-67,1,-118,-50,-117,-118v-1,-67,50,-118,117,-117","w":295},"\u00d6":{"d":"174,-298v-17,0,-14,24,0,23v7,0,11,-4,11,-12v-2,-7,-5,-11,-11,-11xm124,-298v-18,0,-13,23,0,23v8,0,12,-4,12,-12v-2,-7,-6,-11,-12,-11xm150,4v77,1,134,-56,133,-133v1,-76,-57,-133,-133,-132v-77,-1,-133,57,-132,132v-2,77,56,134,132,133xm150,-246v68,-1,119,50,118,117v1,69,-50,119,-118,118v-67,1,-118,-50,-117,-118v-1,-67,50,-118,117,-117","w":295},"\u00d7":{"d":"233,-128v3,6,-7,12,-2,2xm258,-167v2,3,-2,5,-3,7xm262,-134v-2,-1,1,-5,1,-6xm326,-135v-8,15,-34,7,-49,2v0,-11,15,1,18,-5v-3,-1,-11,-1,-9,-3v15,1,30,-1,40,6xm262,-132r-1,0r1,0xm275,-128v6,-7,20,8,32,7xm305,-124v7,2,4,-1,11,3xm279,-144r5,-26r-2,26r-3,0xm262,-113v2,-7,-1,-20,9,-14v-1,4,-7,11,-9,14xm264,-131v1,-2,5,-1,9,0v-1,4,-6,0,-9,0xm264,-134v-1,-8,6,-8,12,-5v0,4,-5,6,-12,5xm264,-169v0,2,-3,12,-3,4xm244,-126v-1,-19,9,-25,15,-36v1,14,-11,25,-15,36xm235,-127v-3,-3,4,-11,2,-3v-1,0,-1,1,-2,3xm237,-127r0,5v-1,-2,-1,-4,0,-5xm231,-129r0,-1r0,1xm88,-190v0,0,9,3,2,2xm100,-186r1,0r-1,0xm21,-113v23,1,47,6,69,9r0,4v-23,3,-46,7,-69,12r0,-25xm41,-144v18,-1,35,3,49,7r0,7v-19,-2,-41,0,-49,-14xm130,-127v-10,4,-18,6,-25,0v-2,-10,7,-3,12,-3v4,1,9,2,13,3xm98,-103r0,0r0,0xm81,-119v3,1,10,-2,9,3xm105,-125v4,1,8,4,0,3r0,-3xm109,-120v9,2,10,16,-2,12v1,0,2,0,2,-1v-5,0,-4,-6,-4,-11r4,0xm90,-98r0,16v-21,4,-49,5,-69,0r0,-4v22,-5,46,-9,69,-12xm112,-93v-2,2,-8,9,-7,0v1,-5,-1,-8,11,-7v-1,2,-2,5,-4,7xm107,-105v2,0,12,0,7,1xm127,-101v2,-6,-11,0,-9,-5v11,0,22,-1,32,-2v-15,7,-32,19,-45,23v10,-3,8,-17,22,-16xm92,-156r1,1xm77,-157r5,0r-5,0xm105,-157r3,0r-3,0xm126,-151v-2,-1,-4,0,-1,-2v3,0,1,2,1,2xm117,-150r1,0r-1,0xm88,-159v1,-1,2,-3,2,0r-2,0xm41,-146v-4,16,31,16,49,18v4,12,-12,5,-21,8v5,6,21,0,21,12v-22,-1,-46,-7,-69,-7v-12,-51,23,-92,60,-62v-5,2,-18,0,-16,5r19,-1v2,5,7,11,1,14v-6,-1,-15,-2,-9,4r14,2r0,14v-14,-3,-33,-10,-49,-7xm92,-186r4,0v0,2,-3,2,-4,0xm100,-184v0,3,-3,4,-5,2v2,-1,2,-2,5,-2xm114,-175r-3,0v0,-2,2,-1,3,0xm99,-179r0,0r0,0xm87,-193v-3,0,-6,-1,-3,-3xm52,-272r2,0r-2,0xm130,-149v2,1,4,1,0,1r0,-1xm105,-51r0,-15v6,1,8,5,12,7v-3,4,-7,6,-12,8xm82,-8v6,-3,11,0,17,0r-17,0xm112,-9r20,-1xm84,-202v-24,5,-56,-4,-63,18r0,-15r-15,0r0,115r-3,0v6,6,2,23,3,34r15,0r0,-30v22,4,47,6,69,0r0,30r13,0v-7,2,-17,-1,-21,4v5,2,17,4,5,5v5,8,17,8,27,11v-9,3,-27,5,-14,12v-6,5,-25,2,-33,6v4,1,14,0,9,5v10,-1,23,6,29,3r-5,-1v12,-2,26,1,36,-5v-7,-5,-22,2,-28,-3v9,-4,25,0,31,-5r-39,2v3,-1,8,1,8,-3r-12,-3v7,-4,18,-3,22,-9v-9,-2,-18,-5,-27,-9v3,-1,8,1,8,-3r-10,-3v12,-3,26,-2,31,-13v-8,-5,-18,-7,-15,-22r51,-27r-1,-3r-37,3r-3,-13v6,-1,16,-2,17,-8r-27,-6v-5,-23,24,-3,34,-10r-2,-1v2,-1,8,1,7,-3r-15,-2v3,0,6,0,6,-2v-10,-4,-20,-2,-30,-6v2,-4,2,-10,5,-13r22,1v-7,-2,-16,-2,-19,-7v20,-19,65,-6,62,25r0,153r15,0v2,-40,-4,-88,2,-124r124,124r20,0r-132,-132v5,-1,8,-1,8,5r5,-5v0,2,-2,4,0,5r5,-4v0,3,-2,8,2,8r4,-7v1,5,-1,13,1,16v3,-5,6,-11,7,-2v4,0,3,-4,4,-6v0,3,-1,7,3,6v2,-13,12,-24,16,-35v-1,7,3,19,-5,19v15,-1,2,19,8,25v2,-2,5,-12,6,-6r6,-13r50,10v-7,4,-5,6,3,8v-5,2,-14,1,-16,6v3,0,9,6,10,2r-6,-3v5,-2,14,-1,16,-6v-7,-2,-12,-3,-4,-7v3,-1,10,3,10,-1v-8,0,-17,-2,-21,-6v1,-7,11,-8,12,-14v-11,-6,-24,-7,-40,-7v1,-3,6,-7,2,-8v-2,2,-3,7,-6,8v0,-11,7,-30,1,-39r-8,39r-12,0v0,-3,2,-7,-1,-8v-1,2,-2,11,-3,6v-1,-11,9,-23,6,-30v-3,3,-5,11,-9,5v-4,13,-14,21,-17,35v0,-7,-2,-5,-4,-1v-2,3,-2,3,-4,5v-2,-3,-1,-9,-5,-9v1,6,-1,10,-4,13v1,-7,-3,-8,-5,-3v0,-3,5,-8,1,-9r-8,9v3,-3,-2,-14,-1,-4r-9,1r123,-123r-20,0r-115,114r0,-114r-15,0r0,67v-17,-18,-56,-10,-71,2v-13,-6,-19,-8,-31,-10v5,-2,15,0,17,-5r-14,-3v6,1,16,1,18,-4r-26,-8v27,0,56,2,66,-16v-27,0,-53,4,-76,-4v4,-3,16,-4,15,-9r-27,2v11,-9,46,2,59,-7v-13,-2,-26,-4,-37,-8v18,-11,46,-11,64,-21v-16,-2,-32,1,-48,0r6,-5r-11,-3v4,-5,19,-30,7,-17v-3,7,-9,13,-10,22v4,-1,8,-1,11,0v-3,2,-14,3,-4,5v14,2,27,-3,42,0v-21,10,-47,-4,-67,0v6,4,17,6,29,6r-38,2r35,2v-6,4,-16,4,-19,10v9,4,19,7,30,7v-18,2,-44,-2,-51,9r21,-1v-3,3,-10,2,-11,7v21,8,49,6,77,6v-15,13,-45,10,-71,12v8,4,21,7,31,10v-11,2,-22,0,-32,-2v3,8,17,5,25,9xm96,-11v4,-1,9,-3,11,0r-11,0xm93,-13v-4,1,-10,3,-15,1v5,0,10,0,15,-1xm130,-148r1,0r-1,0","w":339},"\u00d8":{"d":"81,-14v91,51,209,-12,202,-115v0,-44,-16,-79,-48,-104r15,-22r-13,-8r-15,21v-89,-52,-212,10,-204,113v0,46,21,86,50,107r-14,21r13,8xm226,-221v82,61,36,220,-76,210v-21,0,-42,-5,-60,-15xm33,-129v-5,-91,99,-147,180,-101r-136,195v-27,-19,-44,-50,-44,-94","w":295},"\u00d9":{"d":"113,-278r-43,-43r-8,7r43,43xm102,3v42,1,75,-27,74,-67r0,-193r-14,0r0,193v1,31,-29,52,-60,52v-34,0,-60,-20,-60,-52r0,-193r-15,0r0,193v0,41,33,68,75,67","w":199},"\u00da":{"d":"143,-311r-7,-8r-40,41r7,7xm102,3v42,1,75,-27,74,-67r0,-193r-14,0r0,193v1,31,-29,52,-60,52v-34,0,-60,-20,-60,-52r0,-193r-15,0r0,193v0,41,33,68,75,67","w":199},"\u00db":{"d":"145,-282r-43,-43r-44,43r8,8r36,-36r36,36xm102,3v42,1,75,-27,74,-67r0,-193r-14,0r0,193v1,31,-29,52,-60,52v-34,0,-60,-20,-60,-52r0,-193r-15,0r0,193v0,41,33,68,75,67","w":199},"\u00dc":{"d":"126,-298v-17,0,-14,24,0,23v8,0,12,-4,12,-12v-2,-7,-6,-11,-12,-11xm76,-298v-18,0,-13,23,0,23v8,0,12,-4,12,-12v-2,-7,-6,-11,-12,-11xm102,3v42,1,75,-27,74,-67r0,-193r-14,0r0,193v1,31,-29,52,-60,52v-34,0,-60,-20,-60,-52r0,-193r-15,0r0,193v0,41,33,68,75,67","w":199},"\u00dd":{"d":"136,-311r-7,-8r-40,41r7,7xm173,-257r-17,0r-64,111r-63,-111r-17,0r73,128r0,129r15,0r0,-129","w":183},"\u00de":{"d":"42,-66v63,5,118,-7,118,-65v0,-56,-55,-69,-118,-63r0,-63r-15,0r0,257r15,0r0,-66xm42,-180v52,-3,104,0,103,49v1,49,-50,54,-103,50r0,-99","w":176},"\u00df":{"d":"71,0v67,8,112,-16,111,-76v1,-38,-26,-65,-61,-69v50,-29,27,-116,-33,-112v-55,-1,-65,49,-60,108r-20,0r0,15r20,0r0,134r15,0r0,-193v0,-33,15,-49,45,-49v25,-1,47,20,47,43v0,25,-19,51,-45,50r0,15v51,0,77,19,77,58v0,49,-39,69,-96,61r0,15","w":194},"\u00e0":{"d":"102,-177r-48,-48r-8,8r47,48xm13,-74v-4,70,95,106,136,48r0,26r14,0r0,-149r-14,0r0,26v-42,-55,-141,-22,-136,49xm89,-136v34,-1,63,29,63,62v0,33,-28,63,-63,62v-33,1,-63,-29,-62,-62v-1,-33,29,-63,62,-62","w":183},"\u00e1":{"d":"134,-217r-8,-8r-48,48r9,8xm13,-74v-4,70,95,106,136,48r0,26r14,0r0,-149r-14,0r0,26v-42,-55,-141,-22,-136,49xm89,-136v34,-1,63,29,63,62v0,33,-28,63,-63,62v-33,1,-63,-29,-62,-62v-1,-33,29,-63,62,-62","w":183},"\u00e2":{"d":"131,-179r-43,-43r-44,43r8,8r36,-35r36,35xm13,-74v-4,70,95,106,136,48r0,26r14,0r0,-149r-14,0r0,26v-42,-55,-141,-22,-136,49xm89,-136v34,-1,63,29,63,62v0,33,-28,63,-63,62v-33,1,-63,-29,-62,-62v-1,-33,29,-63,62,-62","w":183},"\u00e3":{"d":"42,-177v28,-34,76,29,106,-16r-10,-8v-27,31,-83,-29,-105,16xm13,-74v-4,70,95,106,136,48r0,26r14,0r0,-149r-14,0r0,26v-42,-55,-141,-22,-136,49xm89,-136v34,-1,63,29,63,62v0,33,-28,63,-63,62v-33,1,-63,-29,-62,-62v-1,-33,29,-63,62,-62","w":183},"\u00e4":{"d":"111,-199v-17,0,-14,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm62,-199v-17,0,-14,25,0,24v7,0,11,-4,11,-12v0,-8,-5,-12,-11,-12xm13,-74v-4,70,95,106,136,48r0,26r14,0r0,-149r-14,0r0,26v-42,-55,-141,-22,-136,49xm89,-136v34,-1,63,29,63,62v0,33,-28,63,-63,62v-33,1,-63,-29,-62,-62v-1,-33,29,-63,62,-62","w":183},"\u00e5":{"d":"88,-164v15,1,31,-15,30,-30v1,-15,-15,-31,-30,-30v-15,-1,-31,15,-30,30v-1,15,15,31,30,30xm13,-74v-4,70,95,106,136,48r0,26r14,0r0,-149r-14,0r0,26v-42,-55,-141,-22,-136,49xm88,-216v12,-1,22,11,22,22v0,11,-11,22,-22,22v-11,0,-23,-10,-22,-22v-1,-12,10,-23,22,-22xm89,-136v34,-1,63,29,63,62v0,33,-28,63,-63,62v-33,1,-63,-29,-62,-62v-1,-33,29,-63,62,-62","w":183},"\u00e6":{"d":"282,-43v-26,54,-128,32,-118,-34r139,0v6,-74,-103,-97,-140,-43r0,-29r-14,0r0,26v-42,-55,-141,-22,-136,49v-4,70,95,106,136,48r0,26r14,0r0,-28v27,45,113,38,132,-9xm287,-91r-121,0v12,-62,112,-56,121,0xm89,-136v34,-1,63,29,63,62v0,33,-28,63,-63,62v-33,1,-63,-29,-62,-62v-1,-33,29,-63,62,-62","w":316},"\u00e7":{"d":"81,17v9,3,17,21,3,21v-6,0,-10,-4,-13,-7v-8,11,2,22,14,21v21,3,28,-30,12,-37r5,-12v13,0,28,-7,37,-13r0,-20v-34,36,-107,13,-107,-44v0,-56,71,-84,107,-45r0,-19v-49,-34,-127,3,-122,64v-1,42,30,74,69,77","w":157},"\u00e8":{"d":"105,-177r-48,-48r-8,8r47,48xm144,-43v-25,55,-127,32,-117,-34r139,0v1,-43,-33,-75,-77,-74v-43,-1,-78,34,-77,77v-1,51,48,91,102,73v20,-6,34,-18,44,-36xm149,-91r-120,0v11,-64,112,-57,120,0","w":176},"\u00e9":{"d":"128,-217r-8,-8r-48,48r9,8xm144,-43v-25,55,-127,32,-117,-34r139,0v1,-43,-33,-75,-77,-74v-43,-1,-78,34,-77,77v-1,51,48,91,102,73v20,-6,34,-18,44,-36xm149,-91r-120,0v11,-64,112,-57,120,0","w":176},"\u00ea":{"d":"134,-179r-43,-43r-44,43r8,8r36,-35r36,35xm144,-43v-25,55,-127,32,-117,-34r139,0v1,-43,-33,-75,-77,-74v-43,-1,-78,34,-77,77v-1,51,48,91,102,73v20,-6,34,-18,44,-36xm149,-91r-120,0v11,-64,112,-57,120,0","w":176},"\u00eb":{"d":"113,-199v-17,0,-11,25,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm64,-199v-17,0,-13,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm144,-43v-25,55,-127,32,-117,-34r139,0v1,-43,-33,-75,-77,-74v-43,-1,-78,34,-77,77v-1,51,48,91,102,73v20,-6,34,-18,44,-36xm149,-91r-120,0v11,-64,112,-57,120,0","w":176},"\u00ec":{"d":"42,-177r-47,-48r-9,8r48,48xm41,0r0,-149r-15,0r0,149r15,0","w":66},"\u00ed":{"d":"83,-217r-8,-8r-49,48r9,8xm41,0r0,-149r-15,0r0,149r15,0","w":66},"\u00ee":{"d":"90,-179r-43,-43r-44,43r8,8r36,-35r36,35xm53,0r0,-149r-14,0r0,149r14,0","w":91},"\u00ef":{"d":"58,-199v-17,0,-14,25,0,24v8,0,11,-4,11,-12v0,-8,-5,-12,-11,-12xm20,-187v-1,-17,-25,-13,-24,0v1,16,25,16,24,0xm41,0r0,-149r-15,0r0,149r15,0","w":66},"\u00f0":{"d":"89,3v42,1,78,-35,77,-77v0,-69,-15,-101,-51,-134r33,-20r-15,-10r-31,20v-13,-8,-25,-15,-38,-18r-13,12r34,16r-31,20r14,9r31,-19v25,18,40,42,46,71v-43,-50,-137,-15,-132,53v-2,42,35,78,76,77xm89,-136v34,-1,63,29,63,62v0,33,-28,63,-63,62v-33,1,-63,-29,-62,-62v-1,-33,29,-63,62,-62","w":179},"\u00f1":{"d":"139,-193r-11,-8v-26,33,-83,-30,-105,16r10,8v26,-35,76,29,106,-16xm39,0v4,-55,-19,-138,42,-136v61,-3,39,81,43,136r15,0v-2,-68,16,-154,-58,-150v-21,0,-36,6,-42,19r0,-18r-15,0r0,149r15,0","w":162},"\u00f2":{"d":"105,-177r-48,-48r-8,8r47,48xm89,3v42,1,78,-35,77,-77v1,-43,-34,-78,-77,-77v-41,-1,-78,35,-76,77v-2,42,35,78,76,77xm89,-137v34,-1,64,28,63,63v0,33,-28,63,-63,62v-33,1,-63,-29,-62,-62v-1,-33,29,-64,62,-63","w":179},"\u00f3":{"d":"130,-217r-8,-8r-49,48r9,8xm89,3v42,1,78,-35,77,-77v1,-43,-34,-78,-77,-77v-41,-1,-78,35,-76,77v-2,42,35,78,76,77xm89,-137v34,-1,64,28,63,63v0,33,-28,63,-63,62v-33,1,-63,-29,-62,-62v-1,-33,29,-64,62,-63","w":179},"\u00f4":{"d":"131,-179r-43,-43r-44,43r8,8r36,-35r36,35xm89,3v42,1,78,-35,77,-77v1,-43,-34,-78,-77,-77v-41,-1,-78,35,-76,77v-2,42,35,78,76,77xm89,-137v34,-1,64,28,63,63v0,33,-28,63,-63,62v-33,1,-63,-29,-62,-62v-1,-33,29,-64,62,-63","w":179},"\u00f5":{"d":"145,-193r-10,-8v-26,33,-83,-29,-105,16r10,8v26,-35,76,29,105,-16xm89,3v42,1,78,-35,77,-77v1,-43,-34,-78,-77,-77v-41,-1,-78,35,-76,77v-2,42,35,78,76,77xm89,-137v34,-1,64,28,63,63v0,33,-28,63,-63,62v-33,1,-63,-29,-62,-62v-1,-33,29,-64,62,-63","w":179},"\u00f6":{"d":"112,-199v-18,0,-12,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm63,-199v-17,0,-13,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm89,3v42,1,78,-35,77,-77v1,-43,-34,-78,-77,-77v-41,-1,-78,35,-76,77v-2,42,35,78,76,77xm89,-137v34,-1,64,28,63,63v0,33,-28,63,-63,62v-33,1,-63,-29,-62,-62v-1,-33,29,-64,62,-63","w":179},"\u00f7":{"d":"67,-149v-17,0,-14,25,0,24v8,0,11,-4,11,-12v0,-8,-5,-12,-11,-12xm113,-86r0,-18r-92,0r0,18r92,0xm67,-64v-17,0,-14,24,0,23v8,0,11,-4,11,-12v0,-7,-5,-11,-11,-11","w":130},"\u00f8":{"d":"53,-6v52,28,115,-13,113,-68v0,-23,-8,-42,-25,-57r15,-21r-13,-9r-15,21v-51,-31,-118,9,-115,66v0,24,9,44,27,59r-13,19r13,9xm132,-119v50,41,-4,133,-70,101xm49,-27v-55,-42,3,-139,71,-102","w":179},"\u00f9":{"d":"88,-177r-48,-48r-8,8r47,48xm77,3v71,3,55,-85,56,-152r-15,0v-5,54,20,140,-41,137v-61,3,-34,-83,-40,-137r-15,0v1,67,-15,156,55,152","w":154},"\u00fa":{"d":"126,-217r-8,-8r-48,48r9,8xm77,3v71,3,55,-85,56,-152r-15,0v-5,54,20,140,-41,137v-61,3,-34,-83,-40,-137r-15,0v1,67,-15,156,55,152","w":154},"\u00fb":{"d":"121,-179r-44,-43r-43,43r7,8r36,-35r36,35xm77,3v71,3,55,-85,56,-152r-15,0v-5,54,20,140,-41,137v-61,3,-34,-83,-40,-137r-15,0v1,67,-15,156,55,152","w":154},"\u00fc":{"d":"102,-199v-17,0,-14,25,0,24v7,0,11,-4,11,-12v-2,-8,-5,-12,-11,-12xm52,-199v-18,0,-12,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm77,3v71,3,55,-85,56,-152r-15,0v-5,54,20,140,-41,137v-61,3,-34,-83,-40,-137r-15,0v1,67,-15,156,55,152","w":154},"\u00fd":{"d":"81,-14v91,51,209,-12,202,-115v0,-44,-16,-79,-48,-104r15,-22r-13,-8r-15,21v-89,-52,-212,10,-204,113v0,46,21,86,50,107r-14,21r13,8xm33,-129v-5,-91,99,-147,180,-101r-136,195v-27,-19,-44,-50,-44,-94xm212,-149v0,29,42,39,56,15v8,96,-94,151,-178,108r136,-195v17,14,28,30,35,49v-19,-17,-50,0,-49,23xm242,-172v11,0,23,10,23,22v0,29,-46,29,-45,0v-1,-11,12,-22,22,-22xm113,-120v15,0,30,-14,30,-29v1,-15,-15,-31,-30,-30v-15,-1,-31,15,-30,30v0,15,15,29,30,29xm90,-150v1,-28,45,-28,45,0v1,11,-11,23,-22,23v-11,0,-23,-12,-23,-23xm124,-144v-1,-11,-15,-9,-16,0v0,4,3,8,8,8v4,1,8,-3,8,-8xm246,-150v-4,0,-8,3,-8,7v0,4,3,8,8,8v4,1,8,-3,8,-8v0,-4,-4,-8,-8,-7xm222,-54r-7,-8v-18,19,-46,16,-63,-1r-8,9v18,20,61,20,78,0","w":295},"\u00fe":{"d":"38,-28v39,59,141,26,138,-46v4,-71,-99,-106,-138,-47r0,-145r-15,0r0,336r15,0r0,-98xm99,-136v33,-1,63,29,62,62v1,33,-29,63,-62,62v-33,1,-63,-29,-62,-62v-1,-33,29,-63,62,-62","w":184},"\u00ff":{"d":"107,-199v-18,0,-12,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm58,-199v-17,0,-13,24,0,24v8,0,12,-4,12,-12v-2,-8,-6,-12,-12,-12xm152,-149r-16,0r-55,118r-55,-118r-16,0r63,135r-39,84r17,0","w":160},"\ue000":{"d":"96,-88r0,-15r-75,0r0,15r75,0","w":114},"\ue001":{"d":"121,0r0,-257r-49,0r-9,15r43,0r0,242r15,0xm49,-156v15,0,30,-14,30,-29v1,-15,-15,-31,-30,-30v-15,-1,-31,15,-30,30v0,15,15,29,30,29xm49,-208v11,0,22,11,22,22v0,11,-10,23,-22,23v-11,0,-23,-11,-22,-23v-1,-12,11,-22,22,-22xm179,-156v14,0,30,-14,29,-29v1,-15,-15,-30,-29,-30v-15,-1,-31,15,-30,30v0,15,15,29,30,29xm156,-186v1,-28,45,-28,45,0v1,11,-12,23,-22,23v-11,0,-23,-12,-23,-23xm53,-188v-4,0,-8,3,-8,8v-1,5,3,9,8,8v4,0,8,-4,7,-8v0,-4,-3,-8,-7,-8xm183,-186v-5,-1,-8,3,-8,7v0,5,2,9,8,8v4,0,8,-4,7,-8v1,-4,-3,-8,-7,-7xm158,26r-8,-8r-36,35r-36,-35r-7,8r43,43","w":220},"\ue002":{"d":"81,-151r0,-116v-11,0,-25,-3,-26,7r20,0r0,109r6,0xm121,-127r0,-10r-92,0r0,10r92,0xm48,-89v5,-30,53,-25,54,3v-10,39,-44,56,-64,86r70,0r0,-6r-55,0v18,-26,50,-42,55,-80v1,-38,-64,-41,-67,-3r7,0"},"\ue003":{"d":"79,-151r0,-116v-11,0,-25,-3,-26,7r19,0r0,109r7,0xm120,-127r0,-10r-92,0r0,10r92,0xm94,-22v5,0,12,1,10,-6r-10,0r0,-89r-67,95r60,0r0,22r7,0r0,-22xm87,-28r-48,0r48,-67r0,67"},"\ue004":{"d":"79,-151r0,-116v-11,0,-25,-3,-26,7r19,0r0,109r7,0"},"\ue005":{"d":"40,-176v6,39,67,31,65,-7v0,-16,-8,-26,-23,-30v34,-6,25,-60,-9,-57v-17,1,-30,10,-31,28r7,0v1,-21,27,-28,40,-14v15,15,3,44,-22,38v-3,11,6,9,14,11v25,7,20,52,-9,50v-12,0,-22,-10,-25,-19r-7,0xm118,-127r0,-10r-92,0r0,10r92,0xm95,-22v5,0,12,1,10,-6r-10,0r0,-89r-66,95r59,0r0,22r7,0r0,-22xm88,-28r-47,0r47,-67r0,67"},"\ue006":{"d":"40,-176v6,39,67,31,65,-7v0,-16,-8,-26,-23,-30v34,-6,25,-60,-9,-57v-17,1,-30,10,-31,28r7,0v1,-21,27,-28,40,-14v15,15,3,44,-22,38v-3,11,6,9,14,11v25,7,20,52,-9,50v-12,0,-22,-10,-25,-19r-7,0"},"\ue007":{"d":"46,-240v7,-30,52,-26,54,4v-9,38,-44,57,-63,86r70,0r0,-7r-56,0v18,-26,50,-42,56,-79v2,-39,-64,-40,-68,-4r7,0"},"\ue008":{"d":"110,-51r0,-206r-15,0r0,205v4,44,-38,51,-54,24r-12,7v20,40,88,29,81,-30xm38,-192v15,0,30,-14,30,-29v1,-15,-15,-31,-30,-30v-15,-1,-31,15,-30,30v0,15,15,29,30,29xm38,-244v11,0,23,10,22,22v1,12,-11,23,-22,23v-28,0,-28,-45,0,-45xm168,-192v15,0,30,-14,30,-29v1,-15,-15,-31,-30,-30v-15,-1,-31,15,-30,30v0,15,15,29,30,29xm145,-222v0,-28,45,-28,45,0v0,11,-10,23,-22,23v-11,0,-23,-12,-23,-23xm50,-216v-1,-9,-15,-11,-16,0v0,5,4,9,8,8v5,0,8,-4,8,-8xm180,-215v0,-9,-16,-10,-16,0v0,5,4,9,8,8v5,0,8,-4,8,-8","w":205},"\ue009":{"d":"9,4r180,0r0,-15r-153,0r156,-237r-12,-9xm74,-156v15,0,30,-14,30,-29v1,-15,-15,-31,-30,-30v-15,-1,-31,15,-30,30v0,15,15,29,30,29xm74,-208v11,0,23,10,22,22v1,12,-11,23,-22,23v-28,0,-28,-45,0,-45xm204,-156v15,0,30,-14,30,-29v1,-15,-15,-31,-30,-30v-15,-1,-31,15,-30,30v0,15,15,29,30,29xm181,-186v0,-28,45,-28,45,0v0,11,-10,23,-22,23v-11,0,-23,-12,-23,-23xm86,-180v-1,-9,-15,-11,-16,0v0,5,4,9,8,8v5,0,8,-4,8,-8xm216,-179v0,-9,-16,-10,-16,0v0,5,4,9,8,8v5,0,8,-4,8,-8xm175,50r-7,-8v-17,18,-47,17,-63,-1r-7,9v16,22,61,21,77,0","w":269},"\ue00a":{"w":99},"\ue00b":{"d":"38,-192v15,0,30,-14,30,-29v1,-15,-15,-31,-30,-30v-15,-1,-31,15,-30,30v0,15,15,29,30,29xm38,-244v11,0,23,10,22,22v1,12,-11,23,-22,23v-28,0,-28,-45,0,-45xm168,-192v15,0,30,-14,30,-29v1,-15,-15,-31,-30,-30v-15,-1,-31,15,-30,30v0,15,15,29,30,29xm145,-222v0,-28,45,-28,45,0v0,11,-10,23,-22,23v-11,0,-23,-12,-23,-23xm50,-216v-1,-9,-15,-11,-16,0v0,5,4,9,8,8v5,0,8,-4,8,-8xm180,-215v0,-9,-16,-10,-16,0v0,5,4,9,8,8v5,0,8,-4,8,-8","w":205}}});;Cufon.registerFont({"w":198,"face":{"font-family":"Anivers","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"272","descent":"-88","x-height":"4","bbox":"-45 -275.128 308 83.1687","underline-thickness":"19.44","underline-position":"-20.16","stemh":"26","stemv":"29","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":89},"!":{"d":"63,-69v-4,4,-19,3,-23,0r-7,-186v9,-5,27,-6,37,-5xm36,0v-3,-7,-4,-28,0,-36v11,1,24,-2,33,1v-1,11,1,25,-1,35r-32,0","w":103},"\"":{"d":"102,-180v-6,2,-18,2,-24,0v0,-20,-7,-46,-2,-63v10,1,24,-2,30,2xm47,-180v-6,2,-18,2,-24,0v0,-20,-7,-46,-2,-63v9,1,23,-3,29,2","w":124},"#":{"d":"45,0v-4,-18,8,-44,10,-64v-12,-1,-30,3,-39,-2v1,-7,-2,-19,2,-23r41,0r12,-64v-12,-1,-29,3,-37,-2v1,-7,-2,-19,2,-23r40,0v5,-21,5,-47,14,-64v8,0,20,-5,25,-1r-12,65r54,0v5,-21,5,-47,14,-64v8,0,20,-5,25,-1r-12,65v14,1,34,-3,45,2v-3,8,-4,17,-9,23r-41,0r-12,64v14,1,34,-3,44,2v-3,7,-3,19,-9,23r-40,0v-5,21,-5,46,-13,64v-8,-1,-20,2,-25,-2r12,-62r-55,0v-5,21,-5,46,-13,64r-23,0xm86,-89r54,0r12,-64r-54,0","w":241},"$":{"d":"79,3v-19,-2,-47,-7,-61,-22v6,-6,7,-15,15,-19v0,0,17,14,46,15r0,-64v-28,-9,-56,-21,-56,-55v0,-29,26,-47,56,-52v1,-8,-2,-21,2,-26v6,0,14,-3,19,-1r0,27v29,2,50,9,52,15v-5,7,-7,16,-13,21v-9,-6,-24,-10,-39,-10r0,59v27,9,57,21,57,58v0,34,-29,48,-57,52v-1,9,2,22,-2,27v-6,-1,-16,2,-19,-2r0,-23xm79,-117r0,-50v-17,2,-27,10,-27,24v0,14,12,21,27,26xm100,-24v16,-3,29,-9,29,-27v0,-15,-13,-23,-29,-29r0,56","w":176},"%":{"d":"64,-131v-40,2,-47,-34,-43,-76v0,-25,18,-39,43,-39v40,-2,46,34,42,76v0,25,-17,39,-42,39xm22,0r181,-244v8,-1,19,4,26,7r-179,237r-28,0xm64,-152v24,2,21,-27,21,-51v0,-14,-8,-21,-21,-21v-26,-2,-22,26,-22,50v0,15,8,22,22,22xm191,4v-40,2,-47,-33,-43,-75v0,-26,18,-39,43,-39v40,-2,47,33,43,75v0,25,-18,39,-43,39xm169,-68v0,24,-4,51,22,51v25,0,21,-27,21,-51v0,-14,-8,-21,-21,-21v-14,0,-22,7,-22,21","w":253},"&":{"d":"165,-6v-3,5,-24,8,-62,10v-41,0,-82,-21,-82,-76v0,-27,12,-51,37,-56v-19,-8,-31,-28,-31,-52v-2,-54,52,-70,103,-61v-2,8,-1,19,-6,24v-35,-1,-68,2,-69,37v-4,38,40,40,82,38v2,-13,0,-30,5,-39v7,0,18,-5,23,-1r0,40v12,1,29,-3,38,2v-4,8,-3,19,-10,24r-28,0r0,110xm49,-72v-1,48,52,56,87,46r0,-90v-46,-4,-89,8,-87,44","w":215},"'":{"d":"47,-180v-6,2,-18,2,-24,0v0,-20,-7,-46,-2,-63v9,1,23,-3,29,2","w":69},"(":{"d":"72,47v0,0,-49,-34,-49,-147v3,-115,44,-148,52,-147v4,6,11,10,14,18v0,0,-37,36,-37,129v0,97,38,123,37,131v-6,5,-9,13,-17,16","w":101},")":{"d":"13,31v-1,-9,37,-33,37,-131v0,-96,-38,-126,-37,-131v6,-5,8,-14,17,-16v0,0,48,34,48,147v-3,114,-44,150,-51,146","w":101},"*":{"d":"170,-136v-18,-3,-36,-24,-55,-27v16,-28,49,-7,63,6xm95,-186v-28,8,-36,-30,-28,-56v8,0,19,-6,24,-2v1,18,-3,48,4,58xm112,-179v-20,-25,14,-49,35,-52v4,7,12,10,14,19v-15,10,-40,19,-49,33xm81,-174v-10,32,-51,11,-63,-4v4,-7,4,-17,10,-22v17,8,31,24,53,26xm84,-156v19,26,-13,46,-35,53v-4,-7,-12,-10,-14,-20v15,-10,41,-19,49,-33xm107,-89v-7,-13,4,-48,-6,-60v30,-5,35,30,28,56","w":195},"+":{"d":"84,-20v-6,-15,0,-41,-2,-60v-15,-1,-36,3,-48,-2v1,-8,-2,-20,2,-24r46,0v1,-17,-3,-40,2,-54v9,0,19,-4,27,-2r0,56v17,1,40,-3,54,2v-3,8,-3,18,-8,24r-46,0v-1,19,3,45,-2,60r-25,0"},",":{"d":"13,42v2,-24,8,-57,16,-79v13,1,28,-2,39,1r-38,81v-5,2,-11,-2,-17,-3","w":88},"-":{"d":"119,-81v-24,4,-66,3,-89,0v1,-9,-2,-22,2,-27v30,2,68,-4,94,2","w":153},".":{"d":"26,0v-3,-7,-4,-29,0,-37v11,1,25,-1,35,1v-1,12,3,28,-2,36r-33,0","w":84},"\/":{"d":"14,27v18,-87,48,-178,69,-266v5,-6,21,-6,29,-5r-74,271r-24,0","w":124},"0":{"d":"24,-66r0,-57v0,-50,39,-70,79,-70v39,0,78,20,78,70r0,57v0,51,-39,70,-78,70v-40,0,-79,-19,-79,-70xm53,-117v-4,51,4,100,50,95v45,4,54,-45,49,-95v0,-34,-21,-50,-49,-50v-28,0,-50,16,-50,50","w":205},"1":{"d":"17,0v-4,-4,-3,-21,0,-26r50,0r0,-137v-12,-1,-28,3,-36,-2v-1,-8,-9,-18,-5,-24v22,2,51,-3,70,2r0,161v17,1,40,-3,54,2v-3,8,-4,18,-9,24r-124,0","w":157},"2":{"d":"30,0v-4,-4,-4,-12,-6,-18v32,-17,105,-63,105,-112v0,-22,-16,-36,-41,-36v-37,0,-47,30,-54,28v-6,-6,-17,-6,-19,-15v0,0,22,-40,76,-40v38,0,68,21,68,62v-9,71,-63,94,-84,105v30,2,67,-4,93,2v-3,8,-2,20,-9,24r-129,0","w":185},"3":{"d":"9,15v4,-8,12,-12,21,-15v0,0,19,31,56,31v28,0,51,-17,51,-50v0,-34,-36,-44,-77,-44v5,-9,-1,-24,17,-24v40,0,54,-17,54,-40v0,-29,-22,-40,-47,-40v-37,0,-48,27,-53,26v-6,-5,-14,-8,-19,-15v0,0,22,-37,72,-37v73,-9,104,90,43,119v28,11,42,30,39,64v0,42,-39,67,-79,67v-57,0,-78,-42,-78,-42","w":187},"4":{"d":"16,-11v-4,-4,-4,-13,-7,-19r114,-157v7,0,16,-4,22,-2r0,152v15,1,36,-3,47,2v-3,8,-4,18,-9,24r-38,0v-1,21,2,46,-1,66v-9,0,-20,4,-27,2r0,-68r-101,0xm46,-37r71,0r0,-99v-21,35,-47,66,-71,99","w":193},"5":{"d":"0,17v3,-9,13,-12,21,-16v0,0,19,31,57,31v28,-1,55,-19,51,-55v6,-48,-72,-50,-94,-35r-12,-15r0,-114v34,-4,88,-4,123,0v-3,8,-3,18,-8,24r-86,0r0,72v53,-11,106,13,106,82v0,42,-40,67,-79,67v-57,0,-79,-41,-79,-41","w":175},"6":{"d":"28,-66r0,-110v0,-41,37,-71,80,-71v51,3,73,36,72,43v-8,4,-12,11,-22,13v0,-1,-18,-30,-50,-30v-33,-3,-58,29,-51,77r-2,17v1,-3,12,-27,53,-27v43,-1,83,27,76,88v0,51,-38,70,-78,70v-39,0,-78,-19,-78,-70xm57,-116v-5,50,5,99,49,94v30,0,49,-17,49,-55v0,-58,-71,-58,-98,-39","w":203},"7":{"d":"30,51v24,-71,61,-143,89,-214r-106,-1v-2,-8,-8,-17,-6,-25v47,2,101,-4,144,2r3,14r-97,229v-9,2,-18,-4,-27,-5","w":163},"8":{"d":"22,-66v0,-24,14,-50,38,-58v-18,-7,-33,-29,-33,-53v0,-46,29,-70,73,-70v72,0,97,97,40,123v23,8,37,34,37,58v0,50,-37,70,-77,70v-40,0,-78,-20,-78,-70xm100,-136v27,0,43,-16,43,-41v0,-27,-16,-44,-43,-44v-28,0,-44,17,-44,44v0,25,16,41,44,41xm51,-66v0,29,21,44,49,44v27,0,48,-16,48,-44v0,-27,-21,-45,-48,-45v-28,0,-49,18,-49,45","w":199},"9":{"d":"23,17v5,-8,13,-13,22,-16v0,0,18,30,50,30v33,3,58,-29,51,-76r2,-17v0,0,-11,28,-53,28v-43,1,-83,-27,-76,-89v0,-50,38,-70,78,-70v39,0,78,20,78,70r0,109v0,42,-37,71,-80,71v-50,0,-72,-40,-72,-40xm48,-117v0,63,69,64,98,45v5,-50,-4,-99,-49,-95v-28,0,-49,16,-49,50","w":203},":":{"d":"61,-142v-8,4,-29,3,-37,0v1,-12,-3,-28,2,-36v11,1,27,-3,35,2r0,34xm26,0v-3,-7,-4,-29,0,-37v11,1,25,-1,35,1v-1,12,3,28,-2,36r-33,0","w":84},";":{"d":"63,-142v-8,4,-29,3,-37,0v1,-12,-3,-28,2,-36v11,1,27,-3,35,2r0,34xm13,42v2,-24,8,-57,16,-79v13,1,28,-2,39,1r-38,81v-5,2,-11,-2,-17,-3","w":88},"<":{"d":"21,-73v-1,-10,3,-25,7,-33r141,-73v4,5,3,23,0,29r-119,62v39,22,84,38,121,62v-1,9,2,22,-2,27"},"=":{"d":"158,-113v-38,3,-84,-1,-124,0v1,-8,-2,-20,2,-25v42,2,91,-4,129,2xm150,-50v-32,5,-84,3,-116,0v1,-8,-2,-20,2,-25v39,2,86,-4,121,2"},">":{"d":"29,1v-4,-5,-3,-23,0,-29r119,-62v-39,-22,-84,-38,-121,-62v1,-9,-2,-22,2,-27r148,74v1,10,-3,24,-7,33"},"?":{"d":"70,-67v-4,-14,-4,-44,0,-58v41,-1,62,-22,55,-70v0,-26,-16,-40,-41,-40v-29,-2,-40,18,-45,41v-8,-3,-22,-1,-26,-8v0,-40,31,-62,71,-62v54,-1,80,38,71,100v0,37,-26,60,-61,64v-1,11,2,26,-3,33r-21,0xm64,0v-2,-9,-2,-27,0,-36v11,1,25,-1,34,1v-1,11,3,27,-2,35r-32,0","w":177},"@":{"d":"153,73v-88,6,-136,-50,-130,-149v0,-102,45,-171,145,-171v98,-1,141,50,135,153v1,68,-32,108,-100,109r-15,-39v0,0,-10,28,-52,28v-33,0,-48,-27,-48,-54v0,-93,37,-132,79,-132v32,2,62,12,64,16r-16,129r8,27v39,-11,54,-47,51,-104v0,-78,-37,-107,-106,-107v-83,0,-119,65,-116,161v-2,81,40,105,105,110xm117,-57v0,19,7,35,30,35v15,0,40,-11,40,-11r13,-115v-43,-18,-81,-7,-83,91","w":324},"A":{"d":"5,0v23,-79,56,-164,85,-241v11,-1,23,-5,33,-3r84,244v-10,-1,-24,2,-31,-2r-20,-58r-100,0r-21,60r-30,0xm65,-87r82,0r-41,-126v-10,45,-28,83,-41,126","w":212},"B":{"d":"35,0v-5,-74,-4,-169,0,-243v69,1,143,-13,145,62v0,23,-12,42,-34,50v25,9,40,31,40,59v-2,78,-75,75,-151,72xm64,-144v40,-1,84,8,85,-36v-1,-44,-45,-34,-85,-35r0,71xm64,-28v46,1,90,4,92,-44v-2,-47,-46,-45,-92,-44r0,88","w":209},"C":{"d":"57,-87v-5,78,104,78,126,28v8,4,19,5,25,11v-12,35,-44,52,-88,52v-57,0,-94,-30,-94,-88r0,-73v-10,-103,148,-119,178,-40v-7,6,-17,9,-28,12v-22,-51,-126,-42,-119,30r0,68","w":225},"D":{"d":"35,0v-5,-74,-4,-169,0,-243r81,0v56,0,95,31,95,89r0,66v2,89,-85,93,-176,88xm64,-29v62,3,117,1,116,-62r0,-60v0,-63,-53,-67,-116,-63r0,185","w":236},"E":{"d":"35,0v-5,-74,-4,-169,0,-243v41,2,90,-4,127,2v-1,9,2,22,-2,27r-96,0r0,72v27,2,62,-4,85,2v-3,9,-2,22,-9,27r-76,0r0,84v31,2,71,-4,98,2v-2,9,-1,21,-6,27r-121,0","w":184},"F":{"d":"35,0v-5,-74,-4,-169,0,-243v40,2,87,-4,123,2v-1,9,1,20,-1,27r-93,0r0,75v29,2,64,-4,89,2v-3,9,-4,20,-9,27r-80,0v-2,35,4,78,-2,110r-27,0","w":173},"G":{"d":"26,-84r0,-73v-10,-103,148,-119,178,-40v-7,6,-17,9,-28,12v-22,-51,-126,-42,-119,30r0,68v0,43,26,63,63,63v40,0,67,-23,64,-71v-14,-1,-33,3,-44,-2v0,-9,-4,-19,-2,-27v24,2,55,-3,76,2v8,79,-21,127,-94,126v-57,0,-94,-30,-94,-88","w":235},"H":{"d":"35,0v-5,-73,-4,-168,0,-242v9,0,21,-4,29,-2r0,102r128,0v2,-32,-3,-71,2,-100v9,0,20,-4,28,-2r-2,244v-9,-1,-23,3,-28,-2r0,-111r-128,0v-2,36,4,80,-2,113r-27,0","w":255},"I":{"d":"35,0v-5,-73,-4,-168,0,-242v9,0,21,-4,29,-2r-2,244r-27,0","w":97},"J":{"d":"103,-61v5,59,-65,83,-102,50v5,-7,6,-19,14,-23v24,18,56,15,58,-30r2,-178v9,0,20,-4,28,-2r0,183","w":135},"K":{"d":"35,0v-5,-73,-4,-168,0,-242v9,0,21,-4,29,-2r0,102v7,0,15,1,20,-1r77,-98v13,0,30,-6,40,-2r-97,114v26,26,45,58,68,87v2,6,18,16,34,16v-4,9,3,29,-13,27v-27,0,-44,-24,-48,-29r-63,-86v-4,-2,-12,-1,-18,-1v-2,37,4,82,-2,115r-27,0","w":213},"L":{"d":"35,0v-5,-73,-4,-168,0,-242v9,0,21,-4,29,-2r0,215v34,2,75,-4,105,2v-3,9,-4,20,-9,27r-125,0","w":170},"M":{"d":"35,0v-5,-73,-4,-168,0,-242v9,0,21,-4,29,-2r81,148r81,-146v10,0,23,-4,31,-2r-1,244v-9,-1,-23,3,-28,-2r0,-190v-20,44,-45,82,-67,124v-6,3,-24,4,-31,0v-22,-42,-48,-79,-66,-124r-2,192r-27,0","w":291},"N":{"d":"35,0v-5,-73,-4,-168,0,-242v9,0,21,-4,29,-2r117,176r9,17r2,-191v9,0,21,-4,29,-2r-2,244v-9,-1,-23,2,-29,-2r-117,-177r-9,-17r-2,196r-27,0","w":254},"O":{"d":"26,-84r0,-73v0,-59,38,-90,94,-90v57,0,95,31,95,90r0,73v0,58,-38,88,-95,88v-56,0,-94,-30,-94,-88xm57,-87v0,43,27,63,63,63v37,0,64,-20,64,-63r0,-68v0,-42,-27,-63,-64,-63v-36,0,-63,21,-63,63r0,68","w":240},"P":{"d":"33,-241v71,-9,159,-5,153,70v0,42,-25,78,-81,78v-19,0,-37,-5,-43,-20v3,33,5,81,0,113v-9,-1,-23,3,-29,-2r0,-239xm64,-126v38,14,93,4,90,-44v-2,-51,-44,-45,-90,-45r0,89","w":199},"Q":{"d":"26,-84r0,-73v0,-59,38,-90,94,-90v57,0,95,31,95,90r0,73v0,57,-36,87,-90,88v-8,12,0,41,18,37v10,1,24,-2,31,2v-1,9,3,24,-2,30v-57,12,-100,-37,-57,-69v-53,-1,-89,-32,-89,-88xm57,-87v0,43,27,63,63,63v37,0,64,-20,64,-63r0,-68v0,-42,-27,-63,-64,-63v-36,0,-63,21,-63,63r0,68","w":240},"R":{"d":"33,-241v70,-9,153,-3,149,70v0,67,-70,70,-70,70v28,24,41,69,84,75v-4,10,2,28,-13,27v-25,0,-42,-22,-48,-30r-59,-71r-12,0v-2,32,4,72,-2,100v-9,-1,-23,3,-29,-2r0,-239xm64,-128v44,1,86,3,88,-43v-2,-46,-43,-45,-88,-44r0,87","w":209},"S":{"d":"163,-66v-5,83,-96,86,-146,46v7,-6,8,-17,18,-20v29,22,97,27,97,-26v0,-58,-108,-32,-108,-111v0,-44,33,-70,72,-70v55,5,75,14,49,42v-26,-18,-95,-19,-90,26v0,54,108,30,108,113","w":182},"T":{"d":"76,0r-1,-214v-22,-2,-51,3,-69,-2v1,-9,-2,-22,2,-27r170,2v-3,9,-4,20,-9,27r-64,0r-2,214r-27,0","w":178},"U":{"d":"31,-84r2,-158v9,0,20,-4,28,-2r0,157v0,43,28,63,64,63v38,0,64,-20,64,-63r1,-155v9,0,21,-4,29,-2r0,160v0,58,-36,88,-94,88v-57,0,-94,-30,-94,-88","w":250},"V":{"d":"87,-5r-81,-236v10,-1,22,-5,31,-3r70,215v20,-73,46,-140,68,-210v8,-4,25,-6,35,-5r-89,247v-11,-3,-25,-3,-34,-8","w":213},"W":{"d":"87,-3r-82,-236v7,-4,23,-6,32,-5r63,207r43,-161v1,-14,-3,-33,2,-44v9,0,21,-4,29,-2v-4,87,30,133,40,207r60,-204v11,-1,24,-5,34,-3r-81,245v-8,4,-23,-2,-31,-6r-39,-145r-43,153","w":313},"X":{"d":"11,0v18,-42,51,-83,74,-124v-21,-39,-51,-78,-67,-117v10,-1,21,-5,30,-3r56,100v16,-34,35,-66,54,-97v11,-1,25,-5,35,-3r-70,120v23,41,55,82,73,124v-11,-1,-27,3,-35,-2r-57,-103r-60,105r-33,0","w":207},"Y":{"d":"79,0v-6,-30,0,-73,-2,-107r-73,-132v8,-5,25,-6,35,-5r54,110r53,-107v11,-1,25,-5,35,-3r-73,137v-2,35,4,76,-2,107r-27,0","w":185},"Z":{"d":"22,0v-4,-4,-4,-13,-6,-19r116,-195v-36,-2,-79,4,-111,-2v2,-9,0,-21,5,-27v47,2,102,-4,145,2r0,17r-116,195v37,2,82,-4,115,2v-1,9,2,22,-2,27r-146,0","w":189},"[":{"d":"35,42v-5,-87,-4,-197,0,-285v20,2,47,-4,63,2v-3,7,-3,17,-9,22r-28,0r0,237v10,1,24,-2,30,2v1,7,7,16,6,22r-62,0","w":110},"\\":{"d":"85,27r-71,-269v8,0,17,-4,24,-2r73,269v-5,5,-18,1,-26,2","w":123},"]":{"d":"14,42v-1,-6,3,-20,8,-24r28,0r0,-237v-10,0,-23,1,-31,-1v-1,-8,-7,-16,-5,-23v20,2,47,-3,64,2r-2,283r-62,0","w":110},"^":{"d":"31,-97v-6,4,-25,3,-30,0r74,-144v10,-1,22,-5,31,-3r73,149v-9,-1,-23,3,-29,-2r-60,-120","w":181},"_":{"d":"14,26v-2,-7,-2,-20,0,-26r174,2v-1,8,2,20,-2,24r-172,0","w":200},"`":{"d":"97,-205v-18,-12,-30,-32,-46,-46v12,-2,31,-2,43,0v6,13,19,26,21,39","w":180},"a":{"d":"28,-164v32,-32,122,-24,117,37v1,43,-5,93,9,123v-4,5,-20,7,-26,4r-10,-26v-10,37,-106,46,-104,-23v0,-53,53,-52,102,-56v10,-52,-40,-63,-72,-40v-8,-4,-10,-13,-16,-19xm45,-48v-4,37,63,23,71,16r0,-61v-11,35,-66,-1,-71,45","w":170},"b":{"d":"29,-2v-5,-78,-4,-178,0,-256v9,0,21,-6,27,-2r-2,106v3,-7,14,-28,50,-28v32,0,56,21,56,63r0,61v8,58,-73,72,-108,53xm56,-28v0,0,17,6,35,6v43,4,42,-48,40,-92v0,-49,-42,-46,-75,-34r0,120","w":181},"c":{"d":"91,4v-70,1,-70,-55,-70,-124v0,-67,111,-86,132,-25v-6,6,-16,7,-26,9v-15,-33,-77,-25,-77,22v0,44,-4,96,40,92v22,0,33,-8,39,-19v10,2,19,4,25,9v-9,24,-32,36,-63,36","w":169},"d":{"d":"22,-59r0,-61v-4,-57,64,-77,105,-50v-2,-25,-5,-63,0,-88v9,0,21,-6,27,-2r0,225v2,11,11,24,7,34v-8,0,-19,5,-24,1r-10,-26v-18,47,-113,37,-105,-33xm50,-114v-3,43,-1,92,39,92v9,0,36,-10,36,-10v-4,-49,18,-126,-37,-124v-22,0,-38,14,-38,42","w":182},"e":{"d":"21,-58r0,-60v0,-41,28,-64,69,-64v46,0,63,28,63,53v0,36,-26,53,-60,53v-35,0,-44,-18,-45,-20v2,35,3,74,42,74v24,0,31,-10,42,-19v7,3,18,3,23,9v-9,23,-33,36,-63,36v-44,0,-71,-21,-71,-62xm50,-114v-3,13,12,12,35,12v20,0,37,-6,37,-28v0,-13,-9,-26,-33,-26v-25,0,-39,14,-39,42","w":171},"f":{"d":"38,71v-7,-68,0,-150,-2,-223v-8,-1,-20,2,-25,-2v1,-8,-2,-20,2,-24r23,0v-13,-74,41,-117,101,-88v-3,10,-10,16,-16,23v-23,-10,-57,-2,-56,26r0,39v18,2,43,-3,58,2v-3,8,-2,20,-9,24r-49,0v-4,77,10,171,-9,234","w":116},"g":{"d":"36,36v8,1,6,20,53,21v26,0,40,-12,40,-25v1,-19,-24,-23,-47,-21v-48,2,-57,-43,-29,-63v0,0,-39,-10,-39,-62v-1,-56,43,-66,104,-66v13,0,30,-10,41,-6v1,7,5,15,3,22r-25,7v44,42,3,132,-74,108v-7,13,0,38,19,34v44,-4,77,12,75,48v-1,66,-123,62,-143,16v4,-8,15,-8,22,-13xm84,-72v28,0,42,-14,42,-42v0,-29,-14,-42,-42,-42v-25,0,-41,14,-41,42v0,27,14,42,41,42","w":174},"h":{"d":"29,0v-5,-78,-4,-179,0,-258v9,0,21,-6,27,-2r-2,106v3,-7,16,-28,52,-28v32,0,56,21,56,62v-2,39,4,85,-2,120v-9,-1,-22,2,-27,-2r0,-112v0,-50,-44,-45,-77,-34v-2,48,4,104,-2,148r-25,0","w":187},"i":{"d":"58,-221v-7,4,-27,3,-33,0v1,-10,-3,-25,2,-31v10,1,23,-2,31,1r0,30xm29,0v-4,-52,-4,-124,0,-176v9,0,21,-6,27,-2r-2,178r-25,0","w":83},"j":{"d":"58,-221v-7,4,-27,3,-33,0v1,-10,-3,-25,2,-31v10,1,23,-2,31,1r0,30xm27,14r2,-190v9,0,21,-6,27,-2r0,194v6,62,-65,86,-101,51v5,-7,7,-16,13,-21v14,14,63,18,59,-32","w":83},"k":{"d":"29,0v-5,-78,-4,-179,0,-258v9,0,21,-6,27,-2r0,147r3,0r54,-63v13,0,30,-6,40,-2v-23,23,-42,50,-67,71v29,25,33,78,79,84v-4,8,2,26,-12,25v-28,0,-41,-20,-48,-30r-46,-72r-3,0r-1,100r-26,0","w":171},"l":{"d":"27,-40r1,-218v9,0,21,-6,27,-2r0,219v0,17,14,14,20,18v-3,8,1,23,-9,24v-10,0,-39,-3,-39,-41","w":88},"m":{"d":"30,0v-9,-52,8,-129,-11,-174v6,-4,20,-7,26,-4r10,25v2,-5,12,-29,51,-29v20,0,36,9,44,26v4,-7,18,-26,53,-26v32,0,55,21,55,62v-2,39,4,85,-2,120v-9,-1,-22,2,-27,-2v-5,-55,20,-156,-38,-154v-8,0,-29,6,-37,8v7,40,6,104,2,148v-9,-1,-22,2,-27,-2v-5,-54,20,-154,-35,-154v-8,0,-30,6,-37,8v-2,48,4,104,-2,148r-25,0","w":284},"n":{"d":"30,0v-9,-52,8,-129,-11,-174v6,-4,20,-7,26,-4r10,25v2,-5,12,-29,51,-29v32,0,57,21,57,62v-2,39,4,85,-2,120v-9,-1,-22,2,-27,-2r0,-112v-1,-49,-44,-46,-77,-34v-2,48,4,104,-2,148r-25,0","w":189},"o":{"d":"21,-58r0,-62v0,-40,30,-62,69,-62v40,0,69,22,69,62r0,62v0,40,-29,62,-69,62v-39,0,-69,-22,-69,-62xm50,-114v-1,44,-6,92,40,92v46,0,42,-47,41,-92v0,-28,-15,-42,-41,-42v-26,0,-40,14,-40,42","w":180},"p":{"d":"56,-8v0,26,4,62,-1,86v-9,0,-19,4,-27,2r0,-220v-1,-12,-11,-26,-7,-36v8,0,19,-6,24,-2r10,25v20,-44,112,-37,106,33r0,62v3,55,-64,78,-105,50xm57,-148v4,49,-19,129,37,126v41,4,40,-49,38,-92v0,-50,-42,-46,-75,-34","w":182},"q":{"d":"22,-59r0,-61v-8,-59,74,-72,107,-51v8,-1,17,-7,25,-5r-2,254v-9,0,-19,4,-27,2r2,-104v-3,7,-14,28,-50,28v-32,0,-55,-21,-55,-63xm50,-114v-2,43,-2,92,39,92v8,0,30,-6,36,-8v-4,-49,19,-128,-37,-126v-22,0,-38,15,-38,42","w":181},"r":{"d":"30,0v-9,-52,8,-129,-11,-174v6,-4,20,-7,26,-4r10,25v-1,-4,20,-35,52,-27v-3,10,-3,24,-8,32v-12,-4,-29,-4,-42,0v-2,48,4,104,-2,148r-25,0","w":111},"s":{"d":"136,-50v3,65,-85,65,-119,36v6,-6,9,-15,16,-20v21,15,73,23,74,-16v0,-36,-89,-17,-89,-79v0,-55,77,-68,112,-37v-6,6,-8,16,-17,19v-20,-16,-67,-11,-65,18v0,40,88,16,88,79","w":152},"t":{"d":"133,-13v-36,35,-105,16,-101,-50r0,-89v-7,-1,-17,2,-21,-2v1,-8,-2,-20,2,-24r20,0v2,-12,1,-29,6,-38v7,0,16,-4,22,-2r0,40v19,2,46,-4,61,2v-3,8,-2,20,-9,24r-52,0v3,49,-15,127,32,130v16,0,23,-13,29,-11","w":136},"u":{"d":"26,-59r1,-117v9,0,21,-6,27,-2r0,113v-3,52,49,46,75,33v2,-47,-4,-101,2,-144v9,0,21,-6,27,-2v3,58,-8,130,9,174v-4,5,-20,7,-26,4r-10,-26v-18,47,-113,37,-105,-33","w":186},"v":{"d":"72,-3v-27,-52,-43,-116,-67,-171v7,-4,25,-7,31,-4r48,148r48,-146v9,0,23,-6,30,-2r-68,181","w":166},"w":{"d":"71,-2v-25,-55,-43,-116,-66,-172v7,-4,24,-7,31,-4r48,148v12,-49,34,-87,36,-146v9,0,21,-6,27,-2v-5,65,21,97,32,148r49,-146v9,0,23,-6,30,-2r-68,181v-9,-3,-20,-3,-27,-8r-32,-102v-10,38,-20,77,-36,110","w":262},"x":{"d":"11,0v13,-31,42,-60,60,-90v-17,-29,-44,-57,-57,-86v9,0,22,-6,29,-2r44,69v15,-22,27,-47,44,-67v10,0,24,-6,32,-2r-59,87v19,30,47,60,61,91v-11,-1,-26,2,-33,-2r-45,-70v-16,23,-29,51,-47,72r-29,0","w":175},"y":{"d":"-1,47v4,-4,11,11,31,10v24,3,36,-40,44,-63v-3,0,-5,-2,-7,-4r-62,-164v7,-4,25,-7,32,-4r48,148r47,-146v9,0,23,-6,30,-2r-75,214v-11,47,-68,62,-99,30","w":167},"z":{"d":"21,0v-6,-2,-4,-12,-6,-18r87,-134v-27,-2,-62,4,-85,-2v3,-8,1,-20,7,-24v37,2,81,-4,114,2r0,17r-88,133v28,2,64,-4,88,2v-1,8,2,20,-2,24r-115,0","w":155},"{":{"d":"49,-17v1,-44,5,-76,-35,-84v3,-7,3,-19,9,-23v30,-8,26,-30,26,-61v-1,-39,31,-64,77,-58v-3,8,-4,17,-9,23v-30,-1,-45,22,-41,58v0,24,-11,44,-31,52v31,12,33,45,31,87v-1,31,21,39,43,43v1,8,9,17,5,23v-47,2,-75,-21,-75,-60","w":138},"|":{"d":"33,79v-7,-105,1,-225,-2,-335v6,-4,21,-5,29,-4r-2,339r-25,0","w":92},"}":{"d":"90,-185v-2,39,1,56,34,65v-3,7,-3,17,-9,22v-35,10,-23,44,-25,81v2,37,-34,67,-77,58v3,-7,3,-18,8,-23v72,7,14,-113,73,-128v-26,-10,-33,-35,-31,-69v1,-31,-22,-39,-44,-43v-1,-7,-7,-16,-5,-22v47,-2,76,20,76,59","w":137},"~":{"d":"50,-97v-6,4,-23,3,-28,0v0,-42,23,-59,49,-59v38,0,46,35,69,35v23,0,24,-19,26,-34v8,1,21,-2,26,2v0,42,-22,59,-49,59v-38,0,-46,-35,-69,-35v-20,0,-24,17,-24,32","w":211}}});