/*
 * jQuery JavaScript Library v1.4.1
 * http://jquery.com/
 *
 * Copyright 2010, John Resig
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * Includes Sizzle.js
 * http://sizzlejs.com/
 * Copyright 2010, The Dojo Foundation
 * Released under the MIT, BSD, and GPL Licenses.
 *
 * Date: Mon Jan 25 19:43:33 2010 -0500
 */
(function(window,undefined){var jQuery=function(selector,context){return new jQuery.fn.init(selector,context);},_jQuery=window.jQuery,_$=window.$,document=window.document,rootjQuery,quickExpr=/^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/,rnotwhite=/\S/,rtrim=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,rsingleTag=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,userAgent=navigator.userAgent,browserMatch,readyBound=false,readyList=[],DOMContentLoaded,toString=Object.prototype.toString,hasOwnProperty=Object.prototype.hasOwnProperty,push=Array.prototype.push,slice=Array.prototype.slice,indexOf=Array.prototype.indexOf;jQuery.fn=jQuery.prototype={init:function(selector,context){var match,elem,ret,doc;if(!selector){return this;}
if(selector.nodeType){this.context=this[0]=selector;this.length=1;return this;}
if(typeof selector==="string"){match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1]){doc=(context?context.ownerDocument||context:document);ret=rsingleTag.exec(selector);if(ret){if(jQuery.isPlainObject(context)){selector=[document.createElement(ret[1])];jQuery.fn.attr.call(selector,context,true);}else{selector=[doc.createElement(ret[1])];}}else{ret=buildFragment([match[1]],[doc]);selector=(ret.cacheable?ret.fragment.cloneNode(true):ret.fragment).childNodes;}}else{elem=document.getElementById(match[2]);if(elem){if(elem.id!==match[2]){return rootjQuery.find(selector);}
this.length=1;this[0]=elem;}
this.context=document;this.selector=selector;return this;}}else if(!context&&/^\w+$/.test(selector)){this.selector=selector;this.context=document;selector=document.getElementsByTagName(selector);}else if(!context||context.jquery){return(context||rootjQuery).find(selector);}else{return jQuery(context).find(selector);}}else if(jQuery.isFunction(selector)){return rootjQuery.ready(selector);}
if(selector.selector!==undefined){this.selector=selector.selector;this.context=selector.context;}
return jQuery.isArray(selector)?this.setArray(selector):jQuery.makeArray(selector,this);},selector:"",jquery:"1.4.1",length:0,size:function(){return this.length;},toArray:function(){return slice.call(this,0);},get:function(num){return num==null?this.toArray():(num<0?this.slice(num)[0]:this[num]);},pushStack:function(elems,name,selector){var ret=jQuery(elems||null);ret.prevObject=this;ret.context=this.context;if(name==="find"){ret.selector=this.selector+(this.selector?" ":"")+selector;}else if(name){ret.selector=this.selector+"."+name+"("+selector+")";}
return ret;},setArray:function(elems){this.length=0;push.apply(this,elems);return this;},each:function(callback,args){return jQuery.each(this,callback,args);},ready:function(fn){jQuery.bindReady();if(jQuery.isReady){fn.call(document,jQuery);}else if(readyList){readyList.push(fn);}
return this;},eq:function(i){return i===-1?this.slice(i):this.slice(i,+i+1);},first:function(){return this.eq(0);},last:function(){return this.eq(-1);},slice:function(){return this.pushStack(slice.apply(this,arguments),"slice",slice.call(arguments).join(","));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},end:function(){return this.prevObject||jQuery(null);},push:push,sort:[].sort,splice:[].splice};jQuery.fn.init.prototype=jQuery.fn;jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options,name,src,copy;if(typeof target==="boolean"){deep=target;target=arguments[1]||{};i=2;}
if(typeof target!=="object"&&!jQuery.isFunction(target)){target={};}
if(length===i){target=this;--i;}
for(;i<length;i++){if((options=arguments[i])!=null){for(name in options){src=target[name];copy=options[name];if(target===copy){continue;}
if(deep&&copy&&(jQuery.isPlainObject(copy)||jQuery.isArray(copy))){var clone=src&&(jQuery.isPlainObject(src)||jQuery.isArray(src))?src:jQuery.isArray(copy)?[]:{};target[name]=jQuery.extend(deep,clone,copy);}else if(copy!==undefined){target[name]=copy;}}}}
return target;};jQuery.extend({noConflict:function(deep){window.$=_$;if(deep){window.jQuery=_jQuery;}
return jQuery;},isReady:false,ready:function(){if(!jQuery.isReady){if(!document.body){return setTimeout(jQuery.ready,13);}
jQuery.isReady=true;if(readyList){var fn,i=0;while((fn=readyList[i++])){fn.call(document,jQuery);}
readyList=null;}
if(jQuery.fn.triggerHandler){jQuery(document).triggerHandler("ready");}}},bindReady:function(){if(readyBound){return;}
readyBound=true;if(document.readyState==="complete"){return jQuery.ready();}
if(document.addEventListener){document.addEventListener("DOMContentLoaded",DOMContentLoaded,false);window.addEventListener("load",jQuery.ready,false);}else if(document.attachEvent){document.attachEvent("onreadystatechange",DOMContentLoaded);window.attachEvent("onload",jQuery.ready);var toplevel=false;try{toplevel=window.frameElement==null;}catch(e){}
if(document.documentElement.doScroll&&toplevel){doScrollCheck();}}},isFunction:function(obj){return toString.call(obj)==="[object Function]";},isArray:function(obj){return toString.call(obj)==="[object Array]";},isPlainObject:function(obj){if(!obj||toString.call(obj)!=="[object Object]"||obj.nodeType||obj.setInterval){return false;}
if(obj.constructor&&!hasOwnProperty.call(obj,"constructor")&&!hasOwnProperty.call(obj.constructor.prototype,"isPrototypeOf")){return false;}
var key;for(key in obj){}
return key===undefined||hasOwnProperty.call(obj,key);},isEmptyObject:function(obj){for(var name in obj){return false;}
return true;},error:function(msg){throw msg;},parseJSON:function(data){if(typeof data!=="string"||!data){return null;}
if(/^[\],:{}\s]*$/.test(data.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,"@").replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,"]").replace(/(?:^|:|,)(?:\s*\[)+/g,""))){return window.JSON&&window.JSON.parse?window.JSON.parse(data):(new Function("return "+data))();}else{jQuery.error("Invalid JSON: "+data);}},noop:function(){},globalEval:function(data){if(data&&rnotwhite.test(data)){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.support.scriptEval){script.appendChild(document.createTextNode(data));}else{script.text=data;}
head.insertBefore(script,head.firstChild);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()===name.toUpperCase();},each:function(object,callback,args){var name,i=0,length=object.length,isObj=length===undefined||jQuery.isFunction(object);if(args){if(isObj){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(isObj){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;},trim:function(text){return(text||"").replace(rtrim,"");},makeArray:function(array,results){var ret=results||[];if(array!=null){if(array.length==null||typeof array==="string"||jQuery.isFunction(array)||(typeof array!=="function"&&array.setInterval)){push.call(ret,array);}else{jQuery.merge(ret,array);}}
return ret;},inArray:function(elem,array){if(array.indexOf){return array.indexOf(elem);}
for(var i=0,length=array.length;i<length;i++){if(array[i]===elem){return i;}}
return-1;},merge:function(first,second){var i=first.length,j=0;if(typeof second.length==="number"){for(var l=second.length;j<l;j++){first[i++]=second[j];}}else{while(second[j]!==undefined){first[i++]=second[j++];}}
first.length=i;return first;},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,arg){var ret=[],value;for(var i=0,length=elems.length;i<length;i++){value=callback(elems[i],i,arg);if(value!=null){ret[ret.length]=value;}}
return ret.concat.apply([],ret);},guid:1,proxy:function(fn,proxy,thisObject){if(arguments.length===2){if(typeof proxy==="string"){thisObject=fn;fn=thisObject[proxy];proxy=undefined;}else if(proxy&&!jQuery.isFunction(proxy)){thisObject=proxy;proxy=undefined;}}
if(!proxy&&fn){proxy=function(){return fn.apply(thisObject||this,arguments);};}
if(fn){proxy.guid=fn.guid=fn.guid||proxy.guid||jQuery.guid++;}
return proxy;},uaMatch:function(ua){ua=ua.toLowerCase();var match=/(webkit)[ \/]([\w.]+)/.exec(ua)||/(opera)(?:.*version)?[ \/]([\w.]+)/.exec(ua)||/(msie) ([\w.]+)/.exec(ua)||!/compatible/.test(ua)&&/(mozilla)(?:.*? rv:([\w.]+))?/.exec(ua)||[];return{browser:match[1]||"",version:match[2]||"0"};},browser:{}});browserMatch=jQuery.uaMatch(userAgent);if(browserMatch.browser){jQuery.browser[browserMatch.browser]=true;jQuery.browser.version=browserMatch.version;}
if(jQuery.browser.webkit){jQuery.browser.safari=true;}
if(indexOf){jQuery.inArray=function(elem,array){return indexOf.call(array,elem);};}
rootjQuery=jQuery(document);if(document.addEventListener){DOMContentLoaded=function(){document.removeEventListener("DOMContentLoaded",DOMContentLoaded,false);jQuery.ready();};}else if(document.attachEvent){DOMContentLoaded=function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",DOMContentLoaded);jQuery.ready();}};}
function doScrollCheck(){if(jQuery.isReady){return;}
try{document.documentElement.doScroll("left");}catch(error){setTimeout(doScrollCheck,1);return;}
jQuery.ready();}
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 access(elems,key,value,exec,fn,pass){var length=elems.length;if(typeof key==="object"){for(var k in key){access(elems,k,key[k],exec,fn,value);}
return elems;}
if(value!==undefined){exec=!pass&&exec&&jQuery.isFunction(value);for(var i=0;i<length;i++){fn(elems[i],key,exec?value.call(elems[i],i,fn(elems[i],key)):value,pass);}
return elems;}
return length?fn(elems[0],key):null;}
function now(){return(new Date).getTime();}
(function(){jQuery.support={};var root=document.documentElement,script=document.createElement("script"),div=document.createElement("div"),id="script"+now();div.style.display="none";div.innerHTML="   <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";var all=div.getElementsByTagName("*"),a=div.getElementsByTagName("a")[0];if(!all||!all.length||!a){return;}
jQuery.support={leadingWhitespace:div.firstChild.nodeType===3,tbody:!div.getElementsByTagName("tbody").length,htmlSerialize:!!div.getElementsByTagName("link").length,style:/red/.test(a.getAttribute("style")),hrefNormalized:a.getAttribute("href")==="/a",opacity:/^0.55$/.test(a.style.opacity),cssFloat:!!a.style.cssFloat,checkOn:div.getElementsByTagName("input")[0].value==="on",optSelected:document.createElement("select").appendChild(document.createElement("option")).selected,checkClone:false,scriptEval:false,noCloneEvent:true,boxModel:null};script.type="text/javascript";try{script.appendChild(document.createTextNode("window."+id+"=1;"));}catch(e){}
root.insertBefore(script,root.firstChild);if(window[id]){jQuery.support.scriptEval=true;delete window[id];}
root.removeChild(script);if(div.attachEvent&&div.fireEvent){div.attachEvent("onclick",function click(){jQuery.support.noCloneEvent=false;div.detachEvent("onclick",click);});div.cloneNode(true).fireEvent("onclick");}
div=document.createElement("div");div.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";var fragment=document.createDocumentFragment();fragment.appendChild(div.firstChild);jQuery.support.checkClone=fragment.cloneNode(true).cloneNode(true).lastChild.checked;jQuery(function(){var div=document.createElement("div");div.style.width=div.style.paddingLeft="1px";document.body.appendChild(div);jQuery.boxModel=jQuery.support.boxModel=div.offsetWidth===2;document.body.removeChild(div).style.display='none';div=null;});var eventSupported=function(eventName){var el=document.createElement("div");eventName="on"+eventName;var isSupported=(eventName in el);if(!isSupported){el.setAttribute(eventName,"return;");isSupported=typeof el[eventName]==="function";}
el=null;return isSupported;};jQuery.support.submitBubbles=eventSupported("submit");jQuery.support.changeBubbles=eventSupported("change");root=script=div=all=a=null;})();jQuery.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var expando="jQuery"+now(),uuid=0,windowData={};var emptyObject={};jQuery.extend({cache:{},expando:expando,noData:{"embed":true,"object":true,"applet":true},data:function(elem,name,data){if(elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()]){return;}
elem=elem==window?windowData:elem;var id=elem[expando],cache=jQuery.cache,thisCache;if(!name&&!id){return null;}
if(!id){id=++uuid;}
if(typeof name==="object"){elem[expando]=id;thisCache=cache[id]=jQuery.extend(true,{},name);}else if(cache[id]){thisCache=cache[id];}else if(typeof data==="undefined"){thisCache=emptyObject;}else{thisCache=cache[id]={};}
if(data!==undefined){elem[expando]=id;thisCache[name]=data;}
return typeof name==="string"?thisCache[name]:thisCache;},removeData:function(elem,name){if(elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()]){return;}
elem=elem==window?windowData:elem;var id=elem[expando],cache=jQuery.cache,thisCache=cache[id];if(name){if(thisCache){delete thisCache[name];if(jQuery.isEmptyObject(thisCache)){jQuery.removeData(elem);}}}else{try{delete elem[expando];}catch(e){if(elem.removeAttribute){elem.removeAttribute(expando);}}
delete cache[id];}}});jQuery.fn.extend({data:function(key,value){if(typeof key==="undefined"&&this.length){return jQuery.data(this[0]);}else if(typeof key==="object"){return this.each(function(){jQuery.data(this,key);});}
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);});}});jQuery.extend({queue:function(elem,type,data){if(!elem){return;}
type=(type||"fx")+"queue";var q=jQuery.data(elem,type);if(!data){return q||[];}
if(!q||jQuery.isArray(data)){q=jQuery.data(elem,type,jQuery.makeArray(data));}else{q.push(data);}
return q;},dequeue:function(elem,type){type=type||"fx";var queue=jQuery.queue(elem,type),fn=queue.shift();if(fn==="inprogress"){fn=queue.shift();}
if(fn){if(type==="fx"){queue.unshift("inprogress");}
fn.call(elem,function(){jQuery.dequeue(elem,type);});}}});jQuery.fn.extend({queue:function(type,data){if(typeof type!=="string"){data=type;type="fx";}
if(data===undefined){return jQuery.queue(this[0],type);}
return this.each(function(i,elem){var queue=jQuery.queue(this,type,data);if(type==="fx"&&queue[0]!=="inprogress"){jQuery.dequeue(this,type);}});},dequeue:function(type){return this.each(function(){jQuery.dequeue(this,type);});},delay:function(time,type){time=jQuery.fx?jQuery.fx.speeds[time]||time:time;type=type||"fx";return this.queue(type,function(){var elem=this;setTimeout(function(){jQuery.dequeue(elem,type);},time);});},clearQueue:function(type){return this.queue(type||"fx",[]);}});var rclass=/[\n\t]/g,rspace=/\s+/,rreturn=/\r/g,rspecialurl=/href|src|style/,rtype=/(button|input)/i,rfocusable=/(button|input|object|select|textarea)/i,rclickable=/^(a|area)$/i,rradiocheck=/radio|checkbox/;jQuery.fn.extend({attr:function(name,value){return access(this,name,value,true,jQuery.attr);},removeAttr:function(name,fn){return this.each(function(){jQuery.attr(this,name,"");if(this.nodeType===1){this.removeAttribute(name);}});},addClass:function(value){if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);self.addClass(value.call(this,i,self.attr("class")));});}
if(value&&typeof value==="string"){var classNames=(value||"").split(rspace);for(var i=0,l=this.length;i<l;i++){var elem=this[i];if(elem.nodeType===1){if(!elem.className){elem.className=value;}else{var className=" "+elem.className+" ";for(var c=0,cl=classNames.length;c<cl;c++){if(className.indexOf(" "+classNames[c]+" ")<0){elem.className+=" "+classNames[c];}}}}}}
return this;},removeClass:function(value){if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);self.removeClass(value.call(this,i,self.attr("class")));});}
if((value&&typeof value==="string")||value===undefined){var classNames=(value||"").split(rspace);for(var i=0,l=this.length;i<l;i++){var elem=this[i];if(elem.nodeType===1&&elem.className){if(value){var className=(" "+elem.className+" ").replace(rclass," ");for(var c=0,cl=classNames.length;c<cl;c++){className=className.replace(" "+classNames[c]+" "," ");}
elem.className=className.substring(1,className.length-1);}else{elem.className="";}}}}
return this;},toggleClass:function(value,stateVal){var type=typeof value,isBool=typeof stateVal==="boolean";if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);self.toggleClass(value.call(this,i,self.attr("class"),stateVal),stateVal);});}
return this.each(function(){if(type==="string"){var className,i=0,self=jQuery(this),state=stateVal,classNames=value.split(rspace);while((className=classNames[i++])){state=isBool?state:!self.hasClass(className);self[state?"addClass":"removeClass"](className);}}else if(type==="undefined"||type==="boolean"){if(this.className){jQuery.data(this,"__className__",this.className);}
this.className=this.className||value===false?"":jQuery.data(this,"__className__")||"";}});},hasClass:function(selector){var className=" "+selector+" ";for(var i=0,l=this.length;i<l;i++){if((" "+this[i].className+" ").replace(rclass," ").indexOf(className)>-1){return true;}}
return false;},val:function(value){if(value===undefined){var elem=this[0];if(elem){if(jQuery.nodeName(elem,"option")){return(elem.attributes.value||{}).specified?elem.value:elem.text;}
if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type==="select-one";if(index<0){return null;}
for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery(option).val();if(one){return value;}
values.push(value);}}
return values;}
if(rradiocheck.test(elem.type)&&!jQuery.support.checkOn){return elem.getAttribute("value")===null?"on":elem.value;}
return(elem.value||"").replace(rreturn,"");}
return undefined;}
var isFunction=jQuery.isFunction(value);return this.each(function(i){var self=jQuery(this),val=value;if(this.nodeType!==1){return;}
if(isFunction){val=value.call(this,i,self.val());}
if(typeof val==="number"){val+="";}
if(jQuery.isArray(val)&&rradiocheck.test(this.type)){this.checked=jQuery.inArray(self.val(),val)>=0;}else if(jQuery.nodeName(this,"select")){var values=jQuery.makeArray(val);jQuery("option",this).each(function(){this.selected=jQuery.inArray(jQuery(this).val(),values)>=0;});if(!values.length){this.selectedIndex=-1;}}else{this.value=val;}});}});jQuery.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(elem,name,value,pass){if(!elem||elem.nodeType===3||elem.nodeType===8){return undefined;}
if(pass&&name in jQuery.attrFn){return jQuery(elem)[name](value);}
var notxml=elem.nodeType!==1||!jQuery.isXMLDoc(elem),set=value!==undefined;name=notxml&&jQuery.props[name]||name;if(elem.nodeType===1){var special=rspecialurl.test(name);if(name==="selected"&&!jQuery.support.optSelected){var parent=elem.parentNode;if(parent){parent.selectedIndex;if(parent.parentNode){parent.parentNode.selectedIndex;}}}
if(name in elem&&notxml&&!special){if(set){if(name==="type"&&rtype.test(elem.nodeName)&&elem.parentNode){jQuery.error("type property can't be changed");}
elem[name]=value;}
if(jQuery.nodeName(elem,"form")&&elem.getAttributeNode(name)){return elem.getAttributeNode(name).nodeValue;}
if(name==="tabIndex"){var attributeNode=elem.getAttributeNode("tabIndex");return attributeNode&&attributeNode.specified?attributeNode.value:rfocusable.test(elem.nodeName)||rclickable.test(elem.nodeName)&&elem.href?0:undefined;}
return elem[name];}
if(!jQuery.support.style&&notxml&&name==="style"){if(set){elem.style.cssText=""+value;}
return elem.style.cssText;}
if(set){elem.setAttribute(name,""+value);}
var attr=!jQuery.support.hrefNormalized&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}
return jQuery.style(elem,name,value);}});var fcleanup=function(nm){return nm.replace(/[^\w\s\.\|`]/g,function(ch){return"\\"+ch;});};jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType===3||elem.nodeType===8){return;}
if(elem.setInterval&&(elem!==window&&!elem.frameElement)){elem=window;}
if(!handler.guid){handler.guid=jQuery.guid++;}
if(data!==undefined){var fn=handler;handler=jQuery.proxy(fn);handler.data=data;}
var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle"),eventHandle;if(!handle){eventHandle=function(){return typeof jQuery!=="undefined"&&!jQuery.event.triggered?jQuery.event.handle.apply(eventHandle.elem,arguments):undefined;};handle=jQuery.data(elem,"handle",eventHandle);}
if(!handle){return;}
handle.elem=elem;types=types.split(/\s+/);var type,i=0;while((type=types[i++])){var namespaces=type.split(".");type=namespaces.shift();if(i>1){handler=jQuery.proxy(handler);if(data!==undefined){handler.data=data;}}
handler.type=namespaces.slice(0).sort().join(".");var handlers=events[type],special=this.special[type]||{};if(!handlers){handlers=events[type]={};if(!special.setup||special.setup.call(elem,data,namespaces,handler)===false){if(elem.addEventListener){elem.addEventListener(type,handle,false);}else if(elem.attachEvent){elem.attachEvent("on"+type,handle);}}}
if(special.add){var modifiedHandler=special.add.call(elem,handler,data,namespaces,handlers);if(modifiedHandler&&jQuery.isFunction(modifiedHandler)){modifiedHandler.guid=modifiedHandler.guid||handler.guid;modifiedHandler.data=modifiedHandler.data||handler.data;modifiedHandler.type=modifiedHandler.type||handler.type;handler=modifiedHandler;}}
handlers[handler.guid]=handler;this.global[type]=true;}
elem=null;},global:{},remove:function(elem,types,handler){if(elem.nodeType===3||elem.nodeType===8){return;}
var events=jQuery.data(elem,"events"),ret,type,fn;if(events){if(types===undefined||(typeof types==="string"&&types.charAt(0)===".")){for(type in events){this.remove(elem,type+(types||""));}}else{if(types.type){handler=types.handler;types=types.type;}
types=types.split(/\s+/);var i=0;while((type=types[i++])){var namespaces=type.split(".");type=namespaces.shift();var all=!namespaces.length,cleaned=jQuery.map(namespaces.slice(0).sort(),fcleanup),namespace=new RegExp("(^|\\.)"+cleaned.join("\\.(?:.*\\.)?")+"(\\.|$)"),special=this.special[type]||{};if(events[type]){if(handler){fn=events[type][handler.guid];delete events[type][handler.guid];}else{for(var handle in events[type]){if(all||namespace.test(events[type][handle].type)){delete events[type][handle];}}}
if(special.remove){special.remove.call(elem,namespaces,fn);}
for(ret in events[type]){break;}
if(!ret){if(!special.teardown||special.teardown.call(elem,namespaces)===false){if(elem.removeEventListener){elem.removeEventListener(type,jQuery.data(elem,"handle"),false);}else if(elem.detachEvent){elem.detachEvent("on"+type,jQuery.data(elem,"handle"));}}
ret=null;delete events[type];}}}}
for(ret in events){break;}
if(!ret){var handle=jQuery.data(elem,"handle");if(handle){handle.elem=null;}
jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle");}}},trigger:function(event,data,elem){var type=event.type||event,bubbling=arguments[3];if(!bubbling){event=typeof event==="object"?event[expando]?event:jQuery.extend(jQuery.Event(type),event):jQuery.Event(type);if(type.indexOf("!")>=0){event.type=type=type.slice(0,-1);event.exclusive=true;}
if(!elem){event.stopPropagation();if(this.global[type]){jQuery.each(jQuery.cache,function(){if(this.events&&this.events[type]){jQuery.event.trigger(event,data,this.handle.elem);}});}}
if(!elem||elem.nodeType===3||elem.nodeType===8){return undefined;}
event.result=undefined;event.target=elem;data=jQuery.makeArray(data);data.unshift(event);}
event.currentTarget=elem;var handle=jQuery.data(elem,"handle");if(handle){handle.apply(elem,data);}
var parent=elem.parentNode||elem.ownerDocument;try{if(!(elem&&elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()])){if(elem["on"+type]&&elem["on"+type].apply(elem,data)===false){event.result=false;}}}catch(e){}
if(!event.isPropagationStopped()&&parent){jQuery.event.trigger(event,data,parent,true);}else if(!event.isDefaultPrevented()){var target=event.target,old,isClick=jQuery.nodeName(target,"a")&&type==="click";if(!isClick&&!(target&&target.nodeName&&jQuery.noData[target.nodeName.toLowerCase()])){try{if(target[type]){old=target["on"+type];if(old){target["on"+type]=null;}
this.triggered=true;target[type]();}}catch(e){}
if(old){target["on"+type]=old;}
this.triggered=false;}}},handle:function(event){var all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);event.currentTarget=this;var namespaces=event.type.split(".");event.type=namespaces.shift();all=!namespaces.length&&!event.exclusive;var namespace=new RegExp("(^|\\.)"+namespaces.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)");handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||namespace.test(handler.type)){event.handler=handler;event.data=handler.data;var ret=handler.apply(this,arguments);if(ret!==undefined){event.result=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}
if(event.isImmediatePropagationStopped()){break;}}}
return event.result;},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(event){if(event[expando]){return event;}
var originalEvent=event;event=jQuery.Event(originalEvent);for(var i=this.props.length,prop;i;){prop=this.props[--i];event[prop]=originalEvent[prop];}
if(!event.target){event.target=event.srcElement||document;}
if(event.target.nodeType===3){event.target=event.target.parentNode;}
if(!event.relatedTarget&&event.fromElement){event.relatedTarget=event.fromElement===event.target?event.toElement:event.fromElement;}
if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc&&doc.clientLeft||body&&body.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc&&doc.clientTop||body&&body.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!==undefined){event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));}
return event;},guid:1E8,proxy:jQuery.proxy,special:{ready:{setup:jQuery.bindReady,teardown:jQuery.noop},live:{add:function(proxy,data,namespaces,live){jQuery.extend(proxy,data||{});proxy.guid+=data.selector+data.live;data.liveProxy=proxy;jQuery.event.add(this,data.live,liveHandler,data);},remove:function(namespaces){if(namespaces.length){var remove=0,name=new RegExp("(^|\\.)"+namespaces[0]+"(\\.|$)");jQuery.each((jQuery.data(this,"events").live||{}),function(){if(name.test(this.type)){remove++;}});if(remove<1){jQuery.event.remove(this,namespaces[0],liveHandler);}}},special:{}},beforeunload:{setup:function(data,namespaces,fn){if(this.setInterval){this.onbeforeunload=fn;}
return false;},teardown:function(namespaces,fn){if(this.onbeforeunload===fn){this.onbeforeunload=null;}}}}};jQuery.Event=function(src){if(!this.preventDefault){return new jQuery.Event(src);}
if(src&&src.type){this.originalEvent=src;this.type=src.type;}else{this.type=src;}
this.timeStamp=now();this[expando]=true;};function returnFalse(){return false;}
function returnTrue(){return true;}
jQuery.Event.prototype={preventDefault:function(){this.isDefaultPrevented=returnTrue;var e=this.originalEvent;if(!e){return;}
if(e.preventDefault){e.preventDefault();}
e.returnValue=false;},stopPropagation:function(){this.isPropagationStopped=returnTrue;var e=this.originalEvent;if(!e){return;}
if(e.stopPropagation){e.stopPropagation();}
e.cancelBubble=true;},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=returnTrue;this.stopPropagation();},isDefaultPrevented:returnFalse,isPropagationStopped:returnFalse,isImmediatePropagationStopped:returnFalse};var withinElement=function(event){var parent=event.relatedTarget;while(parent&&parent!==this){try{parent=parent.parentNode;}catch(e){break;}}
if(parent!==this){event.type=event.data;jQuery.event.handle.apply(this,arguments);}},delegate=function(event){event.type=event.data;jQuery.event.handle.apply(this,arguments);};jQuery.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(orig,fix){jQuery.event.special[orig]={setup:function(data){jQuery.event.add(this,fix,data&&data.selector?delegate:withinElement,orig);},teardown:function(data){jQuery.event.remove(this,fix,data&&data.selector?delegate:withinElement);}};});if(!jQuery.support.submitBubbles){jQuery.event.special.submit={setup:function(data,namespaces,fn){if(this.nodeName.toLowerCase()!=="form"){jQuery.event.add(this,"click.specialSubmit."+fn.guid,function(e){var elem=e.target,type=elem.type;if((type==="submit"||type==="image")&&jQuery(elem).closest("form").length){return trigger("submit",this,arguments);}});jQuery.event.add(this,"keypress.specialSubmit."+fn.guid,function(e){var elem=e.target,type=elem.type;if((type==="text"||type==="password")&&jQuery(elem).closest("form").length&&e.keyCode===13){return trigger("submit",this,arguments);}});}else{return false;}},remove:function(namespaces,fn){jQuery.event.remove(this,"click.specialSubmit"+(fn?"."+fn.guid:""));jQuery.event.remove(this,"keypress.specialSubmit"+(fn?"."+fn.guid:""));}};}
if(!jQuery.support.changeBubbles){var formElems=/textarea|input|select/i;function getVal(elem){var type=elem.type,val=elem.value;if(type==="radio"||type==="checkbox"){val=elem.checked;}else if(type==="select-multiple"){val=elem.selectedIndex>-1?jQuery.map(elem.options,function(elem){return elem.selected;}).join("-"):"";}else if(elem.nodeName.toLowerCase()==="select"){val=elem.selectedIndex;}
return val;}
function testChange(e){var elem=e.target,data,val;if(!formElems.test(elem.nodeName)||elem.readOnly){return;}
data=jQuery.data(elem,"_change_data");val=getVal(elem);if(e.type!=="focusout"||elem.type!=="radio"){jQuery.data(elem,"_change_data",val);}
if(data===undefined||val===data){return;}
if(data!=null||val){e.type="change";return jQuery.event.trigger(e,arguments[1],elem);}}
jQuery.event.special.change={filters:{focusout:testChange,click:function(e){var elem=e.target,type=elem.type;if(type==="radio"||type==="checkbox"||elem.nodeName.toLowerCase()==="select"){return testChange.call(this,e);}},keydown:function(e){var elem=e.target,type=elem.type;if((e.keyCode===13&&elem.nodeName.toLowerCase()!=="textarea")||(e.keyCode===32&&(type==="checkbox"||type==="radio"))||type==="select-multiple"){return testChange.call(this,e);}},beforeactivate:function(e){var elem=e.target;if(elem.nodeName.toLowerCase()==="input"&&elem.type==="radio"){jQuery.data(elem,"_change_data",getVal(elem));}}},setup:function(data,namespaces,fn){for(var type in changeFilters){jQuery.event.add(this,type+".specialChange."+fn.guid,changeFilters[type]);}
return formElems.test(this.nodeName);},remove:function(namespaces,fn){for(var type in changeFilters){jQuery.event.remove(this,type+".specialChange"+(fn?"."+fn.guid:""),changeFilters[type]);}
return formElems.test(this.nodeName);}};var changeFilters=jQuery.event.special.change.filters;}
function trigger(type,elem,args){args[0].type=type;return jQuery.event.handle.apply(elem,args);}
if(document.addEventListener){jQuery.each({focus:"focusin",blur:"focusout"},function(orig,fix){jQuery.event.special[fix]={setup:function(){this.addEventListener(orig,handler,true);},teardown:function(){this.removeEventListener(orig,handler,true);}};function handler(e){e=jQuery.event.fix(e);e.type=fix;return jQuery.event.handle.call(this,e);}});}
jQuery.each(["bind","one"],function(i,name){jQuery.fn[name]=function(type,data,fn){if(typeof type==="object"){for(var key in type){this[name](key,data,type[key],fn);}
return this;}
if(jQuery.isFunction(data)){fn=data;data=undefined;}
var handler=name==="one"?jQuery.proxy(fn,function(event){jQuery(this).unbind(event,handler);return fn.apply(this,arguments);}):fn;return type==="unload"&&name!=="one"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,handler,data);});};});jQuery.fn.extend({unbind:function(type,fn){if(typeof type==="object"&&!type.preventDefault){for(var key in type){this.unbind(key,type[key]);}
return this;}
return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data){return this.each(function(){jQuery.event.trigger(type,data,this);});},triggerHandler:function(type,data){if(this[0]){var event=jQuery.Event(type);event.preventDefault();event.stopPropagation();jQuery.event.trigger(event,data,this[0]);return event.result;}},toggle:function(fn){var args=arguments,i=1;while(i<args.length){jQuery.proxy(fn,args[i++]);}
return this.click(jQuery.proxy(fn,function(event){var lastToggle=(jQuery.data(this,"lastToggle"+fn.guid)||0)%i;jQuery.data(this,"lastToggle"+fn.guid,lastToggle+1);event.preventDefault();return args[lastToggle].apply(this,arguments)||false;}));},hover:function(fnOver,fnOut){return this.mouseenter(fnOver).mouseleave(fnOut||fnOver);}});jQuery.each(["live","die"],function(i,name){jQuery.fn[name]=function(types,data,fn){var type,i=0;if(jQuery.isFunction(data)){fn=data;data=undefined;}
types=(types||"").split(/\s+/);while((type=types[i++])!=null){type=type==="focus"?"focusin":type==="blur"?"focusout":type==="hover"?types.push("mouseleave")&&"mouseenter":type;if(name==="live"){jQuery(this.context).bind(liveConvert(type,this.selector),{data:data,selector:this.selector,live:type},fn);}else{jQuery(this.context).unbind(liveConvert(type,this.selector),fn?{guid:fn.guid+this.selector+type}:null);}}
return this;}});function liveHandler(event){var stop,elems=[],selectors=[],args=arguments,related,match,fn,elem,j,i,l,data,live=jQuery.extend({},jQuery.data(this,"events").live);if(event.button&&event.type==="click"){return;}
for(j in live){fn=live[j];if(fn.live===event.type||fn.altLive&&jQuery.inArray(event.type,fn.altLive)>-1){data=fn.data;if(!(data.beforeFilter&&data.beforeFilter[event.type]&&!data.beforeFilter[event.type](event))){selectors.push(fn.selector);}}else{delete live[j];}}
match=jQuery(event.target).closest(selectors,event.currentTarget);for(i=0,l=match.length;i<l;i++){for(j in live){fn=live[j];elem=match[i].elem;related=null;if(match[i].selector===fn.selector){if(fn.live==="mouseenter"||fn.live==="mouseleave"){related=jQuery(event.relatedTarget).closest(fn.selector)[0];}
if(!related||related!==elem){elems.push({elem:elem,fn:fn});}}}}
for(i=0,l=elems.length;i<l;i++){match=elems[i];event.currentTarget=match.elem;event.data=match.fn.data;if(match.fn.apply(match.elem,args)===false){stop=false;break;}}
return stop;}
function liveConvert(type,selector){return"live."+(type?type+".":"")+selector.replace(/\./g,"`").replace(/ /g,"&");}
jQuery.each(("blur focus focusin focusout load resize scroll unload click dblclick "+"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave "+"change select submit keydown keypress keyup error").split(" "),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name);};if(jQuery.attrFn){jQuery.attrFn[name]=true;}});if(window.attachEvent&&!window.addEventListener){window.attachEvent("onunload",function(){for(var id in jQuery.cache){if(jQuery.cache[id].handle){try{jQuery.event.remove(jQuery.cache[id].handle.elem);}catch(e){}}}});}
/*
 * Sizzle CSS Selector Engine - v1.0
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,done=0,toString=Object.prototype.toString,hasDuplicate=false,baseHasDuplicate=true;[0,0].sort(function(){baseHasDuplicate=false;return 0;});var Sizzle=function(selector,context,results,seed){results=results||[];var origContext=context=context||document;if(context.nodeType!==1&&context.nodeType!==9){return[];}
if(!selector||typeof selector!=="string"){return results;}
var parts=[],m,set,checkSet,extra,prune=true,contextXML=isXML(context),soFar=selector;while((chunker.exec(""),m=chunker.exec(soFar))!==null){soFar=m[3];parts.push(m[1]);if(m[2]){extra=m[3];break;}}
if(parts.length>1&&origPOS.exec(selector)){if(parts.length===2&&Expr.relative[parts[0]]){set=posProcess(parts[0]+parts[1],context);}else{set=Expr.relative[parts[0]]?[context]:Sizzle(parts.shift(),context);while(parts.length){selector=parts.shift();if(Expr.relative[selector]){selector+=parts.shift();}
set=posProcess(selector,set);}}}else{if(!seed&&parts.length>1&&context.nodeType===9&&!contextXML&&Expr.match.ID.test(parts[0])&&!Expr.match.ID.test(parts[parts.length-1])){var ret=Sizzle.find(parts.shift(),context,contextXML);context=ret.expr?Sizzle.filter(ret.expr,ret.set)[0]:ret.set[0];}
if(context){var ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&(parts[0]==="~"||parts[0]==="+")&&context.parentNode?context.parentNode:context,contextXML);set=ret.expr?Sizzle.filter(ret.expr,ret.set):ret.set;if(parts.length>0){checkSet=makeArray(set);}else{prune=false;}
while(parts.length){var cur=parts.pop(),pop=cur;if(!Expr.relative[cur]){cur="";}else{pop=parts.pop();}
if(pop==null){pop=context;}
Expr.relative[cur](checkSet,pop,contextXML);}}else{checkSet=parts=[];}}
if(!checkSet){checkSet=set;}
if(!checkSet){Sizzle.error(cur||selector);}
if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet);}else if(context&&context.nodeType===1){for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&contains(context,checkSet[i]))){results.push(set[i]);}}}else{for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&checkSet[i].nodeType===1){results.push(set[i]);}}}}else{makeArray(checkSet,results);}
if(extra){Sizzle(extra,origContext,results,seed);Sizzle.uniqueSort(results);}
return results;};Sizzle.uniqueSort=function(results){if(sortOrder){hasDuplicate=baseHasDuplicate;results.sort(sortOrder);if(hasDuplicate){for(var i=1;i<results.length;i++){if(results[i]===results[i-1]){results.splice(i--,1);}}}}
return results;};Sizzle.matches=function(expr,set){return Sizzle(expr,null,null,set);};Sizzle.find=function(expr,context,isXML){var set,match;if(!expr){return[];}
for(var i=0,l=Expr.order.length;i<l;i++){var type=Expr.order[i],match;if((match=Expr.leftMatch[type].exec(expr))){var left=match[1];match.splice(1,1);if(left.substr(left.length-1)!=="\\"){match[1]=(match[1]||"").replace(/\\/g,"");set=Expr.find[type](match,context,isXML);if(set!=null){expr=expr.replace(Expr.match[type],"");break;}}}}
if(!set){set=context.getElementsByTagName("*");}
return{set:set,expr:expr};};Sizzle.filter=function(expr,set,inplace,not){var old=expr,result=[],curLoop=set,match,anyFound,isXMLFilter=set&&set[0]&&isXML(set[0]);while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.leftMatch[type].exec(expr))!=null&&match[2]){var filter=Expr.filter[type],found,item,left=match[1];anyFound=false;match.splice(1,1);if(left.substr(left.length-1)==="\\"){continue;}
if(curLoop===result){result=[];}
if(Expr.preFilter[type]){match=Expr.preFilter[type](match,curLoop,inplace,result,not,isXMLFilter);if(!match){anyFound=found=true;}else if(match===true){continue;}}
if(match){for(var i=0;(item=curLoop[i])!=null;i++){if(item){found=filter(item,match,i,curLoop);var pass=not^!!found;if(inplace&&found!=null){if(pass){anyFound=true;}else{curLoop[i]=false;}}else if(pass){result.push(item);anyFound=true;}}}}
if(found!==undefined){if(!inplace){curLoop=result;}
expr=expr.replace(Expr.match[type],"");if(!anyFound){return[];}
break;}}}
if(expr===old){if(anyFound==null){Sizzle.error(expr);}else{break;}}
old=expr;}
return curLoop;};Sizzle.error=function(msg){throw"Syntax error, unrecognized expression: "+msg;};var Expr=Sizzle.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href");}},relative:{"+":function(checkSet,part){var isPartStr=typeof part==="string",isTag=isPartStr&&!/\W/.test(part),isPartStrNotTag=isPartStr&&!isTag;if(isTag){part=part.toLowerCase();}
for(var i=0,l=checkSet.length,elem;i<l;i++){if((elem=checkSet[i])){while((elem=elem.previousSibling)&&elem.nodeType!==1){}
checkSet[i]=isPartStrNotTag||elem&&elem.nodeName.toLowerCase()===part?elem||false:elem===part;}}
if(isPartStrNotTag){Sizzle.filter(part,checkSet,true);}},">":function(checkSet,part){var isPartStr=typeof part==="string";if(isPartStr&&!/\W/.test(part)){part=part.toLowerCase();for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName.toLowerCase()===part?parent:false;}}}else{for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){checkSet[i]=isPartStr?elem.parentNode:elem.parentNode===part;}}
if(isPartStr){Sizzle.filter(part,checkSet,true);}}},"":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!/\W/.test(part)){var nodeCheck=part=part.toLowerCase();checkFn=dirNodeCheck;}
checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML);},"~":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!/\W/.test(part)){var nodeCheck=part=part.toLowerCase();checkFn=dirNodeCheck;}
checkFn("previousSibling",part,doneName,checkSet,nodeCheck,isXML);}},find:{ID:function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?[m]:[];}},NAME:function(match,context){if(typeof context.getElementsByName!=="undefined"){var ret=[],results=context.getElementsByName(match[1]);for(var i=0,l=results.length;i<l;i++){if(results[i].getAttribute("name")===match[1]){ret.push(results[i]);}}
return ret.length===0?null:ret;}},TAG:function(match,context){return context.getElementsByTagName(match[1]);}},preFilter:{CLASS:function(match,curLoop,inplace,result,not,isXML){match=" "+match[1].replace(/\\/g,"")+" ";if(isXML){return match;}
for(var i=0,elem;(elem=curLoop[i])!=null;i++){if(elem){if(not^(elem.className&&(" "+elem.className+" ").replace(/[\t\n]/g," ").indexOf(match)>=0)){if(!inplace){result.push(elem);}}else if(inplace){curLoop[i]=false;}}}
return false;},ID:function(match){return match[1].replace(/\\/g,"");},TAG:function(match,curLoop){return match[1].toLowerCase();},CHILD:function(match){if(match[1]==="nth"){var test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(match[2]==="even"&&"2n"||match[2]==="odd"&&"2n+1"||!/\D/.test(match[2])&&"0n+"+match[2]||match[2]);match[2]=(test[1]+(test[2]||1))-0;match[3]=test[3]-0;}
match[0]=done++;return match;},ATTR:function(match,curLoop,inplace,result,not,isXML){var name=match[1].replace(/\\/g,"");if(!isXML&&Expr.attrMap[name]){match[1]=Expr.attrMap[name];}
if(match[2]==="~="){match[4]=" "+match[4]+" ";}
return match;},PSEUDO:function(match,curLoop,inplace,result,not){if(match[1]==="not"){if((chunker.exec(match[3])||"").length>1||/^\w/.test(match[3])){match[3]=Sizzle(match[3],null,null,curLoop);}else{var ret=Sizzle.filter(match[3],curLoop,inplace,true^not);if(!inplace){result.push.apply(result,ret);}
return false;}}else if(Expr.match.POS.test(match[0])||Expr.match.CHILD.test(match[0])){return true;}
return match;},POS:function(match){match.unshift(true);return match;}},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden";},disabled:function(elem){return elem.disabled===true;},checked:function(elem){return elem.checked===true;},selected:function(elem){elem.parentNode.selectedIndex;return elem.selected===true;},parent:function(elem){return!!elem.firstChild;},empty:function(elem){return!elem.firstChild;},has:function(elem,i,match){return!!Sizzle(match[3],elem).length;},header:function(elem){return /h\d/i.test(elem.nodeName);},text:function(elem){return"text"===elem.type;},radio:function(elem){return"radio"===elem.type;},checkbox:function(elem){return"checkbox"===elem.type;},file:function(elem){return"file"===elem.type;},password:function(elem){return"password"===elem.type;},submit:function(elem){return"submit"===elem.type;},image:function(elem){return"image"===elem.type;},reset:function(elem){return"reset"===elem.type;},button:function(elem){return"button"===elem.type||elem.nodeName.toLowerCase()==="button";},input:function(elem){return /input|select|textarea|button/i.test(elem.nodeName);}},setFilters:{first:function(elem,i){return i===0;},last:function(elem,i,match,array){return i===array.length-1;},even:function(elem,i){return i%2===0;},odd:function(elem,i){return i%2===1;},lt:function(elem,i,match){return i<match[3]-0;},gt:function(elem,i,match){return i>match[3]-0;},nth:function(elem,i,match){return match[3]-0===i;},eq:function(elem,i,match){return match[3]-0===i;}},filter:{PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name];if(filter){return filter(elem,i,match,array);}else if(name==="contains"){return(elem.textContent||elem.innerText||getText([elem])||"").indexOf(match[3])>=0;}else if(name==="not"){var not=match[3];for(var i=0,l=not.length;i<l;i++){if(not[i]===elem){return false;}}
return true;}else{Sizzle.error("Syntax error, unrecognized expression: "+name);}},CHILD:function(elem,match){var type=match[1],node=elem;switch(type){case'only':case'first':while((node=node.previousSibling)){if(node.nodeType===1){return false;}}
if(type==="first"){return true;}
node=elem;case'last':while((node=node.nextSibling)){if(node.nodeType===1){return false;}}
return true;case'nth':var first=match[2],last=match[3];if(first===1&&last===0){return true;}
var doneName=match[0],parent=elem.parentNode;if(parent&&(parent.sizcache!==doneName||!elem.nodeIndex)){var count=0;for(node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType===1){node.nodeIndex=++count;}}
parent.sizcache=doneName;}
var diff=elem.nodeIndex-last;if(first===0){return diff===0;}else{return(diff%first===0&&diff/first>=0);}}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match;},TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName.toLowerCase()===match;},CLASS:function(elem,match){return(" "+(elem.className||elem.getAttribute("class"))+" ").indexOf(match)>-1;},ATTR:function(elem,match){var name=match[1],result=Expr.attrHandle[name]?Expr.attrHandle[name](elem):elem[name]!=null?elem[name]:elem.getAttribute(name),value=result+"",type=match[2],check=match[4];return result==null?type==="!=":type==="="?value===check:type==="*="?value.indexOf(check)>=0:type==="~="?(" "+value+" ").indexOf(check)>=0:!check?value&&result!==false:type==="!="?value!==check:type==="^="?value.indexOf(check)===0:type==="$="?value.substr(value.length-check.length)===check:type==="|="?value===check||value.substr(0,check.length+1)===check+"-":false;},POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name];if(filter){return filter(elem,i,match,array);}}}};var origPOS=Expr.match.POS;for(var type in Expr.match){Expr.match[type]=new RegExp(Expr.match[type].source+/(?![^\[]*\])(?![^\(]*\))/.source);Expr.leftMatch[type]=new RegExp(/(^(?:.|\r|\n)*?)/.source+Expr.match[type].source.replace(/\\(\d+)/g,function(all,num){return"\\"+(num-0+1);}));}
var makeArray=function(array,results){array=Array.prototype.slice.call(array,0);if(results){results.push.apply(results,array);return results;}
return array;};try{Array.prototype.slice.call(document.documentElement.childNodes,0);}catch(e){makeArray=function(array,results){var ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array);}else{if(typeof array.length==="number"){for(var i=0,l=array.length;i<l;i++){ret.push(array[i]);}}else{for(var i=0;array[i];i++){ret.push(array[i]);}}}
return ret;};}
var sortOrder;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){if(!a.compareDocumentPosition||!b.compareDocumentPosition){if(a==b){hasDuplicate=true;}
return a.compareDocumentPosition?-1:1;}
var ret=a.compareDocumentPosition(b)&4?-1:a===b?0:1;if(ret===0){hasDuplicate=true;}
return ret;};}else if("sourceIndex"in document.documentElement){sortOrder=function(a,b){if(!a.sourceIndex||!b.sourceIndex){if(a==b){hasDuplicate=true;}
return a.sourceIndex?-1:1;}
var ret=a.sourceIndex-b.sourceIndex;if(ret===0){hasDuplicate=true;}
return ret;};}else if(document.createRange){sortOrder=function(a,b){if(!a.ownerDocument||!b.ownerDocument){if(a==b){hasDuplicate=true;}
return a.ownerDocument?-1:1;}
var aRange=a.ownerDocument.createRange(),bRange=b.ownerDocument.createRange();aRange.setStart(a,0);aRange.setEnd(a,0);bRange.setStart(b,0);bRange.setEnd(b,0);var ret=aRange.compareBoundaryPoints(Range.START_TO_END,bRange);if(ret===0){hasDuplicate=true;}
return ret;};}
function getText(elems){var ret="",elem;for(var i=0;elems[i];i++){elem=elems[i];if(elem.nodeType===3||elem.nodeType===4){ret+=elem.nodeValue;}else if(elem.nodeType!==8){ret+=getText(elem.childNodes);}}
return ret;}
(function(){var form=document.createElement("div"),id="script"+(new Date).getTime();form.innerHTML="<a name='"+id+"'/>";var root=document.documentElement;root.insertBefore(form,root.firstChild);if(document.getElementById(id)){Expr.find.ID=function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?m.id===match[1]||typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id").nodeValue===match[1]?[m]:undefined:[];}};Expr.filter.ID=function(elem,match){var node=typeof elem.getAttributeNode!=="undefined"&&elem.getAttributeNode("id");return elem.nodeType===1&&node&&node.nodeValue===match;};}
root.removeChild(form);root=form=null;})();(function(){var div=document.createElement("div");div.appendChild(document.createComment(""));if(div.getElementsByTagName("*").length>0){Expr.find.TAG=function(match,context){var results=context.getElementsByTagName(match[1]);if(match[1]==="*"){var tmp=[];for(var i=0;results[i];i++){if(results[i].nodeType===1){tmp.push(results[i]);}}
results=tmp;}
return results;};}
div.innerHTML="<a href='#'></a>";if(div.firstChild&&typeof div.firstChild.getAttribute!=="undefined"&&div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAttribute("href",2);};}
div=null;})();if(document.querySelectorAll){(function(){var oldSizzle=Sizzle,div=document.createElement("div");div.innerHTML="<p class='TEST'></p>";if(div.querySelectorAll&&div.querySelectorAll(".TEST").length===0){return;}
Sizzle=function(query,context,extra,seed){context=context||document;if(!seed&&context.nodeType===9&&!isXML(context)){try{return makeArray(context.querySelectorAll(query),extra);}catch(e){}}
return oldSizzle(query,context,extra,seed);};for(var prop in oldSizzle){Sizzle[prop]=oldSizzle[prop];}
div=null;})();}
(function(){var div=document.createElement("div");div.innerHTML="<div class='test e'></div><div class='test'></div>";if(!div.getElementsByClassName||div.getElementsByClassName("e").length===0){return;}
div.lastChild.className="e";if(div.getElementsByClassName("e").length===1){return;}
Expr.order.splice(1,0,"CLASS");Expr.find.CLASS=function(match,context,isXML){if(typeof context.getElementsByClassName!=="undefined"&&!isXML){return context.getElementsByClassName(match[1]);}};div=null;})();function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1&&!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(elem.nodeName.toLowerCase()===cur){match=elem;break;}
elem=elem[dir];}
checkSet[i]=match;}}}
function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1){if(!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(typeof cur!=="string"){if(elem===cur){match=true;break;}}else if(Sizzle.filter(cur,[elem]).length>0){match=elem;break;}}
elem=elem[dir];}
checkSet[i]=match;}}}
var contains=document.compareDocumentPosition?function(a,b){return a.compareDocumentPosition(b)&16;}:function(a,b){return a!==b&&(a.contains?a.contains(b):true);};var isXML=function(elem){var documentElement=(elem?elem.ownerDocument||elem:0).documentElement;return documentElement?documentElement.nodeName!=="HTML":false;};var posProcess=function(selector,context){var tmpSet=[],later="",match,root=context.nodeType?[context]:context;while((match=Expr.match.PSEUDO.exec(selector))){later+=match[0];selector=selector.replace(Expr.match.PSEUDO,"");}
selector=Expr.relative[selector]?selector+"*":selector;for(var i=0,l=root.length;i<l;i++){Sizzle(selector,root[i],tmpSet);}
return Sizzle.filter(later,tmpSet);};jQuery.find=Sizzle;jQuery.expr=Sizzle.selectors;jQuery.expr[":"]=jQuery.expr.filters;jQuery.unique=Sizzle.uniqueSort;jQuery.getText=getText;jQuery.isXMLDoc=isXML;jQuery.contains=contains;return;window.Sizzle=Sizzle;})();var runtil=/Until$/,rparentsprev=/^(?:parents|prevUntil|prevAll)/,rmultiselector=/,/,slice=Array.prototype.slice;var winnow=function(elements,qualifier,keep){if(jQuery.isFunction(qualifier)){return jQuery.grep(elements,function(elem,i){return!!qualifier.call(elem,i,elem)===keep;});}else if(qualifier.nodeType){return jQuery.grep(elements,function(elem,i){return(elem===qualifier)===keep;});}else if(typeof qualifier==="string"){var filtered=jQuery.grep(elements,function(elem){return elem.nodeType===1;});if(isSimple.test(qualifier)){return jQuery.filter(qualifier,filtered,!keep);}else{qualifier=jQuery.filter(qualifier,filtered);}}
return jQuery.grep(elements,function(elem,i){return(jQuery.inArray(elem,qualifier)>=0)===keep;});};jQuery.fn.extend({find:function(selector){var ret=this.pushStack("","find",selector),length=0;for(var i=0,l=this.length;i<l;i++){length=ret.length;jQuery.find(selector,this[i],ret);if(i>0){for(var n=length;n<ret.length;n++){for(var r=0;r<length;r++){if(ret[r]===ret[n]){ret.splice(n--,1);break;}}}}}
return ret;},has:function(target){var targets=jQuery(target);return this.filter(function(){for(var i=0,l=targets.length;i<l;i++){if(jQuery.contains(this,targets[i])){return true;}}});},not:function(selector){return this.pushStack(winnow(this,selector,false),"not",selector);},filter:function(selector){return this.pushStack(winnow(this,selector,true),"filter",selector);},is:function(selector){return!!selector&&jQuery.filter(selector,this).length>0;},closest:function(selectors,context){if(jQuery.isArray(selectors)){var ret=[],cur=this[0],match,matches={},selector;if(cur&&selectors.length){for(var i=0,l=selectors.length;i<l;i++){selector=selectors[i];if(!matches[selector]){matches[selector]=jQuery.expr.match.POS.test(selector)?jQuery(selector,context||this.context):selector;}}
while(cur&&cur.ownerDocument&&cur!==context){for(selector in matches){match=matches[selector];if(match.jquery?match.index(cur)>-1:jQuery(cur).is(match)){ret.push({selector:selector,elem:cur});delete matches[selector];}}
cur=cur.parentNode;}}
return ret;}
var pos=jQuery.expr.match.POS.test(selectors)?jQuery(selectors,context||this.context):null;return this.map(function(i,cur){while(cur&&cur.ownerDocument&&cur!==context){if(pos?pos.index(cur)>-1:jQuery(cur).is(selectors)){return cur;}
cur=cur.parentNode;}
return null;});},index:function(elem){if(!elem||typeof elem==="string"){return jQuery.inArray(this[0],elem?jQuery(elem):this.parent().children());}
return jQuery.inArray(elem.jquery?elem[0]:elem,this);},add:function(selector,context){var set=typeof selector==="string"?jQuery(selector,context||this.context):jQuery.makeArray(selector),all=jQuery.merge(this.get(),set);return this.pushStack(isDisconnected(set[0])||isDisconnected(all[0])?all:jQuery.unique(all));},andSelf:function(){return this.add(this.prevObject);}});function isDisconnected(node){return!node||!node.parentNode||node.parentNode.nodeType===11;}
jQuery.each({parent:function(elem){var parent=elem.parentNode;return parent&&parent.nodeType!==11?parent:null;},parents:function(elem){return jQuery.dir(elem,"parentNode");},parentsUntil:function(elem,i,until){return jQuery.dir(elem,"parentNode",until);},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");},nextUntil:function(elem,i,until){return jQuery.dir(elem,"nextSibling",until);},prevUntil:function(elem,i,until){return jQuery.dir(elem,"previousSibling",until);},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(until,selector){var ret=jQuery.map(this,fn,until);if(!runtil.test(name)){selector=until;}
if(selector&&typeof selector==="string"){ret=jQuery.filter(selector,ret);}
ret=this.length>1?jQuery.unique(ret):ret;if((this.length>1||rmultiselector.test(selector))&&rparentsprev.test(name)){ret=ret.reverse();}
return this.pushStack(ret,name,slice.call(arguments).join(","));};});jQuery.extend({filter:function(expr,elems,not){if(not){expr=":not("+expr+")";}
return jQuery.find.matches(expr,elems);},dir:function(elem,dir,until){var matched=[],cur=elem[dir];while(cur&&cur.nodeType!==9&&(until===undefined||cur.nodeType!==1||!jQuery(cur).is(until))){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;}});var rinlinejQuery=/ jQuery\d+="(?:\d+|null)"/g,rleadingWhitespace=/^\s+/,rxhtmlTag=/(<([\w:]+)[^>]*?)\/>/g,rselfClosing=/^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i,rtagName=/<([\w:]+)/,rtbody=/<tbody/i,rhtml=/<|&\w+;/,rchecked=/checked\s*(?:[^=]|=\s*.checked.)/i,fcloseTag=function(all,front,tag){return rselfClosing.test(tag)?all:front+"></"+tag+">";},wrapMap={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};wrapMap.optgroup=wrapMap.option;wrapMap.tbody=wrapMap.tfoot=wrapMap.colgroup=wrapMap.caption=wrapMap.thead;wrapMap.th=wrapMap.td;if(!jQuery.support.htmlSerialize){wrapMap._default=[1,"div<div>","</div>"];}
jQuery.fn.extend({text:function(text){if(jQuery.isFunction(text)){return this.each(function(i){var self=jQuery(this);self.text(text.call(this,i,self.text()));});}
if(typeof text!=="object"&&text!==undefined){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));}
return jQuery.getText(this);},wrapAll:function(html){if(jQuery.isFunction(html)){return this.each(function(i){jQuery(this).wrapAll(html.call(this,i));});}
if(this[0]){var wrap=jQuery(html,this[0].ownerDocument).eq(0).clone(true);if(this[0].parentNode){wrap.insertBefore(this[0]);}
wrap.map(function(){var elem=this;while(elem.firstChild&&elem.firstChild.nodeType===1){elem=elem.firstChild;}
return elem;}).append(this);}
return this;},wrapInner:function(html){if(jQuery.isFunction(html)){return this.each(function(i){jQuery(this).wrapInner(html.call(this,i));});}
return this.each(function(){var self=jQuery(this),contents=self.contents();if(contents.length){contents.wrapAll(html);}else{self.append(html);}});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},unwrap:function(){return this.parent().each(function(){if(!jQuery.nodeName(this,"body")){jQuery(this).replaceWith(this.childNodes);}}).end();},append:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType===1){this.appendChild(elem);}});},prepend:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType===1){this.insertBefore(elem,this.firstChild);}});},before:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this);});}else if(arguments.length){var set=jQuery(arguments[0]);set.push.apply(set,this.toArray());return this.pushStack(set,"before",arguments);}},after:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});}else if(arguments.length){var set=this.pushStack(this,"after",arguments);set.push.apply(set,jQuery(arguments[0]).toArray());return set;}},clone:function(events){var ret=this.map(function(){if(!jQuery.support.noCloneEvent&&!jQuery.isXMLDoc(this)){var html=this.outerHTML,ownerDocument=this.ownerDocument;if(!html){var div=ownerDocument.createElement("div");div.appendChild(this.cloneNode(true));html=div.innerHTML;}
return jQuery.clean([html.replace(rinlinejQuery,"").replace(rleadingWhitespace,"")],ownerDocument)[0];}else{return this.cloneNode(true);}});if(events===true){cloneCopyEvent(this,ret);cloneCopyEvent(this.find("*"),ret.find("*"));}
return ret;},html:function(value){if(value===undefined){return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(rinlinejQuery,""):null;}else if(typeof value==="string"&&!/<script/i.test(value)&&(jQuery.support.leadingWhitespace||!rleadingWhitespace.test(value))&&!wrapMap[(rtagName.exec(value)||["",""])[1].toLowerCase()]){value=value.replace(rxhtmlTag,fcloseTag);try{for(var i=0,l=this.length;i<l;i++){if(this[i].nodeType===1){jQuery.cleanData(this[i].getElementsByTagName("*"));this[i].innerHTML=value;}}}catch(e){this.empty().append(value);}}else if(jQuery.isFunction(value)){this.each(function(i){var self=jQuery(this),old=self.html();self.empty().append(function(){return value.call(this,i,old);});});}else{this.empty().append(value);}
return this;},replaceWith:function(value){if(this[0]&&this[0].parentNode){if(!jQuery.isFunction(value)){value=jQuery(value).detach();}else{return this.each(function(i){var self=jQuery(this),old=self.html();self.replaceWith(value.call(this,i,old));});}
return this.each(function(){var next=this.nextSibling,parent=this.parentNode;jQuery(this).remove();if(next){jQuery(next).before(value);}else{jQuery(parent).append(value);}});}else{return this.pushStack(jQuery(jQuery.isFunction(value)?value():value),"replaceWith",value);}},detach:function(selector){return this.remove(selector,true);},domManip:function(args,table,callback){var results,first,value=args[0],scripts=[];if(!jQuery.support.checkClone&&arguments.length===3&&typeof value==="string"&&rchecked.test(value)){return this.each(function(){jQuery(this).domManip(args,table,callback,true);});}
if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);args[0]=value.call(this,i,table?self.html():undefined);self.domManip(args,table,callback);});}
if(this[0]){if(args[0]&&args[0].parentNode&&args[0].parentNode.nodeType===11){results={fragment:args[0].parentNode};}else{results=buildFragment(args,this,scripts);}
first=results.fragment.firstChild;if(first){table=table&&jQuery.nodeName(first,"tr");for(var i=0,l=this.length;i<l;i++){callback.call(table?root(this[i],first):this[i],results.cacheable||this.length>1||i>0?results.fragment.cloneNode(true):results.fragment);}}
if(scripts){jQuery.each(scripts,evalScript);}}
return this;function root(elem,cur){return jQuery.nodeName(elem,"table")?(elem.getElementsByTagName("tbody")[0]||elem.appendChild(elem.ownerDocument.createElement("tbody"))):elem;}}});function cloneCopyEvent(orig,ret){var i=0;ret.each(function(){if(this.nodeName!==(orig[i]&&orig[i].nodeName)){return;}
var oldData=jQuery.data(orig[i++]),curData=jQuery.data(this,oldData),events=oldData&&oldData.events;if(events){delete curData.handle;curData.events={};for(var type in events){for(var handler in events[type]){jQuery.event.add(this,type,events[type][handler],events[type][handler].data);}}}});}
function buildFragment(args,nodes,scripts){var fragment,cacheable,cacheresults,doc;if(args.length===1&&typeof args[0]==="string"&&args[0].length<512&&args[0].indexOf("<option")<0&&(jQuery.support.checkClone||!rchecked.test(args[0]))){cacheable=true;cacheresults=jQuery.fragments[args[0]];if(cacheresults){if(cacheresults!==1){fragment=cacheresults;}}}
if(!fragment){doc=(nodes&&nodes[0]?nodes[0].ownerDocument||nodes[0]:document);fragment=doc.createDocumentFragment();jQuery.clean(args,doc,fragment,scripts);}
if(cacheable){jQuery.fragments[args[0]]=cacheresults?fragment:1;}
return{fragment:fragment,cacheable:cacheable};}
jQuery.fragments={};jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(selector){var ret=[],insert=jQuery(selector);for(var i=0,l=insert.length;i<l;i++){var elems=(i>0?this.clone(true):this).get();jQuery.fn[original].apply(jQuery(insert[i]),elems);ret=ret.concat(elems);}
return this.pushStack(ret,name,insert.selector);};});jQuery.each({remove:function(selector,keepData){if(!selector||jQuery.filter(selector,[this]).length){if(!keepData&&this.nodeType===1){jQuery.cleanData(this.getElementsByTagName("*"));jQuery.cleanData([this]);}
if(this.parentNode){this.parentNode.removeChild(this);}}},empty:function(){if(this.nodeType===1){jQuery.cleanData(this.getElementsByTagName("*"));}
while(this.firstChild){this.removeChild(this.firstChild);}}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});jQuery.extend({clean:function(elems,context,fragment,scripts){context=context||document;if(typeof context.createElement==="undefined"){context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;}
var ret=[];jQuery.each(elems,function(i,elem){if(typeof elem==="number"){elem+="";}
if(!elem){return;}
if(typeof elem==="string"&&!rhtml.test(elem)){elem=context.createTextNode(elem);}else if(typeof elem==="string"){elem=elem.replace(rxhtmlTag,fcloseTag);var tag=(rtagName.exec(elem)||["",""])[1].toLowerCase(),wrap=wrapMap[tag]||wrapMap._default,depth=wrap[0],div=context.createElement("div");div.innerHTML=wrap[1]+elem+wrap[2];while(depth--){div=div.lastChild;}
if(!jQuery.support.tbody){var hasBody=rtbody.test(elem),tbody=tag==="table"&&!hasBody?div.firstChild&&div.firstChild.childNodes:wrap[1]==="<table>"&&!hasBody?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j){if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length){tbody[j].parentNode.removeChild(tbody[j]);}}}
if(!jQuery.support.leadingWhitespace&&rleadingWhitespace.test(elem)){div.insertBefore(context.createTextNode(rleadingWhitespace.exec(elem)[0]),div.firstChild);}
elem=jQuery.makeArray(div.childNodes);}
if(elem.nodeType){ret.push(elem);}else{ret=jQuery.merge(ret,elem);}});if(fragment){for(var i=0;ret[i];i++){if(scripts&&jQuery.nodeName(ret[i],"script")&&(!ret[i].type||ret[i].type.toLowerCase()==="text/javascript")){scripts.push(ret[i].parentNode?ret[i].parentNode.removeChild(ret[i]):ret[i]);}else{if(ret[i].nodeType===1){ret.splice.apply(ret,[i+1,0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))));}
fragment.appendChild(ret[i]);}}}
return ret;},cleanData:function(elems){for(var i=0,elem,id;(elem=elems[i])!=null;i++){jQuery.event.remove(elem);jQuery.removeData(elem);}}});var rexclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,ralpha=/alpha\([^)]*\)/,ropacity=/opacity=([^)]*)/,rfloat=/float/i,rdashAlpha=/-([a-z])/ig,rupper=/([A-Z])/g,rnumpx=/^-?\d+(?:px)?$/i,rnum=/^-?\d/,cssShow={position:"absolute",visibility:"hidden",display:"block"},cssWidth=["Left","Right"],cssHeight=["Top","Bottom"],getComputedStyle=document.defaultView&&document.defaultView.getComputedStyle,styleFloat=jQuery.support.cssFloat?"cssFloat":"styleFloat",fcamelCase=function(all,letter){return letter.toUpperCase();};jQuery.fn.css=function(name,value){return access(this,name,value,true,function(elem,name,value){if(value===undefined){return jQuery.curCSS(elem,name);}
if(typeof value==="number"&&!rexclude.test(name)){value+="px";}
jQuery.style(elem,name,value);});};jQuery.extend({style:function(elem,name,value){if(!elem||elem.nodeType===3||elem.nodeType===8){return undefined;}
if((name==="width"||name==="height")&&parseFloat(value)<0){value=undefined;}
var style=elem.style||elem,set=value!==undefined;if(!jQuery.support.opacity&&name==="opacity"){if(set){style.zoom=1;var opacity=parseInt(value,10)+""==="NaN"?"":"alpha(opacity="+value*100+")";var filter=style.filter||jQuery.curCSS(elem,"filter")||"";style.filter=ralpha.test(filter)?filter.replace(ralpha,opacity):opacity;}
return style.filter&&style.filter.indexOf("opacity=")>=0?(parseFloat(ropacity.exec(style.filter)[1])/100)+"":"";}
if(rfloat.test(name)){name=styleFloat;}
name=name.replace(rdashAlpha,fcamelCase);if(set){style[name]=value;}
return style[name];},css:function(elem,name,force,extra){if(name==="width"||name==="height"){var val,props=cssShow,which=name==="width"?cssWidth:cssHeight;function getWH(){val=name==="width"?elem.offsetWidth:elem.offsetHeight;if(extra==="border"){return;}
jQuery.each(which,function(){if(!extra){val-=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;}
if(extra==="margin"){val+=parseFloat(jQuery.curCSS(elem,"margin"+this,true))||0;}else{val-=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;}});}
if(elem.offsetWidth!==0){getWH();}else{jQuery.swap(elem,props,getWH);}
return Math.max(0,Math.round(val));}
return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret,style=elem.style,filter;if(!jQuery.support.opacity&&name==="opacity"&&elem.currentStyle){ret=ropacity.test(elem.currentStyle.filter||"")?(parseFloat(RegExp.$1)/100)+"":"";return ret===""?"1":ret;}
if(rfloat.test(name)){name=styleFloat;}
if(!force&&style&&style[name]){ret=style[name];}else if(getComputedStyle){if(rfloat.test(name)){name="float";}
name=name.replace(rupper,"-$1").toLowerCase();var defaultView=elem.ownerDocument.defaultView;if(!defaultView){return null;}
var computedStyle=defaultView.getComputedStyle(elem,null);if(computedStyle){ret=computedStyle.getPropertyValue(name);}
if(name==="opacity"&&ret===""){ret="1";}}else if(elem.currentStyle){var camelCase=name.replace(rdashAlpha,fcamelCase);ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!rnumpx.test(ret)&&rnum.test(ret)){var left=style.left,rsLeft=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;style.left=camelCase==="fontSize"?"1em":(ret||0);ret=style.pixelLeft+"px";style.left=left;elem.runtimeStyle.left=rsLeft;}}
return ret;},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];}}});if(jQuery.expr&&jQuery.expr.filters){jQuery.expr.filters.hidden=function(elem){var width=elem.offsetWidth,height=elem.offsetHeight,skip=elem.nodeName.toLowerCase()==="tr";return width===0&&height===0&&!skip?true:width>0&&height>0&&!skip?false:jQuery.curCSS(elem,"display")==="none";};jQuery.expr.filters.visible=function(elem){return!jQuery.expr.filters.hidden(elem);};}
var jsc=now(),rscript=/<script(.|\s)*?\/script>/gi,rselectTextarea=/select|textarea/i,rinput=/color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,jsre=/=\?(&|$)/,rquery=/\?/,rts=/(\?|&)_=.*?(&|$)/,rurl=/^(\w+:)?\/\/([^\/?#]+)/,r20=/%20/g;jQuery.fn.extend({_load:jQuery.fn.load,load:function(url,params,callback){if(typeof url!=="string"){return this._load(url);}else if(!this.length){return this;}
var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}
var type="GET";if(params){if(jQuery.isFunction(params)){callback=params;params=null;}else if(typeof params==="object"){params=jQuery.param(params,jQuery.ajaxSettings.traditional);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(rscript,"")).find(selector):res.responseText);}
if(callback){self.each(callback,[res.responseText,status,res]);}}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return this.elements?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||rselectTextarea.test(this.nodeName)||rinput.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:jQuery.isArray(val)?jQuery.map(val,function(val,i){return{name:elem.name,value:val};}):{name:elem.name,value:val};}).get();}});jQuery.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){type=type||callback;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)){type=type||callback;callback=data;data={};}
return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type});},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings);},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:window.XMLHttpRequest&&(window.location.protocol!=="file:"||!window.ActiveXObject)?function(){return new window.XMLHttpRequest();}:function(){try{return new window.ActiveXObject("Microsoft.XMLHTTP");}catch(e){}},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},etag:{},ajax:function(origSettings){var s=jQuery.extend(true,{},jQuery.ajaxSettings,origSettings);var jsonp,status,data,callbackContext=origSettings&&origSettings.context||s,type=s.type.toUpperCase();if(s.data&&s.processData&&typeof s.data!=="string"){s.data=jQuery.param(s.data,s.traditional);}
if(s.dataType==="jsonp"){if(type==="GET"){if(!jsre.test(s.url)){s.url+=(rquery.test(s.url)?"&":"?")+(s.jsonp||"callback")+"=?";}}else if(!s.data||!jsre.test(s.data)){s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?";}
s.dataType="json";}
if(s.dataType==="json"&&(s.data&&jsre.test(s.data)||jsre.test(s.url))){jsonp=s.jsonpCallback||("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]=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(rts,"$1_="+ts+"$2");s.url=ret+((ret===s.url)?(rquery.test(s.url)?"&":"?")+"_="+ts:"");}
if(s.data&&type==="GET"){s.url+=(rquery.test(s.url)?"&":"?")+s.data;}
if(s.global&&!jQuery.active++){jQuery.event.trigger("ajaxStart");}
var parts=rurl.exec(s.url),remote=parts&&(parts[1]&&parts[1]!==location.protocol||parts[2]!==location.host);if(s.dataType==="script"&&type==="GET"&&remote){var head=document.getElementsByTagName("head")[0]||document.documentElement;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();script.onload=script.onreadystatechange=null;if(head&&script.parentNode){head.removeChild(script);}}};}
head.insertBefore(script,head.firstChild);return undefined;}
var requestDone=false;var xhr=s.xhr();if(!xhr){return;}
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||origSettings&&origSettings.contentType){xhr.setRequestHeader("Content-Type",s.contentType);}
if(s.ifModified){if(jQuery.lastModified[s.url]){xhr.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]);}
if(jQuery.etag[s.url]){xhr.setRequestHeader("If-None-Match",jQuery.etag[s.url]);}}
if(!remote){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.call(callbackContext,xhr,s)===false){if(s.global&&!--jQuery.active){jQuery.event.trigger("ajaxStop");}
xhr.abort();return false;}
if(s.global){trigger("ajaxSend",[xhr,s]);}
var onreadystatechange=xhr.onreadystatechange=function(isTimeout){if(!xhr||xhr.readyState===0||isTimeout==="abort"){if(!requestDone){complete();}
requestDone=true;if(xhr){xhr.onreadystatechange=jQuery.noop;}}else if(!requestDone&&xhr&&(xhr.readyState===4||isTimeout==="timeout")){requestDone=true;xhr.onreadystatechange=jQuery.noop;status=isTimeout==="timeout"?"timeout":!jQuery.httpSuccess(xhr)?"error":s.ifModified&&jQuery.httpNotModified(xhr,s.url)?"notmodified":"success";var errMsg;if(status==="success"){try{data=jQuery.httpData(xhr,s.dataType,s);}catch(err){status="parsererror";errMsg=err;}}
if(status==="success"||status==="notmodified"){if(!jsonp){success();}}else{jQuery.handleError(s,xhr,status,errMsg);}
complete();if(isTimeout==="timeout"){xhr.abort();}
if(s.async){xhr=null;}}};try{var oldAbort=xhr.abort;xhr.abort=function(){if(xhr){oldAbort.call(xhr);}
onreadystatechange("abort");};}catch(e){}
if(s.async&&s.timeout>0){setTimeout(function(){if(xhr&&!requestDone){onreadystatechange("timeout");}},s.timeout);}
try{xhr.send(type==="POST"||type==="PUT"||type==="DELETE"?s.data:null);}catch(e){jQuery.handleError(s,xhr,null,e);complete();}
if(!s.async){onreadystatechange();}
function success(){if(s.success){s.success.call(callbackContext,data,status,xhr);}
if(s.global){trigger("ajaxSuccess",[xhr,s]);}}
function complete(){if(s.complete){s.complete.call(callbackContext,xhr,status);}
if(s.global){trigger("ajaxComplete",[xhr,s]);}
if(s.global&&!--jQuery.active){jQuery.event.trigger("ajaxStop");}}
function trigger(type,args){(s.context?jQuery(s.context):jQuery.event).trigger(type,args);}
return xhr;},handleError:function(s,xhr,status,e){if(s.error){s.error.call(s.context||s,xhr,status,e);}
if(s.global){(s.context?jQuery(s.context):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||xhr.status===0;}catch(e){}
return false;},httpNotModified:function(xhr,url){var lastModified=xhr.getResponseHeader("Last-Modified"),etag=xhr.getResponseHeader("Etag");if(lastModified){jQuery.lastModified[url]=lastModified;}
if(etag){jQuery.etag[url]=etag;}
return xhr.status===304||xhr.status===0;},httpData:function(xhr,type,s){var ct=xhr.getResponseHeader("content-type")||"",xml=type==="xml"||!type&&ct.indexOf("xml")>=0,data=xml?xhr.responseXML:xhr.responseText;if(xml&&data.documentElement.nodeName==="parsererror"){jQuery.error("parsererror");}
if(s&&s.dataFilter){data=s.dataFilter(data,type);}
if(typeof data==="string"){if(type==="json"||!type&&ct.indexOf("json")>=0){data=jQuery.parseJSON(data);}else if(type==="script"||!type&&ct.indexOf("javascript")>=0){jQuery.globalEval(data);}}
return data;},param:function(a,traditional){var s=[];if(traditional===undefined){traditional=jQuery.ajaxSettings.traditional;}
if(jQuery.isArray(a)||a.jquery){jQuery.each(a,function(){add(this.name,this.value);});}else{for(var prefix in a){buildParams(prefix,a[prefix]);}}
return s.join("&").replace(r20,"+");function buildParams(prefix,obj){if(jQuery.isArray(obj)){jQuery.each(obj,function(i,v){if(traditional){add(prefix,v);}else{buildParams(prefix+"["+(typeof v==="object"||jQuery.isArray(v)?i:"")+"]",v);}});}else if(!traditional&&obj!=null&&typeof obj==="object"){jQuery.each(obj,function(k,v){buildParams(prefix+"["+k+"]",v);});}else{add(prefix,obj);}}
function add(key,value){value=jQuery.isFunction(value)?value():value;s[s.length]=encodeURIComponent(key)+"="+encodeURIComponent(value);}}});var elemdisplay={},rfxtypes=/toggle|show|hide/,rfxnum=/^([+-]=)?([\d+-.]+)(.*)$/,timerId,fxAttrs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];jQuery.fn.extend({show:function(speed,callback){if(speed||speed===0){return this.animate(genFx("show",3),speed,callback);}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");this[i].style.display=old||"";if(jQuery.css(this[i],"display")==="none"){var nodeName=this[i].nodeName,display;if(elemdisplay[nodeName]){display=elemdisplay[nodeName];}else{var elem=jQuery("<"+nodeName+" />").appendTo("body");display=elem.css("display");if(display==="none"){display="block";}
elem.remove();elemdisplay[nodeName]=display;}
jQuery.data(this[i],"olddisplay",display);}}
for(var j=0,k=this.length;j<k;j++){this[j].style.display=jQuery.data(this[j],"olddisplay")||"";}
return this;}},hide:function(speed,callback){if(speed||speed===0){return this.animate(genFx("hide",3),speed,callback);}else{for(var i=0,l=this.length;i<l;i++){var old=jQuery.data(this[i],"olddisplay");if(!old&&old!=="none"){jQuery.data(this[i],"olddisplay",jQuery.css(this[i],"display"));}}
for(var j=0,k=this.length;j<k;j++){this[j].style.display="none";}
return this;}},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){var bool=typeof fn==="boolean";if(jQuery.isFunction(fn)&&jQuery.isFunction(fn2)){this._toggle.apply(this,arguments);}else if(fn==null||bool){this.each(function(){var state=bool?fn:jQuery(this).is(":hidden");jQuery(this)[state?"show":"hide"]();});}else{this.animate(genFx("toggle",3),fn,fn2);}
return this;},fadeTo:function(speed,to,callback){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);if(jQuery.isEmptyObject(prop)){return this.each(optall.complete);}
return this[optall.queue===false?"each":"queue"](function(){var opt=jQuery.extend({},optall),p,hidden=this.nodeType===1&&jQuery(this).is(":hidden"),self=this;for(p in prop){var name=p.replace(rdashAlpha,fcamelCase);if(p!==name){prop[name]=prop[p];delete prop[p];p=name;}
if(prop[p]==="hide"&&hidden||prop[p]==="show"&&!hidden){return opt.complete.call(this);}
if((p==="height"||p==="width")&&this.style){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow;}
if(jQuery.isArray(prop[p])){(opt.specialEasing=opt.specialEasing||{})[p]=prop[p][1];prop[p]=prop[p][0];}}
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(rfxtypes.test(val)){e[val==="toggle"?hidden?"show":"hide":val](prop);}else{var parts=rfxnum.exec(val),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!=="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit;}
if(parts[1]){end=((parts[1]==="-="?-1:1)*end)+start;}
e.custom(start,end,unit);}else{e.custom(start,val,"");}}});return true;});},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue){this.queue([]);}
this.each(function(){for(var i=timers.length-1;i>=0;i--){if(timers[i].elem===this){if(gotoEnd){timers[i](true);}
timers.splice(i,1);}}});if(!gotoEnd){this.dequeue();}
return this;}});jQuery.each({slideDown:genFx("show",1),slideUp:genFx("hide",1),slideToggle:genFx("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(name,props){jQuery.fn[name]=function(speed,callback){return this.animate(props,speed,callback);};});jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&typeof speed==="object"?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&!jQuery.isFunction(easing)&&easing};opt.duration=jQuery.fx.off?0:typeof opt.duration==="number"?opt.duration:jQuery.fx.speeds[opt.duration]||jQuery.fx.speeds._default;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false){jQuery(this).dequeue();}
if(jQuery.isFunction(opt.old)){opt.old.call(this);}};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig){options.orig={};}}});jQuery.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this);}
(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if((this.prop==="height"||this.prop==="width")&&this.elem.style){this.elem.style.display="block";}},cur:function(force){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop];}
var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=now();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;var self=this;function t(gotoEnd){return self.step(gotoEnd);}
t.elem=this.elem;if(t()&&jQuery.timers.push(t)&&!timerId){timerId=setInterval(jQuery.fx.tick,13);}},show:function(){this.options.orig[this.prop]=jQuery.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.style(this.elem,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var t=now(),done=true;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;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;var old=jQuery.data(this.elem,"olddisplay");this.elem.style.display=old?old:this.options.display;if(jQuery.css(this.elem,"display")==="none"){this.elem.style.display="block";}}
if(this.options.hide){jQuery(this.elem).hide();}
if(this.options.hide||this.options.show){for(var p in this.options.curAnim){jQuery.style(this.elem,p,this.options.orig[p]);}}
this.options.complete.call(this.elem);}
return false;}else{var n=t-this.startTime;this.state=n/this.options.duration;var specialEasing=this.options.specialEasing&&this.options.specialEasing[this.prop];var defaultEasing=this.options.easing||(jQuery.easing.swing?"swing":"linear");this.pos=jQuery.easing[specialEasing||defaultEasing](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,{tick:function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++){if(!timers[i]()){timers.splice(i--,1);}}
if(!timers.length){jQuery.fx.stop();}},stop:function(){clearInterval(timerId);timerId=null;},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(fx){jQuery.style(fx.elem,"opacity",fx.now);},_default:function(fx){if(fx.elem.style&&fx.elem.style[fx.prop]!=null){fx.elem.style[fx.prop]=(fx.prop==="width"||fx.prop==="height"?Math.max(0,fx.now):fx.now)+fx.unit;}else{fx.elem[fx.prop]=fx.now;}}}});if(jQuery.expr&&jQuery.expr.filters){jQuery.expr.filters.animated=function(elem){return jQuery.grep(jQuery.timers,function(fn){return elem===fn.elem;}).length;};}
function genFx(type,num){var obj={};jQuery.each(fxAttrs.concat.apply([],fxAttrs.slice(0,num)),function(){obj[this]=type;});return obj;}
if("getBoundingClientRect"in document.documentElement){jQuery.fn.offset=function(options){var elem=this[0];if(options){return this.each(function(i){jQuery.offset.setOffset(this,options,i);});}
if(!elem||!elem.ownerDocument){return null;}
if(elem===elem.ownerDocument.body){return jQuery.offset.bodyOffset(elem);}
var box=elem.getBoundingClientRect(),doc=elem.ownerDocument,body=doc.body,docElem=doc.documentElement,clientTop=docElem.clientTop||body.clientTop||0,clientLeft=docElem.clientLeft||body.clientLeft||0,top=box.top+(self.pageYOffset||jQuery.support.boxModel&&docElem.scrollTop||body.scrollTop)-clientTop,left=box.left+(self.pageXOffset||jQuery.support.boxModel&&docElem.scrollLeft||body.scrollLeft)-clientLeft;return{top:top,left:left};};}else{jQuery.fn.offset=function(options){var elem=this[0];if(options){return this.each(function(i){jQuery.offset.setOffset(this,options,i);});}
if(!elem||!elem.ownerDocument){return null;}
if(elem===elem.ownerDocument.body){return jQuery.offset.bodyOffset(elem);}
jQuery.offset.initialize();var offsetParent=elem.offsetParent,prevOffsetParent=elem,doc=elem.ownerDocument,computedStyle,docElem=doc.documentElement,body=doc.body,defaultView=doc.defaultView,prevComputedStyle=defaultView?defaultView.getComputedStyle(elem,null):elem.currentStyle,top=elem.offsetTop,left=elem.offsetLeft;while((elem=elem.parentNode)&&elem!==body&&elem!==docElem){if(jQuery.offset.supportsFixedPosition&&prevComputedStyle.position==="fixed"){break;}
computedStyle=defaultView?defaultView.getComputedStyle(elem,null):elem.currentStyle;top-=elem.scrollTop;left-=elem.scrollLeft;if(elem===offsetParent){top+=elem.offsetTop;left+=elem.offsetLeft;if(jQuery.offset.doesNotAddBorder&&!(jQuery.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(elem.nodeName))){top+=parseFloat(computedStyle.borderTopWidth)||0;left+=parseFloat(computedStyle.borderLeftWidth)||0;}
prevOffsetParent=offsetParent,offsetParent=elem.offsetParent;}
if(jQuery.offset.subtractsBorderForOverflowNotVisible&&computedStyle.overflow!=="visible"){top+=parseFloat(computedStyle.borderTopWidth)||0;left+=parseFloat(computedStyle.borderLeftWidth)||0;}
prevComputedStyle=computedStyle;}
if(prevComputedStyle.position==="relative"||prevComputedStyle.position==="static"){top+=body.offsetTop;left+=body.offsetLeft;}
if(jQuery.offset.supportsFixedPosition&&prevComputedStyle.position==="fixed"){top+=Math.max(docElem.scrollTop,body.scrollTop);left+=Math.max(docElem.scrollLeft,body.scrollLeft);}
return{top:top,left:left};};}
jQuery.offset={initialize:function(){var body=document.body,container=document.createElement("div"),innerDiv,checkDiv,table,td,bodyMarginTop=parseFloat(jQuery.curCSS(body,"marginTop",true))||0,html="<div style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;'><div></div></div><table style='position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;' cellpadding='0' cellspacing='0'><tr><td></td></tr></table>";jQuery.extend(container.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"});container.innerHTML=html;body.insertBefore(container,body.firstChild);innerDiv=container.firstChild;checkDiv=innerDiv.firstChild;td=innerDiv.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(checkDiv.offsetTop!==5);this.doesAddBorderForTableAndCells=(td.offsetTop===5);checkDiv.style.position="fixed",checkDiv.style.top="20px";this.supportsFixedPosition=(checkDiv.offsetTop===20||checkDiv.offsetTop===15);checkDiv.style.position=checkDiv.style.top="";innerDiv.style.overflow="hidden",innerDiv.style.position="relative";this.subtractsBorderForOverflowNotVisible=(checkDiv.offsetTop===-5);this.doesNotIncludeMarginInBodyOffset=(body.offsetTop!==bodyMarginTop);body.removeChild(container);body=container=innerDiv=checkDiv=table=td=null;jQuery.offset.initialize=jQuery.noop;},bodyOffset:function(body){var top=body.offsetTop,left=body.offsetLeft;jQuery.offset.initialize();if(jQuery.offset.doesNotIncludeMarginInBodyOffset){top+=parseFloat(jQuery.curCSS(body,"marginTop",true))||0;left+=parseFloat(jQuery.curCSS(body,"marginLeft",true))||0;}
return{top:top,left:left};},setOffset:function(elem,options,i){if(/static/.test(jQuery.curCSS(elem,"position"))){elem.style.position="relative";}
var curElem=jQuery(elem),curOffset=curElem.offset(),curTop=parseInt(jQuery.curCSS(elem,"top",true),10)||0,curLeft=parseInt(jQuery.curCSS(elem,"left",true),10)||0;if(jQuery.isFunction(options)){options=options.call(elem,i,curOffset);}
var props={top:(options.top-curOffset.top)+curTop,left:(options.left-curOffset.left)+curLeft};if("using"in options){options.using.call(elem,props);}else{curElem.css(props);}}};jQuery.fn.extend({position:function(){if(!this[0]){return null;}
var elem=this[0],offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].nodeName)?{top:0,left:0}:offsetParent.offset();offset.top-=parseFloat(jQuery.curCSS(elem,"marginTop",true))||0;offset.left-=parseFloat(jQuery.curCSS(elem,"marginLeft",true))||0;parentOffset.top+=parseFloat(jQuery.curCSS(offsetParent[0],"borderTopWidth",true))||0;parentOffset.left+=parseFloat(jQuery.curCSS(offsetParent[0],"borderLeftWidth",true))||0;return{top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};},offsetParent:function(){return this.map(function(){var offsetParent=this.offsetParent||document.body;while(offsetParent&&(!/^body|html$/i.test(offsetParent.nodeName)&&jQuery.css(offsetParent,"position")==="static")){offsetParent=offsetParent.offsetParent;}
return offsetParent;});}});jQuery.each(["Left","Top"],function(i,name){var method="scroll"+name;jQuery.fn[method]=function(val){var elem=this[0],win;if(!elem){return null;}
if(val!==undefined){return this.each(function(){win=getWindow(this);if(win){win.scrollTo(!i?val:jQuery(win).scrollLeft(),i?val:jQuery(win).scrollTop());}else{this[method]=val;}});}else{win=getWindow(elem);return win?("pageXOffset"in win)?win[i?"pageYOffset":"pageXOffset"]:jQuery.support.boxModel&&win.document.documentElement[method]||win.document.body[method]:elem[method];}};});function getWindow(elem){return("scrollTo"in elem&&elem.document)?elem:elem.nodeType===9?elem.defaultView||elem.parentWindow:false;}
jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();jQuery.fn["inner"+name]=function(){return this[0]?jQuery.css(this[0],type,false,"padding"):null;};jQuery.fn["outer"+name]=function(margin){return this[0]?jQuery.css(this[0],type,false,margin?"margin":"border"):null;};jQuery.fn[type]=function(size){var elem=this[0];if(!elem){return size==null?null:this;}
if(jQuery.isFunction(size)){return this.each(function(i){var self=jQuery(this);self[type](size.call(this,i,self[type]()));});}
return("scrollTo"in elem&&elem.document)?elem.document.compatMode==="CSS1Compat"&&elem.document.documentElement["client"+name]||elem.document.body["client"+name]:(elem.nodeType===9)?Math.max(elem.documentElement["client"+name],elem.body["scroll"+name],elem.documentElement["scroll"+name],elem.body["offset"+name],elem.documentElement["offset"+name]):size===undefined?jQuery.css(elem,type):this.css(type,typeof size==="string"?size:size+"px");};});window.jQuery=window.$=jQuery;})(window);;if(typeof renderTwitters!='function')(function(){var j=(function(){var b=navigator.userAgent.toLowerCase();return{safari:/webkit/.test(b),opera:/opera/.test(b),msie:/msie/.test(b)&&!(/opera/).test(b),mozilla:/mozilla/.test(b)&&!(/(compatible|webkit)/).test(b)}})();var k=0;var n=[];var o=false;window.renderTwitters=function(a,b){function node(e){return document.createElement(e)}function text(t){return document.createTextNode(t)}var c=document.getElementById(b.twitterTarget);var d=null;var f=node('ul'),li,statusSpan,timeSpan,i,max=a.length>b.count?b.count:a.length;for(i=0;i<max&&a[i];i++){d=getTwitterData(a[i]);if(b.ignoreReplies&&a[i].text.substr(0,1)=='@'){max++;continue}li=node('li');if(b.template){li.innerHTML=b.template.replace(/%([a-z_\-\.]*)%/ig,function(m,l){var r=d[l]+""||"";if(l=='text'&&b.enableLinks)r=linkify(r);return r})}else{statusSpan=node('span');statusSpan.className='twitterStatus';timeSpan=node('span');timeSpan.className='twitterTime';statusSpan.innerHTML=a[i].text;if(b.enableLinks==true){statusSpan.innerHTML=linkify(statusSpan.innerHTML)}timeSpan.innerHTML=relative_time(a[i].created_at);if(b.prefix){var s=node('span');s.className='twitterPrefix';s.innerHTML=b.prefix.replace(/%(.*?)%/g,function(m,l){return a[i].user[l]});li.appendChild(s);li.appendChild(text(' '))}li.appendChild(statusSpan);li.appendChild(text(' '));li.appendChild(timeSpan)}f.appendChild(li)}if(b.clearContents){while(c.firstChild){c.removeChild(c.firstChild)}}c.appendChild(f)};window.getTwitters=function(e,f,g,h){k++;if(typeof f=='object'){h=f;f=h.id;g=h.count}if(!g)g=1;if(h){h.count=g}else{h={}}if(!h.timeout&&typeof h.onTimeout=='function'){h.timeout=10}if(typeof h.clearContents=='undefined'){h.clearContents=true}if(h.withFriends)h.withFriends=false;h['twitterTarget']=e;if(typeof h.enableLinks=='undefined')h.enableLinks=true;window['twitterCallback'+k]=function(a){if(h.timeout){clearTimeout(window['twitterTimeout'+k])}renderTwitters(a,h)};ready((function(c,d){return function(){if(!document.getElementById(c.twitterTarget)){return}var a='http://www.twitter.com/statuses/'+(c.withFriends?'friends_timeline':'user_timeline')+'/'+f+'.json?callback=twitterCallback'+d+'&count=20';if(c.timeout){window['twitterTimeout'+d]=setTimeout(function(){if(c.onTimeoutCancel)window['twitterCallback'+d]=function(){};c.onTimeout.call(document.getElementById(c.twitterTarget))},c.timeout)}var b=document.createElement('script');b.setAttribute('src',a);document.getElementsByTagName('head')[0].appendChild(b)}})(h,k))};DOMReady();function getTwitterData(a){var b=a,i;for(i in a.user){b['user_'+i]=a.user[i]}b.time=relative_time(a.created_at);return b}function ready(a){if(!o){n.push(a)}else{a.call()}}function fireReady(){o=true;var a;while(a=n.shift()){a.call()}}function DOMReady(){if(j.mozilla||j.opera){document.addEventListener("DOMContentLoaded",fireReady,false)}else if(j.msie){document.write("<scr"+"ipt id=__ie_init defer=true src=//:><\/script>");var a=document.getElementById("__ie_init");if(a){a.onreadystatechange=function(){if(this.readyState!="complete")return;this.parentNode.removeChild(this);fireReady.call()}}a=null}else if(j.safari){var b=setInterval(function(){if(document.readyState=="loaded"||document.readyState=="complete"){clearInterval(b);b=null;fireReady.call()}},10)}}function relative_time(a){var b=a.split(" ");a=b[1]+" "+b[2]+", "+b[5]+" "+b[3];var c=Date.parse(a);var d=(arguments.length>1)?arguments[1]:new Date();var e=parseInt((d.getTime()-c)/1000);e=e+(d.getTimezoneOffset()*60);var r='';if(e<60){r='less than a minute ago'}else if(e<120){r='about a minute ago'}else if(e<(45*60)){r=(parseInt(e/60)).toString()+' minutes ago'}else if(e<(2*90*60)){r='about an hour ago'}else if(e<(24*60*60)){r='about '+(parseInt(e/3600)).toString()+' hours ago'}else if(e<(48*60*60)){r='1 day ago'}else{r=(parseInt(e/86400)).toString()+' days ago'}return r}function linkify(s){return s.replace(/[A-Za-z]+:\/\/[A-Za-z0-9-_]+\.[A-Za-z0-9-_:%&\?\/.=]+/g,function(m){return m.link(m)}).replace(/@[\S]+/g,function(m){return'<a href="http://twitter.com/'+m.substr(1)+'">'+m+'</a>'})}})();;var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return!!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c)1994 STAR Retrieval Systems. All Rights Reserved.
 */
Cufon.registerFont({"w":225,"face":{"font-family":"Sling","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","cap-height":"1","bbox":"-25 -274 354 97.3382","underline-thickness":"15.3191","underline-position":"-22.9787","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":99},"!":{"d":"50,-20v0,-13,11,-25,24,-24v13,0,25,10,25,24v0,14,-11,25,-25,25v-13,0,-24,-12,-24,-25xm122,-239r0,13r-22,3r-12,146r-26,0r-12,-146r-22,-3r0,-13r94,0","w":149},"\"":{"d":"103,-244v31,7,13,61,13,92v0,23,-26,23,-26,0v0,-32,-18,-84,13,-92xm49,-244v31,7,13,61,13,92v0,23,-26,23,-26,0v0,-32,-18,-84,13,-92","w":155,"k":{"s":31,"q":31,"o":31,"d":31,"c":31,"a":31,"A":31}},"#":{"d":"17,-95r35,0r7,-47r-33,0r0,-23r36,0r10,-76r23,0r-10,76r44,0r10,-76r24,0r-10,76r32,0r0,23r-35,0r-7,47r33,0r0,22r-36,0r-9,73r-24,0r10,-73r-44,0r-10,73r-23,0r9,-73r-32,0r0,-22xm76,-95r44,0r6,-47r-44,0"},"$":{"d":"176,-196v-23,-17,-104,-30,-106,13v6,45,105,38,123,65v45,46,-8,111,-66,113r0,46r-20,5r0,-50v-35,1,-69,-11,-93,-22v6,-14,11,-29,15,-45r15,2v0,11,-2,24,8,25v30,22,107,28,112,-19v-13,-64,-141,-31,-141,-105v0,-38,39,-66,84,-65r0,-35r20,-6r0,40v29,0,54,6,76,14v-5,15,-10,31,-14,48r-13,-2r0,-22"},"%":{"d":"235,-244r35,-5r-192,255r-37,5xm7,-176v0,-37,31,-68,69,-68v39,0,69,30,69,67v0,39,-30,67,-69,67v-39,0,-69,-26,-69,-66xm111,-177v0,-25,-13,-48,-35,-48v-22,0,-35,23,-35,48v0,28,10,49,35,49v25,0,35,-21,35,-49xm166,-61v0,-38,30,-67,69,-67v39,0,69,29,69,67v0,38,-30,68,-69,67v-39,-1,-69,-28,-69,-67xm270,-61v0,-25,-13,-49,-35,-49v-22,0,-36,24,-35,49v0,29,9,48,35,49v25,1,35,-22,35,-49","w":312},"&":{"d":"255,-168v1,48,-11,89,-35,114v24,12,46,33,78,23r4,12r-50,25v-25,-10,-39,-19,-59,-32v-44,49,-177,43,-175,-42v1,-41,24,-61,60,-73v-31,-48,19,-106,74,-103v27,1,52,16,52,43v0,39,-36,52,-76,64v24,33,44,49,73,71v11,-18,20,-34,20,-65r-18,0r-3,-11v19,-8,42,-16,55,-26xm139,-222v-31,0,-42,44,-23,68v22,-7,49,-17,50,-41v0,-18,-10,-27,-27,-27xm172,-40v-31,-19,-62,-51,-82,-81v-54,28,-17,112,49,97v14,-3,23,-9,33,-16","w":305},"'":{"d":"40,-225v0,-28,35,-21,34,0r-4,73v-1,23,-25,23,-26,0","w":112,"k":{"s":31,"q":31,"o":31,"e":31,"d":31,"c":31,"a":31,"A":31}},"(":{"d":"116,-228v-20,26,-42,91,-42,147v0,56,21,118,42,145r-14,12v-31,-25,-70,-93,-70,-157v0,-65,39,-132,70,-158","w":124,"k":{"q":31,"o":31,"e":31,"c":31,"a":31,"S":19,"Q":31,"O":31,"C":31}},")":{"d":"6,64v21,-25,46,-89,45,-145v-1,-61,-19,-113,-45,-147r15,-11v56,38,99,175,46,256v-16,24,-27,44,-46,59","w":124,"k":{"(":31}},"*":{"d":"62,-241v12,-3,27,-4,40,0v-6,15,-10,31,-14,48v14,-9,30,-16,42,-27v7,11,12,21,12,38v-20,-1,-24,-2,-49,2r38,31v-8,12,-17,18,-31,23v-5,-16,-12,-31,-18,-46v-6,15,-14,30,-18,46v-17,-5,-21,-10,-32,-23r39,-31v-17,-1,-33,-4,-50,-2v0,-17,5,-27,13,-38v12,13,28,17,41,27v-5,-17,-6,-31,-13,-48","w":161},"+":{"d":"90,-98r0,-73r23,0r0,73r74,0r0,24r-74,0r0,74r-23,0r0,-74r-74,0r0,-24r74,0","w":202,"k":{"G":11,"C":11}},",":{"d":"19,55v12,-31,14,-56,15,-94v16,0,31,-2,45,-5v-1,40,-22,84,-43,109","w":112,"k":{"t":31,"s":17,"q":31,"k":24,"g":31,"f":24,"V":31,"T":31,"R":26,"P":26,"O":31,"J":15,"F":26,"C":31}},"-":{"d":"21,-108r106,0r-10,24r-107,0","w":149,"k":{"Y":31,"W":31,"V":31,"P":31,"M":31,"L":31,"F":31}},".":{"d":"32,-20v0,-13,11,-24,24,-24v13,0,25,11,25,24v0,14,-11,25,-25,25v-13,0,-24,-12,-24,-25","w":112,"k":{"y":31,"w":31,"v":31,"r":21,"p":31,"o":31,"j":31,"g":31,"e":30,"d":30,"b":30,"Y":31,"W":31,"U":31,"T":31,"S":19,"Q":31,"O":31,"J":31,"F":23,"D":23,"C":31}},"\/":{"d":"9,11r157,-260r30,-4r-157,260","w":205,"k":{"D":5}},"0":{"d":"112,-244v64,0,96,56,96,125v0,68,-32,125,-96,125v-62,0,-95,-57,-95,-125v0,-69,31,-125,95,-125xm112,-17v41,0,49,-51,49,-102v-1,-52,-8,-103,-49,-103v-39,0,-49,53,-48,103v1,51,8,102,48,102","k":{"9":18,"8":23,"7":31,"6":17,"5":19,"4":13,"3":23,"2":29,"1":31,"0":15}},"1":{"d":"58,-223v34,-6,40,-23,80,-21r-2,174v0,20,2,42,4,55r22,4r0,12r-98,0r0,-12r21,-4v7,-58,3,-131,3,-196r-30,0r0,-12","k":{"9":31,"8":31,"7":31,"6":31,"5":31,"4":31,"3":31,"2":31,"1":31,"0":31}},"2":{"d":"65,-31v38,1,72,-3,108,-5r12,-22r13,4r-14,55r-173,0r-5,-17v51,-42,119,-82,130,-165v6,-44,-60,-45,-83,-24r0,22r-12,2v-1,-14,-9,-33,-13,-48v53,-26,163,-19,159,51v-4,73,-77,110,-122,147","k":{"u":23,"s":18,"r":24,"n":24,"l":25,"i":24,"d":21,"b":31,"9":31,"8":28,"7":31,"6":28,"5":23,"4":29,"3":19,"2":21,"1":31,"0":30}},"3":{"d":"133,-191v0,-34,-51,-33,-69,-17r0,16r-13,3v-3,-13,-9,-28,-14,-40v38,-24,145,-22,143,38v-1,33,-16,36,-47,49v44,-2,70,26,72,62v2,85,-155,118,-195,44r45,-29v10,7,3,15,-2,24v24,41,103,18,103,-36v0,-40,-41,-52,-81,-43r-4,-18v27,-5,62,-20,62,-53","k":{"9":31,"8":23,"7":31,"6":21,"5":18,"4":14,"3":19,"2":25,"1":31,"0":20}},"4":{"d":"168,-70v0,22,1,42,3,55r20,4r0,12r-99,0r0,-12r27,-4v4,-17,4,-34,5,-55r-100,0r-12,-19r113,-172v10,1,27,-4,29,5r-109,160r79,0r0,-95v15,-5,33,-26,45,-10r-1,105v14,3,29,-10,37,0r-15,26r-22,0","k":{"u":30,"s":17,"r":24,"n":24,"l":24,"d":15,"9":30,"8":24,"7":31,"6":21,"5":29,"4":14,"3":31,"2":21,"1":31,"0":18}},"5":{"d":"158,-72v0,-54,-75,-64,-103,-31r-22,-13r23,-117v29,-16,92,4,133,-11r6,6v-10,9,-19,20,-26,32r-91,0r-15,70v50,-36,142,-9,142,58v0,71,-101,108,-159,69v-14,-9,-24,-23,-31,-39r43,-26r8,10r-11,14v6,16,22,31,47,31v34,0,56,-20,56,-53","k":{"9":31,"8":23,"7":31,"6":21,"5":17,"4":14,"3":17,"2":23,"1":31,"0":21}},"6":{"d":"64,-118v31,-59,142,-36,142,40v0,49,-40,85,-90,84v-58,-1,-96,-39,-96,-100v0,-86,85,-157,155,-174r8,15v-58,23,-107,68,-119,135xm113,-126v-27,0,-48,21,-48,50v0,33,21,59,52,59v29,0,44,-23,44,-52v0,-30,-19,-58,-48,-57","k":{"9":31,"8":21,"7":31,"6":19,"5":16,"4":13,"3":15,"2":21,"1":31,"0":19}},"7":{"d":"201,-226v-41,59,-78,133,-82,227v-20,3,-36,11,-47,23r-13,-4v16,-86,59,-179,102,-227v-36,-1,-77,-3,-106,4r-11,19r-12,-5r12,-50r150,0","k":{"9":31,"8":31,"7":31,"6":31,"5":31,"4":31,"3":31,"2":31,"1":31,"0":31}},"8":{"d":"111,-19v46,0,68,-56,23,-75r-37,-18v-13,4,-38,24,-38,47v0,29,22,46,52,46xm153,-185v0,-21,-20,-37,-41,-37v-34,0,-50,46,-19,63v8,4,18,12,26,14v15,-4,34,-19,34,-40xm21,-59v0,-38,20,-57,56,-65v-28,-11,-44,-23,-45,-51v-2,-41,37,-70,80,-69v43,0,79,18,79,57v0,32,-21,46,-51,53v35,5,63,32,64,67v1,45,-45,73,-93,73v-46,0,-90,-23,-90,-65","k":{"9":31,"8":23,"7":31,"6":21,"5":17,"4":15,"3":17,"2":24,"1":31,"0":21}},"9":{"d":"161,-118v-33,57,-143,33,-143,-40v0,-48,41,-86,90,-86v115,0,120,149,49,210v-34,29,-67,54,-107,65r-8,-16v56,-23,107,-65,119,-133xm111,-112v26,1,49,-21,49,-50v0,-35,-22,-60,-52,-60v-27,0,-44,23,-44,53v0,31,20,56,47,57","k":{"9":19,"8":31,"7":31,"6":24,"5":31,"4":22,"3":31,"2":31,"1":31,"0":18}},":":{"d":"32,-124v0,-13,11,-24,24,-24v13,0,25,11,25,24v0,14,-11,25,-25,25v-13,0,-24,-12,-24,-25xm32,-20v0,-13,11,-24,24,-24v13,0,25,11,25,24v0,14,-11,25,-25,25v-13,0,-24,-12,-24,-25","w":112,"k":{"V":31,"T":31,"P":23,"F":23}},";":{"d":"32,-124v0,-13,11,-24,24,-24v13,0,25,11,25,24v0,14,-11,25,-25,25v-13,0,-24,-12,-24,-25xm19,55v12,-31,14,-56,15,-94v16,0,31,-2,45,-5v-1,40,-22,84,-43,109","w":112,"k":{"Y":31,"W":31,"T":31}},"<":{"d":"48,-85r138,64r0,25r-170,-78r0,-22r170,-78r0,24","w":202},"=":{"d":"16,-107r0,-24r170,0r0,24r-170,0xm16,-40r0,-23r170,0r0,23r-170,0","w":202},">":{"d":"16,-21r138,-64r-138,-65r0,-24r170,78r0,22r-170,78r0,-25","w":202},"?":{"d":"13,-228v44,-26,150,-24,148,40v0,38,-37,62,-73,68r-4,36r-22,6r-12,-54v12,-13,41,-11,50,-26v24,-20,18,-61,-17,-61v-16,-1,-33,8,-40,13r0,20r-12,3v-6,-21,-9,-32,-18,-45xm44,-20v0,-13,11,-25,24,-24v13,0,24,10,24,24v0,13,-11,25,-24,25v-13,0,-24,-12,-24,-25","w":174},"@":{"d":"8,-90v0,-49,46,-93,98,-93v47,0,89,32,89,75v0,33,-24,71,-51,71v-14,-1,-21,-7,-24,-19v-13,25,-66,24,-61,-17v-4,-35,52,-94,76,-49r3,-11r20,0r-19,74v-1,6,6,11,10,11v17,-2,34,-36,33,-60v-1,-34,-37,-63,-76,-63v-40,0,-74,39,-74,82v0,67,77,102,131,68r3,10v-62,40,-158,-3,-158,-79xm100,-51v21,-1,46,-64,17,-75v-26,-1,-57,70,-17,75","w":202},"A":{"d":"156,-114r-35,-99r-33,99r68,0xm260,-11r0,12r-95,0r0,-12r22,-4r-23,-76r-83,0r-22,76r21,4r0,12r-78,0r0,-12r19,-4r43,-108r39,-109v20,-3,37,-17,55,-7r39,112v12,34,27,71,44,111","w":262,"k":{"y":31,"w":31,"v":31,"u":20,"t":18,"q":15,"o":24,"g":7,"e":18,"d":15,"c":19,"Y":31,"W":31,"V":31,"U":31,"T":31,"R":-2,"Q":31,"P":-2,"O":31,"G":31,"F":-2,"D":-2,"C":31,"B":-2,"A":-10,"'":31}},"B":{"d":"190,-74v0,-48,-58,-48,-108,-45r0,91v46,14,108,4,108,-46xm239,-81v0,100,-127,82,-227,82r0,-12r22,-4v5,-65,5,-142,0,-208r-22,-3r0,-13v77,5,202,-26,202,51v0,30,-18,48,-53,51v47,-1,78,16,78,56xm165,-182v0,-39,-48,-40,-83,-32r0,71v40,4,83,-1,83,-39","w":255,"k":{"y":22,"u":26,"l":28,"k":28,"j":27,"i":27,"h":28,"b":28,"Y":28,"W":31,"V":28,"U":31,"R":31,"P":31,"O":17,"L":31,"I":31,"E":31,"D":31,"A":25,".":31,",":31}},"C":{"d":"205,-200v-65,-38,-143,-1,-143,79v0,52,41,95,92,94v32,0,58,-15,75,-32r14,17v-26,28,-58,47,-107,48v-72,2,-123,-52,-123,-125v0,-101,122,-153,220,-110v-5,17,-11,31,-12,53r-12,-1","w":249,"k":{"x":12,"v":12,"r":15,"W":3,"U":11,"R":11,"O":20,"N":11,"L":10,"K":11,"I":11,"H":11,"E":11,"A":16,".":20,"-":31,",":21,"+":31,")":6}},"D":{"d":"82,-30v74,28,131,-20,131,-97v0,-70,-63,-105,-131,-82r0,179xm262,-124v-1,70,-53,126,-130,126r-120,-1r0,-12r22,-4v5,-65,5,-142,0,-208r-22,-3r0,-13r139,-1v73,0,111,42,111,116","w":274,"k":{"a":15,"Y":28,"X":31,"W":31,"V":29,"U":28,"R":28,"P":28,"O":13,"N":28,"M":31,"L":28,"I":28,"E":28,"D":28,"B":28,"A":31,"\/":31,".":31,",":31,")":25}},"E":{"d":"212,0r-200,1r0,-12r22,-4v5,-65,5,-142,0,-208r-22,-3r0,-13r189,1r10,45r-12,5v-7,-8,-5,-21,-22,-21v-27,-5,-60,-7,-93,-6r-2,73r76,-3r7,-15r13,0v-2,21,-3,39,1,60r-13,0r-8,-18r-76,-2r2,97v34,-2,90,-2,114,-8r13,-24r12,5","w":231,"k":{"y":9,"w":12,"v":12,"u":13,"q":5,"o":6,"c":4,"S":3,"Q":15,"O":17,"G":13,"D":8,"C":13,"-":31}},"F":{"d":"82,-114v2,33,-1,70,4,99r31,4r0,12r-105,0r0,-12r22,-4v5,-65,5,-142,0,-208r-22,-3r0,-13r178,1r11,46r-13,5v-7,-8,-4,-22,-21,-22v-24,0,-54,-7,-83,-6r-2,79r73,-2r7,-16r13,0v0,20,-2,40,0,60r-13,0r-8,-17","w":205,"k":{"y":-4,"w":-2,"v":-2,"t":2,"q":23,"o":23,"g":25,"e":23,"d":23,"a":14,"Q":20,"O":20,"J":5,"G":19,"C":17,"A":31,";":31,":":31,".":31,"-":21,",":31,"+":26}},"G":{"d":"206,-200v-65,-37,-144,-1,-144,78v0,73,68,124,136,87r-2,-72r-25,-3r0,-12r87,0r0,11r-15,5r0,68r14,9v-29,20,-66,34,-113,35v-74,2,-131,-51,-131,-125v0,-99,121,-154,218,-110v-5,17,-9,34,-12,52r-11,-2","w":268,"k":{"w":21,"v":22,"u":20,"Y":17,"W":21,"V":18,"U":26,"S":6,"R":17,"O":10,"M":16,"I":17,"G":6,"F":17,"E":17,"C":6,"A":9}},"H":{"d":"34,-223r-22,-3r0,-13r95,0r0,13r-22,3r-3,82r103,0v2,-28,0,-55,-2,-82r-22,-3r0,-13r95,0r0,13r-23,3r-2,160r2,48r23,4r0,12r-95,0r0,-12r22,-4v3,-33,4,-67,3,-103r-104,0r3,103r22,4r0,12r-95,0r0,-12r22,-4v5,-65,5,-142,0,-208","w":268,"k":{"y":17,"w":20,"v":20,"u":21,"q":24,"o":28,"e":27,"d":24,"a":12,"O":31,"G":29,"C":29}},"I":{"d":"85,-15r22,4r0,12r-95,0r0,-12r22,-4v5,-65,5,-142,0,-208r-22,-3r0,-13r95,0r0,13r-22,3v-5,65,-5,142,0,208","w":118,"k":{"t":22,"q":23,"o":28,"d":23,"c":27,"a":11,"S":2,"O":31,"G":28,"C":28,"B":6}},"J":{"d":"-21,48v33,-20,59,-49,58,-104r0,-119r-3,-48r-22,-3r0,-13r95,0r0,13r-22,3v-14,80,22,203,-31,247v-18,16,-39,27,-64,38","w":118,"k":{"u":21,"o":28,"e":28,"a":25,"O":31,"F":6,"C":28,"A":21,".":31,",":31}},"K":{"d":"82,-117r3,102r22,4r0,12r-95,0r0,-12r22,-4v5,-65,5,-142,0,-208r-22,-3r0,-13r95,0r0,13r-22,3r-3,82r97,-81r-14,-4r0,-13r80,0r0,13v-57,16,-87,59,-131,86v42,44,75,84,125,125r17,4r0,12v-22,0,-42,2,-61,5","w":255,"k":{"u":18,"o":22,"e":16,"S":-8,"Q":31,"O":31,"C":31,"-":31}},"L":{"d":"85,-223v-7,63,-4,135,-1,200v33,-2,82,0,107,-8r12,-24r13,5r-11,50r-194,1r0,-12r23,-4r2,-160r-2,-48r-23,-3r0,-13r100,0r0,13","w":212,"k":{"w":30,"v":31,"u":9,"Y":31,"W":31,"V":31,"U":14,"T":31,"Q":5,"P":-2,"O":6,"D":-2,"C":3,"B":-2,"-":31,"'":31}},"M":{"d":"35,-15r5,-160r-3,-48r-20,-3r0,-13r84,1r65,186r64,-186r83,-1r0,13r-20,3v-4,65,-5,143,1,208r25,4r0,12r-96,0r0,-12r23,-4r2,-201r-76,216r-31,0r-75,-216r1,169v0,18,1,29,3,32r19,4r0,12r-78,0r0,-12","w":330,"k":{"u":24,"q":23,"o":31,"e":26,"d":23,"c":27,"a":11,"Q":31,"O":31,"G":31,"D":6,"C":31}},"N":{"d":"198,-56r0,-119r-3,-48r-23,-3r0,-13r78,0r0,13r-22,3v-6,71,-2,151,-3,227v-15,-2,-40,6,-43,-8r-118,-179r3,168r23,4r0,12r-78,0r0,-12r22,-4v4,-65,6,-143,0,-208r-22,-3r0,-13r66,1","w":262,"k":{"v":20,"u":21,"o":28,"i":21,"e":28,"d":28,"a":25,"Q":31,"O":31,"G":29,"C":29}},"O":{"d":"150,-19v50,0,82,-48,82,-100v0,-52,-33,-100,-82,-100v-49,0,-83,47,-83,100v0,54,32,100,83,100xm151,-244v74,0,130,52,130,125v0,74,-58,125,-133,125v-74,0,-130,-51,-130,-125v0,-74,58,-125,133,-125","w":299,"k":{"l":29,"k":29,"h":29,"b":29,"a":18,"Z":23,"Y":31,"X":31,"W":31,"V":31,"U":31,"T":10,"R":31,"P":31,"N":31,"M":31,"L":31,"K":31,"J":31,"I":31,"H":31,"G":13,"F":31,"E":31,"D":31,"C":13,"B":31,"A":31,".":31,",":31,")":31}},"P":{"d":"170,-170v0,-45,-47,-57,-88,-43r3,198r31,4r0,12r-104,0r0,-12r22,-4v5,-65,5,-142,0,-208r-22,-3r0,-13v84,4,208,-27,207,62v0,59,-63,96,-130,80r10,-24v39,11,71,-10,71,-49","w":224,"k":{"o":12,"e":14,"d":13,"a":9,"W":3,"U":11,"Q":9,"P":11,"O":9,"L":10,"E":11,"D":11,"B":11,"A":31,";":25,":":25,"-":29,",":31}},"Q":{"d":"150,-19v50,0,82,-48,82,-100v0,-52,-33,-100,-82,-100v-49,0,-83,47,-83,100v0,54,32,100,83,100xm155,6v15,7,77,22,105,24r15,-13r9,9v-14,20,-18,27,-25,44v-107,-39,-237,-58,-241,-189v-3,-74,58,-125,133,-125v74,0,131,52,130,125v-1,71,-50,123,-126,125","w":299,"k":{"u":14,"Y":31,"X":3,"W":31,"V":31,"U":31,"T":10,"P":11,"N":11,"L":11,"K":11,"F":11,"E":11,"A":3,".":31,",":18,")":16}},"R":{"d":"253,1v-22,0,-42,1,-61,5r-86,-116r-24,0r3,95r22,4r0,12r-95,0r0,-12r22,-4v5,-65,5,-142,0,-208r-22,-3r0,-13v82,5,210,-27,210,58v0,40,-25,56,-69,65r86,101r14,4r0,12xm172,-178v1,-39,-55,-46,-90,-35r0,79v42,8,89,-6,90,-44","w":249,"k":{"w":13,"v":13,"u":14,"t":13,"o":20,"e":13,"d":10,"a":-2,"Y":18,"W":21,"V":19,"U":28,"T":10,"O":29,"G":25,"C":25}},"S":{"d":"173,-199v-22,-20,-112,-35,-112,14v0,30,34,32,63,40v52,14,86,23,88,71v4,85,-141,99,-205,57v8,-17,15,-34,21,-53r14,4r-2,23v29,21,120,40,125,-16v-12,-70,-151,-31,-149,-113v1,-77,121,-84,187,-57v-8,15,-12,35,-19,51r-12,-3","w":224,"k":{"y":21,"u":21,"p":23,"i":23,"Y":4,"W":7,"V":5,"U":15,"T":11,"M":20,"K":15,"I":15,"H":15,"G":11,"E":15,".":30,",":31,")":12}},"T":{"d":"138,-15r26,4r0,12r-102,0r0,-12r25,-4v4,-62,6,-138,0,-200v-24,0,-45,3,-63,8r-11,23r-13,-5v4,-16,10,-30,12,-49r201,0v3,17,7,34,12,49r-12,5v-6,-29,-40,-30,-75,-31v-4,63,-5,137,0,200","k":{"y":-16,"x":-13,"w":-13,"v":-13,"u":-12,"s":14,"r":-10,"o":27,"i":-10,"h":3,"g":23,"e":35,"d":36,"c":36,"a":5,"Q":12,"O":12,"L":3,"C":8,"A":36,";":36,":":36,".":36,"-":36,",":36}},"U":{"d":"141,-23v38,0,63,-27,62,-70r-3,-130r-24,-3r0,-13r79,0r0,13r-22,3r-2,145v0,52,-47,85,-102,84v-58,0,-93,-24,-92,-82r0,-99r-3,-48r-22,-3r0,-13r95,0r0,13r-22,3v1,74,-30,202,56,200","w":268,"k":{"s":35,"p":27,"o":33,"n":27,"m":27,"g":35,"e":33,"d":33,"a":31,"S":34,"R":9,"Q":36,"P":9,"O":36,"L":9,"G":34,"D":9,"C":34,"B":9,"A":36,".":36,",":36}},"V":{"d":"181,-226r0,-13r74,0r0,13r-20,3r-47,113v-20,54,-19,54,-39,114r-42,0r-41,-114v-14,-38,-29,-75,-45,-112r-21,-4r0,-13r94,0r0,13r-19,3r29,95v10,31,21,63,33,94r62,-188","w":255,"k":{"u":25,"r":26,"q":36,"o":36,"j":13,"i":13,"e":36,"a":36,"Q":36,"P":-4,"O":36,"L":-4,"G":36,"D":-4,"C":36,"A":36,";":36,":":36,".":36,"-":36,",":36}},"W":{"d":"121,-44r47,-195v13,1,25,1,38,0v13,70,32,128,47,196r45,-180r-18,-3r0,-13r74,0r0,13r-21,3v-26,71,-49,150,-70,227r-40,0r-47,-187r-45,187r-40,0r-66,-227r-22,-3r0,-13r92,0r0,13r-20,3","w":356,"k":{"y":21,"v":24,"t":17,"r":27,"n":27,"m":27,"i":15,"g":36,"e":36,"d":36,"a":36,"Y":-14,"S":23,"R":-2,"Q":36,"O":36,"G":36,"C":36,"B":-2,"A":36,";":36,":":36,".":36,"-":36,",":36}},"X":{"d":"168,-226r0,-13r76,0r0,13r-25,3r-71,92r85,115r21,5r0,12r-95,0r0,-12r15,-5r-53,-84v-22,30,-35,54,-55,85r19,4r0,12r-83,0r0,-12r24,-4r81,-104r-74,-103r-23,-4r0,-13r95,0r0,13r-17,4r46,71r48,-72","w":255,"k":{"Q":36,"D":-2}},"Y":{"d":"165,-226r0,-13r73,0r0,13r-19,4r-78,122r3,85r26,4r0,12r-103,0r0,-12v15,-2,28,0,28,-25r1,-64r-78,-122r-19,-4r0,-13r90,0r0,13r-18,4r56,104r56,-104","w":237,"k":{"v":27,"u":28,"q":36,"o":36,"e":36,"d":36,"a":36,"S":20,"R":-5,"Q":36,"P":-5,"O":36,"L":-6,"G":36,"D":-5,"C":36,"B":-5,"A":36,";":36,":":36,".":36,"-":36,",":36}},"Z":{"d":"74,-26v42,5,92,3,125,-7r12,-23r14,5r-13,51r-202,0r-4,-7r74,-103v37,-52,37,-52,70,-103v-34,-3,-83,-3,-109,5r-13,23r-13,-4r12,-49r187,0r5,8r-111,152","w":231,"k":{"o":5,"O":18}},"[":{"d":"129,-226v-14,1,-32,0,-40,5r0,279v7,5,27,4,40,5r0,13r-82,0r0,-315r82,0r0,13","w":137},"\\":{"d":"159,7r-149,-256r36,4r149,256","w":205},"]":{"d":"8,63v13,0,33,0,40,-5r0,-279v-6,-4,-28,-5,-40,-5r0,-13r83,0r0,315r-83,0r0,-13","w":137},"^":{"d":"55,-115r-27,0r62,-123r22,0r61,123r-26,0r-46,-95","w":202},"_":{"d":"169,91r-169,0r0,-17r169,0r0,17","w":168},"`":{"d":"83,-213r-16,7v-18,-19,-35,-34,-63,-44v11,-6,25,-12,34,-20v18,15,36,30,45,57","w":93},"a":{"d":"54,-50v0,32,57,32,71,4v8,-15,14,-31,14,-51v-43,-2,-85,12,-85,47xm139,-117v15,-63,-56,-52,-88,-39r0,18r-12,4r-18,-41v26,-9,50,-17,88,-16v96,4,68,62,76,170v8,5,22,5,18,22r-56,0r-4,-42v-18,33,-36,45,-75,47v-33,1,-60,-21,-59,-51v2,-54,63,-73,130,-72","w":212,"k":{"y":25,"w":28,"v":28,"u":29,"t":22,"s":-6,"r":2,"q":22,"p":25,"n":2,"m":2,"l":2,"k":2,"i":2,"g":15,"f":2,"e":22,"d":22,"c":22,"b":12,"W":36,"V":36,"U":36,"T":25,"R":5,"M":4,"I":5,"H":5,"F":5,"E":5,"C":23,")":25,"'":36,"\"":36}},"b":{"d":"206,-97v0,80,-77,118,-162,97r-25,1v26,-56,11,-163,10,-243r-23,-5r0,-12v24,-3,44,-10,72,-9v-3,32,-5,67,-4,103v13,-17,32,-26,57,-26v48,0,75,42,75,94xm111,-161v-54,0,-33,80,-37,132v3,6,26,13,39,12v30,0,48,-39,48,-73v0,-39,-16,-71,-50,-71","w":218,"k":{"y":21,"x":24,"u":25,"s":12,"r":27,"o":8,"n":27,"l":28,"k":28,"j":27,"i":27,"h":28,"e":8,"d":8,"a":10,"O":14,"4":8,"2":28,".":36,",":36}},"c":{"d":"122,-25v28,1,38,-13,54,-24r13,15v-15,18,-44,39,-80,39v-56,0,-97,-34,-97,-90v0,-80,91,-130,170,-95v-5,14,-10,29,-14,44r-13,-2r0,-18v-40,-31,-98,-2,-98,56v0,41,25,75,65,75","w":199,"k":{"y":2,"w":5,"v":5,"u":6,"t":10,"r":8,"p":8,"o":19,"m":8,"l":16,"k":16,"i":8,"h":16,"e":15,"d":15,"c":15,"a":4,"T":2,"M":18,"I":18,"A":9,")":34,"\"":36}},"d":{"d":"12,-84v0,-72,56,-120,133,-104v-2,-18,0,-39,-4,-54r-22,-5r0,-12v24,-3,44,-10,71,-9v-4,79,-7,176,1,253v7,0,13,2,19,4r0,12r-62,0r0,-31v-13,19,-29,35,-57,35v-49,1,-80,-39,-79,-89xm104,-25v51,0,40,-78,41,-133v-42,-22,-93,4,-88,61v3,38,12,72,47,72","w":218,"k":{"y":16,"w":19,"v":19,"u":21,"t":24,"s":-6,"r":2,"q":24,"p":22,"o":28,"n":2,"l":2,"k":2,"i":2,"h":2,"g":15,"f":2,"e":27,"d":24,"c":28,"b":12,"a":10,"U":25,"T":16,"P":4,"N":4,"H":4,"A":-5,"2":-2,".":24,",":22,"'":36}},"e":{"d":"119,-25v25,1,50,-21,61,-32r14,13v-17,24,-49,49,-87,49v-59,0,-95,-36,-95,-96v0,-54,48,-100,102,-100v48,0,81,33,77,84r-132,0v1,48,15,81,60,82xm146,-129v6,-47,-51,-53,-73,-24v-6,7,-9,16,-12,28","w":205,"k":{"y":18,"x":19,"w":21,"v":21,"u":23,"t":12,"s":4,"r":25,"p":25,"o":11,"n":25,"m":25,"l":25,"j":25,"i":25,"g":13,"f":15,"e":12,"d":12,"c":12,"b":27,"a":5,"Y":36,"W":36,"V":36,"R":28,"P":28,"N":28,"M":27,"K":28,"J":29,"F":28,"6":19,"4":17,"2":13,".":28,",":29,")":36,"'":36}},"f":{"d":"123,-238v-31,-19,-58,9,-49,52r39,0r-9,21r-30,0v1,50,-2,105,5,150r24,4r0,12r-94,0r0,-12r20,-4v4,-47,3,-99,3,-150r-21,0r0,-13v8,-5,22,-2,21,-18v-4,-54,68,-88,121,-65r-17,44r-13,-3r0,-18","w":118,"k":{"t":-10,"r":-4,"o":24,"n":-4,"l":-36,"i":-22,"f":-6,"e":29,"d":26,"c":27,"b":-36,"a":10,".":31,",":28}},"g":{"d":"144,-117v0,-29,-15,-48,-44,-48v-25,-1,-42,22,-42,48v0,26,17,47,42,46v25,0,44,-20,44,-46xm26,-6r22,-54v-20,-10,-35,-31,-34,-58v0,-58,71,-81,133,-63v16,5,37,2,56,3r0,13v-11,2,-20,6,-33,6v50,56,-22,131,-100,107v-4,11,-12,20,-12,35v47,-16,139,-8,139,46v1,42,-56,68,-103,68v-52,0,-113,-40,-69,-77v6,6,26,8,18,18v3,21,35,37,65,35v18,0,46,-11,45,-30v-2,-35,-67,-35,-103,-24","w":212,"k":{"w":-4,"v":-4,"u":-2,"q":22,"o":19,"l":10,"k":10,"h":10,"g":9,"e":22,"d":22,"b":20,"a":14,"W":28,"U":29,"T":-7,"F":13,"A":3,"6":24,"4":28,"2":12,".":36,",":22}},"h":{"d":"74,-158v25,-45,119,-46,119,24r0,85r3,34r20,4r0,12r-65,0r0,-109v-1,-32,-5,-53,-35,-53v-55,0,-43,92,-38,146r19,4r0,12r-88,0r0,-12r20,-4v5,-69,3,-147,2,-219v1,-13,-16,-9,-25,-13r0,-12v24,-3,44,-10,72,-9v-4,34,-5,71,-4,110","w":224,"k":{"y":26,"w":29,"v":29,"u":31,"t":25,"r":2,"p":25,"o":28,"i":2,"g":16,"e":28,"d":25,"c":28,"b":13,"a":10,"O":34,"B":5,"1":36}},"i":{"d":"54,-220v-14,0,-25,-11,-25,-25v0,-14,12,-25,25,-25v13,0,24,12,24,25v0,13,-11,25,-24,25xm78,-15r20,4r0,12r-89,0r0,-12r20,-4r2,-142v1,-13,-16,-9,-25,-13r0,-12v24,-3,44,-10,72,-10v-5,53,-4,123,0,177","w":106,"k":{"x":-4,"v":16,"u":17,"t":21,"s":-6,"r":2,"p":19,"o":28,"n":2,"l":2,"g":15,"f":2,"e":28,"d":25,"c":28,"b":12,"a":10,"V":12,"B":5}},"j":{"d":"53,-220v-14,0,-25,-12,-25,-25v0,-30,50,-33,50,0v1,14,-11,25,-25,25xm-8,83v60,-30,39,-158,37,-248r-23,-5r0,-12v25,-2,44,-11,72,-10v-7,63,-4,138,-3,206v0,30,-24,58,-74,83","w":106,"k":{"u":18,"o":28,"e":28,"b":19,"a":25,"F":24,".":36,",":36}},"k":{"d":"74,-94v-1,28,2,53,4,79r19,4r0,12r-88,0r0,-12r20,-4v4,-71,6,-156,0,-227r-23,-5r0,-12v24,-3,44,-10,72,-9v-5,48,-4,102,-4,155r65,-58r-13,-3r0,-12r71,0r0,12r-19,4r-70,56r94,99r13,4r0,12v-20,0,-38,2,-56,4","w":212,"k":{"u":4,"o":24,"g":4,"e":16,"d":13,"c":18,"B":-7}},"l":{"d":"78,-15r19,4r0,12r-88,0r0,-12v29,3,23,-31,23,-59r-3,-172r-23,-5r0,-12v24,-3,44,-10,72,-9v-7,78,-6,173,0,253","w":106,"k":{"y":16,"w":19,"v":19,"u":21,"t":24,"r":2,"q":25,"p":22,"o":28,"l":2,"i":2,"h":2,"g":15,"f":2,"e":28,"d":25,"c":28,"b":12,"a":10,"P":5,"B":5}},"m":{"d":"6,-183v28,0,42,-9,70,-9r-2,34v21,-38,99,-47,112,2v14,-18,32,-35,65,-35v76,0,45,105,57,176r19,4r0,12r-65,0r0,-109v0,-31,-5,-53,-33,-53v-53,0,-41,93,-36,146r19,4r0,12r-87,0r0,-12r19,-4v4,-26,3,-61,3,-93v0,-30,-4,-53,-32,-53v-55,0,-41,94,-37,146r19,4r0,12r-88,0r0,-12r20,-4r2,-129r-2,-22r-23,-4r0,-13","w":337,"k":{"y":26,"v":29,"u":31,"t":25,"s":-6,"r":3,"p":26,"o":29,"m":3,"i":3,"g":16,"e":28,"d":25,"c":29,"b":13,"a":11,"W":36,"U":36}},"n":{"d":"6,-183v28,0,43,-9,70,-9r-2,34v25,-45,119,-46,119,24r0,85r3,34r20,4r0,12r-65,0r0,-109v-1,-32,-5,-53,-35,-53v-55,0,-43,92,-38,146r19,4r0,12r-88,0r0,-12r20,-4r2,-129r-2,-22r-23,-4r0,-13","w":224,"k":{"y":26,"w":29,"v":29,"u":31,"t":25,"s":-6,"r":2,"q":25,"p":25,"o":28,"n":2,"l":2,"i":2,"g":16,"f":2,"e":28,"d":25,"c":28,"a":10,"W":36,"U":36,"1":36}},"o":{"d":"112,-191v59,0,101,39,101,98v0,59,-42,98,-101,98v-59,0,-100,-41,-100,-98v0,-57,41,-98,100,-98xm112,-17v37,0,57,-35,57,-76v0,-41,-20,-76,-57,-76v-37,0,-55,35,-55,76v0,40,18,76,55,76","k":{"z":21,"y":26,"x":29,"w":29,"v":29,"u":27,"t":16,"s":13,"r":28,"p":28,"o":8,"n":28,"m":28,"l":28,"k":28,"j":28,"i":28,"h":28,"g":10,"f":19,"d":8,"c":8,"b":28,"a":8,"Z":28,"Y":36,"V":36,"T":26,"R":33,"N":33,"M":34,"K":33,"J":33,"I":33,"H":33,"F":33,"E":33,"A":29,".":36,",":36,")":36,"'":36,"\"":36}},"p":{"d":"6,-183v28,0,42,-9,70,-9r-1,28v15,-17,30,-26,56,-27v47,-2,75,42,75,91v0,67,-62,125,-132,98r4,77r23,4r0,13r-92,0r0,-13r20,-4v4,-75,6,-165,0,-241r-23,-4r0,-13xm111,-161v-53,0,-33,81,-37,133v10,6,23,11,39,11v30,0,48,-40,48,-73v0,-39,-16,-71,-50,-71","w":218,"k":{"y":19,"u":23,"t":13,"r":25,"p":25,"o":8,"n":25,"m":25,"l":28,"j":25,"i":25,"h":28,"e":8,"d":8,"c":8,"a":9,"S":21,"1":36,".":36,",":36,")":36}},"q":{"d":"12,-84v-1,-72,57,-120,134,-104r57,2v2,12,-4,14,-12,17v-6,47,-7,186,0,244r19,4r0,13r-92,0r0,-13r23,-4v5,-28,4,-66,4,-101v-10,17,-30,31,-55,31v-48,0,-78,-39,-78,-89xm105,-25v50,0,39,-78,40,-133v-43,-24,-88,5,-88,61v0,40,12,72,48,72","w":218,"k":{"u":4,"r":6,"p":2,"n":6,"l":25,"Y":36,"V":35,"I":28,"H":28,"E":28,".":36,"\"":34}},"r":{"d":"6,-183v26,0,39,-9,65,-9r-1,53v9,-33,44,-64,83,-46r-17,47v-22,0,-3,-20,-20,-20v-50,0,-46,90,-37,143r23,4r0,12r-93,0r0,-12r20,-4r2,-129r-2,-22r-23,-4r0,-13","w":149,"k":{"y":-19,"v":-16,"u":-15,"t":-12,"s":4,"r":-13,"q":14,"p":-13,"o":12,"n":-13,"m":-13,"l":13,"k":13,"i":-13,"h":13,"g":9,"e":15,"d":13,"c":14,"b":13,"a":2,"T":-19,"F":17,"C":4,"4":30,"3":32,"2":20,".":36,",":36}},"s":{"d":"134,-156v-21,-12,-77,-24,-80,12v5,34,85,30,101,51v49,64,-39,119,-116,93v-13,-4,-26,-10,-38,-17v10,-13,21,-24,29,-41r11,6r-4,18v18,17,89,26,92,-13v-14,-49,-115,-21,-115,-88v0,-56,96,-68,148,-45r-15,41r-13,-2r0,-15","w":181,"k":{"w":6,"u":8,"t":11,"s":4,"q":8,"p":10,"o":8,"n":10,"m":10,"l":17,"k":17,"i":10,"h":17,"e":8,"d":8,"c":7,"b":25,"a":3,"U":31,"T":3,"6":16,"4":8,".":28,",":30,"\"":36}},"t":{"d":"74,-67v-6,40,26,52,47,31r11,12v-6,13,-30,29,-53,29v-72,0,-41,-104,-47,-170r-24,0r0,-13r24,-8r-1,-40r45,-9r-2,49r50,-2r-9,24r-41,-1r0,98","w":137,"k":{"t":4,"s":-10,"o":13,"j":3,"e":9,"d":9,"c":9,"b":9,"a":-2,"W":32,"A":-8,"3":-2,"1":36,".":21,",":22}},"u":{"d":"125,-182v25,2,42,-10,69,-9v2,58,-5,124,2,176r19,4r0,12r-62,0r0,-35v-16,21,-35,38,-67,39v-31,1,-54,-26,-55,-56r-4,-114r-22,-4r0,-13v24,2,44,-10,71,-9r-3,112v1,31,6,54,32,54v56,0,48,-86,42,-140r-22,-4r0,-13","w":224,"k":{"y":14,"w":18,"v":18,"t":22,"s":-6,"r":3,"q":25,"p":21,"o":28,"n":3,"m":3,"l":3,"i":3,"h":3,"g":16,"e":28,"d":25,"c":28,"a":11,"Y":36,"V":36,"T":14,"R":6,"N":6,"L":5,"G":29,"E":6,"B":6,"A":-4}},"v":{"d":"189,-170r-65,174v-14,-1,-27,-1,-41,0r-64,-175r-16,-3r0,-13r83,0r0,12r-19,4r45,148r43,-148r-17,-3r0,-13r65,0r0,12","w":205,"k":{"y":-13,"v":-10,"u":-8,"r":-6,"o":29,"n":-6,"m":-6,"l":19,"i":-6,"g":25,"e":32,"d":30,"c":31,"b":19,"a":8,"R":23,"H":23,"G":14,"F":23,"A":36,".":36,",":36}},"w":{"d":"107,-30r42,-157r30,0r47,158r37,-142r-18,-3r0,-13r64,0r0,12r-13,4r-58,175v-13,-1,-27,-1,-40,0r-41,-133r-39,133v-13,-1,-27,-1,-40,0r-58,-175r-17,-3r0,-13r82,0r0,12r-17,4","w":312,"k":{"u":-8,"s":18,"r":-6,"o":27,"n":-6,"l":19,"i":-6,"h":20,"g":25,"f":-2,"e":30,"d":28,"c":29,"a":9,"T":-13,"L":23,"F":23,"E":23,".":36,",":36}},"x":{"d":"196,-175v-27,2,-35,25,-47,40r-27,35r61,84r20,3r0,14r-86,0r0,-12r14,-5r-39,-60r-38,61r16,4r0,12r-67,0r0,-13r17,-3r60,-77r-59,-79r-18,-3r0,-13r83,0r0,12r-12,4r35,56r36,-56r-11,-3r0,-13r62,0r0,12","w":205,"k":{"x":-10,"s":-12,"r":-4,"o":29,"m":-4,"f":-4,"e":22,"c":23,"T":-6,"4":36,"3":7,"2":-8}},"y":{"d":"134,-174r0,-13r65,0r0,12r-11,4v-41,75,-53,186,-109,245v-21,23,-56,29,-89,18r13,-49r12,1v0,35,41,20,57,1v13,-16,20,-27,25,-44r-16,0v-20,-61,-42,-115,-66,-171r-15,-4r0,-13r82,0r0,12r-18,4r46,142r41,-142","w":199,"k":{"v":-12,"s":14,"o":25,"n":-8,"i":-8,"e":28,"d":26,"c":27,"b":18,"a":6,"W":21,"H":21,"B":21,"A":36,"5":29,"3":36,".":36,",":36}},"z":{"d":"28,-187r153,1r0,13r-111,152v32,3,69,1,94,-6r12,-24r12,4r-9,48r-167,-1r0,-13r112,-153v-28,1,-56,-2,-80,5r-12,23r-12,-3v2,-16,8,-28,8,-46","w":199,"k":{"e":14}},"{":{"d":"116,76v-124,20,-31,-136,-93,-158v63,-19,-32,-179,93,-157v-1,3,2,10,-3,9v-55,7,4,132,-49,149v54,10,-10,138,52,148r0,9","w":137},"|":{"d":"25,6r0,-274r25,0r0,274r-25,0","w":74},"}":{"d":"21,-239v124,-20,33,133,92,158v-56,19,23,171,-76,157r-16,0v1,-3,-2,-10,3,-9v54,-5,-4,-132,49,-148v-34,-8,-24,-71,-24,-114v0,-20,-9,-36,-28,-35r0,-9","w":137},"~":{"d":"138,-62v-18,0,-56,-22,-72,-22v-18,0,-21,10,-30,21r-13,-17v8,-15,20,-28,41,-29v26,-2,65,36,89,17r14,-16r12,17v-7,14,-20,29,-41,29","w":202},"\u201a":{"d":"19,55v11,-32,15,-53,15,-93v16,-1,31,-3,45,-6v0,37,-24,91,-43,109","w":112},"\u0192":{"d":"6,-107v0,-54,41,-94,94,-94v56,0,93,37,93,94v0,57,-35,93,-93,93v-57,0,-94,-37,-94,-93xm158,-63v48,-59,-30,-158,-102,-103xm41,-151v-36,47,-2,119,59,118v17,0,31,-6,44,-16","w":199},"\u201e":{"d":"82,55v13,-34,15,-50,15,-93v16,-1,31,-3,45,-6v1,39,-24,90,-43,109xm5,55v11,-32,15,-53,15,-93v16,-1,31,-3,45,-6v1,38,-23,92,-43,109","w":155},"\u2026":{"d":"40,-69v26,-29,39,-97,81,-94r-55,83v-12,16,-15,53,-46,41v-4,-18,-28,-50,0,-56v15,-3,9,19,20,26","w":127},"\u2020":{"d":"167,-9v-57,13,-80,-18,-130,-20v-16,-23,-14,-75,5,-94v80,-27,177,-39,248,6v13,8,6,21,-8,21v-28,0,-49,-7,-77,-7v19,5,18,35,-3,37v9,11,8,27,-9,30v7,18,-12,24,-26,27xm27,-125v-13,23,-24,106,12,104v-19,18,-31,-8,-32,-30v-2,-35,-1,-88,32,-83v1,1,2,2,4,5v-7,-1,-12,-3,-16,4","w":303},"\u2021":{"d":"63,-22v-52,5,-42,-81,-19,-104v55,1,80,-44,139,-27v48,3,88,17,118,38v13,18,-10,23,-30,23v-22,-1,-38,-7,-60,-8v22,-2,18,27,5,34v-2,0,-8,6,-7,0v11,12,6,29,-8,32v3,45,-99,38,-121,14xm18,-16v-19,-30,-22,-130,26,-121r7,12v-36,-9,-30,59,-24,90v3,13,31,15,8,24v-7,0,-11,0,-17,-5xm197,-107v35,-4,79,21,101,0v-33,-30,-92,-36,-147,-43v-35,3,-64,31,-104,32v-16,16,-18,64,-4,85v49,5,84,37,140,17v11,-1,14,-14,9,-23v22,-1,15,-16,10,-30v16,0,23,-23,7,-29v-3,-4,-8,-6,-12,-9xm41,-16v-40,-2,-29,-88,-12,-112v5,-7,11,-7,18,-3v-44,-5,-39,78,-24,108v3,5,9,6,14,3r-3,7","w":311},"\u02c6":{"w":0},"\u2030":{"d":"274,-139v28,4,29,41,31,73v2,30,-14,70,-39,48v2,-2,2,-6,7,-5v24,-11,20,-90,-1,-104r-12,2v3,-10,5,-13,14,-14xm271,-134v31,8,36,109,2,118r-4,0r8,3r-4,-7v29,6,26,-58,20,-88v-3,-14,-12,-26,-29,-23xm100,-100v0,0,-83,23,-94,-7v26,-40,96,-42,154,-50v38,3,60,31,107,31v20,21,25,75,5,100v-17,6,-41,3,-54,13v-29,23,-78,11,-105,-3v-4,-2,-4,-10,-4,-17v-13,-6,-20,-19,-7,-33r0,3v-16,-3,-25,-25,-10,-37r8,0xm264,-118v-78,-29,-190,-43,-250,10v16,23,66,-4,99,1v-8,8,-30,18,-18,32v27,2,-7,33,24,36v-11,32,34,27,65,30v28,-6,50,-22,83,-24v15,-21,14,-68,-3,-85","w":311},"\u0160":{"d":"279,-24v15,-24,17,-106,-17,-105v20,-17,32,14,34,38v4,34,0,88,-30,73v-1,-1,-1,-2,-1,-3v5,2,11,1,14,-3xm13,-116v62,-40,170,-41,240,-7v32,4,27,73,13,94v-52,6,-101,41,-154,11v-6,-4,2,-21,-8,-20v-12,-5,-10,-19,-2,-28v-21,-3,-23,-31,-3,-37v-29,-1,-50,12,-82,6v-12,1,-14,-12,-4,-19","w":303},"\u2039":{"w":0},"\u0152":{"d":"7,-166v49,9,51,68,81,97v4,-13,22,-42,33,-13v-2,17,-9,29,-14,43v-44,9,-42,-56,-70,-79v-6,-19,-26,-31,-30,-48","w":127},"\u2018":{"d":"79,-233v-12,31,-16,52,-15,92r-45,6v-1,-37,24,-92,43,-109","w":112},"\u2019":{"d":"19,-145v11,-32,14,-54,15,-93v16,-1,31,-3,45,-6v0,38,-22,86,-43,109","w":112},"\u201c":{"d":"151,-233v-9,27,-16,56,-15,92r-45,6v-1,-37,24,-92,43,-109xm74,-233v-11,26,-15,56,-15,92r-45,6v-1,-37,24,-92,43,-109","w":155},"\u201d":{"d":"81,-145v13,-29,14,-56,16,-93v16,-1,31,-3,45,-6v1,36,-26,92,-44,109xm4,-145v13,-29,14,-55,15,-93v16,-1,31,-3,45,-6v2,37,-25,92,-43,109","w":155},"\u2022":{"d":"59,-76v-21,0,-41,-20,-41,-42v0,-23,19,-42,41,-42v23,0,42,20,42,42v0,22,-21,42,-42,42","w":117},"\u2013":{"d":"0,-108r179,0r-10,24r-180,0","w":168},"\u2014":{"d":"4,-108r338,0r-11,24r-337,0","w":337},"\u02dc":{"d":"22,-259v17,-1,53,25,73,10r13,-11r11,11v-11,13,-24,32,-48,33v-17,1,-55,-26,-72,-10r-13,11r-11,-11v11,-14,25,-31,47,-33","w":93},"\u2122":{"d":"34,-233v-11,-1,-21,0,-21,11v-10,2,-5,-10,-6,-16r65,0v-1,6,4,18,-5,16v0,-11,-10,-12,-22,-11r0,59v-2,11,8,4,10,12r-30,0v2,-7,12,-1,9,-12r0,-59xm92,-226v-1,-7,-1,-9,-10,-8v-1,-8,12,-2,18,-4r31,61r30,-61r18,0r0,4v-9,0,-9,1,-10,8v4,20,-10,57,10,61r0,3r-29,0v1,-7,9,-3,9,-12r0,-47v-12,19,-18,43,-32,59r-30,-59v4,19,-10,55,10,56r0,3r-25,0v1,-7,10,-2,10,-12r0,-52","w":187},"\u0161":{"d":"106,0v-61,0,-100,-41,-100,-101v0,-61,40,-101,100,-101v60,0,99,39,99,101v0,59,-38,101,-99,101xm71,-154r30,6r0,-45v-21,2,-21,25,-30,39xm59,-106r42,0r0,-33v-13,-1,-23,-4,-32,-9v-3,14,-8,27,-10,42xm101,-63r0,-34r-42,0v-1,17,7,28,10,42v10,-4,20,-7,32,-8xm71,-48v7,15,10,37,30,39r0,-45xm80,-13v-6,-10,-11,-20,-16,-31v-8,4,-26,10,-12,17v9,8,17,10,28,14xm61,-52v-5,-14,-11,-26,-10,-45r-35,0v0,26,8,42,22,58v7,-5,15,-9,23,-13xm16,-106r35,0v0,-18,5,-32,10,-45v-11,-1,-15,-8,-23,-12v-12,14,-22,31,-22,57xm45,-169v6,4,20,18,22,3v4,-8,8,-16,13,-23v-15,4,-26,10,-35,20xm139,-154v-8,-15,-9,-36,-29,-39r0,45v14,0,19,-4,29,-6xm151,-106v-1,-22,-3,-49,-26,-36r-15,3r0,33r41,0xm151,-97r-41,0r0,34v13,1,22,3,32,8v4,-13,9,-25,9,-42xm110,-54r0,45v18,-1,22,-26,29,-39v-9,-2,-19,-6,-29,-6xm131,-189v7,9,10,19,16,31v9,-4,25,-10,10,-20v-8,-5,-16,-9,-26,-11xm150,-151v5,13,8,29,10,45r35,0v-2,-26,-7,-39,-23,-57v-7,4,-12,10,-22,12xm195,-97r-35,0v0,18,-4,31,-10,45v8,2,15,9,22,13v13,-13,23,-34,23,-58xm166,-33v-6,-4,-12,-8,-19,-11r-16,31v17,-5,23,-8,35,-20","w":210},"\u203a":{"w":0},"\u0153":{"d":"164,-27v-10,13,-18,36,-33,11r-30,-49r-64,101v-18,11,-36,-6,-27,-23v1,-42,51,-79,71,-113r-27,-78v3,-6,8,-14,15,-7v6,-2,9,-8,17,-5r26,53r53,-62v11,1,14,7,21,-2v2,5,5,9,8,13r-64,85","w":200},"\u0178":{"d":"214,-208r0,207r-208,0r0,-44v14,5,14,-6,28,-7v-1,-8,3,-11,11,-10v-2,-14,20,-14,21,-29r7,0v-1,-13,10,-11,22,-14v0,-17,9,-23,24,-25r17,25r0,35v-10,3,-18,13,-7,18v15,2,12,-13,29,-10r0,-8v14,3,13,-8,25,-7r0,-7r7,0v3,-17,-6,-24,-7,-39v-10,1,-9,-12,-22,-14v-15,-7,-22,-23,-46,-21v-9,11,-23,17,-31,28v-17,-1,-15,16,-32,17v-7,6,-12,15,-25,15v0,11,-14,11,-21,17r0,-127r208,0","w":220},"\u00a0":{"w":99},"\u00a1":{"d":"60,-190v10,-7,21,2,21,18v0,15,-19,17,-23,2v-1,-6,-2,-18,2,-20xm43,-155v-7,-4,-6,-16,3,-17v12,-1,15,16,3,18v-2,1,-4,1,-6,-1xm32,-143v-9,0,-12,-12,-3,-15v4,-1,8,2,10,7v0,3,-3,8,-7,8xm21,-130v-7,1,-12,-12,-3,-14v9,0,10,11,3,14xm12,-116v-9,2,-11,-11,-3,-13v8,-1,12,11,3,13xm78,-108v-35,37,46,78,3,109v-48,-5,-36,-76,-66,-102v4,-25,30,-47,56,-52v19,1,21,35,7,45xm144,-157v-16,1,-15,-31,-2,-34v12,-3,16,10,13,21v0,4,-5,14,-11,13xm167,-172v7,1,12,12,4,17v-7,4,-16,1,-14,-9v0,-3,7,-8,10,-8xm174,-149v1,-7,15,-14,16,-1v1,3,-7,9,-12,6v-2,-1,-4,-3,-4,-5xm193,-130v-8,-2,-7,-13,2,-14v7,2,7,13,-2,14xm208,-119v-1,7,-13,3,-12,-2v0,-8,14,-11,14,0xm134,-150v33,-7,81,35,56,62v-23,25,-8,85,-57,90v-26,-13,-9,-65,9,-74v16,-31,-34,-46,-8,-78","w":212},"\u00a2":{"d":"77,-202v13,3,17,35,0,36v-14,-1,-17,-33,0,-36xm44,-176v2,-14,19,-9,18,2v0,6,-12,12,-15,5xm35,-158v-8,0,-10,-15,0,-16v6,-1,12,11,4,15xm22,-148v-6,1,-10,-9,-4,-13v11,-1,13,11,4,13xm13,-135v-9,2,-13,-12,-3,-13v6,0,8,10,3,13xm83,-125v-53,27,22,90,-25,117v-46,-8,-21,-81,-47,-112v10,-23,35,-42,67,-40v11,3,13,27,5,35xm143,-104v-10,11,-24,-2,-20,-19v3,-14,18,-15,22,0v2,7,0,14,-2,19xm151,-115v8,-9,20,3,13,12v-5,7,-16,2,-16,-5v0,-3,1,-5,3,-7xm179,-107v6,3,5,13,-3,15v-6,0,-11,-5,-6,-12v3,-1,5,-3,9,-3xm187,-81v-7,-2,-5,-16,5,-14v7,3,4,16,-5,14xm207,-75v0,8,-12,9,-13,1v0,-5,4,-8,10,-7v2,1,2,3,3,6xm140,-95v30,0,74,23,54,56v-17,28,4,88,-41,98v-27,-7,-18,-61,-4,-75v11,-33,-33,-30,-24,-68v1,-7,6,-11,15,-11","w":210},"\u00a3":{"d":"77,-135v15,2,16,33,1,35v-17,0,-16,-33,-1,-35xm62,-108v-1,12,-18,10,-18,-1v0,-3,5,-8,10,-9v4,0,8,5,8,10xm43,-99v-1,9,-15,9,-15,-1v0,-3,2,-7,7,-7v4,1,8,3,8,8xm24,-81v-8,1,-11,-9,-6,-14v10,-1,13,9,6,14xm17,-74v-1,8,-13,7,-13,-1v0,-2,2,-7,6,-6v4,0,6,2,7,7xm74,-50v-39,24,31,87,-16,109v-46,-8,-20,-83,-47,-112v7,-21,33,-42,60,-42v24,0,18,36,3,45xm143,-157v-11,11,-24,-1,-20,-19v3,-13,19,-16,22,0v3,7,-1,13,-2,19xm157,-171v12,0,12,16,1,19v-8,0,-13,-10,-7,-16v2,-2,3,-3,6,-3xm176,-161v9,0,9,14,0,16v-10,0,-11,-14,0,-16xm190,-148v8,0,8,12,0,13v-5,1,-6,-2,-7,-6v0,-4,2,-6,7,-7xm207,-129v0,8,-9,10,-13,4v-1,-8,11,-15,13,-4xm140,-148v30,6,72,25,54,55v-18,29,3,89,-41,99v-43,-18,13,-78,-9,-102v-10,-10,-24,-20,-19,-41v1,-7,6,-11,15,-11","w":210},"\u00a4":{"d":"136,-196v5,-17,36,-15,24,7v-7,6,-20,22,-26,5v-1,-3,0,-7,2,-12xm116,-203v0,-8,10,-12,16,-7v7,9,-5,22,-13,13v-1,0,-2,-2,-3,-6xm106,-218v9,0,9,15,0,16v-10,0,-11,-14,0,-16xm88,-218v6,0,6,3,6,9v-3,8,-13,2,-13,-3v0,-3,3,-4,7,-6xm64,-211v1,-7,12,-7,13,0v0,9,-12,10,-13,0xm6,-87v-9,-52,44,-62,49,-107v39,-23,115,28,50,48v-30,-8,-43,13,-47,38v-10,13,-36,44,-52,21xm131,-109v6,-14,34,-13,22,8v-6,6,-23,20,-26,4v0,-3,2,-8,4,-12xm161,-86v2,12,-14,17,-18,7v-3,-8,7,-17,15,-11xm158,-71v9,0,12,15,0,15v-9,0,-12,-14,0,-15xm160,-39v-11,0,-7,-13,0,-13v6,0,8,5,5,11v-1,1,-2,2,-5,2xm153,-32v5,-6,16,0,11,8v-6,4,-17,-2,-11,-8xm110,-88v31,-12,45,48,32,75v-45,4,-60,66,-111,46v-14,-32,29,-51,56,-60v15,-9,-1,-45,17,-54","w":170},"\u00a5":{"d":"135,-133v-8,-18,19,-39,27,-20v1,15,-15,29,-27,20xm125,-147v-11,0,-12,-16,0,-18v9,-1,12,10,6,15v-2,2,-4,3,-6,3xm100,-157v-6,-7,5,-18,12,-11v5,8,-4,19,-12,11xm83,-160v-5,-4,0,-12,7,-11v6,1,4,13,-1,14xm66,-158v-5,-6,1,-15,9,-10v4,7,-2,15,-9,10xm45,-45v-13,13,-45,21,-41,-9v5,-42,46,-51,52,-94v37,-18,108,22,56,48v-50,-12,-45,33,-67,55xm214,-147v5,-7,24,-17,27,-2v0,25,-41,26,-27,2xm230,-113v-6,-6,-3,-16,7,-16v11,0,12,18,0,17v-1,0,-4,0,-7,-1xm248,-107v6,6,1,15,-8,13v-7,-3,-7,-14,3,-14v2,0,4,0,5,1xm250,-79v-6,6,-15,-1,-11,-9v7,-4,15,1,11,9xm250,-69v3,6,-5,12,-12,8v-5,-5,-2,-10,6,-10xm203,-128v25,5,47,76,9,83v-37,6,-51,63,-97,40v-14,-34,34,-48,59,-62v15,-9,-4,-43,14,-52v4,-3,7,-10,15,-9","w":254},"\u00a6":{"d":"25,6r0,-103r25,0r0,103r-25,0xm25,-166r0,-102r25,0r0,102r-25,0","w":74},"\u00a8":{"d":"124,-237v69,0,114,48,117,118v3,64,-54,120,-117,117v-70,-3,-118,-46,-118,-117v0,-71,48,-118,118,-118xm124,-17v54,0,102,-42,102,-102v0,-60,-41,-103,-102,-103v-62,0,-103,43,-103,103v0,61,39,102,103,102xm142,-159v0,-13,17,-21,27,-12v10,10,3,27,-11,27v-10,0,-16,-5,-16,-15xm89,-144v-20,0,-21,-33,0,-32v9,0,17,7,16,16v-1,8,-7,16,-16,16xm59,-126v4,67,129,60,129,0v8,81,-103,95,-125,29v-2,-9,-5,-17,-4,-29","w":247},"\u00a9":{"d":"6,-168v0,-38,33,-71,70,-71v38,0,71,33,71,70v0,38,-33,71,-71,71v-38,0,-70,-33,-70,-70xm138,-168v0,-33,-29,-62,-62,-62v-33,0,-61,28,-61,61v0,33,28,62,61,62v33,0,62,-28,62,-61xm50,-170v-6,37,47,50,58,20r3,0v0,17,-12,21,-32,21v-25,0,-42,-14,-42,-40v0,-32,45,-52,71,-33r0,15r-3,0v-12,-33,-60,-17,-55,17","w":151},"\u00ab":{"d":"131,-96r23,54r-19,10r-46,-64r46,-65r20,11xm63,-96r23,54r-20,10r-45,-64r46,-65r20,11","w":174},"\u00ad":{"d":"21,-108r106,0r-10,24r-107,0","w":149},"\u00ae":{"d":"91,-185v0,-18,-10,-17,-26,-17r0,33v15,2,26,-3,26,-16xm6,-168v0,-37,32,-71,70,-70v38,1,70,28,70,70v0,37,-32,70,-70,70v-37,0,-70,-32,-70,-70xm138,-168v0,-33,-29,-61,-62,-61v-33,0,-61,28,-61,61v0,33,28,61,61,61v33,0,62,-29,62,-61xm65,-165v2,12,-5,31,9,30r0,4r-31,0r0,-4v7,0,9,-1,10,-6v-1,-20,3,-45,-2,-61v-3,-1,-10,1,-8,-5v27,0,62,-5,62,21v0,8,-9,18,-19,19v10,11,13,28,29,33v-13,16,-34,-23,-40,-31r-10,0","w":151},"\u00af":{"d":"-10,-252r114,0v2,0,3,3,3,11v0,7,-1,11,-3,11r-114,0v-2,0,-3,-3,-3,-11v0,-7,1,-11,3,-11","w":93},"\u00b0":{"d":"67,-154v-25,0,-46,-21,-46,-46v0,-25,21,-45,46,-45v24,0,45,21,45,45v0,24,-21,46,-45,46xm67,-228v-15,0,-28,12,-28,28v0,15,12,28,28,28v15,0,27,-13,27,-28v0,-15,-13,-28,-27,-28","w":134},"\u00b1":{"d":"90,-116r0,-53r23,0r0,53r74,0r0,24r-74,0r0,53r-23,0r0,-53r-74,0r0,-24r74,0xm16,0r0,-24r171,0r0,24r-171,0","w":202},"\u00b4":{"d":"89,-250v-28,11,-41,23,-62,44r-17,-7v11,-28,27,-40,45,-57v11,7,22,14,34,20","w":93},"\u00b6":{"d":"0,-135v-1,-46,59,-36,104,-37r0,16r-13,0r0,148r-16,0r0,-148r-21,0r0,148r-16,0r0,-91v-22,-1,-38,-14,-38,-36","w":104},"\u00b7":{"d":"36,-90r0,-30r30,0r0,30r-30,0","w":99},"\u2219":{"d":"36,-90r0,-30r30,0r0,30r-30,0","w":99},"\u00bb":{"d":"112,-96r-23,-54r19,-11r46,65r-45,64r-19,-10xm44,-96r-23,-54r19,-11r46,65r-45,64r-20,-10","w":174},"\u00bc":{"d":"91,-243r1,137v6,2,18,-2,15,9r-64,0v-1,-15,16,0,16,-29r-1,-98r-19,0r0,-7v17,-4,29,-13,52,-12xm78,11r130,-254r36,-5r-129,254xm294,-42v-1,12,1,27,3,33r12,2r0,8v-21,-1,-43,-1,-64,0r0,-8r18,-2r3,-33r-65,0v-21,-17,22,-43,29,-62r36,-52v6,1,17,-3,19,3r-71,96r52,0r0,-57v10,-3,20,-16,29,-7r-1,64v10,2,19,-8,24,0r-9,15r-15,0","w":337},"\u00bd":{"d":"92,-243r1,137v6,2,17,-1,14,9r-63,0v-3,-14,15,-3,15,-19r0,-108r-19,0r0,-7v17,-4,29,-13,52,-12xm78,11r130,-254r36,-5r-129,254xm210,-137v34,-16,104,-13,104,30v0,46,-50,65,-80,88v25,0,48,-2,71,-3v4,-6,7,-17,16,-10r-9,33r-113,0r-4,-10v34,-26,78,-48,86,-99v4,-27,-37,-29,-54,-15v1,8,0,16,-8,15v-1,-8,-5,-21,-9,-29","w":337},"\u00be":{"d":"88,-212v0,-20,-33,-20,-45,-10v1,8,-2,11,-8,11r-9,-24v24,-13,92,-13,92,23v0,19,-11,23,-30,30v28,-1,46,16,47,37v2,51,-102,70,-127,26v11,-3,25,-23,34,-12r-6,9v13,26,66,13,66,-21v0,-26,-27,-32,-52,-26r-2,-11v18,-3,40,-12,40,-32xm88,11r129,-254r36,-5r-129,254xm294,-42v-1,12,1,27,3,33r12,2r0,8v-21,-1,-43,-1,-64,0r0,-8r18,-2r3,-33r-65,0v-21,-17,22,-43,29,-62r36,-52v6,1,17,-3,19,3r-71,96r52,0r0,-57v10,-3,20,-16,29,-7r-1,64v10,2,19,-8,24,0r-9,15r-15,0","w":337},"\u00bf":{"d":"161,42v-41,26,-152,24,-148,-41v1,-38,38,-59,74,-67r3,-36r22,-6r12,54v-23,17,-64,19,-64,56v0,39,54,35,71,18r0,-20r12,-3v6,23,10,31,18,45xm131,-166v0,12,-12,24,-24,24v-13,0,-25,-11,-25,-24v0,-14,11,-25,25,-25v13,0,24,12,24,25","w":174},"\u00c0":{"w":0},"\u00c1":{"w":0},"\u00c2":{"w":0},"\u00c3":{"w":0},"\u00c4":{"w":0},"\u00c5":{"w":0},"\u00c6":{"w":0},"\u00c7":{"w":0},"\u00c8":{"w":0},"\u00c9":{"w":0},"\u00ca":{"d":"6,-93v-5,-114,129,-156,229,-114v16,7,31,21,32,40r-135,0r0,-43r-117,117r117,117r0,-44r135,0v-9,45,-59,57,-112,57v-88,0,-145,-44,-149,-130","w":272},"\u00cb":{"d":"282,-103r0,42r-197,0r78,75r-61,0r-96,-95r96,-97r61,0r-78,75r197,0","w":288},"\u00cc":{"d":"247,-110v22,0,34,8,34,29v0,19,-11,28,-33,28r-142,-1v13,13,30,24,34,44v0,28,-37,37,-55,17r-79,-88v30,-32,55,-71,90,-98v24,-19,63,26,32,48r-22,21r141,0","w":286},"\u00cd":{"d":"130,-174r0,185r-41,0r0,48r-83,-140r83,-141r0,48r41,0","w":136},"\u00ce":{"d":"289,-134r0,104r-9,0r0,-104r9,0xm256,-134r0,104r-13,0r0,-104r13,0xm225,-134r0,104r-20,0r0,-104r20,0xm191,-134r0,104r-26,0r0,-104r26,0xm92,7v-20,-39,-46,-69,-86,-87v37,-22,67,-52,88,-90r0,36r63,0r0,104r-63,0v-2,11,3,29,-2,37","w":295},"\u00cf":{"d":"283,-135r0,107r-188,0r0,37r-89,-87r89,-94r0,37r188,0","w":289},"\u00d0":{"d":"296,-137r0,111r-16,0r0,-111r16,0xm264,-137r0,111r-20,0r0,-111r20,0xm232,-137r0,111r-26,0r0,-111r26,0xm199,-137r0,111r-34,0r0,-111r34,0xm165,-137r0,111r-63,0r0,36r-8,0v-18,-40,-48,-71,-88,-88v28,-29,73,-50,88,-95r8,0r0,36r63,0xm287,-130v2,31,-4,69,2,96v-2,-31,4,-69,-2,-96xm251,-34r6,0r0,-96r-6,0r0,96xm212,-34r13,0r0,-96r-13,0r0,96xm172,-34r20,0r0,-96r-20,0r0,96xm95,-34r70,0r0,-96r-70,0r0,-36r3,0v-16,41,-49,64,-85,86r-1,-4v38,18,68,47,86,86r-3,0r0,-36","w":302},"\u00d1":{"d":"292,-138r0,113r-188,0r0,42r-98,-95r98,-103r0,43r188,0xm97,-33r187,0r0,-98r-187,0r0,-32r-81,85r81,78r0,-33","w":298},"\u00d2":{"d":"194,-181r99,103r-99,95r0,-42r-188,0r0,-113r188,0r0,-43xm202,0r80,-78r-80,-85r0,32r-188,0r0,98r188,0r0,33","w":299},"\u00d3":{"d":"209,-173v20,42,46,68,87,88v0,16,-20,12,-28,22v-24,17,-47,43,-59,73r-9,0r0,-36r-62,0r0,-111r62,0r0,-36r9,0xm138,-137r0,111r-35,0r0,-111r35,0xm97,-137r0,111r-27,0r0,-111r27,0xm59,-137r0,111r-20,0r0,-111r20,0xm22,-137r0,111r-16,0r0,-111r16,0xm291,-84r-2,4v-38,-20,-66,-46,-84,-86r3,0r0,36r-70,0r0,96r70,0r0,36r-3,0v18,-39,48,-67,86,-86xm111,-34r19,0r0,-96r-19,0r0,96xm78,-34r12,0r0,-96r-12,0r0,96xm46,-34r6,0r0,-96r-6,0r0,96xm15,-130v-3,29,1,65,0,96r0,-96","w":302},"\u00d4":{"d":"194,-28r-188,0r0,-107r188,0r0,-37r90,94r-90,87r0,-37","w":289},"\u00d5":{"d":"201,-30r-63,0r0,-104r63,0v2,-11,-3,-29,2,-36v16,41,48,67,86,87v-34,24,-70,48,-86,90r-2,0r0,-37xm130,-30r-27,0r0,-104r27,0r0,104xm90,-30r-20,0r0,-104r20,0r0,104xm51,-30r-12,0r0,-104r12,0r0,104xm15,-30r-9,0r0,-104r9,0r0,104","w":295},"\u00d6":{"d":"47,11r-41,0r0,-185r41,0r0,-48r84,141r-84,140r0,-48","w":136},"\u00d7":{"d":"202,7v-18,26,-67,5,-52,-27v6,-13,20,-23,30,-34r-140,1v-19,0,-34,-7,-34,-28v0,-20,12,-30,33,-29r141,0v-12,-15,-33,-21,-33,-47v0,-27,38,-33,55,-13r78,89","w":286},"\u00d8":{"d":"203,-61r-197,0r0,-42r197,0r-78,-75r61,0r96,97r-96,95r-61,0","w":288},"\u00d9":{"d":"267,-93v6,121,-165,166,-251,98v-7,-6,-10,-15,-10,-25r135,0r0,44r116,-117r-116,-117r0,43r-135,0v7,-46,59,-56,111,-56v86,0,145,43,150,130","w":272},"\u00f1":{"d":"291,-233r0,295r-285,0r0,-72v19,7,19,-9,38,-9v-1,-11,3,-16,15,-15v0,-5,-2,-11,5,-9v7,-11,21,-15,24,-30r10,0v-1,-17,12,-16,30,-19v-1,-23,11,-31,32,-34v10,10,16,23,24,34r0,48v-11,0,-12,10,-19,14v5,6,7,13,20,11v7,-7,11,-18,29,-15r0,-9v19,4,17,-12,35,-10r0,-10r9,0v3,-23,-8,-33,-9,-54v-15,5,-10,-15,-26,-14v-13,-14,-32,-23,-48,-35r-20,0v-12,15,-31,24,-43,39v-21,-3,-17,19,-34,20v-14,7,-22,23,-43,24v0,5,1,11,-6,9v-4,8,-13,12,-23,15r0,-174r285,0","w":297}}});
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c)1994 STAR Retrieval Systems. All Rights Reserved.
 */
Cufon.registerFont({"w":237,"face":{"font-family":"Sling","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","cap-height":"1","bbox":"-32 -274 359 100","underline-thickness":"15.3191","underline-position":"-22.9787","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":118},"!":{"d":"47,-25v0,-17,17,-31,34,-31v17,0,33,15,33,31v0,16,-16,32,-33,31v-16,0,-34,-14,-34,-31xm137,-239r0,15r-23,5r-17,142r-32,0r-17,-142r-22,-4r0,-16r111,0","w":162},"\"":{"d":"89,-226v1,-22,44,-22,42,0r-7,100v0,13,-26,14,-27,0xm33,-226v2,-23,43,-21,42,0r-7,100v0,14,-28,13,-28,0","w":168,"k":{"s":31,"q":31,"o":31,"d":31,"c":31,"a":31,"A":31}},"#":{"d":"36,-97r31,0r7,-45r-28,0r0,-27r32,0r9,-69r29,0r-9,69r38,0r9,-69r29,0r-9,69r27,0r0,27r-31,0r-6,45r27,0r0,28r-31,0r-10,69r-29,0r10,-69r-38,0r-10,69r-29,0r9,-69r-27,0r0,-28xm97,-97r38,0r6,-45r-38,0"},"$":{"d":"181,-192v-26,-12,-95,-30,-101,10v10,40,122,40,133,68v9,10,13,24,13,43v0,42,-46,63,-91,68r0,44r-27,5r0,-48v-38,0,-69,-11,-97,-22r18,-53r17,3r0,21v25,17,116,41,116,-8v0,-31,-30,-33,-58,-42v-49,-16,-87,-18,-87,-66v0,-42,45,-64,91,-65r0,-34r27,-6r0,40v29,1,55,7,79,14v-5,15,-10,31,-14,48r-17,-2"},"%":{"d":"244,-245r44,0r-187,253r-47,2xm4,-174v0,-40,34,-70,76,-70v43,0,76,28,76,71v0,40,-34,68,-75,68v-44,-1,-77,-25,-77,-69xm113,-172v1,-23,-12,-46,-32,-46v-21,0,-34,20,-34,42v0,24,12,45,34,45v23,0,32,-17,32,-41xm188,-63v0,-41,35,-70,75,-70v40,0,76,30,76,70v0,41,-33,69,-76,69v-44,0,-75,-24,-75,-69xm296,-61v0,-23,-12,-46,-32,-46v-21,0,-34,20,-34,42v0,24,12,45,34,45v21,0,32,-17,32,-41","w":343},"&":{"d":"218,-201v-1,43,-36,52,-77,64v24,27,39,41,67,61v10,-13,16,-28,16,-50r-17,0r-2,-16r61,-28v4,46,-10,84,-31,110v18,8,42,28,72,20r8,16r-61,29v-20,-7,-34,-16,-56,-29v-50,50,-187,37,-185,-46v1,-42,26,-59,62,-72v-25,-58,25,-104,83,-102v29,1,60,15,60,43xm142,-213v-29,0,-34,32,-18,55v21,-6,41,-16,42,-35v1,-16,-9,-20,-24,-20xm170,-41v-31,-20,-61,-50,-80,-74v-45,38,10,107,67,80","w":312},"'":{"d":"39,-226v1,-23,43,-20,42,0r-7,100v0,14,-28,13,-28,0","w":118,"k":{"s":31,"q":31,"o":31,"e":31,"d":31,"c":31,"a":31,"A":31}},"(":{"d":"122,-225v-52,57,-53,237,0,295r-19,14v-33,-25,-76,-96,-76,-162v0,-67,42,-136,76,-161","w":137,"k":{"q":31,"o":31,"e":31,"c":31,"a":31,"S":24,"Q":31,"O":31,"C":31}},")":{"d":"16,70v51,-68,53,-227,0,-295r18,-14v35,25,76,94,76,161v0,66,-41,138,-76,162","w":137,"k":{"(":31}},"*":{"d":"97,-193v16,-10,27,-13,41,-26v6,10,14,21,13,39v-18,-1,-33,2,-48,4v12,10,24,23,36,30v-9,12,-16,18,-32,24v-5,-19,-12,-28,-18,-44r-19,44v-15,-4,-24,-13,-32,-24r36,-30v-15,-2,-30,-5,-48,-4v0,-18,5,-28,13,-39v12,10,28,17,41,26v-3,-16,-6,-33,-12,-47v15,-5,27,-5,41,0","w":174},"+":{"d":"85,-101r0,-68r33,0r0,68r69,0r0,33r-69,0r0,69r-33,0r0,-69r-69,0r0,-33r69,0","w":202,"k":{"G":8,"C":11}},",":{"d":"22,59v13,-33,15,-61,15,-105v21,-2,40,-4,59,-8v-2,51,-20,100,-50,128","w":118,"k":{"t":31,"s":8,"q":15,"k":13,"g":28,"f":14,"V":31,"T":31,"R":16,"P":19,"O":25,"J":5,"F":16,"C":25}},"-":{"d":"139,-114r-16,34r-106,0r16,-33","w":156,"k":{"Y":31,"W":31,"V":31,"P":31,"M":30,"L":29,"F":30}},".":{"d":"26,-26v-1,-16,16,-31,33,-31v17,0,33,15,33,31v0,17,-16,32,-33,32v-17,0,-33,-15,-33,-32","w":118,"k":{"y":31,"w":31,"v":31,"r":14,"p":31,"o":29,"j":31,"g":31,"e":27,"d":24,"b":22,"Y":31,"W":31,"U":31,"T":31,"S":15,"Q":31,"O":31,"J":29,"F":17,"D":21,"C":31}},"\/":{"d":"6,12r146,-261r52,-7r-146,260","w":205},"0":{"d":"119,-244v67,-1,106,55,106,125v0,71,-38,125,-106,125v-67,0,-106,-55,-106,-125v0,-69,40,-125,106,-125xm120,-24v33,0,41,-53,41,-95v0,-43,-8,-92,-43,-95v-34,4,-41,49,-41,95v1,44,7,95,43,95","k":{"9":10,"8":14,"7":29,"6":12,"5":14,"4":6,"3":14,"2":21,"1":31,"0":8}},"1":{"d":"57,-225v34,-2,54,-23,96,-19r0,225r25,5r0,15r-115,0r0,-15r22,-5r2,-128r-3,-58r-27,0r0,-20","k":{"9":31,"8":31,"7":31,"6":31,"5":31,"4":31,"3":31,"2":31,"1":31,"0":31}},"2":{"d":"25,-229v68,-33,210,-12,171,85v-20,50,-72,74,-113,103r102,-4r13,-22r17,4r-16,64r-190,0r-6,-18r68,-57v24,-24,60,-57,63,-104v3,-42,-56,-42,-78,-21r-1,21r-17,2v-1,-18,-10,-38,-13,-53","k":{"u":18,"s":14,"r":18,"n":18,"l":19,"i":18,"d":15,"b":27,"9":29,"8":20,"7":31,"6":22,"5":16,"4":21,"3":13,"2":17,"1":31,"0":23}},"3":{"d":"128,-188v0,-32,-45,-31,-62,-14r0,17r-18,3v-3,-19,-10,-32,-16,-47v41,-21,165,-26,160,42v-2,29,-22,36,-50,45v44,-4,73,26,74,61v2,73,-112,109,-177,73v-15,-9,-26,-18,-35,-28r53,-35r12,11r-9,16v22,39,91,15,91,-34v0,-38,-41,-46,-78,-37r-5,-24v29,-5,60,-17,60,-49","k":{"9":30,"8":20,"7":31,"6":19,"5":16,"4":11,"3":17,"2":23,"1":31,"0":17}},"4":{"d":"182,-66r2,47r21,5r0,15r-118,0r0,-15r35,-5r2,-47r-103,0r-12,-21r113,-176v12,2,33,-5,36,6r-56,78r-51,81r73,0r0,-89r43,-23r17,11r-2,101v17,2,30,-11,38,4r-17,28r-21,0","k":{"u":25,"s":14,"r":18,"n":18,"l":18,"d":10,"9":25,"8":17,"7":31,"6":16,"5":24,"4":9,"3":29,"2":16,"1":31,"0":13}},"5":{"d":"155,-72v0,-54,-69,-57,-95,-28r-29,-16r23,-117v33,-16,101,4,148,-11v16,14,-16,28,-21,43r-100,2r-14,60v54,-33,152,-15,152,61v0,78,-113,105,-172,69v-15,-9,-26,-23,-34,-39r48,-30r11,14r-10,13v7,12,23,27,44,27v32,-1,49,-16,49,-48","k":{"9":27,"8":17,"7":31,"6":17,"5":13,"4":9,"3":12,"2":18,"1":31,"0":14}},"6":{"d":"78,-128v42,-49,146,-26,146,53v0,52,-47,82,-102,81v-59,0,-106,-36,-104,-99v2,-93,82,-154,163,-178r10,22v-54,23,-98,61,-113,121xm119,-120v-22,1,-42,18,-42,45v0,29,19,51,46,51v25,-1,39,-19,39,-46v0,-26,-17,-51,-43,-50","k":{"9":22,"8":13,"7":31,"6":12,"5":9,"4":5,"3":6,"2":13,"1":31,"0":10}},"7":{"d":"30,-182v5,-11,12,-40,15,-57r162,0r6,12v-37,61,-75,135,-78,231v-28,4,-42,10,-61,20r-16,-5v18,-93,58,-164,101,-218v-34,-3,-70,-2,-101,3r-11,20","k":{"9":31,"8":31,"7":31,"6":31,"5":31,"4":31,"3":31,"2":29,"1":31,"0":31}},"8":{"d":"69,-65v0,48,84,56,86,8v1,-29,-34,-38,-55,-50v-14,6,-31,21,-31,42xm148,-162v21,-18,1,-52,-27,-52v-28,0,-42,35,-17,49v9,6,18,11,27,15xm18,-62v0,-32,23,-58,56,-60v-24,-11,-44,-28,-45,-56v-3,-80,177,-93,177,-9v0,29,-20,48,-51,51v38,9,63,28,64,66v2,51,-48,76,-102,76v-50,0,-99,-23,-99,-68","k":{"9":25,"8":17,"7":31,"6":17,"5":12,"4":9,"3":8,"2":15,"1":31,"0":14}},"9":{"d":"160,-111v-39,51,-149,23,-147,-46v2,-57,43,-88,103,-87v60,1,104,38,103,101v-3,91,-81,153,-163,177r-10,-22v54,-26,98,-61,114,-123xm118,-118v22,0,42,-17,42,-44v0,-30,-19,-51,-45,-52v-25,-1,-40,20,-40,47v0,27,17,49,43,49","k":{"9":13,"8":27,"7":31,"6":18,"5":28,"4":17,"3":31,"2":31,"1":31,"0":13}},":":{"d":"26,-127v-1,-16,16,-31,33,-31v17,0,33,15,33,31v0,18,-15,32,-33,32v-17,0,-33,-14,-33,-32xm26,-26v-1,-16,16,-31,33,-31v17,0,33,15,33,31v0,17,-16,32,-33,32v-17,0,-33,-15,-33,-32","w":118,"k":{"V":31,"T":31,"P":20,"F":17}},";":{"d":"26,-127v-1,-16,16,-31,33,-31v17,0,33,15,33,31v0,18,-15,32,-33,32v-17,0,-33,-14,-33,-32xm22,59v13,-33,15,-61,15,-105v21,-2,40,-4,59,-8v-2,51,-20,100,-50,128","w":118,"k":{"Y":31,"W":31,"T":31}},"<":{"d":"60,-84r126,55r0,33r-170,-74r0,-28r170,-75r0,34","w":202},"=":{"d":"16,-103r0,-33r170,0r0,33r-170,0xm16,-32r0,-33r170,0r0,33r-170,0","w":202},">":{"d":"16,-29r126,-55r-126,-55r0,-34r170,75r0,28r-170,74r0,-33","w":202},"?":{"d":"8,-230v48,-21,164,-23,163,42v0,45,-38,62,-78,71r-6,31r-29,8r-14,-55v21,-17,66,-14,67,-51v1,-38,-53,-33,-69,-16r1,18r-17,4v-6,-23,-12,-34,-18,-52xm34,-25v0,-16,16,-31,33,-31v17,0,34,14,34,31v0,16,-16,32,-33,31v-16,0,-34,-14,-34,-31","w":181},"@":{"d":"8,-90v0,-48,46,-93,97,-93v47,0,89,32,89,75v0,32,-24,69,-51,69v-12,0,-22,-7,-24,-19v-10,23,-56,26,-56,-15v0,-28,26,-68,55,-66v8,1,13,7,16,16r2,-11r21,0r-18,72v1,7,5,8,11,9v13,-3,26,-34,25,-56v-1,-32,-34,-56,-70,-56v-37,0,-68,38,-68,76v0,64,75,96,124,61r3,15v-60,45,-156,-3,-156,-77xm100,-58v20,-1,39,-50,19,-63v-22,-2,-48,54,-19,63","w":202},"A":{"d":"149,-116r-29,-90r-29,90r58,0xm271,-14r0,15r-112,0r0,-16r21,-4r-21,-69r-77,0r-20,69r20,4r0,16r-84,0r0,-15r19,-5v31,-68,56,-139,80,-211v27,-4,47,-20,73,-8r37,110v13,35,28,71,44,109","w":268,"k":{"y":31,"w":31,"v":31,"u":14,"t":15,"q":11,"o":23,"g":3,"e":17,"d":11,"c":16,"Y":31,"W":31,"V":31,"U":30,"T":31,"R":-8,"Q":31,"P":-5,"O":31,"J":-8,"G":29,"F":-7,"D":-4,"C":31,"B":-7,"A":-18,"'":31}},"B":{"d":"192,-74v0,-45,-51,-45,-95,-40r0,81v41,12,95,4,95,-41xm258,-81v0,108,-143,78,-248,82r0,-15r21,-5v5,-56,5,-141,0,-200r-21,-4r0,-16r149,-1v45,1,74,11,74,52v0,32,-20,48,-58,52v48,0,83,14,83,55xm168,-180v-1,-32,-41,-30,-72,-27r0,62v36,4,72,-1,72,-35","w":268,"k":{"y":14,"u":17,"l":19,"k":19,"j":17,"i":17,"h":19,"b":18,"Y":19,"W":19,"V":19,"U":24,"R":23,"P":26,"O":9,"L":23,"I":26,"E":23,"D":26,"A":13,".":25,",":31}},"C":{"d":"215,-192v-57,-36,-135,-7,-135,65v0,53,37,91,89,90v33,-1,50,-13,72,-29r18,22v-31,29,-66,49,-121,50v-69,2,-124,-52,-124,-123v0,-105,130,-155,234,-112v-5,16,-13,35,-12,57r-17,0","w":262,"k":{"x":6,"v":8,"r":10,"a":-5,"Y":-5,"W":-5,"V":-5,"U":6,"R":6,"O":12,"N":8,"L":6,"K":6,"I":9,"H":6,"E":6,"A":6,".":11,"-":31,",":20,"+":5,")":11}},"D":{"d":"100,-36v71,22,120,-17,120,-89v0,-65,-56,-99,-120,-77r0,166xm285,-129v0,71,-60,132,-127,131r-145,-1r0,-15r21,-5v7,-54,6,-141,0,-200r-21,-4r0,-16r152,-1v76,-1,120,37,120,111","w":299,"k":{"a":17,"Y":28,"X":31,"W":26,"V":28,"U":27,"R":27,"P":30,"O":10,"N":29,"M":28,"L":27,"I":31,"E":28,"D":31,"B":28,"A":31,"\/":31,".":31,",":31,")":31}},"E":{"d":"219,0r-209,1r0,-15v30,3,25,-33,24,-62r-3,-143r-21,-4r0,-16r198,1v4,16,6,34,12,49r-16,6v-8,-29,-63,-20,-106,-23r-1,62r67,-3r6,-17r16,0r0,67r-16,0r-6,-17r-67,-2r1,84v32,-2,83,-1,106,-8r12,-20r16,6","k":{"u":2,"o":2,"c":2,"a":-3,"Q":10,"O":10,"G":7,"D":8,"C":10,"-":31}},"F":{"d":"203,-238v3,17,6,34,12,49r-16,6v-9,-30,-62,-20,-101,-23v1,22,-3,48,0,68r69,-2r6,-17r16,0r0,66r-16,0r-6,-16v-18,-3,-53,-2,-70,-3v2,30,-1,64,4,91r28,5r0,15r-119,0r0,-15v30,3,25,-33,24,-62r-3,-143r-21,-4r0,-16","w":218,"k":{"y":-12,"w":-11,"v":-11,"u":-10,"t":-5,"r":-9,"q":21,"o":21,"j":-10,"i":-10,"g":18,"e":22,"d":21,"a":4,"Q":11,"O":11,"G":9,"C":11,"A":31,";":31,":":31,".":31,"-":26,",":31,"+":25}},"G":{"d":"218,-193v-61,-34,-142,-10,-142,70v0,71,59,112,125,85r-2,-67r-24,-5r0,-16r102,0r0,16r-15,5r-1,60r15,13v-31,21,-70,38,-122,38v-79,0,-144,-50,-144,-125v-1,-101,138,-155,239,-109r-12,56r-15,0","w":287,"k":{"w":15,"v":18,"u":18,"Y":16,"W":16,"V":16,"U":24,"S":4,"R":16,"O":6,"M":17,"I":20,"G":3,"F":17,"E":17,"C":6,"A":6}},"H":{"d":"188,-19r3,-94r-94,0v1,31,-2,66,3,94r21,5r0,15r-111,0r0,-15v30,3,25,-33,24,-62r-3,-143r-21,-4r0,-16r111,0r0,16v-35,-4,-22,44,-25,79r95,0r-3,-75r-22,-4r0,-16r111,0r0,16r-21,4v-4,61,-6,140,0,200r21,5r0,15r-111,0r0,-15","w":287,"k":{"y":13,"w":14,"v":14,"u":16,"q":21,"o":24,"e":26,"d":21,"a":8,"O":27,"G":24,"C":27}},"I":{"d":"103,-219r-2,192v-1,13,15,9,23,13r0,15r-111,0r0,-15v30,3,26,-33,25,-62r-4,-143r-21,-4r0,-16r111,0r0,16","w":137,"k":{"t":23,"q":24,"o":27,"d":23,"c":28,"a":10,"S":3,"O":30,"G":27,"C":30,"B":5}},"J":{"d":"-19,45v28,-21,51,-44,50,-96r-3,-168r-22,-4r0,-16r112,0r0,16v-30,-5,-24,32,-25,61v-5,71,17,153,-29,188v-21,16,-43,30,-70,40","w":125,"k":{"u":14,"o":22,"e":24,"a":19,"O":25,"C":25,"A":13,".":31,",":31}},"K":{"d":"96,-111v2,30,-3,67,4,92r21,5r0,15r-111,0r0,-15v30,3,25,-33,24,-62r-3,-143r-21,-4r0,-16r111,0r0,16v-35,-4,-22,44,-25,79r89,-75r-13,-4r0,-16r92,0r0,16r-17,3r-110,77r59,62v19,20,42,40,67,62r11,4r0,16v-26,0,-51,2,-75,5","w":268,"k":{"u":11,"o":16,"e":14,"a":-5,"S":-12,"Q":25,"O":28,"C":28,"-":31}},"L":{"d":"100,-219v-5,59,-3,124,-2,187v33,1,78,-1,100,-8r11,-20r16,6v-5,18,-11,33,-13,54r-203,1r0,-15v10,-4,23,1,23,-16r-1,-189r-22,-4r0,-16r119,0r0,16","w":218,"k":{"w":23,"v":25,"u":4,"Y":31,"W":31,"V":31,"U":9,"T":31,"B":-3,"-":31,"'":31}},"M":{"d":"244,-19v6,-55,2,-119,2,-178r-70,198r-37,0r-69,-197v2,58,-4,124,4,177r20,5r0,15r-84,0r0,-15v10,-4,22,1,22,-16r4,-141r-3,-48r-17,-4r0,-16r97,1r58,170r59,-170r99,-1r0,16r-21,4v-7,59,-4,130,-2,193v0,12,18,8,28,12r0,15r-112,0r0,-15","w":343,"k":{"u":20,"q":21,"o":28,"e":27,"d":21,"c":26,"a":8,"Q":31,"O":31,"G":28,"D":6,"C":31}},"N":{"d":"33,-19v3,-63,6,-138,0,-200r-22,-4r0,-16r79,1r113,169v-1,-49,4,-107,-3,-150r-21,-4r0,-16r84,0r0,16r-21,4v-9,65,-2,150,-4,223r-50,0r-117,-172r3,149r22,5r0,15r-85,0r0,-15","w":274,"k":{"v":16,"u":17,"o":26,"i":17,"e":28,"d":26,"a":23,"Q":29,"O":29,"G":26,"C":29}},"O":{"d":"153,-28v44,0,73,-43,73,-91v0,-49,-28,-91,-73,-91v-45,0,-74,43,-74,91v0,48,30,91,74,91xm154,-244v80,0,138,45,138,125v0,77,-60,125,-140,125v-80,0,-138,-46,-138,-125v0,-80,60,-125,140,-125","w":306,"k":{"l":22,"k":22,"h":22,"b":22,"a":12,"Z":17,"Y":31,"X":31,"W":30,"V":31,"U":27,"T":4,"R":27,"P":30,"N":29,"M":27,"L":27,"K":27,"J":25,"I":30,"H":27,"G":7,"F":27,"E":27,"D":30,"C":10,"B":27,"A":31,".":31,",":31,")":31}},"P":{"d":"178,-166v0,-39,-42,-49,-78,-38r4,185r30,5r0,15r-121,0r0,-15v30,3,25,-33,24,-62r-3,-143r-21,-4r0,-16v91,6,230,-32,230,66v0,69,-64,94,-135,82r10,-31v35,8,60,-9,60,-44","w":249,"k":{"o":10,"e":13,"d":12,"a":7,"Y":2,"W":2,"V":2,"U":13,"Q":6,"P":16,"O":6,"L":13,"E":13,"D":16,"B":13,"A":31,";":19,":":19,"-":31,",":31}},"Q":{"d":"153,-28v44,0,73,-43,73,-91v0,-49,-28,-91,-73,-91v-45,0,-74,43,-74,91v0,48,30,91,74,91xm155,6v28,9,79,20,114,23r13,-13r14,10v-12,19,-20,31,-29,52v-113,-39,-247,-62,-253,-197v-3,-80,60,-125,140,-125v80,0,139,45,138,125v-1,76,-56,124,-137,125","w":305,"k":{"Y":31,"X":-5,"W":30,"V":31,"U":27,"T":4,"P":9,"N":7,"L":6,"K":6,"F":6,"E":6,"A":-4,".":31,",":17,")":21}},"R":{"d":"238,-177v0,33,-27,56,-62,62r83,96r11,5r0,15r-74,5r-82,-113r-18,0v2,29,-1,62,4,88r21,5r0,15r-112,0r0,-15v10,-4,23,1,23,-16r-1,-189r-22,-4r0,-16v88,7,229,-32,229,62xm172,-176v0,-35,-42,-35,-75,-30r0,68v36,5,75,0,75,-38","w":262,"k":{"w":7,"v":7,"u":8,"t":10,"o":13,"e":11,"d":6,"a":-7,"Y":15,"W":15,"V":15,"U":25,"T":4,"O":22,"G":20,"C":23}},"S":{"d":"181,-191v-19,-19,-101,-36,-101,9v0,24,43,25,64,32v48,16,80,29,80,79v0,88,-151,92,-217,54r23,-60r17,4r0,21v27,21,114,44,114,-12v0,-26,-34,-26,-58,-34v-43,-13,-87,-23,-87,-72v0,-84,128,-84,200,-59r-20,57r-15,-3r0,-16","w":231,"k":{"y":10,"u":13,"p":13,"i":13,"Y":-4,"W":-4,"V":-4,"U":7,"T":2,"M":13,"K":7,"I":10,"H":7,"G":3,"E":7,".":19,",":27,")":12}},"T":{"d":"152,-205v-3,59,-3,128,1,186r26,5r0,15r-120,0r0,-15v16,-3,28,0,28,-27r1,-130r-3,-34v-19,-1,-49,2,-61,6r-12,23r-16,-6r13,-56r219,0v4,19,9,38,14,56r-17,6v-10,-14,-4,-25,-32,-27v-12,-1,-25,-2,-41,-2","k":{"y":-22,"x":-22,"w":-21,"v":-21,"u":-19,"s":15,"r":-19,"o":27,"i":-19,"h":-6,"g":13,"e":32,"d":34,"c":35,"a":-3,"S":-5,"Q":5,"O":5,"L":-2,"C":6,"A":36,";":36,":":36,".":36,"-":36,",":36}},"U":{"d":"149,-28v82,0,52,-113,52,-191r-23,-4r0,-16r87,0r0,16v-10,4,-22,-2,-22,15r-2,117v1,63,-42,98,-107,97v-57,0,-100,-27,-100,-81r-3,-144r-22,-4r0,-16r113,0r0,16v-45,-2,-26,76,-26,124v0,44,11,71,53,71","w":274,"k":{"s":31,"p":18,"o":28,"n":18,"m":20,"g":29,"e":29,"d":28,"a":27,"S":28,"R":2,"Q":31,"P":6,"O":31,"L":2,"G":27,"D":6,"C":31,"B":3,"A":36,".":36,",":36}},"V":{"d":"184,-223r0,-16r82,0r0,16r-23,4r-46,111r-39,112r-56,0r-60,-167v-7,-17,-16,-35,-25,-56r-20,-4r0,-16r109,0r0,16r-18,4r56,173r57,-173","w":262,"k":{"u":25,"r":26,"q":36,"o":36,"j":6,"i":5,"e":36,"a":36,"Q":36,"P":-6,"O":36,"L":-10,"G":36,"D":-6,"C":36,"A":36,";":36,":":36,".":36,"-":36,",":36}},"W":{"d":"296,-219r-17,-4r0,-16r80,0r0,16r-21,4v-26,68,-47,148,-68,223r-51,0r-45,-168r-23,84r-19,84r-51,0r-63,-224r-21,-3r0,-16r105,0r0,16r-17,4r38,154r43,-174v16,1,31,1,47,0r20,87v7,29,16,59,26,88","w":356,"k":{"y":13,"v":14,"t":12,"r":16,"n":16,"m":17,"i":6,"g":36,"e":36,"d":36,"a":32,"Y":-22,"S":16,"R":-10,"Q":36,"O":36,"G":35,"C":36,"B":-9,"A":36,";":36,":":36,".":36,"-":36,",":36}},"X":{"d":"172,-223r0,-16r84,0r0,16r-26,4r-71,87r85,113r21,5r0,15r-112,0r0,-15r14,-5r-46,-72v-18,23,-34,47,-49,72r14,5r0,15r-89,0r0,-15r24,-4r82,-99r-76,-102r-21,-4r0,-16r111,0r0,16r-13,4r37,61v18,-26,24,-30,42,-61","w":262,"k":{"Q":35,"D":-6}},"Y":{"d":"90,-19v3,-25,3,-53,3,-81r-76,-119r-20,-4r0,-16r107,0r0,16r-15,4r49,96r51,-96r-16,-4r0,-16r80,0r0,16r-20,4r-78,119v2,27,-1,57,4,81r25,5r0,15r-119,0r0,-15","w":249,"k":{"v":20,"u":22,"q":36,"o":36,"e":36,"d":36,"a":36,"S":15,"R":-10,"Q":36,"P":-6,"O":36,"L":-10,"G":36,"D":-6,"C":36,"B":-10,"A":36,";":36,":":36,".":36,"-":36,",":36}},"Z":{"d":"138,-204v-32,-2,-72,-4,-98,3r-14,22r-15,-7r12,-52r198,0r5,9v-27,36,-51,68,-71,98r-65,97v39,2,90,4,118,-6r11,-22r18,6r-15,56r-216,0r-5,-9v50,-60,93,-129,137,-195","k":{"a":-8,"O":8}},"[":{"d":"100,-217r0,279r39,6r0,16r-94,0r0,-323r94,0r0,16","w":149},"\\":{"d":"150,7r-144,-256r49,4r144,256","w":205},"]":{"d":"51,-217r-41,-6r0,-16r96,0r0,323r-96,0r0,-16r41,-6r0,-279","w":149},"^":{"d":"56,-105r-35,0r64,-133r31,0r65,133r-35,0r-45,-97","w":202},"_":{"d":"169,91r-169,0r0,-17r169,0r0,17","w":168},"`":{"d":"89,-215r-21,13v-20,-24,-38,-36,-68,-47v14,-8,30,-15,43,-24v21,15,35,31,46,58","w":93},"a":{"d":"69,-55v8,41,61,16,62,-11v2,-7,3,-16,3,-26v-33,-2,-63,11,-65,37xm17,-175v55,-18,173,-36,173,43v0,39,-4,83,7,113r16,5r0,15r-68,0v-3,-11,-2,-25,-3,-38v-15,57,-137,58,-135,-10v2,-51,63,-72,127,-71v11,-56,-51,-46,-80,-33r-1,18r-16,4","w":218,"k":{"y":23,"w":24,"v":24,"u":14,"t":21,"s":-10,"r":-5,"q":21,"p":14,"n":-5,"m":-3,"l":-5,"k":-5,"i":-5,"g":12,"f":-3,"e":25,"d":21,"c":25,"b":4,"W":36,"V":36,"U":36,"T":20,"I":3,"C":26,")":28,"'":36,"\"":36}},"b":{"d":"1,-259v31,0,49,-11,84,-9r-2,101v46,-51,137,-13,137,65v0,84,-75,123,-168,102r-38,1v28,-52,9,-156,13,-240r-26,-4r0,-16xm118,-152v-44,0,-33,73,-34,121v7,4,17,9,33,8v54,-3,57,-129,1,-129","w":231,"k":{"y":18,"x":20,"u":6,"s":10,"r":6,"o":5,"n":6,"l":22,"k":23,"j":6,"i":6,"h":23,"e":7,"d":6,"a":6,"O":8,"4":4,"2":25,".":35,",":36}},"c":{"d":"74,-97v0,62,76,81,110,44r17,19v-44,62,-189,49,-189,-51v0,-83,99,-129,181,-95v-5,17,-11,29,-14,48r-16,-2v2,-23,-18,-27,-39,-27v-36,0,-50,26,-50,64","w":205,"k":{"y":-6,"w":-4,"v":-4,"u":-2,"t":4,"r":-2,"p":-2,"o":12,"l":7,"k":8,"i":-2,"h":7,"e":10,"d":7,"c":10,"a":-4,"T":-8,"M":12,"I":15,")":35,"\"":32}},"d":{"d":"120,-259v31,1,49,-11,85,-9r-2,200r2,49r20,5r0,15r-74,0r1,-28v-12,19,-33,32,-59,32v-50,1,-83,-39,-83,-89v0,-68,67,-125,137,-101r-1,-54r-26,-4r0,-16xm114,-33v44,0,31,-73,33,-121v-40,-26,-75,9,-75,61v0,30,15,60,42,60","w":231,"k":{"y":10,"w":12,"v":12,"u":13,"t":19,"s":-10,"r":-5,"q":21,"p":13,"o":23,"n":-5,"l":-5,"k":-5,"i":-5,"h":-5,"g":12,"f":-3,"e":25,"d":21,"c":25,"b":4,"a":6,"U":19,"T":8,"P":2,"A":-13,"2":-8,".":16,",":23,"'":36}},"e":{"d":"136,-33v25,0,46,-15,58,-27r20,18v-17,25,-57,47,-98,47v-59,0,-104,-35,-104,-92v0,-58,48,-104,109,-104v57,0,95,30,86,91r-130,-1v0,43,15,68,59,68xm151,-129v7,-40,-46,-46,-63,-20v-4,6,-8,14,-10,24v27,0,50,0,73,-4","w":218,"k":{"y":12,"x":5,"w":13,"v":13,"t":6,"s":-5,"o":4,"m":2,"l":13,"g":6,"f":6,"e":7,"d":5,"c":9,"b":15,"a":-4,"Y":36,"W":34,"V":36,"R":17,"P":21,"N":19,"M":18,"K":18,"J":18,"F":18,"6":12,"4":9,".":15,",":25,")":36,"'":36}},"f":{"d":"131,-234v-30,-18,-54,6,-46,48r43,-1r-11,28r-32,-1r3,141r27,5r0,15r-107,0r0,-15r21,-5r1,-141r-23,0r0,-16v8,-6,24,-3,23,-20v-4,-61,76,-93,136,-68r-19,51r-16,-3r0,-18","w":137,"k":{"t":-4,"s":6,"r":-6,"o":27,"n":-6,"l":-36,"i":-19,"f":-2,"e":29,"d":29,"c":32,"b":-36,"a":10,".":33,",":36}},"g":{"d":"139,-119v0,-25,-11,-44,-35,-44v-21,0,-34,21,-34,44v0,24,12,44,34,44v23,0,35,-19,35,-44xm49,-59v-24,-9,-37,-31,-37,-60v0,-64,81,-82,146,-65v11,3,30,2,55,2r0,17r-34,4v50,59,-19,132,-102,111v-2,9,-9,24,-8,28v53,-14,142,-9,139,53v-2,44,-60,69,-109,69v-54,0,-120,-38,-76,-79r29,17v3,18,33,32,61,30v16,0,38,-9,38,-24v-6,-27,-58,-26,-95,-18v-1,-4,-25,-30,-28,-32v7,-17,16,-34,21,-53","w":218,"k":{"w":-12,"v":-12,"u":-10,"r":-9,"q":18,"o":15,"m":-8,"i":-10,"e":18,"d":17,"b":9,"a":7,"W":17,"U":22,"T":-15,"F":4,"A":-8,"6":16,"4":19,"2":4,".":32,",":19}},"h":{"d":"84,-162v29,-41,118,-41,119,33r2,110r20,5r0,15r-78,0r1,-105v-1,-28,-3,-48,-29,-48v-50,0,-32,84,-33,133r21,5r0,15r-101,0r0,-15r21,-5r0,-220r-26,-4r0,-16v31,0,50,-11,86,-9v-3,34,-4,69,-3,106","w":231,"k":{"y":20,"w":21,"v":21,"u":14,"t":21,"r":-5,"p":14,"o":23,"i":-5,"g":12,"e":25,"d":21,"c":25,"b":4,"a":6,"O":26,"2":-8,"1":36}},"i":{"d":"56,-210v-15,0,-32,-14,-31,-31v0,-43,61,-37,62,0v0,15,-15,32,-31,31xm1,-181v32,1,47,-12,84,-10r-2,121r2,51r22,5r0,15r-101,0r0,-15r20,-5r2,-89r-2,-53r-25,-4r0,-16","w":111,"k":{"x":-14,"v":10,"u":12,"t":18,"s":-11,"r":-6,"p":12,"o":23,"n":-6,"l":-6,"g":11,"f":-3,"e":25,"d":20,"c":25,"b":3,"a":5,"V":6,"S":-4}},"j":{"d":"56,-210v-15,0,-31,-14,-31,-31v0,-16,16,-31,31,-31v16,1,31,12,31,31v0,16,-15,31,-31,31xm-9,80v32,-28,37,-36,37,-97r-1,-144r-26,-4r0,-16v31,1,47,-12,84,-10r-2,137v7,90,4,112,-80,154","w":112,"k":{"u":12,"o":23,"e":25,"b":9,"a":19,"F":18,".":36,",":36}},"k":{"d":"2,-259v31,0,48,-11,84,-9r-2,151r61,-50r-12,-4r0,-16r78,0r0,16v-38,8,-54,38,-83,56r50,53v17,16,34,32,53,48r0,15r-64,4r-83,-94r1,70r22,5r0,15r-101,0r0,-15r21,-5r0,-220r-25,-4r0,-16","w":224,"k":{"o":13,"e":12,"d":8,"c":11,"b":-8,"a":-6,"B":-13}},"l":{"d":"2,-259v30,0,48,-11,83,-9r-2,198r2,51r21,5r0,15r-100,0r0,-15r21,-5r-1,-220r-24,-4r0,-16","w":111,"k":{"y":11,"w":12,"v":12,"u":14,"t":20,"r":-5,"q":21,"p":14,"o":23,"l":-5,"i":-5,"h":-5,"g":12,"f":-3,"e":25,"d":21,"c":25,"b":4,"a":6,"P":2}},"m":{"d":"85,-161v22,-34,101,-42,116,3v10,-13,38,-33,67,-33v79,0,53,100,60,172r20,5r0,15r-78,0r1,-103v-1,-30,-2,-50,-28,-50v-53,0,-36,82,-36,133r22,5r0,15r-102,0r0,-15r22,-5v-6,-46,21,-133,-27,-133v-52,0,-36,82,-36,133r22,5r0,15r-101,0r0,-15r21,-5r0,-142r-25,-4r0,-16v28,-2,50,-11,82,-10r0,30","w":356,"k":{"y":23,"v":24,"u":16,"t":22,"s":-9,"r":-3,"p":16,"o":24,"i":-3,"g":13,"e":26,"d":22,"c":26,"b":6,"a":7,"W":36,"U":36}},"n":{"d":"84,-160v28,-45,118,-43,119,31r2,110r20,5r0,15r-78,0r0,-105v0,-29,-2,-48,-28,-48v-50,0,-32,84,-33,133r21,5r0,15r-101,0r0,-15r21,-5r-1,-142r-25,-4r0,-16v30,-2,50,-12,84,-10","w":231,"k":{"y":20,"w":21,"v":21,"u":14,"t":21,"s":-10,"r":-5,"q":21,"p":14,"o":23,"n":-5,"l":-5,"i":-5,"g":12,"f":-3,"e":25,"d":21,"c":25,"a":6,"W":36,"U":36,"2":-8,"1":36}},"o":{"d":"121,-191v62,0,106,39,106,98v0,59,-49,98,-110,98v-62,0,-106,-39,-107,-98v-1,-59,51,-98,111,-98xm119,-23v33,0,46,-34,46,-70v0,-37,-13,-70,-47,-70v-32,0,-47,33,-46,70v1,36,14,70,47,70","k":{"z":10,"y":21,"x":22,"w":22,"v":25,"u":8,"t":14,"s":10,"r":9,"p":8,"o":5,"n":8,"m":10,"l":22,"k":22,"j":8,"i":8,"h":22,"g":6,"f":14,"d":5,"c":6,"b":22,"a":4,"Z":22,"Y":36,"V":36,"T":22,"R":28,"N":30,"M":28,"K":28,"J":25,"I":32,"H":28,"F":28,"E":28,"A":23,".":32,",":36,")":36,"'":36,"\"":36}},"p":{"d":"220,-102v0,70,-62,126,-137,102r2,75r26,5r0,15r-105,0r0,-15r21,-5r0,-236r-26,-4r0,-16v30,-2,50,-12,84,-10r-2,27v43,-55,137,-17,137,62xm117,-152v-45,2,-31,73,-33,120v36,27,75,-10,75,-57v0,-31,-14,-64,-42,-63","w":231,"k":{"y":17,"u":4,"t":10,"r":5,"p":4,"o":5,"n":4,"m":6,"l":22,"j":4,"i":4,"h":23,"e":8,"d":6,"c":8,"a":8,"S":19,"1":36,".":35,",":36,")":36}},"q":{"d":"10,-81v0,-86,77,-127,169,-105r41,0r0,16v-31,3,-17,15,-17,88r1,157r21,5r0,15r-105,0r0,-15r25,-5r2,-98v-40,57,-137,17,-137,-58xm114,-33v42,0,32,-73,33,-121v-37,-25,-75,7,-75,57v0,31,15,64,42,64","w":231,"k":{"u":-4,"r":-3,"p":-5,"n":-4,"l":18,"Y":32,"V":28,"I":25,"H":22,"E":22,".":36,"\"":31}},"r":{"d":"132,-151v-55,-6,-52,75,-47,132r27,5r0,15r-106,0r0,-15r21,-5r-1,-142r-24,-4r0,-16v27,-1,45,-12,76,-10r-1,48v12,-32,51,-60,89,-42r-17,50r-14,-2v0,-9,-1,-13,-3,-14","w":162,"k":{"y":-22,"v":-21,"u":-19,"t":-13,"s":2,"r":-18,"q":12,"p":-19,"o":9,"n":-19,"m":-17,"l":8,"k":8,"i":-19,"h":8,"g":5,"e":12,"d":12,"c":13,"b":8,"a":-2,"T":-25,"F":13,"C":4,"4":36,"3":27,"2":16,".":36,",":36}},"s":{"d":"139,-150v-17,-7,-68,-23,-72,6v22,38,116,19,113,83v-3,75,-124,81,-180,45v11,-14,22,-29,31,-45r14,7r-2,16v15,14,78,24,81,-8v-15,-42,-111,-19,-110,-83v0,-65,103,-73,157,-50r-16,45r-16,-3r0,-13","w":193,"k":{"w":6,"u":7,"t":13,"s":5,"q":9,"p":7,"o":9,"n":7,"m":9,"l":19,"k":20,"i":7,"h":19,"e":10,"d":9,"c":10,"b":24,"a":4,"U":31,"T":2,"6":16,"4":7,".":25,",":35,"\"":36}},"t":{"d":"122,-8v-31,26,-91,13,-91,-35r0,-117r-24,0r0,-16r24,-10r0,-36r54,-12r0,48r47,0r-9,27r-38,-1r0,93v-4,33,23,42,42,24r14,18","w":143,"k":{"w":-6,"u":-4,"t":2,"s":-12,"r":-7,"o":9,"m":-5,"l":-7,"j":-4,"i":-7,"h":-7,"f":-5,"e":8,"d":4,"c":7,"b":2,"a":-6,"W":22,"F":-2,"A":-15,"3":-9,"1":36,".":13,",":22}},"u":{"d":"120,-181v32,1,49,-12,85,-10r-1,173r21,4r0,15r-75,0r2,-31v-23,46,-123,50,-124,-21r-2,-110r-25,-4r0,-16v32,1,49,-12,84,-10r-1,110v0,27,7,48,30,48v45,0,32,-80,31,-128r-25,-4r0,-16","w":231,"k":{"y":8,"w":9,"v":9,"t":17,"s":-10,"r":-5,"q":21,"p":11,"o":22,"n":-5,"m":-3,"l":-5,"i":-5,"h":-5,"g":12,"e":24,"d":21,"c":24,"a":6,"Y":32,"V":31,"T":6,"G":22,"A":-13}},"v":{"d":"199,-167v-26,54,-44,113,-65,171v-19,-1,-37,-1,-56,0r-63,-171r-16,-4r0,-16r97,0r0,15r-19,5r42,136r38,-136r-17,-4r0,-16r73,0r0,15","w":212,"k":{"y":-18,"v":-17,"u":-16,"r":-15,"o":23,"n":-16,"m":-14,"l":11,"i":-16,"g":16,"e":26,"d":25,"c":27,"b":12,"R":17,"H":17,"G":7,"F":17,"A":36,".":36,",":36}},"w":{"d":"191,-187r42,148r32,-128r-17,-4r0,-16r70,0r0,15r-13,6r-55,170v-18,0,-39,-2,-55,0r-35,-118r-35,118v-18,0,-37,-2,-54,0r-56,-171r-16,-4r0,-16r95,0r0,15r-15,5r31,129r40,-149r41,0","w":318,"k":{"u":-15,"s":13,"r":-14,"o":19,"n":-15,"l":12,"i":-15,"h":12,"g":15,"f":-9,"e":23,"d":22,"c":24,"T":-21,"L":17,"F":17,"E":17,".":36,",":36}},"x":{"d":"187,-167v-19,21,-36,44,-53,67r60,81r22,3r0,17r-103,0r0,-16r13,-4r-36,-55r-34,55r14,4r0,16r-73,0r0,-16v27,-2,34,-26,48,-41v11,-11,20,-25,29,-38r-54,-73r-22,-4r0,-16r100,0r0,16r-11,4r31,47r30,-48r-10,-3r0,-16r70,0r0,15","w":212,"k":{"x":-23,"t":-5,"s":-20,"r":-14,"o":25,"m":-13,"f":-12,"e":18,"c":18,"T":-16,"4":36,"3":-2,"2":-17}},"y":{"d":"138,-171r0,-16r72,0v2,12,-2,18,-10,20v-29,61,-51,117,-73,181v-19,56,-71,101,-141,80v6,-18,11,-37,15,-57r16,1v0,34,47,22,62,2v13,-17,19,-24,24,-39r-24,0r-66,-168r-15,-4r0,-16r97,0r0,15r-17,4r41,130r37,-130","w":205,"k":{"v":-21,"s":10,"o":20,"n":-19,"i":-19,"e":23,"d":23,"c":25,"b":8,"a":-2,"W":8,"H":14,"B":14,"A":36,"5":22,"3":27,".":36,",":36}},"z":{"d":"12,-137v3,-17,8,-30,9,-50r167,1r0,14r-105,144v32,2,59,-1,86,-7r11,-22r15,6v-4,17,-8,34,-10,52r-180,-1r0,-16r106,-144v-25,-1,-50,-2,-72,3r-12,25","w":199,"k":{"e":2}},"{":{"d":"44,35v0,-40,12,-103,-20,-113v33,-8,20,-73,20,-112v0,-44,30,-51,78,-49r0,11v-54,7,8,139,-52,150v39,7,28,71,28,117v0,19,10,31,24,34r0,11v-48,1,-78,-3,-78,-49","w":149},"|":{"d":"20,6r0,-274r36,0r0,274r-36,0","w":74},"}":{"d":"46,-239v108,-14,24,137,79,161v-54,23,28,178,-79,162r-18,0r0,-11v53,-9,-9,-139,51,-151v-39,-8,-28,-71,-28,-116v0,-20,-9,-31,-23,-34r0,-11r18,0","w":149},"~":{"d":"137,-58v-31,-2,-85,-49,-101,1r-13,-27v7,-13,22,-28,42,-28v21,0,52,23,73,22v17,-1,21,-11,29,-24r12,27v-7,13,-21,30,-42,29","w":202},"\u201a":{"d":"21,60v11,-32,13,-66,14,-107r60,-7v-1,54,-25,101,-50,128","w":118},"\u0192":{"d":"6,-107v0,-54,41,-94,94,-94v56,0,93,37,93,94v0,57,-35,93,-93,93v-57,0,-94,-37,-94,-93xm158,-63v48,-59,-30,-158,-102,-103xm41,-151v-36,47,-2,119,59,118v17,0,31,-6,44,-16","w":199},"\u201e":{"d":"90,60v12,-24,13,-78,14,-107r60,-7v0,48,-25,105,-50,128xm2,60v12,-24,13,-78,14,-107r60,-7v1,49,-25,106,-50,128","w":168},"\u2026":{"d":"40,-69v26,-29,39,-97,81,-94r-55,83v-12,16,-15,53,-46,41v-4,-18,-28,-50,0,-56v15,-3,9,19,20,26","w":127},"\u2020":{"d":"167,-9v-57,13,-80,-18,-130,-20v-16,-23,-14,-75,5,-94v80,-27,177,-39,248,6v13,8,6,21,-8,21v-28,0,-49,-7,-77,-7v19,5,18,35,-3,37v9,11,8,27,-9,30v7,18,-12,24,-26,27xm27,-125v-13,23,-24,106,12,104v-19,18,-31,-8,-32,-30v-2,-35,-1,-88,32,-83v1,1,2,2,4,5v-7,-1,-12,-3,-16,4","w":303},"\u2021":{"d":"63,-22v-52,5,-42,-81,-19,-104v55,1,80,-44,139,-27v48,3,88,17,118,38v13,18,-10,23,-30,23v-22,-1,-38,-7,-60,-8v22,-2,18,27,5,34v-2,0,-8,6,-7,0v11,12,6,29,-8,32v3,45,-99,38,-121,14xm18,-16v-19,-30,-22,-130,26,-121r7,12v-36,-9,-30,59,-24,90v3,13,31,15,8,24v-7,0,-11,0,-17,-5xm197,-107v35,-4,79,21,101,0v-33,-30,-92,-36,-147,-43v-35,3,-64,31,-104,32v-16,16,-18,64,-4,85v49,5,84,37,140,17v11,-1,14,-14,9,-23v22,-1,15,-16,10,-30v16,0,23,-23,7,-29v-3,-4,-8,-6,-12,-9xm41,-16v-40,-2,-29,-88,-12,-112v5,-7,11,-7,18,-3v-44,-5,-39,78,-24,108v3,5,9,6,14,3r-3,7","w":311},"\u02c6":{"w":0},"\u2030":{"d":"274,-139v28,4,29,41,31,73v2,30,-14,70,-39,48v2,-2,2,-6,7,-5v24,-11,20,-90,-1,-104r-12,2v3,-10,5,-13,14,-14xm271,-134v31,8,36,109,2,118r-4,0r8,3r-4,-7v29,6,26,-58,20,-88v-3,-14,-12,-26,-29,-23xm100,-100v0,0,-83,23,-94,-7v26,-40,96,-42,154,-50v38,3,60,31,107,31v20,21,25,75,5,100v-17,6,-41,3,-54,13v-29,23,-78,11,-105,-3v-4,-2,-4,-10,-4,-17v-13,-6,-20,-19,-7,-33r0,3v-16,-3,-25,-25,-10,-37r8,0xm264,-118v-78,-29,-190,-43,-250,10v16,23,66,-4,99,1v-8,8,-30,18,-18,32v27,2,-7,33,24,36v-11,32,34,27,65,30v28,-6,50,-22,83,-24v15,-21,14,-68,-3,-85","w":311},"\u0160":{"d":"279,-24v15,-24,17,-106,-17,-105v20,-17,32,14,34,38v4,34,0,88,-30,73v-1,-1,-1,-2,-1,-3v5,2,11,1,14,-3xm13,-116v62,-40,170,-41,240,-7v32,4,27,73,13,94v-52,6,-101,41,-154,11v-6,-4,2,-21,-8,-20v-12,-5,-10,-19,-2,-28v-21,-3,-23,-31,-3,-37v-29,-1,-50,12,-82,6v-12,1,-14,-12,-4,-19","w":303},"\u2039":{"w":0},"\u0152":{"d":"7,-166v49,9,51,68,81,97v4,-13,22,-42,33,-13v-2,17,-9,29,-14,43v-44,9,-42,-56,-70,-79v-6,-19,-26,-31,-30,-48","w":127},"\u2018":{"d":"97,-229v-12,32,-13,64,-12,106r-61,7v-1,-47,25,-107,50,-127","w":118},"\u2019":{"d":"21,-130v11,-31,13,-66,14,-106r60,-8v1,49,-25,106,-50,128","w":118},"\u201c":{"d":"165,-229v-11,34,-12,61,-12,106r-61,7v-1,-47,25,-107,50,-127xm78,-229v-13,29,-12,68,-13,106r-61,7v-1,-47,25,-107,50,-127","w":168},"\u201d":{"d":"90,-130v13,-24,12,-78,14,-106r60,-8v0,48,-25,106,-50,128xm2,-130v13,-24,12,-78,14,-106r60,-8v1,48,-25,107,-50,128","w":168},"\u2022":{"d":"59,-76v-21,0,-41,-20,-41,-42v0,-23,19,-42,41,-42v23,0,42,20,42,42v0,22,-21,42,-42,42","w":117},"\u2013":{"d":"-16,-80r16,-33r185,-1v-7,12,-11,20,-16,34r-185,0","w":168},"\u2014":{"d":"-7,-80r16,-33r336,-1v-6,10,-12,22,-16,34r-336,0","w":337},"\u02dc":{"d":"19,-262v32,0,72,30,92,0v3,6,11,11,16,15v-12,14,-29,33,-52,34v-11,1,-49,-17,-62,-15v-17,-2,-28,25,-37,7r-8,-7v13,-15,28,-34,51,-34","w":93},"\u2122":{"d":"34,-233v-11,-1,-21,0,-21,11v-10,2,-5,-10,-6,-16r65,0v-1,6,4,18,-5,16v0,-11,-10,-12,-22,-11r0,59v-2,11,8,4,10,12r-30,0v2,-7,12,-1,9,-12r0,-59xm92,-226v-1,-7,-1,-9,-10,-8v-1,-8,12,-2,18,-4r31,61r30,-61r18,0r0,4v-9,0,-9,1,-10,8v4,20,-10,57,10,61r0,3r-29,0v1,-7,9,-3,9,-12r0,-47v-12,19,-18,43,-32,59r-30,-59v4,19,-10,55,10,56r0,3r-25,0v1,-7,10,-2,10,-12r0,-52","w":187},"\u0161":{"d":"106,0v-61,0,-100,-41,-100,-101v0,-61,40,-101,100,-101v60,0,99,39,99,101v0,59,-38,101,-99,101xm71,-154r30,6r0,-45v-21,2,-21,25,-30,39xm59,-106r42,0r0,-33v-13,-1,-23,-4,-32,-9v-3,14,-8,27,-10,42xm101,-63r0,-34r-42,0v-1,17,7,28,10,42v10,-4,20,-7,32,-8xm71,-48v7,15,10,37,30,39r0,-45xm80,-13v-6,-10,-11,-20,-16,-31v-8,4,-26,10,-12,17v9,8,17,10,28,14xm61,-52v-5,-14,-11,-26,-10,-45r-35,0v0,26,8,42,22,58v7,-5,15,-9,23,-13xm16,-106r35,0v0,-18,5,-32,10,-45v-11,-1,-15,-8,-23,-12v-12,14,-22,31,-22,57xm45,-169v6,4,20,18,22,3v4,-8,8,-16,13,-23v-15,4,-26,10,-35,20xm139,-154v-8,-15,-9,-36,-29,-39r0,45v14,0,19,-4,29,-6xm151,-106v-1,-22,-3,-49,-26,-36r-15,3r0,33r41,0xm151,-97r-41,0r0,34v13,1,22,3,32,8v4,-13,9,-25,9,-42xm110,-54r0,45v18,-1,22,-26,29,-39v-9,-2,-19,-6,-29,-6xm131,-189v7,9,10,19,16,31v9,-4,25,-10,10,-20v-8,-5,-16,-9,-26,-11xm150,-151v5,13,8,29,10,45r35,0v-2,-26,-7,-39,-23,-57v-7,4,-12,10,-22,12xm195,-97r-35,0v0,18,-4,31,-10,45v8,2,15,9,22,13v13,-13,23,-34,23,-58xm166,-33v-6,-4,-12,-8,-19,-11r-16,31v17,-5,23,-8,35,-20","w":210},"\u203a":{"w":0},"\u0153":{"d":"164,-27v-10,13,-18,36,-33,11r-30,-49r-64,101v-18,11,-36,-6,-27,-23v1,-42,51,-79,71,-113r-27,-78v3,-6,8,-14,15,-7v6,-2,9,-8,17,-5r26,53r53,-62v11,1,14,7,21,-2v2,5,5,9,8,13r-64,85","w":200},"\u0178":{"d":"214,-208r0,207r-208,0r0,-44v14,5,14,-6,28,-7v-1,-8,3,-11,11,-10v-2,-14,20,-14,21,-29r7,0v-1,-13,10,-11,22,-14v0,-17,9,-23,24,-25r17,25r0,35v-10,3,-18,13,-7,18v15,2,12,-13,29,-10r0,-8v14,3,13,-8,25,-7r0,-7r7,0v3,-17,-6,-24,-7,-39v-10,1,-9,-12,-22,-14v-15,-7,-22,-23,-46,-21v-9,11,-23,17,-31,28v-17,-1,-15,16,-32,17v-7,6,-12,15,-25,15v0,11,-14,11,-21,17r0,-127r208,0","w":220},"\u00a0":{"w":118},"\u00a1":{"d":"60,-190v10,-7,21,2,21,18v0,15,-19,17,-23,2v-1,-6,-2,-18,2,-20xm43,-155v-7,-4,-6,-16,3,-17v12,-1,15,16,3,18v-2,1,-4,1,-6,-1xm32,-143v-9,0,-12,-12,-3,-15v4,-1,8,2,10,7v0,3,-3,8,-7,8xm21,-130v-7,1,-12,-12,-3,-14v9,0,10,11,3,14xm12,-116v-9,2,-11,-11,-3,-13v8,-1,12,11,3,13xm78,-108v-35,37,46,78,3,109v-48,-5,-36,-76,-66,-102v4,-25,30,-47,56,-52v19,1,21,35,7,45xm144,-157v-16,1,-15,-31,-2,-34v12,-3,16,10,13,21v0,4,-5,14,-11,13xm167,-172v7,1,12,12,4,17v-7,4,-16,1,-14,-9v0,-3,7,-8,10,-8xm174,-149v1,-7,15,-14,16,-1v1,3,-7,9,-12,6v-2,-1,-4,-3,-4,-5xm193,-130v-8,-2,-7,-13,2,-14v7,2,7,13,-2,14xm208,-119v-1,7,-13,3,-12,-2v0,-8,14,-11,14,0xm134,-150v33,-7,81,35,56,62v-23,25,-8,85,-57,90v-26,-13,-9,-65,9,-74v16,-31,-34,-46,-8,-78","w":212},"\u00a2":{"d":"77,-202v13,3,17,35,0,36v-14,-1,-17,-33,0,-36xm44,-176v2,-14,19,-9,18,2v0,6,-12,12,-15,5xm35,-158v-8,0,-10,-15,0,-16v6,-1,12,11,4,15xm22,-148v-6,1,-10,-9,-4,-13v11,-1,13,11,4,13xm13,-135v-9,2,-13,-12,-3,-13v6,0,8,10,3,13xm83,-125v-53,27,22,90,-25,117v-46,-8,-21,-81,-47,-112v10,-23,35,-42,67,-40v11,3,13,27,5,35xm143,-104v-10,11,-24,-2,-20,-19v3,-14,18,-15,22,0v2,7,0,14,-2,19xm151,-115v8,-9,20,3,13,12v-5,7,-16,2,-16,-5v0,-3,1,-5,3,-7xm179,-107v6,3,5,13,-3,15v-6,0,-11,-5,-6,-12v3,-1,5,-3,9,-3xm187,-81v-7,-2,-5,-16,5,-14v7,3,4,16,-5,14xm207,-75v0,8,-12,9,-13,1v0,-5,4,-8,10,-7v2,1,2,3,3,6xm140,-95v30,0,74,23,54,56v-17,28,4,88,-41,98v-27,-7,-18,-61,-4,-75v11,-33,-33,-30,-24,-68v1,-7,6,-11,15,-11","w":210},"\u00a3":{"d":"77,-135v15,2,16,33,1,35v-17,0,-16,-33,-1,-35xm62,-108v-1,12,-18,10,-18,-1v0,-3,5,-8,10,-9v4,0,8,5,8,10xm43,-99v-1,9,-15,9,-15,-1v0,-3,2,-7,7,-7v4,1,8,3,8,8xm24,-81v-8,1,-11,-9,-6,-14v10,-1,13,9,6,14xm17,-74v-1,8,-13,7,-13,-1v0,-2,2,-7,6,-6v4,0,6,2,7,7xm74,-50v-39,24,31,87,-16,109v-46,-8,-20,-83,-47,-112v7,-21,33,-42,60,-42v24,0,18,36,3,45xm143,-157v-11,11,-24,-1,-20,-19v3,-13,19,-16,22,0v3,7,-1,13,-2,19xm157,-171v12,0,12,16,1,19v-8,0,-13,-10,-7,-16v2,-2,3,-3,6,-3xm176,-161v9,0,9,14,0,16v-10,0,-11,-14,0,-16xm190,-148v8,0,8,12,0,13v-5,1,-6,-2,-7,-6v0,-4,2,-6,7,-7xm207,-129v0,8,-9,10,-13,4v-1,-8,11,-15,13,-4xm140,-148v30,6,72,25,54,55v-18,29,3,89,-41,99v-43,-18,13,-78,-9,-102v-10,-10,-24,-20,-19,-41v1,-7,6,-11,15,-11","w":210},"\u00a4":{"d":"136,-196v5,-17,36,-15,24,7v-7,6,-20,22,-26,5v-1,-3,0,-7,2,-12xm116,-203v0,-8,10,-12,16,-7v7,9,-5,22,-13,13v-1,0,-2,-2,-3,-6xm106,-218v9,0,9,15,0,16v-10,0,-11,-14,0,-16xm88,-218v6,0,6,3,6,9v-3,8,-13,2,-13,-3v0,-3,3,-4,7,-6xm64,-211v1,-7,12,-7,13,0v0,9,-12,10,-13,0xm6,-87v-9,-52,44,-62,49,-107v39,-23,115,28,50,48v-30,-8,-43,13,-47,38v-10,13,-36,44,-52,21xm131,-109v6,-14,34,-13,22,8v-6,6,-23,20,-26,4v0,-3,2,-8,4,-12xm161,-86v2,12,-14,17,-18,7v-3,-8,7,-17,15,-11xm158,-71v9,0,12,15,0,15v-9,0,-12,-14,0,-15xm160,-39v-11,0,-7,-13,0,-13v6,0,8,5,5,11v-1,1,-2,2,-5,2xm153,-32v5,-6,16,0,11,8v-6,4,-17,-2,-11,-8xm110,-88v31,-12,45,48,32,75v-45,4,-60,66,-111,46v-14,-32,29,-51,56,-60v15,-9,-1,-45,17,-54","w":170},"\u00a5":{"d":"135,-133v-8,-18,19,-39,27,-20v1,15,-15,29,-27,20xm125,-147v-11,0,-12,-16,0,-18v9,-1,12,10,6,15v-2,2,-4,3,-6,3xm100,-157v-6,-7,5,-18,12,-11v5,8,-4,19,-12,11xm83,-160v-5,-4,0,-12,7,-11v6,1,4,13,-1,14xm66,-158v-5,-6,1,-15,9,-10v4,7,-2,15,-9,10xm45,-45v-13,13,-45,21,-41,-9v5,-42,46,-51,52,-94v37,-18,108,22,56,48v-50,-12,-45,33,-67,55xm214,-147v5,-7,24,-17,27,-2v0,25,-41,26,-27,2xm230,-113v-6,-6,-3,-16,7,-16v11,0,12,18,0,17v-1,0,-4,0,-7,-1xm248,-107v6,6,1,15,-8,13v-7,-3,-7,-14,3,-14v2,0,4,0,5,1xm250,-79v-6,6,-15,-1,-11,-9v7,-4,15,1,11,9xm250,-69v3,6,-5,12,-12,8v-5,-5,-2,-10,6,-10xm203,-128v25,5,47,76,9,83v-37,6,-51,63,-97,40v-14,-34,34,-48,59,-62v15,-9,-4,-43,14,-52v4,-3,7,-10,15,-9","w":254},"\u00a6":{"d":"25,6r0,-103r9,0r0,103r-9,0xm25,-166r0,-102r9,0r0,102r-9,0","w":74},"\u00a8":{"d":"124,-237v69,0,114,48,117,118v3,64,-54,120,-117,117v-70,-3,-118,-46,-118,-117v0,-71,48,-118,118,-118xm124,-17v54,0,102,-42,102,-102v0,-60,-41,-103,-102,-103v-62,0,-103,43,-103,103v0,61,39,102,103,102xm142,-159v0,-13,17,-21,27,-12v10,10,3,27,-11,27v-10,0,-16,-5,-16,-15xm89,-144v-20,0,-21,-33,0,-32v9,0,17,7,16,16v-1,8,-7,16,-16,16xm59,-126v4,67,129,60,129,0v8,81,-103,95,-125,29v-2,-9,-5,-17,-4,-29","w":247},"\u00a9":{"d":"6,-168v0,-38,33,-71,70,-71v38,0,71,33,71,70v0,38,-33,71,-71,71v-38,0,-70,-33,-70,-70xm138,-168v0,-33,-29,-62,-62,-62v-33,0,-61,28,-61,61v0,33,28,62,61,62v33,0,62,-28,62,-61xm50,-170v-6,37,47,50,58,20r3,0v0,17,-12,21,-32,21v-25,0,-42,-14,-42,-40v0,-32,45,-52,71,-33r0,15r-3,0v-12,-33,-60,-17,-55,17","w":151},"\u00ab":{"d":"148,-96r24,54r-26,14r-53,-68r52,-68r26,14xm65,-96r24,54r-25,14r-53,-68r52,-68r25,14","w":181},"\u00ad":{"d":"139,-114r-16,34r-106,0r16,-33","w":156},"\u00ae":{"d":"91,-185v0,-18,-10,-17,-26,-17r0,33v15,2,26,-3,26,-16xm6,-168v0,-37,32,-71,70,-70v38,1,70,28,70,70v0,37,-32,70,-70,70v-37,0,-70,-32,-70,-70xm138,-168v0,-33,-29,-61,-62,-61v-33,0,-61,28,-61,61v0,33,28,61,61,61v33,0,62,-29,62,-61xm65,-165v2,12,-5,31,9,30r0,4r-31,0r0,-4v7,0,9,-1,10,-6v-1,-20,3,-45,-2,-61v-3,-1,-10,1,-8,-5v27,0,62,-5,62,21v0,8,-9,18,-19,19v10,11,13,28,29,33v-13,16,-34,-23,-40,-31r-10,0","w":151},"\u00af":{"d":"-16,-259r141,0r0,31r-141,0r0,-31","w":93},"\u00b0":{"d":"67,-154v-25,0,-46,-21,-46,-46v0,-25,21,-45,46,-45v24,0,45,21,45,45v0,24,-21,46,-45,46xm67,-228v-15,0,-28,12,-28,28v0,15,12,28,28,28v15,0,27,-13,27,-28v0,-15,-13,-28,-27,-28","w":134},"\u00b1":{"d":"84,-125r0,-46r35,0r0,46r68,0r0,35r-68,0r0,45r-35,0r0,-45r-68,0r0,-35r68,0xm16,0r0,-35r171,0r0,35r-171,0","w":202},"\u00b4":{"d":"93,-249v-32,11,-45,23,-67,47r-21,-13v10,-26,25,-43,46,-58v13,10,27,16,42,24","w":93},"\u00b6":{"d":"0,-135v-1,-46,59,-36,104,-37r0,16r-13,0r0,148r-16,0r0,-148r-21,0r0,148r-16,0r0,-91v-22,-1,-38,-14,-38,-36","w":104},"\u00b7":{"d":"42,-90r0,-30r30,0r0,30r-30,0","w":118},"\u2219":{"d":"42,-90r0,-30r30,0r0,30r-30,0","w":118},"\u00bb":{"d":"116,-96r-24,-54r26,-14r52,68r-53,68r-26,-14xm33,-96r-23,-54r26,-14r52,68r-54,68r-25,-14","w":181},"\u00bc":{"d":"36,-232v23,-2,38,-14,65,-11r0,135r17,2r0,9r-78,0r0,-9r15,-2r-1,-112r-18,0r0,-12xm88,12r124,-257r41,-5r-124,257xm321,-40r2,29r14,2r0,10r-80,0r0,-10r23,-2r2,-29r-71,0r-8,-12r77,-105v8,1,22,-3,25,3v-28,31,-50,62,-73,95r50,0r0,-53v14,-5,28,-20,41,-7v-2,19,-2,39,-2,60v11,0,22,-6,26,3v-6,8,-9,19,-26,16","w":356},"\u00bd":{"d":"36,-232v23,-2,38,-14,65,-11r0,135r17,2r0,9r-78,0r0,-9r15,-2r-1,-112r-18,0r0,-12xm89,12r124,-257r41,-5r-123,257xm218,-137v36,-15,120,-15,120,33v0,44,-49,60,-81,79r70,-2r8,-13r12,3r-11,38r-129,0r-4,-11v34,-27,81,-46,89,-97v4,-24,-38,-26,-53,-12r-1,12r-11,2v-1,-13,-5,-22,-9,-32","w":356},"\u00be":{"d":"86,-210v1,-19,-33,-18,-42,-8r0,10r-13,2r-10,-29v33,-12,108,-16,108,26v0,17,-15,22,-34,27v28,-2,50,12,51,36v0,57,-116,69,-144,27r35,-21v8,4,10,10,3,17v13,21,61,11,61,-21v0,-24,-29,-26,-53,-22r-3,-15v20,-3,40,-10,41,-29xm97,12r123,-257r42,-5r-124,257xm322,-40r1,29r14,2r0,10r-80,0r0,-10r24,-2r1,-29r-70,0r-8,-12r77,-105v8,1,21,-3,25,3v-28,30,-50,61,-73,95r49,0r0,-53v14,-5,29,-20,41,-7v2,19,-5,45,1,60v9,1,20,-6,23,3v-6,8,-8,19,-25,16","w":356},"\u00bf":{"d":"173,45v-51,22,-163,23,-163,-43v0,-45,38,-61,78,-70r5,-31r30,-8r14,55v-21,16,-65,13,-67,51v-1,36,52,35,68,16r0,-18r17,-4v5,25,12,36,18,52xm146,-160v0,16,-15,31,-33,31v-17,0,-33,-15,-33,-31v0,-17,16,-31,33,-31v17,0,34,14,33,31","w":181},"\u00c0":{"w":0},"\u00c1":{"w":0},"\u00c2":{"w":0},"\u00c3":{"w":0},"\u00c4":{"w":0},"\u00c5":{"w":0},"\u00c6":{"w":0},"\u00c7":{"w":0},"\u00c8":{"w":0},"\u00c9":{"w":0},"\u00ca":{"d":"6,-93v-5,-114,129,-156,229,-114v16,7,31,21,32,40r-135,0r0,-43r-117,117r117,117r0,-44r135,0v-9,45,-59,57,-112,57v-88,0,-145,-44,-149,-130","w":272},"\u00cb":{"d":"282,-103r0,42r-197,0r78,75r-61,0r-96,-95r96,-97r61,0r-78,75r197,0","w":288},"\u00cc":{"d":"247,-110v22,0,34,8,34,29v0,19,-11,28,-33,28r-142,-1v13,13,30,24,34,44v0,28,-37,37,-55,17r-79,-88v30,-32,55,-71,90,-98v24,-19,63,26,32,48r-22,21r141,0","w":286},"\u00cd":{"d":"130,-174r0,185r-41,0r0,48r-83,-140r83,-141r0,48r41,0","w":136},"\u00ce":{"d":"289,-134r0,104r-9,0r0,-104r9,0xm256,-134r0,104r-13,0r0,-104r13,0xm225,-134r0,104r-20,0r0,-104r20,0xm191,-134r0,104r-26,0r0,-104r26,0xm92,7v-20,-39,-46,-69,-86,-87v37,-22,67,-52,88,-90r0,36r63,0r0,104r-63,0v-2,11,3,29,-2,37","w":295},"\u00cf":{"d":"283,-135r0,107r-188,0r0,37r-89,-87r89,-94r0,37r188,0","w":289},"\u00d0":{"d":"296,-137r0,111r-16,0r0,-111r16,0xm264,-137r0,111r-20,0r0,-111r20,0xm232,-137r0,111r-26,0r0,-111r26,0xm199,-137r0,111r-34,0r0,-111r34,0xm165,-137r0,111r-63,0r0,36r-8,0v-18,-40,-48,-71,-88,-88v28,-29,73,-50,88,-95r8,0r0,36r63,0xm287,-130v2,31,-4,69,2,96v-2,-31,4,-69,-2,-96xm251,-34r6,0r0,-96r-6,0r0,96xm212,-34r13,0r0,-96r-13,0r0,96xm172,-34r20,0r0,-96r-20,0r0,96xm95,-34r70,0r0,-96r-70,0r0,-36r3,0v-16,41,-49,64,-85,86r-1,-4v38,18,68,47,86,86r-3,0r0,-36","w":302},"\u00d1":{"d":"292,-138r0,113r-188,0r0,42r-98,-95r98,-103r0,43r188,0xm97,-33r187,0r0,-98r-187,0r0,-32r-81,85r81,78r0,-33","w":298},"\u00d2":{"d":"194,-181r99,103r-99,95r0,-42r-188,0r0,-113r188,0r0,-43xm202,0r80,-78r-80,-85r0,32r-188,0r0,98r188,0r0,33","w":299},"\u00d3":{"d":"209,-173v20,42,46,68,87,88v0,16,-20,12,-28,22v-24,17,-47,43,-59,73r-9,0r0,-36r-62,0r0,-111r62,0r0,-36r9,0xm138,-137r0,111r-35,0r0,-111r35,0xm97,-137r0,111r-27,0r0,-111r27,0xm59,-137r0,111r-20,0r0,-111r20,0xm22,-137r0,111r-16,0r0,-111r16,0xm291,-84r-2,4v-38,-20,-66,-46,-84,-86r3,0r0,36r-70,0r0,96r70,0r0,36r-3,0v18,-39,48,-67,86,-86xm111,-34r19,0r0,-96r-19,0r0,96xm78,-34r12,0r0,-96r-12,0r0,96xm46,-34r6,0r0,-96r-6,0r0,96xm15,-130v-3,29,1,65,0,96r0,-96","w":302},"\u00d4":{"d":"194,-28r-188,0r0,-107r188,0r0,-37r90,94r-90,87r0,-37","w":289},"\u00d5":{"d":"201,-30r-63,0r0,-104r63,0v2,-11,-3,-29,2,-36v16,41,48,67,86,87v-34,24,-70,48,-86,90r-2,0r0,-37xm130,-30r-27,0r0,-104r27,0r0,104xm90,-30r-20,0r0,-104r20,0r0,104xm51,-30r-12,0r0,-104r12,0r0,104xm15,-30r-9,0r0,-104r9,0r0,104","w":295},"\u00d6":{"d":"47,11r-41,0r0,-185r41,0r0,-48r84,141r-84,140r0,-48","w":136},"\u00d7":{"d":"202,7v-18,26,-67,5,-52,-27v6,-13,20,-23,30,-34r-140,1v-19,0,-34,-7,-34,-28v0,-20,12,-30,33,-29r141,0v-12,-15,-33,-21,-33,-47v0,-27,38,-33,55,-13r78,89","w":286},"\u00d8":{"d":"203,-61r-197,0r0,-42r197,0r-78,-75r61,0r96,97r-96,95r-61,0","w":288},"\u00d9":{"d":"267,-93v6,121,-165,166,-251,98v-7,-6,-10,-15,-10,-25r135,0r0,44r116,-117r-116,-117r0,43r-135,0v7,-46,59,-56,111,-56v86,0,145,43,150,130","w":272},"\u00f1":{"d":"291,-233r0,295r-285,0r0,-72v19,7,19,-9,38,-9v-1,-11,3,-16,15,-15v0,-5,-2,-11,5,-9v7,-11,21,-15,24,-30r10,0v-1,-17,12,-16,30,-19v-1,-23,11,-31,32,-34v10,10,16,23,24,34r0,48v-11,0,-12,10,-19,14v5,6,7,13,20,11v7,-7,11,-18,29,-15r0,-9v19,4,17,-12,35,-10r0,-10r9,0v3,-23,-8,-33,-9,-54v-15,5,-10,-15,-26,-14v-13,-14,-32,-23,-48,-35r-20,0v-12,15,-31,24,-43,39v-21,-3,-17,19,-34,20v-14,7,-22,23,-43,24v0,5,1,11,-6,9v-4,8,-13,12,-23,15r0,-174r285,0","w":297}}});
