(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(selector==="body"&&!context){this.context=document;this[0]=document.body;this.selector="body";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;}
return jQuery.merge(this,selector);}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);return jQuery.merge(this,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.makeArray(selector,this);},selector:"",jquery:"1.4.2",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();if(jQuery.isArray(elems)){push.apply(ret,elems);}else{jQuery.merge(ret,elems);}
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;},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;}
data=jQuery.trim(data);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):undefined;}
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,parentNode:div.removeChild(div.appendChild(document.createElement("div"))).parentNode===null,deleteExpando:true,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];}
try{delete script.test;}catch(e){jQuery.support.deleteExpando=false;}
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={};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(!id&&typeof name==="string"&&data===undefined){return null;}
if(!id){id=++uuid;}
if(typeof name==="object"){elem[expando]=id;thisCache=cache[id]=jQuery.extend(true,{},name);}else if(!cache[id]){elem[expando]=id;cache[id]={};}
thisCache=cache[id];if(data!==undefined){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{if(jQuery.support.deleteExpando){delete elem[jQuery.expando];}else if(elem.removeAttribute){elem.removeAttribute(jQuery.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+" ",setClass=elem.className;for(var c=0,cl=classNames.length;c<cl;c++){if(className.indexOf(" "+classNames[c]+" ")<0){setClass+=" "+classNames[c];}}
elem.className=jQuery.trim(setClass);}}}}
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=jQuery.trim(className);}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 rnamespaces=/\.(.*)$/,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;}
var handleObjIn,handleObj;if(handler.handler){handleObjIn=handler;handler=handleObjIn.handler;}
if(!handler.guid){handler.guid=jQuery.guid++;}
var elemData=jQuery.data(elem);if(!elemData){return;}
var events=elemData.events=elemData.events||{},eventHandle=elemData.handle,eventHandle;if(!eventHandle){elemData.handle=eventHandle=function(){return typeof jQuery!=="undefined"&&!jQuery.event.triggered?jQuery.event.handle.apply(eventHandle.elem,arguments):undefined;};}
eventHandle.elem=elem;types=types.split(" ");var type,i=0,namespaces;while((type=types[i++])){handleObj=handleObjIn?jQuery.extend({},handleObjIn):{handler:handler,data:data};if(type.indexOf(".")>-1){namespaces=type.split(".");type=namespaces.shift();handleObj.namespace=namespaces.slice(0).sort().join(".");}else{namespaces=[];handleObj.namespace="";}
handleObj.type=type;handleObj.guid=handler.guid;var handlers=events[type],special=jQuery.event.special[type]||{};if(!handlers){handlers=events[type]=[];if(!special.setup||special.setup.call(elem,data,namespaces,eventHandle)===false){if(elem.addEventListener){elem.addEventListener(type,eventHandle,false);}else if(elem.attachEvent){elem.attachEvent("on"+type,eventHandle);}}}
if(special.add){special.add.call(elem,handleObj);if(!handleObj.handler.guid){handleObj.handler.guid=handler.guid;}}
handlers.push(handleObj);jQuery.event.global[type]=true;}
elem=null;},global:{},remove:function(elem,types,handler,pos){if(elem.nodeType===3||elem.nodeType===8){return;}
var ret,type,fn,i=0,all,namespaces,namespace,special,eventType,handleObj,origType,elemData=jQuery.data(elem),events=elemData&&elemData.events;if(!elemData||!events){return;}
if(types&&types.type){handler=types.handler;types=types.type;}
if(!types||typeof types==="string"&&types.charAt(0)==="."){types=types||"";for(type in events){jQuery.event.remove(elem,type+types);}
return;}
types=types.split(" ");while((type=types[i++])){origType=type;handleObj=null;all=type.indexOf(".")<0;namespaces=[];if(!all){namespaces=type.split(".");type=namespaces.shift();namespace=new RegExp("(^|\\.)"+
jQuery.map(namespaces.slice(0).sort(),fcleanup).join("\\.(?:.*\\.)?")+"(\\.|$)")}
eventType=events[type];if(!eventType){continue;}
if(!handler){for(var j=0;j<eventType.length;j++){handleObj=eventType[j];if(all||namespace.test(handleObj.namespace)){jQuery.event.remove(elem,origType,handleObj.handler,j);eventType.splice(j--,1);}}
continue;}
special=jQuery.event.special[type]||{};for(var j=pos||0;j<eventType.length;j++){handleObj=eventType[j];if(handler.guid===handleObj.guid){if(all||namespace.test(handleObj.namespace)){if(pos==null){eventType.splice(j--,1);}
if(special.remove){special.remove.call(elem,handleObj);}}
if(pos!=null){break;}}}
if(eventType.length===0||pos!=null&&eventType.length===1){if(!special.teardown||special.teardown.call(elem,namespaces)===false){removeEvent(elem,type,elemData.handle);}
ret=null;delete events[type];}}
if(jQuery.isEmptyObject(events)){var handle=elemData.handle;if(handle){handle.elem=null;}
delete elemData.events;delete elemData.handle;if(jQuery.isEmptyObject(elemData)){jQuery.removeData(elem);}}},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(jQuery.event.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",special=jQuery.event.special[type]||{};if((!special._default||special._default.call(elem,event)===false)&&!isClick&&!(target&&target.nodeName&&jQuery.noData[target.nodeName.toLowerCase()])){try{if(target[type]){old=target["on"+type];if(old){target["on"+type]=null;}
jQuery.event.triggered=true;target[type]();}}catch(e){}
if(old){target["on"+type]=old;}
jQuery.event.triggered=false;}}},handle:function(event){var all,handlers,namespaces,namespace,events;event=arguments[0]=jQuery.event.fix(event||window.event);event.currentTarget=this;all=event.type.indexOf(".")<0&&!event.exclusive;if(!all){namespaces=event.type.split(".");event.type=namespaces.shift();namespace=new RegExp("(^|\\.)"+namespaces.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)");}
var events=jQuery.data(this,"events"),handlers=events[event.type];if(events&&handlers){handlers=handlers.slice(0);for(var j=0,l=handlers.length;j<l;j++){var handleObj=handlers[j];if(all||namespace.test(handleObj.namespace)){event.handler=handleObj.handler;event.data=handleObj.data;event.handleObj=handleObj;var ret=handleObj.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(handleObj){jQuery.event.add(this,handleObj.origType,jQuery.extend({},handleObj,{handler:liveHandler}));},remove:function(handleObj){var remove=true,type=handleObj.origType.replace(rnamespaces,"");jQuery.each(jQuery.data(this,"events").live||[],function(){if(type===this.origType.replace(rnamespaces,"")){remove=false;return false;}});if(remove){jQuery.event.remove(this,handleObj.origType,liveHandler);}}},beforeunload:{setup:function(data,namespaces,eventHandle){if(this.setInterval){this.onbeforeunload=eventHandle;}
return false;},teardown:function(namespaces,eventHandle){if(this.onbeforeunload===eventHandle){this.onbeforeunload=null;}}}}};var removeEvent=document.removeEventListener?function(elem,type,handle){elem.removeEventListener(type,handle,false);}:function(elem,type,handle){elem.detachEvent("on"+type,handle);};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;try{while(parent&&parent!==this){parent=parent.parentNode;}
if(parent!==this){event.type=event.data;jQuery.event.handle.apply(this,arguments);}}catch(e){}},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){if(this.nodeName.toLowerCase()!=="form"){jQuery.event.add(this,"click.specialSubmit",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",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;}},teardown:function(namespaces){jQuery.event.remove(this,".specialSubmit");}};}
if(!jQuery.support.changeBubbles){var formElems=/textarea|input|select/i,changeFilters,getVal=function(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;},testChange=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;jQuery.data(elem,"_change_data",getVal(elem));}},setup:function(data,namespaces){if(this.type==="file"){return false;}
for(var type in changeFilters){jQuery.event.add(this,type+".specialChange",changeFilters[type]);}
return formElems.test(this.nodeName);},teardown:function(namespaces){jQuery.event.remove(this,".specialChange");return formElems.test(this.nodeName);}};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;if(type==="unload"&&name!=="one"){this.one(type,data,fn);}else{for(var i=0,l=this.length;i<l;i++){jQuery.event.add(this[i],type,handler,data);}}
return this;};});jQuery.fn.extend({unbind:function(type,fn){if(typeof type==="object"&&!type.preventDefault){for(var key in type){this.unbind(key,type[key]);}}else{for(var i=0,l=this.length;i<l;i++){jQuery.event.remove(this[i],type,fn);}}
return this;},delegate:function(selector,types,data,fn){return this.live(types,data,fn,selector);},undelegate:function(selector,types,fn){if(arguments.length===0){return this.unbind("live");}else{return this.die(types,null,fn,selector);}},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);}});var liveMap={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};jQuery.each(["live","die"],function(i,name){jQuery.fn[name]=function(types,data,fn,origSelector){var type,i=0,match,namespaces,preType,selector=origSelector||this.selector,context=origSelector?this:jQuery(this.context);if(jQuery.isFunction(data)){fn=data;data=undefined;}
types=(types||"").split(" ");while((type=types[i++])!=null){match=rnamespaces.exec(type);namespaces="";if(match){namespaces=match[0];type=type.replace(rnamespaces,"");}
if(type==="hover"){types.push("mouseenter"+namespaces,"mouseleave"+namespaces);continue;}
preType=type;if(type==="focus"||type==="blur"){types.push(liveMap[type]+namespaces);type=type+namespaces;}else{type=(liveMap[type]||type)+namespaces;}
if(name==="live"){context.each(function(){jQuery.event.add(this,liveConvert(type,selector),{data:data,selector:selector,handler:fn,origType:type,origHandler:fn,preType:preType});});}else{context.unbind(liveConvert(type,selector),fn);}}
return this;}});function liveHandler(event){var stop,elems=[],selectors=[],args=arguments,related,match,handleObj,elem,j,i,l,data,events=jQuery.data(this,"events");if(event.liveFired===this||!events||!events.live||event.button&&event.type==="click"){return;}
event.liveFired=this;var live=events.live.slice(0);for(j=0;j<live.length;j++){handleObj=live[j];if(handleObj.origType.replace(rnamespaces,"")===event.type){selectors.push(handleObj.selector);}else{live.splice(j--,1);}}
match=jQuery(event.target).closest(selectors,event.currentTarget);for(i=0,l=match.length;i<l;i++){for(j=0;j<live.length;j++){handleObj=live[j];if(match[i].selector===handleObj.selector){elem=match[i].elem;related=null;if(handleObj.preType==="mouseenter"||handleObj.preType==="mouseleave"){related=jQuery(event.relatedTarget).closest(handleObj.selector)[0];}
if(!related||related!==elem){elems.push({elem:elem,handleObj:handleObj});}}}}
for(i=0,l=elems.length;i<l;i++){match=elems[i];event.currentTarget=match.elem;event.data=match.handleObj.data;event.handleObj=match.handleObj;if(match.handleObj.origHandler.apply(match.elem,args)===false){stop=false;break;}}
return stop;}
function liveConvert(type,selector){return"live."+(type&&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){}}}});}
(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)[0].nodeType;}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.text=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+;/,rnocache=/<script|<object|<embed|<option|<style/i,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.text(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;}},remove:function(selector,keepData){for(var i=0,elem;(elem=this[i])!=null;i++){if(!selector||jQuery.filter(selector,[elem]).length){if(!keepData&&elem.nodeType===1){jQuery.cleanData(elem.getElementsByTagName("*"));jQuery.cleanData([elem]);}
if(elem.parentNode){elem.parentNode.removeChild(elem);}}}
return this;},empty:function(){for(var i=0,elem;(elem=this[i])!=null;i++){if(elem.nodeType===1){jQuery.cleanData(elem.getElementsByTagName("*"));}
while(elem.firstChild){elem.removeChild(elem.firstChild);}}
return this;},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(/=([^="'>\s]+\/)>/g,'="$1">').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"&&!rnocache.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)){return this.each(function(i){var self=jQuery(this),old=self.html();self.replaceWith(value.call(this,i,old));});}
if(typeof value!=="string"){value=jQuery(value).detach();}
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=[],fragment,parent;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]){parent=value&&value.parentNode;if(jQuery.support.parentNode&&parent&&parent.nodeType===11&&parent.childNodes.length===this.length){results={fragment:parent};}else{results=buildFragment(args,this,scripts);}
fragment=results.fragment;if(fragment.childNodes.length===1){first=fragment=fragment.firstChild;}else{first=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],i>0||results.cacheable||this.length>1?fragment.cloneNode(true):fragment);}}
if(scripts.length){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=(nodes&&nodes[0]?nodes[0].ownerDocument||nodes[0]:document);if(args.length===1&&typeof args[0]==="string"&&args[0].length<512&&doc===document&&!rnocache.test(args[0])&&(jQuery.support.checkClone||!rchecked.test(args[0]))){cacheable=true;cacheresults=jQuery.fragments[args[0]];if(cacheresults){if(cacheresults!==1){fragment=cacheresults;}}}
if(!fragment){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),parent=this.length===1&&this[0].parentNode;if(parent&&parent.nodeType===11&&parent.childNodes.length===1&&insert.length===1){insert[original](this[0]);return this;}else{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.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=[];for(var i=0,elem;(elem=elems[i])!=null;i++){if(typeof elem==="number"){elem+="";}
if(!elem){continue;}
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=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){var data,id,cache=jQuery.cache,special=jQuery.event.special,deleteExpando=jQuery.support.deleteExpando;for(var i=0,elem;(elem=elems[i])!=null;i++){id=elem[jQuery.expando];if(id){data=cache[id];if(data.events){for(var type in data.events){if(special[type]){jQuery.event.remove(elem,type);}else{removeEvent(elem,type,data.handle);}}}
if(deleteExpando){delete elem[jQuery.expando];}else if(elem.removeAttribute){elem.removeAttribute(jQuery.expando);}
delete cache[id];}}}});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,_load=jQuery.fn.load;jQuery.fn.extend({load:function(url,params,callback){if(typeof url!=="string"){return _load.call(this,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||/\[\]$/.test(prefix)){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);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("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}})());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.registerFont({"w":110,"face":{"font-family":"knockout48","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"3","bbox":"-11 -300 213 73.7945","underline-thickness":"7.2","underline-position":"-47.88","stemh":"28","stemv":"32","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":47},"\u00d0":{"d":"59,-133r18,0r0,27r-18,0r0,72v21,1,36,0,36,-23r0,-126v1,-23,-15,-24,-36,-23r0,73xm21,-106r-22,0r0,-27r22,0r0,-107v59,-3,117,-3,113,57v-5,73,26,186,-55,183r-58,0r0,-106","w":144},"\u00f0":{"d":"69,-40r0,-90v0,-10,-5,-17,-14,-17v-8,0,-13,7,-13,18r0,89v0,9,5,15,13,15v8,0,14,-6,14,-15xm61,-196r-15,11r-8,-16r13,-9v-7,-7,-16,-11,-28,-11r0,-19v21,-1,37,5,49,14r15,-12r8,17r-11,8v28,38,17,107,17,167v0,31,-20,49,-46,49v-25,0,-45,-18,-45,-49v0,-47,-14,-124,31,-127v12,0,20,6,28,16v0,-15,-2,-29,-8,-39","w":111},"\u00dd":{"d":"127,-240r-46,144r0,96r-38,0r0,-96r-43,-144r39,0r25,101r25,-101r38,0xm97,-300r-25,47r-18,0r12,-47r31,0","w":125},"\u00fd":{"d":"98,-173r-35,183v-6,35,-16,52,-53,50r0,-27v24,5,23,-17,26,-36r-33,-170r31,0r17,120r17,-120r30,0xm85,-240r-25,47r-18,0r12,-47r31,0","w":100},"\u00de":{"d":"121,-150v3,60,-3,110,-70,97r0,53r-38,0r0,-240r39,0r0,42v41,-3,67,5,69,48xm51,-84v48,10,32,-34,34,-65v2,-20,-16,-17,-34,-17r0,82","w":128},"\u00fe":{"d":"103,-137v-3,51,17,140,-31,140v-12,0,-20,-6,-28,-16r0,72r-32,0r0,-299r32,0r0,79v19,-28,61,-14,59,24xm71,-43r0,-87v0,-11,-5,-17,-13,-17v-8,0,-14,6,-14,16r0,89v0,10,6,16,14,16v8,0,13,-6,13,-17","w":113},"!":{"d":"46,-240v1,64,0,125,-11,177r-11,0v-11,-52,-12,-113,-11,-177r33,0xm44,0r-29,0r0,-39r29,0r0,39","w":59},"\"":{"d":"80,-240r-23,71r-17,0r15,-71r25,0xm41,-240r-18,71r-17,0r11,-71r24,0","w":78},"#":{"d":"170,-154r-40,0r-10,69r41,0r0,18r-44,0r-10,67r-21,0r10,-67r-37,0r-9,67r-20,0r10,-67r-37,0r0,-18r39,0r11,-69r-41,0r0,-18r44,0r10,-68r20,0r-10,68r37,0r10,-68r20,0r-10,68r37,0r0,18xm110,-154r-37,0r-10,69r36,0","w":171},"$":{"d":"84,-49v0,-48,-72,-82,-72,-136v0,-28,13,-51,39,-57r0,-26r27,0r0,25v31,7,44,36,40,76r-33,0v0,-21,2,-46,-18,-45v-11,0,-19,7,-19,20v1,51,71,82,71,138v0,31,-17,52,-41,57r0,26r-27,0r0,-26v-33,-6,-44,-34,-41,-75r33,0v-1,22,-1,46,20,45v13,0,21,-8,21,-22","w":128},"%":{"d":"170,-84v0,39,7,89,-32,89v-38,0,-31,-51,-31,-89v0,-21,13,-33,31,-33v18,0,32,12,32,33xm149,-24r0,-65v0,-6,-5,-10,-11,-10v-6,0,-10,4,-10,10r0,65v0,6,4,10,10,10v6,0,11,-4,11,-10xm163,-237r-133,244r-13,-9r133,-245xm73,-210v0,39,7,88,-32,88v-38,0,-32,-49,-32,-88v0,-21,14,-34,32,-34v18,0,32,13,32,34xm51,-151r0,-64v0,-6,-4,-11,-10,-11v-6,0,-10,5,-10,11r0,64v0,6,4,11,10,11v6,0,10,-5,10,-11","w":178},"&":{"d":"168,-55v3,32,-5,59,-31,59v-12,0,-23,-7,-33,-17v-34,35,-95,12,-95,-42v0,-33,16,-57,39,-75v-21,-43,-13,-114,38,-114v28,0,42,22,42,51v0,28,-16,50,-42,71v5,18,14,44,21,58v9,-17,15,-42,15,-59r28,0v0,27,-11,62,-26,86v6,12,25,15,25,-3r0,-15r19,0xm98,-191v0,-13,-4,-20,-13,-20v-22,0,-16,40,-9,62v15,-13,22,-30,22,-42xm85,-36v-10,-15,-20,-41,-26,-62v-19,15,-23,71,9,70v7,0,13,-4,17,-8","w":171},"'":{"d":"54,-240r-26,71r-18,0r13,-71r31,0","w":52},"(":{"d":"96,44r-9,9v-82,-60,-82,-266,0,-325r9,9v-52,48,-52,259,0,307","w":96},")":{"d":"10,-272v80,60,81,266,0,325r-9,-9v52,-48,51,-259,0,-307","w":96},"*":{"d":"58,-198v15,6,37,11,23,26v-10,3,-18,-9,-28,-16v1,15,11,36,-11,32v-7,-6,-2,-20,0,-32v-13,10,-26,26,-34,7v2,-10,16,-11,28,-16v-16,-6,-36,-11,-23,-26v11,-4,17,9,29,16v-3,-16,-12,-36,11,-32v8,5,1,19,0,32v12,-10,26,-27,33,-7v-1,10,-17,11,-28,16","w":94},"+":{"d":"98,-109r-31,0r0,33r-26,0r0,-33r-31,0r0,-26r31,0r0,-33r26,0r0,33r31,0r0,26","w":108},",":{"d":"41,-42v1,35,4,74,-32,73r0,-9v10,0,17,-7,17,-22r-14,0r0,-42r29,0","w":53},"-":{"d":"71,-98r-64,0r0,-27r64,0r0,27","w":77},".":{"d":"41,0r-29,0r0,-42r29,0r0,42","w":53},"\/":{"d":"85,-262r-65,285r-21,0r65,-285r21,0","w":83},"0":{"d":"120,-189v0,75,28,193,-54,193v-81,1,-54,-118,-54,-193v0,-33,22,-55,54,-55v33,0,54,22,54,55xm85,-47r0,-146v0,-10,-7,-17,-19,-17v-11,0,-18,7,-18,17r0,146v0,10,7,17,18,17v12,0,19,-7,19,-17","w":132},"1":{"d":"56,0r-35,0r0,-223v12,0,16,-8,16,-17r19,0r0,240","w":76},"2":{"d":"112,-187v10,44,-70,115,-66,153r64,0r0,34r-103,0v-1,-45,3,-59,42,-118v21,-31,30,-48,30,-72v0,-14,-7,-21,-19,-21v-22,-1,-18,27,-18,48r-32,0v-3,-45,5,-81,50,-81v38,0,52,25,52,57","w":119},"3":{"d":"111,-89v0,51,-4,94,-53,93v-43,-1,-52,-33,-49,-76r32,0v0,20,-4,43,17,43v29,0,15,-40,18,-65v2,-14,-16,-14,-30,-13r0,-28v15,1,32,0,30,-14v-2,-24,9,-62,-18,-62v-21,0,-17,24,-17,44r-32,0v-3,-44,5,-76,49,-77v47,-1,53,38,53,88v0,17,-9,30,-24,34v14,5,24,15,24,33","w":120},"4":{"d":"115,-50r-16,0r0,50r-33,0r0,-50r-62,0r0,-27r65,-163r30,0r0,160r16,0r0,30xm66,-80r0,-78r-30,78r30,0","w":119},"5":{"d":"113,-240v2,44,-29,32,-65,34r-4,63v18,-25,68,-17,68,23v0,59,9,126,-53,124v-41,-2,-53,-32,-49,-74r32,0v-1,20,-1,42,18,41v30,-3,17,-56,17,-85v0,-10,-5,-16,-14,-16v-10,0,-17,8,-19,17r-32,-4r6,-123r95,0","w":120},"6":{"d":"117,-107v2,56,4,112,-52,111v-81,-1,-53,-119,-53,-193v0,-33,21,-55,54,-55v41,0,53,32,49,74r-31,0v1,-20,1,-42,-19,-41v-31,2,-14,52,-18,81v16,-25,76,-16,70,23xm65,-29v30,-1,18,-46,18,-73v0,-10,-6,-16,-18,-16v-31,1,-18,44,-18,71v0,10,7,18,18,18","w":127},"7":{"d":"112,-222v-32,81,-50,143,-52,222r-38,0v3,-71,28,-149,54,-205r-68,0r0,-35r104,0r0,18","w":115},"8":{"d":"118,-86v0,51,-5,90,-54,90v-47,0,-52,-39,-52,-90v0,-17,7,-29,19,-35v-22,-9,-19,-41,-19,-72v0,-30,20,-51,52,-51v48,0,53,38,53,88v0,17,-7,29,-19,35v12,6,20,18,20,35xm64,-132v28,0,19,-35,19,-60v0,-12,-8,-19,-19,-19v-25,-1,-17,38,-18,62v0,9,6,17,18,17xm64,-29v27,1,17,-39,19,-64v0,-9,-7,-17,-19,-17v-28,1,-18,37,-18,62v0,12,8,19,18,19","w":129},"9":{"d":"117,-189v0,76,28,193,-54,193v-42,0,-55,-30,-51,-72r32,0v-1,20,-2,40,19,39v33,-1,14,-50,19,-78v-17,28,-70,16,-70,-24v0,-56,-5,-115,52,-113v33,0,53,23,53,55xm64,-118v31,-2,18,-47,18,-75v0,-9,-6,-18,-18,-18v-31,2,-18,48,-18,76v0,9,6,17,18,17","w":129},":":{"d":"41,-113r-29,0r0,-43r29,0r0,43xm41,0r-29,0r0,-42r29,0r0,42","w":53},";":{"d":"41,-113r-29,0r0,-43r29,0r0,43xm41,-42v1,35,4,74,-32,73r0,-9v10,0,17,-7,17,-22r-14,0r0,-42r29,0","w":53},"<":{"d":"127,-45r-109,-71r0,-8r109,-71r0,32r-65,43r65,43r0,32","w":152},"=":{"d":"96,-135r-88,0r0,-27r88,0r0,27xm96,-82r-88,0r0,-28r88,0r0,28","w":103},">":{"d":"134,-116r-108,71r0,-32r64,-43r-64,-43r0,-32r108,71r0,8","w":152},"?":{"d":"36,-67v-7,-33,35,-80,36,-118v0,-19,-6,-26,-18,-26v-21,-1,-17,27,-17,48r-31,0v-3,-45,4,-81,48,-81v73,0,59,89,22,131v-12,15,-16,29,-16,46r-24,0xm62,0r-29,0r0,-39r29,0r0,39","w":111},"@":{"d":"184,-119v0,36,-19,70,-52,70v-16,0,-26,-10,-25,-26v-12,32,-57,31,-57,-11v0,-30,21,-67,48,-67v11,0,18,7,19,18r5,-15r23,0r-18,62v-4,15,-2,24,10,24v17,0,31,-22,31,-55v0,-46,-29,-76,-69,-76v-43,0,-75,40,-75,93v0,78,76,118,125,72r9,11v-57,53,-150,9,-150,-83v0,-63,40,-108,91,-108v59,0,85,50,85,91xm105,-93v3,-13,17,-40,-2,-44v-17,0,-30,31,-30,50v0,12,4,18,12,18v9,0,17,-10,20,-24","w":190},"A":{"d":"123,0r-38,0r-7,-47r-34,0r-8,47r-35,0r40,-240r43,0xm74,-79r-12,-98r-14,98r26,0","w":124},"B":{"d":"122,-86v0,46,-4,86,-46,86r-63,0r0,-240v52,1,110,-10,108,47v0,32,5,64,-23,71v18,6,24,18,24,36xm52,-136v41,9,33,-27,33,-56v1,-18,-17,-15,-33,-15r0,71xm52,-33v44,9,32,-28,33,-57v0,-19,-15,-18,-33,-17r0,74","w":132},"C":{"d":"123,-86v4,50,-5,90,-54,90v-84,0,-58,-114,-58,-191v0,-33,23,-57,58,-57v49,0,58,39,54,90r-34,0v-1,-24,7,-57,-20,-56v-13,0,-19,9,-19,20r0,140v0,11,6,20,19,20v27,1,19,-32,20,-56r34,0","w":131},"D":{"d":"126,-183v-5,72,26,185,-54,183r-59,0r0,-240v59,-2,118,-4,113,57xm88,-57r0,-126v1,-23,-15,-24,-37,-23r0,172v22,1,37,0,37,-23","w":137},"E":{"d":"109,0r-96,0r0,-240r96,0r0,34r-58,0r0,66r40,0r0,32r-40,0r0,73r58,0r0,35","w":116},"F":{"d":"107,-207r-56,0r0,69r42,0r0,33r-42,0r0,105r-38,0r0,-240r94,0r0,33"},"G":{"d":"125,0r-20,0r-6,-16v-23,40,-94,15,-88,-35v9,-78,-29,-193,57,-193v48,0,59,37,55,87r-36,0v-1,-24,7,-53,-19,-53v-13,0,-19,9,-19,19r0,143v0,10,7,19,20,19v29,-1,16,-37,19,-62r-19,0r0,-29r56,0r0,120","w":135},"H":{"d":"130,0r-38,0r0,-101r-41,0r0,101r-38,0r0,-240r38,0r0,104r41,0r0,-104r38,0r0,240","w":143},"I":{"d":"51,0r-38,0r0,-240r38,0r0,240","w":65},"J":{"d":"114,-51v0,33,-20,55,-54,55v-51,1,-58,-45,-54,-99r36,0v2,24,-9,65,17,65v11,0,17,-7,17,-19r0,-191r38,0r0,189","w":126},"K":{"d":"130,0r-39,0r-27,-100r-13,35r0,65r-38,0r0,-240r38,0r0,113r40,-113r38,0r-39,102","w":132},"L":{"d":"107,0r-94,0r0,-240r38,0r0,205r56,0r0,35"},"M":{"d":"170,0r-36,0r0,-178r-30,178r-28,0r-29,-178r0,178r-34,0r0,-240r52,0r27,168r28,-168r50,0r0,240","w":183},"N":{"d":"131,0r-30,0r-53,-145r0,145r-35,0r0,-240r34,0r49,147r0,-147r35,0r0,240","w":144},"O":{"d":"126,-187v0,78,27,191,-58,191v-84,0,-57,-114,-57,-191v0,-33,22,-57,57,-57v35,0,58,24,58,57xm87,-50r0,-140v0,-12,-7,-20,-19,-20v-12,0,-18,8,-18,20r0,140v0,12,6,20,18,20v12,0,19,-8,19,-20","w":136},"P":{"d":"121,-191v0,60,-3,108,-70,96r0,95r-38,0r0,-240v53,0,108,-10,108,49xm51,-125v47,9,30,-36,33,-66v2,-19,-16,-16,-33,-16r0,82","w":128},"Q":{"d":"138,0v-9,7,-33,5,-40,-4v-37,22,-91,-4,-87,-48v6,-77,-28,-192,57,-192v85,0,52,115,58,193v0,9,-2,16,-5,22v3,3,8,5,17,5r0,24xm87,-58r0,-133v0,-10,-7,-19,-19,-19v-12,0,-18,9,-18,19r0,142v-2,14,16,24,29,16r-9,-8","w":137},"R":{"d":"130,1v-29,3,-44,-2,-44,-33v0,-32,15,-79,-35,-69r0,101r-38,0r0,-240v53,0,110,-10,109,47v0,34,6,68,-23,77v41,9,10,76,31,106r0,11xm51,-131v44,9,32,-31,33,-61v2,-19,-17,-15,-33,-15r0,76","w":133},"S":{"d":"46,-192v-1,47,74,84,74,137v0,38,-26,59,-57,59v-43,0,-61,-29,-56,-76r35,0v-1,22,-1,44,20,44v14,0,20,-8,20,-21v1,-50,-73,-81,-73,-136v0,-32,19,-59,56,-59v40,0,58,31,53,77r-35,0v0,-21,2,-45,-18,-44v-11,0,-19,7,-19,19","w":127},"T":{"d":"114,-205r-36,0r0,205r-38,0r0,-205r-37,0r0,-35r111,0r0,35","w":117},"U":{"d":"125,-50v0,32,-24,54,-56,54v-32,0,-56,-22,-56,-54r0,-190r38,0r0,191v0,12,6,19,18,19v12,0,19,-7,19,-19r0,-191r37,0r0,190","w":137},"V":{"d":"126,-240r-44,240r-37,0r-43,-240r39,0r23,168r25,-168r37,0","w":127},"W":{"d":"184,-240r-38,240r-34,0r-20,-143r-22,143r-33,0r-35,-240r38,0r17,160r23,-160r29,0r20,160r20,-160r35,0","w":184},"X":{"d":"126,0r-39,0r-23,-84r-25,84r-38,0r41,-120r-38,-120r40,0r21,86r25,-86r36,0r-39,116","w":129},"Y":{"d":"127,-240r-46,144r0,96r-38,0r0,-96r-43,-144r39,0r25,101r25,-101r38,0","w":125},"Z":{"d":"113,-226r-64,191r61,0r0,35r-106,0r0,-13r65,-193r-61,0r0,-34r105,0r0,14","w":118},"[":{"d":"90,48r-61,0r0,-315r61,0r0,23r-36,0r0,269r36,0r0,23","w":88},"\\":{"d":"86,23r-21,0r-66,-285r22,0","w":84},"]":{"d":"60,48r-61,0r0,-23r36,0r0,-269r-36,0r0,-23r61,0r0,315","w":88},"^":{"d":"83,-197v-21,6,-36,-1,-41,-23v-5,22,-19,29,-39,23r0,-10v11,0,23,-10,28,-33r24,0v5,23,17,33,28,33r0,10","w":86},"_":{"d":"107,27r-107,0r0,-27r107,0r0,27","w":107},"`":{"d":"48,-193r-19,0r-25,-47r31,0","w":56},"a":{"d":"102,3v-17,1,-26,-4,-31,-19v-19,35,-65,19,-65,-32v0,-32,25,-47,58,-59v-1,-16,5,-40,-12,-40v-14,0,-10,17,-11,30r-29,0v-2,-34,9,-58,42,-58v62,0,36,88,41,145v0,5,2,9,7,9r0,24xm49,-23v23,-1,13,-37,15,-59v-23,8,-29,18,-27,43v0,9,4,16,12,16","w":108},"b":{"d":"103,-136v-5,52,18,136,-34,139v-12,0,-23,-6,-29,-20r-3,17r-25,0r0,-240r32,0r0,84v14,-32,62,-20,59,20xm71,-42r0,-88v0,-11,-5,-17,-13,-17v-8,0,-14,7,-14,17r0,89v0,10,7,16,14,16v8,0,13,-6,13,-17","w":113},"c":{"d":"97,-63v3,38,-9,66,-42,66v-56,0,-45,-74,-45,-129v0,-30,19,-49,45,-49v33,0,45,28,42,66r-27,0v0,-17,3,-39,-14,-38v-9,0,-14,7,-14,17r0,88v0,10,5,17,14,17v17,1,14,-21,14,-38r27,0","w":104},"d":{"d":"101,0r-26,0r-2,-17v-15,36,-67,20,-63,-21v4,-50,-17,-134,32,-137v12,0,20,5,27,15r0,-80r32,0r0,240xm69,-41r0,-90v0,-10,-6,-16,-14,-16v-8,0,-13,6,-13,17r0,88v0,11,5,17,13,17v7,0,14,-6,14,-16","w":113},"e":{"d":"98,-62v3,37,-11,65,-43,65v-56,0,-45,-74,-45,-129v0,-29,19,-49,45,-49v42,-1,46,47,43,93r-56,0v2,21,-8,56,13,57v18,1,14,-20,14,-37r29,0xm69,-100v-1,-19,6,-47,-14,-47v-19,0,-11,29,-13,47r27,0","w":107},"f":{"d":"72,-144r-19,0r0,144r-32,0r0,-144r-16,0r0,-28r16,0v-2,-43,8,-72,52,-68r0,27v-25,-4,-21,19,-21,41r20,0r0,28","w":74},"g":{"d":"111,-190v5,21,-5,40,-24,31v28,31,11,113,-41,97v-6,0,-11,6,-11,12v0,7,6,12,24,12v38,0,46,19,46,54v0,28,-17,46,-48,46v-46,0,-69,-58,-31,-79v-25,-8,-21,-46,5,-50v-39,-22,-23,-131,41,-106v13,0,15,-7,15,-17r24,0xm55,-86v20,0,13,-28,14,-47v0,-9,-5,-15,-14,-15v-20,0,-13,28,-14,46v0,9,5,16,14,16xm57,35v21,0,21,-13,20,-31v0,-9,-6,-16,-20,-16v-20,0,-21,13,-20,31v0,9,7,16,20,16"},"h":{"d":"103,0r-32,0r0,-132v0,-9,-4,-15,-12,-15v-9,0,-15,11,-15,19r0,128r-32,0r0,-240r32,0r0,87v12,-33,59,-28,59,15r0,138","w":114},"i":{"d":"44,-195r-31,0r0,-33r31,0r0,33xm44,0r-32,0r0,-173r32,0r0,173","w":56},"j":{"d":"44,-195r-31,0r0,-33r31,0r0,33xm44,10v0,34,-14,53,-50,50r0,-27v13,1,19,-4,18,-15r0,-191r32,0r0,183","w":56},"k":{"d":"107,0r-32,0r-20,-71v-10,17,-11,43,-10,71r-33,0r0,-240r33,0r0,149r28,-82r31,0r-28,75","w":109},"l":{"d":"44,0r-32,0r0,-240r32,0r0,240","w":56},"m":{"d":"155,0r-32,0r0,-132v0,-8,-4,-14,-11,-14v-9,0,-12,11,-12,19r0,127r-32,0r0,-133v0,-8,-5,-14,-11,-14v-9,0,-13,11,-13,19r0,128r-32,0r0,-173r29,0r2,23v8,-33,47,-32,54,-1v10,-38,58,-29,58,13r0,138","w":166},"n":{"d":"103,0r-32,0r0,-132v0,-9,-5,-15,-12,-15v-9,0,-15,11,-15,19r0,128r-32,0r0,-173r29,0r1,23v11,-38,61,-32,61,12r0,138","w":115},"o":{"d":"100,-126v0,55,11,129,-45,129v-56,0,-45,-74,-45,-129v0,-30,19,-49,45,-49v26,0,45,19,45,49xm69,-40r0,-92v0,-9,-6,-15,-14,-15v-9,0,-13,6,-13,15r0,92v0,9,4,15,13,15v8,0,14,-6,14,-15"},"p":{"d":"103,-135v-4,50,17,138,-31,138v-12,0,-20,-6,-28,-16r0,72r-32,0r0,-232r26,0r2,17v15,-36,67,-20,63,21xm71,-43r0,-88v0,-11,-5,-17,-13,-17v-8,0,-14,7,-14,17r0,89v0,10,6,16,14,16v8,0,13,-6,13,-17","w":113},"q":{"d":"101,59r-32,0r0,-75v-14,32,-62,20,-59,-20v4,-52,-18,-136,34,-139v12,0,23,6,29,20r3,-17r25,0r0,231xm69,-42r0,-89v0,-10,-6,-16,-14,-16v-8,0,-13,6,-13,17r0,88v0,11,5,17,13,17v8,0,14,-7,14,-17","w":113},"r":{"d":"78,-139v-25,-3,-34,5,-34,20r0,119r-32,0r0,-173r28,0r2,25v6,-21,19,-30,36,-27r0,36","w":82},"s":{"d":"39,-134v0,33,56,47,56,90v0,26,-15,47,-43,47v-31,0,-47,-22,-44,-57r27,0v-1,16,0,30,15,30v10,0,16,-5,16,-15v2,-32,-57,-50,-57,-91v0,-28,18,-45,42,-45v32,0,46,22,43,56r-27,0v9,-25,-28,-40,-28,-15","w":101},"t":{"d":"70,-144r-19,0v2,48,-5,107,7,144r-32,0v-13,-34,-5,-98,-7,-144r-16,0r0,-28r18,0r0,-28r30,-9r0,37r19,0r0,28","w":73},"u":{"d":"103,0r-28,0r-2,-21v-11,38,-61,29,-61,-14r0,-138r32,0r0,133v0,9,6,15,13,15v9,0,14,-11,14,-19r0,-129r32,0r0,173","w":115},"v":{"d":"98,-173r-34,173r-28,0r-33,-173r31,0r17,120r17,-120r30,0","w":100},"w":{"d":"148,-173r-30,173r-27,0r-16,-104v-3,37,-10,70,-16,104r-27,0r-29,-173r31,0r14,122r15,-122r27,0r14,122r15,-122r29,0","w":150},"x":{"d":"100,0r-32,0r-17,-57r-17,57r-32,0r31,-85r-31,-88r33,0r16,58r17,-58r32,0r-31,84","w":102},"y":{"d":"98,-173r-35,183v-6,35,-16,52,-53,50r0,-27v24,5,23,-17,26,-36r-33,-170r31,0r17,120r17,-120r30,0","w":100},"z":{"d":"87,-158r-47,128r45,0r0,30r-80,0r0,-15r48,-129r-45,0r0,-29r79,0r0,15","w":92},"{":{"d":"85,48v-39,4,-62,-18,-61,-49v0,-36,26,-67,26,-84v0,-15,-15,-17,-32,-16r0,-17v17,1,32,0,32,-16v0,-17,-26,-48,-26,-84v0,-31,21,-53,61,-49r0,21v-83,3,40,121,-40,135v56,15,11,66,9,110v-1,20,9,31,31,28r0,21","w":97},"|":{"d":"34,23r-21,0r0,-285r21,0r0,285","w":47},"}":{"d":"80,-101v-17,-1,-32,0,-32,16v0,17,25,48,25,84v1,31,-20,53,-60,49r0,-21v83,-4,-39,-123,39,-138v-56,-15,-10,-65,-8,-107v1,-21,-9,-31,-31,-28r0,-21v39,-4,61,18,60,49v0,36,-25,67,-25,84v0,15,15,17,32,16r0,17","w":97},"~":{"d":"80,-140v10,16,1,41,-19,41v-17,0,-33,-31,-40,-9r0,8v-12,2,-17,-3,-17,-13v0,-16,7,-27,22,-27v17,-1,33,29,41,9r0,-9r13,0","w":87},"\u00c4":{"d":"123,0r-38,0r-7,-47r-34,0r-8,47r-35,0r40,-240r43,0xm74,-79r-12,-98r-14,98r26,0xm95,-259r-25,0r0,-33r25,0r0,33xm54,-259r-25,0r0,-33r25,0r0,33","w":124},"\u00c5":{"d":"74,-79r-12,-98r-14,98r26,0xm75,-258v0,-9,-5,-16,-13,-16v-8,0,-12,7,-12,16v0,9,4,14,12,14v8,0,13,-5,13,-14xm47,-240v-17,-11,-7,-45,15,-45v22,0,34,33,16,45r6,0r39,240r-38,0r-7,-47r-34,0r-8,47r-35,0r40,-240r6,0","w":124},"\u00c7":{"d":"57,3v-71,-11,-46,-116,-46,-190v0,-33,23,-57,58,-57v49,0,58,39,54,90r-34,0v-1,-24,7,-57,-20,-56v-13,0,-19,9,-19,20r0,140v0,11,6,20,19,20v27,1,19,-32,20,-56r34,0v3,50,-4,89,-52,90r-13,19v18,-7,35,6,35,24v0,19,-21,33,-38,24v-5,-17,23,-3,17,-29v0,-14,-17,-14,-24,-5r-9,-7","w":131},"\u00c9":{"d":"109,0r-96,0r0,-240r96,0r0,34r-58,0r0,66r40,0r0,32r-40,0r0,73r58,0r0,35xm91,-300r-25,47r-18,0r12,-47r31,0","w":116},"\u00d1":{"d":"108,-296v10,16,1,40,-19,40v-17,0,-34,-29,-41,-9r0,8v-12,2,-17,-3,-17,-13v0,-16,7,-26,22,-26v17,-1,35,30,42,8r0,-8r13,0xm131,0r-30,0r-53,-145r0,145r-35,0r0,-240r34,0r49,147r0,-147r35,0r0,240","w":144},"\u00d6":{"d":"126,-187v0,78,27,191,-58,191v-84,0,-57,-114,-57,-191v0,-33,22,-57,57,-57v35,0,58,24,58,57xm87,-50r0,-140v0,-12,-7,-20,-19,-20v-12,0,-18,8,-18,20r0,140v0,12,6,20,18,20v12,0,19,-8,19,-20xm102,-259r-25,0r0,-33r25,0r0,33xm61,-259r-25,0r0,-33r25,0r0,33","w":136},"\u00dc":{"d":"125,-50v0,32,-24,54,-56,54v-32,0,-56,-22,-56,-54r0,-190r38,0r0,191v0,12,6,19,18,19v12,0,19,-7,19,-19r0,-191r37,0r0,190xm103,-259r-25,0r0,-33r25,0r0,33xm62,-259r-25,0r0,-33r25,0r0,33","w":137},"\u00e1":{"d":"102,3v-17,1,-26,-4,-31,-19v-19,35,-65,19,-65,-32v0,-32,25,-47,58,-59v-1,-16,5,-40,-12,-40v-14,0,-10,17,-11,30r-29,0v-2,-34,9,-58,42,-58v62,0,36,88,41,145v0,5,2,9,7,9r0,24xm49,-23v23,-1,13,-37,15,-59v-23,8,-29,18,-27,43v0,9,4,16,12,16xm87,-240r-25,47r-18,0r12,-47r31,0","w":108},"\u00e0":{"d":"102,3v-17,1,-26,-4,-31,-19v-19,35,-65,19,-65,-32v0,-32,25,-47,58,-59v-1,-16,5,-40,-12,-40v-14,0,-10,17,-11,30r-29,0v-2,-34,9,-58,42,-58v62,0,36,88,41,145v0,5,2,9,7,9r0,24xm49,-23v23,-1,13,-37,15,-59v-23,8,-29,18,-27,43v0,9,4,16,12,16xm63,-193r-19,0r-25,-47r31,0","w":108},"\u00e2":{"d":"95,-205v3,11,-8,12,-14,12v-13,0,-23,-9,-27,-26v-5,21,-20,31,-39,23r0,-9v11,0,22,-10,27,-33r24,0v5,23,18,33,29,33xm102,3v-17,1,-26,-4,-31,-19v-19,35,-65,19,-65,-32v0,-32,25,-47,58,-59v-1,-16,5,-40,-12,-40v-14,0,-10,17,-11,30r-29,0v-2,-34,9,-58,42,-58v62,0,36,88,41,145v0,5,2,9,7,9r0,24xm49,-23v23,-1,13,-37,15,-59v-23,8,-29,18,-27,43v0,9,4,16,12,16","w":108},"\u00e4":{"d":"102,3v-17,1,-26,-4,-31,-19v-19,35,-65,19,-65,-32v0,-32,25,-47,58,-59v-1,-16,5,-40,-12,-40v-14,0,-10,17,-11,30r-29,0v-2,-34,9,-58,42,-58v62,0,36,88,41,145v0,5,2,9,7,9r0,24xm49,-23v23,-1,13,-37,15,-59v-23,8,-29,18,-27,43v0,9,4,16,12,16xm86,-199r-25,0r0,-33r25,0r0,33xm45,-199r-25,0r0,-33r25,0r0,33","w":108},"\u00e3":{"d":"89,-237v10,16,1,41,-19,41v-17,0,-33,-29,-40,-9r0,8v-12,2,-17,-3,-17,-13v0,-16,7,-27,22,-27v17,-1,33,29,41,9r0,-9r13,0xm102,3v-17,1,-26,-4,-31,-19v-19,35,-65,19,-65,-32v0,-32,25,-47,58,-59v-1,-16,5,-40,-12,-40v-14,0,-10,17,-11,30r-29,0v-2,-34,9,-58,42,-58v62,0,36,88,41,145v0,5,2,9,7,9r0,24xm49,-23v23,-1,13,-37,15,-59v-23,8,-29,18,-27,43v0,9,4,16,12,16","w":108},"\u00e5":{"d":"78,-219v0,14,-11,26,-25,26v-14,0,-24,-12,-24,-26v0,-14,10,-27,24,-27v14,0,25,13,25,27xm66,-219v0,-9,-5,-15,-13,-15v-8,0,-12,6,-12,15v0,9,4,15,12,15v8,0,13,-6,13,-15xm102,3v-17,1,-26,-4,-31,-19v-19,35,-65,19,-65,-32v0,-32,25,-47,58,-59v-1,-16,5,-40,-12,-40v-14,0,-10,17,-11,30r-29,0v-2,-34,9,-58,42,-58v62,0,36,88,41,145v0,5,2,9,7,9r0,24xm49,-23v23,-1,13,-37,15,-59v-23,8,-29,18,-27,43v0,9,4,16,12,16","w":108},"\u00e7":{"d":"44,2v-45,-7,-33,-77,-34,-128v0,-30,19,-49,45,-49v33,0,45,28,42,66r-27,0v0,-17,3,-39,-14,-38v-9,0,-14,7,-14,17r0,88v0,10,5,17,14,17v17,1,14,-21,14,-38r27,0v3,37,-8,65,-39,66r-14,20v18,-7,35,6,35,24v0,19,-22,33,-39,24v-5,-18,25,-2,18,-29v0,-14,-17,-14,-24,-5r-10,-7","w":104},"\u00e9":{"d":"98,-62v3,37,-11,65,-43,65v-56,0,-45,-74,-45,-129v0,-29,19,-49,45,-49v42,-1,46,47,43,93r-56,0v2,21,-8,56,13,57v18,1,14,-20,14,-37r29,0xm69,-100v-1,-19,6,-47,-14,-47v-19,0,-11,29,-13,47r27,0xm89,-240r-25,47r-18,0r12,-47r31,0","w":107},"\u00e8":{"d":"98,-62v3,37,-11,65,-43,65v-56,0,-45,-74,-45,-129v0,-29,19,-49,45,-49v42,-1,46,47,43,93r-56,0v2,21,-8,56,13,57v18,1,14,-20,14,-37r29,0xm69,-100v-1,-19,6,-47,-14,-47v-19,0,-11,29,-13,47r27,0xm65,-193r-19,0r-25,-47r31,0","w":107},"\u00ea":{"d":"95,-205v3,11,-8,12,-14,12v-13,0,-23,-9,-27,-26v-5,21,-20,31,-39,23r0,-9v11,0,22,-10,27,-33r24,0v5,23,18,33,29,33xm98,-62v3,37,-11,65,-43,65v-56,0,-45,-74,-45,-129v0,-29,19,-49,45,-49v42,-1,46,47,43,93r-56,0v2,21,-8,56,13,57v18,1,14,-20,14,-37r29,0xm69,-100v-1,-19,6,-47,-14,-47v-19,0,-11,29,-13,47r27,0","w":107},"\u00eb":{"d":"98,-62v3,37,-11,65,-43,65v-56,0,-45,-74,-45,-129v0,-29,19,-49,45,-49v42,-1,46,47,43,93r-56,0v2,21,-8,56,13,57v18,1,14,-20,14,-37r29,0xm69,-100v-1,-19,6,-47,-14,-47v-19,0,-11,29,-13,47r27,0xm87,-199r-25,0r0,-33r25,0r0,33xm46,-199r-25,0r0,-33r25,0r0,33","w":107},"\u00ed":{"d":"44,0r-32,0r0,-173r32,0r0,173xm62,-240r-25,47r-18,0r12,-47r31,0","w":56},"\u00ec":{"d":"44,0r-32,0r0,-173r32,0r0,173xm37,-193r-19,0r-25,-47r31,0","w":56},"\u00ee":{"d":"69,-205v3,11,-8,12,-14,12v-13,0,-23,-9,-27,-26v-5,21,-20,31,-39,23r0,-9v11,0,23,-10,28,-33r24,0v5,23,17,33,28,33xm44,0r-32,0r0,-173r32,0r0,173","w":56},"\u00ef":{"d":"44,0r-32,0r0,-173r32,0r0,173xm61,-199r-25,0r0,-33r25,0r0,33xm20,-199r-25,0r0,-33r25,0r0,33","w":56},"\u00f1":{"d":"92,-237v10,16,1,41,-19,41v-18,0,-33,-29,-41,-9r0,8v-12,2,-17,-3,-17,-13v0,-16,7,-27,22,-27v17,-1,34,29,42,9r0,-9r13,0xm103,0r-32,0r0,-132v0,-9,-5,-15,-12,-15v-9,0,-15,11,-15,19r0,128r-32,0r0,-173r29,0r1,23v11,-38,61,-32,61,12r0,138","w":115},"\u00f3":{"d":"100,-126v0,55,11,129,-45,129v-56,0,-45,-74,-45,-129v0,-30,19,-49,45,-49v26,0,45,19,45,49xm69,-40r0,-92v0,-9,-6,-15,-14,-15v-9,0,-13,6,-13,15r0,92v0,9,4,15,13,15v8,0,14,-6,14,-15xm90,-240r-25,47r-18,0r12,-47r31,0"},"\u00f2":{"d":"100,-126v0,55,11,129,-45,129v-56,0,-45,-74,-45,-129v0,-30,19,-49,45,-49v26,0,45,19,45,49xm69,-40r0,-92v0,-9,-6,-15,-14,-15v-9,0,-13,6,-13,15r0,92v0,9,4,15,13,15v8,0,14,-6,14,-15xm65,-193r-19,0r-25,-47r31,0"},"\u00f4":{"d":"96,-205v3,11,-8,12,-14,12v-13,0,-22,-9,-26,-26v-5,21,-20,31,-39,23r0,-9v11,0,22,-10,27,-33r24,0v5,23,17,33,28,33xm100,-126v0,55,11,129,-45,129v-56,0,-45,-74,-45,-129v0,-30,19,-49,45,-49v26,0,45,19,45,49xm69,-40r0,-92v0,-9,-6,-15,-14,-15v-9,0,-13,6,-13,15r0,92v0,9,4,15,13,15v8,0,14,-6,14,-15"},"\u00f6":{"d":"100,-126v0,55,11,129,-45,129v-56,0,-45,-74,-45,-129v0,-30,19,-49,45,-49v26,0,45,19,45,49xm69,-40r0,-92v0,-9,-6,-15,-14,-15v-9,0,-13,6,-13,15r0,92v0,9,4,15,13,15v8,0,14,-6,14,-15xm88,-199r-25,0r0,-33r25,0r0,33xm47,-199r-25,0r0,-33r25,0r0,33"},"\u00f5":{"d":"91,-237v10,16,1,41,-19,41v-17,0,-34,-29,-41,-9r0,8v-12,2,-17,-3,-17,-13v0,-16,7,-27,22,-27v17,-1,34,29,42,9r0,-9r13,0xm100,-126v0,55,11,129,-45,129v-56,0,-45,-74,-45,-129v0,-30,19,-49,45,-49v26,0,45,19,45,49xm69,-40r0,-92v0,-9,-6,-15,-14,-15v-9,0,-13,6,-13,15r0,92v0,9,4,15,13,15v8,0,14,-6,14,-15"},"\u00fa":{"d":"103,0r-28,0r-2,-21v-11,38,-61,29,-61,-14r0,-138r32,0r0,133v0,9,6,15,13,15v9,0,14,-11,14,-19r0,-129r32,0r0,173xm91,-240r-25,47r-18,0r12,-47r31,0","w":115},"\u00f9":{"d":"103,0r-28,0r-2,-21v-11,38,-61,29,-61,-14r0,-138r32,0r0,133v0,9,6,15,13,15v9,0,14,-11,14,-19r0,-129r32,0r0,173xm67,-193r-19,0r-25,-47r31,0","w":115},"\u00fb":{"d":"98,-205v3,11,-8,12,-14,12v-13,0,-22,-9,-26,-26v-5,22,-20,31,-40,23r0,-9v11,0,23,-10,28,-33r24,0v5,23,17,33,28,33xm103,0r-28,0r-2,-21v-11,38,-61,29,-61,-14r0,-138r32,0r0,133v0,9,6,15,13,15v9,0,14,-11,14,-19r0,-129r32,0r0,173","w":115},"\u00fc":{"d":"103,0r-28,0r-2,-21v-11,38,-61,29,-61,-14r0,-138r32,0r0,133v0,9,6,15,13,15v9,0,14,-11,14,-19r0,-129r32,0r0,173xm91,-199r-25,0r0,-33r25,0r0,33xm50,-199r-25,0r0,-33r25,0r0,33","w":115},"\u00b0":{"d":"81,-207v0,20,-15,37,-38,37v-23,0,-38,-17,-38,-37v0,-20,15,-37,38,-37v23,0,38,17,38,37xm62,-207v0,-12,-7,-21,-19,-21v-12,0,-19,9,-19,21v0,12,7,21,19,21v12,0,19,-9,19,-21","w":85},"\u00a2":{"d":"46,-208r0,-32r24,0r0,32v23,6,31,32,29,65r-27,0v0,-17,3,-38,-14,-38v-8,0,-13,7,-13,16r0,90v0,10,5,16,13,16v17,1,14,-20,14,-37r27,0v2,32,-6,57,-29,63r0,33r-24,0r0,-32v-44,-9,-32,-77,-33,-129v0,-25,14,-42,33,-47"},"\u00a3":{"d":"141,-72v2,40,-1,78,-40,76v-16,0,-32,-7,-42,-17v-12,26,-60,22,-60,-11v0,-25,33,-40,54,-25v6,-14,11,-40,3,-57r-38,0r0,-27r27,0v-18,-40,-14,-113,42,-111v42,2,51,34,48,76r-31,0v0,-19,2,-43,-17,-41v-30,3,-11,58,-4,76r39,0r0,27r-32,0v4,27,-4,49,-16,69v12,12,38,15,38,-8r0,-27r29,0xm44,-27v-7,-8,-21,-11,-23,1v1,11,19,10,23,-1","w":149},"\u00a7":{"d":"125,-91v0,23,-10,41,-24,51v36,33,29,101,-33,101v-40,0,-64,-23,-60,-65r34,0v-2,21,3,35,24,35v15,0,22,-8,22,-21v0,-35,-78,-50,-78,-104v0,-21,11,-39,25,-50v-36,-30,-28,-101,32,-100v40,1,58,26,55,64r-34,0v1,-19,1,-32,-20,-33v-14,0,-19,8,-19,19v0,33,76,50,76,103xm81,-57v24,-27,12,-47,-26,-71v-24,28,-16,46,26,71","w":132},"\u00b6":{"d":"158,58r-22,0r0,-267r-22,0r0,267r-22,0r0,-127v-53,4,-81,-29,-81,-88v0,-50,29,-83,68,-83r79,0r0,298xm92,-97r0,-112v-37,-5,-28,48,-28,83v0,21,9,31,28,29","w":173},"\u00df":{"d":"105,-92v0,47,2,112,-48,91r0,-17v30,-2,16,-53,16,-80v0,-11,-3,-17,-15,-17r0,-25v25,0,17,-31,17,-53v0,-12,-5,-19,-15,-19v-10,0,-15,8,-15,20r0,192r-32,0r0,-186v0,-33,15,-54,45,-54v54,0,61,86,29,113v13,6,18,17,18,35","w":116},"\u00ae":{"d":"213,-115v0,57,-44,104,-103,104v-59,0,-103,-47,-103,-104v0,-57,44,-104,103,-104v59,0,103,47,103,104xm197,-115v0,-49,-36,-89,-87,-89v-51,0,-87,40,-87,89v0,49,36,89,87,89v51,0,87,-40,87,-89xm150,-80v-1,5,3,15,-5,13v-37,6,6,-52,-48,-41r0,40r-18,0r0,-95v31,-1,65,-5,65,29v0,12,-3,18,-15,20v15,2,17,14,16,30v0,3,1,4,5,4xm97,-120v17,1,32,1,29,-18v2,-13,-16,-11,-29,-11r0,29","w":219},"\u00a9":{"d":"213,-115v0,57,-44,104,-103,104v-59,0,-103,-47,-103,-104v0,-57,44,-104,103,-104v59,0,103,47,103,104xm197,-115v0,-49,-36,-89,-87,-89v-51,0,-87,40,-87,89v0,49,36,89,87,89v51,0,87,-40,87,-89xm145,-101v2,22,-12,35,-34,36v-38,0,-37,-33,-35,-69v0,-18,14,-31,35,-31v22,1,36,13,34,36v-6,-1,-19,4,-16,-6v0,-9,-5,-16,-17,-16v-27,0,-16,33,-18,56v0,9,6,16,18,16v14,0,18,-9,17,-22r16,0","w":219},"\u00b4":{"d":"55,-240r-25,47r-18,0r12,-47r31,0","w":56},"\u00a8":{"d":"70,-199r-25,0r0,-33r25,0r0,33xm29,-199r-25,0r0,-33r25,0r0,33","w":74},"\u00c6":{"d":"178,0r-96,0r0,-47r-32,0r-12,47r-37,0r63,-240r114,0r0,34r-57,0r0,66r40,0r0,32r-40,0r0,73r57,0r0,35xm82,-79r0,-105r-24,105r24,0","w":185},"\u00d8":{"d":"131,-242r-12,27v15,42,3,109,7,162v4,48,-59,74,-95,45r-9,19r-16,-9r11,-26v-13,-44,-2,-109,-6,-163v-4,-49,59,-73,95,-45v5,-10,8,-19,8,-19xm50,-100r37,-90v0,-12,-7,-20,-19,-20v-12,0,-18,8,-18,20r0,90xm87,-50r0,-90r-37,90v0,12,6,20,18,20v12,0,19,-8,19,-20","w":136},"\u00b1":{"d":"179,0r-170,0r0,-177r170,0r0,177xm160,-18r0,-141r-133,0r0,141r133,0","w":187},"\u00a5":{"d":"84,-99r0,21r36,0r0,28r-36,0r0,50r-36,0r0,-50r-36,0r0,-28r36,0r0,-21r-36,0r0,-28r28,0r-33,-113r37,0r24,96r23,-96r36,0r-35,113r28,0r0,28r-36,0","w":133},"\u00aa":{"d":"92,-112v-15,1,-24,-1,-28,-14v-15,26,-56,15,-56,-23v0,-25,22,-35,50,-43v-1,-13,5,-30,-10,-30v-12,0,-11,10,-11,21r-24,0v-2,-26,8,-42,36,-43v50,-1,32,62,35,107v0,4,1,6,8,6r0,19xm45,-132v18,0,12,-25,13,-42v-19,6,-26,11,-24,30v0,7,4,12,11,12","w":97},"\u00ba":{"d":"83,-206v1,43,6,94,-38,94v-44,0,-38,-51,-37,-94v0,-24,15,-38,37,-38v22,0,38,14,38,38xm45,-133v24,-6,12,-52,12,-78v0,-7,-5,-12,-12,-12v-7,0,-11,5,-11,12r0,66v0,7,4,12,11,12","w":90},"\u00e6":{"d":"153,-62v10,55,-44,87,-74,48v-22,31,-72,19,-72,-34v0,-32,24,-47,57,-59v-1,-16,5,-40,-12,-40v-15,-1,-12,16,-12,30r-28,0v-11,-50,45,-77,69,-41v22,-32,76,-15,72,32r0,44r-56,0v3,21,-9,55,14,56v16,0,14,-20,14,-36r28,0xm124,-100v-2,-18,6,-46,-13,-47v-20,0,-13,28,-14,47r27,0xm49,-24v23,-1,13,-36,15,-58v-23,8,-29,18,-27,43v0,9,4,15,12,15","w":162},"\u00f8":{"d":"110,-171r-14,24v9,27,2,68,4,101v3,47,-51,63,-78,35r-10,19r-11,-9r13,-24v-9,-27,-2,-68,-4,-101v-3,-46,51,-64,78,-35r11,-19xm42,-76v8,-19,27,-32,27,-56v0,-9,-6,-15,-14,-15v-25,0,-9,47,-13,71xm55,-25v25,-3,10,-47,14,-71v-8,19,-27,32,-27,56v0,9,4,15,13,15"},"\u00bf":{"d":"68,-106v7,33,-35,80,-36,119v0,19,6,25,18,25v21,1,17,-27,17,-47r31,0v3,45,-4,80,-48,80v-72,0,-58,-88,-22,-130v12,-15,16,-30,16,-47r24,0xm42,-173r29,0r0,39r-29,0r0,-39","w":103},"\u00a1":{"d":"44,-134r-29,0r0,-39r29,0r0,39xm46,67r-33,0v-1,-64,0,-125,11,-176r11,0v11,51,12,112,11,176","w":59},"\u00ab":{"d":"65,0r-15,0v-5,-28,-20,-49,-43,-58r0,-23v23,-9,38,-30,43,-58r15,0v0,30,-9,56,-26,70v17,14,26,38,26,69xm123,0r-15,0v-5,-28,-20,-49,-42,-58r0,-23v22,-9,37,-30,42,-58r15,0v0,30,-10,56,-27,70v17,14,27,38,27,69","w":132},"\u00bb":{"d":"66,-58v-22,9,-37,30,-42,58r-15,0v0,-31,9,-55,26,-69v-17,-14,-26,-40,-26,-70r15,0v5,28,20,49,42,58r0,23xm125,-58v-22,9,-38,30,-43,58r-15,0v0,-31,9,-55,26,-69v-17,-14,-26,-40,-26,-70r15,0v5,28,21,49,43,58r0,23","w":132},"\u00a0":{"w":23},"\u00c0":{"d":"123,0r-38,0r-7,-47r-34,0r-8,47r-35,0r40,-240r43,0xm74,-79r-12,-98r-14,98r26,0xm71,-253r-19,0r-25,-47r31,0","w":124},"\u00c3":{"d":"98,-296v10,16,1,40,-19,40v-17,0,-33,-29,-40,-9r0,8v-12,2,-17,-3,-17,-13v0,-16,7,-26,22,-26v17,-1,34,30,41,8r0,-8r13,0xm123,0r-38,0r-7,-47r-34,0r-8,47r-35,0r40,-240r43,0xm74,-79r-12,-98r-14,98r26,0","w":124},"\u00d5":{"d":"103,-296v10,15,1,40,-18,40v-17,0,-34,-29,-41,-9r0,8v-12,2,-17,-3,-17,-13v0,-16,7,-26,22,-26v14,0,27,16,35,16v8,0,6,-9,6,-16r13,0xm126,-187v0,78,27,191,-58,191v-84,0,-57,-114,-57,-191v0,-33,22,-57,57,-57v35,0,58,24,58,57xm87,-50r0,-140v0,-12,-7,-20,-19,-20v-12,0,-18,8,-18,20r0,140v0,12,6,20,18,20v12,0,19,-8,19,-20","w":136},"\u00ff":{"d":"98,-173r-35,183v-6,35,-16,52,-53,50r0,-27v24,5,23,-17,26,-36r-33,-170r31,0r17,120r17,-120r30,0xm84,-199r-25,0r0,-33r25,0r0,33xm43,-199r-25,0r0,-33r25,0r0,33","w":100},"\u00a4":{"d":"111,-92r-19,19r-29,-29r-28,29r-18,-19r28,-28r-28,-29r19,-18r28,28r28,-28r19,18r-29,28","w":127},"\u00b7":{"d":"40,-98r-30,0r0,-43r30,0r0,43","w":49},"\u00c2":{"d":"103,-265v3,11,-8,12,-14,12v-13,0,-22,-9,-26,-26v-5,22,-20,31,-40,23r0,-9v11,0,23,-10,28,-33r24,0v5,23,17,33,28,33xm123,0r-38,0r-7,-47r-34,0r-8,47r-35,0r40,-240r43,0xm74,-79r-12,-98r-14,98r26,0","w":124},"\u00ca":{"d":"100,-265v3,11,-8,12,-14,12v-13,0,-22,-9,-26,-26v-5,21,-20,31,-39,23r0,-9v11,0,22,-10,27,-33r24,0v5,23,17,33,28,33xm109,0r-96,0r0,-240r96,0r0,34r-58,0r0,66r40,0r0,32r-40,0r0,73r58,0r0,35","w":116},"\u00c1":{"d":"123,0r-38,0r-7,-47r-34,0r-8,47r-35,0r40,-240r43,0xm74,-79r-12,-98r-14,98r26,0xm96,-300r-25,47r-18,0r12,-47r31,0","w":124},"\u00cb":{"d":"109,0r-96,0r0,-240r96,0r0,34r-58,0r0,66r40,0r0,32r-40,0r0,73r58,0r0,35xm94,-259r-25,0r0,-33r25,0r0,33xm53,-259r-25,0r0,-33r25,0r0,33","w":116},"\u00c8":{"d":"109,0r-96,0r0,-240r96,0r0,34r-58,0r0,66r40,0r0,32r-40,0r0,73r58,0r0,35xm71,-253r-19,0r-25,-47r31,0","w":116},"\u00cd":{"d":"51,0r-38,0r0,-240r38,0r0,240xm65,-300r-25,47r-18,0r12,-47r31,0","w":65},"\u00ce":{"d":"73,-265v3,11,-8,12,-14,12v-13,0,-22,-9,-26,-26v-5,21,-20,31,-39,23r0,-9v11,0,22,-10,27,-33r24,0v5,23,17,33,28,33xm51,0r-38,0r0,-240r38,0r0,240","w":65},"\u00cf":{"d":"51,0r-38,0r0,-240r38,0r0,240xm65,-259r-25,0r0,-33r25,0r0,33xm24,-259r-25,0r0,-33r25,0r0,33","w":65},"\u00cc":{"d":"51,0r-38,0r0,-240r38,0r0,240xm42,-253r-19,0r-25,-47r31,0","w":65},"\u00d3":{"d":"126,-187v0,78,27,191,-58,191v-84,0,-57,-114,-57,-191v0,-33,22,-57,57,-57v35,0,58,24,58,57xm87,-50r0,-140v0,-12,-7,-20,-19,-20v-12,0,-18,8,-18,20r0,140v0,12,6,20,18,20v12,0,19,-8,19,-20xm101,-300r-25,47r-18,0r12,-47r31,0","w":136},"\u00d4":{"d":"109,-265v3,11,-8,12,-14,12v-13,0,-23,-9,-27,-26v-5,21,-20,31,-39,23r0,-9v11,0,23,-10,28,-33r24,0v5,23,17,33,28,33xm126,-187v0,78,27,191,-58,191v-84,0,-57,-114,-57,-191v0,-33,22,-57,57,-57v35,0,58,24,58,57xm87,-50r0,-140v0,-12,-7,-20,-19,-20v-12,0,-18,8,-18,20r0,140v0,12,6,20,18,20v12,0,19,-8,19,-20","w":136},"\u00d2":{"d":"126,-187v0,78,27,191,-58,191v-84,0,-57,-114,-57,-191v0,-33,22,-57,57,-57v35,0,58,24,58,57xm87,-50r0,-140v0,-12,-7,-20,-19,-20v-12,0,-18,8,-18,20r0,140v0,12,6,20,18,20v12,0,19,-8,19,-20xm78,-253r-19,0r-25,-47r31,0","w":136},"\u00da":{"d":"125,-50v0,32,-24,54,-56,54v-32,0,-56,-22,-56,-54r0,-190r38,0r0,191v0,12,6,19,18,19v12,0,19,-7,19,-19r0,-191r37,0r0,190xm103,-300r-25,47r-18,0r12,-47r31,0","w":137},"\u00db":{"d":"111,-265v3,11,-9,12,-15,12v-13,0,-22,-9,-26,-26v-5,21,-20,31,-39,23r0,-9v11,0,22,-10,27,-33r24,0v5,23,18,33,29,33xm125,-50v0,32,-24,54,-56,54v-32,0,-56,-22,-56,-54r0,-190r38,0r0,191v0,12,6,19,18,19v12,0,19,-7,19,-19r0,-191r37,0r0,190","w":137},"\u00d9":{"d":"125,-50v0,32,-24,54,-56,54v-32,0,-56,-22,-56,-54r0,-190r38,0r0,191v0,12,6,19,18,19v12,0,19,-7,19,-19r0,-191r37,0r0,190xm80,-253r-19,0r-25,-47r31,0","w":137},"\u00af":{"d":"73,-204r-69,0r0,-21r69,0r0,21","w":76},"\u00b8":{"d":"58,47v0,19,-22,33,-39,24v-5,-18,24,-2,17,-29v1,-14,-16,-13,-23,-5r-10,-7r25,-36r10,6r-16,23v18,-7,36,5,36,24","w":55}}});Cufon.registerFont({"w":131,"face":{"font-family":"knockout49","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"3","bbox":"-11 -303.135 237 82.766","underline-thickness":"7.2","underline-position":"-47.88","stemh":"31","stemv":"37","unicode-range":"U+0020-U+017E"},"glyphs":{" ":{"w":55},"\u00d0":{"d":"71,-135r22,0r0,30r-22,0r0,67v26,2,45,-1,45,-27r0,-110v2,-25,-20,-28,-45,-26r0,66xm26,-105r-26,0r0,-30r26,0r0,-105r69,0v85,-2,65,98,65,177v0,38,-23,63,-65,63r-69,0r0,-105","w":173},"\u00f0":{"d":"65,-28v33,0,17,-63,17,-95v0,-12,-7,-21,-17,-21v-10,0,-16,7,-16,21r0,78v0,10,7,17,16,17xm72,-194r-15,11r-10,-16r13,-9v-8,-6,-18,-11,-30,-11r0,-21v23,-1,42,5,55,14r17,-13r9,17r-12,9v33,35,21,100,21,161v0,35,-24,55,-55,55v-30,0,-53,-20,-53,-55v1,-50,-11,-120,37,-121v15,0,23,5,33,17v0,-14,-3,-27,-10,-38"},"\u0141":{"d":"78,-118r0,78r67,0r0,40r-112,0r0,-90r-27,17r-7,-18r34,-22r0,-127r45,0r0,99r25,-17r8,18","w":142},"\u0142":{"d":"96,-158r-32,32r0,126r-38,0r0,-89r-21,21r-11,-16r32,-32r0,-124r38,0r0,87r21,-21","w":90},"\u0160":{"d":"121,-290v-13,0,-25,11,-31,34r-30,0v-6,-23,-17,-34,-30,-34r0,-10v22,-9,41,2,46,25v5,-24,23,-33,45,-25r0,10xm54,-186v0,44,87,69,87,125v0,39,-26,66,-66,66v-47,-1,-70,-30,-66,-78r41,0v-2,23,3,42,24,41v16,0,24,-9,24,-24v-2,-46,-87,-67,-87,-124v0,-35,22,-65,65,-65v43,1,67,30,63,77r-40,0v12,-40,-45,-56,-45,-18","w":150},"\u0161":{"d":"107,-231v-13,0,-25,11,-31,34r-30,0v-6,-23,-18,-34,-31,-34r0,-11v24,-7,42,2,47,26v5,-23,22,-33,45,-26r0,11xm46,-131v0,31,67,39,67,85v0,25,-16,49,-51,49v-37,-1,-55,-23,-53,-59r32,0v-10,31,36,41,37,13v2,-32,-67,-40,-67,-84v0,-30,22,-49,51,-49v34,0,51,22,49,56r-31,0v1,-15,-2,-25,-18,-25v-10,0,-16,5,-16,14","w":121},"\u00dd":{"d":"151,-240r-54,142r0,98r-45,0r0,-98r-53,-142r47,0r31,98r30,-98r44,0xm115,-303r-29,49r-21,0r13,-49r37,0","w":149},"\u00fd":{"d":"118,-173r-42,178v-8,37,-19,56,-63,53r0,-29v25,4,27,-13,30,-32r-40,-170r37,0r21,119r21,-119r36,0xm100,-244r-29,49r-21,0r13,-49r37,0","w":119},"\u00de":{"d":"144,-145v0,66,-13,105,-84,94r0,51r-45,0r0,-240r45,0r0,41v49,-4,84,8,84,54xm85,-86v24,0,12,-37,15,-59v2,-23,-21,-18,-40,-18r0,77r25,0","w":151},"\u00fe":{"d":"122,-131v-2,52,14,132,-36,134v-15,0,-25,-5,-34,-17r0,71r-38,0r0,-297r38,0r0,81v22,-32,72,-16,70,28xm69,-28v30,0,16,-65,16,-96v0,-13,-6,-20,-16,-20v-32,0,-17,64,-17,96v0,12,7,20,17,20","w":134},"\u017d":{"d":"118,-290v-13,0,-25,11,-31,34r-30,0v-6,-23,-17,-34,-30,-34r0,-10v23,-8,41,1,46,25v5,-23,23,-34,45,-25r0,10xm136,-226r-76,186r74,0r0,40r-129,0r0,-14r78,-187r-73,0r0,-39r126,0r0,14","w":142},"\u017e":{"d":"103,-231v-13,0,-25,11,-31,34r-30,0v-6,-23,-17,-34,-30,-34r0,-11v24,-7,41,2,46,26v5,-23,22,-33,45,-26r0,11xm104,-154r-56,120r55,0r0,34r-97,0r0,-18r58,-122r-54,0r0,-33r94,0r0,19","w":111},"!":{"d":"54,-240v1,63,0,124,-13,173r-13,0v-13,-49,-15,-109,-13,-173r39,0xm51,0r-33,0r0,-42r33,0r0,42","w":69},"\"":{"d":"95,-240r-27,73r-21,0r19,-73r29,0xm49,-240r-21,73r-20,0r12,-73r29,0","w":92},"#":{"d":"202,-154r-47,0r-12,69r49,0r0,21r-53,0r-10,64r-24,0r11,-64r-45,0r-11,64r-23,0r11,-64r-43,0r0,-21r46,0r12,-69r-48,0r0,-22r52,0r11,-64r24,0r-11,64r44,0r11,-64r24,0r-11,64r43,0r0,22xm132,-154r-45,0r-12,69r45,0","w":204},"$":{"d":"99,-56v0,-45,-84,-67,-84,-124v0,-30,16,-56,46,-63r0,-28r30,0r0,27v34,7,52,35,48,76r-38,0v2,-22,-2,-41,-23,-41v-12,0,-21,8,-21,23v0,49,83,65,83,127v0,32,-19,57,-49,63r0,28r-30,0r0,-28v-36,-6,-52,-34,-49,-77r38,0v-13,44,49,58,49,17","w":150},"%":{"d":"196,-81v2,41,4,87,-37,87v-40,0,-38,-46,-36,-87v0,-23,15,-37,36,-37v21,0,37,14,37,37xm159,-14v25,0,13,-48,13,-73v0,-7,-6,-11,-13,-11v-22,5,-11,49,-11,72v0,7,4,12,11,12xm186,-236r-150,244r-15,-12r150,-243xm83,-208v1,41,5,87,-36,87v-40,0,-37,-46,-36,-87v0,-23,15,-37,36,-37v21,0,36,14,36,37xm47,-141v24,0,12,-48,12,-72v0,-7,-5,-12,-12,-12v-24,0,-12,48,-12,72v0,7,5,12,12,12","w":205},"&":{"d":"197,-58v3,35,-4,65,-36,63v-13,0,-27,-6,-39,-18v-39,37,-111,13,-111,-44v0,-32,18,-56,44,-74v-26,-47,-9,-114,45,-114v32,0,48,23,48,53v0,29,-17,50,-48,71v7,18,17,40,26,54v10,-17,17,-40,17,-57r31,0v0,27,-10,60,-27,84v8,10,27,17,28,-2r0,-16r22,0xm114,-190v0,-12,-4,-19,-14,-19v-25,2,-21,38,-12,60v18,-13,26,-29,26,-41xm99,-39v-12,-16,-23,-37,-31,-57v-22,15,-23,67,12,65v8,0,14,-4,19,-8","w":200},"'":{"d":"62,-240r-29,73r-21,0r14,-73r36,0","w":59},"(":{"d":"115,48r-11,12v-99,-76,-99,-260,0,-336r11,11v-63,63,-64,250,0,313","w":113},")":{"d":"10,-276v99,76,100,260,0,336r-11,-12v65,-63,64,-250,0,-313","w":113},"*":{"d":"68,-192v19,6,40,12,25,29v-12,5,-19,-10,-31,-18v2,15,9,30,0,36v-7,-1,-19,2,-18,-5v0,-8,1,-18,4,-31v-14,13,-30,30,-38,7v3,-12,18,-11,31,-18v-20,-6,-40,-12,-24,-29v11,-4,18,9,31,17v-2,-15,-9,-30,0,-36v7,1,18,-3,17,6v0,8,-1,17,-4,30v15,-12,30,-30,38,-6v-3,12,-18,11,-31,18","w":109},"+":{"d":"112,-108r-36,0r0,38r-29,0r0,-38r-36,0r0,-30r36,0r0,-37r29,0r0,37r36,0r0,30","w":123},",":{"d":"49,-46v1,40,4,80,-38,80r0,-10v12,0,20,-8,20,-24r-17,0r0,-46r35,0","w":63},"-":{"d":"84,-95r-75,0r0,-30r75,0r0,30","w":93},".":{"d":"49,0r-35,0r0,-46r35,0r0,46","w":63},"\/":{"d":"93,-262r-67,285r-25,0r67,-285r25,0","w":93},"0":{"d":"142,-57v0,37,-25,62,-64,62v-39,0,-64,-25,-64,-62r0,-126v0,-37,25,-62,64,-62v39,0,64,25,64,62r0,126xm101,-54r0,-132v0,-12,-9,-21,-23,-21v-14,0,-23,9,-23,21r0,132v0,12,9,21,23,21v14,0,23,-9,23,-21","w":155},"1":{"d":"65,0r-41,0r0,-221v14,0,18,-9,18,-19r23,0r0,240","w":88},"2":{"d":"134,-183v13,41,-82,103,-79,145r77,0r0,38r-123,0v-1,-51,5,-68,49,-119v25,-29,36,-44,36,-65v0,-16,-8,-24,-22,-24v-23,-1,-23,23,-22,47r-37,0v-4,-49,9,-84,59,-84v45,0,62,29,62,62","w":142},"3":{"d":"132,-83v0,54,-12,88,-63,88v-48,0,-62,-33,-58,-79r37,0v-1,22,1,42,22,42v27,0,19,-32,21,-57v1,-16,-19,-17,-36,-16r0,-32v18,1,37,1,36,-17v-2,-24,5,-54,-21,-54v-21,0,-24,20,-22,43r-37,0v-3,-46,9,-80,58,-80v48,0,63,31,63,82v0,21,-10,36,-28,40v17,5,28,19,28,40","w":142},"4":{"d":"138,-51r-20,0r0,51r-38,0r0,-51r-76,0r0,-30r79,-159r35,0r0,154r20,0r0,35xm80,-86r0,-76r-37,76r37,0","w":141},"5":{"d":"133,-240v1,50,-37,36,-78,38r-4,60v20,-32,82,-22,82,26v0,64,2,123,-63,121v-47,-3,-62,-33,-58,-77r37,0v-2,22,2,40,22,40v33,0,22,-47,22,-77v0,-31,-40,-20,-43,0r-36,-6r7,-125r112,0","w":143},"6":{"d":"139,-101v5,59,-5,107,-62,106v-39,0,-63,-25,-63,-62r0,-125v0,-38,25,-63,64,-63v46,0,63,33,59,76r-37,0v2,-22,-2,-39,-23,-39v-34,0,-18,50,-22,81v19,-31,91,-21,84,26xm77,-32v31,1,20,-36,22,-63v0,-12,-7,-21,-22,-21v-30,-1,-21,35,-22,62v0,13,9,22,22,22","w":150},"7":{"d":"133,-219v-38,76,-58,139,-59,219r-46,0v1,-68,31,-147,63,-201r-82,0r0,-39r124,0r0,21","w":136},"8":{"d":"140,-82v0,54,-13,87,-64,87v-50,0,-63,-34,-63,-87v0,-18,9,-33,23,-39v-44,-25,-29,-131,40,-124v49,5,63,32,63,84v0,19,-8,34,-22,40v14,6,23,21,23,39xm76,-132v28,-1,23,-27,23,-53v0,-14,-10,-23,-23,-23v-25,-1,-24,28,-23,54v0,11,8,22,23,22xm76,-32v27,2,24,-30,23,-56v0,-11,-8,-21,-23,-21v-29,0,-23,29,-23,55v0,14,10,22,23,22","w":152},"9":{"d":"139,-57v0,37,-25,62,-64,62v-45,0,-65,-29,-61,-72r36,0v-2,22,5,36,25,35v37,1,19,-46,23,-77v-18,33,-93,19,-85,-27v-5,-61,5,-109,63,-109v88,0,63,108,63,188xm76,-120v32,0,20,-38,22,-66v0,-12,-7,-22,-22,-22v-32,-1,-22,40,-22,68v0,12,7,20,22,20","w":153},":":{"d":"49,-112r-35,0r0,-46r35,0r0,46xm49,0r-35,0r0,-46r35,0r0,46","w":63},";":{"d":"49,-112r-35,0r0,-46r35,0r0,46xm49,-46v1,40,4,80,-38,80r0,-10v12,0,20,-8,20,-24r-17,0r0,-46r35,0","w":63},"<":{"d":"140,-36r-122,-79r0,-10r122,-79r0,37r-71,47r71,48r0,36","w":167},"=":{"d":"111,-137r-101,0r0,-31r101,0r0,31xm111,-77r-101,0r0,-31r101,0r0,31","w":120},">":{"d":"149,-115r-122,79r0,-37r72,-47r-72,-47r0,-37r122,79r0,10","w":167},"?":{"d":"44,-70v-8,-39,42,-72,42,-112v0,-19,-7,-26,-21,-26v-23,-1,-22,24,-21,47r-37,0v-4,-49,9,-84,58,-84v82,0,72,93,25,132v-16,13,-18,26,-18,43r-28,0xm74,0r-34,0r0,-42r34,0r0,42","w":132},"@":{"d":"219,-129v0,39,-21,76,-61,76v-19,0,-32,-12,-31,-29v-14,36,-67,35,-67,-11v0,-31,24,-73,57,-73v13,0,23,8,24,20r6,-17r27,0r-22,68v-5,15,-1,26,13,26v20,0,36,-23,36,-60v0,-49,-35,-83,-84,-83v-53,0,-90,45,-90,101v0,86,95,129,152,77r10,12v-66,61,-180,11,-180,-89v0,-66,47,-117,108,-117v71,0,102,56,102,99xm127,-102v4,-15,20,-47,-5,-47v-22,0,-35,36,-35,55v0,13,6,19,15,19v12,0,21,-12,25,-27","w":227},"A":{"d":"147,0r-45,0r-8,-47r-43,0r-8,47r-42,0r48,-240r50,0xm88,-82r-14,-93r-16,93r30,0","w":148},"B":{"d":"144,-82v0,48,-7,82,-53,82r-76,0r0,-240v59,0,128,-12,128,51v0,33,2,61,-28,66v22,6,29,21,29,41xm83,-137v23,2,15,-28,17,-49v2,-21,-21,-17,-40,-17r0,66r23,0xm86,-37v22,1,13,-29,15,-48v2,-23,-21,-19,-41,-19r0,67r26,0","w":156},"C":{"d":"147,-86v5,54,-11,90,-65,91v-43,0,-69,-28,-69,-65r0,-119v0,-37,26,-66,69,-66v54,1,70,37,65,92r-40,0v0,-26,4,-54,-24,-53v-16,0,-25,10,-25,23r0,126v0,13,9,23,25,23v27,1,25,-26,24,-52r40,0","w":156},"D":{"d":"150,-175v0,78,21,178,-65,175r-70,0r0,-240r70,0v42,0,65,27,65,65xm105,-65r0,-110v2,-26,-20,-28,-45,-26r0,162v25,1,45,0,45,-26","w":163},"E":{"d":"130,0r-115,0r0,-240r115,0r0,39r-70,0r0,59r48,0r0,35r-48,0r0,67r70,0r0,40","w":138},"F":{"d":"127,-202r-67,0r0,63r50,0r0,37r-50,0r0,102r-45,0r0,-240r112,0r0,38","w":132},"G":{"d":"149,0r-24,0r-7,-19v-25,48,-110,18,-105,-38v8,-83,-25,-189,68,-188v53,1,72,35,67,87r-43,0v0,-25,4,-48,-23,-48v-16,0,-24,10,-24,22r0,128v0,12,9,23,24,23v29,0,24,-29,24,-56r-24,0r0,-33r67,0r0,122","w":160},"H":{"d":"155,0r-45,0r0,-98r-50,0r0,98r-45,0r0,-240r45,0r0,102r50,0r0,-102r45,0r0,240","w":170},"I":{"d":"60,0r-45,0r0,-240r45,0r0,240","w":75},"J":{"d":"135,-59v0,38,-23,64,-64,64v-55,1,-69,-42,-64,-100r43,0v1,25,-7,63,20,61v13,0,20,-7,20,-22r0,-184r45,0r0,181","w":149},"K":{"d":"156,0r-47,0r-33,-99r-16,32r0,67r-45,0r0,-240r45,0r0,110r48,-110r45,0r-47,101","w":158},"L":{"d":"127,0r-112,0r0,-240r45,0r0,200r67,0r0,40"},"M":{"d":"200,0r-42,0r0,-174r-35,174r-34,0r-34,-174r0,174r-40,0r0,-240r61,0r32,166r32,-166r60,0r0,240","w":215},"N":{"d":"154,0r-34,0r-64,-140r0,140r-41,0r0,-240r39,0r60,142r0,-142r40,0r0,240","w":169},"O":{"d":"149,-60v0,38,-26,65,-68,65v-42,0,-68,-27,-68,-65r0,-120v0,-38,26,-65,68,-65v42,0,68,27,68,65r0,120xm104,-57r0,-126v0,-14,-8,-23,-23,-23v-14,0,-23,9,-23,23r0,126v0,14,9,23,23,23v15,0,23,-9,23,-23","w":162},"P":{"d":"144,-186v0,66,-13,105,-84,94r0,92r-45,0r0,-240v61,0,129,-11,129,54xm85,-126v24,0,12,-37,15,-59v2,-23,-21,-18,-40,-18r0,77r25,0","w":151},"Q":{"d":"163,0v-11,9,-39,5,-47,-5v-42,27,-103,-3,-103,-54r0,-122v0,-36,26,-64,68,-64v42,0,68,28,68,64v0,49,7,109,-6,148v4,4,9,5,20,5r0,28xm104,-65r0,-119v0,-12,-8,-22,-23,-22v-14,0,-23,10,-23,22r0,129v-2,17,21,26,36,18r-10,-9","w":162},"R":{"d":"153,1v-32,3,-51,-1,-51,-35v0,-26,10,-64,-18,-65r-24,0r0,99r-45,0r0,-240v60,0,129,-10,129,52v0,35,4,63,-27,71v46,9,15,72,36,105r0,13xm83,-132v24,1,15,-32,17,-54v2,-21,-21,-17,-40,-17r0,71r23,0","w":158},"S":{"d":"54,-186v0,44,87,69,87,125v0,39,-26,66,-66,66v-47,-1,-70,-30,-66,-78r41,0v-2,23,3,42,24,41v16,0,24,-9,24,-24v-2,-46,-87,-67,-87,-124v0,-35,22,-65,65,-65v43,1,67,30,63,77r-40,0v12,-40,-45,-56,-45,-18","w":150},"T":{"d":"137,-200r-44,0r0,200r-45,0r0,-200r-44,0r0,-40r133,0r0,40","w":140},"U":{"d":"149,-55v0,36,-28,60,-67,60v-39,0,-67,-24,-67,-60r0,-185r45,0r0,185v0,14,8,22,22,22v15,0,23,-8,23,-22r0,-185r44,0r0,185","w":163},"V":{"d":"151,-240r-53,240r-44,0r-52,-240r46,0r29,165r30,-165r44,0","w":151},"W":{"d":"218,-240r-44,240r-40,0r-24,-141r-26,141r-39,0r-43,-240r44,0r22,159r27,-159r34,0r25,159r23,-159r41,0","w":219},"X":{"d":"151,0r-47,0r-28,-83r-30,83r-44,0r49,-121r-46,-119r47,0r26,83r29,-83r44,0r-48,115","w":154},"Y":{"d":"151,-240r-54,142r0,98r-45,0r0,-98r-53,-142r47,0r31,98r30,-98r44,0","w":149},"Z":{"d":"136,-226r-76,186r74,0r0,40r-129,0r0,-14r78,-187r-73,0r0,-39r126,0r0,14","w":142},"[":{"d":"104,54r-71,0r0,-325r71,0r0,27r-41,0r0,271r41,0r0,27","w":104},"\\":{"d":"93,23r-24,0r-67,-285r24,0","w":93},"]":{"d":"71,54r-71,0r0,-27r42,0r0,-271r-42,0r0,-27r71,0r0,325","w":104},"^":{"d":"95,-195v-23,7,-41,-3,-46,-26v-6,22,-21,33,-44,26r0,-11v13,0,24,-11,30,-34r30,0v6,23,17,34,30,34r0,11","w":99},"_":{"d":"121,31r-121,0r0,-31r121,0r0,31","w":121},"`":{"d":"55,-195r-22,0r-28,-49r36,0","w":65},"a":{"d":"122,3v-20,1,-32,-4,-37,-22v-19,37,-77,26,-77,-27v0,-35,29,-49,69,-59v-1,-18,5,-40,-15,-40v-15,0,-14,14,-14,29r-34,0v-2,-36,11,-59,50,-60v69,-1,46,81,50,143v0,6,2,9,8,9r0,27xm58,-26v24,0,19,-31,19,-55v-27,7,-35,15,-33,39v0,9,5,16,14,16","w":129},"b":{"d":"122,-130v-4,54,15,133,-40,133v-15,0,-29,-7,-36,-23r-5,20r-27,0r0,-240r38,0r0,87v17,-37,73,-25,70,23xm69,-27v30,0,16,-65,16,-96v0,-14,-6,-21,-16,-21v-32,0,-17,65,-17,97v0,13,8,20,17,20","w":134},"c":{"d":"115,-64v3,41,-14,67,-50,67v-31,0,-53,-21,-53,-56v0,-59,-4,-125,53,-123v36,1,53,27,50,67r-32,0v1,-18,0,-38,-17,-36v-32,4,-17,65,-17,98v0,12,6,19,17,19v18,1,18,-18,17,-36r32,0","w":124},"d":{"d":"120,0r-29,0r-2,-20v-18,41,-80,23,-77,-25v3,-52,-12,-130,38,-131v15,0,23,6,32,17r0,-81r38,0r0,240xm66,-27v30,0,16,-66,16,-98v0,-12,-6,-20,-16,-20v-31,0,-17,65,-17,97v0,13,7,21,17,21","w":134},"e":{"d":"117,-63v3,40,-16,65,-52,66v-58,1,-53,-65,-53,-124v0,-32,22,-55,53,-55v46,0,57,42,52,93r-68,0v2,22,-7,55,17,55v19,0,16,-18,16,-35r35,0xm82,-101v0,-19,4,-44,-16,-44v-20,0,-17,24,-17,44r33,0","w":127},"f":{"d":"87,-140r-23,0r0,140r-38,0r0,-140r-20,0r0,-31r20,0v-3,-46,14,-73,62,-69r0,30v-26,-3,-26,15,-25,39r24,0r0,31","w":90},"g":{"d":"132,-192v6,25,-7,45,-29,34v34,32,11,108,-49,93v-8,0,-13,6,-13,12v0,7,7,12,30,12v43,1,55,17,55,51v0,30,-22,50,-59,50v-54,0,-83,-56,-36,-78v-30,-9,-25,-48,5,-53v-48,-25,-17,-129,50,-102v15,0,18,-8,18,-19r28,0xm66,-90v18,0,17,-21,16,-39v0,-10,-6,-18,-16,-18v-19,0,-17,20,-17,39v0,10,6,18,17,18xm68,30v21,-1,25,-8,24,-26v0,-10,-6,-17,-24,-17v-21,1,-27,8,-25,26v0,10,8,17,25,17"},"h":{"d":"123,0r-38,0r0,-127v0,-10,-6,-18,-15,-18v-11,0,-18,15,-18,24r0,121r-38,0r0,-240r38,0r0,91v14,-41,71,-33,71,17r0,132","w":136},"i":{"d":"51,-196r-36,0r0,-36r36,0r0,36xm52,0r-38,0r0,-173r38,0r0,173","w":66},"j":{"d":"51,-196r-36,0r0,-36r36,0r0,36xm52,6v1,36,-18,55,-60,52r0,-29v16,1,22,-3,22,-16r0,-186r38,0r0,179","w":66},"k":{"d":"127,0r-37,0r-24,-70v-11,16,-15,40,-13,70r-39,0r0,-240r39,0r0,147r34,-80r37,0r-34,74","w":130},"l":{"d":"52,0r-38,0r0,-240r38,0r0,240","w":66},"m":{"d":"184,0r-37,0r0,-128v0,-9,-5,-16,-13,-16v-11,0,-16,15,-16,24r0,120r-38,0r0,-129v0,-9,-4,-16,-12,-16v-11,0,-16,15,-16,24r0,121r-38,0r0,-173r33,0r3,28v9,-39,57,-42,65,-2v11,-45,69,-36,69,15r0,132","w":197},"n":{"d":"123,0r-38,0r0,-127v0,-10,-5,-18,-14,-18v-12,0,-19,15,-19,24r0,121r-38,0r0,-173r33,0r2,28v7,-21,21,-31,37,-31v24,0,37,18,37,44r0,132","w":136},"o":{"d":"118,-120v0,58,5,123,-52,123v-58,0,-54,-63,-54,-123v0,-34,22,-56,54,-56v31,0,52,22,52,56xm82,-45r0,-82v0,-10,-6,-18,-16,-18v-33,0,-17,66,-17,100v0,10,7,17,17,17v10,0,16,-7,16,-17","w":130},"p":{"d":"122,-128v-4,51,13,129,-36,131v-15,0,-25,-5,-34,-17r0,71r-38,0r0,-230r30,0r2,20v18,-41,80,-24,76,25xm69,-28v30,0,16,-65,16,-97v0,-14,-6,-20,-16,-20v-31,0,-17,65,-17,97v0,12,7,20,17,20","w":134},"q":{"d":"120,57r-38,0r0,-76v-16,36,-72,25,-70,-22v3,-55,-16,-135,41,-135v15,0,29,7,36,23r4,-19r27,0r0,229xm66,-28v30,-6,16,-65,16,-97v0,-13,-7,-20,-16,-20v-31,0,-17,64,-17,96v0,13,7,21,17,21","w":134},"r":{"d":"93,-135v-30,-4,-41,7,-41,22r0,113r-38,0r0,-173r32,0r3,30v7,-26,23,-35,44,-31r0,39","w":97},"s":{"d":"46,-131v0,31,67,39,67,85v0,25,-16,49,-51,49v-37,-1,-55,-23,-53,-59r32,0v-10,31,36,41,37,13v2,-32,-67,-40,-67,-84v0,-30,22,-49,51,-49v34,0,51,22,49,56r-31,0v1,-15,-2,-25,-18,-25v-10,0,-16,5,-16,14","w":120},"t":{"d":"85,-140r-23,0v2,48,-6,105,9,140r-39,0v-15,-32,-7,-94,-9,-140r-19,0r0,-31r21,0r0,-30r37,-10r0,40r23,0r0,31","w":88},"u":{"d":"123,0r-32,0r-2,-26v-13,43,-75,37,-75,-14r0,-133r38,0r0,128v0,10,6,17,15,17v11,0,18,-14,18,-23r0,-122r38,0r0,173","w":137},"v":{"d":"117,-173r-41,173r-33,0r-41,-173r37,0r22,119r21,-119r35,0","w":119},"w":{"d":"175,-173r-37,173r-30,0r-19,-103r-20,103r-30,0r-37,-173r37,0r17,120v4,-42,12,-80,19,-120r30,0r18,120v4,-42,12,-80,18,-120r34,0","w":176},"x":{"d":"120,0r-38,0r-20,-57r-21,57r-38,0r38,-86r-38,-87r38,0r21,57r20,-57r38,0r-38,84","w":123},"y":{"d":"118,-173r-42,178v-8,37,-19,56,-63,53r0,-29v25,4,27,-13,30,-32r-40,-170r37,0r21,119r21,-119r36,0","w":119},"z":{"d":"104,-154r-56,120r55,0r0,34r-97,0r0,-18r58,-122r-54,0r0,-33r94,0r0,19","w":111},"{":{"d":"95,54v-43,4,-67,-18,-67,-50v0,-37,29,-65,29,-84v0,-16,-16,-19,-36,-18r0,-21v19,1,36,-1,36,-17v0,-19,-29,-47,-29,-84v-1,-32,24,-55,67,-51r0,26v-61,-5,-11,73,-11,98v0,19,-9,32,-33,37v62,14,15,68,12,114v-1,18,12,26,32,24r0,26","w":111},"|":{"d":"39,23r-24,0r0,-285r24,0r0,285","w":54},"}":{"d":"91,-98v-20,-1,-36,2,-36,18v0,19,29,47,29,84v1,31,-24,55,-67,50r0,-26v86,-4,-44,-124,43,-138v-60,-15,-15,-66,-11,-111v2,-19,-12,-26,-32,-24r0,-26v43,-4,67,18,67,51v0,37,-29,65,-29,84v0,16,17,18,36,17r0,21","w":111},"~":{"d":"94,-141v10,18,2,43,-22,43v-17,0,-32,-17,-41,-17v-8,0,-7,9,-7,17r-15,0v-10,-18,-2,-43,22,-43v17,0,31,16,40,16v8,0,8,-8,8,-16r15,0","w":102},"\u00c4":{"d":"147,0r-45,0r-8,-47r-43,0r-8,47r-42,0r48,-240r50,0xm88,-82r-14,-93r-16,93r30,0xm112,-261r-29,0r0,-35r29,0r0,35xm65,-261r-30,0r0,-35r30,0r0,35","w":148},"\u00c5":{"d":"88,-82r-14,-93r-16,93r30,0xm89,-261v0,-10,-6,-17,-15,-17v-9,0,-14,7,-14,17v0,10,5,16,14,16v9,0,15,-6,15,-16xm56,-240v-21,-14,-9,-51,18,-51v27,0,40,37,18,51r7,0r48,240r-45,0r-8,-47r-43,0r-8,47r-42,0r48,-240r7,0","w":148},"\u00c7":{"d":"68,4v-76,-10,-55,-105,-55,-183v0,-37,26,-66,69,-66v54,1,70,37,65,92r-40,0v0,-26,4,-54,-24,-53v-16,0,-25,10,-25,23r0,126v0,13,9,23,25,23v27,1,25,-26,24,-52r40,0v4,54,-10,89,-63,91r-14,20v20,-10,42,6,42,28v0,21,-26,36,-46,27v-6,-21,27,-3,20,-34v0,-15,-21,-15,-28,-4r-12,-9","w":156},"\u00c9":{"d":"130,0r-115,0r0,-240r115,0r0,39r-70,0r0,59r48,0r0,35r-48,0r0,67r70,0r0,40xm107,-303r-29,49r-21,0r13,-49r37,0","w":138},"\u00d1":{"d":"126,-302v12,18,2,44,-22,44v-17,0,-31,-17,-40,-17v-8,0,-7,8,-7,16v-13,2,-20,-2,-20,-14v0,-17,8,-29,26,-29v17,0,32,17,41,17v8,0,7,-9,7,-17r15,0xm154,0r-34,0r-64,-140r0,140r-41,0r0,-240r39,0r60,142r0,-142r40,0r0,240","w":169},"\u00d6":{"d":"149,-60v0,38,-26,65,-68,65v-42,0,-68,-27,-68,-65r0,-120v0,-38,26,-65,68,-65v42,0,68,27,68,65r0,120xm104,-57r0,-126v0,-14,-8,-23,-23,-23v-14,0,-23,9,-23,23r0,126v0,14,9,23,23,23v15,0,23,-9,23,-23xm120,-261r-29,0r0,-35r29,0r0,35xm73,-261r-30,0r0,-35r30,0r0,35","w":162},"\u00dc":{"d":"149,-55v0,36,-28,60,-67,60v-39,0,-67,-24,-67,-60r0,-185r45,0r0,185v0,14,8,22,22,22v15,0,23,-8,23,-22r0,-185r44,0r0,185xm122,-261r-29,0r0,-35r29,0r0,35xm75,-261r-30,0r0,-35r30,0r0,35","w":163},"\u00e1":{"d":"122,3v-20,1,-32,-4,-37,-22v-19,37,-77,26,-77,-27v0,-35,29,-49,69,-59v-1,-18,5,-40,-15,-40v-15,0,-14,14,-14,29r-34,0v-2,-36,11,-59,50,-60v69,-1,46,81,50,143v0,6,2,9,8,9r0,27xm58,-26v24,0,19,-31,19,-55v-27,7,-35,15,-33,39v0,9,5,16,14,16xm102,-244r-29,49r-21,0r13,-49r37,0","w":129},"\u00e0":{"d":"122,3v-20,1,-32,-4,-37,-22v-19,37,-77,26,-77,-27v0,-35,29,-49,69,-59v-1,-18,5,-40,-15,-40v-15,0,-14,14,-14,29r-34,0v-2,-36,11,-59,50,-60v69,-1,46,81,50,143v0,6,2,9,8,9r0,27xm58,-26v24,0,19,-31,19,-55v-27,7,-35,15,-33,39v0,9,5,16,14,16xm75,-195r-22,0r-28,-49r36,0","w":129},"\u00e2":{"d":"111,-198v-24,7,-42,-2,-47,-26v-5,23,-22,33,-45,26r0,-10v13,0,25,-12,31,-35r30,0v6,23,18,35,31,35r0,10xm122,3v-20,1,-32,-4,-37,-22v-19,37,-77,26,-77,-27v0,-35,29,-49,69,-59v-1,-18,5,-40,-15,-40v-15,0,-14,14,-14,29r-34,0v-2,-36,11,-59,50,-60v69,-1,46,81,50,143v0,6,2,9,8,9r0,27xm58,-26v24,0,19,-31,19,-55v-27,7,-35,15,-33,39v0,9,5,16,14,16","w":129},"\u00e4":{"d":"122,3v-20,1,-32,-4,-37,-22v-19,37,-77,26,-77,-27v0,-35,29,-49,69,-59v-1,-18,5,-40,-15,-40v-15,0,-14,14,-14,29r-34,0v-2,-36,11,-59,50,-60v69,-1,46,81,50,143v0,6,2,9,8,9r0,27xm58,-26v24,0,19,-31,19,-55v-27,7,-35,15,-33,39v0,9,5,16,14,16xm101,-202r-29,0r0,-35r29,0r0,35xm54,-202r-30,0r0,-35r30,0r0,35","w":129},"\u00e3":{"d":"105,-243v10,18,2,44,-22,44v-17,0,-32,-18,-41,-18v-8,0,-7,9,-7,17v-13,2,-20,-4,-19,-15v0,-17,8,-28,26,-28v17,0,31,17,40,17v9,0,8,-8,8,-17r15,0xm122,3v-20,1,-32,-4,-37,-22v-19,37,-77,26,-77,-27v0,-35,29,-49,69,-59v-1,-18,5,-40,-15,-40v-15,0,-14,14,-14,29r-34,0v-2,-36,11,-59,50,-60v69,-1,46,81,50,143v0,6,2,9,8,9r0,27xm58,-26v24,0,19,-31,19,-55v-27,7,-35,15,-33,39v0,9,5,16,14,16","w":129},"\u00e5":{"d":"93,-224v0,15,-13,29,-30,29v-17,0,-29,-14,-29,-29v0,-16,12,-30,29,-30v17,0,30,14,30,30xm78,-224v0,-10,-6,-17,-15,-17v-9,0,-14,7,-14,17v0,10,5,16,14,16v9,0,15,-6,15,-16xm122,3v-20,1,-32,-4,-37,-22v-19,37,-77,26,-77,-27v0,-35,29,-49,69,-59v-1,-18,5,-40,-15,-40v-15,0,-14,14,-14,29r-34,0v-2,-36,11,-59,50,-60v69,-1,46,81,50,143v0,6,2,9,8,9r0,27xm58,-26v24,0,19,-31,19,-55v-27,7,-35,15,-33,39v0,9,5,16,14,16","w":129},"\u00e7":{"d":"51,1v-46,-6,-40,-68,-39,-121v0,-34,22,-56,53,-56v36,0,53,27,50,67r-32,0v1,-18,0,-38,-17,-36v-32,4,-17,65,-17,98v0,12,6,19,17,19v18,1,18,-18,17,-36r32,0v3,40,-13,66,-47,67r-17,22v21,-10,43,5,43,28v0,21,-26,36,-46,27v-6,-21,27,-3,20,-34v0,-15,-21,-15,-28,-4r-12,-9","w":124},"\u00e9":{"d":"117,-63v3,40,-16,65,-52,66v-58,1,-53,-65,-53,-124v0,-32,22,-55,53,-55v46,0,57,42,52,93r-68,0v2,22,-7,55,17,55v19,0,16,-18,16,-35r35,0xm82,-101v0,-19,4,-44,-16,-44v-20,0,-17,24,-17,44r33,0xm105,-244r-29,49r-21,0r13,-49r37,0","w":127},"\u00e8":{"d":"117,-63v3,40,-16,65,-52,66v-58,1,-53,-65,-53,-124v0,-32,22,-55,53,-55v46,0,57,42,52,93r-68,0v2,22,-7,55,17,55v19,0,16,-18,16,-35r35,0xm82,-101v0,-19,4,-44,-16,-44v-20,0,-17,24,-17,44r33,0xm77,-195r-22,0r-28,-49r36,0","w":127},"\u00ea":{"d":"110,-198v-24,7,-41,-2,-46,-26v-5,23,-22,33,-45,26r0,-10v13,0,24,-12,30,-35r30,0v6,23,18,35,31,35r0,10xm117,-63v3,40,-16,65,-52,66v-58,1,-53,-65,-53,-124v0,-32,22,-55,53,-55v46,0,57,42,52,93r-68,0v2,22,-7,55,17,55v19,0,16,-18,16,-35r35,0xm82,-101v0,-19,4,-44,-16,-44v-20,0,-17,24,-17,44r33,0","w":127},"\u00eb":{"d":"117,-63v3,40,-16,65,-52,66v-58,1,-53,-65,-53,-124v0,-32,22,-55,53,-55v46,0,57,42,52,93r-68,0v2,22,-7,55,17,55v19,0,16,-18,16,-35r35,0xm82,-101v0,-19,4,-44,-16,-44v-20,0,-17,24,-17,44r33,0xm103,-202r-29,0r0,-35r29,0r0,35xm56,-202r-30,0r0,-35r30,0r0,35","w":127},"\u00ed":{"d":"52,0r-38,0r0,-173r38,0r0,173xm73,-244r-29,49r-21,0r13,-49r37,0","w":66},"\u00ec":{"d":"52,0r-38,0r0,-173r38,0r0,173xm43,-195r-22,0r-28,-49r36,0","w":66},"\u00ee":{"d":"80,-198v-24,7,-42,-2,-47,-26v-5,23,-21,33,-44,26r0,-10v13,0,24,-12,30,-35r30,0v6,23,18,35,31,35r0,10xm52,0r-38,0r0,-173r38,0r0,173","w":66},"\u00ef":{"d":"52,0r-38,0r0,-173r38,0r0,173xm71,-202r-29,0r0,-35r29,0r0,35xm24,-202r-30,0r0,-35r30,0r0,35","w":66},"\u00f1":{"d":"108,-243v12,18,2,44,-22,44v-17,0,-31,-18,-40,-18v-8,0,-7,9,-7,17v-14,2,-20,-3,-20,-15v0,-17,8,-28,26,-28v17,0,32,17,41,17v8,0,7,-9,7,-17r15,0xm123,0r-38,0r0,-127v0,-10,-5,-18,-14,-18v-12,0,-19,15,-19,24r0,121r-38,0r0,-173r33,0r2,28v7,-21,21,-31,37,-31v24,0,37,18,37,44r0,132","w":136},"\u00f3":{"d":"118,-120v0,58,5,123,-52,123v-58,0,-54,-63,-54,-123v0,-34,22,-56,54,-56v31,0,52,22,52,56xm82,-45r0,-82v0,-10,-6,-18,-16,-18v-33,0,-17,66,-17,100v0,10,7,17,17,17v10,0,16,-7,16,-17xm105,-244r-29,49r-21,0r13,-49r37,0"},"\u00f2":{"d":"118,-120v0,58,5,123,-52,123v-58,0,-54,-63,-54,-123v0,-34,22,-56,54,-56v31,0,52,22,52,56xm82,-45r0,-82v0,-10,-6,-18,-16,-18v-33,0,-17,66,-17,100v0,10,7,17,17,17v10,0,16,-7,16,-17xm77,-195r-22,0r-28,-49r36,0"},"\u00f4":{"d":"113,-198v-24,7,-42,-2,-47,-26v-5,23,-21,33,-44,26r0,-10v13,0,24,-12,30,-35r30,0v6,23,18,35,31,35r0,10xm118,-120v0,58,5,123,-52,123v-58,0,-54,-63,-54,-123v0,-34,22,-56,54,-56v31,0,52,22,52,56xm82,-45r0,-82v0,-10,-6,-18,-16,-18v-33,0,-17,66,-17,100v0,10,7,17,17,17v10,0,16,-7,16,-17"},"\u00f6":{"d":"118,-120v0,58,5,123,-52,123v-58,0,-54,-63,-54,-123v0,-34,22,-56,54,-56v31,0,52,22,52,56xm82,-45r0,-82v0,-10,-6,-18,-16,-18v-33,0,-17,66,-17,100v0,10,7,17,17,17v10,0,16,-7,16,-17xm104,-202r-29,0r0,-35r29,0r0,35xm57,-202r-30,0r0,-35r30,0r0,35"},"\u00f5":{"d":"107,-243v10,18,2,44,-22,44v-17,0,-32,-18,-41,-18v-8,0,-7,9,-7,17r-15,0v-10,-18,-2,-43,22,-43v17,0,31,17,40,17v9,0,8,-8,8,-17r15,0xm118,-120v0,58,5,123,-52,123v-58,0,-54,-63,-54,-123v0,-34,22,-56,54,-56v31,0,52,22,52,56xm82,-45r0,-82v0,-10,-6,-18,-16,-18v-33,0,-17,66,-17,100v0,10,7,17,17,17v10,0,16,-7,16,-17"},"\u00fa":{"d":"123,0r-32,0r-2,-26v-13,43,-75,37,-75,-14r0,-133r38,0r0,128v0,10,6,17,15,17v11,0,18,-14,18,-23r0,-122r38,0r0,173xm107,-244r-29,49r-21,0r13,-49r37,0","w":137},"\u00f9":{"d":"123,0r-32,0r-2,-26v-13,43,-75,37,-75,-14r0,-133r38,0r0,128v0,10,6,17,15,17v11,0,18,-14,18,-23r0,-122r38,0r0,173xm80,-195r-22,0r-28,-49r36,0","w":137},"\u00fb":{"d":"115,-198v-24,7,-41,-2,-46,-26v-5,23,-22,33,-45,26r0,-10v13,0,24,-12,30,-35r30,0v6,23,18,35,31,35r0,10xm123,0r-32,0r-2,-26v-13,43,-75,37,-75,-14r0,-133r38,0r0,128v0,10,6,17,15,17v11,0,18,-14,18,-23r0,-122r38,0r0,173","w":137},"\u00fc":{"d":"123,0r-32,0r-2,-26v-13,43,-75,37,-75,-14r0,-133r38,0r0,128v0,10,6,17,15,17v11,0,18,-14,18,-23r0,-122r38,0r0,173xm107,-202r-29,0r0,-35r29,0r0,35xm60,-202r-30,0r0,-35r30,0r0,35","w":137},"\u00b0":{"d":"94,-202v0,23,-18,43,-44,43v-26,0,-44,-20,-44,-43v0,-23,18,-43,44,-43v26,0,44,20,44,43xm72,-202v0,-14,-8,-24,-22,-24v-14,0,-22,10,-22,24v0,14,8,24,22,24v14,0,22,-10,22,-24","w":99},"\u00a2":{"d":"55,-208r0,-32r27,0r0,33v25,7,39,30,36,64r-33,0v0,-18,2,-36,-16,-36v-10,0,-16,8,-16,18r0,81v0,11,6,18,16,18v18,1,16,-18,16,-35r33,0v2,35,-10,58,-36,65r0,32r-27,0r0,-32v-47,-7,-41,-69,-40,-123v0,-28,17,-48,40,-53","w":130},"\u00a3":{"d":"166,-72v3,44,-5,78,-47,77v-19,0,-37,-6,-49,-18v-16,28,-70,22,-70,-13v0,-28,38,-43,63,-28v9,-14,10,-35,1,-50r-44,0r0,-30r31,0v-22,-43,-11,-113,51,-111v48,2,60,34,57,77r-37,0v1,-20,-1,-40,-20,-39v-33,2,-18,53,-7,73r47,0r0,30r-38,0v6,26,-3,46,-17,64v14,12,46,16,44,-10r0,-22r35,0xm52,-30v-13,-18,-40,5,-16,10v6,0,13,-4,16,-10","w":173},"\u00a7":{"d":"147,-91v0,21,-9,37,-24,47v40,33,24,104,-43,102v-46,-1,-74,-23,-70,-67r40,0v-2,22,5,33,28,34v18,0,26,-7,26,-21v0,-33,-90,-46,-90,-101v0,-19,10,-35,24,-45v-40,-32,-25,-105,41,-103v46,1,66,27,64,66r-39,0v0,-19,1,-30,-23,-31v-16,0,-23,8,-23,19v0,32,89,46,89,100xm111,-81v0,-13,-12,-27,-49,-46v-8,4,-12,12,-12,21v0,13,9,23,49,44v8,-3,12,-11,12,-19","w":157},"\u00b6":{"d":"180,56r-26,0r0,-264r-25,0r0,264r-26,0r0,-125v-56,4,-91,-28,-90,-88v0,-50,33,-83,76,-83r91,0r0,296xm103,-100r0,-108v-38,-6,-30,43,-31,79v0,21,11,31,31,29","w":196},"\u00df":{"d":"125,-88v0,52,-7,107,-58,87r0,-20v33,1,20,-46,20,-74v0,-12,-5,-19,-19,-19r0,-27v26,1,21,-24,21,-47v0,-13,-6,-21,-18,-21v-12,0,-18,7,-18,21r0,188r-38,0r0,-181v0,-35,19,-59,54,-59v42,0,54,30,54,74v0,17,-6,33,-20,39v16,7,22,19,22,39","w":137},"\u00ae":{"d":"237,-117v0,63,-49,114,-115,114v-66,0,-114,-51,-114,-114v0,-63,48,-116,114,-116v66,0,115,53,115,116xm219,-117v0,-55,-40,-99,-97,-99v-57,0,-96,44,-96,99v0,54,39,98,96,98v57,0,97,-44,97,-98xm167,-80v-1,5,3,16,-5,14v-40,5,5,-56,-54,-44r0,43r-19,0r0,-102v33,0,72,-6,72,30v0,13,-4,19,-17,22v17,2,19,15,18,32v0,3,1,5,5,5xm108,-123v18,1,36,2,33,-18v3,-15,-18,-13,-33,-13r0,31","w":244},"\u00a9":{"d":"237,-117v0,63,-49,114,-115,114v-66,0,-114,-51,-114,-114v0,-63,48,-116,114,-116v66,0,115,53,115,116xm219,-117v0,-55,-40,-99,-97,-99v-57,0,-96,44,-96,99v0,54,39,98,96,98v57,0,97,-44,97,-98xm161,-104v2,25,-11,40,-37,41v-40,0,-39,-35,-39,-75v0,-19,16,-33,39,-33v26,0,39,15,37,40r-17,0v1,-15,-3,-24,-19,-25v-28,0,-18,33,-20,58v0,10,7,19,20,19v16,0,20,-10,19,-25r17,0","w":244},"\u00b4":{"d":"65,-244r-29,49r-21,0r13,-49r37,0","w":65},"\u00a8":{"d":"82,-202r-29,0r0,-35r29,0r0,35xm35,-202r-30,0r0,-35r30,0r0,35","w":87},"\u00c6":{"d":"214,0r-115,0r0,-47r-40,0r-14,47r-44,0r78,-240r135,0r0,39r-70,0r0,59r48,0r0,35r-48,0r0,67r70,0r0,40xm99,-82r0,-98r-28,98r28,0","w":222},"\u00d8":{"d":"156,-240r-15,28v17,38,3,102,8,152v5,57,-73,84,-114,50r-11,21r-18,-11r15,-28v-17,-38,-3,-102,-8,-152v-5,-57,73,-83,114,-50r11,-21xm104,-186v-1,-12,-10,-20,-23,-20v-40,3,-17,69,-23,106xm81,-34v41,-3,17,-70,23,-107r-46,87v1,12,10,20,23,20","w":164},"\u00b1":{"d":"179,0r-170,0r0,-177r170,0r0,177xm160,-18r0,-141r-133,0r0,141r133,0","w":187},"\u00a5":{"d":"100,-100r0,23r44,0r0,30r-44,0r0,47r-41,0r0,-47r-44,0r0,-30r44,0r0,-23r-44,0r0,-30r34,0r-40,-110r44,0r29,93r27,-93r43,0r-41,110r33,0r0,30r-44,0","w":160},"\u00aa":{"d":"106,-112v-18,1,-29,-1,-33,-17v-15,28,-63,21,-63,-20v0,-26,23,-36,56,-43v0,-14,3,-30,-12,-30v-13,0,-11,10,-11,21r-28,0v-2,-27,10,-43,41,-44v54,-1,38,57,40,105v0,4,2,7,10,7r0,21xm51,-134v19,0,15,-23,15,-41v-22,5,-28,10,-27,29v0,7,4,12,12,12","w":111},"\u00ba":{"d":"95,-203v0,47,1,91,-44,91v-43,0,-42,-45,-42,-91v0,-26,18,-42,42,-42v25,0,44,16,44,42xm51,-135v26,-3,14,-49,14,-74v0,-8,-6,-13,-14,-13v-25,0,-13,49,-13,74v0,8,5,13,13,13","w":102},"\u00e6":{"d":"184,-63v11,62,-58,87,-89,45v-21,34,-87,28,-87,-28v0,-35,29,-49,69,-59v-1,-18,5,-39,-15,-39v-15,0,-15,13,-14,28r-34,0v-12,-55,58,-80,83,-40v25,-37,93,-19,87,35r0,38r-67,0v2,22,-8,55,17,55v17,0,17,-18,16,-35r34,0xm149,-101v0,-19,3,-43,-16,-43v-20,0,-16,24,-16,43r32,0xm58,-26v24,0,19,-31,19,-55v-27,7,-35,15,-33,39v0,9,5,16,14,16","w":194},"\u00f8":{"d":"115,-182v17,11,13,9,-2,34v10,24,3,63,5,95v4,52,-57,71,-90,42r-12,21r-13,-10r15,-24v-11,-24,-4,-63,-6,-96v-4,-50,58,-73,90,-42xm82,-128v0,-10,-7,-17,-16,-17v-27,2,-14,44,-17,70xm66,-28v27,-1,13,-44,16,-69r-33,52v0,10,7,17,17,17","w":130},"\u00bf":{"d":"80,-103v8,38,-41,71,-42,112v0,19,7,26,21,26v23,1,22,-24,21,-47r36,0v3,48,-8,84,-57,84v-82,0,-73,-92,-26,-131v16,-13,19,-27,19,-44r28,0xm50,-173r34,0r0,42r-34,0r0,-42","w":121},"\u00a1":{"d":"51,-131r-33,0r0,-42r33,0r0,42xm54,67r-39,0v-1,-63,0,-124,13,-173r13,0v13,49,15,109,13,173","w":69},"\u00ab":{"d":"75,0r-18,0v-6,-26,-24,-49,-49,-57r0,-25v25,-8,43,-31,49,-57r18,0v0,28,-12,56,-30,70v18,13,30,41,30,69xm141,0r-18,0v-6,-26,-24,-49,-48,-57r0,-25v24,-8,42,-31,48,-57r18,0v0,28,-11,56,-29,70v18,13,29,41,29,69","w":151},"\u00bb":{"d":"76,-57v-24,8,-42,31,-48,57r-18,0v0,-28,12,-56,30,-69v-18,-14,-30,-42,-30,-70r18,0v6,26,24,49,48,57r0,25xm143,-57v-25,8,-42,31,-48,57r-18,0v0,-28,12,-56,30,-69v-18,-14,-30,-42,-30,-70r18,0v6,26,23,49,48,57r0,25","w":151},"\u00a0":{"w":27},"\u00c0":{"d":"147,0r-45,0r-8,-47r-43,0r-8,47r-42,0r48,-240r50,0xm88,-82r-14,-93r-16,93r30,0xm84,-254r-22,0r-28,-49r36,0","w":148},"\u00c3":{"d":"115,-302v12,18,2,44,-22,44v-17,0,-31,-17,-40,-17v-8,0,-8,8,-8,16v-13,2,-20,-3,-19,-14v0,-17,8,-29,26,-29v17,0,32,17,41,17v8,0,7,-9,7,-17r15,0xm147,0r-45,0r-8,-47r-43,0r-8,47r-42,0r48,-240r50,0xm88,-82r-14,-93r-16,93r30,0","w":148},"\u00d5":{"d":"122,-302v10,18,2,44,-22,44v-17,0,-32,-17,-41,-17v-8,0,-7,8,-7,16v-13,2,-19,-2,-19,-14v0,-17,8,-29,26,-29v17,0,31,17,40,17v9,0,8,-8,8,-17r15,0xm149,-60v0,38,-26,65,-68,65v-42,0,-68,-27,-68,-65r0,-120v0,-38,26,-65,68,-65v42,0,68,27,68,65r0,120xm104,-57r0,-126v0,-14,-8,-23,-23,-23v-14,0,-23,9,-23,23r0,126v0,14,9,23,23,23v15,0,23,-9,23,-23","w":162},"\u0152":{"d":"218,0r-137,0v-43,0,-67,-25,-67,-65v2,-79,-19,-175,67,-175r137,0r0,39r-70,0r0,59r49,0r0,35r-49,0r0,67r70,0r0,40xm103,-38r0,-164v-27,-2,-45,2,-45,29r0,106v-1,27,18,31,45,29","w":226},"\u0153":{"d":"189,-63v12,61,-57,87,-87,46v-26,37,-90,21,-90,-36v0,-57,-5,-125,49,-123v17,0,33,8,41,21v24,-39,93,-20,87,34r0,38r-67,0v2,22,-7,55,16,55v18,0,18,-17,17,-35r34,0xm154,-101v0,-19,3,-43,-16,-43v-20,0,-16,24,-16,43r32,0xm82,-46r0,-80v0,-11,-7,-18,-17,-18v-10,0,-16,7,-16,18r0,80v0,11,6,18,16,18v10,0,17,-7,17,-18","w":199},"\u00ff":{"d":"118,-173r-42,178v-8,37,-19,56,-63,53r0,-29v25,4,27,-13,30,-32r-40,-170r37,0r21,119r21,-119r36,0xm100,-202r-29,0r0,-35r29,0r0,35xm53,-202r-30,0r0,-35r30,0r0,35","w":119},"\u0178":{"d":"151,-240r-54,142r0,98r-45,0r0,-98r-53,-142r47,0r31,98r30,-98r44,0xm114,-261r-29,0r0,-35r29,0r0,35xm67,-261r-30,0r0,-35r30,0r0,35","w":149},"\u00a4":{"d":"126,-88r-22,22r-33,-33r-32,33r-22,-21r33,-33r-33,-34r22,-21r33,33r33,-33r21,21r-33,33","w":143},"\u00b7":{"d":"47,-96r-35,0r0,-47r35,0r0,47","w":58},"\u00c2":{"d":"121,-257v-24,6,-42,-1,-47,-25v-5,23,-22,31,-44,25r0,-10v13,0,24,-11,30,-34r30,0v6,23,18,34,31,34r0,10xm147,0r-45,0r-8,-47r-43,0r-8,47r-42,0r48,-240r50,0xm88,-82r-14,-93r-16,93r30,0","w":148},"\u00ca":{"d":"117,-257v-23,6,-41,-1,-46,-25v-5,23,-23,31,-45,25r0,-10v13,0,24,-11,30,-34r30,0v6,23,18,34,31,34r0,10xm130,0r-115,0r0,-240r115,0r0,39r-70,0r0,59r48,0r0,35r-48,0r0,67r70,0r0,40","w":138},"\u00c1":{"d":"147,0r-45,0r-8,-47r-43,0r-8,47r-42,0r48,-240r50,0xm88,-82r-14,-93r-16,93r30,0xm113,-303r-29,49r-21,0r13,-49r37,0","w":148},"\u00cb":{"d":"130,0r-115,0r0,-240r115,0r0,39r-70,0r0,59r48,0r0,35r-48,0r0,67r70,0r0,40xm110,-261r-29,0r0,-35r29,0r0,35xm63,-261r-30,0r0,-35r30,0r0,35","w":138},"\u00c8":{"d":"130,0r-115,0r0,-240r115,0r0,39r-70,0r0,59r48,0r0,35r-48,0r0,67r70,0r0,40xm84,-254r-22,0r-28,-49r36,0","w":138},"\u00cd":{"d":"60,0r-45,0r0,-240r45,0r0,240xm75,-303r-29,49r-21,0r13,-49r37,0","w":75},"\u00ce":{"d":"84,-257v-23,6,-41,-1,-46,-25v-5,23,-23,31,-45,25r0,-10v13,0,24,-11,30,-34r30,0v6,23,18,34,31,34r0,10xm60,0r-45,0r0,-240r45,0r0,240","w":75},"\u00cf":{"d":"60,0r-45,0r0,-240r45,0r0,240xm76,-261r-29,0r0,-35r29,0r0,35xm29,-261r-30,0r0,-35r30,0r0,35","w":75},"\u00cc":{"d":"60,0r-45,0r0,-240r45,0r0,240xm49,-254r-22,0r-28,-49r36,0","w":75},"\u00d3":{"d":"149,-60v0,38,-26,65,-68,65v-42,0,-68,-27,-68,-65r0,-120v0,-38,26,-65,68,-65v42,0,68,27,68,65r0,120xm104,-57r0,-126v0,-14,-8,-23,-23,-23v-14,0,-23,9,-23,23r0,126v0,14,9,23,23,23v15,0,23,-9,23,-23xm119,-303r-29,49r-21,0r13,-49r37,0","w":162},"\u00d4":{"d":"127,-257v-23,6,-41,-1,-46,-25v-5,23,-23,31,-45,25r0,-10v13,0,25,-11,31,-34r29,0v6,23,18,34,31,34r0,10xm149,-60v0,38,-26,65,-68,65v-42,0,-68,-27,-68,-65r0,-120v0,-38,26,-65,68,-65v42,0,68,27,68,65r0,120xm104,-57r0,-126v0,-14,-8,-23,-23,-23v-14,0,-23,9,-23,23r0,126v0,14,9,23,23,23v15,0,23,-9,23,-23","w":162},"\u00d2":{"d":"149,-60v0,38,-26,65,-68,65v-42,0,-68,-27,-68,-65r0,-120v0,-38,26,-65,68,-65v42,0,68,27,68,65r0,120xm104,-57r0,-126v0,-14,-8,-23,-23,-23v-14,0,-23,9,-23,23r0,126v0,14,9,23,23,23v15,0,23,-9,23,-23xm92,-254r-22,0r-28,-49r36,0","w":162},"\u00da":{"d":"149,-55v0,36,-28,60,-67,60v-39,0,-67,-24,-67,-60r0,-185r45,0r0,185v0,14,8,22,22,22v15,0,23,-8,23,-22r0,-185r44,0r0,185xm121,-303r-29,49r-21,0r13,-49r37,0","w":163},"\u00db":{"d":"130,-257v-24,6,-42,-1,-47,-25v-5,23,-22,31,-44,25r0,-10v13,0,24,-11,30,-34r30,0v6,23,18,34,31,34r0,10xm149,-55v0,36,-28,60,-67,60v-39,0,-67,-24,-67,-60r0,-185r45,0r0,185v0,14,8,22,22,22v15,0,23,-8,23,-22r0,-185r44,0r0,185","w":163},"\u00d9":{"d":"149,-55v0,36,-28,60,-67,60v-39,0,-67,-24,-67,-60r0,-185r45,0r0,185v0,14,8,22,22,22v15,0,23,-8,23,-22r0,-185r44,0r0,185xm95,-254r-22,0r-28,-49r36,0","w":163},"\u0131":{"d":"52,0r-38,0r0,-173r38,0r0,173","w":66},"\u00af":{"d":"87,-206r-83,0r0,-23r83,0r0,23","w":91},"\u00b8":{"d":"69,53v0,22,-25,36,-46,27v-6,-21,28,-3,21,-34v0,-15,-21,-15,-29,-4r-11,-9r29,-41r12,9r-18,24v21,-10,42,5,42,28","w":67}}});Cufon.registerFont({"w":84,"face":{"font-family":"knockout66","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"3","bbox":"-10 -298 183 66.4962","underline-thickness":"7.2","underline-position":"-47.88","stemh":"26","stemv":"23","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":32},"\u00d0":{"d":"36,-132r8,0r0,24r-8,0r0,80v9,0,14,1,14,-10r0,-163v1,-11,-5,-10,-14,-10r0,79xm8,-108r-9,0r0,-24r9,0r0,-108v39,2,70,-11,70,38r0,164v-2,49,-31,36,-70,38r0,-108"},"\u00f0":{"d":"40,-31r0,-115v0,-4,-2,-7,-5,-7v-3,0,-5,3,-5,7r0,115v0,4,2,8,5,8v3,0,5,-4,5,-8xm37,-196r-13,11r-5,-18r11,-10v-5,-8,-11,-11,-21,-11r0,-16v16,-1,27,4,36,14r12,-10v3,10,6,21,-3,25v16,45,6,117,9,176v0,23,-13,38,-28,38v-48,0,-25,-101,-29,-152v-2,-24,23,-37,34,-17v0,-12,-1,-22,-3,-30","w":69},"\u00dd":{"d":"77,-240r-27,146r0,94r-27,0v5,-93,-12,-164,-24,-240r27,0r13,100r11,-100r27,0xm63,-298r-18,47r-13,0r12,-47r19,0","w":75},"\u00fd":{"d":"58,-177r-20,197v-4,34,-7,43,-33,43r0,-24v18,3,12,-28,15,-43r-18,-173r23,0r6,109r6,-109r21,0xm56,-240r-18,47r-13,0r12,-47r19,0","w":60},"\u00de":{"d":"76,-92v-1,35,-17,39,-39,38r0,54r-29,0r0,-240r29,0r0,42v47,-12,40,62,39,106xm44,-81v12,-14,5,-54,5,-78v0,-11,-3,-10,-12,-10r0,88r7,0","w":81},"\u00fe":{"d":"63,-24v1,23,-21,37,-32,18r0,68r-23,0r0,-302r23,0r0,70v11,-20,33,-7,32,17r0,129xm40,-31r0,-115v0,-4,-2,-7,-5,-7v-3,0,-4,3,-4,7r0,115v0,4,1,8,4,8v3,0,5,-4,5,-8","w":69},"\u00d7":{"d":"78,-103r-16,16r-17,-17r-18,17r-15,-15r18,-18r-18,-17r16,-15r17,17r17,-17r16,15r-18,17","w":90},"!":{"d":"32,-240v1,65,0,127,-8,183r-7,0v-9,-55,-10,-118,-9,-183r24,0xm30,0r-20,0r0,-37r20,0r0,37","w":40},"\"":{"d":"49,-240r-13,71r-11,0r9,-71r15,0xm26,-240r-11,71r-11,0r7,-71r15,0","w":53},"#":{"d":"108,-153r-25,0r-8,67r27,0r0,13r-28,0r-8,73r-15,0r8,-73r-22,0r-9,73r-14,0r8,-73r-24,0r0,-13r25,0r8,-67r-26,0r0,-14r27,0r9,-73r15,0r-8,73r21,0r9,-73r15,0r-8,73r23,0r0,14xm68,-153r-22,0r-8,67r22,0","w":106},"$":{"d":"49,-37v2,-51,-42,-108,-43,-158v0,-22,7,-39,23,-45r0,-22r23,0r0,20v23,3,25,43,23,75r-24,0v-2,-16,6,-45,-9,-47v-5,0,-9,4,-9,11v-3,54,43,112,43,160v0,28,-12,40,-24,44r0,22r-23,0r0,-22v-23,-4,-24,-39,-23,-71r23,0v2,16,-7,45,10,46v7,0,10,-5,10,-13","w":79},"%":{"d":"127,-89v0,36,11,93,-25,93v-38,0,-26,-57,-26,-93v0,-17,11,-27,26,-27v14,0,25,10,25,27xm109,-22r0,-68v0,-5,-3,-9,-7,-9v-4,0,-8,4,-8,9r0,68v0,10,15,11,15,0xm121,-238r-100,244r-9,-7r100,-244xm57,-215v0,36,12,93,-26,92v-36,0,-25,-57,-25,-92v0,-18,11,-28,25,-28v15,0,26,10,26,28xm39,-148r0,-69v0,-10,-15,-11,-15,0r0,69v0,5,3,8,7,8v4,0,8,-3,8,-8","w":133},"&":{"d":"114,-49v2,28,-6,52,-22,52v-10,0,-19,-8,-23,-15v-23,33,-62,8,-62,-40v0,-33,14,-63,27,-78v-16,-36,-18,-118,26,-113v50,6,32,94,3,121v2,14,7,39,10,52v4,-11,7,-38,7,-51r23,0v-1,26,-7,60,-20,83v1,6,4,10,9,10v6,1,8,-12,7,-21r15,0xm66,-195v0,-10,-1,-17,-8,-17v-16,5,-7,42,-3,59v8,-13,11,-32,11,-42xm56,-35v-6,-15,-11,-42,-14,-60v-14,10,-11,87,14,60","w":118},"'":{"d":"36,-240r-18,71r-13,0r12,-71r19,0","w":35},"(":{"d":"57,37r-6,4v-20,-28,-35,-67,-35,-153v0,-86,15,-124,35,-152r6,4v-29,18,-28,280,0,297","w":62},")":{"d":"46,-112v0,86,-15,125,-35,153r-6,-4v28,-18,28,-280,0,-297r6,-4v20,28,35,66,35,152","w":62},"*":{"d":"40,-210v9,6,27,7,20,18v-9,1,-15,-8,-23,-13v0,10,5,21,0,26v-3,0,-8,1,-7,-3v0,-5,0,-15,1,-23v-9,5,-20,21,-26,8v3,-6,14,-9,23,-13v-9,-5,-29,-8,-20,-18v8,-1,15,8,23,13v-2,-12,-5,-34,8,-23v0,4,-1,15,-2,23v8,-5,20,-21,26,-8v-2,6,-15,9,-23,13","w":67},"+":{"d":"71,-111r-20,0r0,22r-21,0r0,-22r-20,0r0,-21r20,0r0,-22r21,0r0,22r20,0r0,21","w":81},",":{"d":"28,-38v1,28,3,64,-22,64v-2,-14,13,-6,11,-26r-11,0r0,-38r22,0","w":34},"-":{"d":"46,-100r-42,0r0,-24r42,0r0,24","w":49},".":{"d":"28,0r-22,0r0,-38r22,0r0,38","w":34},"\/":{"d":"72,-262r-62,285r-17,0r62,-285r17,0","w":66},"0":{"d":"77,-37v0,24,-15,40,-35,40v-19,0,-33,-16,-33,-40r0,-165v0,-24,14,-41,33,-41v20,0,35,17,35,41r0,165xm50,-35r0,-170v0,-5,-3,-8,-8,-8v-4,0,-7,3,-7,8r0,170v0,5,3,8,7,8v5,0,8,-3,8,-8","w":85},"1":{"d":"41,0r-26,0r0,-228v8,0,11,-6,11,-12r15,0r0,240","w":56},"2":{"d":"3,0v-10,-46,45,-140,42,-203v0,-7,-4,-10,-8,-10v-14,4,-4,32,-7,47r-25,0v-1,-36,-2,-76,31,-77v24,0,33,18,33,45v0,49,-40,136,-38,168r36,0r0,30r-64,0","w":72},"3":{"d":"68,-96v-1,41,9,99,-32,99v-31,-1,-33,-37,-31,-71r25,0v2,13,-5,37,6,40v4,0,6,-4,6,-8r0,-65v1,-9,-10,-7,-18,-7r0,-26v8,0,19,2,18,-7r0,-63v0,-5,-2,-8,-6,-8v-11,3,-4,27,-6,40r-25,0v-2,-34,0,-70,31,-71v39,0,32,56,32,97v0,12,-5,20,-13,25v8,5,13,13,13,25","w":75},"4":{"d":"71,-47r-9,0r0,47r-25,0r0,-47r-35,0v4,-74,28,-127,40,-193r20,0r0,166r9,0r0,27xm37,-74r0,-62r-12,62r12,0","w":73},"5":{"d":"72,-240v0,34,-11,30,-37,30r-2,65v14,-15,40,-4,38,19v-4,49,16,129,-33,129v-29,0,-33,-35,-31,-69r25,0v-2,15,1,53,13,30r0,-84v0,-4,-3,-7,-6,-7v-3,0,-6,3,-6,7r-25,-2r4,-118r60,0","w":76},"6":{"d":"73,-118v-3,47,13,120,-33,121v-19,0,-32,-18,-32,-42r0,-162v0,-24,14,-42,33,-42v32,1,33,38,31,73r-24,0v-2,-14,6,-39,-7,-42v-4,0,-7,4,-7,8r0,66v14,-15,41,-4,39,20xm47,-35r0,-76v0,-4,-3,-6,-7,-6v-4,0,-6,2,-6,6r0,76v0,4,2,7,6,7v4,0,7,-3,7,-7","w":79},"7":{"d":"70,-240v-10,82,-30,147,-32,240r-29,0v7,-82,23,-160,35,-209r-39,0r0,-31r65,0","w":72},"8":{"d":"73,-95v0,41,7,98,-32,98v-40,0,-33,-56,-33,-98v0,-13,5,-21,12,-26v-19,-11,-12,-52,-12,-81v0,-23,13,-41,33,-41v38,0,32,55,32,96v0,13,-4,21,-11,26v7,5,11,13,11,26xm48,-140r0,-64v0,-4,-3,-8,-7,-8v-4,0,-7,4,-7,8r0,64v0,4,3,8,7,8v4,0,7,-4,7,-8xm48,-36r0,-66v0,-4,-3,-7,-7,-7v-4,0,-7,3,-7,7r0,66v0,4,3,8,7,8v4,0,7,-4,7,-8","w":81},"9":{"d":"73,-39v0,24,-13,42,-33,42v-30,-1,-35,-36,-32,-71r25,0v2,13,-6,38,7,40v5,0,7,-3,7,-8r0,-66v-13,16,-41,5,-39,-19v2,-47,-13,-120,33,-122v19,0,32,18,32,42r0,162xm47,-127r0,-77v0,-4,-2,-8,-6,-8v-4,0,-7,4,-7,8r0,77v0,4,3,6,7,6v4,0,6,-2,6,-6","w":81},":":{"d":"28,-116r-22,0r0,-37r22,0r0,37xm28,0r-22,0r0,-38r22,0r0,38","w":34},";":{"d":"28,-116r-22,0r0,-37r22,0r0,37xm28,-38v1,28,3,64,-22,64v-2,-14,13,-6,11,-26r-11,0r0,-38r22,0","w":34},"<":{"d":"100,-63r-82,-54r0,-6r82,-54r0,25r-50,32r50,33r0,24","w":122},"=":{"d":"68,-131r-62,0r0,-22r62,0r0,22xm68,-90r-62,0r0,-22r62,0r0,22","w":73},">":{"d":"104,-117r-81,54r0,-25r49,-32r-49,-33r0,-24r81,54r0,6","w":122},"?":{"d":"22,-61v-4,-21,18,-96,20,-128v2,-26,-15,-30,-15,-11r0,31r-24,0v-1,-36,-1,-74,32,-74v23,0,32,20,32,49v0,32,-28,93,-28,133r-17,0xm40,0r-20,0r0,-37r20,0r0,37","w":71},"@":{"d":"116,-102v0,32,-12,59,-33,59v-10,0,-17,-6,-16,-20v-9,26,-36,24,-35,-12v0,-27,13,-55,30,-55v5,0,10,4,10,12r3,-11r15,0r-11,53v-3,15,0,22,6,22v12,0,18,-21,18,-49v0,-41,-17,-65,-40,-65v-25,0,-46,34,-46,82v0,66,40,96,76,64r6,8v-40,39,-94,8,-94,-72v0,-58,27,-94,58,-94v36,0,53,40,53,78xm54,-60v10,-2,23,-50,10,-57v-8,0,-17,22,-17,41v0,10,2,16,7,16","w":120},"A":{"d":"75,0r-29,0r-2,-44r-17,0r-3,44r-24,0r21,-240r32,0xm42,-74r-5,-106r-7,106r12,0","w":75},"B":{"d":"76,-38v0,48,-30,36,-68,38r0,-240v38,1,68,-10,68,38v0,30,8,68,-13,80v22,13,13,53,13,84xm49,-144r0,-57v1,-11,-4,-10,-13,-10r0,76v8,0,14,2,13,-9xm49,-38r0,-60v1,-11,-4,-10,-13,-10r0,80v9,0,14,1,13,-10","w":82},"C":{"d":"74,-84v0,38,5,88,-32,87v-19,0,-36,-17,-36,-41r0,-164v0,-24,17,-41,36,-41v37,-1,32,49,32,87r-23,0v-3,-19,9,-52,-9,-56v-6,0,-8,4,-8,9r0,166v0,5,2,10,8,10v18,-5,5,-38,9,-57r23,0","w":78},"D":{"d":"78,-38v-3,48,-31,36,-70,38r0,-240v38,2,70,-10,70,38r0,164xm50,-38r0,-163v1,-11,-5,-10,-14,-10r0,183v9,0,14,1,14,-10"},"E":{"d":"66,0r-58,0r0,-240r58,0r0,29r-30,0r0,73r21,0r0,29r-21,0r0,80r30,0r0,29","w":69},"F":{"d":"64,-211r-28,0r0,74r22,0r0,29r-22,0r0,108r-28,0r0,-240r56,0r0,29","w":66},"G":{"d":"76,0r-17,0r-2,-9v-17,25,-51,9,-51,-29r0,-164v0,-24,16,-41,35,-41v36,-1,35,50,33,90r-25,0v-3,-19,9,-53,-8,-59v-4,0,-8,3,-8,8r0,171v0,5,3,9,8,9v5,0,8,-4,8,-9r0,-58r-7,0r0,-26r34,0r0,117","w":81},"H":{"d":"79,0r-28,0r0,-103r-15,0r0,103r-28,0r0,-240r28,0r0,107r15,0r0,-107r28,0r0,240","w":87},"I":{"d":"36,0r-28,0r0,-240r28,0r0,240","w":44},"J":{"d":"70,-36v0,23,-14,39,-33,39v-40,1,-35,-56,-34,-98r25,0r0,59v0,5,2,9,7,9v5,0,7,-4,7,-9r0,-204r28,0r0,204","w":77},"K":{"d":"80,0r-28,0r-10,-97v-7,27,-6,62,-6,97r-28,0r0,-240r28,0r0,107r17,-107r26,0r-18,103","w":81},"L":{"d":"64,0r-56,0r0,-240r28,0r0,212r28,0r0,28","w":65},"M":{"d":"110,0r-27,0r0,-193r-17,193r-19,0r-15,-193r0,193r-24,0r0,-240r37,0r15,155r14,-155r36,0r0,240","w":118},"N":{"d":"83,0r-23,0r-29,-151r0,151r-23,0r0,-240r28,0r24,150r0,-150r23,0r0,240","w":90},"O":{"d":"78,-38v0,24,-16,41,-36,41v-19,0,-36,-17,-36,-41r0,-164v0,-24,17,-41,36,-41v20,0,36,17,36,41r0,164xm49,-36r0,-168v0,-5,-2,-8,-7,-8v-5,0,-7,3,-7,8r0,168v0,5,2,9,7,9v5,0,7,-4,7,-9"},"P":{"d":"36,-96r0,96r-28,0r0,-240v38,1,67,-10,68,38v1,45,8,119,-40,106xm49,-132r0,-69v0,-11,-4,-10,-13,-10r0,88v8,0,13,2,13,-9","w":81},"Q":{"d":"86,-19v0,11,3,22,-11,22v-6,0,-10,-2,-13,-6v-26,16,-56,-3,-56,-35r0,-164v0,-24,17,-41,36,-41v19,0,36,17,36,41r0,164v1,10,-8,20,8,19xm49,-48r0,-156v0,-5,-2,-8,-7,-8v-5,0,-7,3,-7,8r0,168v-1,7,7,12,12,7v-10,-6,-4,-12,2,-19"},"R":{"d":"81,-1v-6,3,-17,0,-25,1v-10,-14,-6,-66,-7,-94v0,-8,-5,-10,-13,-9r0,103r-28,0r0,-240v38,1,68,-10,68,38v0,32,9,72,-13,86v28,17,6,78,18,115xm44,-130v11,-12,3,-50,5,-71v1,-11,-4,-10,-13,-10r0,81r8,0","w":83},"S":{"d":"32,-203v-2,53,45,111,43,160v-2,67,-73,57,-71,2r0,-29r24,0v2,16,-7,45,10,46v6,0,10,-5,10,-13v2,-51,-43,-108,-44,-158v0,-28,11,-48,37,-48v30,0,36,39,33,76r-24,0v-2,-16,6,-45,-9,-47v-5,0,-9,4,-9,11","w":79},"T":{"d":"71,-209r-21,0r0,209r-28,0r0,-209r-21,0r0,-31r70,0r0,31","w":71},"U":{"d":"77,-38v0,24,-16,41,-35,41v-19,0,-34,-17,-34,-41r0,-202r27,0r0,204v0,5,3,9,7,9v5,0,8,-4,8,-9r0,-204r27,0r0,202"},"V":{"d":"76,-240r-24,240r-28,0r-24,-240r28,0r11,163r11,-163r26,0","w":76},"W":{"d":"113,-240r-25,240r-23,0r-10,-139r-13,139r-23,0r-20,-240r28,0r8,157r11,-157r22,0r9,157r11,-157r25,0","w":111},"X":{"d":"77,0r-28,0r-10,-76r-12,76r-27,0r23,-118r-21,-122r28,0r10,85r11,-85r27,0r-23,116","w":77},"Y":{"d":"77,-240r-27,146r0,94r-27,0v5,-93,-12,-164,-24,-240r27,0r13,100r11,-100r27,0","w":75},"Z":{"d":"64,-240v-6,75,-24,139,-34,211r33,0r0,29r-62,0v7,-75,25,-139,35,-210r-33,0r0,-30r61,0","w":66},"[":{"d":"66,36r-44,0r0,-295r44,0r0,16r-25,0r0,263r25,0r0,16","w":64},"\\":{"d":"76,23r-17,0r-62,-285r16,0","w":70},"]":{"d":"46,36r-45,0r0,-16r26,0r0,-263r-26,0r0,-16r45,0r0,295","w":64},"^":{"d":"59,-203v2,8,-4,11,-10,11v-9,0,-16,-6,-19,-25v-4,23,-14,29,-29,22r0,-8v7,0,19,-12,23,-37r12,0v4,25,16,37,23,37","w":60},"_":{"d":"80,24r-80,0r0,-24r80,0r0,24","w":79},"`":{"d":"32,-193r-13,0r-19,-47r21,0","w":35},"a":{"d":"62,3v-12,1,-15,-3,-19,-13v-3,8,-9,13,-16,13v-21,2,-23,-30,-23,-57v0,-28,15,-46,32,-62v-2,-12,4,-32,-4,-37v-8,2,-3,20,-4,29r-22,0v-3,-29,6,-57,27,-56v15,0,24,15,24,38r0,114v0,4,1,8,5,9r0,22xm31,-23v11,-10,2,-43,5,-62v-12,13,-10,30,-10,53v0,5,2,9,5,9","w":64},"b":{"d":"63,-24v1,24,-23,38,-32,16v1,11,-13,7,-23,8r0,-240r23,0r0,71v3,-7,8,-11,14,-11v10,0,18,12,18,27r0,129xm40,-31r0,-115v0,-4,-2,-7,-5,-7v-3,0,-4,3,-4,7r0,115v0,4,1,8,4,8v3,0,5,-4,5,-8","w":69},"c":{"d":"60,-65v2,31,-1,71,-26,68v-45,-5,-28,-96,-28,-145v0,-22,13,-38,28,-38v25,-1,28,37,26,68r-19,0v-2,-13,5,-38,-6,-41v-3,0,-6,3,-6,8r0,113v0,11,12,12,12,0r0,-33r19,0","w":64},"d":{"d":"62,0v-10,-1,-24,4,-23,-8v-3,7,-8,11,-14,11v-10,0,-19,-12,-19,-27r0,-129v-1,-24,22,-37,33,-17r0,-70r23,0r0,240xm39,-31r0,-115v0,-4,-1,-7,-4,-7v-3,0,-5,3,-5,7r0,115v0,4,2,8,5,8v3,0,4,-4,4,-8","w":69},"e":{"d":"60,-65v2,31,-1,71,-26,68v-45,-5,-28,-96,-28,-145v0,-23,13,-38,28,-38v34,0,25,61,26,98r-30,0v2,19,-6,48,5,59v12,-4,4,-28,6,-42r19,0xm41,-104v-2,-16,6,-43,-6,-49v-11,7,-2,34,-5,49r11,0","w":66},"f":{"d":"44,-152r-10,0r0,152r-23,0r0,-152r-8,0r0,-25r8,0v-1,-34,1,-66,33,-63r0,25v-17,-3,-10,23,-11,38r11,0r0,25","w":45},"g":{"d":"71,-192v2,15,1,38,-15,30v12,25,14,111,-25,103v-8,2,-7,25,4,24v29,-3,29,32,29,63v0,27,-11,38,-29,38v-31,7,-40,-62,-21,-85v-16,-7,-11,-45,6,-45v-19,-10,-13,-50,-13,-78v0,-26,15,-42,36,-37v9,0,11,-5,11,-13r17,0xm35,-85v12,-10,2,-42,5,-61v0,-4,-2,-7,-5,-7v-12,10,-2,42,-5,61v0,4,2,7,5,7xm36,40v12,-3,5,-26,7,-40v0,-4,-2,-9,-7,-9v-13,2,-5,27,-7,40v0,4,3,9,7,9","w":68},"h":{"d":"63,0r-23,0r0,-146v0,-4,-2,-7,-5,-7v-3,0,-4,3,-4,7r0,146r-23,0r0,-240r23,0r0,71v3,-7,8,-11,14,-11v10,0,18,12,18,27r0,153","w":70},"i":{"d":"30,-196r-21,0r0,-32r21,0r0,32xm31,0r-23,0r0,-177r23,0r0,177","w":38},"j":{"d":"30,-196r-21,0r0,-32r21,0r0,32xm31,20v0,29,-8,44,-34,43r0,-24v8,1,11,-4,11,-14r0,-202r23,0r0,197","w":38},"k":{"d":"67,0r-23,0r-11,-71v-4,20,-1,47,-2,71r-23,0r0,-240r23,0r0,141r12,-78r21,0r-14,82","w":67},"l":{"d":"31,0r-23,0r0,-240r23,0r0,240","w":38},"m":{"d":"96,0r-23,0r0,-145v0,-4,-2,-7,-5,-7v-3,0,-4,3,-4,7r0,145r-23,0r0,-146v0,-4,-2,-7,-5,-7v-3,0,-5,3,-5,7r0,146r-23,0r0,-177v9,1,25,-5,23,8v7,-17,27,-12,31,4v3,-9,9,-15,16,-15v10,0,18,12,18,27r0,153","w":103},"n":{"d":"63,0r-23,0r0,-146v0,-4,-2,-7,-5,-7v-3,0,-4,3,-4,7r0,146r-23,0r0,-177v9,1,25,-5,23,8v3,-7,8,-11,14,-11v10,0,18,12,18,27r0,153","w":70},"o":{"d":"62,-142v0,49,17,138,-27,145v-46,-5,-29,-96,-29,-145v0,-23,14,-38,29,-38v15,0,27,15,27,38xm39,-31r0,-115v0,-4,-1,-7,-4,-7v-3,0,-5,3,-5,7r0,115v0,4,2,8,5,8v3,0,4,-4,4,-8","w":68},"p":{"d":"63,-24v1,23,-21,37,-32,18r0,68r-23,0r0,-239v10,1,24,-4,23,8v3,-7,8,-11,14,-11v10,0,18,12,18,27r0,129xm40,-31r0,-115v0,-4,-2,-7,-5,-7v-3,0,-4,3,-4,7r0,115v0,4,1,8,4,8v3,0,5,-4,5,-8","w":69},"q":{"d":"62,62r-23,0r0,-70v-3,7,-8,11,-14,11v-10,0,-19,-12,-19,-27r0,-129v-1,-24,24,-38,33,-16r1,-8r22,0r0,239xm39,-31r0,-115v0,-4,-1,-7,-4,-7v-3,0,-5,3,-5,7r0,115v0,4,2,8,5,8v3,0,4,-4,4,-8","w":69},"r":{"d":"49,-147v-13,0,-18,3,-18,17r0,130r-23,0r0,-177r21,0r2,14v3,-10,9,-17,18,-17r0,33","w":51},"s":{"d":"26,-144v-1,32,33,67,33,103v0,27,-9,44,-26,44v-21,0,-31,-26,-28,-56r21,0v-3,14,6,45,12,20v7,-30,-33,-69,-33,-105v0,-26,10,-42,27,-42v25,0,29,30,27,59r-20,0v3,-15,-4,-47,-13,-23","w":63},"t":{"d":"44,-152r-10,0r2,152r-20,0v-9,-39,-3,-103,-5,-152r-9,0r0,-25r11,0r0,-25r21,-8r0,33r10,0r0,25","w":46},"u":{"d":"63,0v-9,-1,-25,5,-23,-8v-11,22,-34,8,-33,-16r0,-153r23,0r0,146v0,4,2,8,5,8v3,0,5,-4,5,-8r0,-146r23,0r0,177","w":70},"v":{"d":"59,-177r-18,177r-19,0r-19,-177r23,0r6,109r6,-109r21,0","w":61},"w":{"d":"95,-177r-18,177r-21,0r-7,-104r-8,104r-21,0r-17,-177r24,0r6,119r7,-119r20,0r7,119r8,-119r20,0","w":97},"x":{"d":"61,0r-23,0r-6,-58r-8,58r-22,0r16,-86r-16,-91r22,0r7,59r7,-59r23,0r-16,85","w":63},"y":{"d":"58,-177r-20,197v-4,34,-7,43,-33,43r0,-24v18,3,12,-28,15,-43r-18,-173r23,0r6,109r6,-109r21,0","w":60},"z":{"d":"53,-177v-5,54,-18,99,-26,150r24,0r0,27r-48,0v5,-53,18,-99,25,-150r-22,0r0,-27r47,0","w":56},"{":{"d":"64,23v0,6,2,16,-7,13v-66,1,-26,-106,-18,-129v1,-12,-13,-11,-25,-11r0,-15v13,1,28,0,25,-12v-6,-25,-50,-136,25,-128v-1,5,3,14,-5,12v-41,9,-2,85,-2,109v0,12,-6,22,-20,26v44,17,1,63,1,101v1,22,8,36,26,34","w":74},"|":{"d":"24,23r-16,0r0,-285r16,0r0,285","w":32},"}":{"d":"60,-104v-12,0,-28,-1,-25,11v6,25,51,137,-25,129v1,-5,-3,-15,5,-13v59,-19,-35,-117,22,-135v-44,-17,-1,-72,-1,-100v-1,-22,-7,-37,-26,-35v0,0,-2,-15,7,-12v66,-1,26,105,18,128v-1,12,12,13,25,12r0,15","w":74},"~":{"d":"53,-139v6,16,-1,42,-13,39v-11,1,-21,-28,-26,-10r0,10r-10,0v-6,-16,2,-42,14,-39v11,-1,22,26,26,9r0,-9r9,0","w":57},"\u00c4":{"d":"75,0r-29,0r-2,-44r-17,0r-3,44r-24,0r21,-240r32,0xm42,-74r-5,-106r-7,106r12,0xm59,-254r-16,0r0,-33r16,0r0,33xm32,-254r-15,0r0,-33r15,0r0,33","w":75},"\u00c5":{"d":"42,-74r-5,-106r-7,106r12,0xm44,-252v0,-8,-2,-13,-7,-13v-5,0,-8,5,-8,13v0,8,3,12,8,12v5,0,7,-4,7,-12xm25,-240v-7,-12,-1,-33,12,-33v13,0,19,21,12,33r4,0r22,240r-29,0r-2,-44r-17,0r-3,44r-24,0r21,-240r4,0","w":75},"\u00c7":{"d":"34,2v-16,-4,-28,-19,-28,-40r0,-164v0,-24,17,-41,36,-41v37,-1,32,49,32,87r-23,0v-3,-19,9,-52,-9,-56v-6,0,-8,4,-8,9r0,166v0,5,2,10,8,10v18,-5,5,-38,9,-57r23,0v0,38,5,87,-31,87r-10,16v13,-4,22,3,22,18v0,14,-12,25,-24,18v-2,-10,13,-3,10,-22v-2,-15,-15,1,-19,-9","w":78},"\u00c9":{"d":"66,0r-58,0r0,-240r58,0r0,29r-30,0r0,73r21,0r0,29r-21,0r0,80r30,0r0,29xm60,-298r-18,47r-13,0r12,-47r19,0","w":69},"\u00d1":{"d":"71,-292v6,16,-1,42,-13,39v-11,1,-22,-26,-26,-9r0,9r-10,0v-6,-16,1,-42,13,-39v12,0,21,28,27,10r0,-10r9,0xm83,0r-23,0r-29,-151r0,151r-23,0r0,-240r28,0r24,150r0,-150r23,0r0,240","w":90},"\u00d6":{"d":"78,-38v0,24,-16,41,-36,41v-19,0,-36,-17,-36,-41r0,-164v0,-24,17,-41,36,-41v20,0,36,17,36,41r0,164xm49,-36r0,-168v0,-5,-2,-8,-7,-8v-5,0,-7,3,-7,8r0,168v0,5,2,9,7,9v5,0,7,-4,7,-9xm64,-254r-16,0r0,-33r16,0r0,33xm37,-254r-15,0r0,-33r15,0r0,33"},"\u00dc":{"d":"77,-38v0,24,-16,41,-35,41v-19,0,-34,-17,-34,-41r0,-202r27,0r0,204v0,5,3,9,7,9v5,0,8,-4,8,-9r0,-204r27,0r0,202xm64,-254r-16,0r0,-33r16,0r0,33xm37,-254r-15,0r0,-33r15,0r0,33"},"\u00e1":{"d":"62,3v-12,1,-15,-3,-19,-13v-3,8,-9,13,-16,13v-21,2,-23,-30,-23,-57v0,-28,15,-46,32,-62v-2,-12,4,-32,-4,-37v-8,2,-3,20,-4,29r-22,0v-3,-29,6,-57,27,-56v15,0,24,15,24,38r0,114v0,4,1,8,5,9r0,22xm31,-23v11,-10,2,-43,5,-62v-12,13,-10,30,-10,53v0,5,2,9,5,9xm57,-240r-18,47r-13,0r12,-47r19,0","w":64},"\u00e0":{"d":"62,3v-12,1,-15,-3,-19,-13v-3,8,-9,13,-16,13v-21,2,-23,-30,-23,-57v0,-28,15,-46,32,-62v-2,-12,4,-32,-4,-37v-8,2,-3,20,-4,29r-22,0v-3,-29,6,-57,27,-56v15,0,24,15,24,38r0,114v0,4,1,8,5,9r0,22xm31,-23v11,-10,2,-43,5,-62v-12,13,-10,30,-10,53v0,5,2,9,5,9xm40,-193r-13,0r-19,-47r21,0","w":64},"\u00e2":{"d":"63,-203v2,8,-4,11,-10,11v-9,0,-17,-6,-20,-25v-4,23,-13,29,-28,22r0,-8v7,0,19,-12,23,-37r12,0v4,25,16,37,23,37xm62,3v-12,1,-15,-3,-19,-13v-3,8,-9,13,-16,13v-21,2,-23,-30,-23,-57v0,-28,15,-46,32,-62v-2,-12,4,-32,-4,-37v-8,2,-3,20,-4,29r-22,0v-3,-29,6,-57,27,-56v15,0,24,15,24,38r0,114v0,4,1,8,5,9r0,22xm31,-23v11,-10,2,-43,5,-62v-12,13,-10,30,-10,53v0,5,2,9,5,9","w":64},"\u00e4":{"d":"62,3v-12,1,-15,-3,-19,-13v-3,8,-9,13,-16,13v-21,2,-23,-30,-23,-57v0,-28,15,-46,32,-62v-2,-12,4,-32,-4,-37v-8,2,-3,20,-4,29r-22,0v-3,-29,6,-57,27,-56v15,0,24,15,24,38r0,114v0,4,1,8,5,9r0,22xm31,-23v11,-10,2,-43,5,-62v-12,13,-10,30,-10,53v0,5,2,9,5,9xm55,-196r-16,0r0,-33r16,0r0,33xm28,-196r-15,0r0,-33r15,0r0,33","w":64},"\u00e3":{"d":"57,-234v6,16,-1,42,-13,39v-11,1,-21,-28,-26,-10r0,10r-10,0v-6,-16,2,-42,14,-39v11,-1,22,26,26,9r0,-9r9,0xm62,3v-12,1,-15,-3,-19,-13v-3,8,-9,13,-16,13v-21,2,-23,-30,-23,-57v0,-28,15,-46,32,-62v-2,-12,4,-32,-4,-37v-8,2,-3,20,-4,29r-22,0v-3,-29,6,-57,27,-56v15,0,24,15,24,38r0,114v0,4,1,8,5,9r0,22xm31,-23v11,-10,2,-43,5,-62v-12,13,-10,30,-10,53v0,5,2,9,5,9","w":64},"\u00e5":{"d":"48,-215v0,11,-7,20,-16,20v-9,0,-15,-9,-15,-20v0,-11,6,-20,15,-20v9,0,16,9,16,20xm40,-215v0,-8,-3,-13,-8,-13v-5,0,-7,5,-7,13v0,8,2,12,7,12v5,0,8,-4,8,-12xm62,3v-12,1,-15,-3,-19,-13v-3,8,-9,13,-16,13v-21,2,-23,-30,-23,-57v0,-28,15,-46,32,-62v-2,-12,4,-32,-4,-37v-8,2,-3,20,-4,29r-22,0v-3,-29,6,-57,27,-56v15,0,24,15,24,38r0,114v0,4,1,8,5,9r0,22xm31,-23v11,-10,2,-43,5,-62v-12,13,-10,30,-10,53v0,5,2,9,5,9","w":64},"\u00e7":{"d":"29,2v-39,-13,-23,-95,-23,-144v0,-22,13,-38,28,-38v25,-1,28,37,26,68r-19,0v-2,-13,5,-38,-6,-41v-3,0,-6,3,-6,8r0,113v0,11,12,12,12,0r0,-33r19,0v1,29,1,66,-22,68r-10,16v13,-4,22,3,22,18v0,14,-12,25,-24,18v-2,-10,13,-3,9,-22v0,-16,-15,1,-19,-9","w":64},"\u00e9":{"d":"60,-65v2,31,-1,71,-26,68v-45,-5,-28,-96,-28,-145v0,-23,13,-38,28,-38v34,0,25,61,26,98r-30,0v2,19,-6,48,5,59v12,-4,4,-28,6,-42r19,0xm41,-104v-2,-16,6,-43,-6,-49v-11,7,-2,34,-5,49r11,0xm58,-240r-18,47r-13,0r12,-47r19,0","w":66},"\u00e8":{"d":"60,-65v2,31,-1,71,-26,68v-45,-5,-28,-96,-28,-145v0,-23,13,-38,28,-38v34,0,25,61,26,98r-30,0v2,19,-6,48,5,59v12,-4,4,-28,6,-42r19,0xm41,-104v-2,-16,6,-43,-6,-49v-11,7,-2,34,-5,49r11,0xm41,-193r-13,0r-19,-47r21,0","w":66},"\u00ea":{"d":"63,-203v2,8,-4,11,-10,11v-9,0,-16,-6,-19,-25v-4,23,-14,29,-29,22r0,-8v7,0,19,-12,23,-37r12,0v4,25,16,37,23,37xm60,-65v2,31,-1,71,-26,68v-45,-5,-28,-96,-28,-145v0,-23,13,-38,28,-38v34,0,25,61,26,98r-30,0v2,19,-6,48,5,59v12,-4,4,-28,6,-42r19,0xm41,-104v-2,-16,6,-43,-6,-49v-11,7,-2,34,-5,49r11,0","w":66},"\u00eb":{"d":"60,-65v2,31,-1,71,-26,68v-45,-5,-28,-96,-28,-145v0,-23,13,-38,28,-38v34,0,25,61,26,98r-30,0v2,19,-6,48,5,59v12,-4,4,-28,6,-42r19,0xm41,-104v-2,-16,6,-43,-6,-49v-11,7,-2,34,-5,49r11,0xm55,-196r-16,0r0,-33r16,0r0,33xm28,-196r-15,0r0,-33r15,0r0,33","w":66},"\u00ed":{"d":"31,0r-23,0r0,-177r23,0r0,177xm43,-240r-18,47r-13,0r12,-47r19,0","w":38},"\u00ec":{"d":"31,0r-23,0r0,-177r23,0r0,177xm26,-193r-13,0r-19,-47r21,0","w":38},"\u00ee":{"d":"48,-203v2,8,-4,11,-10,11v-9,0,-16,-6,-19,-25v-4,23,-14,29,-29,22r0,-8v7,0,19,-12,23,-37r12,0v4,25,16,37,23,37xm31,0r-23,0r0,-177r23,0r0,177","w":38},"\u00ef":{"d":"31,0r-23,0r0,-177r23,0r0,177xm40,-196r-16,0r0,-33r16,0r0,33xm13,-196r-15,0r0,-33r15,0r0,33","w":38},"\u00f1":{"d":"60,-234v6,16,-1,42,-13,39v-11,1,-21,-28,-26,-10r0,10r-10,0v-6,-16,1,-42,13,-39v11,0,22,26,27,9r0,-9r9,0xm63,0r-23,0r0,-146v0,-4,-2,-7,-5,-7v-3,0,-4,3,-4,7r0,146r-23,0r0,-177v9,1,25,-5,23,8v3,-7,8,-11,14,-11v10,0,18,12,18,27r0,153","w":70},"\u00f3":{"d":"62,-142v0,49,17,138,-27,145v-46,-5,-29,-96,-29,-145v0,-23,14,-38,29,-38v15,0,27,15,27,38xm39,-31r0,-115v0,-4,-1,-7,-4,-7v-3,0,-5,3,-5,7r0,115v0,4,2,8,5,8v3,0,4,-4,4,-8xm59,-240r-18,47r-13,0r12,-47r19,0","w":68},"\u00f2":{"d":"62,-142v0,49,17,138,-27,145v-46,-5,-29,-96,-29,-145v0,-23,14,-38,29,-38v15,0,27,15,27,38xm39,-31r0,-115v0,-4,-1,-7,-4,-7v-3,0,-5,3,-5,7r0,115v0,4,2,8,5,8v3,0,4,-4,4,-8xm41,-193r-13,0r-19,-47r21,0","w":68},"\u00f4":{"d":"64,-203v2,8,-4,11,-10,11v-9,0,-16,-6,-19,-25v-4,23,-14,29,-29,22r0,-8v7,0,19,-12,23,-37r12,0v4,25,16,37,23,37xm62,-142v0,49,17,138,-27,145v-46,-5,-29,-96,-29,-145v0,-23,14,-38,29,-38v15,0,27,15,27,38xm39,-31r0,-115v0,-4,-1,-7,-4,-7v-3,0,-5,3,-5,7r0,115v0,4,2,8,5,8v3,0,4,-4,4,-8","w":68},"\u00f6":{"d":"62,-142v0,49,17,138,-27,145v-46,-5,-29,-96,-29,-145v0,-23,14,-38,29,-38v15,0,27,15,27,38xm39,-31r0,-115v0,-4,-1,-7,-4,-7v-3,0,-5,3,-5,7r0,115v0,4,2,8,5,8v3,0,4,-4,4,-8xm56,-196r-16,0r0,-33r16,0r0,33xm29,-196r-15,0r0,-33r15,0r0,33","w":68},"\u00f5":{"d":"59,-234v6,16,-1,42,-13,39v-11,1,-21,-28,-26,-10r0,10r-10,0v-6,-16,1,-42,13,-39v11,0,22,26,27,9r0,-9r9,0xm62,-142v0,49,17,138,-27,145v-46,-5,-29,-96,-29,-145v0,-23,14,-38,29,-38v15,0,27,15,27,38xm39,-31r0,-115v0,-4,-1,-7,-4,-7v-3,0,-5,3,-5,7r0,115v0,4,2,8,5,8v3,0,4,-4,4,-8","w":68},"\u00fa":{"d":"63,0v-9,-1,-25,5,-23,-8v-11,22,-34,8,-33,-16r0,-153r23,0r0,146v0,4,2,8,5,8v3,0,5,-4,5,-8r0,-146r23,0r0,177xm59,-240r-18,47r-13,0r12,-47r19,0","w":70},"\u00f9":{"d":"63,0v-9,-1,-25,5,-23,-8v-11,22,-34,8,-33,-16r0,-153r23,0r0,146v0,4,2,8,5,8v3,0,5,-4,5,-8r0,-146r23,0r0,177xm41,-193r-13,0r-19,-47r21,0","w":70},"\u00fb":{"d":"64,-203v2,8,-4,11,-10,11v-9,0,-16,-6,-19,-25v-4,23,-14,29,-29,22r0,-8v7,0,20,-12,24,-37r11,0v4,25,16,37,23,37xm63,0v-9,-1,-25,5,-23,-8v-11,22,-34,8,-33,-16r0,-153r23,0r0,146v0,4,2,8,5,8v3,0,5,-4,5,-8r0,-146r23,0r0,177","w":70},"\u00fc":{"d":"63,0v-9,-1,-25,5,-23,-8v-11,22,-34,8,-33,-16r0,-153r23,0r0,146v0,4,2,8,5,8v3,0,5,-4,5,-8r0,-146r23,0r0,177xm56,-196r-16,0r0,-33r16,0r0,33xm29,-196r-15,0r0,-33r15,0r0,33","w":70},"\u00b0":{"d":"56,-216v0,14,-11,26,-26,26v-15,0,-26,-12,-26,-26v0,-14,11,-27,26,-27v15,0,26,13,26,27xm42,-216v0,-9,-4,-15,-12,-15v-8,0,-13,6,-13,15v0,8,5,14,13,14v8,0,12,-6,12,-14","w":59},"\u00a2":{"d":"25,-209r0,-31r19,0r0,30v19,6,18,40,17,67r-19,0v1,-14,1,-59,-11,-33r0,113v0,10,12,11,11,0r0,-33r19,0v1,27,2,60,-17,66r0,30r-19,0r0,-31v-31,-20,-17,-95,-17,-142v0,-17,7,-31,17,-36","w":68},"\u00a3":{"d":"94,-70v1,33,2,74,-28,73v-10,0,-23,-8,-27,-15v-10,25,-43,17,-43,-10v0,-17,19,-31,37,-22v5,-15,7,-45,3,-64r-22,0r0,-25r16,0v-10,-30,-15,-110,29,-110v28,0,32,39,30,73r-23,0v3,-18,-3,-59,-15,-29v0,31,6,51,8,66r23,0r0,25r-20,0v3,25,-4,49,-14,72v8,8,24,11,25,-4r0,-30r21,0xm27,-24v-4,-7,-15,-7,-16,2v2,10,15,9,16,-2","w":98},"\u00a7":{"d":"83,-91v0,27,-11,46,-23,57v14,23,21,32,21,55v0,23,-11,45,-37,45v-29,0,-43,-24,-40,-60r26,0v0,15,-2,33,12,33v9,0,13,-7,13,-16v0,-37,-51,-57,-51,-112v0,-23,9,-43,23,-56v-28,-28,-32,-98,17,-98v31,0,40,28,37,61r-25,0v-1,-14,4,-33,-11,-32v-8,0,-12,5,-12,13v0,35,50,56,50,110xm46,-52v18,-19,15,-56,-4,-75v-18,19,-15,56,4,75","w":86},"\u00b6":{"d":"118,62r-16,0r0,-274r-17,0r0,274r-16,0r0,-131v-44,4,-61,-32,-62,-88v0,-50,22,-83,52,-83r59,0r0,302xm69,-92r0,-120v-30,0,-19,59,-19,91v0,19,3,31,19,29","w":127},"\u00df":{"d":"67,-95v-1,36,8,111,-30,95r0,-15v4,0,7,-3,7,-12r0,-74v0,-9,-2,-14,-7,-14r0,-26v15,-5,8,-39,8,-58v0,-10,-3,-14,-7,-14v-4,0,-7,4,-7,14r0,199r-23,0r0,-193v0,-28,11,-47,29,-47v38,0,39,91,18,114v7,6,12,16,12,31","w":73},"\u00ae":{"d":"166,-110v0,45,-35,82,-81,82v-46,0,-80,-37,-80,-82v0,-45,34,-82,80,-82v46,0,81,37,81,82xm153,-110v0,-39,-28,-70,-68,-70v-40,0,-67,31,-67,70v0,39,27,70,67,70v40,0,68,-31,68,-70xm116,-80v-1,4,2,12,-4,10v-29,4,5,-43,-37,-35r0,34r-14,0r0,-79v25,0,51,-4,51,25v0,9,-4,14,-13,16v13,2,14,12,13,26v0,2,1,3,4,3xm75,-114v15,1,25,0,23,-16v2,-10,-13,-9,-23,-9r0,25","w":170},"\u00a9":{"d":"166,-110v0,45,-35,82,-81,82v-46,0,-80,-37,-80,-82v0,-45,34,-82,80,-82v46,0,81,37,81,82xm153,-110v0,-39,-28,-70,-68,-70v-40,0,-67,31,-67,70v0,39,27,70,67,70v40,0,68,-31,68,-70xm112,-97v2,18,-9,28,-26,29v-31,1,-28,-31,-27,-61v0,-14,12,-23,27,-23v17,0,28,11,26,29v-18,6,-6,-18,-26,-18v-22,1,-10,31,-13,50v0,6,4,12,13,12v11,-1,15,-7,14,-18r12,0","w":170},"\u00b4":{"d":"36,-240r-18,47r-13,0r12,-47r19,0","w":35},"\u00a8":{"d":"46,-196r-16,0r0,-33r16,0r0,33xm19,-196r-15,0r0,-33r15,0r0,33","w":49},"\u00c6":{"d":"106,0r-58,0r0,-44r-17,0r-4,44r-27,0r33,-240r73,0r0,29r-30,0r0,73r20,0r0,29r-20,0r0,80r30,0r0,29xm48,-74r0,-106r-13,106r13,0","w":109},"\u00d8":{"d":"49,-116v-6,26,-16,46,-14,80v0,5,2,9,7,9v4,0,7,-4,7,-9r0,-80xm35,-123v6,-26,16,-47,14,-81v0,-5,-3,-8,-7,-8v-5,0,-7,3,-7,8r0,81xm0,4v15,-53,6,-137,6,-206v0,-35,36,-53,59,-32r3,-14r16,5v-15,53,-6,137,-6,205v0,34,-36,53,-59,32r-4,14"},"\u00b1":{"d":"183,0r-174,0r0,-181r174,0r0,181xm164,-18r0,-145r-137,0r0,145r137,0","w":191},"\u00a5":{"d":"51,-100r0,18r20,0r0,25r-20,0r0,57r-27,0r0,-57r-19,0r0,-25r19,0r0,-18r-19,0r0,-25r16,0r-19,-115r26,0r12,95r11,-95r26,0r-22,115r16,0r0,25r-20,0","w":78},"\u00aa":{"d":"68,-110v-12,1,-18,-2,-22,-12v-10,22,-39,12,-39,-17v0,-30,10,-42,33,-55v2,-10,0,-39,-9,-21r0,14r-21,0v-2,-24,6,-42,27,-42v40,0,21,69,25,108v0,3,2,6,6,6r0,19xm35,-131v10,-5,3,-29,5,-42v-12,7,-10,19,-10,35v0,4,1,7,5,7","w":71},"\u00ba":{"d":"63,-211v0,39,12,100,-28,101v-40,0,-28,-62,-28,-101v0,-19,12,-32,28,-32v16,0,28,13,28,32xm40,-138r0,-77v0,-4,-2,-6,-5,-6v-3,0,-5,2,-5,6r0,77v0,4,2,7,5,7v3,0,5,-3,5,-7","w":70},"\u00e6":{"d":"88,-65v6,40,-12,89,-43,59v-18,21,-41,4,-41,-29v0,-40,10,-62,32,-81v-2,-12,5,-33,-5,-37v-8,2,-3,20,-4,29r-22,0v-5,-35,17,-74,40,-47v18,-21,43,-3,43,29r0,60r-31,0v3,19,-7,50,6,59v10,-5,3,-29,5,-42r20,0xm68,-104v-2,-16,6,-42,-5,-49v-13,6,-3,33,-6,49r11,0xm31,-23v11,-10,2,-43,5,-62v-12,13,-10,30,-10,53v0,5,2,9,5,9","w":93},"\u00f8":{"d":"39,-85v-7,14,-16,46,-4,62v10,-12,1,-43,4,-62xm30,-91v7,-14,16,-45,5,-62v-12,10,-2,43,-5,62xm-6,-5v19,-31,12,-89,12,-137v0,-38,39,-52,52,-20r8,-17r9,7r-13,32v-5,49,18,143,-27,143v-10,0,-20,-7,-25,-18r-6,17","w":68},"\u00bf":{"d":"46,-116v4,21,-18,96,-20,128v-2,26,15,30,15,11r0,-31r24,0v1,36,1,74,-32,74v-23,0,-32,-19,-32,-48v0,-32,28,-94,28,-134r17,0xm28,-177r20,0r0,37r-20,0r0,-37","w":71},"\u00a1":{"d":"30,-140r-20,0r0,-37r20,0r0,37xm32,63r-24,0v-1,-65,0,-128,9,-183r7,0v8,56,9,118,8,183","w":40},"\u00ab":{"d":"45,0r-10,0v-4,-31,-10,-48,-28,-60r0,-19v18,-12,24,-29,28,-60r10,0v0,35,-3,56,-17,70v14,14,17,34,17,69xm86,0r-9,0v-4,-31,-11,-48,-29,-60r0,-19v18,-12,25,-29,29,-60r9,0v0,35,-3,56,-17,70v14,14,17,34,17,69","w":94},"\u00bb":{"d":"46,-60v-18,12,-24,29,-28,60r-9,0v0,-35,2,-55,16,-69v-14,-14,-16,-35,-16,-70r9,0v4,31,10,48,28,60r0,19xm88,-60v-18,12,-25,29,-29,60r-9,0v0,-35,3,-55,17,-69v-14,-14,-17,-35,-17,-70r9,0v4,31,11,48,29,60r0,19","w":94},"\u00a0":{"w":16},"\u00c0":{"d":"75,0r-29,0r-2,-44r-17,0r-3,44r-24,0r21,-240r32,0xm42,-74r-5,-106r-7,106r12,0xm43,-251r-13,0r-19,-47r21,0","w":75},"\u00c3":{"d":"63,-292v8,15,0,42,-13,39v-11,1,-22,-26,-26,-9r0,9r-10,0v-6,-16,2,-42,14,-39v11,-1,21,28,26,10r0,-10r9,0xm75,0r-29,0r-2,-44r-17,0r-3,44r-24,0r21,-240r32,0xm42,-74r-5,-106r-7,106r12,0","w":75},"\u00d5":{"d":"67,-292v6,16,-2,42,-14,39v-11,1,-22,-26,-26,-9r0,9v-10,3,-12,-7,-12,-13v0,-18,7,-26,16,-26v11,-1,21,28,26,10r0,-10r10,0xm78,-38v0,24,-16,41,-36,41v-19,0,-36,-17,-36,-41r0,-164v0,-24,17,-41,36,-41v20,0,36,17,36,41r0,164xm49,-36r0,-168v0,-5,-2,-8,-7,-8v-5,0,-7,3,-7,8r0,168v0,5,2,9,7,9v5,0,7,-4,7,-9"},"\u00ff":{"d":"58,-177r-20,197v-4,34,-7,43,-33,43r0,-24v18,3,12,-28,15,-43r-18,-173r23,0r6,109r6,-109r21,0xm52,-196r-16,0r0,-33r16,0r0,33xm25,-196r-15,0r0,-33r15,0r0,33","w":60},"\u00a4":{"d":"78,-103r-16,16r-17,-17r-18,17r-15,-15r18,-18r-18,-17r16,-15r17,17r17,-17r16,15r-18,17","w":90},"\u00b7":{"d":"28,-101r-22,0r0,-38r22,0r0,38","w":34},"\u00c2":{"d":"67,-261v2,8,-4,11,-10,11v-9,0,-17,-6,-20,-25v-4,23,-13,29,-28,22r0,-8v7,0,19,-11,23,-36r12,0v4,25,16,36,23,36xm75,0r-29,0r-2,-44r-17,0r-3,44r-24,0r21,-240r32,0xm42,-74r-5,-106r-7,106r12,0","w":75},"\u00ca":{"d":"66,-261v2,8,-4,11,-10,11v-9,0,-16,-6,-19,-25v-4,23,-14,29,-29,22r0,-8v7,0,19,-11,23,-36r12,0v4,25,16,36,23,36xm66,0r-58,0r0,-240r58,0r0,29r-30,0r0,73r21,0r0,29r-21,0r0,80r30,0r0,29","w":69},"\u00c1":{"d":"75,0r-29,0r-2,-44r-17,0r-3,44r-24,0r21,-240r32,0xm42,-74r-5,-106r-7,106r12,0xm61,-298r-18,47r-13,0r12,-47r19,0","w":75},"\u00cb":{"d":"66,0r-58,0r0,-240r58,0r0,29r-30,0r0,73r21,0r0,29r-21,0r0,80r30,0r0,29xm59,-254r-16,0r0,-33r16,0r0,33xm32,-254r-15,0r0,-33r15,0r0,33","w":69},"\u00c8":{"d":"66,0r-58,0r0,-240r58,0r0,29r-30,0r0,73r21,0r0,29r-21,0r0,80r30,0r0,29xm44,-251r-13,0r-19,-47r21,0","w":69},"\u00cd":{"d":"36,0r-28,0r0,-240r28,0r0,240xm47,-298r-18,47r-13,0r12,-47r19,0","w":44},"\u00ce":{"d":"53,-261v2,8,-4,11,-10,11v-9,0,-17,-6,-20,-25v-4,23,-13,29,-28,22r0,-8v7,0,19,-11,23,-36r12,0v4,25,16,36,23,36xm36,0r-28,0r0,-240r28,0r0,240","w":44},"\u00cf":{"d":"36,0r-28,0r0,-240r28,0r0,240xm44,-254r-16,0r0,-33r16,0r0,33xm17,-254r-15,0r0,-33r15,0r0,33","w":44},"\u00cc":{"d":"36,0r-28,0r0,-240r28,0r0,240xm29,-251r-13,0r-19,-47r21,0","w":44},"\u00d3":{"d":"78,-38v0,24,-16,41,-36,41v-19,0,-36,-17,-36,-41r0,-164v0,-24,17,-41,36,-41v20,0,36,17,36,41r0,164xm49,-36r0,-168v0,-5,-2,-8,-7,-8v-5,0,-7,3,-7,8r0,168v0,5,2,9,7,9v5,0,7,-4,7,-9xm66,-298r-18,47r-13,0r12,-47r19,0"},"\u00d4":{"d":"72,-261v2,8,-4,11,-10,11v-9,0,-17,-6,-20,-25v-4,23,-13,29,-28,22r0,-8v7,0,19,-11,23,-36r12,0v4,25,16,36,23,36xm78,-38v0,24,-16,41,-36,41v-19,0,-36,-17,-36,-41r0,-164v0,-24,17,-41,36,-41v20,0,36,17,36,41r0,164xm49,-36r0,-168v0,-5,-2,-8,-7,-8v-5,0,-7,3,-7,8r0,168v0,5,2,9,7,9v5,0,7,-4,7,-9"},"\u00d2":{"d":"78,-38v0,24,-16,41,-36,41v-19,0,-36,-17,-36,-41r0,-164v0,-24,17,-41,36,-41v20,0,36,17,36,41r0,164xm49,-36r0,-168v0,-5,-2,-8,-7,-8v-5,0,-7,3,-7,8r0,168v0,5,2,9,7,9v5,0,7,-4,7,-9xm49,-251r-13,0r-19,-47r21,0"},"\u00da":{"d":"77,-38v0,24,-16,41,-35,41v-19,0,-34,-17,-34,-41r0,-202r27,0r0,204v0,5,3,9,7,9v5,0,8,-4,8,-9r0,-204r27,0r0,202xm67,-298r-18,47r-13,0r12,-47r19,0"},"\u00db":{"d":"72,-261v2,8,-4,11,-10,11v-9,0,-16,-6,-19,-25v-4,23,-14,29,-29,22r0,-8v7,0,19,-11,23,-36r12,0v4,25,16,36,23,36xm77,-38v0,24,-16,41,-35,41v-19,0,-34,-17,-34,-41r0,-202r27,0r0,204v0,5,3,9,7,9v5,0,8,-4,8,-9r0,-204r27,0r0,202"},"\u00d9":{"d":"77,-38v0,24,-16,41,-35,41v-19,0,-34,-17,-34,-41r0,-202r27,0r0,204v0,5,3,9,7,9v5,0,8,-4,8,-9r0,-204r27,0r0,202xm50,-251r-13,0r-19,-47r21,0"},"\u00af":{"d":"47,-204r-43,0r0,-20r43,0r0,20","w":50},"\u00b8":{"d":"37,37v0,14,-12,25,-24,18v-2,-10,13,-3,10,-22v-2,-15,-15,1,-19,-9r17,-29v12,6,-3,16,-6,24v13,-4,22,3,22,18","w":35}}});Cufon.replace('h1',{fontFamily:'knockout66'});Cufon.replace('h2:not(.italic), h5, button .btn2, .skinned .btn2',{fontFamily:'knockout48'});Cufon.replace('h3:not(.tooltip h3,.italic), h4',{fontFamily:'knockout49'});