
(function(window,undefined){var jQuery=function(selector,context){return new jQuery.fn.init(selector,context);},_jQuery=window.jQuery,_$=window.$,document=window.document,rootjQuery,quickExpr=/^[^<]*(<[\w\W]+>)[^>]*$|^#([\w-]+)$/,isSimple=/^.[^:#\[\.,]*$/,rnotwhite=/\S/,rtrim=/^(\s|\u00A0)+|(\s|\u00A0)+$/g,rsingleTag=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,userAgent=navigator.userAgent,browserMatch,readyBound=false,readyList=[],DOMContentLoaded,toString=Object.prototype.toString,hasOwnProperty=Object.prototype.hasOwnProperty,push=Array.prototype.push,slice=Array.prototype.slice,indexOf=Array.prototype.indexOf;jQuery.fn=jQuery.prototype={init:function(selector,context){var match,elem,ret,doc;if(!selector){return this;}
if(selector.nodeType){this.context=this[0]=selector;this.length=1;return this;}
if(typeof selector==="string"){match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1]){doc=(context?context.ownerDocument||context:document);ret=rsingleTag.exec(selector);if(ret){if(jQuery.isPlainObject(context)){selector=[document.createElement(ret[1])];jQuery.fn.attr.call(selector,context,true);}else{selector=[doc.createElement(ret[1])];}}else{ret=buildFragment([match[1]],[doc]);selector=(ret.cacheable?ret.fragment.cloneNode(true):ret.fragment).childNodes;}}else{elem=document.getElementById(match[2]);if(elem){if(elem.id!==match[2]){return rootjQuery.find(selector);}
this.length=1;this[0]=elem;}
this.context=document;this.selector=selector;return this;}}else if(!context&&/^\w+$/.test(selector)){this.selector=selector;this.context=document;selector=document.getElementsByTagName(selector);}else if(!context||context.jquery){return(context||rootjQuery).find(selector);}else{return jQuery(context).find(selector);}}else if(jQuery.isFunction(selector)){return rootjQuery.ready(selector);}
if(selector.selector!==undefined){this.selector=selector.selector;this.context=selector.context;}
return jQuery.isArray(selector)?this.setArray(selector):jQuery.makeArray(selector,this);},selector:"",jquery:"1.4",length:0,size:function(){return this.length;},toArray:function(){return slice.call(this,0);},get:function(num){return num==null?this.toArray():(num<0?this.slice(num)[0]:this[num]);},pushStack:function(elems,name,selector){var ret=jQuery(elems||null);ret.prevObject=this;ret.context=this.context;if(name==="find"){ret.selector=this.selector+(this.selector?" ":"")+selector;}else if(name){ret.selector=this.selector+"."+name+"("+selector+")";}
return ret;},setArray:function(elems){this.length=0;push.apply(this,elems);return this;},each:function(callback,args){return jQuery.each(this,callback,args);},ready:function(fn){jQuery.bindReady();if(jQuery.isReady){fn.call(document,jQuery);}else if(readyList){readyList.push(fn);}
return this;},eq:function(i){return i===-1?this.slice(i):this.slice(i,+i+1);},first:function(){return this.eq(0);},last:function(){return this.eq(-1);},slice:function(){return this.pushStack(slice.apply(this,arguments),"slice",slice.call(arguments).join(","));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},end:function(){return this.prevObject||jQuery(null);},push:push,sort:[].sort,splice:[].splice};jQuery.fn.init.prototype=jQuery.fn;jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options,name,src,copy;if(typeof target==="boolean"){deep=target;target=arguments[1]||{};i=2;}
if(typeof target!=="object"&&!jQuery.isFunction(target)){target={};}
if(length===i){target=this;--i;}
for(;i<length;i++){if((options=arguments[i])!=null){for(name in options){src=target[name];copy=options[name];if(target===copy){continue;}
if(deep&&copy&&(jQuery.isPlainObject(copy)||jQuery.isArray(copy))){var clone=src&&(jQuery.isPlainObject(src)||jQuery.isArray(src))?src:jQuery.isArray(copy)?[]:{};target[name]=jQuery.extend(deep,clone,copy);}else if(copy!==undefined){target[name]=copy;}}}}
return target;};jQuery.extend({noConflict:function(deep){window.$=_$;if(deep){window.jQuery=_jQuery;}
return jQuery;},isReady:false,ready:function(){if(!jQuery.isReady){if(!document.body){return setTimeout(jQuery.ready,13);}
jQuery.isReady=true;if(readyList){var fn,i=0;while((fn=readyList[i++])){fn.call(document,jQuery);}
readyList=null;}
if(jQuery.fn.triggerHandler){jQuery(document).triggerHandler("ready");}}},bindReady:function(){if(readyBound){return;}
readyBound=true;if(document.readyState==="complete"){return jQuery.ready();}
if(document.addEventListener){document.addEventListener("DOMContentLoaded",DOMContentLoaded,false);window.addEventListener("load",jQuery.ready,false);}else if(document.attachEvent){document.attachEvent("onreadystatechange",DOMContentLoaded);window.attachEvent("onload",jQuery.ready);var toplevel=false;try{toplevel=window.frameElement==null;}catch(e){}
if(document.documentElement.doScroll&&toplevel){doScrollCheck();}}},isFunction:function(obj){return toString.call(obj)==="[object Function]";},isArray:function(obj){return toString.call(obj)==="[object Array]";},isPlainObject:function(obj){if(!obj||toString.call(obj)!=="[object Object]"||obj.nodeType||obj.setInterval){return false;}
if(obj.constructor&&!hasOwnProperty.call(obj,"constructor")&&!hasOwnProperty.call(obj.constructor.prototype,"isPrototypeOf")){return false;}
var key;for(key in obj){}
return key===undefined||hasOwnProperty.call(obj,key);},isEmptyObject:function(obj){for(var name in obj){return false;}
return true;},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){var ret={browser:""};ua=ua.toLowerCase();if(/webkit/.test(ua)){ret={browser:"webkit",version:/webkit[\/ ]([\w.]+)/};}else if(/opera/.test(ua)){ret={browser:"opera",version:/version/.test(ua)?/version[\/ ]([\w.]+)/:/opera[\/ ]([\w.]+)/};}else if(/msie/.test(ua)){ret={browser:"msie",version:/msie ([\w.]+)/};}else if(/mozilla/.test(ua)&&!/compatible/.test(ua)){ret={browser:"mozilla",version:/rv:([\w.]+)/};}
ret.version=(ret.version&&ret.version.exec(ua)||[0,"0"])[1];return ret;},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();}
if(indexOf){jQuery.inArray=function(elem,array){return indexOf.call(array,elem);};}
function evalScript(i,elem){if(elem.src){jQuery.ajax({url:elem.src,async:false,dataType:"script"});}else{jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"");}
if(elem.parentNode){elem.parentNode.removeChild(elem);}}
function access(elems,key,value,exec,fn,pass){var length=elems.length;if(typeof key==="object"){for(var k in key){access(elems,k,key[k],exec,fn,value);}
return elems;}
if(value!==undefined){exec=!pass&&exec&&jQuery.isFunction(value);for(var i=0;i<length;i++){fn(elems[i],key,exec?value.call(elems[i],i,fn(elems[i],key)):value,pass);}
return elems;}
return length?fn(elems[0],key):null;}
function now(){return(new Date).getTime();}
(function(){jQuery.support={};var root=document.documentElement,script=document.createElement("script"),div=document.createElement("div"),id="script"+now();div.style.display="none";div.innerHTML="   <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";var all=div.getElementsByTagName("*"),a=div.getElementsByTagName("a")[0];if(!all||!all.length||!a){return;}
jQuery.support={leadingWhitespace:div.firstChild.nodeType===3,tbody:!div.getElementsByTagName("tbody").length,htmlSerialize:!!div.getElementsByTagName("link").length,style:/red/.test(a.getAttribute("style")),hrefNormalized:a.getAttribute("href")==="/a",opacity:/^0.55$/.test(a.style.opacity),cssFloat:!!a.style.cssFloat,checkOn:div.getElementsByTagName("input")[0].value==="on",optSelected:document.createElement("select").appendChild(document.createElement("option")).selected,scriptEval:false,noCloneEvent:true,boxModel:null};script.type="text/javascript";try{script.appendChild(document.createTextNode("window."+id+"=1;"));}catch(e){}
root.insertBefore(script,root.firstChild);if(window[id]){jQuery.support.scriptEval=true;delete window[id];}
root.removeChild(script);if(div.attachEvent&&div.fireEvent){div.attachEvent("onclick",function click(){jQuery.support.noCloneEvent=false;div.detachEvent("onclick",click);});div.cloneNode(true).fireEvent("onclick");}
jQuery(function(){var div=document.createElement("div");div.style.width=div.style.paddingLeft="1px";document.body.appendChild(div);jQuery.boxModel=jQuery.support.boxModel=div.offsetWidth===2;document.body.removeChild(div).style.display='none';div=null;});var eventSupported=function(eventName){var el=document.createElement("div");eventName="on"+eventName;var isSupported=(eventName in el);if(!isSupported){el.setAttribute(eventName,"return;");isSupported=typeof el[eventName]==="function";}
el=null;return isSupported;};jQuery.support.submitBubbles=eventSupported("submit");jQuery.support.changeBubbles=eventSupported("change");root=script=div=all=a=null;})();jQuery.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};var expando="jQuery"+now(),uuid=0,windowData={};var emptyObject={};jQuery.extend({cache:{},expando:expando,noData:{"embed":true,"object":true,"applet":true},data:function(elem,name,data){if(elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()]){return;}
elem=elem==window?windowData:elem;var id=elem[expando],cache=jQuery.cache,thisCache;if(!name&&!id){return null;}
if(!id){id=++uuid;}
if(typeof name==="object"){elem[expando]=id;thisCache=cache[id]=jQuery.extend(true,{},name);}else if(cache[id]){thisCache=cache[id];}else if(typeof data==="undefined"){thisCache=emptyObject;}else{thisCache=cache[id]={};}
if(data!==undefined){elem[expando]=id;thisCache[name]=data;}
return typeof name==="string"?thisCache[name]:thisCache;},removeData:function(elem,name){if(elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()]){return;}
elem=elem==window?windowData:elem;var id=elem[expando],cache=jQuery.cache,thisCache=cache[id];if(name){if(thisCache){delete thisCache[name];if(jQuery.isEmptyObject(thisCache)){jQuery.removeData(elem);}}}else{try{delete elem[expando];}catch(e){if(elem.removeAttribute){elem.removeAttribute(expando);}}
delete cache[id];}}});jQuery.fn.extend({data:function(key,value){if(typeof key==="undefined"&&this.length){return jQuery.data(this[0]);}else if(typeof key==="object"){return this.each(function(){jQuery.data(this,key);});}
var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value===undefined){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data===undefined&&this.length){data=jQuery.data(this[0],key);}
return data===undefined&&parts[1]?this.data(parts[0]):data;}else{return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value);});}},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});}});jQuery.extend({queue:function(elem,type,data){if(!elem){return;}
type=(type||"fx")+"queue";var q=jQuery.data(elem,type);if(!data){return q||[];}
if(!q||jQuery.isArray(data)){q=jQuery.data(elem,type,jQuery.makeArray(data));}else{q.push(data);}
return q;},dequeue:function(elem,type){type=type||"fx";var queue=jQuery.queue(elem,type),fn=queue.shift();if(fn==="inprogress"){fn=queue.shift();}
if(fn){if(type==="fx"){queue.unshift("inprogress");}
fn.call(elem,function(){jQuery.dequeue(elem,type);});}}});jQuery.fn.extend({queue:function(type,data){if(typeof type!=="string"){data=type;type="fx";}
if(data===undefined){return jQuery.queue(this[0],type);}
return this.each(function(i,elem){var queue=jQuery.queue(this,type,data);if(type==="fx"&&queue[0]!=="inprogress"){jQuery.dequeue(this,type);}});},dequeue:function(type){return this.each(function(){jQuery.dequeue(this,type);});},delay:function(time,type){time=jQuery.fx?jQuery.fx.speeds[time]||time:time;type=type||"fx";return this.queue(type,function(){var elem=this;setTimeout(function(){jQuery.dequeue(elem,type);},time);});},clearQueue:function(type){return this.queue(type||"fx",[]);}});var rclass=/[\n\t]/g,rspace=/\s+/,rreturn=/\r/g,rspecialurl=/href|src|style/,rtype=/(button|input)/i,rfocusable=/(button|input|object|select|textarea)/i,rclickable=/^(a|area)$/i,rradiocheck=/radio|checkbox/;jQuery.fn.extend({attr:function(name,value){return access(this,name,value,true,jQuery.attr);},removeAttr:function(name,fn){return this.each(function(){jQuery.attr(this,name,"");if(this.nodeType===1){this.removeAttribute(name);}});},addClass:function(value){if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);self.addClass(value.call(this,i,self.attr("class")));});}
if(value&&typeof value==="string"){var classNames=(value||"").split(rspace);for(var i=0,l=this.length;i<l;i++){var elem=this[i];if(elem.nodeType===1){if(!elem.className){elem.className=value;}else{var className=" "+elem.className+" ";for(var c=0,cl=classNames.length;c<cl;c++){if(className.indexOf(" "+classNames[c]+" ")<0){elem.className+=" "+classNames[c];}}}}}}
return this;},removeClass:function(value){if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);self.removeClass(value.call(this,i,self.attr("class")));});}
if((value&&typeof value==="string")||value===undefined){var classNames=(value||"").split(rspace);for(var i=0,l=this.length;i<l;i++){var elem=this[i];if(elem.nodeType===1&&elem.className){if(value){var className=(" "+elem.className+" ").replace(rclass," ");for(var c=0,cl=classNames.length;c<cl;c++){className=className.replace(" "+classNames[c]+" "," ");}
elem.className=className.substring(1,className.length-1);}else{elem.className="";}}}}
return this;},toggleClass:function(value,stateVal){var type=typeof value,isBool=typeof stateVal==="boolean";if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);self.toggleClass(value.call(this,i,self.attr("class"),stateVal),stateVal);});}
return this.each(function(){if(type==="string"){var className,i=0,self=jQuery(this),state=stateVal,classNames=value.split(rspace);while((className=classNames[i++])){state=isBool?state:!self.hasClass(className);self[state?"addClass":"removeClass"](className);}}else if(type==="undefined"||type==="boolean"){if(this.className){jQuery.data(this,"__className__",this.className);}
this.className=this.className||value===false?"":jQuery.data(this,"__className__")||"";}});},hasClass:function(selector){var className=" "+selector+" ";for(var i=0,l=this.length;i<l;i++){if((" "+this[i].className+" ").replace(rclass," ").indexOf(className)>-1){return true;}}
return false;},val:function(value){if(value===undefined){var elem=this[0];if(elem){if(jQuery.nodeName(elem,"option")){return(elem.attributes.value||{}).specified?elem.value:elem.text;}
if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type==="select-one";if(index<0){return null;}
for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery(option).val();if(one){return value;}
values.push(value);}}
return values;}
if(rradiocheck.test(elem.type)&&!jQuery.support.checkOn){return elem.getAttribute("value")===null?"on":elem.value;}
return(elem.value||"").replace(rreturn,"");}
return undefined;}
var isFunction=jQuery.isFunction(value);return this.each(function(i){var self=jQuery(this),val=value;if(this.nodeType!==1){return;}
if(isFunction){val=value.call(this,i,self.val());}
if(typeof val==="number"){val+="";}
if(jQuery.isArray(val)&&rradiocheck.test(this.type)){this.checked=jQuery.inArray(self.val(),val)>=0;}else if(jQuery.nodeName(this,"select")){var values=jQuery.makeArray(val);jQuery("option",this).each(function(){this.selected=jQuery.inArray(jQuery(this).val(),values)>=0;});if(!values.length){this.selectedIndex=-1;}}else{this.value=val;}});}});jQuery.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},attr:function(elem,name,value,pass){if(!elem||elem.nodeType===3||elem.nodeType===8){return undefined;}
if(pass&&name in jQuery.attrFn){return jQuery(elem)[name](value);}
var notxml=elem.nodeType!==1||!jQuery.isXMLDoc(elem),set=value!==undefined;name=notxml&&jQuery.props[name]||name;if(elem.nodeType===1){var special=rspecialurl.test(name);if(name==="selected"&&!jQuery.support.optSelected){var parent=elem.parentNode;if(parent){parent.selectedIndex;if(parent.parentNode){parent.parentNode.selectedIndex;}}}
if(name in elem&&notxml&&!special){if(set){if(name==="type"&&rtype.test(elem.nodeName)&&elem.parentNode){throw"type property can't be changed";}
elem[name]=value;}
if(jQuery.nodeName(elem,"form")&&elem.getAttributeNode(name)){return elem.getAttributeNode(name).nodeValue;}
if(name==="tabIndex"){var attributeNode=elem.getAttributeNode("tabIndex");return attributeNode&&attributeNode.specified?attributeNode.value:rfocusable.test(elem.nodeName)||rclickable.test(elem.nodeName)&&elem.href?0:undefined;}
return elem[name];}
if(!jQuery.support.style&&notxml&&name==="style"){if(set){elem.style.cssText=""+value;}
return elem.style.cssText;}
if(set){elem.setAttribute(name,""+value);}
var attr=!jQuery.support.hrefNormalized&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}
return jQuery.style(elem,name,value);}});var fcleanup=function(nm){return nm.replace(/[^\w\s\.\|`]/g,function(ch){return"\\"+ch;});};jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType===3||elem.nodeType===8){return;}
if(elem.setInterval&&(elem!==window&&!elem.frameElement)){elem=window;}
if(!handler.guid){handler.guid=jQuery.guid++;}
if(data!==undefined){var fn=handler;handler=jQuery.proxy(fn);handler.data=data;}
var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle"),eventHandle;if(!handle){eventHandle=function(){return typeof jQuery!=="undefined"&&!jQuery.event.triggered?jQuery.event.handle.apply(eventHandle.elem,arguments):undefined;};handle=jQuery.data(elem,"handle",eventHandle);}
if(!handle){return;}
handle.elem=elem;types=types.split(/\s+/);var type,i=0;while((type=types[i++])){var namespaces=type.split(".");type=namespaces.shift();handler.type=namespaces.slice(0).sort().join(".");var handlers=events[type],special=this.special[type]||{};if(!handlers){handlers=events[type]={};if(!special.setup||special.setup.call(elem,data,namespaces,handler)===false){if(elem.addEventListener){elem.addEventListener(type,handle,false);}else if(elem.attachEvent){elem.attachEvent("on"+type,handle);}}}
if(special.add){var modifiedHandler=special.add.call(elem,handler,data,namespaces,handlers);if(modifiedHandler&&jQuery.isFunction(modifiedHandler)){modifiedHandler.guid=modifiedHandler.guid||handler.guid;handler=modifiedHandler;}}
handlers[handler.guid]=handler;this.global[type]=true;}
elem=null;},global:{},remove:function(elem,types,handler){if(elem.nodeType===3||elem.nodeType===8){return;}
var events=jQuery.data(elem,"events"),ret,type,fn;if(events){if(types===undefined||(typeof types==="string"&&types.charAt(0)===".")){for(type in events){this.remove(elem,type+(types||""));}}else{if(types.type){handler=types.handler;types=types.type;}
types=types.split(/\s+/);var i=0;while((type=types[i++])){var namespaces=type.split(".");type=namespaces.shift();var all=!namespaces.length,cleaned=jQuery.map(namespaces.slice(0).sort(),fcleanup),namespace=new RegExp("(^|\\.)"+cleaned.join("\\.(?:.*\\.)?")+"(\\.|$)"),special=this.special[type]||{};if(events[type]){if(handler){fn=events[type][handler.guid];delete events[type][handler.guid];}else{for(var handle in events[type]){if(all||namespace.test(events[type][handle].type)){delete events[type][handle];}}}
if(special.remove){special.remove.call(elem,namespaces,fn);}
for(ret in events[type]){break;}
if(!ret){if(!special.teardown||special.teardown.call(elem,namespaces)===false){if(elem.removeEventListener){elem.removeEventListener(type,jQuery.data(elem,"handle"),false);}else if(elem.detachEvent){elem.detachEvent("on"+type,jQuery.data(elem,"handle"));}}
ret=null;delete events[type];}}}}
for(ret in events){break;}
if(!ret){var handle=jQuery.data(elem,"handle");if(handle){handle.elem=null;}
jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle");}}},trigger:function(event,data,elem){var type=event.type||event,bubbling=arguments[3];if(!bubbling){event=typeof event==="object"?event[expando]?event:jQuery.extend(jQuery.Event(type),event):jQuery.Event(type);if(type.indexOf("!")>=0){event.type=type=type.slice(0,-1);event.exclusive=true;}
if(!elem){event.stopPropagation();if(this.global[type]){jQuery.each(jQuery.cache,function(){if(this.events&&this.events[type]){jQuery.event.trigger(event,data,this.handle.elem);}});}}
if(!elem||elem.nodeType===3||elem.nodeType===8){return undefined;}
event.result=undefined;event.target=elem;data=jQuery.makeArray(data);data.unshift(event);}
event.currentTarget=elem;var handle=jQuery.data(elem,"handle");if(handle){handle.apply(elem,data);}
var nativeFn,nativeHandler;try{if(!(elem&&elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()])){nativeFn=elem[type];nativeHandler=elem["on"+type];}}catch(e){}
var isClick=jQuery.nodeName(elem,"a")&&type==="click";if(!bubbling&&nativeFn&&!event.isDefaultPrevented()&&!isClick){this.triggered=true;try{elem[type]();}catch(e){}}else if(nativeHandler&&elem["on"+type].apply(elem,data)===false){event.result=false;}
this.triggered=false;if(!event.isPropagationStopped()){var parent=elem.parentNode||elem.ownerDocument;if(parent){jQuery.event.trigger(event,data,parent,true);}}},handle:function(event){var all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);event.currentTarget=this;var namespaces=event.type.split(".");event.type=namespaces.shift();all=!namespaces.length&&!event.exclusive;var namespace=new RegExp("(^|\\.)"+namespaces.slice(0).sort().join("\\.(?:.*\\.)?")+"(\\.|$)");handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||namespace.test(handler.type)){event.handler=handler;event.data=handler.data;var ret=handler.apply(this,arguments);if(ret!==undefined){event.result=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}
if(event.isImmediatePropagationStopped()){break;}}}
return event.result;},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(event){if(event[expando]){return event;}
var originalEvent=event;event=jQuery.Event(originalEvent);for(var i=this.props.length,prop;i;){prop=this.props[--i];event[prop]=originalEvent[prop];}
if(!event.target){event.target=event.srcElement||document;}
if(event.target.nodeType===3){event.target=event.target.parentNode;}
if(!event.relatedTarget&&event.fromElement){event.relatedTarget=event.fromElement===event.target?event.toElement:event.fromElement;}
if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc&&doc.clientLeft||body&&body.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc&&doc.clientTop||body&&body.clientTop||0);}
if(!event.which&&((event.charCode||event.charCode===0)?event.charCode:event.keyCode)){event.which=event.charCode||event.keyCode;}
if(!event.metaKey&&event.ctrlKey){event.metaKey=event.ctrlKey;}
if(!event.which&&event.button!==undefined){event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));}
return event;},guid:1E8,proxy:jQuery.proxy,special:{ready:{setup:jQuery.bindReady,teardown:jQuery.noop},live:{add:function(proxy,data,namespaces,live){jQuery.extend(proxy,data||{});proxy.guid+=data.selector+data.live;jQuery.event.add(this,data.live,liveHandler,data);},remove:function(namespaces){if(namespaces.length){var remove=0,name=new RegExp("(^|\\.)"+namespaces[0]+"(\\.|$)");jQuery.each((jQuery.data(this,"events").live||{}),function(){if(name.test(this.type)){remove++;}});if(remove<1){jQuery.event.remove(this,namespaces[0],liveHandler);}}},special:{}},beforeunload:{setup:function(data,namespaces,fn){if(this.setInterval){this.onbeforeunload=fn;}
return false;},teardown:function(namespaces,fn){if(this.onbeforeunload===fn){this.onbeforeunload=null;}}}}};jQuery.Event=function(src){if(!this.preventDefault){return new jQuery.Event(src);}
if(src&&src.type){this.originalEvent=src;this.type=src.type;}else{this.type=src;}
this.timeStamp=now();this[expando]=true;};function returnFalse(){return false;}
function returnTrue(){return true;}
jQuery.Event.prototype={preventDefault:function(){this.isDefaultPrevented=returnTrue;var e=this.originalEvent;if(!e){return;}
if(e.preventDefault){e.preventDefault();}
e.returnValue=false;},stopPropagation:function(){this.isPropagationStopped=returnTrue;var e=this.originalEvent;if(!e){return;}
if(e.stopPropagation){e.stopPropagation();}
e.cancelBubble=true;},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=returnTrue;this.stopPropagation();},isDefaultPrevented:returnFalse,isPropagationStopped:returnFalse,isImmediatePropagationStopped:returnFalse};var withinElement=function(event){var parent=event.relatedTarget;while(parent&&parent!==this){try{parent=parent.parentNode;}catch(e){break;}}
if(parent!==this){event.type=event.data;jQuery.event.handle.apply(this,arguments);}},delegate=function(event){event.type=event.data;jQuery.event.handle.apply(this,arguments);};jQuery.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(orig,fix){jQuery.event.special[orig]={setup:function(data){jQuery.event.add(this,fix,data&&data.selector?delegate:withinElement,orig);},teardown:function(data){jQuery.event.remove(this,fix,data&&data.selector?delegate:withinElement);}};});if(!jQuery.support.submitBubbles){jQuery.event.special.submit={setup:function(data,namespaces,fn){if(this.nodeName.toLowerCase()!=="form"){jQuery.event.add(this,"click.specialSubmit."+fn.guid,function(e){var elem=e.target,type=elem.type;if((type==="submit"||type==="image")&&jQuery(elem).closest("form").length){return trigger("submit",this,arguments);}});jQuery.event.add(this,"keypress.specialSubmit."+fn.guid,function(e){var elem=e.target,type=elem.type;if((type==="text"||type==="password")&&jQuery(elem).closest("form").length&&e.keyCode===13){return trigger("submit",this,arguments);}});}else{return false;}},remove:function(namespaces,fn){jQuery.event.remove(this,"click.specialSubmit"+(fn?"."+fn.guid:""));jQuery.event.remove(this,"keypress.specialSubmit"+(fn?"."+fn.guid:""));}};}
if(!jQuery.support.changeBubbles){var formElems=/textarea|input|select/i;function getVal(elem){var type=elem.type,val=elem.value;if(type==="radio"||type==="checkbox"){val=elem.checked;}else if(type==="select-multiple"){val=elem.selectedIndex>-1?jQuery.map(elem.options,function(elem){return elem.selected;}).join("-"):"";}else if(elem.nodeName.toLowerCase()==="select"){val=elem.selectedIndex;}
return val;}
function testChange(e){var elem=e.target,data,val;if(!formElems.test(elem.nodeName)||elem.readOnly){return;}
data=jQuery.data(elem,"_change_data");val=getVal(elem);if(val===data){return;}
if(e.type!=="focusout"||elem.type!=="radio"){jQuery.data(elem,"_change_data",val);}
if(elem.type!=="select"&&(data!=null||val)){e.type="change";return jQuery.event.trigger(e,arguments[1],this);}}
jQuery.event.special.change={filters:{focusout:testChange,click:function(e){var elem=e.target,type=elem.type;if(type==="radio"||type==="checkbox"||elem.nodeName.toLowerCase()==="select"){return testChange.call(this,e);}},keydown:function(e){var elem=e.target,type=elem.type;if((e.keyCode===13&&elem.nodeName.toLowerCase()!=="textarea")||(e.keyCode===32&&(type==="checkbox"||type==="radio"))||type==="select-multiple"){return testChange.call(this,e);}},beforeactivate:function(e){var elem=e.target;if(elem.nodeName.toLowerCase()==="input"&&elem.type==="radio"){jQuery.data(elem,"_change_data",getVal(elem));}}},setup:function(data,namespaces,fn){for(var type in changeFilters){jQuery.event.add(this,type+".specialChange."+fn.guid,changeFilters[type]);}
return formElems.test(this.nodeName);},remove:function(namespaces,fn){for(var type in changeFilters){jQuery.event.remove(this,type+".specialChange"+(fn?"."+fn.guid:""),changeFilters[type]);}
return formElems.test(this.nodeName);}};var changeFilters=jQuery.event.special.change.filters;}
function trigger(type,elem,args){args[0].type=type;return jQuery.event.handle.apply(elem,args);}
if(document.addEventListener){jQuery.each({focus:"focusin",blur:"focusout"},function(orig,fix){jQuery.event.special[fix]={setup:function(){this.addEventListener(orig,handler,true);},teardown:function(){this.removeEventListener(orig,handler,true);}};function handler(e){e=jQuery.event.fix(e);e.type=fix;return jQuery.event.handle.call(this,e);}});}
jQuery.each(["bind","one"],function(i,name){jQuery.fn[name]=function(type,data,fn){if(typeof type==="object"){for(var key in type){this[name](key,data,type[key],fn);}
return this;}
if(jQuery.isFunction(data)){thisObject=fn;fn=data;data=undefined;}
var handler=name==="one"?jQuery.proxy(fn,function(event){jQuery(this).unbind(event,handler);return fn.apply(this,arguments);}):fn;return type==="unload"&&name!=="one"?this.one(type,data,fn,thisObject):this.each(function(){jQuery.event.add(this,type,handler,data);});};});jQuery.fn.extend({unbind:function(type,fn){if(typeof type==="object"&&!type.preventDefault){for(var key in type){this.unbind(key,type[key]);}
return this;}
return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data){return this.each(function(){jQuery.event.trigger(type,data,this);});},triggerHandler:function(type,data){if(this[0]){var event=jQuery.Event(type);event.preventDefault();event.stopPropagation();jQuery.event.trigger(event,data,this[0]);return event.result;}},toggle:function(fn){var args=arguments,i=1;while(i<args.length){jQuery.proxy(fn,args[i++]);}
return this.click(jQuery.proxy(fn,function(event){var lastToggle=(jQuery.data(this,"lastToggle"+fn.guid)||0)%i;jQuery.data(this,"lastToggle"+fn.guid,lastToggle+1);event.preventDefault();return args[lastToggle].apply(this,arguments)||false;}));},hover:function(fnOver,fnOut){return this.mouseenter(fnOver).mouseleave(fnOut||fnOver);},live:function(type,data,fn){if(jQuery.isFunction(data)){fn=data;data=undefined;}
jQuery(this.context).bind(liveConvert(type,this.selector),{data:data,selector:this.selector,live:type},fn);return this;},die:function(type,fn){jQuery(this.context).unbind(liveConvert(type,this.selector),fn?{guid:fn.guid+this.selector+type}:null);return this;}});function liveHandler(event){var stop=true,elems=[],selectors=[],args=arguments,related,match,fn,elem,j,i,data,live=jQuery.extend({},jQuery.data(this,"events").live);for(j in live){fn=live[j];if(fn.live===event.type||fn.altLive&&jQuery.inArray(event.type,fn.altLive)>-1){data=fn.data;if(!(data.beforeFilter&&data.beforeFilter[event.type]&&!data.beforeFilter[event.type](event))){selectors.push(fn.selector);}}else{delete live[j];}}
match=jQuery(event.target).closest(selectors,event.currentTarget);for(i=0,l=match.length;i<l;i++){for(j in live){fn=live[j];elem=match[i].elem;related=null;if(match[i].selector===fn.selector){if(fn.live==="mouseenter"||fn.live==="mouseleave"){related=jQuery(event.relatedTarget).closest(fn.selector)[0];}
if(!related||related!==elem){elems.push({elem:elem,fn:fn});}}}}
for(i=0,l=elems.length;i<l;i++){match=elems[i];event.currentTarget=match.elem;event.data=match.fn.data;if(match.fn.apply(match.elem,args)===false){stop=false;break;}}
return stop;}
function liveConvert(type,selector){return["live",type,selector.replace(/\./g,"`").replace(/ /g,"&")].join(".");}
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){throw"Syntax error, unrecognized expression: "+(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){throw"Syntax error, unrecognized expression: "+expr;}else{break;}}
old=expr;}
return curLoop;};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{throw"Syntax error, unrecognized expression: "+name;}},CHILD:function(elem,match){var type=match[1],node=elem;switch(type){case'only':case'first':while((node=node.previousSibling)){if(node.nodeType===1){return false;}}
if(type==="first"){return true;}
node=elem;case'last':while((node=node.nextSibling)){if(node.nodeType===1){return false;}}
return true;case'nth':var first=match[2],last=match[3];if(first===1&&last===0){return true;}
var doneName=match[0],parent=elem.parentNode;if(parent&&(parent.sizcache!==doneName||!elem.nodeIndex)){var count=0;for(node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType===1){node.nodeIndex=++count;}}
parent.sizcache=doneName;}
var diff=elem.nodeIndex-last;if(first===0){return diff===0;}else{return(diff%first===0&&diff/first>=0);}}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match;},TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName.toLowerCase()===match;},CLASS:function(elem,match){return(" "+(elem.className||elem.getAttribute("class"))+" ").indexOf(match)>-1;},ATTR:function(elem,match){var name=match[1],result=Expr.attrHandle[name]?Expr.attrHandle[name](elem):elem[name]!=null?elem[name]:elem.getAttribute(name),value=result+"",type=match[2],check=match[4];return result==null?type==="!=":type==="="?value===check:type==="*="?value.indexOf(check)>=0:type==="~="?(" "+value+" ").indexOf(check)>=0:!check?value&&result!==false:type==="!="?value!==check:type==="^="?value.indexOf(check)===0:type==="$="?value.substr(value.length-check.length)===check:type==="|="?value===check||value.substr(0,check.length+1)===check+"-":false;},POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name];if(filter){return filter(elem,i,match,array);}}}};var origPOS=Expr.match.POS;for(var type in Expr.match){Expr.match[type]=new RegExp(Expr.match[type].source+/(?![^\[]*\])(?![^\(]*\))/.source);Expr.leftMatch[type]=new RegExp(/(^(?:.|\r|\n)*?)/.source+Expr.match[type].source.replace(/\\(\d+)/g,function(all,num){return"\\"+(num-0+1);}));}
var makeArray=function(array,results){array=Array.prototype.slice.call(array,0);if(results){results.push.apply(results,array);return results;}
return array;};try{Array.prototype.slice.call(document.documentElement.childNodes,0);}catch(e){makeArray=function(array,results){var ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array);}else{if(typeof array.length==="number"){for(var i=0,l=array.length;i<l;i++){ret.push(array[i]);}}else{for(var i=0;array[i];i++){ret.push(array[i]);}}}
return ret;};}
var sortOrder;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){if(!a.compareDocumentPosition||!b.compareDocumentPosition){if(a==b){hasDuplicate=true;}
return a.compareDocumentPosition?-1:1;}
var ret=a.compareDocumentPosition(b)&4?-1:a===b?0:1;if(ret===0){hasDuplicate=true;}
return ret;};}else if("sourceIndex"in document.documentElement){sortOrder=function(a,b){if(!a.sourceIndex||!b.sourceIndex){if(a==b){hasDuplicate=true;}
return a.sourceIndex?-1:1;}
var ret=a.sourceIndex-b.sourceIndex;if(ret===0){hasDuplicate=true;}
return ret;};}else if(document.createRange){sortOrder=function(a,b){if(!a.ownerDocument||!b.ownerDocument){if(a==b){hasDuplicate=true;}
return a.ownerDocument?-1:1;}
var aRange=a.ownerDocument.createRange(),bRange=b.ownerDocument.createRange();aRange.setStart(a,0);aRange.setEnd(a,0);bRange.setStart(b,0);bRange.setEnd(b,0);var ret=aRange.compareBoundaryPoints(Range.START_TO_END,bRange);if(ret===0){hasDuplicate=true;}
return ret;};}
function getText(elems){var ret="",elem;for(var i=0;elems[i];i++){elem=elems[i];if(elem.nodeType===3||elem.nodeType===4){ret+=elem.nodeValue;}else if(elem.nodeType!==8){ret+=getText(elem.childNodes);}}
return ret;}
(function(){var form=document.createElement("div"),id="script"+(new Date).getTime();form.innerHTML="<a name='"+id+"'/>";var root=document.documentElement;root.insertBefore(form,root.firstChild);if(document.getElementById(id)){Expr.find.ID=function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?m.id===match[1]||typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id").nodeValue===match[1]?[m]:undefined:[];}};Expr.filter.ID=function(elem,match){var node=typeof elem.getAttributeNode!=="undefined"&&elem.getAttributeNode("id");return elem.nodeType===1&&node&&node.nodeValue===match;};}
root.removeChild(form);root=form=null;})();(function(){var div=document.createElement("div");div.appendChild(document.createComment(""));if(div.getElementsByTagName("*").length>0){Expr.find.TAG=function(match,context){var results=context.getElementsByTagName(match[1]);if(match[1]==="*"){var tmp=[];for(var i=0;results[i];i++){if(results[i].nodeType===1){tmp.push(results[i]);}}
results=tmp;}
return results;};}
div.innerHTML="<a href='#'></a>";if(div.firstChild&&typeof div.firstChild.getAttribute!=="undefined"&&div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAttribute("href",2);};}
div=null;})();if(document.querySelectorAll){(function(){var oldSizzle=Sizzle,div=document.createElement("div");div.innerHTML="<p class='TEST'></p>";if(div.querySelectorAll&&div.querySelectorAll(".TEST").length===0){return;}
Sizzle=function(query,context,extra,seed){context=context||document;if(!seed&&context.nodeType===9&&!isXML(context)){try{return makeArray(context.querySelectorAll(query),extra);}catch(e){}}
return oldSizzle(query,context,extra,seed);};for(var prop in oldSizzle){Sizzle[prop]=oldSizzle[prop];}
div=null;})();}
(function(){var div=document.createElement("div");div.innerHTML="<div class='test e'></div><div class='test'></div>";if(!div.getElementsByClassName||div.getElementsByClassName("e").length===0){return;}
div.lastChild.className="e";if(div.getElementsByClassName("e").length===1){return;}
Expr.order.splice(1,0,"CLASS");Expr.find.CLASS=function(match,context,isXML){if(typeof context.getElementsByClassName!=="undefined"&&!isXML){return context.getElementsByClassName(match[1]);}};div=null;})();function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1&&!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(elem.nodeName.toLowerCase()===cur){match=elem;break;}
elem=elem[dir];}
checkSet[i]=match;}}}
function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break;}
if(elem.nodeType===1){if(!isXML){elem.sizcache=doneName;elem.sizset=i;}
if(typeof cur!=="string"){if(elem===cur){match=true;break;}}else if(Sizzle.filter(cur,[elem]).length>0){match=elem;break;}}
elem=elem[dir];}
checkSet[i]=match;}}}
var contains=document.compareDocumentPosition?function(a,b){return a.compareDocumentPosition(b)&16;}:function(a,b){return a!==b&&(a.contains?a.contains(b):true);};var isXML=function(elem){var documentElement=(elem?elem.ownerDocument||elem:0).documentElement;return documentElement?documentElement.nodeName!=="HTML":false;};var posProcess=function(selector,context){var tmpSet=[],later="",match,root=context.nodeType?[context]:context;while((match=Expr.match.PSEUDO.exec(selector))){later+=match[0];selector=selector.replace(Expr.match.PSEUDO,"");}
selector=Expr.relative[selector]?selector+"*":selector;for(var i=0,l=root.length;i<l;i++){Sizzle(selector,root[i],tmpSet);}
return Sizzle.filter(later,tmpSet);};jQuery.find=Sizzle;jQuery.expr=Sizzle.selectors;jQuery.expr[":"]=jQuery.expr.filters;jQuery.unique=Sizzle.uniqueSort;jQuery.getText=getText;jQuery.isXMLDoc=isXML;jQuery.contains=contains;return;window.Sizzle=Sizzle;})();var runtil=/Until$/,rparentsprev=/^(?:parents|prevUntil|prevAll)/,rmultiselector=/,/,slice=Array.prototype.slice;var winnow=function(elements,qualifier,keep){if(jQuery.isFunction(qualifier)){return jQuery.grep(elements,function(elem,i){return!!qualifier.call(elem,i,elem)===keep;});}else if(qualifier.nodeType){return jQuery.grep(elements,function(elem,i){return(elem===qualifier)===keep;});}else if(typeof qualifier==="string"){var filtered=jQuery.grep(elements,function(elem){return elem.nodeType===1;});if(isSimple.test(qualifier)){return jQuery.filter(qualifier,filtered,!keep);}else{qualifier=jQuery.filter(qualifier,elements);}}
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||!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+;/,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);return self.text(text.call(this,i,self.text()));});}
if(typeof text!=="object"&&text!==undefined){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));}
return jQuery.getText(this);},wrapAll:function(html){if(jQuery.isFunction(html)){return this.each(function(i){jQuery(this).wrapAll(html.call(this,i));});}
if(this[0]){var wrap=jQuery(html,this[0].ownerDocument).eq(0).clone(true);if(this[0].parentNode){wrap.insertBefore(this[0]);}
wrap.map(function(){var elem=this;while(elem.firstChild&&elem.firstChild.nodeType===1){elem=elem.firstChild;}
return elem;}).append(this);}
return this;},wrapInner:function(html){return this.each(function(){var self=jQuery(this),contents=self.contents();if(contents.length){contents.wrapAll(html);}else{self.append(html);}});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},unwrap:function(){return this.parent().each(function(){if(!jQuery.nodeName(this,"body")){jQuery(this).replaceWith(this.childNodes);}}).end();},append:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType===1){this.appendChild(elem);}});},prepend:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType===1){this.insertBefore(elem,this.firstChild);}});},before:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this);});}else if(arguments.length){var set=jQuery(arguments[0]);set.push.apply(set,this.toArray());return this.pushStack(set,"before",arguments);}},after:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});}else if(arguments.length){var set=this.pushStack(this,"after",arguments);set.push.apply(set,jQuery(arguments[0]).toArray());return set;}},clone:function(events){var ret=this.map(function(){if(!jQuery.support.noCloneEvent&&!jQuery.isXMLDoc(this)){var html=this.outerHTML,ownerDocument=this.ownerDocument;if(!html){var div=ownerDocument.createElement("div");div.appendChild(this.cloneNode(true));html=div.innerHTML;}
return jQuery.clean([html.replace(rinlinejQuery,"").replace(rleadingWhitespace,"")],ownerDocument)[0];}else{return this.cloneNode(true);}});if(events===true){cloneCopyEvent(this,ret);cloneCopyEvent(this.find("*"),ret.find("*"));}
return ret;},html:function(value){if(value===undefined){return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(rinlinejQuery,""):null;}else if(typeof value==="string"&&!/<script/i.test(value)&&(jQuery.support.leadingWhitespace||!rleadingWhitespace.test(value))&&!wrapMap[(rtagName.exec(value)||["",""])[1].toLowerCase()]){try{for(var i=0,l=this.length;i<l;i++){if(this[i].nodeType===1){cleanData(this[i].getElementsByTagName("*"));this[i].innerHTML=value;}}}catch(e){this.empty().append(value);}}else if(jQuery.isFunction(value)){this.each(function(i){var self=jQuery(this),old=self.html();self.empty().append(function(){return value.call(this,i,old);});});}else{this.empty().append(value);}
return this;},replaceWith:function(value){if(this[0]&&this[0].parentNode){if(!jQuery.isFunction(value)){value=jQuery(value).detach();}
return this.each(function(){var next=this.nextSibling,parent=this.parentNode;jQuery(this).remove();if(next){jQuery(next).before(value);}else{jQuery(parent).append(value);}});}else{return this.pushStack(jQuery(jQuery.isFunction(value)?value():value),"replaceWith",value);}},detach:function(selector){return this.remove(selector,true);},domManip:function(args,table,callback){var results,first,value=args[0],scripts=[];if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);args[0]=value.call(this,i,table?self.html():undefined);return self.domManip(args,table,callback);});}
if(this[0]){if(args[0]&&args[0].parentNode&&args[0].parentNode.nodeType===11){results={fragment:args[0].parentNode};}else{results=buildFragment(args,this,scripts);}
first=results.fragment.firstChild;if(first){table=table&&jQuery.nodeName(first,"tr");for(var i=0,l=this.length;i<l;i++){callback.call(table?root(this[i],first):this[i],results.cacheable||this.length>1||i>0?results.fragment.cloneNode(true):results.fragment);}}
if(scripts){jQuery.each(scripts,evalScript);}}
return this;function root(elem,cur){return jQuery.nodeName(elem,"table")?(elem.getElementsByTagName("tbody")[0]||elem.appendChild(elem.ownerDocument.createElement("tbody"))):elem;}}});function cloneCopyEvent(orig,ret){var i=0;ret.each(function(){if(this.nodeName!==(orig[i]&&orig[i].nodeName)){return;}
var oldData=jQuery.data(orig[i++]),curData=jQuery.data(this,oldData),events=oldData&&oldData.events;if(events){delete curData.handle;curData.events={};for(var type in events){for(var handler in events[type]){jQuery.event.add(this,type,events[type][handler],events[type][handler].data);}}}});}
function buildFragment(args,nodes,scripts){var fragment,cacheable,cached,cacheresults,doc;if(args.length===1&&typeof args[0]==="string"&&args[0].length<512&&args[0].indexOf("<option")<0){cacheable=true;cacheresults=jQuery.fragments[args[0]];if(cacheresults){if(cacheresults!==1){fragment=cacheresults;}
cached=true;}}
if(!fragment){doc=(nodes&&nodes[0]?nodes[0].ownerDocument||nodes[0]:document);fragment=doc.createDocumentFragment();jQuery.clean(args,doc,fragment,scripts);}
if(cacheable){jQuery.fragments[args[0]]=cacheresults?fragment:1;}
return{fragment:fragment,cacheable:cacheable};}
jQuery.fragments={};jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(selector){var ret=[],insert=jQuery(selector);for(var i=0,l=insert.length;i<l;i++){var elems=(i>0?this.clone(true):this).get();jQuery.fn[original].apply(jQuery(insert[i]),elems);ret=ret.concat(elems);}
return this.pushStack(ret,name,insert.selector);};});jQuery.each({remove:function(selector,keepData){if(!selector||jQuery.filter(selector,[this]).length){if(!keepData&&this.nodeType===1){cleanData(this.getElementsByTagName("*"));cleanData([this]);}
if(this.parentNode){this.parentNode.removeChild(this);}}},empty:function(){if(this.nodeType===1){cleanData(this.getElementsByTagName("*"));}
while(this.firstChild){this.removeChild(this.firstChild);}}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});jQuery.extend({clean:function(elems,context,fragment,scripts){context=context||document;if(typeof context.createElement==="undefined"){context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;}
var ret=[];jQuery.each(elems,function(i,elem){if(typeof elem==="number"){elem+="";}
if(!elem){return;}
if(typeof elem==="string"&&!rhtml.test(elem)){elem=context.createTextNode(elem);}else if(typeof elem==="string"){elem=elem.replace(rxhtmlTag,fcloseTag);var tag=(rtagName.exec(elem)||["",""])[1].toLowerCase(),wrap=wrapMap[tag]||wrapMap._default,depth=wrap[0],div=context.createElement("div");div.innerHTML=wrap[1]+elem+wrap[2];while(depth--){div=div.lastChild;}
if(!jQuery.support.tbody){var hasBody=rtbody.test(elem),tbody=tag==="table"&&!hasBody?div.firstChild&&div.firstChild.childNodes:wrap[1]==="<table>"&&!hasBody?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j){if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length){tbody[j].parentNode.removeChild(tbody[j]);}}}
if(!jQuery.support.leadingWhitespace&&rleadingWhitespace.test(elem)){div.insertBefore(context.createTextNode(rleadingWhitespace.exec(elem)[0]),div.firstChild);}
elem=jQuery.makeArray(div.childNodes);}
if(elem.nodeType){ret.push(elem);}else{ret=jQuery.merge(ret,elem);}});if(fragment){for(var i=0;ret[i];i++){if(scripts&&jQuery.nodeName(ret[i],"script")&&(!ret[i].type||ret[i].type.toLowerCase()==="text/javascript")){scripts.push(ret[i].parentNode?ret[i].parentNode.removeChild(ret[i]):ret[i]);}else{if(ret[i].nodeType===1){ret.splice.apply(ret,[i+1,0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))));}
fragment.appendChild(ret[i]);}}}
return ret;}});function cleanData(elems){for(var i=0,elem,id;(elem=elems[i])!=null;i++){if(!jQuery.noData[elem.nodeName.toLowerCase()]&&(id=elem[expando])){delete jQuery.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;jQuery.fn.extend({_load:jQuery.fn.load,load:function(url,params,callback){if(typeof url!=="string"){return this._load(url);}else if(!this.length){return this;}
var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}
var type="GET";if(params){if(jQuery.isFunction(params)){callback=params;params=null;}else if(typeof params==="object"){params=jQuery.param(params,jQuery.ajaxSettings.traditional);type="POST";}}
jQuery.ajax({url:url,type:type,dataType:"html",data:params,context:this,complete:function(res,status){if(status==="success"||status==="notmodified"){this.html(selector?jQuery("<div />").append(res.responseText.replace(rscript,"")).find(selector):res.responseText);}
if(callback){this.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=s.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){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";if(status==="success"){try{data=jQuery.httpData(xhr,s.dataType,s);}catch(e){status="parsererror";}}
if(status==="success"||status==="notmodified"){if(!jsonp){success();}}else{jQuery.handleError(s,xhr,status);}
complete();if(isTimeout==="timeout"){xhr.abort();}
if(s.async){xhr=null;}}};try{var oldAbort=xhr.abort;xhr.abort=function(){if(xhr){oldAbort.call(xhr);if(xhr){xhr.readyState=0;}}
onreadystatechange();};}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||window,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"){throw"parsererror";}
if(s&&s.dataFilter){data=s.dataFilter(data,type);}
if(typeof data==="string"){if(type==="json"||!type&&ct.indexOf("json")>=0){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,""))){if(window.JSON&&window.JSON.parse){data=window.JSON.parse(data);}else{data=(new Function("return "+data))();}}else{throw"Invalid JSON: "+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;}
function add(key,value){value=jQuery.isFunction(value)?value():value;s[s.length]=encodeURIComponent(key)+"="+encodeURIComponent(value);}
if(jQuery.isArray(a)||a.jquery){jQuery.each(a,function(){add(this.name,this.value);});}else{jQuery.each(a,function buildParams(prefix,obj){if(jQuery.isArray(obj)){jQuery.each(obj,function(i,v){if(traditional){add(prefix,v);}else{buildParams(prefix+"["+(typeof v==="object"||jQuery.isArray(v)?i:"")+"]",v);}});}else if(!traditional&&obj!=null&&typeof obj==="object"){jQuery.each(obj,function(k,v){buildParams(prefix+"["+k+"]",v);});}else{add(prefix,obj);}});}
return s.join("&").replace(r20,"+");}});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!=null){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!=null){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(!elem||!elem.ownerDocument){return null;}
if(options){return this.each(function(i){jQuery.offset.setOffset(this,options,i);});}
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(!elem||!elem.ownerDocument){return null;}
if(options){return this.each(function(i){jQuery.offset.setOffset(this,options,i);});}
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;}
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);

jQuery.easing['jswing']=jQuery.easing['swing'];jQuery.extend(jQuery.easing,{def:'easeOutQuad',swing:function(x,t,b,c,d){return jQuery.easing[jQuery.easing.def](x,t,b,c,d);},easeInQuad:function(x,t,b,c,d){return c*(t/=d)*t+b;},easeOutQuad:function(x,t,b,c,d){return-c*(t/=d)*(t-2)+b;},easeInOutQuad:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t+b;return-c/2*((--t)*(t-2)-1)+b;},easeInCubic:function(x,t,b,c,d){return c*(t/=d)*t*t+b;},easeOutCubic:function(x,t,b,c,d){return c*((t=t/d-1)*t*t+1)+b;},easeInOutCubic:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t+b;return c/2*((t-=2)*t*t+2)+b;},easeInQuart:function(x,t,b,c,d){return c*(t/=d)*t*t*t+b;},easeOutQuart:function(x,t,b,c,d){return-c*((t=t/d-1)*t*t*t-1)+b;},easeInOutQuart:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t+b;return-c/2*((t-=2)*t*t*t-2)+b;},easeInQuint:function(x,t,b,c,d){return c*(t/=d)*t*t*t*t+b;},easeOutQuint:function(x,t,b,c,d){return c*((t=t/d-1)*t*t*t*t+1)+b;},easeInOutQuint:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t*t+b;return c/2*((t-=2)*t*t*t*t+2)+b;},easeInSine:function(x,t,b,c,d){return-c*Math.cos(t/d*(Math.PI/2))+c+b;},easeOutSine:function(x,t,b,c,d){return c*Math.sin(t/d*(Math.PI/2))+b;},easeInOutSine:function(x,t,b,c,d){return-c/2*(Math.cos(Math.PI*t/d)-1)+b;},easeInExpo:function(x,t,b,c,d){return(t==0)?b:c*Math.pow(2,10*(t/d-1))+b;},easeOutExpo:function(x,t,b,c,d){return(t==d)?b+c:c*(-Math.pow(2,-10*t/d)+1)+b;},easeInOutExpo:function(x,t,b,c,d){if(t==0)return b;if(t==d)return b+c;if((t/=d/2)<1)return c/2*Math.pow(2,10*(t-1))+b;return c/2*(-Math.pow(2,-10*--t)+2)+b;},easeInCirc:function(x,t,b,c,d){return-c*(Math.sqrt(1-(t/=d)*t)-1)+b;},easeOutCirc:function(x,t,b,c,d){return c*Math.sqrt(1-(t=t/d-1)*t)+b;},easeInOutCirc:function(x,t,b,c,d){if((t/=d/2)<1)return-c/2*(Math.sqrt(1-t*t)-1)+b;return c/2*(Math.sqrt(1-(t-=2)*t)+1)+b;},easeInElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return-(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;},easeOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return a*Math.pow(2,-10*t)*Math.sin((t*d-s)*(2*Math.PI)/p)+c+b;},easeInOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d/2)==2)return b+c;if(!p)p=d*(.3*1.5);if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);if(t<1)return-.5*(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;return a*Math.pow(2,-10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p)*.5+c+b;},easeInBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*(t/=d)*t*((s+1)*t-s)+b;},easeOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*((t=t/d-1)*t*((s+1)*t+s)+1)+b;},easeInOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;if((t/=d/2)<1)return c/2*(t*t*(((s*=(1.525))+1)*t-s))+b;return c/2*((t-=2)*t*(((s*=(1.525))+1)*t+s)+2)+b;},easeInBounce:function(x,t,b,c,d){return c-jQuery.easing.easeOutBounce(x,d-t,0,c,d)+b;},easeOutBounce:function(x,t,b,c,d){if((t/=d)<(1/2.75)){return c*(7.5625*t*t)+b;}else if(t<(2/2.75)){return c*(7.5625*(t-=(1.5/2.75))*t+.75)+b;}else if(t<(2.5/2.75)){return c*(7.5625*(t-=(2.25/2.75))*t+.9375)+b;}else{return c*(7.5625*(t-=(2.625/2.75))*t+.984375)+b;}},easeInOutBounce:function(x,t,b,c,d){if(t<d/2)return jQuery.easing.easeInBounce(x,t*2,0,c,d)*.5+b;return jQuery.easing.easeOutBounce(x,t*2-d,0,c,d)*.5+c*.5+b;}});

jQuery.fn.supersleight=function(settings){settings=jQuery.extend({imgs:true,backgrounds:true,shim:'x.gif',apply_positioning:true},settings);return this.each(function(){if(jQuery.browser.msie&&parseInt(jQuery.browser.version,10)<7&&parseInt(jQuery.browser.version,10)>4){jQuery(this).find('*').andSelf().each(function(i,obj){var self=jQuery(obj);if(settings.backgrounds&&self.css('background-image').match(/\.png/i)!==null){var bg=self.css('background-image');var src=bg.substring(5,bg.length-2);var mode=(self.css('background-repeat')=='no-repeat'?'crop':'scale');var styles={'filter':"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+src+"', sizingMethod='"+mode+"')",'background-image':'url('+settings.shim+')'};self.css(styles);};if(settings.imgs&&self.is('img[src$=png]')){var styles={'width':self.width()+'px','height':self.height()+'px','filter':"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+self.attr('src')+"', sizingMethod='scale')"};self.css(styles).attr('src',settings.shim);};if(settings.apply_positioning&&self.is('a, input')&&(self.css('position')===''||self.css('position')=='static')){self.css('position','relative');};});};});};

var swfobject=function(){var D="undefined",r="object",S="Shockwave Flash",W="ShockwaveFlash.ShockwaveFlash",q="application/x-shockwave-flash",R="SWFObjectExprInst",x="onreadystatechange",O=window,j=document,t=navigator,T=false,U=[h],o=[],N=[],I=[],l,Q,E,B,J=false,a=false,n,G,m=true,M=function(){var aa=typeof j.getElementById!=D&&typeof j.getElementsByTagName!=D&&typeof j.createElement!=D,ah=t.userAgent.toLowerCase(),Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/mac/.test(Y):/mac/.test(ah),af=/webkit/.test(ah)?parseFloat(ah.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,X=!+"\v1",ag=[0,0,0],ab=null;if(typeof t.plugins!=D&&typeof t.plugins[S]==r){ab=t.plugins[S].description;if(ab&&!(typeof t.mimeTypes!=D&&t.mimeTypes[q]&&!t.mimeTypes[q].enabledPlugin)){T=true;X=false;ab=ab.replace(/^.*\s+(\S+\s+\S+$)/,"$1");ag[0]=parseInt(ab.replace(/^(.*)\..*$/,"$1"),10);ag[1]=parseInt(ab.replace(/^.*\.(.*)\s.*$/,"$1"),10);ag[2]=/[a-zA-Z]/.test(ab)?parseInt(ab.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof O.ActiveXObject!=D){try{var ad=new ActiveXObject(W);if(ad){ab=ad.GetVariable("$version");if(ab){X=true;ab=ab.split(" ")[1].split(",");ag=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}}catch(Z){}}}return{w3:aa,pv:ag,wk:af,ie:X,win:ae,mac:ac}}(),k=function(){if(!M.w3){return}if((typeof j.readyState!=D&&j.readyState=="complete")||(typeof j.readyState==D&&(j.getElementsByTagName("body")[0]||j.body))){f()}if(!J){if(typeof j.addEventListener!=D){j.addEventListener("DOMContentLoaded",f,false)}if(M.ie&&M.win){j.attachEvent(x,function(){if(j.readyState=="complete"){j.detachEvent(x,arguments.callee);f()}});if(O==top){(function(){if(J){return}try{j.documentElement.doScroll("left")}catch(X){setTimeout(arguments.callee,0);return}f()})()}}if(M.wk){(function(){if(J){return}if(!/loaded|complete/.test(j.readyState)){setTimeout(arguments.callee,0);return}f()})()}s(f)}}();function f(){if(J){return}try{var Z=j.getElementsByTagName("body")[0].appendChild(C("span"));Z.parentNode.removeChild(Z)}catch(aa){return}J=true;var X=U.length;for(var Y=0;Y<X;Y++){U[Y]()}}function K(X){if(J){X()}else{U[U.length]=X}}function s(Y){if(typeof O.addEventListener!=D){O.addEventListener("load",Y,false)}else{if(typeof j.addEventListener!=D){j.addEventListener("load",Y,false)}else{if(typeof O.attachEvent!=D){i(O,"onload",Y)}else{if(typeof O.onload=="function"){var X=O.onload;O.onload=function(){X();Y()}}else{O.onload=Y}}}}}function h(){if(T){V()}else{H()}}function V(){var X=j.getElementsByTagName("body")[0];var aa=C(r);aa.setAttribute("type",q);var Z=X.appendChild(aa);if(Z){var Y=0;(function(){if(typeof Z.GetVariable!=D){var ab=Z.GetVariable("$version");if(ab){ab=ab.split(" ")[1].split(",");M.pv=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}else{if(Y<10){Y++;setTimeout(arguments.callee,10);return}}X.removeChild(aa);Z=null;H()})()}else{H()}}function H(){var ag=o.length;if(ag>0){for(var af=0;af<ag;af++){var Y=o[af].id;var ab=o[af].callbackFn;var aa={success:false,id:Y};if(M.pv[0]>0){var ae=c(Y);if(ae){if(F(o[af].swfVersion)&&!(M.wk&&M.wk<312)){w(Y,true);if(ab){aa.success=true;aa.ref=z(Y);ab(aa)}}else{if(o[af].expressInstall&&A()){var ai={};ai.data=o[af].expressInstall;ai.width=ae.getAttribute("width")||"0";ai.height=ae.getAttribute("height")||"0";if(ae.getAttribute("class")){ai.styleclass=ae.getAttribute("class")}if(ae.getAttribute("align")){ai.align=ae.getAttribute("align")}var ah={};var X=ae.getElementsByTagName("param");var ac=X.length;for(var ad=0;ad<ac;ad++){if(X[ad].getAttribute("name").toLowerCase()!="movie"){ah[X[ad].getAttribute("name")]=X[ad].getAttribute("value")}}P(ai,ah,Y,ab)}else{p(ae);if(ab){ab(aa)}}}}}else{w(Y,true);if(ab){var Z=z(Y);if(Z&&typeof Z.SetVariable!=D){aa.success=true;aa.ref=Z}ab(aa)}}}}}function z(aa){var X=null;var Y=c(aa);if(Y&&Y.nodeName=="OBJECT"){if(typeof Y.SetVariable!=D){X=Y}else{var Z=Y.getElementsByTagName(r)[0];if(Z){X=Z}}}return X}function A(){return!a&&F("6.0.65")&&(M.win||M.mac)&&!(M.wk&&M.wk<312)}function P(aa,ab,X,Z){a=true;E=Z||null;B={success:false,id:X};var ae=c(X);if(ae){if(ae.nodeName=="OBJECT"){l=g(ae);Q=null}else{l=ae;Q=X}aa.id=R;if(typeof aa.width==D||(!/%$/.test(aa.width)&&parseInt(aa.width,10)<310)){aa.width="310"}if(typeof aa.height==D||(!/%$/.test(aa.height)&&parseInt(aa.height,10)<137)){aa.height="137"}j.title=j.title.slice(0,47)+" - Flash Player Installation";var ad=M.ie&&M.win?"ActiveX":"PlugIn",ac="MMredirectURL="+O.location.toString().replace(/&/g,"%26")+"&MMplayerType="+ad+"&MMdoctitle="+j.title;if(typeof ab.flashvars!=D){ab.flashvars+="&"+ac}else{ab.flashvars=ac}if(M.ie&&M.win&&ae.readyState!=4){var Y=C("div");X+="SWFObjectNew";Y.setAttribute("id",X);ae.parentNode.insertBefore(Y,ae);ae.style.display="none";(function(){if(ae.readyState==4){ae.parentNode.removeChild(ae)}else{setTimeout(arguments.callee,10)}})()}u(aa,ab,X)}}function p(Y){if(M.ie&&M.win&&Y.readyState!=4){var X=C("div");Y.parentNode.insertBefore(X,Y);X.parentNode.replaceChild(g(Y),X);Y.style.display="none";(function(){if(Y.readyState==4){Y.parentNode.removeChild(Y)}else{setTimeout(arguments.callee,10)}})()}else{Y.parentNode.replaceChild(g(Y),Y)}}function g(ab){var aa=C("div");if(M.win&&M.ie){aa.innerHTML=ab.innerHTML}else{var Y=ab.getElementsByTagName(r)[0];if(Y){var ad=Y.childNodes;if(ad){var X=ad.length;for(var Z=0;Z<X;Z++){if(!(ad[Z].nodeType==1&&ad[Z].nodeName=="PARAM")&&!(ad[Z].nodeType==8)){aa.appendChild(ad[Z].cloneNode(true))}}}}}return aa}function u(ai,ag,Y){var X,aa=c(Y);if(M.wk&&M.wk<312){return X}if(aa){if(typeof ai.id==D){ai.id=Y}if(M.ie&&M.win){var ah="";for(var ae in ai){if(ai[ae]!=Object.prototype[ae]){if(ae.toLowerCase()=="data"){ag.movie=ai[ae]}else{if(ae.toLowerCase()=="styleclass"){ah+=' class="'+ai[ae]+'"'}else{if(ae.toLowerCase()!="classid"){ah+=" "+ae+'="'+ai[ae]+'"'}}}}}var af="";for(var ad in ag){if(ag[ad]!=Object.prototype[ad]){af+='<param name="'+ad+'" value="'+ag[ad]+'" />'}}aa.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+ah+">"+af+"</object>";N[N.length]=ai.id;X=c(ai.id)}else{var Z=C(r);Z.setAttribute("type",q);for(var ac in ai){if(ai[ac]!=Object.prototype[ac]){if(ac.toLowerCase()=="styleclass"){Z.setAttribute("class",ai[ac])}else{if(ac.toLowerCase()!="classid"){Z.setAttribute(ac,ai[ac])}}}}for(var ab in ag){if(ag[ab]!=Object.prototype[ab]&&ab.toLowerCase()!="movie"){e(Z,ab,ag[ab])}}aa.parentNode.replaceChild(Z,aa);X=Z}}return X}function e(Z,X,Y){var aa=C("param");aa.setAttribute("name",X);aa.setAttribute("value",Y);Z.appendChild(aa)}function y(Y){var X=c(Y);if(X&&X.nodeName=="OBJECT"){if(M.ie&&M.win){X.style.display="none";(function(){if(X.readyState==4){b(Y)}else{setTimeout(arguments.callee,10)}})()}else{X.parentNode.removeChild(X)}}}function b(Z){var Y=c(Z);if(Y){for(var X in Y){if(typeof Y[X]=="function"){Y[X]=null}}Y.parentNode.removeChild(Y)}}function c(Z){var X=null;try{X=j.getElementById(Z)}catch(Y){}return X}function C(X){return j.createElement(X)}function i(Z,X,Y){Z.attachEvent(X,Y);I[I.length]=[Z,X,Y]}function F(Z){var Y=M.pv,X=Z.split(".");X[0]=parseInt(X[0],10);X[1]=parseInt(X[1],10)||0;X[2]=parseInt(X[2],10)||0;return(Y[0]>X[0]||(Y[0]==X[0]&&Y[1]>X[1])||(Y[0]==X[0]&&Y[1]==X[1]&&Y[2]>=X[2]))?true:false}function v(ac,Y,ad,ab){if(M.ie&&M.mac){return}var aa=j.getElementsByTagName("head")[0];if(!aa){return}var X=(ad&&typeof ad=="string")?ad:"screen";if(ab){n=null;G=null}if(!n||G!=X){var Z=C("style");Z.setAttribute("type","text/css");Z.setAttribute("media",X);n=aa.appendChild(Z);if(M.ie&&M.win&&typeof j.styleSheets!=D&&j.styleSheets.length>0){n=j.styleSheets[j.styleSheets.length-1]}G=X}if(M.ie&&M.win){if(n&&typeof n.addRule==r){n.addRule(ac,Y)}}else{if(n&&typeof j.createTextNode!=D){n.appendChild(j.createTextNode(ac+" {"+Y+"}"))}}}function w(Z,X){if(!m){return}var Y=X?"visible":"hidden";if(J&&c(Z)){c(Z).style.visibility=Y}else{v("#"+Z,"visibility:"+Y)}}function L(Y){var Z=/[\\\"<>\.;]/;var X=Z.exec(Y)!=null;return X&&typeof encodeURIComponent!=D?encodeURIComponent(Y):Y}var d=function(){if(M.ie&&M.win){window.attachEvent("onunload",function(){var ac=I.length;for(var ab=0;ab<ac;ab++){I[ab][0].detachEvent(I[ab][1],I[ab][2])}var Z=N.length;for(var aa=0;aa<Z;aa++){y(N[aa])}for(var Y in M){M[Y]=null}M=null;for(var X in swfobject){swfobject[X]=null}swfobject=null})}}();return{registerObject:function(ab,X,aa,Z){if(M.w3&&ab&&X){var Y={};Y.id=ab;Y.swfVersion=X;Y.expressInstall=aa;Y.callbackFn=Z;o[o.length]=Y;w(ab,false)}else{if(Z){Z({success:false,id:ab})}}},getObjectById:function(X){if(M.w3){return z(X)}},embedSWF:function(ab,ah,ae,ag,Y,aa,Z,ad,af,ac){var X={success:false,id:ah};if(M.w3&&!(M.wk&&M.wk<312)&&ab&&ah&&ae&&ag&&Y){w(ah,false);K(function(){ae+="";ag+="";var aj={};if(af&&typeof af===r){for(var al in af){aj[al]=af[al]}}aj.data=ab;aj.width=ae;aj.height=ag;var am={};if(ad&&typeof ad===r){for(var ak in ad){am[ak]=ad[ak]}}if(Z&&typeof Z===r){for(var ai in Z){if(typeof am.flashvars!=D){am.flashvars+="&"+ai+"="+Z[ai]}else{am.flashvars=ai+"="+Z[ai]}}}if(F(Y)){var an=u(aj,am,ah);if(aj.id==ah){w(ah,true)}X.success=true;X.ref=an}else{if(aa&&A()){aj.data=aa;P(aj,am,ah,ac);return}else{w(ah,true)}}if(ac){ac(X)}})}else{if(ac){ac(X)}}},switchOffAutoHideShow:function(){m=false},ua:M,getFlashPlayerVersion:function(){return{major:M.pv[0],minor:M.pv[1],release:M.pv[2]}},hasFlashPlayerVersion:F,createSWF:function(Z,Y,X){if(M.w3){return u(Z,Y,X)}else{return undefined}},showExpressInstall:function(Z,aa,X,Y){if(M.w3&&A()){P(Z,aa,X,Y)}},removeSWF:function(X){if(M.w3){y(X)}},createCSS:function(aa,Z,Y,X){if(M.w3){v(aa,Z,Y,X)}},addDomLoadEvent:K,addLoadEvent:s,getQueryParamValue:function(aa){var Z=j.location.search||j.location.hash;if(Z){if(/\?/.test(Z)){Z=Z.split("?")[1]}if(aa==null){return L(Z)}var Y=Z.split("&");for(var X=0;X<Y.length;X++){if(Y[X].substring(0,Y[X].indexOf("="))==aa){return L(Y[X].substring((Y[X].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(a){var X=c(R);if(X&&l){X.parentNode.replaceChild(l,X);if(Q){w(Q,true);if(M.ie&&M.win){l.style.display="block"}}if(E){E(B)}}a=false}}}}();

(function($){$.fn.getTwitter=function(options){$.fn.getTwitter.defaults={userName:null,numTweets:5,loaderText:"Loading tweets...",slideIn:true,slideDuration:750,showHeading:true,headingText:"Latest Tweets",showProfileLink:true,showTimestamp:true};var o=$.extend({},$.fn.getTwitter.defaults,options);return this.each(function(){var c=$(this);c.hide().empty().addClass("twitted");if(o.showHeading){c.append("<h2>"+o.headingText+"</h2>");}
var twitterListHTML="<ul id=\"twitter_update_list\"><li></li></ul>";c.append(twitterListHTML);var tl=$("#twitter_update_list");tl.hide();var preLoaderHTML=$("<p class=\"preLoader\">"+o.loaderText+"</p>");c.append(preLoaderHTML);if(o.showProfileLink){var profileLinkHTML="<p class=\"profileLink\"><a href=\"http://twitter.com/"+o.userName+"\">http://twitter.com/"+o.userName+"</a></p>";c.append(profileLinkHTML);}
c.show();$.getScript("http://twitter.com/javascripts/blogger.js");$.getScript("http://twitter.com/statuses/user_timeline/"+o.userName+".json?callback=twitterCallback2&count="+o.numTweets,function(){$(preLoaderHTML).remove();if(!o.showTimestamp){tl.find("li").each(function(){var timestampHTML=$(this).children("a");var timestamp=timestampHTML.html();timestampHTML.remove();$(this).attr("title",timestamp);});}
if(o.slideIn){var tlHeight=tl.data("originalHeight");if(!tlHeight){tlHeight=tl.show().height();tl.data("originalHeight",tlHeight);tl.hide().css({height:0});}
tl.show().animate({height:tlHeight},o.slideDuration);}
else{tl.show();}
tl.find("li:first").addClass("firstTweet");tl.find("li:last").addClass("lastTweet");});});};})(jQuery);

(function($){$.fn.hint=function(blurClass){if(!blurClass){blurClass='blur';}
return this.each(function(){var $input=$(this),title=$input.attr('title'),$form=$(this.form),$win=$(window);function remove(){if($input.val()===title&&$input.hasClass(blurClass)){$input.val('').removeClass(blurClass);}}
if(title){$input.blur(function(){if(this.value===''){$input.val(title).addClass(blurClass);}}).focus(remove).blur();$form.submit(remove);$win.unload(remove);}});};})(jQuery);
;(function($){var helper={},current,title,tID,IE=$.browser.msie&&/MSIE\s(5\.5|6\.)/.test(navigator.userAgent),track=false;$.tooltip={blocked:false,defaults:{delay:200,fade:false,showURL:false,extraClass:"",top:15,left:15,id:"tooltip"},block:function(){$.tooltip.blocked=!$.tooltip.blocked;}};$.fn.extend({tooltip:function(settings){settings=$.extend({},$.tooltip.defaults,settings);createHelper(settings);return this.each(function(){$.data(this,"tooltip",settings);this.tOpacity=helper.parent.css("opacity");this.tooltipText=this.title;$(this).removeAttr("title");this.alt="";}).mouseover(save).mouseout(hide).click(hide);},fixPNG:IE?function(){return this.each(function(){var image=$(this).css('backgroundImage');if(image.match(/^url\(["']?(.*\.png)["']?\)$/i)){image=RegExp.$1;$(this).css({'backgroundImage':'none','filter':"progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop, src='"+image+"')"}).each(function(){var position=$(this).css('position');if(position!='absolute'&&position!='relative')
$(this).css('position','relative');});}});}:function(){return this;},unfixPNG:IE?function(){return this.each(function(){$(this).css({'filter':'',backgroundImage:''});});}:function(){return this;},hideWhenEmpty:function(){return this.each(function(){$(this)[$(this).html()?"show":"hide"]();});},url:function(){return this.attr('href')||this.attr('src');}});function createHelper(settings){if(helper.parent)
return;helper.parent=$('<div id="'+settings.id+'"><h3></h3><div class="body"></div><div class="url"></div></div>').appendTo(document.body).hide();if($.fn.bgiframe)
helper.parent.bgiframe();helper.title=$('h3',helper.parent);helper.body=$('div.body',helper.parent);helper.url=$('div.url',helper.parent);}
function settings(element){return $.data(element,"tooltip");}
function handle(event){if(settings(this).delay)
tID=setTimeout(show,settings(this).delay);else
show();track=!!settings(this).track;$(document.body).bind('mousemove',update);update(event);}
function save(){if($.tooltip.blocked||this==current||(!this.tooltipText&&!settings(this).bodyHandler))
return;current=this;title=this.tooltipText;if(settings(this).bodyHandler){helper.title.hide();var bodyContent=settings(this).bodyHandler.call(this);if(bodyContent.nodeType||bodyContent.jquery){helper.body.empty().append(bodyContent)}else{helper.body.html(bodyContent);}
helper.body.show();}else if(settings(this).showBody){var parts=title.split(settings(this).showBody);helper.title.html(parts.shift()).show();helper.body.empty();for(var i=0,part;(part=parts[i]);i++){if(i>0)
helper.body.append("<br/>");helper.body.append(part);}
helper.body.hideWhenEmpty();}else{helper.title.html(title).show();helper.body.hide();}
if(settings(this).showURL&&$(this).url())
helper.url.html($(this).url().replace('http://','')).show();else
helper.url.hide();helper.parent.addClass(settings(this).extraClass);if(settings(this).fixPNG)
helper.parent.fixPNG();handle.apply(this,arguments);}
function show(){tID=null;if((!IE||!$.fn.bgiframe)&&settings(current).fade){if(helper.parent.is(":animated"))
helper.parent.stop().show().fadeTo(settings(current).fade,current.tOpacity);else
helper.parent.is(':visible')?helper.parent.fadeTo(settings(current).fade,current.tOpacity):helper.parent.fadeIn(settings(current).fade);}else{helper.parent.show();}
update();}
function update(event){if($.tooltip.blocked)
return;if(event&&event.target.tagName=="OPTION"){return;}
if(!track&&helper.parent.is(":visible")){$(document.body).unbind('mousemove',update)}
if(current==null){$(document.body).unbind('mousemove',update);return;}
helper.parent.removeClass("viewport-right").removeClass("viewport-bottom");var left=helper.parent[0].offsetLeft;var top=helper.parent[0].offsetTop;if(event){left=event.pageX+settings(current).left;top=event.pageY+settings(current).top;var right='auto';if(settings(current).positionLeft){right=$(window).width()-left;left='auto';}
helper.parent.css({left:left,right:right,top:top});}
var v=viewport(),h=helper.parent[0];if(v.x+v.cx<h.offsetLeft+h.offsetWidth){left-=h.offsetWidth+20+settings(current).left;helper.parent.css({left:left+'px'}).addClass("viewport-right");}
if(v.y+v.cy<h.offsetTop+h.offsetHeight){top-=h.offsetHeight+20+settings(current).top;helper.parent.css({top:top+'px'}).addClass("viewport-bottom");}}
function viewport(){return{x:$(window).scrollLeft(),y:$(window).scrollTop(),cx:$(window).width(),cy:$(window).height()};}
function hide(event){if($.tooltip.blocked)
return;if(tID)
clearTimeout(tID);current=null;var tsettings=settings(this);function complete(){helper.parent.removeClass(tsettings.extraClass).hide().css("opacity","");}
if((!IE||!$.fn.bgiframe)&&tsettings.fade){if(helper.parent.is(':animated'))
helper.parent.stop().fadeTo(tsettings.fade,0,complete);else
helper.parent.stop().fadeOut(tsettings.fade,complete);}else
complete();if(settings(this).fixPNG)
helper.parent.unfixPNG();}})(jQuery);

(function($){$.fn.validationEngineLanguage=function(){};$.validationEngineLanguage={newLang:function(){$.validationEngineLanguage.allRules={"required":{"regex":"none","alertText":"* This field is required","alertTextCheckboxMultiple":"* Please select an option","alertTextCheckboxe":"* This checkbox is required"},"length":{"regex":"none","alertText":"*Between ","alertText2":" and ","alertText3":" characters allowed"},"maxCheckbox":{"regex":"none","alertText":"* Checks allowed Exceeded"},"minCheckbox":{"regex":"none","alertText":"* Please select ","alertText2":" options"},"confirm":{"regex":"none","alertText":"* Your field is not matching"},"telephone":{"regex":"/^[0-9\-\(\)\ ]+$/","alertText":"* Invalid phone number"},"email":{"regex":"/^[a-zA-Z0-9_\.\-]+\@([a-zA-Z0-9\-]+\.)+[a-zA-Z0-9]{2,4}$/","alertText":"* Invalid email address"},"date":{"regex":"/^[0-9]{4}\-\[0-9]{1,2}\-\[0-9]{1,2}$/","alertText":"* Invalid date, must be in YYYY-MM-DD format"},"onlyNumber":{"regex":"/^[0-9\ ]+$/","alertText":"* Numbers only"},"noSpecialCaracters":{"regex":"/^[0-9a-zA-Z]+$/","alertText":"* No special caracters allowed"},"ajaxName":{"file":"/news-events/events/register/checkuser","alertText":"* This name is already taken","alertTextOk":"* This name is available","alertTextLoad":"* Loading, please wait"},"ajaxUser":{"file":"/news-events/events/register/checkuser","alertText":"* This username is already taken","alertTextOk":"* This name is available","alertTextLoad":"* Loading, please wait"},"onlyLetter":{"regex":"/^[a-zA-Z\ \']+$/","alertText":"* Letters only"}}}}})(jQuery);$(document).ready(function(){$.validationEngineLanguage.newLang();});

(function($){var firstvalid=true;$.fn.validationEngine=function(settings){if($.validationEngineLanguage){allRules=$.validationEngineLanguage.allRules;}else{$.validationEngine.debug("Validation engine rules are not loaded check your external file");}
settings=jQuery.extend({allrules:allRules,validationEventTriggers:"blur",inlineValidation:true,returnIsValid:false,animateSubmit:true,unbindEngine:true,ajaxSubmit:false,promptPosition:"topRight",success:false,failure:function(){}},settings);$.validationEngine.settings=settings;$.validationEngine.ajaxValidArray=new Array();if(settings.inlineValidation==true){if(firstvalid==true){$(this).find("[class*=validate]").not("[type=checkbox]").bind(settings.validationEventTriggers,function(caller){_inlinEvent(this);})
$(this).find("[class*=validate][type=checkbox]").bind("click",function(caller){_inlinEvent(this);})
firstvalid=false;}
function _inlinEvent(caller){$.validationEngine.settings=settings;if($.validationEngine.intercept==false||!$.validationEngine.intercept){$.validationEngine.onSubmitValid=false;$.validationEngine.loadValidation(caller);}else{$.validationEngine.intercept=false;}}}
if(settings.returnIsValid==true){if($.validationEngine.submitValidation(this,settings)){return false;}else{return true;}}
$(this).bind("submit",function(caller){$.validationEngine.onSubmitValid=true;$.validationEngine.settings=settings;if($.validationEngine.submitValidation(this,settings)==false){if($.validationEngine.submitForm(this,settings)==true){return false;}}else{settings.failure&&settings.failure();return false;}})};$.validationEngine={loadValidation:function(caller){rulesParsing=$(caller).attr('class');rulesRegExp=/\[(.*)\]/;getRules=rulesRegExp.exec(rulesParsing);str=getRules[1];pattern=/\W+/;result=str.split(pattern);var validateCalll=$.validationEngine.validateCall(caller,result)
return validateCalll;},validateCall:function(caller,rules){var promptText=""
if(!$(caller).attr("id")){$.validationEngine.debug("This field have no ID attribut( name & class displayed): "+$(caller).attr("name")+" "+$(caller).attr("class"))}
if($('.formError').length!=0){if($.globalEngine)$.globalEngine.enableStackedView();}
caller=caller;ajaxValidate=false;var callerName=$(caller).attr("name");$.validationEngine.isError=false;$.validationEngine.showTriangle=true;callerType=$(caller).attr("type");for(i=0;i<rules.length;i++){switch(rules[i]){case"optional":if(!$(caller).val()){$.validationEngine.closePrompt(caller);return $.validationEngine.isError;}
break;case"required":_required(caller,rules);break;case"custom":_customRegex(caller,rules,i);break;case"ajax":if(!$.validationEngine.onSubmitValid){_ajax(caller,rules,i);};break;case"length":_length(caller,rules,i);break;case"maxCheckbox":_maxCheckbox(caller,rules,i);groupname=$(caller).attr("name");caller=$("input[name='"+groupname+"']");break;case"minCheckbox":_minCheckbox(caller,rules,i);groupname=$(caller).attr("name");caller=$("input[name='"+groupname+"']");break;case"confirm":_confirm(caller,rules,i);break;default:;};};radioHack();if($.validationEngine.isError==true){linkTofield=$.validationEngine.linkTofield(caller);($("div."+linkTofield).size()==0)?$.validationEngine.buildPrompt(caller,promptText,"error"):$.validationEngine.updatePromptText(caller,promptText);}else{$.validationEngine.closePrompt(caller);}
function radioHack(){if($("input[name='"+callerName+"']").size()>1&&(callerType=="radio"||callerType=="checkbox")){caller=$("input[name='"+callerName+"'][type!=hidden]:first");$.validationEngine.showTriangle=false;}}
function _required(caller,rules){callerType=$(caller).attr("type");if(callerType=="text"||callerType=="password"||callerType=="textarea"){if(!$(caller).val()){$.validationEngine.isError=true;promptText+=$.validationEngine.settings.allrules[rules[i]].alertText+"<br />";}}
if(callerType=="radio"||callerType=="checkbox"){callerName=$(caller).attr("name");if($("input[name='"+callerName+"']:checked").size()==0){$.validationEngine.isError=true;if($("input[name='"+callerName+"']").size()==1){promptText+=$.validationEngine.settings.allrules[rules[i]].alertTextCheckboxe+"<br />";}else{promptText+=$.validationEngine.settings.allrules[rules[i]].alertTextCheckboxMultiple+"<br />";}}}
if(callerType=="select-one"){if(!$(caller).val()){$.validationEngine.isError=true;promptText+=$.validationEngine.settings.allrules[rules[i]].alertText+"<br />";}}
if(callerType=="select-multiple"){if(!$(caller).find("option:selected").val()){$.validationEngine.isError=true;promptText+=$.validationEngine.settings.allrules[rules[i]].alertText+"<br />";}}}
function _customRegex(caller,rules,position){customRule=rules[position+1];pattern=eval($.validationEngine.settings.allrules[customRule].regex);if(!pattern.test($(caller).attr('value'))){$.validationEngine.isError=true;promptText+=$.validationEngine.settings.allrules[customRule].alertText+"<br />";}}
function _ajax(caller,rules,position){customAjaxRule=rules[position+1];postfile=$.validationEngine.settings.allrules[customAjaxRule].file;fieldValue=$(caller).val();ajaxCaller=caller;fieldId=$(caller).attr("id");ajaxValidate=true;ajaxisError=$.validationEngine.isError;if(!$.validationEngine.settings.allrules[customAjaxRule].extraData){extraData=$.validationEngine.settings.allrules[customAjaxRule].extraData;}else{extraData="";}
if(!ajaxisError){$.ajax({type:"POST",url:postfile,async:true,data:"validateValue="+fieldValue+"&validateId="+fieldId+"&validateError="+customAjaxRule+extraData,beforeSend:function(){if($.validationEngine.settings.allrules[customAjaxRule].alertTextLoad){if(!$("div."+fieldId+"formError")[0]){return $.validationEngine.buildPrompt(ajaxCaller,$.validationEngine.settings.allrules[customAjaxRule].alertTextLoad,"load");}else{$.validationEngine.updatePromptText(ajaxCaller,$.validationEngine.settings.allrules[customAjaxRule].alertTextLoad,"load");}}},error:function(data,transport){$.validationEngine.debug("error in the ajax: "+data.status+" "+transport)},success:function(data){data=eval("("+data+")");ajaxisError=data.jsonValidateReturn[2];customAjaxRule=data.jsonValidateReturn[1];ajaxCaller=$("#"+data.jsonValidateReturn[0])[0];fieldId=ajaxCaller;ajaxErrorLength=$.validationEngine.ajaxValidArray.length;existInarray=false;if(ajaxisError=="false"){_checkInArray(false)
if(!existInarray){$.validationEngine.ajaxValidArray[ajaxErrorLength]=new Array(2);$.validationEngine.ajaxValidArray[ajaxErrorLength][0]=fieldId;$.validationEngine.ajaxValidArray[ajaxErrorLength][1]=false;existInarray=false;}
$.validationEngine.ajaxValid=false;promptText+=$.validationEngine.settings.allrules[customAjaxRule].alertText+"<br />";$.validationEngine.updatePromptText(ajaxCaller,promptText,"",true);}else{_checkInArray(true);$.validationEngine.ajaxValid=true;if($.validationEngine.settings.allrules[customAjaxRule].alertTextOk){$.validationEngine.updatePromptText(ajaxCaller,$.validationEngine.settings.allrules[customAjaxRule].alertTextOk,"pass",true);}else{ajaxValidate=false;$.validationEngine.closePrompt(ajaxCaller);}}
function _checkInArray(validate){for(x=0;x<ajaxErrorLength;x++){if($.validationEngine.ajaxValidArray[x][0]==fieldId){$.validationEngine.ajaxValidArray[x][1]=validate;existInarray=true;}}}}});}}
function _confirm(caller,rules,position){confirmField=rules[position+1];if($(caller).attr('value')!=$("#"+confirmField).attr('value')){$.validationEngine.isError=true;promptText+=$.validationEngine.settings.allrules["confirm"].alertText+"<br />";}}
function _length(caller,rules,position){startLength=eval(rules[position+1]);endLength=eval(rules[position+2]);feildLength=$(caller).attr('value').length;if(feildLength<startLength||feildLength>endLength){$.validationEngine.isError=true;promptText+=$.validationEngine.settings.allrules["length"].alertText+startLength+$.validationEngine.settings.allrules["length"].alertText2+endLength+$.validationEngine.settings.allrules["length"].alertText3+"<br />"}}
function _maxCheckbox(caller,rules,position){nbCheck=eval(rules[position+1]);groupname=$(caller).attr("name");groupSize=$("input[name='"+groupname+"']:checked").size();if(groupSize>nbCheck){$.validationEngine.showTriangle=false;$.validationEngine.isError=true;promptText+=$.validationEngine.settings.allrules["maxCheckbox"].alertText+"<br />";}}
function _minCheckbox(caller,rules,position){nbCheck=eval(rules[position+1]);groupname=$(caller).attr("name");groupSize=$("input[name='"+groupname+"']:checked").size();if(groupSize<nbCheck){$.validationEngine.isError=true;$.validationEngine.showTriangle=false;promptText+=$.validationEngine.settings.allrules["minCheckbox"].alertText+" "+nbCheck+" "+$.validationEngine.settings.allrules["minCheckbox"].alertText2+"<br />";}}
return($.validationEngine.isError)?$.validationEngine.isError:false;},submitForm:function(caller){if($.validationEngine.settings.ajaxSubmit){if($.validationEngine.settings.ajaxSubmitExtraData){extraData=$.validationEngine.settings.ajaxSubmitExtraData;}else{extraData="";}
$.ajax({type:"POST",url:$.validationEngine.settings.ajaxSubmitFile,async:true,data:$(caller).serialize()+"&"+extraData,error:function(data,transport){$.validationEngine.debug("error in the ajax: "+data.status+" "+transport)},success:function(data){if(data=="true"){$(caller).css("opacity",1)
$(caller).animate({opacity:0,height:0},function(){$(caller).css("display","none");$(caller).before("<div class='ajaxSubmit'>"+$.validationEngine.settings.ajaxSubmitMessage+"</div>");$.validationEngine.closePrompt(".formError",true);$(".ajaxSubmit").show("slow");if($.validationEngine.settings.success){$.validationEngine.settings.success&&$.validationEngine.settings.success();return false;}})}else{data=eval("("+data+")");if(!data.jsonValidateReturn){$.validationEngine.debug("you are not going into the success fonction and jsonValidateReturn return nothing");}
errorNumber=data.jsonValidateReturn.length
for(index=0;index<errorNumber;index++){fieldId=data.jsonValidateReturn[index][0];promptError=data.jsonValidateReturn[index][1];type=data.jsonValidateReturn[index][2];$.validationEngine.buildPrompt(fieldId,promptError,type);}}}})
return true;}
if($.validationEngine.settings.success){if($.validationEngine.settings.unbindEngine){$(caller).unbind("submit")}
$.validationEngine.settings.success&&$.validationEngine.settings.success();return true;}
return false;},buildPrompt:function(caller,promptText,type,ajaxed){var divFormError=document.createElement('div');var formErrorContent=document.createElement('div');linkTofield=$.validationEngine.linkTofield(caller)
$(divFormError).addClass("formError")
if(type=="pass"){$(divFormError).addClass("greenPopup")}
if(type=="load"){$(divFormError).addClass("blackPopup")}
if(ajaxed){$(divFormError).addClass("ajaxed")}
$(divFormError).addClass(linkTofield);$(formErrorContent).addClass("formErrorContent");$("body").append(divFormError);$(divFormError).append(formErrorContent);if($.validationEngine.showTriangle!=false){var arrow=document.createElement('div');$(arrow).addClass("formErrorArrow");$(divFormError).append(arrow);if($.validationEngine.settings.promptPosition=="bottomLeft"||$.validationEngine.settings.promptPosition=="bottomRight"){$(arrow).addClass("formErrorArrowBottom")
$(arrow).html('<div class="line1"><!-- --></div><div class="line2"><!-- --></div><div class="line3"><!-- --></div><div class="line4"><!-- --></div><div class="line5"><!-- --></div><div class="line6"><!-- --></div><div class="line7"><!-- --></div><div class="line8"><!-- --></div><div class="line9"><!-- --></div><div class="line10"><!-- --></div>');}
if($.validationEngine.settings.promptPosition=="topLeft"||$.validationEngine.settings.promptPosition=="topRight"){$(divFormError).append(arrow);$(arrow).html('<div class="line10"><!-- --></div><div class="line9"><!-- --></div><div class="line8"><!-- --></div><div class="line7"><!-- --></div><div class="line6"><!-- --></div><div class="line5"><!-- --></div><div class="line4"><!-- --></div><div class="line3"><!-- --></div><div class="line2"><!-- --></div><div class="line1"><!-- --></div>');}}
$(formErrorContent).html(promptText)
callerTopPosition=$(caller).offset().top;callerleftPosition=$(caller).offset().left;callerWidth=$(caller).width();inputHeight=$(divFormError).height();if($.validationEngine.settings.promptPosition=="topRight"){callerleftPosition+=callerWidth-30;callerTopPosition+=-inputHeight-10;}
if($.validationEngine.settings.promptPosition=="topLeft"){callerTopPosition+=-inputHeight-10;}
if($.validationEngine.settings.promptPosition=="centerRight"){callerleftPosition+=callerWidth+13;}
if($.validationEngine.settings.promptPosition=="bottomLeft"){callerHeight=$(caller).height();callerleftPosition=callerleftPosition;callerTopPosition=callerTopPosition+callerHeight+15;}
if($.validationEngine.settings.promptPosition=="bottomRight"){callerHeight=$(caller).height();callerleftPosition+=callerWidth-30;callerTopPosition+=callerHeight+15;}
$(divFormError).css({top:callerTopPosition,left:callerleftPosition,opacity:0})
return $(divFormError).animate({"opacity":0.87},function(){return true;});},updatePromptText:function(caller,promptText,type,ajaxed){linkTofield=$.validationEngine.linkTofield(caller);var updateThisPrompt="."+linkTofield;if(type=="pass"){$(updateThisPrompt).addClass("greenPopup")}else{$(updateThisPrompt).removeClass("greenPopup")};if(type=="load"){$(updateThisPrompt).addClass("blackPopup")}else{$(updateThisPrompt).removeClass("blackPopup")};if(ajaxed){$(updateThisPrompt).addClass("ajaxed")}else{$(updateThisPrompt).removeClass("ajaxed")};$(updateThisPrompt).find(".formErrorContent").html(promptText);callerTopPosition=$(caller).offset().top;inputHeight=$(updateThisPrompt).height();if($.validationEngine.settings.promptPosition=="bottomLeft"||$.validationEngine.settings.promptPosition=="bottomRight"){callerHeight=$(caller).height();callerTopPosition=callerTopPosition+callerHeight+15;}
if($.validationEngine.settings.promptPosition=="centerRight"){callerleftPosition+=callerWidth+13;}
if($.validationEngine.settings.promptPosition=="topLeft"||$.validationEngine.settings.promptPosition=="topRight"){callerTopPosition=callerTopPosition-inputHeight-10;}
$(updateThisPrompt).animate({top:callerTopPosition});},linkTofield:function(caller){linkTofield=$(caller).attr("id")+"formError";linkTofield=linkTofield.replace(/\[/g,"");linkTofield=linkTofield.replace(/\]/g,"");return linkTofield;},closePrompt:function(caller,outside){if(outside){$(caller).fadeTo("fast",0,function(){$(caller).remove();});return false;}
if(!ajaxValidate){linkTofield=$.validationEngine.linkTofield(caller);closingPrompt="."+linkTofield;$(closingPrompt).fadeTo("fast",0,function(){$(closingPrompt).remove();});}},debug:function(error){if(!$("#debugMode")[0]){$("body").append("<div id='debugMode'><div class='debugError'><strong>This is a debug mode, you got a problem with your form, it will try to help you, refresh when you think you nailed down the problem</strong></div></div>");}
$(".debugError").append("<div class='debugerror'>"+error+"</div>");},submitValidation:function(caller){var stopForm=false;$.validationEngine.ajaxValid=true;$(caller).find(".formError").remove();var toValidateSize=$(caller).find("[class*=validate]").size();$(caller).find("[class*=validate]").each(function(){linkTofield=$.validationEngine.linkTofield(this);if(!$("."+linkTofield).hasClass("ajaxed")){var validationPass=$.validationEngine.loadValidation(this);return(validationPass)?stopForm=true:"";};});ajaxErrorLength=$.validationEngine.ajaxValidArray.length;for(x=0;x<ajaxErrorLength;x++){if($.validationEngine.ajaxValidArray[x][1]==false){$.validationEngine.ajaxValid=false;}}
if(stopForm||!$.validationEngine.ajaxValid){if($.validationEngine.settings.animateSubmit){destination=$(".formError:not('.greenPopup'):first").offset().top;$(".formError:not('.greenPopup')").each(function(){testDestination=$(this).offset().top;if(destination>testDestination){destination=$(this).offset().top;}})
$("html:not(:animated),body:not(:animated)").animate({scrollTop:destination},500);}
return true;}else{return false;}}}})(jQuery);

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":200,"face":{"font-family":"Glypha LT Std","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 6 5 3 3 5 5 2 2 4","ascent":"258","descent":"-102","x-height":"3","bbox":"-60 -346 360 74.9331","underline-thickness":"22.68","underline-position":"-6.84","stemv":"29","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":100},"!":{"d":"59,-60r-8,-198r37,0r-6,198r-23,0xm53,0r0,-33r34,0r0,33r-34,0","w":140},"\"":{"d":"83,-158r-18,0r-5,-100r27,0xm36,-158r-19,0r-4,-100r27,0","w":100},"#":{"d":"135,-94r-13,94r-17,0r13,-94r-43,0r-13,94r-17,0r12,-94r-51,0r0,-17r54,0r6,-42r-50,0r0,-17r53,0r12,-88r17,0r-12,88r44,0r12,-88r17,0r-12,88r47,0r0,17r-50,0r-5,42r46,0r0,17r-50,0xm127,-153r-44,0r-5,42r43,0"},"$":{"d":"110,-19v23,1,44,-22,43,-46v0,-27,-21,-38,-43,-47r0,93xm93,-150r0,-89v-28,1,-45,15,-45,44v1,26,22,39,45,45xm93,-118v-35,-12,-76,-30,-76,-76v0,-43,36,-67,76,-67r0,-35r17,0r0,36v17,3,35,12,42,27r0,-24r25,0r0,71r-24,0v-2,-29,-18,-47,-43,-51r0,94v37,13,73,27,73,72v0,41,-32,75,-73,75r0,37r-17,0r0,-38v-19,-3,-38,-13,-48,-31r0,28r-26,0r0,-73r26,0v1,28,22,47,48,52r0,-97"},"%":{"d":"97,-243v-24,0,-27,30,-27,48v0,18,6,42,28,42v20,0,25,-30,25,-45v0,-17,-3,-45,-26,-45xm244,-262r-147,266r-22,0r148,-266r21,0xm225,-105v-24,0,-27,31,-27,49v0,18,5,41,27,41v20,0,26,-29,26,-44v0,-17,-3,-46,-26,-46xm172,-61v0,-32,18,-62,53,-62v38,0,50,31,50,64v0,31,-14,63,-50,63v-39,0,-53,-31,-53,-65xm95,-134v-69,0,-67,-129,3,-128v37,0,50,32,50,64v0,33,-16,64,-53,64","w":320},"&":{"d":"106,-263v32,-3,62,22,62,55v0,33,-21,53,-48,68r61,71v9,-19,13,-39,14,-60r-28,0r0,-23r88,0r0,23r-33,0v-3,28,-9,59,-23,80r23,25r38,0r0,24r-58,0r-23,-26v-45,53,-158,42,-158,-45v0,-34,21,-62,52,-75v-17,-16,-32,-35,-32,-60v0,-33,30,-61,65,-57xm53,-71v0,27,21,53,50,53v21,0,45,-11,59,-28r-70,-80v-21,12,-39,29,-39,55xm103,-158v34,-10,55,-81,2,-83v-19,0,-32,14,-32,33v0,20,18,36,30,50","w":280},"\u2019":{"d":"30,-222r0,-36r38,0v3,38,-8,61,-17,87r-21,0r17,-51r-17,0","w":100,"k":{"\u2019":6,"s":13,"\u0161":13}},"(":{"d":"100,-263v-67,94,-63,240,0,331r-27,0v-70,-96,-70,-235,0,-331r27,0","w":119},")":{"d":"16,68v67,-96,66,-237,0,-331r27,0v70,96,70,235,0,331r-27,0","w":119},"*":{"d":"73,-206r-7,-52r29,0r-7,52r43,-22r8,28r-47,8r32,39r-24,16r-20,-46r-22,46r-23,-17r33,-38r-46,-10r9,-27","w":159},"+":{"d":"26,-140r80,0r0,-80r22,0r0,80r80,0r0,22r-80,0r0,81r-22,0r0,-81r-80,0r0,-22","w":237},",":{"d":"30,0r0,-36r37,0v3,37,-8,61,-16,87r-21,0r17,-51r-17,0","w":100},"-":{"d":"18,-86r0,-27r85,0r0,27r-85,0","w":119},".":{"d":"31,0r0,-36r37,0r0,36r-37,0","w":100},"\/":{"d":"103,-263r25,0r-102,263r-26,0","w":126},"0":{"d":"17,-122v0,-67,19,-140,84,-140v70,0,82,75,82,130v0,57,-11,136,-84,136v-59,0,-82,-66,-82,-126xm150,-120v1,-52,-1,-119,-48,-119v-51,0,-52,81,-52,116v0,33,4,103,50,103v46,0,49,-55,50,-100"},"1":{"d":"37,-176r0,-32v19,-16,39,-32,56,-50r33,0r0,234r36,0r0,24r-106,0r0,-24r39,0r0,-202v-18,18,-37,36,-58,50"},"2":{"d":"97,-262v40,0,77,26,76,64v-2,67,-62,99,-97,141r-34,32r107,0r0,-41r28,0r0,66r-159,0v1,-21,-5,-43,11,-49v35,-36,73,-68,102,-110v20,-30,7,-79,-34,-79v-30,0,-45,27,-44,54r-34,0v2,-45,30,-78,78,-78"},"3":{"d":"101,-262v86,0,102,122,20,131v35,4,56,28,56,63v0,48,-34,72,-79,72v-49,0,-79,-27,-79,-76r34,0v0,26,14,51,43,51v30,0,49,-20,49,-50v0,-29,-28,-52,-58,-49r0,-24v32,1,56,-14,56,-48v0,-26,-16,-46,-44,-46v-26,0,-46,20,-44,49r-33,0v1,-46,34,-73,79,-73"},"4":{"d":"120,-69r-110,0r0,-34r101,-155r38,0r0,166r36,0r0,23r-36,0r0,45r33,0r0,24r-102,0r0,-24r40,0r0,-45xm32,-92r88,0r0,-137"},"5":{"d":"182,-82v0,45,-28,87,-80,86v-46,0,-77,-25,-76,-72r32,0v-1,24,17,48,43,48v70,2,64,-120,3,-120v-21,0,-40,13,-46,34r-31,0r5,-152r140,0r0,25r-111,0r-4,100v9,-22,30,-32,53,-32v44,0,72,41,72,83"},"6":{"d":"177,-197r-31,0v-1,-21,-10,-42,-35,-42v-54,0,-58,66,-59,117v8,-25,33,-42,59,-42v50,0,70,39,70,83v0,49,-28,85,-79,85v-71,0,-81,-69,-81,-125v0,-60,12,-141,90,-141v42,0,64,24,66,65xm107,-140v-66,-1,-69,119,-3,121v34,0,46,-34,46,-62v0,-26,-12,-59,-43,-59"},"7":{"d":"20,-187r0,-71r165,0v4,38,-13,55,-24,79v-26,59,-48,118,-67,179r-34,0v26,-83,59,-157,96,-232r-107,0r0,45r-29,0"},"8":{"d":"21,-69v-1,-36,24,-61,54,-64v-31,-4,-51,-29,-51,-60v0,-46,32,-69,76,-69v43,0,77,21,77,67v0,35,-18,56,-52,62v34,3,55,32,55,64v0,46,-34,73,-79,73v-48,0,-80,-23,-80,-73xm100,-240v-25,-1,-46,23,-46,50v0,26,20,46,46,46v28,0,46,-22,46,-49v0,-29,-16,-47,-46,-47xm52,-72v0,28,15,53,46,53v33,0,50,-21,50,-53v0,-30,-17,-50,-48,-50v-30,0,-48,21,-48,50"},"9":{"d":"97,-262v63,0,83,65,83,126v0,61,-12,140,-90,140v-42,0,-66,-24,-67,-65r32,0v1,23,11,42,37,42v52,0,58,-80,57,-117v-8,24,-34,42,-60,42v-49,0,-70,-39,-70,-83v0,-49,27,-85,78,-85xm144,-177v0,-30,-17,-62,-45,-62v-63,-1,-67,118,-4,121v29,1,49,-29,49,-59"},":":{"d":"88,-180r0,36r-37,0r0,-36r37,0xm51,0r0,-36r37,0r0,36r-37,0","w":140},";":{"d":"50,0r0,-36r37,0v3,37,-7,61,-15,87r-22,0r17,-51r-17,0xm50,-144r0,-36r37,0r0,36r-37,0","w":140},"<":{"d":"214,-53r0,23r-194,-88r0,-21r194,-90r0,23r-169,77","w":237},"=":{"d":"27,-167r183,0r0,23r-183,0r0,-23xm27,-113r183,0r0,22r-183,0r0,-22","w":237},">":{"d":"20,-53r169,-76r-169,-77r0,-23r194,90r0,21r-194,88r0,-23","w":237},"?":{"d":"162,-193v0,60,-74,67,-67,134r-31,0v-2,-49,21,-71,48,-94v29,-24,21,-85,-23,-85v-27,0,-42,20,-42,46r-33,0v1,-49,31,-70,77,-70v41,0,71,27,71,69xm63,-33r33,0r0,33r-33,0r0,-33","w":180},"@":{"d":"169,-250v-68,0,-128,54,-128,121v0,118,166,159,233,75r7,10v-75,96,-255,40,-255,-85v0,-76,67,-135,144,-135v66,0,125,45,125,111v0,48,-33,95,-79,95v-14,0,-22,-7,-23,-21v-13,15,-29,23,-50,23v-34,0,-54,-30,-54,-60v0,-63,93,-127,127,-60r5,-18r17,0r-31,110v0,8,6,13,14,13v35,-4,60,-44,60,-82v0,-57,-56,-97,-112,-97xm147,-72v43,-1,61,-46,61,-86v0,-19,-17,-32,-36,-32v-39,0,-66,41,-66,75v0,23,15,43,41,43","w":324},"A":{"d":"95,-109r86,0r-43,-121xm30,-24r91,-234r37,0r90,234r26,0r0,24r-96,0r0,-24r35,0r-22,-62r-106,0r-22,62r35,0r0,24r-94,0r0,-24r26,0","w":280},"B":{"d":"215,-72v0,44,-38,72,-84,72r-121,0r0,-24r37,0r0,-210r-36,0r0,-24r120,0v41,-6,78,24,78,64v0,30,-18,55,-49,59v35,3,55,28,55,63xm177,-192v0,-45,-50,-44,-99,-42r0,90v52,4,99,-2,99,-48xm183,-74v2,-49,-51,-49,-105,-46r0,96v54,4,103,-2,105,-50","w":240},"C":{"d":"49,-35v-60,-80,-24,-227,88,-227v32,0,61,11,75,42r0,-38r26,0r0,92r-28,0v-3,-42,-26,-71,-70,-71v-63,0,-84,50,-84,105v0,55,18,110,82,110v40,0,66,-26,68,-65r33,0v1,99,-139,120,-190,52","w":259},"D":{"d":"183,-49v53,-62,29,-190,-71,-185r-35,0r0,210v45,0,79,6,106,-25xm241,-131v1,82,-48,141,-140,131r-92,0r0,-24r36,0r0,-210r-36,0r0,-24r100,0v85,-8,131,50,132,127","w":259},"E":{"d":"216,0r-206,0r0,-24r37,0r0,-210r-37,0r0,-24r206,0r0,77r-28,0r0,-53r-110,0r0,91r54,0r0,-39r26,0r0,101r-26,0r0,-38r-54,0r0,95r110,0r0,-56r28,0r0,80","w":240},"F":{"d":"118,0r-110,0r0,-24r36,0r0,-210r-36,0r0,-24r198,0r0,78r-28,0r0,-54r-103,0r0,96r52,0r0,-38r25,0r0,100r-25,0r0,-38r-52,0r0,90r43,0r0,24","w":219,"k":{"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":33,".":33}},"G":{"d":"21,-127v0,-68,41,-135,115,-135v28,0,57,11,71,37r0,-33r28,0r0,92r-28,0v0,-43,-30,-71,-72,-71v-61,0,-80,59,-80,110v0,51,20,106,80,106v46,0,75,-39,74,-83r-39,0r0,-23r101,0r0,23r-33,0r0,104r-29,0r0,-40v-11,31,-47,44,-78,44v-63,0,-110,-58,-110,-131","w":280},"H":{"d":"114,0r-103,0r0,-24r36,0r0,-210r-36,0r0,-24r103,0r0,24r-36,0r0,91r124,0r0,-91r-37,0r0,-24r104,0r0,24r-36,0r0,210r36,0r0,24r-104,0r0,-24r37,0r0,-93r-124,0r0,93r36,0r0,24","w":280},"I":{"d":"8,-234r0,-24r104,0r0,24r-36,0r0,210r36,0r0,24r-104,0r0,-24r36,0r0,-210r-36,0","w":119},"J":{"d":"76,4v-45,0,-75,-38,-69,-84r33,0v-1,26,5,59,38,59v30,0,37,-33,37,-65r0,-148r-38,0r0,-24r98,0r0,24r-29,0v-8,99,34,238,-70,238","w":180},"K":{"d":"114,0r-103,0r0,-24r37,0r0,-210r-37,0r0,-24r103,0r0,24r-35,0r0,97r93,-97r-32,0r0,-24r90,0r0,24r-18,0r-95,97r96,113r25,0r0,24r-95,0r0,-24r31,0r-95,-112r0,112r35,0r0,24","w":240},"L":{"d":"206,0r-196,0r0,-24r38,0r0,-210r-38,0r0,-24r112,0r0,24r-43,0r0,208r98,0r0,-58r29,0r0,84","w":219,"k":{"T":27,"V":33,"W":27,"y":20,"\u00fd":20,"\u00ff":20,"Y":27,"\u00dd":27,"\u0178":27,"\u2019":33}},"M":{"d":"109,0r-98,0r0,-24r37,0r0,-210r-37,0r0,-24r92,0r66,221r69,-221r91,0r0,24r-37,0r0,210r37,0r0,24r-100,0r0,-24r33,0r0,-210r-3,0r-76,234r-29,0r-76,-234r-3,0r0,210r34,0r0,24","w":339},"N":{"d":"111,0r-101,0r0,-24r37,0r0,-210r-37,0r0,-24r83,0r114,225r0,-201r-36,0r0,-24r99,0r0,24r-35,0r0,234r-43,0r-118,-231r0,207r37,0r0,24","w":280},"O":{"d":"260,-127v0,75,-47,131,-117,131v-78,0,-122,-55,-122,-129v0,-72,48,-137,120,-137v71,0,119,62,119,135xm142,-19v54,0,84,-56,84,-110v0,-54,-22,-109,-86,-109v-124,2,-107,219,2,219","w":280},"P":{"d":"175,-181v0,-47,-43,-60,-97,-53r0,104v54,5,97,-3,97,-51xm207,-181v0,45,-39,83,-87,75r-42,0r0,82r44,0r0,24r-112,0r0,-24r37,0r0,-210r-37,0r0,-24r114,0v55,-4,83,32,83,77","w":219,"k":{"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":33,".":33}},"Q":{"d":"134,-262v70,0,118,64,118,132v0,37,-16,95,-53,111v21,-5,47,-4,73,-4r0,24r-92,0v-58,7,-108,5,-139,-37v-61,-82,-21,-226,93,-226xm133,-237v-117,2,-114,218,-1,217v112,-3,117,-215,1,-217","w":280},"R":{"d":"174,-187v0,-47,-45,-51,-98,-47r0,96v52,4,98,-1,98,-49xm111,0r-103,0r0,-24r37,0r0,-210r-37,0r0,-24v61,4,128,-15,172,11v45,26,33,121,-28,123v47,7,38,63,55,100r28,0r0,24r-53,0v-15,-37,-14,-86,-43,-109v-18,-7,-41,-3,-63,-4r0,89r35,0r0,24","w":240,"k":{"T":6,"V":13,"W":13,"y":6,"\u00fd":6,"\u00ff":6,"Y":13,"\u00dd":13,"\u0178":13}},"S":{"d":"17,-192v0,-72,99,-95,134,-41r0,-25r28,0r0,84r-28,0v-1,-38,-13,-64,-55,-64v-39,0,-64,50,-33,72v42,30,122,27,122,97v0,73,-113,103,-141,36r0,33r-27,0r0,-87r27,0v1,37,19,67,59,67v27,0,49,-19,49,-46v0,-44,-48,-46,-79,-60v-32,-15,-56,-26,-56,-66"},"T":{"d":"14,-175r0,-83r208,0r0,83r-28,0r0,-55r-60,0r0,206r40,0r0,24r-111,0r0,-24r40,0r0,-206r-61,0r0,55r-28,0","w":240,"k":{"\u00f9":7,"\u00fc":7,"\u0161":13,"\u00f2":13,"\u00f6":13,"\u00f4":13,"\u00ed":3,"\u00e8":13,"\u00eb":13,"\u00ea":13,"\u00e3":13,"\u00e5":13,"\u00e0":13,"\u00e2":13,"w":7,"y":7,"\u00fd":7,"\u00ff":7,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":27,".":27,"r":3,"u":7,"\u00fa":7,"\u00fb":7,"-":27,"a":13,"\u00e6":13,"\u00e1":13,"\u00e4":13,"c":13,"\u00e7":13,"e":13,"\u00e9":13,"i":3,"\u00ee":3,"\u00ef":3,"\u00ec":3,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f5":13,"s":13,":":13,";":13}},"U":{"d":"129,4v-53,2,-92,-45,-92,-104r0,-134r-32,0r0,-24r102,0r0,24r-39,0v5,90,-25,212,62,212v42,0,64,-40,64,-87r0,-125r-38,0r0,-24r98,0r0,24r-32,0r0,132v4,63,-35,104,-93,106","w":259},"V":{"d":"233,-234r-86,234r-36,0r-85,-234r-21,0r0,-24r93,0r0,24r-38,0r70,202r71,-202r-37,0r0,-24r90,0r0,24r-21,0","w":259,"k":{"\u00f6":20,"\u00ee":6,"\u00e8":20,"\u00eb":20,"\u00e3":20,"\u00e5":20,"\u00e0":20,"\u00e4":20,"\u00e2":20,"y":6,"\u00fd":6,"\u00ff":6,"A":29,"\u00c6":29,"\u00c1":29,"\u00c2":29,"\u00c4":29,"\u00c0":29,"\u00c5":29,"\u00c3":29,",":40,".":40,"r":13,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"-":18,"a":20,"\u00e6":20,"\u00e1":20,"e":20,"\u00e9":20,"\u00ea":20,"i":6,"\u00ed":6,"\u00ef":6,"\u00ec":6,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f2":20,"\u00f5":20,":":20,";":20}},"W":{"d":"5,-234r0,-24r90,0r0,24r-37,0r43,203r58,-227r45,0r56,229r45,-205r-38,0r0,-24r88,0r0,24r-21,0r-54,234r-42,0r-57,-235r-3,0r-57,235r-43,0r-52,-234r-21,0","w":360,"k":{"\u00fc":6,"\u00f6":13,"\u00e4":13,"y":6,"\u00fd":6,"\u00ff":6,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":20,".":20,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00f9":6,"-":14,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f2":13,"\u00f5":13,":":13,";":18}},"X":{"d":"107,0r-101,0r0,-24r25,0r81,-111r-70,-99r-27,0r0,-24r100,0r0,24r-34,0r53,75r54,-75r-34,0r0,-24r97,0r0,24r-27,0r-70,97r79,113r24,0r0,24r-101,0r0,-24r37,0r-61,-88r-65,88r40,0r0,24","w":259},"Y":{"d":"175,0r-111,0r0,-24r40,0r0,-81r-80,-129r-20,0r0,-24r92,0r0,24r-36,0r61,101r61,-101r-34,0r0,-24r88,0r0,24r-20,0r-81,129r0,81r40,0r0,24","w":240,"k":{"\u00f6":20,"v":13,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":27,".":27,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"-":29,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":7,"\u00ed":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f2":20,"\u00f5":20,":":20,";":25,"p":13,"q":20}},"Z":{"d":"205,0r-191,0r0,-33r152,-200r-121,0r0,52r-29,0r0,-77r186,0r0,30r-154,203r129,0r0,-54r28,0r0,79","w":219},"[":{"d":"91,68r-55,0r0,-331r55,0r0,20r-28,0r0,291r28,0r0,20","w":119},"\\":{"d":"137,0r-108,-263r25,0r107,263r-24,0","w":208},"]":{"d":"82,-263r0,331r-55,0r0,-20r28,0r0,-291r-28,0r0,-20r55,0","w":119},"^":{"d":"42,-63r-22,0r88,-195r21,0r89,195r-23,0r-77,-169","w":237},"_":{"d":"180,40r-180,0r0,-22r180,0r0,22","w":180},"\u2018":{"d":"69,-171r-37,0v-3,-38,8,-61,17,-87r20,0r-16,51r16,0r0,36","w":100,"k":{"\u2018":9}},"a":{"d":"95,-194v36,0,70,24,70,63r0,108r30,0r0,23r-57,0r0,-37v-19,59,-124,53,-122,-18v2,-60,60,-60,122,-58v4,-34,-11,-57,-40,-59v-23,-1,-45,12,-45,37r-30,0v0,-37,29,-59,72,-59xm47,-54v0,21,12,35,33,35v43,0,57,-35,58,-72v-39,-3,-91,-10,-91,37"},"b":{"d":"128,-194v112,2,103,197,-3,197v-24,0,-48,-14,-58,-36r0,33r-59,0r0,-23r29,0r0,-214r-29,0r0,-21r59,0r0,103v11,-23,36,-39,61,-39xm66,-96v0,37,16,75,55,75v40,0,56,-36,56,-71v0,-35,-12,-79,-55,-79v-36,0,-56,33,-56,75","w":219},"c":{"d":"13,-92v0,-49,29,-103,81,-102v24,0,40,8,53,29r0,-23r23,0r0,69r-23,0v0,-26,-19,-51,-46,-51v-80,2,-71,148,0,149v24,0,41,-20,44,-43r27,0v-1,42,-35,67,-74,67v-54,0,-85,-44,-85,-95","w":180},"d":{"d":"156,-37v-35,77,-140,35,-140,-60v0,-49,23,-97,78,-97v27,0,50,13,62,37r0,-80r-31,0r0,-21r60,0r0,235r30,0r0,23r-59,0r0,-37xm46,-100v0,44,16,80,56,81v36,1,54,-40,54,-77v0,-33,-13,-73,-52,-75v-37,-2,-58,36,-58,71","w":219},"e":{"d":"105,-194v56,2,86,45,82,106r-138,0v-1,35,23,69,61,69v23,0,44,-18,47,-40r28,0v-7,41,-39,62,-80,62v-61,0,-87,-41,-87,-97v0,-54,36,-101,87,-100xm50,-110r106,0v0,-30,-17,-62,-51,-62v-35,0,-53,31,-55,62"},"f":{"d":"127,-235v-39,-11,-66,5,-59,47r40,0r0,22r-40,0r0,143r36,0r0,23r-96,0r0,-23r31,0r0,-143r-33,0r0,-22r33,0v-9,-57,32,-87,88,-72r0,25","w":119,"k":{"\u2019":-6}},"g":{"d":"13,-93v0,-90,100,-139,144,-65r0,-30r59,0r0,21r-31,0r0,149v0,27,0,49,-22,67v-40,34,-128,32,-139,-31r33,0v4,23,25,29,45,29v40,0,61,-34,54,-80v-17,26,-33,36,-63,36v-53,0,-80,-47,-80,-96xm101,-169v-79,2,-72,150,-2,149v76,1,76,-148,2,-149","w":219},"h":{"d":"122,-172v-69,0,-50,81,-52,149r31,0r0,23r-91,0r0,-23r31,0r0,-214r-31,0r0,-21r60,0r0,95v32,-53,117,-35,117,34r0,106r31,0r0,23r-91,0r0,-23r31,0v-7,-59,25,-149,-36,-149","w":219},"i":{"d":"101,-23r0,23r-89,0r0,-23r30,0r0,-144r-29,0r0,-21r59,0r0,165r29,0xm40,-258r34,0r0,30r-34,0r0,-30","w":106},"j":{"d":"0,60r0,-23v11,4,28,5,37,-6v10,-57,1,-133,4,-198r-31,0r0,-21r60,0v-3,78,8,167,-7,234v-13,19,-39,20,-63,14xm72,-228r-33,0r0,-30r33,0r0,30","w":100},"k":{"d":"95,0r-86,0r0,-23r30,0r0,-214r-30,0r0,-21r59,0r0,163r68,-72r-28,0r0,-21r85,0r0,21r-26,0r-45,48r54,96r20,0r0,23r-76,0r0,-23r23,0r-42,-78r-33,33r0,45r27,0r0,23"},"l":{"d":"95,0r-87,0r0,-23r29,0r0,-214r-29,0r0,-21r59,0r0,235r28,0r0,23","w":100},"m":{"d":"114,-171v-58,0,-41,86,-43,148r29,0r0,23r-89,0r0,-23r30,0r0,-144r-30,0r0,-21r60,0r0,34v6,-24,26,-40,52,-40v29,0,47,16,54,40v19,-68,112,-43,112,29r0,102r27,0r0,23r-86,0r0,-23r30,0r0,-94v0,-26,0,-54,-36,-54v-59,1,-42,86,-44,148r29,0r0,23r-88,0r0,-23r29,0r0,-94v0,-26,0,-54,-36,-54","w":320},"n":{"d":"118,-171v-64,0,-47,84,-49,148r30,0r0,23r-90,0r0,-23r31,0r0,-144r-30,0r0,-21r59,0r0,34v17,-62,116,-51,116,24r0,107r29,0r0,23r-88,0r0,-23r30,0v-7,-57,23,-148,-38,-148","w":219},"o":{"d":"101,-171v-38,0,-57,38,-57,75v0,38,21,77,57,77v35,0,55,-39,55,-78v0,-35,-12,-74,-55,-74xm101,3v-52,0,-88,-48,-88,-99v0,-53,39,-98,90,-98v59,0,85,46,85,99v0,53,-29,98,-87,98"},"p":{"d":"207,-96v0,49,-28,99,-76,99v-29,0,-51,-11,-64,-38r0,72r30,0r0,21r-90,0r0,-21r30,0r0,-204r-29,0r0,-21r59,0r0,37v14,-28,33,-43,65,-43v46,0,75,45,75,98xm177,-93v0,-37,-16,-79,-53,-79v-38,0,-57,37,-57,76v0,38,18,78,54,77v40,0,56,-39,56,-74","w":219},"q":{"d":"13,-96v0,-94,105,-135,141,-57r0,-35r58,0r0,21r-29,0r0,204r30,0r0,21r-89,0r0,-21r30,0r0,-72v-11,23,-36,40,-65,38v-50,-3,-76,-48,-76,-99xm102,-19v70,-2,71,-153,-3,-153v-79,3,-76,153,3,153","w":219},"r":{"d":"70,-188r0,38v12,-35,25,-42,65,-41r0,27v-75,-13,-66,68,-65,141r36,0r0,23r-95,0r0,-23r30,0r0,-144r-30,0r0,-21r59,0","w":140,"k":{"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,",":20,".":20,"f":-5,"\u00df":-5,"m":-5,"n":-5,"\u00f1":-5,"r":-5,"t":-5,"u":-5,"\u00fa":-5,"\u00fb":-5,"\u00fc":-5,"\u00f9":-5,"x":-5,"z":-5,"\u017e":-5,"-":7}},"s":{"d":"21,-137v0,-58,85,-78,114,-32r0,-19r23,0r0,61r-23,0v2,-26,-16,-43,-45,-45v-28,-2,-53,29,-32,51v38,19,100,6,102,64v2,64,-96,83,-119,27r0,30r-22,0r0,-65r22,0v-4,46,89,68,89,11v0,-27,-29,-28,-49,-31v-32,-5,-60,-14,-60,-52","w":180},"t":{"d":"80,3v-70,2,-38,-104,-45,-170r-32,0r0,-21r32,0r0,-37r29,-10r0,47r54,0r0,21r-54,0r0,122v0,12,4,26,19,26v19,0,19,-26,19,-39r23,0v3,35,-10,60,-45,61","w":133},"u":{"d":"102,-19v60,-1,49,-84,49,-148r-32,0r0,-21r61,0r0,165r30,0r0,23r-59,0r0,-36v-9,28,-25,39,-55,39v-40,0,-59,-27,-59,-76r0,-94r-30,0r0,-21r59,0r0,115v0,25,4,54,36,54","w":219},"v":{"d":"5,-167r0,-21r80,0r0,21r-30,0r44,142r3,0r45,-142r-30,0r0,-21r78,0r0,21r-19,0r-57,167r-37,0r-58,-167r-19,0","k":{",":27,".":27}},"w":{"d":"5,-167r0,-21r84,0r0,21r-31,0v14,45,21,98,38,140r45,-161r41,0r45,161r2,0r36,-140r-32,0r0,-21r82,0r0,21r-21,0r-48,167r-39,0r-45,-165r-3,0r-45,165r-39,0r-48,-167r-22,0","w":320,"k":{",":20,".":20}},"x":{"d":"10,-167r0,-21r80,0r0,21r-27,0r41,54r41,-54r-28,0r0,-21r77,0r0,21r-19,0r-55,72r57,72r19,0r0,23r-82,0r0,-23r29,0r-43,-54r-45,54r31,0r0,23r-80,0r0,-23r18,0r60,-75r-56,-69r-18,0"},"y":{"d":"6,-188r80,0r0,21r-29,0r46,132r45,-132r-30,0r0,-21r77,0r0,21r-16,0r-74,197v-7,25,-38,39,-70,30r0,-24v30,13,47,-13,52,-36r-63,-167r-18,0r0,-21","k":{",":27,".":27}},"z":{"d":"162,0r-144,0r0,-24r109,-143r-81,0r0,39r-26,0r0,-60r141,0r0,24r-110,141r86,0r0,-41r25,0r0,64","w":180},"{":{"d":"13,-99v68,-8,-20,-180,81,-164v-65,13,11,146,-60,164v71,9,-7,142,60,167v-31,6,-58,-20,-53,-51v-3,-47,14,-108,-28,-116","w":108},"|":{"d":"106,0r0,-263r22,0r0,263r-22,0","w":237},"}":{"d":"94,-98v-57,9,-5,117,-42,156v-11,11,-25,10,-39,10v66,-13,-13,-146,59,-166v-69,-11,7,-140,-59,-165v66,-10,52,64,52,122v0,21,11,40,29,43","w":108},"~":{"d":"77,-153v26,0,63,25,87,25v18,0,27,-13,36,-26r17,11v-18,41,-69,43,-107,21v-28,-16,-62,-10,-73,19r-16,-11v14,-21,29,-39,56,-39","w":237},"\u00a1":{"d":"81,-133r8,196r-37,0r6,-196r23,0xm87,-194r0,34r-34,0r0,-34r34,0","w":140},"\u00a2":{"d":"99,-23r0,-145v-59,16,-56,127,0,145xm99,1v-96,-4,-101,-187,0,-194r0,-31r15,0r0,32v18,2,35,11,43,31r0,-27r23,0r0,69r-23,0v-1,-26,-16,-48,-43,-50r0,147v23,-1,37,-19,40,-42r28,0v-2,39,-31,64,-68,66r0,33r-15,0r0,-34"},"\u00a3":{"d":"114,-238v-38,-1,-44,41,-40,84r45,0r0,25r-45,0r0,104r76,0r0,-38r28,0r0,63r-165,0r0,-24r29,0r0,-105r-31,0r0,-25r31,0v-8,-63,19,-108,74,-108v36,0,66,23,65,61r-32,0v0,-23,-12,-37,-35,-37"},"\u2044":{"d":"-39,0r-21,0r159,-262r21,0","w":60},"\u00a5":{"d":"155,0r-111,0r0,-24r40,0r0,-56r-90,0r0,-16r90,0v1,-13,-6,-18,-10,-26r-80,0r0,-16r70,0r-60,-97r-20,0r0,-23r92,0r0,23r-36,0r61,102r61,-102r-34,0r0,-23r88,0r0,23r-20,0r-61,97r69,0r0,16r-79,0v-4,8,-11,13,-10,26r89,0r0,16r-89,0r0,56r40,0r0,24"},"\u0192":{"d":"85,-148r-38,0r4,-22r38,0v5,-22,4,-45,15,-63v15,-27,46,-34,80,-26r-4,22v-47,-13,-59,26,-61,67r42,0r-4,22r-43,0r-27,148v-2,41,-42,75,-89,58r4,-22v33,8,50,-9,56,-39"},"\u00a7":{"d":"30,-207v0,-33,33,-56,66,-55v44,0,74,17,72,65r-32,0v3,-23,-16,-41,-38,-41v-20,0,-37,9,-37,31v13,55,111,32,112,98v0,21,-11,39,-32,45v21,8,31,28,31,50v2,35,-36,57,-71,57v-44,0,-74,-16,-73,-65r33,0v0,26,14,41,40,41v40,0,54,-56,14,-64v-36,-16,-86,-20,-88,-70v0,-19,13,-38,31,-44v-19,-11,-28,-26,-28,-48xm77,-150v-21,7,-24,42,-6,54v16,11,35,16,53,23v26,-12,20,-51,-7,-60v-14,-4,-27,-12,-40,-17"},"\u00a4":{"d":"14,-51r20,-20v-24,-29,-24,-74,0,-103r-20,-19r15,-15r19,19v29,-24,75,-24,104,0r20,-19r14,15r-19,19v24,29,24,74,0,103r19,20r-15,14r-19,-19v-29,24,-75,24,-104,0r-19,19xm101,-185v-35,0,-63,27,-63,62v0,34,27,63,62,63v35,0,63,-27,63,-62v0,-35,-27,-63,-62,-63","w":201},"'":{"d":"34,-158r-18,0r-4,-100r27,0","w":50},"\u201c":{"d":"84,-206r0,35r-38,0v-3,-38,9,-61,17,-87r21,0r-17,52r17,0xm153,-206r0,35r-38,0v-3,-38,9,-61,17,-87r21,0r-17,52r17,0"},"\u00ab":{"d":"134,-21r-30,-78r30,-77r26,0r-29,77r29,78r-26,0xm96,-176r-29,77r29,78r-26,0r-30,-78r30,-77r26,0"},"\u2039":{"d":"51,-21r-29,-78r29,-77r27,0r-30,77r30,78r-27,0","w":100},"\u203a":{"d":"49,-176r30,77r-30,78r-26,0r29,-78r-29,-77r26,0","w":100},"\u2013":{"d":"201,-88r-201,0r0,-23r201,0r0,23"},"\u2020":{"d":"85,-162r-61,0r0,-23r61,0r0,-73r29,0r0,73r61,0r0,23r-61,0r0,162r-29,0r0,-162"},"\u2021":{"d":"114,-64r0,64r-29,0r0,-64r-62,0r0,-23r62,0r0,-86r-62,0r0,-22r62,0r0,-63r29,0r0,63r61,0r0,22r-61,0r0,86r61,0r0,23r-61,0"},"\u00b7":{"d":"32,-150r36,0r0,37r-36,0r0,-37","w":100},"\u00b6":{"d":"13,-193v0,-38,34,-65,74,-65r89,0r0,23r-32,0r0,281r-18,0r0,-281r-30,0r0,281r-19,0r0,-175v-36,-1,-64,-28,-64,-64","w":180},"\u2022":{"d":"165,-193r0,129r-114,0r0,-129r114,0","w":216},"\u201a":{"d":"32,0r0,-36r37,0v3,37,-8,61,-16,87r-21,0r17,-51r-17,0","w":100},"\u201e":{"d":"115,0r0,-36r38,0v3,38,-8,61,-17,87r-21,0r17,-51r-17,0xm46,0r0,-36r38,0v3,38,-8,61,-17,87r-21,0r17,-51r-17,0"},"\u201d":{"d":"115,-222r0,-36r38,0v3,38,-8,61,-17,87r-21,0r17,-51r-17,0xm46,-222r0,-36r38,0v3,38,-8,61,-17,87r-21,0r17,-51r-17,0"},"\u00bb":{"d":"67,-176r29,77r-29,78r-27,0r29,-78r-29,-77r27,0xm133,-99r-29,-77r27,0r29,77r-31,78r-27,0"},"\u2026":{"d":"78,-36r0,36r-36,0r0,-36r36,0xm198,-36r0,36r-36,0r0,-36r36,0xm318,-36r0,36r-36,0r0,-36r36,0","w":360},"\u2030":{"d":"177,-105v-24,0,-26,31,-26,49v0,18,5,41,27,41v20,0,25,-29,25,-44v0,-18,-2,-46,-26,-46xm55,4r-21,0r149,-266r21,0xm60,-244v-34,0,-40,90,1,90v20,0,25,-29,25,-44v0,-17,-3,-46,-26,-46xm59,-134v-32,1,-51,-32,-51,-66v0,-32,18,-62,53,-62v37,0,50,32,50,64v0,33,-15,64,-52,64xm125,-61v0,-31,19,-62,53,-62v38,0,50,31,50,64v0,31,-14,63,-50,63v-38,0,-53,-31,-53,-65xm297,-123v33,0,51,31,51,64v0,31,-15,63,-51,63v-38,0,-53,-32,-53,-65v0,-34,19,-62,53,-62xm297,-105v-24,0,-27,32,-27,49v0,18,5,41,27,41v20,0,26,-29,26,-44v0,-17,-3,-46,-26,-46","w":360},"\u00bf":{"d":"16,-4v0,-57,77,-70,67,-131r31,0v5,41,-18,70,-45,89v-33,23,-25,86,23,86v25,0,40,-22,40,-45r32,0v-2,43,-27,68,-71,68v-41,0,-77,-28,-77,-67xm116,-161r-34,0r0,-33r34,0r0,33","w":180},"`":{"d":"54,-216r-49,-50r27,0r40,50r-18,0","w":100},"\u00b4":{"d":"46,-216r-19,0r41,-50r27,0","w":100},"\u02c6":{"d":"50,-252r-29,36r-24,0r41,-50r24,0r41,50r-23,0","w":100},"\u02dc":{"d":"77,-222v-25,-1,-62,-33,-70,2r-13,0v2,-18,13,-35,32,-35v25,0,61,34,67,-2r14,0v-1,17,-11,35,-30,35","w":100},"\u00af":{"d":"97,-230r-94,0r0,-16r94,0r0,16","w":100},"\u02d8":{"d":"-1,-263r14,0v5,39,70,38,76,0r13,0v-3,30,-24,45,-53,45v-28,0,-48,-17,-50,-45","w":100},"\u02d9":{"d":"66,-254r0,31r-32,0r0,-31r32,0","w":100},"\u00a8":{"d":"31,-254r0,31r-32,0r0,-31r32,0xm99,-223r-32,0r0,-31r32,0r0,31","w":100},"\u02da":{"d":"50,-210v-19,0,-36,-17,-36,-36v0,-19,17,-36,36,-36v19,0,36,17,36,36v0,19,-16,36,-36,36xm50,-270v-13,0,-24,11,-24,24v0,13,11,24,24,24v13,0,24,-11,24,-24v0,-13,-11,-24,-24,-24","w":100},"\u00b8":{"d":"84,45v0,32,-46,36,-74,23r6,-11v17,8,44,9,47,-12v-1,-21,-30,-8,-40,-15v12,-10,11,-33,36,-30r-17,21v20,-6,42,4,42,24","w":100},"\u02dd":{"d":"11,-216r-19,0r41,-50r27,0xm58,-216r-18,0r40,-50r28,0","w":100},"\u02db":{"d":"87,47r0,17v-26,12,-58,-2,-56,-32v1,-16,6,-36,31,-32v-29,16,-5,63,25,47","w":100},"\u02c7":{"d":"50,-229r30,-37r23,0r-41,50r-24,0r-41,-50r24,0","w":100},"\u2014":{"d":"360,-88r-360,0r0,-23r360,0r0,23","w":360},"\u00c6":{"d":"147,-258r192,0r0,75r-28,0r0,-51r-113,0r12,89r48,0r0,-38r27,0r0,99r-27,0r0,-38r-44,0r13,98r88,0r0,-55r27,0r0,79r-183,0r0,-24r37,0r-8,-61r-104,0r-33,61r36,0r0,24r-82,0r0,-24r13,0xm185,-109v-8,-42,-8,-92,-19,-130r-68,130r87,0","w":360},"\u00aa":{"d":"76,-175v-11,31,-65,25,-63,-10v2,-31,31,-31,63,-30v4,-17,-5,-32,-20,-32v-11,0,-24,8,-24,21r-16,0v1,-20,15,-32,39,-32v19,0,37,13,37,34r0,57r16,0r0,11r-32,0r0,-19xm76,-204v-20,0,-46,-5,-47,19v0,12,5,18,17,18v23,0,29,-18,30,-37xm13,-126r0,-15r95,0r0,15r-95,0","w":120},"\u0141":{"d":"206,0r-196,0r0,-24r38,0r0,-97r-38,19r0,-23r38,-19r0,-90r-38,0r0,-24r112,0r0,24r-43,0r0,68r37,-19r0,23r-37,19r0,117r98,0r0,-58r29,0r0,84","w":219,"k":{"T":27,"V":33,"W":27,"y":20,"\u00fd":20,"\u00ff":20,"Y":27,"\u00dd":27,"\u0178":27,"\u2019":33}},"\u00d8":{"d":"142,-19v79,2,105,-112,68,-181r-128,157v15,16,36,24,60,24xm231,-224v65,85,20,228,-90,228v-32,0,-58,-9,-77,-25r-25,31r-13,-11r26,-32v-68,-77,-22,-229,86,-229v31,0,57,8,79,27r25,-31r13,11xm71,-57r129,-157v-16,-17,-36,-24,-60,-24v-88,2,-102,112,-69,181","w":280},"\u0152":{"d":"181,0v-107,19,-162,-47,-162,-132v0,-87,56,-128,161,-127r157,1r0,75r-28,0r0,-51r-100,0r0,92r43,0r0,-38r26,0r0,99r-26,0r0,-37r-43,0r0,94r100,0r0,-54r28,0r0,78r-156,0xm72,-206v-46,76,-15,184,86,184v6,0,14,-1,20,-2r0,-212v-43,-7,-86,-3,-106,30","w":360},"\u00ba":{"d":"60,-247v-42,0,-39,81,0,80v19,0,30,-20,30,-41v0,-19,-7,-39,-30,-39xm60,-155v-28,0,-47,-25,-47,-52v0,-27,20,-51,49,-51v32,0,45,24,45,52v0,27,-16,51,-47,51xm13,-141r94,0r0,15r-94,0r0,-15","w":120},"\u00e6":{"d":"23,-55v0,-50,58,-56,113,-53v4,-33,-3,-64,-35,-64v-26,0,-40,15,-41,40r-30,0v-1,-37,32,-62,69,-62v24,0,51,7,57,34v9,-25,29,-34,55,-34v60,0,70,47,69,107r-117,0v-2,32,11,68,49,68v23,0,39,-21,40,-42r26,0v2,76,-119,83,-133,19v-12,64,-122,60,-122,-13xm163,-108r89,0v1,-31,-5,-63,-43,-63v-35,0,-46,35,-46,63xm136,-87v-34,1,-82,-9,-82,34v0,20,13,34,34,34v36,0,48,-36,48,-68","w":299},"\u0131":{"d":"98,0r-87,0r0,-23r30,0r0,-144r-30,0r0,-21r59,0r0,165r28,0r0,23","w":106},"\u0142":{"d":"95,0r-87,0r0,-23r29,0r0,-116r-29,16r0,-17r29,-16r0,-81r-29,0r0,-21r59,0r0,88r28,-15r0,17r-28,16r0,129r28,0r0,23","w":100},"\u00f8":{"d":"101,-171v-55,-2,-70,74,-47,122r84,-107v-9,-9,-20,-15,-37,-15xm37,-26v-52,-60,-15,-168,66,-168v22,0,38,6,51,16r17,-21r13,9r-18,23v44,57,23,170,-65,170v-22,0,-41,-5,-55,-18r-18,23r-10,-9xm63,-37v38,44,93,-2,93,-60v0,-16,-2,-33,-9,-46"},"\u0153":{"d":"222,-194v56,0,72,48,67,106r-118,0v-3,34,15,69,47,68v25,0,41,-19,42,-43r27,0v7,75,-119,88,-130,21v-6,31,-36,45,-65,45v-112,-1,-99,-197,1,-197v32,0,56,11,65,44v10,-30,32,-44,64,-44xm171,-108r88,0v2,-29,-3,-63,-40,-63v-33,0,-47,35,-48,63xm93,-20v38,0,51,-43,51,-84v0,-29,-12,-67,-49,-67v-36,0,-50,39,-50,77v0,36,14,74,48,74","w":299},"\u00df":{"d":"109,-240v-29,0,-44,27,-44,59r0,158r17,0r0,23r-77,0r0,-23r30,0r0,-163v0,-22,1,-44,19,-59v41,-32,126,-26,125,39v0,33,-20,54,-53,58v66,3,80,91,39,132v-16,15,-39,16,-60,16r0,-23v36,3,51,-20,51,-53v0,-35,-15,-58,-53,-56r0,-27v26,0,45,-17,45,-44v0,-25,-15,-37,-39,-37"},"\u00b9":{"d":"19,-213r0,-20v13,-9,26,-18,37,-29r21,0r0,140r24,0r0,14r-70,0r0,-14r26,0r0,-121v-11,11,-24,21,-38,30","w":119},"\u00ac":{"d":"189,-56r0,-89r-162,0r0,-22r183,0r0,111r-21,0","w":237},"\u00b5":{"d":"102,-19v60,-1,49,-84,49,-148r-32,0r0,-21r61,0r0,165r30,0r0,23r-59,0v-1,-11,2,-27,-1,-36v-7,37,-49,48,-80,31v-11,-5,-6,19,-4,36v2,17,-6,27,-15,27v-29,-9,-1,-64,-12,-92v-4,-42,-1,-88,-2,-133r-30,0r0,-21r59,0r0,115v0,25,4,54,36,54","w":219},"\u2122":{"d":"305,-258r0,147r-23,0r0,-126r-51,126r-14,0r-49,-126r0,126r-23,0r0,-147r37,0r42,104r44,-104r37,0xm119,-258r0,21r-47,0r0,126r-25,0r0,-126r-47,0r0,-21r119,0","w":352},"\u00d0":{"d":"183,-49v53,-62,29,-190,-71,-185r-35,0r0,85r51,0r0,18r-51,0r0,107v45,0,79,6,106,-25xm241,-131v1,82,-48,141,-140,131r-92,0r0,-24r36,0r0,-107r-36,0r0,-18r36,0r0,-85r-36,0r0,-24r100,0v85,-8,131,50,132,127","w":259},"\u00bd":{"d":"81,0r-21,0r159,-262r21,0xm9,-213r0,-20v13,-9,25,-18,36,-29r22,0r0,140r23,0r0,14r-69,0r0,-14r25,0r0,-121v-11,11,-23,21,-37,30xm291,0r-103,0r0,-24v68,-57,79,-75,79,-90v0,-16,-10,-29,-28,-29v-20,0,-29,16,-29,32r-21,0v2,-32,20,-46,50,-46v55,0,64,59,27,84v-19,21,-40,38,-60,58r67,0r0,-25r18,0r0,40","w":300},"\u00b1":{"d":"26,-140r80,0r0,-80r22,0r0,80r80,0r0,22r-80,0r0,81r-22,0r0,-81r-80,0r0,-22xm208,0r-182,0r0,-22r182,0r0,22","w":237},"\u00de":{"d":"175,-131v0,-47,-43,-60,-97,-53r0,104v54,5,97,-3,97,-51xm207,-132v0,45,-39,84,-87,76r-42,0r0,32r37,0r0,24r-105,0r0,-24r37,0r0,-210r-37,0r0,-24r105,0r0,24r-37,0r0,26r46,0v54,-4,83,31,83,76","w":219},"\u00bc":{"d":"249,-41r-72,0r0,-21r66,-93r25,0r0,100r23,0r0,14r-23,0r0,27r21,0r0,14r-66,0r0,-14r26,0r0,-27xm92,0r-21,0r159,-262r21,0xm192,-55r57,0r0,-82xm9,-213r0,-20v13,-9,25,-18,36,-29r22,0r0,140r23,0r0,14r-69,0r0,-14r25,0r0,-121v-11,11,-23,21,-37,30","w":300},"\u00f7":{"d":"26,-140r182,0r0,22r-182,0r0,-22xm99,-37r0,-37r36,0r0,37r-36,0xm99,-184r0,-36r36,0r0,36r-36,0","w":237},"\u00a6":{"d":"106,0r0,-106r22,0r0,106r-22,0xm106,-157r0,-106r22,0r0,106r-22,0","w":237},"\u00b0":{"d":"126,-208v0,30,-24,54,-54,54v-30,0,-54,-24,-54,-54v0,-30,24,-54,54,-54v30,0,54,24,54,54xm112,-208v0,-22,-18,-40,-40,-40v-22,0,-40,18,-40,40v0,22,18,39,40,39v22,0,40,-17,40,-39","w":144},"\u00fe":{"d":"207,-96v0,49,-28,99,-76,99v-29,0,-51,-11,-64,-38r0,72r30,0r0,21r-90,0r0,-21r30,0r0,-273r-29,0r0,-22r59,0r0,107v13,-28,33,-43,65,-43v46,0,75,45,75,98xm67,-96v0,38,18,78,54,77v40,0,56,-39,56,-74v0,-37,-16,-79,-53,-79v-38,0,-57,37,-57,76","w":219},"\u00be":{"d":"92,0r-21,0r159,-262r21,0xm249,-41r-72,0r0,-21r66,-93r25,0r0,100r23,0r0,14r-23,0r0,27r21,0r0,14r-66,0r0,-14r26,0r0,-27xm192,-55r57,0r0,-82xm90,-220v0,-37,-55,-34,-58,-5r0,6r-21,0v0,-28,21,-43,51,-43v56,0,67,73,14,78v20,5,36,15,36,38v0,29,-22,44,-52,44v-32,0,-51,-16,-51,-46r22,0v0,16,9,31,28,31v20,0,32,-12,32,-30v1,-19,-19,-31,-38,-30r0,-14v21,0,37,-8,37,-29","w":300},"\u00b2":{"d":"112,-105r-104,0r0,-25v68,-57,80,-75,80,-90v0,-16,-10,-28,-28,-28v-20,0,-29,16,-29,32r-21,0v2,-32,20,-46,50,-46v54,0,62,58,27,83v-19,21,-41,39,-61,59r68,0r0,-25r18,0r0,40","w":119},"\u00ae":{"d":"147,4v-73,0,-132,-60,-132,-133v0,-74,60,-133,133,-133v73,0,133,60,133,133v0,74,-61,133,-134,133xm33,-129v0,64,52,116,116,116v63,0,114,-54,114,-116v0,-64,-53,-115,-116,-115v-63,0,-114,52,-114,115xm94,-210v58,0,129,-10,128,44v0,30,-20,42,-48,43r45,72r-26,0r-43,-72r-34,0r0,72r-22,0r0,-159xm116,-140v36,-2,83,11,83,-28v0,-37,-49,-22,-83,-25r0,53","w":295},"\u2212":{"d":"210,-118r-183,0r0,-22r183,0r0,22","w":237},"\u00f0":{"d":"100,-19v76,0,76,-142,0,-144v-40,0,-56,39,-56,72v0,33,16,72,56,72xm61,-198r-11,-11r36,-22v-16,-8,-33,-13,-47,-15r0,-23v28,4,52,11,71,23r40,-23r12,11r-37,22v44,33,63,87,63,140v0,58,-30,99,-88,99v-58,0,-87,-45,-87,-98v0,-75,80,-112,131,-73v-8,-23,-24,-40,-43,-53"},"\u00d7":{"d":"26,-53r77,-76r-77,-75r15,-16r78,76r78,-76r15,16r-78,75r78,76r-16,16r-77,-76r-78,76","w":237},"\u00b3":{"d":"61,-248v-16,1,-30,11,-29,29r-22,0v0,-28,22,-43,52,-43v56,0,66,73,13,78v20,5,37,15,37,38v0,29,-22,44,-52,44v-32,0,-51,-16,-51,-46r22,0v0,16,9,31,28,31v20,0,32,-12,32,-30v1,-19,-19,-31,-38,-30r0,-14v21,0,36,-8,36,-29v0,-16,-10,-28,-28,-28","w":119},"\u00a9":{"d":"147,4v-73,0,-132,-60,-132,-133v0,-73,59,-133,133,-133v72,0,132,59,132,132v0,75,-58,134,-133,134xm33,-129v0,64,52,115,115,115v63,0,114,-51,114,-114v0,-64,-51,-116,-115,-116v-63,0,-114,52,-114,115xm198,-102r22,7v-10,31,-42,45,-72,45v-46,0,-75,-33,-75,-78v0,-47,33,-81,80,-81v28,0,61,13,67,43r-25,6v-21,-66,-99,-25,-99,31v0,34,18,63,55,63v24,0,39,-13,47,-36","w":295},"\u00c1":{"d":"95,-109r86,0r-43,-121xm30,-24r91,-234r37,0r90,234r26,0r0,24r-96,0r0,-24r35,0r-22,-62r-106,0r-22,62r35,0r0,24r-94,0r0,-24r26,0xm136,-286r-19,0r41,-50r27,0","w":280},"\u00c2":{"d":"95,-109r86,0r-43,-121xm30,-24r91,-234r37,0r90,234r26,0r0,24r-96,0r0,-24r35,0r-22,-62r-106,0r-22,62r35,0r0,24r-94,0r0,-24r26,0xm140,-322r-29,36r-24,0r41,-50r24,0r41,50r-23,0","w":280},"\u00c4":{"d":"95,-109r86,0r-43,-121xm30,-24r91,-234r37,0r90,234r26,0r0,24r-96,0r0,-24r35,0r-22,-62r-106,0r-22,62r35,0r0,24r-94,0r0,-24r26,0xm121,-320r0,31r-32,0r0,-31r32,0xm189,-289r-32,0r0,-31r32,0r0,31","w":280},"\u00c0":{"d":"95,-109r86,0r-43,-121xm30,-24r91,-234r37,0r90,234r26,0r0,24r-96,0r0,-24r35,0r-22,-62r-106,0r-22,62r35,0r0,24r-94,0r0,-24r26,0xm144,-286r-49,-50r27,0r40,50r-18,0","w":280},"\u00c5":{"d":"95,-109r86,0r-43,-121xm30,-24r91,-234r37,0r90,234r26,0r0,24r-96,0r0,-24r35,0r-22,-62r-106,0r-22,62r35,0r0,24r-94,0r0,-24r26,0xm140,-274v-19,0,-36,-17,-36,-36v0,-19,17,-36,36,-36v19,0,36,17,36,36v0,19,-16,36,-36,36xm140,-334v-13,0,-24,11,-24,24v0,13,11,24,24,24v13,0,24,-11,24,-24v0,-13,-11,-24,-24,-24","w":280},"\u00c3":{"d":"95,-109r86,0r-43,-121xm30,-24r91,-234r37,0r90,234r26,0r0,24r-96,0r0,-24r35,0r-22,-62r-106,0r-22,62r35,0r0,24r-94,0r0,-24r26,0xm167,-292v-25,-1,-62,-33,-70,2r-13,0v2,-18,13,-35,32,-35v25,0,61,34,67,-2r14,0v-1,17,-11,35,-30,35","w":280},"\u00c7":{"d":"21,-129v2,-78,41,-133,116,-133v32,0,61,11,75,42r0,-38r26,0r0,92r-28,0v-3,-42,-26,-71,-70,-71v-63,0,-84,50,-84,105v0,55,18,110,82,110v40,0,66,-26,68,-65r33,0v-2,60,-45,92,-104,91r-13,17v20,-6,41,3,41,24v-1,32,-46,36,-73,23r6,-11v17,8,44,9,47,-12v-1,-21,-30,-8,-40,-15r19,-26v-62,-2,-102,-68,-101,-133","w":259},"\u00c9":{"d":"216,0r-206,0r0,-24r37,0r0,-210r-37,0r0,-24r206,0r0,77r-28,0r0,-53r-110,0r0,91r54,0r0,-39r26,0r0,101r-26,0r0,-38r-54,0r0,95r110,0r0,-56r28,0r0,80xm116,-286r-18,0r40,-50r28,0","w":240},"\u00ca":{"d":"216,0r-206,0r0,-24r37,0r0,-210r-37,0r0,-24r206,0r0,77r-28,0r0,-53r-110,0r0,91r54,0r0,-39r26,0r0,101r-26,0r0,-38r-54,0r0,95r110,0r0,-56r28,0r0,80xm120,-322r-29,36r-23,0r40,-50r24,0r41,50r-23,0","w":240},"\u00cb":{"d":"216,0r-206,0r0,-24r37,0r0,-210r-37,0r0,-24r206,0r0,77r-28,0r0,-53r-110,0r0,91r54,0r0,-39r26,0r0,101r-26,0r0,-38r-54,0r0,95r110,0r0,-56r28,0r0,80xm101,-320r0,31r-32,0r0,-31r32,0xm169,-289r-32,0r0,-31r32,0r0,31","w":240},"\u00c8":{"d":"216,0r-206,0r0,-24r37,0r0,-210r-37,0r0,-24r206,0r0,77r-28,0r0,-53r-110,0r0,91r54,0r0,-39r26,0r0,101r-26,0r0,-38r-54,0r0,95r110,0r0,-56r28,0r0,80xm124,-286r-49,-50r28,0r40,50r-19,0","w":240},"\u00cd":{"d":"8,-234r0,-24r104,0r0,24r-36,0r0,210r36,0r0,24r-104,0r0,-24r36,0r0,-210r-36,0xm56,-286r-19,0r41,-50r27,0","w":119},"\u00ce":{"d":"8,-234r0,-24r104,0r0,24r-36,0r0,210r36,0r0,24r-104,0r0,-24r36,0r0,-210r-36,0xm60,-322r-29,36r-23,0r40,-50r24,0r41,50r-23,0","w":119},"\u00cf":{"d":"8,-234r0,-24r104,0r0,24r-36,0r0,210r36,0r0,24r-104,0r0,-24r36,0r0,-210r-36,0xm41,-320r0,31r-32,0r0,-31r32,0xm109,-289r-32,0r0,-31r32,0r0,31","w":119},"\u00cc":{"d":"8,-234r0,-24r104,0r0,24r-36,0r0,210r36,0r0,24r-104,0r0,-24r36,0r0,-210r-36,0xm64,-286r-49,-50r27,0r40,50r-18,0","w":119},"\u00d1":{"d":"111,0r-101,0r0,-24r37,0r0,-210r-37,0r0,-24r83,0r114,225r0,-201r-36,0r0,-24r99,0r0,24r-35,0r0,234r-43,0r-118,-231r0,207r37,0r0,24xm167,-292v-25,-1,-62,-33,-70,2r-13,0v2,-18,13,-35,32,-35v25,0,61,34,67,-2r14,0v-1,17,-11,35,-30,35","w":280},"\u00d3":{"d":"260,-127v0,75,-47,131,-117,131v-78,0,-122,-55,-122,-129v0,-72,48,-137,120,-137v71,0,119,62,119,135xm142,-19v54,0,84,-56,84,-110v0,-54,-22,-109,-86,-109v-124,2,-107,219,2,219xm136,-286r-19,0r41,-50r27,0","w":280},"\u00d4":{"d":"260,-127v0,75,-47,131,-117,131v-78,0,-122,-55,-122,-129v0,-72,48,-137,120,-137v71,0,119,62,119,135xm142,-19v54,0,84,-56,84,-110v0,-54,-22,-109,-86,-109v-124,2,-107,219,2,219xm140,-322r-29,36r-24,0r41,-50r24,0r41,50r-23,0","w":280},"\u00d6":{"d":"260,-127v0,75,-47,131,-117,131v-78,0,-122,-55,-122,-129v0,-72,48,-137,120,-137v71,0,119,62,119,135xm142,-19v54,0,84,-56,84,-110v0,-54,-22,-109,-86,-109v-124,2,-107,219,2,219xm121,-320r0,31r-32,0r0,-31r32,0xm189,-289r-32,0r0,-31r32,0r0,31","w":280},"\u00d2":{"d":"260,-127v0,75,-47,131,-117,131v-78,0,-122,-55,-122,-129v0,-72,48,-137,120,-137v71,0,119,62,119,135xm142,-19v54,0,84,-56,84,-110v0,-54,-22,-109,-86,-109v-124,2,-107,219,2,219xm144,-286r-49,-50r27,0r40,50r-18,0","w":280},"\u00d5":{"d":"260,-127v0,75,-47,131,-117,131v-78,0,-122,-55,-122,-129v0,-72,48,-137,120,-137v71,0,119,62,119,135xm142,-19v54,0,84,-56,84,-110v0,-54,-22,-109,-86,-109v-124,2,-107,219,2,219xm167,-292v-25,-1,-62,-33,-70,2r-13,0v2,-18,13,-35,32,-35v25,0,61,34,67,-2r14,0v-1,17,-11,35,-30,35","w":280},"\u0160":{"d":"17,-192v0,-72,99,-95,134,-41r0,-25r28,0r0,84r-28,0v-1,-38,-13,-64,-55,-64v-39,0,-64,50,-33,72v42,30,122,27,122,97v0,73,-113,103,-141,36r0,33r-27,0r0,-87r27,0v1,37,19,67,59,67v27,0,49,-19,49,-46v0,-44,-48,-46,-79,-60v-32,-15,-56,-26,-56,-66xm100,-299r30,-37r23,0r-41,50r-24,0r-40,-50r23,0"},"\u00da":{"d":"129,4v-53,2,-92,-45,-92,-104r0,-134r-32,0r0,-24r102,0r0,24r-39,0v5,90,-25,212,62,212v42,0,64,-40,64,-87r0,-125r-38,0r0,-24r98,0r0,24r-32,0r0,132v4,63,-35,104,-93,106xm126,-286r-19,0r41,-50r27,0","w":259},"\u00db":{"d":"129,4v-53,2,-92,-45,-92,-104r0,-134r-32,0r0,-24r102,0r0,24r-39,0v5,90,-25,212,62,212v42,0,64,-40,64,-87r0,-125r-38,0r0,-24r98,0r0,24r-32,0r0,132v4,63,-35,104,-93,106xm130,-322r-30,36r-23,0r41,-50r24,0r41,50r-24,0","w":259},"\u00dc":{"d":"129,4v-53,2,-92,-45,-92,-104r0,-134r-32,0r0,-24r102,0r0,24r-39,0v5,90,-25,212,62,212v42,0,64,-40,64,-87r0,-125r-38,0r0,-24r98,0r0,24r-32,0r0,132v4,63,-35,104,-93,106xm111,-320r0,31r-33,0r0,-31r33,0xm179,-289r-32,0r0,-31r32,0r0,31","w":259},"\u00d9":{"d":"129,4v-53,2,-92,-45,-92,-104r0,-134r-32,0r0,-24r102,0r0,24r-39,0v5,90,-25,212,62,212v42,0,64,-40,64,-87r0,-125r-38,0r0,-24r98,0r0,24r-32,0r0,132v4,63,-35,104,-93,106xm134,-286r-49,-50r27,0r40,50r-18,0","w":259},"\u00dd":{"d":"175,0r-111,0r0,-24r40,0r0,-81r-80,-129r-20,0r0,-24r92,0r0,24r-36,0r61,101r61,-101r-34,0r0,-24r88,0r0,24r-20,0r-81,129r0,81r40,0r0,24xm116,-286r-18,0r40,-50r28,0","w":240,"k":{"v":13,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":27,".":27,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"-":29,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":7,"\u00ed":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,":":20,";":25,"p":13,"q":20}},"\u0178":{"d":"175,0r-111,0r0,-24r40,0r0,-81r-80,-129r-20,0r0,-24r92,0r0,24r-36,0r61,101r61,-101r-34,0r0,-24r88,0r0,24r-20,0r-81,129r0,81r40,0r0,24xm101,-320r0,31r-32,0r0,-31r32,0xm169,-289r-32,0r0,-31r32,0r0,31","w":240,"k":{"v":13,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":27,".":27,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"-":29,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":7,"\u00ed":7,"\u00ee":7,"\u00ef":7,"\u00ec":7,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,":":20,";":25,"p":13,"q":20}},"\u017d":{"d":"205,0r-191,0r0,-33r152,-200r-121,0r0,52r-29,0r0,-77r186,0r0,30r-154,203r129,0r0,-54r28,0r0,79xm110,-299r30,-37r23,0r-41,50r-24,0r-40,-50r23,0","w":219},"\u00e1":{"d":"95,-194v36,0,70,24,70,63r0,108r30,0r0,23r-57,0r0,-37v-19,59,-124,53,-122,-18v2,-60,60,-60,122,-58v4,-34,-11,-57,-40,-59v-23,-1,-45,12,-45,37r-30,0v0,-37,29,-59,72,-59xm47,-54v0,21,12,35,33,35v43,0,57,-35,58,-72v-39,-3,-91,-10,-91,37xm96,-216r-19,0r41,-50r27,0"},"\u00e2":{"d":"95,-194v36,0,70,24,70,63r0,108r30,0r0,23r-57,0r0,-37v-19,59,-124,53,-122,-18v2,-60,60,-60,122,-58v4,-34,-11,-57,-40,-59v-23,-1,-45,12,-45,37r-30,0v0,-37,29,-59,72,-59xm47,-54v0,21,12,35,33,35v43,0,57,-35,58,-72v-39,-3,-91,-10,-91,37xm100,-252r-29,36r-23,0r40,-50r24,0r41,50r-23,0"},"\u00e4":{"d":"95,-194v36,0,70,24,70,63r0,108r30,0r0,23r-57,0r0,-37v-19,59,-124,53,-122,-18v2,-60,60,-60,122,-58v4,-34,-11,-57,-40,-59v-23,-1,-45,12,-45,37r-30,0v0,-37,29,-59,72,-59xm47,-54v0,21,12,35,33,35v43,0,57,-35,58,-72v-39,-3,-91,-10,-91,37xm81,-254r0,31r-32,0r0,-31r32,0xm149,-223r-32,0r0,-31r32,0r0,31"},"\u00e0":{"d":"95,-194v36,0,70,24,70,63r0,108r30,0r0,23r-57,0r0,-37v-19,59,-124,53,-122,-18v2,-60,60,-60,122,-58v4,-34,-11,-57,-40,-59v-23,-1,-45,12,-45,37r-30,0v0,-37,29,-59,72,-59xm47,-54v0,21,12,35,33,35v43,0,57,-35,58,-72v-39,-3,-91,-10,-91,37xm104,-216r-49,-50r27,0r40,50r-18,0"},"\u00e5":{"d":"95,-194v36,0,70,24,70,63r0,108r30,0r0,23r-57,0r0,-37v-19,59,-124,53,-122,-18v2,-60,60,-60,122,-58v4,-34,-11,-57,-40,-59v-23,-1,-45,12,-45,37r-30,0v0,-37,29,-59,72,-59xm47,-54v0,21,12,35,33,35v43,0,57,-35,58,-72v-39,-3,-91,-10,-91,37xm100,-210v-19,0,-36,-17,-36,-36v0,-19,17,-36,36,-36v19,0,36,17,36,36v0,19,-16,36,-36,36xm100,-270v-13,0,-24,11,-24,24v0,13,11,24,24,24v13,0,24,-11,24,-24v0,-13,-11,-24,-24,-24"},"\u00e3":{"d":"95,-194v36,0,70,24,70,63r0,108r30,0r0,23r-57,0r0,-37v-19,59,-124,53,-122,-18v2,-60,60,-60,122,-58v4,-34,-11,-57,-40,-59v-23,-1,-45,12,-45,37r-30,0v0,-37,29,-59,72,-59xm47,-54v0,21,12,35,33,35v43,0,57,-35,58,-72v-39,-3,-91,-10,-91,37xm127,-222v-25,-1,-62,-33,-70,2r-13,0v2,-18,13,-35,32,-35v25,1,62,35,67,-2r14,0v-1,17,-11,35,-30,35"},"\u00e7":{"d":"84,1v-100,-11,-91,-195,10,-195v24,0,40,8,53,29r0,-23r23,0r0,69r-23,0v0,-26,-19,-51,-46,-51v-80,2,-71,148,0,149v24,0,41,-20,44,-43r27,0v-1,42,-35,67,-75,67r-15,18v20,-6,41,3,41,24v-2,33,-46,35,-73,23r6,-11v17,8,44,9,47,-12v-1,-21,-30,-8,-40,-15","w":180},"\u00e9":{"d":"105,-194v56,2,86,45,82,106r-138,0v-1,35,23,69,61,69v23,0,44,-18,47,-40r28,0v-7,41,-39,62,-80,62v-61,0,-87,-41,-87,-97v0,-54,36,-101,87,-100xm50,-110r106,0v0,-30,-17,-62,-51,-62v-35,0,-53,31,-55,62xm96,-216r-19,0r41,-50r27,0"},"\u00ea":{"d":"105,-194v56,2,86,45,82,106r-138,0v-1,35,23,69,61,69v23,0,44,-18,47,-40r28,0v-7,41,-39,62,-80,62v-61,0,-87,-41,-87,-97v0,-54,36,-101,87,-100xm50,-110r106,0v0,-30,-17,-62,-51,-62v-35,0,-53,31,-55,62xm100,-252r-29,36r-23,0r40,-50r24,0r41,50r-23,0"},"\u00eb":{"d":"105,-194v56,2,86,45,82,106r-138,0v-1,35,23,69,61,69v23,0,44,-18,47,-40r28,0v-7,41,-39,62,-80,62v-61,0,-87,-41,-87,-97v0,-54,36,-101,87,-100xm50,-110r106,0v0,-30,-17,-62,-51,-62v-35,0,-53,31,-55,62xm81,-254r0,31r-32,0r0,-31r32,0xm149,-223r-32,0r0,-31r32,0r0,31"},"\u00e8":{"d":"105,-194v56,2,86,45,82,106r-138,0v-1,35,23,69,61,69v23,0,44,-18,47,-40r28,0v-7,41,-39,62,-80,62v-61,0,-87,-41,-87,-97v0,-54,36,-101,87,-100xm50,-110r106,0v0,-30,-17,-62,-51,-62v-35,0,-53,31,-55,62xm104,-216r-49,-50r27,0r40,50r-18,0"},"\u00ed":{"d":"98,0r-87,0r0,-23r30,0r0,-144r-30,0r0,-21r59,0r0,165r28,0r0,23xm49,-216r-18,0r40,-50r28,0","w":106},"\u00ee":{"d":"98,0r-87,0r0,-23r30,0r0,-144r-30,0r0,-21r59,0r0,165r28,0r0,23xm53,-252r-29,36r-23,0r40,-50r24,0r41,50r-23,0","w":106},"\u00ef":{"d":"98,0r-87,0r0,-23r30,0r0,-144r-30,0r0,-21r59,0r0,165r28,0r0,23xm34,-254r0,31r-32,0r0,-31r32,0xm102,-223r-32,0r0,-31r32,0r0,31","w":106},"\u00ec":{"d":"98,0r-87,0r0,-23r30,0r0,-144r-30,0r0,-21r59,0r0,165r28,0r0,23xm57,-216r-49,-50r28,0r40,50r-19,0","w":106},"\u00f1":{"d":"118,-171v-64,0,-47,84,-49,148r30,0r0,23r-90,0r0,-23r31,0r0,-144r-30,0r0,-21r59,0r0,34v17,-62,116,-51,116,24r0,107r29,0r0,23r-88,0r0,-23r30,0v-7,-57,23,-148,-38,-148xm137,-222v-25,0,-61,-33,-70,2r-13,0v2,-18,13,-35,32,-35v25,1,62,35,67,-2r14,0v-1,17,-11,35,-30,35","w":219},"\u00f3":{"d":"101,-171v-38,0,-57,38,-57,75v0,38,21,77,57,77v35,0,55,-39,55,-78v0,-35,-12,-74,-55,-74xm101,3v-52,0,-88,-48,-88,-99v0,-53,39,-98,90,-98v59,0,85,46,85,99v0,53,-29,98,-87,98xm96,-216r-19,0r41,-50r27,0"},"\u00f4":{"d":"101,-171v-38,0,-57,38,-57,75v0,38,21,77,57,77v35,0,55,-39,55,-78v0,-35,-12,-74,-55,-74xm101,3v-52,0,-88,-48,-88,-99v0,-53,39,-98,90,-98v59,0,85,46,85,99v0,53,-29,98,-87,98xm100,-252r-29,36r-23,0r40,-50r24,0r41,50r-23,0"},"\u00f6":{"d":"101,-171v-38,0,-57,38,-57,75v0,38,21,77,57,77v35,0,55,-39,55,-78v0,-35,-12,-74,-55,-74xm101,3v-52,0,-88,-48,-88,-99v0,-53,39,-98,90,-98v59,0,85,46,85,99v0,53,-29,98,-87,98xm81,-254r0,31r-32,0r0,-31r32,0xm149,-223r-32,0r0,-31r32,0r0,31"},"\u00f2":{"d":"101,-171v-38,0,-57,38,-57,75v0,38,21,77,57,77v35,0,55,-39,55,-78v0,-35,-12,-74,-55,-74xm101,3v-52,0,-88,-48,-88,-99v0,-53,39,-98,90,-98v59,0,85,46,85,99v0,53,-29,98,-87,98xm104,-216r-49,-50r27,0r40,50r-18,0"},"\u00f5":{"d":"101,-171v-38,0,-57,38,-57,75v0,38,21,77,57,77v35,0,55,-39,55,-78v0,-35,-12,-74,-55,-74xm101,3v-52,0,-88,-48,-88,-99v0,-53,39,-98,90,-98v59,0,85,46,85,99v0,53,-29,98,-87,98xm127,-222v-25,-1,-62,-33,-70,2r-13,0v2,-18,13,-35,32,-35v25,1,62,35,67,-2r14,0v-1,17,-11,35,-30,35"},"\u0161":{"d":"21,-137v0,-58,85,-78,114,-32r0,-19r23,0r0,61r-23,0v2,-26,-16,-43,-45,-45v-28,-2,-53,29,-32,51v38,19,100,6,102,64v2,64,-96,83,-119,27r0,30r-22,0r0,-65r22,0v-4,46,89,68,89,11v0,-27,-29,-28,-49,-31v-32,-5,-60,-14,-60,-52xm90,-229r30,-37r23,0r-41,50r-24,0r-41,-50r23,0","w":180},"\u00fa":{"d":"102,-19v60,-1,49,-84,49,-148r-32,0r0,-21r61,0r0,165r30,0r0,23r-59,0r0,-36v-9,28,-25,39,-55,39v-40,0,-59,-27,-59,-76r0,-94r-30,0r0,-21r59,0r0,115v0,25,4,54,36,54xm106,-216r-19,0r41,-50r28,0","w":219},"\u00fb":{"d":"102,-19v60,-1,49,-84,49,-148r-32,0r0,-21r61,0r0,165r30,0r0,23r-59,0r0,-36v-9,28,-25,39,-55,39v-40,0,-59,-27,-59,-76r0,-94r-30,0r0,-21r59,0r0,115v0,25,4,54,36,54xm110,-252r-29,36r-23,0r40,-50r24,0r41,50r-23,0","w":219},"\u00fc":{"d":"102,-19v60,-1,49,-84,49,-148r-32,0r0,-21r61,0r0,165r30,0r0,23r-59,0r0,-36v-9,28,-25,39,-55,39v-40,0,-59,-27,-59,-76r0,-94r-30,0r0,-21r59,0r0,115v0,25,4,54,36,54xm91,-254r0,31r-32,0r0,-31r32,0xm159,-223r-32,0r0,-31r32,0r0,31","w":219},"\u00f9":{"d":"102,-19v60,-1,49,-84,49,-148r-32,0r0,-21r61,0r0,165r30,0r0,23r-59,0r0,-36v-9,28,-25,39,-55,39v-40,0,-59,-27,-59,-76r0,-94r-30,0r0,-21r59,0r0,115v0,25,4,54,36,54xm114,-216r-49,-50r28,0r39,50r-18,0","w":219},"\u00fd":{"d":"6,-188r80,0r0,21r-29,0r46,132r45,-132r-30,0r0,-21r77,0r0,21r-16,0r-74,197v-7,25,-38,39,-70,30r0,-24v30,13,47,-13,52,-36r-63,-167r-18,0r0,-21xm96,-216r-19,0r41,-50r27,0","k":{",":27,".":27}},"\u00ff":{"d":"6,-188r80,0r0,21r-29,0r46,132r45,-132r-30,0r0,-21r77,0r0,21r-16,0r-74,197v-7,25,-38,39,-70,30r0,-24v30,13,47,-13,52,-36r-63,-167r-18,0r0,-21xm81,-254r0,31r-32,0r0,-31r32,0xm149,-223r-32,0r0,-31r32,0r0,31","k":{",":27,".":27}},"\u017e":{"d":"162,0r-144,0r0,-24r109,-143r-81,0r0,39r-26,0r0,-60r141,0r0,24r-110,141r86,0r0,-41r25,0r0,64xm90,-229r30,-37r23,0r-41,50r-24,0r-41,-50r23,0","w":180},"\u2206":{"d":"11,0r0,-19r90,-245r33,0r88,245r0,19r-211,0xm40,-23r152,0r-76,-207","w":233},"\u2126":{"d":"17,-23v17,-1,39,2,54,-1v-26,-23,-49,-64,-49,-115v0,-72,46,-122,108,-122v65,0,106,58,106,121v1,54,-27,94,-50,117r54,0r0,23r-86,0r0,-17v63,-29,82,-220,-24,-220v-48,0,-79,45,-79,103v0,55,26,99,53,117r0,17r-87,0r0,-23","w":258},"\u03bc":{"d":"102,-19v60,-1,49,-84,49,-148r-32,0r0,-21r61,0r0,165r30,0r0,23r-59,0v-1,-11,2,-27,-1,-36v-7,37,-49,48,-80,31v-11,-5,-6,19,-4,36v2,17,-6,27,-15,27v-29,-9,-1,-64,-12,-92v-4,-42,-1,-88,-2,-133r-30,0r0,-21r59,0r0,115v0,25,4,54,36,54","w":219},"\u03c0":{"d":"197,-167r-29,0v1,50,-4,130,5,167r-27,0v-11,-32,-4,-120,-6,-167r-65,0v-2,47,-12,132,-26,167r-27,0v14,-40,24,-118,26,-167v-22,0,-32,2,-40,5r-5,-19v40,-20,136,-8,196,-11","w":206},"\u20ac":{"d":"161,-189v-2,-31,-18,-50,-48,-50v-30,0,-45,33,-50,75r94,0r-7,19r-89,0r0,29r81,0r-6,18r-73,0v4,42,18,78,51,78v28,0,41,-21,44,-43r31,0v-6,47,-35,68,-75,68v-46,0,-82,-50,-84,-103r-29,0r7,-18r21,0v-1,-9,-1,-19,0,-29r-28,0r7,-19r23,0v5,-51,34,-99,81,-98v25,0,42,12,49,27r0,-25r27,0r0,71r-27,0"},"\u2113":{"d":"154,-55r13,12v-16,31,-39,46,-67,46v-44,-1,-60,-33,-60,-73v-6,5,-14,11,-21,17r-9,-16v10,-9,20,-17,29,-26r0,-100v0,-67,28,-88,56,-88v31,0,45,26,45,59v0,46,-29,91,-74,135v-3,42,15,69,39,69v22,0,40,-19,49,-35xm95,-262v-35,0,-29,97,-29,145v31,-35,55,-71,55,-107v0,-23,-7,-38,-26,-38","w":175},"\u212e":{"d":"67,-51v36,64,148,61,189,3r22,0v-26,31,-69,52,-117,52v-82,0,-148,-60,-148,-133v0,-74,66,-133,148,-133v83,1,150,59,148,137r-242,1r0,73xm255,-208v-37,-62,-153,-62,-188,2v1,24,-3,54,2,74r184,0v6,-20,0,-52,2,-76","w":321},"\u2202":{"d":"37,-247r-10,-21v69,-49,152,-10,152,118v0,87,-32,153,-94,153v-47,0,-70,-43,-70,-85v0,-58,36,-94,77,-94v34,0,52,24,60,34v8,-94,-54,-154,-115,-105xm43,-82v0,35,17,61,45,61v34,0,55,-45,60,-93v-5,-16,-24,-39,-51,-39v-30,0,-54,32,-54,71","w":197},"\u220f":{"d":"243,-231r-39,0r0,267r-28,0r0,-267r-100,0r0,267r-27,0r0,-267r-40,0r0,-26r234,0r0,26","w":252},"\u2211":{"d":"192,36r-184,0r0,-19r97,-128r-92,-126r0,-20r173,0r0,24v-44,2,-96,-4,-135,2r86,117r-93,123r148,0r0,27","w":199},"\u2219":{"d":"32,-150r36,0r0,37r-36,0r0,-37","w":100},"\u221a":{"d":"207,-306r-80,361r-25,0r-57,-171r-27,11r-6,-17r50,-20r46,136v2,9,5,20,6,27r72,-327r21,0","w":207},"\u221e":{"d":"264,-107v0,36,-27,58,-56,58v-23,0,-42,-13,-67,-42v-19,22,-38,42,-68,42v-30,0,-55,-24,-55,-56v0,-33,24,-58,57,-58v27,0,49,20,68,43v19,-21,37,-43,68,-43v31,0,53,23,53,56xm37,-105v0,21,15,39,39,39v23,0,40,-23,55,-39v-16,-20,-32,-41,-58,-41v-23,0,-36,19,-36,41xm208,-146v-24,0,-43,27,-56,40v24,27,38,40,57,40v23,0,36,-20,36,-39v0,-26,-16,-41,-37,-41","w":282},"\u222b":{"d":"50,-222v0,-64,22,-104,74,-87r-4,20v-36,-12,-44,20,-44,70v0,58,5,125,5,185v0,70,-22,105,-76,87r5,-20v38,10,45,-13,45,-67v0,-61,-5,-129,-5,-188","w":130},"\u2248":{"d":"66,-159v45,0,82,58,109,1r11,10v-10,19,-24,35,-46,35v-24,0,-49,-28,-76,-28v-17,0,-27,13,-36,27r-12,-10v11,-21,29,-35,50,-35xm66,-96v45,0,82,56,109,0r11,10v-10,19,-24,35,-46,35v-24,0,-50,-28,-76,-28v-17,0,-27,13,-36,27r-12,-10v11,-22,29,-34,50,-34","w":203},"\u2260":{"d":"144,-185r-16,36r57,0r0,18r-64,0r-24,53r88,0r0,18r-95,0r-20,43r-14,-7r16,-36r-54,0r0,-18r62,0r24,-53r-86,0r0,-18r93,0r19,-42","w":203},"\u2264":{"d":"184,-36r-163,-82r0,-19r163,-82r0,22r-144,70r144,69r0,22xm185,-2r-167,0r0,-19r167,0r0,19","w":203},"\u2265":{"d":"21,-219r163,82r0,19r-163,82r0,-22r144,-70r-144,-69r0,-22xm184,-2r-165,0r0,-19r165,0r0,19","w":203},"\u25ca":{"d":"188,-129r-74,146r-23,0r-71,-146r73,-144r23,0xm162,-128r-51,-102v-4,-6,-5,-16,-8,-19v-16,43,-39,80,-58,120r51,103v4,8,5,16,8,19v16,-43,39,-80,58,-121","w":207},"\u00a0":{"w":100},"\u00ad":{"d":"18,-86r0,-27r85,0r0,27r-85,0","w":119},"\u02c9":{"d":"97,-230r-94,0r0,-16r94,0r0,16","w":100},"\u03a9":{"d":"17,-23v17,-1,39,2,54,-1v-26,-23,-49,-64,-49,-115v0,-72,46,-122,108,-122v65,0,106,58,106,121v1,54,-27,94,-50,117r54,0r0,23r-86,0r0,-17v63,-29,82,-220,-24,-220v-48,0,-79,45,-79,103v0,55,26,99,53,117r0,17r-87,0r0,-23","w":258},"\u2215":{"d":"-39,0r-21,0r159,-262r21,0","w":60}}});Cufon.registerFont({"w":200,"face":{"font-family":"Glypha LT Std","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 6 7 3 4 5 5 2 2 4","ascent":"258","descent":"-102","x-height":"4","bbox":"-53 -351 360 76.1086","underline-thickness":"19.44","underline-position":"-15.84","stemv":"48","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":100},"!":{"d":"42,-71r-10,-187r57,0r-10,187r-37,0xm36,0r0,-48r49,0r0,48r-49,0","w":119},"\"":{"d":"118,-154r-26,0r-9,-104r45,0xm49,-154r-27,0r-9,-104r45,0","w":144},"#":{"d":"141,-86r-12,86r-28,0r12,-86r-37,0r-12,86r-27,0r12,-86r-44,0r0,-27r48,0r6,-37r-43,0r0,-27r47,0r11,-81r27,0r-11,81r37,0r12,-81r27,0r-12,81r41,0r0,27r-45,0r-5,37r40,0r0,27r-44,0xm123,-150r-37,0r-5,37r36,0"},"$":{"d":"185,-173r-42,0v-1,-31,-11,-50,-30,-55r0,76v37,11,77,31,77,80v0,49,-31,75,-77,76r0,31r-27,0r0,-33v-15,-4,-29,-12,-36,-27r0,25r-40,0r0,-90r42,0v0,26,8,54,34,60r0,-82v-38,-14,-76,-28,-76,-76v0,-46,29,-75,76,-75r0,-31r27,0r0,35v10,3,21,8,32,22r0,-21r40,0r0,85xm86,-229v-15,2,-27,17,-27,33v0,19,12,28,27,34r0,-67xm113,-102r0,71v15,-4,27,-16,27,-35v0,-21,-11,-30,-27,-36"},"%":{"d":"215,-104v-19,0,-20,28,-20,42v0,14,1,43,21,43v19,0,20,-27,20,-41v0,-15,0,-44,-21,-44xm93,4r-30,0r143,-266r30,0xm84,-239v-19,0,-20,29,-20,42v0,13,2,44,20,44v19,0,21,-30,21,-44v0,-14,-2,-42,-21,-42xm214,-127v73,-1,69,129,3,131v-74,1,-67,-134,-3,-131xm33,-194v0,-32,16,-68,49,-68v39,0,53,30,53,65v0,32,-12,67,-50,67v-36,0,-52,-32,-52,-64","w":299},"&":{"d":"104,-168v14,-8,31,-23,31,-40v0,-17,-9,-29,-27,-29v-41,2,-29,53,-4,69xm175,-208v0,34,-23,54,-45,69r52,57v8,-13,12,-28,13,-43r-22,0r0,-30r87,0r0,30r-28,0v-2,25,-10,50,-24,71r19,22r37,0r0,32r-67,0v-7,-5,-14,-24,-22,-18v-57,44,-158,22,-158,-56v0,-36,21,-58,51,-74v-18,-13,-31,-35,-31,-59v0,-40,35,-59,71,-59v37,0,67,18,67,58xm95,-117v-41,19,-40,92,16,90v14,0,34,-9,43,-20","w":280},"\u2019":{"d":"26,-262r49,0v3,41,-6,69,-17,96r-33,0r19,-49r-18,0r0,-47","w":100,"k":{"\u2019":6,"s":13,"\u0161":13}},"(":{"d":"69,-269r36,0v-60,98,-58,225,0,322r-36,0v-29,-50,-51,-106,-51,-165v0,-56,24,-109,51,-157","w":119},")":{"d":"98,-112v0,61,-22,114,-52,165r-36,0v60,-97,59,-226,0,-322r36,0v28,46,52,102,52,157","w":119},"*":{"d":"63,-188r-44,-6r11,-39r39,23r-6,-48r35,0r-7,49r40,-22r11,37r-44,6r31,35r-29,23r-20,-43r-20,43r-30,-23","w":159},"+":{"d":"27,-145r75,0r0,-75r33,0r0,75r75,0r0,33r-75,0r0,75r-33,0r0,-75r-75,0r0,-33","w":237},",":{"d":"26,-48r49,0v3,41,-6,69,-17,96r-33,0r19,-48r-18,0r0,-48","w":100},"-":{"d":"23,-84r0,-36r88,0r0,36r-88,0","w":133},".":{"d":"75,0r-49,0r0,-48r49,0r0,48","w":100},"\/":{"d":"38,0r-33,0r95,-258r33,0","w":140},"0":{"d":"101,-29v51,-10,37,-88,35,-144v-1,-23,-8,-60,-36,-57v-42,5,-38,65,-38,108v0,41,-1,89,39,93xm187,-127v-1,64,-20,129,-88,131v-64,2,-86,-71,-86,-137v0,-58,16,-129,88,-129v68,0,87,70,86,135"},"1":{"d":"31,-168r0,-44v21,-14,41,-29,60,-46r47,0r0,226r33,0r0,32r-118,0r0,-32r35,0r0,-178v-17,15,-38,28,-57,42"},"2":{"d":"180,-192v-8,75,-78,114,-120,160r83,0r0,-38r40,0r0,70r-170,0r0,-47r93,-96v25,-22,40,-86,-8,-86v-26,0,-36,24,-36,47r-49,0v2,-52,33,-80,85,-80v43,0,86,28,82,70"},"3":{"d":"185,-70v2,48,-37,75,-86,74v-49,0,-86,-25,-86,-77r50,0v1,24,11,43,38,43v20,0,34,-21,34,-42v0,-28,-19,-52,-53,-44r0,-32v30,1,50,-11,50,-43v0,-20,-11,-39,-33,-39v-25,0,-35,22,-35,44r-49,0v-4,-98,162,-103,166,-9v1,35,-20,56,-52,63v32,1,55,26,56,62"},"4":{"d":"114,-214r-71,117r71,0r0,-117xm114,-66r-106,0r0,-45r95,-147r59,0r0,161r28,0r0,31r-28,0r0,35r26,0r0,31r-108,0r0,-31r34,0r0,-35"},"5":{"d":"18,-69r50,0v0,21,10,39,33,39v29,0,38,-24,38,-49v0,-24,-6,-55,-37,-55v-19,0,-31,12,-34,30r-47,0r3,-154r152,0r0,35r-107,0r-1,80v38,-56,120,-10,120,57v0,55,-32,90,-88,90v-46,0,-82,-25,-82,-73"},"6":{"d":"188,-83v0,48,-36,87,-84,87v-75,0,-90,-65,-90,-127v0,-66,20,-139,99,-139v41,0,71,25,72,67r-47,0v0,-17,-10,-36,-29,-36v-44,0,-48,68,-48,101v10,-21,28,-37,52,-37v51,0,75,36,75,84xm105,-26v47,-2,52,-106,-1,-108v-53,3,-56,106,1,108"},"7":{"d":"56,-179r-42,0r0,-79r175,0v4,66,-29,97,-47,147r-40,111r-53,0r46,-122r46,-101r-85,0r0,44"},"8":{"d":"135,-134v34,5,50,33,50,65v0,51,-36,73,-84,73v-50,0,-86,-21,-86,-75v0,-32,20,-58,53,-63v-31,-7,-50,-27,-50,-59v0,-49,37,-69,82,-69v46,0,83,20,83,70v0,29,-20,53,-48,58xm100,-232v-24,0,-36,17,-36,40v0,23,11,42,36,42v26,0,36,-19,36,-43v0,-22,-13,-39,-36,-39xm101,-27v24,0,38,-23,38,-48v0,-23,-13,-45,-39,-45v-28,0,-38,23,-38,48v0,24,13,45,39,45"},"9":{"d":"186,-134v0,67,-29,138,-99,138v-41,0,-70,-24,-72,-66r48,0v1,19,9,36,30,36v43,0,45,-61,47,-102v-10,24,-29,38,-55,38v-44,0,-72,-41,-72,-85v0,-49,35,-89,84,-87v67,3,89,58,89,128xm98,-231v-27,-1,-38,27,-38,55v0,24,8,53,37,53v55,0,52,-107,1,-108"},":":{"d":"84,-48r0,48r-49,0r0,-48r49,0xm35,-134r0,-47r49,0r0,47r-49,0","w":119},";":{"d":"36,0r0,-48r49,0v3,41,-6,69,-17,96r-33,0r20,-48r-19,0xm36,-134r0,-47r49,0r0,47r-49,0","w":119},"<":{"d":"214,-57r0,33r-194,-89r0,-32r194,-89r0,33r-162,72","w":237},"=":{"d":"27,-174r183,0r0,34r-183,0r0,-34xm27,-117r183,0r0,33r-183,0r0,-33","w":237},">":{"d":"20,-57r162,-72r-162,-72r0,-33r194,89r0,32r-194,89r0,-33","w":237},"?":{"d":"89,-230v-20,0,-32,15,-31,37r-48,0v1,-44,33,-69,79,-69v83,0,99,103,40,141v-20,20,-24,23,-24,54r-48,0v-12,-61,60,-77,60,-128v0,-18,-7,-35,-28,-35xm105,-48r0,48r-48,0r0,-48r48,0","w":180},"@":{"d":"168,-241v-61,0,-115,51,-115,113v0,109,144,148,211,74r7,16v-76,88,-240,29,-240,-88v0,-75,63,-136,137,-136v63,0,118,43,118,108v0,48,-32,95,-77,96v-16,0,-23,-7,-25,-22v-27,41,-97,15,-91,-36v-5,-53,77,-120,113,-63r4,-11r25,0r-29,101v0,7,3,11,10,11v30,-4,50,-40,50,-72v0,-57,-43,-91,-98,-91xm148,-84v33,-1,46,-37,46,-69v0,-14,-8,-24,-23,-24v-30,0,-50,36,-50,62v0,17,9,31,27,31","w":316},"A":{"d":"101,-111r71,0r-36,-105xm104,0r-98,0r0,-32r20,0r85,-226r59,0r84,226r20,0r0,32r-104,0r0,-32r31,0r-16,-47r-96,0r-17,47r32,0r0,32","w":280},"B":{"d":"222,-68v0,47,-48,68,-100,68r-114,0r0,-33r30,0r0,-192r-30,0r0,-33r130,0v42,-5,79,26,79,66v0,33,-18,54,-51,59v35,1,56,32,56,65xm167,-188v0,-39,-39,-40,-80,-37r0,77v43,3,80,-1,80,-40xm173,-75v0,-39,-41,-45,-86,-41r0,84v45,3,86,-2,86,-43","w":240},"C":{"d":"241,-165r-43,0v-2,-37,-20,-64,-60,-64v-54,0,-68,54,-68,99v0,43,12,101,66,101v34,0,58,-23,58,-57r50,0v-1,62,-50,90,-107,90v-84,0,-120,-58,-120,-136v0,-52,20,-86,36,-102v32,-33,114,-41,148,0r0,-24r40,0r0,93","w":259},"D":{"d":"188,-73v29,-67,2,-160,-74,-152r-25,0r0,193v48,0,79,4,99,-41xm123,-258v72,-6,126,48,126,127v0,37,-7,76,-36,102v-50,45,-123,24,-204,29r0,-32r30,0r0,-193r-30,0r0,-33r114,0","w":266},"E":{"d":"222,0r-213,0r0,-32r30,0r0,-193r-30,0r0,-33r213,0r0,79r-40,0r0,-46r-94,0r0,78r38,0r0,-33r34,0r0,98r-34,0r0,-32r-38,0r0,82r94,0r0,-50r40,0r0,82","w":240},"F":{"d":"126,0r-116,0r0,-32r30,0r0,-193r-30,0r0,-33r205,0r0,83r-39,0r0,-50r-87,0r0,83r34,0r0,-33r34,0r0,100r-34,0r0,-34r-34,0r0,77r37,0r0,32","w":226,"k":{"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":33,".":33}},"G":{"d":"16,-126v3,-77,28,-136,110,-136v31,0,57,7,76,32r0,-28r41,0r0,92r-44,0v-1,-37,-24,-60,-61,-60v-92,2,-90,195,2,195v39,0,62,-29,62,-66r-34,0r0,-32r104,0r0,32r-26,0r0,97r-42,0r0,-30v-15,24,-45,34,-73,34v-72,0,-117,-66,-115,-130","w":280},"H":{"d":"119,0r-110,0r0,-32r29,0r0,-193r-29,0r0,-33r110,0r0,33r-32,0r0,78r105,0r0,-78r-31,0r0,-33r110,0r0,33r-30,0r0,193r30,0r0,32r-110,0r0,-32r31,0r0,-82r-105,0r0,82r32,0r0,32","w":280},"I":{"d":"39,-225r-32,0r0,-33r113,0r0,33r-32,0r0,193r32,0r0,32r-113,0r0,-32r32,0r0,-193","w":126},"J":{"d":"157,-86v9,57,-25,90,-75,90v-48,0,-79,-33,-74,-87r50,0v1,21,-3,54,27,54v26,0,23,-35,23,-52r0,-144r-35,0r0,-33r108,0r0,33r-24,0r0,139","w":186},"K":{"d":"116,0r-108,0r0,-32r29,0r0,-193r-29,0r0,-33r108,0r0,33r-29,0r0,86r75,-86r-24,0r0,-33r100,0r0,33r-20,0r-78,86r83,107r20,0r0,32r-103,0r0,-32r26,0r-79,-102r0,102r29,0r0,32","w":246},"L":{"d":"208,0r-199,0r0,-32r30,0r0,-193r-30,0r0,-33r118,0r0,33r-39,0r0,193r77,0r0,-59r43,0r0,91","w":219,"k":{"T":27,"V":33,"W":27,"y":20,"\u00fd":20,"\u00ff":20,"Y":27,"\u00dd":27,"\u0178":27,"\u2019":33}},"M":{"d":"331,-32r0,32r-103,0r0,-32r27,0r0,-193r-66,225r-45,0r-64,-225r0,193r25,0r0,32r-96,0r0,-32r29,0r0,-193r-29,0r0,-33r106,0r54,200r54,-200r108,0r0,33r-29,0r0,193r29,0","w":339},"N":{"d":"111,0r-102,0r0,-32r30,0r0,-193r-30,0r0,-33r96,0r96,203r0,-170r-30,0r0,-33r102,0r0,33r-29,0r0,225r-63,0r-99,-208r0,176r29,0r0,32","w":280},"O":{"d":"210,-131v0,-49,-21,-99,-70,-99v-48,0,-71,50,-71,99v0,45,14,103,71,103v50,0,70,-48,70,-103xm16,-124v0,-74,50,-138,123,-138v81,0,125,57,125,132v0,80,-51,134,-124,134v-72,0,-124,-59,-124,-128","w":280},"P":{"d":"215,-179v0,49,-39,88,-92,80r-33,0r0,67r37,0r0,32r-117,0r0,-32r30,0r0,-194r-30,0r0,-32r122,0v46,-6,83,34,83,79xm164,-179v0,-38,-31,-52,-74,-46r0,93v44,5,74,-8,74,-47","w":226,"k":{"A":25,"\u00c6":25,"\u00c1":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u00c5":25,"\u00c3":25,",":33,".":33}},"Q":{"d":"135,-262v125,0,162,172,72,234v20,-4,41,-4,64,-4r0,34r-139,2v-75,2,-116,-61,-116,-131v0,-71,48,-135,119,-135xm204,-125v0,-48,-18,-105,-67,-105v-49,0,-70,55,-69,103v0,44,14,99,68,99v50,0,68,-56,68,-97","w":286},"R":{"d":"167,-186v0,-37,-36,-44,-79,-39r0,84v44,4,79,-6,79,-45xm174,0v-15,-31,-10,-115,-61,-109r-25,0r0,77r30,0r0,32r-110,0r0,-32r31,0r0,-194r-31,0r0,-32r124,0v45,-6,85,26,85,70v0,35,-21,61,-56,65v48,2,41,55,56,91r22,0r0,32r-65,0","w":246,"k":{"T":6,"V":13,"W":13,"y":6,"\u00fd":6,"\u00ff":6,"Y":13,"\u00dd":13,"\u0178":13}},"S":{"d":"74,-118v-80,-12,-79,-144,16,-144v22,0,47,5,60,26r0,-22r40,0r0,85r-42,0v1,-33,-13,-55,-45,-57v-22,-2,-44,15,-39,37v15,66,132,26,132,123v0,76,-102,100,-142,46r0,24r-40,0r0,-90r42,0v0,31,12,61,47,61v23,0,42,-12,42,-37v-1,-38,-44,-39,-71,-52","w":206},"T":{"d":"55,-170r-42,0r0,-88r214,0r0,88r-42,0r0,-54r-40,0r0,192r34,0r0,32r-119,0r0,-32r35,0r0,-192r-40,0r0,54","w":240,"k":{"\u00f9":6,"\u00fc":6,"\u0161":13,"\u00f2":13,"\u00f6":13,"\u00f4":13,"\u00ed":6,"\u00e8":13,"\u00eb":13,"\u00ea":13,"\u00e3":13,"\u00e5":13,"\u00e0":13,"\u00e2":13,"w":6,"y":6,"\u00fd":6,"\u00ff":6,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":27,".":27,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"-":27,"a":13,"\u00e6":13,"\u00e1":13,"\u00e4":13,"c":13,"\u00e7":13,"e":13,"\u00e9":13,"i":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f5":13,"s":13,":":13,";":13}},"U":{"d":"128,4v-62,0,-97,-42,-97,-108r0,-121r-26,0r0,-33r108,0r0,33r-32,0v6,80,-26,195,52,195v78,0,44,-119,51,-195r-32,0r0,-33r103,0r0,33r-26,0r0,114v7,70,-34,115,-101,115","w":259},"V":{"d":"6,-225r0,-33r104,0r0,33r-33,0r59,172r59,-172r-32,0r0,-33r99,0r0,33r-19,0r-82,225r-55,0r-81,-225r-19,0","w":266,"k":{"\u00f6":20,"\u00ee":6,"\u00e8":20,"\u00eb":20,"\u00e3":20,"\u00e5":20,"\u00e0":20,"\u00e4":20,"\u00e2":20,"y":6,"\u00fd":6,"\u00ff":6,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":40,".":40,"r":13,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"-":18,"a":20,"\u00e6":20,"\u00e1":20,"e":20,"\u00e9":20,"\u00ea":20,"i":6,"\u00ed":6,"\u00ef":6,"\u00ec":6,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f2":20,"\u00f5":20,":":20,";":20}},"W":{"d":"10,-225r0,-33r98,0r0,33r-32,0r37,172r46,-205r58,0r42,205r41,-172r-33,0r0,-33r92,0r0,33r-16,0r-54,225r-59,0r-43,-205r-48,205r-61,0r-51,-225r-17,0","w":360,"k":{"\u00fc":6,"\u00f6":13,"\u00e4":13,"y":6,"\u00fd":6,"\u00ff":6,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,",":20,".":20,"r":6,"u":6,"\u00fa":6,"\u00fb":6,"\u00f9":6,"-":20,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"i":3,"\u00ed":3,"\u00ee":3,"\u00ef":3,"\u00ec":3,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f2":13,"\u00f5":13,":":13,";":13}},"X":{"d":"103,0r-99,0r0,-32r19,0r80,-100r-76,-93r-18,0r0,-33r104,0r0,33r-29,0r54,69r52,-69r-29,0r0,-33r96,0r0,33r-18,0r-76,93r81,100r18,0r0,32r-106,0r0,-32r31,0r-59,-76r-57,76r32,0r0,32","w":266},"Y":{"d":"5,-225r0,-33r103,0r0,33r-28,0r46,82r48,-82r-26,0r0,-33r94,0r0,33r-17,0r-77,126r0,67r36,0r0,32r-121,0r0,-32r35,0r0,-67r-76,-126r-17,0","w":246,"k":{"\u00f6":20,"v":6,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":27,".":27,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"-":27,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f2":20,"\u00f5":20,":":20,";":20,"p":6,"q":20}},"Z":{"d":"215,0r-204,0r0,-40r143,-186r-99,0r0,51r-40,0r0,-83r196,0r0,40r-145,187r108,0r0,-54r41,0r0,85","w":226},"[":{"d":"92,53r-69,0r0,-322r69,0r0,30r-28,0r0,262r28,0r0,30","w":119},"\\":{"d":"149,0r-110,-258r36,0r110,258r-36,0","w":223},"]":{"d":"97,53r-69,0r0,-30r28,0r0,-262r-28,0r0,-30r69,0r0,322","w":119},"^":{"d":"46,-63r-32,0r89,-195r31,0r90,195r-33,0r-73,-160","w":237},"_":{"d":"180,47r-180,0r0,-24r180,0r0,24","w":180},"\u2018":{"d":"75,-166r-49,0v-3,-41,6,-69,16,-96r33,0r-19,49r19,0r0,47","w":100,"k":{"\u2018":6}},"a":{"d":"98,-196v45,0,77,27,77,80r0,86r24,0r0,30r-66,0r0,-31v-11,24,-34,35,-60,35v-38,1,-61,-27,-61,-59v0,-53,58,-68,116,-61v3,-23,0,-51,-30,-51v-21,0,-31,14,-31,34r-48,0v1,-47,37,-63,79,-63xm130,-89v-35,0,-69,-3,-70,35v0,15,10,27,25,27v35,0,44,-34,45,-62","w":206},"b":{"d":"215,-100v0,51,-4,104,-77,104v-19,0,-45,-6,-60,-36r0,32r-70,0r0,-31r25,0r0,-200r-25,0r0,-31r73,0r0,99v12,-24,31,-33,57,-33v56,0,77,46,77,96xm123,-164v-29,1,-43,34,-43,66v0,28,6,70,43,70v36,0,42,-39,42,-67v0,-28,-6,-69,-42,-69","w":226},"c":{"d":"11,-98v1,-46,23,-99,79,-98v23,0,43,5,53,27r0,-23r37,0r0,72r-39,0v-1,-23,-12,-44,-36,-44v-38,0,-43,44,-43,73v0,28,9,64,43,64v21,0,33,-18,35,-37r41,0v-2,47,-35,68,-80,68v-62,0,-90,-45,-90,-102","w":186},"d":{"d":"89,4v-60,-11,-78,-28,-78,-104v0,-49,23,-96,78,-96v23,0,44,8,57,28r0,-63r-25,0r0,-31r73,0r0,231r25,0r0,31r-70,0r0,-31v-15,25,-36,34,-60,35xm147,-98v0,-31,-13,-66,-43,-66v-35,0,-42,42,-42,69v0,28,6,67,41,67v37,0,44,-41,44,-70","w":226},"e":{"d":"102,4v-58,0,-91,-47,-90,-102v0,-53,30,-98,88,-98v26,0,50,5,67,25v19,22,23,52,22,85r-128,0v0,27,11,59,44,59v19,0,32,-13,35,-31r46,0v-3,42,-45,62,-84,62xm62,-114r78,0v0,-22,-9,-52,-36,-52v-30,0,-40,27,-42,52"},"f":{"d":"132,-231v-31,-10,-54,5,-48,39r33,0r0,31r-33,0r0,130r32,0r0,31r-106,0r0,-31r26,0r0,-130r-28,0r0,-31r28,0v-10,-61,42,-89,96,-72r0,33","w":126,"k":{"\u2019":-6}},"g":{"d":"12,-102v1,-51,26,-94,77,-94v24,0,46,9,60,30r0,-26r71,0r0,31r-25,0r0,147v6,49,-42,77,-90,77v-38,0,-81,-11,-82,-51r48,0v9,31,62,27,73,-2v5,-15,3,-30,3,-45v-13,24,-31,33,-57,33v-51,0,-80,-46,-78,-100xm103,-33v63,-4,58,-132,2,-132v-36,0,-43,41,-43,69v1,28,12,65,41,63","w":226},"h":{"d":"120,-163v-52,0,-35,78,-38,132r24,0r0,31r-96,0r0,-31r25,0r0,-200r-25,0r0,-31r72,0r0,95v29,-52,114,-31,114,33r0,103r24,0r0,31r-95,0r0,-31r23,0v-6,-48,19,-132,-28,-132","w":226},"i":{"d":"109,0r-96,0r0,-31r26,0r0,-130r-26,0r0,-31r74,0r0,161r22,0r0,31xm39,-265r48,0r0,44r-48,0r0,-44","w":119},"j":{"d":"6,-192r74,0r0,200v0,13,0,26,-6,38v-18,21,-48,18,-76,14r0,-31v24,5,34,-7,34,-29r0,-161r-26,0r0,-31xm80,-265r0,44r-48,0r0,-44r48,0","w":106},"k":{"d":"102,0r-94,0r0,-31r25,0r0,-200r-25,0r0,-31r73,0r0,156r63,-56r-28,0r0,-30r94,0r0,31r-22,0r-45,39r51,91r19,0r0,31r-88,0r0,-29r21,0r-35,-62r-30,25r0,37r21,0r0,29","w":219},"l":{"d":"109,0r-96,0r0,-31r25,0r0,-200r-25,0r0,-31r73,0r0,231r23,0r0,31","w":119},"m":{"d":"123,-161v-54,0,-36,76,-39,130r23,0r0,31r-96,0r0,-31r25,0r0,-130r-25,0r0,-31r70,0r0,32v18,-45,98,-52,113,0v23,-61,115,-40,115,30r0,99r24,0r0,31r-94,0r0,-31r22,0r0,-85v0,-19,-2,-45,-28,-45v-50,0,-34,77,-36,130r22,0r0,31r-92,0r0,-31r22,0v-5,-48,18,-130,-26,-130","w":339},"n":{"d":"148,-31v-6,-49,19,-127,-28,-132v-58,5,-31,79,-37,132r23,0r0,31r-96,0r0,-31r25,0r0,-130r-25,0r0,-31r70,0r0,32v12,-24,31,-36,58,-36v81,-1,54,90,58,165r24,0r0,31r-94,0r0,-31r22,0","w":226},"o":{"d":"104,-27v59,-3,58,-135,0,-138v-64,7,-58,135,0,138xm10,-97v0,-53,40,-99,92,-99v62,0,95,43,95,101v0,55,-34,99,-93,99v-53,0,-94,-46,-94,-101","w":206},"p":{"d":"215,-98v13,79,-87,144,-134,69r0,57r27,0r0,30r-100,0r0,-30r25,0r0,-189r-25,0r0,-31r70,0r0,33v40,-73,146,-30,137,61xm124,-165v-32,0,-46,42,-46,70v0,27,11,67,45,67v35,0,43,-38,43,-65v0,-27,-6,-72,-42,-72","w":226},"q":{"d":"12,-98v3,-52,17,-98,75,-98v30,0,48,10,61,37r0,-33r70,0r0,31r-25,0r0,189r25,0r0,30r-100,0r0,-30r27,0r0,-57v-12,22,-30,33,-54,33v-51,0,-82,-50,-79,-102xm147,-95v0,-28,-8,-70,-44,-70v-36,0,-42,44,-42,71v0,27,8,66,43,66v34,0,43,-40,43,-67","w":226},"r":{"d":"144,-148v-62,-17,-65,51,-61,117r31,0r0,31r-104,0r0,-31r25,0r0,-130r-25,0r0,-31r70,0r0,41v8,-33,31,-47,64,-44r0,47","w":146,"k":{"v":-5,"w":-5,"y":-5,"\u00fd":-5,"\u00ff":-5,",":20,".":20,"f":-5,"\u00df":-5,"m":-5,"n":-5,"\u00f1":-5,"r":-5,"t":-5,"u":-5,"\u00fa":-5,"\u00fb":-5,"\u00fc":-5,"\u00f9":-5,"x":-5,"z":-5,"\u017e":-5,"-":14}},"s":{"d":"153,-96v32,41,6,100,-55,100v-18,0,-37,-8,-47,-23r0,19r-34,0r0,-67r37,0v-7,41,58,58,64,17v-4,-36,-54,-23,-77,-41v-47,-37,-22,-105,41,-105v17,0,35,7,45,20r0,-16r34,0r0,62r-35,0v-2,-21,-10,-37,-33,-37v-27,-6,-44,36,-13,44v21,5,59,9,73,27","w":180},"t":{"d":"87,4v-76,4,-46,-95,-52,-165r-29,0r0,-31r29,0r0,-32r47,-16r0,48r48,0r0,31r-48,0r0,120v0,4,2,11,6,12v22,9,20,-21,20,-34r30,0v4,39,-11,66,-51,67","w":146},"u":{"d":"108,-31v49,-4,32,-78,35,-130r-26,0r0,-31r74,0r0,161r25,0r0,31r-70,0r0,-32v-10,24,-31,36,-57,36v-77,1,-55,-90,-58,-165r-24,0r0,-31r72,0r0,115v-2,22,6,48,29,46","w":226},"v":{"d":"5,-161r0,-31r90,0r0,31r-23,0r36,122r40,-122r-24,0r0,-31r84,0r0,31r-15,0r-56,161r-60,0r-56,-161r-16,0","w":213,"k":{",":27,".":27}},"w":{"d":"6,-192r92,0r0,31r-26,0r28,124r40,-155r59,0r36,155r32,-124r-24,0r0,-31r85,0r0,31r-18,0r-46,161r-61,0r-34,-144r-39,144r-61,0r-46,-161r-17,0r0,-31","w":333,"k":{",":20,".":20}},"x":{"d":"122,0r0,-29r21,0r-40,-53r-41,53r21,0r0,29r-79,0r0,-31r15,0r55,-68r-48,-62r-18,0r0,-31r86,0r0,29r-20,0r37,47r36,-47r-20,0r0,-29r79,0r0,31r-17,0r-51,62r55,68r15,0r0,31r-86,0","w":213},"y":{"d":"5,-161r0,-31r92,0r0,31r-25,0r39,106r37,-106r-24,0r0,-31r85,0r0,31r-15,0r-69,173v-12,40,-37,59,-87,49r0,-33v27,4,43,-2,49,-25r-66,-164r-16,0","w":213,"k":{",":27,".":27}},"z":{"d":"170,0r-154,0r0,-37r101,-126r-62,0r0,31r-36,0r0,-60r151,0r0,36r-102,127r66,0r0,-35r36,0r0,64","w":186},"{":{"d":"13,-109v55,-8,7,-107,39,-147v12,-15,35,-13,53,-13v-64,13,11,141,-59,160v70,9,-8,138,59,162v-33,5,-71,-14,-64,-50v-3,-47,13,-105,-28,-112","w":115},"|":{"d":"102,0r0,-258r33,0r0,258r-33,0","w":237},"}":{"d":"105,-109v-68,12,25,175,-92,162v65,-12,-12,-143,59,-162v-69,-9,7,-136,-59,-159v17,0,39,-2,53,12v32,35,-18,134,39,147","w":115},"~":{"d":"195,-161r26,16v-19,43,-69,53,-113,27v-27,-16,-56,-6,-66,22r-26,-17v14,-22,31,-45,61,-45v31,0,65,24,86,24v16,0,24,-16,32,-27","w":237},"\u00a1":{"d":"85,-152r-49,0r0,-47r49,0r0,47xm88,59r-56,0r10,-186r37,0","w":119},"\u00a2":{"d":"180,-120r-39,0v-1,-22,-10,-45,-36,-45v-38,0,-43,44,-43,73v0,28,9,64,43,64v21,0,33,-18,35,-37r41,0v-2,42,-28,65,-68,69r0,31r-32,0r0,-32v-91,-11,-97,-189,0,-200r0,-33r32,0r0,36v13,3,23,9,30,24r0,-22r37,0r0,72"},"\u00a3":{"d":"36,-154v-8,-68,24,-108,80,-108v45,0,72,20,73,67r-46,0v1,-24,-13,-44,-38,-33v-28,12,-17,43,-19,74r39,0r0,32r-39,0r0,90r57,0r0,-41r44,0r0,73r-177,0r0,-32r26,0r0,-90r-28,0r0,-32r28,0"},"\u2044":{"d":"-24,0r-29,0r139,-258r29,0","w":60},"\u00a5":{"d":"-18,-225r0,-33r102,0r0,33r-28,0r47,82r48,-82r-27,0r0,-33r94,0r0,33r-17,0r-43,70r49,0r0,20r-61,0r-12,16r73,0r0,20r-83,0r0,67r36,0r0,32r-120,0r0,-32r35,0r0,-67r-83,0r0,-20r73,0r-12,-16r-61,0r0,-20r49,0r-42,-70r-17,0"},"\u0192":{"d":"78,-170v8,-50,13,-90,78,-92v10,0,19,2,28,4r-5,29v-13,-2,-28,-4,-37,8v-10,14,-10,34,-14,51r38,0r-5,29r-38,0v-16,62,-7,138,-45,180v-18,20,-49,21,-79,15r6,-30v42,5,45,-23,50,-55r17,-110r-32,0r5,-29r33,0"},"\u00a7":{"d":"53,-155v-54,-28,-17,-107,43,-107v43,0,73,19,78,64r-45,0v1,-18,-10,-33,-29,-33v-20,0,-40,21,-24,37v30,31,102,27,103,84v0,19,-12,37,-30,43v16,8,27,27,27,45v1,36,-37,60,-74,60v-37,0,-80,-17,-79,-61r47,0v-3,36,58,42,60,9v1,-27,-31,-27,-49,-36v-27,-13,-60,-25,-60,-61v0,-20,13,-37,32,-44xm63,-120v2,30,35,32,57,42v19,-12,22,-40,-4,-51r-37,-16v-10,4,-16,15,-16,25"},"\u00a4":{"d":"8,-56r20,-20v-20,-27,-20,-68,0,-95r-20,-19r25,-25r19,19v28,-20,68,-19,97,-1r19,-18r25,25r-19,18v19,29,19,69,0,97r19,19r-25,24r-19,-19v-28,19,-68,20,-97,0r-19,19xm100,-171v-27,0,-47,22,-47,48v0,26,20,48,47,48v26,0,48,-21,48,-48v0,-27,-21,-48,-48,-48"},"'":{"d":"49,-154r-27,0r-9,-104r45,0","w":72},"\u201c":{"d":"85,-166r-49,0v-3,-41,6,-69,17,-96r32,0r-19,49r19,0r0,47xm166,-166r-49,0v-3,-41,6,-69,17,-96r32,0r-19,49r19,0r0,47"},"\u00ab":{"d":"50,-24r-29,-78r29,-78r35,0r-29,78r29,78r-35,0xm116,-24r-31,-78r31,-78r35,0r-30,78r30,78r-35,0","w":180},"\u2039":{"d":"53,-24r-29,-78r29,-78r35,0r-29,78r29,78r-35,0","w":119},"\u203a":{"d":"31,-24r30,-78r-30,-78r35,0r30,78r-30,78r-35,0","w":119},"\u2013":{"d":"0,-84r0,-36r180,0r0,36r-180,0","w":180},"\u2020":{"d":"78,-165r-58,0r0,-34r58,0r0,-59r44,0r0,59r58,0r0,34r-58,0r0,165r-44,0r0,-165"},"\u2021":{"d":"79,-55r-57,0r0,-31r57,0r0,-86r-57,0r0,-31r57,0r0,-55r42,0r0,55r58,0r0,31r-58,0r0,86r58,0r0,31r-58,0r0,55r-42,0r0,-55"},"\u00b7":{"d":"26,-152r49,0r0,47r-49,0r0,-47","w":100},"\u00b6":{"d":"6,-193v0,-38,34,-65,74,-65r115,0r0,41r-25,0r0,263r-32,0r0,-263r-36,0r0,263r-32,0r0,-175v-36,-1,-64,-28,-64,-64","w":194},"\u2022":{"d":"165,-193r0,129r-114,0r0,-129r114,0","w":216},"\u201a":{"d":"44,48r-33,0r20,-48r-19,0r0,-48r49,0v3,41,-6,69,-17,96","w":72},"\u201e":{"d":"116,-48r49,0v3,41,-6,69,-17,96r-32,0r19,-48r-19,0r0,-48xm36,-48r49,0v3,41,-6,69,-17,96r-33,0r19,-48r-18,0r0,-48"},"\u201d":{"d":"117,-262r49,0r0,47r-18,49r-32,0r19,-49r-18,0r0,-47xm36,-262r49,0v3,41,-6,69,-17,96r-33,0r20,-49r-19,0r0,-47"},"\u00bb":{"d":"92,-24r30,-78r-30,-78r35,0r34,78r-34,78r-35,0xm27,-24r29,-78r-29,-78r35,0r30,78r-30,78r-35,0","w":180},"\u2026":{"d":"85,0r-49,0r0,-48r49,0r0,48xm205,0r-49,0r0,-48r49,0r0,48xm325,0r-49,0r0,-48r49,0r0,48","w":360},"\u2030":{"d":"305,-19v19,0,20,-28,20,-42v0,-14,0,-44,-20,-44v-19,0,-20,30,-20,43v0,13,1,43,20,43xm63,4r-30,0r142,-266r31,0xm54,-239v-18,0,-20,29,-20,42v0,14,1,44,21,44v19,0,20,-31,20,-44v0,-14,-2,-42,-21,-42xm307,4v-74,1,-66,-132,-3,-132v39,0,52,31,52,66v0,31,-13,66,-49,66xm55,-130v-69,0,-70,-132,-2,-132v39,0,52,30,52,65v0,32,-12,67,-50,67xm236,-62v0,34,-16,66,-49,66v-36,0,-52,-28,-52,-66v0,-37,16,-65,49,-66v39,0,52,31,52,66xm185,-19v32,-7,29,-86,0,-86v-19,0,-20,29,-20,43v0,14,1,43,20,43","w":360},"\u00bf":{"d":"62,-2v0,16,11,32,31,32v21,0,27,-18,28,-36r48,0v-1,46,-35,69,-79,69v-45,0,-77,-23,-77,-70v0,-30,15,-51,36,-71v21,-20,25,-24,24,-55r49,0v10,67,-60,77,-60,131xm73,-153r0,-48r49,0r0,48r-49,0","w":180},"`":{"d":"-4,-272r49,0r32,52r-29,0","w":100},"\u00b4":{"d":"23,-220r32,-52r49,0r-51,52r-30,0","w":100},"\u02c6":{"d":"50,-252r-26,32r-32,0r38,-52r40,0r39,52r-34,0","w":100},"\u02dc":{"d":"24,-265v31,1,58,31,69,-2r20,0v-3,24,-16,43,-40,42v-22,-1,-60,-31,-67,2r-20,0v4,-21,15,-42,38,-42","w":100},"\u00af":{"d":"102,-233r-104,0r0,-23r104,0r0,23","w":100},"\u02d8":{"d":"-7,-273r21,0v6,38,71,34,75,0r20,0v-3,33,-27,51,-59,51v-33,0,-54,-18,-57,-51","w":100},"\u02d9":{"d":"29,-223r0,-42r42,0r0,42r-42,0","w":100},"\u00a8":{"d":"-8,-223r0,-42r41,0r0,42r-41,0xm67,-223r0,-42r41,0r0,42r-41,0","w":100},"\u02da":{"d":"50,-215v-20,0,-37,-17,-37,-37v0,-20,16,-37,37,-37v19,0,37,16,37,36v0,21,-16,38,-37,38xm50,-233v25,0,25,-40,0,-40v-24,0,-26,40,0,40","w":100},"\u00b8":{"d":"92,45v0,35,-53,37,-82,23r7,-14v15,7,36,12,46,-1v8,-18,-16,-25,-30,-16r-7,-7r20,-33r18,0r-15,24v20,-3,43,5,43,24","w":100},"\u02dd":{"d":"0,-220r32,-52r49,0r-51,52r-30,0xm66,-220r33,-52r48,0r-51,52r-30,0","w":100},"\u02db":{"d":"36,0r28,0v-21,13,-8,56,18,44r0,26v-45,21,-79,-36,-46,-70","w":100},"\u02c7":{"d":"109,-272r-39,52r-40,0r-38,-52r32,0r26,32r25,-32r34,0","w":100},"\u2014":{"d":"0,-84r0,-36r360,0r0,36r-360,0","w":360},"\u00c6":{"d":"125,-258r217,0r0,79r-39,0r0,-46r-102,0r11,78r37,0r0,-33r34,0r0,98r-34,0r0,-32r-32,0r14,82r74,0r0,-50r39,0r0,82r-191,0r0,-32r32,0r-8,-45r-90,0r-20,45r27,0r0,32r-89,0r0,-32r14,0xm103,-114r69,0r-18,-114","w":360},"\u00aa":{"d":"6,-220v1,-51,95,-52,100,-4v2,21,1,44,1,66r16,0r0,19r-43,0r0,-19v-14,34,-79,28,-79,-14v0,-34,39,-42,75,-37v2,-14,0,-31,-19,-31v-14,0,-20,8,-20,20r-31,0xm77,-193v-22,0,-44,-1,-45,22v0,9,7,15,17,15v23,0,27,-20,28,-37xm1,-93r0,-23r122,0r0,23r-122,0","w":123},"\u0141":{"d":"208,0r-199,0r0,-32r30,0r0,-76r-31,21r0,-32r31,-22r0,-84r-30,0r0,-33r118,0r0,33r-39,0r0,61r49,-32r0,33r-49,31r0,100r77,0r0,-59r43,0r0,91","w":219,"k":{"T":27,"V":33,"W":27,"y":20,"\u00fd":20,"\u00ff":20,"Y":27,"\u00dd":27,"\u0178":27,"\u2019":33}},"\u00d8":{"d":"140,-230v-68,-1,-84,91,-62,155r114,-130v-13,-17,-30,-25,-52,-25xm140,-28v70,-1,82,-89,62,-158r-115,131v11,17,29,27,53,27xm45,-36v-67,-85,-15,-226,94,-226v33,0,60,9,80,26r24,-28r16,13r-26,29v20,24,31,56,31,92v0,115,-121,172,-205,108r-27,30r-15,-12","w":280},"\u0152":{"d":"181,0v-100,18,-166,-34,-166,-131v0,-85,65,-151,164,-128r163,1r0,79r-40,0r0,-46r-85,0r0,78r32,0r0,-32r33,0r0,98r-33,0r0,-33r-32,0r0,82r85,0r0,-49r40,0r0,81r-161,0xm66,-130v0,63,31,114,105,98r0,-196v-71,-19,-105,42,-105,98","w":360},"\u00ba":{"d":"63,-156v38,-1,36,-81,-1,-83v-41,5,-38,82,1,83xm1,-198v0,-34,27,-61,60,-60v40,0,61,26,61,61v0,33,-22,61,-60,61v-34,0,-61,-27,-61,-62xm1,-93r0,-23r121,0r0,23r-121,0","w":123},"\u00e6":{"d":"172,-113r71,0v0,-27,-5,-55,-32,-55v-28,0,-41,25,-39,55xm127,-85v-36,-2,-69,-1,-70,32v0,18,12,29,30,29v29,0,40,-38,40,-61xm98,-168v-21,-1,-31,10,-34,30r-45,0v4,-45,35,-58,76,-58v23,0,49,4,58,28v12,-21,35,-28,58,-28v59,-1,81,46,78,111r-118,0v-1,29,8,58,41,59v18,0,29,-16,30,-32r45,0v-4,71,-119,86,-144,21v-16,62,-136,53,-131,-21v3,-50,60,-59,115,-55v0,-25,2,-54,-29,-55","w":299},"\u0131":{"d":"109,0r-96,0r0,-31r26,0r0,-130r-26,0r0,-31r74,0r0,161r22,0r0,31","w":119},"\u0142":{"d":"108,0r-95,0r0,-31r24,0r0,-84r-27,25r0,-32r27,-25r0,-84r-24,0r0,-31r72,0r0,81r29,-26r0,33r-29,25r0,118r23,0r0,31","w":119},"\u00f8":{"d":"64,-64r70,-82v-7,-11,-17,-19,-31,-19v-45,0,-48,62,-39,101xm32,-27v-51,-64,-12,-169,70,-169v24,0,44,6,59,18r20,-23r15,12r-21,24v46,60,17,169,-72,169v-20,0,-41,-6,-58,-18r-22,25r-15,-11xm104,-27v41,-1,50,-61,39,-100r-71,81v7,10,18,19,32,19","w":206},"\u0153":{"d":"159,-161v12,-22,36,-36,63,-35v62,1,78,51,75,112r-115,0v0,24,8,58,38,58v19,0,29,-13,29,-32r45,0v0,69,-109,81,-135,28v-9,19,-35,34,-62,34v-58,-1,-85,-45,-85,-108v0,-82,109,-129,147,-57xm137,-95v1,-32,-7,-71,-37,-71v-36,0,-40,46,-40,73v0,25,7,66,39,66v32,0,38,-44,38,-68xm182,-112r69,0v-1,-24,-2,-55,-34,-55v-27,1,-34,31,-35,55","w":306},"\u00df":{"d":"116,-237v-29,0,-36,29,-36,61r0,145r16,0r0,31r-89,0r0,-31r25,0r0,-144v-7,-54,29,-94,87,-94v43,0,78,20,78,67v-1,36,-20,54,-51,60v41,2,61,29,62,66v1,53,-32,81,-91,76r0,-31v29,1,41,-18,41,-45v0,-31,-14,-50,-47,-49r0,-35v29,2,38,-20,38,-42v0,-21,-11,-35,-33,-35","w":219},"\u00b9":{"d":"15,-208r0,-26v13,-9,27,-18,39,-28r30,0r0,135r21,0r0,20r-76,0r0,-20r23,0r0,-107v-12,9,-24,18,-37,26","w":119},"\u00ac":{"d":"177,-63r0,-77r-150,0r0,-34r183,0r0,111r-33,0","w":237},"\u00b5":{"d":"108,-31v49,-4,32,-78,35,-130r-26,0r0,-31r74,0r0,161r25,0r0,31r-70,0v-1,-10,2,-24,-1,-32v-9,24,-30,36,-56,36v-18,0,-12,11,-10,23v3,18,-11,31,-24,31v-35,0,-20,-48,-15,-73v-13,-41,-8,-94,-9,-146r-24,0r0,-31r72,0r0,115v-2,22,6,48,29,46","w":226},"\u2122":{"d":"305,-258r0,147r-23,0r0,-126r-51,126r-14,0r-49,-126r0,126r-23,0r0,-147r37,0r42,104r44,-104r37,0xm119,-258r0,21r-47,0r0,126r-25,0r0,-126r-47,0r0,-21r119,0","w":352},"\u00d0":{"d":"146,-147r0,24r-57,0r0,91v71,4,107,-14,109,-98v1,-70,-35,-103,-109,-95r0,78r57,0xm11,-123r0,-24r28,0r0,-78r-30,0r0,-33r120,0v79,0,120,49,120,127v0,94,-46,131,-135,131r-105,0r0,-32r30,0r0,-91r-28,0","w":266},"\u00bd":{"d":"9,-208r0,-26v13,-9,27,-18,39,-28r30,0r0,135r22,0r0,20r-77,0r0,-20r23,0r0,-107v-12,9,-24,18,-37,26xm289,-116v-5,46,-51,68,-78,97r54,0r0,-23r26,0r0,42r-111,0r0,-28v24,-29,65,-47,76,-88v0,-12,-8,-22,-21,-22v-17,0,-23,15,-23,29r-32,0v1,-31,21,-48,55,-48v27,0,57,15,54,41xm94,0r-30,0r140,-258r29,0","w":300},"\u00b1":{"d":"27,-151r75,0r0,-69r33,0r0,69r75,0r0,33r-75,0r0,70r-33,0r0,-70r-75,0r0,-33xm27,0r0,-33r183,0r0,33r-183,0","w":237},"\u00de":{"d":"10,0r0,-32r30,0r0,-193r-30,0r0,-33r110,0r0,33r-30,0r0,23v68,-3,125,4,125,72v0,68,-57,75,-125,72r0,26r30,0r0,32r-110,0xm90,-170r0,79v39,2,74,-2,74,-39v0,-37,-34,-43,-74,-40","w":226},"\u00bc":{"d":"242,-40r-69,0r0,-26r61,-89r39,0r0,97r18,0r0,18r-18,0r0,22r16,0r0,18r-69,0r0,-18r22,0r0,-22xm242,-128r-47,70r47,0r0,-70xm101,0r-30,0r140,-258r29,0xm9,-208r0,-26v13,-9,27,-18,39,-28r30,0r0,135r22,0r0,20r-77,0r0,-20r23,0r0,-107v-12,9,-24,18,-37,26","w":300},"\u00f7":{"d":"27,-145r183,0r0,33r-183,0r0,-33xm143,-37r-49,0r0,-48r49,0r0,48xm143,-173r-49,0r0,-47r49,0r0,47","w":237},"\u00a6":{"d":"102,0r0,-103r33,0r0,103r-33,0xm102,-155r0,-103r33,0r0,103r-33,0","w":237},"\u00b0":{"d":"126,-208v0,30,-24,54,-54,54v-30,0,-54,-24,-54,-54v0,-30,24,-54,54,-54v30,0,54,24,54,54xm105,-208v0,-18,-14,-34,-33,-34v-18,0,-33,16,-33,34v0,19,14,33,33,33v18,0,33,-14,33,-33","w":144},"\u00fe":{"d":"123,-28v35,0,43,-38,43,-65v0,-27,-6,-71,-42,-71v-33,0,-46,42,-46,69v0,27,11,67,45,67xm33,-238r-25,0r0,-31r73,0r1,104v12,-20,30,-31,53,-31v56,0,80,48,80,98v0,52,-20,102,-79,102v-22,1,-39,-11,-55,-33r0,57r27,0r0,30r-100,0r0,-30r25,0r0,-266","w":226},"\u00be":{"d":"242,-40r-69,0r0,-26r61,-89r39,0r0,97r18,0r0,18r-18,0r0,22r16,0r0,18r-69,0r0,-18r22,0r0,-22xm242,-128r-47,70r47,0r0,-70xm104,0r-29,0r140,-258r28,0xm88,-148v1,-17,-13,-31,-34,-26r0,-20v20,1,32,-7,32,-26v0,-12,-8,-23,-22,-23v-16,0,-22,14,-22,27r-32,0v-3,-60,105,-63,108,-6v1,20,-14,35,-34,38v22,2,36,14,37,37v1,30,-25,45,-57,45v-32,0,-55,-15,-55,-46r32,0v1,14,8,25,25,25v13,0,23,-12,22,-25","w":300},"\u00b2":{"d":"113,-220v-5,46,-50,68,-78,96r54,0r0,-23r27,0r0,42r-111,0r0,-28v24,-29,65,-48,76,-88v0,-12,-8,-21,-21,-21v-17,0,-24,14,-24,28r-31,0v1,-31,21,-48,55,-48v27,0,56,16,53,42","w":119},"\u00ae":{"d":"280,-129v0,74,-60,133,-133,133v-73,0,-132,-60,-132,-133v0,-74,60,-133,133,-133v73,0,132,60,132,133xm149,-14v63,0,113,-53,113,-115v0,-64,-52,-115,-115,-115v-63,0,-114,52,-114,115v0,64,52,115,116,115xm93,-210v58,1,130,-11,129,44v0,30,-20,42,-48,43r45,72r-26,0r-43,-72r-34,0r0,72r-23,0r0,-159xm116,-140v36,-2,83,11,83,-28v0,-38,-48,-23,-83,-26r0,54","w":295},"\u2212":{"d":"27,-112r0,-33r183,0r0,33r-183,0","w":237},"\u00f0":{"d":"103,-27v29,0,44,-29,44,-63v0,-34,-15,-63,-44,-63v-29,0,-43,29,-43,63v0,34,14,63,43,63xm60,-199r-13,-15r25,-16v-11,-5,-23,-8,-34,-10r10,-31v22,4,42,10,60,18r33,-21r14,15r-27,17v43,28,69,73,69,137v0,70,-35,109,-94,109v-59,0,-93,-44,-93,-99v0,-67,73,-113,129,-76v-8,-19,-25,-36,-46,-49","w":206},"\u00d7":{"d":"27,-61r68,-68r-68,-68r24,-23r68,68r68,-68r23,23r-68,68r68,68r-23,24r-68,-68r-68,68","w":237},"\u00b3":{"d":"83,-148v0,-18,-13,-31,-34,-26r0,-20v20,1,33,-7,33,-26v0,-12,-8,-23,-22,-23v-16,0,-22,14,-22,27r-32,0v-1,-34,26,-46,56,-46v55,0,70,72,18,78v22,2,35,15,36,37v2,31,-25,45,-56,45v-32,0,-56,-15,-56,-46r32,0v1,14,8,25,25,25v13,0,22,-12,22,-25","w":119},"\u00a9":{"d":"280,-130v0,75,-58,134,-133,134v-73,0,-132,-60,-132,-133v0,-73,59,-133,133,-133v73,0,132,59,132,132xm148,-14v63,0,114,-51,114,-114v0,-65,-51,-116,-115,-116v-63,0,-114,52,-114,115v0,64,52,115,115,115xm199,-102r21,7v-10,31,-42,45,-72,45v-46,0,-76,-32,-76,-77v0,-48,34,-82,81,-82v28,0,61,13,67,43r-24,6v-21,-65,-100,-27,-100,31v0,34,18,63,55,63v24,0,40,-14,48,-36","w":295},"\u00c1":{"d":"101,-111r71,0r-36,-105xm104,0r-98,0r0,-32r20,0r85,-226r59,0r84,226r20,0r0,32r-104,0r0,-32r31,0r-16,-47r-96,0r-17,47r32,0r0,32xm113,-287r32,-51r49,0r-51,51r-30,0","w":280},"\u00c2":{"d":"101,-111r71,0r-36,-105xm104,0r-98,0r0,-32r20,0r85,-226r59,0r84,226r20,0r0,32r-104,0r0,-32r31,0r-16,-47r-96,0r-17,47r32,0r0,32xm140,-319r-26,32r-32,0r38,-51r40,0r39,51r-34,0","w":280},"\u00c4":{"d":"101,-111r71,0r-36,-105xm104,0r-98,0r0,-32r20,0r85,-226r59,0r84,226r20,0r0,32r-104,0r0,-32r31,0r-16,-47r-96,0r-17,47r32,0r0,32xm82,-289r0,-42r41,0r0,42r-41,0xm157,-289r0,-42r41,0r0,42r-41,0","w":280},"\u00c0":{"d":"101,-111r71,0r-36,-105xm104,0r-98,0r0,-32r20,0r85,-226r59,0r84,226r20,0r0,32r-104,0r0,-32r31,0r-16,-47r-96,0r-17,47r32,0r0,32xm86,-338r49,0r32,51r-29,0","w":280},"\u00c5":{"d":"101,-111r71,0r-36,-105xm104,0r-98,0r0,-32r20,0r85,-226r59,0r84,226r20,0r0,32r-104,0r0,-32r31,0r-16,-47r-96,0r-17,47r32,0r0,32xm140,-277v-20,0,-37,-17,-37,-37v0,-20,16,-37,37,-37v19,0,37,16,37,36v0,21,-16,38,-37,38xm140,-295v29,0,23,-39,0,-39v-29,0,-23,39,0,39","w":280},"\u00c3":{"d":"101,-111r71,0r-36,-105xm104,0r-98,0r0,-32r20,0r85,-226r59,0r84,226r20,0r0,32r-104,0r0,-32r31,0r-16,-47r-96,0r-17,47r32,0r0,32xm114,-331v30,1,58,30,69,-2r20,0v-3,24,-16,41,-40,41v-22,0,-61,-29,-67,3r-20,0v4,-21,15,-42,38,-42","w":280},"\u00c7":{"d":"96,54v15,6,37,12,47,-1v8,-18,-16,-25,-30,-16v-14,-9,5,-22,9,-33v-73,-6,-105,-62,-105,-136v0,-52,20,-86,36,-102v32,-33,114,-41,148,0r0,-24r40,0r0,93r-43,0v-2,-37,-20,-64,-60,-64v-54,0,-68,54,-68,99v0,43,12,101,66,101v34,0,58,-23,58,-57r50,0v-1,61,-49,89,-104,90r-11,17v20,-3,43,5,43,24v0,35,-53,37,-82,23","w":259},"\u00c9":{"d":"222,0r-213,0r0,-32r30,0r0,-193r-30,0r0,-33r213,0r0,79r-40,0r0,-46r-94,0r0,78r38,0r0,-33r34,0r0,98r-34,0r0,-32r-38,0r0,82r94,0r0,-50r40,0r0,82xm93,-287r33,-51r48,0r-51,51r-30,0","w":240},"\u00ca":{"d":"222,0r-213,0r0,-32r30,0r0,-193r-30,0r0,-33r213,0r0,79r-40,0r0,-46r-94,0r0,78r38,0r0,-33r34,0r0,98r-34,0r0,-32r-38,0r0,82r94,0r0,-50r40,0r0,82xm120,-319r-25,32r-33,0r38,-51r40,0r39,51r-34,0","w":240},"\u00cb":{"d":"222,0r-213,0r0,-32r30,0r0,-193r-30,0r0,-33r213,0r0,79r-40,0r0,-46r-94,0r0,78r38,0r0,-33r34,0r0,98r-34,0r0,-32r-38,0r0,82r94,0r0,-50r40,0r0,82xm62,-289r0,-42r42,0r0,42r-42,0xm137,-289r0,-42r42,0r0,42r-42,0","w":240},"\u00c8":{"d":"222,0r-213,0r0,-32r30,0r0,-193r-30,0r0,-33r213,0r0,79r-40,0r0,-46r-94,0r0,78r38,0r0,-33r34,0r0,98r-34,0r0,-32r-38,0r0,82r94,0r0,-50r40,0r0,82xm66,-338r49,0r32,51r-29,0","w":240},"\u00cd":{"d":"39,-225r-32,0r0,-33r113,0r0,33r-32,0r0,193r32,0r0,32r-113,0r0,-32r32,0r0,-193xm36,-287r33,-51r48,0r-51,51r-30,0","w":126},"\u00ce":{"d":"39,-225r-32,0r0,-33r113,0r0,33r-32,0r0,193r32,0r0,32r-113,0r0,-32r32,0r0,-193xm63,-319r-25,32r-33,0r38,-51r40,0r39,51r-33,0","w":126},"\u00cf":{"d":"39,-225r-32,0r0,-33r113,0r0,33r-32,0r0,193r32,0r0,32r-113,0r0,-32r32,0r0,-193xm5,-289r0,-42r42,0r0,42r-42,0xm80,-289r0,-42r42,0r0,42r-42,0","w":126},"\u00cc":{"d":"39,-225r-32,0r0,-33r113,0r0,33r-32,0r0,193r32,0r0,32r-113,0r0,-32r32,0r0,-193xm9,-338r49,0r32,51r-29,0","w":126},"\u00d1":{"d":"111,0r-102,0r0,-32r30,0r0,-193r-30,0r0,-33r96,0r96,203r0,-170r-30,0r0,-33r102,0r0,33r-29,0r0,225r-63,0r-99,-208r0,176r29,0r0,32xm114,-331v30,1,58,30,69,-2r20,0v-3,24,-16,41,-40,41v-22,0,-61,-29,-67,3r-20,0v4,-21,15,-42,38,-42","w":280},"\u00d3":{"d":"210,-131v0,-49,-21,-99,-70,-99v-48,0,-71,50,-71,99v0,45,14,103,71,103v50,0,70,-48,70,-103xm16,-124v0,-74,50,-138,123,-138v81,0,125,57,125,132v0,80,-51,134,-124,134v-72,0,-124,-59,-124,-128xm113,-287r32,-51r49,0r-51,51r-30,0","w":280},"\u00d4":{"d":"210,-131v0,-49,-21,-99,-70,-99v-48,0,-71,50,-71,99v0,45,14,103,71,103v50,0,70,-48,70,-103xm16,-124v0,-74,50,-138,123,-138v81,0,125,57,125,132v0,80,-51,134,-124,134v-72,0,-124,-59,-124,-128xm140,-319r-26,32r-32,0r38,-51r40,0r39,51r-34,0","w":280},"\u00d6":{"d":"210,-131v0,-49,-21,-99,-70,-99v-48,0,-71,50,-71,99v0,45,14,103,71,103v50,0,70,-48,70,-103xm16,-124v0,-74,50,-138,123,-138v81,0,125,57,125,132v0,80,-51,134,-124,134v-72,0,-124,-59,-124,-128xm82,-289r0,-42r41,0r0,42r-41,0xm157,-289r0,-42r41,0r0,42r-41,0","w":280},"\u00d2":{"d":"210,-131v0,-49,-21,-99,-70,-99v-48,0,-71,50,-71,99v0,45,14,103,71,103v50,0,70,-48,70,-103xm16,-124v0,-74,50,-138,123,-138v81,0,125,57,125,132v0,80,-51,134,-124,134v-72,0,-124,-59,-124,-128xm86,-338r49,0r32,51r-29,0","w":280},"\u00d5":{"d":"210,-131v0,-49,-21,-99,-70,-99v-48,0,-71,50,-71,99v0,45,14,103,71,103v50,0,70,-48,70,-103xm16,-124v0,-74,50,-138,123,-138v81,0,125,57,125,132v0,80,-51,134,-124,134v-72,0,-124,-59,-124,-128xm114,-331v30,1,58,30,69,-2r20,0v-3,24,-16,41,-40,41v-22,0,-61,-29,-67,3r-20,0v4,-21,15,-42,38,-42","w":280},"\u0160":{"d":"74,-118v-80,-12,-79,-144,16,-144v22,0,47,5,60,26r0,-22r40,0r0,85r-42,0v1,-33,-13,-55,-45,-57v-22,-2,-44,15,-39,37v15,66,132,26,132,123v0,76,-102,100,-142,46r0,24r-40,0r0,-90r42,0v0,31,12,61,47,61v23,0,42,-12,42,-37v-1,-38,-44,-39,-71,-52xm162,-338r-39,51r-40,0r-38,-51r33,0r25,32r26,-32r33,0","w":206},"\u00da":{"d":"128,4v-62,0,-97,-42,-97,-108r0,-121r-26,0r0,-33r108,0r0,33r-32,0v6,80,-26,195,52,195v78,0,44,-119,51,-195r-32,0r0,-33r103,0r0,33r-26,0r0,114v7,70,-34,115,-101,115xm103,-287r32,-51r49,0r-52,51r-29,0","w":259},"\u00db":{"d":"128,4v-62,0,-97,-42,-97,-108r0,-121r-26,0r0,-33r108,0r0,33r-32,0v6,80,-26,195,52,195v78,0,44,-119,51,-195r-32,0r0,-33r103,0r0,33r-26,0r0,114v7,70,-34,115,-101,115xm130,-319r-26,32r-32,0r38,-51r40,0r39,51r-34,0","w":259},"\u00dc":{"d":"128,4v-62,0,-97,-42,-97,-108r0,-121r-26,0r0,-33r108,0r0,33r-32,0v6,80,-26,195,52,195v78,0,44,-119,51,-195r-32,0r0,-33r103,0r0,33r-26,0r0,114v7,70,-34,115,-101,115xm72,-289r0,-42r41,0r0,42r-41,0xm147,-289r0,-42r41,0r0,42r-41,0","w":259},"\u00d9":{"d":"128,4v-62,0,-97,-42,-97,-108r0,-121r-26,0r0,-33r108,0r0,33r-32,0v6,80,-26,195,52,195v78,0,44,-119,51,-195r-32,0r0,-33r103,0r0,33r-26,0r0,114v7,70,-34,115,-101,115xm76,-338r49,0r32,51r-30,0","w":259},"\u00dd":{"d":"5,-225r0,-33r103,0r0,33r-28,0r46,82r48,-82r-26,0r0,-33r94,0r0,33r-17,0r-77,126r0,67r36,0r0,32r-121,0r0,-32r35,0r0,-67r-76,-126r-17,0xm96,-287r33,-51r48,0r-51,51r-30,0","w":246,"k":{"v":6,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":27,".":27,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"-":27,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,":":20,";":20,"p":6,"q":20}},"\u0178":{"d":"5,-225r0,-33r103,0r0,33r-28,0r46,82r48,-82r-26,0r0,-33r94,0r0,33r-17,0r-77,126r0,67r36,0r0,32r-121,0r0,-32r35,0r0,-67r-76,-126r-17,0xm65,-289r0,-42r42,0r0,42r-42,0xm140,-289r0,-42r42,0r0,42r-42,0","w":246,"k":{"v":6,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,",":27,".":27,"u":6,"\u00fa":6,"\u00fb":6,"\u00fc":6,"\u00f9":6,"-":27,"a":20,"\u00e6":20,"\u00e1":20,"\u00e2":20,"\u00e4":20,"\u00e0":20,"\u00e5":20,"\u00e3":20,"e":20,"\u00e9":20,"\u00ea":20,"\u00eb":20,"\u00e8":20,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f6":20,"\u00f2":20,"\u00f5":20,":":20,";":20,"p":6,"q":20}},"\u017d":{"d":"215,0r-204,0r0,-40r143,-186r-99,0r0,51r-40,0r0,-83r196,0r0,40r-145,187r108,0r0,-54r41,0r0,85xm172,-338r-39,51r-40,0r-38,-51r33,0r25,32r26,-32r33,0","w":226},"\u00e1":{"d":"98,-196v45,0,77,27,77,80r0,86r24,0r0,30r-66,0r0,-31v-11,24,-34,35,-60,35v-38,1,-61,-27,-61,-59v0,-53,58,-68,116,-61v3,-23,0,-51,-30,-51v-21,0,-31,14,-31,34r-48,0v1,-47,37,-63,79,-63xm130,-89v-35,0,-69,-3,-70,35v0,15,10,27,25,27v35,0,44,-34,45,-62xm76,-220r33,-52r48,0r-51,52r-30,0","w":206},"\u00e2":{"d":"98,-196v45,0,77,27,77,80r0,86r24,0r0,30r-66,0r0,-31v-11,24,-34,35,-60,35v-38,1,-61,-27,-61,-59v0,-53,58,-68,116,-61v3,-23,0,-51,-30,-51v-21,0,-31,14,-31,34r-48,0v1,-47,37,-63,79,-63xm130,-89v-35,0,-69,-3,-70,35v0,15,10,27,25,27v35,0,44,-34,45,-62xm103,-252r-25,32r-33,0r38,-52r40,0r39,52r-33,0","w":206},"\u00e4":{"d":"98,-196v45,0,77,27,77,80r0,86r24,0r0,30r-66,0r0,-31v-11,24,-34,35,-60,35v-38,1,-61,-27,-61,-59v0,-53,58,-68,116,-61v3,-23,0,-51,-30,-51v-21,0,-31,14,-31,34r-48,0v1,-47,37,-63,79,-63xm130,-89v-35,0,-69,-3,-70,35v0,15,10,27,25,27v35,0,44,-34,45,-62xm45,-223r0,-42r42,0r0,42r-42,0xm120,-223r0,-42r42,0r0,42r-42,0","w":206},"\u00e0":{"d":"98,-196v45,0,77,27,77,80r0,86r24,0r0,30r-66,0r0,-31v-11,24,-34,35,-60,35v-38,1,-61,-27,-61,-59v0,-53,58,-68,116,-61v3,-23,0,-51,-30,-51v-21,0,-31,14,-31,34r-48,0v1,-47,37,-63,79,-63xm130,-89v-35,0,-69,-3,-70,35v0,15,10,27,25,27v35,0,44,-34,45,-62xm49,-272r49,0r32,52r-29,0","w":206},"\u00e5":{"d":"98,-196v45,0,77,27,77,80r0,86r24,0r0,30r-66,0r0,-31v-11,24,-34,35,-60,35v-38,1,-61,-27,-61,-59v0,-53,58,-68,116,-61v3,-23,0,-51,-30,-51v-21,0,-31,14,-31,34r-48,0v1,-47,37,-63,79,-63xm130,-89v-35,0,-69,-3,-70,35v0,15,10,27,25,27v35,0,44,-34,45,-62xm100,-211v-20,0,-38,-17,-38,-37v0,-20,16,-37,37,-37v19,0,38,16,38,36v0,21,-16,38,-37,38xm100,-229v10,0,20,-10,20,-20v-1,-24,-41,-25,-40,1v0,10,10,19,20,19","w":206},"\u00e3":{"d":"98,-196v45,0,77,27,77,80r0,86r24,0r0,30r-66,0r0,-31v-11,24,-34,35,-60,35v-38,1,-61,-27,-61,-59v0,-53,58,-68,116,-61v3,-23,0,-51,-30,-51v-21,0,-31,14,-31,34r-48,0v1,-47,37,-63,79,-63xm130,-89v-35,0,-69,-3,-70,35v0,15,10,27,25,27v35,0,44,-34,45,-62xm77,-265v31,1,58,31,69,-2r21,0v-5,22,-16,43,-41,42v-21,-1,-60,-30,-67,2r-19,0v2,-23,15,-42,37,-42","w":206},"\u00e7":{"d":"11,-98v0,-46,22,-99,79,-98v23,0,43,5,53,27r0,-23r37,0r0,72r-39,0v-1,-23,-12,-44,-36,-44v-38,0,-43,44,-43,73v0,28,9,64,43,64v21,0,33,-18,35,-37r41,0v-2,46,-34,67,-78,68r-10,17v20,-4,42,5,42,24v-1,36,-53,36,-82,23r7,-14v15,7,36,12,46,-1v8,-18,-16,-25,-29,-16r-8,-7r17,-27v-51,-7,-75,-49,-75,-101","w":186},"\u00e9":{"d":"102,4v-58,0,-91,-47,-90,-102v0,-53,30,-98,88,-98v26,0,50,5,67,25v19,22,23,52,22,85r-128,0v0,27,11,59,44,59v19,0,32,-13,35,-31r46,0v-3,42,-45,62,-84,62xm62,-114r78,0v0,-22,-9,-52,-36,-52v-30,0,-40,27,-42,52xm73,-220r32,-52r49,0r-51,52r-30,0"},"\u00ea":{"d":"102,4v-58,0,-91,-47,-90,-102v0,-53,30,-98,88,-98v26,0,50,5,67,25v19,22,23,52,22,85r-128,0v0,27,11,59,44,59v19,0,32,-13,35,-31r46,0v-3,42,-45,62,-84,62xm62,-114r78,0v0,-22,-9,-52,-36,-52v-30,0,-40,27,-42,52xm100,-252r-25,32r-33,0r38,-52r40,0r39,52r-34,0"},"\u00eb":{"d":"102,4v-58,0,-91,-47,-90,-102v0,-53,30,-98,88,-98v26,0,50,5,67,25v19,22,23,52,22,85r-128,0v0,27,11,59,44,59v19,0,32,-13,35,-31r46,0v-3,42,-45,62,-84,62xm62,-114r78,0v0,-22,-9,-52,-36,-52v-30,0,-40,27,-42,52xm42,-223r0,-42r42,0r0,42r-42,0xm117,-223r0,-42r41,0r0,42r-41,0"},"\u00e8":{"d":"102,4v-58,0,-91,-47,-90,-102v0,-53,30,-98,88,-98v26,0,50,5,67,25v19,22,23,52,22,85r-128,0v0,27,11,59,44,59v19,0,32,-13,35,-31r46,0v-3,42,-45,62,-84,62xm62,-114r78,0v0,-22,-9,-52,-36,-52v-30,0,-40,27,-42,52xm46,-272r49,0r32,52r-29,0"},"\u00ed":{"d":"109,0r-96,0r0,-31r26,0r0,-130r-26,0r0,-31r74,0r0,161r22,0r0,31xm33,-220r33,-52r48,0r-51,52r-30,0","w":119},"\u00ee":{"d":"109,0r-96,0r0,-31r26,0r0,-130r-26,0r0,-31r74,0r0,161r22,0r0,31xm60,-252r-25,32r-33,0r38,-52r40,0r39,52r-34,0","w":119},"\u00ef":{"d":"109,0r-96,0r0,-31r26,0r0,-130r-26,0r0,-31r74,0r0,161r22,0r0,31xm2,-223r0,-42r42,0r0,42r-42,0xm77,-223r0,-42r41,0r0,42r-41,0","w":119},"\u00ec":{"d":"109,0r-96,0r0,-31r26,0r0,-130r-26,0r0,-31r74,0r0,161r22,0r0,31xm6,-272r49,0r32,52r-29,0","w":119},"\u00f1":{"d":"148,-31v-6,-49,19,-127,-28,-132v-58,5,-31,79,-37,132r23,0r0,31r-96,0r0,-31r25,0r0,-130r-25,0r0,-31r70,0r0,32v12,-24,31,-36,58,-36v81,-1,54,90,58,165r24,0r0,31r-94,0r0,-31r22,0xm87,-265v30,1,55,29,69,1r0,-3r21,0v-5,22,-16,43,-41,42v-21,-1,-60,-30,-67,2r-19,0v2,-23,15,-42,37,-42","w":226},"\u00f3":{"d":"104,-27v59,-3,58,-135,0,-138v-64,7,-58,135,0,138xm10,-97v0,-53,40,-99,92,-99v62,0,95,43,95,101v0,55,-34,99,-93,99v-53,0,-94,-46,-94,-101xm76,-220r33,-52r48,0r-51,52r-30,0","w":206},"\u00f4":{"d":"104,-27v59,-3,58,-135,0,-138v-64,7,-58,135,0,138xm10,-97v0,-53,40,-99,92,-99v62,0,95,43,95,101v0,55,-34,99,-93,99v-53,0,-94,-46,-94,-101xm103,-252r-25,32r-33,0r38,-52r40,0r39,52r-33,0","w":206},"\u00f6":{"d":"104,-27v59,-3,58,-135,0,-138v-64,7,-58,135,0,138xm10,-97v0,-53,40,-99,92,-99v62,0,95,43,95,101v0,55,-34,99,-93,99v-53,0,-94,-46,-94,-101xm45,-223r0,-42r42,0r0,42r-42,0xm120,-223r0,-42r42,0r0,42r-42,0","w":206},"\u00f2":{"d":"104,-27v59,-3,58,-135,0,-138v-64,7,-58,135,0,138xm10,-97v0,-53,40,-99,92,-99v62,0,95,43,95,101v0,55,-34,99,-93,99v-53,0,-94,-46,-94,-101xm49,-272r49,0r32,52r-29,0","w":206},"\u00f5":{"d":"104,-27v59,-3,58,-135,0,-138v-64,7,-58,135,0,138xm10,-97v0,-53,40,-99,92,-99v62,0,95,43,95,101v0,55,-34,99,-93,99v-53,0,-94,-46,-94,-101xm77,-265v31,1,58,31,69,-2r21,0v-5,22,-16,43,-41,42v-21,-1,-60,-30,-67,2r-19,0v2,-23,15,-42,37,-42","w":206},"\u0161":{"d":"153,-96v32,41,6,100,-55,100v-18,0,-37,-8,-47,-23r0,19r-34,0r0,-67r37,0v-7,41,58,58,64,17v-4,-36,-54,-23,-77,-41v-47,-37,-22,-105,41,-105v17,0,35,7,45,20r0,-16r34,0r0,62r-35,0v-2,-21,-10,-37,-33,-37v-27,-6,-44,36,-13,44v21,5,59,9,73,27xm149,-272r-39,52r-40,0r-38,-52r32,0r26,32r25,-32r34,0","w":180},"\u00fa":{"d":"108,-31v49,-4,32,-78,35,-130r-26,0r0,-31r74,0r0,161r25,0r0,31r-70,0r0,-32v-10,24,-31,36,-57,36v-77,1,-55,-90,-58,-165r-24,0r0,-31r72,0r0,115v-2,22,6,48,29,46xm86,-220r33,-52r48,0r-51,52r-30,0","w":226},"\u00fb":{"d":"108,-31v49,-4,32,-78,35,-130r-26,0r0,-31r74,0r0,161r25,0r0,31r-70,0r0,-32v-10,24,-31,36,-57,36v-77,1,-55,-90,-58,-165r-24,0r0,-31r72,0r0,115v-2,22,6,48,29,46xm113,-252r-25,32r-33,0r38,-52r40,0r39,52r-33,0","w":226},"\u00fc":{"d":"108,-31v49,-4,32,-78,35,-130r-26,0r0,-31r74,0r0,161r25,0r0,31r-70,0r0,-32v-10,24,-31,36,-57,36v-77,1,-55,-90,-58,-165r-24,0r0,-31r72,0r0,115v-2,22,6,48,29,46xm55,-223r0,-42r42,0r0,42r-42,0xm130,-223r0,-42r42,0r0,42r-42,0","w":226},"\u00f9":{"d":"108,-31v49,-4,32,-78,35,-130r-26,0r0,-31r74,0r0,161r25,0r0,31r-70,0r0,-32v-10,24,-31,36,-57,36v-77,1,-55,-90,-58,-165r-24,0r0,-31r72,0r0,115v-2,22,6,48,29,46xm59,-272r49,0r32,52r-29,0","w":226},"\u00fd":{"d":"5,-161r0,-31r92,0r0,31r-25,0r39,106r37,-106r-24,0r0,-31r85,0r0,31r-15,0r-69,173v-12,40,-37,59,-87,49r0,-33v27,4,43,-2,49,-25r-66,-164r-16,0xm80,-220r32,-52r49,0r-52,52r-29,0","w":213,"k":{",":27,".":27}},"\u00ff":{"d":"5,-161r0,-31r92,0r0,31r-25,0r39,106r37,-106r-24,0r0,-31r85,0r0,31r-15,0r-69,173v-12,40,-37,59,-87,49r0,-33v27,4,43,-2,49,-25r-66,-164r-16,0xm49,-223r0,-42r41,0r0,42r-41,0xm123,-223r0,-42r42,0r0,42r-42,0","w":213,"k":{",":27,".":27}},"\u017e":{"d":"170,0r-154,0r0,-37r101,-126r-62,0r0,31r-36,0r0,-60r151,0r0,36r-102,127r66,0r0,-35r36,0r0,64xm152,-272r-39,52r-40,0r-38,-52r33,0r26,32r25,-32r33,0","w":186},"\u2206":{"d":"10,0r0,-25r85,-237r48,0r82,237r0,25r-215,0xm51,-33r130,0r-65,-184v-16,59,-44,126,-65,184","w":234},"\u2126":{"d":"14,-33v16,-1,36,2,50,-1v-23,-22,-45,-59,-45,-107v0,-67,45,-120,109,-120v121,-1,129,173,61,228r50,0r0,33r-92,0r0,-24v23,-16,46,-53,46,-111v0,-46,-22,-91,-65,-91v-41,0,-68,40,-68,93v0,54,24,94,47,109r0,24r-93,0r0,-33","w":254},"\u03bc":{"d":"108,-31v49,-4,32,-78,35,-130r-26,0r0,-31r74,0r0,161r25,0r0,31r-70,0v-1,-10,2,-24,-1,-32v-9,24,-30,36,-56,36v-18,0,-12,11,-10,23v3,18,-11,31,-24,31v-35,0,-20,-48,-15,-73v-13,-41,-8,-94,-9,-146r-24,0r0,-31r72,0r0,115v-2,22,6,48,29,46","w":226},"\u03c0":{"d":"204,-157r-26,0v1,48,-4,121,5,157r-39,0v-11,-31,-4,-111,-6,-157r-54,0v-2,42,-12,119,-25,157r-39,0v13,-42,23,-114,24,-157v-19,0,-29,0,-37,3r-5,-27v42,-21,143,-7,206,-11","w":213},"\u20ac":{"d":"151,-184v0,-22,-11,-46,-34,-46v-23,0,-33,29,-37,62r77,0r-7,23r-72,0r-1,29r64,0r-7,23r-55,0v3,33,11,64,37,64v19,0,30,-11,34,-33r44,0v-6,49,-46,66,-79,66v-51,0,-77,-39,-84,-97r-28,0r7,-23r20,0v-1,-10,-1,-20,0,-29r-27,0r7,-23r22,0v6,-46,27,-94,78,-94v22,0,32,9,43,23r0,-22r37,0r0,77r-39,0"},"\u2113":{"d":"158,-63r17,17v-18,35,-45,49,-73,49v-44,-1,-62,-29,-63,-67v-6,5,-14,10,-20,15r-10,-22v10,-9,20,-16,29,-25r0,-96v0,-65,29,-91,62,-91v33,0,49,29,49,64v0,44,-28,86,-72,129v-3,35,11,60,34,60v21,0,37,-16,47,-33xm102,-253v-30,0,-25,83,-25,125v26,-31,46,-64,46,-93v0,-20,-6,-32,-21,-32","w":181},"\u212e":{"d":"67,-51v37,64,147,61,189,3r21,0v-26,31,-69,52,-117,52v-82,0,-147,-60,-147,-133v0,-73,65,-133,147,-133v83,1,151,60,149,137r-242,2r0,72xm252,-132v4,-22,4,-62,-1,-84v-45,-50,-137,-50,-181,1v-6,20,-4,60,-1,83r183,0","w":321},"\u2202":{"d":"37,-238r-11,-31v70,-47,160,-8,160,119v0,91,-36,153,-99,153v-49,0,-73,-47,-73,-87v0,-59,36,-95,78,-95v31,0,47,21,55,30v3,-57,-22,-107,-63,-107v-22,0,-37,10,-47,18xm91,-31v29,0,48,-42,52,-82v-4,-13,-20,-34,-44,-34v-26,0,-45,31,-45,65v0,29,15,51,37,51","w":204},"\u220f":{"d":"248,-220r-37,0r0,255r-40,0r0,-255r-85,0r0,255r-40,0r0,-255r-37,0r0,-37r239,0r0,37","w":257},"\u2211":{"d":"193,36r-185,0r0,-27r90,-120r-86,-117r0,-29r175,0r0,35r-121,1r78,104r-86,114r135,0r0,39"},"\u2219":{"d":"26,-152r49,0r0,47r-49,0r0,-47","w":100},"\u221a":{"d":"213,-307r-80,359r-33,0r-55,-163r-26,10r-7,-23r58,-24r39,122v4,11,3,25,8,31r68,-312r28,0","w":211},"\u221e":{"d":"209,-165v32,0,57,23,55,59v-5,74,-84,81,-123,20v-19,23,-37,41,-67,41v-30,0,-56,-24,-56,-59v0,-36,25,-61,59,-61v27,0,47,17,66,41v17,-18,34,-41,66,-41xm77,-67v21,0,38,-20,52,-36v-15,-20,-29,-40,-53,-40v-22,0,-35,17,-35,39v0,20,15,37,36,37xm241,-104v0,-23,-14,-39,-35,-39v-23,0,-40,25,-52,38v23,27,35,38,54,38v21,0,33,-20,33,-37","w":282},"\u222b":{"d":"49,-219v0,-69,25,-107,83,-93r-5,28v-36,-11,-41,21,-41,69v0,59,5,115,5,179v0,71,-26,112,-84,92r6,-29v35,10,42,-12,42,-63v0,-65,-6,-121,-6,-183","w":140},"\u2248":{"d":"66,-163v33,0,45,25,71,26v14,0,23,-10,33,-26r14,13v-10,21,-27,37,-48,37v-24,0,-47,-26,-72,-27v-16,0,-25,13,-34,27r-16,-14v11,-21,30,-36,52,-36xm66,-98v45,0,77,55,104,1r14,13v-10,21,-26,37,-48,37v-23,0,-48,-27,-72,-27v-17,0,-25,13,-34,26r-16,-13v11,-21,30,-37,52,-37","w":199},"\u2260":{"d":"145,-186r-14,33r51,0r0,24r-60,0r-23,50r83,0r0,24r-92,0r-18,42r-19,-8r15,-34r-50,0r0,-24r59,0r22,-50r-81,0r0,-24r90,0r18,-41","w":199},"\u2264":{"d":"181,-36r-161,-82r0,-26r161,-81r0,28r-137,67r137,66r0,28xm182,2r-164,0r0,-24r164,0r0,24","w":199},"\u2265":{"d":"20,-225r161,81r0,26r-161,82r0,-28r137,-67r-137,-66r0,-28xm182,2r-164,0r0,-24r164,0r0,24","w":199},"\u25ca":{"d":"193,-128r-72,145r-32,0r-70,-145r71,-146r33,0xm157,-127v-16,-38,-38,-70,-50,-113r-53,111v17,38,39,72,51,114v15,-40,35,-75,52,-112","w":211},"\u00a0":{"w":100},"\u00ad":{"d":"23,-84r0,-36r88,0r0,36r-88,0","w":133},"\u02c9":{"d":"102,-233r-104,0r0,-23r104,0r0,23","w":100},"\u03a9":{"d":"14,-33v16,-1,36,2,50,-1v-23,-22,-45,-59,-45,-107v0,-67,45,-120,109,-120v121,-1,129,173,61,228r50,0r0,33r-92,0r0,-24v23,-16,46,-53,46,-111v0,-46,-22,-91,-65,-91v-41,0,-68,40,-68,93v0,54,24,94,47,109r0,24r-93,0r0,-33","w":254},"\u2215":{"d":"-24,0r-29,0r139,-258r29,0","w":60}}});

Cufon.registerFont({"w":200,"face":{"font-family":"Glypha Heavy","font-weight":900,"font-stretch":"normal","units-per-em":"360","panose-1":"2 6 8 3 4 5 5 2 2 4","ascent":"258","descent":"-102","x-height":"6","bbox":"-60 -347 360 90","underline-thickness":"18","underline-position":"-18","stemh":"40","stemv":"67","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":100,"k":{"\u201c":13,"\u2018":13,"T":13,"V":13,"W":13,"Y":13,"\u00dd":13,"\u0178":13,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"!":{"d":"39,0r0,-60r63,0r0,60r-63,0xm46,-83r-13,-175r74,0r-12,175r-49,0","w":140},"\"":{"d":"34,-148r0,-110r49,0r0,110r-49,0xm117,-148r0,-110r49,0r0,110r-49,0"},"#":{"d":"112,-108r6,-42r-30,0r-6,42r30,0xm123,-185r10,-73r38,0r-10,73r27,0r0,35r-31,0r-7,42r29,0r0,35r-33,0r-10,73r-38,0r10,-73r-31,0r-10,73r-38,0r10,-73r-27,0r0,-35r32,0r6,-42r-29,0r0,-35r33,0r10,-73r38,0r-10,73r31,0"},"$":{"d":"58,-89v0,31,11,52,43,52v18,0,31,-11,31,-29v0,-19,-10,-26,-65,-45v-32,-11,-65,-26,-65,-78v0,-40,23,-69,69,-73r0,-30r47,0r0,34v10,4,16,13,23,20r0,-20r51,0r0,83r-53,0v0,-21,-7,-45,-38,-45v-21,0,-34,7,-34,23v0,18,10,23,66,45v43,17,66,34,66,80v0,51,-31,75,-81,76r0,31r-47,0r0,-39v-7,-3,-10,-11,-17,-17r0,21r-53,0r0,-89r57,0"},"%":{"d":"229,-24v17,0,19,-17,19,-40v0,-21,-2,-41,-19,-41v-17,0,-19,20,-19,41v0,23,2,40,19,40xm229,4v-42,0,-59,-27,-59,-67v0,-40,17,-68,59,-68v42,0,59,28,59,68v0,40,-17,67,-59,67xm78,-155v17,0,19,-17,19,-40v0,-21,-2,-41,-19,-41v-17,0,-20,20,-20,41v0,23,3,40,20,40xm78,-127v-42,0,-59,-27,-59,-67v0,-40,17,-68,59,-68v42,0,59,28,59,68v0,40,-17,67,-59,67xm48,9r171,-276r34,0r-171,276r-34,0","w":306},"&":{"d":"180,-118r0,-37r87,0r0,37r-24,0v-4,26,-11,42,-26,63r13,15r37,0r0,40r-77,0r-14,-15v-21,15,-47,19,-73,19v-114,0,-112,-117,-41,-149v-14,-15,-27,-33,-27,-54v0,-44,38,-63,77,-63v92,-1,87,97,31,125r41,46v5,-3,11,-21,11,-27r-15,0xm131,-207v0,-13,-8,-21,-21,-21v-32,0,-24,33,-2,53v12,-11,23,-19,23,-32xm147,-48r-48,-56v-31,16,-27,69,15,69v17,0,28,-8,33,-13","w":280},"\u2019":{"d":"40,-197r-21,0r0,-61r62,0r0,61r-18,49r-44,0","w":100,"k":{"\u2019":8,"d":18,"\u0131":18,"s":13,"\u0161":13}},"(":{"d":"69,-267r48,0v-55,97,-55,224,-1,322r-48,0v-62,-98,-59,-224,1,-322","w":119},")":{"d":"51,55r-48,0v55,-97,55,-224,1,-322r47,0v63,97,61,224,0,322","w":119},"*":{"d":"85,-214r-7,-44r44,0r-7,44r37,-20r14,45r-39,7r27,31r-35,28r-19,-38r-19,38r-35,-28r27,-31r-39,-7r14,-45"},"+":{"d":"85,-114r0,-68r46,0r0,68r68,0r0,46r-68,0r0,68r-46,0r0,-68r-68,0r0,-46r68,0","w":216},",":{"d":"40,0r-21,0r0,-60r62,0r0,60r-18,50r-44,0","w":100,"k":{"\u201d":14,"\u2019":14}},"-":{"d":"14,-81r0,-47r91,0r0,47r-91,0","w":119},".":{"d":"19,0r0,-60r62,0r0,60r-62,0","w":100,"k":{"\u201d":14,"\u2019":14}},"\/":{"d":"0,4r94,-266r46,0r-94,266r-46,0","w":140},"0":{"d":"100,-37v27,0,27,-59,27,-97v0,-65,-9,-86,-27,-86v-18,0,-27,21,-27,86v0,38,0,97,27,97xm100,-262v72,0,92,64,92,128v0,62,-14,138,-92,138v-78,0,-91,-76,-91,-138v0,-64,19,-128,91,-128"},"1":{"d":"82,-42r0,-154v-18,18,-38,33,-58,48r0,-63v19,-12,44,-30,65,-47r63,0r0,216r27,0r0,42r-129,0r0,-42r32,0"},"2":{"d":"9,-179v0,-57,36,-82,91,-83v42,0,88,16,88,73v0,22,-11,42,-26,60v-26,30,-52,58,-80,87r54,0r0,-32r56,0r0,74r-182,0r0,-54v33,-39,94,-83,109,-138v0,-15,-5,-28,-22,-28v-19,0,-24,20,-24,41r-64,0"},"3":{"d":"9,-182v1,-55,36,-80,91,-80v43,0,88,17,88,73v0,34,-21,49,-51,57v32,2,55,23,55,61v0,55,-42,75,-94,75v-41,0,-91,-14,-92,-76r67,0v0,15,5,35,24,35v27,0,28,-31,28,-36v0,-28,-16,-41,-45,-39r0,-39v43,11,56,-69,19,-69v-19,0,-23,17,-23,38r-67,0"},"4":{"d":"111,-106r-1,-96r-58,96r59,0xm111,-40r0,-26r-106,0r0,-51r89,-141r79,0r0,152r20,0r0,40r-20,0r0,26r18,0r0,40r-112,0r0,-40r32,0"},"5":{"d":"78,-68v1,15,6,31,22,31v34,-1,37,-88,0,-90v-12,0,-21,8,-22,25r-62,0r0,-156r164,0r0,44r-102,0r0,64v43,-41,114,-12,114,60v0,62,-34,94,-93,94v-46,0,-87,-21,-87,-72r66,0"},"6":{"d":"125,-195v0,-14,-5,-27,-20,-27v-30,-1,-35,52,-33,85v7,-23,27,-35,50,-35v43,0,70,33,70,85v0,58,-38,91,-92,91v-85,0,-91,-82,-91,-129v0,-71,22,-137,102,-137v59,0,79,32,79,67r-65,0xm99,-35v28,0,28,-39,28,-48v0,-17,-2,-47,-25,-47v-41,0,-37,95,-3,95"},"7":{"d":"8,-174r0,-84r184,0r0,48v-32,70,-57,138,-83,210r-72,0v24,-66,55,-145,90,-216r-64,0r0,42r-55,0"},"8":{"d":"100,-116v-41,2,-41,79,0,81v42,-2,40,-78,0,-81xm100,4v-60,0,-91,-29,-91,-71v-1,-35,22,-61,54,-68v-33,-5,-51,-26,-51,-56v0,-39,23,-71,88,-71v64,0,88,32,88,71v0,31,-19,50,-50,57v34,4,54,33,54,67v0,42,-32,71,-92,71xm100,-222v-19,0,-25,13,-25,31v0,18,6,35,25,35v19,0,26,-17,26,-35v0,-18,-7,-31,-26,-31"},"9":{"d":"75,-63v0,14,5,28,20,28v30,1,35,-53,33,-86v-7,23,-27,35,-50,35v-43,0,-69,-33,-69,-85v0,-58,37,-91,91,-91v85,0,92,82,92,129v0,71,-22,137,-102,137v-59,0,-80,-32,-80,-67r65,0xm102,-222v-28,0,-29,38,-29,47v0,17,3,48,26,48v40,0,36,-95,3,-95"},":":{"d":"19,0r0,-60r62,0r0,60r-62,0xm19,-131r0,-61r62,0r0,61r-62,0","w":100,"k":{" ":13}},";":{"d":"19,0r0,-60r62,0r0,60r-18,50r-44,0r21,-50r-21,0xm19,-131r0,-61r62,0r0,61r-62,0","w":100},"<":{"d":"17,-74r0,-34r182,-77r0,47r-115,47r115,47r0,47","w":216},"=":{"d":"17,-106r0,-47r182,0r0,47r-182,0xm17,-29r0,-47r182,0r0,47r-182,0","w":216},">":{"d":"132,-91r-115,-47r0,-47r182,77r0,34r-182,77r0,-47","w":216},"?":{"d":"5,-190v3,-49,32,-73,83,-72v45,0,83,21,83,69v0,68,-66,77,-61,114r-57,0v-10,-65,49,-73,51,-118v0,-11,-3,-25,-17,-25v-19,0,-19,22,-19,32r-63,0xm50,0r0,-60r63,0r0,60r-63,0","w":180},"@":{"d":"102,-113v0,20,11,33,29,33v43,0,72,-92,19,-92v-28,0,-48,33,-48,59xm190,-176r7,-21r28,0r-28,111v0,5,4,8,9,8v20,0,43,-31,43,-69v0,-56,-44,-87,-100,-87v-59,0,-106,45,-106,105v0,98,132,137,192,74r29,0v-62,104,-253,61,-253,-74v0,-80,65,-133,142,-133v66,0,124,44,124,109v0,70,-59,103,-88,103v-13,0,-23,-7,-24,-21v-29,40,-97,16,-97,-38v0,-64,82,-131,122,-67","w":288},"A":{"d":"188,-42r-11,-32r-84,0r-11,32r27,0r0,42r-103,0r0,-42r15,0r80,-216r80,0r79,216r14,0r0,42r-113,0r0,-42r27,0xm162,-113r-27,-91r-27,91r54,0","w":280},"B":{"d":"30,-42r0,-174r-24,0r0,-42v87,8,214,-32,217,63v1,34,-19,57,-51,64v36,3,56,25,56,61v-1,100,-131,63,-222,70r0,-42r24,0xm94,-151v35,1,62,0,62,-36v0,-35,-30,-31,-62,-31r0,67xm94,-40v35,2,67,-1,67,-35v0,-38,-30,-39,-67,-37r0,72","w":240,"k":{",":17,".":14,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13}},"C":{"d":"185,-163v0,-32,-15,-57,-48,-57v-44,0,-52,58,-52,95v0,34,6,88,52,88v37,0,41,-32,43,-48r67,0v-3,62,-51,89,-106,89v-96,0,-128,-63,-128,-135v0,-72,35,-131,112,-131v41,0,57,20,65,29r0,-25r56,0r0,95r-61,0","w":259},"D":{"d":"102,-42v49,-1,87,10,93,-91v4,-61,-26,-89,-93,-83r0,174xm33,-42r0,-174r-24,0r0,-42r138,0v81,0,120,52,120,130v0,85,-45,128,-129,128r-129,0r0,-42r24,0","w":280,"k":{"V":13,"W":6,"Y":13,"\u00dd":13,"\u0178":13,",":14,".":14,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20}},"E":{"d":"119,-151r0,-28r42,0r0,95r-42,0r0,-28r-25,0r0,70r81,0r0,-43r53,0r0,85r-222,0r0,-42r24,0r0,-174r-24,0r0,-42r222,0r0,81r-53,0r0,-39r-81,0r0,65r25,0","w":240},"F":{"d":"125,-144r0,-28r42,0r0,98r-42,0r0,-31r-25,0r0,63r34,0r0,42r-122,0r0,-42r24,0r0,-174r-24,0r0,-42r220,0r0,85r-51,0r0,-43r-81,0r0,72r25,0","w":240,"k":{"\u00ec":6,"\u00ee":6,",":40,".":40,"A":26,"\u00c6":26,"\u00c1":26,"\u00c2":26,"\u00c4":26,"\u00c0":26,"\u00c5":26,"\u00c3":26,"a":27,"\u00e6":27,"\u00e1":27,"\u00e2":27,"\u00e4":27,"\u00e0":27,"\u00e5":27,"\u00e3":27,"e":27,"\u00e9":27,"\u00ea":27,"\u00eb":27,"\u00e8":27,"i":6,"\u00ed":6,"\u00ef":6,"o":27,"\u00f8":27,"\u0153":27,"\u00f3":27,"\u00f4":27,"\u00f6":27,"\u00f2":27,"\u00f5":27,"r":6}},"G":{"d":"194,-166v-1,-24,-18,-52,-51,-52v-49,0,-58,57,-58,95v0,37,11,83,58,83v39,0,53,-28,53,-50r-27,0r0,-42r106,0r0,42r-19,0r0,90r-55,0v-1,-8,2,-20,-1,-26v-13,26,-43,30,-70,30v-73,0,-117,-47,-117,-136v0,-72,32,-130,113,-130v28,0,54,7,73,29r0,-25r55,0r0,92r-60,0","w":280,"k":{",":14,".":14}},"H":{"d":"181,-151r0,-65r-25,0r0,-42r118,0r0,42r-23,0r0,174r23,0r0,42r-118,0r0,-42r25,0r0,-67r-82,0r0,67r26,0r0,42r-119,0r0,-42r24,0r0,-174r-24,0r0,-42r119,0r0,42r-26,0r0,65r82,0","w":280},"I":{"d":"36,-42r0,-174r-26,0r0,-42r121,0r0,42r-26,0r0,174r26,0r0,42r-121,0r0,-42r26,0","w":140},"J":{"d":"106,-71r0,-145r-33,0r0,-42r121,0r0,42r-19,0v-5,97,30,220,-84,220v-59,0,-88,-28,-83,-93r67,0v1,21,-4,52,15,52v13,0,16,-10,16,-34","k":{",":14,".":14}},"K":{"d":"94,-141r66,-75r-17,0r0,-42r108,0r0,42r-19,0r-70,77r78,97r16,0r0,42r-113,0r0,-42r19,0r-68,-88r0,88r24,0r0,42r-112,0r0,-42r24,0r0,-174r-24,0r0,-42r112,0r0,42r-24,0r0,75","w":259,"k":{"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"y":13,"\u00fd":13,"\u00ff":13,"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6}},"L":{"d":"155,-42r0,-55r58,0r0,97r-207,0r0,-42r24,0r0,-174r-24,0r0,-42r128,0r0,42r-35,0r0,174r56,0","w":219,"k":{"T":27,"V":33,"W":27,"y":20,"\u00fd":20,"\u00ff":20,"Y":33,"\u00dd":33,"\u0178":33,"\u201d":33,"\u2019":33}},"M":{"d":"170,-72v17,-59,28,-125,43,-186r121,0r0,42r-21,0r0,174r21,0r0,42r-105,0r0,-42r23,0r0,-170r-55,212r-63,0r-56,-216r0,174r24,0r0,42r-97,0r0,-42r22,0r0,-174r-22,0r0,-42r124,0","w":339},"N":{"d":"199,-64v4,-47,0,-102,1,-152r-28,0r0,-42r102,0r0,42r-21,0r0,216r-86,0r-84,-199r0,157r28,0r0,42r-105,0r0,-42r24,0r0,-174r-24,0r0,-42r115,0","w":280,"k":{",":13,".":13}},"O":{"d":"195,-129v0,-35,-7,-91,-55,-91v-48,0,-55,56,-55,91v0,35,7,92,55,92v48,0,55,-57,55,-92xm267,-129v0,77,-43,133,-127,133v-84,0,-127,-56,-127,-133v0,-77,43,-133,127,-133v84,0,127,56,127,133","w":280,"k":{"V":13,"W":6,"Y":13,"\u00dd":13,"\u0178":13,",":14,".":14,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"X":6}},"P":{"d":"33,-42r0,-174r-24,0r0,-42r137,0v51,0,82,31,82,82v0,73,-53,87,-128,82r0,52r32,0r0,42r-123,0r0,-42r24,0xm100,-136v38,2,58,-4,58,-43v0,-35,-23,-39,-58,-37r0,80","w":240,"k":{",":40,".":40,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e4":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13}},"Q":{"d":"275,0r-135,4v-84,0,-127,-56,-127,-133v0,-77,43,-133,127,-133v84,0,127,56,127,133v0,29,-16,74,-46,89v17,-2,36,-2,54,-2r0,42xm140,-37v48,0,55,-57,55,-92v0,-35,-7,-91,-55,-91v-48,0,-55,56,-55,91v0,35,7,92,55,92","w":280,"k":{"U":-4,"\u00da":-4,"\u00db":-4,"\u00dc":-4,"\u00d9":-4}},"R":{"d":"171,0r-25,-78v-6,-23,-17,-29,-46,-27r0,63r25,0r0,42r-116,0r0,-42r24,0r0,-174r-24,0r0,-42v88,6,219,-29,219,68v0,42,-22,57,-59,66v48,-2,46,47,59,82r21,0r0,42r-78,0xm100,-144v30,-1,55,9,61,-39v4,-34,-28,-34,-61,-33r0,72","w":259,"k":{"O":13,"\u00d8":13,"\u0152":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,"T":6,"V":13,"W":13,"Y":13,"\u00dd":13,"\u0178":13}},"S":{"d":"69,-89v0,32,12,52,44,52v17,0,31,-11,31,-29v0,-19,-10,-26,-66,-45v-33,-11,-66,-27,-66,-69v0,-56,29,-82,84,-82v20,-1,46,7,58,24r0,-20r53,0r0,83r-55,0v0,-21,-8,-45,-39,-45v-20,0,-34,7,-34,23v0,18,10,23,67,45v44,17,67,31,67,77v0,55,-35,79,-89,79v-25,0,-44,-3,-58,-25r0,21r-56,0r0,-89r59,0","w":219,"k":{",":14,".":14}},"T":{"d":"183,-166r0,-50r-29,0r0,174r29,0r0,42r-126,0r0,-42r28,0r0,-174r-28,0r0,50r-56,0r0,-92r238,0r0,92r-56,0","w":239,"k":{"\u00f9":13,"\u00fc":13,"\u00f2":13,"\u00f6":13,"\u00f4":13,"\u00e8":13,"\u00eb":13,"\u00ea":13,"\u00e3":13,"\u00e5":13,"\u00e0":13,"\u00e2":13,"w":20,"y":20,"\u00fd":20,"\u00ff":20,",":27,".":27,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"a":13,"\u00e6":13,"\u00e1":13,"\u00e4":13,"e":13,"\u00e9":13,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f5":13,"r":6,"-":27,"u":13,"\u00fa":13,"\u00fb":13,":":9,";":9}},"U":{"d":"152,-216r0,-42r102,0r0,42r-20,0r0,127v0,67,-42,93,-105,93v-141,0,-98,-105,-105,-220r-18,0r0,-42r113,0r0,42r-25,0r0,125v0,28,8,54,41,54v69,0,34,-113,42,-179r-25,0","w":259,"k":{",":14,".":14,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20}},"V":{"d":"144,-58v19,-50,33,-106,51,-158r-27,0r0,-42r106,0r0,42r-16,0r-81,216r-75,0r-79,-216r-17,0r0,-42r117,0r0,42r-28,0","w":280,"k":{"\u00f6":20,"\u00ee":13,"\u00e8":20,"\u00eb":20,"\u00e3":20,"\u00e5":20,"\u00e0":20,"\u00e4":20,"\u00e2":20,"G":13,"O":13,"\u00d8":13,"\u0152":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,",":40,".":40,"A":33,"\u00c6":33,"\u00c1":33,"\u00c2":33,"\u00c4":33,"\u00c0":33,"\u00c5":33,"\u00c3":33,"a":20,"\u00e6":20,"\u00e1":20,"e":20,"\u00e9":20,"\u00ea":20,"i":13,"\u00ed":13,"\u00ef":13,"\u00ec":13,"o":20,"\u00f8":20,"\u0153":20,"\u00f3":20,"\u00f4":20,"\u00f2":20,"\u00f5":20,"-":27,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,":":20,";":20}},"W":{"d":"256,-55v12,-51,18,-108,29,-161r-26,0r0,-42r95,0r0,42r-13,0r-50,216r-79,0r-29,-199r-2,0r-34,199r-79,0r-48,-216r-14,0r0,-42r105,0r0,42r-26,0r27,161r38,-203r72,0","w":360,"k":{"\u00fc":6,"\u00f6":13,"\u00e4":13,"O":6,"\u00d8":6,"\u0152":6,"\u00d3":6,"\u00d4":6,"\u00d6":6,"\u00d2":6,"\u00d5":6,"y":6,"\u00fd":6,"\u00ff":6,",":20,".":20,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"i":6,"\u00ed":6,"\u00ee":6,"\u00ef":6,"\u00ec":6,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f2":13,"\u00f5":13,"-":20,"u":6,"\u00fa":6,"\u00fb":6,"\u00f9":6,":":13,";":13}},"X":{"d":"146,-162r39,-54r-24,0r0,-42r109,0r0,42r-18,0r-70,85r74,89r18,0r0,42r-121,0r0,-42r25,0r-46,-57r-42,57r27,0r0,42r-111,0r0,-42r17,0r75,-89r-71,-85r-16,0r0,-42r119,0r0,42r-25,0","w":280},"Y":{"d":"135,-145r39,-71r-23,0r0,-42r103,0r0,42r-15,0r-74,123r0,51r30,0r0,42r-130,0r0,-42r30,0r0,-51r-75,-123r-14,0r0,-42r115,0r0,42r-25,0","w":259,"k":{"\u00f6":25,"O":13,"\u00d8":13,"\u0152":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,",":27,".":27,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"a":25,"\u00e6":25,"\u00e1":25,"\u00e2":25,"\u00e4":25,"\u00e0":25,"\u00e5":25,"\u00e3":25,"e":25,"\u00e9":25,"\u00ea":25,"\u00eb":25,"\u00e8":25,"i":13,"\u00ed":13,"\u00ee":13,"\u00ef":13,"\u00ec":13,"o":25,"\u00f8":25,"\u0153":25,"\u00f3":25,"\u00f4":25,"\u00f2":25,"\u00f5":25,"-":33,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,":":20,";":20}},"Z":{"d":"174,-42r0,-46r55,0r0,88r-218,0r0,-51r136,-165r-77,0r0,44r-55,0r0,-86r212,0r0,52r-138,164r85,0","w":240},"[":{"d":"23,55r0,-322r84,0r0,40r-28,0r0,242r28,0r0,40r-84,0","w":119},"\\":{"d":"46,-262r94,266r-46,0r-94,-266r46,0","w":140},"]":{"d":"41,15r0,-242r-28,0r0,-40r83,0r0,322r-83,0r0,-40r28,0","w":119},"^":{"d":"26,-126r63,-132r38,0r63,132r-42,0r-40,-90r-40,90r-42,0","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"\u2018":{"d":"19,-148r0,-60r18,-50r44,0r-21,50r21,0r0,60r-62,0","w":100,"k":{"\u2018":8,"A":40,"\u00c6":40,"\u00c1":40,"\u00c2":40,"\u00c4":40,"\u00c0":40,"\u00c5":40,"\u00c3":40}},"a":{"d":"136,0v-1,-8,2,-21,-1,-27v-16,27,-30,33,-61,33v-57,0,-65,-42,-65,-57v2,-68,63,-73,123,-69v0,-20,0,-47,-26,-47v-20,0,-23,14,-26,34r-62,0v3,-53,38,-69,87,-69v116,0,84,73,89,162r18,0r0,40r-76,0xm133,-89v-31,-1,-60,1,-61,32v0,13,7,23,22,23v28,0,39,-30,39,-55","w":219},"b":{"d":"29,-40r0,-187r-20,0r0,-40r87,0r0,98v6,-18,29,-33,60,-33v74,0,74,81,74,104v0,51,-19,104,-77,104v-31,1,-48,-12,-62,-37r0,31r-82,0r0,-40r20,0xm94,-98v0,22,5,62,35,62v28,0,32,-27,32,-62v0,-38,-4,-62,-32,-62v-30,0,-35,38,-35,62","w":240,"k":{",":6,".":6}},"c":{"d":"145,-175v3,-4,0,-15,1,-21r51,0r0,74r-56,0v0,-17,-4,-38,-27,-38v-30,0,-31,37,-31,66v0,29,6,60,31,60v24,0,26,-25,27,-33r56,0v-4,51,-34,73,-84,73v-69,0,-99,-43,-99,-109v0,-52,27,-99,84,-99v21,0,38,7,47,27","k":{",":4,".":4}},"d":{"d":"112,-160v-28,0,-33,24,-33,62v0,35,5,62,33,62v30,0,35,-40,35,-62v0,-24,-5,-62,-35,-62xm144,-227r-22,0r0,-40r89,0r0,227r20,0r0,40r-82,0v-1,-10,2,-23,-1,-31v-12,28,-32,37,-61,37v-58,0,-77,-53,-77,-104v0,-50,14,-104,79,-104v23,0,48,9,55,33r0,-58","w":240},"e":{"d":"73,-117r60,0v0,-14,-1,-45,-28,-45v-30,0,-32,37,-32,45xm135,-55r63,0v-8,46,-49,61,-91,61v-72,0,-101,-43,-101,-105v0,-61,38,-103,100,-103v71,0,98,52,93,120r-126,0v0,21,4,48,34,48v22,0,28,-15,28,-21"},"f":{"d":"32,-40r0,-117r-23,0r0,-39r23,0v-6,-70,45,-87,111,-73r0,42v-22,-6,-53,0,-44,31r33,0r0,39r-33,0r0,117r29,0r0,40r-118,0r0,-40r22,0","w":140,"k":{"\u201d":-6,"\u2019":-6}},"g":{"d":"89,8v1,13,11,16,28,16v30,3,32,-31,28,-58v-10,21,-34,31,-58,31v-62,0,-77,-54,-77,-98v0,-100,96,-131,139,-68r0,-27r82,0r0,39r-20,0r0,144v0,58,-47,74,-97,74v-48,0,-86,-7,-92,-53r67,0xm111,-45v50,1,46,-114,2,-115v-28,0,-34,32,-34,53v0,19,1,62,32,62","w":240,"k":{",":20,".":20}},"h":{"d":"148,-40r0,-81v0,-16,0,-37,-24,-37v-40,-1,-26,76,-28,118r18,0r0,40r-105,0r0,-40r20,0r0,-187r-20,0r0,-40r87,0r0,100v11,-23,29,-35,58,-35v27,0,61,10,61,54r0,108r18,0r0,40r-103,0r0,-40r18,0","w":240},"i":{"d":"29,-40r0,-117r-20,0r0,-39r87,0r0,156r18,0r0,40r-105,0r0,-40r20,0xm29,-215r0,-56r67,0r0,56r-67,0","w":119},"j":{"d":"29,1r0,-158r-20,0r0,-39r87,0r0,199v0,45,-11,58,-55,58v-20,0,-31,-2,-39,-3r0,-39v18,2,31,-5,27,-18xm29,-215r0,-56r67,0r0,56r-67,0","w":119},"k":{"d":"96,-114r56,-48r-27,0r0,-34r106,0r0,37v-35,-2,-42,24,-64,35r48,84r16,0r0,40r-100,0r0,-40r17,0r-26,-47r-26,21r0,26r13,0r0,40r-100,0r0,-40r20,0r0,-187r-20,0r0,-40r87,0r0,153","w":240},"l":{"d":"29,-40r0,-187r-20,0r0,-40r87,0r0,227r18,0r0,40r-105,0r0,-40r20,0","w":119},"m":{"d":"266,-40r0,-86v0,-16,-4,-32,-24,-32v-42,1,-25,76,-28,118r17,0r0,40r-101,0r0,-40r17,0r0,-86v0,-16,-3,-32,-23,-32v-42,1,-25,76,-28,118r17,0r0,40r-104,0r0,-40r20,0r0,-117r-20,0r0,-39r83,0v1,10,-2,25,1,33v12,-52,103,-52,116,-5v12,-26,35,-34,64,-34v27,0,60,10,60,54r0,108r18,0r0,40r-103,0r0,-40r18,0","w":360},"n":{"d":"148,-40r0,-81v0,-16,0,-37,-24,-37v-40,-1,-26,76,-28,118r18,0r0,40r-105,0r0,-40r20,0r0,-117r-20,0r0,-39r83,0v1,10,-2,25,1,33v9,-29,33,-39,61,-39v27,0,61,10,61,54r0,108r18,0r0,40r-103,0r0,-40r18,0","w":240},"o":{"d":"10,-98v0,-61,38,-104,100,-104v63,0,100,43,100,104v0,60,-38,104,-100,104v-61,0,-100,-44,-100,-104xm110,-160v-20,0,-31,18,-31,62v0,45,10,62,31,62v20,0,31,-17,31,-62v0,-45,-10,-62,-31,-62","w":219},"p":{"d":"29,19r0,-176r-20,0r0,-39r82,0v1,10,-2,24,1,32v12,-27,35,-38,61,-38v61,0,77,51,77,103v0,54,-16,105,-78,105v-26,0,-46,-12,-56,-32r0,45r24,0r0,39r-111,0r0,-39r20,0xm94,-98v0,22,5,62,35,62v28,0,32,-27,32,-62v0,-38,-4,-62,-32,-62v-30,0,-35,38,-35,62","w":240},"q":{"d":"144,19r0,-45v-5,17,-28,32,-56,32v-62,0,-78,-51,-78,-105v0,-52,16,-103,82,-103v23,-1,46,13,57,33r0,-27r82,0r0,39r-20,0r0,176r20,0r0,39r-111,0r0,-39r24,0xm147,-98v0,-24,-5,-62,-35,-62v-28,0,-33,24,-33,62v0,35,5,62,33,62v30,0,35,-40,35,-62","w":240},"r":{"d":"29,-40r0,-117r-20,0r0,-39r82,0v1,12,-2,29,1,39v5,-30,34,-53,67,-42r0,61v-51,-18,-70,37,-63,98r25,0r0,40r-112,0r0,-40r20,0","w":159,"k":{",":20,".":20,"-":13}},"s":{"d":"63,-67v-10,40,55,47,58,17v2,-17,-42,-25,-58,-31v-33,-13,-54,-24,-54,-61v0,-62,86,-79,122,-38r0,-16r47,0r0,62r-51,0v0,-21,-9,-31,-31,-31v-31,0,-37,28,-10,35v43,12,95,20,95,73v0,41,-29,63,-69,63v-36,0,-47,-14,-53,-26r0,20r-49,0r0,-67r53,0","w":193},"t":{"d":"107,-34v14,-1,9,-22,10,-36r36,0v5,49,-14,76,-59,76v-91,0,-59,-88,-65,-163r-23,0r0,-39r23,0r0,-29r67,-23r0,52r44,0r0,39r-44,0r0,103v0,12,2,20,11,20","w":159},"u":{"d":"20,-60r0,-97r-20,0r0,-39r87,0r0,127v0,17,6,28,23,28v41,0,20,-74,25,-116r-19,0r0,-39r88,0r0,156r18,0r0,40r-81,0v-1,-9,2,-23,-1,-30v-8,25,-36,36,-63,36v-57,0,-57,-45,-57,-66","w":226},"v":{"d":"114,-53v13,-32,19,-70,30,-104r-17,0r0,-39r89,0r0,39r-10,0r-56,157r-79,0r-55,-157r-12,0r0,-39r100,0r0,39r-18,0","w":219,"k":{",":32,".":32}},"w":{"d":"240,-47v10,-34,14,-74,23,-110r-19,0r0,-39r89,0r0,39r-13,0r-43,157r-82,0r-24,-140r-28,140r-82,0r-42,-157r-13,0r0,-39r98,0r0,39r-19,0r22,110r29,-149r76,0","w":339,"k":{",":27,".":27}},"x":{"d":"3,0r0,-40r12,0r51,-62r-45,-55r-15,0r0,-39r100,0r0,39r-18,0r28,34r27,-34r-18,0r0,-39r89,0r0,39r-13,0r-47,55r49,62r14,0r0,40r-100,0r0,-40r18,0r-30,-39r-32,39r19,0r0,40r-89,0","w":219},"y":{"d":"4,-157r0,-39r102,0r0,39r-19,0r30,85r27,-85r-17,0r0,-39r89,0r0,39r-11,0r-72,171v-5,37,-56,56,-98,44r0,-45v14,6,44,5,46,-12r-63,-158r-14,0","w":219,"k":{",":32,".":32}},"z":{"d":"135,-37r0,-25r51,0r0,62r-172,0r0,-48r102,-114r-49,0r0,24r-51,0r0,-58r167,0r0,47r-102,112r54,0"},"{":{"d":"12,-86r0,-40v21,1,22,-5,22,-42v0,-63,1,-111,74,-99r0,40v-28,-4,-19,41,-19,67v0,29,-8,46,-37,55v47,9,35,51,37,99v0,16,6,22,19,21r0,40v-48,3,-74,-7,-74,-55v0,-30,11,-96,-22,-86","w":119},"|":{"d":"17,90r0,-360r46,0r0,360r-46,0","w":79},"}":{"d":"12,15v30,3,19,-42,19,-67v0,-29,8,-45,37,-54v-47,-9,-36,-52,-37,-99v0,-16,-5,-23,-19,-22r0,-40v48,-3,74,7,74,55v0,30,-11,96,22,86r0,40v-21,-1,-22,5,-22,42v0,63,-1,111,-74,99r0,-40","w":119},"~":{"d":"38,-57r-13,-35v9,-21,25,-33,45,-33v26,0,60,26,77,26v11,0,18,-7,31,-27r13,36v-9,21,-25,33,-45,33v-26,0,-60,-27,-77,-27v-11,0,-18,7,-31,27","w":216},"\u00a1":{"d":"39,-141r0,-61r63,0r0,61r-63,0xm33,56r13,-175r49,0r12,175r-74,0","w":140},"\u00a2":{"d":"90,4v-97,-7,-104,-193,-5,-206r0,-30r41,0r0,36v9,4,14,13,20,21r0,-21r51,0r0,74r-56,0v0,-17,-4,-38,-27,-38v-30,0,-31,37,-31,66v0,29,6,60,31,60v24,0,26,-25,27,-33r56,0v-4,44,-26,67,-65,71r0,38r-42,0r0,-38"},"\u00a3":{"d":"136,-42r0,-41r61,0r0,83r-192,0r0,-42r24,0r0,-75r-26,0r0,-40r26,0r0,-31v0,-60,46,-74,85,-74v50,0,85,13,85,74r-62,0v1,-18,-1,-34,-21,-34v-32,0,-16,38,-20,65r34,0r0,40r-34,0r0,75r40,0"},"\u2044":{"d":"-60,9r144,-276r36,0r-144,276r-36,0","w":60},"\u00a5":{"d":"104,-145r30,-71r-19,0r0,-42r85,0r0,42r-17,0r-36,80r35,0r0,26r-47,0v-2,7,-7,11,-8,19r55,0r0,25r-55,0r0,24r23,0r0,42r-100,0r0,-42r23,0r0,-24r-55,0r0,-25v17,-2,42,4,55,-2r-7,-17r-48,0r0,-26r35,0r-38,-80r-15,0r0,-42r94,0r0,42r-21,0"},"\u0192":{"d":"69,-168v4,-70,52,-109,128,-90r-8,42v-39,-10,-49,16,-50,48r37,0r-6,40r-38,0v-22,78,-4,196,-108,189v-14,0,-27,-2,-35,-3r7,-42v29,6,48,-8,47,-31r20,-113r-33,0r7,-40r32,0"},"\u00a7":{"d":"131,-111v0,-9,-3,-21,-51,-35v-14,9,-15,19,-15,25v0,12,9,22,51,36v13,-10,15,-19,15,-26xm122,-199v5,-26,-41,-37,-41,-9v0,35,103,25,103,88v0,24,-11,39,-34,46v67,36,12,109,-52,109v-39,0,-80,-18,-80,-61r60,0v-2,29,42,32,42,5v0,-36,-104,-25,-104,-89v-1,-24,15,-39,34,-48v-64,-36,-13,-104,53,-104v48,0,79,22,79,63r-60,0"},"\u00a4":{"d":"150,-202r21,-21r23,23r-20,21v20,21,20,78,0,101r20,20r-23,23r-21,-20v-19,19,-81,21,-100,0r-21,20r-23,-23r21,-20v-20,-23,-22,-79,0,-101r-21,-21r23,-23r21,21v21,-21,79,-21,100,0xm148,-129v0,-26,-22,-47,-48,-47v-26,0,-47,21,-47,47v0,26,21,48,47,48v26,0,48,-22,48,-48"},"'":{"d":"26,-148r0,-110r49,0r0,110r-49,0","w":100},"\u201c":{"d":"115,-148r0,-60r18,-50r44,0r-21,50r21,0r0,60r-62,0xm23,-148r0,-60r18,-50r44,0r-21,50r21,0r0,60r-62,0","k":{"A":40,"\u00c6":40,"\u00c1":40,"\u00c2":40,"\u00c4":40,"\u00c0":40,"\u00c5":40,"\u00c3":40}},"\u00ab":{"d":"12,-104r30,-79r44,0r-30,79r30,78r-44,0xm79,-104r30,-79r44,0r-30,79r30,78r-44,0","w":180},"\u2039":{"d":"12,-104r30,-79r44,0r-30,79r30,78r-44,0","w":113},"\u203a":{"d":"101,-104r-30,78r-44,0r30,-78r-30,-79r44,0","w":113},"\u2013":{"d":"0,-81r0,-47r180,0r0,47r-180,0","w":180},"\u2020":{"d":"70,-193r0,-65r60,0r0,65r55,0r0,44r-55,0r0,149r-60,0r0,-149r-55,0r0,-44r55,0"},"\u2021":{"d":"70,-94r0,-70r-55,0r0,-44r55,0r0,-50r60,0r0,50r55,0r0,44r-55,0r0,70r55,0r0,44r-55,0r0,50r-60,0r0,-50r-55,0r0,-44r55,0"},"\u00b7":{"d":"20,-72r0,-58r60,0r0,58r-60,0","w":100},"\u00b6":{"d":"139,30r0,-268r-24,0r0,268r-44,0r0,-151v-38,-3,-56,-32,-56,-71v2,-93,90,-59,168,-66r0,288r-44,0","w":223},"\u2022":{"d":"33,-64r0,-129r114,0r0,129r-114,0","w":180},"\u201a":{"d":"81,-60r0,60r-18,50r-44,0r21,-50r-21,0r0,-60r62,0","w":100},"\u201e":{"d":"85,-60r0,60r-18,50r-44,0r21,-50r-21,0r0,-60r62,0xm177,-60r0,60r-18,50r-44,0r21,-50r-21,0r0,-60r62,0"},"\u201d":{"d":"44,-197r-21,0r0,-61r62,0r0,61r-18,49r-44,0xm136,-197r-21,0r0,-61r62,0r0,61r-18,49r-44,0","k":{" ":13}},"\u00bb":{"d":"168,-104r-30,78r-44,0r30,-78r-30,-79r44,0xm101,-104r-30,78r-44,0r30,-78r-30,-79r44,0","w":180},"\u2026":{"d":"29,0r0,-60r62,0r0,60r-62,0xm149,0r0,-60r62,0r0,60r-62,0xm269,0r0,-60r62,0r0,60r-62,0","w":360},"\u2030":{"d":"305,-24v21,-1,20,-77,0,-78v-21,1,-20,77,0,78xm305,4v-41,0,-54,-36,-54,-67v0,-31,13,-67,54,-67v41,0,53,36,53,67v0,31,-12,67,-53,67xm55,-156v21,-1,20,-77,0,-78v-21,1,-20,77,0,78xm55,-128v-41,0,-53,-36,-53,-67v0,-31,12,-67,53,-67v41,0,54,36,54,67v0,31,-13,67,-54,67xm186,4v-41,0,-54,-36,-54,-67v0,-31,13,-67,54,-67v41,0,53,36,53,67v0,31,-12,67,-53,67xm186,-24v21,-1,20,-77,0,-78v-21,1,-20,77,0,78xm216,-267r-156,276r-35,0r157,-276r34,0","w":360},"\u00bf":{"d":"175,-12v-3,49,-32,73,-83,72v-45,0,-83,-21,-83,-69v0,-68,66,-77,61,-114r57,0v10,65,-49,73,-51,118v0,11,3,26,17,26v19,0,19,-23,19,-33r63,0xm67,-141r0,-61r63,0r0,61r-63,0","w":180},"`":{"d":"40,-225r-56,-53r65,0r35,53r-44,0","w":100},"\u00b4":{"d":"16,-225r35,-53r65,0r-56,53r-44,0","w":100},"\u02c6":{"d":"71,-225r-21,-28r-21,28r-47,0r40,-53r56,0r40,53r-47,0","w":100},"\u02dc":{"d":"25,-274v24,-1,58,34,68,0r25,0v-4,26,-18,45,-43,45v-31,0,-58,-29,-67,4r-26,0v3,-25,17,-48,43,-49","w":100},"\u00af":{"d":"-8,-235r0,-31r116,0r0,31r-116,0","w":100},"\u02d8":{"d":"-13,-278r26,0v2,32,72,31,74,0r26,0v-1,35,-26,53,-63,53v-36,0,-61,-18,-63,-53","w":100},"\u02d9":{"d":"22,-225r0,-44r56,0r0,44r-56,0","w":100},"\u00a8":{"d":"61,-225r0,-44r55,0r0,44r-55,0xm-16,-225r0,-44r55,0r0,44r-55,0","w":100},"\u02da":{"d":"10,-258v0,-22,18,-41,40,-41v22,0,40,19,40,41v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm33,-258v0,9,8,16,17,16v9,0,17,-7,17,-16v0,-9,-8,-17,-17,-17v-9,0,-17,8,-17,17","w":100},"\u00b8":{"d":"58,51v1,-22,-29,-5,-37,-18r20,-33r20,0v-4,7,-13,16,-14,22v20,-6,46,3,46,26v0,40,-58,41,-90,26r7,-17v14,6,48,11,48,-6","w":100},"\u02dd":{"d":"-22,-225r36,-53r64,0r-56,53r-44,0xm54,-225r35,-53r65,0r-56,53r-44,0","w":100},"\u02db":{"d":"33,49v5,-30,25,-54,65,-49v-16,11,-31,26,-31,41v-2,31,26,22,40,16r4,19v-24,11,-85,13,-78,-27","w":100},"\u02c7":{"d":"50,-249r21,-29r47,0r-40,53r-56,0r-40,-53r47,0","w":100},"\u2014":{"d":"0,-81r0,-47r360,0r0,47r-360,0","w":360},"\u00c6":{"d":"242,-84r0,-28r-18,0r11,72r63,0r0,-45r51,0r0,85r-202,0r0,-42r27,0r-6,-35r-77,0r-13,35r24,0r0,42r-96,0r0,-42r15,0r89,-216r239,0r0,81r-51,0r0,-41r-93,0r11,67r26,0r0,-28r42,0r0,95r-42,0xm162,-117r-18,-99r-39,99r57,0","w":360},"\u00aa":{"d":"6,-172v2,-41,40,-42,80,-41v0,-11,0,-27,-17,-27v-13,0,-16,8,-18,20r-39,0v2,-32,24,-42,56,-42v74,0,54,42,57,97r12,0r0,24r-49,0v-1,-5,2,-13,-1,-16v-10,16,-19,20,-39,20v-37,0,-42,-26,-42,-35xm86,-194v-31,-9,-58,25,-26,33v19,0,26,-18,26,-33","w":142},"\u0141":{"d":"30,-42r0,-46r-24,12r0,-37r24,-12r0,-91r-24,0r0,-42r128,0r0,42r-35,0r0,58r67,-32r0,36r-67,33r0,79r56,0r0,-55r58,0r0,97r-207,0r0,-42r24,0","w":219,"k":{"T":27,"V":33,"W":27,"y":20,"\u00fd":20,"\u00ff":20,"Y":33,"\u00dd":33,"\u0178":33,"\u201d":33,"\u2019":33}},"\u00d8":{"d":"191,-170r-93,106v8,15,21,27,42,27v61,0,60,-79,51,-133xm89,-88r94,-106v-8,-15,-22,-26,-43,-26v-61,0,-59,78,-51,132xm221,-238r28,-31r16,15r-28,32v62,79,27,226,-97,226v-33,0,-61,-9,-81,-24r-28,32r-16,-16r28,-32v-62,-80,-27,-226,97,-226v33,0,60,8,81,24","w":280,"k":{"V":13,"W":6,"Y":13,"\u00dd":13,"\u0178":13,",":14,".":14,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"X":6}},"\u0152":{"d":"165,-41r0,-178v-55,-7,-80,17,-85,93v-3,48,29,104,85,85xm202,0r-67,4v-84,0,-124,-60,-124,-138v0,-94,78,-144,178,-124r160,0r0,81r-49,0r0,-41r-75,0r0,67r24,0r0,-28r37,0r0,95r-37,0r0,-28r-24,0r0,72r75,0r0,-45r49,0r0,85r-147,0","w":360,"k":{"V":13,"W":6,"Y":13,"\u00dd":13,"\u0178":13,",":14,".":14,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"X":6}},"\u00ba":{"d":"131,-199v0,36,-25,62,-65,62v-40,0,-65,-26,-65,-62v0,-37,25,-63,65,-63v41,0,65,26,65,63xm45,-199v0,12,0,36,21,36v21,0,21,-24,21,-36v0,-13,1,-37,-21,-37v-21,0,-21,24,-21,37","w":132},"\u00e6":{"d":"130,-82v-29,-1,-57,-1,-57,29v0,13,10,24,22,24v27,0,34,-27,35,-53xm307,-56v-3,70,-130,88,-155,23v-11,32,-39,39,-70,39v-50,0,-71,-25,-71,-60v1,-66,60,-63,119,-63v0,-21,0,-48,-26,-48v-18,0,-23,10,-24,26r-61,0v3,-43,32,-63,77,-63v27,0,54,4,66,31v16,-23,36,-31,64,-31v88,0,83,73,83,120r-117,0v0,26,8,51,28,51v14,0,22,-12,24,-25r63,0xm192,-117r52,0v0,-22,-1,-48,-25,-48v-22,0,-28,27,-27,48","w":320},"\u0131":{"d":"29,-40r0,-117r-20,0r0,-39r87,0r0,156r18,0r0,40r-105,0r0,-40r20,0","w":119},"\u0142":{"d":"96,-193r18,-16r0,36r-18,16r0,117r18,0r0,40r-105,0r0,-40r20,0r0,-60r-20,18r0,-36r20,-18r0,-91r-20,0r0,-40r87,0r0,74","w":119},"\u00f8":{"d":"10,0r24,-27v-51,-62,-17,-175,76,-175v24,0,44,7,60,18r22,-25r16,13r-23,26v53,61,18,176,-75,176v-24,0,-45,-7,-61,-19r-23,26xm80,-81r54,-62v-5,-12,-13,-17,-24,-17v-24,-5,-35,39,-30,79xm140,-118r-55,63v5,13,13,19,25,19v25,7,35,-43,30,-82","w":219},"\u0153":{"d":"310,-57v-4,66,-109,87,-144,33v-16,23,-38,30,-65,30v-64,0,-92,-44,-92,-104v0,-60,32,-104,92,-104v27,0,52,6,65,31v14,-24,38,-31,61,-31v83,0,85,63,84,120r-114,0v0,18,3,48,27,48v18,0,20,-15,21,-23r65,0xm197,-117r49,0v0,-17,0,-48,-23,-48v-26,0,-26,36,-26,48xm134,-99v0,-32,-1,-66,-27,-66v-30,0,-31,49,-31,70v0,29,3,61,28,61v22,0,30,-25,30,-65","w":320},"\u00df":{"d":"130,0r0,-40v18,0,31,-13,31,-41v0,-28,-14,-41,-41,-41r0,-44v20,0,30,-15,30,-37v0,-18,-5,-30,-25,-30v-24,0,-29,22,-29,43r0,150r16,0r0,40r-103,0r0,-40r20,0r0,-140v0,-61,35,-93,99,-93v36,0,89,9,89,67v1,35,-19,51,-49,62v37,3,62,25,62,63v1,60,-35,86,-100,81","w":240},"\u00b9":{"d":"52,-131r0,-91v-12,11,-25,19,-38,28r0,-37v13,-7,29,-19,43,-29r39,0r0,129r19,0r0,26r-84,0r0,-26r21,0","w":129},"\u00ac":{"d":"152,-39r0,-67r-135,0r0,-47r182,0r0,114r-47,0","w":216},"\u00b5":{"d":"116,-157r0,-39r88,0r0,156r18,0r0,40r-81,0v-1,-9,2,-23,-1,-30v-8,27,-41,36,-53,36r0,52r-67,0r0,-215r-20,0r0,-39r87,0r0,127v0,17,6,28,23,28v41,0,20,-74,25,-116r-19,0","w":226},"\u2122":{"d":"53,-109r0,-123r-43,0r0,-26r119,0r0,26r-43,0r0,123r-33,0xm300,-109r-1,-113r-42,113r-22,0r-43,-113r0,113r-30,0r0,-149r46,0r38,101r37,-101r47,0r0,149r-30,0","w":360},"\u00d0":{"d":"102,-42v49,-1,87,10,93,-91v4,-61,-26,-89,-93,-83r0,65r48,0r0,37r-48,0r0,72xm33,-42r0,-72r-24,0r0,-37r24,0r0,-65r-24,0r0,-42r138,0v81,0,120,52,120,130v0,85,-45,128,-129,128r-129,0r0,-42r24,0","w":280,"k":{"V":13,"W":6,"Y":13,"\u00dd":13,"\u0178":13,",":14,".":14,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20}},"\u00bd":{"d":"52,9r143,-276r36,0r-143,276r-36,0xm4,-194r0,-37v13,-7,28,-19,42,-29r39,0r0,129r19,0r0,26r-83,0r0,-26r20,0r0,-91v-12,11,-24,19,-37,28xm175,-108v-1,-35,25,-49,59,-49v27,0,57,9,57,43v0,42,-47,61,-69,88r34,0r0,-19r37,0r0,45r-118,0r0,-32v20,-22,73,-65,72,-85v0,-9,-5,-14,-15,-14v-13,0,-16,12,-16,23r-41,0","w":300},"\u00b1":{"d":"85,-143r0,-39r46,0r0,39r68,0r0,47r-68,0r0,38r-46,0r0,-38r-68,0r0,-47r68,0xm17,0r0,-47r182,0r0,47r-182,0","w":216},"\u00de":{"d":"33,-42r0,-174r-24,0r0,-42r122,0r0,42r-31,0r0,14r63,0v41,0,65,34,65,72v0,37,-25,74,-65,74r-63,0r0,14r32,0r0,42r-123,0r0,-42r24,0xm100,-95v32,1,58,1,58,-34v0,-37,-26,-33,-58,-33r0,67","w":240},"\u00bc":{"d":"240,-63v-1,-19,2,-42,-1,-59r-38,59r39,0xm240,-24r0,-16r-70,0r0,-30r56,-85r53,0r0,92r14,0r0,23r-14,0r0,16r12,0r0,24r-72,0r0,-24r21,0xm47,9r143,-276r36,0r-143,276r-36,0xm41,-131r0,-91v-12,11,-24,19,-37,28r0,-37v13,-7,28,-19,42,-29r39,0r0,129r19,0r0,26r-83,0r0,-26r20,0","w":300},"\u00f7":{"d":"17,-68r0,-46r182,0r0,46r-182,0xm78,-141r0,-58r60,0r0,58r-60,0xm78,17r0,-58r60,0r0,58r-60,0","w":216},"\u00a6":{"d":"17,63r0,-126r46,0r0,126r-46,0xm17,-117r0,-126r46,0r0,126r-46,0","w":79},"\u00b0":{"d":"21,-211v0,-28,23,-51,51,-51v28,0,51,23,51,51v0,28,-23,52,-51,52v-28,0,-51,-24,-51,-52xm98,-211v0,-14,-12,-25,-26,-25v-14,0,-26,11,-26,25v0,14,12,26,26,26v14,0,26,-12,26,-26","w":144},"\u00fe":{"d":"29,19r0,-246r-20,0r0,-40r87,0r0,94v13,-21,34,-29,57,-29v61,0,77,51,77,103v0,54,-16,105,-78,105v-26,0,-46,-12,-56,-32r0,45r24,0r0,39r-111,0r0,-39r20,0xm94,-98v0,22,5,62,35,62v28,0,32,-27,32,-62v0,-38,-4,-62,-32,-62v-30,0,-35,38,-35,62","w":240,"k":{",":6,".":6}},"\u00be":{"d":"240,-63v-1,-19,2,-42,-1,-59r-38,59r39,0xm240,-24r0,-16r-70,0r0,-30r56,-85r53,0r0,92r14,0r0,23r-14,0r0,16r12,0r0,24r-72,0r0,-24r21,0xm43,-149v-1,11,4,21,16,21v32,-8,18,-49,-11,-44r0,-24v26,6,35,-39,11,-40v-13,0,-14,11,-14,21r-44,0v0,-32,25,-47,59,-47v28,0,57,10,57,43v0,20,-11,32,-32,35v21,1,35,13,35,36v-1,64,-121,64,-121,-1r44,0xm59,9r144,-276r36,0r-144,276r-36,0","w":300},"\u00b2":{"d":"6,-213v-1,-35,26,-49,59,-49v27,0,57,9,57,43v0,42,-47,61,-69,88r34,0r0,-18r37,0r0,44r-118,0r0,-32v20,-22,73,-64,72,-84v0,-9,-5,-15,-15,-15v-13,0,-15,12,-15,23r-42,0","w":129},"\u00ae":{"d":"90,-57r0,-145v51,0,115,-9,115,43v0,27,-17,38,-36,39r38,63r-32,0r-37,-61r-18,0r0,61r-30,0xm120,-180r0,41v25,-1,56,5,55,-22v-1,-25,-31,-18,-55,-19xm11,-129v0,-73,60,-133,133,-133v73,0,133,60,133,133v0,73,-60,133,-133,133v-73,0,-133,-60,-133,-133xm245,-129v0,-56,-45,-101,-101,-101v-56,0,-101,45,-101,101v0,56,45,101,101,101v56,0,101,-45,101,-101","w":288},"\u2212":{"d":"17,-68r0,-46r182,0r0,46r-182,0","w":216},"\u00f0":{"d":"113,-252r47,-23r17,22r-33,16v90,54,97,237,-34,243v-114,5,-139,-181,-20,-186v15,0,25,2,33,12v-2,-14,-12,-28,-29,-40r-36,20r-21,-22v8,-5,19,-8,26,-15v-8,-4,-17,-7,-26,-9r12,-39v30,6,50,13,64,21xm141,-88v0,-41,-15,-55,-32,-55v-16,0,-30,14,-30,55v0,36,14,54,30,54v17,0,32,-18,32,-54","w":219},"\u00d7":{"d":"78,-91r-55,-56r30,-29r55,55r55,-55r30,29r-56,56r56,55r-30,30r-55,-56r-55,56r-30,-30","w":216},"\u00b3":{"d":"49,-149v0,11,4,21,15,21v32,-8,18,-49,-11,-44r0,-24v26,7,36,-39,12,-40v-13,0,-15,11,-15,21r-44,0v1,-32,25,-47,60,-47v28,0,57,10,57,43v0,20,-12,32,-33,35v21,1,35,13,35,36v-1,63,-121,64,-120,-1r44,0","w":129},"\u00a9":{"d":"11,-129v0,-73,60,-133,133,-133v73,0,133,60,133,133v0,73,-60,133,-133,133v-73,0,-133,-60,-133,-133xm43,-129v0,60,45,103,101,103v55,0,101,-43,101,-103v0,-60,-46,-103,-101,-103v-56,0,-101,43,-101,103xm182,-106r29,0v-6,36,-32,57,-64,57v-46,0,-76,-36,-76,-81v0,-86,128,-113,139,-25r-28,0v-17,-49,-86,-25,-81,25v-7,50,70,75,81,24","w":288},"\u00c1":{"d":"188,-42r-11,-32r-84,0r-11,32r27,0r0,42r-103,0r0,-42r15,0r80,-216r80,0r79,216r14,0r0,42r-113,0r0,-42r27,0xm162,-113r-27,-91r-27,91r54,0xm108,-275r36,-54r64,0r-56,54r-44,0","w":280},"\u00c2":{"d":"188,-42r-11,-32r-84,0r-11,32r27,0r0,42r-103,0r0,-42r15,0r80,-216r80,0r79,216r14,0r0,42r-113,0r0,-42r27,0xm162,-113r-27,-91r-27,91r54,0xm163,-275r-21,-29r-21,29r-47,0r40,-54r56,0r40,54r-47,0","w":280},"\u00c4":{"d":"188,-42r-11,-32r-84,0r-11,32r27,0r0,42r-103,0r0,-42r15,0r80,-216r80,0r79,216r14,0r0,42r-113,0r0,-42r27,0xm162,-113r-27,-91r-27,91r54,0xm153,-275r0,-44r55,0r0,44r-55,0xm76,-275r0,-44r55,0r0,44r-55,0","w":280},"\u00c0":{"d":"188,-42r-11,-32r-84,0r-11,32r27,0r0,42r-103,0r0,-42r15,0r80,-216r80,0r79,216r14,0r0,42r-113,0r0,-42r27,0xm162,-113r-27,-91r-27,91r54,0xm132,-275r-56,-54r65,0r35,54r-44,0","w":280},"\u00c5":{"d":"188,-42r-11,-32r-84,0r-11,32r27,0r0,42r-103,0r0,-42r15,0r80,-216r80,0r79,216r14,0r0,42r-113,0r0,-42r27,0xm162,-113r-27,-91r-27,91r54,0xm102,-306v0,-22,18,-41,40,-41v22,0,41,19,41,41v0,22,-19,40,-41,40v-22,0,-40,-18,-40,-40xm126,-306v0,9,7,16,16,16v9,0,17,-7,17,-16v0,-9,-8,-17,-17,-17v-9,0,-16,8,-16,17","w":280},"\u00c3":{"d":"188,-42r-11,-32r-84,0r-11,32r27,0r0,42r-103,0r0,-42r15,0r80,-216r80,0r79,216r14,0r0,42r-113,0r0,-42r27,0xm162,-113r-27,-91r-27,91r54,0xm117,-324v24,0,58,33,68,0r26,0v-4,26,-19,44,-44,44v0,0,-59,-29,-67,5r-26,0v3,-25,16,-49,43,-49","w":280},"\u00c7":{"d":"185,-163v0,-32,-15,-57,-48,-57v-44,0,-52,58,-52,95v0,34,6,88,52,88v37,0,41,-32,43,-48r67,0v-3,62,-51,89,-105,89v-3,6,-11,14,-11,18v20,-6,46,3,46,26v0,40,-58,41,-90,26r8,-17v14,6,47,10,47,-6v0,-15,-16,-16,-30,-11v-15,-10,7,-25,11,-37v-82,-8,-110,-67,-110,-134v0,-72,35,-131,112,-131v41,0,57,20,65,29r0,-25r56,0r0,95r-61,0","w":259},"\u00c9":{"d":"119,-151r0,-28r42,0r0,95r-42,0r0,-28r-25,0r0,70r81,0r0,-43r53,0r0,85r-222,0r0,-42r24,0r0,-174r-24,0r0,-42r222,0r0,81r-53,0r0,-39r-81,0r0,65r25,0xm89,-275r35,-54r65,0r-57,54r-43,0","w":240},"\u00ca":{"d":"119,-151r0,-28r42,0r0,95r-42,0r0,-28r-25,0r0,70r81,0r0,-43r53,0r0,85r-222,0r0,-42r24,0r0,-174r-24,0r0,-42r222,0r0,81r-53,0r0,-39r-81,0r0,65r25,0xm144,-275r-22,-29r-21,29r-47,0r41,-54r55,0r40,54r-46,0","w":240},"\u00cb":{"d":"119,-151r0,-28r42,0r0,95r-42,0r0,-28r-25,0r0,70r81,0r0,-43r53,0r0,85r-222,0r0,-42r24,0r0,-174r-24,0r0,-42r222,0r0,81r-53,0r0,-39r-81,0r0,65r25,0xm133,-275r0,-44r56,0r0,44r-56,0xm56,-275r0,-44r56,0r0,44r-56,0","w":240},"\u00c8":{"d":"119,-151r0,-28r42,0r0,95r-42,0r0,-28r-25,0r0,70r81,0r0,-43r53,0r0,85r-222,0r0,-42r24,0r0,-174r-24,0r0,-42r222,0r0,81r-53,0r0,-39r-81,0r0,65r25,0xm113,-275r-57,-54r65,0r35,54r-43,0","w":240},"\u00cd":{"d":"36,-42r0,-174r-26,0r0,-42r121,0r0,42r-26,0r0,174r26,0r0,42r-121,0r0,-42r26,0xm36,-275r36,-54r64,0r-56,54r-44,0","w":140},"\u00ce":{"d":"36,-42r0,-174r-26,0r0,-42r121,0r0,42r-26,0r0,174r26,0r0,42r-121,0r0,-42r26,0xm91,-275r-21,-29r-21,29r-47,0r40,-54r56,0r40,54r-47,0","w":140},"\u00cf":{"d":"36,-42r0,-174r-26,0r0,-42r121,0r0,42r-26,0r0,174r26,0r0,42r-121,0r0,-42r26,0xm81,-275r0,-44r55,0r0,44r-55,0xm4,-275r0,-44r55,0r0,44r-55,0","w":140},"\u00cc":{"d":"36,-42r0,-174r-26,0r0,-42r121,0r0,42r-26,0r0,174r26,0r0,42r-121,0r0,-42r26,0xm60,-275r-56,-54r65,0r35,54r-44,0","w":140},"\u00d1":{"d":"199,-64v4,-47,0,-102,1,-152r-28,0r0,-42r102,0r0,42r-21,0r0,216r-86,0r-84,-199r0,157r28,0r0,42r-105,0r0,-42r24,0r0,-174r-24,0r0,-42r115,0xm115,-324v24,0,57,33,68,0r25,0v-4,26,-18,44,-43,44v0,0,-59,-29,-67,5r-26,0v3,-25,16,-49,43,-49","w":280,"k":{",":13,".":13}},"\u00d3":{"d":"195,-129v0,-35,-7,-91,-55,-91v-48,0,-55,56,-55,91v0,35,7,92,55,92v48,0,55,-57,55,-92xm267,-129v0,77,-43,133,-127,133v-84,0,-127,-56,-127,-133v0,-77,43,-133,127,-133v84,0,127,56,127,133xm106,-275r35,-54r65,0r-56,54r-44,0","w":280,"k":{"V":13,"W":6,"Y":13,"\u00dd":13,"\u0178":13,",":14,".":14,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"X":6}},"\u00d4":{"d":"195,-129v0,-35,-7,-91,-55,-91v-48,0,-55,56,-55,91v0,35,7,92,55,92v48,0,55,-57,55,-92xm267,-129v0,77,-43,133,-127,133v-84,0,-127,-56,-127,-133v0,-77,43,-133,127,-133v84,0,127,56,127,133xm161,-275r-21,-29r-21,29r-47,0r40,-54r56,0r40,54r-47,0","w":280,"k":{"V":13,"W":6,"Y":13,"\u00dd":13,"\u0178":13,",":14,".":14,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"X":6}},"\u00d6":{"d":"195,-129v0,-35,-7,-91,-55,-91v-48,0,-55,56,-55,91v0,35,7,92,55,92v48,0,55,-57,55,-92xm267,-129v0,77,-43,133,-127,133v-84,0,-127,-56,-127,-133v0,-77,43,-133,127,-133v84,0,127,56,127,133xm151,-275r0,-44r55,0r0,44r-55,0xm74,-275r0,-44r55,0r0,44r-55,0","w":280,"k":{"V":13,"W":6,"Y":13,"\u00dd":13,"\u0178":13,",":14,".":14,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"X":6}},"\u00d2":{"d":"195,-129v0,-35,-7,-91,-55,-91v-48,0,-55,56,-55,91v0,35,7,92,55,92v48,0,55,-57,55,-92xm267,-129v0,77,-43,133,-127,133v-84,0,-127,-56,-127,-133v0,-77,43,-133,127,-133v84,0,127,56,127,133xm130,-275r-56,-54r65,0r35,54r-44,0","w":280,"k":{"V":13,"W":6,"Y":13,"\u00dd":13,"\u0178":13,",":14,".":14,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"X":6}},"\u00d5":{"d":"195,-129v0,-35,-7,-91,-55,-91v-48,0,-55,56,-55,91v0,35,7,92,55,92v48,0,55,-57,55,-92xm267,-129v0,77,-43,133,-127,133v-84,0,-127,-56,-127,-133v0,-77,43,-133,127,-133v84,0,127,56,127,133xm115,-324v24,0,57,33,68,0r25,0v-4,26,-18,44,-43,44v0,0,-59,-29,-67,5r-26,0v3,-25,16,-49,43,-49","w":280,"k":{"V":13,"W":6,"Y":13,"\u00dd":13,"\u0178":13,",":14,".":14,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20,"X":6}},"\u0160":{"d":"69,-89v0,32,12,52,44,52v17,0,31,-11,31,-29v0,-19,-10,-26,-66,-45v-33,-11,-66,-27,-66,-69v0,-56,29,-82,84,-82v20,-1,46,7,58,24r0,-20r53,0r0,83r-55,0v0,-21,-8,-45,-39,-45v-20,0,-34,7,-34,23v0,18,10,23,67,45v44,17,67,31,67,77v0,55,-35,79,-89,79v-25,0,-44,-3,-58,-25r0,21r-56,0r0,-89r59,0xm112,-300r22,-29r46,0r-40,54r-55,0r-41,-54r47,0","w":219,"k":{",":14,".":14}},"\u00da":{"d":"152,-216r0,-42r102,0r0,42r-20,0r0,127v0,67,-42,93,-105,93v-141,0,-98,-105,-105,-220r-18,0r0,-42r113,0r0,42r-25,0r0,125v0,28,8,54,41,54v69,0,34,-113,42,-179r-25,0xm103,-275r35,-54r65,0r-57,54r-43,0","w":259,"k":{",":14,".":14,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20}},"\u00db":{"d":"152,-216r0,-42r102,0r0,42r-20,0r0,127v0,67,-42,93,-105,93v-141,0,-98,-105,-105,-220r-18,0r0,-42r113,0r0,42r-25,0r0,125v0,28,8,54,41,54v69,0,34,-113,42,-179r-25,0xm158,-275r-22,-29r-21,29r-47,0r41,-54r55,0r40,54r-46,0","w":259,"k":{",":14,".":14,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20}},"\u00dc":{"d":"152,-216r0,-42r102,0r0,42r-20,0r0,127v0,67,-42,93,-105,93v-141,0,-98,-105,-105,-220r-18,0r0,-42r113,0r0,42r-25,0r0,125v0,28,8,54,41,54v69,0,34,-113,42,-179r-25,0xm147,-275r0,-44r56,0r0,44r-56,0xm70,-275r0,-44r56,0r0,44r-56,0","w":259,"k":{",":14,".":14,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20}},"\u00d9":{"d":"152,-216r0,-42r102,0r0,42r-20,0r0,127v0,67,-42,93,-105,93v-141,0,-98,-105,-105,-220r-18,0r0,-42r113,0r0,42r-25,0r0,125v0,28,8,54,41,54v69,0,34,-113,42,-179r-25,0xm127,-275r-57,-54r65,0r35,54r-43,0","w":259,"k":{",":14,".":14,"A":20,"\u00c6":20,"\u00c1":20,"\u00c2":20,"\u00c4":20,"\u00c0":20,"\u00c5":20,"\u00c3":20}},"\u00dd":{"d":"135,-145r39,-71r-23,0r0,-42r103,0r0,42r-15,0r-74,123r0,51r30,0r0,42r-130,0r0,-42r30,0r0,-51r-75,-123r-14,0r0,-42r115,0r0,42r-25,0xm103,-275r35,-54r65,0r-57,54r-43,0","w":259,"k":{"O":13,"\u00d8":13,"\u0152":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,",":27,".":27,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"a":25,"\u00e6":25,"\u00e1":25,"\u00e2":25,"\u00e4":25,"\u00e0":25,"\u00e5":25,"\u00e3":25,"e":25,"\u00e9":25,"\u00ea":25,"\u00eb":25,"\u00e8":25,"i":13,"\u00ed":13,"\u00ee":13,"\u00ef":13,"\u00ec":13,"o":25,"\u00f8":25,"\u0153":25,"\u00f3":25,"\u00f4":25,"\u00f6":25,"\u00f2":25,"\u00f5":25,"-":33,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,":":20,";":20}},"\u0178":{"d":"135,-145r39,-71r-23,0r0,-42r103,0r0,42r-15,0r-74,123r0,51r30,0r0,42r-130,0r0,-42r30,0r0,-51r-75,-123r-14,0r0,-42r115,0r0,42r-25,0xm147,-275r0,-44r56,0r0,44r-56,0xm70,-275r0,-44r56,0r0,44r-56,0","w":259,"k":{"O":13,"\u00d8":13,"\u0152":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,",":27,".":27,"A":27,"\u00c6":27,"\u00c1":27,"\u00c2":27,"\u00c4":27,"\u00c0":27,"\u00c5":27,"\u00c3":27,"a":25,"\u00e6":25,"\u00e1":25,"\u00e2":25,"\u00e4":25,"\u00e0":25,"\u00e5":25,"\u00e3":25,"e":25,"\u00e9":25,"\u00ea":25,"\u00eb":25,"\u00e8":25,"i":13,"\u00ed":13,"\u00ee":13,"\u00ef":13,"\u00ec":13,"o":25,"\u00f8":25,"\u0153":25,"\u00f3":25,"\u00f4":25,"\u00f6":25,"\u00f2":25,"\u00f5":25,"-":33,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,":":20,";":20}},"\u017d":{"d":"174,-42r0,-46r55,0r0,88r-218,0r0,-51r136,-165r-77,0r0,44r-55,0r0,-86r212,0r0,52r-138,164r85,0xm120,-300r21,-29r47,0r-40,54r-55,0r-41,-54r47,0","w":240},"\u00e1":{"d":"136,0v-1,-8,2,-21,-1,-27v-16,27,-30,33,-61,33v-57,0,-65,-42,-65,-57v2,-68,63,-73,123,-69v0,-20,0,-47,-26,-47v-20,0,-23,14,-26,34r-62,0v3,-53,38,-69,87,-69v116,0,84,73,89,162r18,0r0,40r-76,0xm133,-89v-31,-1,-60,1,-61,32v0,13,7,23,22,23v28,0,39,-30,39,-55xm76,-225r36,-53r64,0r-56,53r-44,0","w":219},"\u00e2":{"d":"136,0v-1,-8,2,-21,-1,-27v-16,27,-30,33,-61,33v-57,0,-65,-42,-65,-57v2,-68,63,-73,123,-69v0,-20,0,-47,-26,-47v-20,0,-23,14,-26,34r-62,0v3,-53,38,-69,87,-69v116,0,84,73,89,162r18,0r0,40r-76,0xm133,-89v-31,-1,-60,1,-61,32v0,13,7,23,22,23v28,0,39,-30,39,-55xm131,-225r-21,-28r-21,28r-47,0r40,-53r56,0r40,53r-47,0","w":219},"\u00e4":{"d":"136,0v-1,-8,2,-21,-1,-27v-16,27,-30,33,-61,33v-57,0,-65,-42,-65,-57v2,-68,63,-73,123,-69v0,-20,0,-47,-26,-47v-20,0,-23,14,-26,34r-62,0v3,-53,38,-69,87,-69v116,0,84,73,89,162r18,0r0,40r-76,0xm133,-89v-31,-1,-60,1,-61,32v0,13,7,23,22,23v28,0,39,-30,39,-55xm121,-225r0,-44r55,0r0,44r-55,0xm44,-225r0,-44r55,0r0,44r-55,0","w":219},"\u00e0":{"d":"136,0v-1,-8,2,-21,-1,-27v-16,27,-30,33,-61,33v-57,0,-65,-42,-65,-57v2,-68,63,-73,123,-69v0,-20,0,-47,-26,-47v-20,0,-23,14,-26,34r-62,0v3,-53,38,-69,87,-69v116,0,84,73,89,162r18,0r0,40r-76,0xm133,-89v-31,-1,-60,1,-61,32v0,13,7,23,22,23v28,0,39,-30,39,-55xm100,-225r-56,-53r65,0r35,53r-44,0","w":219},"\u00e5":{"d":"136,0v-1,-8,2,-21,-1,-27v-16,27,-30,33,-61,33v-57,0,-65,-42,-65,-57v2,-68,63,-73,123,-69v0,-20,0,-47,-26,-47v-20,0,-23,14,-26,34r-62,0v3,-53,38,-69,87,-69v116,0,84,73,89,162r18,0r0,40r-76,0xm133,-89v-31,-1,-60,1,-61,32v0,13,7,23,22,23v28,0,39,-30,39,-55xm70,-258v0,-22,18,-41,40,-41v22,0,40,19,40,41v0,22,-18,40,-40,40v-22,0,-40,-18,-40,-40xm94,-258v0,9,7,16,16,16v9,0,17,-7,17,-16v0,-9,-8,-17,-17,-17v-9,0,-16,8,-16,17","w":219},"\u00e3":{"d":"136,0v-1,-8,2,-21,-1,-27v-16,27,-30,33,-61,33v-57,0,-65,-42,-65,-57v2,-68,63,-73,123,-69v0,-20,0,-47,-26,-47v-20,0,-23,14,-26,34r-62,0v3,-53,38,-69,87,-69v116,0,84,73,89,162r18,0r0,40r-76,0xm133,-89v-31,-1,-60,1,-61,32v0,13,7,23,22,23v28,0,39,-30,39,-55xm85,-274v23,-1,58,34,68,0r26,0v-4,26,-19,45,-44,45v-31,0,-58,-29,-67,4r-26,0v3,-25,17,-48,43,-49","w":219},"\u00e7":{"d":"86,40v-15,-9,6,-23,10,-35v-108,-2,-113,-207,2,-207v22,0,37,9,48,27r0,-21r51,0r0,74r-56,0v0,-17,-4,-38,-27,-38v-30,0,-31,37,-31,66v0,29,6,60,31,60v24,0,26,-25,27,-33r56,0v-4,49,-32,72,-81,73r-11,16v20,-6,45,3,46,26v-1,40,-57,41,-89,26r7,-17v14,6,48,11,48,-6v0,-15,-17,-16,-31,-11","k":{",":4,".":4}},"\u00e9":{"d":"73,-117r60,0v0,-14,-1,-45,-28,-45v-30,0,-32,37,-32,45xm135,-55r63,0v-8,46,-49,61,-91,61v-72,0,-101,-43,-101,-105v0,-61,38,-103,100,-103v71,0,98,52,93,120r-126,0v0,21,4,48,34,48v22,0,28,-15,28,-21xm75,-225r35,-53r65,0r-57,53r-43,0"},"\u00ea":{"d":"73,-117r60,0v0,-14,-1,-45,-28,-45v-30,0,-32,37,-32,45xm135,-55r63,0v-8,46,-49,61,-91,61v-72,0,-101,-43,-101,-105v0,-61,38,-103,100,-103v71,0,98,52,93,120r-126,0v0,21,4,48,34,48v22,0,28,-15,28,-21xm130,-225r-21,-28r-22,28r-46,0r40,-53r55,0r41,53r-47,0"},"\u00eb":{"d":"73,-117r60,0v0,-14,-1,-45,-28,-45v-30,0,-32,37,-32,45xm135,-55r63,0v-8,46,-49,61,-91,61v-72,0,-101,-43,-101,-105v0,-61,38,-103,100,-103v71,0,98,52,93,120r-126,0v0,21,4,48,34,48v22,0,28,-15,28,-21xm120,-225r0,-44r55,0r0,44r-55,0xm42,-225r0,-44r56,0r0,44r-56,0"},"\u00e8":{"d":"73,-117r60,0v0,-14,-1,-45,-28,-45v-30,0,-32,37,-32,45xm135,-55r63,0v-8,46,-49,61,-91,61v-72,0,-101,-43,-101,-105v0,-61,38,-103,100,-103v71,0,98,52,93,120r-126,0v0,21,4,48,34,48v22,0,28,-15,28,-21xm99,-225r-57,-53r65,0r36,53r-44,0"},"\u00ed":{"d":"29,-40r0,-117r-20,0r0,-39r87,0r0,156r18,0r0,40r-105,0r0,-40r20,0xm26,-225r36,-53r64,0r-56,53r-44,0","w":119},"\u00ee":{"d":"29,-40r0,-117r-20,0r0,-39r87,0r0,156r18,0r0,40r-105,0r0,-40r20,0xm81,-225r-21,-28r-21,28r-47,0r40,-53r56,0r40,53r-47,0","w":119},"\u00ef":{"d":"29,-40r0,-117r-20,0r0,-39r87,0r0,156r18,0r0,40r-105,0r0,-40r20,0xm71,-225r0,-44r55,0r0,44r-55,0xm-6,-225r0,-44r55,0r0,44r-55,0","w":119},"\u00ec":{"d":"29,-40r0,-117r-20,0r0,-39r87,0r0,156r18,0r0,40r-105,0r0,-40r20,0xm50,-225r-56,-53r65,0r35,53r-44,0","w":119},"\u00f1":{"d":"148,-40r0,-81v0,-16,0,-37,-24,-37v-40,-1,-26,76,-28,118r18,0r0,40r-105,0r0,-40r20,0r0,-117r-20,0r0,-39r83,0v1,10,-2,25,1,33v9,-29,33,-39,61,-39v27,0,61,10,61,54r0,108r18,0r0,40r-103,0r0,-40r18,0xm95,-274v24,-1,58,34,68,0r26,0v-4,26,-19,45,-44,45v-31,0,-58,-29,-67,4r-26,0v4,-24,17,-47,43,-49","w":240},"\u00f3":{"d":"10,-98v0,-61,38,-104,100,-104v63,0,100,43,100,104v0,60,-38,104,-100,104v-61,0,-100,-44,-100,-104xm110,-160v-20,0,-31,18,-31,62v0,45,10,62,31,62v20,0,31,-17,31,-62v0,-45,-10,-62,-31,-62xm76,-225r36,-53r64,0r-56,53r-44,0","w":219},"\u00f4":{"d":"10,-98v0,-61,38,-104,100,-104v63,0,100,43,100,104v0,60,-38,104,-100,104v-61,0,-100,-44,-100,-104xm110,-160v-20,0,-31,18,-31,62v0,45,10,62,31,62v20,0,31,-17,31,-62v0,-45,-10,-62,-31,-62xm131,-225r-21,-28r-21,28r-47,0r40,-53r56,0r40,53r-47,0","w":219},"\u00f6":{"d":"10,-98v0,-61,38,-104,100,-104v63,0,100,43,100,104v0,60,-38,104,-100,104v-61,0,-100,-44,-100,-104xm110,-160v-20,0,-31,18,-31,62v0,45,10,62,31,62v20,0,31,-17,31,-62v0,-45,-10,-62,-31,-62xm121,-225r0,-44r55,0r0,44r-55,0xm44,-225r0,-44r55,0r0,44r-55,0","w":219},"\u00f2":{"d":"10,-98v0,-61,38,-104,100,-104v63,0,100,43,100,104v0,60,-38,104,-100,104v-61,0,-100,-44,-100,-104xm110,-160v-20,0,-31,18,-31,62v0,45,10,62,31,62v20,0,31,-17,31,-62v0,-45,-10,-62,-31,-62xm100,-225r-56,-53r65,0r35,53r-44,0","w":219},"\u00f5":{"d":"10,-98v0,-61,38,-104,100,-104v63,0,100,43,100,104v0,60,-38,104,-100,104v-61,0,-100,-44,-100,-104xm110,-160v-20,0,-31,18,-31,62v0,45,10,62,31,62v20,0,31,-17,31,-62v0,-45,-10,-62,-31,-62xm85,-274v23,-1,58,34,68,0r26,0v-4,26,-19,45,-44,45v-31,0,-58,-29,-67,4r-26,0v3,-25,17,-48,43,-49","w":219},"\u0161":{"d":"63,-67v-10,40,55,47,58,17v2,-17,-42,-25,-58,-31v-33,-13,-54,-24,-54,-61v0,-62,86,-79,122,-38r0,-16r47,0r0,62r-51,0v0,-21,-9,-31,-31,-31v-31,0,-37,28,-10,35v43,12,95,20,95,73v0,41,-29,63,-69,63v-36,0,-47,-14,-53,-26r0,20r-49,0r0,-67r53,0xm97,-249r21,-29r47,0r-40,53r-56,0r-40,-53r47,0","w":193},"\u00fa":{"d":"20,-60r0,-97r-20,0r0,-39r87,0r0,127v0,17,6,28,23,28v41,0,20,-74,25,-116r-19,0r0,-39r88,0r0,156r18,0r0,40r-81,0v-1,-9,2,-23,-1,-30v-8,25,-36,36,-63,36v-57,0,-57,-45,-57,-66xm80,-225r35,-53r65,0r-57,53r-43,0","w":226},"\u00fb":{"d":"20,-60r0,-97r-20,0r0,-39r87,0r0,127v0,17,6,28,23,28v41,0,20,-74,25,-116r-19,0r0,-39r88,0r0,156r18,0r0,40r-81,0v-1,-9,2,-23,-1,-30v-8,25,-36,36,-63,36v-57,0,-57,-45,-57,-66xm135,-225r-22,-28r-21,28r-47,0r41,-53r55,0r40,53r-46,0","w":226},"\u00fc":{"d":"20,-60r0,-97r-20,0r0,-39r87,0r0,127v0,17,6,28,23,28v41,0,20,-74,25,-116r-19,0r0,-39r88,0r0,156r18,0r0,40r-81,0v-1,-9,2,-23,-1,-30v-8,25,-36,36,-63,36v-57,0,-57,-45,-57,-66xm124,-225r0,-44r56,0r0,44r-56,0xm47,-225r0,-44r56,0r0,44r-56,0","w":226},"\u00f9":{"d":"20,-60r0,-97r-20,0r0,-39r87,0r0,127v0,17,6,28,23,28v41,0,20,-74,25,-116r-19,0r0,-39r88,0r0,156r18,0r0,40r-81,0v-1,-9,2,-23,-1,-30v-8,25,-36,36,-63,36v-57,0,-57,-45,-57,-66xm104,-225r-57,-53r65,0r35,53r-43,0","w":226},"\u00fd":{"d":"4,-157r0,-39r102,0r0,39r-19,0r30,85r27,-85r-17,0r0,-39r89,0r0,39r-11,0r-72,171v-5,37,-56,56,-98,44r0,-45v14,6,44,5,46,-12r-63,-158r-14,0xm76,-225r36,-53r64,0r-56,53r-44,0","w":219,"k":{",":32,".":32}},"\u00ff":{"d":"4,-157r0,-39r102,0r0,39r-19,0r30,85r27,-85r-17,0r0,-39r89,0r0,39r-11,0r-72,171v-5,37,-56,56,-98,44r0,-45v14,6,44,5,46,-12r-63,-158r-14,0xm125,-225r0,-44r56,0r0,44r-56,0xm48,-225r0,-44r56,0r0,44r-56,0","w":219,"k":{",":32,".":32}},"\u017e":{"d":"135,-37r0,-25r51,0r0,62r-172,0r0,-48r102,-114r-49,0r0,24r-51,0r0,-58r167,0r0,47r-102,112r54,0xm102,-249r21,-29r47,0r-40,53r-55,0r-41,-53r47,0"},"\u2206":{"d":"9,0r0,-30r79,-232r63,0r76,231r0,31r-218,0xm64,-43r107,0r-34,-95r-20,-65","w":236},"\u2126":{"d":"12,-43v15,-1,33,2,46,-1v-20,-21,-41,-55,-41,-100v0,-62,43,-117,109,-117v124,0,129,160,65,218r47,0r0,43r-97,0r0,-32v19,-13,38,-44,38,-103v0,-44,-18,-81,-53,-81v-33,0,-55,34,-55,83v0,53,18,88,38,101r0,32r-97,0r0,-43","w":250},"\u03bc":{"d":"116,-157r0,-39r88,0r0,156r18,0r0,40r-81,0v-1,-9,2,-23,-1,-30v-8,27,-41,36,-53,36r0,52r-67,0r0,-215r-20,0r0,-39r87,0r0,127v0,17,6,28,23,28v41,0,20,-74,25,-116r-19,0","w":226},"\u03c0":{"d":"212,-148r-24,0v1,46,-3,113,5,148r-52,0v-11,-32,-4,-103,-6,-148r-43,0v-1,36,-9,108,-22,148r-51,0v12,-45,21,-111,21,-148v-15,0,-26,1,-34,3r-5,-35v40,-25,149,-10,215,-14","w":220},"\u20ac":{"d":"139,-171v-1,-23,-5,-49,-26,-49v-18,0,-24,30,-27,61r68,0r-7,25r-62,0r0,19r58,0r-7,26r-50,0v3,27,10,52,26,52v19,0,23,-28,24,-41r57,0v-2,57,-38,82,-79,82v-55,0,-82,-40,-91,-93r-19,0r7,-26r9,0r0,-19r-16,0r6,-25r11,0v5,-59,30,-103,77,-103v28,0,40,15,46,23r0,-19r48,0r0,87r-53,0"},"\u2113":{"d":"162,-72r20,22v-20,40,-49,53,-77,53v-46,-1,-64,-27,-67,-61v-5,4,-12,9,-18,13r-13,-27v11,-9,21,-17,30,-26r0,-90v0,-64,30,-95,68,-95v36,0,52,31,52,68v0,42,-26,82,-68,124v-3,29,6,52,29,52v18,0,34,-17,44,-33xm89,-187r0,48v22,-27,36,-57,36,-79v0,-17,-4,-27,-17,-27v-9,0,-19,13,-19,58","w":187},"\u212e":{"d":"67,-51v37,64,147,61,189,3r21,0v-26,31,-69,52,-117,52v-82,0,-147,-60,-147,-133v0,-73,65,-133,147,-133v83,1,151,60,149,137r-242,2r0,72xm252,-132v4,-22,4,-62,-1,-84v-45,-50,-137,-50,-181,1v-6,20,-4,60,-1,83r183,0","w":321},"\u2202":{"d":"37,-229r-14,-41v71,-48,170,-10,170,119v0,94,-38,154,-103,154v-52,0,-77,-49,-77,-88v0,-88,91,-125,128,-71v3,-46,-18,-90,-57,-91v-22,0,-38,10,-47,18xm95,-42v24,0,39,-40,42,-71v-3,-10,-16,-27,-35,-27v-23,0,-36,28,-36,57v0,22,11,41,29,41","w":210},"\u220f":{"d":"253,-208r-35,0r0,243r-53,0r0,-243r-68,0r0,243r-53,0r0,-243r-35,0r0,-49r244,0r0,49","w":262},"\u2211":{"d":"194,36r-185,0r0,-35r82,-112r-80,-108r0,-38r177,0r0,45r-107,1r69,91r-77,106r121,0r0,50"},"\u2219":{"d":"20,-72r0,-58r60,0r0,58r-60,0","w":100},"\u221a":{"d":"220,-309r-81,359r-41,0r-52,-157r-27,10r-8,-29r66,-27v14,46,32,92,41,142r1,1v1,-9,3,-24,6,-38r59,-261r36,0","w":216},"\u221e":{"d":"208,-168v32,0,60,24,57,63v-5,75,-83,88,-123,24v-19,23,-38,40,-67,40v-30,0,-58,-25,-58,-63v0,-38,26,-64,61,-64v27,0,46,14,65,39v14,-16,32,-39,65,-39xm79,-69v19,0,33,-16,47,-33v-15,-20,-25,-38,-48,-38v-20,0,-32,15,-32,37v0,19,14,34,33,34xm205,-140v-21,0,-37,22,-48,35v21,27,32,36,50,36v42,-1,37,-71,-2,-71","w":282},"\u222b":{"d":"49,-216v0,-75,28,-113,91,-99r-5,37v-37,-11,-39,22,-39,67v0,100,47,309,-87,270r6,-38v32,11,39,-12,39,-58v0,-70,-5,-115,-5,-179","w":149},"\u2248":{"d":"66,-168v30,-1,46,25,67,26v13,0,23,-11,32,-26r18,16v-12,23,-30,39,-50,39v-23,0,-46,-26,-70,-26v-15,0,-23,13,-32,26r-18,-17v10,-21,30,-38,53,-38xm66,-98v32,-1,42,26,67,26v14,0,22,-11,32,-26r18,17v-12,22,-29,38,-50,38v-23,0,-47,-26,-70,-26v-15,0,-23,13,-32,26r-18,-17v10,-21,31,-38,53,-38","w":196},"\u2260":{"d":"146,-189r-13,31r46,0r0,30r-57,0r-20,48r77,0r0,30r-88,0r-18,40r-23,-9r13,-31r-46,0r0,-30r58,0r20,-48r-78,0r0,-30r88,0r17,-40","w":196},"\u2264":{"d":"178,-37r-159,-81r0,-32r159,-81r0,35r-130,62r130,62r0,35xm180,7r-162,0r0,-30r162,0r0,30","w":196},"\u2265":{"d":"19,-231r160,81r0,32r-159,81r0,-35r130,-63r-131,-61r0,-35xm179,7r-161,0r0,-30r161,0r0,30","w":196},"\u25ca":{"d":"199,-128r-71,146r-42,0r-68,-146r70,-147r42,0xm152,-127v-14,-35,-33,-66,-43,-105v-12,36,-30,69,-45,103v14,35,33,66,43,105v13,-36,30,-69,45,-103","w":216},"\u00a0":{"w":100},"\u00ad":{"d":"14,-81r0,-47r91,0r0,47r-91,0","w":119},"\u02c9":{"d":"-8,-235r0,-31r116,0r0,31r-116,0","w":100},"\u03a9":{"d":"12,-43v15,-1,33,2,46,-1v-20,-21,-41,-55,-41,-100v0,-62,43,-117,109,-117v124,0,129,160,65,218r47,0r0,43r-97,0r0,-32v19,-13,38,-44,38,-103v0,-44,-18,-81,-53,-81v-33,0,-55,34,-55,83v0,53,18,88,38,101r0,32r-97,0r0,-43","w":250},"\u2215":{"d":"-60,9r144,-276r36,0r-144,276r-36,0","w":60}}});

$(document).ready(function(){$('a').each(function(){if($(this).attr('id')=='recaptcha_reload_btn'||$(this).attr('id')=='recaptcha_switch_audio_btn'||$(this).attr('id')=='recaptcha_whatsthis_btn'||$(this).hasClass('stbutton stico_default'))
{return false;}
var a=new RegExp('/'+window.location.host+'/');if(!a.test(this.href)){$(this).click(function(event){event.preventDefault();event.stopPropagation();window.open(this.href,'_blank');});}});$("map *").tooltip({track:true,delay:0.1,opacity:1});$('#regions div:last').hide();$('input#search[title!=""]').hint();$('#main-nav ul li').each(function(){var itemClass=$(this).attr('class');$(this).mouseover(function(){$('img.'+itemClass).show();}).mouseout(function(){$('img.'+itemClass).hide();});});$("input#go").mouseover(function(){$('#search-box').css("background","transparent url(/assets/images/search-box.gif)  0 -34px no-repeat");}).mouseout(function(){$('#search-box').css("background","transparent url(/assets/images/search-box.gif)  0 0 no-repeat");});var tabContainers=$('div#tabs > div');tabContainers.hide().filter('.start-tab').show();tabContainers.children('h2.tab-heading').hide();$('#tabs-nav a').click(function(){tabContainers.hide();tabContainers.filter(this.hash).show();$('#tabs-nav li').removeClass('active');$(this).parent('li').addClass('active');return false;}).filter('.start-tab').click();$("form").validationEngine();Cufon.replace('#main-nav a',{fontFamily:'Glypha LT Std'})
('p.landing-blurb',{fontFamily:'Glypha LT Std'})
('p.blurb',{fontFamily:'Glypha LT Std'})
('#recommended h3',{fontFamily:'Glypha LT Std'})
('p.section',{fontFamily:'Glypha Heavy'})
('.box h3',{fontFamily:'Glypha Heavy'})
('h1.title',{fontFamily:'Glypha Heavy'})
('span.heading',{fontFamily:'Glypha Heavy'})
('#page-intro h1',{fontFamily:'Glypha Heavy'})
('#additional-info h5',{fontFamily:'Glypha LT Std'});$('a.print').click(function(){window.print();return false;});});
