

//jQuery 1.5.1
(function(window,undefined){var document=window.document;var jQuery=(function(){var jQuery=function(selector,context){return new jQuery.fn.init(selector,context,rootjQuery);},_jQuery=window.jQuery,_$=window.$,rootjQuery,quickExpr=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/,rnotwhite=/\S/,trimLeft=/^\s+/,trimRight=/\s+$/,rdigit=/\d/,rsingleTag=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,rvalidchars=/^[\],:{}\s]*$/,rvalidescape=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,rvalidtokens=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,rvalidbraces=/(?:^|:|,)(?:\s*\[)+/g,rwebkit=/(webkit)[ \/]([\w.]+)/,ropera=/(opera)(?:.*version)?[ \/]([\w.]+)/,rmsie=/(msie) ([\w.]+)/,rmozilla=/(mozilla)(?:.*? rv:([\w.]+))?/,userAgent=navigator.userAgent,browserMatch,readyBound=false,readyList,promiseMethods="then done fail isResolved isRejected promise".split(" "),DOMContentLoaded,toString=Object.prototype.toString,hasOwn=Object.prototype.hasOwnProperty,push=Array.prototype.push,slice=Array.prototype.slice,trim=String.prototype.trim,indexOf=Array.prototype.indexOf,class2type={};jQuery.fn=jQuery.prototype={constructor:jQuery,init:function(selector,context,rootjQuery){var match,elem,ret,doc;if(!selector){return this;}
if(selector.nodeType){this.context=this[0]=selector;this.length=1;return this;}
if(selector==="body"&&!context&&document.body){this.context=document;this[0]=document.body;this.selector="body";this.length=1;return this;}
if(typeof selector==="string"){match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1]){context=context instanceof jQuery?context[0]:context;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=jQuery.buildFragment([match[1]],[doc]);selector=(ret.cacheable?jQuery.clone(ret.fragment):ret.fragment).childNodes;}
return jQuery.merge(this,selector);}else{elem=document.getElementById(match[2]);if(elem&&elem.parentNode){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||context.jquery){return(context||rootjQuery).find(selector);}else{return this.constructor(context).find(selector);}}else if(jQuery.isFunction(selector)){return rootjQuery.ready(selector);}
if(selector.selector!==undefined){this.selector=selector.selector;this.context=selector.context;}
return jQuery.makeArray(selector,this);},selector:"",jquery:"1.5.1",length:0,size:function(){return this.length;},toArray:function(){return slice.call(this,0);},get:function(num){return num==null?this.toArray():(num<0?this[this.length+num]:this[num]);},pushStack:function(elems,name,selector){var ret=this.constructor();if(jQuery.isArray(elems)){push.apply(ret,elems);}else{jQuery.merge(ret,elems);}
ret.prevObject=this;ret.context=this.context;if(name==="find"){ret.selector=this.selector+(this.selector?" ":"")+selector;}else if(name){ret.selector=this.selector+"."+name+"("+selector+")";}
return ret;},each:function(callback,args){return jQuery.each(this,callback,args);},ready:function(fn){jQuery.bindReady();readyList.done(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||this.constructor(null);},push:push,sort:[].sort,splice:[].splice};jQuery.fn.init.prototype=jQuery.fn;jQuery.extend=jQuery.fn.extend=function(){var options,name,src,copy,copyIsArray,clone,target=arguments[0]||{},i=1,length=arguments.length,deep=false;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)||(copyIsArray=jQuery.isArray(copy)))){if(copyIsArray){copyIsArray=false;clone=src&&jQuery.isArray(src)?src:[];}else{clone=src&&jQuery.isPlainObject(src)?src:{};}
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,readyWait:1,ready:function(wait){if(wait===true){jQuery.readyWait--;}
if(!jQuery.readyWait||(wait!==true&&!jQuery.isReady)){if(!document.body){return setTimeout(jQuery.ready,1);}
jQuery.isReady=true;if(wait!==true&&--jQuery.readyWait>0){return;}
readyList.resolveWith(document,[jQuery]);if(jQuery.fn.trigger){jQuery(document).trigger("ready").unbind("ready");}}},bindReady:function(){if(readyBound){return;}
readyBound=true;if(document.readyState==="complete"){return setTimeout(jQuery.ready,1);}
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 jQuery.type(obj)==="function";},isArray:Array.isArray||function(obj){return jQuery.type(obj)==="array";},isWindow:function(obj){return obj&&typeof obj==="object"&&"setInterval"in obj;},isNaN:function(obj){return obj==null||!rdigit.test(obj)||isNaN(obj);},type:function(obj){return obj==null?String(obj):class2type[toString.call(obj)]||"object";},isPlainObject:function(obj){if(!obj||jQuery.type(obj)!=="object"||obj.nodeType||jQuery.isWindow(obj)){return false;}
if(obj.constructor&&!hasOwn.call(obj,"constructor")&&!hasOwn.call(obj.constructor.prototype,"isPrototypeOf")){return false;}
var key;for(key in obj){}
return key===undefined||hasOwn.call(obj,key);},isEmptyObject:function(obj){for(var name in obj){return false;}
return true;},error:function(msg){throw msg;},parseJSON:function(data){if(typeof data!=="string"||!data){return null;}
data=jQuery.trim(data);if(rvalidchars.test(data.replace(rvalidescape,"@")
.replace(rvalidtokens,"]")
.replace(rvalidbraces,""))){return window.JSON&&window.JSON.parse?window.JSON.parse(data):(new Function("return "+data))();}else{jQuery.error("Invalid JSON: "+data);}},parseXML:function(data,xml,tmp){if(window.DOMParser){tmp=new DOMParser();xml=tmp.parseFromString(data,"text/xml");}else{xml=new ActiveXObject("Microsoft.XMLDOM");xml.async="false";xml.loadXML(data);}
tmp=xml.documentElement;if(!tmp||!tmp.nodeName||tmp.nodeName==="parsererror"){jQuery.error("Invalid XML: "+data);}
return xml;},noop:function(){},globalEval:function(data){if(data&&rnotwhite.test(data)){var head=document.head||document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");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:trim?function(text){return text==null?"":trim.call(text);}:function(text){return text==null?"":text.toString().replace(trimLeft,"").replace(trimRight,"");},makeArray:function(array,results){var ret=results||[];if(array!=null){var type=jQuery.type(array);if(array.length==null||type==="string"||type==="function"||type==="regexp"||jQuery.isWindow(array)){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=[],retVal;inv=!!inv;for(var i=0,length=elems.length;i<length;i++){retVal=!!callback(elems[i],i);if(inv!==retVal){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;},access:function(elems,key,value,exec,fn,pass){var length=elems.length;if(typeof key==="object"){for(var k in key){jQuery.access(elems,k,key[k],exec,fn,value);}
return elems;}
if(value!==undefined){exec=!pass&&exec&&jQuery.isFunction(value);for(var i=0;i<length;i++){fn(elems[i],key,exec?value.call(elems[i],i,fn(elems[i],key)):value,pass);}
return elems;}
return length?fn(elems[0],key):undefined;},now:function(){return(new Date()).getTime();},_Deferred:function(){var
callbacks=[],fired,firing,cancelled,deferred={done:function(){if(!cancelled){var args=arguments,i,length,elem,type,_fired;if(fired){_fired=fired;fired=0;}
for(i=0,length=args.length;i<length;i++){elem=args[i];type=jQuery.type(elem);if(type==="array"){deferred.done.apply(deferred,elem);}else if(type==="function"){callbacks.push(elem);}}
if(_fired){deferred.resolveWith(_fired[0],_fired[1]);}}
return this;},resolveWith:function(context,args){if(!cancelled&&!fired&&!firing){firing=1;try{while(callbacks[0]){callbacks.shift().apply(context,args);}}
catch(e){throw e;}
finally{fired=[context,args];firing=0;}}
return this;},resolve:function(){deferred.resolveWith(jQuery.isFunction(this.promise)?this.promise():this,arguments);return this;},isResolved:function(){return!!(firing||fired);},cancel:function(){cancelled=1;callbacks=[];return this;}};return deferred;},Deferred:function(func){var deferred=jQuery._Deferred(),failDeferred=jQuery._Deferred(),promise;jQuery.extend(deferred,{then:function(doneCallbacks,failCallbacks){deferred.done(doneCallbacks).fail(failCallbacks);return this;},fail:failDeferred.done,rejectWith:failDeferred.resolveWith,reject:failDeferred.resolve,isRejected:failDeferred.isResolved,promise:function(obj){if(obj==null){if(promise){return promise;}
promise=obj={};}
var i=promiseMethods.length;while(i--){obj[promiseMethods[i]]=deferred[promiseMethods[i]];}
return obj;}});deferred.done(failDeferred.cancel).fail(deferred.cancel);delete deferred.cancel;if(func){func.call(deferred,deferred);}
return deferred;},when:function(object){var lastIndex=arguments.length,deferred=lastIndex<=1&&object&&jQuery.isFunction(object.promise)?object:jQuery.Deferred(),promise=deferred.promise();if(lastIndex>1){var array=slice.call(arguments,0),count=lastIndex,iCallback=function(index){return function(value){array[index]=arguments.length>1?slice.call(arguments,0):value;if(!(--count)){deferred.resolveWith(promise,array);}};};while((lastIndex--)){object=array[lastIndex];if(object&&jQuery.isFunction(object.promise)){object.promise().then(iCallback(lastIndex),deferred.reject);}else{--count;}}
if(!count){deferred.resolveWith(promise,array);}}else if(deferred!==object){deferred.resolve(object);}
return promise;},uaMatch:function(ua){ua=ua.toLowerCase();var match=rwebkit.exec(ua)||ropera.exec(ua)||rmsie.exec(ua)||ua.indexOf("compatible")<0&&rmozilla.exec(ua)||[];return{browser:match[1]||"",version:match[2]||"0"};},sub:function(){function jQuerySubclass(selector,context){return new jQuerySubclass.fn.init(selector,context);}
jQuery.extend(true,jQuerySubclass,this);jQuerySubclass.superclass=this;jQuerySubclass.fn=jQuerySubclass.prototype=this();jQuerySubclass.fn.constructor=jQuerySubclass;jQuerySubclass.subclass=this.subclass;jQuerySubclass.fn.init=function init(selector,context){if(context&&context instanceof jQuery&&!(context instanceof jQuerySubclass)){context=jQuerySubclass(context);}
return jQuery.fn.init.call(this,selector,context,rootjQuerySubclass);};jQuerySubclass.fn.init.prototype=jQuerySubclass.fn;var rootjQuerySubclass=jQuerySubclass(document);return jQuerySubclass;},browser:{}});readyList=jQuery._Deferred();jQuery.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(i,name){class2type["[object "+name+"]"]=name.toLowerCase();});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);};}
if(rnotwhite.test("\xA0")){trimLeft=/^[\s\xA0]+/;trimRight=/[\s\xA0]+$/;}
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(e){setTimeout(doScrollCheck,1);return;}
jQuery.ready();}
return jQuery;})();(function(){jQuery.support={};var div=document.createElement("div");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],select=document.createElement("select"),opt=select.appendChild(document.createElement("option")),input=div.getElementsByTagName("input")[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:input.value==="on",optSelected:opt.selected,deleteExpando:true,optDisabled:false,checkClone:false,noCloneEvent:true,noCloneChecked:true,boxModel:null,inlineBlockNeedsLayout:false,shrinkWrapBlocks:false,reliableHiddenOffsets:true};input.checked=true;jQuery.support.noCloneChecked=input.cloneNode(true).checked;select.disabled=true;jQuery.support.optDisabled=!opt.disabled;var _scriptEval=null;jQuery.support.scriptEval=function(){if(_scriptEval===null){var root=document.documentElement,script=document.createElement("script"),id="script"+jQuery.now();try{script.appendChild(document.createTextNode("window."+id+"=1;"));}catch(e){}
root.insertBefore(script,root.firstChild);if(window[id]){_scriptEval=true;delete window[id];}else{_scriptEval=false;}
root.removeChild(script);root=script=id=null;}
return _scriptEval;};try{delete div.test;}catch(e){jQuery.support.deleteExpando=false;}
if(!div.addEventListener&&div.attachEvent&&div.fireEvent){div.attachEvent("onclick",function click(){jQuery.support.noCloneEvent=false;div.detachEvent("onclick",click);});div.cloneNode(true).fireEvent("onclick");}
div=document.createElement("div");div.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";var fragment=document.createDocumentFragment();fragment.appendChild(div.firstChild);jQuery.support.checkClone=fragment.cloneNode(true).cloneNode(true).lastChild.checked;jQuery(function(){var div=document.createElement("div"),body=document.getElementsByTagName("body")[0];if(!body){return;}
div.style.width=div.style.paddingLeft="1px";body.appendChild(div);jQuery.boxModel=jQuery.support.boxModel=div.offsetWidth===2;if("zoom"in div.style){div.style.display="inline";div.style.zoom=1;jQuery.support.inlineBlockNeedsLayout=div.offsetWidth===2;div.style.display="";div.innerHTML="<div style='width:4px;'></div>";jQuery.support.shrinkWrapBlocks=div.offsetWidth!==2;}
div.innerHTML="<table><tr><td style='padding:0;border:0;display:none'></td><td>t</td></tr></table>";var tds=div.getElementsByTagName("td");jQuery.support.reliableHiddenOffsets=tds[0].offsetHeight===0;tds[0].style.display="";tds[1].style.display="none";jQuery.support.reliableHiddenOffsets=jQuery.support.reliableHiddenOffsets&&tds[0].offsetHeight===0;div.innerHTML="";body.removeChild(div).style.display="none";div=tds=null;});var eventSupported=function(eventName){var el=document.createElement("div");eventName="on"+eventName;if(!el.attachEvent){return true;}
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");div=all=a=null;})();var rbrace=/^(?:\{.*\}|\[.*\])$/;jQuery.extend({cache:{},uuid:0,expando:"jQuery"+(jQuery.fn.jquery+Math.random()).replace(/\D/g,""),noData:{"embed":true,"object":"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000","applet":true},hasData:function(elem){elem=elem.nodeType?jQuery.cache[elem[jQuery.expando]]:elem[jQuery.expando];return!!elem&&!isEmptyDataObject(elem);},data:function(elem,name,data,pvt){if(!jQuery.acceptData(elem)){return;}
var internalKey=jQuery.expando,getByName=typeof name==="string",thisCache,isNode=elem.nodeType,cache=isNode?jQuery.cache:elem,id=isNode?elem[jQuery.expando]:elem[jQuery.expando]&&jQuery.expando;if((!id||(pvt&&id&&!cache[id][internalKey]))&&getByName&&data===undefined){return;}
if(!id){if(isNode){elem[jQuery.expando]=id=++jQuery.uuid;}else{id=jQuery.expando;}}
if(!cache[id]){cache[id]={};if(!isNode){cache[id].toJSON=jQuery.noop;}}
if(typeof name==="object"||typeof name==="function"){if(pvt){cache[id][internalKey]=jQuery.extend(cache[id][internalKey],name);}else{cache[id]=jQuery.extend(cache[id],name);}}
thisCache=cache[id];if(pvt){if(!thisCache[internalKey]){thisCache[internalKey]={};}
thisCache=thisCache[internalKey];}
if(data!==undefined){thisCache[name]=data;}
if(name==="events"&&!thisCache[name]){return thisCache[internalKey]&&thisCache[internalKey].events;}
return getByName?thisCache[name]:thisCache;},removeData:function(elem,name,pvt){if(!jQuery.acceptData(elem)){return;}
var internalKey=jQuery.expando,isNode=elem.nodeType,cache=isNode?jQuery.cache:elem,id=isNode?elem[jQuery.expando]:jQuery.expando;if(!cache[id]){return;}
if(name){var thisCache=pvt?cache[id][internalKey]:cache[id];if(thisCache){delete thisCache[name];if(!isEmptyDataObject(thisCache)){return;}}}
if(pvt){delete cache[id][internalKey];if(!isEmptyDataObject(cache[id])){return;}}
var internalCache=cache[id][internalKey];if(jQuery.support.deleteExpando||cache!=window){delete cache[id];}else{cache[id]=null;}
if(internalCache){cache[id]={};if(!isNode){cache[id].toJSON=jQuery.noop;}
cache[id][internalKey]=internalCache;}else if(isNode){if(jQuery.support.deleteExpando){delete elem[jQuery.expando];}else if(elem.removeAttribute){elem.removeAttribute(jQuery.expando);}else{elem[jQuery.expando]=null;}}},_data:function(elem,name,data){return jQuery.data(elem,name,data,true);},acceptData:function(elem){if(elem.nodeName){var match=jQuery.noData[elem.nodeName.toLowerCase()];if(match){return!(match===true||elem.getAttribute("classid")!==match);}}
return true;}});jQuery.fn.extend({data:function(key,value){var data=null;if(typeof key==="undefined"){if(this.length){data=jQuery.data(this[0]);if(this[0].nodeType===1){var attr=this[0].attributes,name;for(var i=0,l=attr.length;i<l;i++){name=attr[i].name;if(name.indexOf("data-")===0){name=name.substr(5);dataAttr(this[0],name,data[name]);}}}}
return data;}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){data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data===undefined&&this.length){data=jQuery.data(this[0],key);data=dataAttr(this[0],key,data);}
return data===undefined&&parts[1]?this.data(parts[0]):data;}else{return this.each(function(){var $this=jQuery(this),args=[parts[0],value];$this.triggerHandler("setData"+parts[1]+"!",args);jQuery.data(this,key,value);$this.triggerHandler("changeData"+parts[1]+"!",args);});}},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});}});function dataAttr(elem,key,data){if(data===undefined&&elem.nodeType===1){data=elem.getAttribute("data-"+key);if(typeof data==="string"){try{data=data==="true"?true:data==="false"?false:data==="null"?null:!jQuery.isNaN(data)?parseFloat(data):rbrace.test(data)?jQuery.parseJSON(data):data;}catch(e){}
jQuery.data(elem,key,data);}else{data=undefined;}}
return data;}
function isEmptyDataObject(obj){for(var name in obj){if(name!=="toJSON"){return false;}}
return true;}
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);});}
if(!queue.length){jQuery.removeData(elem,type+"queue",true);}}});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){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\r]/g,rspaces=/\s+/,rreturn=/\r/g,rspecialurl=/^(?:href|src|style)$/,rtype=/^(?:button|input)$/i,rfocusable=/^(?:button|input|object|select|textarea)$/i,rclickable=/^a(?:rea)?$/i,rradiocheck=/^(?:radio|checkbox)$/i;jQuery.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};jQuery.fn.extend({attr:function(name,value){return jQuery.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(rspaces);for(var i=0,l=this.length;i<l;i++){var elem=this[i];if(elem.nodeType===1){if(!elem.className){elem.className=value;}else{var className=" "+elem.className+" ",setClass=elem.className;for(var c=0,cl=classNames.length;c<cl;c++){if(className.indexOf(" "+classNames[c]+" ")<0){setClass+=" "+classNames[c];}}
elem.className=jQuery.trim(setClass);}}}}
return this;},removeClass:function(value){if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);self.removeClass(value.call(this,i,self.attr("class")));});}
if((value&&typeof value==="string")||value===undefined){var classNames=(value||"").split(rspaces);for(var i=0,l=this.length;i<l;i++){var elem=this[i];if(elem.nodeType===1&&elem.className){if(value){var className=(" "+elem.className+" ").replace(rclass," ");for(var c=0,cl=classNames.length;c<cl;c++){className=className.replace(" "+classNames[c]+" "," ");}
elem.className=jQuery.trim(className);}else{elem.className="";}}}}
return this;},toggleClass:function(value,stateVal){var type=typeof value,isBool=typeof stateVal==="boolean";if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);self.toggleClass(value.call(this,i,self.attr("class"),stateVal),stateVal);});}
return this.each(function(){if(type==="string"){var className,i=0,self=jQuery(this),state=stateVal,classNames=value.split(rspaces);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(!arguments.length){var elem=this[0];if(elem){if(jQuery.nodeName(elem,"option")){var val=elem.attributes.value;return!val||val.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&&(jQuery.support.optDisabled?!option.disabled:option.getAttribute("disabled")===null)&&(!option.parentNode.disabled||!jQuery.nodeName(option.parentNode,"optgroup"))){value=jQuery(option).val();if(one){return value;}
values.push(value);}}
if(one&&!values.length&&options.length){return jQuery(options[index]).val();}
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(val==null){val="";}else if(typeof val==="number"){val+="";}else if(jQuery.isArray(val)){val=jQuery.map(val,function(value){return value==null?"":value+"";});}
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||elem.nodeType===2){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||elem[name]!==undefined)&&notxml&&!special){if(set){if(name==="type"&&rtype.test(elem.nodeName)&&elem.parentNode){jQuery.error("type property can't be changed");}
if(value===null){if(elem.nodeType===1){elem.removeAttribute(name);}}else{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);}
if(!elem.attributes[name]&&(elem.hasAttribute&&!elem.hasAttribute(name))){return undefined;}
var attr=!jQuery.support.hrefNormalized&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}
if(set){elem[name]=value;}
return elem[name];}});var rnamespaces=/\.(.*)$/,rformElems=/^(?:textarea|input|select)$/i,rperiod=/\./g,rspace=/ /g,rescape=/[^\w\s.|`]/g,fcleanup=function(nm){return nm.replace(rescape,"\\$&");};jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType===3||elem.nodeType===8){return;}
try{if(jQuery.isWindow(elem)&&(elem!==window&&!elem.frameElement)){elem=window;}}
catch(e){}
if(handler===false){handler=returnFalse;}else if(!handler){return;}
var handleObjIn,handleObj;if(handler.handler){handleObjIn=handler;handler=handleObjIn.handler;}
if(!handler.guid){handler.guid=jQuery.guid++;}
var elemData=jQuery._data(elem);if(!elemData){return;}
var events=elemData.events,eventHandle=elemData.handle;if(!events){elemData.events=events={};}
if(!eventHandle){elemData.handle=eventHandle=function(){return typeof jQuery!=="undefined"&&!jQuery.event.triggered?jQuery.event.handle.apply(eventHandle.elem,arguments):undefined;};}
eventHandle.elem=elem;types=types.split(" ");var type,i=0,namespaces;while((type=types[i++])){handleObj=handleObjIn?jQuery.extend({},handleObjIn):{handler:handler,data:data};if(type.indexOf(".")>-1){namespaces=type.split(".");type=namespaces.shift();handleObj.namespace=namespaces.slice(0).sort().join(".");}else{namespaces=[];handleObj.namespace="";}
handleObj.type=type;if(!handleObj.guid){handleObj.guid=handler.guid;}
var handlers=events[type],special=jQuery.event.special[type]||{};if(!handlers){handlers=events[type]=[];if(!special.setup||special.setup.call(elem,data,namespaces,eventHandle)===false){if(elem.addEventListener){elem.addEventListener(type,eventHandle,false);}else if(elem.attachEvent){elem.attachEvent("on"+type,eventHandle);}}}
if(special.add){special.add.call(elem,handleObj);if(!handleObj.handler.guid){handleObj.handler.guid=handler.guid;}}
handlers.push(handleObj);jQuery.event.global[type]=true;}
elem=null;},global:{},remove:function(elem,types,handler,pos){if(elem.nodeType===3||elem.nodeType===8){return;}
if(handler===false){handler=returnFalse;}
var ret,type,fn,j,i=0,all,namespaces,namespace,special,eventType,handleObj,origType,elemData=jQuery.hasData(elem)&&jQuery._data(elem),events=elemData&&elemData.events;if(!elemData||!events){return;}
if(types&&types.type){handler=types.handler;types=types.type;}
if(!types||typeof types==="string"&&types.charAt(0)==="."){types=types||"";for(type in events){jQuery.event.remove(elem,type+types);}
return;}
types=types.split(" ");while((type=types[i++])){origType=type;handleObj=null;all=type.indexOf(".")<0;namespaces=[];if(!all){namespaces=type.split(".");type=namespaces.shift();namespace=new RegExp("(^|\\.)"+jQuery.map(namespaces.slice(0).sort(),fcleanup).join("\\.(?:.*\\.)?")+"(\\.|$)");}
eventType=events[type];if(!eventType){continue;}
if(!handler){for(j=0;j<eventType.length;j++){handleObj=eventType[j];if(all||namespace.test(handleObj.namespace)){jQuery.event.remove(elem,origType,handleObj.handler,j);eventType.splice(j--,1);}}
continue;}
special=jQuery.event.special[type]||{};for(j=pos||0;j<eventType.length;j++){handleObj=eventType[j];if(handler.guid===handleObj.guid){if(all||namespace.test(handleObj.namespace)){if(pos==null){eventType.splice(j--,1);}
if(special.remove){special.remove.call(elem,handleObj);}}
if(pos!=null){break;}}}
if(eventType.length===0||pos!=null&&eventType.length===1){if(!special.teardown||special.teardown.call(elem,namespaces)===false){jQuery.removeEvent(elem,type,elemData.handle);}
ret=null;delete events[type];}}
if(jQuery.isEmptyObject(events)){var handle=elemData.handle;if(handle){handle.elem=null;}
delete elemData.events;delete elemData.handle;if(jQuery.isEmptyObject(elemData)){jQuery.removeData(elem,undefined,true);}}},trigger:function(event,data,elem){var type=event.type||event,bubbling=arguments[3];if(!bubbling){event=typeof event==="object"?event[jQuery.expando]?event:jQuery.extend(jQuery.Event(type),event):jQuery.Event(type);if(type.indexOf("!")>=0){event.type=type=type.slice(0,-1);event.exclusive=true;}
if(!elem){event.stopPropagation();if(jQuery.event.global[type]){jQuery.each(jQuery.cache,function(){var internalKey=jQuery.expando,internalCache=this[internalKey];if(internalCache&&internalCache.events&&internalCache.events[type]){jQuery.event.trigger(event,data,internalCache.handle.elem);}});}}
if(!elem||elem.nodeType===3||elem.nodeType===8){return undefined;}
event.result=undefined;event.target=elem;data=jQuery.makeArray(data);data.unshift(event);}
event.currentTarget=elem;var handle=jQuery._data(elem,"handle");if(handle){handle.apply(elem,data);}
var parent=elem.parentNode||elem.ownerDocument;try{if(!(elem&&elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()])){if(elem["on"+type]&&elem["on"+type].apply(elem,data)===false){event.result=false;event.preventDefault();}}}catch(inlineError){}
if(!event.isPropagationStopped()&&parent){jQuery.event.trigger(event,data,parent,true);}else if(!event.isDefaultPrevented()){var old,target=event.target,targetType=type.replace(rnamespaces,""),isClick=jQuery.nodeName(target,"a")&&targetType==="click",special=jQuery.event.special[targetType]||{};if((!special._default||special._default.call(elem,event)===false)&&!isClick&&!(target&&target.nodeName&&jQuery.noData[target.nodeName.toLowerCase()])){try{if(target[targetType]){old=target["on"+targetType];if(old){target["on"+targetType]=null;}
jQuery.event.triggered=true;target[targetType]();}}catch(triggerError){}
if(old){target["on"+targetType]=old;}
jQuery.event.triggered=false;}}},handle:function(event){var all,handlers,namespaces,namespace_re,events,namespace_sort=[],args=jQuery.makeArray(arguments);event=args[0]=jQuery.event.fix(event||window.event);event.currentTarget=this;all=event.type.indexOf(".")<0&&!event.exclusive;if(!all){namespaces=event.type.split(".");event.type=namespaces.shift();namespace_sort=namespaces.slice(0).sort();namespace_re=new RegExp("(^|\\.)"+namespace_sort.join("\\.(?:.*\\.)?")+"(\\.|$)");}
event.namespace=event.namespace||namespace_sort.join(".");events=jQuery._data(this,"events");handlers=(events||{})[event.type];if(events&&handlers){handlers=handlers.slice(0);for(var j=0,l=handlers.length;j<l;j++){var handleObj=handlers[j];if(all||namespace_re.test(handleObj.namespace)){event.handler=handleObj.handler;event.data=handleObj.data;event.handleObj=handleObj;var ret=handleObj.handler.apply(this,args);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 pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(event){if(event[jQuery.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==null&&(event.charCode!=null||event.keyCode!=null)){event.which=event.charCode!=null?event.charCode:event.keyCode;}
if(!event.metaKey&&event.ctrlKey){event.metaKey=event.ctrlKey;}
if(!event.which&&event.button!==undefined){event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));}
return event;},guid:1E8,proxy:jQuery.proxy,special:{ready:{setup:jQuery.bindReady,teardown:jQuery.noop},live:{add:function(handleObj){jQuery.event.add(this,liveConvert(handleObj.origType,handleObj.selector),jQuery.extend({},handleObj,{handler:liveHandler,guid:handleObj.handler.guid}));},remove:function(handleObj){jQuery.event.remove(this,liveConvert(handleObj.origType,handleObj.selector),handleObj);}},beforeunload:{setup:function(data,namespaces,eventHandle){if(jQuery.isWindow(this)){this.onbeforeunload=eventHandle;}},teardown:function(namespaces,eventHandle){if(this.onbeforeunload===eventHandle){this.onbeforeunload=null;}}}}};jQuery.removeEvent=document.removeEventListener?function(elem,type,handle){if(elem.removeEventListener){elem.removeEventListener(type,handle,false);}}:function(elem,type,handle){if(elem.detachEvent){elem.detachEvent("on"+type,handle);}};jQuery.Event=function(src){if(!this.preventDefault){return new jQuery.Event(src);}
if(src&&src.type){this.originalEvent=src;this.type=src.type;this.isDefaultPrevented=(src.defaultPrevented||src.returnValue===false||src.getPreventDefault&&src.getPreventDefault())?returnTrue:returnFalse;}else{this.type=src;}
this.timeStamp=jQuery.now();this[jQuery.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();}else{e.returnValue=false;}},stopPropagation:function(){this.isPropagationStopped=returnTrue;var e=this.originalEvent;if(!e){return;}
if(e.stopPropagation){e.stopPropagation();}
e.cancelBubble=true;},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=returnTrue;this.stopPropagation();},isDefaultPrevented:returnFalse,isPropagationStopped:returnFalse,isImmediatePropagationStopped:returnFalse};var withinElement=function(event){var parent=event.relatedTarget;try{if(parent!==document&&!parent.parentNode){return;}
while(parent&&parent!==this){parent=parent.parentNode;}
if(parent!==this){event.type=event.data;jQuery.event.handle.apply(this,arguments);}}catch(e){}},delegate=function(event){event.type=event.data;jQuery.event.handle.apply(this,arguments);};jQuery.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(orig,fix){jQuery.event.special[orig]={setup:function(data){jQuery.event.add(this,fix,data&&data.selector?delegate:withinElement,orig);},teardown:function(data){jQuery.event.remove(this,fix,data&&data.selector?delegate:withinElement);}};});if(!jQuery.support.submitBubbles){jQuery.event.special.submit={setup:function(data,namespaces){if(this.nodeName&&this.nodeName.toLowerCase()!=="form"){jQuery.event.add(this,"click.specialSubmit",function(e){var elem=e.target,type=elem.type;if((type==="submit"||type==="image")&&jQuery(elem).closest("form").length){trigger("submit",this,arguments);}});jQuery.event.add(this,"keypress.specialSubmit",function(e){var elem=e.target,type=elem.type;if((type==="text"||type==="password")&&jQuery(elem).closest("form").length&&e.keyCode===13){trigger("submit",this,arguments);}});}else{return false;}},teardown:function(namespaces){jQuery.event.remove(this,".specialSubmit");}};}
if(!jQuery.support.changeBubbles){var changeFilters,getVal=function(elem){var type=elem.type,val=elem.value;if(type==="radio"||type==="checkbox"){val=elem.checked;}else if(type==="select-multiple"){val=elem.selectedIndex>-1?jQuery.map(elem.options,function(elem){return elem.selected;}).join("-"):"";}else if(elem.nodeName.toLowerCase()==="select"){val=elem.selectedIndex;}
return val;},testChange=function testChange(e){var elem=e.target,data,val;if(!rformElems.test(elem.nodeName)||elem.readOnly){return;}
data=jQuery._data(elem,"_change_data");val=getVal(elem);if(e.type!=="focusout"||elem.type!=="radio"){jQuery._data(elem,"_change_data",val);}
if(data===undefined||val===data){return;}
if(data!=null||val){e.type="change";e.liveFired=undefined;jQuery.event.trigger(e,arguments[1],elem);}};jQuery.event.special.change={filters:{focusout:testChange,beforedeactivate:testChange,click:function(e){var elem=e.target,type=elem.type;if(type==="radio"||type==="checkbox"||elem.nodeName.toLowerCase()==="select"){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"){testChange.call(this,e);}},beforeactivate:function(e){var elem=e.target;jQuery._data(elem,"_change_data",getVal(elem));}},setup:function(data,namespaces){if(this.type==="file"){return false;}
for(var type in changeFilters){jQuery.event.add(this,type+".specialChange",changeFilters[type]);}
return rformElems.test(this.nodeName);},teardown:function(namespaces){jQuery.event.remove(this,".specialChange");return rformElems.test(this.nodeName);}};changeFilters=jQuery.event.special.change.filters;changeFilters.focus=changeFilters.beforeactivate;}
function trigger(type,elem,args){var event=jQuery.extend({},args[0]);event.type=type;event.originalEvent={};event.liveFired=undefined;jQuery.event.handle.call(elem,event);if(event.isDefaultPrevented()){args[0].preventDefault();}}
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)||data===false){fn=data;data=undefined;}
var handler=name==="one"?jQuery.proxy(fn,function(event){jQuery(this).unbind(event,handler);return fn.apply(this,arguments);}):fn;if(type==="unload"&&name!=="one"){this.one(type,data,fn);}else{for(var i=0,l=this.length;i<l;i++){jQuery.event.add(this[i],type,handler,data);}}
return this;};});jQuery.fn.extend({unbind:function(type,fn){if(typeof type==="object"&&!type.preventDefault){for(var key in type){this.unbind(key,type[key]);}}else{for(var i=0,l=this.length;i<l;i++){jQuery.event.remove(this[i],type,fn);}}
return this;},delegate:function(selector,types,data,fn){return this.live(types,data,fn,selector);},undelegate:function(selector,types,fn){if(arguments.length===0){return this.unbind("live");}else{return this.die(types,null,fn,selector);}},trigger:function(type,data){return this.each(function(){jQuery.event.trigger(type,data,this);});},triggerHandler:function(type,data){if(this[0]){var event=jQuery.Event(type);event.preventDefault();event.stopPropagation();jQuery.event.trigger(event,data,this[0]);return event.result;}},toggle:function(fn){var args=arguments,i=1;while(i<args.length){jQuery.proxy(fn,args[i++]);}
return this.click(jQuery.proxy(fn,function(event){var lastToggle=(jQuery._data(this,"lastToggle"+fn.guid)||0)%i;jQuery._data(this,"lastToggle"+fn.guid,lastToggle+1);event.preventDefault();return args[lastToggle].apply(this,arguments)||false;}));},hover:function(fnOver,fnOut){return this.mouseenter(fnOver).mouseleave(fnOut||fnOver);}});var liveMap={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};jQuery.each(["live","die"],function(i,name){jQuery.fn[name]=function(types,data,fn,origSelector){var type,i=0,match,namespaces,preType,selector=origSelector||this.selector,context=origSelector?this:jQuery(this.context);if(typeof types==="object"&&!types.preventDefault){for(var key in types){context[name](key,data,types[key],selector);}
return this;}
if(jQuery.isFunction(data)){fn=data;data=undefined;}
types=(types||"").split(" ");while((type=types[i++])!=null){match=rnamespaces.exec(type);namespaces="";if(match){namespaces=match[0];type=type.replace(rnamespaces,"");}
if(type==="hover"){types.push("mouseenter"+namespaces,"mouseleave"+namespaces);continue;}
preType=type;if(type==="focus"||type==="blur"){types.push(liveMap[type]+namespaces);type=type+namespaces;}else{type=(liveMap[type]||type)+namespaces;}
if(name==="live"){for(var j=0,l=context.length;j<l;j++){jQuery.event.add(context[j],"live."+liveConvert(type,selector),{data:data,selector:selector,handler:fn,origType:type,origHandler:fn,preType:preType});}}else{context.unbind("live."+liveConvert(type,selector),fn);}}
return this;};});function liveHandler(event){var stop,maxLevel,related,match,handleObj,elem,j,i,l,data,close,namespace,ret,elems=[],selectors=[],events=jQuery._data(this,"events");if(event.liveFired===this||!events||!events.live||event.target.disabled||event.button&&event.type==="click"){return;}
if(event.namespace){namespace=new RegExp("(^|\\.)"+event.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)");}
event.liveFired=this;var live=events.live.slice(0);for(j=0;j<live.length;j++){handleObj=live[j];if(handleObj.origType.replace(rnamespaces,"")===event.type){selectors.push(handleObj.selector);}else{live.splice(j--,1);}}
match=jQuery(event.target).closest(selectors,event.currentTarget);for(i=0,l=match.length;i<l;i++){close=match[i];for(j=0;j<live.length;j++){handleObj=live[j];if(close.selector===handleObj.selector&&(!namespace||namespace.test(handleObj.namespace))&&!close.elem.disabled){elem=close.elem;related=null;if(handleObj.preType==="mouseenter"||handleObj.preType==="mouseleave"){event.type=handleObj.preType;related=jQuery(event.relatedTarget).closest(handleObj.selector)[0];}
if(!related||related!==elem){elems.push({elem:elem,handleObj:handleObj,level:close.level});}}}}
for(i=0,l=elems.length;i<l;i++){match=elems[i];if(maxLevel&&match.level>maxLevel){break;}
event.currentTarget=match.elem;event.data=match.handleObj.data;event.handleObj=match.handleObj;ret=match.handleObj.origHandler.apply(match.elem,arguments);if(ret===false||event.isPropagationStopped()){maxLevel=match.level;if(ret===false){stop=false;}
if(event.isImmediatePropagationStopped()){break;}}}
return stop;}
function liveConvert(type,selector){return(type&&type!=="*"?type+".":"")+selector.replace(rperiod,"`").replace(rspace,"&");}
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(data,fn){if(fn==null){fn=data;data=null;}
return arguments.length>0?this.bind(name,data,fn):this.trigger(name);};if(jQuery.attrFn){jQuery.attrFn[name]=true;}});(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,done=0,toString=Object.prototype.toString,hasDuplicate=false,baseHasDuplicate=true,rBackslash=/\\/g,rNonWord=/\W/;[0,0].sort(function(){baseHasDuplicate=false;return 0;});var Sizzle=function(selector,context,results,seed){results=results||[];context=context||document;var origContext=context;if(context.nodeType!==1&&context.nodeType!==9){return[];}
if(!selector||typeof selector!=="string"){return results;}
var m,set,checkSet,extra,ret,cur,pop,i,prune=true,contextXML=Sizzle.isXML(context),parts=[],soFar=selector;do{chunker.exec("");m=chunker.exec(soFar);if(m){soFar=m[3];parts.push(m[1]);if(m[2]){extra=m[3];break;}}}while(m);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])){ret=Sizzle.find(parts.shift(),context,contextXML);context=ret.expr?Sizzle.filter(ret.expr,ret.set)[0]:ret.set[0];}
if(context){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){cur=parts.pop();pop=cur;if(!Expr.relative[cur]){cur="";}else{pop=parts.pop();}
if(pop==null){pop=context;}
Expr.relative[cur](checkSet,pop,contextXML);}}else{checkSet=parts=[];}}
if(!checkSet){checkSet=set;}
if(!checkSet){Sizzle.error(cur||selector);}
if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet);}else if(context&&context.nodeType===1){for(i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&Sizzle.contains(context,checkSet[i]))){results.push(set[i]);}}}else{for(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.matchesSelector=function(node,expr){return Sizzle(expr,null,null,[node]).length>0;};Sizzle.find=function(expr,context,isXML){var set;if(!expr){return[];}
for(var i=0,l=Expr.order.length;i<l;i++){var match,type=Expr.order[i];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(rBackslash,"");set=Expr.find[type](match,context,isXML);if(set!=null){expr=expr.replace(Expr.match[type],"");break;}}}}
if(!set){set=typeof context.getElementsByTagName!=="undefined"?context.getElementsByTagName("*"):[];}
return{set:set,expr:expr};};Sizzle.filter=function(expr,set,inplace,not){var match,anyFound,old=expr,result=[],curLoop=set,isXMLFilter=set&&set[0]&&Sizzle.isXML(set[0]);while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.leftMatch[type].exec(expr))!=null&&match[2]){var found,item,filter=Expr.filter[type],left=match[1];anyFound=false;match.splice(1,1);if(left.substr(left.length-1)==="\\"){continue;}
if(curLoop===result){result=[];}
if(Expr.preFilter[type]){match=Expr.preFilter[type](match,curLoop,inplace,result,not,isXMLFilter);if(!match){anyFound=found=true;}else if(match===true){continue;}}
if(match){for(var i=0;(item=curLoop[i])!=null;i++){if(item){found=filter(item,match,i,curLoop);var pass=not^!!found;if(inplace&&found!=null){if(pass){anyFound=true;}else{curLoop[i]=false;}}else if(pass){result.push(item);anyFound=true;}}}}
if(found!==undefined){if(!inplace){curLoop=result;}
expr=expr.replace(Expr.match[type],"");if(!anyFound){return[];}
break;}}}
if(expr===old){if(anyFound==null){Sizzle.error(expr);}else{break;}}
old=expr;}
return curLoop;};Sizzle.error=function(msg){throw"Syntax error, unrecognized expression: "+msg;};var Expr=Sizzle.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF\-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF\-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF\-]|\\.)+)\s*(?:(\S?=)\s*(?:(['"])(.*?)\3|(#?(?:[\w\u00c0-\uFFFF\-]|\\.)*)|)|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*\-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\(\s*(even|odd|(?:[+\-]?\d+|(?:[+\-]?\d*)?n\s*(?:[+\-]\s*\d+)?))\s*\))?/,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");},type:function(elem){return elem.getAttribute("type");}},relative:{"+":function(checkSet,part){var isPartStr=typeof part==="string",isTag=isPartStr&&!rNonWord.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 elem,isPartStr=typeof part==="string",i=0,l=checkSet.length;if(isPartStr&&!rNonWord.test(part)){part=part.toLowerCase();for(;i<l;i++){elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName.toLowerCase()===part?parent:false;}}}else{for(;i<l;i++){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 nodeCheck,doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!rNonWord.test(part)){part=part.toLowerCase();nodeCheck=part;checkFn=dirNodeCheck;}
checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML);},"~":function(checkSet,part,isXML){var nodeCheck,doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!rNonWord.test(part)){part=part.toLowerCase();nodeCheck=part;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.parentNode?[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){if(typeof context.getElementsByTagName!=="undefined"){return context.getElementsByTagName(match[1]);}}},preFilter:{CLASS:function(match,curLoop,inplace,result,not,isXML){match=" "+match[1].replace(rBackslash,"")+" ";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\r]/g," ").indexOf(match)>=0)){if(!inplace){result.push(elem);}}else if(inplace){curLoop[i]=false;}}}
return false;},ID:function(match){return match[1].replace(rBackslash,"");},TAG:function(match,curLoop){return match[1].replace(rBackslash,"").toLowerCase();},CHILD:function(match){if(match[1]==="nth"){if(!match[2]){Sizzle.error(match[0]);}
match[2]=match[2].replace(/^\+|\s*/g,'');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;}
else if(match[2]){Sizzle.error(match[0]);}
match[0]=done++;return match;},ATTR:function(match,curLoop,inplace,result,not,isXML){var name=match[1]=match[1].replace(rBackslash,"");if(!isXML&&Expr.attrMap[name]){match[1]=Expr.attrMap[name];}
match[4]=(match[4]||match[5]||"").replace(rBackslash,"");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){if(elem.parentNode){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.getAttribute('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||Sizzle.getText([elem])||"").indexOf(match[3])>=0;}else if(name==="not"){var not=match[3];for(var j=0,l=not.length;j<l;j++){if(not[j]===elem){return false;}}
return true;}else{Sizzle.error(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,fescape=function(all,num){return"\\"+(num-0+1);};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,fescape));}
var makeArray=function(array,results){array=Array.prototype.slice.call(array,0);if(results){results.push.apply(results,array);return results;}
return array;};try{Array.prototype.slice.call(document.documentElement.childNodes,0)[0].nodeType;}catch(e){makeArray=function(array,results){var i=0,ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array);}else{if(typeof array.length==="number"){for(var l=array.length;i<l;i++){ret.push(array[i]);}}else{for(;array[i];i++){ret.push(array[i]);}}}
return ret;};}
var sortOrder,siblingCheck;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){if(a===b){hasDuplicate=true;return 0;}
if(!a.compareDocumentPosition||!b.compareDocumentPosition){return a.compareDocumentPosition?-1:1;}
return a.compareDocumentPosition(b)&4?-1:1;};}else{sortOrder=function(a,b){var al,bl,ap=[],bp=[],aup=a.parentNode,bup=b.parentNode,cur=aup;if(a===b){hasDuplicate=true;return 0;}else if(aup===bup){return siblingCheck(a,b);}else if(!aup){return-1;}else if(!bup){return 1;}
while(cur){ap.unshift(cur);cur=cur.parentNode;}
cur=bup;while(cur){bp.unshift(cur);cur=cur.parentNode;}
al=ap.length;bl=bp.length;for(var i=0;i<al&&i<bl;i++){if(ap[i]!==bp[i]){return siblingCheck(ap[i],bp[i]);}}
return i===al?siblingCheck(a,bp[i],-1):siblingCheck(ap[i],b,1);};siblingCheck=function(a,b,ret){if(a===b){return ret;}
var cur=a.nextSibling;while(cur){if(cur===b){return-1;}
cur=cur.nextSibling;}
return 1;};}
Sizzle.getText=function(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+=Sizzle.getText(elem.childNodes);}}
return ret;};(function(){var form=document.createElement("div"),id="script"+(new Date()).getTime(),root=document.documentElement;form.innerHTML="<a name='"+id+"'/>";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"),id="__sizzle__";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&&!Sizzle.isXML(context)){var match=/^(\w+$)|^\.([\w\-]+$)|^#([\w\-]+$)/.exec(query);if(match&&(context.nodeType===1||context.nodeType===9)){if(match[1]){return makeArray(context.getElementsByTagName(query),extra);}else if(match[2]&&Expr.find.CLASS&&context.getElementsByClassName){return makeArray(context.getElementsByClassName(match[2]),extra);}}
if(context.nodeType===9){if(query==="body"&&context.body){return makeArray([context.body],extra);}else if(match&&match[3]){var elem=context.getElementById(match[3]);if(elem&&elem.parentNode){if(elem.id===match[3]){return makeArray([elem],extra);}}else{return makeArray([],extra);}}
try{return makeArray(context.querySelectorAll(query),extra);}catch(qsaError){}}else if(context.nodeType===1&&context.nodeName.toLowerCase()!=="object"){var oldContext=context,old=context.getAttribute("id"),nid=old||id,hasParent=context.parentNode,relativeHierarchySelector=/^\s*[+~]/.test(query);if(!old){context.setAttribute("id",nid);}else{nid=nid.replace(/'/g,"\\$&");}
if(relativeHierarchySelector&&hasParent){context=context.parentNode;}
try{if(!relativeHierarchySelector||hasParent){return makeArray(context.querySelectorAll("[id='"+nid+"'] "+query),extra);}}catch(pseudoError){}finally{if(!old){oldContext.removeAttribute("id");}}}}
return oldSizzle(query,context,extra,seed);};for(var prop in oldSizzle){Sizzle[prop]=oldSizzle[prop];}
div=null;})();}
(function(){var html=document.documentElement,matches=html.matchesSelector||html.mozMatchesSelector||html.webkitMatchesSelector||html.msMatchesSelector,pseudoWorks=false;try{matches.call(document.documentElement,"[test!='']:sizzle");}catch(pseudoError){pseudoWorks=true;}
if(matches){Sizzle.matchesSelector=function(node,expr){expr=expr.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!Sizzle.isXML(node)){try{if(pseudoWorks||!Expr.match.PSEUDO.test(expr)&&!/!=/.test(expr)){return matches.call(node,expr);}}catch(e){}}
return Sizzle(expr,null,null,[node]).length>0;};}})();(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){var match=false;elem=elem[dir];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){var match=false;elem=elem[dir];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;}}}
if(document.documentElement.contains){Sizzle.contains=function(a,b){return a!==b&&(a.contains?a.contains(b):true);};}else if(document.documentElement.compareDocumentPosition){Sizzle.contains=function(a,b){return!!(a.compareDocumentPosition(b)&16);};}else{Sizzle.contains=function(){return false;};}
Sizzle.isXML=function(elem){var documentElement=(elem?elem.ownerDocument||elem:0).documentElement;return documentElement?documentElement.nodeName!=="HTML":false;};var posProcess=function(selector,context){var match,tmpSet=[],later="",root=context.nodeType?[context]:context;while((match=Expr.match.PSEUDO.exec(selector))){later+=match[0];selector=selector.replace(Expr.match.PSEUDO,"");}
selector=Expr.relative[selector]?selector+"*":selector;for(var i=0,l=root.length;i<l;i++){Sizzle(selector,root[i],tmpSet);}
return Sizzle.filter(later,tmpSet);};jQuery.find=Sizzle;jQuery.expr=Sizzle.selectors;jQuery.expr[":"]=jQuery.expr.filters;jQuery.unique=Sizzle.uniqueSort;jQuery.text=Sizzle.getText;jQuery.isXMLDoc=Sizzle.isXML;jQuery.contains=Sizzle.contains;})();var runtil=/Until$/,rparentsprev=/^(?:parents|prevUntil|prevAll)/,rmultiselector=/,/,isSimple=/^.[^:#\[\.,]*$/,slice=Array.prototype.slice,POS=jQuery.expr.match.POS,guaranteedUnique={children:true,contents:true,next:true,prev:true};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){var ret=[],i,l,cur=this[0];if(jQuery.isArray(selectors)){var match,selector,matches={},level=1;if(cur&&selectors.length){for(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,level:level});}}
cur=cur.parentNode;level++;}}
return ret;}
var pos=POS.test(selectors)?jQuery(selectors,context||this.context):null;for(i=0,l=this.length;i<l;i++){cur=this[i];while(cur){if(pos?pos.index(cur)>-1:jQuery.find.matchesSelector(cur,selectors)){ret.push(cur);break;}else{cur=cur.parentNode;if(!cur||!cur.ownerDocument||cur===context){break;}}}}
ret=ret.length>1?jQuery.unique(ret):ret;return this.pushStack(ret,"closest",selectors);},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):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),args=slice.call(arguments);if(!runtil.test(name)){selector=until;}
if(selector&&typeof selector==="string"){ret=jQuery.filter(selector,ret);}
ret=this.length>1&&!guaranteedUnique[name]?jQuery.unique(ret):ret;if((this.length>1||rmultiselector.test(selector))&&rparentsprev.test(name)){ret=ret.reverse();}
return this.pushStack(ret,name,args.join(","));};});jQuery.extend({filter:function(expr,elems,not){if(not){expr=":not("+expr+")";}
return elems.length===1?jQuery.find.matchesSelector(elems[0],expr)?[elems[0]]:[]:jQuery.find.matches(expr,elems);},dir:function(elem,dir,until){var matched=[],cur=elem[dir];while(cur&&cur.nodeType!==9&&(until===undefined||cur.nodeType!==1||!jQuery(cur).is(until))){if(cur.nodeType===1){matched.push(cur);}
cur=cur[dir];}
return matched;},nth:function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir]){if(cur.nodeType===1&&++num===result){break;}}
return cur;},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType===1&&n!==elem){r.push(n);}}
return r;}});function winnow(elements,qualifier,keep){if(jQuery.isFunction(qualifier)){return jQuery.grep(elements,function(elem,i){var retVal=!!qualifier.call(elem,i,elem);return retVal===keep;});}else if(qualifier.nodeType){return jQuery.grep(elements,function(elem,i){return(elem===qualifier)===keep;});}else if(typeof qualifier==="string"){var filtered=jQuery.grep(elements,function(elem){return elem.nodeType===1;});if(isSimple.test(qualifier)){return jQuery.filter(qualifier,filtered,!keep);}else{qualifier=jQuery.filter(qualifier,filtered);}}
return jQuery.grep(elements,function(elem,i){return(jQuery.inArray(elem,qualifier)>=0)===keep;});}
var rinlinejQuery=/ jQuery\d+="(?:\d+|null)"/g,rleadingWhitespace=/^\s+/,rxhtmlTag=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,rtagName=/<([\w:]+)/,rtbody=/<tbody/i,rhtml=/<|&#?\w+;/,rnocache=/<(?:script|object|embed|option|style)/i,rchecked=/checked\s*(?:[^=]|=\s*.checked.)/i,wrapMap={option:[1,"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};wrapMap.optgroup=wrapMap.option;wrapMap.tbody=wrapMap.tfoot=wrapMap.colgroup=wrapMap.caption=wrapMap.thead;wrapMap.th=wrapMap.td;if(!jQuery.support.htmlSerialize){wrapMap._default=[1,"div<div>","</div>"];}
jQuery.fn.extend({text:function(text){if(jQuery.isFunction(text)){return this.each(function(i){var self=jQuery(this);self.text(text.call(this,i,self.text()));});}
if(typeof text!=="object"&&text!==undefined){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));}
return jQuery.text(this);},wrapAll:function(html){if(jQuery.isFunction(html)){return this.each(function(i){jQuery(this).wrapAll(html.call(this,i));});}
if(this[0]){var wrap=jQuery(html,this[0].ownerDocument).eq(0).clone(true);if(this[0].parentNode){wrap.insertBefore(this[0]);}
wrap.map(function(){var elem=this;while(elem.firstChild&&elem.firstChild.nodeType===1){elem=elem.firstChild;}
return elem;}).append(this);}
return this;},wrapInner:function(html){if(jQuery.isFunction(html)){return this.each(function(i){jQuery(this).wrapInner(html.call(this,i));});}
return this.each(function(){var self=jQuery(this),contents=self.contents();if(contents.length){contents.wrapAll(html);}else{self.append(html);}});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},unwrap:function(){return this.parent().each(function(){if(!jQuery.nodeName(this,"body")){jQuery(this).replaceWith(this.childNodes);}}).end();},append:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType===1){this.appendChild(elem);}});},prepend:function(){return this.domManip(arguments,true,function(elem){if(this.nodeType===1){this.insertBefore(elem,this.firstChild);}});},before:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this);});}else if(arguments.length){var set=jQuery(arguments[0]);set.push.apply(set,this.toArray());return this.pushStack(set,"before",arguments);}},after:function(){if(this[0]&&this[0].parentNode){return this.domManip(arguments,false,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});}else if(arguments.length){var set=this.pushStack(this,"after",arguments);set.push.apply(set,jQuery(arguments[0]).toArray());return set;}},remove:function(selector,keepData){for(var i=0,elem;(elem=this[i])!=null;i++){if(!selector||jQuery.filter(selector,[elem]).length){if(!keepData&&elem.nodeType===1){jQuery.cleanData(elem.getElementsByTagName("*"));jQuery.cleanData([elem]);}
if(elem.parentNode){elem.parentNode.removeChild(elem);}}}
return this;},empty:function(){for(var i=0,elem;(elem=this[i])!=null;i++){if(elem.nodeType===1){jQuery.cleanData(elem.getElementsByTagName("*"));}
while(elem.firstChild){elem.removeChild(elem.firstChild);}}
return this;},clone:function(dataAndEvents,deepDataAndEvents){dataAndEvents=dataAndEvents==null?false:dataAndEvents;deepDataAndEvents=deepDataAndEvents==null?dataAndEvents:deepDataAndEvents;return this.map(function(){return jQuery.clone(this,dataAndEvents,deepDataAndEvents);});},html:function(value){if(value===undefined){return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(rinlinejQuery,""):null;}else if(typeof value==="string"&&!rnocache.test(value)&&(jQuery.support.leadingWhitespace||!rleadingWhitespace.test(value))&&!wrapMap[(rtagName.exec(value)||["",""])[1].toLowerCase()]){value=value.replace(rxhtmlTag,"<$1></$2>");try{for(var i=0,l=this.length;i<l;i++){if(this[i].nodeType===1){jQuery.cleanData(this[i].getElementsByTagName("*"));this[i].innerHTML=value;}}}catch(e){this.empty().append(value);}}else if(jQuery.isFunction(value)){this.each(function(i){var self=jQuery(this);self.html(value.call(this,i,self.html()));});}else{this.empty().append(value);}
return this;},replaceWith:function(value){if(this[0]&&this[0].parentNode){if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this),old=self.html();self.replaceWith(value.call(this,i,old));});}
if(typeof value!=="string"){value=jQuery(value).detach();}
return this.each(function(){var next=this.nextSibling,parent=this.parentNode;jQuery(this).remove();if(next){jQuery(next).before(value);}else{jQuery(parent).append(value);}});}else{return this.pushStack(jQuery(jQuery.isFunction(value)?value():value),"replaceWith",value);}},detach:function(selector){return this.remove(selector,true);},domManip:function(args,table,callback){var results,first,fragment,parent,value=args[0],scripts=[];if(!jQuery.support.checkClone&&arguments.length===3&&typeof value==="string"&&rchecked.test(value)){return this.each(function(){jQuery(this).domManip(args,table,callback,true);});}
if(jQuery.isFunction(value)){return this.each(function(i){var self=jQuery(this);args[0]=value.call(this,i,table?self.html():undefined);self.domManip(args,table,callback);});}
if(this[0]){parent=value&&value.parentNode;if(jQuery.support.parentNode&&parent&&parent.nodeType===11&&parent.childNodes.length===this.length){results={fragment:parent};}else{results=jQuery.buildFragment(args,this,scripts);}
fragment=results.fragment;if(fragment.childNodes.length===1){first=fragment=fragment.firstChild;}else{first=fragment.firstChild;}
if(first){table=table&&jQuery.nodeName(first,"tr");for(var i=0,l=this.length,lastIndex=l-1;i<l;i++){callback.call(table?root(this[i],first):this[i],results.cacheable||(l>1&&i<lastIndex)?jQuery.clone(fragment,true,true):fragment);}}
if(scripts.length){jQuery.each(scripts,evalScript);}}
return this;}});function root(elem,cur){return jQuery.nodeName(elem,"table")?(elem.getElementsByTagName("tbody")[0]||elem.appendChild(elem.ownerDocument.createElement("tbody"))):elem;}
function cloneCopyEvent(src,dest){if(dest.nodeType!==1||!jQuery.hasData(src)){return;}
var internalKey=jQuery.expando,oldData=jQuery.data(src),curData=jQuery.data(dest,oldData);if((oldData=oldData[internalKey])){var events=oldData.events;curData=curData[internalKey]=jQuery.extend({},oldData);if(events){delete curData.handle;curData.events={};for(var type in events){for(var i=0,l=events[type].length;i<l;i++){jQuery.event.add(dest,type+(events[type][i].namespace?".":"")+events[type][i].namespace,events[type][i],events[type][i].data);}}}}}
function cloneFixAttributes(src,dest){if(dest.nodeType!==1){return;}
var nodeName=dest.nodeName.toLowerCase();dest.clearAttributes();dest.mergeAttributes(src);if(nodeName==="object"){dest.outerHTML=src.outerHTML;}else if(nodeName==="input"&&(src.type==="checkbox"||src.type==="radio")){if(src.checked){dest.defaultChecked=dest.checked=src.checked;}
if(dest.value!==src.value){dest.value=src.value;}}else if(nodeName==="option"){dest.selected=src.defaultSelected;}else if(nodeName==="input"||nodeName==="textarea"){dest.defaultValue=src.defaultValue;}
dest.removeAttribute(jQuery.expando);}
jQuery.buildFragment=function(args,nodes,scripts){var fragment,cacheable,cacheresults,doc=(nodes&&nodes[0]?nodes[0].ownerDocument||nodes[0]:document);if(args.length===1&&typeof args[0]==="string"&&args[0].length<512&&doc===document&&args[0].charAt(0)==="<"&&!rnocache.test(args[0])&&(jQuery.support.checkClone||!rchecked.test(args[0]))){cacheable=true;cacheresults=jQuery.fragments[args[0]];if(cacheresults){if(cacheresults!==1){fragment=cacheresults;}}}
if(!fragment){fragment=doc.createDocumentFragment();jQuery.clean(args,doc,fragment,scripts);}
if(cacheable){jQuery.fragments[args[0]]=cacheresults?fragment:1;}
return{fragment:fragment,cacheable:cacheable};};jQuery.fragments={};jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(selector){var ret=[],insert=jQuery(selector),parent=this.length===1&&this[0].parentNode;if(parent&&parent.nodeType===11&&parent.childNodes.length===1&&insert.length===1){insert[original](this[0]);return this;}else{for(var i=0,l=insert.length;i<l;i++){var elems=(i>0?this.clone(true):this).get();jQuery(insert[i])[original](elems);ret=ret.concat(elems);}
return this.pushStack(ret,name,insert.selector);}};});function getAll(elem){if("getElementsByTagName"in elem){return elem.getElementsByTagName("*");}else if("querySelectorAll"in elem){return elem.querySelectorAll("*");}else{return[];}}
jQuery.extend({clone:function(elem,dataAndEvents,deepDataAndEvents){var clone=elem.cloneNode(true),srcElements,destElements,i;if((!jQuery.support.noCloneEvent||!jQuery.support.noCloneChecked)&&(elem.nodeType===1||elem.nodeType===11)&&!jQuery.isXMLDoc(elem)){cloneFixAttributes(elem,clone);srcElements=getAll(elem);destElements=getAll(clone);for(i=0;srcElements[i];++i){cloneFixAttributes(srcElements[i],destElements[i]);}}
if(dataAndEvents){cloneCopyEvent(elem,clone);if(deepDataAndEvents){srcElements=getAll(elem);destElements=getAll(clone);for(i=0;srcElements[i];++i){cloneCopyEvent(srcElements[i],destElements[i]);}}}
return clone;},clean:function(elems,context,fragment,scripts){context=context||document;if(typeof context.createElement==="undefined"){context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;}
var ret=[];for(var i=0,elem;(elem=elems[i])!=null;i++){if(typeof elem==="number"){elem+="";}
if(!elem){continue;}
if(typeof elem==="string"&&!rhtml.test(elem)){elem=context.createTextNode(elem);}else if(typeof elem==="string"){elem=elem.replace(rxhtmlTag,"<$1></$2>");var tag=(rtagName.exec(elem)||["",""])[1].toLowerCase(),wrap=wrapMap[tag]||wrapMap._default,depth=wrap[0],div=context.createElement("div");div.innerHTML=wrap[1]+elem+wrap[2];while(depth--){div=div.lastChild;}
if(!jQuery.support.tbody){var hasBody=rtbody.test(elem),tbody=tag==="table"&&!hasBody?div.firstChild&&div.firstChild.childNodes:wrap[1]==="<table>"&&!hasBody?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j){if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length){tbody[j].parentNode.removeChild(tbody[j]);}}}
if(!jQuery.support.leadingWhitespace&&rleadingWhitespace.test(elem)){div.insertBefore(context.createTextNode(rleadingWhitespace.exec(elem)[0]),div.firstChild);}
elem=div.childNodes;}
if(elem.nodeType){ret.push(elem);}else{ret=jQuery.merge(ret,elem);}}
if(fragment){for(i=0;ret[i];i++){if(scripts&&jQuery.nodeName(ret[i],"script")&&(!ret[i].type||ret[i].type.toLowerCase()==="text/javascript")){scripts.push(ret[i].parentNode?ret[i].parentNode.removeChild(ret[i]):ret[i]);}else{if(ret[i].nodeType===1){ret.splice.apply(ret,[i+1,0].concat(jQuery.makeArray(ret[i].getElementsByTagName("script"))));}
fragment.appendChild(ret[i]);}}}
return ret;},cleanData:function(elems){var data,id,cache=jQuery.cache,internalKey=jQuery.expando,special=jQuery.event.special,deleteExpando=jQuery.support.deleteExpando;for(var i=0,elem;(elem=elems[i])!=null;i++){if(elem.nodeName&&jQuery.noData[elem.nodeName.toLowerCase()]){continue;}
id=elem[jQuery.expando];if(id){data=cache[id]&&cache[id][internalKey];if(data&&data.events){for(var type in data.events){if(special[type]){jQuery.event.remove(elem,type);}else{jQuery.removeEvent(elem,type,data.handle);}}
if(data.handle){data.handle.elem=null;}}
if(deleteExpando){delete elem[jQuery.expando];}else if(elem.removeAttribute){elem.removeAttribute(jQuery.expando);}
delete cache[id];}}}});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);}}
var ralpha=/alpha\([^)]*\)/i,ropacity=/opacity=([^)]*)/,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"],curCSS,getComputedStyle,currentStyle,fcamelCase=function(all,letter){return letter.toUpperCase();};jQuery.fn.css=function(name,value){if(arguments.length===2&&value===undefined){return this;}
return jQuery.access(this,name,value,true,function(elem,name,value){return value!==undefined?jQuery.style(elem,name,value):jQuery.css(elem,name);});};jQuery.extend({cssHooks:{opacity:{get:function(elem,computed){if(computed){var ret=curCSS(elem,"opacity","opacity");return ret===""?"1":ret;}else{return elem.style.opacity;}}}},cssNumber:{"zIndex":true,"fontWeight":true,"opacity":true,"zoom":true,"lineHeight":true},cssProps:{"float":jQuery.support.cssFloat?"cssFloat":"styleFloat"},style:function(elem,name,value,extra){if(!elem||elem.nodeType===3||elem.nodeType===8||!elem.style){return;}
var ret,origName=jQuery.camelCase(name),style=elem.style,hooks=jQuery.cssHooks[origName];name=jQuery.cssProps[origName]||origName;if(value!==undefined){if(typeof value==="number"&&isNaN(value)||value==null){return;}
if(typeof value==="number"&&!jQuery.cssNumber[origName]){value+="px";}
if(!hooks||!("set"in hooks)||(value=hooks.set(elem,value))!==undefined){try{style[name]=value;}catch(e){}}}else{if(hooks&&"get"in hooks&&(ret=hooks.get(elem,false,extra))!==undefined){return ret;}
return style[name];}},css:function(elem,name,extra){var ret,origName=jQuery.camelCase(name),hooks=jQuery.cssHooks[origName];name=jQuery.cssProps[origName]||origName;if(hooks&&"get"in hooks&&(ret=hooks.get(elem,true,extra))!==undefined){return ret;}else if(curCSS){return curCSS(elem,name,origName);}},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(name in options){elem.style[name]=old[name];}},camelCase:function(string){return string.replace(rdashAlpha,fcamelCase);}});jQuery.curCSS=jQuery.css;jQuery.each(["height","width"],function(i,name){jQuery.cssHooks[name]={get:function(elem,computed,extra){var val;if(computed){if(elem.offsetWidth!==0){val=getWH(elem,name,extra);}else{jQuery.swap(elem,cssShow,function(){val=getWH(elem,name,extra);});}
if(val<=0){val=curCSS(elem,name,name);if(val==="0px"&&currentStyle){val=currentStyle(elem,name,name);}
if(val!=null){return val===""||val==="auto"?"0px":val;}}
if(val<0||val==null){val=elem.style[name];return val===""||val==="auto"?"0px":val;}
return typeof val==="string"?val:val+"px";}},set:function(elem,value){if(rnumpx.test(value)){value=parseFloat(value);if(value>=0){return value+"px";}}else{return value;}}};});if(!jQuery.support.opacity){jQuery.cssHooks.opacity={get:function(elem,computed){return ropacity.test((computed&&elem.currentStyle?elem.currentStyle.filter:elem.style.filter)||"")?(parseFloat(RegExp.$1)/100)+"":computed?"1":"";},set:function(elem,value){var style=elem.style;style.zoom=1;var opacity=jQuery.isNaN(value)?"":"alpha(opacity="+value*100+")",filter=style.filter||"";style.filter=ralpha.test(filter)?filter.replace(ralpha,opacity):style.filter+' '+opacity;}};}
if(document.defaultView&&document.defaultView.getComputedStyle){getComputedStyle=function(elem,newName,name){var ret,defaultView,computedStyle;name=name.replace(rupper,"-$1").toLowerCase();if(!(defaultView=elem.ownerDocument.defaultView)){return undefined;}
if((computedStyle=defaultView.getComputedStyle(elem,null))){ret=computedStyle.getPropertyValue(name);if(ret===""&&!jQuery.contains(elem.ownerDocument.documentElement,elem)){ret=jQuery.style(elem,name);}}
return ret;};}
if(document.documentElement.currentStyle){currentStyle=function(elem,name){var left,ret=elem.currentStyle&&elem.currentStyle[name],rsLeft=elem.runtimeStyle&&elem.runtimeStyle[name],style=elem.style;if(!rnumpx.test(ret)&&rnum.test(ret)){left=style.left;if(rsLeft){elem.runtimeStyle.left=elem.currentStyle.left;}
style.left=name==="fontSize"?"1em":(ret||0);ret=style.pixelLeft+"px";style.left=left;if(rsLeft){elem.runtimeStyle.left=rsLeft;}}
return ret===""?"auto":ret;};}
curCSS=getComputedStyle||currentStyle;function getWH(elem,name,extra){var which=name==="width"?cssWidth:cssHeight,val=name==="width"?elem.offsetWidth:elem.offsetHeight;if(extra==="border"){return val;}
jQuery.each(which,function(){if(!extra){val-=parseFloat(jQuery.css(elem,"padding"+this))||0;}
if(extra==="margin"){val+=parseFloat(jQuery.css(elem,"margin"+this))||0;}else{val-=parseFloat(jQuery.css(elem,"border"+this+"Width"))||0;}});return val;}
if(jQuery.expr&&jQuery.expr.filters){jQuery.expr.filters.hidden=function(elem){var width=elem.offsetWidth,height=elem.offsetHeight;return(width===0&&height===0)||(!jQuery.support.reliableHiddenOffsets&&(elem.style.display||jQuery.css(elem,"display"))==="none");};jQuery.expr.filters.visible=function(elem){return!jQuery.expr.filters.hidden(elem);};}
var r20=/%20/g,rbracket=/\[\]$/,rCRLF=/\r?\n/g,rhash=/#.*$/,rheaders=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,rinput=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,rlocalProtocol=/(?:^file|^widget|\-extension):$/,rnoContent=/^(?:GET|HEAD)$/,rprotocol=/^\/\//,rquery=/\?/,rscript=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,rselectTextarea=/^(?:select|textarea)/i,rspacesAjax=/\s+/,rts=/([?&])_=[^&]*/,rucHeaders=/(^|\-)([a-z])/g,rucHeadersFunc=function(_,$1,$2){return $1+$2.toUpperCase();},rurl=/^([\w\+\.\-]+:)\/\/([^\/?#:]*)(?::(\d+))?/,_load=jQuery.fn.load,prefilters={},transports={},ajaxLocation,ajaxLocParts;try{ajaxLocation=document.location.href;}catch(e){ajaxLocation=document.createElement("a");ajaxLocation.href="";ajaxLocation=ajaxLocation.href;}
ajaxLocParts=rurl.exec(ajaxLocation.toLowerCase());function addToPrefiltersOrTransports(structure){return function(dataTypeExpression,func){if(typeof dataTypeExpression!=="string"){func=dataTypeExpression;dataTypeExpression="*";}
if(jQuery.isFunction(func)){var dataTypes=dataTypeExpression.toLowerCase().split(rspacesAjax),i=0,length=dataTypes.length,dataType,list,placeBefore;for(;i<length;i++){dataType=dataTypes[i];placeBefore=/^\+/.test(dataType);if(placeBefore){dataType=dataType.substr(1)||"*";}
list=structure[dataType]=structure[dataType]||[];list[placeBefore?"unshift":"push"](func);}}};}
function inspectPrefiltersOrTransports(structure,options,originalOptions,jqXHR,dataType,inspected){dataType=dataType||options.dataTypes[0];inspected=inspected||{};inspected[dataType]=true;var list=structure[dataType],i=0,length=list?list.length:0,executeOnly=(structure===prefilters),selection;for(;i<length&&(executeOnly||!selection);i++){selection=list[i](options,originalOptions,jqXHR);if(typeof selection==="string"){if(!executeOnly||inspected[selection]){selection=undefined;}else{options.dataTypes.unshift(selection);selection=inspectPrefiltersOrTransports(structure,options,originalOptions,jqXHR,selection,inspected);}}}
if((executeOnly||!selection)&&!inspected["*"]){selection=inspectPrefiltersOrTransports(structure,options,originalOptions,jqXHR,"*",inspected);}
return selection;}
jQuery.fn.extend({load:function(url,params,callback){if(typeof url!=="string"&&_load){return _load.apply(this,arguments);}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=undefined;}else if(typeof params==="object"){params=jQuery.param(params,jQuery.ajaxSettings.traditional);type="POST";}}
var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(jqXHR,status,responseText){responseText=jqXHR.responseText;if(jqXHR.isResolved()){jqXHR.done(function(r){responseText=r;});self.html(selector?jQuery("<div>")
.append(responseText.replace(rscript,""))
.find(selector):responseText);}
if(callback){self.each(callback,[responseText,status,jqXHR]);}}});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.replace(rCRLF,"\r\n")};}):{name:elem.name,value:val.replace(rCRLF,"\r\n")};}).get();}});jQuery.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});jQuery.each(["get","post"],function(i,method){jQuery[method]=function(url,data,callback,type){if(jQuery.isFunction(data)){type=type||callback;callback=data;data=undefined;}
return jQuery.ajax({type:method,url:url,data:data,success:callback,dataType:type});};});jQuery.extend({getScript:function(url,callback){return jQuery.get(url,undefined,callback,"script");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json");},ajaxSetup:function(target,settings){if(!settings){settings=target;target=jQuery.extend(true,jQuery.ajaxSettings,settings);}else{jQuery.extend(true,target,jQuery.ajaxSettings,settings);}
for(var field in{context:1,url:1}){if(field in settings){target[field]=settings[field];}else if(field in jQuery.ajaxSettings){target[field]=jQuery.ajaxSettings[field];}}
return target;},ajaxSettings:{url:ajaxLocation,isLocal:rlocalProtocol.test(ajaxLocParts[1]),global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":"*/*"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":window.String,"text html":true,"text json":jQuery.parseJSON,"text xml":jQuery.parseXML}},ajaxPrefilter:addToPrefiltersOrTransports(prefilters),ajaxTransport:addToPrefiltersOrTransports(transports),ajax:function(url,options){if(typeof url==="object"){options=url;url=undefined;}
options=options||{};var
s=jQuery.ajaxSetup({},options),callbackContext=s.context||s,globalEventContext=callbackContext!==s&&(callbackContext.nodeType||callbackContext instanceof jQuery)?jQuery(callbackContext):jQuery.event,deferred=jQuery.Deferred(),completeDeferred=jQuery._Deferred(),statusCode=s.statusCode||{},ifModifiedKey,requestHeaders={},responseHeadersString,responseHeaders,transport,timeoutTimer,parts,state=0,fireGlobals,i,jqXHR={readyState:0,setRequestHeader:function(name,value){if(!state){requestHeaders[name.toLowerCase().replace(rucHeaders,rucHeadersFunc)]=value;}
return this;},getAllResponseHeaders:function(){return state===2?responseHeadersString:null;},getResponseHeader:function(key){var match;if(state===2){if(!responseHeaders){responseHeaders={};while((match=rheaders.exec(responseHeadersString))){responseHeaders[match[1].toLowerCase()]=match[2];}}
match=responseHeaders[key.toLowerCase()];}
return match===undefined?null:match;},overrideMimeType:function(type){if(!state){s.mimeType=type;}
return this;},abort:function(statusText){statusText=statusText||"abort";if(transport){transport.abort(statusText);}
done(0,statusText);return this;}};function done(status,statusText,responses,headers){if(state===2){return;}
state=2;if(timeoutTimer){clearTimeout(timeoutTimer);}
transport=undefined;responseHeadersString=headers||"";jqXHR.readyState=status?4:0;var isSuccess,success,error,response=responses?ajaxHandleResponses(s,jqXHR,responses):undefined,lastModified,etag;if(status>=200&&status<300||status===304){if(s.ifModified){if((lastModified=jqXHR.getResponseHeader("Last-Modified"))){jQuery.lastModified[ifModifiedKey]=lastModified;}
if((etag=jqXHR.getResponseHeader("Etag"))){jQuery.etag[ifModifiedKey]=etag;}}
if(status===304){statusText="notmodified";isSuccess=true;}else{try{success=ajaxConvert(s,response);statusText="success";isSuccess=true;}catch(e){statusText="parsererror";error=e;}}}else{error=statusText;if(!statusText||status){statusText="error";if(status<0){status=0;}}}
jqXHR.status=status;jqXHR.statusText=statusText;if(isSuccess){deferred.resolveWith(callbackContext,[success,statusText,jqXHR]);}else{deferred.rejectWith(callbackContext,[jqXHR,statusText,error]);}
jqXHR.statusCode(statusCode);statusCode=undefined;if(fireGlobals){globalEventContext.trigger("ajax"+(isSuccess?"Success":"Error"),[jqXHR,s,isSuccess?success:error]);}
completeDeferred.resolveWith(callbackContext,[jqXHR,statusText]);if(fireGlobals){globalEventContext.trigger("ajaxComplete",[jqXHR,s]);if(!(--jQuery.active)){jQuery.event.trigger("ajaxStop");}}}
deferred.promise(jqXHR);jqXHR.success=jqXHR.done;jqXHR.error=jqXHR.fail;jqXHR.complete=completeDeferred.done;jqXHR.statusCode=function(map){if(map){var tmp;if(state<2){for(tmp in map){statusCode[tmp]=[statusCode[tmp],map[tmp]];}}else{tmp=map[jqXHR.status];jqXHR.then(tmp,tmp);}}
return this;};s.url=((url||s.url)+"").replace(rhash,"").replace(rprotocol,ajaxLocParts[1]+"//");s.dataTypes=jQuery.trim(s.dataType||"*").toLowerCase().split(rspacesAjax);if(!s.crossDomain){parts=rurl.exec(s.url.toLowerCase());s.crossDomain=!!(parts&&(parts[1]!=ajaxLocParts[1]||parts[2]!=ajaxLocParts[2]||(parts[3]||(parts[1]==="http:"?80:443))!=(ajaxLocParts[3]||(ajaxLocParts[1]==="http:"?80:443))));}
if(s.data&&s.processData&&typeof s.data!=="string"){s.data=jQuery.param(s.data,s.traditional);}
inspectPrefiltersOrTransports(prefilters,s,options,jqXHR);if(state===2){return false;}
fireGlobals=s.global;s.type=s.type.toUpperCase();s.hasContent=!rnoContent.test(s.type);if(fireGlobals&&jQuery.active++===0){jQuery.event.trigger("ajaxStart");}
if(!s.hasContent){if(s.data){s.url+=(rquery.test(s.url)?"&":"?")+s.data;}
ifModifiedKey=s.url;if(s.cache===false){var ts=jQuery.now(),ret=s.url.replace(rts,"$1_="+ts);s.url=ret+((ret===s.url)?(rquery.test(s.url)?"&":"?")+"_="+ts:"");}}
if(s.data&&s.hasContent&&s.contentType!==false||options.contentType){requestHeaders["Content-Type"]=s.contentType;}
if(s.ifModified){ifModifiedKey=ifModifiedKey||s.url;if(jQuery.lastModified[ifModifiedKey]){requestHeaders["If-Modified-Since"]=jQuery.lastModified[ifModifiedKey];}
if(jQuery.etag[ifModifiedKey]){requestHeaders["If-None-Match"]=jQuery.etag[ifModifiedKey];}}
requestHeaders.Accept=s.dataTypes[0]&&s.accepts[s.dataTypes[0]]?s.accepts[s.dataTypes[0]]+(s.dataTypes[0]!=="*"?", */*; q=0.01":""):s.accepts["*"];for(i in s.headers){jqXHR.setRequestHeader(i,s.headers[i]);}
if(s.beforeSend&&(s.beforeSend.call(callbackContext,jqXHR,s)===false||state===2)){jqXHR.abort();return false;}
for(i in{success:1,error:1,complete:1}){jqXHR[i](s[i]);}
transport=inspectPrefiltersOrTransports(transports,s,options,jqXHR);if(!transport){done(-1,"No Transport");}else{jqXHR.readyState=1;if(fireGlobals){globalEventContext.trigger("ajaxSend",[jqXHR,s]);}
if(s.async&&s.timeout>0){timeoutTimer=setTimeout(function(){jqXHR.abort("timeout");},s.timeout);}
try{state=1;transport.send(requestHeaders,done);}catch(e){if(status<2){done(-1,e);}else{jQuery.error(e);}}}
return jqXHR;},param:function(a,traditional){var s=[],add=function(key,value){value=jQuery.isFunction(value)?value():value;s[s.length]=encodeURIComponent(key)+"="+encodeURIComponent(value);};if(traditional===undefined){traditional=jQuery.ajaxSettings.traditional;}
if(jQuery.isArray(a)||(a.jquery&&!jQuery.isPlainObject(a))){jQuery.each(a,function(){add(this.name,this.value);});}else{for(var prefix in a){buildParams(prefix,a[prefix],traditional,add);}}
return s.join("&").replace(r20,"+");}});function buildParams(prefix,obj,traditional,add){if(jQuery.isArray(obj)&&obj.length){jQuery.each(obj,function(i,v){if(traditional||rbracket.test(prefix)){add(prefix,v);}else{buildParams(prefix+"["+(typeof v==="object"||jQuery.isArray(v)?i:"")+"]",v,traditional,add);}});}else if(!traditional&&obj!=null&&typeof obj==="object"){if(jQuery.isArray(obj)||jQuery.isEmptyObject(obj)){add(prefix,"");}else{for(var name in obj){buildParams(prefix+"["+name+"]",obj[name],traditional,add);}}}else{add(prefix,obj);}}
jQuery.extend({active:0,lastModified:{},etag:{}});function ajaxHandleResponses(s,jqXHR,responses){var contents=s.contents,dataTypes=s.dataTypes,responseFields=s.responseFields,ct,type,finalDataType,firstDataType;for(type in responseFields){if(type in responses){jqXHR[responseFields[type]]=responses[type];}}
while(dataTypes[0]==="*"){dataTypes.shift();if(ct===undefined){ct=s.mimeType||jqXHR.getResponseHeader("content-type");}}
if(ct){for(type in contents){if(contents[type]&&contents[type].test(ct)){dataTypes.unshift(type);break;}}}
if(dataTypes[0]in responses){finalDataType=dataTypes[0];}else{for(type in responses){if(!dataTypes[0]||s.converters[type+" "+dataTypes[0]]){finalDataType=type;break;}
if(!firstDataType){firstDataType=type;}}
finalDataType=finalDataType||firstDataType;}
if(finalDataType){if(finalDataType!==dataTypes[0]){dataTypes.unshift(finalDataType);}
return responses[finalDataType];}}
function ajaxConvert(s,response){if(s.dataFilter){response=s.dataFilter(response,s.dataType);}
var dataTypes=s.dataTypes,converters={},i,key,length=dataTypes.length,tmp,current=dataTypes[0],prev,conversion,conv,conv1,conv2;for(i=1;i<length;i++){if(i===1){for(key in s.converters){if(typeof key==="string"){converters[key.toLowerCase()]=s.converters[key];}}}
prev=current;current=dataTypes[i];if(current==="*"){current=prev;}else if(prev!=="*"&&prev!==current){conversion=prev+" "+current;conv=converters[conversion]||converters["* "+current];if(!conv){conv2=undefined;for(conv1 in converters){tmp=conv1.split(" ");if(tmp[0]===prev||tmp[0]==="*"){conv2=converters[tmp[1]+" "+current];if(conv2){conv1=converters[conv1];if(conv1===true){conv=conv2;}else if(conv2===true){conv=conv1;}
break;}}}}
if(!(conv||conv2)){jQuery.error("No conversion from "+conversion.replace(" "," to "));}
if(conv!==true){response=conv?conv(response):conv2(conv1(response));}}}
return response;}
var jsc=jQuery.now(),jsre=/(\=)\?(&|$)|()\?\?()/i;jQuery.ajaxSetup({jsonp:"callback",jsonpCallback:function(){return jQuery.expando+"_"+(jsc++);}});jQuery.ajaxPrefilter("json jsonp",function(s,originalSettings,jqXHR){var dataIsString=(typeof s.data==="string");if(s.dataTypes[0]==="jsonp"||originalSettings.jsonpCallback||originalSettings.jsonp!=null||s.jsonp!==false&&(jsre.test(s.url)||dataIsString&&jsre.test(s.data))){var responseContainer,jsonpCallback=s.jsonpCallback=jQuery.isFunction(s.jsonpCallback)?s.jsonpCallback():s.jsonpCallback,previous=window[jsonpCallback],url=s.url,data=s.data,replace="$1"+jsonpCallback+"$2",cleanUp=function(){window[jsonpCallback]=previous;if(responseContainer&&jQuery.isFunction(previous)){window[jsonpCallback](responseContainer[0]);}};if(s.jsonp!==false){url=url.replace(jsre,replace);if(s.url===url){if(dataIsString){data=data.replace(jsre,replace);}
if(s.data===data){url+=(/\?/.test(url)?"&":"?")+s.jsonp+"="+jsonpCallback;}}}
s.url=url;s.data=data;window[jsonpCallback]=function(response){responseContainer=[response];};jqXHR.then(cleanUp,cleanUp);s.converters["script json"]=function(){if(!responseContainer){jQuery.error(jsonpCallback+" was not called");}
return responseContainer[0];};s.dataTypes[0]="json";return"script";}});jQuery.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(text){jQuery.globalEval(text);return text;}}});jQuery.ajaxPrefilter("script",function(s){if(s.cache===undefined){s.cache=false;}
if(s.crossDomain){s.type="GET";s.global=false;}});jQuery.ajaxTransport("script",function(s){if(s.crossDomain){var script,head=document.head||document.getElementsByTagName("head")[0]||document.documentElement;return{send:function(_,callback){script=document.createElement("script");script.async="async";if(s.scriptCharset){script.charset=s.scriptCharset;}
script.src=s.url;script.onload=script.onreadystatechange=function(_,isAbort){if(!script.readyState||/loaded|complete/.test(script.readyState)){script.onload=script.onreadystatechange=null;if(head&&script.parentNode){head.removeChild(script);}
script=undefined;if(!isAbort){callback(200,"success");}}};head.insertBefore(script,head.firstChild);},abort:function(){if(script){script.onload(0,1);}}};}});var
xhrId=jQuery.now(),xhrCallbacks,testXHR;function xhrOnUnloadAbort(){jQuery(window).unload(function(){for(var key in xhrCallbacks){xhrCallbacks[key](0,1);}});}
function createStandardXHR(){try{return new window.XMLHttpRequest();}catch(e){}}
function createActiveXHR(){try{return new window.ActiveXObject("Microsoft.XMLHTTP");}catch(e){}}
jQuery.ajaxSettings.xhr=window.ActiveXObject?function(){return!this.isLocal&&createStandardXHR()||createActiveXHR();}:createStandardXHR;testXHR=jQuery.ajaxSettings.xhr();jQuery.support.ajax=!!testXHR;jQuery.support.cors=testXHR&&("withCredentials"in testXHR);testXHR=undefined;if(jQuery.support.ajax){jQuery.ajaxTransport(function(s){if(!s.crossDomain||jQuery.support.cors){var callback;return{send:function(headers,complete){var xhr=s.xhr(),handle,i;if(s.username){xhr.open(s.type,s.url,s.async,s.username,s.password);}else{xhr.open(s.type,s.url,s.async);}
if(s.xhrFields){for(i in s.xhrFields){xhr[i]=s.xhrFields[i];}}
if(s.mimeType&&xhr.overrideMimeType){xhr.overrideMimeType(s.mimeType);}
if(!(s.crossDomain&&!s.hasContent)&&!headers["X-Requested-With"]){headers["X-Requested-With"]="XMLHttpRequest";}
try{for(i in headers){xhr.setRequestHeader(i,headers[i]);}}catch(_){}
xhr.send((s.hasContent&&s.data)||null);callback=function(_,isAbort){var status,statusText,responseHeaders,responses,xml;try{if(callback&&(isAbort||xhr.readyState===4)){callback=undefined;if(handle){xhr.onreadystatechange=jQuery.noop;delete xhrCallbacks[handle];}
if(isAbort){if(xhr.readyState!==4){xhr.abort();}}else{status=xhr.status;responseHeaders=xhr.getAllResponseHeaders();responses={};xml=xhr.responseXML;if(xml&&xml.documentElement){responses.xml=xml;}
responses.text=xhr.responseText;try{statusText=xhr.statusText;}catch(e){statusText="";}
if(!status&&s.isLocal&&!s.crossDomain){status=responses.text?200:404;}else if(status===1223){status=204;}}}}catch(firefoxAccessException){if(!isAbort){complete(-1,firefoxAccessException);}}
if(responses){complete(status,statusText,responses,responseHeaders);}};if(!s.async||xhr.readyState===4){callback();}else{if(!xhrCallbacks){xhrCallbacks={};xhrOnUnloadAbort();}
handle=xhrId++;xhr.onreadystatechange=xhrCallbacks[handle]=callback;}},abort:function(){if(callback){callback(0,1);}}};}});}
var elemdisplay={},rfxtypes=/^(?:toggle|show|hide)$/,rfxnum=/^([+\-]=)?([\d+.\-]+)([a-z%]*)$/i,timerId,fxAttrs=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];jQuery.fn.extend({show:function(speed,easing,callback){var elem,display;if(speed||speed===0){return this.animate(genFx("show",3),speed,easing,callback);}else{for(var i=0,j=this.length;i<j;i++){elem=this[i];display=elem.style.display;if(!jQuery._data(elem,"olddisplay")&&display==="none"){display=elem.style.display="";}
if(display===""&&jQuery.css(elem,"display")==="none"){jQuery._data(elem,"olddisplay",defaultDisplay(elem.nodeName));}}
for(i=0;i<j;i++){elem=this[i];display=elem.style.display;if(display===""||display==="none"){elem.style.display=jQuery._data(elem,"olddisplay")||"";}}
return this;}},hide:function(speed,easing,callback){if(speed||speed===0){return this.animate(genFx("hide",3),speed,easing,callback);}else{for(var i=0,j=this.length;i<j;i++){var display=jQuery.css(this[i],"display");if(display!=="none"&&!jQuery._data(this[i],"olddisplay")){jQuery._data(this[i],"olddisplay",display);}}
for(i=0;i<j;i++){this[i].style.display="none";}
return this;}},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2,callback){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,callback);}
return this;},fadeTo:function(speed,to,easing,callback){return this.filter(":hidden").css("opacity",0).show().end()
.animate({opacity:to},speed,easing,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,isElement=this.nodeType===1,hidden=isElement&&jQuery(this).is(":hidden"),self=this;for(p in prop){var name=jQuery.camelCase(p);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(isElement&&(p==="height"||p==="width")){opt.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY];if(jQuery.css(this,"display")==="inline"&&jQuery.css(this,"float")==="none"){if(!jQuery.support.inlineBlockNeedsLayout){this.style.display="inline-block";}else{var display=defaultDisplay(this.nodeName);if(display==="inline"){this.style.display="inline-block";}else{this.style.display="inline";this.style.zoom=1;}}}}
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();if(parts){var end=parseFloat(parts[2]),unit=parts[3]||(jQuery.cssNumber[name]?"":"px");if(unit!=="px"){jQuery.style(self,name,(end||1)+unit);start=((end||1)/e.cur())*start;jQuery.style(self,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;}});function genFx(type,num){var obj={};jQuery.each(fxAttrs.concat.apply([],fxAttrs.slice(0,num)),function(){obj[this]=type;});return obj;}
jQuery.each({slideDown:genFx("show",1),slideUp:genFx("hide",1),slideToggle:genFx("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(name,props){jQuery.fn[name]=function(speed,easing,callback){return this.animate(props,speed,easing,callback);};});jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&typeof speed==="object"?jQuery.extend({},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:opt.duration in jQuery.fx.speeds?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);},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop];}
var parsed,r=jQuery.css(this.elem,this.prop);return isNaN(parsed=parseFloat(r))?!r||r==="auto"?0:r:parsed;},custom:function(from,to,unit){var self=this,fx=jQuery.fx;this.startTime=jQuery.now();this.start=from;this.end=to;this.unit=unit||this.unit||(jQuery.cssNumber[this.prop]?"":"px");this.now=this.start;this.pos=this.state=0;function t(gotoEnd){return self.step(gotoEnd);}
t.elem=this.elem;if(t()&&jQuery.timers.push(t)&&!timerId){timerId=setInterval(fx.tick,fx.interval);}},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=jQuery.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.overflow!=null&&!jQuery.support.shrinkWrapBlocks){var elem=this.elem,options=this.options;jQuery.each(["","X","Y"],function(index,value){elem.style["overflow"+value]=options.overflow[index];});}
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();}},interval:13,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 defaultDisplay(nodeName){if(!elemdisplay[nodeName]){var elem=jQuery("<"+nodeName+">").appendTo("body"),display=elem.css("display");elem.remove();if(display==="none"||display===""){display="block";}
elemdisplay[nodeName]=display;}
return elemdisplay[nodeName];}
var rtable=/^t(?:able|d|h)$/i,rroot=/^(?:body|html)$/i;if("getBoundingClientRect"in document.documentElement){jQuery.fn.offset=function(options){var elem=this[0],box;if(options){return this.each(function(i){jQuery.offset.setOffset(this,options,i);});}
if(!elem||!elem.ownerDocument){return null;}
if(elem===elem.ownerDocument.body){return jQuery.offset.bodyOffset(elem);}
try{box=elem.getBoundingClientRect();}catch(e){}
var doc=elem.ownerDocument,docElem=doc.documentElement;if(!box||!jQuery.contains(docElem,elem)){return box?{top:box.top,left:box.left}:{top:0,left:0};}
var body=doc.body,win=getWindow(doc),clientTop=docElem.clientTop||body.clientTop||0,clientLeft=docElem.clientLeft||body.clientLeft||0,scrollTop=(win.pageYOffset||jQuery.support.boxModel&&docElem.scrollTop||body.scrollTop),scrollLeft=(win.pageXOffset||jQuery.support.boxModel&&docElem.scrollLeft||body.scrollLeft),top=box.top+scrollTop-clientTop,left=box.left+scrollLeft-clientLeft;return{top:top,left:left};};}else{jQuery.fn.offset=function(options){var elem=this[0];if(options){return this.each(function(i){jQuery.offset.setOffset(this,options,i);});}
if(!elem||!elem.ownerDocument){return null;}
if(elem===elem.ownerDocument.body){return jQuery.offset.bodyOffset(elem);}
jQuery.offset.initialize();var computedStyle,offsetParent=elem.offsetParent,prevOffsetParent=elem,doc=elem.ownerDocument,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&&rtable.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.css(body,"marginTop"))||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.css(body,"marginTop"))||0;left+=parseFloat(jQuery.css(body,"marginLeft"))||0;}
return{top:top,left:left};},setOffset:function(elem,options,i){var position=jQuery.css(elem,"position");if(position==="static"){elem.style.position="relative";}
var curElem=jQuery(elem),curOffset=curElem.offset(),curCSSTop=jQuery.css(elem,"top"),curCSSLeft=jQuery.css(elem,"left"),calculatePosition=(position==="absolute"&&jQuery.inArray('auto',[curCSSTop,curCSSLeft])>-1),props={},curPosition={},curTop,curLeft;if(calculatePosition){curPosition=curElem.position();}
curTop=calculatePosition?curPosition.top:parseInt(curCSSTop,10)||0;curLeft=calculatePosition?curPosition.left:parseInt(curCSSLeft,10)||0;if(jQuery.isFunction(options)){options=options.call(elem,i,curOffset);}
if(options.top!=null){props.top=(options.top-curOffset.top)+curTop;}
if(options.left!=null){props.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=rroot.test(offsetParent[0].nodeName)?{top:0,left:0}:offsetParent.offset();offset.top-=parseFloat(jQuery.css(elem,"marginTop"))||0;offset.left-=parseFloat(jQuery.css(elem,"marginLeft"))||0;parentOffset.top+=parseFloat(jQuery.css(offsetParent[0],"borderTopWidth"))||0;parentOffset.left+=parseFloat(jQuery.css(offsetParent[0],"borderLeftWidth"))||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&&(!rroot.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 jQuery.isWindow(elem)?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]?parseFloat(jQuery.css(this[0],type,"padding")):null;};jQuery.fn["outer"+name]=function(margin){return this[0]?parseFloat(jQuery.css(this[0],type,margin?"margin":"border")):null;};jQuery.fn[type]=function(size){var elem=this[0];if(!elem){return size==null?null:this;}
if(jQuery.isFunction(size)){return this.each(function(i){var self=jQuery(this);self[type](size.call(this,i,self[type]()));});}
if(jQuery.isWindow(elem)){var docElemProp=elem.document.documentElement["client"+name];return elem.document.compatMode==="CSS1Compat"&&docElemProp||elem.document.body["client"+name]||docElemProp;}else if(elem.nodeType===9){return Math.max(elem.documentElement["client"+name],elem.body["scroll"+name],elem.documentElement["scroll"+name],elem.body["offset"+name],elem.documentElement["offset"+name]);}else if(size===undefined){var orig=jQuery.css(elem,type),ret=parseFloat(orig);return jQuery.isNaN(ret)?orig:ret;}else{return this.css(type,typeof size==="string"?size:size+"px");}};});window.jQuery=window.$=jQuery;})(window);





//Cufon
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return!!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());





//Avante Garde 600
Cufon.registerFont({"w":554,"face":{"font-family":"AvantGarde","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"13","bbox":"-113 -955 1148 222","underline-thickness":"50","underline-position":"-100","stemh":"63","stemv":"70","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":277},"!":{"d":"111,0r0,-126r74,0r0,126r-74,0xm111,-193r0,-547r74,0r0,547r-74,0","w":295},"\"":{"d":"105,-444r-57,0r-12,-296r81,0xm261,-444r-57,0r-12,-296r81,0","w":309},"#":{"d":"101,0r29,-206r-97,0r0,-67r107,0r26,-193r-107,0r0,-68r117,0r29,-206r69,0r-29,206r124,0r29,-206r69,0r-29,206r83,0r0,67r-93,0r-27,194r92,0r0,67r-101,0r-29,206r-69,0r29,-206r-124,0r-29,206r-69,0xm359,-467r-123,0r-27,194r123,0"},"$":{"d":"241,70r0,-99v-105,-15,-176,-100,-171,-199r74,0v0,113,84,138,137,138v81,0,130,-52,130,-133v0,-105,-93,-128,-140,-140v-53,-13,-180,-44,-180,-183v0,-93,59,-165,150,-181r0,-84r74,0r0,81v136,19,161,132,163,186r-74,0v1,-65,-41,-121,-125,-121v-62,0,-114,37,-114,119v0,83,69,102,130,118v49,13,190,50,190,205v0,85,-58,183,-170,194r0,99r-74,0"},"%":{"d":"451,-166v0,68,53,123,121,123v68,0,121,-55,121,-123v0,-68,-53,-123,-121,-123v-68,0,-121,55,-121,123xm391,-166v0,-99,82,-179,181,-179v99,0,181,80,181,179v0,99,-82,179,-181,179v-99,0,-181,-80,-181,-179xm21,-572v0,-99,82,-179,181,-179v99,0,181,80,181,179v0,99,-82,179,-181,179v-99,0,-181,-80,-181,-179xm81,-572v0,68,53,123,121,123v68,0,121,-55,121,-123v0,-68,-53,-123,-121,-123v-68,0,-121,55,-121,123xm630,-740r-424,740r-68,0r424,-740r68,0","w":775},"&":{"d":"603,-482r83,0r-137,261r187,182r-53,51r-169,-165v-26,49,-87,165,-225,165v-141,0,-233,-114,-233,-226v0,-116,85,-181,171,-220v-37,-37,-83,-83,-83,-155v0,-94,84,-164,178,-164v91,0,177,74,177,173v0,105,-106,155,-144,168r140,138xm458,-206r-178,-175v-18,6,-55,25,-73,38v-63,46,-77,92,-77,133v0,90,79,152,153,152v100,0,147,-93,175,-148xm302,-464v37,-15,123,-44,123,-126v0,-47,-43,-93,-104,-93v-62,0,-103,47,-103,93v1,50,43,90,84,126","w":757},"\u2019":{"d":"168,-546r-74,0r88,-194r74,0","w":351},"(":{"d":"355,-757r0,75v-173,104,-234,291,-234,406v0,99,46,295,234,409r0,72v-138,-45,-308,-234,-308,-481v0,-247,170,-436,308,-481","w":369},")":{"d":"14,-682r0,-75v138,45,308,234,308,481v0,247,-170,436,-308,481r0,-72v188,-114,234,-310,234,-409v0,-115,-61,-302,-234,-406","w":369},"*":{"d":"185,-625r-1,-115r58,0r-2,116r109,-37r18,55r-110,34r68,92r-47,34r-67,-94r-66,93r-47,-34r69,-92r-109,-34r18,-56","w":425},"+":{"d":"337,-506r0,219r218,0r0,68r-218,0r0,219r-68,0r0,-219r-218,0r0,-68r218,0r0,-219r68,0","w":606},",":{"d":"14,67r88,-193r74,0r-88,193r-74,0","w":277},"-":{"d":"30,-315r272,0r0,67r-272,0r0,-67","w":332},".":{"d":"102,0r0,-126r74,0r0,126r-74,0","w":277},"\/":{"d":"44,100r280,-840r79,0r-283,840r-76,0","w":437},"0":{"d":"277,-753v121,0,255,100,248,267v-6,133,12,304,-37,384v-57,93,-153,115,-211,115v-58,0,-154,-22,-211,-115v-49,-80,-32,-252,-37,-384v-7,-168,126,-267,248,-267xm423,-133v55,-107,20,-206,28,-336v0,-6,1,-95,-32,-141v-73,-103,-211,-103,-284,0v-33,46,-32,135,-32,141r0,188v0,23,2,105,28,148v64,105,235,109,292,0"},"1":{"d":"262,0r0,-673r-127,0r0,-67r201,0r0,740r-74,0"},"2":{"d":"40,0r0,-67r260,-250v86,-83,140,-135,140,-212v0,-76,-63,-157,-160,-157v-14,0,-159,2,-160,185v-23,-2,-55,4,-74,-2v0,-193,142,-250,238,-250v152,0,230,129,230,225v0,87,-44,147,-136,234r-238,227r370,0r0,67r-470,0"},"3":{"d":"432,-224v0,-98,-78,-175,-212,-165r0,-65v4,0,17,1,25,1v118,0,138,-80,138,-116v0,-44,-27,-117,-115,-117v-59,0,-111,48,-111,131r-74,0v3,-125,88,-198,187,-198v112,0,187,88,187,190v0,71,-38,109,-76,139v109,57,125,154,125,196v0,146,-111,241,-233,241v-72,0,-231,-41,-239,-245r74,0v2,100,65,177,165,178v86,0,159,-62,159,-170"},"4":{"d":"387,0r0,-135r-373,0r0,-67r359,-538r88,0r0,538r67,0r0,67r-67,0r0,135r-74,0xm99,-202r288,0r0,-436r-2,0"},"5":{"d":"68,-375r67,-365r333,0r0,67r-274,0r-37,204v24,-13,66,-35,126,-35v139,0,247,115,247,259v0,134,-103,258,-251,258v-60,0,-225,-29,-253,-246r74,0v12,113,91,179,179,179v105,0,177,-94,177,-191v0,-110,-79,-193,-176,-193v-61,0,-115,34,-154,84"},"6":{"d":"297,-739r84,0r-171,251v164,-59,320,78,320,242v0,128,-92,259,-253,259v-156,0,-253,-120,-253,-263v0,-85,43,-148,89,-217xm98,-243v0,82,58,189,179,189v105,0,179,-85,179,-191v0,-103,-74,-191,-179,-191v-94,0,-179,77,-179,193"},"7":{"d":"110,0r305,-673r-352,0r0,-67r428,0r0,67r-303,673r-78,0"},"8":{"d":"168,-413v-61,-40,-87,-96,-87,-148v0,-118,96,-192,196,-192v109,0,196,84,196,195v0,17,-8,102,-88,145v100,47,128,138,128,198v0,118,-99,228,-235,228v-138,0,-237,-110,-237,-228v0,-71,40,-163,127,-198xm115,-218v0,119,98,164,164,164v71,0,160,-56,160,-161v0,-107,-92,-160,-163,-160v-89,0,-161,75,-161,157xm155,-564v0,51,44,120,123,120v70,0,121,-57,121,-120v0,-58,-45,-122,-120,-122v-73,0,-124,57,-124,122"},"9":{"d":"257,0r-84,0r171,-251v-164,59,-320,-78,-320,-242v0,-128,92,-259,253,-259v156,0,253,120,253,263v0,85,-43,148,-89,217xm456,-496v0,-82,-58,-189,-179,-189v-105,0,-179,85,-179,191v0,103,74,191,179,191v94,0,179,-77,179,-193"},":":{"d":"102,0r0,-126r74,0r0,126r-74,0xm102,-422r0,-126r74,0r0,126r-74,0","w":277},";":{"d":"14,67r88,-193r74,0r-88,193r-74,0xm102,-422r0,-126r74,0r0,126r-74,0","w":277},"<":{"d":"554,-514r0,68r-425,193r425,193r0,68r-508,-230r0,-62","w":606},"=":{"d":"555,-388r0,68r-504,0r0,-68r504,0xm51,-118r0,-68r504,0r0,68r-504,0","w":606},">":{"d":"52,8r0,-68r425,-193r-425,-193r0,-68r508,230r0,62","w":606},"?":{"d":"296,-682v-96,0,-164,79,-158,174r-74,0v-7,-136,95,-244,235,-244v134,0,227,101,227,222v0,80,-39,118,-106,183v-30,29,-79,76,-83,154r-74,0v-2,-102,68,-170,105,-203v47,-43,84,-77,84,-137v0,-72,-62,-149,-156,-149xm263,0r0,-126r74,0r0,126r-74,0","w":591},"@":{"d":"581,-548r60,0r-51,295v0,22,12,41,34,41v64,0,119,-94,119,-211v0,-182,-135,-274,-291,-274v-189,0,-327,139,-327,328v0,144,82,326,338,326v120,0,202,-34,238,-50r15,51v-79,37,-165,55,-253,55v-289,0,-398,-203,-398,-383v0,-228,168,-383,386,-383v200,0,352,123,352,329v0,145,-83,268,-181,268v-26,0,-76,-13,-80,-80r-2,0v-46,76,-110,80,-138,80v-87,0,-156,-70,-156,-180v0,-114,77,-226,195,-226v96,-1,113,67,126,89xm545,-394v0,-69,-44,-112,-99,-112v-82,0,-140,77,-140,168v0,84,47,126,108,126v85,0,131,-92,131,-182","w":867},"A":{"d":"12,0r316,-740r83,0r318,740r-81,0r-107,-249r-344,0r-108,249r-77,0xm370,-656r-145,340r287,0","w":740},"B":{"d":"74,0r0,-740r186,0v233,0,242,167,242,197v0,87,-55,128,-81,149v74,30,123,97,123,182v0,71,-33,136,-85,171v-96,63,-240,35,-385,41xm252,-67v129,7,218,-35,218,-145v0,-57,-40,-103,-87,-125v-41,-19,-156,-16,-235,-17r0,287r104,0xm428,-546v0,-94,-66,-128,-181,-127r-99,0r0,252r93,0v111,6,187,-32,187,-125","w":574},"C":{"d":"688,-194r83,0v-79,145,-222,207,-341,207v-207,0,-387,-163,-387,-382v0,-219,175,-383,386,-383v190,0,310,133,339,202r-83,0v-81,-121,-212,-135,-257,-135v-173,0,-311,152,-311,317v0,173,152,314,312,314v37,0,158,-5,259,-140","w":813},"D":{"d":"74,0r0,-740v173,0,350,-10,457,61v128,84,168,222,168,311v0,69,-29,214,-168,307v-106,71,-283,61,-457,61xm148,-673r0,606v146,-4,236,24,361,-60v49,-33,116,-115,116,-244v0,-98,-49,-189,-126,-245v-81,-60,-208,-59,-351,-57","w":744},"E":{"d":"70,0r0,-740r405,0r0,67r-331,0r0,266r320,0r0,67r-320,0r0,273r331,0r0,67r-405,0","w":536},"F":{"d":"70,0r0,-740r374,0r0,67r-300,0r0,268r289,0r0,67r-289,0r0,338r-74,0","w":485},"G":{"d":"326,-340r502,0v-17,220,-209,353,-391,353v-221,0,-397,-179,-397,-383v0,-192,159,-383,396,-383v196,0,321,135,350,210r-86,0v-42,-73,-140,-143,-263,-143v-187,0,-323,152,-323,317v0,165,136,315,326,315v157,0,273,-116,299,-219r-413,0r0,-67","w":872},"H":{"d":"76,0r0,-740r74,0r0,326r383,0r0,-326r74,0r0,740r-74,0r0,-347r-383,0r0,347r-74,0","w":683},"I":{"d":"76,0r0,-740r74,0r0,740r-74,0","w":226},"J":{"d":"402,-740r0,505v-1,60,1,96,-19,141v-73,164,-365,142,-377,-82r73,0v6,80,66,122,129,122v119,-1,120,-110,120,-178r0,-508r74,0","w":482},"K":{"d":"81,0r0,-740r74,0r0,425r2,0r339,-425r95,0r-293,361r293,379r-93,0r-247,-321r-96,118r0,203r-74,0","w":591},"L":{"d":"82,0r0,-740r74,0r0,673r306,0r0,67r-380,0","w":462},"M":{"d":"76,0r0,-740r114,0r269,630r270,-630r114,0r0,740r-74,0r0,-659r-2,0r-277,659r-63,0r-275,-659r-2,0r0,659r-74,0","w":919},"N":{"d":"75,0r0,-740r100,0r413,614r2,0r0,-614r74,0r0,740r-74,0r-439,-651r-2,0r0,651r-74,0","w":740},"O":{"d":"43,-366v0,-233,194,-387,391,-387v208,0,392,165,392,383v0,218,-185,383,-392,383v-210,0,-391,-171,-391,-379xm117,-366v0,169,145,312,317,312v171,0,318,-139,318,-315v0,-173,-143,-317,-318,-317v-167,0,-317,136,-317,320","w":869},"P":{"d":"75,0r0,-740v134,2,332,-9,397,43v52,41,92,100,92,178v0,78,-37,141,-92,178v-41,27,-89,43,-191,43r-132,0r0,298r-74,0xm256,-365v150,13,234,-47,234,-154v0,-56,-29,-106,-86,-135v-52,-27,-167,-16,-255,-19r0,308r107,0","w":592},"Q":{"d":"825,-54r0,67v-92,0,-126,-30,-165,-64v-95,63,-200,64,-222,64v-222,0,-398,-172,-398,-380v0,-194,150,-386,399,-386v228,0,398,169,398,389v0,98,-40,193,-122,270v45,38,76,40,110,40xm157,-216v20,39,107,162,283,162v20,0,96,0,163,-48v-14,-11,-84,-65,-101,-75v-97,-60,-214,-60,-230,-60v-61,0,-88,10,-115,21xm127,-279v29,-9,78,-25,156,-25v184,0,288,85,378,162v73,-71,102,-151,102,-224v0,-185,-151,-320,-323,-320v-188,0,-376,181,-313,407","w":871},"R":{"d":"498,-503v0,-112,-96,-179,-225,-170r-129,0r0,673r-74,0r0,-740v115,0,313,-3,370,28v80,44,132,120,132,211v0,107,-77,216,-220,225r209,276r-93,0r-251,-335v94,0,126,-1,159,-11v81,-23,122,-91,122,-157","w":607},"S":{"d":"22,-207r74,0v4,93,63,153,154,153v78,0,149,-60,149,-147v0,-114,-115,-143,-165,-158v-67,-20,-192,-48,-192,-195v0,-115,91,-199,208,-199v121,0,205,93,205,201r-74,0v0,-75,-61,-134,-131,-134v-85,0,-134,65,-134,129v0,90,79,112,176,139v180,50,181,188,181,214v0,114,-92,217,-223,217v-96,0,-225,-57,-228,-220","w":498},"T":{"d":"176,0r0,-673r-170,0r0,-67r413,0r0,67r-169,0r0,673r-74,0","w":426},"U":{"d":"75,-740r74,0r0,461v0,54,8,103,25,134v45,83,118,91,153,91v35,0,108,-8,153,-91v17,-31,25,-80,25,-134r0,-461r74,0r0,461v0,62,-10,115,-28,154v-51,111,-155,138,-224,138v-69,0,-173,-27,-224,-138v-18,-39,-28,-92,-28,-154r0,-461","w":655},"V":{"d":"313,0r-305,-740r82,0r261,648r262,-648r80,0r-307,740r-73,0","w":702},"W":{"d":"222,0r-211,-740r76,0r181,645r2,0r176,-645r69,0r177,644r2,0r181,-644r75,0r-212,740r-94,0r-163,-607r-2,0r-162,607r-95,0","w":960},"X":{"d":"8,0r251,-378r-237,-362r87,0r197,296r195,-296r86,0r-238,362r253,378r-88,0r-208,-316r-211,316r-87,0","w":609},"Y":{"d":"258,0r0,-247r-257,-493r82,0r211,415r217,-415r81,0r-260,493r0,247r-74,0","w":592},"Z":{"d":"12,0r0,-67r364,-606r-353,0r0,-67r436,0r0,67r-363,606r374,0r0,67r-458,0","w":480},"[":{"d":"337,104r0,75v-79,-22,-204,-93,-204,-276r0,-378v0,-204,158,-267,204,-278r0,75v-74,32,-130,88,-130,203r0,365v0,72,7,159,130,214","w":351},"\\":{"d":"197,-740r280,840r-76,0r-283,-840r79,0","w":605},"]":{"d":"14,179r0,-75v123,-55,130,-142,130,-214r0,-365v0,-115,-56,-171,-130,-203r0,-75v46,11,204,74,204,278r0,378v0,183,-125,254,-204,276","w":351},"^":{"d":"53,-307r218,-433r64,0r218,433r-70,0r-181,-360r-178,360r-71,0","w":606},"_":{"d":"0,75r500,0r0,50r-500,0r0,-50","w":500},"\u2018":{"d":"257,-546r-74,0r-88,-194r74,0","w":351},"a":{"d":"621,-547r0,547r-70,0v-2,-31,4,-69,-2,-96v-60,90,-156,109,-213,109v-172,0,-294,-131,-294,-288v0,-146,115,-286,294,-286v59,0,155,19,213,110r2,0r0,-96r70,0xm112,-272v0,122,90,222,224,222v118,0,219,-95,219,-223v0,-120,-93,-225,-219,-225v-120,0,-224,87,-224,226","w":683},"b":{"d":"68,0r0,-740r70,0r0,289r2,0v62,-89,154,-110,213,-110v179,0,294,140,294,286v0,157,-122,288,-294,288v-58,0,-151,-24,-215,-109r0,96r-70,0xm577,-272v0,-139,-104,-226,-224,-226v-126,0,-219,105,-219,225v0,128,101,223,219,223v134,0,224,-100,224,-222","w":682},"c":{"d":"530,-161r77,0v-35,68,-108,174,-272,174v-171,0,-294,-133,-294,-286v0,-158,131,-288,294,-288v96,0,219,48,272,179r-77,0v-44,-83,-124,-116,-193,-116v-107,0,-226,80,-226,223v0,123,95,225,226,225v114,0,171,-69,193,-111","w":647},"d":{"d":"618,-740r0,740r-70,0v-2,-31,4,-69,-2,-96v-58,87,-155,109,-213,109v-172,0,-294,-131,-294,-288v0,-146,115,-286,294,-286v60,0,154,22,213,108r2,0r0,-287r70,0xm109,-272v0,122,90,222,224,222v118,0,219,-95,219,-223v0,-120,-93,-225,-219,-225v-120,0,-224,87,-224,226","w":685},"e":{"d":"322,-561v185,0,289,139,286,313r-498,0v5,107,105,198,212,198v100,0,171,-61,196,-129r74,0v-38,109,-143,192,-269,192v-153,0,-285,-124,-285,-286v0,-155,125,-288,284,-288xm110,-311r427,0v-22,-129,-127,-187,-214,-187v-86,0,-193,58,-213,187","w":650},"f":{"d":"104,0r0,-484r-85,0r0,-63r85,0v2,-76,8,-204,210,-206r0,65v-140,2,-140,84,-140,141r140,0r0,63r-140,0r0,484r-70,0","w":314},"g":{"d":"606,-547r0,461v0,59,-1,132,-50,200v-70,95,-195,101,-217,101v-78,0,-230,-30,-280,-201r74,0v18,45,72,138,205,138v92,0,198,-53,198,-204v0,-15,4,-37,-2,-48v-133,217,-497,100,-497,-171v0,-174,142,-290,286,-290v51,0,147,19,213,112r0,-98r70,0xm107,-273v0,119,92,223,216,223v145,0,217,-130,217,-223v0,-120,-94,-225,-217,-225v-124,0,-216,105,-216,225","w":673},"h":{"d":"302,-561v141,0,241,95,241,260r0,301r-70,0r0,-301v0,-71,-22,-121,-52,-150v-38,-37,-88,-47,-119,-47v-31,0,-81,10,-119,47v-29,28,-51,77,-51,145r0,306r-70,0r0,-740r70,0r0,263r2,0v21,-33,75,-84,168,-84","w":610},"i":{"d":"65,0r0,-547r70,0r0,547r-70,0xm65,-614r0,-126r70,0r0,126r-70,0","w":200},"j":{"d":"137,-547r0,509v0,66,0,133,-60,186v-48,42,-90,43,-121,44r0,-69v92,-3,111,-67,111,-161r0,-509r70,0xm67,-614r0,-126r70,0r0,126r-70,0","w":203},"k":{"d":"70,0r0,-740r70,0r0,527r2,0r255,-334r90,0r-216,276r227,271r-90,0r-180,-216r-88,112r0,104r-70,0","w":502},"l":{"d":"65,0r0,-740r70,0r0,740r-70,0","w":200},"m":{"d":"136,-547r0,63v31,-49,85,-77,149,-77v79,0,146,38,184,105v43,-69,106,-105,184,-105v129,0,219,90,219,236r0,325r-70,0r0,-317v0,-117,-56,-181,-149,-181v-93,0,-149,64,-149,181r0,317r-70,0r0,-317v0,-117,-56,-181,-149,-181v-93,0,-149,64,-149,181r0,317r-70,0r0,-547r70,0","w":938},"n":{"d":"305,-561v141,0,241,95,241,260r0,301r-70,0r0,-301v0,-71,-22,-121,-52,-150v-38,-37,-88,-47,-119,-47v-31,0,-81,10,-119,47v-29,28,-51,77,-51,145r0,306r-70,0r0,-547r70,0v2,22,-4,52,2,70v21,-33,75,-84,168,-84","w":610},"o":{"d":"42,-270v0,-173,141,-291,285,-291v162,0,287,137,287,287v0,149,-123,287,-287,287v-160,0,-285,-135,-285,-283xm112,-271v0,127,103,221,216,221v106,0,216,-84,216,-227v0,-144,-122,-221,-216,-221v-100,0,-216,82,-216,227","w":655},"p":{"d":"64,192r0,-739r70,0v2,31,-4,69,2,96v63,-90,154,-110,213,-110v179,0,294,140,294,286v0,157,-122,288,-294,288v-58,0,-151,-24,-215,-109r0,288r-70,0xm573,-272v0,-139,-104,-226,-224,-226v-126,0,-219,105,-219,225v0,128,101,223,219,223v134,0,224,-100,224,-222","w":682},"q":{"d":"616,-547r0,739r-70,0r0,-288r-2,0v-59,90,-156,109,-213,109v-172,0,-294,-131,-294,-288v0,-146,115,-286,294,-286v60,0,154,24,215,110r0,-96r70,0xm107,-272v0,122,90,222,224,222v118,0,219,-95,219,-223v0,-120,-93,-225,-219,-225v-120,0,-224,87,-224,226","w":682},"r":{"d":"291,-487v-93,5,-156,71,-156,167r0,320r-70,0r0,-547r70,0v2,25,-4,58,2,79v33,-77,95,-89,154,-93r0,74","w":301},"s":{"d":"24,-162r70,0v2,104,73,112,98,112v66,0,102,-39,102,-98v0,-75,-67,-94,-109,-109v-55,-21,-145,-49,-145,-152v0,-77,55,-152,156,-152v82,0,150,62,149,149r-70,0v-5,-67,-51,-86,-82,-86v-56,0,-83,45,-83,82v0,58,58,78,98,91v64,21,157,57,156,171v0,93,-57,167,-172,167v-76,0,-171,-53,-168,-175","w":388},"t":{"d":"129,0r0,-484r-115,0r0,-63r115,0r0,-193r70,0r0,193r131,0r0,63r-131,0r0,484r-70,0","w":339},"u":{"d":"541,-547r0,547r-66,0v-2,-27,4,-62,-2,-85v-20,41,-73,98,-175,98v-108,0,-164,-52,-188,-82v-39,-48,-48,-118,-48,-176r0,-302r70,0r0,301v0,69,14,115,39,144v37,44,89,52,127,52v39,0,81,-9,116,-44v32,-32,57,-68,57,-164r0,-289r70,0","w":608},"v":{"d":"238,0r-231,-547r75,0r193,460r196,-460r75,0r-231,547r-77,0"},"w":{"d":"221,0r-208,-547r73,0r172,458r2,0r125,-392r61,0r126,392r2,0r174,-458r72,0r-209,547r-79,0r-116,-364r-2,0r-114,364r-79,0","w":831},"x":{"d":"12,0r187,-278r-187,-269r84,0r144,211r143,-211r85,0r-187,269r187,278r-83,0r-145,-219r-145,219r-83,0","w":480},"y":{"d":"133,192r95,-210r-213,-529r74,0r174,436r186,-436r74,0r-317,739r-73,0","w":536},"z":{"d":"10,0r0,-61r303,-423r-293,0r0,-63r377,0r0,63r-300,421r318,0r0,63r-405,0","w":425},"{":{"d":"331,-740r0,60r-50,0v-39,0,-48,44,-48,86r0,183v0,94,-64,128,-87,134r0,3v23,3,87,32,87,134r0,183v0,41,9,86,48,86r50,0r0,60v-107,10,-172,-17,-172,-131r0,-182v0,-73,-43,-117,-89,-119r0,-64v46,-2,89,-50,89,-120r0,-182v0,-85,48,-131,106,-131r66,0","w":351},"|":{"d":"299,-778r74,0r0,1000r-74,0r0,-1000","w":672},"}":{"d":"20,-680r0,-60v107,-10,172,17,172,131r0,182v0,70,43,118,89,120r0,64v-46,2,-89,46,-89,119r0,182v0,85,-48,131,-106,131r-66,0r0,-60r50,0v39,0,48,-45,48,-86r0,-183v0,-102,64,-131,87,-134r0,-3v-23,-6,-87,-40,-87,-134r0,-183v0,-42,-9,-86,-48,-86r-50,0","w":351},"~":{"d":"197,-315v67,0,157,72,213,72v40,0,65,-41,88,-76r36,50v-30,42,-63,86,-125,86v-82,0,-131,-72,-217,-72v-44,0,-68,41,-84,76r-36,-50v22,-42,58,-86,125,-86","w":606},"\u00a1":{"d":"110,192r0,-547r74,0r0,547r-74,0xm110,-422r0,-126r74,0r0,126r-74,0","w":295},"\u00a2":{"d":"320,-62r-74,0r0,-94v-115,-17,-198,-112,-198,-227v0,-115,83,-210,198,-227r0,-97r74,0r0,96v89,11,160,69,190,148r-81,0v-23,-41,-63,-84,-144,-84v-100,0,-163,87,-163,164v0,77,63,164,163,164v77,0,115,-38,136,-72r83,0v-30,72,-99,125,-184,136r0,93"},"\u00a3":{"d":"29,0r0,-63r148,0v22,-34,35,-76,35,-119v0,-80,-58,-116,-102,-167r-106,0r0,-63r59,0v-67,-150,34,-341,213,-341v114,0,222,79,237,212r-72,0v-14,-84,-76,-149,-165,-149v-90,0,-161,71,-161,180v0,53,14,75,29,98r285,0r0,63r-225,0v46,47,83,101,82,167v0,51,-19,91,-30,119r43,0v51,0,178,-13,179,-153v0,-21,-5,-35,-9,-52r74,0v5,16,9,29,9,56v0,59,-30,212,-250,212r-273,0"},"\u2044":{"d":"-113,0r333,-740r60,0r-333,740r-60,0","w":166},"\u00a5":{"d":"240,0r0,-227r-207,0r0,-63r207,0r0,-58r-17,-26r-190,0r0,-63r152,0r-181,-303r80,0r194,325r192,-325r80,0r-181,303r152,0r0,63r-190,0r-17,26r0,58r207,0r0,64r-207,0r0,226r-74,0"},"\u0192":{"d":"364,-584r112,0r-12,67r-112,0r-81,431v-17,95,-25,136,-72,183v-53,54,-136,56,-155,56v-31,0,-48,-5,-56,-7r13,-64v10,2,27,6,50,6v109,0,131,-72,151,-181r81,-424r-114,0r13,-67r112,0r4,-22v21,-112,57,-147,75,-161v72,-57,104,-53,145,-49r-11,67v-114,-7,-133,98,-143,165"},"\u00a7":{"d":"482,-606r-74,0v0,-46,-35,-80,-96,-80v-111,0,-141,134,-47,181r147,73v52,26,117,60,117,151v0,34,-23,97,-81,135v115,106,33,286,-136,287v-121,0,-199,-89,-203,-205r74,0v6,97,62,138,129,138v73,0,114,-53,114,-101v0,-41,-11,-69,-90,-110r-155,-80v-38,-20,-96,-55,-96,-130v0,-78,60,-122,89,-144v-40,-40,-40,-93,-40,-101v0,-90,75,-161,178,-161v99,0,170,53,170,147xm393,-366r-175,-87v-76,40,-74,145,-7,178r188,94v37,-22,56,-64,56,-99v0,-47,-37,-73,-62,-86","w":615},"\u00a4":{"d":"277,-467v-86,0,-154,74,-154,156v0,84,68,158,154,158v88,0,156,-74,156,-158v0,-82,-68,-156,-156,-156xm52,-42r-44,-42r98,-98v-57,-63,-55,-196,0,-258r-98,-96r44,-44r96,98v62,-57,199,-55,258,0r98,-98r42,44r-96,96v55,60,56,199,0,258r96,98r-42,42r-98,-96v-59,55,-199,56,-258,0"},"'":{"d":"128,-444r-57,0r-12,-296r81,0","w":198},"\u201c":{"d":"406,-546r-74,0r-87,-194r73,0xm259,-546r-74,0r-88,-194r74,0","w":502},"\u00ab":{"d":"153,-81r-113,-201r113,-199r59,31r-94,168r94,168xm327,-81r-113,-201r113,-199r59,31r-95,168r95,168","w":425},"\u2039":{"d":"153,-81r-113,-201r113,-199r59,31r-94,168r94,168","w":251},"\u203a":{"d":"97,-81r-58,-33r94,-168r-94,-168r58,-31r114,199","w":251},"\ufb01":{"d":"352,-484r-178,0r0,484r-70,0r0,-484r-85,0r0,-63r85,0v2,-76,8,-204,210,-206r0,65v-140,2,-140,84,-140,141r248,0r0,547r-70,0r0,-484xm352,-614r0,-126r70,0r0,126r-70,0","w":487},"\ufb02":{"d":"350,-484r-176,0r0,484r-70,0r0,-484r-85,0r0,-63r85,0v2,-76,8,-204,210,-206r0,65v-140,2,-140,84,-140,141r176,0r0,-193r70,0r0,740r-70,0r0,-484","w":485},"\u2013":{"d":"35,-315r430,0r0,67r-430,0r0,-67","w":500},"\u2020":{"d":"313,-740r0,201r180,0r0,67r-180,0r0,605r-74,0r0,-605r-180,0r0,-67r180,0r0,-201r74,0","w":553},"\u2021":{"d":"313,-740r0,201r180,0r0,67r-180,0r0,337r180,0r0,67r-180,0r0,201r-74,0r0,-201r-180,0r0,-67r180,0r0,-337r-180,0r0,-67r180,0r0,-201r74,0","w":553},"\u00b7":{"d":"102,-190r0,-126r74,0r0,126r-74,0","w":277},"\u00b6":{"d":"22,-542v0,-137,88,-198,243,-198r286,0r0,56r-64,0r0,794r-62,0r0,-794r-120,0r0,794r-62,0r0,-458v-131,6,-221,-73,-221,-194","w":564},"\u2022":{"d":"304,-532v83,0,151,70,151,155v0,86,-69,155,-152,155v-85,0,-153,-71,-153,-155v0,-82,65,-155,154,-155","w":606},"\u201a":{"d":"163,68r-74,0r88,-194r74,0","w":354},"\u201e":{"d":"89,68r88,-194r74,0r-88,194r-74,0xm237,68r88,-194r74,0r-88,194r-74,0","w":502},"\u201d":{"d":"170,-546r-74,0r88,-194r73,0xm317,-546r-74,0r88,-194r74,0","w":484},"\u00bb":{"d":"271,-81r-58,-33r94,-168r-94,-168r58,-31r114,199xm97,-81r-58,-33r94,-168r-94,-168r58,-31r114,199","w":425},"\u2026":{"d":"130,0r0,-126r74,0r0,126r-74,0xm463,0r0,-126r74,0r0,126r-74,0xm796,0r0,-126r74,0r0,126r-74,0","w":1000},"\u2030":{"d":"455,-166v0,68,53,123,121,123v68,0,121,-55,121,-123v0,-68,-53,-123,-121,-123v-68,0,-121,55,-121,123xm395,-166v0,-99,82,-179,181,-179v99,0,181,80,181,179v0,99,-82,179,-181,179v-99,0,-181,-80,-181,-179xm786,-166v0,-99,82,-179,181,-179v99,0,181,80,181,179v0,99,-82,179,-181,179v-99,0,-181,-80,-181,-179xm846,-166v0,68,53,123,121,123v68,0,121,-55,121,-123v0,-68,-53,-123,-121,-123v-68,0,-121,55,-121,123xm25,-572v0,-99,82,-179,181,-179v99,0,181,80,181,179v0,99,-82,179,-181,179v-99,0,-181,-80,-181,-179xm85,-572v0,68,53,123,121,123v68,0,121,-55,121,-123v0,-68,-53,-123,-121,-123v-68,0,-121,55,-121,123xm634,-740r-424,740r-68,0r424,-740r68,0","w":1174},"\u00bf":{"d":"295,135v95,0,164,-80,158,-174r74,0v7,136,-95,244,-235,244v-134,0,-227,-101,-227,-222v0,-80,39,-119,106,-183v30,-30,79,-76,83,-155r74,0v2,102,-68,170,-105,203v-47,44,-84,77,-84,137v0,73,62,150,156,150xm328,-548r0,126r-74,0r0,-126r74,0","w":591},"`":{"d":"101,-786r199,109r-33,58r-198,-107","w":378},"\u00b4":{"d":"78,-677r199,-109r32,60r-198,107","w":375},"\u02c6":{"d":"74,-639r145,-125r66,0r143,125r-89,0r-86,-73r-88,73r-91,0","w":502},"\u02dc":{"d":"151,-754v62,0,81,41,142,41v21,0,33,-8,63,-26r36,49v-32,24,-68,39,-98,39v-59,1,-100,-41,-145,-41v-24,0,-49,13,-67,30r-35,-50v30,-28,65,-42,104,-42","w":439},"\u00af":{"d":"73,-736r338,0r0,67r-338,0r0,-67","w":485},"\u02d8":{"d":"52,-754r65,0v33,46,99,46,109,46v11,0,77,0,110,-46r65,0v-32,89,-119,103,-175,103v-52,0,-141,-12,-174,-103","w":453},"\u02d9":{"d":"74,-765r74,0r0,126r-74,0r0,-126","w":222},"\u00a8":{"d":"73,-765r74,0r0,126r-74,0r0,-126xm221,-765r74,0r0,126r-74,0r0,-126","w":369},"\u02da":{"d":"62,-703v0,-57,47,-104,103,-104v58,0,104,46,104,104v0,57,-47,103,-104,103v-56,0,-103,-46,-103,-103xm114,-703v0,28,23,51,51,51v29,0,52,-23,52,-51v0,-29,-23,-52,-52,-52v-27,0,-51,23,-51,52","w":332},"\u00b8":{"d":"177,0r-28,56v60,-18,108,25,105,82v-5,104,-159,116,-175,7r42,-2v5,26,22,42,46,42v28,0,43,-23,46,-52v5,-51,-71,-58,-88,-28r-36,-21r46,-87","w":324},"\u02dd":{"d":"109,-651r161,-135r41,46r-164,135xm284,-651r162,-135r40,46r-164,135","w":552},"\u02db":{"d":"145,0r52,0v-50,38,-75,65,-75,98v0,57,64,57,106,40r0,44v-12,4,-27,9,-51,9v-72,0,-104,-47,-104,-90v0,-57,49,-86,72,-101","w":302},"\u02c7":{"d":"68,-764r92,0r86,73r88,-73r89,0r-143,125r-67,0","w":502},"\u2014":{"d":"35,-315r930,0r0,67r-930,0r0,-67","w":1000},"\u00c6":{"d":"-20,0r515,-740r412,0r0,67r-317,0r0,266r306,0r0,67r-306,0r0,273r317,0r0,67r-391,0r0,-250r-273,0r-174,250r-89,0xm514,-645r-224,328r226,0r0,-328r-2,0","w":992},"\u00aa":{"d":"356,-745r0,330r-60,0v-2,-16,4,-40,-2,-52v-25,42,-71,60,-120,60v-99,0,-177,-81,-177,-174v0,-86,71,-172,177,-172v35,0,90,9,120,60r2,0r0,-52r60,0xm57,-579v0,61,52,116,120,116v67,0,122,-47,122,-118v0,-66,-55,-116,-122,-116v-61,0,-120,47,-120,118","w":369},"\u0141":{"d":"59,-257r0,-77r78,-56r0,-350r74,0r0,296r153,-111r0,77r-153,111r0,300r306,0r0,67r-380,0r0,-313","w":517},"\u00d8":{"d":"638,-696r92,-123r55,40r-92,123v106,93,133,205,133,286v0,292,-337,483,-593,327r-94,126r-55,-40r93,-126v-83,-73,-134,-176,-134,-287v0,-293,339,-484,595,-326xm219,-139r377,-502v-210,-129,-479,39,-479,272v0,78,30,164,102,230xm651,-600r-377,502v66,38,125,44,161,44v168,0,317,-138,317,-315v0,-90,-36,-168,-101,-231","w":868},"\u0152":{"d":"751,-740r391,0r0,67r-317,0r0,267r306,0r0,67r-306,0r0,272r317,0r0,67r-391,0v-2,-49,4,-106,-2,-151v-55,101,-188,164,-308,164v-213,0,-396,-154,-396,-384v0,-221,180,-382,387,-382v122,0,260,62,319,160r0,-147xm119,-374v0,200,159,320,312,320v163,0,321,-126,321,-317v0,-170,-136,-315,-316,-315v-181,0,-317,142,-317,312","w":1194},"\u00ba":{"d":"12,-577v0,-106,85,-176,172,-176v97,0,172,81,172,172v0,92,-73,174,-172,174v-97,0,-172,-80,-172,-170xm72,-579v0,69,52,116,113,116v56,0,111,-42,111,-118v0,-157,-224,-152,-224,2","w":369},"\u00e6":{"d":"1113,-247r-495,0v12,131,124,197,213,197v89,0,169,-56,194,-128r70,0v-56,202,-360,264,-478,79r-2,0r0,99r-70,0v-2,-32,4,-71,-2,-99v-58,88,-141,112,-217,112v-193,0,-292,-160,-292,-285v0,-124,99,-289,293,-289v95,0,171,42,218,115r0,-101r70,0v2,32,-4,73,2,101v38,-71,132,-115,213,-115v118,1,202,72,242,140v35,60,45,110,41,174xm618,-310r425,0v-21,-130,-125,-188,-212,-188v-86,0,-192,58,-213,188xm548,-272v0,-120,-87,-226,-221,-226v-133,0,-223,112,-223,228v0,117,96,220,222,220v117,0,222,-87,222,-222","w":1157},"\u0131":{"d":"65,0r0,-547r70,0r0,547r-70,0","w":200},"\u0142":{"d":"113,-335r-70,52r0,-71r70,-51r0,-335r70,0r0,284r76,-55r0,70r-76,55r0,386r-70,0r0,-335","w":300},"\u00f8":{"d":"169,-123r262,-345v-34,-21,-71,-30,-104,-30v-100,0,-216,82,-216,227v0,58,21,109,58,148xm485,-426r-264,345v141,84,320,-12,322,-196v0,-63,-23,-113,-58,-149xm542,-614r55,41r-72,94v54,53,88,127,88,205v0,149,-123,287,-287,287v-54,0,-104,-15,-145,-42r-71,93r-54,-38r72,-95v-54,-53,-87,-125,-87,-201v0,-228,244,-363,429,-250","w":653},"\u0153":{"d":"820,-561v183,0,288,140,284,313r-497,0v6,107,104,198,213,198v96,0,171,-61,194,-129r74,0v-36,109,-145,192,-267,192v-108,0,-204,-60,-253,-151v-47,88,-139,151,-249,151v-160,0,-285,-135,-285,-283v0,-173,141,-291,285,-291v110,0,204,64,251,152v47,-89,140,-152,250,-152xm320,-50v113,0,217,-94,217,-221v0,-145,-117,-227,-217,-227v-100,0,-216,82,-216,227v0,127,103,221,216,221xm609,-311r425,0v-21,-129,-125,-187,-212,-187v-86,0,-192,58,-213,187","w":1137},"\u00df":{"d":"61,0r0,-481v0,-95,9,-141,35,-180v34,-53,102,-92,172,-92v114,0,205,81,205,209v0,78,-33,124,-88,154v78,27,140,86,140,190v-1,252,-321,278,-392,91r-2,0r0,109r-70,0xm268,-690v-104,0,-137,81,-137,209r0,278r51,0v2,91,63,153,134,153v64,0,139,-49,139,-143v0,-42,-13,-82,-46,-108v-61,-49,-116,-40,-185,-41r0,-67v74,1,179,-20,179,-142v0,-83,-59,-139,-135,-139"},"\u00b9":{"d":"138,-296r0,-390r-75,0r0,-54r135,0r0,444r-60,0","w":332},"\u2212":{"d":"51,-219r0,-68r504,0r0,68r-504,0","w":606},"\u00b0":{"d":"56,-565v0,-80,64,-144,144,-144v80,0,144,64,144,144v0,80,-64,144,-144,144v-80,0,-144,-64,-144,-144xm106,-565v0,47,35,94,94,94v123,0,124,-188,0,-188v-59,0,-94,47,-94,94","w":400},"\u00f3":{"d":"42,-270v0,-173,141,-291,285,-291v162,0,287,137,287,287v0,149,-123,287,-287,287v-160,0,-285,-135,-285,-283xm112,-271v0,127,103,221,216,221v106,0,216,-84,216,-227v0,-144,-122,-221,-216,-221v-100,0,-216,82,-216,227xm248,-677r199,-109r32,60r-198,107","w":655},"\u00d6":{"d":"43,-366v0,-233,194,-387,391,-387v208,0,392,165,392,383v0,218,-185,383,-392,383v-210,0,-391,-171,-391,-379xm117,-366v0,169,145,312,317,312v171,0,318,-139,318,-315v0,-173,-143,-317,-318,-317v-167,0,-317,136,-317,320xm323,-928r74,0r0,126r-74,0r0,-126xm471,-928r74,0r0,126r-74,0r0,-126","w":869},"\u00f6":{"d":"42,-270v0,-173,141,-291,285,-291v162,0,287,137,287,287v0,149,-123,287,-287,287v-160,0,-285,-135,-285,-283xm112,-271v0,127,103,221,216,221v106,0,216,-84,216,-227v0,-144,-122,-221,-216,-221v-100,0,-216,82,-216,227xm216,-765r74,0r0,126r-74,0r0,-126xm364,-765r74,0r0,126r-74,0r0,-126","w":655},"\u00ca":{"d":"70,0r0,-740r405,0r0,67r-331,0r0,266r320,0r0,67r-320,0r0,273r331,0r0,67r-405,0xm91,-802r145,-125r66,0r143,125r-89,0r-86,-73r-88,73r-91,0","w":536},"\u00fb":{"d":"541,-547r0,547r-66,0v-2,-27,4,-62,-2,-85v-20,41,-73,98,-175,98v-108,0,-164,-52,-188,-82v-39,-48,-48,-118,-48,-176r0,-302r70,0r0,301v0,69,14,115,39,144v37,44,89,52,127,52v39,0,81,-9,116,-44v32,-32,57,-68,57,-164r0,-289r70,0xm127,-639r145,-125r66,0r143,125r-89,0r-86,-73r-88,73r-91,0","w":608},"\u00bc":{"d":"183,0r333,-740r60,0r-333,740r-60,0xm478,-132r151,0r0,-222r-2,0xm175,-296r0,-390r-75,0r0,-54r135,0r0,444r-60,0xm629,0r0,-78r-225,0r0,-49r219,-317r65,0r0,312r41,0r0,54r-41,0r0,78r-59,0","w":831},"\u00ac":{"d":"555,-388r0,279r-68,0r0,-211r-436,0r0,-68r504,0","w":606},"\u00cb":{"d":"70,0r0,-740r405,0r0,67r-331,0r0,266r320,0r0,67r-320,0r0,273r331,0r0,67r-405,0xm157,-928r74,0r0,126r-74,0r0,-126xm305,-928r74,0r0,126r-74,0r0,-126","w":536},"\u00bd":{"d":"164,0r333,-740r60,0r-333,740r-60,0xm156,-296r0,-390r-75,0r0,-54r135,0r0,444r-60,0xm451,0r0,-49r158,-147v55,-51,81,-76,81,-117v0,-40,-34,-84,-87,-84v-54,0,-88,33,-88,107r-60,0v-4,-141,114,-162,150,-161v93,3,145,74,145,139v0,65,-41,103,-82,140r-129,118r210,0r0,54r-298,0","w":831},"\u00d5":{"d":"43,-366v0,-233,194,-387,391,-387v208,0,392,165,392,383v0,218,-185,383,-392,383v-210,0,-391,-171,-391,-379xm117,-366v0,169,145,312,317,312v171,0,318,-139,318,-315v0,-173,-143,-317,-318,-317v-167,0,-317,136,-317,320xm366,-917v62,0,81,41,142,41v21,0,33,-8,63,-26r36,49v-32,24,-68,39,-98,39v-59,1,-100,-41,-145,-41v-24,0,-49,13,-67,30r-35,-50v30,-28,65,-42,104,-42","w":869},"\u00fa":{"d":"541,-547r0,547r-66,0v-2,-27,4,-62,-2,-85v-20,41,-73,98,-175,98v-108,0,-164,-52,-188,-82v-39,-48,-48,-118,-48,-176r0,-302r70,0r0,301v0,69,14,115,39,144v37,44,89,52,127,52v39,0,81,-9,116,-44v32,-32,57,-68,57,-164r0,-289r70,0xm215,-677r199,-109r32,60r-198,107","w":608},"\u00e9":{"d":"322,-561v185,0,289,139,286,313r-498,0v5,107,105,198,212,198v100,0,171,-61,196,-129r74,0v-38,109,-143,192,-269,192v-153,0,-285,-124,-285,-286v0,-155,125,-288,284,-288xm110,-311r427,0v-22,-129,-127,-187,-214,-187v-86,0,-193,58,-213,187xm216,-677r199,-109r32,60r-198,107","w":650},"\u00ed":{"d":"65,0r0,-547r70,0r0,547r-70,0xm30,-677r199,-109r32,60r-198,107","w":200},"\u00d0":{"d":"114,-347r-74,0r0,-67r74,0r0,-326r212,0v332,0,413,242,413,372v0,100,-58,368,-409,368r-216,0r0,-347xm398,-347r-210,0r0,280v146,-4,236,24,361,-60v49,-33,116,-115,116,-244v0,-98,-49,-189,-126,-245v-81,-60,-208,-59,-351,-57r0,259r210,0r0,67","w":790},"\u00ee":{"d":"65,0r0,-547r70,0r0,547r-70,0xm-77,-639r145,-125r66,0r143,125r-89,0r-86,-73r-88,73r-91,0","w":200},"\u00ae":{"d":"210,-585r184,0v27,0,154,0,154,119v0,50,-27,90,-81,108v60,17,70,53,73,109v3,74,4,83,14,101r-55,0v-8,-13,-13,-26,-13,-81v0,-69,-12,-104,-112,-104r-109,0r0,185r-55,0r0,-437xm265,-534r0,151r110,0v29,0,118,0,118,-80v0,-71,-79,-71,-108,-71r-120,0xm374,-752v212,0,381,173,381,382v0,212,-173,382,-381,382v-214,0,-383,-173,-383,-382v0,-208,168,-382,383,-382xm373,-701v-186,0,-327,152,-327,331v0,181,144,331,327,331v180,0,327,-147,327,-331v0,-179,-142,-331,-327,-331","w":747},"\u00a6":{"d":"299,-703r74,0r0,350r-74,0r0,-350xm299,-203r74,0r0,350r-74,0r0,-350","w":672},"\u00fe":{"d":"64,192r0,-932r70,0r0,289r2,0v62,-90,154,-110,213,-110v179,0,294,140,294,286v0,157,-122,288,-294,288v-58,0,-151,-24,-215,-109r0,288r-70,0xm573,-272v0,-139,-104,-226,-224,-226v-126,0,-219,105,-219,225v0,128,101,223,219,223v134,0,224,-100,224,-222","w":682},"\u00c3":{"d":"12,0r316,-740r83,0r318,740r-81,0r-107,-249r-344,0r-108,249r-77,0xm370,-656r-145,340r287,0xm302,-917v62,0,81,41,142,41v21,0,33,-8,63,-26r36,49v-32,24,-68,39,-98,39v-59,1,-100,-41,-145,-41v-24,0,-49,13,-67,30r-35,-50v30,-28,65,-42,104,-42","w":740},"\u00fd":{"d":"133,192r95,-210r-213,-529r74,0r174,436r186,-436r74,0r-317,739r-73,0xm179,-677r199,-109r32,60r-198,107","w":536},"\u00c1":{"d":"12,0r316,-740r83,0r318,740r-81,0r-107,-249r-344,0r-108,249r-77,0xm370,-656r-145,340r287,0xm261,-840r199,-109r32,60r-198,107","w":740},"\u00c7":{"d":"688,-194r83,0v-79,145,-222,207,-340,207r-22,43v60,-18,108,25,105,82v-5,104,-159,116,-175,7r42,-2v5,26,22,42,46,42v28,0,43,-23,46,-52v5,-51,-71,-58,-88,-28r-36,-21r39,-74v-189,-20,-345,-175,-345,-379v0,-219,175,-383,386,-383v190,0,310,133,339,202r-83,0v-81,-121,-212,-135,-257,-135v-173,0,-311,152,-311,317v0,173,152,314,312,314v37,0,158,-5,259,-140","w":813},"\u00f1":{"d":"305,-561v141,0,241,95,241,260r0,301r-70,0r0,-301v0,-71,-22,-121,-52,-150v-38,-37,-88,-47,-119,-47v-31,0,-81,10,-119,47v-29,28,-51,77,-51,145r0,306r-70,0r0,-547r70,0v2,22,-4,52,2,70v21,-33,75,-84,168,-84xm237,-754v62,0,81,41,142,41v21,0,33,-8,63,-26r36,49v-32,24,-68,39,-98,39v-59,1,-100,-41,-145,-41v-24,0,-49,13,-67,30r-35,-50v30,-28,65,-42,104,-42","w":610},"\u00f0":{"d":"112,-272v0,136,108,221,214,221v100,0,218,-78,218,-228v0,-148,-123,-216,-220,-216v-83,0,-212,59,-212,223xm324,-638r-155,61r-50,-39r145,-55v-48,-25,-91,-41,-117,-49r78,-33v17,5,63,21,119,51r133,-51r48,37r-125,49v120,86,214,205,214,381v0,177,-132,298,-287,298v-172,0,-285,-141,-285,-288v0,-216,246,-362,426,-236r2,-2v-36,-49,-91,-91,-146,-124","w":655},"\u00c5":{"d":"12,0r316,-740r83,0r318,740r-81,0r-107,-249r-344,0r-108,249r-77,0xm370,-656r-145,340r287,0xm266,-851v0,-57,47,-104,103,-104v58,0,104,46,104,104v0,57,-47,103,-104,103v-56,0,-103,-46,-103,-103xm318,-851v0,28,23,51,51,51v29,0,52,-23,52,-51v0,-29,-23,-52,-52,-52v-27,0,-51,23,-51,52","w":740},"\u03bc":{"d":"541,0r-66,0v-2,-27,4,-62,-2,-85v-20,41,-73,98,-175,98v-88,0,-135,-27,-166,-69r0,248r-70,0r0,-739r70,0r0,301v0,69,14,115,39,144v37,44,89,52,127,52v39,0,81,-9,116,-44v32,-32,57,-68,57,-164r0,-289r70,0r0,547","w":608},"\u00d9":{"d":"75,-740r74,0r0,461v0,54,8,103,25,134v45,83,118,91,153,91v35,0,108,-8,153,-91v17,-31,25,-80,25,-134r0,-461r74,0r0,461v0,62,-10,115,-28,154v-51,111,-155,138,-224,138v-69,0,-173,-27,-224,-138v-18,-39,-28,-92,-28,-154r0,-461xm220,-949r199,109r-33,58r-198,-107","w":655},"\u00c8":{"d":"70,0r0,-740r405,0r0,67r-331,0r0,266r320,0r0,67r-320,0r0,273r331,0r0,67r-405,0xm180,-949r199,109r-33,58r-198,-107","w":536},"\u0160":{"d":"22,-207r74,0v4,93,63,153,154,153v78,0,149,-60,149,-147v0,-114,-115,-143,-165,-158v-67,-20,-192,-48,-192,-195v0,-115,91,-199,208,-199v121,0,205,93,205,201r-74,0v0,-75,-61,-134,-131,-134v-85,0,-134,65,-134,129v0,90,79,112,176,139v180,50,181,188,181,214v0,114,-92,217,-223,217v-96,0,-225,-57,-228,-220xm66,-927r92,0r86,73r88,-73r89,0r-143,125r-67,0","w":498},"\u00f5":{"d":"42,-270v0,-173,141,-291,285,-291v162,0,287,137,287,287v0,149,-123,287,-287,287v-160,0,-285,-135,-285,-283xm112,-271v0,127,103,221,216,221v106,0,216,-84,216,-227v0,-144,-122,-221,-216,-221v-100,0,-216,82,-216,227xm259,-754v62,0,81,41,142,41v21,0,33,-8,63,-26r36,49v-32,24,-68,39,-98,39v-59,1,-100,-41,-145,-41v-24,0,-49,13,-67,30r-35,-50v30,-28,65,-42,104,-42","w":655},"\u00d1":{"d":"75,0r0,-740r100,0r413,614r2,0r0,-614r74,0r0,740r-74,0r-439,-651r-2,0r0,651r-74,0xm302,-917v62,0,81,41,142,41v21,0,33,-8,63,-26r36,49v-32,24,-68,39,-98,39v-59,1,-100,-41,-145,-41v-24,0,-49,13,-67,30r-35,-50v30,-28,65,-42,104,-42","w":740},"\u00da":{"d":"75,-740r74,0r0,461v0,54,8,103,25,134v45,83,118,91,153,91v35,0,108,-8,153,-91v17,-31,25,-80,25,-134r0,-461r74,0r0,461v0,62,-10,115,-28,154v-51,111,-155,138,-224,138v-69,0,-173,-27,-224,-138v-18,-39,-28,-92,-28,-154r0,-461xm238,-840r199,-109r32,60r-198,107","w":655},"\u00c2":{"d":"12,0r316,-740r83,0r318,740r-81,0r-107,-249r-344,0r-108,249r-77,0xm370,-656r-145,340r287,0xm193,-802r145,-125r66,0r143,125r-89,0r-86,-73r-88,73r-91,0","w":740},"\u00f4":{"d":"42,-270v0,-173,141,-291,285,-291v162,0,287,137,287,287v0,149,-123,287,-287,287v-160,0,-285,-135,-285,-283xm112,-271v0,127,103,221,216,221v106,0,216,-84,216,-227v0,-144,-122,-221,-216,-221v-100,0,-216,82,-216,227xm151,-639r145,-125r66,0r143,125r-89,0r-86,-73r-88,73r-91,0","w":655},"\u00ff":{"d":"133,192r95,-210r-213,-529r74,0r174,436r186,-436r74,0r-317,739r-73,0xm157,-765r74,0r0,126r-74,0r0,-126xm305,-765r74,0r0,126r-74,0r0,-126","w":536},"\u00c9":{"d":"70,0r0,-740r405,0r0,67r-331,0r0,266r320,0r0,67r-320,0r0,273r331,0r0,67r-405,0xm159,-840r199,-109r32,60r-198,107","w":536},"\u00d2":{"d":"43,-366v0,-233,194,-387,391,-387v208,0,392,165,392,383v0,218,-185,383,-392,383v-210,0,-391,-171,-391,-379xm117,-366v0,169,145,312,317,312v171,0,318,-139,318,-315v0,-173,-143,-317,-318,-317v-167,0,-317,136,-317,320xm347,-949r199,109r-33,58r-198,-107","w":869},"\u00e2":{"d":"621,-547r0,547r-70,0v-2,-31,4,-69,-2,-96v-60,90,-156,109,-213,109v-172,0,-294,-131,-294,-288v0,-146,115,-286,294,-286v59,0,155,19,213,110r2,0r0,-96r70,0xm112,-272v0,122,90,222,224,222v118,0,219,-95,219,-223v0,-120,-93,-225,-219,-225v-120,0,-224,87,-224,226xm165,-639r145,-125r66,0r143,125r-89,0r-86,-73r-88,73r-91,0","w":683},"\u00d7":{"d":"122,-24r-48,-48r182,-182r-181,-180r48,-48r181,180r180,-180r48,48r-180,180r181,182r-48,48r-181,-182","w":606},"\u00f7":{"d":"51,-219r0,-68r504,0r0,68r-504,0xm266,-393r0,-126r74,0r0,126r-74,0xm266,13r0,-126r74,0r0,126r-74,0","w":606},"\u00e7":{"d":"530,-161r77,0v-35,67,-106,171,-266,173r-22,44v60,-18,108,25,105,82v-5,104,-159,116,-175,7r42,-2v5,26,22,42,46,42v28,0,43,-23,46,-52v5,-51,-71,-58,-88,-28r-36,-21r39,-74v-151,-16,-257,-141,-257,-283v0,-158,131,-288,294,-288v96,0,219,48,272,179r-77,0v-44,-83,-124,-116,-193,-116v-107,0,-226,80,-226,223v0,123,95,225,226,225v114,0,171,-69,193,-111","w":647},"\u00b2":{"d":"19,-296r0,-49r158,-147v55,-51,81,-76,81,-117v0,-40,-34,-84,-87,-84v-54,0,-88,33,-88,107r-60,0v-4,-141,114,-162,150,-161v93,3,145,74,145,139v0,65,-41,103,-82,140r-129,118r210,0r0,54r-298,0","w":332},"\u00f9":{"d":"541,-547r0,547r-66,0v-2,-27,4,-62,-2,-85v-20,41,-73,98,-175,98v-108,0,-164,-52,-188,-82v-39,-48,-48,-118,-48,-176r0,-302r70,0r0,301v0,69,14,115,39,144v37,44,89,52,127,52v39,0,81,-9,116,-44v32,-32,57,-68,57,-164r0,-289r70,0xm196,-786r199,109r-33,58r-198,-107","w":608},"\u00c0":{"d":"12,0r316,-740r83,0r318,740r-81,0r-107,-249r-344,0r-108,249r-77,0xm370,-656r-145,340r287,0xm282,-949r199,109r-33,58r-198,-107","w":740},"\u00db":{"d":"75,-740r74,0r0,461v0,54,8,103,25,134v45,83,118,91,153,91v35,0,108,-8,153,-91v17,-31,25,-80,25,-134r0,-461r74,0r0,461v0,62,-10,115,-28,154v-51,111,-155,138,-224,138v-69,0,-173,-27,-224,-138v-18,-39,-28,-92,-28,-154r0,-461xm151,-802r145,-125r66,0r143,125r-89,0r-86,-73r-88,73r-91,0","w":655},"\u017e":{"d":"10,0r0,-61r303,-423r-293,0r0,-63r377,0r0,63r-300,421r318,0r0,63r-405,0xm30,-764r92,0r86,73r88,-73r89,0r-143,125r-67,0","w":425},"\u0178":{"d":"258,0r0,-247r-257,-493r82,0r211,415r217,-415r81,0r-260,493r0,247r-74,0xm185,-928r74,0r0,126r-74,0r0,-126xm333,-928r74,0r0,126r-74,0r0,-126","w":592},"\u00c4":{"d":"12,0r316,-740r83,0r318,740r-81,0r-107,-249r-344,0r-108,249r-77,0xm370,-656r-145,340r287,0xm259,-928r74,0r0,126r-74,0r0,-126xm407,-928r74,0r0,126r-74,0r0,-126","w":740},"\u00ce":{"d":"76,0r0,-740r74,0r0,740r-74,0xm-64,-802r145,-125r66,0r143,125r-89,0r-86,-73r-88,73r-91,0","w":226},"\u00ef":{"d":"65,0r0,-547r70,0r0,547r-70,0xm-11,-765r74,0r0,126r-74,0r0,-126xm137,-765r74,0r0,126r-74,0r0,-126","w":200},"\u00d3":{"d":"43,-366v0,-233,194,-387,391,-387v208,0,392,165,392,383v0,218,-185,383,-392,383v-210,0,-391,-171,-391,-379xm117,-366v0,169,145,312,317,312v171,0,318,-139,318,-315v0,-173,-143,-317,-318,-317v-167,0,-317,136,-317,320xm365,-840r199,-109r32,60r-198,107","w":869},"\u00e5":{"d":"621,-547r0,547r-70,0v-2,-31,4,-69,-2,-96v-60,90,-156,109,-213,109v-172,0,-294,-131,-294,-288v0,-146,115,-286,294,-286v59,0,155,19,213,110r2,0r0,-96r70,0xm112,-272v0,122,90,222,224,222v118,0,219,-95,219,-223v0,-120,-93,-225,-219,-225v-120,0,-224,87,-224,226xm238,-703v0,-57,47,-104,103,-104v58,0,104,46,104,104v0,57,-47,103,-104,103v-56,0,-103,-46,-103,-103xm290,-703v0,28,23,51,51,51v29,0,52,-23,52,-51v0,-29,-23,-52,-52,-52v-27,0,-51,23,-51,52","w":683},"\u00dd":{"d":"258,0r0,-247r-257,-493r82,0r211,415r217,-415r81,0r-260,493r0,247r-74,0xm207,-840r199,-109r32,60r-198,107","w":592},"\u2122":{"d":"114,-296r0,-397r-105,0r0,-47r265,0r0,47r-105,0r0,397r-55,0xm331,-296r0,-444r78,0r164,365r164,-365r79,0r0,444r-55,0r0,-372r-2,0r-163,372r-46,0r-162,-371r-2,0r0,371r-55,0","w":1000},"\u00b3":{"d":"258,-434v0,-51,-49,-95,-127,-86r0,-54r24,0v62,0,74,-38,74,-58v0,-21,-13,-61,-62,-61v-24,0,-59,15,-59,75r-60,0v1,-98,71,-129,121,-129v72,0,120,56,120,117v0,44,-22,64,-41,80v44,27,70,66,70,115v0,87,-70,146,-148,146v-29,0,-149,-12,-152,-156r60,0v3,59,30,102,92,102v53,0,88,-36,88,-91","w":332},"\u017d":{"d":"12,0r0,-67r364,-606r-353,0r0,-67r436,0r0,67r-363,606r374,0r0,67r-458,0xm57,-927r92,0r86,73r88,-73r89,0r-143,125r-67,0","w":480},"\u00be":{"d":"533,-132r151,0r0,-222r-2,0xm253,0r333,-740r60,0r-333,740r-60,0xm684,0r0,-78r-225,0r0,-49r219,-317r65,0r0,312r41,0r0,54r-41,0r0,78r-59,0xm286,-434v0,-51,-44,-94,-127,-86r0,-54r24,0v62,0,74,-38,74,-58v0,-21,-13,-61,-62,-61v-24,0,-59,15,-59,75r-60,0v1,-98,71,-129,121,-129v72,0,120,56,120,117v0,44,-22,64,-41,80v44,27,70,66,70,115v0,87,-70,146,-148,146v-29,0,-149,-12,-152,-156r60,0v3,59,30,102,92,102v53,0,88,-36,88,-91","w":831},"\u20ac":{"d":"558,-659r-29,72v-29,-49,-87,-99,-178,-99v-129,0,-179,121,-179,218r311,0r-25,63r-287,0r0,70r259,0r-25,63r-232,0v1,40,12,106,36,142v37,56,91,76,142,76v57,0,133,-27,159,-72r0,87v-14,15,-65,52,-159,52v-84,0,-172,-35,-220,-131v-22,-43,-30,-98,-32,-154r-91,0r25,-63r64,0r0,-70r-89,0r25,-63r65,0v0,-142,76,-285,253,-285v101,0,177,53,207,94"},"\u00f2":{"d":"42,-270v0,-173,141,-291,285,-291v162,0,287,137,287,287v0,149,-123,287,-287,287v-160,0,-285,-135,-285,-283xm112,-271v0,127,103,221,216,221v106,0,216,-84,216,-227v0,-144,-122,-221,-216,-221v-100,0,-216,82,-216,227xm240,-786r199,109r-33,58r-198,-107","w":655},"\u00fc":{"d":"541,-547r0,547r-66,0v-2,-27,4,-62,-2,-85v-20,41,-73,98,-175,98v-108,0,-164,-52,-188,-82v-39,-48,-48,-118,-48,-176r0,-302r70,0r0,301v0,69,14,115,39,144v37,44,89,52,127,52v39,0,81,-9,116,-44v32,-32,57,-68,57,-164r0,-289r70,0xm193,-765r74,0r0,126r-74,0r0,-126xm341,-765r74,0r0,126r-74,0r0,-126","w":608},"\u00eb":{"d":"322,-561v185,0,289,139,286,313r-498,0v5,107,105,198,212,198v100,0,171,-61,196,-129r74,0v-38,109,-143,192,-269,192v-153,0,-285,-124,-285,-286v0,-155,125,-288,284,-288xm110,-311r427,0v-22,-129,-127,-187,-214,-187v-86,0,-193,58,-213,187xm214,-765r74,0r0,126r-74,0r0,-126xm362,-765r74,0r0,126r-74,0r0,-126","w":650},"\u00b1":{"d":"269,-340r0,-178r68,0r0,178r218,0r0,68r-218,0r0,178r-68,0r0,-178r-218,0r0,-68r218,0xm51,24r0,-68r504,0r0,68r-504,0","w":606},"\u00e1":{"d":"621,-547r0,547r-70,0v-2,-31,4,-69,-2,-96v-60,90,-156,109,-213,109v-172,0,-294,-131,-294,-288v0,-146,115,-286,294,-286v59,0,155,19,213,110r2,0r0,-96r70,0xm112,-272v0,122,90,222,224,222v118,0,219,-95,219,-223v0,-120,-93,-225,-219,-225v-120,0,-224,87,-224,226xm232,-677r199,-109r32,60r-198,107","w":683},"\u00cf":{"d":"76,0r0,-740r74,0r0,740r-74,0xm2,-928r74,0r0,126r-74,0r0,-126xm150,-928r74,0r0,126r-74,0r0,-126","w":226},"\u00ec":{"d":"65,0r0,-547r70,0r0,547r-70,0xm-28,-786r199,109r-33,58r-198,-107","w":200},"\u00cd":{"d":"76,0r0,-740r74,0r0,740r-74,0xm43,-840r199,-109r32,60r-198,107","w":226},"\u00a9":{"d":"571,-447r-55,0v-19,-84,-80,-101,-137,-101v-97,0,-160,66,-160,177v0,111,63,177,160,177v57,0,118,-17,137,-101r55,0v-9,80,-85,152,-192,152v-131,0,-215,-98,-215,-228v0,-130,84,-228,215,-228v107,0,183,72,192,152xm374,-752v212,0,381,173,381,382v0,212,-173,382,-381,382v-214,0,-383,-173,-383,-382v0,-208,168,-382,383,-382xm373,-701v-186,0,-327,152,-327,331v0,181,144,331,327,331v180,0,327,-147,327,-331v0,-179,-142,-331,-327,-331","w":747},"\u00e4":{"d":"621,-547r0,547r-70,0v-2,-31,4,-69,-2,-96v-60,90,-156,109,-213,109v-172,0,-294,-131,-294,-288v0,-146,115,-286,294,-286v59,0,155,19,213,110r2,0r0,-96r70,0xm112,-272v0,122,90,222,224,222v118,0,219,-95,219,-223v0,-120,-93,-225,-219,-225v-120,0,-224,87,-224,226xm230,-765r74,0r0,126r-74,0r0,-126xm378,-765r74,0r0,126r-74,0r0,-126","w":683},"\u00e0":{"d":"621,-547r0,547r-70,0v-2,-31,4,-69,-2,-96v-60,90,-156,109,-213,109v-172,0,-294,-131,-294,-288v0,-146,115,-286,294,-286v59,0,155,19,213,110r2,0r0,-96r70,0xm112,-272v0,122,90,222,224,222v118,0,219,-95,219,-223v0,-120,-93,-225,-219,-225v-120,0,-224,87,-224,226xm254,-786r199,109r-33,58r-198,-107","w":683},"\u0161":{"d":"24,-162r70,0v2,104,73,112,98,112v66,0,102,-39,102,-98v0,-75,-67,-94,-109,-109v-55,-21,-145,-49,-145,-152v0,-77,55,-152,156,-152v82,0,150,62,149,149r-70,0v-5,-67,-51,-86,-82,-86v-56,0,-83,45,-83,82v0,58,58,78,98,91v64,21,157,57,156,171v0,93,-57,167,-172,167v-76,0,-171,-53,-168,-175xm11,-764r92,0r86,73r88,-73r89,0r-143,125r-67,0","w":388},"\u00cc":{"d":"76,0r0,-740r74,0r0,740r-74,0xm-15,-949r199,109r-33,58r-198,-107","w":226},"\u00d4":{"d":"43,-366v0,-233,194,-387,391,-387v208,0,392,165,392,383v0,218,-185,383,-392,383v-210,0,-391,-171,-391,-379xm117,-366v0,169,145,312,317,312v171,0,318,-139,318,-315v0,-173,-143,-317,-318,-317v-167,0,-317,136,-317,320xm258,-802r145,-125r66,0r143,125r-89,0r-86,-73r-88,73r-91,0","w":869},"\u00de":{"d":"60,0r0,-740r74,0r0,149r132,0v102,0,150,16,191,43v55,37,92,100,92,178v0,78,-37,141,-92,178v-41,27,-89,43,-191,43r-132,0r0,149r-74,0xm241,-216v150,13,234,-47,234,-154v0,-56,-29,-106,-86,-135v-52,-27,-167,-16,-255,-19r0,308r107,0","w":592},"\u00e8":{"d":"322,-561v185,0,289,139,286,313r-498,0v5,107,105,198,212,198v100,0,171,-61,196,-129r74,0v-38,109,-143,192,-269,192v-153,0,-285,-124,-285,-286v0,-155,125,-288,284,-288xm110,-311r427,0v-22,-129,-127,-187,-214,-187v-86,0,-193,58,-213,187xm237,-786r199,109r-33,58r-198,-107","w":650},"\u00e3":{"d":"621,-547r0,547r-70,0v-2,-31,4,-69,-2,-96v-60,90,-156,109,-213,109v-172,0,-294,-131,-294,-288v0,-146,115,-286,294,-286v59,0,155,19,213,110r2,0r0,-96r70,0xm112,-272v0,122,90,222,224,222v118,0,219,-95,219,-223v0,-120,-93,-225,-219,-225v-120,0,-224,87,-224,226xm273,-754v62,0,81,41,142,41v21,0,33,-8,63,-26r36,49v-32,24,-68,39,-98,39v-59,1,-100,-41,-145,-41v-24,0,-49,13,-67,30r-35,-50v30,-28,65,-42,104,-42","w":683},"\u00dc":{"d":"75,-740r74,0r0,461v0,54,8,103,25,134v45,83,118,91,153,91v35,0,108,-8,153,-91v17,-31,25,-80,25,-134r0,-461r74,0r0,461v0,62,-10,115,-28,154v-51,111,-155,138,-224,138v-69,0,-173,-27,-224,-138v-18,-39,-28,-92,-28,-154r0,-461xm216,-928r74,0r0,126r-74,0r0,-126xm364,-928r74,0r0,126r-74,0r0,-126","w":655},"\u00ea":{"d":"322,-561v185,0,289,139,286,313r-498,0v5,107,105,198,212,198v100,0,171,-61,196,-129r74,0v-38,109,-143,192,-269,192v-153,0,-285,-124,-285,-286v0,-155,125,-288,284,-288xm110,-311r427,0v-22,-129,-127,-187,-214,-187v-86,0,-193,58,-213,187xm148,-639r145,-125r66,0r143,125r-89,0r-86,-73r-88,73r-91,0","w":650},"\u00a0":{"w":277}}});Cufon.registerFont({"w":560,"face":{"font-family":"AvantGarde","font-weight":600,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 7 3 0 0 0 0 0 0","ascent":"800","descent":"-200","x-height":"18","bbox":"-123 -1021 1222 251","underline-thickness":"50","underline-position":"-100","stemh":"122","stemv":"133","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":280},"!":{"d":"73,-188r0,-552r133,0r0,552r-133,0xm73,0r0,-127r133,0r0,127r-133,0","w":280},"\"":{"d":"125,-444r-80,0r-26,-296r133,0xm315,-444r-82,0r-25,-296r133,0","w":360},"#":{"d":"495,-292r-4,95r-86,0r-27,197r-100,0r27,-197r-91,0r-27,197r-100,0r27,-197r-85,0r4,-95r95,0r16,-116r-85,0r4,-95r94,0r27,-197r100,0r-27,197r91,0r27,-197r100,0r-27,197r77,0r-4,95r-86,0r-16,116r76,0xm335,-408r-91,0r-16,116r91,0"},"$":{"d":"58,-249r132,0v4,68,58,86,89,86v38,0,89,-27,89,-86v0,-66,-48,-79,-111,-97v-130,-36,-171,-116,-171,-198v0,-88,50,-161,137,-185r0,-128r126,0r0,130v70,23,121,84,129,171r-125,0v-6,-20,-18,-61,-68,-61v-31,0,-66,26,-66,69v0,55,39,67,125,94v37,11,157,48,157,204v0,116,-75,183,-152,204r0,132r-126,0r0,-131v-157,-44,-165,-169,-165,-190r0,-14"},"%":{"d":"36,-574v0,-100,81,-181,180,-181v100,0,180,81,180,181v0,100,-81,180,-180,180v-98,0,-180,-80,-180,-180xm147,-574v0,37,31,69,69,69v36,0,69,-30,69,-70v0,-39,-31,-69,-69,-69v-38,0,-69,30,-69,70xm461,-166v0,-100,81,-181,181,-181v99,0,180,81,180,181v0,101,-83,181,-180,181v-98,0,-181,-79,-181,-181xm572,-166v0,38,31,70,70,70v37,0,69,-31,69,-70v0,-40,-32,-70,-69,-70v-40,0,-70,32,-70,70xm224,0r306,-740r102,0r-307,740r-101,0","w":860},"&":{"d":"513,-437r148,0r-127,224r131,142r-97,86r-102,-111v-27,37,-85,111,-188,111v-113,0,-244,-86,-244,-235v0,-127,95,-183,139,-209v-34,-40,-62,-77,-62,-139v0,-116,93,-187,188,-187v102,0,191,75,191,183v0,115,-83,163,-117,182r68,76xm290,-482v37,-19,74,-39,74,-84v0,-29,-16,-63,-65,-63v-33,0,-62,26,-62,61v0,32,24,57,53,86xm373,-197r-116,-126v-28,13,-90,41,-90,109v0,65,52,99,102,99v58,0,87,-52,104,-82","w":680},"\u2019":{"d":"72,-607r0,-133r133,0r0,141v-1,107,-79,134,-132,133r0,-67v29,-2,65,-22,58,-74r-59,0","w":280},"(":{"d":"350,13r0,144v-36,-13,-81,-29,-139,-93v-43,-48,-137,-173,-137,-361v0,-201,123,-402,276,-457r0,144v-99,81,-139,201,-139,312v0,166,88,275,139,311","w":380},")":{"d":"37,-610r0,-144v36,13,81,29,139,93v43,48,137,173,137,361v0,201,-123,402,-276,457r0,-144v99,-81,139,-201,139,-312v0,-166,-88,-275,-139,-311","w":380},"*":{"d":"221,-663r51,-92r56,39r-56,83r102,-5r-1,67r-101,-5r56,83r-61,36r-46,-92r-47,92r-61,-36r57,-83r-102,5r-1,-67r102,5r-55,-83r56,-39","w":440},"+":{"d":"240,-313r0,-193r120,0r0,193r192,0r0,120r-192,0r0,193r-120,0r0,-193r-192,0r0,-120r192,0","w":600},",":{"d":"73,0r0,-133r133,0r0,141v-1,107,-79,134,-132,133r0,-67v28,-2,65,-22,58,-74r-59,0","w":280},"-":{"d":"71,-230r0,-118r278,0r0,118r-278,0","w":420},".":{"d":"73,0r0,-133r133,0r0,133r-133,0","w":280},"\/":{"d":"6,100r313,-840r135,0r-314,840r-134,0","w":460},"0":{"d":"529,-506r0,273v3,247,-284,317,-436,167v-83,-82,-61,-281,-61,-440v0,-175,133,-249,253,-249v113,0,244,81,244,249xm396,-245r0,-260v0,-73,-52,-124,-114,-124v-64,0,-117,45,-117,129r0,252v0,113,72,137,116,137v38,0,115,-18,115,-134"},"1":{"d":"230,0r0,-614r-93,0r0,-126r226,0r0,740r-133,0"},"2":{"d":"282,-629v-83,0,-115,61,-113,143r-132,0v-11,-140,80,-269,242,-269v151,0,244,122,244,243v0,76,-29,151,-143,252r-150,134r293,0r0,126r-479,0r0,-126r264,-246v73,-68,82,-112,82,-146v0,-78,-58,-111,-108,-111"},"3":{"d":"230,-354r0,-126v63,3,116,-12,116,-79v0,-53,-33,-70,-66,-70v-49,0,-64,47,-66,68r-133,0v14,-171,151,-194,197,-194v115,0,201,96,201,200v0,83,-45,117,-64,131v117,49,117,170,117,191v0,153,-125,248,-254,248v-123,0,-241,-89,-250,-238r133,0v8,79,74,112,120,112v56,0,118,-47,118,-120v0,-65,-54,-131,-169,-123"},"4":{"d":"15,-220r340,-520r112,0r0,503r78,0r0,126r-78,0r0,111r-133,0r0,-111r-319,0r0,-109xm158,-237r176,0r0,-278r-2,0"},"5":{"d":"58,-353r70,-387r335,0r0,126r-235,0r-24,136v168,-77,331,71,331,235v0,135,-106,258,-257,258v-131,0,-247,-106,-253,-235r133,0v16,85,75,109,117,109v85,0,127,-72,127,-132v0,-60,-47,-130,-125,-130v-56,0,-83,32,-100,53"},"6":{"d":"289,-739r156,0r-164,250v11,-3,23,-3,36,-3v105,1,219,93,219,241v0,157,-121,266,-256,266v-161,0,-309,-168,-240,-357v11,-30,26,-58,43,-83xm156,-244v0,73,53,133,124,133v80,0,123,-70,123,-128v0,-71,-55,-130,-126,-130v-78,0,-121,70,-121,125"},"7":{"d":"83,0r276,-614r-297,0r0,-126r436,0r0,126r-267,614r-148,0"},"8":{"d":"143,-411v-24,-24,-66,-66,-66,-140v0,-100,74,-204,203,-204v129,0,204,104,204,204v0,74,-43,116,-67,140v30,16,110,65,110,186v0,137,-118,240,-247,240v-129,0,-247,-103,-247,-240v0,-121,80,-170,110,-186xm359,-549v0,-44,-35,-80,-79,-80v-43,0,-78,36,-78,80v0,43,35,79,78,79v44,0,79,-36,79,-79xm394,-225v0,-63,-51,-114,-114,-114v-63,0,-114,51,-114,114v0,63,51,114,114,114v63,0,114,-51,114,-114"},"9":{"d":"271,0r-156,0r164,-250v-11,3,-23,3,-36,3v-105,-1,-219,-93,-219,-241v0,-157,121,-266,256,-266v161,0,309,168,240,357v-11,30,-26,58,-43,83xm404,-495v0,-73,-53,-133,-123,-133v-81,0,-124,70,-124,128v0,75,51,130,124,130v80,0,123,-70,123,-125"},":":{"d":"73,0r0,-133r133,0r0,133r-133,0xm73,-422r0,-133r133,0r0,133r-133,0","w":280},";":{"d":"73,0r0,-133r133,0r0,141v-1,107,-79,134,-132,133r0,-67v28,-2,65,-22,58,-74r-59,0xm73,-422r0,-133r133,0r0,133r-133,0","w":280},"<":{"d":"554,-107r0,115r-508,-214r0,-94r508,-214r0,115r-352,146","w":600},"=":{"d":"552,-425r0,120r-504,0r0,-120r504,0xm552,-201r0,120r-504,0r0,-120r504,0","w":600},">":{"d":"46,-107r352,-146r-352,-146r0,-115r508,214r0,94r-508,214r0,-115","w":600},"?":{"d":"326,-187r-133,0v-3,-97,13,-162,89,-229v46,-40,76,-66,76,-111v0,-77,-58,-95,-94,-95v-78,0,-87,58,-93,98r-133,0v18,-231,218,-231,230,-231v115,0,223,83,223,228v0,47,-8,102,-101,182v-39,34,-71,74,-64,158xm193,0r0,-133r133,0r0,133r-133,0"},"@":{"d":"362,-219v78,0,128,-92,128,-160v0,-49,-30,-85,-77,-85v-78,0,-130,87,-130,156v0,52,29,89,79,89xm517,-479r15,-55r83,0r-67,256v-6,23,-19,59,10,59v50,0,114,-85,114,-180v0,-156,-115,-243,-257,-243v-164,0,-283,132,-283,294v0,171,125,290,293,290v84,0,165,-34,217,-91r76,0v-65,102,-176,161,-297,161v-206,0,-371,-156,-371,-363v0,-203,166,-361,366,-361v176,0,334,120,334,297v0,191,-161,280,-237,280v-33,0,-53,-24,-60,-57v-27,37,-64,57,-109,57v-83,0,-148,-74,-148,-161v0,-125,85,-252,215,-252v48,0,85,24,106,69","w":740},"A":{"d":"7,0r308,-740r107,0r310,740r-151,0r-79,-191r-265,0r-79,191r-151,0xm367,-547r-84,227r170,0r-84,-227r-2,0","w":740},"B":{"d":"70,0r0,-740v149,6,276,-26,374,57v38,32,63,87,63,138v0,93,-60,128,-83,141v49,18,127,59,127,184v0,89,-45,147,-92,176v-115,71,-236,37,-389,44xm207,-324r0,196r69,0v27,0,138,0,138,-97v0,-30,-15,-99,-135,-99r-72,0xm207,-612r0,160r45,0v32,0,118,0,118,-80v0,-44,-28,-80,-106,-80r-57,0","w":580},"C":{"d":"603,-206r159,0v-58,136,-200,221,-342,221v-214,0,-386,-179,-386,-388v0,-204,169,-382,383,-382v123,0,278,64,349,226r-156,0v-53,-61,-116,-98,-198,-98v-120,0,-241,108,-241,256v0,139,115,258,246,258v99,0,153,-58,186,-93","w":780},"D":{"d":"63,0r0,-740r168,0v182,0,261,49,304,86v70,60,122,170,122,286v0,133,-69,261,-177,320v-113,61,-259,46,-417,48xm200,-612r0,484v87,1,145,-1,209,-36v136,-73,144,-290,32,-386v-64,-56,-141,-63,-241,-62","w":700},"E":{"d":"61,0r0,-740r398,0r0,128r-261,0r0,181r250,0r0,128r-250,0r0,175r261,0r0,128r-398,0","w":520},"F":{"d":"61,0r0,-740r377,0r0,128r-240,0r0,181r229,0r0,128r-229,0r0,303r-137,0","w":480},"G":{"d":"334,-249r0,-128r483,0v7,226,-180,392,-392,392v-212,0,-398,-163,-398,-385v0,-218,185,-385,394,-385v186,0,321,126,359,232r-164,0v-32,-49,-100,-104,-198,-104v-167,0,-254,142,-254,258v0,113,85,256,261,256v91,0,176,-50,219,-136r-310,0","w":840},"H":{"d":"71,0r0,-740r137,0r0,301r265,0r0,-301r137,0r0,740r-137,0r0,-311r-265,0r0,311r-137,0","w":680},"I":{"d":"72,0r0,-740r137,0r0,740r-137,0","w":280},"J":{"d":"272,-740r137,0r0,530v0,198,-147,225,-202,225v-134,-1,-188,-94,-205,-189r138,0v9,40,31,61,65,61v59,0,67,-58,67,-88r0,-539","w":480},"K":{"d":"89,0r0,-740r137,0r0,320r2,0r231,-320r161,0r-279,364r279,376r-161,0r-231,-325r-2,0r0,325r-137,0","w":620},"L":{"d":"72,0r0,-740r137,0r0,612r226,0r0,128r-363,0","w":440},"M":{"d":"63,0r0,-740r190,0r197,560r2,0r195,-560r190,0r0,740r-137,0r0,-555r-3,0r-189,555r-116,0r-190,-555r-2,0r0,555r-137,0","w":900},"N":{"d":"70,0r0,-740r156,0r306,538r2,0r0,-538r137,0r0,740r-153,0r-309,-538r-2,0r0,538r-137,0","w":740},"O":{"d":"33,-368v0,-219,177,-387,387,-387v210,0,387,168,387,387v0,212,-174,383,-387,383v-213,0,-387,-171,-387,-383xm170,-369v0,137,109,256,250,256v141,0,250,-119,250,-256v0,-142,-111,-258,-250,-258v-139,0,-250,116,-250,258","w":840},"P":{"d":"72,0r0,-740v164,9,293,-34,403,59v95,81,95,260,0,340v-84,71,-155,58,-266,59r0,282r-137,0xm209,-612r0,202r44,0v59,0,155,-4,155,-101v0,-116,-110,-99,-199,-101"},"Q":{"d":"824,-113r0,128v-93,5,-160,-35,-195,-61v-61,39,-135,61,-210,61v-213,0,-387,-171,-387,-383v0,-219,177,-387,387,-387v208,0,387,167,387,382v0,131,-53,199,-81,236v41,25,62,24,99,24xm520,-135v-104,-77,-178,-101,-249,-101v-28,0,-44,4,-59,9v80,118,200,135,308,92xm252,-364v197,0,364,148,365,149v19,-27,52,-64,52,-154v0,-148,-115,-258,-250,-258v-160,0,-258,134,-248,272v19,-4,41,-9,81,-9","w":840},"R":{"d":"64,0r0,-740v145,5,331,-19,407,50v40,36,87,94,87,179v0,49,-18,126,-71,177v-44,42,-86,52,-123,61r201,273r-166,0r-196,-283r-2,0r0,283r-137,0xm201,-612r0,226r88,0v113,0,132,-75,132,-114v0,-41,-25,-112,-132,-112r-88,0","w":580},"S":{"d":"12,-212r144,0v7,74,56,99,98,99v54,0,102,-37,102,-93v0,-76,-49,-90,-141,-125v-57,-22,-176,-57,-176,-213v0,-118,92,-211,217,-211v86,0,212,60,219,211r-140,0v-6,-66,-46,-83,-83,-83v-43,0,-76,31,-76,75v0,64,48,78,123,103v61,20,194,67,194,228v0,160,-124,236,-240,236v-95,0,-233,-64,-241,-227","w":520},"T":{"d":"143,0r0,-612r-137,0r0,-128r412,0r0,128r-138,0r0,612r-137,0","w":420},"U":{"d":"55,-740r137,0r0,470v0,37,0,157,128,157v128,0,128,-120,128,-157r0,-470r137,0r0,470v0,60,-8,126,-43,175v-43,60,-120,110,-221,110v-113,0,-188,-63,-220,-106v-24,-32,-46,-88,-46,-179r0,-470","w":640},"V":{"d":"296,0r-288,-740r144,0r198,563r2,0r199,-563r144,0r-287,740r-112,0","w":700},"W":{"d":"223,0r-216,-740r140,0r128,517r2,0r127,-517r100,0r124,517r2,0r129,-517r140,0r-215,740r-109,0r-120,-489r-2,0r-122,489r-108,0","w":900},"X":{"d":"4,0r255,-369r-255,-371r163,0r173,258r178,-258r158,0r-256,371r256,369r-158,0r-178,-256r-173,256r-163,0","w":680},"Y":{"d":"241,0r0,-273r-243,-467r150,0r161,340r162,-340r151,0r-244,467r0,273r-137,0","w":620},"Z":{"d":"19,-112r283,-500r-268,0r0,-128r428,0r0,119r-281,493r300,0r0,128r-462,0r0,-112","w":500},"[":{"d":"284,-754r0,146v-39,19,-81,38,-81,187r0,265v0,132,51,154,81,167r0,146v-189,-44,-218,-216,-218,-337r0,-269v0,-240,165,-289,218,-305","w":320},"\\":{"d":"231,-740r313,840r-134,0r-314,-840r135,0","w":640},"]":{"d":"36,157r0,-147v39,-18,81,-37,81,-187r0,-264v0,-132,-51,-154,-81,-167r0,-146v189,44,218,216,218,337r0,269v0,240,-165,289,-218,305","w":320},"^":{"d":"192,-375r-119,0r174,-365r106,0r174,365r-120,0r-107,-248","w":600},"_":{"d":"500,125r-500,0r0,-50r500,0r0,50","w":500},"\u2018":{"d":"205,-599r0,133r-133,0r0,-141v1,-107,79,-134,132,-133r0,68v-28,0,-67,23,-57,73r58,0","w":280},"a":{"d":"613,-555r0,555r-122,0r0,-69v-42,50,-124,87,-194,87v-143,0,-270,-114,-270,-299v0,-170,124,-293,278,-293v116,0,177,83,186,89r0,-70r122,0xm487,-279v0,-115,-83,-173,-162,-173v-109,0,-165,94,-165,177v0,94,70,171,165,171v92,0,162,-72,162,-175","w":660},"b":{"d":"47,0r0,-740r133,0r0,235v46,-46,111,-69,173,-69v169,0,279,147,279,294v0,111,-73,298,-276,298v-107,0,-154,-48,-187,-85r0,67r-122,0xm172,-285v0,123,89,181,167,181v87,0,160,-67,160,-175v0,-108,-78,-173,-162,-173v-102,0,-165,86,-165,167","w":660},"c":{"d":"460,-181r150,0v-45,124,-148,199,-278,199v-142,0,-295,-114,-295,-298v0,-170,141,-294,294,-294v70,0,222,32,279,203r-150,0v-16,-28,-47,-81,-129,-81v-81,0,-161,60,-161,174v0,95,67,174,167,174v44,0,88,-21,123,-77","w":640},"d":{"d":"618,-740r0,740r-122,0v-2,-21,4,-51,-2,-68v-25,40,-83,86,-177,86v-141,0,-283,-116,-283,-295v0,-187,150,-297,283,-297v81,0,129,27,168,68r0,-234r133,0xm167,-282v0,103,77,178,164,178v100,0,164,-90,164,-174v0,-91,-70,-174,-164,-174v-99,0,-164,92,-164,170","w":660},"e":{"d":"602,-218r-431,0v6,36,58,114,153,114v59,0,103,-25,128,-71r140,0v-32,100,-137,193,-268,193v-169,0,-293,-132,-293,-294v0,-157,116,-298,292,-298v204,0,316,174,279,356xm167,-325r307,0v-15,-89,-79,-127,-150,-127v-54,0,-132,24,-157,127","w":640},"f":{"d":"62,0r0,-437r-47,0r0,-118r47,0v3,-37,9,-105,65,-155v42,-37,86,-48,153,-45r0,131v-51,1,-81,2,-85,69r78,0r0,118r-78,0r0,437r-133,0","w":280},"g":{"d":"494,-555r129,0r0,453v0,267,-198,328,-303,328v-114,0,-231,-60,-279,-184r152,0v52,62,116,62,137,62v73,3,170,-58,168,-175v-18,25,-69,89,-182,89v-135,0,-284,-115,-284,-301v0,-174,142,-291,283,-291v117,-1,159,67,179,87r0,-68xm490,-283v0,-79,-64,-169,-163,-169v-80,0,-162,65,-162,170v0,113,85,178,166,178v80,0,159,-68,159,-179","w":660},"h":{"d":"54,0r0,-740r133,0r0,224v17,-16,61,-58,144,-58v62,0,131,34,171,85v44,56,44,135,44,176r0,313r-133,0r0,-284v0,-60,-4,-168,-114,-168v-112,0,-112,123,-112,170r0,282r-133,0","w":600},"i":{"d":"53,0r0,-555r133,0r0,555r-133,0xm53,-618r0,-122r133,0r0,122r-133,0","w":240},"j":{"d":"72,-555r133,0r0,531v0,122,-73,208,-189,209r0,-130v42,-5,56,-11,56,-82r0,-528xm72,-618r0,-122r133,0r0,122r-133,0","w":260},"k":{"d":"80,0r0,-740r133,0r0,446r2,0r177,-261r153,0r-200,272r226,283r-168,0r-188,-260r-2,0r0,260r-133,0","w":580},"l":{"d":"54,0r0,-740r133,0r0,740r-133,0","w":240},"m":{"d":"54,0r0,-555r122,0v2,15,-4,36,2,47v11,-18,49,-66,145,-66v30,0,108,7,160,87v58,-83,140,-87,179,-87v109,0,163,58,183,86v22,29,42,82,42,164r0,324r-133,0r0,-308v0,-32,0,-144,-105,-144v-37,0,-73,20,-92,52v-19,30,-20,79,-20,113r0,287r-133,0r0,-308v0,-76,-29,-144,-111,-144v-106,0,-106,116,-106,175r0,277r-133,0","w":940},"n":{"d":"54,0r0,-555r123,0r0,48v22,-21,68,-67,152,-67v48,0,121,21,167,77v51,61,51,154,51,197r0,300r-133,0r0,-274v0,-46,0,-178,-112,-178v-24,0,-66,12,-91,49v-23,34,-24,92,-24,139r0,264r-133,0","w":600},"o":{"d":"321,18v-165,0,-296,-136,-296,-295v0,-168,137,-297,296,-297v157,0,294,125,294,295v0,182,-140,297,-294,297xm321,-104v97,0,161,-84,161,-172v0,-101,-78,-176,-161,-176v-69,0,-163,59,-163,175v0,105,79,173,163,173","w":640},"p":{"d":"47,185r0,-740r122,0v2,20,-4,49,2,65v66,-84,154,-84,180,-84v182,0,278,157,278,294v0,164,-121,298,-278,298v-94,0,-136,-38,-171,-71r0,238r-133,0xm172,-278v0,123,99,174,162,174v71,0,162,-60,162,-174v0,-102,-78,-174,-160,-174v-83,0,-164,67,-164,174","w":660},"q":{"d":"491,-555r122,0r0,740r-133,0r0,-238v-65,71,-153,71,-169,71v-168,0,-280,-148,-280,-301v0,-159,129,-291,281,-291v116,-1,155,63,179,89r0,-70xm164,-280v0,112,80,176,163,176v94,0,160,-84,160,-173v0,-87,-63,-175,-161,-175v-95,0,-162,81,-162,172","w":660},"r":{"d":"63,0r0,-555r122,0v2,15,-4,38,2,49v25,-38,56,-71,130,-68r0,129v-121,5,-121,100,-121,133r0,312r-133,0","w":320},"s":{"d":"406,-404r-130,0v-9,-44,-39,-48,-53,-48v-33,0,-51,25,-51,48v0,32,23,40,94,62v69,22,155,54,155,166v0,202,-244,256,-360,121v-35,-41,-39,-86,-42,-120r136,0v6,25,18,71,73,71v43,0,60,-33,60,-56v0,-41,-30,-51,-125,-83v-63,-21,-124,-68,-124,-159v0,-222,355,-232,367,-2","w":440},"t":{"d":"86,0r0,-437r-65,0r0,-118r65,0r0,-185r133,0r0,185r80,0r0,118r-80,0r0,437r-133,0","w":300},"u":{"d":"411,-555r133,0r0,555r-122,0v-2,-17,4,-42,-2,-56v-22,30,-58,74,-143,74v-101,0,-159,-50,-186,-88v-42,-59,-41,-149,-41,-195r0,-290r133,0r0,283v0,45,0,168,116,168v84,0,112,-79,112,-167r0,-284","w":600},"v":{"d":"227,0r-224,-555r144,0r134,368r3,0r126,-368r146,0r-225,555r-104,0"},"w":{"d":"211,0r-200,-555r142,0r101,339r2,0r91,-339r106,0r90,339r2,0r102,-339r142,0r-203,555r-82,0r-104,-360r-2,0r-105,360r-82,0","w":800},"x":{"d":"3,0r197,-286r-172,-269r149,0r102,167r101,-167r149,0r-172,269r199,286r-158,0r-119,-190r-118,190r-158,0"},"y":{"d":"109,185r102,-237r-203,-503r152,0r126,356r134,-356r151,0r-319,740r-143,0","w":580},"z":{"d":"20,0r0,-122r246,-311r-218,0r0,-122r377,0r0,122r-246,311r263,0r0,122r-422,0","w":460},"{":{"d":"-3,-233r0,-99v24,0,97,-6,97,-61r0,-216v0,-96,91,-138,133,-138r90,0r0,90r-45,0v-37,0,-41,38,-41,65r0,212v-1,77,-74,94,-125,96r0,3v51,3,125,10,125,105r0,212v0,27,4,65,41,65r45,0r0,90r-90,0v-42,0,-133,-42,-133,-138r0,-216v0,-63,-73,-70,-97,-70","w":340},"|":{"d":"233,-750r133,0r0,1000r-133,0r0,-1000","w":600},"}":{"d":"343,-332r0,99v-24,0,-97,7,-97,70r0,216v0,96,-91,138,-133,138r-90,0r0,-90r45,0v37,0,41,-38,41,-65r0,-212v1,-95,74,-102,125,-105r0,-3v-51,-2,-125,-19,-125,-96r0,-212v0,-27,-4,-65,-41,-65r-45,0r0,-90r90,0v42,0,133,42,133,138r0,216v0,55,73,61,97,61","w":340},"~":{"d":"194,-345v66,0,155,68,213,68v40,0,65,-36,90,-70r36,98v-32,43,-65,88,-127,88v-80,0,-130,-68,-217,-68v-44,0,-68,36,-86,69r-36,-96v24,-44,60,-89,127,-89","w":600},"\u00a1":{"d":"74,-366r133,0r0,551r-133,0r0,-551xm74,-555r133,0r0,127r-133,0r0,-127","w":280},"\u00a2":{"d":"349,-39r-126,0r0,-109v-117,-24,-180,-142,-180,-235v0,-107,76,-209,180,-230r0,-102r126,0r0,102v75,16,153,89,168,170r-140,0v-53,-81,-201,-47,-201,64v0,62,48,109,110,109v42,0,64,-20,85,-40r146,0v-50,126,-126,149,-168,162r0,109"},"\u00a3":{"d":"38,0r0,-126r139,0v46,-82,3,-145,-38,-185r-141,0r0,-126r56,0v-58,-148,57,-318,224,-318v155,0,235,145,235,212r-135,0v-12,-59,-59,-86,-99,-86v-104,2,-138,127,-80,192r208,0r0,126r-109,0v31,47,40,129,20,185v81,6,113,-61,111,-99v0,-12,-2,-23,-10,-50r133,0v10,19,10,48,10,51v0,82,-56,224,-240,224r-284,0"},"\u2044":{"d":"-123,0r306,-740r99,0r-307,740r-98,0","w":160},"\u00a5":{"d":"347,-189r0,189r-133,0r0,-189r-166,0r0,-105r166,0r0,-33r-32,-57r-142,0r0,-105r88,0r-138,-251r137,0r154,288r155,-288r134,0r-138,251r88,0r0,105r-142,0v-12,28,-36,45,-31,90r164,0r0,105r-164,0"},"\u0192":{"d":"382,-586r92,0r-19,115r-93,0r-62,365v-19,106,-32,166,-98,213v-52,38,-134,54,-202,37r20,-114v121,6,138,-58,156,-158r60,-343r-94,0r19,-115r95,0v12,-72,18,-126,80,-183v43,-40,106,-63,176,-52r-20,117v-84,-4,-101,64,-110,118"},"\u00a7":{"d":"496,-567r-125,0v-4,-21,-16,-66,-82,-66v-61,0,-76,34,-76,56v0,31,34,48,63,63r164,84v78,40,90,109,90,139v0,39,-21,96,-82,141v23,23,50,57,50,120v0,114,-95,188,-215,188v-122,0,-220,-78,-225,-212r125,0v-1,67,57,90,101,90v49,0,89,-26,89,-65v0,-36,-31,-52,-72,-73r-166,-88v-72,-37,-107,-94,-107,-157v0,-89,64,-130,89,-147v-14,-23,-29,-50,-29,-94v0,-118,104,-167,200,-167v188,0,204,155,208,188xm347,-342r-154,-78v-13,9,-40,37,-40,65v0,20,14,41,57,62r155,79v19,-14,40,-35,40,-65v0,-32,-30,-48,-58,-63"},"\u00a4":{"d":"27,-138r69,-70v-40,-57,-39,-174,0,-230r-69,-69r69,-70r69,70v58,-40,173,-40,230,0r70,-70r69,70r-70,69v40,55,40,174,0,229r70,71r-69,69r-70,-71v-56,40,-172,42,-230,1r-69,70xm188,-323v0,52,40,93,92,93v52,0,92,-41,92,-93v0,-52,-40,-93,-92,-93v-52,0,-92,41,-92,93"},"'":{"d":"151,-444r-81,0r-26,-296r133,0","w":220},"\u201c":{"d":"203,-599r0,133r-133,0r0,-141v1,-107,79,-134,132,-133r0,68v-28,0,-67,23,-57,73r58,0xm410,-599r0,133r-133,0r0,-141v1,-107,79,-134,132,-133r0,68v-28,0,-67,23,-57,73r58,0","w":480},"\u00ab":{"d":"201,-108r-140,-131r0,-101r140,-129r0,123r-68,57r68,58r0,123xm400,-108r-140,-131r0,-101r140,-129r0,123r-68,57r68,58r0,123","w":460},"\u2039":{"d":"190,-108r-140,-131r0,-101r140,-129r0,123r-68,57r68,58r0,123","w":240},"\u203a":{"d":"50,-108r0,-123r68,-58r-68,-57r0,-123r140,129r0,101","w":240},"\ufb01":{"d":"72,-437r-47,0r0,-118r47,0v3,-37,9,-105,65,-155v42,-37,86,-48,153,-45r0,131v-51,1,-81,2,-85,69r256,0r0,555r-133,0r0,-437r-123,0r0,437r-133,0r0,-437xm328,-618r0,-122r133,0r0,122r-133,0","w":520},"\ufb02":{"d":"72,-437r-47,0r0,-118r47,0v3,-37,9,-105,65,-155v42,-37,86,-48,153,-45r0,131v-51,1,-81,2,-85,69r123,0r0,-185r133,0r0,740r-133,0r0,-437r-123,0r0,437r-133,0r0,-437","w":520},"\u2013":{"d":"35,-230r0,-118r430,0r0,118r-430,0","w":500},"\u2020":{"d":"347,-740r0,185r162,0r0,113r-162,0r0,584r-133,0r0,-584r-163,0r0,-113r163,0r0,-185r133,0"},"\u2021":{"d":"346,-740r0,153r163,0r0,112r-163,0r0,296r163,0r0,112r-163,0r0,209r-133,0r0,-209r-162,0r0,-112r162,0r0,-296r-162,0r0,-112r162,0r0,-153r133,0"},"\u00b7":{"d":"73,-187r0,-133r133,0r0,133r-133,0","w":280},"\u00b6":{"d":"205,103r0,-458v-100,3,-212,-42,-212,-189v0,-189,181,-196,254,-196r360,0r0,103r-79,0r0,740r-113,0r0,-740r-97,0r0,740r-113,0","w":600},"\u2022":{"d":"302,-532v83,0,151,70,151,155v0,86,-69,155,-152,155v-85,0,-153,-71,-153,-155v0,-82,65,-155,154,-155","w":600},"\u201a":{"d":"72,0r0,-133r133,0r0,140v0,109,-83,134,-132,134r0,-68v29,-1,65,-21,58,-73r-59,0","w":280},"\u201e":{"d":"70,0r0,-133r133,0r0,140v0,109,-82,134,-132,134r0,-68v29,-1,65,-21,58,-73r-59,0xm277,0r0,-133r133,0r0,140v0,109,-82,134,-132,134r0,-68v29,-1,65,-21,58,-73r-59,0","w":480},"\u201d":{"d":"70,-607r0,-133r133,0r0,141v-1,107,-78,134,-132,133r0,-67v29,-2,65,-22,58,-74r-59,0xm277,-607r0,-133r133,0r0,141v-1,107,-78,134,-132,133r0,-67v29,-2,65,-22,58,-74r-59,0","w":480},"\u00bb":{"d":"61,-108r0,-123r68,-58r-68,-57r0,-123r140,129r0,101xm260,-108r0,-123r68,-58r-68,-57r0,-123r140,129r0,101","w":460},"\u2026":{"d":"100,0r0,-133r133,0r0,133r-133,0xm433,0r0,-133r133,0r0,133r-133,0xm766,0r0,-133r133,0r0,133r-133,0","w":1000},"\u2030":{"d":"36,-574v0,-100,81,-181,180,-181v100,0,180,81,180,181v0,100,-81,180,-180,180v-98,0,-180,-80,-180,-180xm147,-574v0,37,31,69,69,69v36,0,69,-30,69,-70v0,-39,-31,-69,-69,-69v-38,0,-69,30,-69,70xm461,-166v0,-100,81,-181,181,-181v99,0,180,81,180,181v0,101,-83,181,-180,181v-98,0,-181,-79,-181,-181xm572,-166v0,38,31,70,70,70v37,0,69,-31,69,-70v0,-40,-32,-70,-69,-70v-40,0,-70,32,-70,70xm861,-166v0,-100,81,-181,181,-181v99,0,180,81,180,181v0,101,-83,181,-180,181v-98,0,-181,-79,-181,-181xm972,-166v0,38,31,70,70,70v37,0,69,-31,69,-70v0,-40,-32,-70,-69,-70v-40,0,-70,32,-70,70xm224,0r306,-740r102,0r-307,740r-101,0","w":1280},"\u00bf":{"d":"233,-368r133,0v3,97,-13,162,-89,229v-46,40,-76,66,-76,111v0,77,58,95,94,95v78,0,87,-58,93,-98r133,0v-18,231,-218,231,-230,231v-115,0,-223,-83,-223,-228v0,-47,8,-102,101,-182v39,-34,71,-74,64,-158xm366,-555r0,133r-133,0r0,-133r133,0"},"`":{"d":"50,-749r57,-102r222,135r-53,92","w":420},"\u00b4":{"d":"142,-624r-53,-92r222,-135r57,102","w":420},"\u02c6":{"d":"71,-636r148,-138r105,0r146,138r-145,0r-53,-64r-56,64r-145,0","w":540},"\u02dc":{"d":"323,-636v-28,0,-92,-26,-145,-27v-42,0,-68,14,-80,20r-54,-81v52,-39,98,-43,116,-43v37,0,121,29,147,29v29,0,53,-8,76,-23r54,78v-30,24,-64,47,-114,47","w":480},"\u00af":{"d":"72,-648r0,-111r277,0r0,111r-277,0","w":420},"\u02d8":{"d":"42,-770r108,0v22,35,64,40,90,40v37,0,72,-9,91,-40r108,0v-13,86,-84,137,-199,137v-114,0,-185,-51,-198,-137","w":480},"\u02d9":{"d":"74,-636r0,-133r133,0r0,133r-133,0","w":280},"\u00a8":{"d":"78,-636r0,-133r134,0r0,133r-134,0xm289,-636r0,-133r133,0r0,133r-133,0","w":500},"\u02da":{"d":"73,-726v0,-60,48,-108,107,-108v60,0,108,48,108,108v0,59,-49,107,-108,107v-58,0,-107,-48,-107,-107xm140,-726v0,22,18,40,40,40v22,0,41,-17,41,-40v0,-23,-18,-41,-41,-41v-22,0,-40,18,-40,41","w":360},"\u00b8":{"d":"154,-6r50,7r-24,54v65,-11,118,24,118,98v0,64,-46,98,-100,98v-69,0,-100,-58,-100,-87r53,0v4,22,23,37,47,37v27,0,46,-20,46,-48v0,-47,-64,-70,-90,-28r-49,-19","w":340},"\u02dd":{"d":"177,-610r-57,-76r197,-163r67,89xm419,-610r-57,-76r197,-163r67,89","w":700},"\u02db":{"d":"165,-9r70,0v-40,30,-64,47,-64,79v0,47,55,55,91,34r0,78v-16,6,-34,13,-68,13v-93,0,-115,-63,-115,-97v0,-39,25,-76,86,-107","w":340},"\u02c7":{"d":"71,-774r145,0r56,64r53,-64r145,0r-146,138r-105,0","w":540},"\u2014":{"d":"35,-230r0,-118r930,0r0,118r-930,0","w":1000},"\u00c6":{"d":"-5,0r489,-740r340,0r0,128r-220,0r0,181r209,0r0,128r-209,0r0,175r220,0r0,128r-357,0r0,-191r-196,0r-115,191r-161,0xm465,-514r-113,195r115,0r0,-195r-2,0","w":900},"\u00aa":{"d":"334,-745r0,297r-88,0v-1,-8,3,-21,-2,-25v-13,20,-38,35,-76,35v-77,0,-149,-61,-149,-160v0,-91,70,-157,149,-157v39,0,62,20,78,36r0,-26r88,0xm248,-597v0,-48,-36,-73,-70,-73v-94,1,-88,149,0,147v39,0,70,-31,70,-74","w":360},"\u0141":{"d":"97,-273r-71,48r0,-138r71,-48r0,-329r137,0r0,237r128,-86r0,138r-128,86r0,237r226,0r0,128r-363,0r0,-273","w":480},"\u00d8":{"d":"230,-205r277,-406v-175,-63,-338,72,-337,242v0,61,22,119,60,164xm614,-532r-276,405v174,59,334,-79,332,-242v0,-62,-21,-118,-56,-163xm582,-719r63,-95r109,75r-64,94v72,69,117,167,117,277v0,264,-280,464,-543,350r-61,89r-110,-75r60,-88v-74,-69,-120,-167,-120,-276v0,-275,285,-471,549,-351","w":840},"\u0152":{"d":"1007,0r-357,0r0,-79v-57,63,-162,94,-242,94v-177,0,-371,-144,-371,-384v0,-245,193,-386,371,-386v59,0,175,20,242,95r0,-80r357,0r0,128r-220,0r0,181r208,0r0,128r-208,0r0,175r220,0r0,128xm174,-356v0,104,86,243,242,243v143,0,239,-125,239,-252v0,-123,-90,-262,-242,-262v-127,0,-239,104,-239,271","w":1060},"\u00ba":{"d":"181,-438v-88,0,-158,-73,-158,-158v0,-90,73,-159,158,-159v84,0,157,67,157,158v0,97,-75,159,-157,159xm181,-523v40,0,67,-35,67,-72v0,-94,-135,-103,-135,-1v0,43,33,73,68,73","w":360},"\u00e6":{"d":"893,-175r140,0v-22,72,-123,193,-262,193v-80,0,-125,-31,-164,-74r0,56r-122,0v-2,-17,4,-42,-2,-56v-15,21,-58,74,-170,74v-157,0,-284,-137,-284,-295v0,-169,135,-297,286,-297v101,0,141,41,170,69r0,-50r122,0r0,50v43,-45,91,-69,170,-69v153,0,302,157,267,356r-432,0v19,77,96,114,149,114v82,0,120,-44,132,-71xm162,-276v0,84,63,172,159,172v86,0,160,-75,160,-174v0,-105,-80,-174,-159,-174v-72,0,-160,59,-160,176xm608,-325r307,0v-4,-28,-32,-127,-150,-127v-78,0,-140,51,-157,127","w":1080},"\u0131":{"d":"53,0r0,-555r133,0r0,555r-133,0","w":240},"\u0142":{"d":"34,-358r65,-43r0,-339r133,0r0,252r73,-48r0,143r-73,49r0,344r-133,0r0,-258r-65,42r0,-142","w":320},"\u00f8":{"d":"195,-181r180,-264v-14,-5,-29,-7,-44,-7v-69,0,-163,59,-163,175v0,37,10,69,27,96xm467,-367r-176,258v151,37,250,-133,176,-258xm447,-550r39,-58r99,69r-40,58v49,51,80,121,80,202v-2,221,-205,350,-405,275r-38,54r-99,-68r37,-54v-53,-53,-85,-126,-85,-205v0,-207,209,-357,412,-273","w":660},"\u0153":{"d":"893,-175r138,0v-43,131,-171,193,-269,193v-36,0,-149,-9,-219,-116v-23,34,-81,116,-223,116v-160,0,-290,-131,-290,-295v0,-178,146,-297,292,-297v134,0,199,84,221,114v35,-46,95,-114,218,-114v174,0,323,153,283,356r-434,0v30,102,129,114,152,114v72,0,115,-37,131,-71xm163,-282v0,113,85,178,162,178v88,0,161,-76,161,-173v0,-98,-75,-175,-162,-175v-86,0,-161,76,-161,170xm608,-325r307,0v-18,-76,-76,-127,-153,-127v-78,0,-132,48,-154,127","w":1080},"\u00df":{"d":"51,0r0,-488v0,-239,170,-267,225,-267v113,0,215,85,215,210v0,54,-20,109,-66,136v147,36,160,150,160,195v0,128,-76,232,-223,232v-39,0,-133,0,-187,-91r-2,0r0,73r-122,0xm270,-189v7,45,43,85,92,85v45,0,90,-36,90,-99v0,-105,-108,-113,-194,-113r0,-118v70,0,100,-49,100,-105v0,-64,-41,-94,-85,-94v-84,0,-89,89,-89,130r0,314r86,0","w":600},"\u00b9":{"d":"127,-296r0,-358r-55,0r0,-86r151,0r0,444r-96,0","w":336},"\u2212":{"d":"552,-193r-504,0r0,-120r504,0r0,120","w":600},"\u00b0":{"d":"200,-495v39,0,71,-35,71,-74v0,-38,-32,-74,-71,-74v-39,0,-71,36,-71,74v0,39,32,74,71,74xm200,-426v-80,0,-143,-63,-143,-143v0,-80,63,-143,143,-143v80,0,143,63,143,143v0,80,-63,143,-143,143","w":400},"\u00f3":{"d":"321,18v-165,0,-296,-136,-296,-295v0,-168,137,-297,296,-297v157,0,294,125,294,295v0,182,-140,297,-294,297xm321,-104v97,0,161,-84,161,-172v0,-101,-78,-176,-161,-176v-69,0,-163,59,-163,175v0,105,79,173,163,173xm252,-624r-53,-92r222,-135r57,102","w":640},"\u00d6":{"d":"33,-368v0,-219,177,-387,387,-387v210,0,387,168,387,387v0,212,-174,383,-387,383v-213,0,-387,-171,-387,-383xm170,-369v0,137,109,256,250,256v141,0,250,-119,250,-256v0,-142,-111,-258,-250,-258v-139,0,-250,116,-250,258xm248,-806r0,-133r134,0r0,133r-134,0xm459,-806r0,-133r133,0r0,133r-133,0","w":840},"\u00f6":{"d":"321,18v-165,0,-296,-136,-296,-295v0,-168,137,-297,296,-297v157,0,294,125,294,295v0,182,-140,297,-294,297xm321,-104v97,0,161,-84,161,-172v0,-101,-78,-176,-161,-176v-69,0,-163,59,-163,175v0,105,79,173,163,173xm148,-636r0,-133r134,0r0,133r-134,0xm359,-636r0,-133r133,0r0,133r-133,0","w":640},"\u00ca":{"d":"61,0r0,-740r398,0r0,128r-261,0r0,181r250,0r0,128r-250,0r0,175r261,0r0,128r-398,0xm61,-806r148,-138r105,0r146,138r-145,0r-53,-64r-56,64r-145,0","w":520},"\u00fb":{"d":"411,-555r133,0r0,555r-122,0v-2,-17,4,-42,-2,-56v-22,30,-58,74,-143,74v-101,0,-159,-50,-186,-88v-42,-59,-41,-149,-41,-195r0,-290r133,0r0,283v0,45,0,168,116,168v84,0,112,-79,112,-167r0,-284xm101,-636r148,-138r105,0r146,138r-145,0r-53,-64r-56,64r-145,0","w":600},"\u00bc":{"d":"187,0r306,-740r99,0r-307,740r-98,0xm508,-147r99,0v-2,-51,4,-112,-2,-159xm409,-135r212,-309r76,0r0,297r49,0r0,82r-49,0r0,65r-90,0r0,-65r-198,0r0,-70xm147,-296r0,-358r-55,0r0,-86r151,0r0,444r-96,0","w":840},"\u00ac":{"d":"432,-108r0,-197r-384,0r0,-120r504,0r0,317r-120,0","w":600},"\u00cb":{"d":"61,0r0,-740r398,0r0,128r-261,0r0,181r250,0r0,128r-250,0r0,175r261,0r0,128r-398,0xm88,-806r0,-133r134,0r0,133r-134,0xm299,-806r0,-133r133,0r0,133r-133,0","w":520},"\u00bd":{"d":"157,0r306,-740r99,0r-307,740r-98,0xm117,-296r0,-358r-55,0r0,-86r151,0r0,444r-96,0xm467,0r0,-81r159,-147v40,-35,49,-57,49,-80v0,-40,-30,-59,-59,-59v-52,0,-59,47,-58,80r-95,0v-9,-87,49,-166,153,-166v96,0,155,74,155,147v0,46,-21,92,-87,150r-80,70r167,0r0,86r-304,0","w":840},"\u00d5":{"d":"33,-368v0,-219,177,-387,387,-387v210,0,387,168,387,387v0,212,-174,383,-387,383v-213,0,-387,-171,-387,-383xm170,-369v0,137,109,256,250,256v141,0,250,-119,250,-256v0,-142,-111,-258,-250,-258v-139,0,-250,116,-250,258xm503,-806v-28,0,-92,-26,-145,-27v-42,0,-68,14,-80,20r-54,-81v52,-39,98,-43,116,-43v37,0,121,29,147,29v29,0,53,-8,76,-23r54,78v-30,24,-64,47,-114,47","w":840},"\u00fa":{"d":"411,-555r133,0r0,555r-122,0v-2,-17,4,-42,-2,-56v-22,30,-58,74,-143,74v-101,0,-159,-50,-186,-88v-42,-59,-41,-149,-41,-195r0,-290r133,0r0,283v0,45,0,168,116,168v84,0,112,-79,112,-167r0,-284xm267,-624r-53,-92r222,-135r57,102","w":600},"\u00e9":{"d":"602,-218r-431,0v6,36,58,114,153,114v59,0,103,-25,128,-71r140,0v-32,100,-137,193,-268,193v-169,0,-293,-132,-293,-294v0,-157,116,-298,292,-298v204,0,316,174,279,356xm167,-325r307,0v-15,-89,-79,-127,-150,-127v-54,0,-132,24,-157,127xm252,-624r-53,-92r222,-135r57,102","w":640},"\u00ed":{"d":"53,0r0,-555r133,0r0,555r-133,0xm77,-624r-53,-92r222,-135r57,102","w":240},"\u00d0":{"d":"97,-311r-72,0r0,-128r72,0r0,-301r168,0v182,0,261,49,304,86v70,60,122,170,122,286v0,133,-69,261,-177,320v-113,61,-259,46,-417,48r0,-311xm371,-311r-137,0r0,183v87,1,145,-1,209,-36v136,-73,144,-290,32,-386v-64,-56,-141,-63,-241,-62r0,173r137,0r0,128","w":742},"\u00ee":{"d":"53,0r0,-555r133,0r0,555r-133,0xm-79,-636r148,-138r105,0r146,138r-145,0r-53,-64r-56,64r-145,0","w":240},"\u00ae":{"d":"207,-585r184,0v27,0,154,0,154,119v0,50,-27,90,-81,108v60,17,70,53,73,109v3,74,4,83,14,101r-89,0v-8,-13,-13,-26,-13,-81v0,-100,-63,-96,-155,-94r0,175r-87,0r0,-437xm294,-514r0,121r78,0v31,0,84,0,84,-70v0,-76,-92,-44,-162,-51xm371,-752v212,0,381,173,381,382v0,212,-173,382,-381,382v-214,0,-383,-173,-383,-382v0,-208,168,-382,383,-382xm370,-666v-166,0,-292,135,-292,296v0,163,129,296,292,296v162,0,292,-132,292,-296v0,-161,-127,-296,-292,-296","w":740},"\u00a6":{"d":"233,-675r133,0r0,350r-133,0r0,-350xm233,-175r133,0r0,350r-133,0r0,-350","w":600},"\u00fe":{"d":"47,185r0,-925r133,0r0,246r2,0v60,-74,134,-80,169,-80v182,0,278,157,278,294v0,164,-121,298,-278,298v-89,0,-136,-38,-171,-71r0,238r-133,0xm172,-278v0,123,99,174,162,174v71,0,162,-60,162,-174v0,-102,-78,-174,-160,-174v-83,0,-164,67,-164,174","w":660},"\u00c3":{"d":"7,0r308,-740r107,0r310,740r-151,0r-79,-191r-265,0r-79,191r-151,0xm367,-547r-84,227r170,0r-84,-227r-2,0xm453,-806v-28,0,-92,-26,-145,-27v-42,0,-68,14,-80,20r-54,-81v52,-39,98,-43,116,-43v37,0,121,29,147,29v29,0,53,-8,76,-23r54,78v-30,24,-64,47,-114,47","w":740},"\u00fd":{"d":"109,185r102,-237r-203,-503r152,0r126,356r134,-356r151,0r-319,740r-143,0xm257,-624r-53,-92r222,-135r57,102","w":580},"\u00c1":{"d":"7,0r308,-740r107,0r310,740r-151,0r-79,-191r-265,0r-79,191r-151,0xm367,-547r-84,227r170,0r-84,-227r-2,0xm302,-794r-53,-92r222,-135r57,102","w":740},"\u00c7":{"d":"308,164r53,0v4,22,23,37,47,37v27,0,46,-20,46,-48v0,-47,-64,-70,-90,-28r-49,-19r42,-97v-184,-31,-323,-194,-323,-382v0,-204,169,-382,383,-382v123,0,278,64,349,226r-156,0v-53,-61,-116,-98,-198,-98v-120,0,-241,108,-241,256v0,139,115,258,246,258v99,0,153,-58,186,-93r159,0v-62,138,-202,227,-354,220r-18,41v65,-11,118,24,118,98v0,64,-46,98,-100,98v-69,0,-100,-58,-100,-87","w":780},"\u00f1":{"d":"54,0r0,-555r123,0r0,48v22,-21,68,-67,152,-67v48,0,121,21,167,77v51,61,51,154,51,197r0,300r-133,0r0,-274v0,-46,0,-178,-112,-178v-24,0,-66,12,-91,49v-23,34,-24,92,-24,139r0,264r-133,0xm383,-636v-28,0,-92,-26,-145,-27v-42,0,-68,14,-80,20r-54,-81v52,-39,98,-43,116,-43v37,0,121,29,147,29v29,0,53,-8,76,-23r54,78v-30,24,-64,47,-114,47","w":600},"\u00f0":{"d":"324,-452v-70,0,-164,59,-164,175v0,105,79,173,163,173v97,0,161,-84,161,-172v0,-101,-78,-176,-160,-176xm311,-617r-151,45r-86,-56r144,-44v-31,-15,-67,-29,-106,-41r150,-41v25,7,56,20,91,40r131,-40r86,60r-132,39v93,78,178,198,178,360v0,202,-143,313,-293,313v-165,0,-296,-136,-296,-295v0,-168,136,-296,296,-296v23,0,42,10,54,9v-19,-18,-40,-36,-66,-53","w":640},"\u00c5":{"d":"7,0r308,-740r107,0r310,740r-151,0r-79,-191r-265,0r-79,191r-151,0xm367,-547r-84,227r170,0r-84,-227r-2,0xm263,-861v0,-60,48,-108,107,-108v60,0,108,48,108,108v0,59,-49,107,-108,107v-58,0,-107,-48,-107,-107xm330,-861v0,22,18,40,40,40v22,0,41,-17,41,-40v0,-23,-18,-41,-41,-41v-22,0,-40,18,-40,41","w":740},"\u03bc":{"d":"544,0r-122,0v-2,-17,4,-42,-2,-56v-22,30,-58,74,-143,74v-45,0,-81,-29,-94,-76r0,250r-133,0r0,-747r133,0r0,283v0,45,0,168,116,168v84,0,112,-79,112,-167r0,-284r133,0r0,555","w":600},"\u00d9":{"d":"55,-740r137,0r0,470v0,37,0,157,128,157v128,0,128,-120,128,-157r0,-470r137,0r0,470v0,60,-8,126,-43,175v-43,60,-120,110,-221,110v-113,0,-188,-63,-220,-106v-24,-32,-46,-88,-46,-179r0,-470xm125,-919r57,-102r222,135r-53,92","w":640},"\u00c8":{"d":"61,0r0,-740r398,0r0,128r-261,0r0,181r250,0r0,128r-250,0r0,175r261,0r0,128r-398,0xm100,-919r57,-102r222,135r-53,92","w":520},"\u0160":{"d":"12,-212r144,0v7,74,56,99,98,99v54,0,102,-37,102,-93v0,-76,-49,-90,-141,-125v-57,-22,-176,-57,-176,-213v0,-118,92,-211,217,-211v86,0,212,60,219,211r-140,0v-6,-66,-46,-83,-83,-83v-43,0,-76,31,-76,75v0,64,48,78,123,103v61,20,194,67,194,228v0,160,-124,236,-240,236v-95,0,-233,-64,-241,-227xm61,-944r145,0r56,64r53,-64r145,0r-146,138r-105,0","w":520},"\u00f5":{"d":"321,18v-165,0,-296,-136,-296,-295v0,-168,137,-297,296,-297v157,0,294,125,294,295v0,182,-140,297,-294,297xm321,-104v97,0,161,-84,161,-172v0,-101,-78,-176,-161,-176v-69,0,-163,59,-163,175v0,105,79,173,163,173xm403,-636v-28,0,-92,-26,-145,-27v-42,0,-68,14,-80,20r-54,-81v52,-39,98,-43,116,-43v37,0,121,29,147,29v29,0,53,-8,76,-23r54,78v-30,24,-64,47,-114,47","w":640},"\u00d1":{"d":"70,0r0,-740r156,0r306,538r2,0r0,-538r137,0r0,740r-153,0r-309,-538r-2,0r0,538r-137,0xm453,-806v-28,0,-92,-26,-145,-27v-42,0,-68,14,-80,20r-54,-81v52,-39,98,-43,116,-43v37,0,121,29,147,29v29,0,53,-8,76,-23r54,78v-30,24,-64,47,-114,47","w":740},"\u00da":{"d":"55,-740r137,0r0,470v0,37,0,157,128,157v128,0,128,-120,128,-157r0,-470r137,0r0,470v0,60,-8,126,-43,175v-43,60,-120,110,-221,110v-113,0,-188,-63,-220,-106v-24,-32,-46,-88,-46,-179r0,-470xm287,-794r-53,-92r222,-135r57,102","w":640},"\u00c2":{"d":"7,0r308,-740r107,0r310,740r-151,0r-79,-191r-265,0r-79,191r-151,0xm367,-547r-84,227r170,0r-84,-227r-2,0xm171,-806r148,-138r105,0r146,138r-145,0r-53,-64r-56,64r-145,0","w":740},"\u00f4":{"d":"321,18v-165,0,-296,-136,-296,-295v0,-168,137,-297,296,-297v157,0,294,125,294,295v0,182,-140,297,-294,297xm321,-104v97,0,161,-84,161,-172v0,-101,-78,-176,-161,-176v-69,0,-163,59,-163,175v0,105,79,173,163,173xm121,-636r148,-138r105,0r146,138r-145,0r-53,-64r-56,64r-145,0","w":640},"\u00ff":{"d":"109,185r102,-237r-203,-503r152,0r126,356r134,-356r151,0r-319,740r-143,0xm118,-636r0,-133r134,0r0,133r-134,0xm329,-636r0,-133r133,0r0,133r-133,0","w":580},"\u00c9":{"d":"61,0r0,-740r398,0r0,128r-261,0r0,181r250,0r0,128r-250,0r0,175r261,0r0,128r-398,0xm192,-794r-53,-92r222,-135r57,102","w":520},"\u00d2":{"d":"33,-368v0,-219,177,-387,387,-387v210,0,387,168,387,387v0,212,-174,383,-387,383v-213,0,-387,-171,-387,-383xm170,-369v0,137,109,256,250,256v141,0,250,-119,250,-256v0,-142,-111,-258,-250,-258v-139,0,-250,116,-250,258xm260,-919r57,-102r222,135r-53,92","w":840},"\u00e2":{"d":"613,-555r0,555r-122,0r0,-69v-42,50,-124,87,-194,87v-143,0,-270,-114,-270,-299v0,-170,124,-293,278,-293v116,0,177,83,186,89r0,-70r122,0xm487,-279v0,-115,-83,-173,-162,-173v-109,0,-165,94,-165,177v0,94,70,171,165,171v92,0,162,-72,162,-175xm131,-636r148,-138r105,0r146,138r-145,0r-53,-64r-56,64r-145,0","w":660},"\u00d7":{"d":"218,-253r-159,-159r82,-82r159,159r159,-159r82,82r-160,159r160,159r-82,82r-159,-160r-159,160r-82,-82","w":600},"\u00f7":{"d":"552,-193r-504,0r0,-120r504,0r0,120xm240,-406r0,-120r120,0r0,120r-120,0xm240,20r0,-120r120,0r0,120r-120,0","w":600},"\u00e7":{"d":"230,164r53,0v4,22,23,37,47,37v27,0,46,-20,46,-48v0,-47,-64,-70,-90,-28r-49,-19r41,-94v-124,-24,-241,-131,-241,-292v0,-170,141,-294,294,-294v70,0,222,32,279,203r-150,0v-16,-28,-47,-81,-129,-81v-81,0,-161,60,-161,174v0,95,67,174,167,174v44,0,88,-21,123,-77r150,0v-46,125,-148,200,-281,199r-17,37v65,-11,118,24,118,98v0,64,-46,98,-100,98v-69,0,-100,-58,-100,-87","w":640},"\u00b2":{"d":"18,-296r0,-81r159,-147v40,-35,49,-57,49,-80v0,-40,-30,-59,-59,-59v-52,0,-59,47,-58,80r-95,0v-9,-87,49,-166,153,-166v96,0,155,74,155,147v0,46,-21,92,-87,150r-80,70r167,0r0,86r-304,0","w":336},"\u00f9":{"d":"411,-555r133,0r0,555r-122,0v-2,-17,4,-42,-2,-56v-22,30,-58,74,-143,74v-101,0,-159,-50,-186,-88v-42,-59,-41,-149,-41,-195r0,-290r133,0r0,283v0,45,0,168,116,168v84,0,112,-79,112,-167r0,-284xm105,-749r57,-102r222,135r-53,92","w":600},"\u00c0":{"d":"7,0r308,-740r107,0r310,740r-151,0r-79,-191r-265,0r-79,191r-151,0xm367,-547r-84,227r170,0r-84,-227r-2,0xm210,-919r57,-102r222,135r-53,92","w":740},"\u00db":{"d":"55,-740r137,0r0,470v0,37,0,157,128,157v128,0,128,-120,128,-157r0,-470r137,0r0,470v0,60,-8,126,-43,175v-43,60,-120,110,-221,110v-113,0,-188,-63,-220,-106v-24,-32,-46,-88,-46,-179r0,-470xm121,-806r148,-138r105,0r146,138r-145,0r-53,-64r-56,64r-145,0","w":640},"\u017e":{"d":"20,0r0,-122r246,-311r-218,0r0,-122r377,0r0,122r-246,311r263,0r0,122r-422,0xm36,-774r145,0r56,64r53,-64r145,0r-146,138r-105,0","w":460},"\u0178":{"d":"241,0r0,-273r-243,-467r150,0r161,340r162,-340r151,0r-244,467r0,273r-137,0xm138,-806r0,-133r134,0r0,133r-134,0xm349,-806r0,-133r133,0r0,133r-133,0","w":620},"\u00c4":{"d":"7,0r308,-740r107,0r310,740r-151,0r-79,-191r-265,0r-79,191r-151,0xm367,-547r-84,227r170,0r-84,-227r-2,0xm198,-806r0,-133r134,0r0,133r-134,0xm409,-806r0,-133r133,0r0,133r-133,0","w":740},"\u00ce":{"d":"72,0r0,-740r137,0r0,740r-137,0xm-59,-806r148,-138r105,0r146,138r-145,0r-53,-64r-56,64r-145,0","w":280},"\u00ef":{"d":"53,0r0,-555r133,0r0,555r-133,0xm-52,-636r0,-133r134,0r0,133r-134,0xm159,-636r0,-133r133,0r0,133r-133,0","w":240},"\u00d3":{"d":"33,-368v0,-219,177,-387,387,-387v210,0,387,168,387,387v0,212,-174,383,-387,383v-213,0,-387,-171,-387,-383xm170,-369v0,137,109,256,250,256v141,0,250,-119,250,-256v0,-142,-111,-258,-250,-258v-139,0,-250,116,-250,258xm352,-794r-53,-92r222,-135r57,102","w":840},"\u00e5":{"d":"613,-555r0,555r-122,0r0,-69v-42,50,-124,87,-194,87v-143,0,-270,-114,-270,-299v0,-170,124,-293,278,-293v116,0,177,83,186,89r0,-70r122,0xm487,-279v0,-115,-83,-173,-162,-173v-109,0,-165,94,-165,177v0,94,70,171,165,171v92,0,162,-72,162,-175xm223,-726v0,-60,48,-108,107,-108v60,0,108,48,108,108v0,59,-49,107,-108,107v-58,0,-107,-48,-107,-107xm290,-726v0,22,18,40,40,40v22,0,41,-17,41,-40v0,-23,-18,-41,-41,-41v-22,0,-40,18,-40,41","w":660},"\u00dd":{"d":"241,0r0,-273r-243,-467r150,0r161,340r162,-340r151,0r-244,467r0,273r-137,0xm277,-794r-53,-92r222,-135r57,102","w":620},"\u2122":{"d":"94,-296r0,-361r-85,0r0,-83r265,0r0,83r-86,0r0,361r-94,0xm333,-296r0,-444r126,0r119,322r118,-322r125,0r0,444r-94,0r0,-306r-2,0r-109,306r-78,0r-109,-306r-2,0r0,306r-94,0","w":1000},"\u00b3":{"d":"41,-627v1,-83,66,-122,126,-122v73,0,128,58,128,122v0,11,0,48,-34,76v60,26,67,91,67,114v-2,190,-311,206,-320,2r96,0v4,47,41,62,65,62v32,0,63,-23,63,-63v0,-40,-34,-74,-99,-67r0,-86v36,2,65,-2,66,-39v0,-25,-13,-35,-34,-35v-27,0,-28,28,-28,36r-96,0","w":336},"\u017d":{"d":"19,-112r283,-500r-268,0r0,-128r428,0r0,119r-281,493r300,0r0,128r-462,0r0,-112xm76,-944r145,0r56,64r53,-64r145,0r-146,138r-105,0","w":500},"\u00be":{"d":"565,-147r99,0v-2,-51,4,-112,-2,-159xm244,0r306,-740r99,0r-307,740r-98,0xm466,-135r212,-309r76,0r0,297r49,0r0,82r-49,0r0,65r-90,0r0,-65r-198,0r0,-70xm51,-627v1,-83,66,-122,126,-122v73,0,128,58,128,122v0,11,0,48,-34,76v60,26,67,91,67,114v-2,190,-311,206,-320,2r96,0v4,47,41,62,65,62v32,0,63,-23,63,-63v0,-40,-34,-74,-99,-67r0,-86v36,2,65,-2,66,-39v0,-25,-13,-35,-34,-35v-27,0,-28,28,-28,36r-96,0","w":840},"\u20ac":{"d":"94,-480v4,-154,94,-276,252,-275v116,0,194,67,215,104r-43,121v-25,-58,-77,-99,-172,-99v-85,0,-120,77,-120,149r273,0r-34,95r-239,0r0,55r219,0r-35,95r-181,0v10,59,42,124,117,124v65,0,133,-27,159,-72r0,146v-14,15,-71,52,-159,52v-158,0,-240,-114,-251,-250r-91,0r34,-95r55,0r0,-55r-89,0r34,-95r56,0"},"\u00f2":{"d":"321,18v-165,0,-296,-136,-296,-295v0,-168,137,-297,296,-297v157,0,294,125,294,295v0,182,-140,297,-294,297xm321,-104v97,0,161,-84,161,-172v0,-101,-78,-176,-161,-176v-69,0,-163,59,-163,175v0,105,79,173,163,173xm160,-749r57,-102r222,135r-53,92","w":640},"\u00fc":{"d":"411,-555r133,0r0,555r-122,0v-2,-17,4,-42,-2,-56v-22,30,-58,74,-143,74v-101,0,-159,-50,-186,-88v-42,-59,-41,-149,-41,-195r0,-290r133,0r0,283v0,45,0,168,116,168v84,0,112,-79,112,-167r0,-284xm128,-636r0,-133r134,0r0,133r-134,0xm339,-636r0,-133r133,0r0,133r-133,0","w":600},"\u00eb":{"d":"602,-218r-431,0v6,36,58,114,153,114v59,0,103,-25,128,-71r140,0v-32,100,-137,193,-268,193v-169,0,-293,-132,-293,-294v0,-157,116,-298,292,-298v204,0,316,174,279,356xm167,-325r307,0v-15,-89,-79,-127,-150,-127v-54,0,-132,24,-157,127xm148,-636r0,-133r134,0r0,133r-134,0xm359,-636r0,-133r133,0r0,133r-133,0","w":640},"\u00b1":{"d":"240,-400r0,-156r120,0r0,156r192,0r0,120r-192,0r0,150r-120,0r0,-150r-192,0r0,-120r192,0xm48,62r0,-120r504,0r0,120r-504,0","w":600},"\u00e1":{"d":"613,-555r0,555r-122,0r0,-69v-42,50,-124,87,-194,87v-143,0,-270,-114,-270,-299v0,-170,124,-293,278,-293v116,0,177,83,186,89r0,-70r122,0xm487,-279v0,-115,-83,-173,-162,-173v-109,0,-165,94,-165,177v0,94,70,171,165,171v92,0,162,-72,162,-175xm262,-624r-53,-92r222,-135r57,102","w":660},"\u00cf":{"d":"72,0r0,-740r137,0r0,740r-137,0xm-32,-806r0,-133r134,0r0,133r-134,0xm179,-806r0,-133r133,0r0,133r-133,0","w":280},"\u00ec":{"d":"53,0r0,-555r133,0r0,555r-133,0xm-65,-749r57,-102r222,135r-53,92","w":240},"\u00cd":{"d":"72,0r0,-740r137,0r0,740r-137,0xm97,-794r-53,-92r222,-135r57,102","w":280},"\u00a9":{"d":"568,-447r-90,0v-50,-145,-227,-72,-227,76v0,101,51,153,125,153v47,0,83,-15,102,-77r90,0v-9,80,-85,152,-192,152v-131,0,-215,-98,-215,-228v0,-130,84,-228,215,-228v107,0,183,72,192,152xm371,-752v212,0,381,173,381,382v0,212,-173,382,-381,382v-214,0,-383,-173,-383,-382v0,-208,168,-382,383,-382xm370,-666v-166,0,-292,135,-292,296v0,163,129,296,292,296v162,0,292,-132,292,-296v0,-161,-127,-296,-292,-296","w":740},"\u00e4":{"d":"613,-555r0,555r-122,0r0,-69v-42,50,-124,87,-194,87v-143,0,-270,-114,-270,-299v0,-170,124,-293,278,-293v116,0,177,83,186,89r0,-70r122,0xm487,-279v0,-115,-83,-173,-162,-173v-109,0,-165,94,-165,177v0,94,70,171,165,171v92,0,162,-72,162,-175xm158,-636r0,-133r134,0r0,133r-134,0xm369,-636r0,-133r133,0r0,133r-133,0","w":660},"\u00e0":{"d":"613,-555r0,555r-122,0r0,-69v-42,50,-124,87,-194,87v-143,0,-270,-114,-270,-299v0,-170,124,-293,278,-293v116,0,177,83,186,89r0,-70r122,0xm487,-279v0,-115,-83,-173,-162,-173v-109,0,-165,94,-165,177v0,94,70,171,165,171v92,0,162,-72,162,-175xm170,-749r57,-102r222,135r-53,92","w":660},"\u0161":{"d":"406,-404r-130,0v-9,-44,-39,-48,-53,-48v-33,0,-51,25,-51,48v0,32,23,40,94,62v69,22,155,54,155,166v0,202,-244,256,-360,121v-35,-41,-39,-86,-42,-120r136,0v6,25,18,71,73,71v43,0,60,-33,60,-56v0,-41,-30,-51,-125,-83v-63,-21,-124,-68,-124,-159v0,-222,355,-232,367,-2xm21,-774r145,0r56,64r53,-64r145,0r-146,138r-105,0","w":440},"\u00cc":{"d":"72,0r0,-740r137,0r0,740r-137,0xm-45,-919r57,-102r222,135r-53,92","w":280},"\u00d4":{"d":"33,-368v0,-219,177,-387,387,-387v210,0,387,168,387,387v0,212,-174,383,-387,383v-213,0,-387,-171,-387,-383xm170,-369v0,137,109,256,250,256v141,0,250,-119,250,-256v0,-142,-111,-258,-250,-258v-139,0,-250,116,-250,258xm221,-806r148,-138r105,0r146,138r-145,0r-53,-64r-56,64r-145,0","w":840},"\u00de":{"d":"72,0r0,-740r137,0r0,140v111,1,182,-12,266,59v95,80,95,260,0,340v-84,71,-155,58,-266,59r0,142r-137,0xm209,-472r0,202r44,0v59,0,155,-4,155,-101v0,-116,-110,-99,-199,-101"},"\u00e8":{"d":"602,-218r-431,0v6,36,58,114,153,114v59,0,103,-25,128,-71r140,0v-32,100,-137,193,-268,193v-169,0,-293,-132,-293,-294v0,-157,116,-298,292,-298v204,0,316,174,279,356xm167,-325r307,0v-15,-89,-79,-127,-150,-127v-54,0,-132,24,-157,127xm160,-749r57,-102r222,135r-53,92","w":640},"\u00e3":{"d":"613,-555r0,555r-122,0r0,-69v-42,50,-124,87,-194,87v-143,0,-270,-114,-270,-299v0,-170,124,-293,278,-293v116,0,177,83,186,89r0,-70r122,0xm487,-279v0,-115,-83,-173,-162,-173v-109,0,-165,94,-165,177v0,94,70,171,165,171v92,0,162,-72,162,-175xm413,-636v-28,0,-92,-26,-145,-27v-42,0,-68,14,-80,20r-54,-81v52,-39,98,-43,116,-43v37,0,121,29,147,29v29,0,53,-8,76,-23r54,78v-30,24,-64,47,-114,47","w":660},"\u00dc":{"d":"55,-740r137,0r0,470v0,37,0,157,128,157v128,0,128,-120,128,-157r0,-470r137,0r0,470v0,60,-8,126,-43,175v-43,60,-120,110,-221,110v-113,0,-188,-63,-220,-106v-24,-32,-46,-88,-46,-179r0,-470xm148,-806r0,-133r134,0r0,133r-134,0xm359,-806r0,-133r133,0r0,133r-133,0","w":640},"\u00ea":{"d":"602,-218r-431,0v6,36,58,114,153,114v59,0,103,-25,128,-71r140,0v-32,100,-137,193,-268,193v-169,0,-293,-132,-293,-294v0,-157,116,-298,292,-298v204,0,316,174,279,356xm167,-325r307,0v-15,-89,-79,-127,-150,-127v-54,0,-132,24,-157,127xm121,-636r148,-138r105,0r146,138r-145,0r-53,-64r-56,64r-145,0","w":640},"\u00a0":{"w":280}}});


var popupBox, signupForm;
Cufon.replace('.font-replace, h1, h2, .homepage-box h3',{'hover':true});

if($.browser.msie && $.browser.version<=6){ $(function(){ Cufon.now(); }); };

function showPopupBox(hdr,txt) {
	var win = $(window), winW = win.width(), winH = win.height(), winScrollTop = win.scrollTop(), winScrollLeft = win.scrollLeft();
	popupBox
		.find('h3').text(hdr).end().find('p').text(txt) //set the popup content
		.end().css({ 'left':winScrollLeft+(winW/2)-(popupBox.width()/2),'top':winScrollTop+(winH/2)-(popupBox.height()/2) }) //center align the popup
		.show().delay(3000)
		.fadeOut('slow')//show the popup then after 5 seconds fade it out
	;
	if (Cufon) Cufon.refresh(); // reset cufon characters
}

function submitSignupform(ev){
	var filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
	if (!popupBox)
		popupBox = $('<div id="popup-box" />').append('<h3 />').append('<p />').prependTo('body'); //build the popup box
	
	if (signupForm.find('.input-text').val().match(filter)) {
		$.getJSON('./ajax-signup-form-processing.html',{'email':signupForm.find('.input-text').val()},processSignupform);
	} else {
		showPopupBox('Sorry!','The email address you provided isn\'t in a valid format.');
		signupForm.find('.input-text').focus();
	};
	ev.preventDefault();	
};

function processSignupform(signup) {
	switch (true) {
		case signup['invalid']:
			showPopupBox('Sorry!','The email address you provided isn\'t in a valid format.');
			signupForm.find('.input-text').focus();
			break;
		case signup['exists']:
			showPopupBox('Sorry!','Your email address appears to already exist in our database.');
			signupForm.find('.input-text').focus();
			break;
		case signup['complete']:
			showPopupBox('Thanks!','Your email address: '+signupForm.find('.input-text').val()+' has been added to our mailing list.');
			signupForm.find('.input-text').val('');
			break;
		default:
			showPopupBox('Sorry!','There was a problem processing your details.');
			signupForm.find('.input-text').focus();
	};
};

$(function(){
	signupForm = $('#signupform');
	signupForm
		.find('.input-submit').click(submitSignupform)
		.end().find('.input-text').keyup(function(ev){
			if (ev.which == 13) submitSignupform(ev);
			ev.preventDefault();
		})
	;
});
