
(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);};});})();$(document).ready(function(){makeRepresentationForEmail();});function makeRepresentationForEmail(){str=$('#email').html();$('#email').text(str.replace(' at ','@').replace(' dot ','.'));}
var _gat=new Object({c:"length",lb:"4.3",m:"cookie",b:undefined,cb:function(d,a){this.zb=d;this.Nb=a},r:"__utma=",W:"__utmb=",ma:"__utmc=",Ta:"__utmk=",na:"__utmv=",oa:"__utmx=",Sa:"GASO=",X:"__utmz=",lc:"http://www.google-analytics.com/__utm.gif",mc:"https://ssl.google-analytics.com/__utm.gif",Wa:"utmcid=",Ya:"utmcsr=",$a:"utmgclid=",Ua:"utmccn=",Xa:"utmcmd=",Za:"utmctr=",Va:"utmcct=",Hb:false,_gasoDomain:undefined,_gasoCPath:undefined,e:window,a:document,k:navigator,t:function(d){var a=1,c=0,h,o;if(!_gat.q(d)){a=0;for(h=d[_gat.c]-1;h>=0;h--){o=d.charCodeAt(h);a=(a<<6&268435455)+o+(o<<14);c=a&266338304;a=c!=0?a^c>>21:a}}return a},C:function(d,a,c){var h=_gat,o="-",k,l,s=h.q;if(!s(d)&&!s(a)&&!s(c)){k=h.w(d,a);if(k>-1){l=d.indexOf(c,k);if(l<0)l=d[h.c];o=h.F(d,k+h.w(a,"=")+1,l)}}return o},Ea:function(d){var a=false,c=0,h,o;if(!_gat.q(d)){a=true;for(h=0;h<d[_gat.c];h++){o=d.charAt(h);c+="."==o?1:0;a=a&&c<=1&&(0==h&&"-"==o||_gat.P(".0123456789",o))}}return a},d:function(d,a){var c=encodeURIComponent;return c instanceof Function?(a?encodeURI(d):c(d)):escape(d)},J:function(d,a){var c=decodeURIComponent,h;d=d.split("+").join(" ");if(c instanceof Function)try{h=a?decodeURI(d):c(d)}catch(o){h=unescape(d)}else h=unescape(d);return h},Db:function(d){return d&&d.hash?_gat.F(d.href,_gat.w(d.href,"#")):""},q:function(d){return _gat.b==d||"-"==d||""==d},Lb:function(d){return d[_gat.c]>0&&_gat.P(" \n\r\t",d)},P:function(d,a){return _gat.w(d,a)>-1},h:function(d,a){d[d[_gat.c]]=a},T:function(d){return d.toLowerCase()},z:function(d,a){return d.split(a)},w:function(d,a){return d.indexOf(a)},F:function(d,a,c){c=_gat.b==c?d[_gat.c]:c;return d.substring(a,c)},uc:function(){var d=_gat.b,a=window;if(a&&a.gaGlobal&&a.gaGlobal.hid)d=a.gaGlobal.hid;else{d=Math.round(Math.random()*2147483647);a.gaGlobal=a.gaGlobal?a.gaGlobal:{};a.gaGlobal.hid=d}return d},wa:function(){return Math.round(Math.random()*2147483647)},Gc:function(){return(_gat.wa()^_gat.vc())*2147483647},vc:function(){var d=_gat.k,a=_gat.a,c=_gat.e,h=a[_gat.m]?a[_gat.m]:"",o=c.history[_gat.c],k,l,s=[d.appName,d.version,d.language?d.language:d.browserLanguage,d.platform,d.userAgent,d.javaEnabled()?1:0].join("");if(c.screen)s+=c.screen.width+"x"+c.screen.height+c.screen.colorDepth;else if(c.java){l=java.awt.Toolkit.getDefaultToolkit().getScreenSize();s+=l.screen.width+"x"+l.screen.height}s+=h;s+=a.referrer?a.referrer:"";k=s[_gat.c];while(o>0)s+=o--^k++;return _gat.t(s)}});_gat.hc=function(){var d=this,a=_gat.cb;function c(h,o){return new a(h,o)}d.db="utm_campaign";d.eb="utm_content";d.fb="utm_id";d.gb="utm_medium";d.hb="utm_nooverride";d.ib="utm_source";d.jb="utm_term";d.kb="gclid";d.pa=0;d.I=0;d.wb="15768000";d.Tb="1800";d.ea=[];d.ga=[];d.Ic="cse";d.Gb="q";d.ab="google";d.fa=[c(d.ab,d.Gb),c("yahoo","p"),c("msn","q"),c("aol","query"),c("aol","encquery"),c("lycos","query"),c("ask","q"),c("altavista","q"),c("netscape","query"),c("cnn","query"),c("looksmart","qt"),c("about","terms"),c("mamma","query"),c("alltheweb","q"),c("gigablast","q"),c("voila","rdata"),c("virgilio","qs"),c("live","q"),c("baidu","wd"),c("alice","qs"),c("yandex","text"),c("najdi","q"),c("aol","q"),c("club-internet","query"),c("mama","query"),c("seznam","q"),c("search","q"),c("wp","szukaj"),c("onet","qt"),c("netsprint","q"),c("google.interia","q"),c("szukacz","q"),c("yam","k"),c("pchome","q"),c("kvasir","searchExpr"),c("sesam","q"),c("ozu","q"),c("terra","query"),c("nostrum","query"),c("mynet","q"),c("ekolay","q"),c("search.ilse","search_for")];d.B=undefined;d.Kb=false;d.p="/";d.ha=100;d.Da="/__utm.gif";d.ta=1;d.ua=1;d.G="|";d.sa=1;d.qa=1;d.pb=1;d.g="auto";d.D=1;d.Ga=1000;d.Yc=10;d.nc=10;d.Zc=0.2};_gat.Y=function(d,a){var c,h,o,k,l,s,q,f=this,n=_gat,w=n.q,x=n.c,g,z=a;f.a=d;function B(i){var b=i instanceof Array?i.join("."):"";return w(b)?"-":b}function A(i,b){var e=[],j;if(!w(i)){e=n.z(i,".");if(b)for(j=0;j<e[x];j++)if(!n.Ea(e[j]))e[j]="-"}return e}function p(){return u(63072000000)}function u(i){var b=new Date,e=new Date(b.getTime()+i);return"expires="+e.toGMTString()+"; "}function m(i,b){f.a[n.m]=i+"; path="+z.p+"; "+b+f.Cc()}function r(i,b,e){var j=f.V,t,v;for(t=0;t<j[x];t++){v=j[t][0];v+=w(b)?b:b+j[t][4];j[t][2](n.C(i,v,e))}}f.Jb=function(){return n.b==g||g==f.t()};f.Ba=function(){return l?l:"-"};f.Wb=function(i){l=i};f.Ma=function(i){g=n.Ea(i)?i*1:"-"};f.Aa=function(){return B(s)};f.Na=function(i){s=A(i)};f.Hc=function(){return g?g:"-"};f.Cc=function(){return w(z.g)?"":"domain="+z.g+";"};f.ya=function(){return B(c)};f.Ub=function(i){c=A(i,1)};f.K=function(){return B(h)};f.La=function(i){h=A(i,1)};f.za=function(){return B(o)};f.Vb=function(i){o=A(i,1)};f.Ca=function(){return B(k)};f.Xb=function(i){k=A(i);for(var b=0;b<k[x];b++)if(b<4&&!n.Ea(k[b]))k[b]="-"};f.Dc=function(){return q};f.Uc=function(i){q=i};f.pc=function(){c=[];h=[];o=[];k=[];l=n.b;s=[];g=n.b};f.t=function(){var i="",b;for(b=0;b<f.V[x];b++)i+=f.V[b][1]();return n.t(i)};f.Ha=function(i){var b=f.a[n.m],e=false;if(b){r(b,i,";");f.Ma(f.t());e=true}return e};f.Rc=function(i){r(i,"","&");f.Ma(n.C(i,n.Ta,"&"))};f.Wc=function(){var i=f.V,b=[],e;for(e=0;e<i[x];e++)n.h(b,i[e][0]+i[e][1]());n.h(b,n.Ta+f.t());return b.join("&")};f.bd=function(i,b){var e=f.V,j=z.p,t;f.Ha(i);z.p=b;for(t=0;t<e[x];t++)if(!w(e[t][1]()))e[t][3]();z.p=j};f.dc=function(){m(n.r+f.ya(),p())};f.Pa=function(){m(n.W+f.K(),u(z.Tb*1000))};f.ec=function(){m(n.ma+f.za(),"")};f.Ra=function(){m(n.X+f.Ca(),u(z.wb*1000))};f.fc=function(){m(n.oa+f.Ba(),p())};f.Qa=function(){m(n.na+f.Aa(),p())};f.cd=function(){m(n.Sa+f.Dc(),"")};f.V=[[n.r,f.ya,f.Ub,f.dc,"."],[n.W,f.K,f.La,f.Pa,""],[n.ma,f.za,f.Vb,f.ec,""],[n.oa,f.Ba,f.Wb,f.fc,""],[n.X,f.Ca,f.Xb,f.Ra,"."],[n.na,f.Aa,f.Na,f.Qa,"."]]};_gat.jc=function(d){var a=this,c=_gat,h=d,o,k=function(l){var s=(new Date).getTime(),q;q=(s-l[3])*(h.Zc/1000);if(q>=1){l[2]=Math.min(Math.floor(l[2]*1+q),h.nc);l[3]=s}return l};a.O=function(l,s,q,f,n,w,x){var g,z=h.D,B=q.location;if(!o)o=new c.Y(q,h);o.Ha(f);g=c.z(o.K(),".");if(g[1]<500||n){if(w)g=k(g);if(n||!w||g[2]>=1){if(!n&&w)g[2]=g[2]*1-1;g[1]=g[1]*1+1;l="?utmwv="+_gat.lb+"&utmn="+c.wa()+(c.q(B.hostname)?"":"&utmhn="+c.d(B.hostname))+(h.ha==100?"":"&utmsp="+c.d(h.ha))+l;if(0==z||2==z){var A=new Image(1,1);A.src=h.Da+l;var p=2==z?function(){}:x||function(){};A.onload=p}if(1==z||2==z){var u=new Image(1,1);u.src=("https:"==B.protocol?c.mc:c.lc)+l+"&utmac="+s+"&utmcc="+a.wc(q,f);u.onload=x||function(){}}}}o.La(g.join("."));o.Pa()};a.wc=function(l,s){var q=[],f=[c.r,c.X,c.na,c.oa],n,w=l[c.m],x;for(n=0;n<f[c.c];n++){x=c.C(w,f[n]+s,";");if(!c.q(x))c.h(q,f[n]+x+";")}return c.d(q.join("+"))}};_gat.i=function(){this.la=[]};_gat.i.bb=function(d,a,c,h,o,k){var l=this;l.cc=d;l.Oa=a;l.L=c;l.sb=h;l.Pb=o;l.Qb=k};_gat.i.bb.prototype.S=function(){var d=this,a=_gat.d;return"&"+["utmt=item","utmtid="+a(d.cc),"utmipc="+a(d.Oa),"utmipn="+a(d.L),"utmiva="+a(d.sb),"utmipr="+a(d.Pb),"utmiqt="+a(d.Qb)].join("&")};_gat.i.$=function(d,a,c,h,o,k,l,s){var q=this;q.v=d;q.ob=a;q.bc=c;q.ac=h;q.Yb=o;q.ub=k;q.$b=l;q.xb=s;q.ca=[]};_gat.i.$.prototype.mb=function(d,a,c,h,o){var k=this,l=k.Eb(d),s=k.v,q=_gat;if(q.b==l)q.h(k.ca,new q.i.bb(s,d,a,c,h,o));else{l.cc=s;l.Oa=d;l.L=a;l.sb=c;l.Pb=h;l.Qb=o}};_gat.i.$.prototype.Eb=function(d){var a,c=this.ca,h;for(h=0;h<c[_gat.c];h++)a=d==c[h].Oa?c[h]:a;return a};_gat.i.$.prototype.S=function(){var d=this,a=_gat.d;return"&"+["utmt=tran","utmtid="+a(d.v),"utmtst="+a(d.ob),"utmtto="+a(d.bc),"utmttx="+a(d.ac),"utmtsp="+a(d.Yb),"utmtci="+a(d.ub),"utmtrg="+a(d.$b),"utmtco="+a(d.xb)].join("&")};_gat.i.prototype.nb=function(d,a,c,h,o,k,l,s){var q=this,f=_gat,n=q.xa(d);if(f.b==n){n=new f.i.$(d,a,c,h,o,k,l,s);f.h(q.la,n)}else{n.ob=a;n.bc=c;n.ac=h;n.Yb=o;n.ub=k;n.$b=l;n.xb=s}return n};_gat.i.prototype.xa=function(d){var a,c=this.la,h;for(h=0;h<c[_gat.c];h++)a=d==c[h].v?c[h]:a;return a};_gat.gc=function(d){var a=this,c="-",h=_gat,o=d;a.Ja=screen;a.qb=!self.screen&&self.java?java.awt.Toolkit.getDefaultToolkit():h.b;a.a=document;a.e=window;a.k=navigator;a.Ka=c;a.Sb=c;a.tb=c;a.Ob=c;a.Mb=1;a.Bb=c;function k(){var l,s,q,f,n="ShockwaveFlash",w="$version",x=a.k?a.k.plugins:h.b;if(x&&x[h.c]>0)for(l=0;l<x[h.c]&&!q;l++){s=x[l];if(h.P(s.name,"Shockwave Flash"))q=h.z(s.description,"Shockwave Flash ")[1]}else{n=n+"."+n;try{f=new ActiveXObject(n+".7");q=f.GetVariable(w)}catch(g){}if(!q)try{f=new ActiveXObject(n+".6");q="WIN 6,0,21,0";f.AllowScriptAccess="always";q=f.GetVariable(w)}catch(z){}if(!q)try{f=new ActiveXObject(n);q=f.GetVariable(w)}catch(z){}if(q){q=h.z(h.z(q," ")[1],",");q=q[0]+"."+q[1]+" r"+q[2]}}return q?q:c}a.xc=function(){var l;if(self.screen){a.Ka=a.Ja.width+"x"+a.Ja.height;a.Sb=a.Ja.colorDepth+"-bit"}else if(a.qb)try{l=a.qb.getScreenSize();a.Ka=l.width+"x"+l.height}catch(s){}a.Ob=h.T(a.k&&a.k.language?a.k.language:(a.k&&a.k.browserLanguage?a.k.browserLanguage:c));a.Mb=a.k&&a.k.javaEnabled()?1:0;a.Bb=o?k():c;a.tb=h.d(a.a.characterSet?a.a.characterSet:(a.a.charset?a.a.charset:c))};a.Xc=function(){return"&"+["utmcs="+h.d(a.tb),"utmsr="+a.Ka,"utmsc="+a.Sb,"utmul="+a.Ob,"utmje="+a.Mb,"utmfl="+h.d(a.Bb)].join("&")}};_gat.n=function(d,a,c,h,o){var k=this,l=_gat,s=l.q,q=l.b,f=l.P,n=l.C,w=l.T,x=l.z,g=l.c;k.a=a;k.f=d;k.Rb=c;k.ja=h;k.o=o;function z(p){return s(p)||"0"==p||!f(p,"://")}function B(p){var u="";p=w(x(p,"://")[1]);if(f(p,"/")){p=x(p,"/")[1];if(f(p,"?"))u=x(p,"?")[0]}return u}function A(p){var u="";u=w(x(p,"://")[1]);if(f(u,"/"))u=x(u,"/")[0];return u}k.Fc=function(p){var u=k.Fb(),m=k.o;return new l.n.s(n(p,m.fb+"=","&"),n(p,m.ib+"=","&"),n(p,m.kb+"=","&"),k.ba(p,m.db,"(not set)"),k.ba(p,m.gb,"(not set)"),k.ba(p,m.jb,u&&!s(u.R)?l.J(u.R):q),k.ba(p,m.eb,q))};k.Ib=function(p){var u=A(p),m=B(p);if(f(u,k.o.ab)){p=x(p,"?").join("&");if(f(p,"&"+k.o.Gb+"="))if(m==k.o.Ic)return true}return false};k.Fb=function(){var p,u,m=k.Rb,r,i,b=k.o.fa;if(z(m)||k.Ib(m))return;p=A(m);for(r=0;r<b[g];r++){i=b[r];if(f(p,w(i.zb))){m=x(m,"?").join("&");if(f(m,"&"+i.Nb+"=")){u=x(m,"&"+i.Nb+"=")[1];if(f(u,"&"))u=x(u,"&")[0];return new l.n.s(q,i.zb,q,"(organic)","organic",u,q)}}}};k.ba=function(p,u,m){var r=n(p,u+"=","&"),i=!s(r)?l.J(r):(!s(m)?m:"-");return i};k.Nc=function(p){var u=k.o.ea,m=false,r,i;if(p&&"organic"==p.da){r=w(l.J(p.R));for(i=0;i<u[g];i++)m=m||w(u[i])==r}return m};k.Ec=function(){var p="",u="",m=k.Rb;if(z(m)||k.Ib(m))return;p=w(x(m,"://")[1]);if(f(p,"/")){u=l.F(p,l.w(p,"/"));if(f(u,"?"))u=x(u,"?")[0];p=x(p,"/")[0]}if(0==l.w(p,"www."))p=l.F(p,4);return new l.n.s(q,p,q,"(referral)","referral",q,u)};k.sc=function(p){var u="";if(k.o.pa){u=l.Db(p);u=""!=u?u+"&":u}u+=p.search;return u};k.zc=function(){return new l.n.s(q,"(direct)",q,"(direct)","(none)",q,q)};k.Oc=function(p){var u=false,m,r,i=k.o.ga;if(p&&"referral"==p.da){m=w(l.d(p.ia));for(r=0;r<i[g];r++)u=u||f(m,w(i[r]))}return u};k.U=function(p){return q!=p&&p.Fa()};k.yc=function(p,u){var m="",r="-",i,b,e=0,j,t,v=k.f;if(!p)return"";t=k.a[l.m]?k.a[l.m]:"";m=k.sc(k.a.location);if(k.o.I&&p.Jb()){r=p.Ca();if(!s(r)&&!f(r,";")){p.Ra();return""}}r=n(t,l.X+v+".",";");i=k.Fc(m);if(k.U(i)){b=n(m,k.o.hb+"=","&");if("1"==b&&!s(r))return""}if(!k.U(i)){i=k.Fb();if(!s(r)&&k.Nc(i))return""}if(!k.U(i)&&u){i=k.Ec();if(!s(r)&&k.Oc(i))return""}if(!k.U(i))if(s(r)&&u)i=k.zc();if(!k.U(i))return"";if(!s(r)){var y=x(r,"."),E=new l.n.s;E.Cb(y.slice(4).join("."));j=w(E.ka())==w(i.ka());e=y[3]*1}if(!j||u){var F=n(t,l.r+v+".",";"),I=F.lastIndexOf("."),G=I>9?l.F(F,I+1)*1:0;e++;G=0==G?1:G;p.Xb([v,k.ja,G,e,i.ka()].join("."));p.Ra();return"&utmcn=1"}else return"&utmcr=1"}};_gat.n.s=function(d,a,c,h,o,k,l){var s=this;s.v=d;s.ia=a;s.ra=c;s.L=h;s.da=o;s.R=k;s.vb=l};_gat.n.s.prototype.ka=function(){var d=this,a=_gat,c=[],h=[[a.Wa,d.v],[a.Ya,d.ia],[a.$a,d.ra],[a.Ua,d.L],[a.Xa,d.da],[a.Za,d.R],[a.Va,d.vb]],o,k;if(d.Fa())for(o=0;o<h[a.c];o++)if(!a.q(h[o][1])){k=h[o][1].split("+").join("%20");k=k.split(" ").join("%20");a.h(c,h[o][0]+k)}return c.join("|")};_gat.n.s.prototype.Fa=function(){var d=this,a=_gat.q;return!(a(d.v)&&a(d.ia)&&a(d.ra))};_gat.n.s.prototype.Cb=function(d){var a=this,c=_gat,h=function(o){return c.J(c.C(d,o,"|"))};a.v=h(c.Wa);a.ia=h(c.Ya);a.ra=h(c.$a);a.L=h(c.Ua);a.da=h(c.Xa);a.R=h(c.Za);a.vb=h(c.Va)};_gat.Z=function(){var d=this,a=_gat,c={},h="k",o="v",k=[h,o],l="(",s=")",q="*",f="!",n="'",w={};w[n]="'0";w[s]="'1";w[q]="'2";w[f]="'3";var x=1;function g(m,r,i,b){if(a.b==c[m])c[m]={};if(a.b==c[m][r])c[m][r]=[];c[m][r][i]=b}function z(m,r,i){return a.b!=c[m]&&a.b!=c[m][r]?c[m][r][i]:a.b}function B(m,r){if(a.b!=c[m]&&a.b!=c[m][r]){c[m][r]=a.b;var i=true,b;for(b=0;b<k[a.c];b++)if(a.b!=c[m][k[b]]){i=false;break}if(i)c[m]=a.b}}function A(m){var r="",i=false,b,e;for(b=0;b<k[a.c];b++){e=m[k[b]];if(a.b!=e){if(i)r+=k[b];r+=p(e);i=false}else i=true}return r}function p(m){var r=[],i,b;for(b=0;b<m[a.c];b++)if(a.b!=m[b]){i="";if(b!=x&&a.b==m[b-1]){i+=b.toString();i+=f}i+=u(m[b]);a.h(r,i)}return l+r.join(q)+s}function u(m){var r="",i,b,e;for(i=0;i<m[a.c];i++){b=m.charAt(i);e=w[b];r+=a.b!=e?e:b}return r}d.Kc=function(m){return a.b!=c[m]};d.N=function(){var m=[],r;for(r in c)if(a.b!=c[r])a.h(m,r.toString()+A(c[r]));return m.join("")};d.Sc=function(m){if(m==a.b)return d.N();var r=[m.N()],i;for(i in c)if(a.b!=c[i]&&!m.Kc(i))a.h(r,i.toString()+A(c[i]));return r.join("")};d._setKey=function(m,r,i){if(typeof i!="string")return false;g(m,h,r,i);return true};d._setValue=function(m,r,i){if(typeof i!="number"&&(a.b==Number||!(i instanceof Number)))return false;if(Math.round(i)!=i||i==NaN||i==Infinity)return false;g(m,o,r,i.toString());return true};d._getKey=function(m,r){return z(m,h,r)};d._getValue=function(m,r){return z(m,o,r)};d._clearKey=function(m){B(m,h)};d._clearValue=function(m){B(m,o)}};_gat.ic=function(d,a){var c=this;c.jd=a;c.Pc=d;c._trackEvent=function(h,o,k){return a._trackEvent(c.Pc,h,o,k)}};_gat.kc=function(d){var a=this,c=_gat,h=c.b,o=c.q,k=c.w,l=c.F,s=c.C,q=c.P,f=c.z,n="location",w=c.c,x=h,g=new c.hc,z=false;a.a=document;a.e=window;a.ja=Math.round((new Date).getTime()/1000);a.H=d;a.yb=a.a.referrer;a.va=h;a.j=h;a.A=h;a.M=false;a.aa=h;a.rb="";a.l=h;a.Ab=h;a.f=h;a.u=h;function B(){if("auto"==g.g){var b=a.a.domain;if("www."==l(b,0,4))b=l(b,4);g.g=b}g.g=c.T(g.g)}function A(){var b=g.g,e=k(b,"www.google.")*k(b,".google.")*k(b,"google.");return e||"/"!=g.p||k(b,"google.org")>-1}function p(b,e,j){if(o(b)||o(e)||o(j))return"-";var t=s(b,c.r+a.f+".",e),v;if(!o(t)){v=f(t,".");v[5]=v[5]?v[5]*1+1:1;v[3]=v[4];v[4]=j;t=v.join(".")}return t}function u(){return"file:"!=a.a[n].protocol&&A()}function m(b){if(!b||""==b)return"";while(c.Lb(b.charAt(0)))b=l(b,1);while(c.Lb(b.charAt(b[w]-1)))b=l(b,0,b[w]-1);return b}function r(b,e,j){if(!o(b())){e(c.J(b()));if(!q(b(),";"))j()}}function i(b){var e,j=""!=b&&a.a[n].host!=b;if(j)for(e=0;e<g.B[w];e++)j=j&&k(c.T(b),c.T(g.B[e]))==-1;return j}a.Bc=function(){if(!g.g||""==g.g||"none"==g.g){g.g="";return 1}B();return g.pb?c.t(g.g):1};a.tc=function(b,e){if(o(b))b="-";else{e+=g.p&&"/"!=g.p?g.p:"";var j=k(b,e);b=j>=0&&j<=8?"0":("["==b.charAt(0)&&"]"==b.charAt(b[w]-1)?"-":b)}return b};a.Ia=function(b){var e="",j=a.a;e+=a.aa?a.aa.Xc():"";e+=g.qa?a.rb:"";e+=g.ta&&!o(j.title)?"&utmdt="+c.d(j.title):"";e+="&utmhid="+c.uc()+"&utmr="+a.va+"&utmp="+a.Tc(b);return e};a.Tc=function(b){var e=a.a[n];b=h!=b&&""!=b?c.d(b,true):c.d(e.pathname+unescape(e.search),true);return b};a.$c=function(b){if(a.Q()){var e="";if(a.l!=h&&a.l.N().length>0)e+="&utme="+c.d(a.l.N());e+=a.Ia(b);x.O(e,a.H,a.a,a.f)}};a.qc=function(){var b=new c.Y(a.a,g);return b.Ha(a.f)?b.Wc():h};a._getLinkerUrl=function(b,e){var j=f(b,"#"),t=b,v=a.qc();if(v)if(e&&1>=j[w])t+="#"+v;else if(!e||1>=j[w])if(1>=j[w])t+=(q(b,"?")?"&":"?")+v;else t=j[0]+(q(b,"?")?"&":"?")+v+"#"+j[1];return t};a.Zb=function(){var b;if(a.A&&a.A[w]>=10&&!q(a.A,"=")){a.u.Uc(a.A);a.u.cd();c._gasoDomain=g.g;c._gasoCPath=g.p;b=a.a.createElement("script");b.type="text/javascript";b.id="_gasojs";b.src="https://www.google.com/analytics/reporting/overlay_js?gaso="+a.A+"&"+c.wa();a.a.getElementsByTagName("head")[0].appendChild(b)}};a.Jc=function(){var b=a.a[c.m],e=a.ja,j=a.u,t=a.f+"",v=a.e,y=v?v.gaGlobal:h,E,F=q(b,c.r+t+"."),I=q(b,c.W+t),G=q(b,c.ma+t),C,D=[],H="",K=false,J;b=o(b)?"":b;if(g.I){E=c.Db(a.a[n]);if(g.pa&&!o(E))H=E+"&";H+=a.a[n].search;if(!o(H)&&q(H,c.r)){j.Rc(H);if(!j.Jb())j.pc();C=j.ya()}r(j.Ba,j.Wb,j.fc);r(j.Aa,j.Na,j.Qa)}if(!o(C))if(o(j.K())||o(j.za())){C=p(H,"&",e);a.M=true}else{D=f(j.K(),".");t=D[0]}else if(F)if(!I||!G){C=p(b,";",e);a.M=true}else{C=s(b,c.r+t+".",";");D=f(s(b,c.W+t,";"),".")}else{C=[t,c.Gc(),e,e,e,1].join(".");a.M=true;K=true}C=f(C,".");if(v&&y&&y.dh==t){C[4]=y.sid?y.sid:C[4];if(K){C[3]=y.sid?y.sid:C[4];if(y.vid){J=f(y.vid,".");C[1]=J[0];C[2]=J[1]}}}j.Ub(C.join("."));D[0]=t;D[1]=D[1]?D[1]:0;D[2]=undefined!=D[2]?D[2]:g.Yc;D[3]=D[3]?D[3]:C[4];j.La(D.join("."));j.Vb(t);if(!o(j.Hc()))j.Ma(j.t());j.dc();j.Pa();j.ec()};a.Lc=function(){x=new c.jc(g)};a._initData=function(){var b;if(!z){a.Lc();a.f=a.Bc();a.u=new c.Y(a.a,g)}if(u())a.Jc();if(!z){if(u()){a.va=a.tc(a.Ac(),a.a.domain);if(g.sa){a.aa=new c.gc(g.ua);a.aa.xc()}if(g.qa){b=new c.n(a.f,a.a,a.va,a.ja,g);a.rb=b.yc(a.u,a.M)}}a.l=new c.Z;a.Ab=new c.Z;z=true}if(!c.Hb)a.Mc()};a._visitCode=function(){a._initData();var b=s(a.a[c.m],c.r+a.f+".",";"),e=f(b,".");return e[w]<4?"":e[1]};a._cookiePathCopy=function(b){a._initData();if(a.u)a.u.bd(a.f,b)};a.Mc=function(){var b=a.a[n].hash,e;e=b&&""!=b&&0==k(b,"#gaso=")?s(b,"gaso=","&"):s(a.a[c.m],c.Sa,";");if(e[w]>=10){a.A=e;if(a.e.addEventListener)a.e.addEventListener("load",a.Zb,false);else a.e.attachEvent("onload",a.Zb)}c.Hb=true};a.Q=function(){return a._visitCode()%10000<g.ha*100};a.Vc=function(){var b,e,j=a.a.links;if(!g.Kb){var t=a.a.domain;if("www."==l(t,0,4))t=l(t,4);g.B.push("."+t)}for(b=0;b<j[w]&&(g.Ga==-1||b<g.Ga);b++){e=j[b];if(i(e.host))if(!e.gatcOnclick){e.gatcOnclick=e.onclick?e.onclick:a.Qc;e.onclick=function(v){var y=!this.target||this.target=="_self"||this.target=="_top"||this.target=="_parent";y=y&&!a.oc(v);a.ad(v,this,y);return y?false:(this.gatcOnclick?this.gatcOnclick(v):true)}}}};a.Qc=function(){};a._trackPageview=function(b){if(u()){a._initData();if(g.B)a.Vc();a.$c(b);a.M=false}};a._trackTrans=function(){var b=a.f,e=[],j,t,v,y;a._initData();if(a.j&&a.Q()){for(j=0;j<a.j.la[w];j++){t=a.j.la[j];c.h(e,t.S());for(v=0;v<t.ca[w];v++)c.h(e,t.ca[v].S())}for(y=0;y<e[w];y++)x.O(e[y],a.H,a.a,b,true)}};a._setTrans=function(){var b=a.a,e,j,t,v,y=b.getElementById?b.getElementById("utmtrans"):(b.utmform&&b.utmform.utmtrans?b.utmform.utmtrans:h);a._initData();if(y&&y.value){a.j=new c.i;v=f(y.value,"UTM:");g.G=!g.G||""==g.G?"|":g.G;for(e=0;e<v[w];e++){v[e]=m(v[e]);j=f(v[e],g.G);for(t=0;t<j[w];t++)j[t]=m(j[t]);if("T"==j[0])a._addTrans(j[1],j[2],j[3],j[4],j[5],j[6],j[7],j[8]);else if("I"==j[0])a._addItem(j[1],j[2],j[3],j[4],j[5],j[6])}}};a._addTrans=function(b,e,j,t,v,y,E,F){a.j=a.j?a.j:new c.i;return a.j.nb(b,e,j,t,v,y,E,F)};a._addItem=function(b,e,j,t,v,y){var E;a.j=a.j?a.j:new c.i;E=a.j.xa(b);if(!E)E=a._addTrans(b,"","","","","","","");E.mb(e,j,t,v,y)};a._setVar=function(b){if(b&&""!=b&&A()){a._initData();var e=new c.Y(a.a,g),j=a.f;e.Na(j+"."+c.d(b));e.Qa();if(a.Q())x.O("&utmt=var",a.H,a.a,a.f)}};a._link=function(b,e){if(g.I&&b){a._initData();a.a[n].href=a._getLinkerUrl(b,e)}};a._linkByPost=function(b,e){if(g.I&&b&&b.action){a._initData();b.action=a._getLinkerUrl(b.action,e)}};a._setXKey=function(b,e,j){a.l._setKey(b,e,j)};a._setXValue=function(b,e,j){a.l._setValue(b,e,j)};a._getXKey=function(b,e){return a.l._getKey(b,e)};a._getXValue=function(b,e){return a.l.getValue(b,e)};a._clearXKey=function(b){a.l._clearKey(b)};a._clearXValue=function(b){a.l._clearValue(b)};a._createXObj=function(){a._initData();return new c.Z};a._sendXEvent=function(b){var e="";a._initData();if(a.Q()){e+="&utmt=event&utme="+c.d(a.l.Sc(b))+a.Ia();x.O(e,a.H,a.a,a.f,false,true)}};a._createEventTracker=function(b){a._initData();return new c.ic(b,a)};a._trackEvent=function(b,e,j,t){var v=true,y=a.Ab;if(h!=b&&h!=e&&""!=b&&""!=e){y._clearKey(5);y._clearValue(5);v=y._setKey(5,1,b)?v:false;v=y._setKey(5,2,e)?v:false;v=h==j||y._setKey(5,3,j)?v:false;v=h==t||y._setValue(5,1,t)?v:false;if(v)a._sendXEvent(y)}else v=false;return v};a.ad=function(b,e,j){a._initData();if(a.Q()){var t=new c.Z;t._setKey(6,1,e.href);var v=j?function(){a.rc(b,e)}:undefined;x.O("&utmt=event&utme="+c.d(t.N())+a.Ia(),a.H,a.a,a.f,false,true,v)}};a.rc=function(b,e){if(!b)b=a.e.event;var j=true;if(e.gatcOnclick)j=e.gatcOnclick(b);if(j||typeof j=="undefined")if(!e.target||e.target=="_self")a.e.location=e.href;else if(e.target=="_top")a.e.top.document.location=e.href;else if(e.target=="_parent")a.e.parent.document.location=e.href};a.oc=function(b){if(!b)b=a.e.event;var e=b.shiftKey||b.ctrlKey||b.altKey;if(!e)if(b.modifiers&&a.e.Event)e=b.modifiers&a.e.Event.CONTROL_MASK||b.modifiers&a.e.Event.SHIFT_MASK||b.modifiers&a.e.Event.ALT_MASK;return e};a._setDomainName=function(b){g.g=b};a.dd=function(){return g.g};a._addOrganic=function(b,e){c.h(g.fa,new c.cb(b,e))};a._clearOrganic=function(){g.fa=[]};a.hd=function(){return g.fa};a._addIgnoredOrganic=function(b){c.h(g.ea,b)};a._clearIgnoredOrganic=function(){g.ea=[]};a.ed=function(){return g.ea};a._addIgnoredRef=function(b){c.h(g.ga,b)};a._clearIgnoredRef=function(){g.ga=[]};a.fd=function(){return g.ga};a._setAllowHash=function(b){g.pb=b?1:0};a._setCampaignTrack=function(b){g.qa=b?1:0};a._setClientInfo=function(b){g.sa=b?1:0};a._getClientInfo=function(){return g.sa};a._setCookiePath=function(b){g.p=b};a._setTransactionDelim=function(b){g.G=b};a._setCookieTimeout=function(b){g.wb=b};a._setDetectFlash=function(b){g.ua=b?1:0};a._getDetectFlash=function(){return g.ua};a._setDetectTitle=function(b){g.ta=b?1:0};a._getDetectTitle=function(){return g.ta};a._setLocalGifPath=function(b){g.Da=b};a._getLocalGifPath=function(){return g.Da};a._setLocalServerMode=function(){g.D=0};a._setRemoteServerMode=function(){g.D=1};a._setLocalRemoteServerMode=function(){g.D=2};a.gd=function(){return g.D};a._getServiceMode=function(){return g.D};a._setSampleRate=function(b){g.ha=b};a._setSessionTimeout=function(b){g.Tb=b};a._setAllowLinker=function(b){g.I=b?1:0};a._setAllowAnchor=function(b){g.pa=b?1:0};a._setCampNameKey=function(b){g.db=b};a._setCampContentKey=function(b){g.eb=b};a._setCampIdKey=function(b){g.fb=b};a._setCampMediumKey=function(b){g.gb=b};a._setCampNOKey=function(b){g.hb=b};a._setCampSourceKey=function(b){g.ib=b};a._setCampTermKey=function(b){g.jb=b};a._setCampCIdKey=function(b){g.kb=b};a._getAccount=function(){return a.H};a._getVersion=function(){return _gat.lb};a.kd=function(b){g.B=[];if(b)g.B=b};a.md=function(b){g.Kb=b};a.ld=function(b){g.Ga=b};a._setReferrerOverride=function(b){a.yb=b};a.Ac=function(){return a.yb}};_gat._getTracker=function(d){var a=new _gat.kc(d);return a};var Cufon=(function(){var K=function(){return K.replace.apply(null,arguments)};var U=K.DOM={ready:(function(){var Z=false,b={loaded:1,complete:1};var Y=[],a=function(){if(Z){return}Z=true;for(var c;c=Y.shift();c()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",a,false);window.addEventListener("pageshow",a,false)}if(!window.opera&&document.readyState){(function(){b[document.readyState]?a():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");a()}catch(c){setTimeout(arguments.callee,1)}})()}O(window,"load",a);return function(c){if(!arguments.length){a()}else{Z?c():Y.push(c)}}})()};var L=K.CSS={Size:function(Z,Y){this.value=parseFloat(Z);this.unit=String(Z).match(/[a-z%]*$/)[0]||"px";this.convert=function(a){return a/Y*this.value};this.convertFrom=function(a){return a/this.value*Y};this.toString=function(){return this.value+this.unit}},getStyle:function(Z){var Y=document.defaultView;if(Y&&Y.getComputedStyle){return new A(Y.getComputedStyle(Z,null))}if(Z.currentStyle){return new A(Z.currentStyle)}return new A(Z.style)},ready:(function(){var a=false;var Z=[],b=function(){a=true;for(var d;d=Z.shift();d()){}};var Y=Object.prototype.propertyIsEnumerable?F("style"):{length:0};var c=F("link");U.ready(function(){var g=0,f;for(var e=0,d=c.length;f=c[e],e<d;++e){if(!f.disabled&&f.rel.toLowerCase()=="stylesheet"){++g}}if(document.styleSheets.length>=Y.length+g){b()}else{setTimeout(arguments.callee,10)}});return function(d){if(a){d()}else{Z.push(d)}}})(),supports:function(a,Z){var Y=document.createElement("span").style;if(Y[a]===undefined){return false}Y[a]=Z;return Y[a]===Z},textAlign:function(b,a,Y,Z){if(a.get("textAlign")=="right"){if(Y>0){b=" "+b}}else{if(Y<Z-1){b+=" "}}return b},textDecoration:function(d,c){if(!c){c=this.getStyle(d)}var Z={underline:null,overline:null,"line-through":null};for(var Y=d;Y.parentNode&&Y.parentNode.nodeType==1;){var b=true;for(var a in Z){if(Z[a]){continue}if(c.get("textDecoration").indexOf(a)!=-1){Z[a]=c.get("color")}b=false}if(b){break}c=this.getStyle(Y=Y.parentNode)}return Z},textShadow:I(function(c){if(c=="none"){return null}var b=[],d={},Y,Z=0;var a=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(Y=a.exec(c)){if(Y[0]==","){b.push(d);d={},Z=0}else{if(Y[1]){d.color=Y[1]}else{d[["offX","offY","blur"][Z++]]=Y[2]}}}b.push(d);return b}),color:I(function(Z){var Y={};Y.color=Z.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(b,a,c){Y.opacity=parseFloat(c);return"rgb("+a+")"});return Y}),textTransform:function(Z,Y){return Z[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[Y.get("textTransform")]||"toString"]()}};function Q(Z){var Y=this.face=Z.face;this.glyphs=Z.glyphs;this.w=Z.w;this.baseSize=parseInt(Y["units-per-em"],10);this.family=Y["font-family"].toLowerCase();this.weight=Y["font-weight"];this.style=Y["font-style"]||"normal";this.viewBox=(function(){var b=Y.bbox.split(/\s+/);var a={minX:parseInt(b[0],10),minY:parseInt(b[1],10),maxX:parseInt(b[2],10),maxY:parseInt(b[3],10)};a.width=a.maxX-a.minX,a.height=a.maxY-a.minY;a.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return a})();this.ascent=-parseInt(Y.ascent,10);this.descent=-parseInt(Y.descent,10);this.height=-this.ascent+this.descent}function E(){var Z={},Y={oblique:"italic",italic:"oblique"};this.add=function(a){(Z[a.style]||(Z[a.style]={}))[a.weight]=a};this.get=function(e,f){var d=Z[e]||Z[Y[e]]||Z.normal||Z.italic||Z.oblique;if(!d){return null}f={normal:400,bold:700}[f]||parseInt(f,10);if(d[f]){return d[f]}var b={1:1,99:0}[f%100],h=[],c,a;if(b===undefined){b=f>400}if(f==500){f=400}for(var g in d){g=parseInt(g,10);if(!c||g<c){c=g}if(!a||g>a){a=g}h.push(g)}if(f<c){f=c}if(f>a){f=a}h.sort(function(j,i){return(b?(j>f&&i>f)?j<i:j>i:(j<f&&i<f)?j>i:j<i)?-1:1});return d[h[0]]}}function P(){function a(c,d){if(c.contains){return c.contains(d)}return c.compareDocumentPosition(d)&16}function Y(d){var c=d.relatedTarget;if(!c||a(this,c)){return}Z(this)}function b(c){Z(this)}function Z(c){setTimeout(function(){K.replace(c,D.get(c).options,true)},10)}this.attach=function(c){if(c.onmouseenter===undefined){O(c,"mouseover",Y);O(c,"mouseout",Y)}else{O(c,"mouseenter",b);O(c,"mouseleave",b)}}}function X(){var a={},Y=0;function Z(b){return b.cufid||(b.cufid=++Y)}this.get=function(b){var c=Z(b);return a[c]||(a[c]={})}}function A(Y){var a={},Z={};this.get=function(b){return a[b]!=undefined?a[b]:Y[b]};this.getSize=function(c,b){return Z[c]||(Z[c]=new L.Size(this.get(c),b))};this.extend=function(b){for(var c in b){a[c]=b[c]}return this}}function O(Z,Y,a){if(Z.addEventListener){Z.addEventListener(Y,a,false)}else{if(Z.attachEvent){Z.attachEvent("on"+Y,function(){return a.call(Z,window.event)})}}}function R(Z,Y){var a=D.get(Z);if(a.options){return Z}if(Y.hover&&Y.hoverables[Z.nodeName.toLowerCase()]){B.attach(Z)}a.options=Y;return Z}function I(Y){var Z={};return function(a){if(!Z.hasOwnProperty(a)){Z[a]=Y.apply(null,arguments)}return Z[a]}}function C(d,c){if(!c){c=L.getStyle(d)}var Z=c.get("fontFamily").split(/\s*,\s*/),b;for(var a=0,Y=Z.length;a<Y;++a){b=Z[a].replace(/^(["'])(.*?)\1$/,"$2").toLowerCase();if(H[b]){return H[b].get(c.get("fontStyle"),c.get("fontWeight"))}}return null}function F(Y){return document.getElementsByTagName(Y)}function G(){var Y={},b;for(var a=0,Z=arguments.length;a<Z;++a){for(b in arguments[a]){Y[b]=arguments[a][b]}}return Y}function M(b,k,Z,m,c,a){var j=m.separate;if(j=="none"){return W[m.engine].apply(null,arguments)}var h=document.createDocumentFragment(),e;var f=k.split(N[j]),Y=(j=="words");if(Y&&S){if(/^\s/.test(k)){f.unshift("")}if(/\s$/.test(k)){f.push("")}}for(var g=0,d=f.length;g<d;++g){e=W[m.engine](b,Y?L.textAlign(f[g],Z,g,d):f[g],Z,m,c,a,g<d-1);if(e){h.appendChild(e)}}return h}function J(Z,g){var a,Y,d,f;for(var b=R(Z,g).firstChild;b;b=d){d=b.nextSibling;f=false;if(b.nodeType==1){if(!b.firstChild){continue}if(!/cufon/.test(b.className)){arguments.callee(b,g);continue}else{f=true}}if(!Y){Y=L.getStyle(Z).extend(g)}if(!a){a=C(Z,Y)}if(!a){continue}if(f){W[g.engine](a,null,Y,g,b,Z);continue}var e=b.data;if(e===""){continue}var c=M(a,e,Y,g,b,Z);if(c){b.parentNode.replaceChild(c,b)}else{b.parentNode.removeChild(b)}}}var S=" ".split(/\s+/).length==0;var D=new X();var B=new P();var V=[];var W={},H={},T={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||window.jQuery||(window.dojo&&dojo.query)||(window.$$&&function(Y){return $$(Y)})||(window.$&&function(Y){return $(Y)})||(document.querySelectorAll&&function(Y){return document.querySelectorAll(Y)})||F),separate:"words",textShadow:"none"};var N={words:/\s+/,characters:""};K.now=function(){U.ready();return K};K.refresh=function(){var a=V.splice(0,V.length);for(var Z=0,Y=a.length;Z<Y;++Z){K.replace.apply(null,a[Z])}return K};K.registerEngine=function(Z,Y){if(!Y){return K}W[Z]=Y;return K.set("engine",Z)};K.registerFont=function(a){var Y=new Q(a),Z=Y.family;if(!H[Z]){H[Z]=new E()}H[Z].add(Y);return K.set("fontFamily",Z)};K.replace=function(a,Z,Y){Z=G(T,Z);if(!Z.engine){return K}if(typeof Z.textShadow=="string"){Z.textShadow=L.textShadow(Z.textShadow)}if(!Y){V.push(arguments)}if(a.nodeType||typeof a=="string"){a=[a]}L.ready(function(){for(var c=0,b=a.length;c<b;++c){var d=a[c];if(typeof d=="string"){K.replace(Z.selector(d),Z,true)}else{J(d,Z)}}});return K};K.set=function(Y,Z){T[Y]=Z;return K};return K})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return null}B=null;var A=Cufon.CSS.supports("display","inline-block");var E=!A&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var F=document.createElement("style");F.type="text/css";F.appendChild(document.createTextNode("@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle"+(E?"":";font-size:1px;line-height:1px")+"}.cufon-canvas .cufon-alt{position:absolute;left:-10000in;font-size:1px}"+(A?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(q,T,k,P,X,r){var I=(T===null);var V=q.viewBox;var J=k.getSize("fontSize",q.baseSize);var h=k.get("letterSpacing");h=(h=="normal")?0:J.convertFrom(parseInt(h,10));var W=0,j=0,f=0,R=0;var U=P.textShadow,d=[];if(U){for(var p=0,m=U.length;p<m;++p){var Z=U[p];var c=J.convertFrom(parseFloat(Z.offX));var b=J.convertFrom(parseFloat(Z.offY));d[p]=[c,b];if(b<W){W=b}if(c>j){j=c}if(b>f){f=b}if(c<R){R=c}}}var u=Cufon.CSS.textTransform(I?X.alt:T,k).split("");var G=0,S=null;for(var p=0,m=u.length;p<m;++p){var Q=q.glyphs[u[p]]||q.missingGlyph;if(!Q){continue}G+=S=Number(Q.w||q.w)+h}if(S===null){return null}j+=(V.width-S);R+=V.minX;var O,K;if(I){O=X;K=X.firstChild}else{O=document.createElement("span");O.className="cufon cufon-canvas";O.alt=T;K=document.createElement("canvas");O.appendChild(K);if(P.printable){var n=document.createElement("span");n.className="cufon-alt";n.appendChild(document.createTextNode(T));O.appendChild(n)}}var v=O.style;var a=K.style;var H=J.convert(V.height-W+f);var t=Math.ceil(H);var e=t/H;K.width=Math.ceil(J.convert(G+j-R)*e);K.height=t;W+=V.minY;a.top=Math.round(J.convert(W-q.ascent))+"px";a.left=Math.round(J.convert(R))+"px";var N=Math.ceil(J.convert(G*e))+"px";if(A){v.width=N;v.height=J.convert(q.height)+"px"}else{v.paddingLeft=N;v.paddingBottom=(J.convert(q.height)-1)+"px"}var s=K.getContext("2d"),Y=t/V.height;s.scale(Y,Y);s.translate(-R,-W);s.lineWidth=q.face["underline-thickness"];s.save();function L(i,g){s.strokeStyle=g;s.beginPath();s.moveTo(0,i);s.lineTo(G,i);s.stroke()}var M=P.enableTextDecoration?Cufon.CSS.textDecoration(r,k):{};if(M.underline){L(-q.face["underline-position"],M.underline)}if(M.overline){L(q.ascent,M.overline)}s.fillStyle=k.get("color");function o(){for(var w=0,g=u.length;w<g;++w){var x=q.glyphs[u[w]]||q.missingGlyph;if(!x){continue}s.beginPath();if(x.d){if(x.code){C(x.code,s)}else{x.code=D("m"+x.d,s)}}s.fill();s.translate(Number(x.w||q.w)+h,0)}}if(U){for(var p=0,m=U.length;p<m;++p){var Z=U[p];s.save();s.fillStyle=Z.color;s.translate.apply(s,d[p]);o();s.restore()}}o();s.restore();if(M["line-through"]){L(-q.descent,M["line-through"])}return O}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}document.write('<!--[if vml]><script type="text/javascript">Cufon.vmlEnabled=true;<\/script><![endif]-->');if(!Cufon.vmlEnabled){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml");document.write('<style type="text/css">@media screen{cvml\\:shape,cvml\\:group,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute}.cufon-vml-canvas{position:absolute;text-align:left}.cufon-vml{display:inline-block;position:relative;vertical-align:middle}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none}.cufon-vml .cufon-alt{display:inline}}</style>')}function B(C,D){return A(C,/(?:em|ex|%)$/i.test(D)?"1em":D)}function A(F,G){if(/px$/i.test(G)){return parseFloat(G)}var E=F.style.left,D=F.runtimeStyle.left;F.runtimeStyle.left=F.currentStyle.left;F.style.left=G;var C=F.style.pixelLeft;F.style.left=E;F.runtimeStyle.left=D;return C}return function(r,U,m,R,Y,s,h){var F=(U===null);if(F){U=Y.alt}var W=r.viewBox;var G=m.computedFontSize||(m.computedFontSize=new Cufon.CSS.Size(B(s,m.get("fontSize"))+"px",r.baseSize));var g=m.computedLSpacing;if(g==undefined){g=m.get("letterSpacing");m.computedLSpacing=g=(g=="normal")?0:~~G.convertFrom(A(s,g))}var O,H;if(F){O=Y;H=Y.firstChild}else{O=document.createElement("span");O.className="cufon cufon-vml";O.alt=U;H=document.createElement("span");H.className="cufon-vml-canvas";O.appendChild(H);if(R.printable){var p=document.createElement("span");p.className="cufon-alt";p.appendChild(document.createTextNode(U));O.appendChild(p)}if(!h){O.appendChild(document.createElement("cvml:group"))}}var x=O.style;var b=H.style;var D=G.convert(W.height),u=Math.ceil(D);var f=u/D;var e=W.minX,d=W.minY;b.height=u;b.top=Math.round(G.convert(d-r.ascent));b.left=Math.round(G.convert(e));x.height=G.convert(r.height)+"px";var K=R.enableTextDecoration?Cufon.CSS.textDecoration(s,m):{};var T=m.get("color");var v=Cufon.CSS.textTransform(U,m).split("");var C=0,c=0,L=null;var S,M,V=R.textShadow;for(var q=0,o=0,n=v.length;q<n;++q){S=r.glyphs[v[q]]||r.missingGlyph;if(S){C+=L=~~(S.w||r.w)+g}}if(L===null){return null}var N=-e+C+(W.width-L);var w=G.convert(N*f),j=Math.round(w);var a=N+","+W.height,E;var X="r"+a+"nsnf";for(q=0;q<n;++q){S=r.glyphs[v[q]]||r.missingGlyph;if(!S){continue}if(F){M=H.childNodes[o];if(M.firstChild){M.removeChild(M.firstChild)}}else{M=document.createElement("cvml:shape");H.appendChild(M)}M.stroked="f";M.coordsize=a;M.coordorigin=E=(e-c)+","+d;M.path=(S.d?"m"+S.d+"xe":"")+"m"+E+X;M.fillcolor=T;var t=M.style;t.width=j;t.height=u;if(V){var J=V[0],I=V[1];var Q=Cufon.CSS.color(J.color),P;var Z=document.createElement("cvml:shadow");Z.on="t";Z.color=Q.color;Z.offset=J.offX+","+J.offY;if(I){P=Cufon.CSS.color(I.color);Z.type="double";Z.color2=P.color;Z.offset2=I.offX+","+I.offY}Z.opacity=Q.opacity||(P&&P.opacity)||1;M.appendChild(Z)}c+=~~(S.w||r.w)+g;++o}x.width=Math.max(Math.ceil(G.convert(C*f)),0);return O}})());Cufon.registerFont({"w":299,"face":{"font-family":"Bradley Hand ITC TT","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 7 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"11","cap-height":"5","bbox":"-148 -275 356.082 143.321","underline-thickness":"21.96","underline-position":"-48.96","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":91},"!":{"d":"68,-193v6,36,-7,60,0,93v-5,20,9,47,-13,53v-16,-4,-12,-38,-11,-53v-10,-4,4,-31,-5,-38v11,-17,-5,-42,0,-59v11,1,21,0,29,4xm65,-26v18,0,15,26,2,28v-10,-2,-11,0,-24,-2v-10,-19,5,-39,25,-28v-1,1,-2,2,-3,2","w":112},"\"":{"d":"72,-113v-3,-26,-22,-78,21,-69v16,23,-7,41,-1,66v-5,4,-12,6,-20,3xm24,-116v6,-27,-17,-49,0,-66v12,-5,33,0,24,14v6,13,-1,39,-4,55v-8,3,-14,1,-20,-3","w":117},"#":{"d":"102,-125v14,-1,26,1,40,0v0,-15,12,-20,9,-38v13,-9,8,-30,30,-35r13,12r-26,61v22,3,36,3,57,2v8,33,-28,12,-53,20v-22,-9,-16,27,-29,39v23,4,46,1,67,3v2,7,11,17,-2,17v-5,8,-15,-6,-24,2v-13,-3,-39,-3,-51,4v-14,27,-21,69,-37,95r-16,-7v7,-32,20,-61,28,-93v-13,4,-29,2,-40,2v-16,29,-21,70,-38,98r-17,-7r29,-90v-19,-6,-47,13,-45,-20v16,-9,38,-3,56,-5v0,-11,6,-17,6,-29v4,-1,4,-5,6,-9v-11,4,-30,-4,-39,3v-11,-1,-21,-22,-5,-25v19,-4,37,0,54,-1v2,-14,12,-19,10,-37v15,-10,5,-27,29,-35r13,12v-7,22,-17,40,-25,61xm77,-64v28,5,54,-3,48,-30v4,0,4,-6,5,-9v-21,-2,-45,-4,-43,21v-4,5,-6,13,-10,18","w":226},"$":{"d":"216,-147v-1,12,-23,20,-31,9v-7,0,-21,-3,-28,-2v0,20,-3,37,0,50v10,-7,12,8,17,0v22,6,57,10,51,38v-3,1,-6,2,-5,7v-17,14,-35,7,-50,19v-4,-3,-14,1,-17,2v6,38,-2,62,3,91v-5,5,5,34,-12,18v0,0,-2,0,-2,1v-1,-21,-4,-41,-1,-61v-8,-7,2,-33,-5,-47v-9,4,-19,5,-27,7v-2,41,-2,72,4,98v0,4,-2,5,-5,5v-20,-6,-10,-43,-17,-65v4,-10,1,-24,0,-36v-23,4,-54,-3,-70,2v-8,-11,-34,-6,-34,-25v0,-17,24,-13,41,-14v10,0,12,9,4,14v22,6,37,2,61,1v0,-14,-4,-33,1,-44v-20,4,-29,-6,-45,-10v-12,-8,-19,-43,3,-44v0,-12,27,-14,41,-17v1,-24,-2,-52,5,-71v3,-21,20,-6,24,3v-18,5,0,38,-9,51v3,4,-3,11,1,12v5,-5,14,-3,23,-3v-1,-30,6,-52,3,-75v8,-6,13,5,21,4v0,13,-4,28,0,41v-10,4,6,19,-7,22v2,1,3,4,0,4v22,-7,56,-3,62,15xm138,-93r0,-45r-25,3v-2,13,-1,25,0,38v9,2,19,0,25,4xm154,-49v8,2,59,-12,30,-13v-4,-9,-22,-3,-29,-9v4,11,-2,13,-1,22xm80,-102v19,8,10,-17,14,-27v-16,3,-27,10,-35,21v7,1,17,2,21,6xm138,-73v-10,1,-19,2,-26,-3v-4,13,-1,24,-4,39v13,-5,35,1,27,-21v3,-3,3,-9,3,-15","w":241},"%":{"d":"129,8v-14,-36,5,-72,23,-95r0,-8v17,-4,30,-6,49,-1v26,15,33,69,5,90v-16,20,-53,35,-77,14xm173,-223v14,-8,40,-39,52,-8v-8,26,-44,28,-50,57v-14,2,-9,21,-21,26v6,6,-6,4,-5,12v-15,20,-26,43,-39,65r-1,-2v-4,25,-21,39,-24,65v-26,33,-23,110,20,103v18,7,35,-9,48,6v-12,26,-72,16,-91,2v-39,-45,-2,-109,9,-150v12,-19,19,-42,34,-57v9,-32,32,-52,41,-80v-11,-4,-25,6,-40,2v12,8,11,42,-4,49v-11,24,-71,35,-85,7v-12,-8,-6,-27,-3,-39v6,-2,2,-15,5,-24v21,-3,18,-33,39,-33v1,0,25,6,28,16v21,-2,65,5,73,-11v6,4,19,-1,14,-6xm64,-130v9,-8,36,-18,25,-42r-2,3v-5,-13,-17,-17,-34,-17v-9,16,-28,43,-8,55v7,-1,14,-2,19,1xm156,-3v31,-3,64,-45,33,-70v-6,2,-10,-3,-10,5v-15,-7,-11,15,-22,19v-5,10,-16,38,-1,46","w":255},"&":{"d":"170,-73v18,-10,41,7,30,25v4,12,-5,32,6,39v-14,10,1,36,-13,49v-1,21,-27,50,-59,45v-33,3,-69,-16,-100,-22v-9,-11,-35,-11,-37,-31r-5,-11v12,-8,46,-12,29,10v7,5,16,12,28,14v23,9,50,12,73,18v6,-8,30,8,35,-12v22,-16,13,-50,17,-72v-3,-4,-4,-9,-6,-14v-14,13,-50,9,-67,20v-2,-6,-23,-4,-27,1v-5,-3,-8,-10,-16,-7v-25,-4,-43,-23,-41,-50v28,-24,17,-21,55,-35v-10,-4,-25,-10,-22,-25v-11,-16,7,-27,12,-38v34,-16,44,-22,87,-25r-1,-1v27,0,39,17,57,27v0,17,-5,25,-26,20v-16,-39,-90,-18,-105,6v1,4,4,10,-1,12v28,25,69,-4,94,20v-6,30,-42,7,-67,20v-21,3,-38,12,-52,22v-13,31,33,27,56,26v25,-1,45,-9,66,-19r0,-12","w":218},"'":{"d":"21,-174v14,-23,44,-2,33,20v-4,11,-2,28,-7,41v-30,9,-18,-34,-27,-53","w":77},"(":{"d":"121,-192v-53,49,-34,152,-4,195v3,0,8,-2,7,3v-2,12,29,34,0,41v-26,5,-28,-30,-43,-44v-2,-18,-16,-29,-17,-54v0,0,-1,1,-1,3v2,-26,-8,-37,-1,-59v-7,-11,3,-20,1,-34v11,-12,11,-48,29,-57v9,-19,26,-32,44,-43v22,1,7,21,-1,26v-3,9,-17,3,-14,23","w":150},")":{"d":"40,-1v43,-38,40,-139,11,-176v-5,-7,-2,-21,-15,-20v-5,-17,-26,-51,15,-42v21,31,38,55,45,98r1,-4v3,24,0,48,5,69v-9,14,-7,43,-20,56v-2,11,-5,21,-14,24v-9,19,-26,34,-45,44v-21,-2,-5,-21,3,-26v3,-10,16,-4,14,-23","w":150},"*":{"d":"142,-211v14,8,-12,19,-16,26v20,5,45,-9,54,6v-10,14,-47,6,-73,12v17,6,28,18,50,20v3,9,18,8,26,16v-26,21,-56,-18,-86,-22v1,16,0,35,4,49v-1,6,-4,9,-9,9v-7,0,-11,-8,-12,-24r-2,-31v-14,7,-22,20,-36,27v-7,9,-12,14,-17,14v-15,-1,-4,-17,1,-23v17,-8,26,-22,42,-31r0,-3v-18,1,-48,13,-56,-1v2,-18,27,-10,44,-14v-13,-2,-20,-10,-24,-21v7,-6,19,-8,23,2v6,-4,15,9,22,12v-3,-18,-2,-32,0,-46v14,-5,32,9,23,22v2,7,-3,13,0,22v11,-9,23,-31,42,-21","w":199},"+":{"d":"255,-95r-93,0r0,95r-24,0r0,-95r-93,0r0,-25r93,0r0,-95r24,0r0,95r93,0r0,25"},",":{"d":"-5,45v-1,-32,32,-44,39,-73v8,-12,25,-4,35,0v5,29,-25,32,-38,50v-14,5,-16,28,-36,23","w":95,"k":{"9":13,"7":10,"4":8}},"-":{"d":"18,-86v25,9,111,-7,93,18r-96,2v-8,-6,-7,-16,3,-20","w":128,"k":{"Y":40,"X":13,"W":20,"V":20,"T":47,"P":20,"L":27,"F":20,"D":20,"B":13,"A":7}},"\u2010":{"d":"18,-86v25,9,111,-7,93,18r-96,2v-8,-6,-7,-16,3,-20","w":128},".":{"d":"34,-27v11,-14,42,3,31,22v-8,13,-44,10,-39,-13v0,-4,2,-7,8,-9","w":95,"k":{"9":14,"7":10,"4":13}},"\/":{"d":"-9,6v16,-28,35,-54,53,-80v0,-19,18,-19,20,-37v14,-4,13,-24,28,-28v-4,-11,12,-14,8,-21v7,-9,17,-15,16,-33v3,-2,5,-3,7,-1v-1,-6,3,-6,2,-14v20,-8,44,9,25,23v-13,9,-26,45,-42,56v-11,19,-26,36,-39,53v3,17,-17,12,-18,29v-13,8,-16,27,-29,36v-2,9,-23,41,-31,17","w":155},"0":{"d":"181,-79v3,13,-22,31,-28,44v-26,12,-46,31,-80,35v-45,18,-86,-29,-60,-75v4,-25,20,-37,23,-60v14,0,14,-21,25,-21v1,-4,1,-9,8,-7v12,-13,58,-31,68,-9v28,12,55,59,44,93xm146,-69v25,-20,11,-77,-19,-78v-20,-20,-44,13,-61,22v-4,12,-15,17,-17,30v-9,12,-16,22,-15,37v-6,7,2,14,-4,23v7,22,38,15,56,9v6,-11,27,-1,30,-19v16,-2,29,-11,30,-24","w":196},"1":{"d":"100,-51v-8,4,1,16,-2,23r-1,-1r0,7v9,-8,25,1,35,-6v-1,3,-6,7,1,7v21,0,63,-1,39,20v-18,1,-30,5,-46,1r2,-2v-4,2,-17,6,-16,-3v-11,14,-44,-3,-57,9v-19,-1,-62,-1,-43,-27v20,-4,45,-4,62,-2v-9,-23,3,-44,-3,-62v2,-14,9,-25,7,-40v-11,5,-26,6,-33,15v-8,-5,-15,-1,-23,5v-6,-9,-23,-5,-24,-18v4,-11,16,-13,23,-5v13,-8,38,-10,50,-20r-4,-4v6,-2,14,-9,19,-2v-3,-19,13,-20,31,-19v17,11,9,21,-3,28v-6,27,-22,64,-14,96","w":189,"k":{"9":14,"7":15,"4":15}},"2":{"d":"22,-160v34,-16,93,-33,129,-7v12,4,30,14,34,29v14,18,0,54,-16,62v-9,12,-24,30,-40,28v-9,6,-11,13,-23,16v17,-1,30,9,42,9v2,10,29,-2,41,8v11,-11,47,2,23,13r2,0v-15,13,-46,5,-61,6v-16,-7,-31,-11,-54,-15v-17,-11,-27,5,-44,6v-19,15,-69,7,-55,-26r-3,-3v22,-25,57,-19,85,-8v15,-3,22,-15,36,-19v0,-11,15,-7,16,-17r3,1v0,-6,2,-10,9,-9v6,-8,20,-16,16,-32v9,-19,-15,-30,-35,-32v-24,-11,-63,-3,-74,11v-3,0,-6,1,-5,5v-12,7,-38,25,-40,-5v-1,-11,10,-14,14,-21xm21,-18v20,9,61,-17,20,-13v-12,0,-27,1,-20,13","w":223},"3":{"d":"109,-87v31,9,80,-1,87,32v11,9,0,26,-10,30v-34,27,-102,32,-147,26v-8,6,-14,-5,-22,0v-9,-3,-16,-6,-16,-22v0,-20,42,-20,45,-6v0,0,-6,6,2,7v11,-3,29,5,40,-3v15,0,31,5,39,-4v15,6,21,-12,34,-10v18,-6,15,-15,1,-21v-8,-3,-18,5,-21,-3v-29,-8,-73,4,-83,-25v12,-20,42,-19,67,-26v12,-8,57,-20,14,-28v-26,3,-57,1,-76,11v-10,-2,-21,8,-26,16v-18,-1,-30,-29,-7,-32v3,-8,20,0,22,-11v8,-1,17,-4,21,2v5,-8,30,-7,47,-9v-1,1,-3,1,0,1v9,2,19,0,31,1v1,9,21,2,23,14v19,9,5,37,-10,40v-13,13,-37,15,-55,20","w":217},"4":{"d":"66,-107v15,-16,26,-36,41,-49v-3,-5,2,-9,6,-10v3,-21,19,-17,24,-4v2,13,-6,15,-7,25v-11,9,-23,38,-41,47v0,5,-6,4,-8,7v15,0,36,13,47,5v0,-8,8,-9,4,-21v8,-6,4,-25,13,-36v1,-15,-3,-41,16,-41v33,22,-9,79,-7,104v23,10,41,-10,61,-13v16,21,-24,44,-49,39v-32,-7,-16,25,-24,43v4,15,15,42,-16,32v-11,-32,-8,-49,-5,-80v-26,-6,-61,-13,-81,-3v-7,10,-39,9,-37,-8v6,-11,17,-25,35,-20v6,-6,18,-2,19,-15","w":226,"k":{"7":13,".":42,",":37}},"5":{"d":"149,-10v-41,27,-159,22,-149,-43v-2,3,-3,2,-4,4v0,0,2,-2,6,-7v22,-16,11,24,30,26v22,20,71,15,96,5v7,-9,30,-11,33,-30v15,-6,3,-34,-11,-33v-17,2,-36,-9,-50,-2v-26,-9,-51,15,-69,5v-7,-18,6,-32,18,-38v6,-14,20,-29,-2,-39v20,-31,77,-11,115,-19v26,13,70,-16,86,7v-27,23,-74,9,-116,21v-18,-3,-47,-5,-43,19v-10,0,-6,13,-16,13v0,5,0,4,-4,9v36,-7,76,-3,106,7v3,5,8,10,14,12v12,25,0,55,-17,65v-2,2,-3,5,-3,9v-9,0,-11,9,-20,9","w":219},"6":{"d":"86,-127v-10,1,-12,14,-21,17v-8,20,-33,50,-21,75v5,-22,24,-41,44,-44v31,-22,101,-41,127,-4v5,20,-9,25,-13,39v-42,23,-86,40,-137,50v-30,-9,-50,-25,-50,-64v10,-27,22,-52,36,-75v8,-2,7,-12,16,-14v24,-20,41,-39,81,-37v19,17,16,25,-7,36v-21,-15,-44,4,-55,21xm81,-22v43,-7,92,-18,111,-51v-19,-23,-61,-3,-80,5v-17,7,-34,17,-43,33v0,7,-5,11,-10,12v7,0,19,8,22,1","w":228},"7":{"d":"198,-155v1,20,-22,24,-14,41v-9,-2,-11,8,-13,14v10,-3,21,9,26,-2v9,2,21,2,30,0r0,3v5,-6,16,-3,25,-3r3,15v-19,2,-28,9,-48,7v-11,12,-56,-13,-58,16v-10,5,-13,24,-26,30v-3,7,-8,13,-14,17v-5,16,-17,17,-22,32v-33,18,-55,65,-105,50v-1,-17,20,-12,26,-22v10,3,26,-20,34,-13v10,-29,45,-38,54,-69v9,-8,29,-26,28,-38v-26,-1,-57,4,-67,-12v8,-29,55,-11,85,-11v2,-6,18,-19,14,-34v8,-2,10,-10,14,-16v-8,7,-24,0,-31,11v-22,-9,-52,6,-76,-4v-11,6,-25,-7,-38,-1v-18,0,-26,-16,-18,-33v31,4,59,15,96,14v20,-5,56,-9,79,-14v6,-22,37,-12,36,9v-7,4,-14,8,-20,13","w":245,"k":{".":57,",":57}},"8":{"d":"60,-176v38,-30,139,-25,138,34v-18,33,-54,43,-83,64v-4,12,24,20,34,29v13,11,27,45,-5,53v-33,8,-62,3,-95,0v-6,-9,-23,-2,-23,-17v-13,-9,3,-27,5,-36v8,-2,7,-8,15,-9r-2,0v5,-8,16,-12,25,-16v-11,-3,-14,-11,-25,-15v-7,-13,-18,-26,-25,-39v1,-4,8,-7,8,-12r-1,1v7,-17,15,-30,34,-37xm99,-155v-19,-8,-44,7,-51,24v7,5,5,20,14,23v6,19,37,24,46,6v20,-5,31,-18,48,-27v0,-2,2,-4,5,-3r13,-19v-8,-15,-21,-16,-38,-21v6,11,-6,30,-22,19v-2,-6,-11,-7,-15,-2xm48,-20v22,9,77,16,93,-2v-10,-18,-34,-27,-50,-40v-13,0,-20,14,-32,17v6,5,-4,7,-8,10v-1,5,-3,7,-7,8v2,1,4,6,4,7","w":203},"9":{"d":"-94,72v36,23,110,13,135,-11v19,-2,26,-17,41,-24v12,-19,33,-34,39,-58v4,-4,9,-8,5,-15v18,-11,17,-52,13,-75v-1,7,-10,8,-9,17v-26,13,-66,38,-103,19v-20,-17,-11,-62,6,-74v4,-13,17,-18,24,-29v24,-12,64,-32,79,-4v10,18,27,35,24,55v16,26,1,67,0,90v-10,1,-3,19,-13,23v-11,28,-32,41,-47,64v-28,21,-56,43,-100,48v-31,13,-96,14,-102,-18v0,-5,3,-8,8,-8xm91,-103v25,-4,43,-29,29,-54v-6,-3,-16,-5,-15,-13v-21,8,-33,12,-44,29v-11,4,-11,17,-19,24v3,7,-7,30,10,27v14,-2,34,-1,39,-13","w":196},":":{"d":"71,-117v-1,23,-20,32,-42,23v-11,-11,0,-43,13,-35v14,-7,21,7,29,12xm38,0v-22,-6,-12,-41,7,-41v14,1,26,8,24,22v6,10,-15,24,-31,19xm45,1r2,1","w":95},";":{"d":"28,-110v-6,-25,17,-25,31,-27v17,14,23,36,-3,48v-10,-1,-12,0,-22,-2v-1,-8,-13,-12,-6,-19xm10,8v17,-18,22,-66,59,-43v5,31,-25,36,-38,55v-15,5,-13,28,-36,25v-1,-19,9,-26,14,-39","w":95},"<":{"d":"253,-11r-207,-85r0,-23r207,-85r0,27r-170,70r170,69r0,27"},"=":{"d":"255,-130r-210,0r0,-24r210,0r0,24xm255,-60r-210,0r0,-25r210,0r0,25"},">":{"d":"253,-96r-207,85r0,-27r171,-69r-171,-70r0,-27r207,85r0,23"},"?":{"d":"40,-70v-11,-14,11,-26,16,-38v15,-8,13,-16,27,-22v8,-8,19,-25,2,-31v-4,-17,-33,-1,-40,-10v-10,10,-30,13,-33,-3v7,-6,15,-14,21,-7v13,-25,43,-10,61,-10v11,12,20,26,30,39v-3,6,-4,13,-2,21v-11,6,-14,17,-26,22v-1,9,-14,8,-16,17v-9,3,-26,25,-9,31v8,3,5,12,6,21v-21,1,-25,-13,-39,-19v0,-4,0,-9,2,-11xm45,-34v19,1,44,18,28,34v-13,7,-40,1,-31,-13v-3,-9,-1,-15,3,-21","w":141},"@":{"d":"228,-169v12,23,17,66,1,87v-4,17,-22,31,-31,43v-19,2,-42,20,-52,3v0,-17,0,-34,3,-49v-12,21,-31,36,-47,54v-32,9,-27,-34,-18,-57r19,-47v0,0,1,2,1,0v2,-18,42,-26,57,-10v3,0,6,4,7,0r-2,1v29,3,-4,36,2,55v-6,18,-6,26,-7,39v9,2,23,6,25,-4v21,-5,27,-34,36,-51v-8,-6,6,-21,-4,-26v6,-9,-5,-12,-3,-23v-9,1,-3,-12,-13,-11v-22,-22,-72,-25,-100,-9v-4,9,-16,2,-20,15v-14,1,-23,28,-35,34v-4,22,-25,52,-14,77v2,41,40,63,74,63v34,10,67,-9,91,-23v15,-2,25,13,11,22v-33,21,-97,28,-136,9v-9,4,-10,-7,-20,-4v-12,-16,-28,-26,-35,-48v-12,-37,4,-78,15,-106v18,-17,29,-42,55,-50v46,-34,111,-20,134,14xm128,-85v12,-8,37,-34,18,-45v-6,-1,-13,-5,-19,-1r1,1v-23,15,-36,60,-30,79v0,-6,8,-7,11,-10v-1,1,-2,1,-4,1v8,-8,22,-14,23,-25","w":246},"A":{"d":"195,-99v11,13,36,-6,49,5v12,-4,16,9,6,13v-12,2,-34,5,-45,10v6,26,20,43,33,62v9,2,10,13,19,15v-3,21,-28,4,-40,2v-19,-21,-32,-48,-44,-76v-11,-1,-16,1,-24,5v-12,-12,-36,7,-55,-1v-8,8,-15,-6,-21,0v-8,9,-8,14,-17,16v-18,27,-25,23,-39,47v-9,5,-23,13,-32,3v4,-6,5,-15,6,-24v9,0,18,-2,19,-10v14,-10,25,-25,36,-39v-10,-10,4,-12,3,-23v15,3,24,-2,26,-16v12,-4,17,-18,20,-29v12,0,11,-15,21,-18v-4,-13,20,-18,12,-29v9,-12,14,-9,21,-17v26,16,29,56,45,82v-1,4,6,18,1,22xm97,-93v20,1,54,6,71,2v-4,-3,-4,-5,0,-8v-8,-8,-4,-32,-16,-37v0,-8,-2,-23,-8,-18v-11,10,-15,27,-29,34v-3,11,-13,18,-18,27","w":261,"k":{"y":20,"w":13,"v":2,"u":3,"t":-3,"q":13,"p":3,"o":7,"f":13,"d":7,"c":3,"Y":48,"X":13,"W":13,"V":27,"U":13,"T":33,"S":7,"Q":7,"P":7,"N":7,"L":13,"K":7,"G":13,"F":7,"E":13,"C":13,";":7,":":7,".":7,",":7}},"B":{"d":"149,-87v29,-3,75,3,91,28v-7,21,-22,34,-46,37v-12,12,-44,8,-54,21v-13,-8,-31,7,-41,1v-18,-1,-28,16,-40,8v1,-7,-4,-6,-9,-4v-1,-14,-9,-37,-1,-50v-3,-8,0,-17,-4,-26v-20,-7,-13,-23,1,-28v0,-27,-4,-48,-11,-66v-8,5,-14,-1,-19,5v-2,-6,-6,-4,-11,-1v-26,-11,-20,-30,2,-33v43,7,96,4,131,19v18,-1,24,11,41,11v1,5,6,7,10,9v6,31,-25,36,-48,42v-13,13,-38,12,-56,20v19,9,49,-3,64,7xm74,-112v29,-4,54,-22,83,-29v-16,-17,-49,-12,-75,-20v-4,4,-12,-6,-10,9v2,14,3,29,2,40xm76,-56v-3,12,1,26,1,38v37,-2,63,-12,94,-17v13,-2,33,-11,36,-21v-34,-9,-65,-14,-101,-11v-8,-3,-42,-13,-30,11","w":246,"k":{"u":7,"r":7,"i":7,"Y":47,"W":13,"V":33,"O":7,"G":7,"-":-7}},"C":{"d":"33,-20v-10,-14,-27,-49,-12,-71v3,-22,17,-34,18,-55v11,-5,15,-16,21,-26v18,-2,26,-26,45,-17v29,-6,45,12,64,21v17,14,18,70,-17,55v-12,-8,1,-38,-13,-44v-12,-4,-11,-5,-21,-8v-5,7,-26,-5,-31,8v-18,18,-40,44,-38,74v-8,5,-8,29,1,33v1,15,8,22,21,24r-1,3v44,9,65,-2,96,-12r54,-41v16,4,5,28,-6,30v-20,27,-55,35,-87,50v-17,-1,-29,4,-44,-1r2,-2v-16,7,-24,-5,-38,-7v-2,-7,-14,-5,-14,-14","w":226,"k":{"Y":33,"P":7,"N":20,"H":13,"-":-15}},"D":{"d":"215,-96v14,31,-2,60,-34,63v-1,4,-7,3,-12,3v-9,9,-19,4,-35,7r2,1v-19,6,-45,0,-53,10v-5,-1,-10,-4,-16,-2v1,14,-9,18,-14,26v-2,-3,-6,-5,-12,-4v1,-8,4,-25,-6,-16v-14,3,-24,-11,-14,-18v5,-7,20,-4,17,-17v-3,-16,8,-32,-2,-40v9,-16,5,-54,-3,-70v-17,9,-34,3,-34,-19v15,-14,33,-8,52,-11v6,9,26,-1,34,9v15,-6,15,12,32,11v23,8,49,19,59,35v7,-2,13,-1,13,7v9,5,15,19,26,25xm66,-38v33,0,73,-10,100,-13v5,-11,32,-3,28,-25v-5,-10,-16,-13,-19,-24v-12,-4,-10,-14,-24,-15v-7,-17,-32,-15,-43,-25v-15,-1,-27,-8,-39,-12v-7,12,-1,28,3,41v-8,3,1,14,-5,24v5,10,-7,32,1,44","w":232,"k":{"Y":40,"W":7,"V":27,"J":7,"A":13,";":7,":":7,".":27,"-":-7,",":27}},"E":{"d":"66,-115v40,4,104,-5,138,-2r14,-4v2,33,-43,17,-60,30v-17,-8,-34,8,-46,0v-15,3,-34,2,-48,6v-4,46,30,80,68,54v13,1,22,-12,33,-18v10,-2,34,-42,39,-8v-18,21,-37,41,-67,51v-10,15,-29,2,-42,12v-38,-7,-51,-30,-61,-75v8,-9,-4,-19,-6,-28v0,-16,15,-17,8,-36v2,-6,5,-10,6,-17v-22,3,-19,-21,-5,-28v19,-9,50,-1,65,-15v18,12,56,-6,69,2v23,-4,68,12,32,25v-21,-7,-33,0,-54,-1r2,-2v-14,1,-23,11,-35,4v-13,6,-35,5,-45,13v0,8,-7,17,2,26v-3,1,-7,9,-7,11","w":223,"k":{"z":7,"t":-14}},"F":{"d":"195,-186v7,0,11,3,11,11v-3,12,-26,6,-33,14v-17,-10,-32,2,-54,-1v-6,8,-32,-2,-45,6v9,21,4,32,2,52r116,-5v7,0,13,10,10,16v-33,10,-69,9,-102,15v-8,-7,-13,2,-26,0v-3,34,-5,81,-19,100v-4,-3,-10,-5,-18,-4v10,-35,0,-60,8,-90v-5,-16,-34,3,-34,-19v0,-18,20,-16,36,-14v-3,-13,2,-41,-7,-51v-16,12,-28,-7,-22,-26v45,-9,118,-3,177,-4","w":203,"k":{"y":20,"u":15,"r":13,"o":15,"e":8,"a":15,"T":40,"S":33,"R":13,"O":7,"H":13,"A":35,";":7,":":7,".":68,",":68}},"G":{"d":"172,-147v-10,-8,-18,10,-31,7v-11,8,-23,6,-26,15v-25,8,-45,28,-63,44v-13,24,-5,52,28,47v43,9,80,-10,120,-15v8,7,6,8,10,-1r-4,3v3,-11,13,-19,3,-36v20,-11,37,7,46,19v-7,9,-18,18,-6,27v-10,2,-7,19,-11,28v9,5,-3,23,6,26v-14,14,15,48,-9,51v-19,-9,-29,-44,-27,-67r-4,-2v13,-6,0,-18,6,-29r-104,26v-38,-4,-81,-3,-88,-40v-13,-20,3,-37,12,-51v13,0,15,-28,30,-26v2,-9,18,-6,17,-16v13,-2,25,-15,38,-15v1,-7,5,1,5,-3v3,-11,24,-7,30,-16v9,1,21,-9,32,-7v2,-7,14,2,15,-7v13,5,26,9,38,17v-2,34,-48,5,-63,21","w":269,"k":{"e":-8,"Y":33,"W":7,"T":33}},"H":{"d":"197,-147v9,-11,-17,-29,2,-38v2,-17,18,-3,28,-8r0,5r4,-1v0,29,4,45,0,68v21,-2,39,-6,61,-4v-4,4,-6,3,0,9v-9,10,-27,7,-37,16v-13,-9,-35,5,-27,20r-7,89v0,8,-6,13,-18,13v-12,-37,-4,-83,-6,-118v-29,3,-63,2,-88,9v-7,-7,-15,-1,-24,-2v-1,6,-14,-4,-20,0v2,25,-7,59,2,78v-3,6,1,16,-10,15v-16,3,-13,-26,-22,-37v5,-16,-1,-34,0,-54v-9,-1,-9,-12,-9,-22v13,-1,14,-21,10,-34r3,1v-4,-29,1,-66,30,-46v7,19,-3,46,3,62v-2,2,-7,10,0,10v22,-4,48,6,63,-4v15,9,45,0,65,-1v-3,-9,1,-17,-3,-26","w":272,"k":{";":-7,":":-7,".":20,"-":7,",":20}},"I":{"d":"44,-181v17,-16,35,4,24,25v4,22,-13,40,-4,60v-7,1,0,13,-7,23v1,0,2,-1,2,-1v-2,19,4,38,-1,50v11,5,14,25,0,29v-17,-1,-17,-23,-27,-29v3,-27,-2,-71,3,-101v-2,-8,-2,-23,-6,-33v9,0,7,-9,12,-16r-2,3v0,-5,-1,-12,6,-10","w":100,"k":{"t":3,"s":18,"r":17,"p":7,"o":18,"n":4,"m":4,"g":17,"d":17,"H":13}},"J":{"d":"65,-61v1,16,-8,23,-2,40v-3,16,-11,32,-11,47v-18,15,-23,45,-49,51v-10,10,-33,4,-44,13v-10,-5,-24,-5,-30,3v-4,-10,-21,-11,-31,-6v-6,-15,-45,-5,-46,-30v16,-14,48,11,73,6v16,5,37,0,53,1v5,-10,28,-5,29,-23v14,-4,8,-23,16,-28v-1,-8,10,-15,6,-30v10,-12,6,-63,11,-84v-4,-13,-2,-38,-7,-55r-4,0v1,-32,19,-48,31,-29v15,23,9,86,6,118v3,3,6,6,-1,6","w":100,"k":{"a":4,"A":20,";":13,":":13,".":20,",":20}},"K":{"d":"177,-36v16,17,70,15,76,-8v10,-11,31,-4,20,12v-19,27,-55,35,-91,30v-12,-11,-29,-11,-38,-23v-37,-2,-46,-44,-82,-45v2,36,-3,71,-21,90v-26,0,-3,-29,-11,-41v11,-22,-1,-55,2,-81v7,-11,-5,-35,5,-50v-5,-10,-3,-18,2,-28v17,-6,33,4,28,19v9,15,-10,47,1,60v32,5,51,-9,76,-17v1,-6,10,-4,9,-12v14,-1,16,-14,27,-20v-1,-5,4,-4,7,-5v4,-9,10,-17,17,-24v3,-12,15,-17,22,-1v-2,24,-21,39,-28,55v-25,9,-37,32,-68,35v-7,4,-14,8,-22,11v20,18,43,32,69,43","w":271,"k":{"y":20,"u":13,"r":13,"o":7,"e":7,"a":7,"Y":47,"W":20,"U":20,"T":47,"O":17,"C":23,"A":7,".":7,"-":47,",":7}},"L":{"d":"227,-24v-27,9,-62,10,-86,21v-18,-4,-43,9,-64,0v-33,3,-42,-27,-50,-51v6,-26,6,-63,14,-92v-3,-17,5,-25,2,-38v10,-3,15,-11,26,-7v2,7,13,17,3,21v2,40,-28,97,-7,136v25,20,68,1,103,2v16,-7,41,-3,60,-10v8,0,12,2,12,8v0,6,-5,10,-13,10","w":229,"k":{"y":13,"u":7,"o":-7,"e":-7,"a":-7,"Y":87,"W":32,"V":60,"U":27,"T":70,"O":7,"H":20,"-":20}},"M":{"d":"189,-103v1,-10,11,-15,14,-16v1,-9,20,-14,20,-26v11,-1,6,-16,17,-12v-3,-15,0,-18,4,-31v30,-4,33,31,34,48v6,10,-2,35,7,53v-4,28,-5,63,13,78v10,8,2,14,-10,18v-23,-11,-35,-41,-31,-72v-7,-16,-2,-46,-9,-67v-21,15,-29,43,-53,55v0,13,-19,11,-21,24v-17,3,-13,27,-33,26v-12,-16,-12,-36,-26,-47v-10,-23,-28,-38,-40,-59v0,20,-15,22,-10,38v-8,21,-13,45,-25,62v4,11,-8,17,-3,28v-11,15,-24,13,-28,-2v9,-40,18,-41,23,-80v11,-18,10,-43,15,-67v-11,-9,0,-32,9,-28v16,-13,25,20,30,29v10,-4,13,11,16,20v22,14,29,44,45,65v16,-11,26,-24,42,-37","w":316,"k":{"H":7,";":13,":":13,".":7,",":7}},"N":{"d":"253,-156v11,16,-8,31,-3,51v-9,14,-2,40,-10,56v7,16,-13,36,3,53v-4,3,-8,6,-10,11r-13,-4r-7,-44v-38,-9,-69,-26,-94,-48v-23,-7,-34,-24,-51,-37v-4,25,-1,47,-4,67r3,0v-8,22,-1,43,-14,58v-35,0,-3,-44,-19,-73v11,-31,4,-76,7,-111v5,-10,22,-11,26,3v9,1,3,19,15,22v16,33,51,47,76,71v16,6,27,17,46,20v9,13,15,3,14,-6v6,-32,1,-55,7,-82v-11,-4,5,-17,-3,-22v2,-2,4,-4,2,-8v12,-7,16,-8,30,-3v-8,12,4,17,-1,26","w":281,"k":{"i":13,"H":7}},"O":{"d":"241,-72v-6,29,-40,27,-52,49v-17,-4,-27,20,-42,11v-27,19,-75,15,-109,7v-12,-14,-33,-39,-18,-68v-4,-15,12,-27,8,-39v15,-9,15,-33,31,-41v2,-5,8,-6,7,-14v22,-14,55,-15,94,-13r-1,2v17,2,40,8,54,15v16,26,51,58,28,91xm184,-55v20,-12,45,-25,36,-61v-13,-6,-15,-28,-30,-28v-15,-12,-58,-20,-74,-4v-14,-1,-32,6,-35,22v-7,4,-15,7,-15,19v-9,1,-6,16,-15,17v-14,35,-8,79,34,63v27,11,57,-12,84,-15v8,-1,9,-16,15,-13","w":259,"k":{"t":-10,"Y":27,"X":40,"V":13,"A":13,";":7,":":7,".":25,"-":-7,",":25}},"P":{"d":"197,-104v-22,12,-45,28,-75,32v-8,9,-29,4,-36,14v-9,-4,-27,2,-18,10v-3,11,0,23,2,32v12,4,9,20,-6,22v-24,12,-23,-30,-31,-47v4,-3,4,-5,3,-11v-18,1,-19,-11,-27,-19r27,-2v12,-25,-8,-82,27,-82v30,0,3,26,16,38v-12,5,-11,27,-11,37v24,-8,52,-12,74,-22v17,0,21,-13,32,-16v9,-19,-27,-26,-41,-34v-25,3,-65,-22,-89,-9v-16,-6,-47,22,-47,-15v6,-9,16,-18,32,-15r-1,1v20,-3,53,-1,69,8v25,-5,49,15,72,15v5,12,20,16,32,24v2,13,11,27,-4,34r0,5","w":205,"k":{"y":20,"u":13,"s":7,"r":7,"o":13,"n":13,"i":7,"e":7,"a":17,"Y":20,"W":7,"U":13,"A":33,".":63,"-":13,",":63}},"Q":{"d":"233,-167v13,23,23,29,14,65v-13,7,-12,26,-27,33v-3,15,-21,15,-27,28v-7,5,-19,6,-23,15v12,11,40,28,59,15v20,8,46,-11,65,-14v11,3,16,18,-2,22v-6,9,-22,1,-26,13v-15,-4,-29,14,-39,2v-17,15,-58,0,-68,-14v-12,-3,-19,-19,-30,-4v-15,-4,-31,14,-43,7v-25,7,-54,-10,-63,-28v-20,-15,5,-53,-2,-69v8,-2,17,-13,10,-20v10,-7,17,-14,21,-27v3,-10,20,-10,23,-23v50,-14,116,-26,158,-1xm218,-102v14,-13,12,-44,-10,-48v-25,-19,-65,-11,-83,2v-15,-3,-20,8,-31,7v-3,7,-12,18,-24,19v-14,25,-34,48,-26,85v15,18,54,17,75,10r-2,0r15,-5v-11,-17,-26,-43,-24,-66v7,1,10,-2,11,-8v24,11,24,40,36,58v12,0,13,-15,26,-13v6,-11,21,-17,29,-27v0,-10,11,-7,8,-14","w":265,"k":{"-":13}},"R":{"d":"20,-135v-19,-6,-23,-38,9,-35v16,1,17,-13,37,-9v11,13,65,-2,92,9v36,0,96,24,73,57v-14,21,-52,18,-70,35v-15,-9,-25,1,-36,-1v10,9,22,16,27,29v21,3,35,31,59,20v13,14,64,6,72,-10v15,17,10,23,-11,32v-6,13,-30,1,-37,12v-7,-9,-13,7,-18,-3v-64,-7,-91,-50,-134,-77v-10,5,-17,-8,-10,-15v5,-22,25,-5,44,-9v15,-6,64,-3,80,-17v5,-2,18,-3,12,-9v-29,-27,-95,-23,-133,-23v-18,0,-3,42,-11,51v3,21,-7,50,1,75v-4,17,2,27,-26,26v6,-26,-12,-46,-2,-67v-5,-12,9,-20,-1,-29v7,-17,0,-33,0,-51v-10,-2,-13,4,-17,9","w":274,"k":{"y":20,"u":13,"e":7,"a":7,"Y":47,"W":20,"V":33,"T":33,"H":7,"C":13,"A":27,";":-7,":":-7,".":-13,"-":47,",":-13}},"S":{"d":"231,-76v38,16,15,62,-17,64v-20,12,-50,8,-75,13r1,2v-29,3,-60,-4,-82,-2v-32,-6,-83,-24,-52,-60v14,-2,28,-11,28,14v-13,2,-16,9,-7,15v47,3,86,13,125,6v10,-10,42,1,47,-12v12,-1,23,-4,27,-13v-34,-26,-85,-26,-128,-38v-13,-11,-43,-10,-47,-34v-16,-27,24,-50,49,-49v18,-15,55,-5,77,-18v14,11,59,6,57,30v-2,22,-33,8,-48,4v-8,5,-40,-10,-55,3v-12,-5,-24,11,-38,7v-8,6,-30,14,-13,20v18,11,44,12,58,24v20,-8,44,12,68,10v5,8,21,5,25,14","w":267,"k":{"w":11,"p":33,"S":7,"Q":7,"O":7,"H":20,"G":27,"C":13,"A":13}},"T":{"d":"109,8v-39,10,-17,-42,-26,-72v9,-29,4,-61,5,-88v-9,1,-16,5,-27,2v-6,5,-31,-8,-46,1v-17,-12,-18,-20,-5,-30v25,4,55,7,79,2v10,-19,24,4,41,2v42,-7,78,1,123,0v-14,35,-85,13,-128,22v-1,2,-2,5,-6,4v1,23,-5,52,0,72v-9,23,-10,57,-10,85","w":220,"k":{"y":42,"w":35,"u":42,"s":42,"r":35,"o":42,"i":27,"h":73,"e":42,"c":98,"a":45,"T":58,"H":27,"C":33,"A":67,";":87,":":87,".":97,"-":63,",":97}},"U":{"d":"106,-55v18,-5,26,-20,41,-29v-2,-12,14,-7,15,-19v26,-8,18,-57,39,-71v19,6,29,25,11,41v-1,7,0,23,-6,23v12,8,-4,23,5,33v1,33,8,63,34,73v8,-6,16,-7,33,-4v8,25,-39,38,-55,20v-30,-15,-39,-53,-42,-95v-34,34,-72,64,-117,87v-44,0,-25,-64,-34,-95v6,-27,5,-51,4,-74v9,-15,32,-4,33,10v-6,13,-13,29,-4,37v-7,28,-4,43,-2,67v-7,4,-3,27,10,23v11,-8,22,-17,35,-23r0,-4","w":265,"k":{"n":7,"Z":27,"K":7,"A":13,".":-7,",":-7}},"V":{"d":"187,-140v1,-23,31,-54,42,-19v-6,19,-17,32,-27,48v-19,30,-44,55,-64,84v-18,5,-1,41,-30,34v-22,-35,-37,-78,-59,-114v-15,-14,-22,-33,-40,-45v-7,-22,20,-27,32,-13v24,29,41,66,59,99v1,10,6,19,11,29v25,-17,37,-50,60,-70v6,-10,9,-24,16,-33","w":235,"k":{"y":20,"u":30,"o":23,"i":13,"e":30,"a":23,"O":20,"A":27,";":20,":":20,".":53,",":53}},"W":{"d":"31,-183v28,3,13,41,21,64v3,9,10,32,12,47v8,5,6,25,15,34v9,-19,22,-34,33,-51v13,-10,24,-17,32,-32v13,2,7,-14,22,-16v2,-10,6,-28,14,-24v34,-20,27,36,39,64v9,21,17,41,27,59v16,-17,26,-35,42,-50v11,-17,23,-33,32,-52v0,-17,8,-66,28,-44v26,29,-18,67,-30,96v-19,24,-40,46,-52,77v9,18,-13,29,-27,20v-2,-15,-14,-20,-14,-37v-20,-24,-32,-61,-43,-91v-19,22,-45,32,-59,59v-13,9,-17,29,-26,42v10,12,-8,38,-21,22v-32,-40,-49,-97,-58,-157v-8,-7,3,-31,13,-30","w":353,"k":{"y":20,"u":13,"r":13,"o":13,"i":7,"e":17,"a":10,"A":20,";":8,":":8,".":47,",":47}},"X":{"d":"210,-35v22,2,36,36,0,36v-48,0,-77,-35,-97,-70v-9,12,-28,16,-33,31v-10,9,-24,14,-31,27v-20,6,-33,23,-51,31v-6,0,-10,-4,-10,-12v9,-8,12,-10,17,-18v18,-10,30,-24,46,-37v5,-7,17,-6,17,-19v10,-3,12,-15,23,-18v-1,-5,3,-5,5,-7v-15,-22,-30,-42,-52,-57v-19,-13,-26,-28,-6,-37v11,-1,13,8,25,7v6,9,14,17,24,23v-2,14,12,11,13,22v9,2,8,15,15,20v25,-19,40,-50,61,-74v23,-7,27,21,11,34v-2,10,-15,13,-17,24v-14,11,-23,28,-37,40v20,22,36,64,73,61","w":235,"k":{"e":17,"T":33,"O":20,"C":20,"-":27}},"Y":{"d":"118,-90v8,-19,21,-37,40,-46r0,2v10,-9,15,-25,31,-28v-1,-9,8,-9,8,-18v10,6,17,-23,35,-16v20,-3,10,19,4,27v-5,11,-20,13,-24,25v-14,4,-21,22,-37,26v-4,10,-17,11,-18,24v-12,11,-25,24,-19,41v-4,7,-2,16,1,23v-13,13,0,37,-8,55v6,24,-3,38,3,55v-6,13,7,41,-20,40v-2,-12,-6,-21,-6,-35v-9,-12,2,-50,-5,-73v3,-32,2,-61,-3,-84v-23,-18,-43,-50,-67,-69v1,-5,-3,-5,-5,-7v-7,-16,-31,-20,-21,-44v10,-1,27,-6,30,7v11,3,12,16,22,19v14,28,41,53,59,76","w":245,"k":{"u":53,"o":53,"e":47,"a":47,"O":47,"C":40,"A":55,";":53,":":53,".":80,"-":40,",":80}},"Z":{"d":"129,-83v-18,0,-18,19,-35,24r1,-1v-9,6,-17,15,-26,21v36,1,58,7,87,12v29,-2,73,15,108,8v15,-8,14,-50,38,-37v11,20,-10,46,-21,61v-7,-1,-11,10,-20,4v-10,10,-17,-6,-27,4v-7,-12,-29,0,-35,-8v-18,1,-47,-12,-73,-9v-33,-9,-86,-17,-105,3v-12,0,-26,-13,-17,-25r39,-23v0,-8,13,-5,14,-17v19,0,20,-17,36,-21v4,-15,18,-11,22,-23v16,-4,20,-20,35,-24v6,-10,21,-20,25,-29v-14,4,-30,-4,-41,4v-10,-11,-37,5,-44,-3v-23,4,-50,6,-50,-22v19,-14,63,1,83,-7v34,0,75,3,101,-3v9,5,17,16,9,25v-22,7,-37,22,-49,39v-7,0,-10,4,-11,12v-17,9,-31,22,-44,35","w":326,"k":{";":40,":":40,".":33,"-":13,",":33}},"[":{"d":"81,4v0,4,-1,7,-3,9v15,-3,35,-2,45,-10v4,11,31,-5,33,15r5,5v-18,19,-53,0,-81,12v-5,16,-22,-1,-35,5v-7,0,-10,-5,-9,-14v9,-2,15,-11,13,-23r1,1v-1,-39,11,-72,7,-100v8,-26,8,-60,4,-83v4,-4,2,-19,-1,-25r-27,-6v5,-7,12,-21,27,-15v11,-9,30,5,39,-5v14,0,36,-11,39,6v0,2,2,6,7,12v-21,7,-45,5,-64,11v21,54,-5,133,0,205","w":150},"\\":{"d":"127,-48v5,22,46,44,23,63v-9,-2,-16,-15,-19,-25v-9,-5,-12,-17,-21,-23v-2,-15,-14,-20,-21,-32r-8,-1v2,-24,-18,-25,-23,-42r-64,-87v0,-15,17,-18,32,-14v1,12,9,19,12,30v5,1,5,4,3,9v18,21,25,37,40,57v8,-1,4,11,12,10v12,18,18,41,34,55","w":155},"]":{"d":"103,-172v-13,26,-7,76,-17,111v7,14,-3,37,3,49v-6,5,3,17,-2,26v10,-2,21,4,31,5r-13,16v-15,-1,-16,4,-28,2v-20,-7,-52,16,-65,-1v3,-6,-1,-6,-7,-14v20,-9,48,-5,64,-12v-14,-32,-1,-79,-6,-110r-1,1v10,-32,4,-74,10,-105v-15,5,-34,2,-45,10v-6,-10,-33,2,-33,-14r-5,-5v16,-20,52,-1,81,-12r6,-10v12,13,39,-7,38,18v-10,3,-14,13,-13,23r-1,-1v5,8,-6,20,3,23","w":150},"^":{"d":"287,-158r-17,0r-90,-73r-91,73r-17,0r91,-99r34,0","w":360},"_":{"d":"146,52r-144,0r0,-14r144,0r0,14","w":148},"`":{"d":"77,-226v7,22,50,25,34,49v-29,-8,-48,-23,-66,-42v-11,0,-9,-13,-3,-18v14,-13,28,2,35,11","w":180},"a":{"d":"159,-146v-4,18,-12,38,-10,57v-5,8,-1,24,-6,34v8,4,-10,26,5,28v3,4,7,8,2,12v15,8,-3,17,-12,21v-27,-6,-17,-55,-20,-79v-9,19,-21,36,-37,48v-5,12,-20,14,-25,26v-40,14,-49,-32,-38,-71v3,-11,3,-23,11,-32v1,-18,14,-48,26,-61v10,0,28,-10,47,-5v0,9,17,1,19,10r1,-4v5,8,17,9,27,5v3,4,4,10,10,11xm91,-73v12,-19,52,-52,18,-66v-12,0,-17,-3,-29,-3r1,2v-13,3,-27,18,-20,31v-14,17,-22,51,-20,71v-4,2,-6,13,0,14v5,-2,1,-8,8,-7v6,-12,23,-13,27,-27v4,-2,13,-8,10,-15r5,0","w":185,"k":{"f":7,";":13,":":13,".":13,",":13}},"b":{"d":"138,-161v2,17,15,30,14,47v7,9,-1,43,5,58v-6,8,-6,22,-14,29v3,14,-23,22,-29,33v-7,-4,-5,4,-13,-4v-15,15,-39,-1,-54,-7v0,-9,-8,-7,-15,-10v-17,-24,-5,-61,-9,-89v10,-33,1,-75,4,-101v-5,-11,1,-24,-7,-32v10,-2,19,-13,25,-1v10,13,1,39,13,47v-8,14,-2,34,-8,49v6,9,-3,31,-2,48v11,-1,7,-29,21,-38v6,-11,13,-22,22,-30v-5,-8,13,-4,5,-10v13,-8,37,-8,39,11r3,0xm112,-147v-30,21,-41,67,-53,103v2,11,-9,17,14,16v5,1,7,4,8,9v9,-1,25,0,24,-9v38,-2,33,-98,7,-119","w":174,"k":{"t":-10,"s":7,"r":-3,";":7,":":7,".":7,",":7}},"c":{"d":"48,-24v27,6,43,-11,64,-18v11,-14,17,-16,21,-34v26,5,12,28,3,39v-10,22,-33,28,-53,39v-44,12,-75,-19,-69,-59v5,-34,17,-72,41,-89v9,-17,37,2,49,3v11,11,11,29,13,48v-5,5,-11,8,-17,9v-7,-10,-16,-16,-15,-33v-32,-16,-47,47,-48,79v6,2,3,13,11,13r0,3","w":155,"k":{";":7,":":7,".":7,",":7}},"d":{"d":"168,-217v13,50,-16,118,-3,161v-8,19,5,27,19,30v-1,32,-34,35,-40,5v-7,-14,-5,-39,-6,-56v-20,22,-34,49,-57,67v-14,26,-69,19,-60,-8v-15,-8,-2,-31,-4,-49v9,-26,15,-56,29,-78v11,-5,25,-19,40,-13v16,-11,45,6,53,20v7,-22,3,-43,4,-66v-5,-4,8,-15,-3,-25v7,-12,38,-8,28,12xm130,-114v-10,-11,-25,-28,-49,-19v-15,0,-30,26,-31,47v-8,18,-20,56,-5,64v27,-15,51,-31,61,-60v7,-2,12,-6,11,-16v9,-1,9,-10,13,-16","w":204,"k":{"t":-3,"s":13,"r":13,";":13,":":13,".":7,",":7}},"e":{"d":"46,-144v17,-11,45,-36,63,-8v11,7,6,20,8,34v-5,8,-11,15,-14,25v-17,14,-32,18,-53,26v-5,-2,-10,-5,-9,5v-18,27,4,66,39,47v5,-11,24,-10,28,-22v6,-10,23,-1,21,7v-4,14,-16,29,-31,33v-5,12,-22,5,-29,18v-7,-10,-39,-1,-43,-19v-26,-18,-8,-64,-9,-88v5,-10,3,-21,5,-34v13,11,20,-12,24,-24xm51,-98v12,-1,16,-13,26,-9v3,-11,20,-16,16,-31v-26,1,-31,23,-42,40","w":135,"k":{"x":7,"t":-10,"q":8,"d":7,".":7,",":7}},"f":{"d":"85,63v-8,12,13,39,-15,40v-22,-39,-24,-105,-17,-151v-5,-16,4,-22,3,-43v-21,-4,-62,7,-64,-17v6,-27,39,-7,68,-12v7,-35,10,-63,24,-88r0,-8v2,1,2,-6,6,-8v4,-23,36,-32,58,-24v15,-6,43,33,21,47v-3,-2,-5,1,-8,2v-7,-11,-12,-32,-26,-23v-8,-5,-12,4,-19,2v-3,17,-20,30,-16,48v-11,14,-7,35,-16,50v21,-3,42,-3,60,0v12,0,15,7,12,17v-22,8,-44,1,-62,11v-26,-6,-10,42,-21,58v6,8,-8,27,3,36v-6,15,4,36,3,56","w":148,"k":{"y":27,"t":-7,"o":7,"e":7,".":33,"-":7,",":33}},"g":{"d":"66,-24v5,-13,29,-15,36,-29v11,1,13,-19,20,-15v13,-16,33,-34,23,-61v-7,-18,10,-39,25,-15v4,18,8,34,12,54v17,93,1,200,-100,185v-23,-3,-51,-13,-52,-38v7,-15,19,-6,34,-7v-2,7,9,10,1,16v8,2,16,7,25,3v21,8,61,-6,64,-30v17,-29,13,-86,3,-115v-31,36,-60,81,-124,80v-46,-42,-5,-128,35,-148v18,-29,89,-13,64,21v-16,6,-21,-25,-35,-5v-15,1,-21,9,-27,19v-23,14,-38,54,-33,86v12,6,12,2,29,-1","w":216,"k":{"t":-3,"s":7,";":13,":":13,".":13,",":3}},"h":{"d":"160,-127v2,45,-6,92,8,123v0,10,-5,15,-15,15v-21,1,-11,-33,-22,-43v8,-23,6,-66,1,-90v-13,9,-27,17,-33,33v-17,13,-18,42,-34,56v0,19,-15,27,-23,40v-44,-19,-7,-100,-11,-142v-5,-6,4,-19,-4,-28v5,-13,-4,-37,-10,-49v4,-17,28,-9,30,5v12,11,3,40,10,57v-7,25,1,56,-8,79v3,8,0,12,0,20v13,-7,10,-30,22,-38v1,-7,7,-11,9,-20v9,-1,1,-13,13,-13v6,-21,53,-47,61,-13","w":191,"k":{"t":-10,";":7,":":7}},"i":{"d":"54,-261v33,5,23,29,6,36v-9,12,-25,18,-36,29v-15,-11,6,-24,7,-38v11,-3,19,-16,23,-27xm72,-11v-5,11,-25,9,-32,17v-35,-14,-20,-76,-15,-112v-5,-11,3,-26,-1,-38v5,-17,33,-11,31,8v-4,34,-12,69,-12,103v14,12,25,-11,35,-10v5,-10,30,-23,36,-10v-2,21,-19,26,-32,35v-2,4,-5,7,-10,7","w":118,"k":{";":7,":":7,".":7,",":7}},"j":{"d":"61,-263v10,0,16,22,3,23v-15,16,-25,30,-44,45v-13,-27,15,-39,14,-62v8,-5,11,-11,27,-9r0,3xm60,5v-2,38,9,79,-17,99v-2,9,-13,8,-15,17v-39,15,-62,-10,-85,-27v-4,-12,-27,-20,-19,-38v17,-1,19,13,31,18v4,10,17,17,31,20v4,13,33,6,35,-4v11,-10,10,-26,14,-43v-7,-3,1,-11,3,-13v-7,-18,2,-37,-6,-49v3,-14,6,-47,-1,-63v3,-17,0,-47,-5,-64v6,-8,17,-28,26,-10v23,22,-3,71,9,113v-1,14,2,28,2,44r-3,0","w":97,"k":{";":13,":":13,".":15,",":10}},"k":{"d":"123,-132v-59,11,-67,64,-74,124v-3,23,-27,11,-27,-5r0,-197v-2,-12,19,-11,28,-17r-1,127v8,-9,5,-27,18,-30v17,-25,78,-46,111,-20r0,-2v26,10,21,54,2,68v0,0,-1,0,-5,6v-10,-7,-4,10,-17,11v-19,9,-27,15,-43,12v16,22,47,63,81,43v4,-12,22,-37,32,-15v-6,48,-70,61,-99,23v-18,-10,-32,-41,-53,-51v-16,-14,4,-46,18,-24v9,8,21,3,34,1v3,-10,22,-3,23,-15v14,-3,14,-19,24,-27v-6,-2,4,-13,-10,-9v-9,-10,-29,-11,-42,-3","w":225,"k":{"y":13,"u":7,"r":7,"a":7,".":-7,",":-13}},"l":{"d":"98,-51v15,-7,24,8,15,18v-17,20,-49,44,-81,30v-16,-20,-9,-60,-14,-82v13,-39,5,-94,9,-136v22,-9,19,0,29,11v-6,20,1,38,-7,59v9,18,-9,52,-1,72v-4,20,-11,52,11,55v15,-8,28,-14,39,-27","w":117,"k":{"t":7,"r":7,"p":13,"f":13,"a":7,".":-7,",":-7}},"m":{"d":"291,-38v1,-9,28,-31,29,-4v-6,8,-8,19,-18,22v-12,23,-59,20,-64,-5v-9,-18,-12,-40,-13,-61v-9,17,-18,22,-23,37r-1,-2v-5,21,-25,32,-36,49v-35,13,-28,-37,-33,-64v5,-16,1,-39,-3,-54v-17,14,-25,36,-40,52v-8,21,-25,33,-34,53v-6,14,-29,26,-31,0v-2,-19,-4,-51,3,-64v-5,-13,4,-44,-6,-61v7,-13,13,-18,24,-10v2,9,9,7,5,21r-1,-1v6,14,-3,40,4,53v-3,8,-6,17,-4,29v17,-17,20,-49,42,-63v1,-10,12,-11,12,-20v11,-6,18,-25,38,-16v11,13,19,36,20,56v-8,15,-1,34,-1,56v21,-22,35,-52,55,-76v2,-10,15,-15,12,-24v6,-15,35,-11,32,9v-12,7,-3,29,-10,43v-2,25,12,74,42,45","w":324,"k":{"p":7,"f":13,"e":7,"d":7,";":-7,":":-7,".":-7,",":-7}},"n":{"d":"94,-95v3,-26,25,-34,40,-48v17,-2,16,14,26,20v0,21,5,58,14,76v10,0,5,20,16,15v14,-8,30,-21,35,-39v29,-7,18,18,10,34v-17,13,-28,36,-59,32v-33,-20,-32,-65,-42,-104v-17,16,-28,36,-38,56v-13,7,-22,32,-36,38v-3,13,-23,28,-32,10v-9,-8,0,-28,-7,-36v8,-31,5,-60,4,-89r7,-11v32,3,18,39,21,66v-4,12,-4,28,-3,40v13,-21,24,-38,41,-55v0,0,-6,10,-11,12v3,-5,8,-8,8,-16","w":241,"k":{"k":8,"g":7,"f":10,"a":7,";":-13,":":-13,".":7,"-":-27,",":7}},"o":{"d":"91,-152v37,13,67,67,39,108v-1,14,-15,16,-18,29v-8,2,-11,11,-20,11v-15,14,-39,19,-65,15v-19,-22,-22,-63,-5,-83v0,-23,9,-44,22,-54v-2,-15,15,-8,15,-22v11,-2,22,0,32,-4xm119,-76v-7,-22,-13,-47,-38,-52v-8,6,-9,18,-19,22v-6,10,-10,24,-18,32v2,12,-17,42,-6,61v30,5,49,-10,63,-27v10,-1,6,-17,16,-21v-3,-6,-2,-11,2,-15","w":153,"k":{"x":13,"t":-8,"s":7,"r":-3,"p":-8,"l":-8,";":7,":":7,".":13,"-":-7,",":13}},"p":{"d":"46,-158v4,13,17,5,26,16v24,-2,31,16,49,21v3,11,14,15,17,26v7,13,20,37,13,53v7,10,-5,17,-5,27v-18,7,-29,16,-50,9r2,1v-18,-1,-44,-10,-36,11v-10,19,2,54,-6,66v0,17,2,63,-25,45v-2,-24,8,-49,1,-65v7,-16,-4,-26,3,-42v-6,-14,4,-34,-2,-46v3,-29,2,-63,1,-82v-10,6,-22,3,-27,14v-3,-2,-5,-2,-6,2v-18,-12,-19,-12,-14,-29v18,-7,25,-15,47,-16r3,-13xm108,-32v12,12,16,-7,20,-19v-1,-26,-15,-39,-28,-54v-8,4,-7,-7,-14,-4v-4,-9,-17,-4,-27,-9v1,8,-2,17,7,19v-11,12,2,36,-6,45v5,6,-1,13,1,22v17,-3,33,5,47,0","w":168,"k":{"s":7,"r":13,";":7,":":7}},"q":{"d":"145,-99v15,-4,-1,-29,12,-35v0,-16,20,-10,26,-2v3,38,-15,87,-7,126v-5,24,1,49,4,68v7,7,6,32,28,25v4,0,9,2,14,5v2,13,-7,25,-16,19v-12,9,-27,-6,-37,-10v-29,-50,-17,-102,-17,-163v-12,11,-19,27,-34,35v-20,26,-69,46,-97,22v-19,-42,3,-69,14,-95v15,-5,19,-23,34,-28v1,-7,17,-4,16,-13v27,-3,74,-9,54,25v-16,5,-28,-4,-35,5v-14,-7,-19,10,-32,13v-15,20,-39,41,-33,75v28,-1,41,-11,62,-19v8,-19,45,-27,44,-53","w":217,"k":{";":20,":":20,".":20,",":20}},"r":{"d":"127,-140v6,-3,25,-7,26,6r-3,12v-36,3,-52,20,-70,40v0,10,-13,13,-13,24v-8,3,3,14,-7,13v-3,14,-12,31,0,40v-4,14,-20,21,-32,11v-2,-27,2,-59,-3,-82v8,-32,-29,-74,18,-70v8,21,7,53,7,75v17,-33,38,-60,78,-70","w":140,"k":{"z":-27,"y":13,"x":13,"w":-13,"v":-20,"u":7,"q":8,"o":2,"h":7,"g":10,"f":7,"d":13,"c":13,";":7,":":7,".":47,"-":13,",":47}},"s":{"d":"92,-132v-29,7,-75,32,-31,52v14,1,23,9,37,11v3,5,11,2,23,7v18,6,42,30,18,49v-6,10,-23,11,-34,14v-8,8,-34,-3,-47,5v-21,-10,-61,7,-58,-33v10,-12,32,-9,36,6v26,3,67,1,85,-12v-12,-9,-27,-17,-43,-13v-15,-16,-49,-13,-54,-38v-24,-47,41,-83,92,-71v12,4,18,28,0,32v-8,-3,-14,-7,-24,-9","w":163,"k":{"y":13,"s":7,"r":7,"f":13,";":7,":":7}},"t":{"d":"58,-31v15,32,44,-22,60,1v0,8,-3,14,-9,16v-16,27,-70,16,-77,-8v-16,-29,-12,-61,-10,-87v-12,-2,-28,-1,-28,-17v-9,-12,6,-13,16,-13v4,1,9,2,15,2v2,-10,-10,-16,0,-20v-4,-16,-15,-46,12,-44v19,1,9,22,14,36v-8,8,3,24,-3,30r68,-2v18,1,10,15,-1,17v-6,4,-9,4,-15,1v-10,9,-27,1,-38,10v-7,-3,-10,2,-16,-1v-3,26,-1,58,4,75v0,2,3,3,8,4","w":126},"u":{"d":"63,-36v3,-9,22,-15,30,-23v7,-13,20,-15,25,-28v19,-4,19,-29,31,-41v-4,-3,5,-9,4,-14v24,-6,28,24,13,35v-1,12,-12,18,-9,32v-10,23,10,71,42,46v15,-6,24,8,11,19v-20,16,-67,15,-71,-14v-8,-10,-8,-32,-7,-49v-2,4,-2,12,-10,10v1,6,0,10,-7,9v-10,22,-32,31,-46,48v-16,6,-37,9,-41,-10v-14,-13,-3,-43,-8,-58v15,-17,-16,-78,26,-70v19,26,-21,122,17,108","w":222,"k":{"f":11,";":-7,":":-7}},"v":{"d":"177,-178v18,23,-14,40,-16,65v-7,17,-19,29,-24,48v-3,11,-18,20,-16,33v-21,10,-34,58,-61,28v-21,-23,-19,-70,-42,-91v0,-18,-19,-18,-20,-36v0,-7,6,-12,16,-16v16,12,23,18,24,35v15,-2,6,25,18,31v2,22,9,41,19,55v5,0,4,-12,10,-8v5,-14,24,-23,25,-41v10,-11,16,-18,20,-34v19,-19,19,-58,47,-69","w":177,"k":{"s":13,"r":7,";":13,":":13,".":37,",":37}},"w":{"d":"165,-38v7,-15,14,-30,26,-40v0,-16,16,-20,15,-36v20,-10,-10,-56,27,-44v30,41,-31,86,-42,127v-8,10,-11,26,-19,36r-17,-7v-13,-28,-23,-59,-39,-84v-19,22,-37,44,-45,77v-9,5,-17,18,-27,6v-10,-29,-15,-64,-29,-89v0,-22,-11,-34,-16,-52v5,-13,27,-17,32,0v7,28,9,62,22,85v0,9,0,24,8,16v6,-12,14,-22,18,-36v13,-4,7,-20,17,-24v-2,-12,12,-8,6,-20v-3,-11,19,-21,25,-8v13,31,23,65,38,93","w":244,"k":{";":13,":":13,".":23,",":23}},"x":{"d":"94,-130v11,2,9,-16,18,-8v6,-14,15,-14,29,-18v9,6,13,22,-2,25v-17,13,-30,29,-48,40v-7,12,11,18,12,31v14,9,17,30,35,35v4,11,19,10,34,12v-27,51,-84,-20,-99,-52v-15,8,-17,30,-32,37v-14,24,-34,43,-54,62v-16,-10,2,-23,5,-34v13,-4,20,-31,31,-42v8,-8,19,-20,22,-33v26,-12,-6,-35,-9,-52v-9,-5,-6,-12,-8,-23v9,-3,26,-6,26,6v11,10,13,25,19,39v7,-11,17,-13,21,-25","w":173,"k":{"o":7,"e":20,"c":13,";":7,":":7,".":7,",":-4}},"y":{"d":"188,-154v25,18,6,54,16,86v-5,46,-4,104,-2,136v-6,9,-10,20,-15,36v-16,12,-28,34,-51,35v-24,11,-54,-2,-76,-6v-15,-10,-25,-26,-41,-34v1,-16,-5,-32,6,-46v13,-11,24,-21,45,-22v17,8,2,23,-11,24v-9,9,-28,29,-6,39v14,26,72,31,94,10v45,-23,24,-104,30,-157v-3,-5,-3,-13,-3,-21v-3,9,-14,10,-16,20v-17,12,-28,31,-48,40v-19,15,-68,41,-78,-1v-10,-42,13,-80,-1,-117v3,-7,7,-13,6,-23v13,-7,17,6,25,10v3,36,-2,71,-9,100v4,15,-6,31,20,24v19,-14,44,-21,55,-43v19,-13,38,-23,40,-53v5,-10,-6,-37,20,-37","w":237,"k":{"s":7,";":13,":":13,".":13,",":13}},"z":{"d":"14,10v-30,-21,19,-40,31,-57v12,-6,12,-15,24,-20v6,-10,18,-19,27,-27r-3,0v12,-8,20,-20,30,-31v-30,0,-64,7,-90,1v-12,3,-21,-6,-32,-1v-7,-6,-12,-18,-3,-24v58,3,114,5,165,-4v33,18,-17,30,-24,46v-13,5,-16,22,-28,28v-18,21,-40,37,-58,58v46,-13,102,22,118,-21v27,2,13,27,5,38v-16,12,-44,3,-60,7v-22,-6,-63,0,-80,-6v-4,6,-15,10,-22,13","w":200,"k":{".":-7,",":-7}},"{":{"d":"126,-237v17,-1,19,28,2,30v-44,-15,-37,58,-35,83v-7,7,-1,17,-10,21v10,36,-2,66,6,101v13,8,27,12,41,5v21,22,-6,35,-30,29v-26,-7,-42,-24,-38,-56v-10,-20,4,-51,-4,-66v-10,2,-18,0,-25,-3r-5,-14v7,-5,20,-9,28,-7v-3,-8,13,-5,7,-19v8,-20,2,-45,10,-65v-6,-9,7,-9,3,-18v7,-2,13,-5,14,-13v12,-4,29,-2,36,-8","w":148},"|":{"d":"103,85r-26,0r0,-360r26,0r0,360","w":180},"}":{"d":"122,-96v-7,4,-17,9,-28,7v3,9,-13,5,-7,20v-5,22,-5,49,-7,72v-12,11,-19,33,-49,29v-14,9,-25,-8,-17,-22v11,-7,21,-1,34,-4v7,-13,13,-37,9,-56v8,-13,-5,-32,6,-41v2,-12,-5,-40,2,-49v-5,-18,-2,-44,-6,-61v-9,2,-18,-16,-27,-5v-5,-2,-10,-2,-14,1v-19,-15,0,-36,22,-29v32,3,49,21,47,56v8,20,-5,54,5,65v7,-2,17,2,25,3","w":148},"~":{"d":"99,-132v22,0,82,24,102,24v20,0,42,-9,68,-27r0,27v-24,17,-46,25,-68,25v-18,0,-82,-24,-102,-24v-19,0,-42,10,-68,28r0,-28v25,-17,47,-25,68,-25"},"\u00a0":{"w":91}}});Cufon.replace('.Bradley_Hand',{fontFamily:'Bradley Hand ITC TT'});Cufon.replace('.Myriad_Pro',{fontFamily:'Myriad Pro'});Cufon.registerFont({"w":177,"face":{"font-family":"Myriad Pro","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 3 3 4 3 9 2 4","ascent":"270","descent":"-90","x-height":"4","bbox":"-40 -270 322 90","underline-thickness":"18","underline-position":"-18","slope":"-11","stemh":"23","stemv":"32","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":65},"!":{"d":"51,-70r-24,0r29,-173r34,0xm28,4v-12,0,-20,-9,-20,-21v0,-13,10,-24,23,-24v12,0,20,9,20,21v0,13,-10,24,-23,24","w":84},"\"":{"d":"44,-249r31,0r-22,87r-20,0xm98,-249r31,0r-23,87r-19,0","w":109,"k":{"A":14,"Y":-9,"J":20,"f":-15,"t":-9,"b":-4,"h":-4,"k":-4,"l":-4,",":37,".":37}},"#":{"d":"69,-91r33,0r16,-53r-32,0xm41,0r-21,0r22,-71r-30,0r4,-20r33,0r16,-53r-31,0r3,-21r34,0r22,-69r21,0r-22,69r33,0r22,-69r20,0r-21,69r29,0r-3,21r-33,0r-16,53r31,0r-3,20r-35,0r-21,71r-22,0r22,-71r-32,0"},"$":{"d":"76,31r-22,0r7,-36v-17,0,-38,-8,-48,-16r10,-23v25,23,97,20,95,-25v0,-16,-6,-30,-30,-40v-68,-28,-55,-113,17,-120r7,-36r22,0r-7,36v17,1,33,7,39,12r-10,22v-19,-18,-83,-16,-83,24v0,16,8,27,35,39v69,30,44,124,-25,127"},"%":{"d":"25,-147v0,-44,26,-92,68,-91v30,0,42,24,42,49v0,51,-27,95,-66,95v-28,0,-44,-22,-44,-53xm89,-219v-24,0,-40,41,-40,73v0,17,5,33,23,33v24,0,39,-44,39,-75v0,-14,-4,-31,-22,-31xm67,4r-22,0r177,-242r21,0xm155,-50v0,-44,26,-92,68,-91v29,0,42,23,42,48v0,51,-27,96,-66,96v-28,0,-44,-22,-44,-53xm219,-122v-24,0,-39,41,-39,73v0,17,4,32,22,32v24,0,39,-43,39,-74v0,-14,-4,-31,-22,-31","w":278},"&":{"d":"192,0r-35,0v-6,-7,-11,-13,-17,-22v-39,44,-134,30,-134,-35v0,-39,32,-63,60,-79v-30,-46,-4,-111,51,-111v32,0,49,22,49,48v1,30,-22,51,-62,72v13,23,31,49,44,67v15,-18,26,-41,36,-72r28,0v-13,39,-29,69,-51,92v9,13,19,26,31,40xm36,-61v0,47,69,54,91,20v-11,-17,-32,-47,-50,-77v-16,10,-41,27,-41,57xm114,-225v-33,0,-43,53,-22,80v30,-14,47,-30,47,-53v0,-14,-7,-27,-25,-27","w":212},"(":{"d":"100,-249r26,0v-57,58,-105,185,-56,291r-22,0v-55,-93,-3,-243,52,-291","w":102,"k":{"T":-18,"A":3,"C":3,"G":3,"O":3,"Q":3,"V":-16,"W":-16,"X":-1,"Y":-12,"J":1,"j":-15,"c":4,"d":4,"e":4,"o":4,"q":4}},")":{"d":"9,42r-26,0v57,-58,105,-185,56,-291r23,0v53,93,3,243,-53,291","w":102},"*":{"d":"122,-247r20,13r-39,45r55,-7r-5,25v-17,-1,-37,-7,-52,-6r29,43r-23,13v-7,-16,-10,-35,-18,-50r-28,50r-19,-13r39,-44r-54,7r4,-25v16,1,36,7,51,6r-29,-44r24,-12r17,50","w":149},"+":{"d":"99,-192r22,0r0,85r79,0r0,21r-79,0r0,86r-22,0r0,-86r-79,0r0,-21r79,0r0,-85","w":214},",":{"d":"8,42r-23,2v11,-21,27,-60,35,-86r35,-3v-13,31,-34,70,-47,87","w":75,"k":{"T":22,"A":-6,"V":19,"W":19,"X":-7,"Y":27,"J":-1,"Z":-8,"\"":48,"'":48}},"-":{"d":"17,-109r86,0r-4,23r-86,0","w":110,"k":{"T":19,"C":-7,"G":-7,"O":-7,"Q":-7,"V":5,"W":5,"X":2,"Y":17,"J":12,"S":1,"g":-8,"c":-9,"d":-9,"e":-9,"o":-9,"q":-9,"a":-8}},".":{"d":"27,4v-12,0,-19,-9,-19,-21v0,-13,9,-24,22,-24v12,0,20,8,20,21v0,13,-9,24,-23,24","w":75,"k":{"T":22,"A":-6,"V":19,"W":19,"X":-7,"Y":27,"J":-1,"Z":-8,"\"":48,"'":48}},"\/":{"d":"5,14r-24,0r144,-261r25,0","w":117},"0":{"d":"118,-238v45,0,58,37,58,73v0,76,-37,169,-102,169v-43,0,-59,-35,-59,-80v0,-78,41,-162,103,-162xm114,-214v-41,0,-69,82,-69,139v0,24,5,55,33,55v44,0,68,-96,68,-143v0,-18,-3,-51,-32,-51"},"1":{"d":"65,0r38,-204r-40,20r-3,-23v26,-10,40,-31,79,-27r-45,234r-29,0"},"2":{"d":"141,0r-141,0r4,-20v52,-43,143,-114,134,-157v0,-17,-9,-35,-36,-35v-21,0,-38,9,-49,17r-7,-22v16,-12,40,-21,62,-21v44,0,61,29,61,57v0,55,-67,112,-121,155r98,0"},"3":{"d":"6,-11r10,-24v9,5,24,13,45,13v40,0,58,-27,58,-51v-1,-33,-28,-43,-62,-41r5,-24v32,2,67,-10,70,-45v4,-38,-60,-33,-78,-16r-6,-23v35,-28,115,-17,115,34v0,32,-26,52,-51,62v26,6,39,29,39,53v0,65,-98,97,-145,62"},"4":{"d":"121,0r-28,0r12,-64r-101,0r4,-21r125,-149r32,0r-27,146r32,0r-5,24r-32,0xm41,-89v20,3,46,0,68,1r25,-116v-14,10,-17,26,-28,39"},"5":{"d":"72,-149v41,-5,80,24,80,62v0,77,-89,111,-147,78r10,-24v36,25,110,3,106,-47v7,-33,-38,-54,-83,-44r33,-110r104,0r-5,26r-80,0"},"6":{"d":"169,-238r-4,26v-60,2,-95,35,-114,87v32,-47,114,-34,114,34v0,46,-36,95,-86,95v-45,0,-66,-33,-66,-77v0,-95,64,-161,156,-165xm134,-89v0,-67,-79,-44,-90,2v-7,32,5,67,37,67v31,0,53,-36,53,-69"},"7":{"d":"48,-234r140,0r-4,21r-135,213r-34,0r135,-208r-107,0"},"8":{"d":"9,-54v0,-37,27,-60,55,-72v-56,-37,-14,-112,49,-112v34,0,59,21,59,53v1,29,-21,47,-46,62v70,35,23,127,-47,127v-44,0,-70,-25,-70,-58xm81,-19v27,0,49,-18,49,-46v0,-23,-13,-38,-41,-48v-47,2,-76,94,-8,94xm109,-215v-49,1,-59,70,-8,81v23,-8,42,-24,42,-47v0,-16,-8,-34,-34,-34"},"9":{"d":"20,4r4,-26v62,1,98,-39,114,-87v-34,47,-111,24,-111,-35v0,-48,38,-94,87,-94v110,0,49,178,3,208v-29,19,-56,33,-97,34xm93,-107v30,0,54,-23,54,-61v0,-26,-10,-46,-36,-46v-29,0,-53,33,-53,67v0,23,12,40,35,40"},":":{"d":"75,-147v0,13,-10,24,-24,24v-12,0,-19,-9,-19,-21v0,-13,9,-24,22,-24v12,0,21,9,21,21xm27,4v-12,0,-19,-9,-19,-21v0,-13,9,-24,22,-24v12,0,20,9,20,21v0,13,-9,24,-23,24","w":75},";":{"d":"7,42r-22,2v11,-21,27,-60,35,-86r35,-3v-13,31,-35,70,-48,87xm76,-147v0,13,-9,24,-23,24v-12,0,-20,-9,-20,-21v0,-13,10,-24,23,-24v12,0,20,9,20,21","w":75},"<":{"d":"28,-86r0,-19r162,-87r0,25r-135,72r135,71r0,24","w":214},"=":{"d":"200,-122r-180,0r0,-21r180,0r0,21xm200,-51r-180,0r0,-21r180,0r0,21","w":214},">":{"d":"195,-106r0,20r-162,86r0,-24r137,-72r-137,-71r0,-25","w":214},"?":{"d":"144,-202v3,52,-72,79,-69,133r-29,0v-9,-49,62,-84,67,-128v4,-29,-46,-30,-63,-15r-6,-22v32,-25,107,-11,100,32xm49,4v-12,0,-20,-9,-20,-21v0,-13,10,-24,23,-24v12,0,20,9,20,21v0,13,-9,24,-23,24","w":138},"@":{"d":"114,-43v36,0,47,-52,52,-89v-40,-13,-76,21,-76,62v0,16,9,27,24,27xm180,8r5,15v-78,41,-172,-4,-172,-98v0,-74,51,-138,131,-138v63,0,104,44,104,104v0,54,-30,86,-64,86v-15,0,-25,-13,-27,-32v-21,42,-88,46,-90,-14v-2,-58,63,-103,124,-78r-12,66v-5,27,-2,40,10,40v18,0,39,-24,39,-66v0,-52,-31,-90,-87,-90v-59,0,-108,47,-108,120v0,81,79,120,147,85","w":259},"A":{"d":"144,-77r-84,0r-38,77r-32,0r126,-243r35,0r34,243r-31,0xm71,-100r71,0r-15,-115v-16,40,-37,78,-56,115","w":204,"k":{"T":22,"A":4,"C":8,"G":8,"O":8,"Q":8,"U":10,"V":15,"W":15,"X":2,"Y":22,"f":1,"g":4,"j":-4,"i":-3,"m":-3,"n":-3,"p":-3,"r":-3,"c":4,"d":4,"e":4,"o":4,"q":4,"s":-2,"t":1,"u":1,"v":8,"w":8,"y":8,"x":-5,"z":-7,"-":2,"\"":13,"'":13}},"B":{"d":"170,-75v0,72,-87,85,-158,73r45,-237v51,-11,125,-8,125,49v0,31,-24,54,-52,61v22,6,40,25,40,54xm82,-218r-15,78v45,3,84,-9,84,-47v0,-32,-41,-39,-69,-31xm63,-117r-18,93v47,5,93,-4,93,-52v0,-37,-36,-44,-75,-41","w":186,"k":{"T":4,"A":-2,"U":3,"V":1,"W":1,"X":1,"Y":6,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":-3,"w":-3,"y":-3,"-":-3,",":5,".":5}},"C":{"d":"204,-211v-75,-34,-155,27,-155,110v0,44,20,79,74,79v18,0,39,-3,52,-10r4,24v-14,6,-36,12,-63,12v-61,0,-98,-39,-98,-101v0,-98,102,-181,195,-138","w":199,"k":{"A":-1,"C":9,"G":9,"O":9,"Q":9,"V":-3,"W":-3,"M":-1,"g":1,"c":3,"d":3,"e":3,"o":3,"q":3,"u":3,"v":5,"w":5,"y":5,"z":-2,"a":3,")":-7,"]":-7,"}":-7}},"D":{"d":"229,-146v0,107,-93,168,-217,145r45,-238v87,-15,172,1,172,93xm46,-25v93,16,151,-39,151,-120v0,-55,-50,-86,-115,-72","w":232,"k":{"T":10,"A":3,"X":4,"Y":12,"f":-8,"g":-5,"j":-1,"i":-2,"m":-2,"n":-2,"p":-2,"r":-2,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"s":-3,"t":-8,"u":-2,"v":-6,"w":-6,"y":-6,"z":-1,"a":-4,"b":-3,"h":-3,"k":-3,"l":-3,":":-2,";":-2,"-":-5,",":9,".":9}},"E":{"d":"156,-139r-5,25r-88,0r-17,88r99,0r-5,26r-129,0r46,-243r124,0r-5,26r-94,0r-14,78r88,0","w":169,"k":{"V":-3,"W":-3,"Y":-1,"f":-1,"g":2,"c":2,"d":2,"e":2,"o":2,"q":2,"t":1,"u":2,"v":3,"w":3,"y":3,"z":-1,"a":2,",":3,".":3}},"F":{"d":"11,0r46,-243r123,0r-4,26r-94,0r-15,82r86,0r-5,25r-86,0r-21,110r-30,0","w":167,"k":{"A":22,"C":1,"G":1,"O":1,"Q":1,"X":1,"M":3,"J":31,"g":13,"i":8,"m":8,"n":8,"p":8,"r":8,"c":10,"d":10,"e":10,"o":10,"q":10,"s":10,"u":10,"v":7,"w":7,"y":7,"x":12,"a":15,"b":6,"h":6,"k":6,"l":6,":":4,";":4,"-":2,"\"":-2,"'":-2,",":31,".":31}},"G":{"d":"212,-209v-79,-36,-162,26,-162,108v0,61,56,93,114,71r14,-72r-49,0r4,-25r79,0r-22,117v-14,6,-41,13,-69,13v-63,0,-103,-46,-103,-102v0,-98,107,-177,204,-135","w":224,"k":{"T":1,"A":-2,"V":2,"W":2,"Y":3,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"a":-3,"-":-1}},"H":{"d":"58,-243r29,0r-19,103r111,0r20,-103r30,0r-46,243r-30,0r21,-114r-111,0r-22,114r-30,0","w":225,"k":{"f":-3,"t":-2,"v":-2,"w":-2,"y":-2,"z":-3}},"I":{"d":"57,-243r30,0r-46,243r-30,0","w":83,"k":{"f":-3,"t":-2,"v":-2,"w":-2,"y":-2,"z":-3}},"J":{"d":"76,-79r31,-164r29,0r-31,167v-10,71,-56,91,-116,74r6,-26v42,12,70,6,81,-51","w":131,"k":{"A":2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":-5,"w":-5,"y":-5,")":-12,"]":-12,"}":-12}},"K":{"d":"11,0r46,-243r30,0r-23,118r111,-118r38,0r-102,105r62,138r-33,0r-53,-119r-29,27r-17,92r-30,0","w":185,"k":{"A":-2,"C":7,"G":7,"O":7,"Q":7,"U":3,"V":-5,"W":-5,"J":-8,"S":1,"Z":-8,"g":2,"i":-3,"m":-3,"n":-3,"p":-3,"r":-3,"c":3,"d":3,"e":3,"o":3,"q":3,"u":4,"v":7,"w":7,"y":7,"b":-3,"h":-3,"k":-3,"l":-3,"-":9,")":-8,"]":-8,"}":-8,"\"":-3,"'":-3,",":-8,".":-8}},"L":{"d":"11,0r46,-243r30,0r-41,217r98,0r-5,26r-128,0","w":159,"k":{"T":31,"A":-4,"C":16,"G":16,"O":16,"Q":16,"U":18,"V":23,"W":23,"Y":32,"J":-1,"Z":-7,"g":4,"c":9,"d":9,"e":9,"o":9,"q":9,"u":5,"v":14,"w":14,"y":14,"x":-1,"z":-6,"a":1,"-":21,"\"":49,"'":49}},"M":{"d":"243,0r-28,0r29,-213v-33,72,-73,143,-110,212r-23,0r-18,-131v-4,-28,-7,-56,-8,-81r-52,213r-28,0r63,-243r38,0r26,200v30,-69,69,-135,103,-200r39,0","w":280,"k":{"C":1,"G":1,"O":1,"Q":1,"Y":1,"j":-4,"i":-2,"m":-2,"n":-2,"p":-2,"r":-2,"v":-3,"w":-3,"y":-3}},"N":{"d":"39,0r-28,0r46,-243r33,0v25,66,60,136,77,206v7,-61,23,-144,35,-206r29,0r-47,243r-29,0v-24,-66,-61,-139,-78,-207","w":227,"k":{"f":-3,"t":-2,"v":-2,"w":-2,"y":-2,"z":-3}},"O":{"d":"17,-95v-1,-74,49,-153,128,-152v65,0,92,48,92,100v1,74,-48,151,-128,151v-63,0,-92,-48,-92,-99xm114,-21v60,0,91,-69,91,-125v0,-35,-11,-75,-64,-75v-61,0,-91,69,-92,124v0,40,17,76,65,76","w":240,"k":{"T":10,"A":3,"X":4,"Y":12,"f":-8,"g":-5,"j":-1,"i":-2,"m":-2,"n":-2,"p":-2,"r":-2,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"s":-3,"t":-8,"u":-2,"v":-6,"w":-6,"y":-6,"z":-1,"a":-4,"b":-3,"h":-3,"k":-3,"l":-3,":":-2,";":-2,"-":-5,",":9,".":9}},"P":{"d":"186,-182v-3,65,-60,95,-127,85r-18,97r-30,0r46,-239v55,-12,132,-6,129,57xm82,-217r-18,95v50,11,92,-16,92,-58v0,-39,-42,-45,-74,-37","w":182,"k":{"T":3,"A":23,"X":12,"Y":1,"J":27,"Z":13,"g":8,"i":4,"m":4,"n":4,"p":4,"r":4,"c":7,"d":7,"e":7,"o":7,"q":7,"s":4,"t":-3,"u":5,"v":-6,"w":-6,"y":-6,"a":8,"b":2,"h":2,"k":2,"l":2,":":4,";":4,"-":4,")":3,"]":3,"}":3,",":39,".":39}},"Q":{"d":"145,-247v144,5,100,220,3,243v18,7,44,9,64,13r-11,25r-101,-30v-46,-3,-83,-39,-83,-99v-1,-73,50,-155,128,-152xm112,-21v62,1,93,-72,93,-126v0,-32,-11,-74,-64,-74v-62,0,-92,72,-92,125v0,39,16,75,63,75","w":240,"k":{"T":10,"A":3,"X":4,"Y":12,"f":-8,"g":-5,"j":-1,"i":-2,"m":-2,"n":-2,"p":-2,"r":-2,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"s":-3,"t":-8,"u":-2,"v":-6,"w":-6,"y":-6,"z":-1,"a":-4,"b":-3,"h":-3,"k":-3,"l":-3,":":-2,";":-2,"-":-5,",":9,".":9}},"R":{"d":"57,-239v55,-12,131,-6,129,53v0,35,-27,61,-58,70v34,3,27,96,34,116r-31,0v-1,-5,-3,-31,-5,-59v-2,-45,-24,-50,-65,-47r-20,106r-30,0xm82,-218r-16,89v50,5,88,-16,88,-54v0,-36,-41,-41,-72,-35","w":188,"k":{"T":3,"A":-2,"C":-2,"G":-2,"O":-2,"Q":-2,"U":4,"V":-2,"W":-2,"X":-1,"Y":5,"g":3,"i":-3,"m":-3,"n":-3,"p":-3,"r":-3,"t":-6,"u":1,"v":-5,"w":-5,"y":-5,"a":1,"b":-3,"h":-3,"k":-3,"l":-3,"-":2}},"S":{"d":"119,-68v0,-43,-95,-61,-84,-107v-6,-62,86,-89,132,-59r-11,24v-8,-4,-23,-11,-42,-11v-30,0,-48,20,-48,40v0,20,12,33,38,45v76,34,52,144,-41,140v-24,0,-49,-8,-59,-17r11,-24v32,24,104,22,104,-31","w":167,"k":{"C":1,"G":1,"O":1,"Q":1,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"v":4,"w":4,"y":4,"x":1,"a":-3,"-":-1}},"T":{"d":"53,0r41,-217r-71,0r5,-26r173,0r-6,26r-71,0r-41,217r-30,0","w":170,"k":{"i":18,"T":-15,"A":20,"C":6,"G":6,"O":6,"Q":6,"V":-16,"W":-16,"X":-11,"Y":-11,"J":17,"S":-3,"g":25,"m":18,"n":18,"p":18,"r":18,"c":21,"d":21,"e":21,"o":21,"q":21,"s":22,"t":3,"u":21,"v":12,"w":12,"y":12,"x":18,"z":20,"a":27,"b":1,"h":1,"k":1,"l":1,":":10,";":10,"-":23,")":-20,"]":-20,"}":-20,"\"":-6,"'":-6,",":24,".":24}},"U":{"d":"57,-243r30,0v-9,59,-30,111,-30,175v0,31,18,46,45,46v33,0,57,-22,67,-76r28,-145r30,0r-28,145v-14,72,-50,102,-101,102v-52,0,-80,-44,-68,-105","w":223,"k":{"A":6,"S":3,"f":-5,"t":-1,"v":-1,"w":-1,"y":-1,"x":1,"b":-2,"h":-2,"k":-2,"l":-2}},"V":{"d":"93,0r-33,0r-30,-243r30,0r24,211v28,-66,71,-145,104,-211r33,0","w":194,"k":{"T":-12,"A":16,"M":2,"J":12,"S":-3,"g":13,"i":3,"m":3,"n":3,"p":3,"r":3,"c":11,"d":11,"e":11,"o":11,"q":11,"s":9,"t":-3,"u":5,"x":5,"z":5,"a":13,"b":-2,"h":-2,"k":-2,"l":-2,":":6,";":6,"-":8,")":-13,"]":-13,"}":-13,"\"":-4,"'":-4,",":19,".":19}},"W":{"d":"79,0r-32,0r-12,-243r30,0r6,209v23,-63,64,-145,92,-209r32,0r7,208v24,-73,59,-140,89,-208r31,0r-113,243r-31,0r-7,-138v-2,-27,2,-45,0,-70v-24,75,-61,139,-92,208","w":298,"k":{"T":-12,"A":16,"M":2,"J":12,"S":-3,"g":13,"i":3,"m":3,"n":3,"p":3,"r":3,"c":11,"d":11,"e":11,"o":11,"q":11,"s":9,"t":-3,"u":5,"x":5,"z":5,"a":13,"b":-2,"h":-2,"k":-2,"l":-2,":":6,";":6,"-":8,")":-13,"]":-13,"}":-13,"\"":-4,"'":-4,",":19,".":19}},"X":{"d":"168,0r-32,0r-39,-103r-72,103r-36,0r95,-123r-46,-120r32,0r36,99r71,-99r36,0r-94,119","w":187,"k":{"T":-9,"A":3,"C":8,"G":8,"O":8,"Q":8,"V":-9,"W":-9,"X":-6,"Y":-9,"g":5,"c":5,"d":5,"e":5,"o":5,"q":5,"u":4,"v":5,"w":5,"y":5,"a":5,"-":9,")":-9,"]":-9,"}":-9,"\"":-1,"'":-1,",":-2,".":-2}},"Y":{"d":"87,0r-29,0r19,-101r-47,-142r32,0r34,120v20,-36,55,-84,79,-120r35,0r-103,142","w":186,"k":{"i":13,"T":-8,"A":27,"C":9,"G":9,"O":9,"Q":9,"U":2,"V":-4,"W":-4,"X":5,"M":7,"J":21,"S":3,"B":3,"D":3,"E":3,"F":3,"H":3,"I":3,"K":3,"L":3,"N":3,"P":3,"R":3,"g":29,"j":3,"m":13,"n":13,"p":13,"r":13,"c":25,"d":25,"e":25,"o":25,"q":25,"s":24,"t":7,"u":19,"v":9,"w":9,"y":9,"x":15,"z":19,"a":31,"b":3,"h":3,"k":3,"l":3,":":9,";":9,"-":23,")":-10,"]":-10,"}":-10,",":35,".":35}},"Z":{"d":"-7,0r3,-18r165,-199r-116,0r5,-26r156,0r-4,20r-163,197r128,0r-5,26r-169,0","w":188,"k":{"A":-2,"C":8,"G":8,"O":8,"Q":8,"V":-6,"W":-6,"X":-1,"g":4,"c":3,"d":3,"e":3,"o":3,"q":3,"u":2,"a":4,"-":3}},"[":{"d":"70,40r-63,0r55,-287r63,0r-4,19r-39,0r-47,249r38,0","w":102,"k":{"T":-18,"A":3,"C":3,"G":3,"O":3,"Q":3,"V":-16,"W":-16,"X":-1,"Y":-12,"J":1,"j":-15,"c":4,"d":4,"e":4,"o":4,"q":4}},"\\":{"d":"111,14r-23,0r-66,-261r23,0","w":118},"]":{"d":"39,-247r63,0r-54,287r-63,0r3,-19r39,0r48,-249r-39,0","w":102},"^":{"d":"192,-68r-24,0r-60,-140r-59,140r-24,0r73,-166r22,0","w":214},"_":{"d":"-18,27r180,0r-3,18r-180,0","w":180},"a":{"d":"153,0r-27,0v-1,-9,4,-30,3,-45v-19,36,-43,49,-68,49v-31,0,-50,-25,-50,-58v0,-75,78,-148,168,-117v-9,50,-28,119,-26,171xm72,-21v41,0,69,-77,73,-131v-59,-13,-102,38,-103,93v0,19,7,38,30,38","w":187},"b":{"d":"57,-256r30,0r-22,113v15,-23,38,-35,61,-35v38,0,53,31,53,62v0,53,-39,120,-109,120v-42,0,-60,-29,-51,-72xm114,-153v-37,0,-67,54,-67,108v0,17,9,26,28,26v45,0,73,-54,73,-93v0,-22,-10,-41,-34,-41","w":189,"k":{"T":19,"g":-1,"j":2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":3,"w":3,"y":3,"x":4,"z":3,"-":-5,"\"":8,"'":8,",":6,".":6}},"c":{"d":"127,-31r3,24v-9,4,-27,11,-50,11v-45,0,-67,-31,-67,-68v0,-71,69,-137,143,-106r-9,23v-54,-24,-107,28,-103,80v-6,47,54,54,83,36","w":152,"k":{"T":8,"f":-3,"c":3,"d":3,"e":3,"o":3,"q":3,"s":-1,"t":-2,"v":-4,"w":-4,"y":-4,"x":-1,"a":5,",":4,".":4}},"d":{"d":"166,-256r29,0r-38,201v-4,18,-6,38,-7,55r-28,0v1,-11,6,-26,4,-35v-27,57,-114,51,-114,-24v0,-71,62,-139,138,-113xm134,-86r11,-61v-52,-26,-105,28,-103,84v0,21,7,42,33,42v23,0,51,-26,59,-65","w":189,"k":{",":5,".":5}},"e":{"d":"131,-32r5,22v-13,8,-35,14,-58,14v-46,0,-66,-31,-66,-70v0,-53,39,-112,95,-112v33,0,51,19,51,44v0,46,-52,58,-116,57v-4,30,14,57,43,57v21,0,35,-6,46,-12xm46,-100v47,0,84,-4,83,-33v0,-14,-10,-22,-26,-22v-28,0,-50,28,-57,55","w":163,"k":{"T":13,"-":-4,",":4,".":4}},"f":{"d":"44,0r-30,0r29,-150r-23,0r4,-24r24,0v2,-52,40,-101,95,-81r-7,24v-36,-13,-56,17,-59,57r39,0r-5,24r-38,0","w":101,"k":{"t":-2,"a":3,":":-12,";":-12,")":-31,"]":-31,"}":-31,"\"":-23,"'":-23,",":11,".":11}},"g":{"d":"3,63r9,-23v46,20,98,17,109,-51v1,-8,6,-20,4,-26v-26,57,-113,43,-113,-23v0,-80,85,-146,166,-106v-25,93,-8,243,-123,241v-21,0,-41,-5,-52,-12xm76,-24v47,-1,63,-73,69,-124v-53,-24,-105,29,-102,82v0,19,6,42,33,42","w":188,"k":{"T":15,"g":1,",":5,".":5}},"h":{"d":"40,0r-30,0r49,-256r30,0r-21,113v15,-21,36,-35,62,-35v30,0,47,36,40,76r-19,102r-30,0r22,-125v0,-16,-8,-28,-27,-28v-23,0,-53,27,-60,66","w":192,"k":{"T":21,"u":2,"v":2,"w":2,"y":2,"x":1,"\"":13,"'":13}},"i":{"d":"40,0r-30,0r34,-174r29,0xm66,-204v-10,0,-17,-8,-17,-19v0,-12,9,-20,20,-20v11,0,17,8,17,19v0,12,-8,20,-20,20","w":82},"j":{"d":"45,-174r30,0v-18,73,-22,176,-55,232v-14,15,-37,20,-60,15r4,-23v28,4,39,-1,47,-44xm66,-204v-10,0,-17,-8,-17,-19v0,-12,9,-20,20,-20v11,0,17,8,17,19v0,12,-8,20,-20,20","w":81,"k":{"j":-8,",":4,".":4}},"k":{"d":"40,0r-30,0r49,-256r30,0r-30,161v25,-28,51,-52,77,-79r37,0r-76,71r52,103r-33,0r-41,-86r-22,20","w":164,"k":{"T":10,"g":5,"i":-3,"m":-3,"n":-3,"p":-3,"r":-3,"c":5,"d":5,"e":5,"o":5,"q":5,"v":-3,"w":-3,"y":-3,"a":5,"b":-3,"h":-3,"k":-3,"l":-3,":":-4,";":-4,",":-4,".":-4}},"l":{"d":"40,0r-30,0r49,-256r30,0","w":82,"k":{",":5,".":5}},"m":{"d":"39,0r-29,0r31,-174r27,0v-1,10,-6,24,-4,33v21,-44,98,-54,102,2v15,-25,38,-39,64,-39v30,0,46,35,39,75r-19,103r-29,0r21,-123v0,-18,-7,-30,-26,-30v-22,0,-48,25,-55,64r-17,89r-28,0r21,-123v0,-15,-4,-30,-26,-30v-22,0,-49,29,-56,66","w":290,"k":{"T":21,"u":2,"v":2,"w":2,"y":2,"x":1,"\"":13,"'":13}},"n":{"d":"40,0r-30,0r32,-174r26,0v0,11,-5,25,-3,34v15,-24,38,-38,64,-38v31,0,49,35,41,76r-19,102r-30,0r22,-123v0,-18,-7,-30,-28,-30v-21,0,-51,25,-59,68","w":192,"k":{"T":21,"u":2,"v":2,"w":2,"y":2,"x":1,"\"":13,"'":13}},"o":{"d":"109,-178v47,0,68,36,68,73v0,54,-38,109,-96,109v-44,0,-68,-33,-68,-72v0,-57,39,-110,96,-110xm106,-154v-37,0,-62,45,-62,85v0,28,15,49,41,49v35,0,62,-45,62,-86v0,-20,-10,-48,-41,-48","w":187,"k":{"T":19,"g":-1,"j":2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":3,"w":3,"y":3,"x":4,"z":3,"-":-5,"\"":8,"'":8,",":6,".":6}},"p":{"d":"24,71r-29,0r35,-183v4,-21,6,-45,9,-63r28,0r-5,34v16,-23,39,-37,63,-37v38,0,54,31,54,63v1,74,-66,143,-141,111xm52,-78r-8,49v52,32,105,-26,104,-84v0,-18,-9,-40,-34,-40v-23,0,-53,26,-62,75","w":189,"k":{"T":19,"g":-1,"j":2,"c":-1,"d":-1,"e":-1,"o":-1,"q":-1,"v":3,"w":3,"y":3,"x":4,"z":3,"-":-5,"\"":8,"'":8,",":6,".":6}},"q":{"d":"133,71r-29,0r20,-103v-14,23,-39,36,-61,36v-35,0,-51,-29,-51,-63v0,-58,42,-119,110,-119v23,0,43,5,56,11xm73,-21v49,0,66,-74,72,-127v-53,-23,-104,25,-103,85v0,27,13,42,31,42","w":189,"k":{"T":17,"g":1,"x":1,"a":2,",":4,".":4}},"r":{"d":"40,0r-30,0r30,-174r27,0v0,11,-5,27,-4,38v13,-26,32,-46,62,-41r-6,29v-59,-10,-68,89,-79,148","w":114,"k":{"T":8,"f":-8,"g":3,"c":2,"d":2,"e":2,"o":2,"q":2,"t":-9,"v":-7,"w":-7,"y":-7,"x":-4,"z":-3,"a":5,":":-4,";":-4,"-":3,",":13,".":13}},"s":{"d":"57,-129v2,30,62,41,56,75v5,54,-73,72,-110,46r9,-22v19,16,70,14,70,-18v0,-31,-63,-42,-55,-76v-5,-44,61,-67,99,-46r-8,23v-16,-13,-63,-11,-61,18","w":134,"k":{"T":15,"-":2,",":4,".":4}},"t":{"d":"56,-206r31,-10r-8,42r42,0r-5,23r-41,0v-6,37,-17,72,-20,112v-2,15,16,20,31,16r-2,24v-27,10,-63,-4,-60,-31v5,-41,15,-82,21,-121r-25,0r5,-23r25,0","w":112,"k":{"g":2,"c":1,"d":1,"e":1,"o":1,"q":1,"v":-4,"w":-4,"y":-4}},"u":{"d":"150,-174r30,0r-31,174r-27,0r4,-33v-15,23,-39,37,-62,37v-33,0,-50,-36,-42,-80r18,-98r30,0r-21,123v0,18,7,30,28,30v22,0,49,-25,56,-64","w":189,"k":{"T":17,"g":1,"x":1,"a":2,",":4,".":4}},"v":{"d":"18,-174r31,0v9,46,10,100,22,142v17,-43,49,-99,71,-142r33,0r-97,174r-29,0","w":163,"k":{"T":12,"g":6,"j":2,"c":3,"d":3,"e":3,"o":3,"q":3,"v":-5,"w":-5,"y":-5,"a":6,":":-5,";":-5,"-":3,",":14,".":14}},"w":{"d":"22,-174r29,0r7,98v2,22,-2,34,1,46v18,-46,49,-99,71,-144r26,0r15,144v16,-49,42,-98,63,-144r31,0r-86,174r-28,0r-15,-141v-20,52,-46,94,-70,141r-28,0","w":254,"k":{"T":12,"g":6,"j":2,"c":3,"d":3,"e":3,"o":3,"q":3,"v":-5,"w":-5,"y":-5,"a":6,":":-5,";":-5,"-":3,",":14,".":14}},"x":{"d":"23,-174r32,0v11,21,18,46,30,66v14,-24,34,-45,51,-66r34,0r-73,85r41,89r-33,0r-30,-70v-14,24,-37,48,-54,70r-34,0r76,-90","w":158,"k":{"T":9,"g":3,"c":6,"d":6,"e":6,"o":6,"q":6,"t":-4,"v":-5,"w":-5,"y":-5,"a":4}},"y":{"d":"-14,54v26,-10,58,-30,66,-64r-35,-164r31,0r26,139r63,-139r32,0v-39,73,-72,168,-125,224v-19,20,-41,28,-51,30","w":158,"k":{"T":12,"g":6,"j":2,"c":3,"d":3,"e":3,"o":3,"q":3,"v":-5,"w":-5,"y":-5,"a":6,":":-5,";":-5,"-":3,",":14,".":14}},"z":{"d":"-8,0r4,-18r84,-94r37,-38r-90,0r5,-24r125,0r-4,20r-83,92v-15,19,-27,24,-36,38r96,0r-4,24r-134,0","w":149,"k":{"T":10,"f":-8,"c":2,"d":2,"e":2,"o":2,"q":2,"t":-4,"v":-9,"w":-9,"y":-9}},"{":{"d":"65,40v-73,6,-40,-78,-29,-115v0,-7,-3,-20,-24,-20r3,-18v48,-2,31,-50,39,-87v8,-35,30,-49,66,-47v-3,6,1,19,-10,19v-59,0,-14,120,-70,125v43,16,1,70,1,101v0,15,10,25,28,23","w":102,"k":{"T":-18,"A":3,"C":3,"G":3,"O":3,"Q":3,"V":-16,"W":-16,"X":-1,"Y":-12,"J":1,"j":-15,"c":4,"d":4,"e":4,"o":4,"q":4}},"|":{"d":"34,-270r23,0r0,360r-23,0r0,-360","w":78},"}":{"d":"41,-247v74,-6,41,77,30,116v0,6,3,19,24,19r-3,18v-50,2,-30,50,-39,87v-8,35,-30,49,-66,47v3,-6,-1,-19,10,-19v60,1,12,-119,70,-124v-42,-15,-1,-72,-1,-102v0,-15,-10,-25,-28,-23","w":102},"~":{"d":"199,-129v-2,96,-86,35,-134,23v-12,0,-21,11,-21,30r-21,0v-1,-35,19,-54,43,-54v23,0,68,33,92,31v13,0,19,-11,19,-30r22,0","w":214},"'":{"d":"46,-249r31,0r-22,87r-20,0","w":59,"k":{"A":14,"Y":-9,"J":20,"f":-15,"t":-9,"b":-4,"h":-4,"k":-4,"l":-4,",":37,".":37}},"`":{"d":"52,-247r34,0r23,52r-21,0","w":137},"\u00a0":{"w":65}}});
