/* --------- /javascripts/jquery.js --------- */ 

(function(){if(window.jQuery)
var _jQuery=window.jQuery;var jQuery=window.jQuery=function(selector,context){return this instanceof jQuery?this.init(selector,context):new jQuery(selector,context);};if(window.$)
var _$=window.$;window.$=jQuery;var quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;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);else{this[0]=elem;this.length=1;return this;}
else
selector=[];}}else
return new jQuery(context).find(selector);}else if(jQuery.isFunction(selector))
return new jQuery(document)[jQuery.fn.ready?"ready":"load"](selector);return this.setArray(selector.constructor==Array&&selector||(selector.jquery||selector.length&&selector!=window&&!selector.nodeType&&selector[0]!=undefined&&selector[0].nodeType)&&jQuery.makeArray(selector)||[selector]);},jquery:"@VERSION",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;this.each(function(i){if(this==elem)
ret=i;});return ret;},attr:function(name,value,type){var options=name;if(name.constructor==String)
if(value==undefined)
return this.length&&jQuery[type||"attr"](this[0],name)||undefined;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){return this.attr(key,value,"curCSS");},text:function(text){if(typeof text!="object"&&text!=null)
return this.empty().append(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){this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,true,function(elem){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(){return this.outerHTML?jQuery(this.outerHTML)[0]: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){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){return this.pushStack(selector.constructor==String&&jQuery.multiFilter(selector,this,true)||jQuery.grep(this,function(elem){return selector.constructor==Array||selector.jquery?jQuery.inArray(elem,selector)<0:elem!=selector;}));},add:function(selector){return this.pushStack(jQuery.merge(this.get(),selector.constructor==String?jQuery(selector).get():selector.length!=undefined&&(!selector.nodeName||jQuery.nodeName(selector,"form"))?selector:[selector]));},is:function(selector){return selector?jQuery.multiFilter(selector,this).length>0:false;},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,"");}}else
return this.each(function(){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=value.constructor==Array?value:[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.length?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);},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(document.createElement("tbody"));var scripts=jQuery([]);jQuery.each(elems,function(){var elem=clone?this.cloneNode(true):this;if(jQuery.nodeName(elem,"script")){if(scripts.length)
scripts=scripts.add(elem);else
evalScript(0,elem);}else{if(elem.nodeType==1)
scripts=scripts.add(jQuery("script",elem).remove());callback.call(obj,elem);}});scripts.each(evalScript);});}};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);}
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]||{};}
if(length==1){target=this;i=0;}
for(;i<length;i++)
if((options=arguments[i])!=null)
for(var name in options){if(target==options[name])
continue;if(deep&&typeof options[name]=="object"&&target[name]&&!options[name].nodeType)
jQuery.extend(target[name],options[name]);else if(options[name]!=undefined)
target[name]=options[name];}
return target;};var expando="jQuery"+(new Date()).getTime(),uuid=0,windowData={};var exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i;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&&/function/i.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.appendChild(script);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){if(args){if(object.length==undefined)
for(var name in object)
callback.apply(object[name],args);else
for(var i=0,length=object.length;i<length;i++)
if(callback.apply(object[i],args)===false)
break;}else{if(object.length==undefined)
for(var name in object)
callback.call(object[name],name,object[name]);else
for(var i=0,length=object.length,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(!jQuery.className.has(elem.className,className))
elem.className+=(elem.className?" ":"")+className;});},remove:function(elem,classNames){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){for(var name in options){elem.style["old"+name]=elem.style[name];elem.style[name]=options[name];}
callback.call(elem);for(var name in options)
elem.style[name]=elem.style["old"+name];},css:function(elem,name){if(name=="height"||name=="width"){var old={},height,width;jQuery.each(["Top","Bottom","Right","Left"],function(){old["padding"+this]=0;old["border"+this+"Width"]=0;});jQuery.swap(elem,old,function(){if(jQuery(elem).is(":visible")){height=elem.offsetHeight;width=elem.offsetWidth;}else{elem=jQuery(elem.cloneNode(true)).find(":radio").removeAttr("checked").end().css({visibility:"hidden",position:"absolute",display:"block",right:"0",left:"0"}).appendTo(elem.parentNode)[0];var position=jQuery.css(elem.parentNode,"position")||"static";if(position=="static")
elem.parentNode.style.position="relative";height=elem.clientHeight;width=elem.clientWidth;if(position=="static")
elem.parentNode.style.position="static";elem.parentNode.removeChild(elem);}});return name=="height"?height:width;}
return jQuery.curCSS(elem,name);},curCSS:function(elem,name,force){var ret;function color(elem){if(!jQuery.browser.safari)
return false;var ret=document.defaultView.getComputedStyle(elem,null);return!ret||ret.getPropertyValue("color")=="";}
if(name=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(elem.style,"opacity");return ret==""?"1":ret;}
if(name.match(/float/i))
name=styleFloat;if(!force&&elem.style[name])
ret=elem.style[name];else if(document.defaultView&&document.defaultView.getComputedStyle){if(name.match(/float/i))
name="float";name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var getComputedStyle=document.defaultView.getComputedStyle(elem,null);if(getComputedStyle&&!color(elem))
ret=getComputedStyle.getPropertyValue(name);else{var swap=[],stack=[];for(var a=elem;a&&color(a);a=a.parentNode)
stack.unshift(a);for(var i=0;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":(getComputedStyle&&getComputedStyle.getPropertyValue(name))||"";for(var 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 style=elem.style.left,runtimeStyle=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;elem.style.left=ret||0;ret=elem.style.pixelLeft+"px";elem.style.left=style;elem.runtimeStyle.left=runtimeStyle;}}
return ret;},clean:function(elems,context){var ret=[];context=context||document;jQuery.each(elems,function(i,elem){if(!elem)
return;if(elem.constructor==Number)
elem=elem.toString();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)$/i)?all:front+"></"+tag+">";});var tags=jQuery.trim(elem).toLowerCase(),div=context.createElement("div");var wrap=!tags.indexOf("<opt")&&[1,"<select>","</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 i=tbody.length-1;i>=0;--i)
if(jQuery.nodeName(tbody[i],"tbody")&&!tbody[i].childNodes.length)
tbody[i].parentNode.removeChild(tbody[i]);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){var fix=jQuery.isXMLDoc(elem)?{}:jQuery.props;if(name=="selected"&&jQuery.browser.safari)
elem.parentNode.selectedIndex;if(fix[name]){if(value!=undefined)
elem[fix[name]]=value;return elem[fix[name]];}else if(jQuery.browser.msie&&name=="style")
return jQuery.attr(elem.style,"cssText",value);else if(value==undefined&&jQuery.browser.msie&&jQuery.nodeName(elem,"form")&&(name=="action"||name=="method"))
return elem.getAttributeNode(name).nodeValue;else if(elem.tagName){if(value!=undefined){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode)
throw"type property can't be changed";elem.setAttribute(name,value);}
if(jQuery.browser.msie&&/href|src/.test(name)&&!jQuery.isXMLDoc(elem))
return elem.getAttribute(name,2);return elem.getAttribute(name);}else{if(name=="opacity"&&jQuery.browser.msie){if(value!=undefined){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+
(parseFloat(value).toString()=="NaN"?"":"alpha(opacity="+value*100+")");}
return elem.filter?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100).toString():"";}
name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(value!=undefined)
elem[name]=value;return elem[name];}},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"");},makeArray:function(array){var ret=[];if(typeof array!="array")
for(var i=0,length=array.length;i<length;i++)
ret.push(array[i]);else
ret=array.slice(0);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){if(jQuery.browser.msie){for(var i=0;second[i];i++)
if(second[i].nodeType!=8)
first.push(second[i]);}else
for(var i=0;second[i];i++)
first.push(second[i]);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){if(typeof callback=="string")
callback=eval("false||function(a,i){return "+callback+"}");var ret=[];for(var i=0,length=elems.length;i<length;i++)
if(!inv&&callback(elems[i],i)||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&&value!=undefined){if(value.constructor!=Array)
value=[value];ret=ret.concat(value);}}
return 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,innerHTML:"innerHTML",className:"className",value:"value",disabled:"disabled",checked:"checked",readonly:"readOnly",selected:"selected",maxlength:"maxLength",selectedIndex:"selectedIndex"}});jQuery.each({parent:"elem.parentNode",parents:"jQuery.dir(elem,'parentNode')",next:"jQuery.nth(elem,2,'nextSibling')",prev:"jQuery.nth(elem,2,'previousSibling')",nextAll:"jQuery.dir(elem,'nextSibling')",prevAll:"jQuery.dir(elem,'previousSibling')",siblings:"jQuery.sibling(elem.parentNode.firstChild,elem)",children:"jQuery.sibling(elem.firstChild)",contents:"jQuery.nodeName(elem,'iframe')?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes)"},function(name,fn){fn=eval("false||function(elem){return "+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,"");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);});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(document.body["scroll"+name],document.body["offset"+name]):size==undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,size.constructor==String?size:size+"px");};});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:{"":"m[2]=='*'||jQuery.nodeName(a,m[2])","#":"a.getAttribute('id')==m[2]",":":{lt:"i<m[3]-0",gt:"i>m[3]-0",nth:"m[3]-0==i",eq:"m[3]-0==i",first:"i==0",last:"i==r.length-1",even:"i%2==0",odd:"i%2","first-child":"a.parentNode.getElementsByTagName('*')[0]==a","last-child":"jQuery.nth(a.parentNode.lastChild,1,'previousSibling')==a","only-child":"!jQuery.nth(a.parentNode.lastChild,2,'previousSibling')",parent:"a.firstChild",empty:"!a.firstChild",contains:"(a.textContent||a.innerText||jQuery(a).text()||'').indexOf(m[3])>=0",visible:'"hidden"!=a.type&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden"',hidden:'"hidden"==a.type||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden"',enabled:"!a.disabled",disabled:"a.disabled",checked:"a.checked",selected:"a.selected||jQuery.attr(a,'selected')",text:"'text'==a.type",radio:"'radio'==a.type",checkbox:"'checkbox'==a.type",file:"'file'==a.type",password:"'password'==a.type",submit:"'submit'==a.type",image:"'image'==a.type",reset:"'reset'==a.type",button:'"button"==a.type||jQuery.nodeName(a,"button")',input:"/input|select|textarea|button/i.test(a.nodeName)",has:"jQuery.find(m[3],a).length",header:"/h\\d/i.test(a.nodeName)",animated:"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)
context=null;context=context||document;var ret=[context],done=[],last;while(t&&last!=t){var r=[];last=t;t=jQuery.trim(t);var foundToken=false;var re=quickChild;var m=re.exec(t);if(m){var 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.toUpperCase()))
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 nodeName=m[2],merge={};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.toUpperCase()){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=jQuery.filter(m[3],r,true).r;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])&&"n+"+m[3]||m[3]),first=(test[1]||1)-0,last=test[2]-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==1){if(last==0||node.nodeIndex==last)
add=true;}else if((node.nodeIndex+last)%first==0)
add=true;if(add^not)
tmp.push(node);}
r=tmp;}else{var f=jQuery.expr[m[1]];if(typeof f!="string")
f=jQuery.expr[m[1]][m[2]];f=eval("false||function(a,i){return "+f+"}");r=jQuery.grep(r,f,not);}}
return{r:r,t:t};},dir:function(elem,dir){var matched=[];var 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&&(!elem||n!=elem))
r.push(n);}
return r;}});jQuery.event={add:function(element,type,handler,data){if(jQuery.browser.msie&&element.setInterval!=undefined)
element=window;if(!handler.guid)
handler.guid=this.guid++;if(data!=undefined){var fn=handler;handler=function(){return fn.apply(this,arguments);};handler.data=data;handler.guid=fn.guid;}
var parts=type.split(".");type=parts[0];handler.type=parts[1];var events=jQuery.data(element,"events")||jQuery.data(element,"events",{});var handle=jQuery.data(element,"handle")||jQuery.data(element,"handle",function(){var val;if(typeof jQuery=="undefined"||jQuery.event.triggered)
return val;val=jQuery.event.handle.apply(element,arguments);return val;});var handlers=events[type];if(!handlers){handlers=events[type]={};if(element.addEventListener)
element.addEventListener(type,handle,false);else
element.attachEvent("on"+type,handle);}
handlers[handler.guid]=handler;this.global[type]=true;},guid:1,global:{},remove:function(element,type,handler){var events=jQuery.data(element,"events"),ret,index;if(typeof type=="string"){var parts=type.split(".");type=parts[0];}
if(events){if(type&&type.type){handler=type.handler;type=type.type;}
if(!type){for(type in events)
this.remove(element,type);}else 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(element.removeEventListener)
element.removeEventListener(type,jQuery.data(element,"handle"),false);else
element.detachEvent("on"+type,jQuery.data(element,"handle"));ret=null;delete events[type];}}
for(ret in events)break;if(!ret){jQuery.removeData(element,"events");jQuery.removeData(element,"handle");}}},trigger:function(type,data,element,donative,extra){data=jQuery.makeArray(data||[]);if(!element){if(this.global[type])
jQuery("*").add([window,document]).trigger(type,data);}else{var val,ret,fn=jQuery.isFunction(element[type]||null),event=!data[0]||!data[0].preventDefault;if(event)
data.unshift(this.fix({type:type,target:element}));data[0].type=type;if(jQuery.isFunction(jQuery.data(element,"handle")))
val=jQuery.data(element,"handle").apply(element,data);if(!fn&&element["on"+type]&&element["on"+type].apply(element,data)===false)
val=false;if(event)
data.shift();if(extra&&extra.apply(element,data)===false)
val=false;if(fn&&donative!==false&&val!==false&&!(jQuery.nodeName(element,'a')&&type=="click")){this.triggered=true;element[type]();}
this.triggered=false;}
return val;},handle:function(event){var val;event=jQuery.event.fix(event||window.event||{});var parts=event.type.split(".");event.type=parts[0];var handlers=jQuery.data(this,"events")&&jQuery.data(this,"events")[event.type],args=Array.prototype.slice.call(arguments,1);args.unshift(event);for(var j in handlers){var handler=handlers[j];args[0].handler=handler;args[0].data=handler.data;if(!parts[1]||handler.type==parts[1]){var ret=handler.apply(this,args);if(val!==false)
val=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}}
if(jQuery.browser.msie)
event.target=event.preventDefault=event.stopPropagation=event.handler=event.data=null;return val;},fix:function(event){var originalEvent=event;event=jQuery.extend({},originalEvent);event.preventDefault=function(){if(originalEvent.preventDefault)
originalEvent.preventDefault();originalEvent.returnValue=false;};event.stopPropagation=function(){if(originalEvent.stopPropagation)
originalEvent.stopPropagation();originalEvent.cancelBubble=true;};if(!event.target&&event.srcElement)
event.target=event.srcElement;if(jQuery.browser.safari&&event.target.nodeType==3)
event.target=originalEvent.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.clientLeft||0);}
if(!event.which&&(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;}};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){return this.each(function(){jQuery.event.add(this,type,function(event){jQuery(this).unbind(event);return(fn||data).apply(this,arguments);},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){if(this[0])
return jQuery.event.trigger(type,data,this[0],false,fn);},toggle:function(){var args=arguments;return this.click(function(event){this.lastToggle=0==this.lastToggle?1:0;event.preventDefault();return args[this.lastToggle].apply(this,[event])||false;});},hover:function(fnOver,fnOut){function handleHover(event){var parent=event.relatedTarget;while(parent&&parent!=this)try{parent=parent.parentNode;}catch(error){parent=this;};if(parent==this)return false;return(event.type=="mouseover"?fnOver:fnOut).apply(this,[event]);}
return this.mouseover(handleHover).mouseout(handleHover);},ready:function(fn){bindReady();if(jQuery.isReady)
fn.apply(document,[jQuery]);else
jQuery.readyList.push(function(){return fn.apply(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.apply(document);});jQuery.readyList=null;}
if(jQuery.browser.mozilla||jQuery.browser.opera)
document.removeEventListener("DOMContentLoaded",jQuery.ready,false);}}});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 readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(jQuery.browser.mozilla||jQuery.browser.opera)
document.addEventListener("DOMContentLoaded",jQuery.ready,false);else(function(){try{if(jQuery.browser.msie||document.readyState!="loaded"&&document.readyState!="complete")
document.documentElement.doScroll("left");}catch(error){return setTimeout(arguments.callee,0);}
jQuery.ready();})();jQuery.event.add(window,"load",jQuery.ready);}
if(jQuery.browser.msie)
jQuery(window).bind("unload",function(){$("*").add([document,window]).unbind();});jQuery.fn.extend({load:function(url,params,callback){if(jQuery.isFunction(url))
return this.bind("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,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);setTimeout(function(){self.each(callback,[res.responseText,status,res]);},13);}});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=(new Date).getTime();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:{global:true,type:"GET",timeout:0,contentType:"application/x-www-form-urlencoded",processData:true,async:true,data:null},lastModified:{},ajax:function(s){var jsonp,jsre=/=(\?|%3F)/g,status,data;s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));if(s.data&&s.processData&&typeof s.data!="string")
s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(s.type.toLowerCase()=="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&&jsre.test(s.data)||s.url.match(jsre))){jsonp="jsonp"+jsc++;if(s.data)
s.data=(s.data+"").replace(jsre,"="+jsonp);s.url=s.url.replace(jsre,"="+jsonp);s.dataType="script";window[jsonp]=function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp];}catch(e){}};}
if(s.dataType=="script"&&s.cache==null)
s.cache=false;if(s.cache===false&&s.type.toLowerCase()=="get")
s.url+=(s.url.match(/\?/)?"&":"?")+"_="+(new Date()).getTime();if(s.data&&s.type.toLowerCase()=="get"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;}
if(s.global&&!jQuery.active++)
jQuery.event.trigger("ajaxStart");if(!s.url.indexOf("http")&&s.dataType=="script"){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;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;}
var requestDone=false;var xml=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();xml.open(s.type,s.url,s.async);if(s.data)
xml.setRequestHeader("Content-Type",s.contentType);if(s.ifModified)
xml.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xml.setRequestHeader("X-Requested-With","XMLHttpRequest");if(s.beforeSend)
s.beforeSend(xml);if(s.global)
jQuery.event.trigger("ajaxSend",[xml,s]);var onreadystatechange=function(isTimeout){if(!requestDone&&xml&&(xml.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;}
status=isTimeout=="timeout"&&"timeout"||!jQuery.httpSuccess(xml)&&"error"||s.ifModified&&jQuery.httpNotModified(xml,s.url)&&"notmodified"||"success";if(status=="success"){try{data=jQuery.httpData(xml,s.dataType);}catch(e){status="parsererror";}}
if(status=="success"){var modRes;try{modRes=xml.getResponseHeader("Last-Modified");}catch(e){}
if(s.ifModified&&modRes)
jQuery.lastModified[s.url]=modRes;if(!jsonp)
success();}else
jQuery.handleError(s,xml,status);complete();if(s.async)
xml=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)
setTimeout(function(){if(xml){xml.abort();if(!requestDone)
onreadystatechange("timeout");}},s.timeout);}
try{xml.send(s.data);}catch(e){jQuery.handleError(s,xml,null,e);}
if(!s.async)
onreadystatechange();return xml;function success(){if(s.success)
s.success(data,status);if(s.global)
jQuery.event.trigger("ajaxSuccess",[xml,s]);}
function complete(){if(s.complete)
s.complete(xml,status);if(s.global)
jQuery.event.trigger("ajaxComplete",[xml,s]);if(s.global&&!--jQuery.active)
jQuery.event.trigger("ajaxStop");}},handleError:function(s,xml,status,e){if(s.error)s.error(xml,status,e);if(s.global)
jQuery.event.trigger("ajaxError",[xml,s,e]);},active:0,httpSuccess:function(r){try{return!r.status&&location.protocol=="file:"||(r.status>=200&&r.status<300)||r.status==304||jQuery.browser.safari&&r.status==undefined;}catch(e){}
return false;},httpNotModified:function(xml,url){try{var xmlRes=xml.getResponseHeader("Last-Modified");return xml.status==304||xmlRes==jQuery.lastModified[url]||jQuery.browser.safari&&xml.status==undefined;}catch(e){}
return false;},httpData:function(r,type){var ct=r.getResponseHeader("content-type");var xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0;var data=xml?r.responseXML:r.responseText;if(xml&&data.documentElement.tagName=="parsererror")
throw"parsererror";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(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?this.oldblock:"";if(jQuery.css(this,"display")=="none")
this.style.display="block";}).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");if(this.oldblock=="none")
this.oldblock="block";this.style.display="none";}).end();},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle(fn,fn2):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(){var opt=jQuery.extend({},optall);var hidden=jQuery(this).is(":hidden"),self=this;for(var p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden)
return jQuery.isFunction(opt.complete)&&opt.complete.apply(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)){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.apply(this);}});},stop:function(){var timers=jQuery.timers;return this.each(function(){for(var i=0;i<timers.length;i++)
if(timers[i].elem==this)
timers.splice(i--,1);}).dequeue();}});var queue=function(elem,type,array){if(!elem)
return;var q=jQuery.data(elem,type+"queue");if(!q||array)
q=jQuery.data(elem,type+"queue",array?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].apply(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:{slow:600,fast:200}[opt.duration])||400;opt.old=opt.complete;opt.complete=function(){jQuery(this).dequeue();if(jQuery.isFunction(opt.old))
opt.old.apply(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:[],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.apply(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.curCSS(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.css(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=(new Date()).getTime();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(){return self.step();}
t.elem=this.elem;jQuery.timers.push(t);if(jQuery.timers.length==1){var timer=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(timer);},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(){var t=(new Date()).getTime();if(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&&jQuery.isFunction(this.options.complete))
this.options.complete.apply(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.fx.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,fixed=jQuery.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));if(msie){var border=jQuery("html").css("borderWidth");border=(border=="medium"||jQuery.boxModel&&parseInt(version)>=7)&&2||border;add(-border,-border);}}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&&jQuery.css(offsetParent,"position")=="fixed")
fixed=true;offsetChild=/^body$/i.test(offsetParent.tagName)?offsetChild:offsetParent;offsetParent=offsetParent.offsetParent;}
while(parent.tagName&&!/^body|html$/i.test(parent.tagName)){if(!/^inline|table-row.*$/i.test(jQuery.css(parent,"display")))
add(-parent.scrollLeft,-parent.scrollTop);if(mozilla&&jQuery.css(parent,"overflow")!="visible")
border(parent);parent=parent.parentNode;}
if((safari2&&(fixed||jQuery.css(offsetChild,"position")=="absolute"))||(mozilla&&jQuery.css(offsetChild,"position")!="absoltue"))
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};}
return results;function border(elem){add(jQuery.css(elem,"borderLeftWidth"),jQuery.css(elem,"borderTopWidth"));}
function add(l,t){left+=parseInt(l)||0;top+=parseInt(t)||0;}};})();(function(jQuery){jQuery.each(['backgroundColor','borderBottomColor','borderLeftColor','borderRightColor','borderTopColor','color','outlineColor'],function(i,attr){jQuery.fx.step[attr]=function(fx){if(fx.state==0){fx.start=getColor(fx.elem,attr);fx.end=getRGB(fx.end);}
fx.elem.style[attr]="rgb("+[Math.max(Math.min(parseInt((fx.pos*(fx.end[0]-fx.start[0]))+fx.start[0]),255),0),Math.max(Math.min(parseInt((fx.pos*(fx.end[1]-fx.start[1]))+fx.start[1]),255),0),Math.max(Math.min(parseInt((fx.pos*(fx.end[2]-fx.start[2]))+fx.start[2]),255),0)].join(",")+")";}});function getRGB(color){var result;if(color&&color.constructor==Array&&color.length==3)
return color;if(result=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(color))
return[parseInt(result[1]),parseInt(result[2]),parseInt(result[3])];if(result=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(color))
return[parseFloat(result[1])*2.55,parseFloat(result[2])*2.55,parseFloat(result[3])*2.55];if(result=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(color))
return[parseInt(result[1],16),parseInt(result[2],16),parseInt(result[3],16)];if(result=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(color))
return[parseInt(result[1]+result[1],16),parseInt(result[2]+result[2],16),parseInt(result[3]+result[3],16)];return colors[jQuery.trim(color).toLowerCase()];}
function getColor(elem,attr){var color;do{color=jQuery.curCSS(elem,attr);if(color!=''&&color!='transparent'||jQuery.nodeName(elem,"body"))
break;attr="backgroundColor";}while(elem=elem.parentNode);return getRGB(color);};var colors={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0]};})(jQuery);/* --------- /javascripts/cufon-yui.js --------- */ 

var Cufon=(function(){var M=function(){return M.replace.apply(null,arguments)};var X=M.DOM={ready:(function(){var c=false,e={loaded:1,complete:1};var b=[],d=function(){if(c){return}c=true;for(var f;f=b.shift();f()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",d,false);window.addEventListener("pageshow",d,false)}if(!window.opera&&document.readyState){(function(){e[document.readyState]?d():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");d()}catch(f){setTimeout(arguments.callee,1)}})()}Q(window,"load",d);return function(f){if(!arguments.length){d()}else{c?f():b.push(f)}}})(),root:function(){return document.documentElement||document.body}};var N=M.CSS={Size:function(c,b){this.value=parseFloat(c);this.unit=String(c).match(/[a-z%]*$/)[0]||"px";this.convert=function(d){return d/b*this.value};this.convertFrom=function(d){return d/this.value*b};this.toString=function(){return this.value+this.unit}},addClass:function(c,b){c.className=(c.className&&" ")+b;return c},color:J(function(c){var b={};b.color=c.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(e,d,f){b.opacity=parseFloat(f);return"rgb("+d+")"});return b}),fontStretch:J(function(b){if(typeof b=="number"){return b}if(/%$/.test(b)){return parseFloat(b)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[b]||1}),getStyle:function(c){var b=document.defaultView;if(b&&b.getComputedStyle){return new A(b.getComputedStyle(c,null))}if(c.currentStyle){return new A(c.currentStyle)}return new A(c.style)},gradient:J(function(f){var g={id:f,type:f.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},c=f.substr(f.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var e=0,b=c.length,d;e<b;++e){d=c[e].split("=",2).reverse();g.stops.push([d[1]||e/(b-1),d[0]])}return g}),quotedList:J(function(e){var d=[],c=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,b;while(b=c.exec(e)){d.push(b[3]||b[1])}return d}),recognizesMedia:J(function(h){var f=document.createElement("style"),d,c,b;f.type="text/css";f.media=h;try{f.appendChild(document.createTextNode("/**/"))}catch(g){}c=G("head")[0];c.insertBefore(f,c.firstChild);d=(f.sheet||f.styleSheet);b=d&&!d.disabled;c.removeChild(f);return b}),removeClass:function(d,c){var b=RegExp("(?:^|\\s+)"+c+"(?=\\s|$)","g");d.className=d.className.replace(b,"");return d},supports:function(d,c){var b=document.createElement("span").style;if(b[d]===undefined){return false}b[d]=c;return b[d]===c},textAlign:function(e,d,b,c){if(d.get("textAlign")=="right"){if(b>0){e=" "+e}}else{if(b<c-1){e+=" "}}return e},textDecoration:function(g,f){if(!f){f=this.getStyle(g)}var c={underline:null,overline:null,"line-through":null};for(var b=g;b.parentNode&&b.parentNode.nodeType==1;){var e=true;for(var d in c){if(!K(c,d)||c[d]){continue}if(f.get("textDecoration").indexOf(d)!=-1){c[d]=f.get("color")}e=false}if(e){break}f=this.getStyle(b=b.parentNode)}return c},textShadow:J(function(f){if(f=="none"){return null}var e=[],g={},b,c=0;var d=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(b=d.exec(f)){if(b[0]==","){e.push(g);g={};c=0}else{if(b[1]){g.color=b[1]}else{g[["offX","offY","blur"][c++]]=b[2]}}}e.push(g);return e}),textTransform:function(c,b){return c[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[b.get("textTransform")]||"toString"]()},whiteSpace:(function(){var b={inline:1,"inline-block":1,"run-in":1};return function(e,c,d){if(b[c.get("display")]){return e}if(!d.previousSibling){e=e.replace(/^\s+/,"")}if(!d.nextSibling){e=e.replace(/\s+$/,"")}return e}})()};N.ready=(function(){var b=!N.recognizesMedia("all"),e=false;var d=[],h=function(){b=true;for(var k;k=d.shift();k()){}};var i=G("link"),j=G("style");function c(k){return k.disabled||g(k.sheet,k.media||"screen")}function g(n,q){if(!N.recognizesMedia(q||"all")){return true}if(!n||n.disabled){return false}try{var r=n.cssRules,p;if(r){search:for(var m=0,k=r.length;p=r[m],m<k;++m){switch(p.type){case 2:break;case 3:if(!g(p.styleSheet,p.media.mediaText)){return false}break;default:break search}}}}catch(o){}return true}function f(){if(document.createStyleSheet){return true}var l,k;for(k=0;l=i[k];++k){if(l.rel.toLowerCase()=="stylesheet"&&!c(l)){return false}}for(k=0;l=j[k];++k){if(!c(l)){return false}}return true}X.ready(function(){if(!e){e=N.getStyle(document.body).isUsable()}if(b||(e&&f())){h()}else{setTimeout(arguments.callee,10)}});return function(k){if(b){k()}else{d.push(k)}}})();function S(c){var b=this.face=c.face;this.glyphs=c.glyphs;this.w=c.w;this.baseSize=parseInt(b["units-per-em"],10);this.family=b["font-family"].toLowerCase();this.weight=b["font-weight"];this.style=b["font-style"]||"normal";this.viewBox=(function(){var e=b.bbox.split(/\s+/);var d={minX:parseInt(e[0],10),minY:parseInt(e[1],10),maxX:parseInt(e[2],10),maxY:parseInt(e[3],10)};d.width=d.maxX-d.minX;d.height=d.maxY-d.minY;d.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return d})();this.ascent=-parseInt(b.ascent,10);this.descent=-parseInt(b.descent,10);this.height=-this.ascent+this.descent}function F(){var c={},b={oblique:"italic",italic:"oblique"};this.add=function(d){(c[d.style]||(c[d.style]={}))[d.weight]=d};this.get=function(h,i){var g=c[h]||c[b[h]]||c.normal||c.italic||c.oblique;if(!g){return null}i={normal:400,bold:700}[i]||parseInt(i,10);if(g[i]){return g[i]}var e={1:1,99:0}[i%100],k=[],f,d;if(e===undefined){e=i>400}if(i==500){i=400}for(var j in g){if(!K(g,j)){continue}j=parseInt(j,10);if(!f||j<f){f=j}if(!d||j>d){d=j}k.push(j)}if(i<f){i=f}if(i>d){i=d}k.sort(function(m,l){return(e?(m>i&&l>i)?m<l:m>l:(m<i&&l<i)?m>l:m<l)?-1:1});return g[k[0]]}}function R(){function d(f,g){if(f.contains){return f.contains(g)}return f.compareDocumentPosition(g)&16}function b(g){var f=g.relatedTarget;if(!f||d(this,f)){return}c(this)}function e(f){c(this)}function c(f){setTimeout(function(){M.replace(f,D.get(f).options,true)},10)}this.attach=function(f){if(f.onmouseenter===undefined){Q(f,"mouseover",b);Q(f,"mouseout",b)}else{Q(f,"mouseenter",e);Q(f,"mouseleave",e)}}}function U(){var c=[],d={};function b(h){var e=[],g;for(var f=0;g=h[f];++f){e[f]=c[d[g]]}return e}this.add=function(f,e){d[f]=c.push(e)-1};this.repeat=function(){var e=arguments.length?b(arguments):c,f;for(var g=0;f=e[g++];){M.replace(f[0],f[1],true)}}}function a(){var d={},b=0;function c(e){return e.cufid||(e.cufid=++b)}this.get=function(e){var f=c(e);return d[f]||(d[f]={})}}function A(b){var d={},c={};this.extend=function(e){for(var f in e){if(K(e,f)){d[f]=e[f]}}return this};this.get=function(e){return d[e]!=undefined?d[e]:b[e]};this.getSize=function(f,e){return c[f]||(c[f]=new N.Size(this.get(f),e))};this.isUsable=function(){return!!b}}function Q(c,b,d){if(c.addEventListener){c.addEventListener(b,d,false)}else{if(c.attachEvent){c.attachEvent("on"+b,function(){return d.call(c,window.event)})}}}function V(c,b){var d=D.get(c);if(d.options){return c}if(b.hover&&b.hoverables[c.nodeName.toLowerCase()]){B.attach(c)}d.options=b;return c}function J(b){var c={};return function(d){if(!K(c,d)){c[d]=b.apply(null,arguments)}return c[d]}}function C(g,f){if(!f){f=N.getStyle(g)}var c=N.quotedList(f.get("fontFamily").toLowerCase()),e;for(var d=0,b=c.length;d<b;++d){e=c[d];if(I[e]){return I[e].get(f.get("fontStyle"),f.get("fontWeight"))}}return null}function G(b){return document.getElementsByTagName(b)}function K(c,b){return c.hasOwnProperty(b)}function H(){var b={},d,f;for(var e=0,c=arguments.length;d=arguments[e],e<c;++e){for(f in d){if(K(d,f)){b[f]=d[f]}}}return b}function O(e,o,c,p,f,d){var n=p.separate;if(n=="none"){return Z[p.engine].apply(null,arguments)}var m=document.createDocumentFragment(),h;var j=o.split(P[n]),b=(n=="words");if(b&&T){if(/^\s/.test(o)){j.unshift("")}if(/\s$/.test(o)){j.push("")}}for(var k=0,g=j.length;k<g;++k){h=Z[p.engine](e,b?N.textAlign(j[k],c,k,g):j[k],c,p,f,d,k<g-1);if(h){m.appendChild(h)}}return m}function L(c,k){var d,b,e,h,g,j;for(e=V(c,k).firstChild;e;e=g){h=e.nodeType;g=e.nextSibling;j=false;if(h==1){if(!e.firstChild){continue}if(!/cufon/.test(e.className)){arguments.callee(e,k);continue}else{j=true}}else{if(h!=3){continue}}if(!b){b=N.getStyle(c).extend(k)}if(!d){d=C(c,b)}if(!d){continue}if(j){Z[k.engine](d,null,b,k,e,c);continue}var i=N.whiteSpace(e.data,b,e);if(i===""){continue}var f=O(d,i,b,k,e,c);if(f){e.parentNode.replaceChild(f,e)}else{e.parentNode.removeChild(e)}}}var T=" ".split(/\s+/).length==0;var D=new a();var B=new R();var Y=new U();var E=false;var Z={},I={},W={enableTextDecoration:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(b){return jQuery(b)})||(window.dojo&&dojo.query)||(window.$$&&function(b){return $$(b)})||(window.$&&function(b){return $(b)})||(document.querySelectorAll&&function(b){return document.querySelectorAll(b)})||(window.Ext&&Ext.query)||G),separate:"words",textShadow:"none"};var P={words:/[^\S\u00a0]+/,characters:""};M.now=function(){X.ready();return M};M.refresh=function(){Y.repeat.apply(Y,arguments);return M};M.registerEngine=function(c,b){if(!b){return M}Z[c]=b;return M.set("engine",c)};M.registerFont=function(d){var b=new S(d),c=b.family;if(!I[c]){I[c]=new F()}I[c].add(b);return M.set("fontFamily",'"'+c+'"')};M.replace=function(d,c,b){c=H(W,c);if(!c.engine){return M}if(!E){N.addClass(X.root(),"cufon-active cufon-loading");N.ready(function(){N.removeClass(X.root(),"cufon-loading")});E=true}if(c.hover){c.forceHitArea=true}if(typeof c.textShadow=="string"){c.textShadow=N.textShadow(c.textShadow)}if(typeof c.color=="string"&&/^-/.test(c.color)){c.textGradient=N.gradient(c.color)}if(!b){Y.add(d,arguments)}if(d.nodeType||typeof d=="string"){d=[d]}N.ready(function(){for(var f=0,e=d.length;f<e;++f){var g=d[f];if(typeof g=="string"){M.replace(c.selector(g),c,true)}else{L(g,c)}}});return M};M.set=function(b,c){W[b]=c;return M};return M})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return}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((".cufon-canvas{text-indent:0;}@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{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(A?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(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(AH,a,z,W,e,AI){var I=(a===null);if(I){a=e.alt}var c=AH.viewBox;var K=z.getSize("fontSize",AH.baseSize);var v=z.get("letterSpacing");v=(v=="normal")?0:K.convertFrom(parseInt(v,10));var d=0,w=0,u=0,Y=0;var b=W.textShadow,s=[];if(b){for(var AG=b.length;AG--;){var m=b[AG];var r=K.convertFrom(parseFloat(m.offX));var p=K.convertFrom(parseFloat(m.offY));s[AG]=[r,p];if(p<d){d=p}if(r>w){w=r}if(p>u){u=p}if(r<Y){Y=r}}}var AL=Cufon.CSS.textTransform(a,z).split(""),U;var J=AH.glyphs,X,M,AC;var G=0,Q,h=[];for(var AG=0,AE=0,AB=AL.length;AG<AB;++AG){X=J[U=AL[AG]]||AH.missingGlyph;if(!X){continue}if(M){G-=AC=M[U]||0;h[AE-1]-=AC}G+=Q=h[AE++]=~~(X.w||AH.w)+v;M=X.k}if(Q===undefined){return null}w+=c.width-Q;Y+=c.minX;var V,L;if(I){V=e;L=e.firstChild}else{V=document.createElement("span");V.className="cufon cufon-canvas";V.alt=a;L=document.createElement("canvas");V.appendChild(L);if(W.printable){var AD=document.createElement("span");AD.className="cufon-alt";AD.appendChild(document.createTextNode(a));V.appendChild(AD)}}var AM=V.style;var o=L.style;var H=K.convert(c.height);var AK=Math.ceil(H);var t=AK/H;var n=t*Cufon.CSS.fontStretch(z.get("fontStretch"));var q=G*n;var AA=Math.ceil(K.convert(q+w-Y));var O=Math.ceil(K.convert(c.height-d+u));L.width=AA;L.height=O;o.width=AA+"px";o.height=O+"px";d+=c.minY;o.top=Math.round(K.convert(d-AH.ascent))+"px";o.left=Math.round(K.convert(Y))+"px";var T=Math.ceil(K.convert(q))+"px";if(A){AM.width=T;AM.height=K.convert(AH.height)+"px"}else{AM.paddingLeft=T;AM.paddingBottom=(K.convert(AH.height)-1)+"px"}var AJ=L.getContext("2d"),f=H/c.height;AJ.scale(f,f*t);AJ.translate(-Y,-d);AJ.lineWidth=AH.face["underline-thickness"];AJ.save();function N(i,g){AJ.strokeStyle=g;AJ.beginPath();AJ.moveTo(0,i);AJ.lineTo(G,i);AJ.stroke()}var P=W.enableTextDecoration?Cufon.CSS.textDecoration(AI,z):{};if(P.underline){N(-AH.face["underline-position"],P.underline)}if(P.overline){N(AH.ascent,P.overline)}function AF(){AJ.scale(n,1);for(var x=0,k=0,g=AL.length;x<g;++x){var y=J[AL[x]]||AH.missingGlyph;if(!y){continue}if(y.d){AJ.beginPath();if(y.code){C(y.code,AJ)}else{y.code=D("m"+y.d,AJ)}AJ.fill()}AJ.translate(h[k++],0)}AJ.restore()}if(b){for(var AG=b.length;AG--;){var m=b[AG];AJ.save();AJ.fillStyle=m.color;AJ.translate.apply(AJ,s[AG]);AF()}}var S=W.textGradient;if(S){var Z=S.stops,R=AJ.createLinearGradient(0,c.minY,0,c.maxY);for(var AG=0,AB=Z.length;AG<AB;++AG){R.addColorStop.apply(R,Z[AG])}AJ.fillStyle=R}else{AJ.fillStyle=z.get("color")}AF();if(P["line-through"]){N(-AH.descent,P["line-through"])}return V}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var B=document.createElement("cvml:shape");B.style.behavior="url(#default#VML)";if(!B.coordsize){return}B=null;var F=(document.documentMode||0)<8;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:'+(F?"middle":"text-bottom")+";}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>").replace(/;/g,"!important;"));function C(G,H){return A(G,/(?:em|ex|%)$/i.test(H)?"1em":H)}function A(J,K){if(/px$/i.test(K)){return parseFloat(K)}var I=J.style.left,H=J.runtimeStyle.left;J.runtimeStyle.left=J.currentStyle.left;J.style.left=K.replace("%","em");var G=J.style.pixelLeft;J.style.left=I;J.runtimeStyle.left=H;return G}var E={};function D(L){var M=L.id;if(!E[M]){var J=L.stops,K=document.createElement("cvml:fill"),G=[];K.type="gradient";K.angle=180;K.focus="0";K.method="sigma";K.color=J[0][1];for(var I=1,H=J.length-1;I<H;++I){G.push(J[I][0]*100+"% "+J[I][1])}K.colors=G.join(",");K.color2=J[H][1];E[M]=K}return E[M]}return function(AI,f,AC,b,n,AJ,AA){var J=(f===null);if(J){f=n.alt}var h=AI.viewBox;var L=AC.computedFontSize||(AC.computedFontSize=new Cufon.CSS.Size(C(AJ,AC.get("fontSize"))+"px",AI.baseSize));var z=AC.computedLSpacing;if(z==undefined){z=AC.get("letterSpacing");AC.computedLSpacing=z=(z=="normal")?0:~~L.convertFrom(A(AJ,z))}var X,M;if(J){X=n;M=n.firstChild}else{X=document.createElement("span");X.className="cufon cufon-vml";X.alt=f;M=document.createElement("span");M.className="cufon-vml-canvas";X.appendChild(M);if(b.printable){var AF=document.createElement("span");AF.className="cufon-alt";AF.appendChild(document.createTextNode(f));X.appendChild(AF)}if(!AA){X.appendChild(document.createElement("cvml:shape"))}}var AO=X.style;var u=M.style;var H=L.convert(h.height),AL=Math.ceil(H);var y=AL/H;var s=y*Cufon.CSS.fontStretch(AC.get("fontStretch"));var x=h.minX,w=h.minY;u.height=AL;u.top=Math.round(L.convert(w-AI.ascent));u.left=Math.round(L.convert(x));AO.height=L.convert(AI.height)+"px";var Q=b.enableTextDecoration?Cufon.CSS.textDecoration(AJ,AC):{};var e=AC.get("color");var AN=Cufon.CSS.textTransform(f,AC).split(""),W;var K=AI.glyphs,c,N,AE;var G=0,o=[],v=0,S;var U,g=b.textShadow;for(var AH=0,AG=0,AD=AN.length;AH<AD;++AH){c=K[W=AN[AH]]||AI.missingGlyph;if(!c){continue}if(N){G-=AE=N[W]||0;o[AG-1]-=AE}G+=S=o[AG++]=~~(c.w||AI.w)+z;N=c.k}if(S===undefined){return null}var V=-x+G+(h.width-S);var AM=L.convert(V*s),AB=Math.round(AM);var r=V+","+h.height,I;var m="r"+r+"ns";var T=b.textGradient&&D(b.textGradient);for(AH=0,AG=0;AH<AD;++AH){c=K[AN[AH]]||AI.missingGlyph;if(!c){continue}if(J){U=M.childNodes[AG];while(U.firstChild){U.removeChild(U.firstChild)}}else{U=document.createElement("cvml:shape");M.appendChild(U)}U.stroked="f";U.coordsize=r;U.coordorigin=I=(x-v)+","+w;U.path=(c.d?"m"+c.d+"xe":"")+"m"+I+m;U.fillcolor=e;if(T){U.appendChild(T.cloneNode(false))}var AK=U.style;AK.width=AB;AK.height=AL;if(g){var P=g[0],O=g[1];var a=Cufon.CSS.color(P.color),Y;var q=document.createElement("cvml:shadow");q.on="t";q.color=a.color;q.offset=P.offX+","+P.offY;if(O){Y=Cufon.CSS.color(O.color);q.type="double";q.color2=Y.color;q.offset2=O.offX+","+O.offY}q.opacity=a.opacity||(Y&&Y.opacity)||1;U.appendChild(q)}v+=o[AG++]}var p=U.nextSibling,R,Z;if(b.forceHitArea){if(!p){p=document.createElement("cvml:rect");p.stroked="f";p.className="cufon-vml-cover";R=document.createElement("cvml:fill");R.opacity=0;p.appendChild(R);M.appendChild(p)}Z=p.style;Z.width=AB;Z.height=AL}else{if(p){M.removeChild(p)}}AO.width=Math.max(Math.ceil(L.convert(G*s)),0);if(F){var t=AC.computedYAdjust;if(t===undefined){var d=AC.get("lineHeight");if(d=="normal"){d="1em"}else{if(!isNaN(d)){d+="em"}}AC.computedYAdjust=t=0.5*(A(AJ,d)-parseFloat(AO.height))}if(t){AO.marginTop=Math.ceil(t)+"px";AO.marginBottom=t+"px"}}return X}})());/* --------- /javascripts/English_italic_500.font.js --------- */ 

Cufon.registerFont({"w":216,"face":{"font-family":"English","font-weight":500,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","cap-height":"5","bbox":"-157 -301 368.115 91","underline-thickness":"18","underline-position":"-19.8","slope":"23853","unicode-range":"U+0020-U+F002"},"glyphs":{" ":{"w":72},"\u00a0":{"w":72},"!":{"d":"-20,-16v6,16,-20,28,-29,15v-3,-18,20,-29,29,-15xm81,-176v13,-14,20,-22,26,-7v-28,49,-83,102,-119,147r-5,-3v31,-39,68,-101,98,-137","w":119},"\"":{"d":"87,-256v13,-1,14,14,12,24r-10,79r-5,0r-11,-87v0,-10,5,-16,14,-16xm30,-256v13,0,15,12,13,24r-11,79r-4,0r-12,-87v0,-10,5,-16,14,-16","w":117},"#":{"d":"104,-100r53,0r18,-54r-52,0xm158,-255r-30,87r52,0r31,-87r17,0r-31,87r57,0r-5,14r-56,0r-19,54r61,0r-5,13r-61,0r-31,87r-17,0r31,-87r-53,0r-31,87r-16,0r30,-87r-60,0r6,-13r59,0r19,-54r-65,0r5,-14r65,0r31,-87r16,0","w":276},"$":{"d":"67,-122v0,-41,33,-60,76,-55v9,-6,15,-30,26,-21r-19,24v23,7,21,54,-9,50v-10,-4,-5,-19,7,-17v6,1,11,-2,10,-9v0,-16,-14,-22,-29,-22v-28,0,-47,17,-47,43v0,25,20,46,20,72v0,43,-41,68,-87,57r-27,34r-6,-4r25,-32v-26,-8,-22,-65,10,-59v12,3,5,21,-5,20v-10,-3,-15,1,-15,11v1,19,16,26,35,26v30,0,54,-17,54,-47v0,-24,-19,-45,-19,-71","w":145},"%":{"d":"246,-95v-6,-26,-40,0,-49,8v-19,20,-41,42,-48,73v1,8,5,12,13,13v42,-15,72,-49,84,-94xm159,5v-53,-36,21,-115,74,-119v11,1,23,6,20,19v-11,50,-44,87,-94,100xm70,-115v42,-14,94,-63,78,-104v-47,2,-68,48,-88,81v-4,11,-2,23,10,23xm291,-220r-276,223r-6,-6r276,-224xm105,-125v-13,15,-58,31,-58,-5v0,-55,43,-86,94,-98v51,22,-16,88,-36,103","w":278},"&":{"d":"-10,-19v8,28,54,7,68,-4v0,-25,2,-45,7,-66v-31,17,-68,32,-75,70xm93,-148v14,-28,74,-20,52,16v-12,20,-36,29,-62,38v-4,17,-7,37,-8,58v28,-29,55,-57,86,-67v8,0,13,6,13,14v2,13,-17,27,-25,14v-6,-16,23,-7,14,-21v-35,8,-61,45,-89,73v0,10,3,17,13,17v21,0,32,-21,45,-33r6,3v-14,22,-61,59,-80,21v-18,17,-82,31,-80,-10v2,-48,47,-60,89,-72v6,-20,13,-38,26,-51xm85,-103v23,-10,54,-20,51,-50v-27,-19,-45,24,-51,50","w":250},"'":{"d":"30,-256v13,0,15,12,13,24r-11,79r-5,0r-11,-87v0,-10,5,-16,14,-16","w":59},"(":{"d":"-46,42v45,-138,122,-240,233,-312r5,6v-102,74,-177,180,-229,306r-9,0","w":116},")":{"d":"-98,36v103,-74,178,-180,230,-306r8,0v-46,138,-120,241,-233,311","w":116},"*":{"d":"89,-203v-4,-3,-4,-9,1,-8v16,1,24,10,33,19v-4,-12,-8,-34,3,-42v10,8,7,29,3,42v8,-9,20,-22,37,-18v-4,14,-19,19,-34,23v13,1,42,17,29,24v-15,-1,-23,-11,-32,-19v15,33,-17,55,-8,7v0,-2,1,-5,2,-7v-9,8,-20,23,-37,18v4,-15,19,-19,34,-23v-12,-4,-25,-8,-31,-16","w":178},"+":{"d":"157,-215r0,101r98,0r0,14r-98,0r0,100r-14,0r0,-100r-98,0r0,-14r98,0r0,-101r14,0","w":299},",":{"d":"-55,0v-10,-17,18,-32,25,-16v-2,34,-36,42,-64,53v-2,-17,39,-13,39,-37","w":71},"-":{"d":"42,-64r-11,13r-67,0r9,-13r69,0","w":119},".":{"d":"-51,5v-15,-8,-2,-29,12,-28v7,1,10,5,11,11v-2,11,-9,18,-23,17","w":71},"\/":{"d":"144,-233r-220,266r-21,0r221,-266r20,0","w":97},"0":{"d":"145,-131v20,-41,-25,-37,-46,-18v-41,36,-89,73,-100,139v62,21,120,-69,146,-121xm48,-9v-20,14,-63,21,-59,-12v9,-77,65,-122,129,-147v49,-19,41,34,22,63v-23,36,-56,71,-92,96","w":145},"1":{"d":"163,-173r-125,173r-26,0r130,-156r-130,84r-4,-8r123,-76v13,-6,18,-22,32,-17","w":145},"2":{"d":"-4,-22v27,-3,43,9,63,13v17,-2,24,-13,32,-25r6,2v-9,19,-22,35,-47,35v-29,0,-58,-25,-83,-3r-4,-6r121,-76v24,-16,50,-37,57,-69v-27,-35,-93,16,-93,55v23,16,45,-20,53,-39r5,1v-7,25,-23,45,-49,50v-39,-31,16,-85,65,-87v39,-2,33,46,14,66v-35,37,-98,55,-140,83","w":145},"3":{"d":"121,-171v34,-4,31,39,11,52v-11,10,-28,23,-43,26v9,4,18,9,16,22v-7,49,-52,68,-103,76v-24,4,-35,-30,-12,-34v6,1,9,4,10,10v-4,11,-21,14,3,18v44,-9,79,-39,88,-79v-13,-13,-31,4,-46,7r-3,-5v39,-18,82,-32,93,-74v0,-9,-7,-12,-16,-12v-26,0,-56,20,-56,45v14,15,35,-9,42,-21v7,12,-17,32,-36,33v-9,0,-16,-5,-15,-14v4,-32,34,-47,67,-50","w":145},"4":{"d":"67,-42v-26,-5,-59,-4,-78,7r-4,-7v26,-19,48,-36,72,-58r76,-70r26,0r-152,119v23,-1,46,-2,67,2r42,-44r9,0v-11,15,-28,32,-36,45v11,4,26,-7,27,4v-8,4,-20,4,-32,4r-29,40r-26,0","w":145},"5":{"d":"97,-113v-31,0,-44,19,-62,33r-5,-5r66,-85v18,5,48,7,62,-4r3,5v-14,12,-42,18,-67,13r-39,50v18,-14,63,-26,63,12v0,59,-52,88,-112,98v-25,4,-35,-30,-12,-34v16,4,5,19,-2,23v56,13,99,-42,113,-95v0,-6,-2,-11,-8,-11","w":145},"6":{"d":"16,-3v45,-4,95,-59,85,-96v-46,1,-73,40,-91,72v-6,10,-2,21,6,24xm157,-139v-27,-8,20,-22,-7,-26v-54,10,-79,53,-111,89v17,-12,32,-29,58,-31v52,30,-19,98,-60,109v-41,11,-47,-30,-28,-59v31,-52,71,-102,140,-114v23,-4,30,30,8,32","w":145},"7":{"d":"81,-161v-18,0,-18,18,-36,18r37,-45r10,0r-17,21v30,-14,70,20,90,-10r8,-1r-94,104r-84,102r-30,0r180,-185v-19,12,-46,2,-64,-4","w":145},"8":{"d":"26,-1v43,-1,74,-49,47,-85v-33,11,-68,24,-73,61v1,15,10,24,26,24xm156,-147v0,35,-35,44,-65,55v28,45,-16,96,-66,96v-21,-1,-35,-8,-35,-29v0,-43,44,-53,79,-67v-17,-41,14,-79,57,-79v17,0,30,6,30,24xm125,-165v-35,-2,-56,36,-37,66v26,-10,55,-16,57,-48v1,-13,-9,-17,-20,-18","w":145},"9":{"d":"109,-90v-17,13,-32,28,-57,31v-13,-1,-20,-9,-21,-22v9,-51,44,-82,96,-90v44,5,13,66,-1,84v-32,40,-64,82,-126,91v-22,3,-31,-27,-8,-31v10,-2,12,15,3,16v-6,1,-8,8,0,9v56,-7,83,-52,114,-88xm141,-151v1,-10,-8,-11,-14,-14v-42,14,-76,49,-84,93v1,3,4,6,9,5v45,-10,76,-42,89,-84","w":145},":":{"d":"-32,-16v7,16,-21,29,-28,15v-6,-16,19,-30,28,-15xm11,-81v-14,-6,-4,-29,11,-27v7,0,11,5,12,11v-2,10,-11,21,-23,16","w":79},";":{"d":"-54,0v-8,-21,23,-33,26,-11v-7,28,-38,38,-64,48r-2,-6v16,-7,36,-13,40,-31xm11,-81v-14,-6,-4,-29,11,-27v7,0,11,5,12,11v-2,10,-11,21,-23,16","w":79},"<":{"d":"253,-181r-184,74r184,75r0,15r-207,-85r0,-10r207,-85r0,16","w":299},"=":{"d":"255,-82r0,14r-210,0r0,-14r210,0xm255,-146r0,14r-210,0r0,-14r210,0","w":299},">":{"d":"253,-112r0,10r-207,85r0,-15r184,-75r-184,-74r0,-16","w":299},"?":{"d":"-21,-16v7,17,-21,28,-28,15v-3,-18,20,-29,28,-15xm120,-167v0,77,-95,84,-130,133r-7,-3v38,-48,109,-67,125,-137v0,-9,-5,-14,-14,-14v-35,7,-71,31,-68,68v16,9,30,-11,38,-22v6,14,-17,30,-35,32v-9,0,-14,-6,-14,-15v9,-39,37,-65,79,-69v18,-2,26,10,26,27","w":145},"@":{"d":"210,-60v-12,20,-25,38,-56,38v-32,0,-46,-25,-46,-58v0,-53,33,-91,84,-96v24,-2,33,16,39,35r9,-32r22,0r-33,125v-1,13,7,18,18,20v49,-11,75,-51,75,-107v0,-75,-49,-112,-125,-112v-99,0,-147,60,-153,159v-8,132,173,160,253,93r5,5v-46,45,-170,52,-222,6v-29,-26,-54,-57,-54,-110v0,-101,69,-150,169,-161v135,-15,179,175,73,229v-28,14,-61,-2,-58,-34xm224,-130v4,-45,-54,-51,-67,-17v-15,22,-29,47,-29,80v0,24,12,45,37,37v39,-12,55,-52,59,-100","w":354},"A":{"d":"100,-98r-54,54v12,11,27,20,48,23v6,-22,10,-51,6,-77xm98,-108v-7,-26,-18,-52,-48,-52v-54,0,-36,91,-10,111xm245,-222v-60,20,-95,72,-137,116v0,23,4,48,-2,67v43,-65,90,-126,139,-183xm48,-170v33,0,48,27,57,55v39,-43,75,-82,121,-109v12,-6,20,-8,33,-6r-111,158r-31,50v18,-3,29,-13,40,-23r4,5v-12,14,-26,25,-50,26r-9,14r-21,0r10,-15v-22,-2,-38,-12,-51,-23v-25,18,-43,40,-81,42v-34,2,-32,-44,-6,-50v9,0,16,3,16,11v3,22,-41,1,-23,28v37,13,66,-18,89,-37v-35,-25,-51,-126,13,-126","w":233},"B":{"d":"199,-107v-17,7,-44,-10,-14,-12v45,15,90,-47,61,-85v-93,55,-109,202,-253,206v-27,1,-52,-5,-54,-27v-2,-19,24,-34,38,-20v5,14,-11,17,-25,13v-13,19,17,28,38,28v74,-2,100,-52,137,-95v37,-43,70,-82,113,-111v-15,-14,-40,-20,-68,-20v-83,0,-145,38,-162,109v0,19,13,27,32,27v62,0,98,-56,115,-110r6,0v-14,61,-53,113,-120,118v-56,4,-42,-72,-13,-93v42,-47,152,-79,218,-37v12,-5,22,-11,35,-14v4,11,-22,14,-28,20v8,10,15,21,15,38v0,40,-30,52,-60,63v20,15,20,56,0,74v-19,17,-38,37,-74,37v-38,0,-29,-40,-5,-50v14,-10,32,-16,54,-19r1,6v-32,4,-61,17,-69,44v0,9,7,11,15,12v44,-9,78,-39,78,-87v0,-7,-6,-12,-11,-15","w":299},"C":{"d":"262,-197v10,-13,4,-29,-14,-27v-70,10,-108,59,-151,101v73,-5,131,-31,165,-74xm7,-166v0,-70,93,-86,160,-67v-6,10,-30,-2,-48,-1v-52,4,-97,22,-104,69v3,29,26,39,56,41v49,-46,96,-98,177,-107v37,-4,28,36,9,52v-40,35,-95,60,-167,64v-21,25,-45,45,-48,85v22,63,137,11,137,-38v0,-14,-12,-21,-26,-21v-45,0,-66,36,-84,69r-6,-1v18,-37,39,-75,89,-75v20,0,34,8,34,29v-10,47,-52,72,-104,72v-33,0,-55,-12,-54,-45v1,-35,19,-54,35,-77v-30,-5,-56,-16,-56,-49","w":262},"D":{"d":"15,-13v-20,-8,-36,-13,-64,-11v-7,1,-15,3,-15,10v12,17,60,8,79,1xm200,-171v-53,49,-87,130,-162,159v101,28,175,-50,162,-159xm-74,-14v13,-33,73,-13,98,-3v72,-35,108,-121,171,-164v-20,-65,-142,-53,-181,-13v-17,17,-36,31,-36,62v0,26,19,37,45,37v59,0,89,-43,106,-90r5,4v-14,51,-46,88,-107,93v-61,5,-74,-68,-38,-102v38,-60,185,-64,213,3r45,-25v3,20,-55,20,-37,65v-2,103,-79,172,-184,139v-18,7,-37,10,-60,10v-18,0,-37,-1,-40,-16","w":262},"E":{"d":"105,-148v58,-3,113,-20,130,-62v-4,-18,-31,-10,-47,-5v-34,13,-68,35,-83,67xm105,-132v17,-4,43,8,17,13v-7,-1,-14,-1,-18,-5v-48,14,-94,42,-103,93v3,22,23,29,48,29v48,0,92,-19,100,-60v-1,-14,-11,-21,-28,-20v-44,2,-64,29,-88,54r-5,-3v22,-29,46,-59,93,-59v20,0,35,8,36,28v-8,45,-56,67,-107,67v-34,0,-60,-11,-59,-46v2,-61,53,-78,106,-90r-5,-10v-38,-2,-72,-12,-72,-48v0,-54,76,-62,121,-43v-6,10,-27,-3,-43,-1v-58,-8,-99,66,-32,81v8,2,16,3,26,3v14,-52,63,-75,123,-80v27,-3,37,24,18,41v-28,26,-75,46,-128,48r0,8","w":233},"F":{"d":"-30,-26v-11,16,14,27,30,26v70,-6,91,-55,127,-101v-29,6,-53,16,-73,32v-1,-22,54,-33,80,-42v27,-33,52,-67,88,-91v7,9,-8,12,-13,20v-20,19,-35,41,-49,65v26,1,32,-30,53,-25v-7,25,-44,23,-42,59r-13,4v2,-11,7,-22,13,-33r-18,5v-34,56,-69,113,-153,113v-21,0,-41,-6,-41,-28v-5,-20,31,-34,34,-12v2,14,-13,10,-23,8xm144,-235v51,-1,119,24,161,2v4,17,-32,22,-54,22v-40,1,-86,-12,-124,-12v-51,0,-99,22,-99,70v0,22,13,32,35,32v49,0,78,-33,97,-68r7,0v-20,39,-47,72,-102,75v-28,1,-46,-13,-46,-39v0,-58,61,-81,125,-82","w":227},"G":{"d":"235,-226v-67,1,-98,50,-135,81v63,-4,128,-21,144,-69v0,-6,-4,-11,-9,-12xm-14,-22v-1,-17,28,-35,34,-13v0,17,-22,0,-25,15v15,34,83,15,105,-1v22,-16,41,-39,58,-65v-25,21,-106,49,-106,-5v0,-21,10,-34,19,-48v-27,-5,-52,-15,-52,-44v0,-53,76,-66,128,-49v-5,10,-25,-1,-39,0v-67,-9,-116,75,-32,87v38,-40,83,-81,151,-88v32,-4,29,32,11,47v-34,28,-86,50,-145,49v-13,15,-25,30,-30,52v1,13,11,18,26,18v47,0,71,-32,105,-53v9,7,-7,14,-11,22v-28,53,-63,104,-146,103v-26,-1,-49,-3,-51,-27","w":248},"H":{"d":"166,-133v47,-21,101,-45,119,-93v-16,-11,-34,11,-49,22v-25,18,-48,45,-70,71xm46,-92v-41,21,-98,38,-105,87v32,5,52,-28,74,-48v11,-10,20,-24,31,-39xm24,-181v8,38,63,13,74,-8r5,2v-9,28,-81,54,-86,7v4,-31,29,-51,63,-52v24,-1,38,23,60,23v26,0,36,-16,55,-27r6,4v-46,33,-83,74,-116,120r51,-13v45,-43,82,-93,143,-112v20,1,15,21,4,33v-28,34,-80,66,-126,82v-28,37,-69,65,-76,114v1,3,4,6,9,5v30,-7,49,-29,71,-46r4,5v-25,19,-51,56,-91,44v-15,-48,31,-83,55,-117r-52,14v-40,43,-68,101,-138,106v-13,-4,-7,-22,1,-33v28,-32,71,-57,117,-74v29,-38,61,-71,99,-100v-33,13,-56,-13,-83,-18v-26,1,-46,16,-49,41","w":212},"I":{"d":"151,-126v29,-3,47,-18,65,-34v-6,27,-41,36,-69,43v-37,63,-72,122,-166,122v-28,0,-54,-5,-56,-31v-2,-19,33,-37,37,-14v3,19,-25,0,-29,15v18,42,97,19,121,-3v27,-24,51,-54,73,-90v-22,-5,-39,-16,-39,-41v0,-76,117,-66,186,-75v-4,19,-31,5,-43,19v-29,23,-60,55,-80,89xm132,-126v26,-37,58,-69,95,-95v-60,3,-120,14,-129,66v2,18,16,27,34,29","w":204},"J":{"d":"5,-12v-40,13,-98,23,-104,63v42,19,77,-36,104,-63xm104,-124v24,-6,43,-18,59,-33v4,21,-40,36,-65,43r-51,77v22,-6,37,-18,56,-28v-3,23,-45,29,-64,42v-35,39,-64,81,-128,87v-22,2,-26,-21,-13,-35v26,-27,71,-39,115,-51r63,-93v-23,-4,-39,-18,-39,-42v0,-62,76,-70,148,-69v14,0,33,-14,45,-6v-9,14,-30,5,-44,17v-28,25,-61,57,-82,91xm182,-219v-66,1,-137,16,-132,79v6,9,17,16,32,17v28,-38,59,-71,100,-96","w":174},"K":{"d":"297,-221v-5,9,-15,4,-17,-3v-47,29,-64,100,-129,112v26,42,-27,70,-37,106v34,8,57,-26,81,-43r5,5v-22,21,-44,44,-80,48v-13,1,-19,-6,-20,-18v-1,-37,71,-68,38,-97v-9,3,-20,-6,-8,-10v43,7,58,-28,82,-51v28,-27,43,-58,78,-60v6,0,8,4,7,11xm92,-233v35,-2,46,24,78,25v26,0,41,-12,56,-24r9,3v-83,51,-123,148,-195,207v-18,15,-40,24,-71,27v-41,4,-53,-51,-13,-54v13,-1,15,16,5,19v-9,3,-21,-6,-21,9v6,30,56,16,71,3v62,-55,112,-142,180,-186v-41,20,-71,-15,-106,-20v-47,-6,-85,71,-23,71v26,0,42,-13,55,-28r3,4v-13,19,-30,31,-60,32v-23,0,-40,-10,-40,-33v0,-37,33,-53,72,-55","w":246},"L":{"d":"-75,-14v10,18,60,10,78,2v-21,-6,-62,-23,-78,-2xm144,-125v57,-13,133,-52,119,-105v-62,8,-86,63,-119,105xm18,-7v-19,7,-40,10,-63,10v-18,0,-37,-1,-39,-17v2,-16,21,-19,40,-19v29,0,51,7,74,15v38,-20,61,-58,84,-95v-54,1,-102,-10,-102,-59v0,-68,90,-86,154,-65r-1,5v-62,-15,-146,-2,-146,60v0,44,54,54,100,51v38,-48,71,-105,138,-116v29,-5,21,34,8,49v-30,35,-71,63,-126,73v-27,42,-53,78,-97,101v52,20,101,-7,130,-37r4,5v-32,38,-95,63,-158,39","w":222},"M":{"d":"36,-110v46,-46,86,-118,162,-125r-67,77v-39,47,-84,98,-109,149v7,6,11,-1,22,-13r124,-143v37,-33,52,-67,105,-69r-66,79v-42,54,-70,83,-100,142v1,4,2,8,8,7v28,-6,44,-24,65,-39v-1,20,-43,48,-74,45v-18,-7,-10,-30,-1,-47v36,-66,92,-118,149,-177v-86,42,-140,149,-207,209v-15,13,-18,17,-30,16v-12,-12,-4,-28,6,-46v37,-67,98,-125,156,-181v-61,24,-96,80,-139,123v-45,45,-73,86,-117,105v-12,0,-18,-7,-19,-18v0,-15,18,-32,28,-18v5,18,-25,8,-16,27v16,6,20,-2,40,-18v18,-14,57,-62,80,-85","w":234},"N":{"d":"-67,-38v24,16,-33,21,-7,35v61,-8,82,-65,114,-104v43,-52,71,-100,115,-127v-27,59,-41,157,-73,213r75,-105v35,-49,57,-90,99,-108v20,-2,22,27,8,34v-6,4,-15,1,-15,-7v0,-9,23,-12,8,-19v-12,-1,-18,5,-34,23v-51,56,-98,160,-162,207v28,-60,39,-162,74,-215v-64,53,-108,165,-184,210v-17,10,-43,7,-43,-14v0,-14,9,-24,25,-23","w":206},"O":{"d":"142,-216v38,-22,132,-22,98,37v-5,8,-14,13,-23,17r-2,-5v12,-8,24,-16,24,-34v0,-41,-67,-20,-90,-7v-61,35,-112,88,-141,152v-28,63,46,63,84,35v47,-34,91,-76,106,-141v-26,-47,-103,11,-103,53v0,8,6,12,13,12v32,-6,46,-35,60,-61r5,2v-12,31,-31,62,-67,67v-14,2,-20,-8,-21,-20v9,-47,43,-74,92,-81v55,4,15,75,-1,97v-34,45,-71,98,-140,98v-81,0,-29,-117,2,-145v31,-28,66,-54,104,-76","w":238},"P":{"d":"35,-91v-54,5,-44,-70,-12,-89v38,-44,141,-69,206,-36r28,-15v1,14,-15,12,-21,21v41,40,1,120,-54,120v-36,0,-17,-39,1,-44r5,3v-10,6,-33,28,-8,33v44,-3,80,-69,48,-107v-83,58,-100,210,-240,210v-25,0,-51,-4,-52,-28v-2,-21,31,-39,39,-16v-1,20,-30,-5,-32,18v15,32,82,16,103,-1v62,-49,109,-144,176,-188v-83,-36,-207,0,-219,84v-3,19,12,25,29,26v60,-8,88,-56,111,-102r6,0v-20,54,-49,105,-114,111","w":257},"Q":{"d":"142,-216v37,-23,132,-22,98,37v-5,7,-14,13,-23,17r-2,-5v12,-8,24,-16,24,-34v0,-41,-67,-20,-90,-7v-61,35,-110,89,-141,152v-24,47,30,69,68,44v-4,-31,-44,-27,-61,-9r-3,-5v12,-9,25,-19,43,-19v19,0,27,13,35,25v46,-35,96,-76,108,-142v-26,-47,-103,11,-103,53v0,8,6,12,13,12v31,-6,47,-35,60,-61r5,2v-11,33,-31,62,-67,67v-14,2,-20,-8,-21,-20v9,-47,43,-75,92,-81v19,-2,29,9,29,27v0,70,-63,113,-112,149v20,30,63,1,75,-17r5,3v-16,25,-68,58,-95,23v-32,17,-93,13,-88,-34v10,-95,84,-136,151,-177","w":253},"R":{"d":"3,-127v0,-89,123,-124,221,-98v15,14,30,-3,47,-8r5,5v-12,5,-22,10,-31,17v31,44,-7,102,-55,107v13,45,-28,65,-42,97v28,9,52,-21,72,-33v3,18,-51,52,-79,39v-20,-43,50,-63,39,-102v-12,1,-32,-6,-18,-15v10,-1,15,4,22,7v35,-9,73,-56,51,-96v-89,57,-106,212,-250,212v-24,0,-46,-5,-48,-27v-3,-20,27,-43,37,-20v1,20,-27,1,-28,19v10,35,76,20,97,4v64,-53,118,-150,187,-193v-83,-39,-207,1,-220,85v1,19,13,32,34,30v59,-6,91,-58,106,-111r7,1v-14,60,-47,117,-114,117v-24,0,-40,-13,-40,-37","w":277},"S":{"d":"161,-121v58,-15,109,-40,129,-93v-2,-17,-25,-12,-39,-5v-38,21,-64,59,-90,98xm30,-166v0,-67,85,-86,153,-67v-6,13,-30,-2,-50,0v-49,5,-95,20,-95,66v0,43,51,53,98,49v40,-47,70,-106,141,-114v27,-3,25,28,11,45v-29,35,-76,66,-132,75v-37,60,-72,117,-161,117v-31,0,-58,-7,-60,-34v-2,-19,33,-38,40,-16v1,23,-29,-2,-32,18v16,43,96,21,121,-1v25,-22,48,-50,67,-82v-51,-1,-101,-9,-101,-56","w":241},"T":{"d":"-33,-29v-13,16,12,28,31,26v97,-9,119,-111,174,-162v18,-16,33,-33,48,-45v9,7,-10,15,-14,22v-66,65,-81,187,-205,192v-25,0,-46,-5,-46,-28v0,-17,23,-35,35,-19v5,14,-11,16,-23,14xm16,-158v13,-110,165,-74,269,-76v8,0,18,-11,23,-3v-46,33,-124,7,-187,7v-50,0,-92,25,-97,72v9,59,100,21,114,-9v10,-8,10,-26,25,-30v-16,42,-45,78,-99,78v-27,0,-46,-13,-48,-39","w":212},"U":{"d":"60,-220v34,-29,131,-17,97,44v-35,62,-98,97,-126,166v41,17,73,-40,104,-60v48,-51,92,-105,134,-162r23,0r-161,212v-5,7,-5,17,4,15v32,-6,52,-27,76,-45r5,5v-26,19,-47,41,-83,47v-37,-6,-3,-52,7,-67v-34,27,-51,67,-100,67v-36,0,-14,-46,-2,-61r100,-118v19,-18,15,-55,-21,-52v-47,4,-95,26,-95,70v0,13,6,21,20,20v42,-3,60,-36,69,-74r6,1v-7,43,-31,82,-76,82v-47,0,-22,-69,2,-79v5,-4,11,-8,17,-11","w":262},"V":{"d":"13,-180v1,-52,84,-72,116,-35v22,26,68,3,85,-18v9,16,-30,32,-36,47v-49,57,-80,138,-142,182v115,-24,168,-148,245,-206v20,-15,35,-23,46,-23v21,0,24,26,5,27v-11,1,-11,-15,-2,-17v-50,-4,-79,54,-111,85v-64,62,-95,134,-201,141v60,-57,95,-154,163,-205v-18,14,-55,7,-68,-9v-26,-32,-91,-10,-92,32v9,45,79,15,85,-14r5,5v-12,22,-32,40,-64,40v-21,0,-34,-11,-34,-32","w":245},"W":{"d":"-16,-177v0,42,72,19,77,-8r5,3v-10,19,-27,35,-55,35v-20,0,-34,-9,-34,-30v0,-36,37,-57,77,-52v24,3,34,28,59,28v26,0,40,-16,57,-28v9,9,-13,17,-18,26v-59,58,-90,149,-158,198v93,-38,141,-167,229,-217v12,-6,22,-8,34,-4v-73,59,-113,167,-183,221v81,-27,123,-115,178,-169v28,-28,41,-58,84,-59v14,3,10,27,-5,26v-10,0,-12,-14,-3,-17v-15,-4,-20,9,-44,28v-65,53,-117,185,-229,199v66,-66,107,-167,184,-223v-91,42,-137,171,-231,218v-11,5,-21,8,-33,5v58,-57,96,-149,161,-202v-18,11,-53,8,-66,-7v-25,-29,-86,-11,-86,29","w":258},"X":{"d":"-33,-3v70,-6,102,-56,139,-99v-52,15,-102,39,-135,70v-10,9,-17,23,-4,29xm275,-233v25,-2,20,26,7,40v-32,38,-89,67,-145,83v-19,30,-52,56,-51,99v27,20,59,-21,81,-36v4,20,-42,47,-70,50v-26,3,-24,-35,-18,-55v-32,24,-58,53,-107,56v-26,1,-23,-24,-8,-39v34,-36,91,-60,149,-77v18,-27,40,-43,40,-81v0,-24,-20,-33,-45,-33v-44,0,-84,21,-91,61v1,15,10,24,27,23v41,-3,60,-33,70,-69r5,4v-8,40,-29,73,-74,73v-21,0,-35,-11,-36,-31v9,-46,48,-66,99,-68v42,-2,61,25,55,69v33,-29,60,-65,112,-69xm274,-196v11,-12,17,-28,-1,-30v-60,13,-95,63,-128,106v51,-15,99,-42,129,-76","w":220},"Y":{"d":"88,2v-44,13,-101,23,-109,65v45,17,84,-34,109,-65xm55,-37v69,-11,99,-60,143,-104r88,-89r22,0r-103,110v-15,18,-30,35,-44,53v-14,18,-26,35,-38,52v24,-11,50,-24,70,-38v1,23,-53,37,-78,49v-31,39,-63,78,-122,85v-24,3,-28,-22,-14,-36v27,-26,70,-41,116,-52r67,-89v-31,28,-55,59,-102,67v-42,-5,-12,-60,6,-73v26,-37,72,-58,84,-104v-1,-16,-15,-21,-33,-21v-49,3,-96,22,-103,65v-2,12,9,18,21,17v43,-4,69,-34,85,-68r4,5v-15,38,-42,71,-90,71v-17,0,-28,-8,-29,-25v12,-48,54,-67,111,-72v46,-4,55,40,31,71v-27,35,-71,72,-98,109v-4,7,-2,16,6,17","w":265},"Z":{"d":"-46,-13v11,16,55,6,69,-3v-20,-5,-56,-13,-69,3xm208,-197v26,0,66,-10,58,-28v-26,2,-41,16,-58,28xm23,-180v7,42,75,18,85,-7r4,5v-13,31,-91,52,-97,2v4,-35,35,-53,74,-53v39,0,72,34,106,35v22,-15,42,-33,77,-33v5,1,6,5,7,10v-12,25,-45,31,-80,33v-22,21,-37,45,-54,71v16,4,35,-5,44,0v-12,10,-30,15,-51,12v-21,36,-52,62,-87,85v53,13,125,13,139,-35r7,1v-13,59,-100,68,-161,42v-16,8,-34,14,-58,14v-16,0,-31,-1,-33,-15v9,-30,67,-16,92,-9v30,-20,59,-55,77,-85v-15,-6,-31,14,-38,3v12,-8,27,-18,47,-15v21,-23,40,-49,63,-70v-39,-3,-70,-34,-109,-34v-29,0,-51,15,-54,43","w":262},"[":{"d":"190,-271v-2,12,-19,9,-33,9r-217,296r29,0r-5,8r-48,0r228,-313r46,0","w":116},"\\":{"d":"37,33r-13,0r-9,-266r13,0","w":124},"]":{"d":"176,-271r-228,313r-46,0v2,-12,20,-7,33,-8r217,-296r-30,0v5,-16,35,-7,54,-9","w":116},"^":{"d":"193,-257r94,100r-15,0r-92,-82r-94,82r-14,0r94,-100r27,0","w":360},"_":{"d":"180,71r0,14r-180,0r0,-14r180,0","w":180},"`":{"d":"62,-154v-9,-2,-11,-19,2,-18v18,12,31,31,47,47v-23,-3,-31,-21,-49,-29","w":180},"a":{"d":"-16,-83v15,-12,65,-45,76,-11r0,3r10,-14r19,0v-20,34,-56,61,-66,100v29,-2,47,-29,69,-44r4,5v-23,19,-41,46,-76,45v-13,-1,-7,-20,-5,-30v-16,17,-42,39,-72,28v-14,-35,19,-64,41,-82xm-30,-6v32,-19,87,-56,78,-95v-45,7,-72,51,-95,82v-9,13,6,20,17,13","w":151},"b":{"d":"64,-44v-10,4,-26,2,-30,-6v-23,24,-50,63,-93,50v-14,-39,20,-64,42,-92v39,-49,86,-114,154,-137v18,3,12,20,2,32v-33,40,-83,72,-132,102v-19,29,-57,55,-56,90v36,6,61,-32,80,-54v-1,-21,19,-59,35,-44v-4,19,-17,31,-27,47v3,6,13,9,23,6xm16,-108v42,-27,85,-55,114,-90v7,-9,13,-18,3,-23v-49,21,-82,74,-117,113","w":127},"c":{"d":"-43,-3v40,-1,65,-31,92,-52r4,5v-27,23,-52,49,-93,55v-52,-26,17,-93,50,-106v16,-6,48,-16,50,7v1,15,-22,30,-29,13v-1,-11,33,-10,13,-21v-45,15,-75,50,-94,90v0,5,2,9,7,9","w":111},"d":{"d":"-4,-21v19,-23,66,-49,51,-80v-48,9,-72,50,-95,84v-8,11,6,18,18,11xm15,-102v15,-8,48,-14,45,11r90,-119r20,0r-140,186v-5,6,-13,17,-3,20v27,-8,44,-29,65,-45r4,5v-23,19,-41,47,-76,45v-14,-1,-6,-21,-5,-30v-17,16,-42,40,-72,28v-17,-49,37,-81,72,-101","w":151},"e":{"d":"-66,-14v7,-55,75,-112,119,-85v-10,32,-56,46,-89,54v-5,12,-28,30,-11,42v42,-1,63,-24,90,-43r3,5v-25,21,-51,42,-90,46v-13,1,-21,-7,-22,-19xm-28,-54v29,-9,67,-19,72,-47v-32,-4,-51,29,-72,47","w":114},"f":{"d":"112,-219v13,-8,28,-16,37,-4v-1,28,-20,42,-40,61v-30,30,-72,63,-110,87r-25,35v15,11,43,3,54,-7v6,15,-30,23,-49,18r-9,-4r-91,124r-21,0r99,-139v-3,-20,15,-26,29,-34v39,-53,75,-104,126,-137xm13,-93v47,-39,104,-67,127,-125v-20,-9,-36,13,-50,28v-26,28,-50,61,-77,97","w":93},"g":{"d":"-112,76v36,25,75,-41,97,-66v-36,18,-81,31,-97,66xm42,-109v12,0,18,5,18,17r10,-13r19,0r-73,97v27,-9,49,-26,70,-41v0,24,-54,40,-79,52v-31,38,-57,87,-118,88v-22,-16,7,-39,21,-49v23,-16,51,-29,83,-41r27,-36v-20,17,-34,39,-66,39v-12,0,-16,-7,-17,-18v12,-53,51,-84,105,-95xm49,-83v9,-13,-4,-23,-17,-15v-35,21,-67,50,-82,92v43,5,77,-45,99,-77","w":145},"h":{"d":"17,-135v33,-34,65,-98,116,-87v-2,40,-44,66,-73,89v-13,11,-34,24,-50,31r-25,34v21,-18,39,-35,70,-41v30,2,6,36,-2,46v-15,18,-31,35,-43,55v1,3,2,4,6,4v30,-6,48,-28,70,-45r4,5v-23,20,-41,43,-77,47v-26,-5,-6,-41,4,-49v13,-19,32,-31,41,-53v-1,-3,-2,-3,-5,-3v-54,14,-83,63,-116,102r-21,0xm17,-112v37,-28,108,-63,103,-108v-30,9,-38,25,-59,52","w":145},"i":{"d":"-45,5v-29,-10,0,-50,9,-62r36,-48r20,0v-22,34,-53,59,-68,99v27,8,45,-25,66,-39r5,4v-21,18,-37,40,-68,46xm39,-137v-13,-5,-2,-25,11,-24v6,1,8,5,9,10v-1,10,-10,18,-20,14","w":85},"j":{"d":"-85,15v-20,12,-70,30,-60,57v31,-1,43,-35,60,-57xm-108,62v-11,11,-42,31,-49,5v9,-35,46,-45,76,-62r83,-110r20,0r-76,100v31,-15,57,-34,85,-53v-7,29,-68,47,-94,65v-14,21,-29,40,-45,55xm38,-137v-13,-6,-2,-26,11,-24v6,1,8,5,9,10v-1,10,-10,18,-20,14","w":90},"k":{"d":"11,4v-42,-12,32,-55,-9,-61v12,-20,57,-11,63,-41v-2,-1,-2,-2,-5,-2v-56,13,-90,59,-122,100r-22,0r99,-129v35,-38,64,-90,121,-99v16,19,-12,41,-26,56v-25,24,-69,56,-100,74r-20,28v23,-15,45,-39,78,-38v5,1,8,4,8,10v-4,25,-30,34,-56,38v22,16,-8,39,-8,56v30,-4,42,-28,65,-42r5,3v-21,19,-39,41,-71,47xm23,-115v41,-31,97,-56,111,-105v-33,-3,-55,38,-77,61v-12,12,-22,28,-34,44","w":138},"l":{"d":"68,-184v21,-20,50,-56,80,-41v2,25,-20,40,-39,59v-30,31,-68,57,-108,85v-10,25,-53,54,-44,79v28,-8,43,-27,64,-46r4,4v-20,21,-37,43,-70,49v-19,-2,-16,-21,-8,-36v30,-54,75,-110,121,-153xm14,-98v46,-37,103,-67,126,-122v-20,-10,-37,16,-53,31v-27,25,-50,57,-73,91","w":92},"m":{"d":"61,-74v21,-14,39,-36,70,-34v20,9,-1,36,-9,45r-42,52v0,5,0,7,5,7v30,-6,48,-28,70,-45r4,5v-24,19,-40,44,-77,47v-26,-5,-6,-42,5,-49v12,-19,31,-31,40,-53v-1,-3,-2,-3,-5,-3v-53,15,-84,61,-116,102r-21,0v23,-34,54,-61,73,-99v-1,-3,-2,-3,-5,-3v-54,14,-83,63,-116,102r-21,0r79,-105r18,0r-24,33v22,-15,40,-38,73,-36v16,5,3,24,-1,34","w":215},"n":{"d":"55,-109v30,2,6,36,-2,46v-15,18,-31,35,-43,55v27,10,53,-26,76,-41r4,5v-23,19,-41,43,-77,47v-26,-5,-6,-41,4,-49v13,-19,32,-31,41,-53v-1,-3,-2,-3,-5,-3v-54,14,-83,63,-116,102r-21,0r79,-105r18,0r-24,33v20,-15,38,-32,66,-37","w":145},"o":{"d":"43,-109v31,3,8,44,-1,56v7,6,23,4,31,0v6,10,-11,9,-19,11v-6,-2,-13,-2,-17,-6v-19,24,-38,53,-77,53v-12,0,-22,-6,-20,-19v8,-56,50,-83,103,-95xm51,-87v2,-23,-21,-12,-31,-4v-28,22,-62,45,-68,83v2,3,7,6,12,6v35,-9,65,-30,69,-69v4,-5,8,-16,18,-16","w":131},"p":{"d":"27,-99v16,-15,56,-11,39,18v-16,27,-41,47,-56,73v2,1,2,4,5,4v30,-6,48,-28,70,-45r5,5v-23,19,-41,43,-77,47v-26,-5,-6,-41,4,-49v9,-18,41,-37,38,-56v-50,9,-78,50,-105,85r-82,108r-20,0r146,-196r19,0r-25,33v12,-9,26,-21,39,-27","w":145},"q":{"d":"-14,-83v15,-12,65,-45,76,-11r0,3r10,-14r18,0r-100,134r99,-79v9,10,-10,17,-21,27v-42,37,-92,67,-122,114r-21,0r93,-122v-18,16,-51,49,-77,25v-4,-38,23,-59,45,-77xm-48,-8v42,8,106,-57,96,-93v-45,12,-80,51,-96,93","w":153},"r":{"d":"33,-87v7,-12,15,-23,34,-19v-7,10,-20,14,-21,30v4,2,10,2,16,2v-3,12,-28,7,-30,-3v-32,26,-71,45,-97,77r-19,0r81,-105r19,0r-59,75","w":104},"s":{"d":"-52,-28v23,5,-11,24,4,26v44,-8,59,-56,64,-105v-16,19,-36,33,-55,50v-8,-15,27,-25,36,-41v15,-5,26,-48,42,-35v-8,17,-16,24,-16,55v0,48,-23,77,-69,81v-24,2,-27,-29,-6,-31","w":98},"t":{"d":"-42,5v-28,-10,-2,-49,8,-62r48,-64r-26,0v3,-10,18,-8,31,-8r26,-34r21,0r-25,34r35,0v-3,13,-25,7,-40,8r-81,114v24,14,47,-27,67,-39r5,4v-21,19,-36,42,-69,47","w":96},"u":{"d":"-47,5v-29,-7,-5,-45,5,-57r40,-53r21,0r-70,94v0,15,17,9,27,2v34,-24,68,-57,92,-95r21,-1v-21,35,-58,62,-70,101v28,3,45,-27,66,-42r5,4v-19,19,-37,47,-68,47v-16,0,-13,-23,-10,-34v-18,15,-33,29,-59,34","w":151},"v":{"d":"34,-59v2,-20,9,-51,30,-46v12,22,-40,47,-11,56v12,4,18,-8,22,1v-11,7,-30,8,-38,-2v-20,24,-39,49,-74,55v-35,-5,-7,-52,3,-65r34,-45r21,0v-20,34,-57,58,-66,99v0,3,5,4,9,5v34,-7,52,-33,70,-58","w":133},"w":{"d":"129,-107v17,15,-11,38,-18,52v7,14,31,-3,32,7v-10,7,-29,7,-37,-2v-22,23,-49,65,-89,50v-5,-6,-4,-18,-3,-28v-14,15,-29,31,-55,33v-33,-7,-3,-51,7,-65r34,-45r21,0r-67,93v-3,14,12,13,21,7v39,-23,67,-64,93,-100r22,0v-20,34,-58,59,-67,99v1,3,4,6,8,5v36,-6,51,-34,72,-58v2,-20,8,-44,26,-48","w":202},"x":{"d":"28,-109v13,0,19,10,16,23v11,-11,23,-23,42,-23v10,0,15,5,16,14v2,17,-25,33,-30,13v-3,-13,27,-4,16,-19v-43,9,-57,54,-80,83v-4,8,-1,16,7,17v31,-7,53,-28,74,-47r5,4v-21,22,-45,43,-81,49v-12,-1,-18,-7,-17,-22v-13,13,-55,38,-62,7v-4,-17,25,-32,31,-12v3,13,-36,8,-14,21v42,-15,70,-56,83,-96v-2,-3,-5,-4,-10,-4v-28,9,-46,29,-69,47r-4,-6v25,-20,42,-41,77,-49","w":154},"y":{"d":"-17,12v-36,17,-80,28,-90,68v41,10,63,-42,90,-68xm-47,5v-29,-7,-5,-47,5,-58r40,-52r21,0r-70,95v1,14,17,7,27,1v36,-23,66,-59,92,-95r19,-1r-74,98v28,-11,51,-25,73,-42v-1,24,-54,40,-80,52v-31,37,-56,85,-114,88v-13,-3,-10,-20,-2,-29v23,-26,60,-45,98,-59r30,-39v-19,18,-35,36,-65,41","w":145},"z":{"d":"5,-113v18,4,-14,23,-1,22v31,15,51,-23,72,-16v1,13,-18,19,-31,23r-64,48v13,-1,31,-4,31,10v0,7,-6,12,-7,18v24,-1,46,-28,64,-44r5,5v-25,21,-44,50,-83,50v-23,-7,18,-31,0,-33v-27,-3,-52,37,-74,30v9,-13,26,-20,42,-28r70,-54v-19,6,-36,-11,-42,2r-36,30r-4,-5r44,-39v0,-10,4,-18,14,-19","w":130},"{":{"d":"81,-166v-3,-62,3,-107,67,-100r0,8v-43,-3,-48,28,-46,72v2,47,-13,70,-53,75v49,3,55,43,53,99v-1,33,13,48,46,47v-1,2,1,7,-1,8v-63,6,-69,-38,-66,-100v2,-36,-16,-48,-50,-49r0,-11v34,-2,52,-13,50,-49","w":180},"|":{"d":"98,-275r0,360r-16,0r0,-360r16,0","w":180},"}":{"d":"77,-185v2,-44,0,-77,-46,-72v1,-3,-2,-9,2,-9v63,-6,70,38,66,100v-3,38,17,47,50,50r0,9v-32,3,-52,12,-50,50v4,62,-3,107,-68,100r0,-8v44,3,48,-27,46,-72v-3,-47,15,-68,54,-74v-39,-6,-56,-27,-54,-74","w":180},"~":{"d":"147,-115v40,21,94,12,122,-14r0,16v-29,25,-81,33,-121,13v-40,-20,-89,-9,-117,16r0,-16v28,-23,76,-35,116,-15","w":299},"\u00c4":{"d":"100,-98r-54,54v12,11,27,20,48,23v6,-22,10,-51,6,-77xm98,-108v-7,-26,-18,-52,-48,-52v-54,0,-36,91,-10,111xm245,-222v-60,20,-95,72,-137,116v0,23,4,48,-2,67v43,-65,90,-126,139,-183xm48,-170v33,0,48,27,57,55v39,-43,75,-82,121,-109v12,-6,20,-8,33,-6r-111,158r-31,50v18,-3,29,-13,40,-23r4,5v-12,14,-26,25,-50,26r-9,14r-21,0r10,-15v-22,-2,-38,-12,-51,-23v-25,18,-43,40,-81,42v-34,2,-32,-44,-6,-50v9,0,16,3,16,11v3,22,-41,1,-23,28v37,13,66,-18,89,-37v-35,-25,-51,-126,13,-126xm292,-283v16,5,7,27,-8,27v-18,-5,-5,-26,8,-27xm231,-257v-14,-8,0,-25,11,-26v6,1,9,5,10,11v-2,9,-11,18,-21,15","w":233},"\u00c5":{"d":"283,-270v0,-14,-10,-19,-21,-22v-13,1,-22,8,-22,22v0,15,9,22,22,23v12,-2,21,-9,21,-23xm262,-301v19,1,31,13,31,32v-1,19,-12,31,-31,31v-20,0,-32,-11,-32,-31v0,-20,12,-32,32,-32xm100,-98r-54,54v12,11,27,20,48,23v6,-22,10,-51,6,-77xm98,-108v-7,-26,-18,-52,-48,-52v-54,0,-36,91,-10,111xm245,-222v-60,20,-95,72,-137,116v0,23,4,48,-2,67v43,-65,90,-126,139,-183xm48,-170v33,0,48,27,57,55v39,-43,75,-82,121,-109v12,-6,20,-8,33,-6r-111,158r-31,50v18,-3,29,-13,40,-23r4,5v-12,14,-26,25,-50,26r-9,14r-21,0r10,-15v-22,-2,-38,-12,-51,-23v-25,18,-43,40,-81,42v-34,2,-32,-44,-6,-50v9,0,16,3,16,11v3,22,-41,1,-23,28v37,13,66,-18,89,-37v-35,-25,-51,-126,13,-126","w":233},"\u00c7":{"d":"262,-197v10,-13,4,-29,-14,-27v-70,10,-108,59,-151,101v73,-5,131,-31,165,-74xm7,-166v0,-70,93,-86,160,-67v-6,10,-30,-2,-48,-1v-52,4,-97,22,-104,69v3,29,26,39,56,41v49,-46,96,-98,177,-107v37,-4,28,36,9,52v-40,35,-95,60,-167,64v-21,25,-45,45,-48,85v22,63,137,11,137,-38v0,-14,-12,-21,-26,-21v-45,0,-66,36,-84,69r-6,-1v18,-37,39,-75,89,-75v20,0,34,8,34,29v-10,47,-52,72,-104,72v-33,0,-55,-12,-54,-45v1,-35,19,-54,35,-77v-30,-5,-56,-16,-56,-49xm80,43v0,-15,-20,-16,-35,-13v10,-9,9,-29,28,-29v-2,6,-14,16,-11,20v16,-3,34,1,34,19v0,39,-56,32,-79,18v6,-15,23,6,40,2v14,0,23,-5,23,-17","w":262},"\u00c9":{"d":"105,-148v58,-3,113,-20,130,-62v-4,-18,-31,-10,-47,-5v-34,13,-68,35,-83,67xm105,-132v17,-4,43,8,17,13v-7,-1,-14,-1,-18,-5v-48,14,-94,42,-103,93v3,22,23,29,48,29v48,0,92,-19,100,-60v-1,-14,-11,-21,-28,-20v-44,2,-64,29,-88,54r-5,-3v22,-29,46,-59,93,-59v20,0,35,8,36,28v-8,45,-56,67,-107,67v-34,0,-60,-11,-59,-46v2,-61,53,-78,106,-90r-5,-10v-38,-2,-72,-12,-72,-48v0,-54,76,-62,121,-43v-6,10,-27,-3,-43,-1v-58,-8,-99,66,-32,81v8,2,16,3,26,3v14,-52,63,-75,123,-80v27,-3,37,24,18,41v-28,26,-75,46,-128,48r0,8xm247,-292v7,-9,25,-3,17,8v-19,10,-37,27,-63,33","w":233},"\u00d1":{"d":"-67,-38v24,16,-33,21,-7,35v61,-8,82,-65,114,-104v43,-52,71,-100,115,-127v-27,59,-41,157,-73,213r75,-105v35,-49,57,-90,99,-108v20,-2,22,27,8,34v-6,4,-15,1,-15,-7v0,-9,23,-12,8,-19v-12,-1,-18,5,-34,23v-51,56,-98,160,-162,207v28,-60,39,-162,74,-215v-64,53,-108,165,-184,210v-17,10,-43,7,-43,-14v0,-14,9,-24,25,-23xm199,-284v20,1,47,17,51,-8r6,0v-1,33,-35,32,-62,23v-9,1,-16,5,-17,14r-7,0v5,-15,9,-30,29,-29","w":206},"\u00d6":{"d":"142,-216v38,-22,132,-22,98,37v-5,8,-14,13,-23,17r-2,-5v12,-8,24,-16,24,-34v0,-41,-67,-20,-90,-7v-61,35,-112,88,-141,152v-28,63,46,63,84,35v47,-34,91,-76,106,-141v-26,-47,-103,11,-103,53v0,8,6,12,13,12v32,-6,46,-35,60,-61r5,2v-12,31,-31,62,-67,67v-14,2,-20,-8,-21,-20v9,-47,43,-74,92,-81v55,4,15,75,-1,97v-34,45,-71,98,-140,98v-81,0,-29,-117,2,-145v31,-28,66,-54,104,-76xm245,-257v-14,-8,3,-29,15,-25v13,8,0,30,-15,25xm207,-283v17,6,6,27,-8,27v-18,-6,-4,-26,8,-27","w":238},"\u00dc":{"d":"60,-220v34,-29,131,-17,97,44v-35,62,-98,97,-126,166v41,17,73,-40,104,-60v48,-51,92,-105,134,-162r23,0r-161,212v-5,7,-5,17,4,15v32,-6,52,-27,76,-45r5,5v-26,19,-47,41,-83,47v-37,-6,-3,-52,7,-67v-34,27,-51,67,-100,67v-36,0,-14,-46,-2,-61r100,-118v19,-18,15,-55,-21,-52v-47,4,-95,26,-95,70v0,13,6,21,20,20v42,-3,60,-36,69,-74r6,1v-7,43,-31,82,-76,82v-47,0,-22,-69,2,-79v5,-4,11,-8,17,-11xm269,-283v17,5,6,27,-8,27v-18,-5,-5,-26,8,-27xm208,-257v-13,-7,0,-25,11,-26v6,1,9,5,10,11v-2,9,-11,18,-21,15","w":262},"\u00e1":{"d":"-16,-83v15,-12,65,-45,76,-11r0,3r10,-14r19,0v-20,34,-56,61,-66,100v29,-2,47,-29,69,-44r4,5v-23,19,-41,46,-76,45v-13,-1,-7,-20,-5,-30v-16,17,-42,39,-72,28v-14,-35,19,-64,41,-82xm-30,-6v32,-19,87,-56,78,-95v-45,7,-72,51,-95,82v-9,13,6,20,17,13xm99,-166v6,-9,25,-4,17,8v-20,10,-37,28,-64,33","w":151},"\u00e0":{"d":"-16,-83v15,-12,65,-45,76,-11r0,3r10,-14r19,0v-20,34,-56,61,-66,100v29,-2,47,-29,69,-44r4,5v-23,19,-41,46,-76,45v-13,-1,-7,-20,-5,-30v-16,17,-42,39,-72,28v-14,-35,19,-64,41,-82xm-30,-6v32,-19,87,-56,78,-95v-45,7,-72,51,-95,82v-9,13,6,20,17,13xm48,-154v-10,-2,-9,-23,3,-17v19,10,30,31,46,46v-23,-3,-31,-21,-49,-29","w":151},"\u00e2":{"d":"-16,-83v15,-12,65,-45,76,-11r0,3r10,-14r19,0v-20,34,-56,61,-66,100v29,-2,47,-29,69,-44r4,5v-23,19,-41,46,-76,45v-13,-1,-7,-20,-5,-30v-16,17,-42,39,-72,28v-14,-35,19,-64,41,-82xm-30,-6v32,-19,87,-56,78,-95v-45,7,-72,51,-95,82v-9,13,6,20,17,13xm90,-171r19,46v-21,0,-20,-22,-32,-31v-20,9,-32,28,-58,31r54,-46r17,0","w":151},"\u00e4":{"d":"-16,-83v15,-12,65,-45,76,-11r0,3r10,-14r19,0v-20,34,-56,61,-66,100v29,-2,47,-29,69,-44r4,5v-23,19,-41,46,-76,45v-13,-1,-7,-20,-5,-30v-16,17,-42,39,-72,28v-14,-35,19,-64,41,-82xm-30,-6v32,-19,87,-56,78,-95v-45,7,-72,51,-95,82v-9,13,6,20,17,13xm95,-131v-13,-8,2,-30,15,-25v13,8,0,30,-15,25xm57,-157v18,6,6,26,-8,27v-18,-6,-5,-26,8,-27","w":151},"\u00e3":{"d":"-16,-83v15,-12,65,-45,76,-11r0,3r10,-14r19,0v-20,34,-56,61,-66,100v29,-2,47,-29,69,-44r4,5v-23,19,-41,46,-76,45v-13,-1,-7,-20,-5,-30v-16,17,-42,39,-72,28v-14,-35,19,-64,41,-82xm-30,-6v32,-19,87,-56,78,-95v-45,7,-72,51,-95,82v-9,13,6,20,17,13xm58,-158v20,0,47,16,51,-8r7,0v-3,37,-40,28,-69,24v-6,2,-10,6,-11,14r-6,-1v3,-16,10,-29,28,-29","w":151},"\u00e5":{"d":"62,-180v18,2,32,12,32,32v0,20,-12,32,-32,32v-20,0,-32,-12,-32,-32v0,-20,14,-30,32,-32xm84,-148v0,-27,-44,-28,-44,0v1,13,8,22,22,22v14,1,22,-10,22,-22xm-16,-83v15,-12,65,-45,76,-11r0,3r10,-14r19,0v-20,34,-56,61,-66,100v29,-2,47,-29,69,-44r4,5v-23,19,-41,46,-76,45v-13,-1,-7,-20,-5,-30v-16,17,-42,39,-72,28v-14,-35,19,-64,41,-82xm-30,-6v32,-19,87,-56,78,-95v-45,7,-72,51,-95,82v-9,13,6,20,17,13","w":151},"\u00e7":{"d":"-43,-3v40,-1,65,-31,92,-52r4,5v-27,23,-52,49,-93,55v-52,-26,17,-93,50,-106v16,-6,48,-16,50,7v1,15,-22,30,-29,13v-1,-11,33,-10,13,-21v-45,15,-75,50,-94,90v0,5,2,9,7,9xm-24,43v1,-16,-20,-15,-34,-13v10,-9,8,-29,27,-29v-2,6,-14,16,-11,20v16,-4,35,3,35,19v1,38,-56,33,-79,18r2,-7v17,8,57,19,60,-8","w":111},"\u00e9":{"d":"-66,-14v7,-55,75,-112,119,-85v-10,32,-56,46,-89,54v-5,12,-28,30,-11,42v42,-1,63,-24,90,-43r3,5v-25,21,-51,42,-90,46v-13,1,-21,-7,-22,-19xm-28,-54v29,-9,67,-19,72,-47v-32,-4,-51,29,-72,47xm80,-166v6,-9,25,-4,17,8v-19,11,-37,28,-64,33","w":114},"\u00e8":{"d":"-66,-14v7,-55,75,-112,119,-85v-10,32,-56,46,-89,54v-5,12,-28,30,-11,42v42,-1,63,-24,90,-43r3,5v-25,21,-51,42,-90,46v-13,1,-21,-7,-22,-19xm-28,-54v29,-9,67,-19,72,-47v-32,-4,-51,29,-72,47xm29,-154v-8,-2,-11,-17,0,-18v22,11,32,31,49,47v-23,-3,-31,-21,-49,-29","w":114},"\u00ea":{"d":"-66,-14v7,-55,75,-112,119,-85v-10,32,-56,46,-89,54v-5,12,-28,30,-11,42v42,-1,63,-24,90,-43r3,5v-25,21,-51,42,-90,46v-13,1,-21,-7,-22,-19xm-28,-54v29,-9,67,-19,72,-47v-32,-4,-51,29,-72,47xm71,-171r19,46v-21,0,-20,-22,-32,-31v-20,9,-32,28,-58,31r54,-46r17,0","w":114},"\u00eb":{"d":"-66,-14v7,-55,75,-112,119,-85v-10,32,-56,46,-89,54v-5,12,-28,30,-11,42v42,-1,63,-24,90,-43r3,5v-25,21,-51,42,-90,46v-13,1,-21,-7,-22,-19xm-28,-54v29,-9,67,-19,72,-47v-32,-4,-51,29,-72,47xm76,-131v-14,-8,3,-29,15,-25v13,9,0,30,-15,25xm26,-131v-13,-8,1,-25,12,-26v18,6,6,26,-8,27v-1,0,-3,-1,-4,-1","w":114},"\u00ed":{"d":"-45,5v-29,-10,0,-50,9,-62r36,-48r20,0v-22,34,-53,59,-68,99v27,8,45,-25,66,-39r5,4v-21,18,-37,40,-68,46xm66,-166v9,-12,25,1,14,11v-20,7,-36,26,-61,30","w":85},"\u00ec":{"d":"-45,5v-29,-10,0,-50,9,-62r36,-48r20,0v-22,34,-53,59,-68,99v27,8,45,-25,66,-39r5,4v-21,18,-37,40,-68,46xm15,-154v-9,-2,-11,-17,0,-18v22,10,31,31,48,47v-22,-4,-31,-21,-48,-29","w":85},"\u00ee":{"d":"-45,5v-29,-10,0,-50,9,-62r36,-48r20,0v-22,34,-53,59,-68,99v27,8,45,-25,66,-39r5,4v-21,18,-37,40,-68,46xm57,-171r18,46v-20,0,-20,-22,-31,-31v-20,9,-32,28,-58,31r54,-46r17,0","w":85},"\u00ef":{"d":"-45,5v-29,-10,0,-50,9,-62r36,-48r20,0v-22,34,-53,59,-68,99v27,8,45,-25,66,-39r5,4v-21,18,-37,40,-68,46xm62,-131v-13,-8,0,-25,11,-26v17,5,7,26,-7,27v-1,0,-3,-1,-4,-1xm12,-131v-13,-8,0,-25,11,-26v19,6,7,27,-8,27v-1,0,-2,-1,-3,-1","w":85},"\u00f1":{"d":"55,-109v30,2,6,36,-2,46v-15,18,-31,35,-43,55v27,10,53,-26,76,-41r4,5v-23,19,-41,43,-77,47v-26,-5,-6,-41,4,-49v13,-19,32,-31,41,-53v-1,-3,-2,-3,-5,-3v-54,14,-83,63,-116,102r-21,0r79,-105r18,0r-24,33v20,-15,38,-32,66,-37xm55,-158v20,0,47,16,51,-8r6,0v-1,38,-40,27,-68,24v-6,2,-10,6,-11,14r-7,-1v4,-15,10,-29,29,-29","w":145},"\u00f3":{"d":"43,-109v31,3,8,44,-1,56v7,6,23,4,31,0v6,10,-11,9,-19,11v-6,-2,-13,-2,-17,-6v-19,24,-38,53,-77,53v-12,0,-22,-6,-20,-19v8,-56,50,-83,103,-95xm51,-87v2,-23,-21,-12,-31,-4v-28,22,-62,45,-68,83v2,3,7,6,12,6v35,-9,65,-30,69,-69v4,-5,8,-16,18,-16xm89,-166v9,-12,26,1,14,11v-20,7,-36,26,-61,30","w":131},"\u00f2":{"d":"43,-109v31,3,8,44,-1,56v7,6,23,4,31,0v6,10,-11,9,-19,11v-6,-2,-13,-2,-17,-6v-19,24,-38,53,-77,53v-12,0,-22,-6,-20,-19v8,-56,50,-83,103,-95xm51,-87v2,-23,-21,-12,-31,-4v-28,22,-62,45,-68,83v2,3,7,6,12,6v35,-9,65,-30,69,-69v4,-5,8,-16,18,-16xm37,-154v-12,-5,-5,-24,6,-16v16,12,28,30,43,45v-22,-4,-31,-21,-49,-29","w":131},"\u00f4":{"d":"43,-109v31,3,8,44,-1,56v7,6,23,4,31,0v6,10,-11,9,-19,11v-6,-2,-13,-2,-17,-6v-19,24,-38,53,-77,53v-12,0,-22,-6,-20,-19v8,-56,50,-83,103,-95xm51,-87v2,-23,-21,-12,-31,-4v-28,22,-62,45,-68,83v2,3,7,6,12,6v35,-9,65,-30,69,-69v4,-5,8,-16,18,-16xm80,-171r18,46v-20,0,-20,-22,-31,-31v-20,9,-32,28,-58,31r54,-46r17,0","w":131},"\u00f6":{"d":"43,-109v31,3,8,44,-1,56v7,6,23,4,31,0v6,10,-11,9,-19,11v-6,-2,-13,-2,-17,-6v-19,24,-38,53,-77,53v-12,0,-22,-6,-20,-19v8,-56,50,-83,103,-95xm51,-87v2,-23,-21,-12,-31,-4v-28,22,-62,45,-68,83v2,3,7,6,12,6v35,-9,65,-30,69,-69v4,-5,8,-16,18,-16xm85,-131v-13,-8,0,-25,11,-26v17,5,7,26,-7,27v-1,0,-3,-1,-4,-1xm35,-131v-13,-8,2,-30,15,-25v13,9,0,30,-15,25","w":131},"\u00f5":{"d":"43,-109v31,3,8,44,-1,56v7,6,23,4,31,0v6,10,-11,9,-19,11v-6,-2,-13,-2,-17,-6v-19,24,-38,53,-77,53v-12,0,-22,-6,-20,-19v8,-56,50,-83,103,-95xm51,-87v2,-23,-21,-12,-31,-4v-28,22,-62,45,-68,83v2,3,7,6,12,6v35,-9,65,-30,69,-69v4,-5,8,-16,18,-16xm48,-158v20,0,47,16,51,-8r6,0v-2,38,-40,27,-69,24v-6,2,-9,7,-10,14r-7,-1v4,-15,10,-29,29,-29","w":131},"\u00fa":{"d":"-47,5v-29,-7,-5,-45,5,-57r40,-53r21,0r-70,94v0,15,17,9,27,2v34,-24,68,-57,92,-95r21,-1v-21,35,-58,62,-70,101v28,3,45,-27,66,-42r5,4v-19,19,-37,47,-68,47v-16,0,-13,-23,-10,-34v-18,15,-33,29,-59,34xm99,-166v6,-9,25,-4,17,8v-20,10,-37,28,-64,33","w":151},"\u00f9":{"d":"-47,5v-29,-7,-5,-45,5,-57r40,-53r21,0r-70,94v0,15,17,9,27,2v34,-24,68,-57,92,-95r21,-1v-21,35,-58,62,-70,101v28,3,45,-27,66,-42r5,4v-19,19,-37,47,-68,47v-16,0,-13,-23,-10,-34v-18,15,-33,29,-59,34xm48,-154v-10,-2,-9,-23,3,-17v19,10,30,31,46,46v-23,-3,-31,-21,-49,-29","w":151},"\u00fb":{"d":"-47,5v-29,-7,-5,-45,5,-57r40,-53r21,0r-70,94v0,15,17,9,27,2v34,-24,68,-57,92,-95r21,-1v-21,35,-58,62,-70,101v28,3,45,-27,66,-42r5,4v-19,19,-37,47,-68,47v-16,0,-13,-23,-10,-34v-18,15,-33,29,-59,34xm90,-171r19,46v-21,0,-20,-22,-32,-31v-20,9,-32,28,-58,31r54,-46r17,0","w":151},"\u00fc":{"d":"-47,5v-29,-7,-5,-45,5,-57r40,-53r21,0r-70,94v0,15,17,9,27,2v34,-24,68,-57,92,-95r21,-1v-21,35,-58,62,-70,101v28,3,45,-27,66,-42r5,4v-19,19,-37,47,-68,47v-16,0,-13,-23,-10,-34v-18,15,-33,29,-59,34xm95,-131v-13,-8,2,-30,15,-25v13,8,0,30,-15,25xm57,-157v18,6,6,26,-8,27v-18,-6,-5,-26,8,-27","w":151},"\u2020":{"d":"112,-163v-19,4,-77,18,-62,-9v19,-6,42,2,63,7v15,-20,19,-61,45,-67v19,12,-11,33,-18,45v-9,10,-9,9,-21,22v22,0,49,-12,66,-1v2,14,-10,14,-22,13v-16,-2,-30,-5,-45,-9v-8,51,-41,73,-64,108r-70,107r-8,-5r72,-112v20,-34,34,-75,64,-99","w":178},"\u00a2":{"d":"103,-78v-29,-13,23,-17,5,-27v-49,13,-80,47,-96,93v1,4,6,5,11,6v38,-7,61,-32,88,-53r4,5v-30,22,-51,52,-98,54v-11,8,-12,25,-30,26r23,-27v-27,-53,38,-104,95,-113v10,-7,11,-24,28,-24r-21,26v17,5,9,35,-9,34","w":145},"\u00a3":{"d":"-23,-21v-15,0,-18,17,-1,16v18,2,37,-1,50,-7v-15,-6,-30,-9,-49,-9xm54,-17v52,20,110,9,136,-28r5,4v-28,40,-100,58,-158,33v-20,10,-74,22,-83,-5v9,-30,65,-14,90,-7v17,-12,30,-28,41,-46r-52,0r3,-7r53,0v41,-56,71,-119,151,-129v23,-3,33,9,33,30v0,38,-28,69,-64,74v-11,-2,-20,-6,-20,-19v1,-24,19,-33,33,-44r4,4v-14,10,-27,19,-30,39v23,29,69,-16,69,-55v0,-39,-60,-17,-76,-1v-25,26,-52,62,-77,101r61,0r-1,7r-65,0v-14,20,-32,36,-53,49","w":247},"\u00a7":{"d":"57,-45v36,2,61,-21,48,-57v-6,-18,-8,-41,-18,-55v-34,-1,-58,22,-47,57xm-9,-5v14,7,2,19,-7,20v24,27,79,-6,57,-50v-5,-24,-16,-44,-17,-70v-2,-40,27,-56,63,-59v-10,-40,16,-71,56,-70v27,-6,44,31,17,36v-12,1,-12,-14,-5,-18v3,-1,8,1,9,-2v-26,-29,-82,7,-60,51v24,47,26,137,-46,128v9,42,-15,67,-54,70v-25,2,-45,-31,-17,-36r4,0","w":178},"\u00b6":{"d":"15,-198v0,-69,78,-64,149,-62r0,12r-23,0r0,248r-12,0r0,-248r-34,0r0,248r-13,0r0,-137v-39,-2,-67,-22,-67,-61","w":180},"\u00df":{"d":"140,-195v24,-26,-1,-35,-21,-20v-46,35,-84,90,-120,140r-120,166r-21,0r127,-173v40,-53,77,-106,129,-139v16,-10,40,-16,44,4v-12,60,-95,59,-87,137v-7,47,-27,79,-75,83v-14,1,-22,-4,-23,-16v-1,-13,17,-27,26,-14v-2,10,-27,13,-12,24v82,-14,54,-129,122,-165v15,-8,24,-19,31,-27","w":143},"\u00ae":{"d":"145,-185v-28,-2,-20,40,-17,60v30,1,56,-4,56,-31v0,-20,-17,-27,-39,-29xm106,-166v0,-15,-9,-18,-24,-18r0,-7v51,2,119,-12,125,35v-3,26,-27,29,-51,35v23,7,35,22,39,48v-2,18,22,20,22,3v-1,-5,4,-16,8,-9v6,34,-50,44,-50,11v0,-34,-11,-55,-49,-52v2,27,-10,68,24,62r0,7r-68,0r0,-7v15,0,25,-3,24,-18r0,-90xm256,-119v8,-121,-175,-142,-208,-41v-25,78,19,150,100,150v67,0,104,-43,108,-109xm29,-142v13,-129,249,-126,240,23v-5,74,-46,121,-121,121v-82,0,-128,-57,-119,-144","w":295},"\u00a9":{"d":"144,-193v20,-3,39,22,51,6v0,-3,2,-6,7,-5r0,54r-7,0v-6,-27,-19,-48,-50,-48v-35,0,-45,29,-45,66v0,39,12,68,49,68v25,0,40,-14,50,-30r5,2v-10,21,-28,37,-59,37v-44,0,-69,-30,-69,-73v0,-45,25,-74,68,-77xm256,-119v8,-121,-175,-142,-208,-41v-25,78,19,150,100,150v67,0,104,-43,108,-109xm29,-142v13,-129,249,-126,240,23v-5,74,-46,121,-121,121v-82,0,-128,-57,-119,-144","w":295},"\u2122":{"d":"154,-168v0,-25,15,-75,-13,-79r0,-5r30,0r25,73r28,-73r28,0v2,10,-15,1,-14,15v2,24,-4,57,5,74v5,0,11,-2,9,5r-40,0v-3,-11,14,1,14,-14r0,-72v-12,28,-19,61,-34,86r-30,-85r0,75v1,4,6,6,13,5r0,5r-34,0v-3,-9,13,-2,13,-10xm77,-247v-21,-2,-27,10,-29,27v-7,-5,0,-22,-2,-32r77,0r2,31r-4,0v-2,-17,-9,-28,-30,-26r1,79v1,4,6,6,13,5r0,5r-42,0v-3,-11,14,1,14,-14r0,-75","w":295},"\u00b4":{"d":"113,-166v10,-12,26,1,14,11v-20,7,-36,26,-61,30","w":180},"\u00a8":{"d":"109,-131v-13,-8,0,-25,11,-26v17,6,6,27,-8,27v-1,0,-2,-1,-3,-1xm59,-131v-14,-8,0,-25,12,-26v15,5,7,28,-8,27v-1,0,-3,-1,-4,-1","w":180},"\u2260":{"d":"225,-195r-38,49r68,0r0,14r-77,0r-39,50r116,0r0,14r-125,0r-45,57r-10,-8r37,-49r-67,0r0,-14r76,0r39,-50r-115,0r0,-14r124,0r45,-57","w":299},"\u00c6":{"d":"100,-98r-54,54v12,11,26,19,45,23v10,-19,13,-50,9,-77xm98,-108v-7,-26,-18,-52,-48,-52v-54,0,-36,91,-10,111xm223,-131v-7,-8,-10,-19,-11,-33r-32,44v14,-4,27,-9,43,-11xm232,-132v16,-4,42,13,16,13v-8,0,-14,-2,-19,-5v-48,14,-93,42,-102,93v3,22,23,29,48,29v48,0,92,-19,100,-60v-1,-14,-12,-21,-28,-20v-46,2,-64,28,-88,54r-5,-3v21,-30,46,-59,93,-59v21,0,34,9,36,28v-9,45,-55,66,-108,67v-30,1,-52,-9,-57,-34r-20,29r-20,0r10,-15v-20,-3,-36,-12,-48,-23v-25,18,-43,40,-81,42v-34,2,-32,-44,-6,-50v9,0,16,3,16,11v3,22,-41,1,-23,28v37,13,66,-18,89,-37v-35,-25,-51,-126,13,-126v33,0,48,27,57,55v39,-43,75,-82,121,-109v12,-6,20,-8,33,-6v-4,4,-6,12,-11,15v21,-7,41,-15,67,-16v19,-1,32,5,32,21v0,39,-43,72,-80,60v-12,-17,5,-36,18,-42v10,8,-30,25,-7,38v34,-3,56,-23,60,-54v2,-11,-9,-15,-20,-15v-49,4,-94,21,-96,71v2,8,5,15,10,20xm245,-222v-60,20,-95,72,-137,116v1,23,1,46,-2,65v41,-64,93,-124,139,-181","w":360},"\u00d8":{"d":"97,-102v32,16,56,-26,69,-51xm123,-44v31,-34,79,-74,72,-131r-20,14v-12,36,-33,74,-79,71r-6,-6r-87,66v3,44,66,27,89,9v9,-7,22,-13,31,-23xm189,-180v-50,-5,-79,32,-94,71xm235,-214v-92,-36,-162,66,-209,125v-11,14,-19,31,-23,49r83,-63v2,-53,47,-87,102,-86v4,0,5,4,8,5xm9,-100v45,-69,135,-157,232,-119r30,-23r5,6v-10,12,-35,15,-28,35v-1,21,-15,32,-31,39v-2,-14,30,-20,21,-45r-37,27v15,66,-47,112,-84,150v-26,27,-105,58,-124,7r-41,30r-4,-6v13,-15,43,-17,43,-43v0,-21,7,-41,18,-58","w":238},"\u221e":{"d":"249,-110v0,-40,-41,-64,-66,-35v-11,12,-18,29,-27,47v10,20,24,37,51,37v27,0,42,-19,42,-49xm90,-57v34,0,40,-34,54,-61v-11,-19,-23,-35,-51,-35v-28,0,-43,20,-43,49v0,26,13,47,40,47xm207,-42v-31,0,-43,-24,-54,-48v-13,23,-25,48,-57,48v-35,0,-54,-29,-54,-65v0,-37,15,-65,51,-65v32,0,43,23,54,47v12,-23,24,-48,56,-48v36,0,55,28,55,65v0,37,-15,66,-51,66","w":299},"\u00b1":{"d":"255,-24r0,14r-210,0r0,-14r210,0xm157,-204r0,62r98,0r0,15r-98,0r0,61r-14,0r0,-61r-98,0r0,-15r98,0r0,-62r14,0","w":299},"\u2264":{"d":"253,-22r0,14r-207,0r0,-14r207,0xm253,-190r-183,61r183,62r0,16r-207,-71r0,-13r207,-71r0,16","w":299},"\u2265":{"d":"253,-22r0,14r-207,0r0,-14r207,0xm253,-135r0,13r-207,71r0,-16r184,-62r-184,-61r0,-16","w":299},"\u00a5":{"d":"0,-74r5,-7r59,0r-13,-88r15,0r11,76r101,-76r16,0r-117,88r54,0r-4,7r-53,0r-50,74r-16,0r51,-74r-59,0","w":147},"\u00b5":{"d":"67,3v-26,1,-35,-15,-39,-36v-4,29,-7,70,-14,94v-4,16,-20,15,-22,1r46,-218r21,0v-6,36,-19,68,-21,107v-3,55,58,39,70,4v11,-32,19,-75,28,-111r21,0r-25,125v0,10,5,16,13,17v27,4,21,-48,40,-42v-1,28,-14,58,-46,58v-20,1,-26,-13,-25,-34v-8,19,-20,35,-47,35","w":184},"\u2202":{"d":"88,-136v26,0,37,14,44,34v2,-37,16,-110,-24,-115v-16,1,-18,26,-36,26v-7,0,-11,-4,-12,-11v1,-19,18,-26,37,-26v46,0,61,45,61,96v0,68,-19,137,-80,137v-37,0,-55,-29,-55,-67v0,-42,23,-74,65,-74xm79,-3v36,-2,46,-39,46,-78v0,-25,-7,-44,-32,-44v-37,0,-47,39,-47,80v0,24,9,44,33,42","w":180},"\u03a3":{"d":"195,-205v-7,-13,-2,-38,-18,-42r-145,0r167,154r0,6r-161,139r173,-3v8,-14,11,-33,17,-49r12,0r-21,69r-217,0r0,-2r179,-153r-180,-165r0,-8r192,0r14,54r-12,0","w":243},"\u220f":{"d":"260,-259r0,12r-34,0r0,305r34,0r0,11r-88,0r0,-11r37,0r0,-305r-148,0r0,305r36,0r0,11r-87,0r0,-11r34,0r0,-305r-34,0r0,-12r250,0","w":270},"\u03c0":{"d":"4,-93v7,-35,19,-61,58,-62r161,-1r-5,20r-54,0v-10,36,-12,95,-22,130v-5,18,-24,16,-25,0v9,-40,28,-88,37,-130r-64,0r-13,91v-4,25,-4,46,-20,52v-8,0,-13,-5,-13,-13v8,-41,28,-88,37,-130r-33,0v-25,1,-27,22,-33,44","w":227},"\u222b":{"d":"26,25v21,-4,17,37,33,16v28,-76,-13,-240,46,-302v15,-15,54,-15,53,12v0,10,-6,17,-17,17v-22,5,-18,-38,-34,-16v-28,75,13,242,-45,303v-15,15,-53,14,-54,-11v0,-12,8,-17,18,-19","w":166},"\u00aa":{"d":"33,-238v8,1,12,4,12,13v3,-7,10,-11,22,-9v-14,23,-46,43,-49,70v22,-4,34,-19,51,-30r3,2v-17,13,-40,44,-63,28v-2,-5,0,-13,3,-17v-11,11,-26,23,-44,23v-8,0,-14,-5,-14,-13v8,-39,40,-59,79,-67xm39,-229v-33,-5,-64,35,-76,63r6,3v31,-11,64,-34,70,-66","w":113},"\u00ba":{"d":"32,-238v24,3,8,31,-1,40v7,8,22,-3,26,3v-8,5,-20,7,-29,1v-15,17,-29,35,-58,37v-9,0,-15,-5,-15,-14v9,-38,39,-58,77,-67xm25,-198v-8,-18,20,-22,10,-33v-35,5,-51,34,-70,55v-5,14,8,15,19,11v17,-7,28,-22,41,-33","w":98},"\u03a9":{"d":"242,-155v0,60,-26,97,-53,134r0,4r57,0r13,-41r11,0r-18,58r-86,0v26,-45,55,-88,55,-151v0,-59,-24,-100,-83,-100v-58,0,-83,40,-83,100v0,65,30,105,55,151r-87,0r-17,-58r11,0r13,41r56,0r0,-5v-27,-37,-52,-72,-52,-133v0,-67,38,-107,104,-107v66,0,104,40,104,107","w":275},"\u00e6":{"d":"53,-54v30,-9,64,-19,74,-46v-33,-7,-53,28,-74,46xm-57,-1v-19,-59,79,-134,117,-93v-2,0,-1,3,-1,5v6,-7,7,-19,24,-16r-11,17v19,-9,30,-22,56,-21v21,35,-46,54,-82,65v-9,9,-29,31,-11,41v42,-1,62,-25,90,-43r4,5v-26,21,-52,41,-92,46v-21,2,-25,-19,-18,-37v-18,16,-44,44,-76,31xm-49,-5v50,-3,106,-57,96,-96v-48,8,-81,50,-98,93v0,1,1,2,2,3","w":196},"\u00f8":{"d":"-49,-10v2,5,6,9,13,8v34,-9,67,-31,68,-65xm51,-88v2,-18,-14,-14,-25,-7v-30,17,-54,47,-75,76xm6,-98v14,-9,51,-22,53,4r26,-18r4,5v-22,12,-38,31,-47,54v7,6,23,4,31,0v6,10,-11,9,-19,11v-6,-2,-13,-2,-17,-6v-19,25,-57,70,-95,44r-26,17r-3,-5v34,-11,30,-58,56,-77v13,-10,23,-20,37,-29","w":131},"\u00bf":{"d":"-41,-21v0,-79,97,-83,130,-134r6,3v-37,47,-109,70,-125,138v0,9,5,14,15,14v34,-8,71,-31,67,-69v-17,-7,-30,12,-38,23r-3,-5v8,-13,18,-27,38,-28v36,29,-21,83,-64,84v-18,1,-26,-10,-26,-26xm105,-166v-14,-9,-3,-31,16,-28v13,6,3,30,-11,29v-2,0,-4,0,-5,-1","w":145},"\u00a1":{"d":"107,-180v0,15,-28,25,-30,6v-1,-17,29,-26,30,-6xm-23,-10v-12,13,-19,22,-26,8v25,-49,86,-103,118,-148r6,3","w":119},"\u00ac":{"d":"255,-150r0,88r-14,0r0,-74r-196,0r0,-14r210,0","w":299},"\u221a":{"d":"222,-285r0,10r-23,0r-104,282r-6,0r-58,-159v-9,2,-21,13,-22,-2r41,-14r48,133r94,-250r30,0","w":222},"\u0192":{"d":"219,-190v-14,6,-8,-17,-19,-17v-50,10,-73,53,-101,89r28,0v0,13,-22,5,-33,7r-32,49v-36,52,-74,107,-142,123v-17,3,-30,-19,-12,-25v12,0,5,18,16,18v75,-25,110,-103,153,-165r-29,0v1,-12,22,-5,34,-7v32,-42,65,-86,122,-97v14,-3,29,15,15,25","w":145},"\u2248":{"d":"201,-73v30,0,48,-15,68,-28r0,16v-19,14,-38,26,-68,26v-36,0,-68,-25,-102,-25v-30,0,-47,15,-68,29r0,-17v19,-12,38,-25,68,-25v36,0,67,24,102,24xm201,-130v32,0,46,-16,68,-28r0,16v-18,15,-39,26,-68,26v-36,0,-66,-25,-102,-25v-30,0,-47,15,-68,29r0,-17v19,-13,39,-26,68,-26v36,0,66,25,102,25","w":299},"\u2206":{"d":"16,-17r135,0r-66,-207xm91,-263r85,263r-177,0r87,-263r5,0","w":174},"\u00ab":{"d":"39,-89r-61,39r0,39r-6,2r-15,-43r79,-44xm94,-89r-62,39r1,39r-6,2r-15,-43r79,-44","w":141},"\u00bb":{"d":"67,-52r-78,43r-3,-6r61,-39r-1,-39r7,-3xm13,-52r-79,43r-3,-6r61,-39v2,-14,-6,-38,6,-42","w":141},"\u2026":{"d":"-27,5v-14,-7,-2,-28,12,-28v7,1,10,5,11,11v-2,11,-9,18,-23,17xm92,5v-14,-8,-2,-28,12,-28v7,1,10,5,11,11v0,12,-10,18,-23,17xm213,5v-16,-7,-2,-29,12,-28v18,5,9,29,-8,28r-4,0","w":360},"\u00c0":{"d":"100,-98r-54,54v12,11,27,20,48,23v6,-22,10,-51,6,-77xm98,-108v-7,-26,-18,-52,-48,-52v-54,0,-36,91,-10,111xm245,-222v-60,20,-95,72,-137,116v0,23,4,48,-2,67v43,-65,90,-126,139,-183xm48,-170v33,0,48,27,57,55v39,-43,75,-82,121,-109v12,-6,20,-8,33,-6r-111,158r-31,50v18,-3,29,-13,40,-23r4,5v-12,14,-26,25,-50,26r-9,14r-21,0r10,-15v-22,-2,-38,-12,-51,-23v-25,18,-43,40,-81,42v-34,2,-32,-44,-6,-50v9,0,16,3,16,11v3,22,-41,1,-23,28v37,13,66,-18,89,-37v-35,-25,-51,-126,13,-126xm233,-280v-13,-6,-5,-24,6,-16v16,12,28,31,43,45v-23,-3,-31,-21,-49,-29","w":233},"\u00c3":{"d":"100,-98r-54,54v12,11,27,20,48,23v6,-22,10,-51,6,-77xm98,-108v-7,-26,-18,-52,-48,-52v-54,0,-36,91,-10,111xm245,-222v-60,20,-95,72,-137,116v0,23,4,48,-2,67v43,-65,90,-126,139,-183xm48,-170v33,0,48,27,57,55v39,-43,75,-82,121,-109v12,-6,20,-8,33,-6r-111,158r-31,50v18,-3,29,-13,40,-23r4,5v-12,14,-26,25,-50,26r-9,14r-21,0r10,-15v-22,-2,-38,-12,-51,-23v-25,18,-43,40,-81,42v-34,2,-32,-44,-6,-50v9,0,16,3,16,11v3,22,-41,1,-23,28v37,13,66,-18,89,-37v-35,-25,-51,-126,13,-126xm243,-284v20,1,48,17,51,-8r7,0v-2,32,-35,33,-62,23v-15,-2,-12,14,-24,14v4,-15,9,-30,28,-29","w":233},"\u00d5":{"d":"142,-216v38,-22,132,-22,98,37v-5,8,-14,13,-23,17r-2,-5v12,-8,24,-16,24,-34v0,-41,-67,-20,-90,-7v-61,35,-112,88,-141,152v-28,63,46,63,84,35v47,-34,91,-76,106,-141v-26,-47,-103,11,-103,53v0,8,6,12,13,12v32,-6,46,-35,60,-61r5,2v-12,31,-31,62,-67,67v-14,2,-20,-8,-21,-20v9,-47,43,-74,92,-81v55,4,15,75,-1,97v-34,45,-71,98,-140,98v-81,0,-29,-117,2,-145v31,-28,66,-54,104,-76xm208,-284v20,1,47,17,51,-8r7,0v-3,32,-35,33,-63,23v-9,1,-16,5,-17,14r-6,0v4,-15,9,-30,28,-29","w":238},"\u0152":{"d":"207,-164v14,-3,32,-17,32,-37v-7,-40,-66,-21,-90,-7v-61,35,-112,88,-141,152v-28,63,46,63,84,35v47,-34,91,-76,106,-141v-26,-47,-103,11,-103,53v0,8,6,12,13,12v32,-6,46,-35,60,-61r4,2v-11,32,-30,62,-66,67v-14,2,-20,-8,-21,-20v9,-47,42,-81,92,-81v17,0,29,9,30,26xm240,-131v-7,-9,-11,-21,-10,-37v-26,6,-30,33,-41,54v15,-8,31,-14,51,-17xm239,-158v-6,34,42,19,35,37v-9,3,-21,1,-27,-3v-48,14,-93,42,-102,93v2,23,22,30,47,30v47,0,95,-20,100,-61v2,-15,-12,-20,-27,-20v-44,2,-65,28,-88,54r-6,-3v21,-30,46,-59,93,-59v21,0,36,8,36,28v0,46,-55,67,-107,67v-35,0,-60,-13,-58,-51v-25,24,-54,51,-99,51v-82,0,-29,-117,2,-145v45,-40,90,-92,166,-92v25,0,41,9,44,31v22,-16,47,-29,84,-30v51,-2,29,57,5,69v-13,12,-52,29,-58,1v2,-15,13,-24,24,-31r4,4v-11,7,-31,28,-7,34v28,-8,52,-23,56,-54v1,-11,-9,-15,-20,-15v-48,2,-90,23,-97,65","w":376},"\u0153":{"d":"123,-109v17,-2,17,14,8,24v-18,18,-54,36,-84,40v-5,12,-28,31,-11,42v42,-2,64,-24,91,-43r3,5v-26,21,-51,42,-91,46v-18,2,-23,-11,-21,-31v-14,15,-31,31,-58,31v-12,0,-22,-6,-20,-19v8,-56,50,-84,103,-95v16,-3,18,17,14,30v18,-14,37,-27,66,-30xm55,-54v27,-7,77,-24,70,-48v-31,1,-50,29,-70,48xm-48,-8v45,19,102,-54,95,-92v-44,7,-77,50,-96,87v0,2,0,4,1,5","w":197},"\u2014":{"d":"-64,-62r360,0r-8,9r-359,0","w":360},"\u201c":{"d":"97,-194v4,20,-26,30,-28,9v7,-28,37,-39,65,-49r2,6v-16,7,-43,14,-39,34xm150,-197v8,21,-24,35,-26,12v7,-28,37,-40,64,-49r2,6v-16,7,-36,13,-40,31","w":125},"\u201d":{"d":"151,-210v-9,-22,24,-35,27,-13v-7,28,-37,39,-65,49r-1,-6v16,-7,35,-13,39,-30xm97,-210v-8,-21,24,-35,27,-13v-7,28,-38,39,-64,49r-2,-6v16,-7,35,-13,39,-30","w":125},"\u2018":{"d":"97,-191v4,18,-27,25,-28,6v7,-28,37,-39,65,-49r1,6v-16,7,-41,15,-38,37","w":71},"\u2019":{"d":"99,-210v-8,-20,18,-32,26,-18v-2,34,-36,43,-64,54r-2,-6v16,-7,36,-12,40,-30","w":71},"\u00f7":{"d":"150,-64v10,2,17,7,17,18v0,10,-6,17,-17,17v-11,0,-17,-7,-17,-17v0,-11,8,-16,17,-18xm255,-114r0,14r-210,0r0,-14r210,0xm150,-185v11,0,17,7,17,18v0,10,-6,17,-17,17v-10,0,-17,-7,-17,-17v0,-11,6,-18,17,-18","w":299},"\u25ca":{"d":"21,-104r68,145r68,-145r-68,-143xm177,-104r-88,188r-88,-188r88,-187","w":177},"\u00ff":{"d":"-17,12v-36,17,-80,28,-90,68v41,10,63,-42,90,-68xm-47,5v-29,-7,-5,-47,5,-58r40,-52r21,0r-70,95v1,14,17,7,27,1v36,-23,66,-59,92,-95r19,-1r-74,98v28,-11,51,-25,73,-42v-1,24,-54,40,-80,52v-31,37,-56,85,-114,88v-13,-3,-10,-20,-2,-29v23,-26,60,-45,98,-59r30,-39v-19,18,-35,36,-65,41xm92,-131v-14,-8,1,-25,12,-26v15,4,6,28,-8,27v-1,0,-3,-1,-4,-1xm42,-131v-14,-8,3,-29,15,-25v13,9,0,30,-15,25","w":145},"\u0178":{"d":"88,2v-44,13,-101,23,-109,65v45,17,84,-34,109,-65xm55,-37v69,-11,99,-60,143,-104r88,-89r22,0r-103,110v-15,18,-30,35,-44,53v-14,18,-26,35,-38,52v24,-11,50,-24,70,-38v1,23,-53,37,-78,49v-31,39,-63,78,-122,85v-24,3,-28,-22,-14,-36v27,-26,70,-41,116,-52r67,-89v-31,28,-55,59,-102,67v-42,-5,-12,-60,6,-73v26,-37,72,-58,84,-104v-1,-16,-15,-21,-33,-21v-49,3,-96,22,-103,65v-2,12,9,18,21,17v43,-4,69,-34,85,-68r4,5v-15,38,-42,71,-90,71v-17,0,-28,-8,-29,-25v12,-48,54,-67,111,-72v46,-4,55,40,31,71v-27,35,-71,72,-98,109v-4,7,-2,16,6,17xm259,-257v-13,-7,0,-25,11,-26v17,6,6,27,-8,27v-1,0,-2,-1,-3,-1xm209,-257v-14,-8,1,-25,12,-26v15,5,7,28,-8,27v-1,0,-3,-1,-4,-1","w":265},"\u2215":{"d":"194,-220r-276,223r-5,-6r276,-224","w":58},"\u00a4":{"d":"167,-156v0,-36,-25,-54,-58,-58v-33,3,-58,23,-58,58v0,35,23,59,58,59v36,0,58,-24,58,-59xm156,-99v-21,20,-72,22,-93,0r-36,36r-11,-10r37,-36v-20,-20,-21,-72,0,-92r-37,-37r11,-10r36,37v20,-23,72,-20,93,0r36,-37r10,10r-37,36v21,22,21,72,0,93r37,36r-10,10","w":217},"\u2039":{"d":"39,-89r-61,39r0,39r-6,2r-15,-43r79,-44","w":86},"\u203a":{"d":"13,-52r-79,43r-3,-6r61,-39v2,-14,-6,-38,6,-42","w":86},"\uf001":{"d":"112,-219v13,-8,28,-16,37,-4v-1,28,-20,42,-40,61v-30,30,-72,63,-110,87r-25,35v32,14,63,-7,87,-19r35,-46r19,0v-21,34,-50,61,-68,99v27,7,47,-25,67,-39r6,4v-22,17,-39,39,-69,46v-27,-6,-6,-41,1,-52v-20,12,-55,28,-82,14r-91,124r-21,0r99,-139v-3,-20,15,-26,29,-34v39,-53,75,-104,126,-137xm13,-93v47,-39,104,-67,127,-125v-20,-9,-36,13,-50,28v-26,28,-50,61,-77,97xm135,-137v-13,-5,-2,-25,11,-24v5,1,8,4,9,10v0,10,-11,18,-20,14","w":181},"\uf002":{"d":"206,-219v17,-11,33,-20,39,-2v-27,63,-94,97,-148,140v-10,25,-54,54,-44,79v27,-7,44,-29,64,-46r4,4v-20,21,-38,43,-70,49v-27,-3,-8,-40,0,-52v-19,13,-54,28,-81,14r-91,124r-21,0r99,-139v-3,-20,15,-26,29,-34v39,-53,75,-105,126,-137v13,-8,28,-16,37,-4v-1,28,-20,41,-40,61v-31,31,-70,60,-110,88r-25,34v31,15,63,-7,86,-19v45,-60,89,-119,146,-160xm13,-93v47,-39,104,-67,127,-125v-19,-9,-35,13,-49,28v-26,28,-51,61,-78,97xm110,-98v46,-37,103,-67,126,-122v-20,-9,-37,16,-53,31v-27,25,-50,57,-73,91","w":189},"\u2021":{"d":"118,-164v20,-1,76,-17,63,11v-21,6,-40,-4,-64,-7v-24,53,-57,99,-91,142v19,-3,51,-11,65,-1v-2,28,-46,5,-67,5v-13,18,-26,83,-51,58v8,-24,29,-39,45,-59v-20,3,-50,11,-64,1v-2,-29,46,-5,66,-5v24,-34,38,-80,68,-108r23,-34v-19,1,-42,10,-62,4v-10,-8,0,-17,12,-16v19,1,33,5,52,9v14,-25,23,-77,51,-62v-2,26,-30,41,-46,62","w":178},"\u2219":{"d":"36,-96v7,0,12,5,12,13v1,14,-20,15,-24,5v-4,-9,3,-18,12,-18","w":71},"\u201a":{"d":"-55,0v-10,-17,18,-32,25,-16v-2,34,-36,42,-64,53v-2,-17,39,-13,39,-37","w":71},"\u201e":{"d":"-6,0v-8,-21,23,-33,26,-11v-7,28,-37,38,-64,48r-2,-6v17,-7,35,-13,40,-31xm-55,0v-10,-17,18,-32,25,-16v-2,34,-36,42,-64,53v-2,-17,39,-13,39,-37","w":120},"\u2030":{"d":"278,-1v42,-15,92,-61,78,-105v-45,4,-76,50,-91,92v1,8,5,12,13,13xm246,-95v-6,-26,-40,0,-49,8v-19,20,-41,42,-48,73v1,8,5,12,13,13v42,-15,72,-49,84,-94xm255,-17v8,-53,44,-86,94,-97v37,4,11,52,-1,66v-18,22,-38,48,-72,53v-14,2,-20,-9,-21,-22xm159,5v-53,-36,21,-115,74,-119v11,1,23,6,20,19v-11,50,-44,87,-94,100xm70,-115v42,-14,94,-63,78,-104v-47,2,-68,48,-88,81v-4,11,-2,23,10,23xm291,-220r-276,223r-6,-6r276,-224xm105,-125v-13,15,-58,31,-58,-5v0,-55,43,-86,94,-98v51,22,-16,88,-36,103","w":394},"\u00c2":{"d":"100,-98r-54,54v12,11,27,20,48,23v6,-22,10,-51,6,-77xm98,-108v-7,-26,-18,-52,-48,-52v-54,0,-36,91,-10,111xm245,-222v-60,20,-95,72,-137,116v0,23,4,48,-2,67v43,-65,90,-126,139,-183xm48,-170v33,0,48,27,57,55v39,-43,75,-82,121,-109v12,-6,20,-8,33,-6r-111,158r-31,50v18,-3,29,-13,40,-23r4,5v-12,14,-26,25,-50,26r-9,14r-21,0r10,-15v-22,-2,-38,-12,-51,-23v-25,18,-43,40,-81,42v-34,2,-32,-44,-6,-50v9,0,16,3,16,11v3,22,-41,1,-23,28v37,13,66,-18,89,-37v-35,-25,-51,-126,13,-126xm275,-297r19,46v-21,0,-20,-22,-32,-31v-20,10,-31,28,-58,31r55,-46r16,0","w":233},"\u00ca":{"d":"105,-148v58,-3,113,-20,130,-62v-4,-18,-31,-10,-47,-5v-34,13,-68,35,-83,67xm105,-132v17,-4,43,8,17,13v-7,-1,-14,-1,-18,-5v-48,14,-94,42,-103,93v3,22,23,29,48,29v48,0,92,-19,100,-60v-1,-14,-11,-21,-28,-20v-44,2,-64,29,-88,54r-5,-3v22,-29,46,-59,93,-59v20,0,35,8,36,28v-8,45,-56,67,-107,67v-34,0,-60,-11,-59,-46v2,-61,53,-78,106,-90r-5,-10v-38,-2,-72,-12,-72,-48v0,-54,76,-62,121,-43v-6,10,-27,-3,-43,-1v-58,-8,-99,66,-32,81v8,2,16,3,26,3v14,-52,63,-75,123,-80v27,-3,37,24,18,41v-28,26,-75,46,-128,48r0,8xm238,-297r19,46v-21,0,-20,-22,-32,-31v-20,9,-32,28,-58,31r54,-46r17,0","w":233},"\u00c1":{"d":"100,-98r-54,54v12,11,27,20,48,23v6,-22,10,-51,6,-77xm98,-108v-7,-26,-18,-52,-48,-52v-54,0,-36,91,-10,111xm245,-222v-60,20,-95,72,-137,116v0,23,4,48,-2,67v43,-65,90,-126,139,-183xm48,-170v33,0,48,27,57,55v39,-43,75,-82,121,-109v12,-6,20,-8,33,-6r-111,158r-31,50v18,-3,29,-13,40,-23r4,5v-12,14,-26,25,-50,26r-9,14r-21,0r10,-15v-22,-2,-38,-12,-51,-23v-25,18,-43,40,-81,42v-34,2,-32,-44,-6,-50v9,0,16,3,16,11v3,22,-41,1,-23,28v37,13,66,-18,89,-37v-35,-25,-51,-126,13,-126xm285,-292v6,-10,24,-2,16,8v-19,11,-37,27,-63,33","w":233},"\u00cb":{"d":"105,-148v58,-3,113,-20,130,-62v-4,-18,-31,-10,-47,-5v-34,13,-68,35,-83,67xm105,-132v17,-4,43,8,17,13v-7,-1,-14,-1,-18,-5v-48,14,-94,42,-103,93v3,22,23,29,48,29v48,0,92,-19,100,-60v-1,-14,-11,-21,-28,-20v-44,2,-64,29,-88,54r-5,-3v22,-29,46,-59,93,-59v20,0,35,8,36,28v-8,45,-56,67,-107,67v-34,0,-60,-11,-59,-46v2,-61,53,-78,106,-90r-5,-10v-38,-2,-72,-12,-72,-48v0,-54,76,-62,121,-43v-6,10,-27,-3,-43,-1v-58,-8,-99,66,-32,81v8,2,16,3,26,3v14,-52,63,-75,123,-80v27,-3,37,24,18,41v-28,26,-75,46,-128,48r0,8xm243,-257v-13,-8,2,-30,15,-25v13,8,0,30,-15,25xm205,-283v15,5,7,28,-8,27v-18,-6,-5,-26,8,-27","w":233},"\u00c8":{"d":"105,-148v58,-3,113,-20,130,-62v-4,-18,-31,-10,-47,-5v-34,13,-68,35,-83,67xm105,-132v17,-4,43,8,17,13v-7,-1,-14,-1,-18,-5v-48,14,-94,42,-103,93v3,22,23,29,48,29v48,0,92,-19,100,-60v-1,-14,-11,-21,-28,-20v-44,2,-64,29,-88,54r-5,-3v22,-29,46,-59,93,-59v20,0,35,8,36,28v-8,45,-56,67,-107,67v-34,0,-60,-11,-59,-46v2,-61,53,-78,106,-90r-5,-10v-38,-2,-72,-12,-72,-48v0,-54,76,-62,121,-43v-6,10,-27,-3,-43,-1v-58,-8,-99,66,-32,81v8,2,16,3,26,3v14,-52,63,-75,123,-80v27,-3,37,24,18,41v-28,26,-75,46,-128,48r0,8xm196,-280v-8,-2,-11,-17,0,-18v22,10,32,32,49,47v-23,-3,-31,-21,-49,-29","w":233},"\u00cd":{"d":"151,-126v29,-3,47,-18,65,-34v-6,27,-41,36,-69,43v-37,63,-72,122,-166,122v-28,0,-54,-5,-56,-31v-2,-19,33,-37,37,-14v3,19,-25,0,-29,15v18,42,97,19,121,-3v27,-24,51,-54,73,-90v-22,-5,-39,-16,-39,-41v0,-76,117,-66,186,-75v-4,19,-31,5,-43,19v-29,23,-60,55,-80,89xm132,-126v26,-37,58,-69,95,-95v-60,3,-120,14,-129,66v2,18,16,27,34,29xm232,-292v6,-8,25,-5,17,8v-19,11,-37,27,-63,33","w":204},"\u00ce":{"d":"151,-126v29,-3,47,-18,65,-34v-6,27,-41,36,-69,43v-37,63,-72,122,-166,122v-28,0,-54,-5,-56,-31v-2,-19,33,-37,37,-14v3,19,-25,0,-29,15v18,42,97,19,121,-3v27,-24,51,-54,73,-90v-22,-5,-39,-16,-39,-41v0,-76,117,-66,186,-75v-4,19,-31,5,-43,19v-29,23,-60,55,-80,89xm132,-126v26,-37,58,-69,95,-95v-60,3,-120,14,-129,66v2,18,16,27,34,29xm223,-297r19,46v-21,0,-20,-22,-32,-31v-20,10,-31,28,-58,31r55,-46r16,0","w":204},"\u00cf":{"d":"151,-126v29,-3,47,-18,65,-34v-6,27,-41,36,-69,43v-37,63,-72,122,-166,122v-28,0,-54,-5,-56,-31v-2,-19,33,-37,37,-14v3,19,-25,0,-29,15v18,42,97,19,121,-3v27,-24,51,-54,73,-90v-22,-5,-39,-16,-39,-41v0,-76,117,-66,186,-75v-4,19,-31,5,-43,19v-29,23,-60,55,-80,89xm132,-126v26,-37,58,-69,95,-95v-60,3,-120,14,-129,66v2,18,16,27,34,29xm228,-257v-14,-8,3,-29,15,-25v13,9,0,30,-15,25xm190,-283v17,6,6,27,-8,27v-18,-5,-5,-26,8,-27","w":204},"\u00cc":{"d":"151,-126v29,-3,47,-18,65,-34v-6,27,-41,36,-69,43v-37,63,-72,122,-166,122v-28,0,-54,-5,-56,-31v-2,-19,33,-37,37,-14v3,19,-25,0,-29,15v18,42,97,19,121,-3v27,-24,51,-54,73,-90v-22,-5,-39,-16,-39,-41v0,-76,117,-66,186,-75v-4,19,-31,5,-43,19v-29,23,-60,55,-80,89xm132,-126v26,-37,58,-69,95,-95v-60,3,-120,14,-129,66v2,18,16,27,34,29xm181,-280v-9,-4,-10,-18,2,-18v19,12,31,32,47,47v-23,-3,-31,-22,-49,-29","w":204},"\u00d3":{"d":"142,-216v38,-22,132,-22,98,37v-5,8,-14,13,-23,17r-2,-5v12,-8,24,-16,24,-34v0,-41,-67,-20,-90,-7v-61,35,-112,88,-141,152v-28,63,46,63,84,35v47,-34,91,-76,106,-141v-26,-47,-103,11,-103,53v0,8,6,12,13,12v32,-6,46,-35,60,-61r5,2v-12,31,-31,62,-67,67v-14,2,-20,-8,-21,-20v9,-47,43,-74,92,-81v55,4,15,75,-1,97v-34,45,-71,98,-140,98v-81,0,-29,-117,2,-145v31,-28,66,-54,104,-76xm249,-292v6,-8,25,-5,17,8v-20,10,-37,28,-64,33","w":238},"\u00d4":{"d":"142,-216v38,-22,132,-22,98,37v-5,8,-14,13,-23,17r-2,-5v12,-8,24,-16,24,-34v0,-41,-67,-20,-90,-7v-61,35,-112,88,-141,152v-28,63,46,63,84,35v47,-34,91,-76,106,-141v-26,-47,-103,11,-103,53v0,8,6,12,13,12v32,-6,46,-35,60,-61r5,2v-12,31,-31,62,-67,67v-14,2,-20,-8,-21,-20v9,-47,43,-74,92,-81v55,4,15,75,-1,97v-34,45,-71,98,-140,98v-81,0,-29,-117,2,-145v31,-28,66,-54,104,-76xm240,-297r19,46v-21,0,-20,-22,-32,-31v-20,10,-31,28,-58,31r55,-46r16,0","w":238},"\uf000":{"d":"151,-213v-5,1,-4,-3,-4,-7v-2,-33,36,-67,58,-59v0,37,-21,62,-54,66xm224,-130v-1,33,19,48,40,60v-19,35,-27,76,-71,76v-15,0,-29,-10,-45,-11v-28,5,-62,20,-79,-6v-55,-43,-80,-205,29,-205v18,0,33,11,50,12v35,-16,92,-15,111,17v-19,12,-35,27,-35,57","w":284},"\u00d2":{"d":"142,-216v38,-22,132,-22,98,37v-5,8,-14,13,-23,17r-2,-5v12,-8,24,-16,24,-34v0,-41,-67,-20,-90,-7v-61,35,-112,88,-141,152v-28,63,46,63,84,35v47,-34,91,-76,106,-141v-26,-47,-103,11,-103,53v0,8,6,12,13,12v32,-6,46,-35,60,-61r5,2v-12,31,-31,62,-67,67v-14,2,-20,-8,-21,-20v9,-47,43,-74,92,-81v55,4,15,75,-1,97v-34,45,-71,98,-140,98v-81,0,-29,-117,2,-145v31,-28,66,-54,104,-76xm198,-280v-8,-4,-10,-16,0,-18v22,10,32,32,49,47v-23,-3,-31,-21,-49,-29","w":238},"\u00da":{"d":"60,-220v34,-29,131,-17,97,44v-35,62,-98,97,-126,166v41,17,73,-40,104,-60v48,-51,92,-105,134,-162r23,0r-161,212v-5,7,-5,17,4,15v32,-6,52,-27,76,-45r5,5v-26,19,-47,41,-83,47v-37,-6,-3,-52,7,-67v-34,27,-51,67,-100,67v-36,0,-14,-46,-2,-61r100,-118v19,-18,15,-55,-21,-52v-47,4,-95,26,-95,70v0,13,6,21,20,20v42,-3,60,-36,69,-74r6,1v-7,43,-31,82,-76,82v-47,0,-22,-69,2,-79v5,-4,11,-8,17,-11xm262,-292v6,-10,24,-2,16,8v-19,11,-37,27,-63,33","w":262},"\u00db":{"d":"60,-220v34,-29,131,-17,97,44v-35,62,-98,97,-126,166v41,17,73,-40,104,-60v48,-51,92,-105,134,-162r23,0r-161,212v-5,7,-5,17,4,15v32,-6,52,-27,76,-45r5,5v-26,19,-47,41,-83,47v-37,-6,-3,-52,7,-67v-34,27,-51,67,-100,67v-36,0,-14,-46,-2,-61r100,-118v19,-18,15,-55,-21,-52v-47,4,-95,26,-95,70v0,13,6,21,20,20v42,-3,60,-36,69,-74r6,1v-7,43,-31,82,-76,82v-47,0,-22,-69,2,-79v5,-4,11,-8,17,-11xm252,-297r19,46v-21,0,-20,-22,-32,-31v-20,10,-31,28,-58,31r55,-46r16,0","w":262},"\u00d9":{"d":"60,-220v34,-29,131,-17,97,44v-35,62,-98,97,-126,166v41,17,73,-40,104,-60v48,-51,92,-105,134,-162r23,0r-161,212v-5,7,-5,17,4,15v32,-6,52,-27,76,-45r5,5v-26,19,-47,41,-83,47v-37,-6,-3,-52,7,-67v-34,27,-51,67,-100,67v-36,0,-14,-46,-2,-61r100,-118v19,-18,15,-55,-21,-52v-47,4,-95,26,-95,70v0,13,6,21,20,20v42,-3,60,-36,69,-74r6,1v-7,43,-31,82,-76,82v-47,0,-22,-69,2,-79v5,-4,11,-8,17,-11xm210,-280v-10,-2,-8,-22,3,-17v20,10,30,32,46,46v-23,-3,-31,-21,-49,-29","w":262},"\u0131":{"d":"-45,5v-29,-10,0,-50,9,-62r36,-48r20,0v-22,34,-53,59,-68,99v27,8,45,-25,66,-39r5,4v-21,18,-37,40,-68,46","w":85},"\u02dc":{"d":"72,-158v20,0,46,16,51,-8r6,0v-2,38,-41,27,-69,24v-6,2,-9,7,-10,14r-7,-1v4,-15,10,-29,29,-29","w":180},"\u02c6":{"d":"104,-171r18,46v-21,0,-20,-22,-32,-31v-20,9,-31,28,-57,31r54,-46r17,0","w":180},"\u02c9":{"d":"130,-150r-8,14r-71,0r8,-14r71,0","w":180},"\u02d8":{"d":"136,-168v-7,32,-62,64,-78,19v-1,-5,-3,-12,-3,-19r5,0v4,38,61,26,71,0r5,0","w":180},"\u02d9":{"d":"83,-131v-13,-7,-1,-27,13,-26v5,1,9,3,9,10v0,12,-10,19,-22,16","w":180},"\u02da":{"d":"115,-154v1,-15,-10,-20,-21,-23v-13,1,-22,10,-22,23v0,12,8,22,22,21v13,0,21,-8,21,-21xm62,-154v-1,-21,15,-30,32,-33v18,2,32,14,32,33v0,19,-14,30,-32,32v-19,-2,-31,-12,-32,-32","w":180},"\u00b8":{"d":"1,43v2,-16,-18,-15,-33,-13v10,-9,8,-29,27,-29v-2,6,-13,16,-10,20v15,-3,33,2,33,19v0,39,-56,33,-78,18r3,-7v16,8,55,19,58,-8","w":180},"\u02ba":{"d":"86,-163v2,-7,17,-12,18,-1v-9,16,-25,25,-36,39r-6,0xm132,-165v6,-10,26,-3,15,8v-15,10,-22,28,-43,32","w":180},"\u02db":{"d":"-44,42v0,19,28,22,38,10v-3,21,-57,22,-53,-7v5,-31,30,-44,62,-49v-21,12,-47,19,-47,46","w":180},"\u02c7":{"d":"63,-171r22,32v20,-10,31,-29,58,-32r-53,46r-17,0r-20,-46r10,0","w":180},"\u0141":{"d":"-75,-14v10,18,60,10,78,2v-21,-6,-62,-23,-78,-2xm144,-125v57,-13,133,-52,119,-105v-62,8,-86,63,-119,105xm18,-7v-19,7,-40,10,-63,10v-18,0,-37,-1,-39,-17v2,-16,21,-19,40,-19v29,0,51,7,74,15v23,-11,38,-30,54,-49r-47,11r5,-10v22,-7,54,-6,60,-28r12,-19v-54,1,-102,-10,-102,-59v0,-68,90,-86,154,-65r-1,5v-62,-15,-146,-2,-146,60v0,44,54,54,100,51v38,-48,71,-105,138,-116v29,-5,21,34,8,49v-30,35,-71,63,-126,73r-21,32r49,-13r-4,9r-53,14v-17,25,-41,44,-68,59v52,20,101,-7,130,-37r4,5v-32,38,-95,63,-158,39","w":222},"\u0142":{"d":"-45,5v-31,-9,-2,-50,8,-62r33,-41r-34,8v4,-16,28,-13,43,-18r86,-102r23,0r-83,98r35,-8v-5,16,-28,13,-44,18v-17,31,-72,65,-65,100v28,-8,43,-27,64,-46r4,4v-20,21,-37,43,-70,49","w":92},"\u0160":{"d":"161,-121v58,-15,109,-40,129,-93v-2,-17,-25,-12,-39,-5v-38,21,-64,59,-90,98xm30,-166v0,-67,85,-86,153,-67v-6,13,-30,-2,-50,0v-49,5,-95,20,-95,66v0,43,51,53,98,49v40,-47,70,-106,141,-114v27,-3,25,28,11,45v-29,35,-76,66,-132,75v-37,60,-72,117,-161,117v-31,0,-58,-7,-60,-34v-2,-19,33,-38,40,-16v1,23,-29,-2,-32,18v16,43,96,21,121,-1v25,-22,48,-50,67,-82v-51,-1,-101,-9,-101,-56xm201,-297r22,32v20,-10,31,-29,58,-32r-54,46r-16,0r-20,-46r10,0","w":241},"\u0161":{"d":"-52,-28v23,5,-11,24,4,26v44,-8,59,-56,64,-105v-17,19,-36,33,-55,50v-8,-15,27,-25,36,-41v15,-5,26,-48,42,-35v-8,16,-22,26,-16,55v0,48,-23,77,-69,81v-24,2,-27,-29,-6,-31xm26,-197r22,32v20,-10,31,-29,57,-32r-54,47r-16,0r-20,-47r11,0","w":98},"\u017d":{"d":"-46,-13v11,16,55,6,69,-3v-20,-5,-56,-13,-69,3xm208,-197v26,0,66,-10,58,-28v-26,2,-41,16,-58,28xm23,-180v7,42,75,18,85,-7r4,5v-13,31,-91,52,-97,2v4,-35,35,-53,74,-53v39,0,72,34,106,35v22,-15,42,-33,77,-33v5,1,6,5,7,10v-12,25,-45,31,-80,33v-22,21,-37,45,-54,71v16,4,35,-5,44,0v-12,10,-30,15,-51,12v-21,36,-52,62,-87,85v53,13,125,13,139,-35r7,1v-13,59,-100,68,-161,42v-16,8,-34,14,-58,14v-16,0,-31,-1,-33,-15v9,-30,67,-16,92,-9v30,-20,59,-55,77,-85v-15,-6,-31,14,-38,3v12,-8,27,-18,47,-15v21,-23,40,-49,63,-70v-39,-3,-70,-34,-109,-34v-29,0,-51,15,-54,43xm212,-297r22,32v20,-10,31,-29,58,-32r-54,46r-16,0r-20,-46r10,0","w":262},"\u017e":{"d":"5,-113v18,4,-14,23,-1,22v31,15,51,-23,72,-16v1,13,-18,19,-31,23r-64,48v13,-1,31,-4,31,10v0,7,-6,12,-7,18v24,-1,46,-28,64,-44r5,5v-25,21,-44,50,-83,50v-23,-7,18,-31,0,-33v-27,-3,-52,37,-74,30v9,-13,26,-20,42,-28r70,-54v-19,6,-36,-11,-42,2r-36,30r-4,-5r44,-39v0,-10,4,-18,14,-19xm39,-171r22,32v20,-10,31,-29,58,-32r-54,46r-16,0r-20,-46r10,0","w":130},"\u00a6":{"d":"98,-72r0,133r-16,0r0,-133r16,0xm98,-252r0,134r-16,0r0,-134r16,0","w":180},"\u00d0":{"d":"15,-13v-20,-8,-36,-13,-64,-11v-7,1,-15,3,-15,10v12,17,60,7,79,1xm200,-171v-26,22,-42,48,-65,77r30,0v-1,14,-23,6,-36,8v-23,32,-53,56,-91,74v101,28,175,-50,162,-159xm-74,-14v13,-33,73,-13,98,-3v35,-14,53,-42,79,-68r-36,-1r2,-8r41,0v27,-33,51,-62,85,-87v-20,-65,-142,-53,-181,-13v-17,17,-36,31,-36,62v0,22,12,34,34,34v47,0,69,-44,84,-83r5,3v-13,45,-36,88,-89,88v-28,0,-43,-19,-44,-47v-3,-111,194,-131,234,-50r45,-25v3,20,-55,20,-37,65v-2,103,-79,172,-184,139v-18,7,-37,10,-60,10v-18,0,-37,-1,-40,-16","w":262},"\u00f0":{"d":"1,-9v-15,10,-61,27,-61,-6v0,-54,59,-96,114,-91v3,-17,4,-37,0,-54r-44,15r-2,-8r44,-15v-7,-22,-15,-45,-26,-63v22,-6,28,38,37,59r42,-14r2,7r-41,14v12,75,-21,125,-65,156xm-48,-8v45,19,102,-54,95,-92v-44,7,-77,50,-96,87v0,2,0,4,1,5","w":127},"\u00dd":{"d":"88,2v-44,13,-101,23,-109,65v45,17,84,-34,109,-65xm55,-37v69,-11,99,-60,143,-104r88,-89r22,0r-103,110v-15,18,-30,35,-44,53v-14,18,-26,35,-38,52v24,-11,50,-24,70,-38v1,23,-53,37,-78,49v-31,39,-63,78,-122,85v-24,3,-28,-22,-14,-36v27,-26,70,-41,116,-52r67,-89v-31,28,-55,59,-102,67v-42,-5,-12,-60,6,-73v26,-37,72,-58,84,-104v-1,-16,-15,-21,-33,-21v-49,3,-96,22,-103,65v-2,12,9,18,21,17v43,-4,69,-34,85,-68r4,5v-15,38,-42,71,-90,71v-17,0,-28,-8,-29,-25v12,-48,54,-67,111,-72v46,-4,55,40,31,71v-27,35,-71,72,-98,109v-4,7,-2,16,6,17xm263,-292v9,-11,27,1,14,11v-20,7,-35,27,-61,30","w":265},"\u00fd":{"d":"-17,12v-36,17,-80,28,-90,68v41,10,63,-42,90,-68xm-47,5v-29,-7,-5,-47,5,-58r40,-52r21,0r-70,95v1,14,17,7,27,1v36,-23,66,-59,92,-95r19,-1r-74,98v28,-11,51,-25,73,-42v-1,24,-54,40,-80,52v-31,37,-56,85,-114,88v-13,-3,-10,-20,-2,-29v23,-26,60,-45,98,-59r30,-39v-19,18,-35,36,-65,41xm96,-166v10,-12,25,0,14,11v-20,7,-35,27,-61,30","w":145},"\u00de":{"d":"32,-76v-29,-91,70,-156,161,-120v17,-15,33,-25,54,-35v-8,20,-33,23,-45,39v51,33,15,126,-45,126v-37,-1,-18,-38,0,-44r6,4v-13,6,-33,29,-8,33v45,-4,84,-81,40,-113v-68,68,-88,191,-217,191v-26,0,-51,-5,-53,-28v-1,-19,31,-40,39,-16v-1,20,-29,-5,-31,18v28,39,101,8,124,-18v41,-47,84,-112,130,-152v-78,-30,-172,22,-148,112","w":257},"\u00fe":{"d":"27,-99v16,-15,56,-11,39,18v-16,27,-41,47,-56,73v2,1,2,4,5,4v30,-6,48,-28,70,-45r5,5v-23,19,-41,43,-77,47v-26,-5,-6,-41,4,-49v9,-18,41,-37,38,-56v-50,9,-78,50,-105,85r-82,108r-20,0r243,-326r19,0r-122,163v12,-9,26,-21,39,-27","w":145},"\u2212":{"d":"255,-114r0,14r-210,0r0,-14r210,0","w":299},"\u00d7":{"d":"150,-117r85,-86r11,10r-86,86r86,85r-11,10r-85,-85r-86,85r-10,-10r86,-85r-86,-86r10,-10","w":299},"\u00b9":{"d":"107,-171r-82,104r-17,0r85,-93r-86,50r-1,-4v34,-17,68,-37,97,-58","w":96},"\u00b2":{"d":"99,-161v2,55,-69,57,-101,81v25,0,51,16,62,-7r4,1v-6,12,-16,20,-32,22v-16,-4,-38,-15,-54,-3r-2,-4v34,-32,105,-38,116,-90v-21,-15,-73,20,-55,40v15,-3,24,-14,30,-27r3,1v-4,15,-26,39,-42,24v-4,-33,46,-59,71,-38","w":96},"\u00b3":{"d":"58,-122v10,-1,14,11,10,20v-10,24,-52,49,-82,32v-4,-10,7,-18,14,-11v3,9,-11,7,-5,13v29,2,67,-25,62,-50v-11,-2,-23,11,-29,4v25,-13,56,-17,61,-47v-14,-15,-62,14,-42,26v12,0,16,-15,25,-15v-3,12,-29,30,-36,10v2,-23,51,-44,62,-17v-3,20,-23,27,-40,35","w":96},"\u00bd":{"d":"120,-4v35,-35,106,-43,119,-100v-21,-18,-73,20,-55,42v15,-3,21,-16,27,-28r6,0v-5,17,-28,45,-45,27v0,-34,27,-50,58,-53v14,-1,25,5,23,19v-5,46,-72,59,-108,83v16,-5,31,6,44,8v15,2,16,-20,27,-15v-13,40,-60,9,-92,21xm158,-228r-86,122r-20,-1r90,-106r-89,57r-2,-6r103,-67xm287,-220r-275,223r-6,-6r277,-224","w":278},"\u00bc":{"d":"187,-28v-18,-4,-44,-4,-55,5r-3,-5v39,-27,71,-57,104,-90r21,0r-106,82v18,-4,43,7,51,-5v11,-8,14,-24,32,-25v-8,11,-19,21,-25,32v11,-3,29,3,10,7v-25,-3,-23,16,-35,28r-21,0xm158,-228r-86,122r-20,-1r91,-108v-26,21,-61,40,-90,58r-2,-5r103,-67xm291,-220r-276,223r-6,-6r276,-224","w":278},"\u00be":{"d":"187,-28v-18,-4,-44,-4,-55,5r-3,-5v39,-27,71,-57,104,-90r21,0r-106,82v18,-4,43,7,51,-5v11,-8,14,-24,32,-25v-8,11,-19,21,-25,32v11,-3,29,3,10,7v-25,-3,-23,16,-35,28r-21,0xm293,-220r-276,223r-5,-6r276,-224xm112,-162v-7,-18,-31,15,-34,-1v25,-13,62,-23,64,-54v-13,-15,-58,10,-46,29v13,0,19,-10,24,-19r5,3v-5,13,-26,31,-38,15v2,-26,23,-36,48,-39v36,4,15,41,-3,47v-5,3,-12,6,-18,9v9,0,12,6,13,14v-6,32,-39,49,-75,53v-19,2,-29,-23,-8,-25v6,0,9,11,2,13v-3,0,-7,3,-3,5v33,3,62,-23,69,-50","w":278},"\u20a3":{"d":"-30,-26v-11,16,14,27,30,26v70,-6,91,-55,127,-101v-29,6,-53,16,-73,32v-1,-22,54,-33,80,-42v27,-33,52,-67,88,-91v7,9,-8,12,-13,20v-20,19,-35,41,-49,65v26,1,32,-30,53,-25v-7,25,-44,23,-42,59r-13,4v2,-11,7,-22,13,-33r-18,5v-34,56,-69,113,-153,113v-21,0,-41,-6,-41,-28v-5,-20,31,-34,34,-12v2,14,-13,10,-23,8xm144,-235v51,-1,119,24,161,2v4,17,-32,22,-54,22v-40,1,-86,-12,-124,-12v-51,0,-99,22,-99,70v0,22,13,32,35,32v49,0,78,-33,97,-68r7,0v-20,39,-47,72,-102,75v-28,1,-46,-13,-46,-39v0,-58,61,-81,125,-82xm261,-87v6,-12,15,-22,34,-19v-6,9,-25,18,-19,31r14,1v-4,11,-28,8,-30,-3v-32,26,-72,45,-98,77r-19,0r82,-105r19,0r-59,75","w":331},"\u011e":{"d":"235,-226v-67,1,-98,50,-135,81v63,-4,128,-21,144,-69v0,-6,-4,-11,-9,-12xm-14,-22v-1,-17,28,-35,34,-13v0,17,-22,0,-25,15v15,34,83,15,105,-1v22,-16,41,-39,58,-65v-25,21,-106,49,-106,-5v0,-21,10,-34,19,-48v-27,-5,-52,-15,-52,-44v0,-53,76,-66,128,-49v-5,10,-25,-1,-39,0v-67,-9,-116,75,-32,87v38,-40,83,-81,151,-88v32,-4,29,32,11,47v-34,28,-86,50,-145,49v-13,15,-25,30,-30,52v1,13,11,18,26,18v47,0,71,-32,105,-53v9,7,-7,14,-11,22v-28,53,-63,104,-146,103v-26,-1,-49,-3,-51,-27xm202,-294v4,38,61,26,71,0r5,0v-7,32,-62,64,-78,19v-1,-5,-3,-12,-3,-19r5,0","w":248},"\u011f":{"d":"-112,76v36,25,75,-41,97,-66v-36,18,-81,31,-97,66xm42,-109v12,0,18,5,18,17r10,-13r19,0r-73,97v27,-9,49,-26,70,-41v0,24,-54,40,-79,52v-31,38,-57,87,-118,88v-22,-16,7,-39,21,-49v23,-16,51,-29,83,-41r27,-36v-20,17,-34,39,-66,39v-12,0,-16,-7,-17,-18v12,-53,51,-84,105,-95xm49,-83v9,-13,-4,-23,-17,-15v-35,21,-67,50,-82,92v43,5,77,-45,99,-77xm120,-168v-9,30,-62,64,-79,19v-1,-5,-3,-12,-3,-19r6,0v2,39,61,25,70,0r6,0","w":145},"\u0130":{"d":"151,-126v29,-3,47,-18,65,-34v-6,27,-41,36,-69,43v-37,63,-72,122,-166,122v-28,0,-54,-5,-56,-31v-2,-19,33,-37,37,-14v3,19,-25,0,-29,15v18,42,97,19,121,-3v27,-24,51,-54,73,-90v-22,-5,-39,-16,-39,-41v0,-76,117,-66,186,-75v-4,19,-31,5,-43,19v-29,23,-60,55,-80,89xm132,-126v26,-37,58,-69,95,-95v-60,3,-120,14,-129,66v2,18,16,27,34,29xm203,-257v-13,-7,-1,-27,13,-26v17,7,6,28,-10,27v-1,0,-2,-1,-3,-1","w":204},"\u015e":{"d":"161,-121v58,-15,109,-40,129,-93v-2,-17,-25,-12,-39,-5v-38,21,-64,59,-90,98xm30,-166v0,-67,85,-86,153,-67v-6,13,-30,-2,-50,0v-49,5,-95,20,-95,66v0,43,51,53,98,49v40,-47,70,-106,141,-114v27,-3,25,28,11,45v-29,35,-76,66,-132,75v-37,60,-72,117,-161,117v-31,0,-58,-7,-60,-34v-2,-19,33,-38,40,-16v1,23,-29,-2,-32,18v16,43,96,21,121,-1v25,-22,48,-50,67,-82v-51,-1,-101,-9,-101,-56xm37,43v1,-16,-20,-15,-34,-13v10,-9,9,-28,27,-29v-3,6,-11,15,-11,20v16,-4,35,3,35,19v2,38,-55,33,-78,18r2,-7v17,6,56,19,59,-8","w":241},"\u015f":{"d":"-52,-28v23,5,-11,24,4,26v44,-8,59,-56,64,-105v-16,19,-36,33,-55,50v-8,-15,27,-25,36,-41v15,-5,26,-48,42,-35v-8,17,-16,24,-16,55v0,48,-23,77,-69,81v-24,2,-27,-29,-6,-31xm-38,43v1,-16,-20,-15,-34,-13v10,-9,8,-29,27,-29v-2,7,-20,21,-5,19v17,-2,27,6,29,20v1,38,-56,33,-79,18v7,-15,22,7,40,2v12,0,22,-4,22,-17","w":98},"\u0106":{"d":"262,-197v10,-13,4,-29,-14,-27v-70,10,-108,59,-151,101v73,-5,131,-31,165,-74xm7,-166v0,-70,93,-86,160,-67v-6,10,-30,-2,-48,-1v-52,4,-97,22,-104,69v3,29,26,39,56,41v49,-46,96,-98,177,-107v37,-4,28,36,9,52v-40,35,-95,60,-167,64v-21,25,-45,45,-48,85v22,63,137,11,137,-38v0,-14,-12,-21,-26,-21v-45,0,-66,36,-84,69r-6,-1v18,-37,39,-75,89,-75v20,0,34,8,34,29v-10,47,-52,72,-104,72v-33,0,-55,-12,-54,-45v1,-35,19,-54,35,-77v-30,-5,-56,-16,-56,-49xm283,-292v6,-8,25,-5,17,8v-19,10,-37,27,-63,33","w":262},"\u0107":{"d":"-43,-3v40,-1,65,-31,92,-52r4,5v-27,23,-52,49,-93,55v-52,-26,17,-93,50,-106v16,-6,48,-16,50,7v1,15,-22,30,-29,13v-1,-11,33,-10,13,-21v-45,15,-75,50,-94,90v0,5,2,9,7,9xm78,-166v8,-11,27,0,15,11v-20,7,-36,26,-61,30","w":111},"\u010c":{"d":"262,-197v10,-13,4,-29,-14,-27v-70,10,-108,59,-151,101v73,-5,131,-31,165,-74xm7,-166v0,-70,93,-86,160,-67v-6,10,-30,-2,-48,-1v-52,4,-97,22,-104,69v3,29,26,39,56,41v49,-46,96,-98,177,-107v37,-4,28,36,9,52v-40,35,-95,60,-167,64v-21,25,-45,45,-48,85v22,63,137,11,137,-38v0,-14,-12,-21,-26,-21v-45,0,-66,36,-84,69r-6,-1v18,-37,39,-75,89,-75v20,0,34,8,34,29v-10,47,-52,72,-104,72v-33,0,-55,-12,-54,-45v1,-35,19,-54,35,-77v-30,-5,-56,-16,-56,-49xm234,-297r22,32v20,-10,31,-29,58,-32r-54,46r-17,0r-19,-46r10,0","w":262},"\u010d":{"d":"-43,-3v40,-1,65,-31,92,-52r4,5v-27,23,-52,49,-93,55v-52,-26,17,-93,50,-106v16,-6,48,-16,50,7v1,15,-22,30,-29,13v-1,-11,33,-10,13,-21v-45,15,-75,50,-94,90v0,5,2,9,7,9xm29,-171r22,32v20,-10,31,-29,58,-32r-54,46r-16,0r-20,-46r10,0","w":111},"\u0111":{"d":"-4,-21v19,-23,66,-49,51,-80v-48,9,-72,50,-95,84v-8,11,6,18,18,11xm15,-102v15,-8,48,-14,45,11r52,-69r-40,0v4,-15,29,-7,46,-9r32,-41r20,0r-32,41r29,0v-3,12,-21,9,-35,9r-102,136v-5,6,-13,17,-3,20v27,-8,44,-29,65,-45r4,5v-23,19,-41,47,-76,45v-14,-1,-6,-21,-5,-30v-17,16,-42,40,-72,28v-17,-49,37,-81,72,-101","w":151},"\u2192":{},"\u2302":{},"\u2013":{"d":"124,-62r-8,9r-168,0r7,-9r169,0","w":178},"\u00ad":{"d":"42,-64r-11,13r-67,0r9,-13r69,0","w":119},"\u25a0":{},"\u2022":{"d":"54,-134v1,-30,20,-51,52,-51v32,0,52,21,52,51v0,32,-21,53,-53,53v-30,0,-52,-20,-51,-53","w":212},"\u00af":{"d":"130,-150r-8,14r-71,0r8,-14r71,0","w":180},"\u00b0":{"d":"59,-244v-22,0,-37,16,-37,38v0,22,15,37,37,37v22,0,38,-15,38,-37v0,-22,-15,-38,-38,-38xm59,-255v28,0,48,19,48,49v0,30,-20,48,-48,48v-28,0,-48,-18,-48,-48v0,-30,20,-49,48,-49","w":118},"\u00b7":{"d":"36,-96v7,0,12,5,12,13v1,14,-20,15,-24,5v-4,-9,3,-18,12,-18","w":71},"\u2017":{},"\u203c":{},"\u207f":{},"\u20a7":{},"\u0393":{},"\u0398":{},"\u03a6":{},"\u03b1":{},"\u03b4":{},"\u03b5":{},"\u03c3":{},"\u03c4":{},"\u03c6":{},"\u2190":{},"\u2191":{},"\u2193":{},"\u2194":{},"\u2195":{},"\u21a8":{},"\u221f":{},"\u2229":{},"\u2261":{},"\u2310":{},"\u2320":{},"\u2321":{},"\u25ac":{},"\u25cb":{},"\u25b2":{},"\u25ba":{},"\u25bc":{},"\u25c4":{},"\u25d8":{},"\u25d9":{},"\u0158":{},"\u2580":{},"\u2584":{},"\u2588":{},"\u258c":{},"\u2590":{},"\u2591":{},"\u2592":{},"\u2593":{},"\u263a":{},"\u263b":{},"\u263c":{},"\u2640":{},"\u2642":{},"\u2660":{},"\u2663":{},"\u2665":{},"\u2666":{},"\u266a":{},"\u266b":{},"\u0102":{},"\u0103":{},"\u0104":{},"\u0105":{},"\u010e":{},"\u010f":{},"\u0110":{},"\u0118":{},"\u0119":{},"\u011a":{},"\u011b":{},"\u0139":{},"\u013a":{},"\u013d":{},"\u013e":{},"\u0143":{},"\u0144":{},"\u0147":{},"\u0148":{},"\u0150":{},"\u0151":{},"\u0154":{},"\u0155":{},"\u0159":{},"\u015a":{},"\u015b":{},"\u0162":{},"\u0163":{},"\u0164":{},"\u0165":{},"\u016e":{},"\u016f":{},"\u0171":{},"\u0170":{},"\u0179":{},"\u017a":{},"\u017b":{},"\u017c":{},"\u013f":{},"\u0140":{},"\u2500":{},"\u2502":{},"\u250c":{},"\u2510":{},"\u2514":{},"\u2518":{},"\u251c":{},"\u2524":{},"\u252c":{},"\u2534":{},"\u253c":{},"\u2550":{},"\u2551":{},"\u2552":{},"\u2553":{},"\u2554":{},"\u2555":{},"\u2556":{},"\u2557":{},"\u2558":{},"\u2559":{},"\u255a":{},"\u255b":{},"\u255c":{},"\u255d":{},"\u255e":{},"\u255f":{},"\u2560":{},"\u2561":{},"\u2562":{},"\u2563":{},"\u2564":{},"\u2565":{},"\u2566":{},"\u2567":{},"\u2568":{},"\u2569":{},"\u256a":{},"\u256b":{},"\u256c":{}}});/* --------- /javascripts/jquery.ifixpng.js --------- */ 

(function($){$.ifixpng=function(customPixel){$.ifixpng.pixel=customPixel;};$.ifixpng.getPixel=function(){return $.ifixpng.pixel||'/pixel.gif';};var hack={ltie7:$.browser.msie&&$.browser.version<7,filter:function(src){return"progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,sizingMethod=crop,src='"+src+"')";}};$.fn.ifixpng=hack.ltie7?function(){return this.each(function(){var $$=$(this);var base=$('base').attr('href');if(base){base=base.replace(/\/[^\/]+$/,'/');}
if($$.is('img')||$$.is('input')){if($$.attr('src')){if($$.attr('src').match(/.*\.png([?].*)?$/i)){var source=(base&&$$.attr('src').search(/^(\/|http:)/i))?base+$$.attr('src'):$$.attr('src');$$.css({filter:hack.filter(source),width:$$.width(),height:$$.height()}).attr({src:$.ifixpng.getPixel()}).positionFix();}}}else{var image=$$.css('backgroundImage');if(image.match(/^url\(["']?(.*\.png([?].*)?)["']?\)$/i)){image=RegExp.$1;image=(base&&image.substring(0,1)!='/')?base+image:image;$$.css({backgroundImage:'none',filter:hack.filter(image)}).children().children().positionFix();}}});}:function(){return this;};$.fn.iunfixpng=hack.ltie7?function(){return this.each(function(){var $$=$(this);var src=$$.css('filter');if(src.match(/src=["']?(.*\.png([?].*)?)["']?/i)){src=RegExp.$1;if($$.is('img')||$$.is('input')){$$.attr({src:src}).css({filter:''});}else{$$.css({filter:'',background:'url('+src+')'});}}});}:function(){return this;};$.fn.positionFix=function(){return this.each(function(){var $$=$(this);var position=$$.css('position');if(position!='absolute'&&position!='relative'){$$.css({position:'relative'});}});};})(jQuery);/* --------- /javascripts/functions.js --------- */ 

jQuery(function(){Cufon.replace('h1');Cufon.replace('h2');});
