/*
 * jQuery 1.2.6 - New Wave Javascript
 *
 * Copyright (c) 2008 John Resig (jquery.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * $Date: 2008/06/23 22:58:52 $
 * $Rev: 5685 $
 */
(function(){var _jQuery=window.jQuery,_$=window.$;var jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context);};var quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/,isSimple=/^.[^:#\[\.]*$/,undefined;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;return this;}if(typeof selector=="string"){var match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1])selector=jQuery.clean([match[1]],context);else{var elem=document.getElementById(match[3]);if(elem){if(elem.id!=match[3])return jQuery().find(selector);return jQuery(elem);}selector=[];}}else
return jQuery(context).find(selector);}else if(jQuery.isFunction(selector))return jQuery(document)[jQuery.fn.ready?"ready":"load"](selector);return this.setArray(jQuery.makeArray(selector));},jquery:"1.2.6",size:function(){return this.length;},length:0,get:function(num){return num==undefined?jQuery.makeArray(this):this[num];},pushStack:function(elems){var ret=jQuery(elems);ret.prevObject=this;return ret;},setArray:function(elems){this.length=0;Array.prototype.push.apply(this,elems);return this;},each:function(callback,args){return jQuery.each(this,callback,args);},index:function(elem){var ret=-1;return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this);},attr:function(name,value,type){var options=name;if(name.constructor==String)if(value===undefined)return this[0]&&jQuery[type||"attr"](this[0],name);else{options={};options[name]=value;}return this.each(function(i){for(name in options)jQuery.attr(type?this.style:this,name,jQuery.prop(this,options[name],type,i,name));});},css:function(key,value){if((key=='width'||key=='height')&&parseFloat(value)<0)value=undefined;return this.attr(key,value,"curCSS");},text:function(text){if(typeof text!="object"&&text!=null)return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));var ret="";jQuery.each(text||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8)ret+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this]);});});return ret;},wrapAll:function(html){if(this[0])jQuery(html,this[0].ownerDocument).clone().insertBefore(this[0]).map(function(){var elem=this;while(elem.firstChild)elem=elem.firstChild;return elem;}).append(this);return this;},wrapInner:function(html){return this.each(function(){jQuery(this).contents().wrapAll(html);});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},append:function(){return this.domManip(arguments,true,false,function(elem){if(this.nodeType==1)this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,true,function(elem){if(this.nodeType==1)this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,true,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},find:function(selector){var elems=jQuery.map(this,function(elem){return jQuery.find(selector,elem);});return this.pushStack(/[^+>] [^+>]/.test(selector)||selector.indexOf("..")>-1?jQuery.unique(elems):elems);},clone:function(events){var ret=this.map(function(){if(jQuery.browser.msie&&!jQuery.isXMLDoc(this)){var clone=this.cloneNode(true),container=document.createElement("div");container.appendChild(clone);return jQuery.clean([container.innerHTML])[0];}else
return this.cloneNode(true);});var clone=ret.find("*").andSelf().each(function(){if(this[expando]!=undefined)this[expando]=null;});if(events===true)this.find("*").andSelf().each(function(i){if(this.nodeType==3)return;var events=jQuery.data(this,"events");for(var type in events)for(var handler in events[type])jQuery.event.add(clone[i],type,events[type][handler],events[type][handler].data);});return ret;},filter:function(selector){return this.pushStack(jQuery.isFunction(selector)&&jQuery.grep(this,function(elem,i){return selector.call(elem,i);})||jQuery.multiFilter(selector,this));},not:function(selector){if(selector.constructor==String)if(isSimple.test(selector))return this.pushStack(jQuery.multiFilter(selector,this,true));else
selector=jQuery.multiFilter(selector,this);var isArrayLike=selector.length&&selector[selector.length-1]!==undefined&&!selector.nodeType;return this.filter(function(){return isArrayLike?jQuery.inArray(this,selector)<0:this!=selector;});},add:function(selector){return this.pushStack(jQuery.unique(jQuery.merge(this.get(),typeof selector=='string'?jQuery(selector):jQuery.makeArray(selector))));},is:function(selector){return!!selector&&jQuery.multiFilter(selector,this).length>0;},hasClass:function(selector){return this.is("."+selector);},val:function(value){if(value==undefined){if(this.length){var elem=this[0];if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type=="select-one";if(index<0)return null;for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery.browser.msie&&!option.attributes.value.specified?option.text:option.value;if(one)return value;values.push(value);}}return values;}else
return(this[0].value||"").replace(/\r/g,"");}return undefined;}if(value.constructor==Number)value+='';return this.each(function(){if(this.nodeType!=1)return;if(value.constructor==Array&&/radio|checkbox/.test(this.type))this.checked=(jQuery.inArray(this.value,value)>=0||jQuery.inArray(this.name,value)>=0);else if(jQuery.nodeName(this,"select")){var values=jQuery.makeArray(value);jQuery("option",this).each(function(){this.selected=(jQuery.inArray(this.value,values)>=0||jQuery.inArray(this.text,values)>=0);});if(!values.length)this.selectedIndex=-1;}else
this.value=value;});},html:function(value){return value==undefined?(this[0]?this[0].innerHTML:null):this.empty().append(value);},replaceWith:function(value){return this.after(value).remove();},eq:function(i){return this.slice(i,i+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},andSelf:function(){return this.add(this.prevObject);},data:function(key,value){var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value===undefined){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data===undefined&&this.length)data=jQuery.data(this[0],key);return data===undefined&&parts[1]?this.data(parts[0]):data;}else
return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value);});},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});},domManip:function(args,table,reverse,callback){var clone=this.length>1,elems;return this.each(function(){if(!elems){elems=jQuery.clean(args,this.ownerDocument);if(reverse)elems.reverse();}var obj=this;if(table&&jQuery.nodeName(this,"table")&&jQuery.nodeName(elems[0],"tr"))obj=this.getElementsByTagName("tbody")[0]||this.appendChild(this.ownerDocument.createElement("tbody"));var scripts=jQuery([]);jQuery.each(elems,function(){var elem=clone?jQuery(this).clone(true)[0]:this;if(jQuery.nodeName(elem,"script"))scripts=scripts.add(elem);else{if(elem.nodeType==1)scripts=scripts.add(jQuery("script",elem).remove());callback.call(obj,elem);}});scripts.each(evalScript);});}};jQuery.fn.init.prototype=jQuery.fn;function evalScript(i,elem){if(elem.src)jQuery.ajax({url:elem.src,async:false,dataType:"script"});else
jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"");if(elem.parentNode)elem.parentNode.removeChild(elem);}function now(){return+new Date;}jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options;if(target.constructor==Boolean){deep=target;target=arguments[1]||{};i=2;}if(typeof target!="object"&&typeof target!="function")target={};if(length==i){target=this;--i;}for(;i<length;i++)if((options=arguments[i])!=null)for(var name in options){var src=target[name],copy=options[name];if(target===copy)continue;if(deep&&copy&&typeof copy=="object"&&!copy.nodeType)target[name]=jQuery.extend(deep,src||(copy.length!=null?[]:{}),copy);else if(copy!==undefined)target[name]=copy;}return target;};var expando="jQuery"+now(),uuid=0,windowData={},exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,defaultView=document.defaultView||{};jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)window.jQuery=_jQuery;return jQuery;},isFunction:function(fn){return!!fn&&typeof fn!="string"&&!fn.nodeName&&fn.constructor!=Array&&/^[\s[]?function/.test(fn+"");},isXMLDoc:function(elem){return elem.documentElement&&!elem.body||elem.tagName&&elem.ownerDocument&&!elem.ownerDocument.body;},globalEval:function(data){data=jQuery.trim(data);if(data){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.browser.msie)script.text=data;else
script.appendChild(document.createTextNode(data));head.insertBefore(script,head.firstChild);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},cache:{},data:function(elem,name,data){elem=elem==window?windowData:elem;var id=elem[expando];if(!id)id=elem[expando]=++uuid;if(name&&!jQuery.cache[id])jQuery.cache[id]={};if(data!==undefined)jQuery.cache[id][name]=data;return name?jQuery.cache[id][name]:id;},removeData:function(elem,name){elem=elem==window?windowData:elem;var id=elem[expando];if(name){if(jQuery.cache[id]){delete jQuery.cache[id][name];name="";for(name in jQuery.cache[id])break;if(!name)jQuery.removeData(elem);}}else{try{delete elem[expando];}catch(e){if(elem.removeAttribute)elem.removeAttribute(expando);}delete jQuery.cache[id];}},each:function(object,callback,args){var name,i=0,length=object.length;if(args){if(length==undefined){for(name in object)if(callback.apply(object[name],args)===false)break;}else
for(;i<length;)if(callback.apply(object[i++],args)===false)break;}else{if(length==undefined){for(name in object)if(callback.call(object[name],name,object[name])===false)break;}else
for(var value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}}return object;},prop:function(elem,value,type,i,name){if(jQuery.isFunction(value))value=value.call(elem,i);return value&&value.constructor==Number&&type=="curCSS"&&!exclude.test(name)?value+"px":value;},className:{add:function(elem,classNames){jQuery.each((classNames||"").split(/\s+/),function(i,className){if(elem.nodeType==1&&!jQuery.className.has(elem.className,className))elem.className+=(elem.className?" ":"")+className;});},remove:function(elem,classNames){if(elem.nodeType==1)elem.className=classNames!=undefined?jQuery.grep(elem.className.split(/\s+/),function(className){return!jQuery.className.has(classNames,className);}).join(" "):"";},has:function(elem,className){return jQuery.inArray(className,(elem.className||elem).toString().split(/\s+/))>-1;}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name];}callback.call(elem);for(var name in options)elem.style[name]=old[name];},css:function(elem,name,force){if(name=="width"||name=="height"){var val,props={position:"absolute",visibility:"hidden",display:"block"},which=name=="width"?["Left","Right"]:["Top","Bottom"];function getWH(){val=name=="width"?elem.offsetWidth:elem.offsetHeight;var padding=0,border=0;jQuery.each(which,function(){padding+=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;border+=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;});val-=Math.round(padding+border);}if(jQuery(elem).is(":visible"))getWH();else
jQuery.swap(elem,props,getWH);return Math.max(0,val);}return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret,style=elem.style;function color(elem){if(!jQuery.browser.safari)return false;var ret=defaultView.getComputedStyle(elem,null);return!ret||ret.getPropertyValue("color")=="";}if(name=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(style,"opacity");return ret==""?"1":ret;}if(jQuery.browser.opera&&name=="display"){var save=style.outline;style.outline="0 solid black";style.outline=save;}if(name.match(/float/i))name=styleFloat;if(!force&&style&&style[name])ret=style[name];else if(defaultView.getComputedStyle){if(name.match(/float/i))name="float";name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var computedStyle=defaultView.getComputedStyle(elem,null);if(computedStyle&&!color(elem))ret=computedStyle.getPropertyValue(name);else{var swap=[],stack=[],a=elem,i=0;for(;a&&color(a);a=a.parentNode)stack.unshift(a);for(;i<stack.length;i++)if(color(stack[i])){swap[i]=stack[i].style.display;stack[i].style.display="block";}ret=name=="display"&&swap[stack.length-1]!=null?"none":(computedStyle&&computedStyle.getPropertyValue(name))||"";for(i=0;i<swap.length;i++)if(swap[i]!=null)stack[i].style.display=swap[i];}if(name=="opacity"&&ret=="")ret="1";}else if(elem.currentStyle){var camelCase=name.replace(/\-(\w)/g,function(all,letter){return letter.toUpperCase();});ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!/^\d+(px)?$/i.test(ret)&&/^\d/.test(ret)){var left=style.left,rsLeft=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;style.left=ret||0;ret=style.pixelLeft+"px";style.left=left;elem.runtimeStyle.left=rsLeft;}}return ret;},clean:function(elems,context){var ret=[];context=context||document;if(typeof context.createElement=='undefined')context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;jQuery.each(elems,function(i,elem){if(!elem)return;if(elem.constructor==Number)elem+='';if(typeof elem=="string"){elem=elem.replace(/(<(\w+)[^>]*?)\/>/g,function(all,front,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?all:front+"></"+tag+">";});var tags=jQuery.trim(elem).toLowerCase(),div=context.createElement("div");var wrap=!tags.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!tags.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||tags.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!tags.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!tags.indexOf("<td")||!tags.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!tags.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||jQuery.browser.msie&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)div=div.lastChild;if(jQuery.browser.msie){var tbody=!tags.indexOf("<table")&&tags.indexOf("<tbody")<0?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&tags.indexOf("<tbody")<0?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j)if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length)tbody[j].parentNode.removeChild(tbody[j]);if(/^\s/.test(elem))div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);}elem=jQuery.makeArray(div.childNodes);}if(elem.length===0&&(!jQuery.nodeName(elem,"form")&&!jQuery.nodeName(elem,"select")))return;if(elem[0]==undefined||jQuery.nodeName(elem,"form")||elem.options)ret.push(elem);else
ret=jQuery.merge(ret,elem);});return ret;},attr:function(elem,name,value){if(!elem||elem.nodeType==3||elem.nodeType==8)return undefined;var notxml=!jQuery.isXMLDoc(elem),set=value!==undefined,msie=jQuery.browser.msie;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name=="selected"&&jQuery.browser.safari)elem.parentNode.selectedIndex;if(name in elem&&notxml&&!special){if(set){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode)throw"type property can't be changed";elem[name]=value;}if(jQuery.nodeName(elem,"form")&&elem.getAttributeNode(name))return elem.getAttributeNode(name).nodeValue;return elem[name];}if(msie&&notxml&&name=="style")return jQuery.attr(elem.style,"cssText",value);if(set)elem.setAttribute(name,""+value);var attr=msie&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}if(msie&&name=="opacity"){if(set){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(value)+''=="NaN"?"":"alpha(opacity="+value*100+")");}return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100)+'':"";}name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(set)elem[name]=value;return elem[name];},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"");},makeArray:function(array){var ret=[];if(array!=null){var i=array.length;if(i==null||array.split||array.setInterval||array.call)ret[0]=array;else
while(i)ret[--i]=array[i];}return ret;},inArray:function(elem,array){for(var i=0,length=array.length;i<length;i++)if(array[i]===elem)return i;return-1;},merge:function(first,second){var i=0,elem,pos=first.length;if(jQuery.browser.msie){while(elem=second[i++])if(elem.nodeType!=8)first[pos++]=elem;}else
while(elem=second[i++])first[pos++]=elem;return first;},unique:function(array){var ret=[],done={};try{for(var i=0,length=array.length;i<length;i++){var id=jQuery.data(array[i]);if(!done[id]){done[id]=true;ret.push(array[i]);}}}catch(e){ret=array;}return ret;},grep:function(elems,callback,inv){var ret=[];for(var i=0,length=elems.length;i<length;i++)if(!inv!=!callback(elems[i],i))ret.push(elems[i]);return ret;},map:function(elems,callback){var ret=[];for(var i=0,length=elems.length;i<length;i++){var value=callback(elems[i],i);if(value!=null)ret[ret.length]=value;}return ret.concat.apply([],ret);}});var userAgent=navigator.userAgent.toLowerCase();jQuery.browser={version:(userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};var styleFloat=jQuery.browser.msie?"styleFloat":"cssFloat";jQuery.extend({boxModel:!jQuery.browser.msie||document.compatMode=="CSS1Compat",props:{"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing"}});jQuery.each({parent:function(elem){return elem.parentNode;},parents:function(elem){return jQuery.dir(elem,"parentNode");},next:function(elem){return jQuery.nth(elem,2,"nextSibling");},prev:function(elem){return jQuery.nth(elem,2,"previousSibling");},nextAll:function(elem){return jQuery.dir(elem,"nextSibling");},prevAll:function(elem){return jQuery.dir(elem,"previousSibling");},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},children:function(elem){return jQuery.sibling(elem.firstChild);},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}},function(name,fn){jQuery.fn[name]=function(selector){var ret=jQuery.map(this,fn);if(selector&&typeof selector=="string")ret=jQuery.multiFilter(selector,ret);return this.pushStack(jQuery.unique(ret));};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(){var args=arguments;return this.each(function(){for(var i=0,length=args.length;i<length;i++)jQuery(args[i])[original](this);});};});jQuery.each({removeAttr:function(name){jQuery.attr(this,name,"");if(this.nodeType==1)this.removeAttribute(name);},addClass:function(classNames){jQuery.className.add(this,classNames);},removeClass:function(classNames){jQuery.className.remove(this,classNames);},toggleClass:function(classNames){jQuery.className[jQuery.className.has(this,classNames)?"remove":"add"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).r.length){jQuery("*",this).add(this).each(function(){jQuery.event.remove(this);jQuery.removeData(this);});if(this.parentNode)this.parentNode.removeChild(this);}},empty:function(){jQuery(">*",this).remove();while(this.firstChild)this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?jQuery.browser.opera&&document.body["client"+name]||jQuery.browser.safari&&window["inner"+name]||document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(Math.max(document.body["scroll"+name],document.documentElement["scroll"+name]),Math.max(document.body["offset"+name],document.documentElement["offset"+name])):size==undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,size.constructor==String?size:size+"px");};});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0;}var chars=jQuery.browser.safari&&parseInt(jQuery.browser.version)<417?"(?:[\\w*_-]|\\\\.)":"(?:[\\w\u0128-\uFFFF*_-]|\\\\.)",quickChild=new RegExp("^>\\s*("+chars+"+)"),quickID=new RegExp("^("+chars+"+)(#)("+chars+"+)"),quickClass=new RegExp("^([#.]?)("+chars+"*)");jQuery.extend({expr:{"":function(a,i,m){return m[2]=="*"||jQuery.nodeName(a,m[2]);},"#":function(a,i,m){return a.getAttribute("id")==m[2];},":":{lt:function(a,i,m){return i<m[3]-0;},gt:function(a,i,m){return i>m[3]-0;},nth:function(a,i,m){return m[3]-0==i;},eq:function(a,i,m){return m[3]-0==i;},first:function(a,i){return i==0;},last:function(a,i,m,r){return i==r.length-1;},even:function(a,i){return i%2==0;},odd:function(a,i){return i%2;},"first-child":function(a){return a.parentNode.getElementsByTagName("*")[0]==a;},"last-child":function(a){return jQuery.nth(a.parentNode.lastChild,1,"previousSibling")==a;},"only-child":function(a){return!jQuery.nth(a.parentNode.lastChild,2,"previousSibling");},parent:function(a){return a.firstChild;},empty:function(a){return!a.firstChild;},contains:function(a,i,m){return(a.textContent||a.innerText||jQuery(a).text()||"").indexOf(m[3])>=0;},visible:function(a){return"hidden"!=a.type&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden";},hidden:function(a){return"hidden"==a.type||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden";},enabled:function(a){return!a.disabled;},disabled:function(a){return a.disabled;},checked:function(a){return a.checked;},selected:function(a){return a.selected||jQuery.attr(a,"selected");},text:function(a){return"text"==a.type;},radio:function(a){return"radio"==a.type;},checkbox:function(a){return"checkbox"==a.type;},file:function(a){return"file"==a.type;},password:function(a){return"password"==a.type;},submit:function(a){return"submit"==a.type;},image:function(a){return"image"==a.type;},reset:function(a){return"reset"==a.type;},button:function(a){return"button"==a.type||jQuery.nodeName(a,"button");},input:function(a){return/input|select|textarea|button/i.test(a.nodeName);},has:function(a,i,m){return jQuery.find(m[3],a).length;},header:function(a){return/h\d/i.test(a.nodeName);},animated:function(a){return jQuery.grep(jQuery.timers,function(fn){return a==fn.elem;}).length;}}},parse:[/^(\[) *@?([\w-]+) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/,/^(:)([\w-]+)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/,new RegExp("^([:.#]*)("+chars+"+)")],multiFilter:function(expr,elems,not){var old,cur=[];while(expr&&expr!=old){old=expr;var f=jQuery.filter(expr,elems,not);expr=f.t.replace(/^\s*,\s*/,"");cur=not?elems=f.r:jQuery.merge(cur,f.r);}return cur;},find:function(t,context){if(typeof t!="string")return[t];if(context&&context.nodeType!=1&&context.nodeType!=9)return[];context=context||document;var ret=[context],done=[],last,nodeName;while(t&&last!=t){var r=[];last=t;t=jQuery.trim(t);var foundToken=false,re=quickChild,m=re.exec(t);if(m){nodeName=m[1].toUpperCase();for(var i=0;ret[i];i++)for(var c=ret[i].firstChild;c;c=c.nextSibling)if(c.nodeType==1&&(nodeName=="*"||c.nodeName.toUpperCase()==nodeName))r.push(c);ret=r;t=t.replace(re,"");if(t.indexOf(" ")==0)continue;foundToken=true;}else{re=/^([>+~])\s*(\w*)/i;if((m=re.exec(t))!=null){r=[];var merge={};nodeName=m[2].toUpperCase();m=m[1];for(var j=0,rl=ret.length;j<rl;j++){var n=m=="~"||m=="+"?ret[j].nextSibling:ret[j].firstChild;for(;n;n=n.nextSibling)if(n.nodeType==1){var id=jQuery.data(n);if(m=="~"&&merge[id])break;if(!nodeName||n.nodeName.toUpperCase()==nodeName){if(m=="~")merge[id]=true;r.push(n);}if(m=="+")break;}}ret=r;t=jQuery.trim(t.replace(re,""));foundToken=true;}}if(t&&!foundToken){if(!t.indexOf(",")){if(context==ret[0])ret.shift();done=jQuery.merge(done,ret);r=ret=[context];t=" "+t.substr(1,t.length);}else{var re2=quickID;var m=re2.exec(t);if(m){m=[0,m[2],m[3],m[1]];}else{re2=quickClass;m=re2.exec(t);}m[2]=m[2].replace(/\\/g,"");var elem=ret[ret.length-1];if(m[1]=="#"&&elem&&elem.getElementById&&!jQuery.isXMLDoc(elem)){var oid=elem.getElementById(m[2]);if((jQuery.browser.msie||jQuery.browser.opera)&&oid&&typeof oid.id=="string"&&oid.id!=m[2])oid=jQuery('[@id="'+m[2]+'"]',elem)[0];ret=r=oid&&(!m[3]||jQuery.nodeName(oid,m[3]))?[oid]:[];}else{for(var i=0;ret[i];i++){var tag=m[1]=="#"&&m[3]?m[3]:m[1]!=""||m[0]==""?"*":m[2];if(tag=="*"&&ret[i].nodeName.toLowerCase()=="object")tag="param";r=jQuery.merge(r,ret[i].getElementsByTagName(tag));}if(m[1]==".")r=jQuery.classFilter(r,m[2]);if(m[1]=="#"){var tmp=[];for(var i=0;r[i];i++)if(r[i].getAttribute("id")==m[2]){tmp=[r[i]];break;}r=tmp;}ret=r;}t=t.replace(re2,"");}}if(t){var val=jQuery.filter(t,r);ret=r=val.r;t=jQuery.trim(val.t);}}if(t)ret=[];if(ret&&context==ret[0])ret.shift();done=jQuery.merge(done,ret);return done;},classFilter:function(r,m,not){m=" "+m+" ";var tmp=[];for(var i=0;r[i];i++){var pass=(" "+r[i].className+" ").indexOf(m)>=0;if(!not&&pass||not&&!pass)tmp.push(r[i]);}return tmp;},filter:function(t,r,not){var last;while(t&&t!=last){last=t;var p=jQuery.parse,m;for(var i=0;p[i];i++){m=p[i].exec(t);if(m){t=t.substring(m[0].length);m[2]=m[2].replace(/\\/g,"");break;}}if(!m)break;if(m[1]==":"&&m[2]=="not")r=isSimple.test(m[3])?jQuery.filter(m[3],r,true).r:jQuery(r).not(m[3]);else if(m[1]==".")r=jQuery.classFilter(r,m[2],not);else if(m[1]=="["){var tmp=[],type=m[3];for(var i=0,rl=r.length;i<rl;i++){var a=r[i],z=a[jQuery.props[m[2]]||m[2]];if(z==null||/href|src|selected/.test(m[2]))z=jQuery.attr(a,m[2])||'';if((type==""&&!!z||type=="="&&z==m[5]||type=="!="&&z!=m[5]||type=="^="&&z&&!z.indexOf(m[5])||type=="$="&&z.substr(z.length-m[5].length)==m[5]||(type=="*="||type=="~=")&&z.indexOf(m[5])>=0)^not)tmp.push(a);}r=tmp;}else if(m[1]==":"&&m[2]=="nth-child"){var merge={},tmp=[],test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(m[3]=="even"&&"2n"||m[3]=="odd"&&"2n+1"||!/\D/.test(m[3])&&"0n+"+m[3]||m[3]),first=(test[1]+(test[2]||1))-0,last=test[3]-0;for(var i=0,rl=r.length;i<rl;i++){var node=r[i],parentNode=node.parentNode,id=jQuery.data(parentNode);if(!merge[id]){var c=1;for(var n=parentNode.firstChild;n;n=n.nextSibling)if(n.nodeType==1)n.nodeIndex=c++;merge[id]=true;}var add=false;if(first==0){if(node.nodeIndex==last)add=true;}else if((node.nodeIndex-last)%first==0&&(node.nodeIndex-last)/first>=0)add=true;if(add^not)tmp.push(node);}r=tmp;}else{var fn=jQuery.expr[m[1]];if(typeof fn=="object")fn=fn[m[2]];if(typeof fn=="string")fn=eval("false||function(a,i){return "+fn+";}");r=jQuery.grep(r,function(elem,i){return fn(elem,i,m,r);},not);}}return{r:r,t:t};},dir:function(elem,dir){var matched=[],cur=elem[dir];while(cur&&cur!=document){if(cur.nodeType==1)matched.push(cur);cur=cur[dir];}return matched;},nth:function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir])if(cur.nodeType==1&&++num==result)break;return cur;},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&n!=elem)r.push(n);}return r;}});jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)return;if(jQuery.browser.msie&&elem.setInterval)elem=window;if(!handler.guid)handler.guid=this.guid++;if(data!=undefined){var fn=handler;handler=this.proxy(fn,function(){return fn.apply(this,arguments);});handler.data=data;}var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){if(typeof jQuery!="undefined"&&!jQuery.event.triggered)return jQuery.event.handle.apply(arguments.callee.elem,arguments);});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];handler.type=parts[1];var handlers=events[type];if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem)===false){if(elem.addEventListener)elem.addEventListener(type,handle,false);else if(elem.attachEvent)elem.attachEvent("on"+type,handle);}}handlers[handler.guid]=handler;jQuery.event.global[type]=true;});elem=null;},guid:1,global:{},remove:function(elem,types,handler){if(elem.nodeType==3||elem.nodeType==8)return;var events=jQuery.data(elem,"events"),ret,index;if(events){if(types==undefined||(typeof types=="string"&&types.charAt(0)=="."))for(var type in events)this.remove(elem,type+(types||""));else{if(types.type){handler=types.handler;types=types.type;}jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];if(events[type]){if(handler)delete events[type][handler.guid];else
for(handler in events[type])if(!parts[1]||events[type][handler].type==parts[1])delete events[type][handler];for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem)===false){if(elem.removeEventListener)elem.removeEventListener(type,jQuery.data(elem,"handle"),false);else if(elem.detachEvent)elem.detachEvent("on"+type,jQuery.data(elem,"handle"));}ret=null;delete events[type];}}});}for(ret in events)break;if(!ret){var handle=jQuery.data(elem,"handle");if(handle)handle.elem=null;jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle");}}},trigger:function(type,data,elem,donative,extra){data=jQuery.makeArray(data);if(type.indexOf("!")>=0){type=type.slice(0,-1);var exclusive=true;}if(!elem){if(this.global[type])jQuery("*").add([window,document]).trigger(type,data);}else{if(elem.nodeType==3||elem.nodeType==8)return undefined;var val,ret,fn=jQuery.isFunction(elem[type]||null),event=!data[0]||!data[0].preventDefault;if(event){data.unshift({type:type,target:elem,preventDefault:function(){},stopPropagation:function(){},timeStamp:now()});data[0][expando]=true;}data[0].type=type;if(exclusive)data[0].exclusive=true;var handle=jQuery.data(elem,"handle");if(handle)val=handle.apply(elem,data);if((!fn||(jQuery.nodeName(elem,'a')&&type=="click"))&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)val=false;if(event)data.shift();if(extra&&jQuery.isFunction(extra)){ret=extra.apply(elem,val==null?data:data.concat(val));if(ret!==undefined)val=ret;}if(fn&&donative!==false&&val!==false&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}}this.triggered=false;}return val;},handle:function(event){var val,ret,namespace,all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);namespace=event.type.split(".");event.type=namespace[0];namespace=namespace[1];all=!namespace&&!event.exclusive;handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||handler.type==namespace){event.handler=handler;event.data=handler.data;ret=handler.apply(this,arguments);if(val!==false)val=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}}return val;},fix:function(event){if(event[expando]==true)return event;var originalEvent=event;event={originalEvent:originalEvent};var props="altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target timeStamp toElement type view wheelDelta which".split(" ");for(var i=props.length;i;i--)event[props[i]]=originalEvent[props[i]];event[expando]=true;event.preventDefault=function(){if(originalEvent.preventDefault)originalEvent.preventDefault();originalEvent.returnValue=false;};event.stopPropagation=function(){if(originalEvent.stopPropagation)originalEvent.stopPropagation();originalEvent.cancelBubble=true;};event.timeStamp=event.timeStamp||now();if(!event.target)event.target=event.srcElement||document;if(event.target.nodeType==3)event.target=event.target.parentNode;if(!event.relatedTarget&&event.fromElement)event.relatedTarget=event.fromElement==event.target?event.toElement:event.fromElement;if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc.clientTop||0);}if(!event.which&&((event.charCode||event.charCode===0)?event.charCode:event.keyCode))event.which=event.charCode||event.keyCode;if(!event.metaKey&&event.ctrlKey)event.metaKey=event.ctrlKey;if(!event.which&&event.button)event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));return event;},proxy:function(fn,proxy){proxy.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy;},special:{ready:{setup:function(){bindReady();return;},teardown:function(){return;}},mouseenter:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseover",jQuery.event.special.mouseenter.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseover",jQuery.event.special.mouseenter.handler);return true;},handler:function(event){if(withinElement(event,this))return true;event.type="mouseenter";return jQuery.event.handle.apply(this,arguments);}},mouseleave:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseout",jQuery.event.special.mouseleave.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseout",jQuery.event.special.mouseleave.handler);return true;},handler:function(event){if(withinElement(event,this))return true;event.type="mouseleave";return jQuery.event.handle.apply(this,arguments);}}}};jQuery.fn.extend({bind:function(type,data,fn){return type=="unload"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data);});},one:function(type,data,fn){var one=jQuery.event.proxy(fn||data,function(event){jQuery(this).unbind(event,one);return(fn||data).apply(this,arguments);});return this.each(function(){jQuery.event.add(this,type,one,fn&&data);});},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data,fn){return this.each(function(){jQuery.event.trigger(type,data,this,true,fn);});},triggerHandler:function(type,data,fn){return this[0]&&jQuery.event.trigger(type,data,this[0],false,fn);},toggle:function(fn){var args=arguments,i=1;while(i<args.length)jQuery.event.proxy(fn,args[i++]);return this.click(jQuery.event.proxy(fn,function(event){this.lastToggle=(this.lastToggle||0)%i;event.preventDefault();return args[this.lastToggle++].apply(this,arguments)||false;}));},hover:function(fnOver,fnOut){return this.bind('mouseenter',fnOver).bind('mouseleave',fnOut);},ready:function(fn){bindReady();if(jQuery.isReady)fn.call(document,jQuery);else
jQuery.readyList.push(function(){return fn.call(this,jQuery);});return this;}});jQuery.extend({isReady:false,readyList:[],ready:function(){if(!jQuery.isReady){jQuery.isReady=true;if(jQuery.readyList){jQuery.each(jQuery.readyList,function(){this.call(document);});jQuery.readyList=null;}jQuery(document).triggerHandler("ready");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener&&!jQuery.browser.opera)document.addEventListener("DOMContentLoaded",jQuery.ready,false);if(jQuery.browser.msie&&window==top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left");}catch(error){setTimeout(arguments.callee,0);return;}jQuery.ready();})();if(jQuery.browser.opera)document.addEventListener("DOMContentLoaded",function(){if(jQuery.isReady)return;for(var i=0;i<document.styleSheets.length;i++)if(document.styleSheets[i].disabled){setTimeout(arguments.callee,0);return;}jQuery.ready();},false);if(jQuery.browser.safari){var numStyles;(function(){if(jQuery.isReady)return;if(document.readyState!="loaded"&&document.readyState!="complete"){setTimeout(arguments.callee,0);return;}if(numStyles===undefined)numStyles=jQuery("style, link[rel=stylesheet]").length;if(document.styleSheets.length!=numStyles){setTimeout(arguments.callee,0);return;}jQuery.ready();})();}jQuery.event.add(window,"load",jQuery.ready);}jQuery.each(("blur,focus,load,resize,scroll,unload,click,dblclick,"+"mousedown,mouseup,mousemove,mouseover,mouseout,change,select,"+"submit,keydown,keypress,keyup,error").split(","),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name);};});var withinElement=function(event,elem){var parent=event.relatedTarget;while(parent&&parent!=elem)try{parent=parent.parentNode;}catch(error){parent=elem;}return parent==elem;};jQuery(window).bind("unload",function(){jQuery("*").add(document).unbind();});jQuery.fn.extend({_load:jQuery.fn.load,load:function(url,params,callback){if(typeof url!='string')return this._load(url);var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}callback=callback||function(){};var type="GET";if(params)if(jQuery.isFunction(params)){callback=params;params=null;}else{params=jQuery.param(params);type="POST";}var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(res,status){if(status=="success"||status=="notmodified")self.html(selector?jQuery("<div/>").append(res.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(selector):res.responseText);self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return jQuery.nodeName(this,"form")?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:val.constructor==Array?jQuery.map(val,function(val,i){return{name:elem.name,value:val};}):{name:elem.name,value:val};}).get();}});jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});var jsc=now();jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data=null;}return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type});},getScript:function(url,callback){return jQuery.get(url,null,callback,"script");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json");},post:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data={};}return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type});},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings);},ajaxSettings:{url:location.href,global:true,type:"GET",timeout:0,contentType:"application/x-www-form-urlencoded",processData:true,async:true,data:null,username:null,password:null,accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(s){s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));var jsonp,jsre=/=\?(&|$)/g,status,data,type=s.type.toUpperCase();if(s.data&&s.processData&&typeof s.data!="string")s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(type=="GET"){if(!s.url.match(jsre))s.url+=(s.url.match(/\?/)?"&":"?")+(s.jsonp||"callback")+"=?";}else if(!s.data||!s.data.match(jsre))s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?";s.dataType="json";}if(s.dataType=="json"&&(s.data&&s.data.match(jsre)||s.url.match(jsre))){jsonp="jsonp"+jsc++;if(s.data)s.data=(s.data+"").replace(jsre,"="+jsonp+"$1");s.url=s.url.replace(jsre,"="+jsonp+"$1");s.dataType="script";window[jsonp]=function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp];}catch(e){}if(head)head.removeChild(script);};}if(s.dataType=="script"&&s.cache==null)s.cache=false;if(s.cache===false&&type=="GET"){var ts=now();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"");}if(s.data&&type=="GET"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;}if(s.global&&!jQuery.active++)jQuery.event.trigger("ajaxStart");var remote=/^(?:\w+:)?\/\/([^\/?#]+)/;if(s.dataType=="script"&&type=="GET"&&remote.test(s.url)&&remote.exec(s.url)[1]!=location.host){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;if(s.scriptCharset)script.charset=s.scriptCharset;if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){done=true;success();complete();head.removeChild(script);}};}head.appendChild(script);return undefined;}var requestDone=false;var xhr=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();if(s.username)xhr.open(type,s.url,s.async,s.username,s.password);else
xhr.open(type,s.url,s.async);try{if(s.data)xhr.setRequestHeader("Content-Type",s.contentType);if(s.ifModified)xhr.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xhr.setRequestHeader("X-Requested-With","XMLHttpRequest");xhr.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){}if(s.beforeSend&&s.beforeSend(xhr,s)===false){s.global&&jQuery.active--;xhr.abort();return false;}if(s.global)jQuery.event.trigger("ajaxSend",[xhr,s]);var onreadystatechange=function(isTimeout){if(!requestDone&&xhr&&(xhr.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;}status=isTimeout=="timeout"&&"timeout"||!jQuery.httpSuccess(xhr)&&"error"||s.ifModified&&jQuery.httpNotModified(xhr,s.url)&&"notmodified"||"success";if(status=="success"){try{data=jQuery.httpData(xhr,s.dataType,s.dataFilter);}catch(e){status="parsererror";}}if(status=="success"){var modRes;try{modRes=xhr.getResponseHeader("Last-Modified");}catch(e){}if(s.ifModified&&modRes)jQuery.lastModified[s.url]=modRes;if(!jsonp)success();}else
jQuery.handleError(s,xhr,status);complete();if(s.async)xhr=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)setTimeout(function(){if(xhr){xhr.abort();if(!requestDone)onreadystatechange("timeout");}},s.timeout);}try{xhr.send(s.data);}catch(e){jQuery.handleError(s,xhr,null,e);}if(!s.async)onreadystatechange();function success(){if(s.success)s.success(data,status);if(s.global)jQuery.event.trigger("ajaxSuccess",[xhr,s]);}function complete(){if(s.complete)s.complete(xhr,status);if(s.global)jQuery.event.trigger("ajaxComplete",[xhr,s]);if(s.global&&!--jQuery.active)jQuery.event.trigger("ajaxStop");}return xhr;},handleError:function(s,xhr,status,e){if(s.error)s.error(xhr,status,e);if(s.global)jQuery.event.trigger("ajaxError",[xhr,s,e]);},active:0,httpSuccess:function(xhr){try{return!xhr.status&&location.protocol=="file:"||(xhr.status>=200&&xhr.status<300)||xhr.status==304||xhr.status==1223||jQuery.browser.safari&&xhr.status==undefined;}catch(e){}return false;},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader("Last-Modified");return xhr.status==304||xhrRes==jQuery.lastModified[url]||jQuery.browser.safari&&xhr.status==undefined;}catch(e){}return false;},httpData:function(xhr,type,filter){var ct=xhr.getResponseHeader("content-type"),xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0,data=xml?xhr.responseXML:xhr.responseText;if(xml&&data.documentElement.tagName=="parsererror")throw"parsererror";if(filter)data=filter(data,type);if(type=="script")jQuery.globalEval(data);if(type=="json")data=eval("("+data+")");return data;},param:function(a){var s=[];if(a.constructor==Array||a.jquery)jQuery.each(a,function(){s.push(encodeURIComponent(this.name)+"="+encodeURIComponent(this.value));});else
for(var j in a)if(a[j]&&a[j].constructor==Array)jQuery.each(a[j],function(){s.push(encodeURIComponent(j)+"="+encodeURIComponent(this));});else
s.push(encodeURIComponent(j)+"="+encodeURIComponent(jQuery.isFunction(a[j])?a[j]():a[j]));return s.join("&").replace(/%20/g,"+");}});jQuery.fn.extend({show:function(speed,callback){return speed?this.animate({height:"show",width:"show",opacity:"show"},speed,callback):this.filter(":hidden").each(function(){this.style.display=this.oldblock||"";if(jQuery.css(this,"display")=="none"){var elem=jQuery("<"+this.tagName+" />").appendTo("body");this.style.display=elem.css("display");if(this.style.display=="none")this.style.display="block";elem.remove();}}).end();},hide:function(speed,callback){return speed?this.animate({height:"hide",width:"hide",opacity:"hide"},speed,callback):this.filter(":visible").each(function(){this.oldblock=this.oldblock||jQuery.css(this,"display");this.style.display="none";}).end();},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle.apply(this,arguments):fn?this.animate({height:"toggle",width:"toggle",opacity:"toggle"},fn,fn2):this.each(function(){jQuery(this)[jQuery(this).is(":hidden")?"show":"hide"]();});},slideDown:function(speed,callback){return this.animate({height:"show"},speed,callback);},slideUp:function(speed,callback){return this.animate({height:"hide"},speed,callback);},slideToggle:function(speed,callback){return this.animate({height:"toggle"},speed,callback);},fadeIn:function(speed,callback){return this.animate({opacity:"show"},speed,callback);},fadeOut:function(speed,callback){return this.animate({opacity:"hide"},speed,callback);},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);return this[optall.queue===false?"each":"queue"](function(){if(this.nodeType!=1)return false;var opt=jQuery.extend({},optall),p,hidden=jQuery(this).is(":hidden"),self=this;for(p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden)return opt.complete.call(this);if(p=="height"||p=="width"){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow;}}if(opt.overflow!=null)this.style.overflow="hidden";opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(/toggle|show|hide/.test(val))e[val=="toggle"?hidden?"show":"hide":val](prop);else{var parts=val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit;}if(parts[1])end=((parts[1]=="-="?-1:1)*end)+start;e.custom(start,end,unit);}else
e.custom(start,val,"");}});return true;});},queue:function(type,fn){if(jQuery.isFunction(type)||(type&&type.constructor==Array)){fn=type;type="fx";}if(!type||(typeof type=="string"&&!fn))return queue(this[0],type);return this.each(function(){if(fn.constructor==Array)queue(this,type,fn);else{queue(this,type).push(fn);if(queue(this,type).length==1)fn.call(this);}});},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue)this.queue([]);this.each(function(){for(var i=timers.length-1;i>=0;i--)if(timers[i].elem==this){if(gotoEnd)timers[i](true);timers.splice(i,1);}});if(!gotoEnd)this.dequeue();return this;}});var queue=function(elem,type,array){if(elem){type=type||"fx";var q=jQuery.data(elem,type+"queue");if(!q||array)q=jQuery.data(elem,type+"queue",jQuery.makeArray(array));}return q;};jQuery.fn.dequeue=function(type){type=type||"fx";return this.each(function(){var q=queue(this,type);q.shift();if(q.length)q[0].call(this);});};jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&speed.constructor==Object?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&easing.constructor!=Function&&easing};opt.duration=(opt.duration&&opt.duration.constructor==Number?opt.duration:jQuery.fx.speeds[opt.duration])||jQuery.fx.speeds.def;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false)jQuery(this).dequeue();if(jQuery.isFunction(opt.old))opt.old.call(this);};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],timerId:null,fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig)options.orig={};}});jQuery.fx.prototype={update:function(){if(this.options.step)this.options.step.call(this.elem,this.now,this);(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if(this.prop=="height"||this.prop=="width")this.elem.style.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&this.elem.style[this.prop]==null)return this.elem[this.prop];var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=now();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;this.update();var self=this;function t(gotoEnd){return self.step(gotoEnd);}t.elem=this.elem;jQuery.timers.push(t);if(jQuery.timerId==null){jQuery.timerId=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++)if(!timers[i]())timers.splice(i--,1);if(!timers.length){clearInterval(jQuery.timerId);jQuery.timerId=null;}},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(0,this.cur());if(this.prop=="width"||this.prop=="height")this.elem.style[this.prop]="1px";jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var t=now();if(gotoEnd||t>this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var done=true;for(var i in this.options.curAnim)if(this.options.curAnim[i]!==true)done=false;if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(jQuery.css(this.elem,"display")=="none")this.elem.style.display="block";}if(this.options.hide)this.elem.style.display="none";if(this.options.hide||this.options.show)for(var p in this.options.curAnim)jQuery.attr(this.elem.style,p,this.options.orig[p]);}if(done)this.options.complete.call(this.elem);return false;}else{var n=t-this.startTime;this.state=n/this.options.duration;this.pos=jQuery.easing[this.options.easing||(jQuery.easing.swing?"swing":"linear")](this.state,n,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update();}return true;}};jQuery.extend(jQuery.fx,{speeds:{slow:600,fast:200,def:400},step:{scrollLeft:function(fx){fx.elem.scrollLeft=fx.now;},scrollTop:function(fx){fx.elem.scrollTop=fx.now;},opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){fx.elem.style[fx.prop]=fx.now+fx.unit;}}});jQuery.fn.offset=function(){var left=0,top=0,elem=this[0],results;if(elem)with(jQuery.browser){var parent=elem.parentNode,offsetChild=elem,offsetParent=elem.offsetParent,doc=elem.ownerDocument,safari2=safari&&parseInt(version)<522&&!/adobeair/i.test(userAgent),css=jQuery.curCSS,fixed=css(elem,"position")=="fixed";if(elem.getBoundingClientRect){var box=elem.getBoundingClientRect();add(box.left+Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),box.top+Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));add(-doc.documentElement.clientLeft,-doc.documentElement.clientTop);}else{add(elem.offsetLeft,elem.offsetTop);while(offsetParent){add(offsetParent.offsetLeft,offsetParent.offsetTop);if(mozilla&&!/^t(able|d|h)$/i.test(offsetParent.tagName)||safari&&!safari2)border(offsetParent);if(!fixed&&css(offsetParent,"position")=="fixed")fixed=true;offsetChild=/^body$/i.test(offsetParent.tagName)?offsetChild:offsetParent;offsetParent=offsetParent.offsetParent;}while(parent&&parent.tagName&&!/^body|html$/i.test(parent.tagName)){if(!/^inline|table.*$/i.test(css(parent,"display")))add(-parent.scrollLeft,-parent.scrollTop);if(mozilla&&css(parent,"overflow")!="visible")border(parent);parent=parent.parentNode;}if((safari2&&(fixed||css(offsetChild,"position")=="absolute"))||(mozilla&&css(offsetChild,"position")!="absolute"))add(-doc.body.offsetLeft,-doc.body.offsetTop);if(fixed)add(Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));}results={top:top,left:left};}function border(elem){add(jQuery.curCSS(elem,"borderLeftWidth",true),jQuery.curCSS(elem,"borderTopWidth",true));}function add(l,t){left+=parseInt(l,10)||0;top+=parseInt(t,10)||0;}return results;};jQuery.fn.extend({position:function(){var left=0,top=0,results;if(this[0]){var offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].tagName)?{top:0,left:0}:offsetParent.offset();offset.top-=num(this,'marginTop');offset.left-=num(this,'marginLeft');parentOffset.top+=num(offsetParent,'borderTopWidth');parentOffset.left+=num(offsetParent,'borderLeftWidth');results={top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};}return results;},offsetParent:function(){var offsetParent=this[0].offsetParent;while(offsetParent&&(!/^body|html$/i.test(offsetParent.tagName)&&jQuery.css(offsetParent,'position')=='static'))offsetParent=offsetParent.offsetParent;return jQuery(offsetParent);}});jQuery.each(['Left','Top'],function(i,name){var method='scroll'+name;jQuery.fn[method]=function(val){if(!this[0])return;return val!=undefined?this.each(function(){this==window||this==document?window.scrollTo(!i?val:jQuery(window).scrollLeft(),i?val:jQuery(window).scrollTop()):this[method]=val;}):this[0]==window||this[0]==document?self[i?'pageYOffset':'pageXOffset']||jQuery.boxModel&&document.documentElement[method]||document.body[method]:this[0][method];};});jQuery.each(["Height","Width"],function(i,name){var tl=i?"Left":"Top",br=i?"Right":"Bottom";jQuery.fn["inner"+name]=function(){return this[name.toLowerCase()]()+num(this,"padding"+tl)+num(this,"padding"+br);};jQuery.fn["outer"+name]=function(margin){return this["inner"+name]()+num(this,"border"+tl+"Width")+num(this,"border"+br+"Width")+(margin?num(this,"margin"+tl)+num(this,"margin"+br):0);};});})();;// $Id: drupal.js,v 1.41.2.4 2009/07/21 08:59:10 goba Exp $

var Drupal = Drupal || { 'settings': {}, 'behaviors': {}, 'themes': {}, 'locale': {} };

/**
 * Set the variable that indicates if JavaScript behaviors should be applied
 */
Drupal.jsEnabled = true;

/**
 * Attach all registered behaviors to a page element.
 *
 * Behaviors are event-triggered actions that attach to page elements, enhancing
 * default non-Javascript UIs. Behaviors are registered in the Drupal.behaviors
 * object as follows:
 * @code
 *    Drupal.behaviors.behaviorName = function () {
 *      ...
 *    };
 * @endcode
 *
 * Drupal.attachBehaviors is added below to the jQuery ready event and so
 * runs on initial page load. Developers implementing AHAH/AJAX in their
 * solutions should also call this function after new page content has been
 * loaded, feeding in an element to be processed, in order to attach all
 * behaviors to the new content.
 *
 * Behaviors should use a class in the form behaviorName-processed to ensure
 * the behavior is attached only once to a given element. (Doing so enables
 * the reprocessing of given elements, which may be needed on occasion despite
 * the ability to limit behavior attachment to a particular element.)
 *
 * @param context
 *   An element to attach behaviors to. If none is given, the document element
 *   is used.
 */
Drupal.attachBehaviors = function(context) {
  context = context || document;
  // Execute all of them.
  jQuery.each(Drupal.behaviors, function() {
    this(context);
  });
};

/**
 * Encode special characters in a plain-text string for display as HTML.
 */
Drupal.checkPlain = function(str) {
  str = String(str);
  var replace = { '&': '&amp;', '"': '&quot;', '<': '&lt;', '>': '&gt;' };
  for (var character in replace) {
    var regex = new RegExp(character, 'g');
    str = str.replace(regex, replace[character]);
  }
  return str;
};

/**
 * Translate strings to the page language or a given language.
 *
 * See the documentation of the server-side t() function for further details.
 *
 * @param str
 *   A string containing the English string to translate.
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 * @return
 *   The translated string.
 */
Drupal.t = function(str, args) {
  // Fetch the localized version of the string.
  if (Drupal.locale.strings && Drupal.locale.strings[str]) {
    str = Drupal.locale.strings[str];
  }

  if (args) {
    // Transform arguments before inserting them
    for (var key in args) {
      switch (key.charAt(0)) {
        // Escaped only
        case '@':
          args[key] = Drupal.checkPlain(args[key]);
        break;
        // Pass-through
        case '!':
          break;
        // Escaped and placeholder
        case '%':
        default:
          args[key] = Drupal.theme('placeholder', args[key]);
          break;
      }
      str = str.replace(key, args[key]);
    }
  }
  return str;
};

/**
 * Format a string containing a count of items.
 *
 * This function ensures that the string is pluralized correctly. Since Drupal.t() is
 * called by this function, make sure not to pass already-localized strings to it.
 *
 * See the documentation of the server-side format_plural() function for further details.
 *
 * @param count
 *   The item count to display.
 * @param singular
 *   The string for the singular case. Please make sure it is clear this is
 *   singular, to ease translation (e.g. use "1 new comment" instead of "1 new").
 *   Do not use @count in the singular string.
 * @param plural
 *   The string for the plural case. Please make sure it is clear this is plural,
 *   to ease translation. Use @count in place of the item count, as in "@count
 *   new comments".
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 *   Note that you do not need to include @count in this array.
 *   This replacement is done automatically for the plural case.
 * @return
 *   A translated string.
 */
Drupal.formatPlural = function(count, singular, plural, args) {
  var args = args || {};
  args['@count'] = count;
  // Determine the index of the plural form.
  var index = Drupal.locale.pluralFormula ? Drupal.locale.pluralFormula(args['@count']) : ((args['@count'] == 1) ? 0 : 1);

  if (index == 0) {
    return Drupal.t(singular, args);
  }
  else if (index == 1) {
    return Drupal.t(plural, args);
  }
  else {
    args['@count['+ index +']'] = args['@count'];
    delete args['@count'];
    return Drupal.t(plural.replace('@count', '@count['+ index +']'));
  }
};

/**
 * Generate the themed representation of a Drupal object.
 *
 * All requests for themed output must go through this function. It examines
 * the request and routes it to the appropriate theme function. If the current
 * theme does not provide an override function, the generic theme function is
 * called.
 *
 * For example, to retrieve the HTML that is output by theme_placeholder(text),
 * call Drupal.theme('placeholder', text).
 *
 * @param func
 *   The name of the theme function to call.
 * @param ...
 *   Additional arguments to pass along to the theme function.
 * @return
 *   Any data the theme function returns. This could be a plain HTML string,
 *   but also a complex object.
 */
Drupal.theme = function(func) {
  for (var i = 1, args = []; i < arguments.length; i++) {
    args.push(arguments[i]);
  }

  return (Drupal.theme[func] || Drupal.theme.prototype[func]).apply(this, args);
};

/**
 * Parse a JSON response.
 *
 * The result is either the JSON object, or an object with 'status' 0 and 'data' an error message.
 */
Drupal.parseJson = function (data) {
  if ((data.substring(0, 1) != '{') && (data.substring(0, 1) != '[')) {
    return { status: 0, data: data.length ? data : Drupal.t('Unspecified error') };
  }
  return eval('(' + data + ');');
};

/**
 * Freeze the current body height (as minimum height). Used to prevent
 * unnecessary upwards scrolling when doing DOM manipulations.
 */
Drupal.freezeHeight = function () {
  Drupal.unfreezeHeight();
  var div = document.createElement('div');
  $(div).css({
    position: 'absolute',
    top: '0px',
    left: '0px',
    width: '1px',
    height: $('body').css('height')
  }).attr('id', 'freeze-height');
  $('body').append(div);
};

/**
 * Unfreeze the body height
 */
Drupal.unfreezeHeight = function () {
  $('#freeze-height').remove();
};

/**
 * Wrapper around encodeURIComponent() which avoids Apache quirks (equivalent of
 * drupal_urlencode() in PHP). This function should only be used on paths, not
 * on query string arguments.
 */
Drupal.encodeURIComponent = function (item, uri) {
  uri = uri || location.href;
  item = encodeURIComponent(item).replace(/%2F/g, '/');
  return (uri.indexOf('?q=') != -1) ? item : item.replace(/%26/g, '%2526').replace(/%23/g, '%2523').replace(/\/\//g, '/%252F');
};

/**
 * Get the text selection in a textarea.
 */
Drupal.getSelection = function (element) {
  if (typeof(element.selectionStart) != 'number' && document.selection) {
    // The current selection
    var range1 = document.selection.createRange();
    var range2 = range1.duplicate();
    // Select all text.
    range2.moveToElementText(element);
    // Now move 'dummy' end point to end point of original range.
    range2.setEndPoint('EndToEnd', range1);
    // Now we can calculate start and end points.
    var start = range2.text.length - range1.text.length;
    var end = start + range1.text.length;
    return { 'start': start, 'end': end };
  }
  return { 'start': element.selectionStart, 'end': element.selectionEnd };
};

/**
 * Build an error message from ahah response.
 */
Drupal.ahahError = function(xmlhttp, uri) {
  if (xmlhttp.status == 200) {
    if (jQuery.trim(xmlhttp.responseText)) {
      var message = Drupal.t("An error occurred. \n@uri\n@text", {'@uri': uri, '@text': xmlhttp.responseText });
    }
    else {
      var message = Drupal.t("An error occurred. \n@uri\n(no information available).", {'@uri': uri });
    }
  }
  else {
    var message = Drupal.t("An HTTP error @status occurred. \n@uri", {'@uri': uri, '@status': xmlhttp.status });
  }
  return message.replace(/\n/g, '<br />');
}

// Global Killswitch on the <html> element
$(document.documentElement).addClass('js');
// Attach all behaviors.
$(document).ready(function() {
  Drupal.attachBehaviors(this);
});

/**
 * The default themes.
 */
Drupal.theme.prototype = {

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;/*  ==================================================
    ========= American Civil Liberties Union =========
    ================== www.aclu.org ==================

     Description:
     Global Javascript, applied to all templates

     Author:
     Chuck Harmston, Threespot Media
     http://www.threespot.com

     Copyright:
     Subject to copyright described at aclu.org

    ================================================== */

/* For serialScroll easing */
jQuery.easing.easeOutQuart = function (x, t, b, c, d) {
  return -c * ((t=t/d-1)*t*t*t - 1) + b;
};

/* For preloading */
jQuery.preloadImages = function(){
  for (var i = 0; i < arguments.length; i++) {
    jQuery("<img>").attr("src", arguments[i]);
  }
  return true;
}

Drupal.behaviors.ACLUGeneral = function () {

    // Learn about difference link
    $('#acluf').click(function() {
      window.open('/acluf','AddrBook', 'width=540,height=510,location=no,directories=no,status=no,menuBar=no,scrollBars=yes,resizable=no,left=50,top=20');
      return false;
    });

    /* Create the share menu */
    $('#article_tools .share').show();

    /* Article tools "share" button */
    $("#article_tools a.toggle").bind("click", function(event) {
      event.preventDefault();
      if ($('li.share ul').css('visibility') == 'hidden') {
        $('li.share ul').css('visibility','visible');
      }
      else{
        $('li.share ul').css('visibility','hidden');
      }
    });

    /* Hide submit button in affiliate search block */
    $('#find input.form-submit').hide();
    
    /* Add right-angled-quote after key issues list items */
    $('#keyissues ul li a').append('&nbsp;&raquo;');

    /* Auto-clear form fields */
    $("#edit-search-theme-form-1, #findmultimedia #edit-keyword, #browsecases #edit-keyword, #edit-search-1, #rep_resolverzip5, #rep_resolverzip4").focus(function() {
      if (this.value == this.defaultValue) {
        $(this).attr("value", "");
      }
    }).blur(function() {
      if (!this.value.length) {
        $(this).attr("value", this.defaultValue);
      }
    });
    
    /* Add class on mouseover... */
    $(".meta-type a").bind("mouseover", function(event) {
      $(this).parent('.meta-type').parent().addClass('highlight');
    }).bind("mouseout", function(event) {
      $(this).parent('.meta-type').parent().removeClass('highlight');
    });
    /* Add class on mouseover for search page submit form... */
    $("#search #edit-submit, #edit-long-submit").bind("mouseover", function(event) {
      $(this).addClass('highlight');
    }).bind("mouseout", function(event) {
      $(this).removeClass('highlight');
    });

    $(window).load(function(){
      if ($.browser.msie == false || ($.browser.msie == true && $.browser.version >= 7)) {
        $(".list li, .abridged, #search .set .story, #affiliate #latest .story, #video #updates .story").bind("mouseover", function(event) {
          $(this).addClass('active');
        }).bind("mouseout", function(event) {
          $(this).removeClass('active');
        });
      }
    });

    /* Some CSS manipulation */
    $("#article-related .story:first").css('border-top','none');

	/* Add some even/odd classes */
    $("#block-aclu_blocks-multimedia_main #slideshow li:even").addClass("even");
	$("#block-aclu_blocks-multimedia_main #slideshow li:odd").addClass("odd");
	
	// Email javascript links
    $("span.email").each(function() {
      var email = $(this).attr('email1') + '@' + $(this).attr('email2');
      $(this).html('<a href="mailto:' + email + '">' + email + '</a>');
	});
	
	// Remove default values from legislature form on submit.
	$('#votecenter').submit(function() {
      $('#rep_resolverzip5, #rep_resolverzip4').each(function() {
        if (this.value == this.defaultValue) {
          $(this).attr("value", "");
        }
      });
	});
}
;/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.02
 */
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){var D=C.className;C.className=D+(D&&" ")+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}),hasClass:function(C,B){return RegExp("(?:^|\\s)"+B+"(?=\\s|$)").test(C.className)},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(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);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(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),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(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}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(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.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,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(C,J){var B=n.getStyle(v(C,J)).extend(J);var D=c(C,B),E,H,G,F,I;for(E=C.firstChild;E;E=G){H=E.nodeType;G=E.nextSibling;if(H==3){if(F){F.appendData(E.data);C.removeChild(E)}else{F=E}if(G){continue}}if(F){C.replaceChild(o(D,n.whiteSpace(F.data,B,F),B,J,E,C),F);F=null}if(H==1&&E.firstChild){if(n.hasClass(E,"cufon")){z[J.engine](D,null,B,J,E,C)}else{arguments.callee(E,J)}}}}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.Ext&&Ext.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textShadow:"none"};var p={words:/[^\S\u00a0]+/,characters:"",none:/^/};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.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});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(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(ah,H,Z,D,L,ai){var n=(H===null);if(n){H=L.alt}var J=ah.viewBox;var p=Z.getSize("fontSize",ah.baseSize);var X=Z.get("letterSpacing");X=(X=="normal")?0:p.convertFrom(parseInt(X,10));var K=0,Y=0,W=0,F=0;var I=D.textShadow,U=[];if(I){for(var ag=I.length;ag--;){var O=I[ag];var T=p.convertFrom(parseFloat(O.offX));var R=p.convertFrom(parseFloat(O.offY));U[ag]=[T,R];if(R<K){K=R}if(T>Y){Y=T}if(R>W){W=R}if(T<F){F=T}}}var al=Cufon.CSS.textTransform(H,Z).split(""),B;var o=ah.glyphs,E,r,ac;var h=0,v,N=[];for(var ag=0,ae=0,ab=al.length;ag<ab;++ag){E=o[B=al[ag]]||ah.missingGlyph;if(!E){continue}if(r){h-=ac=r[B]||0;N[ae-1]-=ac}h+=v=N[ae++]=~~(E.w||ah.w)+X;r=E.k}if(v===undefined){return null}Y+=J.width-v;F+=J.minX;var C,q;if(n){C=L;q=L.firstChild}else{C=document.createElement("span");C.className="cufon cufon-canvas";C.alt=H;q=document.createElement("canvas");C.appendChild(q);if(D.printable){var ad=document.createElement("span");ad.className="cufon-alt";ad.appendChild(document.createTextNode(H));C.appendChild(ad)}}var am=C.style;var Q=q.style;var m=p.convert(J.height);var ak=Math.ceil(m);var V=ak/m;var P=V*Cufon.CSS.fontStretch(Z.get("fontStretch"));var S=h*P;var aa=Math.ceil(p.convert(S+Y-F));var t=Math.ceil(p.convert(J.height-K+W));q.width=aa;q.height=t;Q.width=aa+"px";Q.height=t+"px";K+=J.minY;Q.top=Math.round(p.convert(K-ah.ascent))+"px";Q.left=Math.round(p.convert(F))+"px";var A=Math.ceil(p.convert(S))+"px";if(a){am.width=A;am.height=p.convert(ah.height)+"px"}else{am.paddingLeft=A;am.paddingBottom=(p.convert(ah.height)-1)+"px"}var aj=q.getContext("2d"),M=m/J.height;aj.scale(M,M*V);aj.translate(-F,-K);aj.lineWidth=ah.face["underline-thickness"];aj.save();function s(i,g){aj.strokeStyle=g;aj.beginPath();aj.moveTo(0,i);aj.lineTo(h,i);aj.stroke()}var u=D.enableTextDecoration?Cufon.CSS.textDecoration(ai,Z):{};if(u.underline){s(-ah.face["underline-position"],u.underline)}if(u.overline){s(ah.ascent,u.overline)}function af(){aj.scale(P,1);for(var x=0,k=0,g=al.length;x<g;++x){var y=o[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(N[k++],0)}aj.restore()}if(I){for(var ag=I.length;ag--;){var O=I[ag];aj.save();aj.fillStyle=O.color;aj.translate.apply(aj,U[ag]);af()}}var z=D.textGradient;if(z){var G=z.stops,w=aj.createLinearGradient(0,J.minY,0,J.maxY);for(var ag=0,ab=G.length;ag<ab;++ag){w.addColorStop.apply(w,G[ag])}aj.fillStyle=w}else{aj.fillStyle=Z.get("color")}af();if(u["line-through"]){s(-ah.descent,u["line-through"])}return C}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var g=(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:'+(g?"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(h,i){return a(h,/(?:em|ex|%)$|^[a-z-]+$/i.test(i)?"1em":i)}function a(k,l){if(/px$/i.test(l)){return parseFloat(l)}var j=k.style.left,i=k.runtimeStyle.left;k.runtimeStyle.left=k.currentStyle.left;k.style.left=l.replace("%","em");var h=k.style.pixelLeft;k.style.left=j;k.runtimeStyle.left=i;return h}var f={};function d(o){var p=o.id;if(!f[p]){var m=o.stops,n=document.createElement("cvml:fill"),h=[];n.type="gradient";n.angle=180;n.focus="0";n.method="sigma";n.color=m[0][1];for(var l=1,i=m.length-1;l<i;++l){h.push(m[l][0]*100+"% "+m[l][1])}n.colors=h.join(",");n.color2=m[i][1];f[p]=n}return f[p]}return function(aj,K,ad,G,O,ak,ab){var o=(K===null);if(o){K=O.alt}var M=aj.viewBox;var q=ad.computedFontSize||(ad.computedFontSize=new Cufon.CSS.Size(c(ak,ad.get("fontSize"))+"px",aj.baseSize));var aa=ad.computedLSpacing;if(aa==undefined){aa=ad.get("letterSpacing");ad.computedLSpacing=aa=(aa=="normal")?0:~~q.convertFrom(a(ak,aa))}var C,r;if(o){C=O;r=O.firstChild}else{C=document.createElement("span");C.className="cufon cufon-vml";C.alt=K;r=document.createElement("span");r.className="cufon-vml-canvas";C.appendChild(r);if(G.printable){var ag=document.createElement("span");ag.className="cufon-alt";ag.appendChild(document.createTextNode(K));C.appendChild(ag)}if(!ab){C.appendChild(document.createElement("cvml:shape"))}}var ap=C.style;var V=r.style;var m=q.convert(M.height),am=Math.ceil(m);var Z=am/m;var T=Z*Cufon.CSS.fontStretch(ad.get("fontStretch"));var Y=M.minX,X=M.minY;V.height=am;V.top=Math.round(q.convert(X-aj.ascent));V.left=Math.round(q.convert(Y));ap.height=q.convert(aj.height)+"px";var v=G.enableTextDecoration?Cufon.CSS.textDecoration(ak,ad):{};var J=ad.get("color");var ao=Cufon.CSS.textTransform(K,ad).split(""),B;var p=aj.glyphs,H,s,af;var h=0,P=[],W=0,x;var z,L=G.textShadow;for(var ai=0,ah=0,ae=ao.length;ai<ae;++ai){H=p[B=ao[ai]]||aj.missingGlyph;if(!H){continue}if(s){h-=af=s[B]||0;P[ah-1]-=af}h+=x=P[ah++]=~~(H.w||aj.w)+aa;s=H.k}if(x===undefined){return null}var A=-Y+h+(M.width-x);var an=q.convert(A*T),ac=Math.round(an);var S=A+","+M.height,n;var N="r"+S+"ns";var y=G.textGradient&&d(G.textGradient);for(ai=0,ah=0;ai<ae;++ai){H=p[ao[ai]]||aj.missingGlyph;if(!H){continue}if(o){z=r.childNodes[ah];while(z.firstChild){z.removeChild(z.firstChild)}}else{z=document.createElement("cvml:shape");r.appendChild(z)}z.stroked="f";z.coordsize=S;z.coordorigin=n=(Y-W)+","+X;z.path=(H.d?"m"+H.d+"xe":"")+"m"+n+N;z.fillcolor=J;if(y){z.appendChild(y.cloneNode(false))}var al=z.style;al.width=ac;al.height=am;if(L){var u=L[0],t=L[1];var F=Cufon.CSS.color(u.color),D;var R=document.createElement("cvml:shadow");R.on="t";R.color=F.color;R.offset=u.offX+","+u.offY;if(t){D=Cufon.CSS.color(t.color);R.type="double";R.color2=D.color;R.offset2=t.offX+","+t.offY}R.opacity=F.opacity||(D&&D.opacity)||1;z.appendChild(R)}W+=P[ah++]}var Q=z.nextSibling,w,E;if(G.forceHitArea){if(!Q){Q=document.createElement("cvml:rect");Q.stroked="f";Q.className="cufon-vml-cover";w=document.createElement("cvml:fill");w.opacity=0;Q.appendChild(w);r.appendChild(Q)}E=Q.style;E.width=ac;E.height=am}else{if(Q){r.removeChild(Q)}}ap.width=Math.max(Math.ceil(q.convert(h*T)),0);if(g){var U=ad.computedYAdjust;if(U===undefined){var I=ad.get("lineHeight");if(I=="normal"){I="1em"}else{if(!isNaN(I)){I+="em"}}ad.computedYAdjust=U=0.5*(a(ak,I)-parseFloat(ap.height))}if(U){ap.marginTop=Math.ceil(U)+"px";ap.marginBottom=U+"px"}}return C}})());;Drupal.behaviors.ACLUcufon = function () {

    Cufon.replace('#topic.node-type-campaign #block-aclu_blocks-related_issues h3', { fontFamily: 'Caecilia Com 55 Roman' });
	Cufon.replace('#topic.node-type-campaign #block-aclu_blocks-related_issues h3 span', { fontFamily: 'Caecilia Com 85 Heavy' });
	Cufon.replace('#topic #masthead h2, #issue #masthead h2', { fontFamily: 'Caecilia Com 85 Heavy' });
	Cufon.replace('#topic #masthead .subtitle, #issue #masthead .subtitle', { fontFamily: 'Caecilia Com 85 Heavy' });
	Cufon.replace('span.child', { fontFamily: 'Caecilia Com 85 Heavy' });

};Cufon.registerFont({"w":556,"face":{"font-family":"Caecilia Com 55 Roman","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 6 5 2 3 3 6 2 2 4","ascent":"769","descent":"-231","x-height":"12","bbox":"-56 -840 1072 270","underline-thickness":"50","underline-position":"-50","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":278,"k":{"T":74,"V":74,"W":55,"Y":74,"y":30,"b":12,"w":30,"A":37,"v":30,"g":12}},"!":{"d":"115,-769r92,0r-10,533r-72,0xm95,-50v0,-17,6,-32,18,-44v12,-12,27,-18,44,-18v17,0,32,6,44,18v12,12,18,27,18,44v0,17,-6,32,-18,44v-12,12,-27,18,-44,18v-17,0,-32,-6,-44,-18v-12,-12,-18,-27,-18,-44","w":314},"\"":{"d":"272,-649v-1,-11,-2,-23,-3,-35v-1,-12,-1,-25,-1,-41v0,-15,4,-27,10,-37v6,-10,18,-15,36,-15v18,0,30,5,36,15v6,10,10,22,10,37v0,16,0,29,-1,41v-1,12,-2,24,-3,35r-12,122v-1,12,-3,22,-6,31v-3,9,-11,13,-24,13v-13,0,-21,-4,-24,-13v-3,-9,-5,-19,-6,-31xm88,-649v-1,-11,-2,-23,-3,-35v-1,-12,-1,-25,-1,-41v0,-15,4,-27,10,-37v6,-10,18,-15,36,-15v18,0,30,5,36,15v6,10,10,22,10,37v0,16,0,29,-1,41v-1,12,-2,24,-3,35r-12,122v-1,12,-3,22,-6,31v-3,9,-11,13,-24,13v-13,0,-21,-4,-24,-13v-3,-9,-5,-19,-6,-31","w":444},"#":{"d":"206,-279r113,0r31,-142r-113,0xm174,-421r-110,0r0,-57r122,0r49,-222r63,0r-49,222r113,0r49,-222r63,0r-49,222r111,0r0,57r-123,0r-31,142r110,0r0,57r-122,0r-49,222r-63,0r49,-222r-113,0r-49,222r-63,0r49,-222r-111,0r0,-57r123,0"},"$":{"d":"251,-840r63,0r0,128v11,0,24,0,40,2v16,2,32,4,49,7v17,3,33,5,48,9v15,4,28,8,38,12r0,141r-74,0r0,-85v-16,-5,-33,-10,-51,-13v-18,-3,-35,-5,-52,-5r-2,249v28,7,56,15,82,23v26,8,49,18,69,32v20,14,37,31,49,53v12,22,18,51,18,86v0,33,-6,63,-18,88v-12,25,-28,47,-48,64v-20,17,-44,31,-71,41v-27,10,-55,17,-85,20r0,128r-63,0r0,-128v-10,0,-25,0,-46,-2v-21,-2,-43,-5,-65,-8v-22,-3,-43,-6,-62,-10v-19,-4,-33,-8,-41,-13r0,-155r82,0r0,97v20,7,40,13,60,17v20,4,44,5,72,6r2,-265v-35,-7,-66,-15,-93,-25v-27,-10,-50,-23,-68,-38v-18,-15,-33,-33,-42,-54v-9,-21,-14,-45,-14,-74v0,-31,6,-58,18,-83v12,-25,28,-46,49,-63v21,-17,44,-31,71,-40v27,-9,55,-14,85,-14r0,-128xm249,-644v-7,0,-18,1,-33,4v-15,3,-31,9,-46,18v-15,9,-28,22,-39,38v-11,16,-17,37,-17,64v0,21,5,38,16,52v11,14,23,25,38,34v15,9,29,16,44,20v15,4,27,7,35,8xm306,-59v12,-1,26,-3,42,-8v16,-5,30,-12,44,-22v14,-10,26,-23,36,-40v10,-17,14,-37,14,-62v0,-21,-4,-37,-12,-51v-8,-14,-18,-25,-31,-34v-13,-9,-27,-17,-43,-22v-16,-5,-32,-9,-48,-12"},"%":{"d":"205,-382v-24,0,-46,-4,-66,-12v-20,-8,-37,-20,-52,-34v-15,-14,-26,-32,-34,-52v-8,-20,-12,-43,-12,-67v0,-24,4,-47,12,-67v8,-20,19,-38,34,-52v15,-14,32,-26,52,-34v20,-8,42,-12,66,-12v23,0,44,4,63,12v19,8,36,20,50,34v14,14,25,32,33,52v8,20,12,43,12,67v0,24,-4,47,-12,67v-8,20,-19,38,-33,52v-14,14,-31,26,-50,34v-19,8,-40,12,-63,12xm202,-445v15,0,27,-3,38,-9v11,-6,21,-13,28,-22v7,-9,12,-20,16,-32v4,-12,5,-26,5,-39v0,-13,-1,-27,-5,-39v-4,-12,-9,-23,-16,-32v-7,-9,-17,-16,-28,-22v-11,-6,-23,-9,-38,-9v-15,0,-27,3,-38,9v-11,6,-21,13,-28,22v-7,9,-12,20,-16,32v-4,12,-5,26,-5,39v0,13,1,27,5,39v4,12,9,23,16,32v7,9,17,16,28,22v11,6,23,9,38,9xm631,12v-24,0,-46,-4,-66,-12v-20,-8,-37,-20,-52,-34v-15,-14,-26,-32,-34,-52v-8,-20,-12,-43,-12,-67v0,-24,4,-47,12,-67v8,-20,19,-38,34,-52v15,-14,32,-26,52,-34v20,-8,42,-12,66,-12v23,0,44,4,63,12v19,8,36,20,50,34v14,14,25,32,33,52v8,20,12,43,12,67v0,24,-4,47,-12,67v-8,20,-19,38,-33,52v-14,14,-31,26,-50,34v-19,8,-40,12,-63,12xm628,-51v15,0,27,-3,38,-9v11,-6,21,-13,28,-22v7,-9,12,-20,16,-32v4,-12,5,-26,5,-39v0,-13,-1,-27,-5,-39v-4,-12,-9,-23,-16,-32v-7,-9,-17,-16,-28,-22v-11,-6,-23,-9,-38,-9v-15,0,-27,3,-38,9v-11,6,-21,13,-28,22v-7,9,-12,20,-16,32v-4,12,-5,26,-5,39v0,13,1,27,5,39v4,12,9,23,16,32v7,9,17,16,28,22v11,6,23,9,38,9xm613,-756r51,34r-450,778r-51,-34","w":833},"&":{"d":"282,-432v17,-11,32,-21,46,-31v14,-10,24,-21,34,-31v10,-10,18,-20,23,-32v5,-12,8,-26,8,-41v0,-27,-9,-47,-27,-61v-18,-14,-40,-21,-65,-21v-29,0,-52,8,-71,23v-19,15,-29,38,-29,67v0,13,3,25,8,37v5,12,12,23,20,34v8,11,17,21,26,30xm265,-346v-17,11,-31,22,-45,32v-14,10,-26,20,-36,32v-10,12,-17,25,-22,39v-5,14,-8,30,-8,48v0,21,4,40,12,57v8,17,21,32,36,44v15,12,32,21,53,28v21,7,43,10,68,10v22,0,41,-3,59,-8v18,-5,33,-11,46,-18v13,-7,25,-16,34,-24v14,-12,13,-12,22,-21xm529,-183v13,-21,25,-45,35,-72v10,-27,15,-62,15,-103r-77,0r0,-63r224,0r0,63r-79,0v0,22,-3,44,-7,65v-4,21,-9,42,-16,61v-7,19,-16,38,-24,54v-8,16,-16,30,-24,41r48,43v14,13,27,21,39,26v12,5,23,8,33,8v5,0,11,0,16,-1v8,-1,7,-1,14,-2r0,63v-5,1,-12,1,-18,2v-6,1,-13,1,-20,1v-19,0,-36,-2,-50,-6v-14,-4,-26,-9,-37,-17v-11,-8,-22,-18,-33,-28v-16,-16,-16,-15,-36,-33v-32,33,-66,57,-102,71v-36,14,-76,22,-122,22v-43,0,-80,-7,-110,-20v-30,-13,-54,-29,-73,-48v-19,-19,-33,-40,-41,-62v-8,-22,-12,-44,-12,-63v0,-27,4,-51,12,-71v8,-20,19,-38,32,-54v13,-16,30,-31,48,-44r57,-40v-19,-19,-35,-35,-47,-50v-12,-15,-21,-29,-28,-42v-7,-13,-12,-26,-15,-38v-3,-12,-4,-26,-4,-39v0,-5,1,-16,3,-33v2,-17,10,-34,21,-52v11,-18,29,-33,53,-47v24,-14,57,-21,100,-21v23,0,44,3,64,9v20,6,37,15,52,27v15,12,26,27,34,45v8,18,13,39,13,64v0,21,-4,40,-13,57v-9,17,-20,33,-34,48v-14,15,-29,28,-46,40v-17,12,-33,24,-48,34","w":778},"'":{"d":"97,-649v-1,-11,-2,-23,-3,-35v-1,-12,-1,-25,-1,-41v0,-15,3,-27,9,-37v6,-10,19,-15,37,-15v18,0,31,5,37,15v6,10,9,22,9,37v0,16,0,29,-1,41v-1,12,-2,24,-3,35r-12,122v-1,12,-3,22,-6,31v-3,9,-11,13,-24,13v-13,0,-20,-4,-23,-13v-3,-9,-6,-19,-7,-31","w":278},"(":{"d":"310,-750v-24,30,-45,66,-64,106v-19,40,-34,82,-47,126v-13,44,-23,89,-29,134v-6,45,-9,86,-9,125v0,39,4,82,11,127v7,45,17,90,30,134v13,44,28,86,46,126v18,40,39,75,62,104r-57,38v-30,-42,-56,-83,-78,-124v-22,-41,-40,-82,-55,-125v-15,-43,-27,-87,-34,-133v-7,-46,-11,-95,-11,-147v0,-51,4,-99,11,-145v7,-46,19,-90,34,-133v15,-43,33,-85,55,-126v22,-41,48,-83,78,-125","w":314},")":{"d":"4,232v24,-30,45,-66,64,-106v19,-40,34,-82,47,-126v13,-44,23,-89,29,-134v6,-45,9,-86,9,-125v0,-39,-4,-81,-11,-126v-7,-45,-17,-91,-30,-135v-13,-44,-28,-86,-46,-126v-18,-40,-39,-75,-62,-104r57,-38v30,42,56,83,78,124v22,41,40,82,55,125v15,43,27,87,34,133v7,46,11,95,11,147v0,51,-4,99,-11,145v-7,46,-19,90,-34,133v-15,43,-33,85,-55,126v-22,41,-48,83,-78,125","w":314},"*":{"d":"144,-769r63,0r-12,126r102,-69r28,51r-115,48r115,49r-28,51r-102,-67r12,125r-63,0r14,-125r-104,67r-28,-51r116,-49r-116,-48r28,-51r104,69","w":351},"+":{"d":"266,-219r-219,0r0,-68r219,0r0,-219r68,0r0,219r219,0r0,68r-219,0r0,219r-68,0r0,-219","w":600},",":{"d":"68,144r34,-41v7,-9,12,-19,16,-28v4,-9,6,-22,6,-37v0,-11,-2,-19,-5,-25v-3,-6,-9,-13,-16,-21v-8,-9,-15,-18,-19,-24v-4,-6,-6,-15,-6,-26v0,-16,5,-29,16,-39v11,-10,24,-15,41,-15v25,0,45,10,57,30v12,20,18,43,18,69v0,35,-6,65,-18,91v-12,26,-31,52,-56,75r-30,29","w":278,"k":{" ":37}},"-":{"d":"74,-311r259,0r0,74r-259,0r0,-74","w":407},".":{"d":"77,-50v0,-17,6,-32,18,-44v12,-12,27,-18,44,-18v17,0,32,6,44,18v12,12,18,27,18,44v0,17,-6,32,-18,44v-12,12,-27,18,-44,18v-17,0,-32,-6,-44,-18v-12,-12,-18,-27,-18,-44","w":278,"k":{" ":37}},"\/":{"d":"299,-777r63,24r-327,830r-63,-24","w":370},"0":{"d":"278,-644v-34,0,-61,11,-82,32v-21,21,-37,46,-48,76v-11,30,-18,63,-22,97v-4,34,-6,64,-6,89v0,25,2,55,6,89v4,34,11,67,22,97v11,30,27,55,48,76v21,21,48,32,82,32v34,0,61,-11,82,-32v21,-21,37,-46,48,-76v11,-30,18,-63,22,-97v4,-34,6,-64,6,-89v0,-25,-2,-55,-6,-89v-4,-34,-11,-67,-22,-97v-11,-30,-27,-55,-48,-76v-21,-21,-48,-32,-82,-32xm278,-712v49,0,88,11,120,34v32,23,58,52,76,86v18,34,31,72,38,113v7,41,10,80,10,117v0,41,-4,84,-12,128v-8,44,-20,86,-39,122v-19,36,-44,66,-75,89v-31,23,-71,35,-118,35v-33,0,-61,-6,-86,-16v-25,-10,-46,-24,-64,-42v-18,-18,-33,-38,-45,-62v-12,-24,-22,-48,-29,-74v-7,-26,-13,-51,-16,-78v-3,-27,-4,-53,-4,-78v0,-41,4,-84,12,-128v8,-44,20,-86,39,-122v19,-36,44,-66,75,-89v31,-23,71,-35,118,-35"},"1":{"d":"292,-700r64,0r-4,637r144,0r0,63r-366,0r0,-63r140,0r4,-554r-2,0v-2,2,-2,3,-6,7v-3,3,-7,5,-11,8r-158,102r-37,-57"},"2":{"d":"49,-504v0,-13,3,-31,10,-54v7,-23,18,-45,35,-68v17,-23,40,-43,68,-60v28,-17,65,-26,109,-26v35,0,65,5,92,15v27,10,49,23,67,41v18,18,31,38,40,62v9,24,13,50,13,78v0,39,-9,76,-27,114v-18,38,-38,73,-63,106v-25,33,-51,62,-77,88v-26,26,-47,45,-64,60r-92,81r0,2v7,-1,13,-1,19,-2v6,-1,12,-1,19,-1r310,0r0,68r-460,0r0,-58r50,-45v1,-1,6,-5,16,-14r36,-33v0,0,22,-21,48,-47v26,-26,27,-25,53,-53r49,-54v15,-18,28,-34,38,-49v9,-14,18,-27,26,-40v8,-13,14,-26,20,-39v6,-13,9,-27,12,-42v3,-15,5,-31,5,-48v0,-17,-3,-33,-8,-48v-5,-15,-13,-27,-24,-38v-11,-11,-24,-20,-40,-26v-16,-6,-34,-10,-55,-10v-29,0,-53,5,-70,15v-17,10,-31,23,-41,37v-10,14,-17,29,-21,45v-4,16,-8,30,-11,43r-82,0"},"3":{"d":"185,-392r28,0v29,0,54,-5,76,-14v22,-9,41,-20,55,-34v14,-14,25,-29,32,-46v7,-17,11,-34,11,-51v0,-32,-11,-57,-33,-77v-22,-20,-50,-30,-85,-30v-17,0,-35,3,-51,8v-16,5,-30,13,-43,23v-13,10,-23,22,-31,37v-8,15,-11,31,-11,50r-78,0v0,-21,5,-42,13,-64v8,-22,21,-42,39,-60v18,-18,41,-32,69,-44v28,-12,63,-18,103,-18v33,0,63,5,87,14v24,9,44,21,60,36v16,15,28,34,36,54v8,20,11,41,11,64v0,31,-5,58,-16,79v-11,21,-24,39,-39,52v-15,13,-31,23,-48,29v-17,6,-31,11,-43,13r0,2v25,3,49,9,70,17v21,8,40,19,55,33v15,14,27,31,36,51v9,20,13,45,13,72v0,24,-5,48,-14,73v-9,25,-24,47,-45,67v-21,20,-48,36,-82,49v-34,13,-74,19,-123,19v-46,0,-85,-4,-117,-12v-32,-8,-52,-16,-63,-25r0,-81v10,7,22,14,36,20v14,6,29,12,45,16v16,4,32,8,48,10v16,2,33,4,48,4v61,0,106,-13,136,-40v30,-27,45,-62,45,-103v0,-29,-7,-52,-21,-69v-14,-17,-30,-30,-50,-38v-20,-8,-43,-13,-66,-15v-23,-2,-45,-3,-64,-3r-29,0r0,-68"},"4":{"d":"332,-607r-2,0r-232,332v13,-2,26,-3,40,-3r192,0xm247,-63r81,0r2,-147r-316,0r0,-63r304,-427r92,0r-2,422r134,0r0,68r-134,0r-2,147r83,0r0,63r-242,0r0,-63"},"5":{"d":"460,-632r-292,0r-4,198v36,1,73,4,112,10v39,6,74,17,106,32v32,15,58,36,78,64v20,28,30,65,30,111v0,27,-4,55,-14,82v-10,27,-26,51,-47,73v-21,22,-49,40,-83,54v-34,14,-75,20,-123,20v-34,0,-65,-2,-91,-7v-26,-5,-48,-11,-66,-19r0,-74v6,3,15,6,27,10v12,4,25,7,39,10v14,3,28,6,43,8v15,2,28,4,41,4v39,0,70,-5,94,-16v24,-11,44,-24,58,-40v14,-16,23,-32,28,-50v5,-18,8,-34,8,-48v0,-26,-6,-48,-17,-66v-11,-18,-26,-32,-44,-44v-18,-12,-38,-20,-61,-26v-23,-6,-46,-11,-70,-14v-24,-3,-47,-6,-69,-6r-57,0r4,-334r370,0r0,68"},"6":{"d":"490,-632v-11,-3,-26,-6,-45,-8v-19,-2,-38,-4,-58,-4v-43,0,-81,8,-113,24v-32,16,-60,36,-81,63v-21,27,-37,58,-48,94v-11,36,-16,74,-16,115v9,-10,20,-20,31,-30v11,-10,23,-18,37,-26v14,-8,29,-14,47,-19v18,-5,38,-7,61,-7v35,0,65,5,91,16v26,11,47,27,64,46v17,19,30,42,38,68v8,26,13,54,13,84v0,21,-4,46,-11,72v-7,26,-20,51,-37,74v-17,23,-40,42,-69,58v-29,16,-66,24,-109,24v-36,0,-69,-7,-99,-21v-30,-14,-55,-34,-76,-61v-21,-27,-37,-61,-48,-101v-11,-40,-17,-86,-17,-138v0,-58,7,-112,21,-161v14,-49,34,-92,62,-128v28,-36,63,-64,106,-84v43,-20,94,-30,153,-30v15,0,33,0,54,2v21,2,39,5,56,10xm131,-277v0,25,3,50,8,76v5,26,15,49,27,71v12,22,28,40,48,54v20,14,45,20,74,20v18,0,35,-3,52,-10v17,-7,32,-17,45,-30v13,-13,24,-29,32,-49v8,-20,12,-44,12,-71v0,-18,-2,-36,-7,-53v-5,-17,-14,-33,-26,-47v-12,-14,-26,-24,-44,-33v-18,-9,-40,-13,-66,-13v-20,0,-38,3,-55,9v-17,6,-32,13,-45,21v-13,8,-24,18,-34,28v-10,10,-16,19,-21,27"},"7":{"d":"58,-700r440,0r0,57r-239,487v-18,37,-35,69,-51,96v-16,27,-28,47,-37,60r-98,0r43,-62v17,-25,35,-56,54,-94r215,-426v7,-14,16,-29,25,-44r-352,0r0,-74"},"8":{"d":"42,-165v0,-27,5,-49,14,-69v9,-20,21,-37,36,-52v15,-15,34,-29,54,-40v20,-11,42,-22,65,-32v-43,-19,-78,-43,-105,-70v-27,-27,-40,-63,-40,-108v0,-25,5,-48,14,-69v9,-21,22,-40,40,-56v18,-16,40,-28,66,-37v26,-9,57,-14,92,-14v27,0,54,3,80,9v26,6,49,16,69,29v20,13,36,30,48,51v12,21,18,45,18,74v0,23,-4,43,-11,61v-7,18,-16,33,-29,48v-13,15,-28,28,-46,40v-18,12,-38,24,-60,35r62,33v20,11,37,24,53,38v16,14,29,31,38,50v9,19,14,42,14,70v0,60,-21,106,-62,138v-41,32,-99,48,-174,48v-81,0,-140,-16,-178,-49v-38,-33,-58,-75,-58,-128xm281,-398r63,-36v45,-26,67,-62,67,-107v0,-19,-4,-36,-12,-49v-8,-13,-19,-23,-31,-31v-12,-8,-26,-13,-42,-17v-16,-4,-32,-6,-48,-6v-16,0,-32,2,-48,6v-16,4,-30,11,-42,20v-12,9,-22,20,-29,34v-7,14,-11,29,-11,48v0,15,3,28,8,39v5,11,10,22,18,31v8,9,16,16,26,23v10,7,20,12,29,17xm275,-324v-24,12,-23,12,-49,26v-17,9,-33,20,-48,32v-15,12,-27,26,-36,42v-9,16,-14,33,-14,54v0,20,4,38,11,52v7,14,18,26,31,35v13,9,30,17,48,21v18,4,38,6,60,6v29,0,54,-4,74,-12v20,-8,35,-16,47,-28v12,-12,20,-26,25,-40v5,-14,8,-28,8,-41v0,-7,-1,-15,-3,-23v-2,-8,-6,-17,-12,-26v-6,-9,-15,-20,-26,-30v-11,-10,-26,-20,-45,-30"},"9":{"d":"66,-68v11,3,26,6,45,8v19,2,38,4,58,4v43,0,81,-8,113,-24v32,-16,60,-36,81,-63v21,-27,37,-58,48,-94v11,-36,16,-74,16,-115v-9,10,-20,20,-31,30v-11,10,-23,18,-37,26v-14,8,-29,14,-47,19v-18,5,-38,7,-61,7v-35,0,-65,-5,-91,-16v-26,-11,-47,-27,-64,-46v-17,-19,-30,-42,-38,-68v-8,-26,-13,-54,-13,-84v0,-21,4,-46,11,-72v7,-26,20,-51,37,-74v17,-23,40,-42,69,-58v29,-16,66,-24,109,-24v36,0,69,7,98,21v29,14,54,34,75,61v21,27,38,61,50,101v12,40,17,86,17,138v0,58,-7,112,-21,161v-14,49,-34,92,-62,128v-28,36,-63,64,-106,84v-43,20,-94,30,-153,30v-15,0,-33,0,-54,-2v-21,-2,-39,-5,-56,-10xm425,-423v0,-25,-3,-50,-8,-76v-5,-26,-15,-49,-27,-71v-12,-22,-28,-40,-48,-54v-20,-14,-45,-20,-74,-20v-18,0,-35,3,-52,10v-17,7,-32,17,-45,30v-13,13,-24,30,-32,50v-8,20,-12,43,-12,70v0,18,2,36,7,53v5,17,14,33,26,47v12,14,26,24,44,33v18,9,40,13,66,13v20,0,38,-3,55,-9v17,-6,32,-13,45,-21v13,-8,24,-18,33,-28v9,-10,17,-19,22,-27"},":":{"d":"77,-454v0,-17,6,-32,18,-44v12,-12,27,-18,44,-18v17,0,32,6,44,18v12,12,18,27,18,44v0,17,-6,32,-18,44v-12,12,-27,18,-44,18v-17,0,-32,-6,-44,-18v-12,-12,-18,-27,-18,-44xm77,-50v0,-17,6,-32,18,-44v12,-12,27,-18,44,-18v17,0,32,6,44,18v12,12,18,27,18,44v0,17,-6,32,-18,44v-12,12,-27,18,-44,18v-17,0,-32,-6,-44,-18v-12,-12,-18,-27,-18,-44","w":278},";":{"d":"68,144r34,-41v7,-9,12,-19,16,-28v4,-9,6,-22,6,-37v0,-11,-2,-19,-5,-25v-3,-6,-9,-13,-16,-21v-8,-9,-15,-18,-19,-24v-4,-6,-6,-15,-6,-26v0,-16,5,-29,16,-39v11,-10,24,-15,41,-15v25,0,45,10,57,30v12,20,18,43,18,69v0,35,-6,65,-18,91v-12,26,-31,52,-56,75r-30,29xm77,-454v0,-17,6,-32,18,-44v12,-12,27,-18,44,-18v17,0,32,6,44,18v12,12,18,27,18,44v0,17,-6,32,-18,44v-12,12,-27,18,-44,18v-17,0,-32,-6,-44,-18v-12,-12,-18,-27,-18,-44","w":278},"<":{"d":"47,-285r506,-229r0,68r-424,193r424,193r0,68r-506,-230r0,-63","w":600},"=":{"d":"47,-387r506,0r0,68r-506,0r0,-68xm47,-187r506,0r0,68r-506,0r0,-68","w":600},">":{"d":"553,-221r-506,229r0,-68r424,-193r-424,-193r0,-68r506,230r0,63","w":600},"?":{"d":"95,-757v25,-9,50,-15,73,-17v23,-2,39,-3,48,-3v43,0,78,7,105,19v27,12,49,27,65,45v16,18,26,37,32,58v6,21,8,39,8,56v0,22,-3,42,-10,60v-7,18,-15,35,-26,49v-11,14,-23,26,-36,38v-13,12,-25,22,-38,31r-36,26v-27,19,-47,33,-60,45v-13,12,-19,27,-19,44v0,4,1,10,4,19v3,9,7,16,12,21r12,14r-67,36v-13,-13,-23,-26,-31,-40v-8,-14,-12,-32,-12,-52v0,-15,1,-28,5,-38v4,-10,9,-19,16,-28v7,-9,16,-17,26,-25r36,-27r33,-22v32,-19,58,-41,77,-64v19,-23,28,-50,28,-79v0,-15,-3,-29,-8,-43v-5,-14,-13,-27,-24,-38v-11,-11,-26,-19,-44,-26v-18,-7,-40,-11,-67,-11v-17,0,-33,1,-49,5v-16,4,-32,9,-47,14xm123,-50v0,-17,6,-32,18,-44v12,-12,27,-18,44,-18v17,0,32,6,44,18v12,12,18,27,18,44v0,17,-6,32,-18,44v-12,12,-27,18,-44,18v-17,0,-32,-6,-44,-18v-12,-12,-18,-27,-18,-44","w":500},"@":{"d":"488,-389v0,-33,-7,-57,-21,-71v-14,-14,-33,-22,-58,-22v-21,0,-41,5,-58,16v-17,11,-32,26,-45,43v-13,17,-22,37,-29,58v-7,21,-10,42,-10,63v0,30,7,53,20,69v13,16,32,24,55,24v22,0,42,-6,60,-18v18,-12,33,-27,46,-45v13,-18,23,-37,30,-58v7,-21,10,-41,10,-59xm539,-293v-8,29,-8,29,-12,45v-3,10,-4,17,-4,22v0,7,3,12,7,16v4,4,13,7,26,7v13,0,27,-5,41,-16v14,-11,27,-25,39,-43v12,-18,20,-39,28,-63v8,-24,12,-50,12,-77v0,-36,-7,-69,-21,-98v-14,-29,-33,-54,-57,-74v-24,-20,-52,-37,-83,-48v-31,-11,-64,-16,-99,-16v-43,0,-82,8,-118,23v-36,15,-66,36,-92,63v-26,27,-46,57,-60,92v-14,35,-22,73,-22,113v0,45,8,85,23,120v15,35,36,65,62,89v26,24,57,43,91,56v34,13,70,20,108,20v109,0,190,-30,241,-90r82,0v-13,24,-29,46,-49,66v-20,20,-45,38,-72,52v-27,14,-58,26,-92,34v-34,8,-70,12,-110,12v-51,0,-99,-8,-144,-24v-45,-16,-85,-41,-118,-72v-33,-31,-60,-69,-79,-114v-19,-45,-29,-96,-29,-153v0,-51,10,-98,28,-142v18,-44,43,-83,76,-115v33,-32,73,-57,120,-76v47,-19,98,-28,154,-28v49,0,94,8,136,22v42,14,79,34,110,60v31,26,56,58,74,95v18,37,26,77,26,121v0,49,-9,91,-26,126v-17,35,-37,64,-62,87v-25,23,-52,39,-81,50v-29,11,-55,16,-78,16v-25,0,-42,-6,-53,-17v-11,-11,-16,-24,-17,-41r-2,0v-13,15,-31,29,-51,41v-20,12,-43,17,-69,17v-19,0,-37,-4,-53,-11v-16,-7,-30,-18,-42,-32v-12,-14,-21,-31,-28,-50v-7,-19,-11,-41,-11,-65v0,-35,6,-67,18,-99v12,-32,28,-60,48,-84v20,-24,43,-44,69,-58v26,-14,53,-22,81,-22v49,0,87,25,113,76r18,-57r71,0","w":800},"A":{"d":"471,-339r-84,-233v-4,-11,-7,-21,-9,-28v-2,-7,-4,-13,-5,-20r-2,0v-1,7,-3,13,-5,20v-2,7,-5,17,-9,28r-92,233r206,0xm11,-63r64,0r260,-637r92,0r236,637r67,0r0,63r-236,0r0,-63r74,0r-75,-213r-253,0r-83,213r84,0r0,63r-230,0r0,-63","w":741,"k":{"T":92,"V":92,"W":74,"Y":92,"y":74,"w":74,"v":65,"C":37,"G":37,"O":37,"Q":37,"U":30,"u":24}},"B":{"d":"210,-391r50,0v22,0,44,-2,65,-5v21,-3,40,-9,57,-18v17,-9,30,-22,40,-38v10,-16,16,-38,16,-65v0,-30,-6,-53,-16,-69v-10,-16,-22,-29,-37,-36v-15,-7,-31,-12,-47,-13v-16,-1,-30,-2,-41,-2r-85,0xm208,-63r65,0v21,0,44,-1,68,-2v24,-1,47,-7,67,-15v20,-8,37,-21,50,-39v13,-18,20,-43,20,-76v0,-29,-6,-51,-17,-69v-11,-18,-26,-32,-44,-41v-18,-9,-37,-16,-59,-19v-22,-3,-43,-4,-64,-4r-84,0xm126,-637r-80,0r0,-63r244,0v34,0,62,1,84,4v22,3,42,9,62,18v27,13,48,31,64,56v16,25,24,55,24,92v0,47,-13,83,-39,110v-26,27,-58,44,-97,51r0,2v23,0,45,4,67,11v22,7,42,18,59,32v17,14,30,32,40,54v10,22,16,47,16,75v0,37,-7,68,-21,93v-14,25,-33,45,-56,60v-23,15,-49,26,-79,32v-30,6,-61,10,-92,10r-276,0r0,-63r76,0","w":630,"k":{"A":30,",":24,".":24}},"C":{"d":"635,-517r-78,0r0,-110v-12,-3,-30,-7,-53,-11v-23,-4,-49,-6,-78,-6v-43,0,-81,6,-116,18v-35,12,-65,32,-90,56v-25,24,-44,54,-58,90v-14,36,-20,78,-20,125v0,96,24,169,72,221v48,52,121,78,216,78v21,0,42,-1,62,-4v20,-3,38,-7,55,-11r4,-116r78,0r-4,170v-10,5,-23,9,-39,13v-16,4,-33,6,-52,8v-19,2,-37,5,-56,6v-19,1,-37,2,-54,2v-57,0,-110,-7,-156,-22v-46,-15,-86,-37,-118,-66v-32,-29,-57,-67,-74,-112v-17,-45,-26,-97,-26,-157v0,-49,7,-95,22,-140v15,-45,39,-84,70,-117v31,-33,71,-60,119,-80v48,-20,105,-30,170,-30v19,0,38,1,57,3v19,2,37,5,55,8v18,3,35,7,51,11v16,4,29,8,41,13r0,160","w":685,"k":{"A":24}},"D":{"d":"205,-63r108,0v101,0,177,-25,226,-74v23,-23,43,-55,57,-93v14,-38,21,-81,21,-130v0,-47,-7,-89,-21,-126v-14,-37,-35,-66,-60,-88v-29,-25,-62,-42,-96,-50v-34,-8,-75,-13,-122,-13r-109,0xm123,-637r-80,0r0,-63r315,0v52,0,100,6,143,20v43,14,80,35,111,63v31,28,55,63,72,106v17,43,25,93,25,151v0,61,-9,115,-27,160v-18,45,-44,82,-77,112v-33,30,-73,52,-121,66v-48,14,-101,22,-160,22r-281,0r0,-63r76,0","w":759,"k":{"V":45,"W":45,"Y":74,"A":55,",":45,".":45}},"E":{"d":"123,-637r-80,0r0,-63r473,0r0,162r-74,0r0,-99r-233,0r-2,246r220,0r0,63r-220,0r-2,265r243,0r6,-109r74,0r-6,172r-479,0r0,-63r76,0","w":574},"F":{"d":"123,-637r-80,0r0,-63r467,0r3,165r-74,0r-3,-102r-227,0r-2,257r241,0r0,63r-241,0r-2,254r89,0r0,63r-251,0r0,-63r76,0","k":{"A":74,",":129,".":129,"a":45,"e":30,"i":18,"o":30,"r":18}},"G":{"d":"625,-17v-10,5,-23,9,-39,13v-16,4,-33,6,-52,8v-19,2,-37,5,-56,6v-19,1,-37,2,-54,2v-57,0,-110,-7,-156,-22v-46,-15,-86,-37,-118,-66v-32,-29,-57,-67,-74,-112v-17,-45,-26,-97,-26,-157v0,-49,8,-95,22,-140v14,-45,36,-84,67,-117v31,-33,69,-60,116,-80v47,-20,103,-30,168,-30v23,0,46,1,68,4v22,3,42,6,61,10v19,4,36,8,50,12v14,4,26,8,33,11r0,158r-74,0r0,-104v-12,-6,-31,-11,-57,-16v-26,-5,-54,-7,-87,-7v-42,0,-80,6,-114,18v-34,12,-63,32,-87,56v-24,24,-42,54,-55,90v-13,36,-19,78,-19,125v0,96,24,169,72,221v48,52,121,78,216,78v13,0,31,-2,54,-4v23,-2,44,-6,63,-11r0,-171r-86,0r0,-63r242,0r0,63r-78,0r0,225","w":722,"k":{",":24,".":24}},"H":{"d":"123,-637r-80,0r0,-63r242,0r0,63r-76,0r-2,257r364,0r2,-257r-80,0r0,-63r242,0r0,63r-76,0r-4,574r80,0r0,63r-242,0r0,-63r76,0r2,-254r-364,0r-2,254r80,0r0,63r-242,0r0,-63r76,0","w":778},"I":{"d":"126,-637r-80,0r0,-63r242,0r0,63r-76,0r-4,574r80,0r0,63r-242,0r0,-63r76,0","w":334},"J":{"d":"43,-700r241,0r0,63r-74,0r-4,445v-1,51,-5,94,-14,132v-9,38,-22,71,-41,100v-19,29,-43,56,-73,78v-30,22,-65,43,-108,64r-26,-63v64,-31,110,-72,136,-125v26,-53,39,-115,40,-184r4,-447r-81,0r0,-63","w":315,"k":{"A":18,",":37,"u":18,".":37,"a":12,"e":12,"o":12}},"K":{"d":"43,-700r242,0r0,63r-76,0r-2,267r304,-267r-85,0r0,-63r242,0r0,63r-62,0r-311,272r317,302r62,0r0,63r-254,0r0,-63r82,0r-295,-280r-2,280r80,0r0,63r-242,0r0,-63r76,0r4,-574r-80,0r0,-63","w":704,"k":{"y":55,"O":45,"u":37,"e":12,"o":30}},"L":{"d":"123,-637r-80,0r0,-63r238,0r0,63r-72,0r-4,574r239,0r6,-109r74,0r-6,172r-475,0r0,-63r76,0","k":{"T":92,"V":92,"W":92,"Y":111,"y":74}},"M":{"d":"35,-700r189,0r225,559v3,7,4,13,5,19v1,6,3,14,6,24r2,0v3,-10,5,-18,6,-24v1,-6,2,-12,5,-19r225,-559r193,0r0,63r-91,0r6,574r85,0r0,63r-242,0r0,-63r75,0r2,-513r-2,0v-6,22,-6,22,-9,32v-2,7,-5,15,-8,22r-212,522r-76,0r-215,-527v-3,-5,-4,-11,-6,-17v-2,-9,-3,-9,-8,-26r-2,0r-2,507r85,0r0,63r-236,0r0,-63r81,0r6,-574r-87,0r0,-63","w":926},"N":{"d":"123,-637r-93,0r0,-63r167,0r381,512v6,8,12,17,17,26v8,14,8,13,16,26r2,0r4,-501r-87,0r0,-63r236,0r0,63r-75,0r-4,637r-71,0r-396,-526v-9,-13,-18,-28,-27,-44r-2,0r-4,507r88,0r0,63r-232,0r0,-63r76,0","w":796,"k":{"A":18,",":24,".":24}},"O":{"d":"50,-338v0,-54,8,-104,22,-150v14,-46,35,-85,63,-118v28,-33,62,-59,103,-78v41,-19,89,-28,142,-28v55,0,103,9,144,28v41,19,76,44,104,76v28,32,48,68,62,110v14,42,20,88,20,136v0,54,-8,104,-22,150v-14,46,-35,85,-63,118v-28,33,-62,59,-103,78v-41,19,-89,28,-142,28v-55,0,-103,-9,-144,-28v-41,-19,-76,-44,-104,-76v-28,-32,-48,-68,-62,-110v-14,-42,-20,-88,-20,-136xm142,-350v0,38,5,74,14,110v9,36,23,67,42,94v19,27,44,50,74,66v30,16,66,24,108,24v42,0,78,-8,108,-24v30,-16,55,-39,74,-66v19,-27,33,-58,42,-94v9,-36,14,-72,14,-110v0,-38,-5,-74,-14,-110v-9,-36,-23,-67,-42,-94v-19,-27,-44,-50,-74,-66v-30,-16,-66,-24,-108,-24v-42,0,-78,8,-108,24v-30,16,-55,39,-74,66v-19,27,-33,58,-42,94v-9,36,-14,72,-14,110","w":760,"k":{"T":24,"V":37,"W":37,"Y":74,"A":45,",":45,".":45,"X":24}},"P":{"d":"123,-637r-80,0r0,-63r241,0v36,0,67,3,92,8v25,5,48,13,69,24v28,15,51,36,67,64v16,28,24,62,24,102v0,35,-6,67,-18,94v-12,27,-27,50,-46,68v-19,18,-42,33,-68,42v-26,9,-52,14,-80,14r-117,0r-2,221r89,0r0,63r-251,0r0,-63r76,0xm207,-347r94,0v48,0,85,-13,111,-39v26,-26,38,-62,38,-107v0,-31,-5,-56,-16,-77v-11,-21,-27,-37,-47,-48v-17,-9,-34,-14,-51,-16v-17,-2,-39,-3,-64,-3r-63,0","w":574,"k":{"A":74,",":129,".":129,"a":24,"e":24,"o":30}},"Q":{"d":"832,167v-5,3,-12,5,-21,7v-9,2,-22,2,-39,2v-17,0,-33,-2,-48,-5v-15,-3,-34,-9,-56,-17v-22,-8,-51,-21,-84,-36r-125,-57v-9,-4,-20,-9,-31,-15v-17,-8,-16,-8,-32,-16v-10,-5,-20,-8,-28,-12v-8,-4,-14,-6,-17,-6v-31,0,-65,-7,-100,-20v-35,-13,-67,-34,-97,-62v-30,-28,-54,-66,-74,-110v-20,-44,-30,-97,-30,-158v0,-54,8,-104,22,-150v14,-46,35,-85,63,-118v28,-33,62,-59,103,-78v41,-19,89,-28,142,-28v55,0,103,9,144,28v41,19,76,44,104,76v28,32,48,68,62,110v14,42,20,88,20,136v0,41,-5,82,-14,120v-9,38,-22,72,-40,104v-18,32,-42,60,-70,83v-28,23,-61,40,-100,51r0,2v6,1,13,4,20,6v7,2,17,6,29,11v12,5,26,13,43,21v26,12,26,12,63,31r67,27v0,0,52,14,79,14v10,0,19,-1,26,-2v7,-1,15,-1,22,-2xm380,-644v-42,0,-78,8,-108,24v-30,16,-55,39,-74,66v-19,27,-33,58,-42,94v-9,36,-14,72,-14,110v0,38,5,74,14,110v9,36,23,67,42,94v19,27,44,50,74,66v30,16,66,24,108,24v42,0,78,-8,108,-24v30,-16,55,-39,74,-66v19,-27,33,-58,42,-94v9,-36,14,-72,14,-110v0,-38,-5,-74,-14,-110v-9,-36,-23,-67,-42,-94v-19,-27,-44,-50,-74,-66v-30,-16,-66,-24,-108,-24","w":760,"k":{"U":12}},"R":{"d":"210,-373r83,0v22,0,43,-2,62,-7v19,-5,37,-14,51,-25v14,-11,25,-26,33,-43v8,-17,12,-39,12,-64v0,-25,-4,-46,-13,-62v-9,-16,-20,-30,-35,-39v-15,-9,-33,-16,-53,-19v-20,-3,-41,-5,-64,-5r-74,0xm46,-700r234,0v31,0,62,2,93,6v31,4,59,12,83,24v24,12,43,30,58,54v15,24,23,56,23,96v0,29,-5,56,-14,78v-9,22,-22,40,-37,56v-15,16,-32,29,-52,38v-20,9,-40,15,-61,17r0,2v13,1,27,7,42,19v15,12,31,31,48,60r59,102r27,44v0,0,14,20,20,26v6,6,12,10,19,12v7,2,15,3,25,3r31,0r0,63r-41,0v-18,0,-33,-1,-45,-2v-12,-1,-24,-4,-34,-9v-10,-5,-18,-12,-26,-21v-8,-9,-17,-20,-26,-35r-67,-115v-15,-27,-28,-48,-39,-65v-11,-17,-21,-30,-31,-39v-10,-9,-20,-16,-31,-19v-11,-3,-24,-5,-39,-5r-55,0r-2,247r81,0r0,63r-243,0r0,-63r76,0r4,-574r-80,0r0,-63","w":648,"k":{"T":37,"V":55,"W":55,"Y":55,"O":12,"U":12}},"S":{"d":"66,-177r82,0r0,95v8,5,17,9,28,12v11,3,23,6,36,8v13,2,26,3,38,4v12,1,24,2,35,2v50,0,91,-12,121,-34v30,-22,45,-54,45,-96v0,-23,-6,-43,-17,-58v-11,-15,-25,-27,-43,-37v-18,-10,-38,-19,-61,-25r-71,-20v-24,-7,-48,-14,-71,-22v-23,-8,-43,-20,-61,-34v-18,-14,-32,-31,-43,-52v-11,-21,-17,-48,-17,-79v0,-21,4,-44,11,-67v7,-23,21,-44,40,-64v19,-20,46,-36,80,-49v34,-13,76,-19,128,-19v13,0,27,0,44,2v17,2,34,4,52,7v18,3,35,7,51,11v16,4,30,8,41,13r0,141r-78,0r0,-87v-7,-3,-14,-5,-24,-7v-10,-2,-21,-4,-32,-6v-11,-2,-21,-3,-32,-4v-11,-1,-21,-2,-29,-2v-19,0,-38,2,-57,6v-19,4,-36,11,-51,20v-15,9,-27,22,-37,38v-10,16,-15,34,-15,57v0,30,10,53,29,68v19,15,42,28,70,38v28,10,60,19,93,27v33,8,65,18,93,32v28,14,51,34,70,59v19,25,29,58,29,101v0,39,-8,71,-23,98v-15,27,-35,48,-60,65v-25,17,-53,29,-85,36v-32,7,-65,11,-99,11v-29,0,-54,-1,-76,-4v-22,-3,-42,-6,-58,-10v-16,-4,-30,-8,-42,-12v-12,-4,-24,-7,-34,-9r0,-154","w":593,"k":{",":18,".":24}},"T":{"d":"291,-637r-191,0r-6,108r-74,0r6,-171r616,0r6,171r-74,0r-6,-108r-191,0r-4,574r87,0r0,63r-249,0r0,-63r76,0","w":668,"k":{"y":150,"w":150,"A":92,",":111,":":74,";":74,"O":24,"u":129,".":111,"a":92,"e":74,"i":55,"o":111,"r":92,"-":111}},"U":{"d":"274,-637r-75,0v0,25,-1,50,-1,75r0,80v0,0,-1,60,-1,93r0,111v0,43,3,78,7,105v4,27,13,49,28,67v14,17,34,30,59,38v25,8,56,12,92,12v35,0,67,-5,93,-14v26,-9,47,-24,63,-45v15,-19,23,-44,26,-75v3,-31,4,-70,5,-118r2,-329r-87,0r0,-63r242,0r0,63r-77,0r-2,379v0,40,-3,75,-10,106v-7,31,-22,60,-45,88v-20,25,-48,43,-84,56v-36,13,-79,20,-129,20v-61,0,-110,-7,-146,-22v-36,-15,-63,-37,-84,-65v-8,-11,-15,-23,-20,-35v-5,-12,-9,-28,-12,-44v-3,-16,-5,-35,-6,-56v-1,-21,-1,-47,-1,-76v0,-57,1,-117,1,-178v0,-61,0,-119,1,-173r-81,0r0,-63r242,0r0,63","w":759,"k":{"A":55,",":45,".":45}},"V":{"d":"68,-637r-66,0r0,-63r242,0r0,63r-78,0r190,523v3,7,5,13,6,19v1,6,3,12,5,19r2,0v2,-7,4,-13,5,-19v1,-6,3,-12,6,-19r188,-523r-84,0r0,-63r236,0r0,63r-66,0r-247,637r-92,0","w":722,"k":{"A":92,",":129,":":74,";":74,"G":37,"O":30,"u":55,".":129,"a":92,"e":74,"i":37,"o":74,"-":92}},"W":{"d":"73,-637r-71,0r0,-63r242,0r0,63r-79,0r171,531v3,7,5,13,6,19v1,6,3,12,5,19r2,0v2,-7,4,-13,5,-19v1,-6,3,-12,6,-19r154,-405r-40,-126r-75,0r0,-63r236,0r0,63r-75,0r159,531v3,7,5,13,6,19v1,6,3,12,5,19r2,0v2,-7,4,-13,5,-19v1,-6,3,-12,6,-19r182,-531r-89,0r0,-63r236,0r0,63r-65,0r-234,637r-98,0r-125,-412r-2,0r-159,412r-98,0","w":1074,"k":{"y":65,"A":74,",":129,":":74,";":74,"O":37,"u":37,".":129,"a":74,"e":74,"i":30,"o":74,"-":74}},"X":{"d":"307,-353r-199,-284r-72,0r0,-63r254,0r0,63r-82,0v5,5,10,10,14,15v4,5,8,11,12,17r128,188r139,-192v6,-9,14,-18,24,-28r-83,0r0,-63r230,0r0,63r-66,0r-204,276r208,298r68,0r0,63r-248,0r0,-63r79,0v-9,-10,-16,-19,-22,-28r-140,-205r-150,207v-3,5,-7,9,-11,13v-6,6,-5,6,-11,13r81,0r0,63r-230,0r0,-63r63,0","w":704},"Y":{"d":"8,-700r242,0r0,63r-73,0v10,10,18,19,24,28r173,240r169,-236v4,-6,9,-12,13,-17v4,-5,9,-10,14,-15r-86,0r0,-63r230,0r0,63r-64,0r-239,335r-3,239r79,0r0,63r-238,0r0,-63r73,0r3,-238r-245,-336r-72,0r0,-63","w":722,"k":{"A":92,",":129,":":92,";":92,"O":55,"u":92,".":129,"a":92,"e":92,"i":55,"o":111,"-":129,"S":37}},"Z":{"d":"52,-59r412,-544r14,-17v0,0,11,-12,16,-17r-341,0r-6,105r-74,0r6,-168r515,0r0,63r-406,538r-15,18r-16,18r359,0r6,-106r74,0r-6,169r-538,0r0,-59","w":648},"[":{"d":"106,-769r176,0r0,63r-94,0r-4,894r94,0r0,63r-176,0","w":314},"\\":{"d":"398,53r-63,24r-327,-830r63,-24","w":370},"]":{"d":"208,251r-176,0r0,-63r94,0r4,-894r-94,0r0,-63r176,0","w":314},"^":{"d":"300,-622r-143,287r-68,0r181,-365r60,0r181,365r-68,0","w":600},"_":{"d":"0,125r0,-50r500,0r0,50r-500,0","w":500},"`":{"d":"240,-644r-49,42r-187,-156r52,-44","w":314},"a":{"d":"242,-51v14,0,29,-2,46,-7v17,-5,33,-15,48,-28v15,-13,28,-32,38,-56v10,-24,16,-56,16,-95v-31,0,-61,0,-90,1v-29,1,-55,5,-78,11v-23,6,-42,16,-56,29v-14,13,-21,32,-21,56v0,29,10,51,29,66v19,15,41,23,68,23xm157,-364r-74,0r0,-124v29,-11,58,-20,88,-28v30,-8,61,-12,93,-12v33,0,63,3,88,10v25,7,47,17,64,32v17,15,30,34,39,58v9,24,13,52,13,86v0,11,0,28,-1,50v-1,22,-1,46,-2,72r-2,80v-1,28,-1,54,-1,77r74,0r0,63r-148,0r0,-21v0,-15,2,-31,4,-49v2,-18,4,-32,6,-42r-2,0v-15,42,-37,74,-64,94v-27,20,-63,30,-109,30v-15,0,-31,-2,-50,-6v-19,-4,-37,-10,-53,-21v-16,-11,-29,-26,-40,-45v-11,-19,-17,-45,-17,-76v0,-36,9,-65,27,-86v18,-21,42,-36,72,-47v30,-11,65,-18,104,-21v39,-3,81,-4,124,-4r0,-37v0,-49,-9,-83,-28,-103v-19,-20,-49,-31,-90,-31v-15,0,-32,2,-54,5v-22,3,-42,8,-61,16r0,80","w":574,"k":{"y":30,"b":12,"w":30,"v":30,"g":12}},"b":{"d":"165,-80v23,8,41,14,57,18v16,4,34,6,53,6v34,0,63,-6,87,-19v24,-13,44,-29,59,-49v15,-20,26,-44,33,-71v7,-27,11,-54,11,-82v0,-32,-3,-60,-11,-83v-8,-23,-19,-41,-32,-56v-13,-15,-28,-27,-45,-34v-17,-7,-36,-10,-56,-10v-18,0,-36,3,-54,9v-18,6,-35,17,-49,31v-14,14,-25,32,-34,56v-9,24,-14,53,-15,88xm87,-706r-87,0r0,-63r170,0r-2,271v0,6,0,13,-1,22r-3,26r-3,27v0,0,-2,16,-3,21r2,0v5,-18,13,-35,24,-50v11,-15,25,-29,41,-40v16,-11,34,-20,54,-26v20,-6,41,-10,64,-10v36,0,67,7,93,20v26,13,47,30,64,53v17,23,30,49,38,79v8,30,13,63,13,97v0,31,-4,63,-13,97v-9,34,-24,66,-45,95v-21,29,-49,52,-85,71v-36,19,-81,28,-135,28v-21,0,-39,-1,-55,-3v-16,-2,-30,-5,-44,-8v-14,-3,-28,-8,-42,-13v-14,-5,-30,-11,-49,-17","w":593,"k":{"y":30,"l":12,"v":24,",":24,".":24}},"c":{"d":"465,-13v-20,6,-43,12,-68,17v-25,5,-52,8,-81,8v-51,0,-94,-8,-128,-23v-34,-15,-62,-36,-83,-61v-21,-25,-36,-54,-45,-86v-9,-32,-13,-66,-13,-100v0,-49,8,-92,24,-126v16,-34,36,-62,61,-83v25,-21,53,-37,84,-47v31,-10,60,-14,89,-14v29,0,57,2,85,6v28,4,55,11,82,20r0,135r-74,0r0,-81v-5,-2,-12,-4,-20,-5r-23,-3v0,0,-16,-2,-23,-3v-7,-1,-14,-1,-20,-1v-37,0,-68,7,-91,20v-23,13,-42,30,-55,50v-13,20,-21,42,-26,66v-5,24,-7,45,-7,66v0,5,0,12,1,24v1,12,3,25,7,40v4,15,10,32,18,48v8,16,19,31,34,44v15,13,33,24,55,33v22,9,49,13,81,13v25,0,49,-3,71,-9v22,-6,45,-13,69,-20","w":519,"k":{"y":24,"h":18,"k":18}},"d":{"d":"435,-437v-7,-3,-7,-3,-15,-7v-5,-2,-12,-4,-19,-7v-7,-3,-16,-5,-27,-7v-11,-2,-24,-2,-40,-2v-61,0,-109,20,-143,58v-34,38,-51,93,-51,166v0,24,2,46,8,68v6,22,15,41,27,58v12,17,27,30,45,40v18,10,40,14,65,14v31,0,57,-7,76,-20v19,-13,34,-29,45,-50v11,-21,19,-44,23,-70v4,-26,6,-52,6,-77r0,-164xm515,-63r77,0r0,63r-159,0v0,-21,1,-40,3,-58v2,-18,4,-33,7,-46r-2,-2v-5,13,-12,26,-21,40v-9,14,-20,26,-34,38v-14,12,-31,22,-50,29v-19,7,-42,11,-68,11v-29,0,-57,-6,-83,-16v-26,-10,-49,-25,-68,-46v-19,-21,-35,-47,-46,-78v-11,-31,-17,-68,-17,-109v0,-43,6,-81,18,-117v12,-36,29,-66,52,-92v23,-26,52,-46,86,-60v34,-14,73,-22,118,-22v7,0,16,0,26,1v10,1,19,2,29,4v10,2,20,4,29,7v9,3,17,7,23,11r2,-201r-103,0r0,-63r185,0","w":630,"k":{"y":24,"b":-1,"k":-1,"l":-1,"w":30,"v":18}},"e":{"d":"423,-314v0,-20,-3,-40,-9,-58v-6,-18,-16,-34,-28,-48v-12,-14,-25,-25,-42,-33v-17,-8,-37,-12,-58,-12v-22,0,-42,3,-60,11v-18,8,-35,18,-48,32v-13,14,-24,30,-32,48v-8,18,-12,39,-13,60r290,0xm133,-251v1,27,4,51,11,75v7,24,18,44,33,62v15,18,35,32,60,42v25,10,55,16,92,16v28,0,56,-4,83,-11v27,-7,51,-17,72,-28r-3,71v-9,5,-21,10,-35,14v-14,4,-28,8,-44,11v-16,3,-32,6,-48,8v-16,2,-30,3,-43,3v-81,0,-146,-22,-193,-67v-47,-45,-71,-112,-71,-202v0,-38,5,-74,15,-107v10,-33,26,-62,46,-86v20,-24,44,-43,74,-57v30,-14,65,-21,104,-21v34,0,64,5,88,14v24,9,44,22,60,37v16,15,30,33,40,53v10,20,17,40,22,60v5,20,8,40,10,60v2,20,3,38,3,53r-376,0","k":{"y":30,"b":6,"w":30,"v":30,",":18,".":18,"g":18,"p":12,"x":6}},"f":{"d":"433,-697v-8,-3,-20,-7,-37,-9v-17,-2,-32,-3,-47,-3v-31,0,-55,3,-73,11v-18,8,-31,18,-40,32v-9,14,-15,30,-18,48v-3,18,-4,39,-4,60r0,42r133,0r-1,63r-132,0r-2,390r84,0r0,63r-236,0r0,-63r70,0r2,-390r-85,0r0,-63r85,0r0,-50v0,-75,18,-129,55,-162v37,-33,87,-49,151,-49v5,0,11,0,20,1v9,1,19,1,29,2v10,1,20,3,29,4v9,1,15,3,20,5","w":370},"g":{"d":"564,-453r-46,0v-3,0,-8,-1,-14,-1v-6,0,-13,0,-20,-1v-7,-1,-14,-1,-20,-2v-6,-1,-12,-1,-15,-1v21,20,34,41,40,62v6,21,9,42,9,62v0,29,-6,54,-17,77v-11,23,-27,42,-47,58v-20,16,-42,29,-69,37v-27,8,-55,12,-85,12v-5,0,-14,0,-24,2v-10,2,-20,4,-30,8v-10,4,-20,10,-28,16v-8,6,-11,14,-11,23v0,13,7,22,20,27v13,5,36,11,69,16r138,23v20,3,39,7,56,13v17,6,32,14,44,24v12,10,21,22,28,36v7,14,11,31,11,52v0,30,-7,56,-21,78v-14,22,-34,39,-57,53v-23,14,-50,24,-81,31v-31,7,-62,11,-94,11v-31,0,-62,-3,-91,-8v-29,-5,-56,-14,-79,-25v-23,-11,-41,-26,-55,-44v-14,-18,-21,-39,-21,-64v0,-19,4,-36,11,-50v7,-14,17,-27,29,-37v12,-10,26,-19,42,-25v16,-6,31,-11,48,-15r0,-2v-21,-5,-39,-13,-55,-25v-16,-12,-24,-31,-24,-55v0,-13,3,-24,9,-33v6,-9,13,-16,22,-22v9,-6,19,-10,30,-14v11,-4,22,-6,33,-9r0,-2v-9,-2,-20,-6,-35,-12v-15,-6,-29,-16,-43,-29v-14,-13,-27,-30,-37,-52v-10,-22,-15,-48,-15,-81v0,-27,5,-52,15,-75v10,-23,25,-42,44,-59v19,-17,42,-30,68,-39v26,-9,56,-14,87,-14v14,0,30,2,47,4v17,2,31,5,42,8r192,0r0,63xm245,12v-3,0,-10,2,-22,6v-12,4,-25,9,-39,17v-14,8,-25,19,-36,31v-11,12,-16,26,-16,43v0,20,7,36,20,48v13,12,28,21,46,27v18,6,38,11,58,13v20,2,35,3,48,3v16,0,34,-1,53,-4v19,-3,38,-9,55,-16v17,-7,31,-18,42,-31v11,-13,17,-30,17,-51v0,-11,-2,-20,-7,-28v-5,-8,-12,-15,-20,-20v-8,-5,-17,-8,-28,-11v-11,-3,-22,-5,-33,-7xm287,-465v-41,0,-75,11,-101,34v-26,23,-39,53,-39,91v0,18,4,35,11,50v7,15,16,28,28,40v12,12,27,22,43,28v16,6,33,9,51,9v22,0,42,-3,60,-10v18,-7,32,-16,45,-28v13,-12,22,-25,29,-41v7,-16,10,-33,10,-51v0,-13,-3,-27,-8,-41v-5,-14,-13,-27,-24,-39v-11,-12,-25,-22,-42,-30v-17,-8,-38,-12,-63,-12","k":{"a":-6,"e":-12,"i":-12}},"h":{"d":"124,-706r-100,0r0,-63r182,0r-1,271v0,6,0,13,-1,22v-1,9,-1,17,-2,26v-1,9,-3,18,-4,27v-1,9,-2,16,-3,21r2,0v5,-19,14,-36,27,-52v13,-16,28,-29,44,-40v16,-11,34,-20,54,-26v20,-6,39,-8,58,-8v35,0,65,5,88,16v23,11,41,26,54,44v13,18,23,39,28,62v5,23,7,47,7,72v0,44,-1,90,-2,138v-1,48,-2,93,-2,133r76,0r0,63r-224,0r0,-63r66,0v0,-40,1,-81,2,-122v1,-41,2,-83,2,-125v0,-13,-1,-27,-2,-44v-1,-17,-5,-34,-13,-50v-8,-16,-20,-29,-36,-40v-16,-11,-37,-16,-66,-16v-18,0,-36,3,-54,9v-18,6,-35,17,-50,31v-15,14,-27,32,-36,56v-9,24,-13,53,-13,88r-3,213r76,0r0,63r-232,0r0,-63r74,0","w":667,"k":{"y":30}},"i":{"d":"124,-453r-94,0r0,-63r176,0r-4,453r82,0r0,63r-246,0r0,-63r82,0xm93,-715v0,-17,6,-32,18,-44v12,-12,27,-18,44,-18v17,0,32,6,44,18v12,12,18,27,18,44v0,17,-6,32,-18,44v-12,12,-27,18,-44,18v-17,0,-32,-6,-44,-18v-12,-12,-18,-27,-18,-44","w":314,"k":{"v":12}},"j":{"d":"215,-129v-1,43,-3,80,-7,111v-4,31,-8,59,-15,82v-7,23,-15,42,-24,59v-9,17,-20,32,-32,45v-23,28,-50,49,-81,63v-31,14,-64,25,-99,32r-12,-66v30,-8,56,-18,77,-31v21,-13,41,-30,58,-51v18,-21,31,-51,39,-89v8,-38,13,-89,14,-154r4,-325r-95,0r0,-63r177,0xm106,-715v0,-17,6,-32,18,-44v12,-12,27,-18,44,-18v17,0,32,6,44,18v12,12,18,27,18,44v0,17,-6,32,-18,44v-12,12,-27,18,-44,18v-17,0,-32,-6,-44,-18v-12,-12,-18,-27,-18,-44","w":314,"k":{"v":12}},"k":{"d":"124,-706r-100,0r0,-63r182,0r-2,480r197,-162r0,-2r-72,0r0,-63r224,0r0,63r-53,0r-214,174r233,216r56,0r0,63r-224,0r0,-63r62,0r0,-2r-209,-199r-2,201r68,0r0,63r-224,0r0,-63r74,0","w":593,"k":{"y":12}},"l":{"d":"124,-706r-100,0r0,-63r182,0r-4,706r82,0r0,63r-238,0r0,-63r74,0","w":314,"k":{"y":12,"b":-1,"k":-1,"l":-1,"w":12,"\"":-1,"'":-1}},"m":{"d":"54,-63r66,0r4,-390r-83,0r0,-63r165,0r0,33v0,0,-2,22,-3,29r-8,52r2,0v5,-19,14,-36,27,-52v13,-16,28,-29,44,-40v16,-11,34,-20,54,-26v20,-6,39,-8,58,-8v23,0,44,4,62,10v18,6,33,15,46,26v13,11,24,23,32,38v8,15,13,30,16,47r2,0v3,-5,7,-15,13,-28v6,-13,16,-27,29,-41v13,-14,30,-25,51,-36v21,-11,49,-16,82,-16v35,0,64,5,87,16v23,11,42,26,55,44v13,18,22,39,27,62v5,23,8,47,8,72v0,44,-1,90,-2,138v-1,48,-2,93,-2,133r76,0r0,63r-224,0r0,-63r66,0v1,-42,1,-84,2,-125v1,-41,2,-83,2,-125v0,-19,-1,-37,-4,-55v-3,-18,-8,-32,-16,-46v-8,-14,-19,-26,-34,-34v-15,-8,-34,-12,-58,-12v-17,0,-34,3,-51,9v-17,6,-33,17,-47,31v-14,14,-27,32,-36,56v-9,24,-14,53,-14,88r-2,213r74,0r0,63r-225,0r0,-63r66,0r3,-125v0,0,1,-83,1,-125v0,-19,-1,-37,-4,-55v-3,-18,-8,-32,-16,-46v-8,-14,-19,-26,-34,-34v-15,-8,-34,-12,-58,-12v-17,0,-34,3,-51,9v-17,6,-34,17,-48,31v-14,14,-26,32,-35,56v-9,24,-14,53,-14,88r-2,213r75,0r0,63r-224,0r0,-63","w":1000,"k":{"y":18,"u":12}},"n":{"d":"405,-63r66,0v0,-40,1,-81,2,-122v1,-41,2,-83,2,-125v0,-13,-1,-27,-2,-44v-1,-17,-5,-34,-13,-50v-8,-16,-20,-29,-36,-40v-16,-11,-37,-16,-66,-16v-18,0,-36,3,-54,9v-18,6,-35,17,-50,31v-15,14,-27,32,-36,56v-9,24,-13,53,-13,88r-2,213r75,0r0,63r-224,0r0,-63r66,0r4,-390r-83,0r0,-63r165,0r0,33v0,0,-2,22,-3,29r-8,52r2,0v5,-19,14,-36,27,-52v13,-16,28,-29,44,-40v16,-11,34,-20,54,-26v20,-6,39,-8,58,-8v35,0,65,5,88,16v23,11,41,26,54,44v13,18,23,39,28,62v5,23,7,47,7,72v0,44,-1,90,-2,138v-1,48,-2,93,-2,133r76,0r0,63r-224,0r0,-63","w":667,"k":{"y":30,"v":30,"u":12}},"o":{"d":"47,-244v0,-41,6,-79,17,-114v11,-35,28,-65,49,-90v21,-25,48,-44,79,-58v31,-14,66,-22,105,-22v39,0,74,6,105,19v31,13,58,30,79,53v21,23,38,51,49,82v11,31,17,65,17,102v0,41,-6,79,-17,114v-11,35,-28,65,-49,90v-21,25,-48,44,-79,58v-31,14,-66,22,-105,22v-39,0,-74,-6,-105,-19v-31,-13,-58,-30,-79,-53v-21,-23,-38,-51,-49,-82v-11,-31,-17,-65,-17,-102xm133,-258v0,28,3,54,10,79v7,25,17,46,31,64v14,18,30,32,51,43v21,11,45,16,72,16v27,0,51,-5,72,-16v21,-11,37,-25,51,-43v14,-18,24,-39,31,-64v7,-25,10,-51,10,-79v0,-28,-3,-54,-10,-79v-7,-25,-17,-46,-31,-64v-14,-18,-30,-32,-51,-43v-21,-11,-45,-16,-72,-16v-27,0,-51,5,-72,16v-21,11,-37,25,-51,43v-14,18,-24,39,-31,64v-7,25,-10,51,-10,79","w":594,"k":{"y":24,"w":24,"v":24,",":24,".":24,"g":6,"x":6}},"p":{"d":"119,-453r-89,0r0,-63r170,0r0,18v0,6,0,13,-1,22r-3,26r-3,27v0,0,-2,16,-3,21r2,0v5,-18,13,-35,24,-50v11,-15,25,-29,41,-40v16,-11,34,-20,54,-26v20,-6,41,-10,64,-10v36,0,67,7,93,20v26,13,47,30,64,53v17,23,30,49,38,79v8,30,13,63,13,97v0,31,-4,63,-13,97v-9,34,-24,66,-45,95v-21,29,-49,52,-85,71v-36,19,-81,28,-135,28v-18,0,-36,-2,-55,-5v-19,-3,-36,-8,-51,-13r-2,194r86,0r0,63r-242,0r0,-63r74,0xm197,-80v23,8,41,14,57,18v16,4,34,6,53,6v34,0,63,-6,87,-19v24,-13,44,-29,59,-49v15,-20,26,-44,33,-71v7,-27,11,-54,11,-82v0,-32,-3,-60,-11,-83v-8,-23,-19,-41,-32,-56v-13,-15,-28,-27,-45,-34v-17,-7,-36,-10,-56,-10v-18,0,-36,3,-54,9v-18,6,-35,17,-49,31v-14,14,-25,32,-34,56v-9,24,-14,53,-15,88","w":630,"k":{"y":30,",":24,".":24}},"q":{"d":"435,-437v-7,-3,-7,-3,-15,-7v-5,-2,-12,-4,-19,-7v-7,-3,-16,-5,-27,-7v-11,-2,-24,-2,-40,-2v-61,0,-109,20,-143,58v-34,38,-51,93,-51,166v0,24,2,46,8,68v6,22,15,41,27,58v12,17,27,30,45,40v18,10,40,14,65,14v32,0,57,-8,77,-22v20,-14,35,-32,46,-54v11,-22,18,-47,22,-74v4,-27,5,-54,5,-79r0,-152xm356,188r75,0r2,-188v0,-22,1,-42,3,-59v2,-17,4,-32,7,-45r-2,-2v-5,19,-13,36,-25,51v-12,15,-26,27,-42,37v-16,10,-32,17,-50,22v-18,5,-37,8,-56,8v-23,0,-47,-4,-72,-12v-25,-8,-49,-21,-70,-40v-21,-19,-38,-44,-52,-76v-14,-32,-20,-72,-20,-121v0,-44,6,-83,18,-119v12,-36,30,-66,54,-92v24,-26,52,-46,86,-60v34,-14,74,-20,119,-20v31,0,59,2,83,8v24,6,49,13,72,20r31,0r-4,688r79,0r0,63r-236,0r0,-63","w":630},"r":{"d":"124,-453r-88,0r0,-63r170,0r0,28v0,15,-2,36,-4,62v-2,26,-4,50,-7,71r1,0r2,0v5,-19,11,-39,18,-59v7,-20,16,-38,29,-54v13,-16,29,-30,49,-41v20,-11,47,-16,79,-16v2,0,6,1,11,1v5,0,10,1,16,2v6,1,11,1,16,2v5,1,8,2,9,3r-8,74v-7,-3,-16,-5,-26,-6v-10,-1,-20,-2,-30,-2v-27,0,-50,5,-69,17v-19,12,-36,27,-48,46v-12,19,-22,40,-28,63v-6,23,-9,46,-10,69r-4,193r87,0r0,63r-242,0r0,-63r73,0","w":426,"k":{"y":12,"d":24,",":55,".":55,"a":18,"e":12,"o":12,"-":55,"g":24,"c":18}},"s":{"d":"423,-373r-74,0r-4,-73v-5,-4,-11,-8,-19,-10v-8,-2,-16,-4,-25,-6v-9,-2,-17,-2,-25,-2v-8,0,-16,-1,-22,-1v-13,0,-27,1,-41,3v-14,2,-27,7,-38,13v-11,6,-21,15,-29,25v-8,10,-11,23,-11,38v0,14,3,26,9,35v6,9,15,17,26,24v11,7,24,12,39,16v15,4,33,8,52,11v65,11,113,28,142,50v29,22,44,54,44,97v0,23,-4,45,-12,65v-8,20,-20,37,-37,52v-17,15,-39,26,-66,35v-27,9,-59,13,-96,13v-14,0,-30,0,-47,-2v-17,-2,-35,-4,-51,-7v-16,-3,-32,-6,-46,-10v-14,-4,-25,-8,-33,-12r-4,-132r74,0r4,77v8,4,17,7,27,10v10,3,20,5,30,7v10,2,22,4,32,5v10,1,19,1,28,1v13,0,27,-2,41,-5v14,-3,27,-7,39,-14v12,-7,21,-16,28,-27v7,-11,11,-24,11,-40v0,-13,-3,-24,-9,-33v-6,-9,-14,-16,-24,-22v-10,-6,-23,-11,-36,-15v-13,-4,-26,-8,-40,-11v-35,-7,-64,-14,-90,-22v-26,-8,-48,-18,-65,-29v-17,-11,-30,-25,-39,-41v-9,-16,-13,-38,-13,-63v0,-21,4,-40,11,-59v7,-19,19,-36,35,-50v16,-14,37,-26,63,-34v26,-8,57,-12,94,-12v11,0,23,0,38,2v15,2,29,4,44,7v15,3,30,6,44,10v14,4,27,8,37,12","w":500,"k":{"w":24}},"t":{"d":"38,-516r83,0r4,-126r82,-5r-4,131r162,0r0,63r-163,0r-3,129v0,0,-1,87,-1,130v0,19,0,36,1,53v1,17,4,31,9,44v5,13,12,23,23,30v11,7,26,11,46,11v21,0,41,-2,59,-7v18,-5,32,-9,43,-14r-3,65v-13,7,-31,12,-52,17v-21,5,-43,7,-64,7v-36,0,-64,-6,-84,-17v-20,-11,-33,-26,-42,-43v-9,-17,-15,-34,-16,-54v-1,-20,-2,-38,-2,-55r0,-63v0,-38,2,-38,2,-80v0,-28,0,-57,1,-84v1,-27,1,-50,1,-69r-82,0r0,-63","w":389,"k":{"b":-1,"k":-1,"l":-1}},"u":{"d":"31,-516r165,0v0,47,-1,96,-2,144v-1,48,-2,102,-2,161v0,19,2,37,4,56v2,19,7,35,15,50v8,15,20,26,35,35v15,9,35,14,60,14v25,0,46,-4,63,-12v17,-8,32,-20,43,-33v11,-13,20,-28,26,-45v6,-17,11,-34,14,-52v3,-18,4,-36,5,-52v1,-16,1,-30,1,-43r0,-160r-81,0r0,-63r165,0r-4,453r72,0r0,63r-153,0v0,-10,1,-21,1,-33v0,-12,1,-22,2,-29r8,-52r-2,0v-5,15,-13,31,-24,46v-11,15,-23,28,-38,40v-15,12,-32,22,-51,29v-19,7,-39,11,-61,11v-37,0,-68,-5,-91,-16v-23,-11,-41,-27,-55,-46v-14,-19,-23,-40,-28,-66v-5,-26,-8,-54,-8,-83v0,-47,1,-92,2,-133v1,-41,1,-81,2,-121r-83,0r0,-63","w":648},"v":{"d":"10,-516r212,0r0,63r-62,0r119,331v3,7,5,15,7,22v2,7,3,15,4,22r2,0v1,-7,2,-15,4,-22v2,-7,4,-15,7,-22r122,-331r-67,0r0,-63r206,0r0,63r-57,0r-178,453r-82,0r-179,-453r-58,0r0,-63","w":574,"k":{",":92,".":92,"a":12,"e":12,"o":12}},"w":{"d":"17,-516r212,0r0,63r-62,0r111,321v3,9,6,20,8,30v4,16,4,15,6,24r2,0v1,-6,3,-14,6,-24v3,-10,7,-21,10,-30r95,-244r-29,-77r-57,0r0,-63r212,0r0,63r-69,0r109,321v3,9,7,20,9,30v4,16,3,15,5,24r2,0v2,-9,1,-8,5,-24v2,-10,6,-21,9,-30r115,-321r-69,0r0,-63r206,0r0,63r-59,0r-173,453r-86,0r-81,-237v-3,-9,-6,-19,-8,-29v-4,-16,-4,-16,-6,-25r-2,0v-1,6,-3,15,-6,25v-3,10,-7,20,-10,29r-94,237r-82,0r-171,-453r-58,0r0,-63","w":870,"k":{",":92,".":92,"a":12,"e":18,"o":18}},"x":{"d":"31,-516r224,0r0,63r-66,0r0,2v3,1,7,3,9,6v4,4,3,4,7,9r100,126r101,-126v4,-5,4,-5,8,-9v2,-3,5,-5,8,-6r0,-2r-72,0r0,-63r206,0r0,63r-59,0r-154,184r164,206r62,0r0,63r-224,0r0,-63r69,0r0,-2v-3,-1,-6,-3,-8,-6v-4,-4,-4,-4,-8,-9r-110,-138r-109,138v-4,5,-3,5,-7,9v-2,3,-6,5,-9,6r0,2r67,0r0,63r-206,0r0,-63r59,0r167,-200r-154,-190r-65,0r0,-63","w":593},"y":{"d":"10,-516r218,0r0,63r-65,0r123,321v3,9,6,20,8,30v4,16,4,15,6,24r2,0v2,-9,2,-8,6,-24v2,-10,5,-21,8,-30r115,-321r-73,0r0,-63r206,0r0,63r-57,0r-158,435v-18,51,-35,94,-53,130v-18,36,-37,64,-57,86v-20,22,-43,40,-67,50v-24,10,-52,15,-85,15v-13,0,-25,-1,-35,-3v-10,-2,-19,-3,-26,-6r0,-68v6,2,15,4,26,6v11,2,22,3,32,3v29,0,58,-9,87,-29v29,-20,53,-54,72,-101r17,-42r-189,-476r-61,0r0,-63","w":574,"k":{".":92,"a":18,"e":18,"o":18}},"z":{"d":"478,0r-427,0r0,-60r287,-344v7,-9,16,-17,24,-25r24,-24r-244,0r-4,83r-74,0r4,-146r416,0r0,57r-297,357v-6,7,-12,14,-19,20v-7,6,-13,12,-20,19r256,0r8,-87r74,0","w":537},"{":{"d":"279,-706v-19,0,-33,1,-45,4v-12,3,-21,8,-28,16v-7,8,-12,21,-14,36v-2,15,-3,35,-3,60v0,12,-1,27,-1,44r0,52r0,52v0,0,-1,31,-1,43v0,38,-4,69,-13,91v-9,22,-28,38,-57,48r0,2v29,10,48,26,57,48v9,22,13,53,13,91v0,12,-1,26,-1,43r0,53r0,52v0,0,-1,31,-1,43v0,25,2,45,5,60v3,15,7,28,14,36v7,8,17,13,29,16v12,3,27,4,46,4r0,63r-56,0v-16,0,-31,-1,-45,-5v-14,-4,-27,-11,-38,-22v-11,-11,-20,-26,-27,-46v-7,-20,-10,-46,-10,-78v0,-15,1,-32,1,-50r0,-56r0,-56v0,0,1,-36,1,-51v0,-35,-3,-62,-9,-82v-6,-20,-20,-30,-41,-30r-20,0r0,-68r20,0v21,0,35,-10,41,-30v6,-20,9,-47,9,-82v0,-15,1,-33,1,-51r0,-56r0,-56v0,0,1,-35,1,-50v0,-32,3,-58,9,-78v6,-20,16,-35,26,-46v10,-11,22,-18,36,-22v14,-4,29,-5,45,-5r56,0r0,63","w":314},"|":{"d":"77,-750r68,0r0,1000r-68,0r0,-1000","w":222},"}":{"d":"35,188v19,0,33,-1,45,-4v12,-3,21,-8,28,-16v7,-8,12,-21,14,-36v2,-15,3,-35,3,-60v0,-12,1,-26,1,-43r0,-52r0,-53v0,0,1,-31,1,-43v0,-19,1,-36,3,-51v2,-15,5,-28,10,-40v5,-12,13,-20,22,-28v9,-8,20,-15,35,-20r0,-2v-15,-5,-26,-11,-35,-19v-9,-8,-17,-17,-22,-29v-5,-12,-8,-25,-10,-40v-2,-15,-3,-32,-3,-51v0,-12,1,-26,1,-43r0,-52r0,-52v0,0,1,-32,1,-44v0,-25,-2,-45,-5,-60v-3,-15,-7,-28,-14,-36v-7,-8,-17,-13,-29,-16v-12,-3,-27,-4,-46,-4r0,-63r56,0v16,0,31,1,45,5v14,4,27,11,38,22v11,11,20,26,27,46v7,20,10,46,10,78v0,15,-1,32,-1,50r0,56r0,56v0,0,-1,36,-1,51v0,35,3,62,9,82v6,20,20,30,41,30r20,0r0,68r-20,0v-21,0,-35,10,-41,30v-6,20,-9,47,-9,82v0,15,-1,33,-1,51r0,56r0,56v0,0,-1,35,-1,50v0,32,-3,58,-9,78v-6,20,-16,35,-26,46v-10,11,-22,18,-36,22v-14,4,-29,5,-45,5r-56,0r0,-63","w":314},"~":{"d":"69,-233v5,-11,12,-21,19,-31v7,-10,16,-20,26,-28v10,-8,21,-16,34,-21v13,-5,28,-8,45,-8v19,0,39,4,58,11v19,7,38,14,57,23v19,9,36,16,53,23v17,7,32,11,47,11v19,0,36,-7,50,-22v14,-15,26,-31,37,-48r36,50v-7,11,-15,21,-23,31v-8,10,-18,20,-28,28v-10,8,-21,16,-33,21v-12,5,-26,8,-42,8v-17,0,-36,-4,-55,-11v-19,-7,-39,-14,-58,-23v-19,-9,-38,-16,-55,-23v-17,-7,-33,-11,-47,-11v-21,0,-38,7,-52,22v-14,15,-25,31,-33,48","w":600},"\u00a0":{"w":278,"k":{"T":74,"V":74,"W":55,"Y":74,"y":30,"b":12,"w":30,"A":37,"v":30,"g":12}}}});;Cufon.registerFont({"w":592,"face":{"font-family":"Caecilia Com 85 Heavy","font-weight":850,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 6 9 2 3 3 6 2 2 4","ascent":"769","descent":"-231","x-height":"12","bbox":"-76 -851 1128 277","underline-thickness":"50","underline-position":"-50","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":296,"k":{"T":55,"V":74,"W":55,"Y":92,"y":37,"t":18,"w":30,"A":24,"v":30}},"!":{"d":"69,-769r158,0r-12,545r-134,0xm54,-73v0,-30,9,-52,27,-67v18,-15,40,-23,67,-23v27,0,49,8,67,23v18,15,27,37,27,67v0,25,-8,47,-24,64v-16,17,-40,26,-70,26v-30,0,-54,-9,-70,-26v-16,-17,-24,-39,-24,-64","w":296},"\"":{"d":"138,-722v0,7,0,18,-1,32v-1,14,-2,30,-3,48v-1,18,-2,36,-4,55v-2,19,-3,37,-4,55v-2,26,-2,26,-4,48v-1,14,-1,26,-2,34v-1,21,-6,35,-14,42v-8,7,-18,10,-31,10v-13,0,-23,-3,-31,-10v-8,-7,-13,-21,-14,-42v-1,-7,-1,-18,-2,-33v-1,-15,-3,-31,-4,-49v-1,-18,-2,-36,-4,-55v-2,-19,-3,-37,-4,-55v-1,-18,-2,-34,-3,-48v-1,-14,-1,-25,-1,-32v0,-17,6,-32,17,-44v11,-12,27,-18,46,-18v19,0,35,6,46,18v11,12,17,27,17,44xm321,-722v0,7,0,18,-1,32v-1,14,-1,30,-2,48v-1,18,-2,36,-4,55v-2,19,-4,37,-5,55v-2,26,-1,26,-3,48v-1,14,-2,26,-3,34v-1,21,-6,35,-14,42v-8,7,-18,10,-31,10v-13,0,-23,-3,-31,-10v-8,-7,-13,-21,-14,-42v-1,-7,-2,-18,-3,-33v-1,-15,-2,-31,-3,-49v-1,-18,-3,-36,-5,-55v-2,-19,-3,-37,-4,-55v-1,-18,-1,-34,-2,-48v-1,-14,-1,-25,-1,-32v0,-17,6,-32,17,-44v11,-12,27,-18,46,-18v19,0,35,6,46,18v11,12,17,27,17,44","w":333},"#":{"d":"355,-411r-102,0r-17,122r102,0xm394,-700r90,0r-27,203r86,0r0,86r-98,0r-16,122r85,0r0,86r-97,0r-27,203r-90,0r27,-203r-102,0r-28,203r-90,0r28,-203r-86,0r0,-86r98,0r16,-122r-85,0r0,-86r97,0r27,-203r90,0r-27,203r102,0"},"$":{"d":"245,-298v-36,-5,-68,-12,-96,-21v-28,-9,-51,-21,-71,-37v-20,-16,-36,-36,-46,-59v-10,-23,-15,-51,-15,-83v0,-63,20,-114,61,-152v41,-38,96,-60,167,-67r0,-134r96,0r0,134v34,0,67,3,99,9v32,6,64,13,95,22r0,171r-120,0r0,-79v-11,-4,-23,-7,-36,-10v-13,-3,-26,-5,-38,-5r0,183v34,5,65,12,94,21v29,9,53,21,74,37v21,16,37,36,49,60v12,24,17,55,17,92v0,40,-7,74,-23,103v-16,29,-36,53,-59,71v-23,18,-49,31,-76,40v-27,9,-53,13,-76,14r0,134r-96,0r0,-134v-45,-1,-87,-4,-128,-10v-41,-6,-73,-13,-97,-22r0,-188r140,0r0,91r40,9v0,0,28,5,45,6r0,-196xm245,-609v-29,5,-51,17,-66,33v-15,16,-22,35,-22,58v0,13,2,23,7,32v5,9,12,17,20,23v8,6,18,11,28,14v10,3,22,6,33,8r0,-168xm341,-102v13,-1,27,-4,39,-9v12,-5,23,-12,32,-21v9,-9,16,-19,22,-30v6,-11,9,-24,9,-38v0,-20,-8,-38,-23,-53v-15,-15,-41,-25,-79,-29r0,180"},"%":{"d":"263,-558v0,-21,-5,-40,-15,-56v-10,-16,-27,-23,-50,-23v-25,0,-43,8,-53,25v-10,17,-15,37,-15,60v0,21,4,38,14,54v10,16,27,24,51,24v13,0,24,-3,33,-8v9,-5,16,-12,21,-20v5,-8,9,-17,11,-27v2,-10,3,-20,3,-29xm365,-559v0,27,-5,50,-14,71v-9,21,-22,38,-37,52v-15,14,-33,25,-54,32v-21,7,-43,10,-66,10v-56,0,-98,-14,-125,-43v-27,-29,-41,-68,-41,-118v0,-26,5,-49,14,-69v9,-20,22,-37,37,-51v15,-14,33,-24,54,-31v21,-7,43,-11,66,-11v30,0,56,5,77,15v21,10,39,21,52,36v13,15,22,32,28,51v6,19,9,37,9,56xm685,-147v0,-21,-5,-39,-15,-55v-10,-16,-27,-24,-50,-24v-25,0,-43,9,-53,26v-10,17,-15,36,-15,59v0,21,4,39,14,55v10,16,27,23,51,23v13,0,24,-3,33,-8v9,-5,16,-12,21,-20v5,-8,9,-17,11,-27v2,-10,3,-20,3,-29xm787,-148v0,27,-5,50,-14,71v-9,21,-22,38,-37,52v-15,14,-33,24,-54,31v-21,7,-43,11,-66,11v-56,0,-98,-14,-125,-43v-27,-29,-41,-68,-41,-118v0,-26,5,-49,14,-69v9,-20,22,-37,37,-51v15,-14,33,-25,54,-32v21,-7,43,-10,66,-10v30,0,56,4,77,14v21,10,39,23,52,38v13,15,22,31,28,50v6,19,9,37,9,56xm578,-758r80,44r-421,772r-80,-44","w":815},"&":{"d":"485,-439r224,0r0,96r-54,0v-2,40,-9,77,-21,109v-12,32,-29,62,-52,90v11,13,24,24,38,31v14,7,32,11,51,11v5,0,11,0,17,-1v6,-1,13,-1,18,-2r0,103v-9,0,-17,0,-26,1v-9,1,-18,1,-27,1v-19,0,-36,-1,-50,-2v-14,-1,-26,-4,-37,-8v-11,-4,-21,-11,-30,-18v-9,-7,-19,-17,-29,-29v-16,14,-31,26,-47,35v-16,9,-32,16,-49,22v-17,6,-34,10,-53,13v-19,3,-39,4,-62,4v-37,0,-70,-5,-100,-15v-30,-10,-57,-24,-79,-42v-22,-18,-39,-40,-51,-65v-12,-25,-19,-54,-19,-85v0,-47,13,-87,39,-118v26,-31,59,-58,100,-82v-16,-17,-29,-32,-40,-46v-11,-14,-19,-28,-26,-40v-7,-12,-11,-24,-14,-36v-3,-12,-4,-23,-4,-36v0,-23,4,-44,14,-64v10,-20,24,-37,42,-52v18,-15,39,-28,64,-36v25,-8,52,-12,82,-12v31,0,58,4,80,12v22,8,40,19,55,33v15,14,26,30,33,49v7,19,11,38,11,59v0,30,-10,60,-29,89v-19,29,-53,59,-102,88r157,164v11,-15,20,-33,27,-56v7,-23,11,-46,11,-69r-62,0r0,-96xm369,-553v0,-23,-7,-39,-22,-49v-15,-10,-31,-14,-50,-14v-9,0,-18,2,-27,4v-9,2,-17,6,-24,12v-7,6,-14,12,-18,21v-4,9,-6,19,-6,31v0,14,5,29,16,45v11,16,26,32,45,48v9,-4,19,-9,29,-15v10,-6,19,-14,28,-22v9,-8,16,-18,21,-28v5,-10,8,-21,8,-33xm257,-316v-25,13,-43,30,-57,50v-14,20,-21,40,-21,63v0,13,3,26,9,39v6,13,14,25,26,36v12,11,26,19,44,26v18,7,41,11,66,11v17,0,35,-3,53,-9v18,-6,37,-16,56,-33","w":741},"'":{"d":"174,-722v0,7,0,18,-1,32v-1,14,-2,30,-3,48v-1,18,-2,36,-4,55v-2,19,-3,37,-4,55v-2,26,-2,26,-4,48v-1,14,-1,26,-2,34v-1,21,-6,35,-14,42v-8,7,-18,10,-31,10v-13,0,-23,-3,-31,-10v-8,-7,-13,-21,-14,-42v-1,-7,-1,-18,-2,-33v-1,-15,-3,-31,-4,-49v-1,-18,-2,-36,-4,-55v-2,-19,-3,-37,-4,-55v-1,-18,-2,-34,-3,-48v-1,-14,-1,-25,-1,-32v0,-17,6,-32,17,-44v11,-12,27,-18,46,-18v19,0,35,6,46,18v11,12,17,27,17,44","w":222},"(":{"d":"325,-736v-50,77,-87,156,-111,240v-24,84,-35,170,-35,257v0,36,2,71,6,107v4,36,11,73,21,110v10,37,25,76,42,116v17,40,39,81,66,125r-102,58v-34,-49,-63,-96,-86,-141v-23,-45,-40,-89,-54,-132v-14,-43,-24,-85,-30,-126v-6,-41,-9,-82,-9,-123v0,-49,4,-96,11,-142v7,-46,19,-92,35,-137v16,-45,36,-89,61,-134v25,-45,55,-90,90,-137","w":296},")":{"d":"-29,218v50,-77,87,-156,111,-240v24,-84,35,-170,35,-257v0,-36,-2,-71,-6,-107v-4,-36,-11,-73,-21,-110v-10,-37,-25,-76,-42,-116v-17,-40,-39,-81,-66,-125r102,-58v34,49,63,96,86,141v23,45,40,89,54,132v14,43,24,85,30,126v6,41,9,82,9,123v0,49,-4,97,-11,143v-7,46,-19,91,-35,136v-16,45,-36,89,-61,134v-25,45,-55,90,-90,137","w":296},"*":{"d":"139,-769r92,0r-23,114r2,2r86,-80r45,80r-110,36r0,2r109,37r-46,79r-84,-79r-2,2r22,115r-90,0r22,-115r-2,-2r-84,79r-46,-79r109,-37r0,-2r-110,-36r45,-80r86,80r2,-2","w":370},"+":{"d":"246,-506r108,0r0,199r199,0r0,108r-199,0r0,199r-108,0r0,-199r-199,0r0,-108r199,0r0,-199","w":600},",":{"d":"22,161v33,-26,54,-49,64,-69v10,-20,16,-38,16,-55v0,-13,-2,-24,-8,-33v-6,-9,-13,-18,-20,-26v-7,-8,-12,-17,-18,-26v-6,-9,-9,-20,-9,-33v0,-25,9,-45,25,-60v16,-15,36,-22,60,-22v18,0,34,4,48,12v14,8,25,18,34,31v9,13,16,28,21,45v5,17,7,33,7,50v0,51,-14,97,-40,137v-26,40,-64,78,-115,111","w":296,"k":{" ":37}},"-":{"d":"67,-358r292,0r0,120r-292,0r0,-120","w":426},".":{"d":"54,-73v0,-30,9,-52,27,-67v18,-15,40,-23,67,-23v27,0,49,8,67,23v18,15,27,37,27,67v0,25,-8,47,-24,64v-16,17,-40,26,-70,26v-30,0,-54,-9,-70,-26v-16,-17,-24,-39,-24,-64","w":296,"k":{" ":37}},"\/":{"d":"273,-784r101,36r-295,832r-101,-36","w":352},"0":{"d":"29,-331v0,-73,7,-134,23,-183v16,-49,37,-89,63,-119v26,-30,55,-52,89,-65v34,-13,69,-19,105,-19v38,0,73,8,104,23v31,15,58,38,80,68v22,30,39,69,51,115v12,46,19,100,19,161v0,62,-8,116,-23,162v-15,46,-35,84,-60,114v-25,30,-55,53,-88,68v-33,15,-68,23,-105,23v-34,0,-66,-6,-97,-17v-31,-11,-59,-29,-83,-56v-24,-27,-43,-62,-57,-107v-14,-45,-21,-101,-21,-168xm181,-343v0,46,2,85,7,116v5,31,12,57,22,76v10,19,21,33,36,41v15,8,32,13,51,13v14,0,27,-4,41,-11v14,-7,26,-21,37,-40v11,-19,19,-44,26,-77v7,-33,10,-74,10,-125v0,-53,-3,-97,-10,-130v-7,-33,-15,-58,-26,-76v-11,-18,-23,-32,-36,-38v-13,-6,-27,-9,-40,-9v-15,0,-30,4,-44,12v-14,8,-26,21,-37,41v-11,20,-20,46,-27,80v-7,34,-10,76,-10,127"},"1":{"d":"119,-102r135,0r0,-466v-9,8,-9,8,-17,14v-5,4,-11,9,-18,14r-121,81r-57,-92r252,-149r107,0r0,598r137,0r0,102r-418,0r0,-102"},"2":{"d":"24,-96v13,-9,30,-22,53,-39v23,-17,48,-37,75,-60v27,-23,54,-47,82,-74v28,-27,52,-53,75,-81v23,-28,41,-55,55,-82v14,-27,22,-52,22,-75v0,-18,-4,-33,-10,-45v-6,-12,-14,-23,-24,-30v-10,-7,-20,-13,-32,-16v-12,-3,-22,-5,-32,-5v-36,0,-64,11,-84,34v-20,23,-33,51,-36,84r-140,0v0,-20,4,-43,12,-70v8,-27,22,-52,42,-76v20,-24,48,-44,82,-61v34,-17,77,-25,130,-25v27,0,54,4,82,11v28,7,55,18,78,34v23,16,41,37,56,63v15,26,22,58,22,95v0,35,-8,70,-24,104v-16,34,-39,68,-67,101v-28,33,-61,66,-99,99v-38,33,-77,67,-119,100r0,2v11,-1,23,-3,36,-4v13,-1,25,-2,36,-2r258,0r0,114r-529,0r0,-96"},"3":{"d":"185,-407v33,0,60,-4,83,-11v23,-7,41,-17,55,-28v14,-11,25,-24,31,-39v6,-15,9,-29,9,-44v0,-24,-8,-43,-25,-58v-17,-15,-38,-22,-65,-22v-15,0,-29,2,-42,7v-13,5,-25,13,-35,22v-10,9,-19,19,-25,32v-6,13,-9,26,-9,41r-140,0v0,-23,6,-47,16,-72v10,-25,26,-47,47,-68v21,-21,48,-38,81,-51v33,-13,71,-19,116,-19v33,0,64,5,92,13v28,8,51,20,71,35v20,15,36,34,47,56v11,22,17,46,17,73v0,21,-4,41,-11,60v-7,19,-16,35,-29,50v-13,15,-27,28,-45,38v-18,10,-38,17,-59,20r0,2v23,1,44,5,65,12v21,7,39,17,55,31v16,14,29,32,38,53v9,21,14,45,14,73v0,19,-4,40,-11,65v-7,25,-21,49,-42,72v-21,23,-51,42,-90,58v-39,16,-90,23,-154,23v-48,0,-89,-4,-123,-11v-34,-7,-65,-18,-93,-31r0,-135v35,19,71,34,106,43v35,9,68,14,99,14v53,0,93,-9,121,-27v28,-18,41,-44,41,-78v0,-22,-7,-40,-19,-54v-12,-14,-28,-24,-48,-31v-20,-7,-41,-13,-66,-15v-25,-2,-49,-3,-73,-3r0,-96"},"4":{"d":"335,-572r-2,0r-185,279v13,-2,26,-3,39,-3r148,0r0,-276xm335,-188r-320,0r0,-108r279,-404r181,0r0,404r122,0r0,108r-122,0r0,86r69,0r0,102r-277,0r0,-102r68,0r0,-86"},"5":{"d":"75,-700r431,0r0,102r-291,0r0,142v32,0,67,2,104,8v37,6,73,17,105,33v32,16,59,38,80,67v21,29,32,66,32,112v0,39,-7,73,-20,104v-13,31,-32,58,-57,80v-25,22,-56,39,-93,51v-37,12,-79,18,-126,18v-34,0,-66,-3,-98,-9v-32,-6,-60,-13,-85,-22r0,-114v8,4,19,8,33,12v14,4,29,7,46,10v17,3,34,4,51,6v17,2,34,3,49,3v28,0,52,-3,72,-10v20,-7,35,-16,47,-27v12,-11,21,-23,27,-38v6,-15,8,-30,8,-45v0,-24,-6,-44,-17,-61v-11,-17,-30,-30,-55,-40v-25,-10,-57,-18,-97,-23v-40,-5,-89,-7,-146,-7r0,-352"},"6":{"d":"430,-224v0,-19,-4,-37,-10,-52v-6,-15,-15,-28,-26,-38v-11,-10,-24,-18,-38,-23v-14,-5,-29,-8,-45,-8v-23,0,-45,5,-66,15v-21,10,-40,23,-55,40v0,36,3,66,10,91v7,25,16,44,28,59v12,15,26,26,41,33v15,7,32,10,49,10v24,0,43,-5,58,-15v15,-10,26,-21,34,-34v8,-13,13,-27,16,-42v3,-15,4,-27,4,-36xm534,-588v-22,-8,-44,-15,-66,-20v-22,-5,-42,-7,-61,-7v-39,0,-73,7,-99,21v-26,14,-47,32,-64,54v-17,22,-30,47,-39,74v-9,27,-15,53,-18,79r2,2v41,-45,96,-68,163,-68v27,0,53,4,78,13v25,9,46,24,66,42v20,18,36,41,48,68v12,27,18,59,18,95v0,29,-5,58,-14,88v-9,30,-23,57,-42,81v-19,24,-45,45,-76,60v-31,15,-69,23,-113,23v-39,0,-75,-7,-108,-20v-33,-13,-63,-34,-87,-61v-24,-27,-43,-62,-57,-104v-14,-42,-21,-90,-21,-147v0,-59,8,-112,22,-161v14,-49,36,-92,66,-128v30,-36,66,-63,110,-83v44,-20,97,-30,157,-30v26,0,51,1,73,3v22,2,46,8,71,17"},"7":{"d":"50,-700r493,0r0,88r-246,493v-20,41,-44,80,-71,119r-158,0r42,-63v13,-21,25,-42,36,-63r213,-402v5,-11,11,-21,17,-30v6,-9,14,-18,23,-28r-349,0r0,-114"},"8":{"d":"51,-530v0,-26,6,-51,17,-74v11,-23,28,-42,50,-59v22,-17,48,-29,80,-39v32,-10,69,-15,110,-15v45,0,83,6,114,17v31,11,55,25,74,42v19,17,32,36,40,57v8,21,12,41,12,61v0,23,-4,44,-10,62v-6,18,-15,34,-27,48v-12,14,-27,25,-45,36v-18,11,-37,20,-59,29r0,2v48,13,87,34,117,65v30,31,44,70,44,116v0,38,-8,70,-23,95v-15,25,-36,45,-62,61v-26,16,-55,28,-89,34v-34,6,-69,9,-106,9v-31,0,-62,-3,-93,-9v-31,-6,-60,-16,-85,-30v-25,-14,-46,-32,-62,-56v-16,-24,-24,-54,-24,-89v0,-45,15,-83,44,-115v29,-32,70,-56,123,-72r0,-2v-50,-15,-85,-38,-107,-69v-22,-31,-33,-66,-33,-105xm408,-529v0,-27,-10,-48,-30,-61v-20,-13,-46,-19,-79,-19v-32,0,-58,7,-78,23v-20,16,-30,37,-30,62v0,23,9,44,28,60v19,16,46,32,82,47v20,-10,37,-19,50,-28v13,-9,24,-17,33,-26v9,-9,14,-18,18,-27v4,-9,6,-20,6,-31xm428,-185v0,-12,-2,-23,-6,-33v-4,-10,-12,-20,-22,-29v-10,-9,-24,-18,-42,-27v-18,-9,-40,-18,-67,-27v-81,29,-121,68,-121,117v0,12,3,23,8,34v5,11,14,21,24,30v10,9,22,16,38,21v16,5,35,8,56,8v42,0,75,-9,98,-28v23,-19,34,-41,34,-66"},"9":{"d":"162,-476v0,19,4,37,10,52v6,15,15,28,26,38v11,10,24,18,38,23v14,5,29,8,45,8v23,0,45,-5,66,-15v21,-10,40,-23,55,-40v0,-36,-3,-66,-10,-91v-7,-25,-16,-44,-28,-59v-12,-15,-26,-26,-41,-33v-15,-7,-32,-10,-49,-10v-24,0,-43,5,-58,15v-15,10,-26,20,-34,34v-8,14,-13,28,-16,42v-3,14,-4,27,-4,36xm58,-112v22,8,44,15,66,20v22,5,42,7,61,7v39,0,71,-7,98,-21v27,-14,48,-32,65,-54v17,-22,30,-47,39,-74v9,-27,15,-53,18,-79r-2,-2v-41,45,-96,68,-163,68v-27,0,-53,-4,-78,-13v-25,-9,-46,-24,-66,-42v-20,-18,-36,-41,-48,-68v-12,-27,-18,-59,-18,-95v0,-29,5,-58,14,-88v9,-30,23,-57,42,-81v19,-24,45,-45,76,-60v31,-15,69,-23,113,-23v39,0,75,7,108,20v33,13,63,34,87,61v24,27,43,62,57,104v14,42,21,90,21,147v0,59,-8,112,-22,161v-14,49,-36,92,-66,128v-30,36,-66,63,-110,83v-44,20,-97,30,-157,30v-26,0,-51,-1,-73,-3v-22,-2,-46,-8,-71,-17"},":":{"d":"54,-445v0,-30,9,-52,27,-67v18,-15,40,-23,67,-23v27,0,49,8,67,23v18,15,27,37,27,67v0,25,-8,47,-24,64v-16,17,-40,26,-70,26v-30,0,-54,-9,-70,-26v-16,-17,-24,-39,-24,-64xm54,-73v0,-30,9,-52,27,-67v18,-15,40,-23,67,-23v27,0,49,8,67,23v18,15,27,37,27,67v0,25,-8,47,-24,64v-16,17,-40,26,-70,26v-30,0,-54,-9,-70,-26v-16,-17,-24,-39,-24,-64","w":296},";":{"d":"22,161v33,-26,54,-49,64,-69v10,-20,16,-38,16,-55v0,-13,-2,-24,-8,-33v-6,-9,-13,-18,-20,-26v-7,-8,-12,-17,-18,-26v-6,-9,-9,-20,-9,-33v0,-25,9,-45,25,-60v16,-15,36,-22,60,-22v18,0,34,4,48,12v14,8,25,18,34,31v9,13,16,28,21,45v5,17,7,33,7,50v0,51,-14,97,-40,137v-26,40,-64,78,-115,111xm54,-445v0,-30,9,-52,27,-67v18,-15,40,-23,67,-23v27,0,49,8,67,23v18,15,27,37,27,67v0,25,-8,47,-24,64v-16,17,-40,26,-70,26v-30,0,-54,-9,-70,-26v-16,-17,-24,-39,-24,-64","w":296},"<":{"d":"47,-299r506,-215r0,108r-386,153r386,153r0,108r-506,-215r0,-92","w":600},"=":{"d":"47,-403r506,0r0,108r-506,0r0,-108xm47,-211r506,0r0,108r-506,0r0,-108","w":600},">":{"d":"47,-406r0,-108r506,215r0,92r-506,215r0,-108r386,-153","w":600},"?":{"d":"59,-762v28,-7,56,-12,83,-16v27,-4,53,-6,77,-6v50,0,91,7,123,20v32,13,58,29,76,48v18,19,31,38,38,60v7,22,10,41,10,58v0,35,-6,64,-18,88v-12,24,-28,45,-47,62v-19,17,-39,32,-60,44r-60,34v-19,11,-35,22,-47,34v-12,12,-18,25,-18,40v0,7,2,16,7,26v5,10,10,19,15,26r-126,37v-11,-15,-19,-30,-26,-47v-7,-17,-10,-35,-10,-52v0,-24,6,-44,18,-60v12,-16,26,-31,44,-44v18,-13,36,-24,57,-34v21,-10,39,-22,57,-34v18,-12,32,-26,44,-42v12,-16,18,-36,18,-59v0,-16,-3,-30,-10,-41v-7,-11,-16,-20,-28,-28v-12,-8,-25,-14,-40,-17v-15,-3,-30,-5,-47,-5v-19,0,-39,2,-61,5v-22,3,-43,8,-64,14xm68,-73v0,-30,9,-52,27,-67v18,-15,40,-23,67,-23v27,0,49,8,67,23v18,15,27,37,27,67v0,25,-8,47,-24,64v-16,17,-40,26,-70,26v-30,0,-54,-9,-70,-26v-16,-17,-24,-39,-24,-64","w":481},"@":{"d":"488,-389v0,-33,-7,-57,-21,-71v-14,-14,-33,-22,-58,-22v-20,0,-38,5,-55,16v-17,11,-32,25,-44,42v-12,17,-21,37,-28,58v-7,21,-10,41,-10,60v0,30,7,54,20,71v13,17,31,26,54,26v21,0,40,-6,58,-18v18,-12,32,-27,44,-45v12,-18,23,-37,30,-58v7,-21,10,-41,10,-59xm536,-537r71,0r-68,244v-8,29,-8,29,-12,45v-3,10,-4,17,-4,22v0,7,3,12,7,16v4,4,13,6,26,6v13,0,26,-6,40,-16v14,-10,27,-24,38,-42v11,-18,20,-39,27,-63v7,-24,11,-50,11,-77v0,-34,-7,-66,-21,-94v-14,-28,-33,-52,-56,-72v-23,-20,-50,-37,-81,-48v-31,-11,-64,-16,-98,-16v-43,0,-82,8,-117,24v-35,16,-66,36,-91,62v-25,26,-45,56,-59,90v-14,34,-21,71,-21,109v0,43,8,81,23,115v15,34,35,64,61,88v26,24,56,43,90,56v34,13,69,20,106,20v52,0,98,-7,139,-22v41,-15,74,-36,101,-62r82,0v-13,24,-30,46,-50,66v-20,20,-43,38,-70,52v-27,14,-58,26,-92,34v-34,8,-70,12,-110,12v-52,0,-101,-8,-146,-24v-45,-16,-84,-41,-117,-72v-33,-31,-60,-69,-79,-114v-19,-45,-28,-96,-28,-153v0,-51,10,-98,28,-142v18,-44,43,-83,76,-115v33,-32,74,-57,120,-76v46,-19,97,-28,154,-28v49,0,95,8,137,22v42,14,78,34,109,60v31,26,56,58,74,95v18,37,26,77,26,121v0,49,-9,91,-26,126v-17,35,-37,64,-62,87v-25,23,-52,39,-81,50v-29,11,-55,16,-78,16v-25,0,-42,-6,-53,-17v-11,-11,-16,-24,-17,-41r-2,0v-13,15,-31,29,-51,41v-20,12,-43,17,-69,17v-19,0,-37,-4,-53,-11v-16,-7,-30,-18,-42,-32v-12,-14,-23,-31,-30,-50v-7,-19,-10,-41,-10,-65v0,-35,6,-67,18,-99v12,-32,28,-60,48,-84v20,-24,44,-44,70,-58v26,-14,53,-22,81,-22v49,0,87,25,113,76","w":800},"A":{"d":"411,-490v-5,-15,-10,-31,-15,-48v-5,-17,-8,-35,-11,-54r-2,0v-4,19,-9,36,-14,53v-5,17,-11,33,-17,49r-54,146r163,0xm498,-236r-241,0r-50,134r67,0r0,102r-260,0r0,-102r56,0r246,-598r161,0r231,598r56,0r0,102r-278,0r0,-102r57,0","w":778,"k":{"T":74,"V":74,"W":74,"Y":100,"y":55,"w":55,"v":55,"C":37,"G":37,"O":37,"Q":37,"U":45,"u":24}},"B":{"d":"103,-598r-75,0r0,-102r269,0v25,0,47,0,66,1v19,1,37,3,52,5v15,2,29,6,42,10v13,4,25,10,36,17v19,12,36,29,51,52v15,23,22,52,22,89v0,28,-5,52,-15,72v-10,20,-22,36,-37,49v-15,13,-30,22,-47,28v-17,6,-31,9,-44,9r0,2v24,0,47,4,69,11v22,7,43,18,60,33v17,15,30,33,40,54v10,21,16,46,16,75v0,23,-5,46,-14,69v-9,23,-24,43,-45,62v-21,19,-47,34,-81,45v-34,11,-75,17,-123,17r-311,0r0,-102r69,0r0,-496xm249,-414r68,0v30,0,56,-8,77,-24v21,-16,32,-40,32,-72v0,-30,-10,-52,-28,-66v-18,-14,-44,-22,-79,-22r-70,0r0,184xm249,-102r79,0v43,0,74,-10,93,-30v19,-20,29,-44,29,-72v0,-27,-10,-50,-30,-68v-20,-18,-49,-28,-86,-28r-85,0r0,198","w":648,"k":{"A":30}},"C":{"d":"516,-239r126,0r-6,216v-38,13,-75,22,-111,27v-36,5,-75,8,-117,8v-59,0,-112,-8,-158,-25v-46,-17,-85,-40,-117,-71v-32,-31,-56,-69,-73,-113v-17,-44,-26,-93,-26,-148v0,-47,8,-93,23,-137v15,-44,39,-84,70,-118v31,-34,71,-62,119,-82v48,-20,103,-30,168,-30v45,0,86,4,124,12v38,8,73,17,107,29r0,195r-126,0r0,-112v-17,-6,-34,-10,-49,-12v-15,-2,-32,-4,-50,-4v-42,0,-77,7,-106,21v-29,14,-53,33,-71,56v-18,23,-31,50,-39,80v-8,30,-12,61,-12,93v0,27,3,55,10,84v7,29,18,57,36,82v18,25,42,46,73,62v31,16,70,24,117,24v10,0,23,-1,39,-2v16,-1,30,-4,43,-8","w":685,"k":{"A":18}},"D":{"d":"103,-598r-75,0r0,-102r327,0v59,0,111,8,157,22v46,14,86,35,118,63v32,28,57,63,74,105v17,42,26,90,26,145v0,54,-9,104,-26,149v-17,45,-41,83,-72,115v-31,32,-70,57,-116,75v-46,18,-96,26,-153,26r-335,0r0,-102r75,0r0,-496xm334,-102v29,0,58,-5,87,-14v29,-9,55,-24,77,-44v22,-20,40,-47,54,-80v14,-33,20,-73,20,-121v0,-45,-6,-83,-19,-113v-13,-30,-30,-54,-52,-72v-22,-18,-48,-32,-77,-40v-29,-8,-59,-12,-92,-12r-83,0r0,496r85,0","w":759,"k":{"V":55,"W":45,"Y":74,"A":55,",":37,".":37}},"E":{"d":"431,-220r120,0r-8,220r-503,0r0,-102r63,0r0,-496r-75,0r0,-102r512,0r6,206r-120,0r-6,-104r-171,0r0,184r176,0r0,108r-176,0r0,204r174,0","w":593},"F":{"d":"420,-598r-165,0r0,194r193,0r0,108r-193,0r0,194r79,0r0,102r-288,0r0,-102r63,0r0,-496r-75,0r0,-102r506,0r6,206r-120,0","w":574,"k":{"i":18,"A":60,",":129,".":129,"a":74,"e":45,"o":45,"r":30}},"G":{"d":"432,-346r276,0r0,108r-64,0r0,217v-41,11,-81,20,-118,25v-37,5,-76,8,-118,8v-59,0,-112,-8,-158,-25v-46,-17,-85,-40,-117,-71v-32,-31,-56,-69,-73,-113v-17,-44,-26,-93,-26,-148v0,-49,8,-95,23,-139v15,-44,39,-84,71,-118v32,-34,72,-60,120,-80v48,-20,105,-30,171,-30v29,0,54,1,77,4v23,3,43,6,62,10v19,4,37,9,52,14v23,8,23,7,44,14r0,195r-126,0r0,-115v-17,-5,-34,-9,-52,-11v-18,-2,-34,-3,-47,-3v-44,0,-81,7,-111,21v-30,14,-55,33,-74,56v-19,23,-32,50,-40,80v-8,30,-12,61,-12,93v0,27,3,55,10,84v7,29,18,57,36,82v18,25,42,46,73,62v31,16,70,24,117,24v15,0,29,-1,40,-2v11,-1,23,-2,36,-4r0,-130r-72,0r0,-108","w":722},"H":{"d":"533,-598r-63,0r0,-102r272,0r0,102r-63,0r0,496r63,0r0,102r-272,0r0,-102r63,0r0,-194r-288,0r0,194r63,0r0,102r-272,0r0,-102r63,0r0,-496r-63,0r0,-102r272,0r0,102r-63,0r0,194r288,0r0,-194","w":778},"I":{"d":"103,-598r-63,0r0,-102r272,0r0,102r-63,0r0,496r63,0r0,102r-272,0r0,-102r63,0r0,-496","w":352},"J":{"d":"40,-700r272,0r0,102r-63,0r0,392v0,55,-5,102,-15,143v-10,41,-24,77,-44,109v-20,32,-46,59,-77,83v-31,24,-69,47,-112,68r-52,-101v27,-12,49,-26,69,-43v20,-17,36,-38,48,-63v12,-25,22,-55,28,-90v6,-35,9,-76,9,-124r0,-374r-63,0r0,-102","w":333,"k":{"A":37,"u":30,"a":12,"e":12,"o":12}},"K":{"d":"40,-102r63,0r0,-496r-63,0r0,-102r272,0r0,102r-63,0r0,223r188,-177v13,-13,25,-22,34,-29v9,-7,18,-12,27,-15r0,-2r-74,0r0,-102r284,0r0,102r-55,0r-258,231r270,265r56,0r0,102r-308,0r0,-102r82,0r0,-2r-25,-18v-9,-6,-16,-12,-23,-18r-198,-193r0,231r63,0r0,102r-272,0r0,-102","w":722,"k":{"y":55,"O":18,"u":18}},"L":{"d":"435,-227r121,0r-10,227r-500,0r0,-102r63,0r0,-496r-63,0r0,-102r272,0r0,102r-63,0r0,496r172,0","w":574,"k":{"T":92,"V":92,"W":92,"Y":111,"y":55}},"M":{"d":"728,-505r-2,0v-1,10,-3,23,-8,40v-5,17,-12,34,-19,52r-158,413r-140,0r-162,-420v-7,-18,-14,-35,-19,-52v-5,-17,-8,-30,-9,-40r-2,0r0,410r73,0r0,102r-248,0r0,-102r61,0r0,-496r-73,0r0,-102r257,0r180,465v8,20,9,21,17,43v6,15,9,32,11,52r2,0v1,-10,1,-19,3,-28v2,-9,5,-19,8,-28v3,-9,6,-20,10,-31r14,-38r163,-435r254,0r0,102r-73,0r0,496r70,0r0,102r-269,0r0,-102r59,0r0,-403","w":963},"N":{"d":"38,-102r65,0r0,-496r-89,0r0,-102r203,0r295,371v15,19,28,36,38,51v10,15,16,30,21,43r2,0r0,-363r-64,0r0,-102r253,0r0,102r-69,0r0,598r-108,0r-333,-418v-9,-11,-16,-21,-22,-31v-6,-10,-10,-18,-11,-23r-2,0r0,370r68,0r0,102r-247,0r0,-102","w":796,"k":{"A":24,",":24,".":24}},"O":{"d":"34,-350v0,-48,8,-94,23,-138v15,-44,38,-82,67,-115v29,-33,65,-59,108,-79v43,-20,93,-30,148,-30v59,0,110,10,154,28v44,18,80,44,108,76v28,32,50,70,64,114v14,44,20,93,20,144v0,49,-7,96,-20,140v-13,44,-33,81,-61,114v-28,33,-63,60,-107,79v-44,19,-97,29,-158,29v-61,0,-114,-10,-158,-29v-44,-19,-79,-46,-107,-79v-28,-33,-48,-70,-61,-114v-13,-44,-20,-91,-20,-140xm192,-350v0,34,3,66,10,96v7,30,17,56,32,78v15,22,34,41,58,54v24,13,53,20,88,20v35,0,64,-7,88,-20v24,-13,43,-32,58,-54v15,-22,25,-48,32,-78v7,-30,10,-62,10,-96v0,-34,-4,-66,-11,-96v-7,-30,-18,-56,-33,-78v-15,-22,-35,-41,-59,-54v-24,-13,-52,-20,-85,-20v-33,0,-62,7,-86,20v-24,13,-43,32,-58,54v-15,22,-26,48,-33,78v-7,30,-11,62,-11,96","w":760,"k":{"T":24,"V":55,"W":45,"Y":74,"A":37,",":37,".":37,"X":30}},"P":{"d":"109,-598r-69,0r0,-102r289,0v171,0,256,69,256,207v0,33,-6,63,-17,90v-11,27,-26,51,-46,71v-20,20,-45,35,-74,46v-29,11,-60,16,-95,16r-98,0r0,168r69,0r0,102r-284,0r0,-102r69,0r0,-496xm334,-372v37,0,64,-10,83,-30v19,-20,28,-49,28,-85v0,-36,-10,-64,-30,-83v-20,-19,-48,-28,-83,-28r-77,0r0,226r79,0","w":611,"k":{"A":92,",":129,".":129,"a":24,"e":45,"o":45}},"Q":{"d":"823,161v-11,3,-24,5,-39,7v-15,2,-25,3,-32,3v-25,0,-51,-4,-78,-12v-27,-8,-54,-17,-81,-29v-27,-12,-53,-24,-78,-38r-71,-38v-22,-12,-41,-22,-58,-30v-17,-8,-31,-12,-41,-12v-42,0,-82,-8,-119,-24v-37,-16,-70,-39,-99,-70v-29,-31,-51,-69,-68,-114v-17,-45,-25,-97,-25,-154v0,-48,8,-94,23,-138v15,-44,38,-82,67,-115v29,-33,65,-59,108,-79v43,-20,93,-30,148,-30v59,0,110,10,154,28v44,18,80,44,108,76v28,32,50,70,64,114v14,44,20,93,20,144v0,36,-3,70,-10,104v-7,34,-19,65,-34,94v-15,29,-33,54,-56,76v-23,22,-50,41,-82,55r0,2v21,5,40,11,60,21v30,14,30,15,60,30v20,10,40,19,60,26v20,7,42,11,64,11v5,0,12,0,18,-1v6,-1,12,-2,17,-3r0,96xm192,-350v0,34,3,66,10,96v7,30,17,56,32,78v15,22,34,41,58,54v24,13,53,20,88,20v35,0,64,-7,88,-20v24,-13,43,-32,58,-54v15,-22,25,-48,32,-78v7,-30,10,-62,10,-96v0,-34,-4,-66,-11,-96v-7,-30,-18,-56,-33,-78v-15,-22,-35,-41,-59,-54v-24,-13,-52,-20,-85,-20v-33,0,-62,7,-86,20v-24,13,-43,32,-58,54v-15,22,-26,48,-33,78v-7,30,-11,62,-11,96","w":760},"R":{"d":"103,-598r-69,0r0,-102r309,0v21,0,38,1,52,2v14,1,26,2,37,4v11,2,21,5,30,8v9,3,18,7,28,12v32,15,56,38,71,68v15,30,23,62,23,98v0,26,-5,50,-15,72v-10,22,-23,40,-39,56v-16,16,-32,29,-52,38v-20,9,-40,14,-59,15r0,2v17,1,32,7,45,17v13,10,28,28,45,57r63,105v11,18,21,30,30,36v9,6,18,8,27,8r26,0r0,102r-112,0v-9,0,-19,-2,-27,-4v-8,-2,-17,-7,-26,-14v-9,-7,-18,-18,-28,-32v-10,-14,-23,-32,-36,-55r-85,-146v-14,-23,-33,-35,-58,-35r-34,0r0,184r63,0r0,102r-272,0r0,-102r63,0r0,-496xm249,-394r75,0v39,0,68,-9,86,-26v18,-17,28,-42,28,-76v0,-34,-9,-59,-28,-76v-19,-17,-50,-26,-95,-26r-66,0r0,204","w":648,"k":{"T":18,"V":37,"W":37,"Y":37}},"S":{"d":"423,-593v-13,-5,-28,-9,-44,-12v-16,-3,-33,-5,-50,-5v-24,0,-45,2,-61,8v-16,6,-29,13,-39,22v-10,9,-17,18,-21,28v-4,10,-7,21,-7,31v0,25,8,43,24,53v16,10,36,19,59,24r84,21v26,7,52,15,78,23v26,8,48,19,69,34v21,15,38,34,51,58v13,24,19,54,19,90v0,33,-6,64,-17,92v-11,28,-28,52,-52,73v-24,21,-54,37,-90,48v-36,11,-80,17,-130,17v-39,0,-78,-3,-119,-8v-41,-5,-85,-16,-132,-31r0,-185r146,0r0,92v19,7,37,12,57,14v20,2,40,4,61,4v43,0,75,-9,95,-27v20,-18,29,-40,29,-67v0,-9,-2,-17,-5,-25v-3,-8,-8,-16,-16,-23v-8,-7,-21,-14,-36,-20v-15,-6,-34,-12,-57,-18r-77,-20v-36,-9,-66,-20,-91,-32v-25,-12,-44,-26,-59,-42v-15,-16,-26,-34,-33,-55v-7,-21,-10,-45,-10,-72v0,-28,5,-54,15,-79v10,-25,27,-48,49,-67v22,-19,50,-35,85,-46v35,-11,78,-17,127,-17v43,0,85,3,125,10v40,7,75,16,105,27r0,167r-132,0r0,-85","w":630},"T":{"d":"541,-598r-126,0r0,496r63,0r0,102r-272,0r0,-102r63,0r0,-496r-126,0r-6,96r-120,0r6,-198r638,0r6,198r-120,0","w":684,"k":{"y":129,"h":18,"i":37,"w":150,"A":92,",":92,":":74,";":74,"O":24,"u":129,".":92,"a":92,"e":92,"o":111,"r":92,"-":140}},"U":{"d":"459,-700r272,0r0,102r-63,0r0,320v0,55,-6,101,-18,138v-12,37,-30,66,-54,89v-24,23,-55,39,-92,49v-37,10,-82,14,-133,14v-57,0,-105,-6,-141,-18v-36,-12,-64,-30,-85,-52v-21,-22,-35,-50,-43,-81v-8,-31,-11,-66,-11,-105r0,-354r-63,0r0,-102r272,0r0,102r-63,0r0,329v0,25,3,48,7,69v4,21,11,38,22,53v11,15,26,25,44,33v18,8,41,12,69,12v23,0,45,-2,64,-7v19,-5,35,-13,49,-26v14,-13,24,-29,32,-51v8,-22,12,-50,12,-83r0,-329r-77,0r0,-102","w":759,"k":{"A":55,",":24,".":24}},"V":{"d":"479,-700r272,0r0,102r-54,0r-235,598r-163,0r-235,-598r-56,0r0,-102r284,0r0,102r-59,0r137,400v5,13,8,27,12,41v4,14,7,28,9,43r2,0v2,-15,5,-29,9,-43v4,-14,7,-28,12,-41r137,-400r-72,0r0,-102","w":759,"k":{"i":37,"A":74,",":111,":":74,";":74,"G":18,"O":37,"u":45,".":111,"a":74,"e":74,"o":65,"-":92}},"W":{"d":"856,-700r272,0r0,102r-56,0r-234,598r-155,0r-111,-328r-2,0r-120,328r-158,0r-234,-598r-56,0r0,-102r284,0r0,102r-59,0r137,400v5,13,8,27,12,41v4,14,7,28,9,43r2,0v2,-15,5,-29,9,-43v4,-14,7,-28,12,-41r105,-302r-36,-98r-66,0r0,-102r278,0r0,102r-63,0r123,400v4,13,7,27,11,41v4,14,7,28,9,43r2,0v2,-15,5,-29,9,-43v4,-14,7,-28,12,-41r137,-400r-73,0r0,-102","w":1130,"k":{"y":45,"i":18,"A":74,",":92,":":37,";":37,"O":37,"u":37,".":92,"a":74,"e":74,"o":74,"-":52}},"X":{"d":"445,-700r242,0r0,102r-51,0r-193,230r206,266r60,0r0,102r-296,0r0,-102r58,0r0,-2v-7,-5,-14,-11,-19,-16v-5,-5,-11,-12,-16,-19r-88,-116r-99,117v-5,7,-11,14,-18,20v-7,6,-13,11,-20,14r0,2r62,0r0,102r-260,0r0,-102r58,0r209,-241r-195,-255r-58,0r0,-102r296,0r0,102r-67,0r0,2v7,3,14,8,20,14v6,6,12,12,17,19r84,109r102,-116v5,-5,9,-10,14,-14v5,-4,11,-9,18,-12r0,-2r-66,0r0,-102","w":722},"Y":{"d":"477,-700r254,0r0,102r-55,0r-232,319r0,177r63,0r0,102r-271,0r0,-102r62,0r0,-176r-233,-320r-55,0r0,-102r278,0r0,102r-56,0v7,7,14,15,20,22v6,7,12,15,17,23r116,170r125,-171v5,-7,11,-15,17,-22v6,-7,13,-15,20,-22r-70,0r0,-102","w":741,"k":{"i":37,"A":100,",":111,":":74,";":74,"O":37,"u":74,".":111,"a":111,"e":111,"o":111,"-":129,"S":24}},"Z":{"d":"37,-97r351,-451v17,-22,33,-38,48,-48r0,-2r-240,0r-6,93r-126,0r6,-195r535,0r0,102r-344,446v-9,11,-17,20,-25,28v-8,8,-15,15,-23,20r0,2r265,0r6,-93r127,0r-8,195r-566,0r0,-97","w":648},"[":{"d":"72,-769r219,0r0,102r-79,0r0,816r84,0r0,102r-224,0r0,-1020","w":296},"\\":{"d":"-22,-748r101,-36r295,832r-101,36","w":352},"]":{"d":"84,-667r-84,0r0,-102r224,0r0,1020r-219,0r0,-102r79,0r0,-816","w":296},"^":{"d":"300,-592r-130,257r-108,0r178,-365r120,0r178,365r-108,0","w":600},"_":{"d":"0,75r500,0r0,50r-500,0r0,-50","w":500},"`":{"d":"40,-823r217,175r-75,60r-213,-165","w":332},"a":{"d":"373,-333v0,-39,-8,-65,-25,-79v-17,-14,-41,-21,-74,-21v-10,0,-24,1,-42,4v-18,3,-33,6,-45,11r0,70r-120,0r0,-133v9,-5,20,-11,34,-17v14,-6,31,-12,49,-17v18,-5,38,-10,59,-14v21,-4,44,-6,67,-6v35,0,66,3,94,10v28,7,53,17,73,33v20,16,35,36,46,62v11,26,16,58,16,96v0,43,0,83,-1,120v-1,37,-3,75,-4,112r59,0r0,102r-176,0r0,-32v0,-17,0,-32,1,-42v1,-10,3,-20,6,-30r-2,0v-17,40,-40,69,-66,88v-26,19,-61,28,-105,28v-29,0,-55,-4,-77,-12v-22,-8,-40,-19,-55,-33v-15,-14,-26,-31,-33,-49v-7,-18,-10,-37,-10,-58v0,-19,2,-36,8,-52v6,-16,14,-29,24,-41v10,-12,20,-23,33,-31v13,-8,26,-15,40,-20v27,-9,59,-16,95,-19v36,-3,80,-5,131,-5r0,-25xm332,-222v-29,0,-53,1,-72,4v-19,3,-34,8,-46,14v-12,6,-19,12,-24,21v-5,9,-8,19,-8,30v0,15,6,30,18,43v12,13,31,20,59,20v14,0,28,-2,41,-7v13,-5,25,-12,36,-23v11,-11,20,-24,26,-41v6,-17,9,-37,9,-61r-39,0","w":593,"k":{"y":37,"t":18,"w":30,"v":30}},"b":{"d":"59,-667r-80,0r0,-102r220,0r0,205v0,21,-1,44,-3,67v-2,23,-4,48,-7,73r2,0v15,-36,38,-63,67,-82v29,-19,66,-29,110,-29v29,0,55,5,80,15v25,10,46,26,64,46v18,20,32,45,42,75v10,30,16,64,16,103v0,36,-4,72,-14,108v-10,36,-26,70,-48,100v-22,30,-53,53,-90,72v-37,19,-84,28,-140,28v-23,0,-46,-1,-68,-4v-22,-3,-42,-6,-62,-10v-20,-4,-38,-9,-53,-14v-15,-5,-27,-11,-36,-16r0,-635xm196,-121v9,5,23,9,40,13v17,4,34,6,49,6v25,0,47,-4,65,-14v18,-10,34,-23,46,-40v12,-17,20,-36,26,-57v6,-21,8,-44,8,-67v0,-18,-2,-35,-6,-52v-4,-17,-9,-33,-18,-46v-9,-13,-20,-23,-34,-31v-14,-8,-33,-12,-55,-12v-23,0,-43,3,-58,11v-15,8,-28,18,-37,30v-9,12,-16,27,-20,43v-4,16,-6,32,-6,48r0,168","w":611,"k":{"y":37,"v":18,"u":18}},"c":{"d":"351,-427v-9,-2,-18,-4,-25,-5v-7,-1,-14,-1,-23,-1v-23,0,-43,5,-60,15v-17,10,-30,21,-41,36v-11,15,-19,32,-24,51v-5,19,-7,37,-7,55v0,22,3,43,9,64v6,21,16,40,29,56v13,16,30,30,51,40v21,10,47,14,77,14v45,0,89,-10,131,-29r-8,118v-13,5,-25,9,-36,12v-11,3,-23,6,-35,8v-12,2,-25,3,-39,4v-14,1,-30,1,-47,1v-45,0,-83,-8,-117,-22v-34,-14,-63,-33,-86,-58v-23,-25,-40,-53,-52,-86v-12,-33,-17,-69,-17,-107v0,-42,6,-80,19,-114v13,-34,32,-63,56,-87v24,-24,52,-41,86,-54v34,-13,72,-19,114,-19v32,0,61,2,88,7v27,5,53,11,77,18r0,153r-120,0r0,-70","w":500,"k":{"y":30,"h":18,"k":18}},"d":{"d":"409,-667r-80,0r0,-102r220,0r0,667r60,0r0,102r-197,0v0,-19,1,-36,3,-52v2,-16,5,-32,9,-49r-2,0v-16,37,-39,65,-68,84v-29,19,-66,29,-110,29v-29,0,-56,-6,-82,-16v-26,-10,-48,-25,-68,-45v-20,-20,-35,-45,-46,-75v-11,-30,-17,-64,-17,-103v0,-36,5,-73,15,-109v10,-36,26,-68,48,-98v22,-30,52,-54,89,-73v37,-19,84,-28,140,-28v12,0,25,1,41,3v16,2,31,5,45,9r0,-144xm405,-402v-9,-5,-23,-10,-40,-14v-17,-4,-34,-5,-49,-5v-25,0,-46,5,-64,14v-18,9,-33,22,-44,37v-11,15,-19,32,-24,51v-5,19,-7,39,-7,59v0,21,2,40,7,58v5,18,12,35,21,49v9,14,20,25,33,33v13,8,29,12,46,12v19,0,35,-4,50,-12v15,-8,27,-18,38,-31v11,-13,18,-29,24,-47v6,-18,9,-36,9,-56r0,-148","w":648,"k":{"y":37,"b":-1,"d":12,"k":-1,"l":-1,"w":30,"v":30}},"e":{"d":"183,-230v2,42,17,74,47,98v30,24,70,36,119,36v33,0,62,-2,87,-8v25,-6,53,-15,82,-28r-7,111v-33,12,-64,20,-94,25v-30,5,-63,8,-99,8v-51,0,-94,-7,-130,-22v-36,-15,-66,-34,-89,-59v-23,-25,-40,-54,-51,-87v-11,-33,-17,-67,-17,-103v0,-41,6,-78,18,-112v12,-34,29,-63,52,-87v23,-24,51,-44,83,-57v32,-13,69,-20,110,-20v45,0,83,8,115,24v32,16,58,38,79,65v21,27,36,60,45,97v9,37,14,77,14,119r-364,0xm395,-326v0,-36,-10,-64,-29,-84v-19,-20,-44,-29,-77,-29v-32,0,-57,9,-75,29v-18,20,-29,48,-32,84r213,0","w":574,"k":{"y":24,"w":18,"v":12}},"f":{"d":"88,-421r-72,0r0,-102r72,0r0,-56v0,-69,19,-120,56,-154v37,-34,96,-51,175,-51v13,0,27,1,43,2v16,1,35,4,57,9r0,102v-11,-4,-22,-7,-33,-9v-11,-2,-22,-2,-33,-2v-45,0,-78,8,-97,26v-19,18,-28,44,-28,79r0,54r110,0r0,102r-110,0r0,319r75,0r0,102r-275,0r0,-102r60,0r0,-319","w":352},"g":{"d":"573,-427r-90,0v8,10,16,24,23,41v7,17,11,37,11,60v0,31,-6,57,-18,80v-12,23,-29,41,-49,56v-20,15,-43,26,-70,33v-27,7,-54,11,-83,11r-50,0v-9,0,-16,3,-23,8v-7,5,-11,12,-11,20v0,9,3,16,9,20v6,4,15,7,28,8r173,19v45,5,80,18,104,39v24,21,36,54,36,99v0,19,-4,40,-13,63v-9,23,-23,44,-44,64v-21,20,-50,36,-85,49v-35,13,-80,20,-134,20v-53,0,-97,-4,-131,-13v-34,-9,-60,-20,-80,-33v-20,-13,-34,-28,-42,-45v-8,-17,-11,-33,-11,-49v0,-11,2,-23,5,-35v3,-12,10,-22,18,-32v8,-10,19,-21,34,-30v15,-9,35,-16,58,-21r0,-2v-23,-5,-40,-14,-52,-25v-12,-11,-19,-29,-19,-53v0,-13,3,-24,9,-34v6,-10,12,-18,22,-25v10,-7,21,-13,33,-18v12,-5,24,-8,37,-10r0,-2v-49,-16,-83,-39,-102,-70v-19,-31,-29,-65,-29,-103v0,-30,6,-57,17,-82v11,-25,26,-46,47,-63v21,-17,45,-30,74,-39v29,-9,61,-14,97,-14v21,0,41,1,58,3v17,2,34,6,52,9r191,0r0,96xm169,-337v0,28,10,49,29,65v19,16,47,24,82,24v22,0,40,-3,55,-8v15,-5,27,-13,36,-22v9,-9,16,-19,20,-30v4,-11,6,-23,6,-34v0,-28,-11,-50,-32,-66v-21,-16,-48,-25,-80,-25v-15,0,-30,1,-44,5v-14,4,-26,10,-37,18v-11,8,-20,17,-26,29v-6,12,-9,27,-9,44xm213,31v-13,5,-26,13,-39,23v-13,10,-19,23,-19,38v0,25,13,42,39,53v26,11,59,16,102,16v15,0,31,-2,47,-5v16,-3,30,-7,43,-13v13,-6,24,-14,32,-23v8,-9,13,-19,13,-31v0,-16,-6,-26,-17,-31v-11,-5,-29,-8,-52,-11","w":593},"h":{"d":"96,-667r-80,0r0,-102r217,0r0,246v0,18,0,36,-1,53v-1,17,-3,36,-7,55r2,0v13,-35,35,-63,66,-86v31,-23,69,-34,115,-34v62,0,108,18,137,55v29,37,44,86,44,149r0,229r60,0r0,102r-257,0r0,-102r57,0r0,-215v0,-36,-8,-61,-25,-76v-17,-15,-39,-22,-66,-22v-21,0,-40,4,-55,11v-15,7,-28,16,-38,29v-10,13,-17,27,-22,44v-5,17,-7,35,-7,55r0,174r60,0r0,102r-257,0r0,-102r57,0r0,-565","w":685,"k":{"y":45}},"i":{"d":"96,-421r-68,0r0,-102r208,0r0,421r60,0r0,102r-257,0r0,-102r57,0r0,-319xm67,-697v0,-26,8,-47,25,-63v17,-16,40,-24,69,-24v29,0,52,8,69,24v17,16,25,37,25,63v0,26,-8,47,-25,63v-17,16,-40,24,-69,24v-29,0,-52,-8,-69,-24v-17,-16,-25,-37,-25,-63","w":332,"k":{"v":30}},"j":{"d":"28,-523r208,0r0,409v0,63,-6,118,-19,164v-13,46,-32,84,-57,114v-25,30,-55,53,-92,69v-37,16,-79,26,-128,30r-16,-111v33,-7,60,-18,82,-32v22,-14,40,-33,53,-56v13,-23,23,-50,29,-82v6,-32,8,-67,8,-108r0,-295r-68,0r0,-102xm67,-697v0,-26,8,-47,25,-63v17,-16,40,-24,69,-24v29,0,52,8,69,24v17,16,25,37,25,63v0,26,-8,47,-25,63v-17,16,-40,24,-69,24v-29,0,-52,-8,-69,-24v-17,-16,-25,-37,-25,-63","w":333},"k":{"d":"48,-102r57,0r0,-565r-80,0r0,-102r220,0r0,469r140,-107v3,-3,7,-5,10,-7v3,-2,7,-4,11,-5r0,-2r-72,0r0,-102r266,0r0,102r-46,0r-163,130r175,189r58,0r0,102r-278,0r0,-102r55,0r0,-2v-14,-9,-29,-21,-44,-37r-112,-125r0,164r48,0r0,102r-245,0r0,-102","w":630},"l":{"d":"87,-667r-80,0r0,-102r220,0r0,667r60,0r0,102r-257,0r0,-102r57,0r0,-565","w":314,"k":{"y":30,"b":-1,"k":-1,"l":-1,"w":24,"!":-1,"?":-1,"\"":-1,"'":-1}},"m":{"d":"730,-102r51,0r0,-215v0,-36,-8,-61,-25,-76v-17,-15,-39,-22,-66,-22v-34,0,-61,13,-81,38v-20,25,-30,59,-30,101r0,174r60,0r0,102r-251,0r0,-102r51,0r0,-215v0,-36,-8,-61,-25,-76v-17,-15,-39,-22,-66,-22v-19,0,-34,4,-48,11v-14,7,-26,16,-35,29v-9,13,-16,27,-21,44v-5,17,-7,35,-7,55r0,174r60,0r0,102r-257,0r0,-102r57,0r0,-319r-68,0r0,-102r205,0v0,18,0,36,-1,53v-1,17,-3,35,-7,53r2,0v15,-38,37,-67,68,-87v31,-20,69,-31,113,-31v43,0,78,9,104,29v26,20,43,50,50,89r2,0v13,-37,34,-66,63,-87v29,-21,66,-31,112,-31v62,0,108,18,137,55v29,37,44,86,44,149r0,229r60,0r0,102r-251,0r0,-102","w":1018,"k":{"y":45,"u":18}},"n":{"d":"96,-421r-68,0r0,-102r205,0v0,18,0,36,-1,53v-1,17,-3,36,-7,55r2,0v13,-35,35,-63,66,-86v31,-23,69,-34,115,-34v62,0,108,18,137,55v29,37,44,86,44,149r0,229r60,0r0,102r-257,0r0,-102r57,0r0,-215v0,-36,-8,-61,-25,-76v-17,-15,-39,-22,-66,-22v-21,0,-40,4,-55,11v-15,7,-28,16,-38,29v-10,13,-17,27,-22,44v-5,17,-7,35,-7,55r0,174r60,0r0,102r-251,0r0,-102r51,0r0,-319","w":685,"k":{"y":37,"v":30,"u":12}},"o":{"d":"31,-256v0,-37,6,-72,19,-106v13,-34,30,-64,54,-90v24,-26,53,-45,87,-60v34,-15,72,-23,115,-23v89,0,157,24,204,71v47,47,71,117,71,208v0,39,-6,75,-19,108v-13,33,-32,60,-56,84v-24,24,-52,43,-86,56v-34,13,-72,20,-114,20v-42,0,-80,-6,-114,-17v-34,-11,-62,-29,-86,-51v-24,-22,-43,-50,-56,-83v-13,-33,-19,-72,-19,-117xm183,-253v0,47,10,84,29,111v19,27,51,40,94,40v43,0,75,-13,94,-40v19,-27,29,-64,29,-111v0,-57,-10,-99,-29,-127v-19,-28,-51,-41,-94,-41v-21,0,-40,4,-56,13v-16,9,-28,21,-38,36v-10,15,-17,32,-22,52v-5,20,-7,43,-7,67","w":612,"k":{"y":30,"w":18,"v":18,"x":12}},"p":{"d":"88,-421r-80,0r0,-102r218,0v1,17,0,33,-2,49v-2,16,-4,33,-7,50r2,0v16,-36,39,-63,68,-82v29,-19,66,-29,110,-29v29,0,55,5,80,15v25,10,46,26,64,46v18,20,33,45,43,75v10,30,15,64,15,103v0,36,-5,72,-15,108v-10,36,-26,70,-48,100v-22,30,-52,53,-89,72v-37,19,-84,28,-140,28v-11,0,-24,0,-39,-2v-15,-2,-29,-4,-40,-7r0,146r60,0r0,102r-257,0r0,-102r57,0r0,-570xm225,-116v9,3,23,7,40,10v17,3,34,4,49,4v25,0,48,-4,66,-14v18,-10,32,-23,44,-40v12,-17,20,-36,26,-57v6,-21,9,-44,9,-67v0,-18,-1,-35,-5,-52v-4,-17,-10,-33,-19,-46v-9,-13,-21,-23,-35,-31v-14,-8,-32,-12,-54,-12v-23,0,-43,3,-58,11v-15,8,-28,18,-37,30v-9,12,-16,27,-20,43v-4,16,-6,32,-6,48r0,173","w":648,"k":{"y":37,",":37,".":37}},"q":{"d":"414,54v0,-27,0,-54,2,-81v2,-27,5,-51,9,-72r-2,0v-15,37,-36,65,-61,83v-25,18,-61,28,-107,28v-30,0,-58,-5,-84,-16v-26,-11,-48,-26,-67,-47v-19,-21,-34,-46,-45,-75v-11,-29,-16,-63,-16,-101v0,-36,5,-73,16,-109v11,-36,29,-68,53,-98v24,-30,55,-54,94,-73v39,-19,86,-28,142,-28v19,0,38,1,58,4v20,3,39,6,57,10v18,4,35,9,50,14v15,5,29,11,41,16r0,640r62,0r0,102r-258,0r0,-102r56,0r0,-95xm417,-402v-9,-5,-23,-10,-40,-14v-17,-4,-34,-5,-49,-5v-25,0,-46,5,-64,14v-18,9,-33,22,-44,37v-11,15,-19,32,-24,51v-5,19,-7,39,-7,59v0,21,2,40,7,58v5,18,12,35,21,49v9,14,20,25,33,33v13,8,29,12,46,12v19,0,35,-4,50,-12v15,-8,27,-18,38,-31v11,-13,18,-29,24,-47v6,-18,9,-36,9,-56r0,-148","w":648},"r":{"d":"105,-421r-68,0r0,-102r203,0v0,18,-1,36,-2,55v-1,19,-4,40,-7,65r2,0v21,-88,71,-132,150,-132v9,0,17,1,24,2r22,4r-9,125v-17,-3,-32,-5,-45,-5v-38,0,-69,13,-93,37v-24,24,-37,58,-37,101r0,169r66,0r0,102r-263,0r0,-102r57,0r0,-319","w":426,"k":{"d":18,"i":-12,",":55,".":55,"a":18,"e":24,"o":18,"-":37}},"s":{"d":"346,-424v-28,-10,-55,-15,-81,-15v-32,0,-56,6,-71,17v-15,11,-23,23,-23,38v0,13,3,22,9,28v6,6,18,10,38,13r110,16v60,9,103,25,130,50v27,25,40,61,40,108v0,23,-4,45,-13,67v-9,22,-23,41,-43,58v-20,17,-45,31,-76,41v-31,10,-70,15,-115,15v-16,0,-33,0,-51,-2v-18,-2,-36,-4,-54,-7v-18,-3,-37,-6,-54,-10v-17,-4,-33,-9,-47,-14r0,-147r126,0r0,61v11,4,25,7,43,11v18,4,35,6,50,6v7,0,17,0,28,-2v11,-2,23,-6,34,-10v11,-4,20,-10,28,-18v8,-8,12,-20,12,-34v0,-15,-5,-26,-16,-34v-11,-8,-32,-14,-63,-19r-118,-18v-46,-7,-79,-23,-99,-47v-20,-24,-31,-54,-31,-92v0,-32,7,-59,21,-81v14,-22,31,-40,53,-53v22,-13,47,-22,74,-28v27,-6,55,-9,82,-9v28,0,59,2,93,7v34,5,71,15,110,28r0,129r-126,0r0,-53","w":537,"k":{"w":24}},"t":{"d":"96,-631r140,-8r0,116r140,0r0,102r-140,0r0,233v0,19,1,34,4,46v3,12,7,21,13,28v6,7,13,11,23,14v10,3,22,4,37,4v9,0,20,-1,31,-4v11,-3,24,-7,37,-12r-5,99v-26,9,-49,15,-68,19v-19,4,-37,6,-54,6v-52,0,-91,-12,-118,-36v-27,-24,-40,-58,-40,-104r0,-293r-71,0r0,-102r71,0r0,-108","w":370,"k":{"b":-1,"k":-1,"l":-1,"!":-1,"?":-1,"\"":-1,"'":-1}},"u":{"d":"368,-523r206,0r0,421r61,0r0,102r-196,0r0,-28v0,-10,0,-20,1,-30v1,-10,2,-19,4,-28v2,-9,5,-16,8,-22r-2,0v-17,42,-40,73,-69,92v-29,19,-67,28,-112,28v-59,0,-104,-17,-133,-50v-29,-33,-43,-78,-43,-133r0,-250r-70,0r0,-102r210,0r0,293v0,19,1,36,3,52v2,16,6,29,12,40v6,11,15,20,27,26v12,6,29,10,50,10v30,0,56,-11,77,-34v21,-23,32,-55,32,-97r0,-188r-66,0r0,-102","w":667},"v":{"d":"351,-523r250,0r0,102r-48,0r-179,421r-152,0r-182,-421r-48,0r0,-102r258,0r0,102r-49,0r95,258v3,7,5,13,6,19v1,6,3,15,4,24r2,0v1,-9,3,-18,4,-24v1,-6,3,-12,6,-19r92,-258r-59,0r0,-102","w":593,"k":{",":74,".":74,"a":18,"e":12,"o":18}},"w":{"d":"674,-523r250,0r0,102r-48,0r-181,421r-146,0r-70,-181v-3,-7,-5,-14,-7,-21v-2,-7,-4,-15,-5,-24r-2,0v-3,17,-7,32,-13,45r-79,181r-146,0r-176,-421r-49,0r0,-102r250,0r0,102r-49,0v5,7,9,16,13,26v4,10,8,21,12,32r64,177v3,10,6,20,9,29v3,9,5,20,7,31r2,0v3,-11,6,-20,10,-30r13,-31r78,-174r-24,-60r-56,0r0,-102r254,0r0,102r-54,0v5,7,9,16,13,26v4,10,8,21,12,32r65,177v5,12,8,22,10,30v2,8,4,19,6,30r2,0v2,-11,4,-22,6,-30v2,-8,5,-18,10,-30r63,-177v4,-11,8,-22,12,-32v4,-10,8,-19,13,-26r-69,0r0,-102","w":926,"k":{",":74,".":74,"a":18,"e":24,"o":24}},"x":{"d":"372,-523r232,0r0,102r-53,0r-151,143r165,176r55,0r0,102r-275,0r0,-102r57,0r0,-2v-7,-3,-15,-8,-22,-15r-70,-74r-80,74v-7,7,-15,12,-22,15r0,2r61,0r0,102r-241,0r0,-102r53,0r167,-156r-154,-163r-57,0r0,-102r276,0r0,102r-55,0r0,2v5,3,11,7,16,11v5,4,10,9,15,14r50,53r57,-53v5,-5,10,-10,15,-14v5,-4,11,-8,16,-11r0,-2r-55,0r0,-102","w":648,"k":{"e":18}},"y":{"d":"367,-523r234,0r0,102r-48,0r-161,432v-19,50,-36,91,-54,124v-18,33,-38,58,-58,77v-20,19,-42,33,-67,40v-25,7,-53,11,-86,11v-11,0,-23,-1,-36,-3v-13,-2,-27,-6,-40,-9r0,-108v13,3,27,7,40,9v13,2,25,3,36,3v15,0,28,-2,39,-5v11,-3,20,-9,30,-18v10,-9,20,-22,30,-38v10,-16,20,-35,32,-59r-200,-456r-48,0r0,-102r260,0r0,102r-54,0v4,5,7,11,10,17v3,6,6,12,9,19r66,178v5,14,11,31,15,49v4,18,7,35,9,50r2,0v2,-15,5,-32,9,-50v4,-18,10,-35,15,-49r62,-178v3,-7,6,-13,9,-19v3,-6,6,-12,10,-17r-65,0r0,-102","w":611,"k":{".":74,"a":24,"e":30,"o":30}},"z":{"d":"40,-102r274,-296v9,-10,17,-17,26,-21r0,-2r-163,0r-4,69r-120,0r4,-171r454,0r0,101r-271,296v-10,11,-20,19,-29,22r0,2r180,0r2,-73r123,0r-8,175r-468,0r0,-102","w":556},"{":{"d":"0,-297v25,-1,44,-13,58,-35v14,-22,20,-50,20,-81r0,-207v0,-24,4,-45,11,-64v7,-19,17,-34,30,-47v13,-13,28,-23,45,-29v17,-6,35,-9,55,-9r81,0r0,74r-27,0v-22,0,-37,7,-44,21v-7,14,-11,34,-11,57r0,204v0,42,-10,75,-30,101v-20,26,-44,43,-74,52r0,2v30,9,54,26,74,52v20,26,30,59,30,101r0,204v0,23,4,43,11,57v7,14,22,21,44,21r27,0r0,74r-81,0v-20,0,-38,-3,-55,-9v-17,-6,-32,-16,-45,-29v-13,-13,-23,-28,-30,-47v-7,-19,-11,-40,-11,-64r0,-207v0,-31,-6,-59,-20,-81v-14,-22,-33,-34,-58,-35r0,-76","w":296},"|":{"d":"57,-750r108,0r0,1000r-108,0r0,-1000","w":222},"}":{"d":"296,-221v-25,1,-44,13,-58,35v-14,22,-20,50,-20,81r0,207v0,24,-4,45,-11,64v-7,19,-17,34,-30,47v-13,13,-28,23,-45,29v-17,6,-35,9,-55,9r-81,0r0,-74r27,0v22,0,37,-7,44,-21v7,-14,11,-34,11,-57r0,-204v0,-42,10,-75,30,-101v20,-26,44,-43,74,-52r0,-2v-30,-9,-54,-26,-74,-52v-20,-26,-30,-59,-30,-101r0,-204v0,-23,-4,-43,-11,-57v-7,-14,-22,-21,-44,-21r-27,0r0,-74r81,0v20,0,38,3,55,9v17,6,32,16,45,29v13,13,23,28,30,47v7,19,11,40,11,64r0,207v0,31,6,59,20,81v14,22,33,34,58,35r0,76","w":296},"~":{"d":"69,-256v15,-30,33,-52,53,-65v20,-13,44,-20,72,-20v19,0,38,4,58,11v20,7,39,14,58,23v29,13,29,13,54,23v17,7,31,11,43,11v15,0,29,-5,43,-17v14,-12,28,-31,45,-56r36,96v-15,30,-33,52,-53,65v-20,13,-44,20,-72,20v-19,0,-38,-4,-58,-11v-20,-7,-39,-14,-58,-23v-28,-13,-29,-13,-54,-23v-17,-7,-31,-11,-43,-11v-15,0,-29,5,-43,17v-14,12,-28,31,-45,56","w":600},"\u00a0":{"w":296,"k":{"T":55,"V":74,"W":55,"Y":92,"y":37,"t":18,"w":30,"A":24,"v":30}}}});;