/*
 * jQuery 1.2.3 - New Wave Javascript
 *
 * Copyright (c) 2008 John Resig (jquery.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * $Date: 2008-02-06 00:21:25 -0500 (Wed, 06 Feb 2008) $
 * $Rev: 4663 $
 */
(function(){if(window.jQuery)var _jQuery=window.jQuery;var jQuery=window.jQuery=function(selector,context){return new jQuery.prototype.init(selector,context);};if(window.$)var _$=window.$;window.$=jQuery;var quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/;var isSimple=/^.[^:#\[\.]*$/;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;return this;}else if(typeof selector=="string"){var match=quickExpr.exec(selector);if(match&&(match[1]||!context)){if(match[1])selector=jQuery.clean([match[1]],context);else{var elem=document.getElementById(match[3]);if(elem)if(elem.id!=match[3])return jQuery().find(selector);else{this[0]=elem;this.length=1;return this;}else
selector=[];}}else
return new jQuery(context).find(selector);}else if(jQuery.isFunction(selector))return new jQuery(document)[jQuery.fn.ready?"ready":"load"](selector);return this.setArray(selector.constructor==Array&&selector||(selector.jquery||selector.length&&selector!=window&&!selector.nodeType&&selector[0]!=undefined&&selector[0].nodeType)&&jQuery.makeArray(selector)||[selector]);},jquery:"1.2.3",size:function(){return this.length;},length:0,get:function(num){return num==undefined?jQuery.makeArray(this):this[num];},pushStack:function(elems){var ret=jQuery(elems);ret.prevObject=this;return ret;},setArray:function(elems){this.length=0;Array.prototype.push.apply(this,elems);return this;},each:function(callback,args){return jQuery.each(this,callback,args);},index:function(elem){var ret=-1;this.each(function(i){if(this==elem)ret=i;});return ret;},attr:function(name,value,type){var options=name;if(name.constructor==String)if(value==undefined)return this.length&&jQuery[type||"attr"](this[0],name)||undefined;else{options={};options[name]=value;}return this.each(function(i){for(name in options)jQuery.attr(type?this.style:this,name,jQuery.prop(this,options[name],type,i,name));});},css:function(key,value){if((key=='width'||key=='height')&&parseFloat(value)<0)value=undefined;return this.attr(key,value,"curCSS");},text:function(text){if(typeof text!="object"&&text!=null)return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(text));var ret="";jQuery.each(text||this,function(){jQuery.each(this.childNodes,function(){if(this.nodeType!=8)ret+=this.nodeType!=1?this.nodeValue:jQuery.fn.text([this]);});});return ret;},wrapAll:function(html){if(this[0])jQuery(html,this[0].ownerDocument).clone().insertBefore(this[0]).map(function(){var elem=this;while(elem.firstChild)elem=elem.firstChild;return elem;}).append(this);return this;},wrapInner:function(html){return this.each(function(){jQuery(this).contents().wrapAll(html);});},wrap:function(html){return this.each(function(){jQuery(this).wrapAll(html);});},append:function(){return this.domManip(arguments,true,false,function(elem){if(this.nodeType==1)this.appendChild(elem);});},prepend:function(){return this.domManip(arguments,true,true,function(elem){if(this.nodeType==1)this.insertBefore(elem,this.firstChild);});},before:function(){return this.domManip(arguments,false,false,function(elem){this.parentNode.insertBefore(elem,this);});},after:function(){return this.domManip(arguments,false,true,function(elem){this.parentNode.insertBefore(elem,this.nextSibling);});},end:function(){return this.prevObject||jQuery([]);},find:function(selector){var elems=jQuery.map(this,function(elem){return jQuery.find(selector,elem);});return this.pushStack(/[^+>] [^+>]/.test(selector)||selector.indexOf("..")>-1?jQuery.unique(elems):elems);},clone:function(events){var ret=this.map(function(){if(jQuery.browser.msie&&!jQuery.isXMLDoc(this)){var clone=this.cloneNode(true),container=document.createElement("div");container.appendChild(clone);return jQuery.clean([container.innerHTML])[0];}else
return this.cloneNode(true);});var clone=ret.find("*").andSelf().each(function(){if(this[expando]!=undefined)this[expando]=null;});if(events===true)this.find("*").andSelf().each(function(i){if(this.nodeType==3)return;var events=jQuery.data(this,"events");for(var type in events)for(var handler in events[type])jQuery.event.add(clone[i],type,events[type][handler],events[type][handler].data);});return ret;},filter:function(selector){return this.pushStack(jQuery.isFunction(selector)&&jQuery.grep(this,function(elem,i){return selector.call(elem,i);})||jQuery.multiFilter(selector,this));},not:function(selector){if(selector.constructor==String)if(isSimple.test(selector))return this.pushStack(jQuery.multiFilter(selector,this,true));else
selector=jQuery.multiFilter(selector,this);var isArrayLike=selector.length&&selector[selector.length-1]!==undefined&&!selector.nodeType;return this.filter(function(){return isArrayLike?jQuery.inArray(this,selector)<0:this!=selector;});},add:function(selector){return!selector?this:this.pushStack(jQuery.merge(this.get(),selector.constructor==String?jQuery(selector).get():selector.length!=undefined&&(!selector.nodeName||jQuery.nodeName(selector,"form"))?selector:[selector]));},is:function(selector){return selector?jQuery.multiFilter(selector,this).length>0:false;},hasClass:function(selector){return this.is("."+selector);},val:function(value){if(value==undefined){if(this.length){var elem=this[0];if(jQuery.nodeName(elem,"select")){var index=elem.selectedIndex,values=[],options=elem.options,one=elem.type=="select-one";if(index<0)return null;for(var i=one?index:0,max=one?index+1:options.length;i<max;i++){var option=options[i];if(option.selected){value=jQuery.browser.msie&&!option.attributes.value.specified?option.text:option.value;if(one)return value;values.push(value);}}return values;}else
return(this[0].value||"").replace(/\r/g,"");}return undefined;}return this.each(function(){if(this.nodeType!=1)return;if(value.constructor==Array&&/radio|checkbox/.test(this.type))this.checked=(jQuery.inArray(this.value,value)>=0||jQuery.inArray(this.name,value)>=0);else if(jQuery.nodeName(this,"select")){var values=value.constructor==Array?value:[value];jQuery("option",this).each(function(){this.selected=(jQuery.inArray(this.value,values)>=0||jQuery.inArray(this.text,values)>=0);});if(!values.length)this.selectedIndex=-1;}else
this.value=value;});},html:function(value){return value==undefined?(this.length?this[0].innerHTML:null):this.empty().append(value);},replaceWith:function(value){return this.after(value).remove();},eq:function(i){return this.slice(i,i+1);},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments));},map:function(callback){return this.pushStack(jQuery.map(this,function(elem,i){return callback.call(elem,i,elem);}));},andSelf:function(){return this.add(this.prevObject);},data:function(key,value){var parts=key.split(".");parts[1]=parts[1]?"."+parts[1]:"";if(value==null){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data==undefined&&this.length)data=jQuery.data(this[0],key);return data==null&&parts[1]?this.data(parts[0]):data;}else
return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value);});},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});},domManip:function(args,table,reverse,callback){var clone=this.length>1,elems;return this.each(function(){if(!elems){elems=jQuery.clean(args,this.ownerDocument);if(reverse)elems.reverse();}var obj=this;if(table&&jQuery.nodeName(this,"table")&&jQuery.nodeName(elems[0],"tr"))obj=this.getElementsByTagName("tbody")[0]||this.appendChild(this.ownerDocument.createElement("tbody"));var scripts=jQuery([]);jQuery.each(elems,function(){var elem=clone?jQuery(this).clone(true)[0]:this;if(jQuery.nodeName(elem,"script")){scripts=scripts.add(elem);}else{if(elem.nodeType==1)scripts=scripts.add(jQuery("script",elem).remove());callback.call(obj,elem);}});scripts.each(evalScript);});}};jQuery.prototype.init.prototype=jQuery.prototype;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);}jQuery.extend=jQuery.fn.extend=function(){var target=arguments[0]||{},i=1,length=arguments.length,deep=false,options;if(target.constructor==Boolean){deep=target;target=arguments[1]||{};i=2;}if(typeof target!="object"&&typeof target!="function")target={};if(length==1){target=this;i=0;}for(;i<length;i++)if((options=arguments[i])!=null)for(var name in options){if(target===options[name])continue;if(deep&&options[name]&&typeof options[name]=="object"&&target[name]&&!options[name].nodeType)target[name]=jQuery.extend(target[name],options[name]);else if(options[name]!=undefined)target[name]=options[name];}return target;};var expando="jQuery"+(new Date()).getTime(),uuid=0,windowData={};var exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i;jQuery.extend({noConflict:function(deep){window.$=_$;if(deep)window.jQuery=_jQuery;return jQuery;},isFunction:function(fn){return!!fn&&typeof fn!="string"&&!fn.nodeName&&fn.constructor!=Array&&/function/i.test(fn+"");},isXMLDoc:function(elem){return elem.documentElement&&!elem.body||elem.tagName&&elem.ownerDocument&&!elem.ownerDocument.body;},globalEval:function(data){data=jQuery.trim(data);if(data){var head=document.getElementsByTagName("head")[0]||document.documentElement,script=document.createElement("script");script.type="text/javascript";if(jQuery.browser.msie)script.text=data;else
script.appendChild(document.createTextNode(data));head.appendChild(script);head.removeChild(script);}},nodeName:function(elem,name){return elem.nodeName&&elem.nodeName.toUpperCase()==name.toUpperCase();},cache:{},data:function(elem,name,data){elem=elem==window?windowData:elem;var id=elem[expando];if(!id)id=elem[expando]=++uuid;if(name&&!jQuery.cache[id])jQuery.cache[id]={};if(data!=undefined)jQuery.cache[id][name]=data;return name?jQuery.cache[id][name]:id;},removeData:function(elem,name){elem=elem==window?windowData:elem;var id=elem[expando];if(name){if(jQuery.cache[id]){delete jQuery.cache[id][name];name="";for(name in jQuery.cache[id])break;if(!name)jQuery.removeData(elem);}}else{try{delete elem[expando];}catch(e){if(elem.removeAttribute)elem.removeAttribute(expando);}delete jQuery.cache[id];}},each:function(object,callback,args){if(args){if(object.length==undefined){for(var name in object)if(callback.apply(object[name],args)===false)break;}else
for(var i=0,length=object.length;i<length;i++)if(callback.apply(object[i],args)===false)break;}else{if(object.length==undefined){for(var name in object)if(callback.call(object[name],name,object[name])===false)break;}else
for(var i=0,length=object.length,value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}}return object;},prop:function(elem,value,type,i,name){if(jQuery.isFunction(value))value=value.call(elem,i);return value&&value.constructor==Number&&type=="curCSS"&&!exclude.test(name)?value+"px":value;},className:{add:function(elem,classNames){jQuery.each((classNames||"").split(/\s+/),function(i,className){if(elem.nodeType==1&&!jQuery.className.has(elem.className,className))elem.className+=(elem.className?" ":"")+className;});},remove:function(elem,classNames){if(elem.nodeType==1)elem.className=classNames!=undefined?jQuery.grep(elem.className.split(/\s+/),function(className){return!jQuery.className.has(classNames,className);}).join(" "):"";},has:function(elem,className){return jQuery.inArray(className,(elem.className||elem).toString().split(/\s+/))>-1;}},swap:function(elem,options,callback){var old={};for(var name in options){old[name]=elem.style[name];elem.style[name]=options[name];}callback.call(elem);for(var name in options)elem.style[name]=old[name];},css:function(elem,name,force){if(name=="width"||name=="height"){var val,props={position:"absolute",visibility:"hidden",display:"block"},which=name=="width"?["Left","Right"]:["Top","Bottom"];function getWH(){val=name=="width"?elem.offsetWidth:elem.offsetHeight;var padding=0,border=0;jQuery.each(which,function(){padding+=parseFloat(jQuery.curCSS(elem,"padding"+this,true))||0;border+=parseFloat(jQuery.curCSS(elem,"border"+this+"Width",true))||0;});val-=Math.round(padding+border);}if(jQuery(elem).is(":visible"))getWH();else
jQuery.swap(elem,props,getWH);return Math.max(0,val);}return jQuery.curCSS(elem,name,force);},curCSS:function(elem,name,force){var ret;function color(elem){if(!jQuery.browser.safari)return false;var ret=document.defaultView.getComputedStyle(elem,null);return!ret||ret.getPropertyValue("color")=="";}if(name=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(elem.style,"opacity");return ret==""?"1":ret;}if(jQuery.browser.opera&&name=="display"){var save=elem.style.outline;elem.style.outline="0 solid black";elem.style.outline=save;}if(name.match(/float/i))name=styleFloat;if(!force&&elem.style&&elem.style[name])ret=elem.style[name];else if(document.defaultView&&document.defaultView.getComputedStyle){if(name.match(/float/i))name="float";name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var getComputedStyle=document.defaultView.getComputedStyle(elem,null);if(getComputedStyle&&!color(elem))ret=getComputedStyle.getPropertyValue(name);else{var swap=[],stack=[];for(var a=elem;a&&color(a);a=a.parentNode)stack.unshift(a);for(var i=0;i<stack.length;i++)if(color(stack[i])){swap[i]=stack[i].style.display;stack[i].style.display="block";}ret=name=="display"&&swap[stack.length-1]!=null?"none":(getComputedStyle&&getComputedStyle.getPropertyValue(name))||"";for(var i=0;i<swap.length;i++)if(swap[i]!=null)stack[i].style.display=swap[i];}if(name=="opacity"&&ret=="")ret="1";}else if(elem.currentStyle){var camelCase=name.replace(/\-(\w)/g,function(all,letter){return letter.toUpperCase();});ret=elem.currentStyle[name]||elem.currentStyle[camelCase];if(!/^\d+(px)?$/i.test(ret)&&/^\d/.test(ret)){var style=elem.style.left,runtimeStyle=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;elem.style.left=ret||0;ret=elem.style.pixelLeft+"px";elem.style.left=style;elem.runtimeStyle.left=runtimeStyle;}}return ret;},clean:function(elems,context){var ret=[];context=context||document;if(typeof context.createElement=='undefined')context=context.ownerDocument||context[0]&&context[0].ownerDocument||document;jQuery.each(elems,function(i,elem){if(!elem)return;if(elem.constructor==Number)elem=elem.toString();if(typeof elem=="string"){elem=elem.replace(/(<(\w+)[^>]*?)\/>/g,function(all,front,tag){return tag.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?all:front+"></"+tag+">";});var tags=jQuery.trim(elem).toLowerCase(),div=context.createElement("div");var wrap=!tags.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!tags.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||tags.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!tags.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!tags.indexOf("<td")||!tags.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!tags.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||jQuery.browser.msie&&[1,"div<div>","</div>"]||[0,"",""];div.innerHTML=wrap[1]+elem+wrap[2];while(wrap[0]--)div=div.lastChild;if(jQuery.browser.msie){var tbody=!tags.indexOf("<table")&&tags.indexOf("<tbody")<0?div.firstChild&&div.firstChild.childNodes:wrap[1]=="<table>"&&tags.indexOf("<tbody")<0?div.childNodes:[];for(var j=tbody.length-1;j>=0;--j)if(jQuery.nodeName(tbody[j],"tbody")&&!tbody[j].childNodes.length)tbody[j].parentNode.removeChild(tbody[j]);if(/^\s/.test(elem))div.insertBefore(context.createTextNode(elem.match(/^\s*/)[0]),div.firstChild);}elem=jQuery.makeArray(div.childNodes);}if(elem.length===0&&(!jQuery.nodeName(elem,"form")&&!jQuery.nodeName(elem,"select")))return;if(elem[0]==undefined||jQuery.nodeName(elem,"form")||elem.options)ret.push(elem);else
ret=jQuery.merge(ret,elem);});return ret;},attr:function(elem,name,value){if(!elem||elem.nodeType==3||elem.nodeType==8)return undefined;var fix=jQuery.isXMLDoc(elem)?{}:jQuery.props;if(name=="selected"&&jQuery.browser.safari)elem.parentNode.selectedIndex;if(fix[name]){if(value!=undefined)elem[fix[name]]=value;return elem[fix[name]];}else if(jQuery.browser.msie&&name=="style")return jQuery.attr(elem.style,"cssText",value);else if(value==undefined&&jQuery.browser.msie&&jQuery.nodeName(elem,"form")&&(name=="action"||name=="method"))return elem.getAttributeNode(name).nodeValue;else if(elem.tagName){if(value!=undefined){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode)throw"type property can't be changed";elem.setAttribute(name,""+value);}if(jQuery.browser.msie&&/href|src/.test(name)&&!jQuery.isXMLDoc(elem))return elem.getAttribute(name,2);return elem.getAttribute(name);}else{if(name=="opacity"&&jQuery.browser.msie){if(value!=undefined){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+(parseFloat(value).toString()=="NaN"?"":"alpha(opacity="+value*100+")");}return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100).toString():"";}name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(value!=undefined)elem[name]=value;return elem[name];}},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"");},makeArray:function(array){var ret=[];if(typeof array!="array")for(var i=0,length=array.length;i<length;i++)ret.push(array[i]);else
ret=array.slice(0);return ret;},inArray:function(elem,array){for(var i=0,length=array.length;i<length;i++)if(array[i]==elem)return i;return-1;},merge:function(first,second){if(jQuery.browser.msie){for(var i=0;second[i];i++)if(second[i].nodeType!=8)first.push(second[i]);}else
for(var i=0;second[i];i++)first.push(second[i]);return first;},unique:function(array){var ret=[],done={};try{for(var i=0,length=array.length;i<length;i++){var id=jQuery.data(array[i]);if(!done[id]){done[id]=true;ret.push(array[i]);}}}catch(e){ret=array;}return ret;},grep:function(elems,callback,inv){var ret=[];for(var i=0,length=elems.length;i<length;i++)if(!inv&&callback(elems[i],i)||inv&&!callback(elems[i],i))ret.push(elems[i]);return ret;},map:function(elems,callback){var ret=[];for(var i=0,length=elems.length;i<length;i++){var value=callback(elems[i],i);if(value!==null&&value!=undefined){if(value.constructor!=Array)value=[value];ret=ret.concat(value);}}return ret;}});var userAgent=navigator.userAgent.toLowerCase();jQuery.browser={version:(userAgent.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[])[1],safari:/webkit/.test(userAgent),opera:/opera/.test(userAgent),msie:/msie/.test(userAgent)&&!/opera/.test(userAgent),mozilla:/mozilla/.test(userAgent)&&!/(compatible|webkit)/.test(userAgent)};var styleFloat=jQuery.browser.msie?"styleFloat":"cssFloat";jQuery.extend({boxModel:!jQuery.browser.msie||document.compatMode=="CSS1Compat",props:{"for":"htmlFor","class":"className","float":styleFloat,cssFloat:styleFloat,styleFloat:styleFloat,innerHTML:"innerHTML",className:"className",value:"value",disabled:"disabled",checked:"checked",readonly:"readOnly",selected:"selected",maxlength:"maxLength",selectedIndex:"selectedIndex",defaultValue:"defaultValue",tagName:"tagName",nodeName:"nodeName"}});jQuery.each({parent:function(elem){return elem.parentNode;},parents:function(elem){return jQuery.dir(elem,"parentNode");},next:function(elem){return jQuery.nth(elem,2,"nextSibling");},prev:function(elem){return jQuery.nth(elem,2,"previousSibling");},nextAll:function(elem){return jQuery.dir(elem,"nextSibling");},prevAll:function(elem){return jQuery.dir(elem,"previousSibling");},siblings:function(elem){return jQuery.sibling(elem.parentNode.firstChild,elem);},children:function(elem){return jQuery.sibling(elem.firstChild);},contents:function(elem){return jQuery.nodeName(elem,"iframe")?elem.contentDocument||elem.contentWindow.document:jQuery.makeArray(elem.childNodes);}},function(name,fn){jQuery.fn[name]=function(selector){var ret=jQuery.map(this,fn);if(selector&&typeof selector=="string")ret=jQuery.multiFilter(selector,ret);return this.pushStack(jQuery.unique(ret));};});jQuery.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(name,original){jQuery.fn[name]=function(){var args=arguments;return this.each(function(){for(var i=0,length=args.length;i<length;i++)jQuery(args[i])[original](this);});};});jQuery.each({removeAttr:function(name){jQuery.attr(this,name,"");if(this.nodeType==1)this.removeAttribute(name);},addClass:function(classNames){jQuery.className.add(this,classNames);},removeClass:function(classNames){jQuery.className.remove(this,classNames);},toggleClass:function(classNames){jQuery.className[jQuery.className.has(this,classNames)?"remove":"add"](this,classNames);},remove:function(selector){if(!selector||jQuery.filter(selector,[this]).r.length){jQuery("*",this).add(this).each(function(){jQuery.event.remove(this);jQuery.removeData(this);});if(this.parentNode)this.parentNode.removeChild(this);}},empty:function(){jQuery(">*",this).remove();while(this.firstChild)this.removeChild(this.firstChild);}},function(name,fn){jQuery.fn[name]=function(){return this.each(fn,arguments);};});jQuery.each(["Height","Width"],function(i,name){var type=name.toLowerCase();jQuery.fn[type]=function(size){return this[0]==window?jQuery.browser.opera&&document.body["client"+name]||jQuery.browser.safari&&window["inner"+name]||document.compatMode=="CSS1Compat"&&document.documentElement["client"+name]||document.body["client"+name]:this[0]==document?Math.max(Math.max(document.body["scroll"+name],document.documentElement["scroll"+name]),Math.max(document.body["offset"+name],document.documentElement["offset"+name])):size==undefined?(this.length?jQuery.css(this[0],type):null):this.css(type,size.constructor==String?size:size+"px");};});var chars=jQuery.browser.safari&&parseInt(jQuery.browser.version)<417?"(?:[\\w*_-]|\\\\.)":"(?:[\\w\u0128-\uFFFF*_-]|\\\\.)",quickChild=new RegExp("^>\\s*("+chars+"+)"),quickID=new RegExp("^("+chars+"+)(#)("+chars+"+)"),quickClass=new RegExp("^([#.]?)("+chars+"*)");jQuery.extend({expr:{"":function(a,i,m){return m[2]=="*"||jQuery.nodeName(a,m[2]);},"#":function(a,i,m){return a.getAttribute("id")==m[2];},":":{lt:function(a,i,m){return i<m[3]-0;},gt:function(a,i,m){return i>m[3]-0;},nth:function(a,i,m){return m[3]-0==i;},eq:function(a,i,m){return m[3]-0==i;},first:function(a,i){return i==0;},last:function(a,i,m,r){return i==r.length-1;},even:function(a,i){return i%2==0;},odd:function(a,i){return i%2;},"first-child":function(a){return a.parentNode.getElementsByTagName("*")[0]==a;},"last-child":function(a){return jQuery.nth(a.parentNode.lastChild,1,"previousSibling")==a;},"only-child":function(a){return!jQuery.nth(a.parentNode.lastChild,2,"previousSibling");},parent:function(a){return a.firstChild;},empty:function(a){return!a.firstChild;},contains:function(a,i,m){return(a.textContent||a.innerText||jQuery(a).text()||"").indexOf(m[3])>=0;},visible:function(a){return"hidden"!=a.type&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden";},hidden:function(a){return"hidden"==a.type||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden";},enabled:function(a){return!a.disabled;},disabled:function(a){return a.disabled;},checked:function(a){return a.checked;},selected:function(a){return a.selected||jQuery.attr(a,"selected");},text:function(a){return"text"==a.type;},radio:function(a){return"radio"==a.type;},checkbox:function(a){return"checkbox"==a.type;},file:function(a){return"file"==a.type;},password:function(a){return"password"==a.type;},submit:function(a){return"submit"==a.type;},image:function(a){return"image"==a.type;},reset:function(a){return"reset"==a.type;},button:function(a){return"button"==a.type||jQuery.nodeName(a,"button");},input:function(a){return/input|select|textarea|button/i.test(a.nodeName);},has:function(a,i,m){return jQuery.find(m[3],a).length;},header:function(a){return/h\d/i.test(a.nodeName);},animated:function(a){return jQuery.grep(jQuery.timers,function(fn){return a==fn.elem;}).length;}}},parse:[/^(\[) *@?([\w-]+) *([!*$^~=]*) *('?"?)(.*?)\4 *\]/,/^(:)([\w-]+)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/,new RegExp("^([:.#]*)("+chars+"+)")],multiFilter:function(expr,elems,not){var old,cur=[];while(expr&&expr!=old){old=expr;var f=jQuery.filter(expr,elems,not);expr=f.t.replace(/^\s*,\s*/,"");cur=not?elems=f.r:jQuery.merge(cur,f.r);}return cur;},find:function(t,context){if(typeof t!="string")return[t];if(context&&context.nodeType!=1&&context.nodeType!=9)return[];context=context||document;var ret=[context],done=[],last,nodeName;while(t&&last!=t){var r=[];last=t;t=jQuery.trim(t);var foundToken=false;var re=quickChild;var m=re.exec(t);if(m){nodeName=m[1].toUpperCase();for(var i=0;ret[i];i++)for(var c=ret[i].firstChild;c;c=c.nextSibling)if(c.nodeType==1&&(nodeName=="*"||c.nodeName.toUpperCase()==nodeName))r.push(c);ret=r;t=t.replace(re,"");if(t.indexOf(" ")==0)continue;foundToken=true;}else{re=/^([>+~])\s*(\w*)/i;if((m=re.exec(t))!=null){r=[];var merge={};nodeName=m[2].toUpperCase();m=m[1];for(var j=0,rl=ret.length;j<rl;j++){var n=m=="~"||m=="+"?ret[j].nextSibling:ret[j].firstChild;for(;n;n=n.nextSibling)if(n.nodeType==1){var id=jQuery.data(n);if(m=="~"&&merge[id])break;if(!nodeName||n.nodeName.toUpperCase()==nodeName){if(m=="~")merge[id]=true;r.push(n);}if(m=="+")break;}}ret=r;t=jQuery.trim(t.replace(re,""));foundToken=true;}}if(t&&!foundToken){if(!t.indexOf(",")){if(context==ret[0])ret.shift();done=jQuery.merge(done,ret);r=ret=[context];t=" "+t.substr(1,t.length);}else{var re2=quickID;var m=re2.exec(t);if(m){m=[0,m[2],m[3],m[1]];}else{re2=quickClass;m=re2.exec(t);}m[2]=m[2].replace(/\\/g,"");var elem=ret[ret.length-1];if(m[1]=="#"&&elem&&elem.getElementById&&!jQuery.isXMLDoc(elem)){var oid=elem.getElementById(m[2]);if((jQuery.browser.msie||jQuery.browser.opera)&&oid&&typeof oid.id=="string"&&oid.id!=m[2])oid=jQuery('[@id="'+m[2]+'"]',elem)[0];ret=r=oid&&(!m[3]||jQuery.nodeName(oid,m[3]))?[oid]:[];}else{for(var i=0;ret[i];i++){var tag=m[1]=="#"&&m[3]?m[3]:m[1]!=""||m[0]==""?"*":m[2];if(tag=="*"&&ret[i].nodeName.toLowerCase()=="object")tag="param";r=jQuery.merge(r,ret[i].getElementsByTagName(tag));}if(m[1]==".")r=jQuery.classFilter(r,m[2]);if(m[1]=="#"){var tmp=[];for(var i=0;r[i];i++)if(r[i].getAttribute("id")==m[2]){tmp=[r[i]];break;}r=tmp;}ret=r;}t=t.replace(re2,"");}}if(t){var val=jQuery.filter(t,r);ret=r=val.r;t=jQuery.trim(val.t);}}if(t)ret=[];if(ret&&context==ret[0])ret.shift();done=jQuery.merge(done,ret);return done;},classFilter:function(r,m,not){m=" "+m+" ";var tmp=[];for(var i=0;r[i];i++){var pass=(" "+r[i].className+" ").indexOf(m)>=0;if(!not&&pass||not&&!pass)tmp.push(r[i]);}return tmp;},filter:function(t,r,not){var last;while(t&&t!=last){last=t;var p=jQuery.parse,m;for(var i=0;p[i];i++){m=p[i].exec(t);if(m){t=t.substring(m[0].length);m[2]=m[2].replace(/\\/g,"");break;}}if(!m)break;if(m[1]==":"&&m[2]=="not")r=isSimple.test(m[3])?jQuery.filter(m[3],r,true).r:jQuery(r).not(m[3]);else if(m[1]==".")r=jQuery.classFilter(r,m[2],not);else if(m[1]=="["){var tmp=[],type=m[3];for(var i=0,rl=r.length;i<rl;i++){var a=r[i],z=a[jQuery.props[m[2]]||m[2]];if(z==null||/href|src|selected/.test(m[2]))z=jQuery.attr(a,m[2])||'';if((type==""&&!!z||type=="="&&z==m[5]||type=="!="&&z!=m[5]||type=="^="&&z&&!z.indexOf(m[5])||type=="$="&&z.substr(z.length-m[5].length)==m[5]||(type=="*="||type=="~=")&&z.indexOf(m[5])>=0)^not)tmp.push(a);}r=tmp;}else if(m[1]==":"&&m[2]=="nth-child"){var merge={},tmp=[],test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(m[3]=="even"&&"2n"||m[3]=="odd"&&"2n+1"||!/\D/.test(m[3])&&"0n+"+m[3]||m[3]),first=(test[1]+(test[2]||1))-0,last=test[3]-0;for(var i=0,rl=r.length;i<rl;i++){var node=r[i],parentNode=node.parentNode,id=jQuery.data(parentNode);if(!merge[id]){var c=1;for(var n=parentNode.firstChild;n;n=n.nextSibling)if(n.nodeType==1)n.nodeIndex=c++;merge[id]=true;}var add=false;if(first==0){if(node.nodeIndex==last)add=true;}else if((node.nodeIndex-last)%first==0&&(node.nodeIndex-last)/first>=0)add=true;if(add^not)tmp.push(node);}r=tmp;}else{var fn=jQuery.expr[m[1]];if(typeof fn=="object")fn=fn[m[2]];if(typeof fn=="string")fn=eval("false||function(a,i){return "+fn+";}");r=jQuery.grep(r,function(elem,i){return fn(elem,i,m,r);},not);}}return{r:r,t:t};},dir:function(elem,dir){var matched=[];var cur=elem[dir];while(cur&&cur!=document){if(cur.nodeType==1)matched.push(cur);cur=cur[dir];}return matched;},nth:function(cur,result,dir,elem){result=result||1;var num=0;for(;cur;cur=cur[dir])if(cur.nodeType==1&&++num==result)break;return cur;},sibling:function(n,elem){var r=[];for(;n;n=n.nextSibling){if(n.nodeType==1&&(!elem||n!=elem))r.push(n);}return r;}});jQuery.event={add:function(elem,types,handler,data){if(elem.nodeType==3||elem.nodeType==8)return;if(jQuery.browser.msie&&elem.setInterval!=undefined)elem=window;if(!handler.guid)handler.guid=this.guid++;if(data!=undefined){var fn=handler;handler=function(){return fn.apply(this,arguments);};handler.data=data;handler.guid=fn.guid;}var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){var val;if(typeof jQuery=="undefined"||jQuery.event.triggered)return val;val=jQuery.event.handle.apply(arguments.callee.elem,arguments);return val;});handle.elem=elem;jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];handler.type=parts[1];var handlers=events[type];if(!handlers){handlers=events[type]={};if(!jQuery.event.special[type]||jQuery.event.special[type].setup.call(elem)===false){if(elem.addEventListener)elem.addEventListener(type,handle,false);else if(elem.attachEvent)elem.attachEvent("on"+type,handle);}}handlers[handler.guid]=handler;jQuery.event.global[type]=true;});elem=null;},guid:1,global:{},remove:function(elem,types,handler){if(elem.nodeType==3||elem.nodeType==8)return;var events=jQuery.data(elem,"events"),ret,index;if(events){if(types==undefined||(typeof types=="string"&&types.charAt(0)=="."))for(var type in events)this.remove(elem,type+(types||""));else{if(types.type){handler=types.handler;types=types.type;}jQuery.each(types.split(/\s+/),function(index,type){var parts=type.split(".");type=parts[0];if(events[type]){if(handler)delete events[type][handler.guid];else
for(handler in events[type])if(!parts[1]||events[type][handler].type==parts[1])delete events[type][handler];for(ret in events[type])break;if(!ret){if(!jQuery.event.special[type]||jQuery.event.special[type].teardown.call(elem)===false){if(elem.removeEventListener)elem.removeEventListener(type,jQuery.data(elem,"handle"),false);else if(elem.detachEvent)elem.detachEvent("on"+type,jQuery.data(elem,"handle"));}ret=null;delete events[type];}}});}for(ret in events)break;if(!ret){var handle=jQuery.data(elem,"handle");if(handle)handle.elem=null;jQuery.removeData(elem,"events");jQuery.removeData(elem,"handle");}}},trigger:function(type,data,elem,donative,extra){data=jQuery.makeArray(data||[]);if(type.indexOf("!")>=0){type=type.slice(0,-1);var exclusive=true;}if(!elem){if(this.global[type])jQuery("*").add([window,document]).trigger(type,data);}else{if(elem.nodeType==3||elem.nodeType==8)return undefined;var val,ret,fn=jQuery.isFunction(elem[type]||null),event=!data[0]||!data[0].preventDefault;if(event)data.unshift(this.fix({type:type,target:elem}));data[0].type=type;if(exclusive)data[0].exclusive=true;if(jQuery.isFunction(jQuery.data(elem,"handle")))val=jQuery.data(elem,"handle").apply(elem,data);if(!fn&&elem["on"+type]&&elem["on"+type].apply(elem,data)===false)val=false;if(event)data.shift();if(extra&&jQuery.isFunction(extra)){ret=extra.apply(elem,val==null?data:data.concat(val));if(ret!==undefined)val=ret;}if(fn&&donative!==false&&val!==false&&!(jQuery.nodeName(elem,'a')&&type=="click")){this.triggered=true;try{elem[type]();}catch(e){}}this.triggered=false;}return val;},handle:function(event){var val;event=jQuery.event.fix(event||window.event||{});var parts=event.type.split(".");event.type=parts[0];var handlers=jQuery.data(this,"events")&&jQuery.data(this,"events")[event.type],args=Array.prototype.slice.call(arguments,1);args.unshift(event);for(var j in handlers){var handler=handlers[j];args[0].handler=handler;args[0].data=handler.data;if(!parts[1]&&!event.exclusive||handler.type==parts[1]){var ret=handler.apply(this,args);if(val!==false)val=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}}if(jQuery.browser.msie)event.target=event.preventDefault=event.stopPropagation=event.handler=event.data=null;return val;},fix:function(event){var originalEvent=event;event=jQuery.extend({},originalEvent);event.preventDefault=function(){if(originalEvent.preventDefault)originalEvent.preventDefault();originalEvent.returnValue=false;};event.stopPropagation=function(){if(originalEvent.stopPropagation)originalEvent.stopPropagation();originalEvent.cancelBubble=true;};if(!event.target)event.target=event.srcElement||document;if(event.target.nodeType==3)event.target=originalEvent.target.parentNode;if(!event.relatedTarget&&event.fromElement)event.relatedTarget=event.fromElement==event.target?event.toElement:event.fromElement;if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc.clientLeft||0);event.pageY=event.clientY+(doc&&doc.scrollTop||body&&body.scrollTop||0)-(doc.clientTop||0);}if(!event.which&&((event.charCode||event.charCode===0)?event.charCode:event.keyCode))event.which=event.charCode||event.keyCode;if(!event.metaKey&&event.ctrlKey)event.metaKey=event.ctrlKey;if(!event.which&&event.button)event.which=(event.button&1?1:(event.button&2?3:(event.button&4?2:0)));return event;},special:{ready:{setup:function(){bindReady();return;},teardown:function(){return;}},mouseenter:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseover",jQuery.event.special.mouseenter.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseover",jQuery.event.special.mouseenter.handler);return true;},handler:function(event){if(withinElement(event,this))return true;arguments[0].type="mouseenter";return jQuery.event.handle.apply(this,arguments);}},mouseleave:{setup:function(){if(jQuery.browser.msie)return false;jQuery(this).bind("mouseout",jQuery.event.special.mouseleave.handler);return true;},teardown:function(){if(jQuery.browser.msie)return false;jQuery(this).unbind("mouseout",jQuery.event.special.mouseleave.handler);return true;},handler:function(event){if(withinElement(event,this))return true;arguments[0].type="mouseleave";return jQuery.event.handle.apply(this,arguments);}}}};jQuery.fn.extend({bind:function(type,data,fn){return type=="unload"?this.one(type,data,fn):this.each(function(){jQuery.event.add(this,type,fn||data,fn&&data);});},one:function(type,data,fn){return this.each(function(){jQuery.event.add(this,type,function(event){jQuery(this).unbind(event);return(fn||data).apply(this,arguments);},fn&&data);});},unbind:function(type,fn){return this.each(function(){jQuery.event.remove(this,type,fn);});},trigger:function(type,data,fn){return this.each(function(){jQuery.event.trigger(type,data,this,true,fn);});},triggerHandler:function(type,data,fn){if(this[0])return jQuery.event.trigger(type,data,this[0],false,fn);return undefined;},toggle:function(){var args=arguments;return this.click(function(event){this.lastToggle=0==this.lastToggle?1:0;event.preventDefault();return args[this.lastToggle].apply(this,arguments)||false;});},hover:function(fnOver,fnOut){return this.bind('mouseenter',fnOver).bind('mouseleave',fnOut);},ready:function(fn){bindReady();if(jQuery.isReady)fn.call(document,jQuery);else
jQuery.readyList.push(function(){return fn.call(this,jQuery);});return this;}});jQuery.extend({isReady:false,readyList:[],ready:function(){if(!jQuery.isReady){jQuery.isReady=true;if(jQuery.readyList){jQuery.each(jQuery.readyList,function(){this.apply(document);});jQuery.readyList=null;}jQuery(document).triggerHandler("ready");}}});var readyBound=false;function bindReady(){if(readyBound)return;readyBound=true;if(document.addEventListener&&!jQuery.browser.opera)document.addEventListener("DOMContentLoaded",jQuery.ready,false);if(jQuery.browser.msie&&window==top)(function(){if(jQuery.isReady)return;try{document.documentElement.doScroll("left");}catch(error){setTimeout(arguments.callee,0);return;}jQuery.ready();})();if(jQuery.browser.opera)document.addEventListener("DOMContentLoaded",function(){if(jQuery.isReady)return;for(var i=0;i<document.styleSheets.length;i++)if(document.styleSheets[i].disabled){setTimeout(arguments.callee,0);return;}jQuery.ready();},false);if(jQuery.browser.safari){var numStyles;(function(){if(jQuery.isReady)return;if(document.readyState!="loaded"&&document.readyState!="complete"){setTimeout(arguments.callee,0);return;}if(numStyles===undefined)numStyles=jQuery("style, link[rel=stylesheet]").length;if(document.styleSheets.length!=numStyles){setTimeout(arguments.callee,0);return;}jQuery.ready();})();}jQuery.event.add(window,"load",jQuery.ready);}jQuery.each(("blur,focus,load,resize,scroll,unload,click,dblclick,"+"mousedown,mouseup,mousemove,mouseover,mouseout,change,select,"+"submit,keydown,keypress,keyup,error").split(","),function(i,name){jQuery.fn[name]=function(fn){return fn?this.bind(name,fn):this.trigger(name);};});var withinElement=function(event,elem){var parent=event.relatedTarget;while(parent&&parent!=elem)try{parent=parent.parentNode;}catch(error){parent=elem;}return parent==elem;};jQuery(window).bind("unload",function(){jQuery("*").add(document).unbind();});jQuery.fn.extend({load:function(url,params,callback){if(jQuery.isFunction(url))return this.bind("load",url);var off=url.indexOf(" ");if(off>=0){var selector=url.slice(off,url.length);url=url.slice(0,off);}callback=callback||function(){};var type="GET";if(params)if(jQuery.isFunction(params)){callback=params;params=null;}else{params=jQuery.param(params);type="POST";}var self=this;jQuery.ajax({url:url,type:type,dataType:"html",data:params,complete:function(res,status){if(status=="success"||status=="notmodified")self.html(selector?jQuery("<div/>").append(res.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(selector):res.responseText);self.each(callback,[res.responseText,status,res]);}});return this;},serialize:function(){return jQuery.param(this.serializeArray());},serializeArray:function(){return this.map(function(){return jQuery.nodeName(this,"form")?jQuery.makeArray(this.elements):this;}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password/i.test(this.type));}).map(function(i,elem){var val=jQuery(this).val();return val==null?null:val.constructor==Array?jQuery.map(val,function(val,i){return{name:elem.name,value:val};}):{name:elem.name,value:val};}).get();}});jQuery.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(i,o){jQuery.fn[o]=function(f){return this.bind(o,f);};});var jsc=(new Date).getTime();jQuery.extend({get:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data=null;}return jQuery.ajax({type:"GET",url:url,data:data,success:callback,dataType:type});},getScript:function(url,callback){return jQuery.get(url,null,callback,"script");},getJSON:function(url,data,callback){return jQuery.get(url,data,callback,"json");},post:function(url,data,callback,type){if(jQuery.isFunction(data)){callback=data;data={};}return jQuery.ajax({type:"POST",url:url,data:data,success:callback,dataType:type});},ajaxSetup:function(settings){jQuery.extend(jQuery.ajaxSettings,settings);},ajaxSettings:{global:true,type:"GET",timeout:0,contentType:"application/x-www-form-urlencoded",processData:true,async:true,data:null,username:null,password:null,accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(s){var jsonp,jsre=/=\?(&|$)/g,status,data;s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));if(s.data&&s.processData&&typeof s.data!="string")s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(s.type.toLowerCase()=="get"){if(!s.url.match(jsre))s.url+=(s.url.match(/\?/)?"&":"?")+(s.jsonp||"callback")+"=?";}else if(!s.data||!s.data.match(jsre))s.data=(s.data?s.data+"&":"")+(s.jsonp||"callback")+"=?";s.dataType="json";}if(s.dataType=="json"&&(s.data&&s.data.match(jsre)||s.url.match(jsre))){jsonp="jsonp"+jsc++;if(s.data)s.data=(s.data+"").replace(jsre,"="+jsonp+"$1");s.url=s.url.replace(jsre,"="+jsonp+"$1");s.dataType="script";window[jsonp]=function(tmp){data=tmp;success();complete();window[jsonp]=undefined;try{delete window[jsonp];}catch(e){}if(head)head.removeChild(script);};}if(s.dataType=="script"&&s.cache==null)s.cache=false;if(s.cache===false&&s.type.toLowerCase()=="get"){var ts=(new Date()).getTime();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"");}if(s.data&&s.type.toLowerCase()=="get"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;}if(s.global&&!jQuery.active++)jQuery.event.trigger("ajaxStart");if((!s.url.indexOf("http")||!s.url.indexOf("//"))&&s.dataType=="script"&&s.type.toLowerCase()=="get"){var head=document.getElementsByTagName("head")[0];var script=document.createElement("script");script.src=s.url;if(s.scriptCharset)script.charset=s.scriptCharset;if(!jsonp){var done=false;script.onload=script.onreadystatechange=function(){if(!done&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){done=true;success();complete();head.removeChild(script);}};}head.appendChild(script);return undefined;}var requestDone=false;var xml=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();xml.open(s.type,s.url,s.async,s.username,s.password);try{if(s.data)xml.setRequestHeader("Content-Type",s.contentType);if(s.ifModified)xml.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xml.setRequestHeader("X-Requested-With","XMLHttpRequest");xml.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){}if(s.beforeSend)s.beforeSend(xml);if(s.global)jQuery.event.trigger("ajaxSend",[xml,s]);var onreadystatechange=function(isTimeout){if(!requestDone&&xml&&(xml.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;}status=isTimeout=="timeout"&&"timeout"||!jQuery.httpSuccess(xml)&&"error"||s.ifModified&&jQuery.httpNotModified(xml,s.url)&&"notmodified"||"success";if(status=="success"){try{data=jQuery.httpData(xml,s.dataType);}catch(e){status="parsererror";}}if(status=="success"){var modRes;try{modRes=xml.getResponseHeader("Last-Modified");}catch(e){}if(s.ifModified&&modRes)jQuery.lastModified[s.url]=modRes;if(!jsonp)success();}else
jQuery.handleError(s,xml,status);complete();if(s.async)xml=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)setTimeout(function(){if(xml){xml.abort();if(!requestDone)onreadystatechange("timeout");}},s.timeout);}try{xml.send(s.data);}catch(e){jQuery.handleError(s,xml,null,e);}if(!s.async)onreadystatechange();function success(){if(s.success)s.success(data,status);if(s.global)jQuery.event.trigger("ajaxSuccess",[xml,s]);}function complete(){if(s.complete)s.complete(xml,status);if(s.global)jQuery.event.trigger("ajaxComplete",[xml,s]);if(s.global&&!--jQuery.active)jQuery.event.trigger("ajaxStop");}return xml;},handleError:function(s,xml,status,e){if(s.error)s.error(xml,status,e);if(s.global)jQuery.event.trigger("ajaxError",[xml,s,e]);},active:0,httpSuccess:function(r){try{return!r.status&&location.protocol=="file:"||(r.status>=200&&r.status<300)||r.status==304||r.status==1223||jQuery.browser.safari&&r.status==undefined;}catch(e){}return false;},httpNotModified:function(xml,url){try{var xmlRes=xml.getResponseHeader("Last-Modified");return xml.status==304||xmlRes==jQuery.lastModified[url]||jQuery.browser.safari&&xml.status==undefined;}catch(e){}return false;},httpData:function(r,type){var ct=r.getResponseHeader("content-type");var xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0;var data=xml?r.responseXML:r.responseText;if(xml&&data.documentElement.tagName=="parsererror")throw"parsererror";if(type=="script")jQuery.globalEval(data);if(type=="json")data=eval("("+data+")");return data;},param:function(a){var s=[];if(a.constructor==Array||a.jquery)jQuery.each(a,function(){s.push(encodeURIComponent(this.name)+"="+encodeURIComponent(this.value));});else
for(var j in a)if(a[j]&&a[j].constructor==Array)jQuery.each(a[j],function(){s.push(encodeURIComponent(j)+"="+encodeURIComponent(this));});else
s.push(encodeURIComponent(j)+"="+encodeURIComponent(a[j]));return s.join("&").replace(/%20/g,"+");}});jQuery.fn.extend({show:function(speed,callback){return speed?this.animate({height:"show",width:"show",opacity:"show"},speed,callback):this.filter(":hidden").each(function(){this.style.display=this.oldblock||"";if(jQuery.css(this,"display")=="none"){var elem=jQuery("<"+this.tagName+" />").appendTo("body");this.style.display=elem.css("display");if(this.style.display=="none")this.style.display="block";elem.remove();}}).end();},hide:function(speed,callback){return speed?this.animate({height:"hide",width:"hide",opacity:"hide"},speed,callback):this.filter(":visible").each(function(){this.oldblock=this.oldblock||jQuery.css(this,"display");this.style.display="none";}).end();},_toggle:jQuery.fn.toggle,toggle:function(fn,fn2){return jQuery.isFunction(fn)&&jQuery.isFunction(fn2)?this._toggle(fn,fn2):fn?this.animate({height:"toggle",width:"toggle",opacity:"toggle"},fn,fn2):this.each(function(){jQuery(this)[jQuery(this).is(":hidden")?"show":"hide"]();});},slideDown:function(speed,callback){return this.animate({height:"show"},speed,callback);},slideUp:function(speed,callback){return this.animate({height:"hide"},speed,callback);},slideToggle:function(speed,callback){return this.animate({height:"toggle"},speed,callback);},fadeIn:function(speed,callback){return this.animate({opacity:"show"},speed,callback);},fadeOut:function(speed,callback){return this.animate({opacity:"hide"},speed,callback);},fadeTo:function(speed,to,callback){return this.animate({opacity:to},speed,callback);},animate:function(prop,speed,easing,callback){var optall=jQuery.speed(speed,easing,callback);return this[optall.queue===false?"each":"queue"](function(){if(this.nodeType!=1)return false;var opt=jQuery.extend({},optall);var hidden=jQuery(this).is(":hidden"),self=this;for(var p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden)return jQuery.isFunction(opt.complete)&&opt.complete.apply(this);if(p=="height"||p=="width"){opt.display=jQuery.css(this,"display");opt.overflow=this.style.overflow;}}if(opt.overflow!=null)this.style.overflow="hidden";opt.curAnim=jQuery.extend({},prop);jQuery.each(prop,function(name,val){var e=new jQuery.fx(self,opt,name);if(/toggle|show|hide/.test(val))e[val=="toggle"?hidden?"show":"hide":val](prop);else{var parts=val.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),start=e.cur(true)||0;if(parts){var end=parseFloat(parts[2]),unit=parts[3]||"px";if(unit!="px"){self.style[name]=(end||1)+unit;start=((end||1)/e.cur(true))*start;self.style[name]=start+unit;}if(parts[1])end=((parts[1]=="-="?-1:1)*end)+start;e.custom(start,end,unit);}else
e.custom(start,val,"");}});return true;});},queue:function(type,fn){if(jQuery.isFunction(type)||(type&&type.constructor==Array)){fn=type;type="fx";}if(!type||(typeof type=="string"&&!fn))return queue(this[0],type);return this.each(function(){if(fn.constructor==Array)queue(this,type,fn);else{queue(this,type).push(fn);if(queue(this,type).length==1)fn.apply(this);}});},stop:function(clearQueue,gotoEnd){var timers=jQuery.timers;if(clearQueue)this.queue([]);this.each(function(){for(var i=timers.length-1;i>=0;i--)if(timers[i].elem==this){if(gotoEnd)timers[i](true);timers.splice(i,1);}});if(!gotoEnd)this.dequeue();return this;}});var queue=function(elem,type,array){if(!elem)return undefined;type=type||"fx";var q=jQuery.data(elem,type+"queue");if(!q||array)q=jQuery.data(elem,type+"queue",array?jQuery.makeArray(array):[]);return q;};jQuery.fn.dequeue=function(type){type=type||"fx";return this.each(function(){var q=queue(this,type);q.shift();if(q.length)q[0].apply(this);});};jQuery.extend({speed:function(speed,easing,fn){var opt=speed&&speed.constructor==Object?speed:{complete:fn||!fn&&easing||jQuery.isFunction(speed)&&speed,duration:speed,easing:fn&&easing||easing&&easing.constructor!=Function&&easing};opt.duration=(opt.duration&&opt.duration.constructor==Number?opt.duration:{slow:600,fast:200}[opt.duration])||400;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false)jQuery(this).dequeue();if(jQuery.isFunction(opt.old))opt.old.apply(this);};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],timerId:null,fx:function(elem,options,prop){this.options=options;this.elem=elem;this.prop=prop;if(!options.orig)options.orig={};}});jQuery.fx.prototype={update:function(){if(this.options.step)this.options.step.apply(this.elem,[this.now,this]);(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if(this.prop=="height"||this.prop=="width")this.elem.style.display="block";},cur:function(force){if(this.elem[this.prop]!=null&&this.elem.style[this.prop]==null)return this.elem[this.prop];var r=parseFloat(jQuery.css(this.elem,this.prop,force));return r&&r>-10000?r:parseFloat(jQuery.curCSS(this.elem,this.prop))||0;},custom:function(from,to,unit){this.startTime=(new Date()).getTime();this.start=from;this.end=to;this.unit=unit||this.unit||"px";this.now=this.start;this.pos=this.state=0;this.update();var self=this;function t(gotoEnd){return self.step(gotoEnd);}t.elem=this.elem;jQuery.timers.push(t);if(jQuery.timerId==null){jQuery.timerId=setInterval(function(){var timers=jQuery.timers;for(var i=0;i<timers.length;i++)if(!timers[i]())timers.splice(i--,1);if(!timers.length){clearInterval(jQuery.timerId);jQuery.timerId=null;}},13);}},show:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.show=true;this.custom(0,this.cur());if(this.prop=="width"||this.prop=="height")this.elem.style[this.prop]="1px";jQuery(this.elem).show();},hide:function(){this.options.orig[this.prop]=jQuery.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0);},step:function(gotoEnd){var t=(new Date()).getTime();if(gotoEnd||t>this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var done=true;for(var i in this.options.curAnim)if(this.options.curAnim[i]!==true)done=false;if(done){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(jQuery.css(this.elem,"display")=="none")this.elem.style.display="block";}if(this.options.hide)this.elem.style.display="none";if(this.options.hide||this.options.show)for(var p in this.options.curAnim)jQuery.attr(this.elem.style,p,this.options.orig[p]);}if(done&&jQuery.isFunction(this.options.complete))this.options.complete.apply(this.elem);return false;}else{var n=t-this.startTime;this.state=n/this.options.duration;this.pos=jQuery.easing[this.options.easing||(jQuery.easing.swing?"swing":"linear")](this.state,n,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update();}return true;}};jQuery.fx.step={scrollLeft:function(fx){fx.elem.scrollLeft=fx.now;},scrollTop:function(fx){fx.elem.scrollTop=fx.now;},opacity:function(fx){jQuery.attr(fx.elem.style,"opacity",fx.now);},_default:function(fx){fx.elem.style[fx.prop]=fx.now+fx.unit;}};jQuery.fn.offset=function(){var left=0,top=0,elem=this[0],results;if(elem)with(jQuery.browser){var parent=elem.parentNode,offsetChild=elem,offsetParent=elem.offsetParent,doc=elem.ownerDocument,safari2=safari&&parseInt(version)<522&&!/adobeair/i.test(userAgent),fixed=jQuery.css(elem,"position")=="fixed";if(elem.getBoundingClientRect){var box=elem.getBoundingClientRect();add(box.left+Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),box.top+Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));add(-doc.documentElement.clientLeft,-doc.documentElement.clientTop);}else{add(elem.offsetLeft,elem.offsetTop);while(offsetParent){add(offsetParent.offsetLeft,offsetParent.offsetTop);if(mozilla&&!/^t(able|d|h)$/i.test(offsetParent.tagName)||safari&&!safari2)border(offsetParent);if(!fixed&&jQuery.css(offsetParent,"position")=="fixed")fixed=true;offsetChild=/^body$/i.test(offsetParent.tagName)?offsetChild:offsetParent;offsetParent=offsetParent.offsetParent;}while(parent&&parent.tagName&&!/^body|html$/i.test(parent.tagName)){if(!/^inline|table.*$/i.test(jQuery.css(parent,"display")))add(-parent.scrollLeft,-parent.scrollTop);if(mozilla&&jQuery.css(parent,"overflow")!="visible")border(parent);parent=parent.parentNode;}if((safari2&&(fixed||jQuery.css(offsetChild,"position")=="absolute"))||(mozilla&&jQuery.css(offsetChild,"position")!="absolute"))add(-doc.body.offsetLeft,-doc.body.offsetTop);if(fixed)add(Math.max(doc.documentElement.scrollLeft,doc.body.scrollLeft),Math.max(doc.documentElement.scrollTop,doc.body.scrollTop));}results={top:top,left:left};}function border(elem){add(jQuery.curCSS(elem,"borderLeftWidth",true),jQuery.curCSS(elem,"borderTopWidth",true));}function add(l,t){left+=parseInt(l)||0;top+=parseInt(t)||0;}return results;};})();


/* SWFObject v2.1 rc2 <http://code.google.com/p/swfobject/>
	Copyright (c) 2007 Geoff Stearns, Michael Williams, and Bobby van der Sluis
	This software is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
var swfobject=function(){var b="undefined",Q="object",n="Shockwave Flash",p="ShockwaveFlash.ShockwaveFlash",P="application/x-shockwave-flash",m="SWFObjectExprInst",j=window,K=document,T=navigator,o=[],N=[],i=[],d=[],J,Z=null,M=null,l=null,e=false,A=false;var h=function(){var v=typeof K.getElementById!=b&&typeof K.getElementsByTagName!=b&&typeof K.createElement!=b,AC=[0,0,0],x=null;if(typeof T.plugins!=b&&typeof T.plugins[n]==Q){x=T.plugins[n].description;if(x&&!(typeof T.mimeTypes!=b&&T.mimeTypes[P]&&!T.mimeTypes[P].enabledPlugin)){x=x.replace(/^.*\s+(\S+\s+\S+$)/,"$1");AC[0]=parseInt(x.replace(/^(.*)\..*$/,"$1"),10);AC[1]=parseInt(x.replace(/^.*\.(.*)\s.*$/,"$1"),10);AC[2]=/r/.test(x)?parseInt(x.replace(/^.*r(.*)$/,"$1"),10):0}}else{if(typeof j.ActiveXObject!=b){var y=null,AB=false;try{y=new ActiveXObject(p+".7")}catch(t){try{y=new ActiveXObject(p+".6");AC=[6,0,21];y.AllowScriptAccess="always"}catch(t){if(AC[0]==6){AB=true}}if(!AB){try{y=new ActiveXObject(p)}catch(t){}}}if(!AB&&y){try{x=y.GetVariable("$version");if(x){x=x.split(" ")[1].split(",");AC=[parseInt(x[0],10),parseInt(x[1],10),parseInt(x[2],10)]}}catch(t){}}}}var AD=T.userAgent.toLowerCase(),r=T.platform.toLowerCase(),AA=/webkit/.test(AD)?parseFloat(AD.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,q=false,z=r?/win/.test(r):/win/.test(AD),w=r?/mac/.test(r):/mac/.test(AD);/*@cc_on q=true;@if(@_win32)z=true;@elif(@_mac)w=true;@end@*/return{w3cdom:v,pv:AC,webkit:AA,ie:q,win:z,mac:w}}();var L=function(){if(!h.w3cdom){return }f(H);if(h.ie&&h.win){try{K.write("<script id=__ie_ondomload defer=true src=//:><\/script>");J=C("__ie_ondomload");if(J){I(J,"onreadystatechange",S)}}catch(q){}}if(h.webkit&&typeof K.readyState!=b){Z=setInterval(function(){if(/loaded|complete/.test(K.readyState)){E()}},10)}if(typeof K.addEventListener!=b){K.addEventListener("DOMContentLoaded",E,null)}R(E)}();function S(){if(J.readyState=="complete"){J.parentNode.removeChild(J);E()}}function E(){if(e){return }if(h.ie&&h.win){var v=a("span");try{var u=K.getElementsByTagName("body")[0].appendChild(v);u.parentNode.removeChild(u)}catch(w){return }}e=true;if(Z){clearInterval(Z);Z=null}var q=o.length;for(var r=0;r<q;r++){o[r]()}}function f(q){if(e){q()}else{o[o.length]=q}}function R(r){if(typeof j.addEventListener!=b){j.addEventListener("load",r,false)}else{if(typeof K.addEventListener!=b){K.addEventListener("load",r,false)}else{if(typeof j.attachEvent!=b){I(j,"onload",r)}else{if(typeof j.onload=="function"){var q=j.onload;j.onload=function(){q();r()}}else{j.onload=r}}}}}function H(){var t=N.length;for(var q=0;q<t;q++){var u=N[q].id;if(h.pv[0]>0){var r=C(u);if(r){N[q].width=r.getAttribute("width")?r.getAttribute("width"):"0";N[q].height=r.getAttribute("height")?r.getAttribute("height"):"0";if(c(N[q].swfVersion)){if(h.webkit&&h.webkit<312){Y(r)}W(u,true)}else{if(N[q].expressInstall&&!A&&c("6.0.65")&&(h.win||h.mac)){k(N[q])}else{O(r)}}}}else{W(u,true)}}}function Y(t){var q=t.getElementsByTagName(Q)[0];if(q){var w=a("embed"),y=q.attributes;if(y){var v=y.length;for(var u=0;u<v;u++){if(y[u].nodeName=="DATA"){w.setAttribute("src",y[u].nodeValue)}else{w.setAttribute(y[u].nodeName,y[u].nodeValue)}}}var x=q.childNodes;if(x){var z=x.length;for(var r=0;r<z;r++){if(x[r].nodeType==1&&x[r].nodeName=="PARAM"){w.setAttribute(x[r].getAttribute("name"),x[r].getAttribute("value"))}}}t.parentNode.replaceChild(w,t)}}function k(w){A=true;var u=C(w.id);if(u){if(w.altContentId){var y=C(w.altContentId);if(y){M=y;l=w.altContentId}}else{M=G(u)}if(!(/%$/.test(w.width))&&parseInt(w.width,10)<310){w.width="310"}if(!(/%$/.test(w.height))&&parseInt(w.height,10)<137){w.height="137"}K.title=K.title.slice(0,47)+" - Flash Player Installation";var z=h.ie&&h.win?"ActiveX":"PlugIn",q=K.title,r="MMredirectURL="+j.location+"&MMplayerType="+z+"&MMdoctitle="+q,x=w.id;if(h.ie&&h.win&&u.readyState!=4){var t=a("div");x+="SWFObjectNew";t.setAttribute("id",x);u.parentNode.insertBefore(t,u);u.style.display="none";var v=function(){u.parentNode.removeChild(u)};I(j,"onload",v)}U({data:w.expressInstall,id:m,width:w.width,height:w.height},{flashvars:r},x)}}function O(t){if(h.ie&&h.win&&t.readyState!=4){var r=a("div");t.parentNode.insertBefore(r,t);r.parentNode.replaceChild(G(t),r);t.style.display="none";var q=function(){t.parentNode.removeChild(t)};I(j,"onload",q)}else{t.parentNode.replaceChild(G(t),t)}}function G(v){var u=a("div");if(h.win&&h.ie){u.innerHTML=v.innerHTML}else{var r=v.getElementsByTagName(Q)[0];if(r){var w=r.childNodes;if(w){var q=w.length;for(var t=0;t<q;t++){if(!(w[t].nodeType==1&&w[t].nodeName=="PARAM")&&!(w[t].nodeType==8)){u.appendChild(w[t].cloneNode(true))}}}}}return u}function U(AG,AE,t){var q,v=C(t);if(v){if(typeof AG.id==b){AG.id=t}if(h.ie&&h.win){var AF="";for(var AB in AG){if(AG[AB]!=Object.prototype[AB]){if(AB.toLowerCase()=="data"){AE.movie=AG[AB]}else{if(AB.toLowerCase()=="styleclass"){AF+=' class="'+AG[AB]+'"'}else{if(AB.toLowerCase()!="classid"){AF+=" "+AB+'="'+AG[AB]+'"'}}}}}var AD="";for(var AA in AE){if(AE[AA]!=Object.prototype[AA]){AD+='<param name="'+AA+'" value="'+AE[AA]+'" />'}}v.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+AF+">"+AD+"</object>";i[i.length]=AG.id;q=C(AG.id)}else{if(h.webkit&&h.webkit<312){var AC=a("embed");AC.setAttribute("type",P);for(var z in AG){if(AG[z]!=Object.prototype[z]){if(z.toLowerCase()=="data"){AC.setAttribute("src",AG[z])}else{if(z.toLowerCase()=="styleclass"){AC.setAttribute("class",AG[z])}else{if(z.toLowerCase()!="classid"){AC.setAttribute(z,AG[z])}}}}}for(var y in AE){if(AE[y]!=Object.prototype[y]){if(y.toLowerCase()!="movie"){AC.setAttribute(y,AE[y])}}}v.parentNode.replaceChild(AC,v);q=AC}else{var u=a(Q);u.setAttribute("type",P);for(var x in AG){if(AG[x]!=Object.prototype[x]){if(x.toLowerCase()=="styleclass"){u.setAttribute("class",AG[x])}else{if(x.toLowerCase()!="classid"){u.setAttribute(x,AG[x])}}}}for(var w in AE){if(AE[w]!=Object.prototype[w]&&w.toLowerCase()!="movie"){F(u,w,AE[w])}}v.parentNode.replaceChild(u,v);q=u}}}return q}function F(t,q,r){var u=a("param");u.setAttribute("name",q);u.setAttribute("value",r);t.appendChild(u)}function X(r){var q=C(r);if(q&&(q.nodeName=="OBJECT"||q.nodeName=="EMBED")){if(h.ie&&h.win){if(q.readyState==4){B(r)}else{j.attachEvent("onload",function(){B(r)})}}else{q.parentNode.removeChild(q)}}}function B(t){var r=C(t);if(r){for(var q in r){if(typeof r[q]=="function"){r[q]=null}}r.parentNode.removeChild(r)}}function C(t){var q=null;try{q=K.getElementById(t)}catch(r){}return q}function a(q){return K.createElement(q)}function I(t,q,r){t.attachEvent(q,r);d[d.length]=[t,q,r]}function c(t){var r=h.pv,q=t.split(".");q[0]=parseInt(q[0],10);q[1]=parseInt(q[1],10)||0;q[2]=parseInt(q[2],10)||0;return(r[0]>q[0]||(r[0]==q[0]&&r[1]>q[1])||(r[0]==q[0]&&r[1]==q[1]&&r[2]>=q[2]))?true:false}function V(v,r){if(h.ie&&h.mac){return }var u=K.getElementsByTagName("head")[0],t=a("style");t.setAttribute("type","text/css");t.setAttribute("media","screen");if(!(h.ie&&h.win)&&typeof K.createTextNode!=b){t.appendChild(K.createTextNode(v+" {"+r+"}"))}u.appendChild(t);if(h.ie&&h.win&&typeof K.styleSheets!=b&&K.styleSheets.length>0){var q=K.styleSheets[K.styleSheets.length-1];if(typeof q.addRule==Q){q.addRule(v,r)}}}function W(t,q){var r=q?"visible":"hidden";if(e&&C(t)){C(t).style.visibility=r}else{V("#"+t,"visibility:"+r)}}function g(s){var r=/[\\\"<>\.;]/;var q=r.exec(s)!=null;return q?encodeURIComponent(s):s}var D=function(){if(h.ie&&h.win){window.attachEvent("onunload",function(){var w=d.length;for(var v=0;v<w;v++){d[v][0].detachEvent(d[v][1],d[v][2])}var t=i.length;for(var u=0;u<t;u++){X(i[u])}for(var r in h){h[r]=null}h=null;for(var q in swfobject){swfobject[q]=null}swfobject=null})}}();return{registerObject:function(u,q,t){if(!h.w3cdom||!u||!q){return }var r={};r.id=u;r.swfVersion=q;r.expressInstall=t?t:false;N[N.length]=r;W(u,false)},getObjectById:function(v){var q=null;if(h.w3cdom){var t=C(v);if(t){var u=t.getElementsByTagName(Q)[0];if(!u||(u&&typeof t.SetVariable!=b)){q=t}else{if(typeof u.SetVariable!=b){q=u}}}}return q},embedSWF:function(x,AE,AB,AD,q,w,r,z,AC){if(!h.w3cdom||!x||!AE||!AB||!AD||!q){return }AB+="";AD+="";if(c(q)){W(AE,false);var AA={};if(AC&&typeof AC===Q){for(var v in AC){if(AC[v]!=Object.prototype[v]){AA[v]=AC[v]}}}AA.data=x;AA.width=AB;AA.height=AD;var y={};if(z&&typeof z===Q){for(var u in z){if(z[u]!=Object.prototype[u]){y[u]=z[u]}}}if(r&&typeof r===Q){for(var t in r){if(r[t]!=Object.prototype[t]){if(typeof y.flashvars!=b){y.flashvars+="&"+t+"="+r[t]}else{y.flashvars=t+"="+r[t]}}}}f(function(){U(AA,y,AE);if(AA.id==AE){W(AE,true)}})}else{if(w&&!A&&c("6.0.65")&&(h.win||h.mac)){A=true;W(AE,false);f(function(){var AF={};AF.id=AF.altContentId=AE;AF.width=AB;AF.height=AD;AF.expressInstall=w;k(AF)})}}},getFlashPlayerVersion:function(){return{major:h.pv[0],minor:h.pv[1],release:h.pv[2]}},hasFlashPlayerVersion:c,createSWF:function(t,r,q){if(h.w3cdom){return U(t,r,q)}else{return undefined}},removeSWF:function(q){if(h.w3cdom){X(q)}},createCSS:function(r,q){if(h.w3cdom){V(r,q)}},addDomLoadEvent:f,addLoadEvent:R,getQueryParamValue:function(v){var u=K.location.search||K.location.hash;if(v==null){return g(u)}if(u){var t=u.substring(1).split("&");for(var r=0;r<t.length;r++){if(t[r].substring(0,t[r].indexOf("="))==v){return g(t[r].substring((t[r].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(A&&M){var q=C(m);if(q){q.parentNode.replaceChild(M,q);if(l){W(l,true);if(h.ie&&h.win){M.style.display="block"}}M=null;l=null;A=false}}}}}();


/**
 * jQuery lightBox plugin
 * This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/)
 * and adapted to me for use like a plugin from jQuery.
 * @name jquery-lightbox-0.5.js
 * @author Leandro Vieira Pinho - http://leandrovieira.com
 * @version 0.5
 * @date April 11, 2008
 * @category jQuery plugin
 * @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com)
 * @license CC Attribution-No Derivative Works 2.5 Brazil - http://creativecommons.org/licenses/by-nd/2.5/br/deed.en_US
 * @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin
 */

// Offering a Custom Alias suport - More info: http://docs.jquery.com/Plugins/Authoring#Custom_Alias
(function($) {
	/**
	 * $ is an alias to jQuery object
	 *
	 */
	$.fn.lightBox = function(settings) {
		// Settings to configure the jQuery lightBox plugin how you like
		settings = jQuery.extend({
			// Configuration related to overlay
			overlayBgColor: 		'#000',		// (string) Background color to overlay; inform a hexadecimal value like: #RRGGBB. Where RR, GG, and BB are the hexadecimal values for the red, green, and blue values of the color.
			overlayOpacity:			0.8,		// (integer) Opacity value to overlay; inform: 0.X. Where X are number from 0 to 9
			// Configuration related to navigation
			fixedNavigation:		false,		// (boolean) Boolean that informs if the navigation (next and prev button) will be fixed or not in the interface.
			// Configuration related to images
			imageLoading:			'/assets/global/css/images/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
			imageBtnPrev:			'/assets/global/css/images/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
			imageBtnNext:			'/assets/global/css/images/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
			imageBtnClose:			'/assets/global/css/images/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
			imageBlank:				'/assets/global/css/images/lightbox-blank.gif',			// (string) Path and the name of a blank image (one pixel)
			// Configuration related to container image box
			containerBorderSize:	10,			// (integer) If you adjust the padding in the CSS for the container, #lightbox-container-image-box, you will need to update this value
			containerResizeSpeed:	400,		// (integer) Specify the resize duration of container image. These number are miliseconds. 400 is default.
			// Configuration related to texts in caption. For example: Image 2 of 8. You can alter either "Image" and "of" texts.
			txtImage:				'Foto',	// (string) Specify text "Image"
			txtOf:					'van de',		// (string) Specify text "of"
			// Configuration related to keyboard navigation
			keyToClose:				'c',		// (string) (c = close) Letter to close the jQuery lightBox interface. Beyond this letter, the letter X and the SCAPE key is used to.
			keyToPrev:				'p',		// (string) (p = previous) Letter to show the previous image
			keyToNext:				'n',		// (string) (n = next) Letter to show the next image.
			// Dont alter these variables in any way
			imageArray:				[],
			activeImage:			0
		},settings);
		// Caching the jQuery object with all elements matched
		var jQueryMatchedObj = this; // This, in this context, refer to jQuery object
		/**
		 * Initializing the plugin calling the start function
		 *
		 * @return boolean false
		 */
		function _initialize() {
			_start(this,jQueryMatchedObj); // This, in this context, refer to object (link) which the user have clicked
			return false; // Avoid the browser following the link
		}
		/**
		 * Start the jQuery lightBox plugin
		 *
		 * @param object objClicked The object (link) whick the user have clicked
		 * @param object jQueryMatchedObj The jQuery object with all elements matched
		 */
		function _start(objClicked,jQueryMatchedObj) {
			// Hime some elements to avoid conflict with overlay in IE. These elements appear above the overlay.
			$('embed, object, select').css({ 'visibility' : 'hidden' });
			// Call the function to create the markup structure; style some elements; assign events in some elements.
			_set_interface();
			// Unset total images in imageArray
			settings.imageArray.length = 0;
			// Unset image active information
			settings.activeImage = 0;
			// We have an image set? Or just an image? Lets see it.
			if ( jQueryMatchedObj.length == 1 ) {
				settings.imageArray.push(new Array(objClicked.getAttribute('href'),objClicked.getAttribute('title')));
			} else {
				// Add an Array (as many as we have), with href and title atributes, inside the Array that storage the images references		
				for ( var i = 0; i < jQueryMatchedObj.length; i++ ) {
					settings.imageArray.push(new Array(jQueryMatchedObj[i].getAttribute('href'),jQueryMatchedObj[i].getAttribute('title')));
				}
			}
			while ( settings.imageArray[settings.activeImage][0] != objClicked.getAttribute('href') ) {
				settings.activeImage++;
			}
			// Call the function that prepares image exibition
			_set_image_to_view();
		}
		/**
		 * Create the jQuery lightBox plugin interface
		 *
		 * The HTML markup will be like that:
			<div id="jquery-overlay"></div>
			<div id="jquery-lightbox">
				<div id="lightbox-container-image-box">
					<div id="lightbox-container-image">
						<img src="../fotos/XX.jpg" id="lightbox-image">
						<div id="lightbox-nav">
							<a href="#" id="lightbox-nav-btnPrev"></a>
							<a href="#" id="lightbox-nav-btnNext"></a>
						</div>
						<div id="lightbox-loading">
							<a href="#" id="lightbox-loading-link">
								<img src="../images/lightbox-ico-loading.gif">
							</a>
						</div>
					</div>
				</div>
				<div id="lightbox-container-image-data-box">
					<div id="lightbox-container-image-data">
						<div id="lightbox-image-details">
							<span id="lightbox-image-details-caption"></span>
							<span id="lightbox-image-details-currentNumber"></span>
						</div>
						<div id="lightbox-secNav">
							<a href="#" id="lightbox-secNav-btnClose">
								<img src="../images/lightbox-btn-close.gif">
							</a>
						</div>
					</div>
				</div>
			</div>
		 *
		 */
		function _set_interface() {
			// Apply the HTML markup into body tag
			$('body').append('<div id="jquery-overlay"></div><div id="jquery-lightbox"><div id="lightbox-container-image-box"><div id="lightbox-container-image"><img id="lightbox-image"><div style="" id="lightbox-nav"><a href="#" id="lightbox-nav-btnPrev"></a><a href="#" id="lightbox-nav-btnNext"></a></div><div id="lightbox-loading"><a href="#" id="lightbox-loading-link"><img src="' + settings.imageLoading + '"></a></div></div></div><div id="lightbox-container-image-data-box"><div id="lightbox-container-image-data"><div id="lightbox-image-details"><span id="lightbox-image-details-caption"></span><span id="lightbox-image-details-currentNumber"></span></div><div id="lightbox-secNav"><a href="#" id="lightbox-secNav-btnClose"><img src="' + settings.imageBtnClose + '"></a></div></div></div></div>');	
			// Get page sizes
			var arrPageSizes = ___getPageSize();
			// Style overlay and show it
			$('#jquery-overlay').css({
				backgroundColor:	settings.overlayBgColor,
				opacity:			settings.overlayOpacity,
				width:				arrPageSizes[0],
				height:				arrPageSizes[1]
			}).fadeIn();
			// Get page scroll
			var arrPageScroll = ___getPageScroll();
			// Calculate top and left offset for the jquery-lightbox div object and show it
			$('#jquery-lightbox').css({
				top:	arrPageScroll[1] + (arrPageSizes[3] / 10),
				left:	arrPageScroll[0]
			}).show();
			// Assigning click events in elements to close overlay
			$('#jquery-overlay,#jquery-lightbox').click(function() {
				_finish();									
			});
			// Assign the _finish function to lightbox-loading-link and lightbox-secNav-btnClose objects
			$('#lightbox-loading-link,#lightbox-secNav-btnClose').click(function() {
				_finish();
				return false;
			});
			// If window was resized, calculate the new overlay dimensions
			$(window).resize(function() {
				// Get page sizes
				var arrPageSizes = ___getPageSize();
				// Style overlay and show it
				$('#jquery-overlay').css({
					width:		arrPageSizes[0],
					height:		arrPageSizes[1]
				});
				// Get page scroll
				var arrPageScroll = ___getPageScroll();
				// Calculate top and left offset for the jquery-lightbox div object and show it
				$('#jquery-lightbox').css({
					top:	arrPageScroll[1] + (arrPageSizes[3] / 10),
					left:	arrPageScroll[0]
				});
			});
		}
		/**
		 * Prepares image exibition; doing a images preloader to calculate its size
		 *
		 */
		function _set_image_to_view() { // show the loading
			// Show the loading
			$('#lightbox-loading').show();
			if ( settings.fixedNavigation ) {
				$('#lightbox-image,#lightbox-container-image-data-box,#lightbox-image-details-currentNumber').hide();
			} else {
				// Hide some elements
				$('#lightbox-image,#lightbox-nav,#lightbox-nav-btnPrev,#lightbox-nav-btnNext,#lightbox-container-image-data-box,#lightbox-image-details-currentNumber').hide();
			}
			// Image preload process
			var objImagePreloader = new Image();
			objImagePreloader.onload = function() {
				$('#lightbox-image').attr('src',settings.imageArray[settings.activeImage][0]);
				// Perfomance an effect in the image container resizing it
				_resize_container_image_box(objImagePreloader.width,objImagePreloader.height);
				//	clear onLoad, IE behaves irratically with animated gifs otherwise
				objImagePreloader.onload=function(){};
			};
			objImagePreloader.src = settings.imageArray[settings.activeImage][0];
		};
		/**
		 * Perfomance an effect in the image container resizing it
		 *
		 * @param integer intImageWidth The images width that will be showed
		 * @param integer intImageHeight The images height that will be showed
		 */
		function _resize_container_image_box(intImageWidth,intImageHeight) {
			// Get current width and height
			var intCurrentWidth = $('#lightbox-container-image-box').width();
			var intCurrentHeight = $('#lightbox-container-image-box').height();
			// Get the width and height of the selected image plus the padding
			var intWidth = (intImageWidth + (settings.containerBorderSize * 2)); // Plus the images width and the left and right padding value
			var intHeight = (intImageHeight + (settings.containerBorderSize * 2)); // Plus the images height and the left and right padding value
			// Diferences
			var intDiffW = intCurrentWidth - intWidth;
			var intDiffH = intCurrentHeight - intHeight;
			// Perfomance the effect
			$('#lightbox-container-image-box').animate({ width: intWidth, height: intHeight },settings.containerResizeSpeed,function() { _show_image(); });
			if ( ( intDiffW == 0 ) && ( intDiffH == 0 ) ) {
				if ( $.browser.msie ) {
					___pause(250);
				} else {
					___pause(100);	
				}
			} 
			$('#lightbox-container-image-data-box').css({ width: intImageWidth });
			$('#lightbox-nav-btnPrev,#lightbox-nav-btnNext').css({ height: intImageHeight + (settings.containerBorderSize * 2) });
		};
		/**
		 * Show the prepared image
		 *
		 */
		function _show_image() {
			$('#lightbox-loading').hide();
			$('#lightbox-image').fadeIn(function() {
				_show_image_data();
				_set_navigation();
			});
			_preload_neighbor_images();
		};
		/**
		 * Show the image information
		 *
		 */
		function _show_image_data() {
			$('#lightbox-container-image-data-box').slideDown('fast');
			$('#lightbox-image-details-caption').hide();
			if ( settings.imageArray[settings.activeImage][1] ) {
				$('#lightbox-image-details-caption').html(settings.imageArray[settings.activeImage][1]).show();
			}
			// If we have a image set, display 'Image X of X'
			if ( settings.imageArray.length > 1 ) {
				$('#lightbox-image-details-currentNumber').html(settings.txtImage + ' ' + ( settings.activeImage + 1 ) + ' ' + settings.txtOf + ' ' + settings.imageArray.length).show();
			}		
		}
		/**
		 * Display the button navigations
		 *
		 */
		function _set_navigation() {
			$('#lightbox-nav').show();

			// Instead to define this configuration in CSS file, we define here. And its need to IE. Just.
			$('#lightbox-nav-btnPrev,#lightbox-nav-btnNext').css({ 'background' : 'transparent url(' + settings.imageBlank + ') no-repeat' });
			
			// Show the prev button, if not the first image in set
			if ( settings.activeImage != 0 ) {
				if ( settings.fixedNavigation ) {
					$('#lightbox-nav-btnPrev').css({ 'background' : 'url(' + settings.imageBtnPrev + ') left 15% no-repeat' })
						.unbind()
						.bind('click',function() {
							settings.activeImage = settings.activeImage - 1;
							_set_image_to_view();
							return false;
						});
				} else {
					// Show the images button for Next buttons
					$('#lightbox-nav-btnPrev').unbind().hover(function() {
						$(this).css({ 'background' : 'url(' + settings.imageBtnPrev + ') left 15% no-repeat' });
					},function() {
						$(this).css({ 'background' : 'transparent url(' + settings.imageBlank + ') no-repeat' });
					}).show().bind('click',function() {
						settings.activeImage = settings.activeImage - 1;
						_set_image_to_view();
						return false;
					});
				}
			}
			
			// Show the next button, if not the last image in set
			if ( settings.activeImage != ( settings.imageArray.length -1 ) ) {
				if ( settings.fixedNavigation ) {
					$('#lightbox-nav-btnNext').css({ 'background' : 'url(' + settings.imageBtnNext + ') right 15% no-repeat' })
						.unbind()
						.bind('click',function() {
							settings.activeImage = settings.activeImage + 1;
							_set_image_to_view();
							return false;
						});
				} else {
					// Show the images button for Next buttons
					$('#lightbox-nav-btnNext').unbind().hover(function() {
						$(this).css({ 'background' : 'url(' + settings.imageBtnNext + ') right 15% no-repeat' });
					},function() {
						$(this).css({ 'background' : 'transparent url(' + settings.imageBlank + ') no-repeat' });
					}).show().bind('click',function() {
						settings.activeImage = settings.activeImage + 1;
						_set_image_to_view();
						return false;
					});
				}
			}
			// Enable keyboard navigation
			_enable_keyboard_navigation();
		}
		/**
		 * Enable a support to keyboard navigation
		 *
		 */
		function _enable_keyboard_navigation() {
			$(document).keydown(function(objEvent) {
				_keyboard_action(objEvent);
			});
		}
		/**
		 * Disable the support to keyboard navigation
		 *
		 */
		function _disable_keyboard_navigation() {
			$(document).unbind();
		}
		/**
		 * Perform the keyboard actions
		 *
		 */
		function _keyboard_action(objEvent) {
			// To ie
			if ( objEvent == null ) {
				keycode = event.keyCode;
				escapeKey = 27;
			// To Mozilla
			} else {
				keycode = objEvent.keyCode;
				escapeKey = objEvent.DOM_VK_ESCAPE;
			}
			// Get the key in lower case form
			key = String.fromCharCode(keycode).toLowerCase();
			// Verify the keys to close the ligthBox
			if ( ( key == settings.keyToClose ) || ( key == 'x' ) || ( keycode == escapeKey ) ) {
				_finish();
			}
			// Verify the key to show the previous image
			if ( ( key == settings.keyToPrev ) || ( keycode == 37 ) ) {
				// If were not showing the first image, call the previous
				if ( settings.activeImage != 0 ) {
					settings.activeImage = settings.activeImage - 1;
					_set_image_to_view();
					_disable_keyboard_navigation();
				}
			}
			// Verify the key to show the next image
			if ( ( key == settings.keyToNext ) || ( keycode == 39 ) ) {
				// If were not showing the last image, call the next
				if ( settings.activeImage != ( settings.imageArray.length - 1 ) ) {
					settings.activeImage = settings.activeImage + 1;
					_set_image_to_view();
					_disable_keyboard_navigation();
				}
			}
		}
		/**
		 * Preload prev and next images being showed
		 *
		 */
		function _preload_neighbor_images() {
			if ( (settings.imageArray.length -1) > settings.activeImage ) {
				objNext = new Image();
				objNext.src = settings.imageArray[settings.activeImage + 1][0];
			}
			if ( settings.activeImage > 0 ) {
				objPrev = new Image();
				objPrev.src = settings.imageArray[settings.activeImage -1][0];
			}
		}
		/**
		 * Remove jQuery lightBox plugin HTML markup
		 *
		 */
		function _finish() {
			$('#jquery-lightbox').remove();
			$('#jquery-overlay').fadeOut(function() { $('#jquery-overlay').remove(); });
			// Show some elements to avoid conflict with overlay in IE. These elements appear above the overlay.
			$('embed, object, select').css({ 'visibility' : 'visible' });
		}
		/**
		 / THIRD FUNCTION
		 * getPageSize() by quirksmode.com
		 *
		 * @return Array Return an array with page width, height and window width, height
		 */
		function ___getPageSize() {
			var xScroll, yScroll;
			if (window.innerHeight && window.scrollMaxY) {	
				xScroll = window.innerWidth + window.scrollMaxX;
				yScroll = window.innerHeight + window.scrollMaxY;
			} else if (document.body.scrollHeight > document.body.offsetHeight){ // all but Explorer Mac
				xScroll = document.body.scrollWidth;
				yScroll = document.body.scrollHeight;
			} else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari
				xScroll = document.body.offsetWidth;
				yScroll = document.body.offsetHeight;
			}
			var windowWidth, windowHeight;
			if (self.innerHeight) {	// all except Explorer
				if(document.documentElement.clientWidth){
					windowWidth = document.documentElement.clientWidth; 
				} else {
					windowWidth = self.innerWidth;
				}
				windowHeight = self.innerHeight;
			} else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode
				windowWidth = document.documentElement.clientWidth;
				windowHeight = document.documentElement.clientHeight;
			} else if (document.body) { // other Explorers
				windowWidth = document.body.clientWidth;
				windowHeight = document.body.clientHeight;
			}	
			// for small pages with total height less then height of the viewport
			if(yScroll < windowHeight){
				pageHeight = windowHeight;
			} else { 
				pageHeight = yScroll;
			}
			// for small pages with total width less then width of the viewport
			if(xScroll < windowWidth){	
				pageWidth = xScroll;		
			} else {
				pageWidth = windowWidth;
			}
			arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight);
			return arrayPageSize;
		};
		/**
		 / THIRD FUNCTION
		 * getPageScroll() by quirksmode.com
		 *
		 * @return Array Return an array with x,y page scroll values.
		 */
		function ___getPageScroll() {
			var xScroll, yScroll;
			if (self.pageYOffset) {
				yScroll = self.pageYOffset;
				xScroll = self.pageXOffset;
			} else if (document.documentElement && document.documentElement.scrollTop) {	 // Explorer 6 Strict
				yScroll = document.documentElement.scrollTop;
				xScroll = document.documentElement.scrollLeft;
			} else if (document.body) {// all other Explorers
				yScroll = document.body.scrollTop;
				xScroll = document.body.scrollLeft;	
			}
			arrayPageScroll = new Array(xScroll,yScroll);
			return arrayPageScroll;
		};
		 /**
		  * Stop the code execution from a escified time in milisecond
		  *
		  */
		 function ___pause(ms) {
			var date = new Date(); 
			curDate = null;
			do { var curDate = new Date(); }
			while ( curDate - date < ms);
		 };
		// Return the jQuery object for chaining. The unbind method is used to avoid click conflict when the plugin is called more than once
		return this.unbind('click').click(_initialize);
	};
})(jQuery); // Call and execute the function immediately passing the jQuery object


/*****************************************************************

typeface.js, version 0.11 | typefacejs.neocracy.org

Copyright (c) 2008, David Chester davidchester@gmx.net 

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

*****************************************************************/

(function() {

var _typeface_js = {

	faces: {},

	loadFace: function(typefaceData) {

		var familyName = typefaceData.familyName.toLowerCase();
		
		if (!this.faces[familyName]) {
			this.faces[familyName] = {};
		}
		if (!this.faces[familyName][typefaceData.cssFontWeight]) {
			this.faces[familyName][typefaceData.cssFontWeight] = {};
		}

		var face = this.faces[familyName][typefaceData.cssFontWeight][typefaceData.cssFontStyle] = typefaceData;
		face.loaded = true;
	},

	log: {
		debug: function(message) {
			var typefaceConsole = document.getElementById('typeface-console');
			if (typefaceConsole) 
				typefaceConsole.innerHTML += 'DEBUG: ' + message + "<br>";
		},

		error: function(message) {
			var typefaceConsole = document.getElementById('typeface-console');
			if (typefaceConsole) 
				typefaceConsole.innerHTML += 'ERROR: ' + message + "<br>";
		}
	},
	
	pixelsFromPoints: function(face, style, points, dimension) {
		var pixels = points * parseInt(style.fontSize) * 72 / (face.resolution * 100);
		if (dimension == 'horizontal' && style.fontStretchPercent) {
			pixels *= style.fontStretchPercent;
		}
		return pixels;
	},

	pointsFromPixels: function(face, style, pixels, dimension) {
		var points = pixels * face.resolution / (parseInt(style.fontSize) * 72 / 100);
		if (dimension == 'horizontal' && style.fontStretchPrecent) {
			points *= style.fontStretchPercent;
		}
		return points;
	},

	cssFontWeightMap: {
		normal: 'normal',
		bold: 'bold',
		400: 'normal',
		700: 'bold'
	},

	cssFontStretchMap: {
		'ultra-condensed': 0.55,
		'extra-condensed': 0.77,
		'condensed': 0.85,
		'semi-condensed': 0.93,
		'normal': 1,
		'semi-expanded': 1.07,
		'expanded': 1.15,
		'extra-expanded': 1.23,
		'ultra-expanded': 1.45,
		'default': 1
	},
	
	fallbackCharacter: '.',

	getTextExtents: function(face, style, text) {
		var extentX = 0;
		var extentY = 0;
		var horizontalAdvance;
	
		for (var i = 0; i < text.length; i++) {
			var glyph = face.glyphs[text.charAt(i)] ? face.glyphs[text.charAt(i)] : face.glyphs[this.fallbackCharacter];
			var letterSpacingAdjustment = this.pointsFromPixels(face, style, style.letterSpacing);
			extentX += Math.max(glyph.ha, glyph.x_max) + letterSpacingAdjustment;
			horizontalAdvance += glyph.ha + letterSpacingAdjustment;
		}
		return { 
			x: extentX, 
			y: extentY,
			ha: horizontalAdvance
			
		};
	},

	pixelsFromCssAmount: function(cssAmount, defaultValue) {

		var matches = undefined;

		if (cssAmount == 'normal') {
			return defaultValue;

		} else if (matches = cssAmount.match(/([\-\d+\.]+)px/)) {
			return matches[1];

		} else if (matches = cssAmount.match(/([\-\d\.]+)pt/)) {
			return matches[1] * 100 / 75;
		} else {
			return defaultValue;
		}
	},

	getRenderedText: function(e) {

		var browserStyle = window.getComputedStyle ? 
			document.defaultView.getComputedStyle(e.parentNode, '') : 
			e.parentNode.currentStyle ? 
				e.parentNode.currentStyle : 
				{ color: '#ff0000', fontSize: 12, fontFamily: 'arial' };

		var inlineStyleAttribute = e.parentNode.getAttribute('style');
		if (inlineStyleAttribute && typeof(inlineStyleAttribute) == 'object') {
			inlineStyleAttribute = inlineStyleAttribute.cssText;
		}

		if (inlineStyleAttribute) {

			var inlineStyleDeclarations = inlineStyleAttribute.split(/\s*\;\s*/);

			var inlineStyle = {};
			for (var i = 0; i < inlineStyleDeclarations.length; i++) {
				var declaration = inlineStyleDeclarations[i];
				var declarationOperands = declaration.split(/\s*\:\s*/);
				inlineStyle[declarationOperands[0]] = declarationOperands[1];
			}
		}

		var style = { 
			color: browserStyle.color, 
			fontFamily: browserStyle.fontFamily.split(/\s*,\s*/)[0].replace(/(^"|^'|'$|"$)/g, '').toLowerCase(), 
			fontSize: this.pixelsFromCssAmount(browserStyle.fontSize, 12),
			fontWeight: this.cssFontWeightMap[browserStyle.fontWeight],
			fontStyle: browserStyle.fontStyle ? browserStyle.fontStyle : 'normal',
			fontStretchPercent: this.cssFontStretchMap[inlineStyle && inlineStyle['font-stretch'] ? inlineStyle['font-stretch'] : 'default'],
			textDecoration: browserStyle.textDecoration,
			lineHeight: this.pixelsFromCssAmount(browserStyle.lineHeight, 'normal'),
			letterSpacing: this.pixelsFromCssAmount(browserStyle.letterSpacing, 0)
		};

		var face;
		if (
			this.faces[style.fontFamily] && 
			this.faces[style.fontFamily][style.fontWeight]
		) {
			face = this.faces[style.fontFamily][style.fontWeight][style.fontStyle];
		}

		if (!face) {
			return;
		}
	
		var text = e.nodeValue.replace(/(?:^\s+|\s+$)/g, '');
		text = text.replace(/\s+/g, ' ');
		var words = text.split(/\s/);

		var containerSpan = document.createElement('span');

		for (var i = 0; i < words.length; i++) {
			var word = words[i];
			var delimiter = i == words.length - 1 ? '' : ' ';
			var vectorElement = this.renderWord(face, style, word + delimiter);
			if (vectorElement)
				containerSpan.appendChild(vectorElement);
		}

		return containerSpan;
	},

	renderDocument: function(callback) { // args: onComplete
		
		if (this.renderDocumentLock) 
			return;

		this.renderDocumentLock = true;

		if (!callback)
			callback = function(e) { e.style.visibility = 'visible' };

		var elements = document.getElementsByTagName('*');
		
		var elementsLength = elements.length;
		for (var i = 0; i < elements.length; i++) {
			if (elements[i].className.match(/(^|\s)typeface-js(\s|$)/) || elements[i].tagName.match(/^(H1|H2|H3|H4|H5|H6)$/)) {
				this.replaceText(elements[i]);
				if (typeof callback == 'function') {
					callback(elements[i]);
				}
			}
		}
	},

	replaceText: function(e) {
		if (e.hasChildNodes()) {
			var childNodes = [];
			for (var i = 0; i < e.childNodes.length; i++) {
				childNodes[i] = e.childNodes[i];
			}
			for (var i = 0; i < childNodes.length; i++) {
				this.replaceText(childNodes[i]);
			}
		}

		if (e.nodeType == 3 && e.nodeValue.match(/\S/)) {
			var parentNode = e.parentNode;
		
			var renderedText = this.getRenderedText(e);
			
			if (renderedText) {	
				parentNode.insertBefore(renderedText, e);
				parentNode.removeChild(e);
			}	
		}
	},

	applyElementVerticalMetrics: function(face, style, e) {

		var boundingBoxAdjustmentTop = this.pixelsFromPoints(face, style, face.ascender - Math.max(face.boundingBox.yMax, face.ascender)); 
		var boundingBoxAdjustmentBottom = this.pixelsFromPoints(face, style, Math.min(face.boundingBox.yMin, face.descender) - face.descender); 
				
		var cssLineHeightAdjustment = 0;
		if (style.lineHeight != 'normal') {
			cssLineHeightAdjustment = style.lineHeight - this.pixelsFromPoints(face, style, face.lineHeight);
		}
		
		var marginTop = Math.round(boundingBoxAdjustmentTop + cssLineHeightAdjustment / 2);
		var marginBottom = Math.round(boundingBoxAdjustmentBottom + cssLineHeightAdjustment / 2);

		e.style.marginTop = marginTop + 'px';
		e.style.marginBottom = marginBottom + 'px';
	
	},

	vectorBackends: {

		canvas: {

			_initializeSurface: function(face, style, text) {

				var extents = this.getTextExtents(face, style, text);

				var canvas = document.createElement('canvas');
				canvas.innerHTML = text;

				this.applyElementVerticalMetrics(face, style, canvas);
				canvas.height = Math.round(this.pixelsFromPoints(face, style, face.lineHeight));

				canvas.width = Math.round(this.pixelsFromPoints(face, style, extents.x, 'horizontal'));
	
				if (extents.x > extents.ha) 
					canvas.style.marginRight = Math.round(this.pixelsFromPoints(face, style, extents.x - extents.ha, 'horizontal')) + 'px';

				var ctx = canvas.getContext('2d');

				var pointScale = this.pixelsFromPoints(face, style, 1);
				ctx.scale(pointScale * style.fontStretchPercent, -1 * pointScale);
				ctx.translate(0, -1 * face.ascender);
				ctx.fillStyle = style.color;

				return { context: ctx, canvas: canvas };
			},

			_renderGlyph: function(ctx, face, char, style) {

				var glyph = face.glyphs[char];

				if (!glyph) {
					//this.log.error("glyph not defined: " + char);
					return this.renderGlyph(ctx, face, this.fallbackCharacter, style);
				}

				if (glyph.o) {

					var outline;
					if (glyph.cached_outline) {
						outline = glyph.cached_outline;
					} else {
						outline = glyph.o.split(' ');
						glyph.cached_outline = outline;
					}

					for (var i = 0; i < outline.length; ) {

						var action = outline[i++];

						switch(action) {
							case 'm':
								ctx.moveTo(outline[i++], outline[i++]);
								break;
							case 'l':
								ctx.lineTo(outline[i++], outline[i++]);
								break;

							case 'q':
								var cpx = outline[i++];
								var cpy = outline[i++];
								ctx.quadraticCurveTo(outline[i++], outline[i++], cpx, cpy);
								break;
						}
					}					
				}
				if (glyph.ha) {
					var letterSpacingPoints = 
						style.letterSpacing && style.letterSpacing != 'normal' ? 
							this.pointsFromPixels(face, style, style.letterSpacing) : 
							0;

					ctx.translate(glyph.ha + letterSpacingPoints, 0);
				}
			},

			_renderWord: function(face, style, text) {
				var surface = this.initializeSurface(face, style, text);
				var ctx = surface.context;
				var canvas = surface.canvas;
				ctx.beginPath();
				ctx.save();

				var chars = text.split('');
				for (var i = 0; i < chars.length; i++) {
					var char = chars[i];
					this.renderGlyph(ctx, face, char, style);
				}

				ctx.fill();

				if (style.textDecoration == 'underline') {

					ctx.beginPath();
					ctx.moveTo(0, face.underlinePosition);
					ctx.restore();
					ctx.lineTo(0, face.underlinePosition);
					ctx.strokeStyle = style.color;
					ctx.lineWidth = face.underlineThickness;
					ctx.stroke();
				}

				return ctx.canvas;
			}
		},

		vml: {

			_initializeSurface: function(face, style, text) {

				var shape = document.createElement('v:shape');

				var extents = this.getTextExtents(face, style, text);
				
				shape.style.width = style.fontSize + 'px'; 
				shape.style.height = style.fontSize + 'px'; 

				if (extents.x > extents.ha) {
					shape.style.marginRight = this.pixelsFromPoints(face, style, extents.x - extents.ha, 'horizontal') + 'px';
				}

				this.applyElementVerticalMetrics(face, style, shape);

				shape.coordsize = (face.resolution * 100 / style.fontStretchPercent / 72 ) + "," + (face.resolution * 100 / 72);
				
				shape.coordorigin = '0,' + face.ascender;
				shape.style.flip = 'y';

				shape.fillColor = style.color;
				shape.stroked = false;

				shape.path = 'hh m 0,' + face.ascender + ' l 0,' + face.descender + ' ';

				return shape;
			},

			_renderGlyph: function(shape, face, char, offsetX, style) {

				var glyph = face.glyphs[char];

				if (!glyph) {
					//this.log.error("glyph not defined: " + char);
					this.renderGlyph(shape, face, this.fallbackCharacter, offsetX, style);
				}
				
				var vmlSegments = [];

				if (glyph.o) {
					
					var outline;
					if (glyph.cached_outline) {
						outline = glyph.cached_outline;
					} else {
						outline = glyph.o.split(' ');
						glyph.cached_outline = outline;
					}

					var prevAction, prevX, prevY;

					var i;
					for (i = 0; i < outline.length;) {

						var action = outline[i++];
						var vmlSegment = '';

						var x = Math.round(outline[i++]) + offsetX;
						var y = Math.round(outline[i++]);
	
						switch(action) {
							case 'm':
								vmlSegment = (vmlSegments.length ? 'x ' : '') + 'm ' + x + ',' + y;
								break;
	
							case 'l':
								vmlSegment = 'l ' + x + ',' + y;
								break;

							case 'q':
								var cpx = Math.round(outline[i++]) + offsetX;
								var cpy = Math.round(outline[i++]);

								var cp1x = Math.round(prevX + 2.0 / 3.0 * (cpx - prevX));
								var cp1y = Math.round(prevY + 2.0 / 3.0 * (cpy - prevY));

								var cp2x = Math.round(cp1x + (x - prevX) / 3.0);
								var cp2y = Math.round(cp1y + (y - prevY) / 3.0);

								vmlSegment = 'c ' + cp1x + ',' + cp1y + ',' + cp2x + ',' + cp2y + ',' + x + ',' + y;
								break;
						}
						
						prevAction = action;
						prevX = x;
						prevY = y;
				
						if (vmlSegment.length) {
							vmlSegments.push(vmlSegment);
						}
					}					
				}

				vmlSegments.push('x', 'e');
				return vmlSegments.join(' ');
			},

			_renderWord: function(face, style, text) {
				var offsetX = 0;
				var shape = this.initializeSurface(face, style, text);
		
				var letterSpacingPoints = 
					style.letterSpacing && style.letterSpacing != 'normal' ? 
						this.pointsFromPixels(face, style, style.letterSpacing) : 
						0;

				letterSpacingPoints = Math.round(letterSpacingPoints);
				var chars = text.split('');
				for (var i = 0; i < chars.length; i++) {
					var char = chars[i];
					shape.path += this.renderGlyph(shape, face, char, offsetX, style) + ' ';
					offsetX += face.glyphs[char].ha + letterSpacingPoints ;	
				}

				shape.style.marginRight = this.pixelsFromPoints(face, style, face.glyphs[' '].ha) + 'px';
				return shape;
			}

		}

	},

	setVectorBackend: function(backend) {

		var backendFunctions = ['renderWord', 'initializeSurface', 'renderGlyph'];

		for (var i = 0; i < backendFunctions.length; i++) {
			var backendFunction = backendFunctions[i];
			this[backendFunction] = this.vectorBackends[backend]['_' + backendFunction];
		}
	}
};

// IE won't accept real selectors...
var typefaceSelectors = ['.typeface-js', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6'];

if (document.createStyleSheet) { 
	var styleSheet = document.createStyleSheet();
	for (var i = 0; i < typefaceSelectors.length; i++) {
		var selector = typefaceSelectors[i];
		styleSheet.addRule(selector, 'visibility: hidden');
	}

} else if (document.styleSheets && document.styleSheets.length) {
	var styleSheet = document.styleSheets[0];
	document.styleSheets[0].insertRule(typefaceSelectors.join(',') + ' { visibility: hidden; }', styleSheet.cssRules.length); 
}

var backend = !!(window.attachEvent && !window.opera) ? 'vml' : window.CanvasRenderingContext2D || document.createElement('canvas').getContext ? 'canvas' : null;

if (backend == 'vml') {
	
	document.namespaces.add("v");
	
	var styleSheet = document.createStyleSheet();
	styleSheet.addRule('v\\:*', "behavior: url(#default#VML); display: inline-block;");
}

_typeface_js.setVectorBackend(backend);

window._typeface_js = _typeface_js;
	
// based on code by Dean Edwards / Matthias Miller / John Resig

function typefaceInit() {

	// quit if this function has already been called
	if (arguments.callee.done) return;
	
	// flag this function so we don't do the same thing twice
	arguments.callee.done = true;

	// kill the timer
	if (window._typefaceTimer) clearInterval(_typefaceTimer);

	_typeface_js.renderDocument( function(e) { e.style.visibility = 'visible' } );
};

if (/WebKit/i.test(navigator.userAgent)) {

	var _typefaceTimer = setInterval(function() {
		if (/loaded|complete/.test(document.readyState)) {
			typefaceInit(); 
		}
	}, 10);
}

if (document.addEventListener) {
	window.addEventListener('DOMContentLoaded', function() { typefaceInit() }, false);
} 

/*@cc_on @*/
/*@if (@_win32)

document.write("<script id=__ie_onload_typeface defer src=javascript:void(0)><\/script>");
var script = document.getElementById("__ie_onload_typeface");
script.onreadystatechange = function() {
	if (this.readyState == "complete") {
		typefaceInit(); 
	}
};

/*@end @*/

})();



/**
 * Validate the input of a user if it is a valid email address
 * @param src; HTMLInputObject
 */

function findPos(obj) {
	var curleft = curtop = 0;
	if (obj.offsetParent) {
		curleft = obj.offsetLeft
		curtop = obj.offsetTop
		while (obj = obj.offsetParent) {
			curleft += obj.offsetLeft
			curtop += obj.offsetTop
		}
	}
	return [curleft,curtop];
}

function handleVisualErrorFloater (obj , result , error ) {
	var div = document.getElementById('error'),e;
	if ( result ) {
		e='';
		div.style.display = 'none'
		obj.className = obj.className.replace(" error", '');
		obj.validated = '1';
	}
	else{
		e = error;
		div.style.display = ''
		obj.className = obj.className.replace(" error", '');
		obj.className = obj.className+' error';
		obj.validated = '0';
	}
	document.getElementById('error-text').innerHTML = e;
	pos = findPos(obj);
	div.style.left = (pos[0]+50)+"px";
	div.style.top  = (pos[1]-30)+"px";
}
 
function validateEmail ( src ) {
	var emailreg = /^[a-zA-Z0-9._-]+@([a-zA-Z0-9.-]+\.)+[a-zA-Z0-9.-]{2,5}$/;
	return emailreg.test(src.value);
}

function validateZipcode ( src ) {
	var emailreg = /^[0-9]{4}\s*[a-zA-Z]{2}$/;
	return emailreg.test(src.value);
}
function validateRadio ( src ) {
	var radios = collectRadios ( src.form );
	for(var name in radios) {
		if ( name = src.name ) {
			for ( var i = 0 ; i < radios[name].length ; i++ ) {
		  		if(radios[name][i].checked) {
		  			return true;
		  		}
		  	}
  		}
	}
	return false;
}
function validateDate ( src ) {
	// dd-mm-yyyy
	var datereg = /^[0-3]{1}\d{1}-[0-1]\d{1}-\d{4}$/;
	return datereg.test(src.value);
}
function validateString ( src ) {
	return ( src.value.length > 0 );
}

function validatePasswdLength ( src ) {
	return ( src.value.length > 5 );
}

function validateNumber ( src ) {
	if ( validateString ( src ) ) {
		return !isNaN(src.value);
	}else{
		return false;
	}
}
function validateCheckbox (src) {
	return ( src.value.checked );
}
function checkValidation(method,obj) {
	return method.apply(this,[obj])
}
function handleVisualError(obj , result , error ) {
	if ( result ) {
		e='';
		document.getElementById('e'+obj.name).style.display = 'none'
		obj.className = obj.className.replace(" error", '');
		obj.validated = '1';
	}else{
		e = error;
		document.getElementById('e'+obj.name).style.display = ''
		obj.className = obj.className.replace(" error", '');
		obj.className = obj.className+' error';
		obj.validated = '0';
	}
	document.getElementById('e'+obj.name).innerHTML = e;
}
var checks = new Array();
function setRequiredFields(required) {
	checks = required;
}
function hasValidation(obj) {
	for ( var i = 0 ; i < checks.length ; i++ ) {
		if( obj.name == checks[i] ) {
			return true;
		}
	}
	return false;
}

function collectRadios (fObj) {
	var radios = new Object();
	for ( var i = 0 ; i < fObj.elements.length ; i++ ) {
		var obj = fObj.elements[i];
		if ( obj.type == 'radio' ) {
			if ( typeof ( radios[obj.name] ) != 'object'  ) {
				radios[obj.name] = new Array ();
			}
			radios[obj.name].push ( obj );
		}
	}
	return radios;
}

function submitAjaxForm ( fObj , ajaxFrame ) {
	if ( _submitForm ( fObj ) ) {
		new Ajax.Updater(ajaxFrame, fObj.action, {asynchronous:true, parameters:Form.serialize(fObj)})
	}
	return false;
}

function _submitForm ( fObj ) {
	var _validated = true;
	var radios = collectRadios(fObj);
	for ( var i = fObj.elements.length -1 ; i >= 0  ; i-- ) {
		var obj = fObj.elements[i];
		if ( hasValidation(obj) ) {
			switch ( obj.type ) {
				case "radio":
					var checked = false;
					if ( typeof ( radios[obj.name] ) == 'object' ) {
						for ( var u = 0 ; u < radios[obj.name].length ; u++ ) {
							if ( radios[obj.name][u].checked ) {
								checked = true;
							}
						}
						if ( ! checked ) {
							if ( typeof ( obj.onblur ) == 'function' ) {
								obj.onblur();
								if ( obj.validated == '0' ) {
									_validated = false;
								}
							}
						}
						delete radios[obj.name];
					}
					break;	
				default:			
				case "text":
				case "checkbox":
					if ( typeof ( obj.onblur ) == 'function' ) {
						obj.onblur();
						if ( obj.validated == '0' ) {
							_validated = false;
						}
					}
					break;
			}
		}
	}
	if ( _validated ) {
		return true
	}else{
		return false;
	}
}

function submitForm ( fObj ) {
	if ( _submitForm ( fObj ) ) {
		fObj.submit();
	}
	return false;
}

function report( msg ) {
	document.getElementById('report').innerHTML += msg+"<br />";
}
function setRadioValue( element , value ) {
	for (var i = 0 ; i < element.length ; i ++ ) {
		if ( element[i].value == value ) {
			element[i].checked = true;
		}
	}
}
function setSelectValue( element , value ) {
	for (var i = 0 ; i < element.length ; i ++ ) {
		if ( element[i].value == value ) {
			element.selectedIndex = i;
		}
	}
}


if (_typeface_js && _typeface_js.loadFace) _typeface_js.loadFace({"glyphs":{"S":{"x_min":-49.671875,"x_max":613.140625,"ha":591,"o":"m -3 304 q 91 245 42 266 q 187 224 141 224 q 252 246 228 224 q 276 308 276 269 q 256 376 276 342 q 178 465 236 409 q 83 585 109 533 q 58 701 58 638 q 145 926 58 843 q 384 1010 233 1010 q 500 996 445 1010 q 613 952 556 982 l 574 711 q 489 758 530 742 q 409 775 447 775 q 356 757 376 775 q 337 707 337 739 q 411 589 337 665 q 426 575 421 580 q 526 444 502 499 q 550 319 550 390 q 454 69 550 160 q 191 -22 358 -22 q 56 -4 120 -22 q -49 43 -6 12 l -3 304 "},"¦":{"x_min":261,"x_max":421,"ha":681,"o":"m 261 277 l 421 277 l 421 -237 l 261 -237 l 261 277 m 261 971 l 421 971 l 421 457 l 261 457 l 261 971 "},"/":{"x_min":-114.3125,"x_max":542.984375,"ha":491,"o":"m -114 -129 l 426 1009 l 542 1009 l 1 -129 l -114 -129 "},"y":{"x_min":-15.765625,"x_max":673.421875,"ha":621,"o":"m -15 -237 l 108 13 l 8 695 l 272 695 l 272 315 l 424 695 l 673 695 l 217 -237 l -15 -237 "},"Á":{"x_min":-105.15625,"x_max":616.3125,"ha":699,"o":"m -105 0 l 259 990 l 613 990 l 613 0 l 374 0 l 374 146 l 215 146 l 172 0 l -105 0 m 272 346 l 382 346 l 382 712 l 272 346 m 469 1084 l 364 1084 l 443 1296 l 616 1296 l 469 1084 "},"g":{"x_min":-34,"x_max":651.484375,"ha":672,"o":"m 334 515 q 272 453 298 515 q 247 306 247 392 q 257 247 247 266 q 289 228 267 228 q 349 289 324 228 q 375 437 375 350 q 364 495 375 475 q 334 515 354 515 m 417 695 l 651 695 l 547 31 q 451 -194 521 -136 q 217 -252 380 -252 q 26 -203 86 -252 q -34 -49 -34 -154 q -34 -36 -34 -44 q -34 -23 -34 -28 l 173 -23 l 173 -37 q 188 -71 173 -58 q 226 -85 203 -85 q 277 -62 258 -85 q 304 6 297 -39 l 321 121 q 248 55 289 77 q 161 32 207 32 q 41 92 84 32 q -2 259 -2 152 q 74 584 -2 455 q 265 714 151 714 q 343 693 311 714 q 404 625 375 672 l 417 695 "},"²":{"x_min":-54.75,"x_max":441,"ha":441,"o":"m -54 395 q 192 686 117 582 q 268 842 268 791 q 258 868 268 859 q 230 878 248 878 q 188 849 204 878 q 173 771 173 820 l 25 771 q 82 942 25 884 q 246 1001 140 1001 q 389 961 338 1001 q 441 853 441 922 q 395 721 441 796 q 248 535 350 647 l 376 535 l 352 395 l -54 395 "},"–":{"x_min":-35.21875,"x_max":671.25,"ha":681,"o":"m -35 264 l -9 431 l 671 431 l 645 264 l -35 264 "},"ë":{"x_min":1,"x_max":611,"ha":658,"o":"m 575 242 q 496 48 575 118 q 289 -21 418 -21 q 74 56 148 -21 q 1 283 1 134 q 92 596 1 479 q 339 714 184 714 q 537 645 464 714 q 611 461 611 577 q 611 396 611 431 q 602 318 611 361 l 242 318 q 236 266 238 285 q 235 235 235 247 q 251 182 235 199 q 299 165 267 165 q 353 184 334 165 q 372 242 372 203 l 575 242 m 259 435 l 405 435 q 407 467 407 457 q 407 485 407 477 q 392 535 407 518 q 350 553 378 553 q 292 525 313 553 q 259 435 271 497 m 413 915 q 440 980 413 953 q 505 1008 467 1008 q 569 980 542 1008 q 596 915 596 953 q 569 847 596 875 q 505 820 542 820 q 440 848 468 820 q 413 915 413 876 m 193 915 q 220 980 193 953 q 285 1008 247 1008 q 350 980 323 1008 q 377 915 377 953 q 350 847 377 875 q 285 820 323 820 q 220 848 248 820 q 193 915 193 876 "},"ƒ":{"x_min":-91.046875,"x_max":699.828125,"ha":669,"o":"m 322 -26 q 227 -199 289 -148 q 51 -250 165 -250 q -18 -241 16 -250 q -91 -214 -53 -232 l -35 -19 q -4 -26 -15 -24 q 17 -29 7 -29 q 60 -11 43 -29 q 87 46 76 6 l 194 449 l 89 449 l 134 614 l 237 614 l 285 786 q 381 959 319 908 q 556 1010 443 1010 q 626 1000 590 1010 q 699 974 661 991 l 644 778 q 611 786 622 784 q 590 789 600 789 q 547 770 564 789 q 521 713 530 751 l 497 614 l 597 614 l 552 449 l 451 449 l 322 -26 "},"Î":{"x_min":-11.96875,"x_max":476.515625,"ha":400,"o":"m -11 0 l 141 990 l 412 990 l 258 0 l -11 0 m 106 1084 l 239 1297 l 408 1297 l 476 1084 l 366 1084 l 307 1192 l 216 1084 l 106 1084 "},"e":{"x_min":1,"x_max":611,"ha":658,"o":"m 575 242 q 496 48 575 118 q 289 -21 418 -21 q 74 56 148 -21 q 1 283 1 134 q 92 596 1 479 q 339 714 184 714 q 537 645 464 714 q 611 461 611 577 q 611 396 611 431 q 602 318 611 361 l 242 318 q 236 266 238 285 q 235 235 235 247 q 251 182 235 199 q 299 165 267 165 q 353 184 334 165 q 372 242 372 203 l 575 242 m 259 435 l 404 435 q 407 467 407 457 q 407 485 407 477 q 392 535 407 518 q 350 553 378 553 q 292 525 313 553 q 259 435 271 497 "},"Ã":{"x_min":-105.15625,"x_max":654.203125,"ha":699,"o":"m -105 0 l 259 990 l 613 990 l 613 0 l 374 0 l 374 146 l 215 146 l 172 0 l -105 0 m 272 346 l 382 346 l 382 712 l 272 346 m 415 1156 q 401 1160 407 1159 q 387 1162 395 1162 q 355 1147 370 1162 q 333 1107 341 1133 l 271 1107 q 324 1246 290 1201 q 411 1291 358 1291 q 429 1289 420 1291 q 449 1284 437 1288 l 505 1261 q 521 1255 514 1257 q 534 1254 528 1254 q 568 1269 554 1254 q 590 1314 583 1284 l 654 1314 q 597 1170 632 1215 q 508 1125 562 1125 q 493 1126 501 1125 q 476 1131 484 1128 l 415 1156 "},"J":{"x_min":-59.8125,"x_max":523.703125,"ha":504,"o":"m 253 990 l 523 990 l 418 306 q 322 54 390 128 q 123 -20 253 -20 q 31 -9 75 -20 q -59 23 -13 1 l -23 260 q 28 234 6 242 q 69 226 51 226 q 123 249 105 226 q 152 341 141 272 l 253 990 "},"»":{"x_min":-20.609375,"x_max":511.75,"ha":573,"o":"m -20 113 l 159 353 l 51 580 l 178 644 l 301 353 l 85 50 l -20 113 m 190 113 l 370 353 l 262 580 l 389 644 l 511 353 l 298 50 l 190 113 "},"©":{"x_min":70,"x_max":1062,"ha":1133,"o":"m 808 604 l 669 604 q 637 674 664 649 q 565 699 610 699 q 479 646 510 699 q 449 500 449 594 q 480 356 449 405 q 573 308 512 308 q 644 335 618 308 q 671 413 671 362 l 814 413 q 746 257 814 316 q 570 198 678 198 q 369 277 443 198 q 296 495 296 357 q 370 718 296 635 q 569 801 444 801 q 741 746 674 801 q 808 604 808 692 m 566 915 q 410 884 483 915 q 281 793 338 853 q 191 657 222 733 q 160 499 160 581 q 191 343 160 418 q 281 207 222 267 q 412 117 338 149 q 567 86 486 86 q 722 117 647 86 q 856 208 797 149 q 942 339 913 265 q 972 499 972 413 q 942 658 972 584 q 855 792 912 733 q 723 883 796 852 q 566 915 649 915 m 565 1007 q 758 969 667 1007 q 919 858 848 931 q 1025 695 989 786 q 1062 499 1062 604 q 1026 305 1062 395 q 920 144 990 214 q 756 32 848 71 q 565 -7 664 -7 q 377 31 467 -7 q 216 142 287 70 q 107 306 145 215 q 70 499 70 397 q 108 692 70 600 q 217 859 146 785 q 375 969 287 931 q 565 1007 464 1007 "},"ò":{"x_min":1,"x_max":622,"ha":664,"o":"m 246 265 q 256 208 246 227 q 288 189 267 189 q 350 260 323 189 q 376 427 376 330 q 366 485 376 466 q 333 503 355 503 q 272 432 298 503 q 246 265 246 360 m 293 -21 q 75 56 150 -21 q 1 282 1 133 q 90 596 1 478 q 330 714 179 714 q 547 637 473 714 q 622 410 622 560 q 533 96 622 213 q 293 -21 444 -21 m 350 788 l 268 1000 l 449 1000 l 449 788 l 350 788 "},"^":{"x_min":275.140625,"x_max":1084.640625,"ha":1361,"o":"m 584 992 l 775 992 l 1084 610 l 909 610 l 680 842 l 450 610 l 275 610 l 584 992 "},"«":{"x_min":16.609375,"x_max":546.96875,"ha":573,"o":"m 475 113 l 348 50 l 228 353 l 439 644 l 546 580 l 370 353 l 475 113 m 263 113 l 136 50 l 16 353 l 228 644 l 336 580 l 158 353 l 263 113 "},"D":{"x_min":-20.203125,"x_max":718,"ha":741,"o":"m -20 0 l 133 990 l 339 990 q 625 897 533 990 q 718 612 718 805 q 672 324 718 463 q 555 111 626 185 q 420 25 496 50 q 183 0 344 0 l -20 0 m 290 244 q 296 243 293 243 q 305 243 299 243 q 350 254 329 243 q 387 286 372 266 q 433 419 411 319 q 455 618 455 519 q 434 713 455 683 q 369 744 414 744 l 290 244 "},"ÿ":{"x_min":-15.40625,"x_max":674.03125,"ha":621,"o":"m -15 -237 l 108 13 l 9 695 l 272 695 l 272 315 l 425 695 l 674 695 l 217 -237 l -15 -237 m 394 916 q 421 981 394 954 q 486 1009 448 1009 q 550 981 523 1009 q 577 916 577 954 q 550 848 577 876 q 486 821 523 821 q 421 849 449 821 q 394 916 394 877 m 174 916 q 201 981 174 954 q 266 1009 228 1009 q 331 981 304 1009 q 358 916 358 954 q 331 848 358 876 q 266 821 304 821 q 201 849 229 821 q 174 916 174 877 "},"í":{"x_min":-21.9375,"x_max":398.765625,"ha":357,"o":"m -21 0 l 85 694 l 332 694 l 224 0 l -21 0 m 251 788 l 146 788 l 225 1000 l 398 1000 l 251 788 "},"w":{"x_min":21.703125,"x_max":930.546875,"ha":891,"o":"m 21 694 l 249 694 l 249 265 l 375 694 l 573 694 l 573 265 l 703 694 l 930 694 l 654 0 l 433 0 l 433 406 l 300 0 l 81 0 l 21 694 "},"$":{"x_min":-41.609375,"x_max":675.71875,"ha":669,"o":"m 44 295 q 146 240 91 260 q 246 220 201 220 q 308 239 286 220 q 331 293 331 258 q 250 414 331 346 q 232 429 238 424 q 121 556 156 493 q 86 693 86 620 q 151 885 86 803 q 322 986 216 967 l 345 1129 l 510 1129 l 490 990 q 597 963 553 979 q 675 925 641 948 l 592 716 q 509 763 547 748 q 434 778 471 778 q 370 759 394 778 q 347 711 347 741 q 424 606 347 672 q 452 583 442 591 q 555 460 524 521 q 586 322 586 399 q 526 119 586 201 q 359 7 466 36 l 333 -155 l 167 -155 l 190 -5 q 51 15 113 -5 q -41 64 -10 35 l 44 295 "},"\\":{"x_min":106.34375,"x_max":400.09375,"ha":491,"o":"m 400 -129 l 292 -129 l 106 1009 l 212 1009 l 400 -129 "},"Ì":{"x_min":-11.515625,"x_max":413.171875,"ha":400,"o":"m -11 0 l 142 990 l 413 990 l 258 0 l -11 0 m 264 1084 l 183 1296 l 364 1296 l 364 1084 l 264 1084 "},"µ":{"x_min":-29.953125,"x_max":837.359375,"ha":874,"o":"m 128 738 l 366 738 l 312 380 q 307 327 307 352 q 307 283 307 302 q 330 196 307 225 q 401 168 353 168 q 492 214 459 168 q 541 363 525 260 l 600 739 l 837 739 l 721 0 l 507 0 l 519 84 q 460 11 493 33 q 380 -11 427 -11 q 309 10 341 -11 q 258 70 278 31 l 203 -290 l -29 -290 l 128 738 "},"Ç":{"x_min":12,"x_max":645.78125,"ha":590,"o":"m 603 736 q 558 754 579 749 q 514 760 536 760 q 361 667 419 760 q 304 421 304 574 q 338 275 304 322 q 445 227 373 227 q 483 231 462 227 q 526 242 503 235 l 484 4 q 424 -12 457 -7 q 349 -18 391 -18 q 98 79 185 -18 q 12 363 12 177 q 143 831 12 654 q 492 1009 275 1009 q 570 1001 532 1009 q 645 981 608 994 l 603 736 m 114 -296 l 129 -200 q 205 -223 167 -215 q 277 -231 242 -231 q 322 -216 305 -231 q 339 -180 339 -202 q 324 -152 339 -161 q 279 -143 310 -143 q 256 -143 264 -143 q 240 -144 247 -143 l 261 0 l 341 0 l 333 -56 l 343 -56 q 435 -82 404 -56 q 467 -160 467 -109 q 420 -283 467 -240 q 286 -327 373 -327 q 207 -319 250 -327 q 114 -296 164 -312 "},"’":{"x_min":25.921875,"x_max":422.03125,"ha":368,"o":"m 25 502 l 167 990 l 422 990 l 168 502 l 25 502 "},"-":{"x_min":7.96875,"x_max":424.6875,"ha":479,"o":"m 7 235 l 43 460 l 424 460 l 389 235 l 7 235 "},"Q":{"x_min":13,"x_max":758,"ha":771,"o":"m 337 -20 q 98 78 184 -20 q 13 352 13 177 q 47 619 13 490 q 142 838 82 749 q 277 966 200 924 q 452 1008 354 1008 q 675 907 593 1008 q 758 634 758 807 q 702 297 758 452 q 556 67 647 142 l 649 -47 l 421 -164 l 337 -20 m 285 329 q 299 248 285 273 q 346 223 314 223 q 396 246 375 223 q 433 320 417 269 q 469 479 455 386 q 483 657 483 572 q 468 738 483 712 q 425 765 454 765 q 372 742 394 765 q 335 669 351 719 q 299 506 313 600 q 285 329 285 411 "},"M":{"x_min":-47.515625,"x_max":975.84375,"ha":999,"o":"m 328 734 l 185 0 l -47 0 l 175 990 l 494 990 l 494 467 l 660 990 l 975 990 l 892 0 l 658 0 l 747 733 l 517 0 l 328 0 l 328 734 "},"C":{"x_min":12,"x_max":645.609375,"ha":590,"o":"m 603 736 q 557 754 579 749 q 514 760 536 760 q 361 667 419 760 q 304 421 304 574 q 338 275 304 323 q 445 228 373 228 q 483 231 462 228 q 525 242 503 235 l 484 4 q 424 -12 456 -7 q 349 -18 391 -18 q 98 79 185 -18 q 12 363 12 177 q 143 831 12 654 q 492 1009 275 1009 q 570 1001 532 1009 q 645 981 608 994 l 603 736 "},"!":{"x_min":8,"x_max":416.90625,"ha":403,"o":"m 154 1042 l 416 1042 l 298 374 l 67 374 l 154 1042 m 282 159 q 236 33 282 84 q 123 -17 191 -17 q 39 17 71 -17 q 8 108 8 51 q 53 234 8 183 q 166 286 98 286 q 250 251 218 286 q 282 159 282 216 "},"ç":{"x_min":-3,"x_max":470.015625,"ha":470,"o":"m 364 6 q 297 -12 331 -5 q 231 -19 264 -19 q 58 50 120 -19 q -3 244 -3 119 q 93 585 -3 456 q 348 714 189 714 q 408 706 378 714 q 470 686 439 699 l 436 473 q 408 487 422 483 q 378 492 394 492 q 305 438 334 492 q 276 303 276 384 q 291 234 276 255 q 341 213 306 213 q 369 217 354 213 q 398 228 384 221 l 364 6 m 16 -296 l 30 -200 q 107 -223 69 -215 q 179 -231 144 -231 q 224 -216 207 -231 q 241 -180 241 -202 q 226 -152 241 -161 q 181 -143 212 -143 q 157 -143 166 -143 q 141 -143 149 -143 l 163 1 l 243 1 l 235 -56 l 244 -56 q 337 -82 306 -56 q 369 -160 369 -109 q 322 -283 369 -240 q 187 -327 275 -327 q 109 -319 152 -327 q 16 -296 66 -312 "},"È":{"x_min":-21.53125,"x_max":613.171875,"ha":574,"o":"m -21 0 l 132 990 l 613 990 l 575 750 l 366 750 l 346 624 l 535 624 l 500 392 l 310 392 l 288 256 l 498 256 l 458 0 l -21 0 m 355 1084 l 274 1296 l 455 1296 l 455 1084 l 355 1084 "},"{":{"x_min":101,"x_max":593.578125,"ha":681,"o":"m 593 1003 l 593 839 q 579 839 588 839 q 566 839 570 839 q 478 815 501 839 q 456 716 456 791 l 456 553 q 425 417 456 458 q 315 359 394 376 q 425 303 395 343 q 456 168 456 264 l 456 4 q 478 -93 456 -70 q 565 -117 500 -117 q 579 -117 569 -117 q 593 -117 588 -117 l 593 -281 q 565 -281 583 -281 q 539 -281 547 -281 q 419 -273 467 -281 q 340 -248 372 -265 q 285 -188 301 -226 q 270 -58 270 -150 l 270 115 q 237 242 270 205 q 124 279 204 279 q 113 279 122 279 q 101 279 104 279 l 101 442 q 112 441 104 442 q 124 440 120 440 q 236 477 203 440 q 270 606 270 515 l 270 778 q 285 909 270 870 q 340 970 301 948 q 420 995 372 987 q 540 1003 468 1003 q 566 1003 548 1003 q 593 1003 583 1003 "},"X":{"x_min":-87.0625,"x_max":789.546875,"ha":721,"o":"m 215 501 l 85 990 l 366 990 l 396 727 l 507 990 l 789 990 l 507 501 l 654 0 l 367 0 l 323 261 l 200 0 l -87 0 l 215 501 "},"ô":{"x_min":1,"x_max":622,"ha":664,"o":"m 246 265 q 256 208 246 227 q 288 189 267 189 q 350 260 323 189 q 376 427 376 330 q 366 485 376 466 q 333 503 355 503 q 272 432 298 503 q 246 265 246 360 m 293 -21 q 75 56 150 -21 q 1 282 1 133 q 90 596 1 478 q 330 714 179 714 q 547 637 473 714 q 622 410 622 560 q 533 96 622 213 q 293 -21 444 -21 m 191 789 l 325 1002 l 494 1002 l 562 789 l 451 789 l 393 897 l 302 789 l 191 789 "},"¼":{"x_min":89.71875,"x_max":1066.03125,"ha":1069,"o":"m 862 226 l 895 412 l 776 226 l 862 226 m 824 0 l 844 113 l 630 113 l 651 230 l 869 554 l 1066 554 l 1008 226 l 1050 226 l 1031 113 l 988 113 l 969 0 l 824 0 m 193 -19 l 748 1010 l 873 1010 l 318 -19 l 193 -19 m 89 433 l 164 859 l 109 859 l 130 988 l 346 988 l 250 433 l 89 433 "},"#":{"x_min":15.28125,"x_max":1031.46875,"ha":1047,"o":"m 469 570 l 415 413 l 578 413 l 632 570 l 469 570 m 454 993 l 620 993 l 528 727 l 684 727 l 778 993 l 944 993 l 852 727 l 1031 727 l 974 570 l 796 570 l 743 415 l 927 415 l 871 258 l 688 258 l 594 -8 l 428 -8 l 521 258 l 364 258 l 271 -8 l 105 -8 l 197 258 l 15 258 l 72 415 l 251 415 l 306 570 l 118 570 l 175 727 l 360 727 l 454 993 "},"Ê":{"x_min":-21.9375,"x_max":612.765625,"ha":574,"o":"m -21 0 l 132 990 l 612 990 l 575 750 l 366 750 l 345 624 l 535 624 l 499 392 l 310 392 l 288 256 l 498 256 l 458 0 l -21 0 m 197 1084 l 330 1297 l 499 1297 l 567 1084 l 457 1084 l 398 1192 l 307 1084 l 197 1084 "},")":{"x_min":-82.15625,"x_max":400,"ha":451,"o":"m 56 -229 l -82 -126 q 119 207 50 35 q 189 548 189 380 q 164 767 189 663 q 87 969 139 871 l 259 1072 q 364 840 329 962 q 400 584 400 717 q 312 156 400 364 q 56 -229 225 -50 "},"Å":{"x_min":-91.46875,"x_max":604,"ha":701,"o":"m 296 1186 q 339 1294 296 1250 q 446 1339 383 1339 q 552 1294 508 1339 q 596 1186 596 1250 q 552 1078 596 1122 q 446 1034 508 1034 q 339 1078 383 1034 q 296 1186 296 1122 m 380 1186 q 399 1139 380 1158 q 446 1120 418 1120 q 492 1139 473 1120 q 512 1186 512 1159 q 492 1233 512 1214 q 446 1253 473 1253 q 399 1233 418 1253 q 380 1186 380 1214 m -91 0 l 282 990 l 604 990 l 604 0 l 375 0 l 375 146 l 214 146 l 172 0 l -91 0 m 272 346 l 383 346 l 383 712 l 272 346 "},"ø":{"x_min":-3.984375,"x_max":622,"ha":664,"o":"m 399 437 l 232 215 q 254 180 241 191 q 287 170 267 170 q 369 239 339 170 q 399 437 399 309 m 229 276 l 389 495 q 365 516 378 509 q 335 523 353 523 q 258 458 287 523 q 229 276 229 393 m 63 66 q 17 156 34 97 q 0 285 0 214 q 28 464 0 373 q 99 608 56 555 q 201 688 144 662 q 332 714 257 714 q 429 702 386 714 q 510 666 472 690 l 568 747 l 612 716 l 549 633 q 603 541 584 600 q 622 408 622 481 q 594 226 622 315 q 523 84 566 136 q 423 4 479 30 q 289 -21 366 -21 q 186 -7 231 -21 q 102 33 141 5 l 37 -54 l -3 -26 l 63 66 "},"â":{"x_min":0,"x_max":686.75,"ha":702,"o":"m 345 497 q 281 433 308 497 q 255 280 255 369 q 266 220 255 241 q 299 199 278 199 q 362 263 336 199 q 389 417 389 327 q 378 477 389 457 q 345 497 367 497 m 334 0 l 345 76 q 258 3 301 26 q 170 -19 216 -19 q 44 44 89 -19 q 0 222 0 107 q 81 573 0 432 q 284 714 163 714 q 366 691 331 714 q 429 618 400 668 l 442 694 l 686 694 l 579 0 l 334 0 m 252 789 l 385 1002 l 553 1002 l 621 789 l 511 789 l 452 897 l 361 789 l 252 789 "},"}":{"x_min":88.421875,"x_max":581,"ha":681,"o":"m 88 1003 q 116 1003 98 1003 q 141 1003 133 1003 q 261 995 213 1003 q 341 970 309 987 q 396 909 380 948 q 413 778 413 870 l 413 606 q 445 478 413 515 q 557 441 478 441 q 569 441 561 441 q 581 442 577 442 l 581 278 q 569 279 577 278 q 557 280 561 280 q 445 242 478 280 q 413 115 413 204 l 413 -58 q 396 -189 413 -150 q 341 -249 380 -228 q 266 -273 311 -265 q 148 -281 220 -281 q 119 -281 138 -281 q 88 -281 99 -281 l 88 -117 q 103 -117 94 -117 q 117 -117 113 -117 q 203 -93 181 -117 q 226 4 226 -70 l 226 168 q 256 303 226 263 q 366 360 287 343 q 256 417 286 377 q 226 553 226 456 l 226 716 q 203 815 226 791 q 119 839 181 839 q 104 839 115 839 q 88 839 94 839 l 88 1003 "},"‰":{"x_min":65,"x_max":1388,"ha":1454,"o":"m 965 186 q 1031 422 965 334 q 1210 510 1098 510 q 1341 456 1294 510 q 1388 308 1388 403 q 1324 69 1388 157 q 1151 -18 1260 -18 q 1013 35 1062 -18 q 965 186 965 89 m 1198 386 q 1147 318 1168 386 q 1127 154 1127 251 q 1134 124 1127 135 q 1156 114 1142 114 q 1184 126 1174 114 q 1204 170 1195 139 q 1222 257 1215 208 q 1230 339 1230 306 q 1222 374 1230 362 q 1198 386 1214 386 m 299 882 q 247 814 268 882 q 227 649 227 747 q 235 618 227 629 q 257 608 243 608 q 309 675 288 608 q 331 835 331 742 q 323 870 331 858 q 299 882 315 882 m 745 1009 l 870 1009 l 253 -19 l 128 -19 l 745 1009 m 508 186 q 574 422 508 334 q 752 510 640 510 q 884 456 837 510 q 932 308 932 402 q 867 70 932 158 q 693 -18 803 -18 q 556 35 605 -18 q 508 186 508 89 m 741 386 q 689 318 710 386 q 669 154 669 250 q 676 124 669 135 q 699 114 684 114 q 727 126 716 114 q 746 170 738 139 q 764 255 757 206 q 771 339 771 304 q 763 374 771 362 q 741 386 756 386 m 65 681 q 131 917 65 829 q 310 1005 198 1005 q 442 951 395 1005 q 489 803 489 898 q 425 564 489 651 q 252 478 361 478 q 113 530 162 478 q 65 681 65 583 "},"Ä":{"x_min":-104.859375,"x_max":663,"ha":700,"o":"m -104 0 l 260 990 l 613 990 l 613 0 l 374 0 l 374 146 l 215 146 l 172 0 l -104 0 m 272 346 l 382 346 l 382 712 l 272 346 m 480 1211 q 507 1276 480 1249 q 572 1304 534 1304 q 636 1276 609 1304 q 663 1211 663 1249 q 636 1143 663 1171 q 572 1116 609 1116 q 507 1144 535 1116 q 480 1211 480 1172 m 260 1211 q 287 1276 260 1249 q 352 1304 314 1304 q 417 1276 390 1304 q 444 1211 444 1249 q 417 1143 444 1171 q 352 1116 390 1116 q 287 1144 315 1116 q 260 1211 260 1172 "},"¸":{"x_min":83.359375,"x_max":436,"ha":681,"o":"m 83 -296 l 97 -200 q 174 -223 136 -215 q 246 -231 211 -231 q 291 -216 274 -231 q 308 -179 308 -202 q 293 -152 308 -161 q 248 -143 279 -143 q 224 -143 233 -143 q 208 -143 216 -143 l 230 1 l 310 1 l 302 -56 l 312 -56 q 404 -82 373 -56 q 436 -160 436 -109 q 389 -283 436 -240 q 255 -327 342 -327 q 176 -319 219 -327 q 83 -296 133 -312 "},"a":{"x_min":0,"x_max":686.75,"ha":702,"o":"m 345 497 q 281 433 308 497 q 255 280 255 369 q 266 220 255 241 q 299 199 278 199 q 362 263 336 199 q 389 417 389 327 q 378 477 389 457 q 345 497 367 497 m 334 0 l 345 76 q 258 3 301 26 q 170 -19 216 -19 q 44 44 89 -19 q 0 222 0 107 q 81 573 0 432 q 284 714 163 714 q 366 691 331 714 q 429 618 400 668 l 442 694 l 686 694 l 579 0 l 334 0 "},"—":{"x_min":-35.21875,"x_max":1351.8125,"ha":1361,"o":"m -35 264 l -9 431 l 1351 431 l 1324 264 l -35 264 "},"=":{"x_min":169,"x_max":965,"ha":1134,"o":"m 169 340 l 965 340 l 965 184 l 169 184 l 169 340 m 169 644 l 965 644 l 965 487 l 169 487 l 169 644 "},"N":{"x_min":-7.96875,"x_max":802.84375,"ha":799,"o":"m -7 0 l 146 990 l 397 990 l 484 458 l 575 990 l 802 990 l 650 0 l 401 0 l 309 512 l 223 0 l -7 0 "},"ú":{"x_min":-1,"x_max":660.0625,"ha":670,"o":"m 70 693 l 317 693 l 249 253 q 248 249 248 251 q 248 241 248 246 q 258 211 248 222 q 288 201 269 201 q 326 215 310 201 q 345 253 341 229 l 414 694 l 660 694 l 594 277 q 486 54 572 129 q 254 -20 401 -20 q 66 35 134 -20 q -1 190 -1 91 q 0 231 -1 209 q 6 277 2 253 l 70 693 m 408 788 l 303 788 l 382 1000 l 555 1000 l 408 788 "},"2":{"x_min":-82.625,"x_max":669,"ha":669,"o":"m -82 0 q 292 486 179 312 q 406 746 406 660 q 391 790 406 774 q 348 806 376 806 q 286 757 309 806 q 263 626 263 709 l 39 626 q 125 912 39 815 q 372 1010 212 1010 q 591 945 513 1010 q 669 763 669 880 q 600 545 669 669 q 374 235 531 420 l 570 235 l 534 0 l -82 0 "},"ü":{"x_min":-1,"x_max":660.484375,"ha":670,"o":"m 70 693 l 317 693 l 249 253 q 248 249 248 251 q 248 241 248 246 q 258 211 248 222 q 288 201 269 201 q 326 215 310 201 q 345 253 341 229 l 414 694 l 660 694 l 595 277 q 487 54 572 129 q 254 -20 401 -20 q 66 35 134 -20 q -1 190 -1 91 q 0 231 -1 209 q 6 277 2 253 l 70 693 m 419 915 q 446 980 419 953 q 511 1008 473 1008 q 575 980 548 1008 q 602 915 602 953 q 575 847 602 875 q 511 820 548 820 q 446 848 474 820 q 419 915 419 876 m 199 915 q 226 980 199 953 q 291 1008 253 1008 q 356 980 329 1008 q 383 915 383 953 q 356 847 383 875 q 291 820 329 820 q 226 848 254 820 q 199 915 199 876 "},"¯":{"x_min":224.640625,"x_max":586.84375,"ha":681,"o":"m 224 850 l 243 980 l 586 980 l 566 850 l 224 850 "},"Z":{"x_min":-91.046875,"x_max":740.375,"ha":649,"o":"m -91 0 l 326 742 l 73 742 l 112 990 l 740 990 l 326 254 l 585 254 l 545 0 l -91 0 "},"u":{"x_min":-1,"x_max":660.0625,"ha":670,"o":"m 70 693 l 317 693 l 249 253 q 248 249 248 251 q 248 241 248 246 q 258 211 248 222 q 288 201 269 201 q 326 215 310 201 q 345 253 341 229 l 414 694 l 660 694 l 594 277 q 486 54 572 129 q 254 -20 401 -20 q 66 35 134 -20 q -1 190 -1 91 q 0 231 -1 209 q 6 277 2 253 l 70 693 "},"Ó":{"x_min":13,"x_max":758,"ha":771,"o":"m 285 329 q 299 248 285 273 q 346 223 314 223 q 396 246 375 223 q 433 320 417 269 q 469 479 455 386 q 483 657 483 572 q 468 738 483 712 q 425 765 454 765 q 372 742 394 765 q 335 669 351 719 q 299 506 313 600 q 285 329 285 411 m 318 -20 q 96 81 180 -20 q 13 352 13 183 q 47 620 13 489 q 142 838 82 750 q 277 965 201 923 q 452 1008 354 1008 q 675 907 593 1008 q 758 635 758 807 q 723 368 758 497 q 628 149 688 239 q 494 22 571 64 q 318 -20 417 -20 m 504 1084 l 399 1084 l 479 1296 l 651 1296 l 504 1084 "},"k":{"x_min":-29.90625,"x_max":689.859375,"ha":673,"o":"m -29 0 l 138 1080 l 384 1080 l 279 399 l 437 694 l 689 694 l 495 388 l 606 0 l 341 0 l 271 345 l 216 0 l -29 0 "},"Ù":{"x_min":20,"x_max":793.90625,"ha":765,"o":"m 27 354 l 124 990 l 397 990 l 293 327 q 291 312 292 319 q 291 297 291 306 q 305 257 291 272 q 344 243 319 243 q 394 264 376 243 q 419 327 412 285 l 522 990 l 793 990 l 694 354 l 692 344 q 605 93 664 164 q 488 7 559 36 q 319 -21 417 -21 q 93 44 167 -21 q 20 244 20 109 q 20 291 20 265 q 27 354 20 317 m 446 1084 l 364 1296 l 546 1296 l 546 1084 l 446 1084 "},"€":{"x_min":-16.703125,"x_max":709.921875,"ha":668,"o":"m 709 981 l 670 758 q 628 773 648 768 q 587 778 608 778 q 472 736 523 778 q 392 620 421 695 l 626 620 l 596 541 l 370 541 q 363 501 366 523 q 361 455 361 480 l 565 455 l 535 376 l 363 376 q 400 248 363 287 q 514 209 437 209 q 547 211 529 209 q 584 220 565 214 l 546 -2 q 489 -17 520 -12 q 417 -22 459 -22 q 166 75 253 -22 q 79 354 79 172 l 79 376 l -16 376 l 13 455 l 82 455 q 88 508 86 490 q 93 540 90 525 l 9 540 l 39 619 l 111 619 q 281 905 162 803 q 564 1007 400 1007 q 638 1000 603 1007 q 709 981 674 994 "},"¢":{"x_min":102,"x_max":574.0625,"ha":668,"o":"m 469 156 q 419 134 444 142 q 367 127 394 127 l 355 40 l 237 40 l 252 139 q 140 233 178 167 q 102 400 102 299 q 177 699 102 568 q 364 856 252 829 l 378 946 l 494 946 l 481 863 q 529 855 506 863 q 574 836 553 848 l 541 622 q 516 634 528 630 q 489 639 503 639 q 409 584 441 639 q 378 447 378 530 q 395 383 378 405 q 446 361 413 361 q 470 364 457 361 q 503 375 483 367 l 469 156 "},"ß":{"x_min":-28.96875,"x_max":687,"ha":697,"o":"m -28 0 l 77 687 q 187 1012 114 929 q 412 1096 259 1096 q 612 1034 538 1096 q 687 866 687 972 q 644 722 687 786 q 526 625 601 658 q 627 547 593 601 q 662 411 662 493 q 633 203 662 297 q 556 61 604 108 q 469 11 521 27 q 342 -5 417 -5 q 297 -2 319 -5 q 255 5 276 0 l 282 182 q 294 181 288 181 q 311 181 300 181 q 385 246 362 181 q 409 452 409 311 q 397 509 409 492 q 359 526 385 526 q 347 526 351 526 q 339 526 343 526 l 367 699 l 373 699 q 432 732 413 699 q 452 834 452 765 q 438 876 452 860 q 403 893 424 893 q 356 866 372 893 q 327 761 339 840 l 210 0 l -28 0 "},"é":{"x_min":1,"x_max":611,"ha":658,"o":"m 575 242 q 496 48 575 118 q 289 -21 418 -21 q 74 56 148 -21 q 1 283 1 134 q 92 596 1 479 q 339 714 184 714 q 537 645 464 714 q 611 461 611 577 q 611 396 611 431 q 602 318 611 361 l 242 318 q 236 266 238 285 q 235 235 235 247 q 251 182 235 199 q 299 165 267 165 q 353 184 334 165 q 372 242 372 203 l 575 242 m 259 435 l 404 435 q 407 467 407 457 q 407 485 407 477 q 392 535 407 518 q 350 553 378 553 q 292 525 313 553 q 259 435 271 497 m 402 788 l 297 788 l 376 1000 l 549 1000 l 402 788 "},"s":{"x_min":-38.109375,"x_max":483.609375,"ha":533,"o":"m 32 244 q 109 188 71 207 q 180 170 147 170 q 219 181 205 170 q 234 211 234 192 q 176 278 234 242 q 158 290 164 286 q 60 379 89 335 q 31 479 31 422 q 102 648 31 583 q 288 714 173 714 q 389 701 339 714 q 483 663 440 688 l 441 479 q 376 520 406 506 q 318 534 345 534 q 278 522 293 534 q 264 492 264 511 q 304 441 264 470 q 327 425 319 431 q 438 318 414 360 q 463 219 463 276 q 390 47 463 112 q 196 -18 317 -18 q 75 1 136 -18 q -38 55 14 20 l 32 244 "},"B":{"x_min":-21,"x_max":725,"ha":740,"o":"m -21 0 l 133 990 l 383 990 q 645 936 565 990 q 725 762 725 882 q 673 604 725 664 q 518 520 622 543 q 636 444 594 499 q 678 311 678 389 q 649 179 678 241 q 568 75 620 117 q 455 17 520 35 q 282 0 391 0 l -21 0 m 278 206 q 292 204 285 205 q 311 204 300 204 q 384 236 359 204 q 409 330 409 269 q 386 400 409 377 q 317 424 363 424 l 309 424 l 278 206 m 338 608 q 349 607 343 607 q 368 607 355 607 q 439 633 413 607 q 466 703 466 659 q 445 760 466 741 q 383 780 424 780 q 374 779 380 780 q 365 779 368 779 l 338 608 "},"…":{"x_min":35,"x_max":1222,"ha":1361,"o":"m 314 162 q 267 34 314 87 q 151 -18 221 -18 q 67 17 99 -18 q 35 111 35 52 q 80 241 35 189 q 195 293 126 293 q 281 257 248 293 q 314 162 314 221 m 767 162 q 720 34 767 87 q 604 -18 674 -18 q 520 17 552 -18 q 488 111 488 52 q 533 241 488 189 q 648 293 579 293 q 734 257 701 293 q 767 162 767 221 m 1222 162 q 1175 34 1222 87 q 1059 -18 1129 -18 q 975 17 1007 -18 q 943 111 943 52 q 988 241 943 189 q 1103 293 1034 293 q 1189 257 1156 293 q 1222 162 1222 221 "},"?":{"x_min":69.171875,"x_max":688,"ha":677,"o":"m 189 375 l 228 622 q 255 617 242 618 q 281 616 268 616 q 389 665 348 616 q 431 790 431 714 q 417 852 431 832 q 378 873 404 873 q 327 842 347 873 q 296 749 307 812 l 69 749 q 172 987 83 902 q 405 1072 260 1072 q 614 1002 541 1072 q 688 806 688 933 q 621 602 688 689 q 455 516 554 516 l 420 375 l 189 375 m 399 158 q 354 32 399 82 q 240 -18 309 -18 q 156 16 188 -18 q 125 108 125 51 q 170 234 125 183 q 283 286 215 286 q 367 251 335 286 q 399 158 399 216 "},"H":{"x_min":-20.609375,"x_max":785.5625,"ha":765,"o":"m -20 0 l 133 990 l 404 990 l 348 632 l 459 632 l 514 990 l 785 990 l 631 0 l 360 0 l 420 387 l 310 387 l 250 0 l -20 0 "},"î":{"x_min":-21.9375,"x_max":408.0625,"ha":357,"o":"m -21 0 l 85 694 l 332 694 l 224 0 l -21 0 m 37 789 l 171 1002 l 340 1002 l 408 789 l 297 789 l 239 897 l 148 789 l 37 789 "},"c":{"x_min":-3,"x_max":469.40625,"ha":469,"o":"m 364 5 q 297 -12 330 -6 q 230 -19 264 -19 q 58 50 119 -19 q -3 244 -3 119 q 93 585 -3 456 q 347 714 189 714 q 408 706 377 714 q 469 686 438 699 l 436 473 q 408 487 422 483 q 377 492 394 492 q 305 438 334 492 q 276 303 276 384 q 291 234 276 255 q 341 213 306 213 q 369 217 354 213 q 398 228 383 221 l 364 5 "},"¶":{"x_min":19.421875,"x_max":663,"ha":681,"o":"m 663 1002 l 663 919 l 592 919 l 592 0 l 475 0 l 475 919 l 376 919 l 376 0 l 260 0 l 260 533 q 85 597 151 533 q 19 764 19 662 q 89 937 19 872 q 278 1002 160 1002 l 663 1002 "},"•":{"x_min":204,"x_max":597,"ha":802,"o":"m 204 516 q 261 657 204 599 q 401 716 319 716 q 539 657 482 716 q 597 516 597 598 q 538 374 597 433 q 399 315 480 315 q 261 373 318 315 q 204 516 204 432 "},"¥":{"x_min":11.96875,"x_max":792.203125,"ha":742,"o":"m 174 0 l 236 397 l 229 431 l 11 431 l 24 510 l 210 510 l 193 596 l 37 596 l 50 675 l 174 675 l 103 990 l 352 990 l 398 637 l 542 990 l 792 990 l 624 675 l 747 675 l 735 596 l 584 596 l 537 510 l 722 510 l 710 431 l 492 431 l 476 397 l 415 0 l 174 0 "},"(":{"x_min":27,"x_max":508.828125,"ha":450,"o":"m 168 -229 q 62 5 98 -119 q 27 269 27 130 q 115 688 27 480 q 369 1072 204 897 l 508 969 q 308 635 377 808 q 239 292 239 462 q 263 74 239 177 q 338 -126 288 -28 l 168 -229 "},"U":{"x_min":20,"x_max":793.453125,"ha":765,"o":"m 27 354 l 124 990 l 397 990 l 293 327 q 291 312 292 319 q 291 297 291 306 q 305 257 291 272 q 344 243 319 243 q 394 264 376 243 q 419 327 412 285 l 522 990 l 793 990 l 694 354 l 692 344 q 605 93 663 164 q 487 7 559 36 q 319 -21 416 -21 q 93 44 167 -21 q 20 244 20 109 q 20 291 20 265 q 27 354 20 317 "},"◊":{"x_min":3.984375,"x_max":668.59375,"ha":673,"o":"m 336 955 l 80 401 l 336 -157 l 592 401 l 336 955 m 336 1120 l 668 401 l 336 -323 l 3 401 l 336 1120 "},"Ñ":{"x_min":-7.96875,"x_max":802.84375,"ha":799,"o":"m -7 0 l 146 990 l 397 990 l 484 458 l 575 990 l 802 990 l 650 0 l 401 0 l 309 512 l 223 0 l -7 0 m 469 1156 q 456 1160 462 1159 q 442 1162 449 1162 q 410 1147 424 1162 q 388 1107 396 1133 l 325 1107 q 379 1246 344 1201 q 465 1291 413 1291 q 483 1289 475 1291 q 503 1284 492 1288 l 560 1261 q 576 1255 568 1257 q 589 1254 583 1254 q 623 1269 609 1254 q 645 1313 638 1284 l 709 1313 q 652 1170 687 1215 q 563 1125 617 1125 q 547 1126 556 1125 q 531 1131 539 1128 l 469 1156 "},"F":{"x_min":-23.265625,"x_max":611.4375,"ha":550,"o":"m -23 0 l 130 990 l 611 990 l 574 750 l 363 750 l 341 607 l 523 607 l 488 374 l 305 374 l 246 0 l -23 0 "},"­":{"x_min":7.96875,"x_max":424.6875,"ha":479,"o":"m 7 235 l 43 460 l 424 460 l 389 235 l 7 235 "},":":{"x_min":7,"x_max":348,"ha":403,"o":"m 348 564 q 301 436 348 488 q 186 384 255 384 q 100 419 133 384 q 68 513 68 455 q 114 642 68 590 q 229 695 160 695 q 315 659 282 695 q 348 564 348 623 m 286 162 q 239 34 286 87 q 123 -18 193 -18 q 39 17 71 -18 q 7 111 7 52 q 52 240 7 188 q 167 293 98 293 q 253 257 220 293 q 286 162 286 221 "},"Û":{"x_min":20,"x_max":793.453125,"ha":765,"o":"m 27 354 l 124 990 l 397 990 l 293 327 q 291 312 292 319 q 291 297 291 306 q 305 257 291 272 q 344 243 319 243 q 394 264 376 243 q 419 327 412 285 l 522 990 l 793 990 l 694 354 l 692 344 q 605 93 663 164 q 487 7 559 36 q 319 -21 416 -21 q 93 44 167 -21 q 20 244 20 109 q 20 291 20 265 q 27 354 20 317 m 288 1084 l 421 1297 l 590 1297 l 658 1084 l 548 1084 l 489 1192 l 398 1084 l 288 1084 "},"*":{"x_min":113.875,"x_max":575.125,"ha":630,"o":"m 289 510 l 289 651 l 169 581 l 113 678 l 233 750 l 113 820 l 169 919 l 288 848 l 288 990 l 401 990 l 401 848 l 519 919 l 575 820 l 455 750 l 575 678 l 519 581 l 401 651 l 401 510 l 289 510 "},"†":{"x_min":29.90625,"x_max":709.140625,"ha":702,"o":"m 122 -218 l 232 497 l 29 497 l 66 729 l 269 729 l 309 990 l 546 990 l 506 729 l 709 729 l 672 497 l 471 497 l 359 -218 l 122 -218 "},"°":{"x_min":18,"x_max":432,"ha":449,"o":"m 224 896 q 146 863 178 896 q 114 784 114 830 q 146 704 114 737 q 224 672 178 672 q 302 705 270 672 q 334 784 334 738 q 302 863 334 830 q 224 896 270 896 m 225 994 q 371 932 310 994 q 432 783 432 870 q 371 634 432 696 q 223 572 310 572 q 77 633 137 572 q 18 783 18 694 q 78 932 18 871 q 225 994 138 994 "},"V":{"x_min":102,"x_max":810.875,"ha":725,"o":"m 102 990 l 339 990 l 339 343 l 541 990 l 810 990 l 434 0 l 102 0 l 102 990 "},"å":{"x_min":0,"x_max":687.34375,"ha":703,"o":"m 373 895 q 391 850 373 869 q 436 832 410 832 q 482 850 463 832 q 501 895 501 869 q 482 942 501 922 q 436 962 463 962 q 392 942 411 962 q 373 895 373 922 m 291 897 q 333 1002 291 959 q 436 1045 376 1045 q 540 1001 497 1045 q 583 897 583 958 q 540 791 583 834 q 436 749 498 749 q 333 791 375 749 q 291 897 291 834 m 335 0 l 345 76 q 258 3 301 26 q 170 -19 216 -19 q 44 44 89 -19 q 0 222 0 107 q 81 573 0 432 q 284 714 163 714 q 366 691 331 714 q 429 618 401 668 l 442 694 l 687 694 l 579 0 l 335 0 m 345 497 q 281 433 308 497 q 255 280 255 369 q 266 220 255 241 q 299 199 278 199 q 362 263 336 199 q 389 417 389 327 q 378 477 389 457 q 345 497 367 497 "}," ":{"x_min":0,"x_max":0,"ha":669},"0":{"x_min":12,"x_max":655,"ha":669,"o":"m 247 282 q 255 227 247 245 q 283 209 264 209 q 323 238 304 209 q 361 335 341 268 q 404 533 388 431 q 421 702 421 636 q 411 759 421 740 q 382 778 401 778 q 342 748 360 778 q 306 652 325 719 q 262 451 278 553 q 247 282 247 349 m 268 -22 q 78 67 144 -22 q 12 323 12 156 q 53 632 12 481 q 163 874 95 782 q 270 972 209 938 q 399 1007 332 1007 q 589 916 523 1007 q 655 657 655 826 q 613 352 655 499 q 502 110 572 205 q 395 12 457 47 q 268 -22 333 -22 "},"”":{"x_min":31.234375,"x_max":731.0625,"ha":670,"o":"m 334 502 l 475 990 l 731 990 l 476 502 l 334 502 m 31 502 l 171 990 l 426 990 l 172 502 l 31 502 "},"¾":{"x_min":-18,"x_max":1066.65625,"ha":1071,"o":"m 863 226 l 896 412 l 777 226 l 863 226 m 825 0 l 844 113 l 630 113 l 652 230 l 870 554 l 1066 554 l 1009 226 l 1051 226 l 1032 113 l 988 113 l 969 0 l 825 0 m 194 -18 l 748 1010 l 874 1010 l 318 -18 l 194 -18 m -12 605 l 138 605 q 137 601 138 603 q 135 574 135 583 q 142 549 135 558 q 163 540 150 540 q 201 560 187 540 q 216 614 216 580 q 200 653 216 640 q 154 666 184 666 l 129 666 l 147 769 l 168 769 q 234 789 212 769 q 256 851 256 810 q 248 876 256 867 q 226 885 240 885 q 197 871 209 885 q 180 833 185 857 l 40 833 q 94 955 40 912 q 244 999 148 999 q 369 963 322 999 q 416 868 416 927 q 381 774 416 814 q 291 722 347 734 q 361 689 335 717 q 387 617 387 661 q 328 474 387 526 q 166 423 269 423 q 30 459 79 423 q -18 561 -18 496 q -16 577 -18 568 q -12 605 -15 586 "},"@":{"x_min":54,"x_max":1307,"ha":1360,"o":"m 772 177 q 686 95 733 121 q 574 70 639 70 q 410 129 466 70 q 355 304 355 188 q 449 578 355 467 q 681 689 543 689 q 770 668 732 689 q 833 605 808 647 l 868 668 l 1004 668 l 903 254 q 902 250 903 253 q 901 232 901 238 q 911 201 901 211 q 942 192 922 192 q 1102 289 1033 192 q 1171 516 1171 386 q 1051 781 1171 679 q 741 884 932 884 q 559 859 642 884 q 406 784 475 834 q 247 598 303 710 q 192 356 192 486 q 326 29 192 151 q 688 -92 461 -92 q 897 -59 796 -92 q 1083 34 998 -27 l 1148 -57 q 929 -175 1044 -136 q 687 -215 814 -215 q 452 -181 560 -215 q 260 -83 344 -148 q 105 107 156 0 q 54 352 54 215 q 89 569 54 467 q 193 758 124 672 q 431 946 291 882 q 742 1011 572 1011 q 954 979 855 1011 q 1127 890 1054 948 q 1262 725 1218 817 q 1307 518 1307 633 q 1263 309 1307 404 q 1137 146 1220 215 q 1034 88 1091 108 q 916 69 977 69 q 808 96 845 69 q 772 177 772 123 m 795 472 q 762 550 789 523 q 689 578 735 578 q 569 495 621 578 q 517 301 517 413 q 540 213 517 244 q 605 183 563 183 q 703 223 660 183 q 761 330 745 263 l 795 472 "},"ö":{"x_min":1,"x_max":622,"ha":664,"o":"m 246 265 q 256 208 246 227 q 288 189 267 189 q 350 260 323 189 q 376 427 376 330 q 366 485 376 466 q 333 503 355 503 q 272 432 298 503 q 246 265 246 360 m 293 -21 q 75 56 150 -21 q 1 282 1 133 q 90 596 1 478 q 330 714 179 714 q 547 637 473 714 q 622 410 622 560 q 533 96 622 213 q 293 -21 444 -21 m 415 915 q 442 980 415 953 q 507 1008 469 1008 q 571 980 544 1008 q 598 915 598 953 q 571 847 598 875 q 507 820 544 820 q 442 848 470 820 q 415 915 415 876 m 196 915 q 223 980 196 953 q 288 1008 250 1008 q 353 980 326 1008 q 380 915 380 953 q 353 847 380 875 q 288 820 326 820 q 223 848 251 820 q 196 915 196 876 "},"i":{"x_min":-22.25,"x_max":381,"ha":357,"o":"m -22 0 l 85 694 l 332 694 l 224 0 l -22 0 m 381 958 q 337 835 381 884 q 227 786 293 786 q 144 819 175 786 q 114 909 114 853 q 157 1033 114 984 q 267 1083 201 1083 q 350 1049 319 1083 q 381 958 381 1015 "},"Õ":{"x_min":13,"x_max":758,"ha":771,"o":"m 285 329 q 299 248 285 273 q 346 223 314 223 q 396 246 375 223 q 433 320 417 269 q 469 479 455 386 q 483 657 483 572 q 468 738 483 712 q 425 765 454 765 q 372 742 394 765 q 335 669 351 719 q 299 506 313 600 q 285 329 285 411 m 318 -20 q 96 81 180 -20 q 13 352 13 183 q 47 620 13 489 q 142 838 82 750 q 277 965 201 923 q 452 1008 354 1008 q 675 907 593 1008 q 758 635 758 807 q 723 368 758 497 q 628 149 688 239 q 494 22 571 64 q 318 -20 417 -20 m 450 1156 q 436 1160 443 1159 q 423 1162 430 1162 q 390 1147 404 1162 q 368 1106 376 1132 l 305 1106 q 359 1246 325 1201 q 446 1291 393 1291 q 464 1289 455 1291 q 484 1284 473 1288 l 540 1260 q 556 1254 549 1256 q 570 1253 564 1253 q 604 1268 589 1253 q 625 1313 618 1284 l 689 1313 q 632 1169 667 1214 q 544 1124 597 1124 q 528 1125 536 1124 q 511 1130 520 1127 l 450 1156 "},"þ":{"x_min":-58.625,"x_max":668,"ha":709,"o":"m -58 -237 l 145 1080 l 392 1080 l 322 644 q 402 696 362 679 q 486 713 443 713 q 621 649 574 713 q 668 463 668 584 q 587 119 668 258 q 390 -20 506 -20 q 299 -2 340 -20 q 229 47 257 14 l 186 -237 l -58 -237 m 275 276 q 287 214 275 234 q 323 194 299 194 q 387 257 361 194 q 413 417 413 321 q 401 478 413 459 q 365 498 389 498 q 301 433 327 498 q 275 276 275 369 "},"]":{"x_min":-67.796875,"x_max":430,"ha":451,"o":"m 233 -207 l -67 -207 l -41 -42 l 77 -42 l 221 890 l 102 890 l 128 1057 l 430 1057 l 233 -207 "},"m":{"x_min":-31.4375,"x_max":961,"ha":1002,"o":"m -31 0 l 76 694 l 298 694 l 286 622 q 367 685 322 663 q 461 707 411 707 q 570 676 529 707 q 616 589 610 645 q 691 676 645 646 q 794 707 737 707 q 917 665 873 707 q 961 550 961 624 q 959 504 961 528 q 953 453 957 480 l 881 0 l 635 0 l 700 409 q 700 418 700 412 q 702 433 702 431 q 691 464 702 453 q 662 475 680 475 q 629 457 642 475 q 611 407 616 440 l 548 0 l 302 0 l 366 409 q 366 418 366 412 q 369 433 369 431 q 358 463 369 452 q 332 475 348 475 q 295 458 308 475 q 277 407 282 442 l 213 0 l -31 0 "},"8":{"x_min":-11,"x_max":664,"ha":669,"o":"m 495 526 q 589 442 557 497 q 621 306 621 386 q 527 70 621 161 q 284 -20 433 -20 q 67 49 145 -20 q -11 242 -11 119 q 40 420 -11 343 q 181 526 92 496 q 97 609 126 559 q 69 726 69 659 q 157 931 69 853 q 390 1009 245 1009 q 592 944 520 1009 q 664 762 664 879 q 618 619 664 683 q 495 526 572 555 m 288 173 q 343 224 321 173 q 366 354 366 276 q 354 405 366 388 q 319 422 342 422 q 264 370 286 422 q 242 240 242 318 q 253 190 242 207 q 288 173 265 173 m 350 592 q 402 637 381 592 q 423 748 423 683 q 411 805 423 788 q 375 823 400 823 q 323 777 344 823 q 302 666 302 731 q 313 610 302 628 q 350 592 325 592 "},"R":{"x_min":-20.796875,"x_max":740,"ha":733,"o":"m 336 549 l 350 549 q 445 588 412 549 q 479 702 479 628 q 457 765 479 745 q 391 786 436 786 q 382 785 389 786 q 372 785 376 785 l 336 549 m -20 0 l 133 990 l 361 990 q 658 932 577 990 q 740 735 740 874 q 688 536 740 614 q 540 433 637 458 l 659 0 l 372 0 l 311 400 l 250 0 l -20 0 "},"á":{"x_min":0,"x_max":686.75,"ha":702,"o":"m 345 497 q 281 433 308 497 q 255 280 255 369 q 266 220 255 241 q 299 199 278 199 q 362 263 336 199 q 389 417 389 327 q 378 477 389 457 q 345 497 367 497 m 334 0 l 345 76 q 258 3 301 26 q 170 -19 216 -19 q 44 44 89 -19 q 0 222 0 107 q 81 573 0 432 q 284 714 163 714 q 366 691 331 714 q 429 618 400 668 l 442 694 l 686 694 l 579 0 l 334 0 m 465 788 l 360 788 l 439 1000 l 612 1000 l 465 788 "},"×":{"x_min":178.109375,"x_max":978.96875,"ha":1134,"o":"m 285 823 l 578 524 l 871 823 l 978 714 l 685 413 l 978 115 l 871 5 l 578 304 l 285 5 l 178 115 l 471 413 l 178 714 l 285 823 "},"o":{"x_min":1,"x_max":622,"ha":664,"o":"m 246 265 q 256 208 246 227 q 288 189 267 189 q 350 260 323 189 q 376 427 376 330 q 366 485 376 466 q 333 503 355 503 q 272 432 298 503 q 246 265 246 360 m 293 -21 q 75 56 150 -21 q 1 282 1 133 q 90 596 1 478 q 330 714 179 714 q 547 637 473 714 q 622 410 622 560 q 533 96 622 213 q 293 -21 444 -21 "},"5":{"x_min":-72.390625,"x_max":684.46875,"ha":669,"o":"m 1 276 q 101 225 51 242 q 200 209 152 209 q 302 243 265 209 q 339 339 339 278 q 298 427 339 397 q 178 456 258 456 q 110 449 146 456 q 29 428 73 443 l 201 990 l 684 990 l 651 772 l 349 772 l 305 630 q 348 637 328 634 q 389 639 369 639 q 560 574 498 639 q 622 396 622 510 q 510 94 622 209 q 212 -20 398 -20 q 69 -3 137 -20 q -72 47 0 12 l 1 276 "},"õ":{"x_min":1,"x_max":622,"ha":664,"o":"m 246 265 q 256 208 246 227 q 288 189 267 189 q 350 260 323 189 q 376 427 376 330 q 366 485 376 466 q 333 503 355 503 q 272 432 298 503 q 246 265 246 360 m 293 -21 q 75 56 150 -21 q 1 282 1 133 q 90 596 1 478 q 330 714 179 714 q 547 637 473 714 q 622 410 622 560 q 533 96 622 213 q 293 -21 444 -21 m 351 860 q 337 864 344 863 q 324 866 331 866 q 291 851 306 866 q 269 811 277 837 l 207 811 q 260 950 226 905 q 347 995 294 995 q 365 993 356 995 q 385 988 374 992 l 441 965 q 457 959 450 961 q 471 958 465 958 q 505 973 491 958 q 526 1018 519 988 l 590 1018 q 533 874 568 919 q 445 829 499 829 q 429 830 437 829 q 412 835 421 832 l 351 860 "},"7":{"x_min":10.640625,"x_max":739.046875,"ha":669,"o":"m 10 0 l 410 759 l 107 759 l 142 990 l 739 990 l 311 0 l 10 0 "},"K":{"x_min":-20.609375,"x_max":830.09375,"ha":748,"o":"m -20 0 l 133 990 l 404 990 l 340 576 l 554 990 l 830 990 l 560 532 l 683 0 l 389 0 l 321 450 l 250 0 l -20 0 "},",":{"x_min":-123.609375,"x_max":272.484375,"ha":336,"o":"m -123 -231 l 17 257 l 272 257 l 19 -231 l -123 -231 "},"d":{"x_min":0,"x_max":746.5625,"ha":697,"o":"m 393 418 q 380 480 393 460 q 344 501 368 501 q 281 436 307 501 q 256 277 256 372 q 267 216 256 235 q 303 197 279 197 q 366 261 340 197 q 393 418 393 325 m 334 0 l 345 76 q 259 4 301 26 q 171 -18 218 -18 q 45 44 90 -18 q 0 222 0 107 q 81 572 0 432 q 284 713 163 713 q 366 690 331 713 q 429 617 400 667 l 501 1079 l 746 1079 l 579 0 l 334 0 "},"¨":{"x_min":204,"x_max":607,"ha":681,"o":"m 424 915 q 451 980 424 953 q 516 1008 478 1008 q 580 980 553 1008 q 607 915 607 953 q 580 847 607 875 q 516 820 553 820 q 451 848 479 820 q 424 915 424 876 m 204 915 q 231 980 204 953 q 296 1008 258 1008 q 361 980 334 1008 q 388 915 388 953 q 361 847 388 875 q 296 820 334 820 q 231 848 259 820 q 204 915 204 876 "},"Ô":{"x_min":13,"x_max":758,"ha":771,"o":"m 285 329 q 299 248 285 273 q 346 223 314 223 q 396 246 375 223 q 433 320 417 269 q 469 479 455 386 q 483 657 483 572 q 468 738 483 712 q 425 765 454 765 q 372 742 394 765 q 335 669 351 719 q 299 506 313 600 q 285 329 285 411 m 318 -20 q 96 81 180 -20 q 13 352 13 183 q 47 620 13 489 q 142 838 82 750 q 277 965 201 923 q 452 1008 354 1008 q 675 907 593 1008 q 758 635 758 807 q 723 368 758 497 q 628 149 688 239 q 494 22 571 64 q 318 -20 417 -20 m 290 1084 l 424 1297 l 593 1297 l 661 1084 l 550 1084 l 492 1192 l 401 1084 l 290 1084 "},"E":{"x_min":-21.9375,"x_max":612.765625,"ha":574,"o":"m -21 0 l 132 990 l 612 990 l 575 750 l 366 750 l 345 624 l 535 624 l 499 392 l 310 392 l 288 256 l 498 256 l 458 0 l -21 0 "},"Y":{"x_min":62.46875,"x_max":781.578125,"ha":690,"o":"m 62 990 l 348 990 l 375 686 l 495 990 l 781 990 l 465 397 l 404 0 l 133 0 l 196 397 l 62 990 "},"\"":{"x_min":51,"x_max":425,"ha":474,"o":"m 277 975 l 425 975 l 425 595 l 277 595 l 277 975 m 51 975 l 197 975 l 197 595 l 51 595 l 51 975 "},"‹":{"x_min":23.265625,"x_max":342.9375,"ha":374,"o":"m 269 113 l 142 50 l 23 353 l 235 644 l 342 580 l 164 353 l 269 113 "},"ê":{"x_min":1,"x_max":611,"ha":658,"o":"m 575 242 q 496 48 575 118 q 289 -21 418 -21 q 74 56 148 -21 q 1 283 1 134 q 92 596 1 479 q 339 714 184 714 q 537 645 464 714 q 611 461 611 577 q 611 396 611 431 q 602 318 611 361 l 242 318 q 236 266 238 285 q 235 235 235 247 q 251 182 235 199 q 299 165 267 165 q 353 184 334 165 q 372 242 372 203 l 575 242 m 259 435 l 404 435 q 407 467 407 457 q 407 485 407 477 q 392 535 407 518 q 350 553 378 553 q 292 525 313 553 q 259 435 271 497 m 189 789 l 322 1002 l 491 1002 l 559 789 l 448 789 l 390 897 l 299 789 l 189 789 "},"Ï":{"x_min":-12.296875,"x_max":513,"ha":400,"o":"m -12 0 l 141 990 l 412 990 l 258 0 l -12 0 m 330 1211 q 357 1276 330 1249 q 422 1304 384 1304 q 486 1276 459 1304 q 513 1211 513 1249 q 486 1143 513 1171 q 422 1116 459 1116 q 357 1144 385 1116 q 330 1211 330 1172 m 110 1211 q 137 1276 110 1249 q 202 1304 164 1304 q 267 1276 240 1304 q 294 1211 294 1249 q 267 1143 294 1171 q 202 1116 240 1116 q 137 1144 165 1116 q 110 1211 110 1172 "},"„":{"x_min":-106.34375,"x_max":593.5,"ha":670,"o":"m 197 -231 l 338 257 l 593 257 l 340 -231 l 197 -231 m -106 -231 l 35 257 l 289 257 l 36 -231 l -106 -231 "},"Â":{"x_min":-105.15625,"x_max":625.625,"ha":699,"o":"m -105 0 l 259 990 l 613 990 l 613 0 l 374 0 l 374 146 l 215 146 l 172 0 l -105 0 m 272 346 l 382 346 l 382 712 l 272 346 m 255 1084 l 389 1297 l 557 1297 l 625 1084 l 515 1084 l 457 1192 l 366 1084 l 255 1084 "},"Í":{"x_min":-11.96875,"x_max":467.21875,"ha":400,"o":"m -11 0 l 141 990 l 412 990 l 258 0 l -11 0 m 320 1084 l 215 1084 l 294 1296 l 467 1296 l 320 1084 "},"´":{"x_min":309.046875,"x_max":560.921875,"ha":681,"o":"m 414 789 l 309 789 l 388 1001 l 560 1001 l 414 789 "},"ì":{"x_min":-22.015625,"x_max":332.21875,"ha":357,"o":"m -22 0 l 85 694 l 332 694 l 224 0 l -22 0 m 195 788 l 114 1000 l 295 1000 l 295 788 l 195 788 "},"±":{"x_min":169,"x_max":965,"ha":1134,"o":"m 169 145 l 965 145 l 965 -12 l 169 -12 l 169 145 m 489 842 l 647 842 l 647 625 l 965 625 l 965 468 l 647 468 l 647 252 l 489 252 l 489 468 l 169 468 l 169 625 l 489 625 l 489 842 "},"Ú":{"x_min":20,"x_max":793.453125,"ha":765,"o":"m 27 354 l 124 990 l 397 990 l 293 327 q 291 312 292 319 q 291 297 291 306 q 305 257 291 272 q 344 243 319 243 q 394 264 376 243 q 419 327 412 285 l 522 990 l 793 990 l 694 354 l 692 344 q 605 93 663 164 q 487 7 559 36 q 319 -21 416 -21 q 93 44 167 -21 q 20 244 20 109 q 20 291 20 265 q 27 354 20 317 m 502 1084 l 397 1084 l 476 1296 l 649 1296 l 502 1084 "},"|":{"x_min":261,"x_max":421,"ha":681,"o":"m 261 1062 l 421 1062 l 421 -327 l 261 -327 l 261 1062 "},"§":{"x_min":-7,"x_max":657,"ha":703,"o":"m 259 365 q 273 310 259 329 q 317 292 288 292 q 385 333 359 292 q 411 442 411 374 q 395 487 411 469 q 357 505 379 505 q 285 466 312 505 q 259 365 259 427 m 222 585 q 148 658 173 614 q 124 759 124 702 q 202 939 124 869 q 406 1010 281 1010 q 593 951 529 1010 q 657 781 657 893 q 657 767 657 776 q 657 753 657 758 l 470 753 q 470 772 470 762 q 470 785 470 783 q 453 839 470 821 q 404 857 436 857 q 348 828 369 857 q 327 753 327 800 q 449 645 327 694 q 474 635 465 639 q 600 550 560 600 q 640 428 640 500 q 588 286 640 343 q 444 213 536 229 q 520 142 495 185 q 546 37 546 98 q 463 -161 546 -85 q 244 -237 381 -237 q 57 -178 121 -237 q -7 -8 -7 -120 q -7 4 -7 -3 q -7 19 -7 13 l 180 19 q 180 3 180 14 q 180 -12 180 -7 q 198 -66 180 -48 q 253 -84 216 -84 q 321 -52 298 -84 q 345 40 345 -20 q 234 148 345 101 q 211 158 219 155 q 71 251 109 204 q 33 371 33 298 q 83 508 33 451 q 222 585 133 565 "},"Ý":{"x_min":62.46875,"x_max":781.578125,"ha":690,"o":"m 62 990 l 348 990 l 375 686 l 495 990 l 781 990 l 465 397 l 404 0 l 133 0 l 196 397 l 62 990 m 464 1084 l 359 1084 l 438 1296 l 611 1296 l 464 1084 "},"b":{"x_min":-31.078125,"x_max":657,"ha":698,"o":"m -31 0 l 136 1081 l 381 1081 l 310 618 q 395 690 353 666 q 485 713 437 713 q 611 649 566 713 q 657 472 657 586 q 575 122 657 262 q 371 -18 493 -18 q 289 4 324 -18 q 226 77 254 27 l 214 0 l -31 0 m 264 277 q 276 215 264 235 q 313 195 288 195 q 376 258 351 195 q 402 418 402 322 q 390 479 402 459 q 352 499 378 499 q 289 435 315 499 q 264 277 264 371 "},"q":{"x_min":0,"x_max":687.078125,"ha":697,"o":"m 542 -239 l 298 -239 l 345 74 q 258 1 300 23 q 170 -21 216 -21 q 44 42 89 -21 q 0 220 0 105 q 81 573 0 433 q 284 714 162 714 q 365 690 330 714 q 429 617 400 667 l 442 693 l 687 693 l 542 -239 m 255 276 q 267 214 255 234 q 303 194 279 194 q 366 257 341 194 q 392 417 392 321 q 380 478 392 459 q 344 498 368 498 q 281 433 307 498 q 255 276 255 369 "},"Ö":{"x_min":13,"x_max":758,"ha":771,"o":"m 285 329 q 299 248 285 273 q 346 223 314 223 q 396 246 375 223 q 433 320 417 269 q 469 479 455 386 q 483 657 483 572 q 469 738 483 712 q 425 765 455 765 q 373 742 394 765 q 336 669 351 719 q 299 506 314 600 q 285 329 285 411 m 318 -20 q 96 81 180 -20 q 13 352 13 183 q 47 620 13 489 q 142 838 82 750 q 277 965 201 923 q 452 1008 354 1008 q 675 907 593 1008 q 758 635 758 807 q 723 368 758 497 q 628 149 688 239 q 494 22 571 64 q 318 -20 417 -20 m 514 1211 q 541 1276 514 1249 q 606 1304 568 1304 q 670 1276 643 1304 q 697 1211 697 1249 q 670 1143 697 1171 q 606 1116 643 1116 q 541 1144 569 1116 q 514 1211 514 1172 m 295 1211 q 322 1276 295 1249 q 387 1304 349 1304 q 452 1276 425 1304 q 479 1211 479 1249 q 452 1143 479 1171 q 387 1116 425 1116 q 322 1144 350 1116 q 295 1211 295 1172 "},"z":{"x_min":-96.375,"x_max":593.5,"ha":574,"o":"m -96 0 l 202 474 l 27 474 l 61 694 l 593 694 l 303 229 l 502 229 l 466 0 l -96 0 "},"™":{"x_min":125,"x_max":976,"ha":1134,"o":"m 530 993 l 678 993 l 753 787 l 829 993 l 976 993 l 976 619 l 873 619 l 873 883 l 775 619 l 732 619 l 633 883 l 633 619 l 530 619 l 530 993 m 125 993 l 459 993 l 459 907 l 350 907 l 350 619 l 234 619 l 234 907 l 125 907 l 125 993 "},"ã":{"x_min":0,"x_max":686.75,"ha":702,"o":"m 345 497 q 281 433 308 497 q 255 280 255 369 q 266 220 255 241 q 299 199 278 199 q 362 263 336 199 q 389 417 389 327 q 378 477 389 457 q 345 497 367 497 m 334 0 l 345 76 q 258 3 301 26 q 170 -19 216 -19 q 44 44 89 -19 q 0 222 0 107 q 81 573 0 432 q 284 714 163 714 q 366 691 331 714 q 429 618 400 668 l 442 694 l 686 694 l 579 0 l 334 0 m 410 860 q 397 864 403 863 q 383 866 391 866 q 351 851 365 866 q 329 811 337 837 l 267 811 q 320 950 286 905 q 407 995 354 995 q 424 993 416 995 q 444 988 433 992 l 501 965 q 517 959 509 961 q 530 958 524 958 q 564 973 550 958 q 586 1018 579 988 l 650 1018 q 593 874 628 919 q 504 829 558 829 q 489 830 497 829 q 472 835 480 832 l 410 860 "},"æ":{"x_min":-34,"x_max":961,"ha":1009,"o":"m 259 281 q 202 260 225 281 q 179 212 179 240 q 202 164 179 184 q 259 144 225 144 q 315 162 294 144 q 337 212 337 181 q 315 262 337 243 q 259 281 294 281 m 609 435 l 755 435 q 758 467 758 456 q 758 485 758 477 q 743 535 758 518 q 700 553 728 553 q 642 525 664 553 q 609 435 621 497 m 593 318 q 589 291 591 308 q 585 235 585 249 q 600 182 585 199 q 649 165 616 165 q 702 184 683 165 q 724 242 721 203 l 925 242 q 846 48 925 118 q 638 -21 767 -21 q 512 0 567 -21 q 409 67 456 22 q 307 2 367 24 q 172 -20 247 -20 q 21 36 76 -20 q -34 193 -34 93 q 33 370 -34 302 q 211 439 101 439 q 291 429 252 439 q 375 398 331 419 q 378 441 375 417 q 381 470 381 465 q 346 535 381 513 q 243 557 311 557 q 161 544 204 557 q 67 504 117 531 l 97 677 q 206 707 153 697 q 315 717 259 717 q 433 698 384 717 q 516 642 482 680 q 603 696 558 679 q 701 714 648 714 q 889 644 817 714 q 961 461 961 574 q 961 396 961 431 q 952 318 961 361 l 593 318 "},"®":{"x_min":70,"x_max":1062,"ha":1133,"o":"m 506 693 l 506 544 l 559 544 q 632 562 608 544 q 657 616 657 580 q 631 674 657 656 q 550 693 606 693 l 506 693 m 356 789 l 574 789 q 750 748 690 789 q 811 627 811 707 q 780 533 811 572 q 695 477 749 493 l 816 233 l 651 233 l 549 454 l 506 454 l 506 233 l 356 233 l 356 789 m 566 915 q 412 885 484 915 q 283 799 340 855 q 193 661 224 738 q 162 499 162 584 q 191 344 162 417 q 277 212 220 271 q 409 118 334 151 q 565 86 483 86 q 719 116 645 86 q 852 205 793 147 q 941 338 910 262 q 972 499 972 414 q 942 657 972 583 q 857 789 913 731 q 724 883 798 851 q 566 915 650 915 m 565 1007 q 761 968 669 1007 q 923 854 852 929 q 1026 692 990 783 q 1062 499 1062 602 q 1024 302 1062 394 q 915 140 986 210 q 752 30 842 68 q 565 -7 662 -7 q 374 32 465 -7 q 213 146 284 71 q 106 310 143 220 q 70 499 70 401 q 109 696 70 602 q 221 863 148 790 q 378 970 291 934 q 565 1007 466 1007 "},"É":{"x_min":-21.9375,"x_max":612.765625,"ha":574,"o":"m -21 0 l 132 990 l 612 990 l 575 750 l 366 750 l 345 624 l 535 624 l 499 392 l 310 392 l 288 256 l 498 256 l 458 0 l -21 0 m 411 1084 l 306 1084 l 385 1296 l 558 1296 l 411 1084 "},"~":{"x_min":118,"x_max":1017,"ha":1134,"o":"m 1017 555 l 1017 383 q 888 313 949 336 q 766 290 826 290 q 707 295 736 290 q 651 309 677 300 q 626 318 643 312 q 372 379 457 379 q 255 353 316 379 q 118 271 195 328 l 118 444 q 255 517 192 493 q 375 542 319 542 q 459 533 417 542 q 572 502 501 525 q 606 491 582 499 q 770 453 711 453 q 885 477 826 453 q 1017 555 945 501 "},"³":{"x_min":-18,"x_max":434,"ha":441,"o":"m -12 577 l 144 577 q 142 564 143 571 q 142 545 142 557 q 149 517 142 527 q 170 508 157 508 q 211 529 196 508 q 226 587 226 550 q 209 629 226 615 q 162 643 193 643 l 136 643 l 155 754 q 163 753 159 753 q 175 753 167 753 q 244 775 221 753 q 268 843 268 798 q 260 869 268 860 q 236 879 252 879 q 207 864 220 879 q 189 823 194 849 l 42 823 q 98 953 42 907 q 254 1000 155 1000 q 385 961 337 1000 q 434 859 434 923 q 398 759 434 802 q 305 704 362 717 q 378 668 351 699 q 405 590 405 637 q 343 438 405 494 q 173 383 281 383 q 32 421 83 383 q -18 529 -18 460 q -16 554 -18 542 q -12 577 -15 565 "},"¡":{"x_min":-5.265625,"x_max":399,"ha":403,"o":"m 256 0 l -5 0 l 114 668 l 343 668 l 256 0 m 399 936 q 353 810 399 861 q 240 760 308 760 q 156 794 188 760 q 125 886 125 829 q 170 1012 125 961 q 283 1064 215 1064 q 367 1028 335 1064 q 399 936 399 993 "},"[":{"x_min":-1.328125,"x_max":497.125,"ha":451,"o":"m -1 -207 l 194 1057 l 497 1057 l 471 890 l 350 890 l 206 -42 l 326 -42 l 301 -207 l -1 -207 "},"L":{"x_min":-21.9375,"x_max":487.15625,"ha":548,"o":"m -21 0 l 132 989 l 404 989 l 288 245 l 487 245 l 449 0 l -21 0 "}," ":{"x_min":0,"x_max":0,"ha":334},"%":{"x_min":65,"x_max":932,"ha":998,"o":"m 65 681 q 131 917 65 829 q 310 1005 198 1005 q 442 951 395 1005 q 489 803 489 898 q 425 564 489 651 q 252 478 361 478 q 113 530 162 478 q 65 681 65 583 m 741 386 q 689 318 710 386 q 669 154 669 250 q 676 124 669 135 q 699 114 684 114 q 727 126 716 114 q 746 170 738 139 q 764 255 757 206 q 771 339 771 304 q 763 374 771 362 q 741 386 756 386 m 508 186 q 574 422 508 334 q 752 510 640 510 q 884 456 837 510 q 932 308 932 402 q 867 70 932 158 q 693 -18 803 -18 q 556 35 605 -18 q 508 186 508 89 m 745 1009 l 870 1009 l 253 -19 l 128 -19 l 745 1009 m 299 882 q 247 814 268 882 q 227 649 227 747 q 235 618 227 629 q 257 608 243 608 q 309 675 288 608 q 331 835 331 742 q 323 870 331 858 q 299 882 315 882 "},"P":{"x_min":-20.46875,"x_max":734,"ha":731,"o":"m 370 771 l 336 552 q 347 550 341 550 q 362 550 353 550 q 449 585 420 550 q 478 691 478 620 q 454 751 478 731 q 384 771 430 771 l 370 771 m -20 0 l 133 990 l 366 990 q 647 924 561 990 q 734 713 734 859 q 631 429 734 528 q 337 330 528 330 q 319 330 331 330 q 301 330 307 330 l 250 0 l -20 0 "},"À":{"x_min":-105.15625,"x_max":613,"ha":699,"o":"m -105 0 l 259 990 l 613 990 l 613 0 l 374 0 l 374 146 l 215 146 l 172 0 l -105 0 m 272 346 l 382 346 l 382 712 l 272 346 m 413 1084 l 332 1296 l 513 1296 l 513 1084 l 413 1084 "},"_":{"x_min":0,"x_max":681,"ha":681,"o":"m 0 -165 l 681 -165 l 681 -327 l 0 -327 l 0 -165 "},"ñ":{"x_min":-31.4375,"x_max":627,"ha":668,"o":"m -31 0 l 76 694 l 298 694 l 286 622 q 366 685 322 663 q 460 707 411 707 q 583 665 539 707 q 627 550 627 624 q 625 510 627 532 q 617 453 623 487 l 548 0 l 302 0 l 366 409 q 366 417 366 411 q 369 432 369 430 q 358 463 369 452 q 328 474 347 474 q 295 456 308 474 q 277 406 282 439 l 213 0 l -31 0 m 351 860 q 337 864 344 863 q 324 866 331 866 q 291 851 306 866 q 269 811 277 837 l 207 811 q 260 950 226 905 q 347 995 295 995 q 365 993 356 995 q 385 988 374 992 l 441 965 q 457 959 450 961 q 471 958 465 958 q 505 973 491 958 q 526 1018 519 988 l 590 1018 q 533 874 568 919 q 445 829 499 829 q 429 830 437 829 q 412 835 421 832 l 351 860 "},"+":{"x_min":169,"x_max":965,"ha":1134,"o":"m 489 828 l 647 828 l 647 493 l 965 493 l 965 336 l 647 336 l 647 0 l 489 0 l 489 336 l 169 336 l 169 493 l 489 493 l 489 828 "},"‚":{"x_min":-107.671875,"x_max":288.4375,"ha":368,"o":"m -107 -231 l 33 257 l 288 257 l 35 -231 l -107 -231 "},"½":{"x_min":89.796875,"x_max":1069,"ha":1069,"o":"m 596 0 q 832 272 760 174 q 904 418 904 370 q 894 443 904 434 q 867 452 884 452 q 828 424 842 452 q 814 351 814 397 l 672 351 q 726 511 672 456 q 882 566 781 566 q 1020 530 971 566 q 1069 428 1069 494 q 1025 304 1069 374 q 883 132 981 234 l 1007 132 l 984 0 l 596 0 m 193 -20 l 748 1010 l 874 1010 l 318 -20 l 193 -20 m 89 432 l 164 858 l 109 858 l 131 987 l 347 987 l 250 432 l 89 432 "},"Æ":{"x_min":-88.890625,"x_max":865,"ha":935,"o":"m 274 346 l 383 346 l 383 712 l 274 346 m -88 0 l 275 990 l 837 990 l 837 750 l 598 750 l 598 624 l 833 624 l 833 392 l 619 392 l 619 256 l 865 256 l 865 0 l 377 0 l 377 146 l 217 146 l 173 0 l -88 0 "},"₣":{"x_min":-23.265625,"x_max":1044.765625,"ha":1026,"o":"m -23 0 l 130 990 l 611 990 l 574 750 l 363 750 l 341 607 l 523 607 l 488 374 l 305 374 l 246 0 l -23 0 m 517 0 l 624 694 l 857 694 l 842 597 q 933 679 883 650 q 1044 713 984 708 l 1006 469 l 1001 469 q 869 434 911 469 q 813 310 827 400 l 766 0 l 517 0 "},"Ë":{"x_min":-22.3125,"x_max":612.640625,"ha":574,"o":"m -22 0 l 131 990 l 612 990 l 575 750 l 365 750 l 345 624 l 535 624 l 499 392 l 309 392 l 288 256 l 498 256 l 458 0 l -22 0 m 421 1211 q 448 1276 421 1249 q 513 1304 475 1304 q 577 1276 550 1304 q 604 1211 604 1249 q 577 1143 604 1171 q 513 1116 550 1116 q 448 1144 476 1116 q 421 1211 421 1172 m 201 1211 q 228 1276 201 1249 q 293 1304 255 1304 q 358 1276 331 1304 q 385 1211 385 1249 q 358 1143 385 1171 q 293 1116 331 1116 q 228 1144 256 1116 q 201 1211 201 1172 "},"'":{"x_min":51,"x_max":197,"ha":248,"o":"m 51 975 l 197 975 l 197 595 l 51 595 l 51 975 "},"ª":{"x_min":0,"x_max":515.3125,"ha":527,"o":"m 259 852 q 211 807 231 852 q 191 699 191 762 q 199 657 191 672 q 224 643 208 643 q 271 688 251 643 q 292 797 292 733 q 283 837 292 823 q 259 852 275 852 m 251 504 l 259 558 q 194 506 226 522 q 128 489 162 489 q 33 534 67 489 q 0 659 0 578 q 61 905 0 807 q 213 1004 122 1004 q 274 988 248 1004 q 321 936 300 972 l 331 990 l 515 990 l 434 504 l 251 504 "},"ð":{"x_min":1,"x_max":664.875,"ha":664,"o":"m 534 861 q 604 662 581 763 q 627 450 627 560 q 539 101 627 223 q 292 -21 452 -21 q 75 53 149 -21 q 1 273 1 128 q 85 571 1 455 q 305 688 170 688 q 358 680 334 688 q 403 658 381 673 q 382 739 393 701 q 360 812 372 776 l 201 766 l 172 871 l 319 914 q 284 996 304 955 q 237 1080 264 1037 l 403 1080 q 444 1023 425 1052 q 482 961 464 993 l 632 1001 l 664 901 l 534 861 m 246 262 q 256 207 246 226 q 287 189 267 189 q 349 257 323 189 q 376 418 376 324 q 365 474 376 456 q 332 492 354 492 q 272 423 298 492 q 246 262 246 354 "},"T":{"x_min":50.515625,"x_max":684.546875,"ha":640,"o":"m 370 0 l 97 0 l 212 739 l 50 739 l 89 990 l 684 990 l 645 739 l 484 739 l 370 0 "},"Þ":{"x_min":-20.21875,"x_max":707,"ha":732,"o":"m 344 617 l 310 397 q 322 396 316 396 q 336 396 328 396 q 422 431 394 396 q 451 538 451 466 q 427 597 451 577 q 358 617 404 617 l 344 617 m 250 0 l -20 0 l 133 990 l 404 990 l 381 835 q 626 766 545 835 q 707 559 707 697 q 604 275 707 375 q 312 176 501 176 q 295 176 306 176 q 278 176 283 176 l 250 0 "},"j":{"x_min":-60.125,"x_max":381,"ha":357,"o":"m 381 958 q 337 835 381 884 q 227 786 293 786 q 144 819 175 786 q 114 909 114 853 q 157 1033 114 984 q 267 1083 201 1083 q 350 1049 319 1083 q 381 958 381 1015 m -60 -237 l 85 695 l 332 695 l 187 -237 l -60 -237 "},"1":{"x_min":144.21875,"x_max":550.953125,"ha":669,"o":"m 144 0 l 261 759 l 172 759 l 208 990 l 550 990 l 397 0 l 144 0 "},"›":{"x_min":-13.296875,"x_max":307.71875,"ha":374,"o":"m -13 113 l 166 353 l 58 580 l 185 644 l 307 353 l 92 50 l -13 113 "},"ä":{"x_min":0,"x_max":686.578125,"ha":702,"o":"m 345 497 q 281 433 308 497 q 255 280 255 369 q 266 220 255 241 q 299 199 278 199 q 362 263 336 199 q 389 417 389 327 q 378 477 389 457 q 345 497 367 497 m 334 0 l 345 76 q 258 3 301 26 q 170 -19 216 -19 q 44 44 89 -19 q 0 222 0 107 q 81 573 0 432 q 284 714 163 714 q 366 691 331 714 q 429 618 401 668 l 442 694 l 686 694 l 579 0 l 334 0 m 475 915 q 502 980 475 953 q 567 1008 529 1008 q 631 980 604 1008 q 658 915 658 953 q 631 847 658 875 q 567 820 604 820 q 502 848 530 820 q 475 915 475 876 m 256 915 q 283 980 256 953 q 348 1008 310 1008 q 413 980 386 1008 q 440 915 440 953 q 413 847 440 875 q 348 820 386 820 q 283 848 311 820 q 256 915 256 876 "},"<":{"x_min":175,"x_max":958,"ha":1133,"o":"m 958 823 l 958 651 l 390 413 l 958 177 l 958 5 l 175 334 l 175 492 l 958 823 "},"£":{"x_min":-31.1875,"x_max":739.984375,"ha":668,"o":"m 558 398 l 423 398 q 391 302 413 342 q 331 225 370 261 q 384 215 359 219 q 427 212 409 212 q 524 222 478 212 q 625 254 570 233 l 625 50 q 531 6 584 21 q 413 -8 479 -8 q 253 13 346 -8 q 130 35 159 35 q 70 23 101 35 q 1 -12 39 12 l -31 181 q 43 221 5 208 q 126 234 81 234 q 159 293 147 258 q 172 364 172 329 q 172 384 172 376 q 171 397 172 391 l 27 397 l 53 560 l 148 560 q 130 625 136 593 q 125 686 125 656 q 224 919 125 829 q 480 1010 323 1010 q 636 976 566 1010 q 739 885 705 942 l 574 730 q 531 784 555 766 q 475 802 506 802 q 414 779 435 802 q 394 715 394 757 q 407 633 394 684 q 423 560 420 581 l 582 560 l 558 398 "},"¹":{"x_min":95.03125,"x_max":364.875,"ha":441,"o":"m 95 395 l 172 850 l 114 850 l 137 989 l 364 989 l 262 395 l 95 395 "},"t":{"x_min":0,"x_max":453.265625,"ha":425,"o":"m 9 0 l 83 475 l 0 475 l 33 695 l 116 695 l 148 899 l 396 899 l 364 695 l 453 695 l 419 475 l 330 475 l 255 0 l 9 0 "},"¬":{"x_min":169,"x_max":965,"ha":1134,"o":"m 169 587 l 965 587 l 965 247 l 813 247 l 813 433 l 169 433 l 169 587 "},"ù":{"x_min":-1,"x_max":660.015625,"ha":670,"o":"m 70 693 l 317 693 l 249 253 q 248 249 248 251 q 248 241 248 246 q 258 211 248 222 q 288 201 269 201 q 326 215 310 201 q 345 253 341 229 l 414 694 l 660 694 l 594 277 q 486 54 572 129 q 254 -20 401 -20 q 66 35 134 -20 q -1 190 -1 91 q 0 231 -1 209 q 6 277 2 253 l 70 693 m 352 788 l 271 1000 l 452 1000 l 452 788 l 352 788 "},"W":{"x_min":83,"x_max":1127.359375,"ha":1040,"o":"m 83 990 l 322 990 l 322 404 l 487 990 l 704 990 l 704 404 l 857 990 l 1127 990 l 785 0 l 538 0 l 538 619 l 349 0 l 83 0 l 83 990 "},"ï":{"x_min":-21.8125,"x_max":445,"ha":357,"o":"m -21 0 l 85 694 l 332 694 l 224 0 l -21 0 m 262 915 q 289 980 262 953 q 354 1008 316 1008 q 418 980 391 1008 q 445 915 445 953 q 418 847 445 875 q 354 820 391 820 q 289 848 317 820 q 262 915 262 876 m 42 915 q 69 980 42 953 q 134 1008 96 1008 q 199 980 172 1008 q 226 915 226 953 q 199 847 226 875 q 134 820 172 820 q 69 848 97 820 q 42 915 42 876 "},">":{"x_min":175,"x_max":958,"ha":1133,"o":"m 175 823 l 958 492 l 958 334 l 175 5 l 175 177 l 742 413 l 175 651 l 175 823 "},"v":{"x_min":16.765625,"x_max":665.421875,"ha":621,"o":"m 16 694 l 268 694 l 268 270 l 420 694 l 665 694 l 365 0 l 102 0 l 16 694 "},"û":{"x_min":-1,"x_max":660.0625,"ha":670,"o":"m 70 693 l 317 693 l 249 253 q 248 249 248 251 q 248 241 248 246 q 258 211 248 222 q 288 201 269 201 q 326 215 310 201 q 345 253 341 229 l 414 694 l 660 694 l 594 277 q 486 54 572 129 q 254 -20 401 -20 q 66 35 134 -20 q -1 190 -1 91 q 0 231 -1 209 q 6 277 2 253 l 70 693 m 194 788 l 328 1001 l 497 1001 l 565 788 l 454 788 l 396 896 l 305 788 l 194 788 "},"Ò":{"x_min":13,"x_max":758,"ha":771,"o":"m 285 329 q 299 248 285 273 q 346 223 314 223 q 396 246 375 223 q 433 320 417 269 q 469 479 455 386 q 483 657 483 572 q 468 738 483 712 q 425 765 454 765 q 372 742 394 765 q 335 669 351 719 q 299 506 313 600 q 285 329 285 411 m 318 -20 q 96 81 180 -20 q 13 352 13 183 q 47 620 13 489 q 142 838 82 750 q 277 965 201 923 q 452 1008 354 1008 q 675 907 593 1008 q 758 635 758 807 q 723 368 758 497 q 628 149 688 239 q 494 22 571 64 q 318 -20 417 -20 m 449 1084 l 367 1296 l 548 1296 l 548 1084 l 449 1084 "},"&":{"x_min":4,"x_max":801.03125,"ha":853,"o":"m 315 388 q 264 332 281 358 q 248 282 248 306 q 265 233 248 252 q 310 215 283 215 q 347 223 327 215 q 389 248 367 231 l 315 388 m 448 690 q 495 742 477 714 q 513 790 513 769 q 500 826 513 814 q 463 839 488 839 q 422 823 438 839 q 407 783 407 808 q 416 743 407 764 q 448 690 425 721 m 518 0 l 497 53 q 372 -2 432 15 q 249 -21 311 -21 q 67 40 130 -21 q 4 216 4 102 q 59 402 4 314 q 228 573 114 489 q 192 672 204 626 q 181 755 181 717 q 256 940 181 873 q 466 1007 332 1007 q 637 948 573 1007 q 702 794 702 890 q 662 669 702 727 q 530 545 622 611 l 605 397 q 652 440 630 417 q 695 491 674 463 l 787 299 q 737 246 758 267 q 698 208 717 225 l 801 0 l 518 0 "},"":{"x_min":-16.703125,"x_max":709.921875,"ha":668,"o":"m 709 981 l 670 758 q 628 773 648 768 q 587 778 608 778 q 472 736 523 778 q 392 620 421 695 l 626 620 l 596 541 l 370 541 q 363 501 366 523 q 361 455 361 480 l 565 455 l 535 376 l 363 376 q 400 248 363 287 q 514 209 437 209 q 547 211 529 209 q 584 220 565 214 l 546 -2 q 489 -17 520 -12 q 417 -22 459 -22 q 166 75 253 -22 q 79 354 79 172 l 79 376 l -16 376 l 13 455 l 82 455 q 88 508 86 490 q 93 540 90 525 l 9 540 l 39 619 l 111 619 q 281 905 162 803 q 564 1007 400 1007 q 638 1000 603 1007 q 709 981 674 994 "},"Ð":{"x_min":-15.078125,"x_max":753,"ha":758,"o":"m 314 419 l 287 240 q 296 239 291 239 q 310 239 301 239 q 379 256 349 239 q 427 307 409 274 q 474 452 455 359 q 494 633 494 546 q 468 731 494 701 q 384 761 442 761 l 367 761 l 344 605 l 423 605 l 394 419 l 314 419 m 57 419 l -15 419 l 13 605 l 85 605 l 145 990 l 348 990 q 525 976 469 990 q 628 929 582 962 q 721 812 690 884 q 753 638 753 739 q 720 394 753 513 q 631 192 687 275 q 472 47 566 95 q 253 0 378 0 l -7 0 l 57 419 "},"I":{"x_min":-11.96875,"x_max":412.71875,"ha":400,"o":"m -11 0 l 141 990 l 412 990 l 258 0 l -11 0 "},"G":{"x_min":17,"x_max":766.59375,"ha":765,"o":"m 399 572 l 740 572 q 637 125 740 270 q 334 -20 535 -20 q 98 76 179 -20 q 17 356 17 173 q 50 628 17 499 q 144 849 84 758 q 276 968 197 928 q 457 1009 355 1009 q 665 948 585 1009 q 766 774 745 887 l 517 680 q 489 745 506 726 q 442 764 472 764 q 388 741 411 764 q 348 672 364 719 q 308 503 325 607 q 291 325 291 400 q 306 245 291 268 q 360 222 322 222 q 435 262 407 222 q 463 376 463 302 l 373 376 l 399 572 "},"`":{"x_min":276.21875,"x_max":457,"ha":681,"o":"m 357 789 l 276 1001 l 457 1001 l 457 789 l 357 789 "},"·":{"x_min":17,"x_max":319,"ha":334,"o":"m 17 493 q 60 602 17 557 q 168 647 104 647 q 275 602 231 647 q 319 493 319 557 q 275 383 319 428 q 168 339 231 339 q 60 383 104 339 q 17 493 17 428 "},"r":{"x_min":-32.5625,"x_max":495.125,"ha":477,"o":"m -32 0 l 75 694 l 307 694 l 292 597 q 384 679 333 650 q 495 713 434 708 l 457 469 l 451 469 q 319 434 361 469 q 263 309 277 399 l 216 0 l -32 0 "},"¿":{"x_min":-9,"x_max":610.828125,"ha":679,"o":"m 490 681 l 452 433 q 425 437 438 436 q 399 439 412 439 q 290 389 331 439 q 250 258 250 340 q 263 201 250 221 q 301 182 276 182 q 353 212 332 182 q 384 306 374 243 l 610 306 q 508 67 596 152 q 275 -17 420 -17 q 65 51 139 -17 q -9 247 -9 120 q 57 448 -9 363 q 224 543 124 533 l 260 681 l 490 681 m 555 936 q 509 810 555 861 q 396 760 464 760 q 312 794 344 760 q 281 886 281 829 q 326 1012 281 961 q 438 1064 371 1064 q 522 1028 490 1064 q 555 936 555 993 "},"ý":{"x_min":-15.765625,"x_max":673.421875,"ha":621,"o":"m -15 -237 l 108 13 l 8 695 l 272 695 l 272 315 l 424 695 l 673 695 l 217 -237 l -15 -237 m 383 789 l 278 789 l 357 1001 l 530 1001 l 383 789 "},"x":{"x_min":-99.6875,"x_max":635.359375,"ha":599,"o":"m 148 363 l 24 694 l 263 694 l 306 536 l 396 694 l 635 694 l 409 363 l 544 0 l 305 0 l 250 178 l 140 0 l -99 0 l 148 363 "},"è":{"x_min":1,"x_max":611,"ha":658,"o":"m 575 242 q 496 48 575 118 q 289 -21 418 -21 q 74 56 148 -21 q 1 283 1 134 q 92 596 1 479 q 339 714 184 714 q 537 645 464 714 q 611 461 611 577 q 611 396 611 431 q 602 318 611 361 l 242 318 q 236 266 238 285 q 235 235 235 247 q 251 182 235 199 q 299 165 267 165 q 353 184 334 165 q 372 242 372 203 l 575 242 m 259 435 l 404 435 q 407 467 407 457 q 407 485 407 477 q 392 535 407 518 q 350 553 378 553 q 292 525 313 553 q 259 435 271 497 m 346 788 l 265 1000 l 446 1000 l 446 788 l 346 788 "},"º":{"x_min":1,"x_max":466,"ha":498,"o":"m 185 690 q 192 649 185 663 q 216 636 200 636 q 263 685 243 636 q 283 804 283 735 q 275 843 283 830 q 250 857 267 857 q 204 806 224 857 q 185 690 185 756 m 220 490 q 56 543 112 490 q 1 700 1 597 q 68 921 1 838 q 247 1004 135 1004 q 410 949 354 1004 q 466 791 466 895 q 399 571 466 653 q 220 490 333 490 "},"Ø":{"x_min":-10.9375,"x_max":767.640625,"ha":772,"o":"m 492 601 l 276 294 q 296 234 280 254 q 342 215 312 215 q 434 303 399 215 q 492 601 469 391 m 282 422 l 487 716 q 469 757 487 741 q 426 773 452 773 q 336 690 370 773 q 282 422 302 607 m 67 123 q 26 226 40 168 q 13 356 13 283 q 47 620 13 493 q 142 838 82 748 q 276 965 199 923 q 453 1008 354 1008 q 555 991 508 1008 q 641 939 602 974 l 710 1033 l 767 984 l 695 880 q 742 780 727 840 q 757 631 757 720 q 635 159 757 339 q 318 -20 514 -20 q 207 0 258 -20 q 116 59 155 20 l 44 -43 l -10 13 l 67 123 "},"÷":{"x_min":169,"x_max":965,"ha":1134,"o":"m 568 252 q 645 219 613 252 q 677 139 677 186 q 645 60 677 93 q 568 28 613 28 q 490 60 522 28 q 458 139 458 93 q 490 218 458 185 q 568 252 523 252 m 169 493 l 965 493 l 965 336 l 169 336 l 169 493 m 568 802 q 644 768 612 802 q 677 689 677 735 q 644 610 677 643 q 566 578 612 578 q 489 610 521 578 q 458 689 458 643 q 490 768 458 735 q 568 802 523 802 "},"h":{"x_min":-31.4375,"x_max":627,"ha":668,"o":"m -31 0 l 136 1080 l 380 1080 l 308 622 q 379 685 340 664 q 462 707 418 707 q 584 666 541 707 q 627 550 627 625 q 625 510 627 532 q 617 453 623 487 l 548 0 l 302 0 l 366 409 q 366 417 366 411 q 369 432 369 430 q 358 463 369 452 q 328 474 347 474 q 295 456 308 474 q 277 406 282 439 l 213 0 l -31 0 "},".":{"x_min":-25,"x_max":254,"ha":333,"o":"m 254 162 q 207 34 254 87 q 91 -18 161 -18 q 7 17 39 -18 q -25 111 -25 52 q 20 241 -25 189 q 135 293 66 293 q 221 257 188 293 q 254 162 254 221 "},";":{"x_min":-117.046875,"x_max":362,"ha":403,"o":"m -117 -231 l 24 257 l 278 257 l 25 -231 l -117 -231 m 362 563 q 316 434 362 486 q 201 383 270 383 q 115 418 148 383 q 83 512 83 454 q 129 641 83 589 q 245 694 175 694 q 329 658 297 694 q 362 563 362 622 "},"f":{"x_min":-1.328125,"x_max":510.421875,"ha":422,"o":"m 0 0 l 72 472 l -1 472 l 32 694 l 107 694 l 128 829 q 210 1030 150 968 q 380 1092 269 1092 q 448 1086 416 1092 q 510 1070 480 1081 l 476 861 q 457 866 464 865 q 442 868 449 868 q 395 846 412 868 q 370 781 377 825 l 355 694 l 450 694 l 416 472 l 321 472 l 247 0 l 0 0 "},"“":{"x_min":21.9375,"x_max":717.109375,"ha":670,"o":"m 717 990 l 576 502 l 322 502 l 575 990 l 717 990 m 418 990 l 276 502 l 21 502 l 276 990 l 418 990 "},"A":{"x_min":-105.15625,"x_max":613,"ha":699,"o":"m -105 0 l 259 990 l 613 990 l 613 0 l 374 0 l 374 146 l 215 146 l 172 0 l -105 0 m 272 346 l 382 346 l 382 712 l 272 346 "},"6":{"x_min":-4,"x_max":637,"ha":669,"o":"m 249 267 q 259 218 249 234 q 292 203 270 203 q 353 259 329 203 q 377 402 377 316 q 366 452 377 435 q 333 469 355 469 q 272 412 295 469 q 249 267 249 356 m 358 643 q 402 658 380 653 q 448 664 424 664 q 587 601 538 664 q 637 423 637 539 q 535 106 637 234 q 281 -21 434 -21 q 72 57 148 -21 q -4 273 -4 136 q 83 600 -4 419 q 341 990 171 782 l 630 990 q 485 823 553 910 q 358 643 416 737 "},"‘":{"x_min":17.9375,"x_max":414.046875,"ha":368,"o":"m 414 990 l 272 502 l 17 502 l 272 990 l 414 990 "},"O":{"x_min":13,"x_max":758,"ha":771,"o":"m 285 329 q 299 248 285 273 q 346 223 314 223 q 396 246 375 223 q 433 320 417 269 q 469 479 455 386 q 483 657 483 572 q 468 738 483 712 q 425 765 454 765 q 372 742 394 765 q 335 669 351 719 q 299 506 313 600 q 285 329 285 411 m 318 -20 q 96 81 180 -20 q 13 352 13 183 q 47 620 13 489 q 142 838 82 750 q 277 965 201 923 q 452 1008 354 1008 q 675 907 593 1008 q 758 635 758 807 q 723 368 758 497 q 628 149 688 239 q 494 22 571 64 q 318 -20 417 -20 "},"n":{"x_min":-31.4375,"x_max":627,"ha":668,"o":"m -31 0 l 76 694 l 298 694 l 286 622 q 366 685 322 663 q 460 707 411 707 q 583 665 539 707 q 627 550 627 624 q 625 510 627 532 q 617 453 623 487 l 548 0 l 302 0 l 366 409 q 366 418 366 412 q 369 433 369 431 q 358 464 369 453 q 328 475 347 475 q 295 457 308 475 q 277 407 282 440 l 213 0 l -31 0 "},"3":{"x_min":-27,"x_max":659,"ha":669,"o":"m -19 304 l 218 304 q 215 277 215 291 q 215 251 215 264 q 226 205 215 222 q 259 189 238 189 q 319 224 297 189 q 342 321 342 260 q 317 390 342 366 q 245 414 292 414 q 226 414 236 414 q 205 414 217 414 l 234 597 q 246 597 239 597 q 266 597 253 597 q 371 634 336 597 q 406 746 406 671 q 394 790 406 775 q 358 806 382 806 q 313 781 332 806 q 286 714 294 757 l 65 714 q 150 932 65 855 q 386 1009 236 1009 q 585 945 511 1009 q 659 775 659 881 q 604 607 659 678 q 461 516 550 536 q 573 456 532 506 q 614 325 614 405 q 520 72 614 165 q 263 -20 427 -20 q 49 44 125 -20 q -27 227 -27 109 q -25 264 -27 244 q -19 304 -23 283 "},"9":{"x_min":37,"x_max":677,"ha":669,"o":"m 381 787 q 320 731 344 787 q 297 587 297 676 q 307 537 297 554 q 339 521 318 521 q 401 577 377 521 q 425 720 425 633 q 413 769 425 752 q 381 787 402 787 m 314 347 q 268 330 290 335 q 225 324 246 324 q 86 387 135 324 q 37 566 37 450 q 138 883 37 755 q 392 1011 239 1011 q 600 932 524 1011 q 677 716 677 853 q 589 387 677 570 q 332 0 501 205 l 42 0 q 187 166 120 79 q 314 347 255 252 "},"l":{"x_min":-21.9375,"x_max":392.125,"ha":357,"o":"m -21 0 l 145 1080 l 392 1080 l 224 0 l -21 0 "},"¤":{"x_min":-16.703125,"x_max":709.921875,"ha":668,"o":"m 709 981 l 670 758 q 628 773 648 768 q 587 778 608 778 q 472 736 523 778 q 392 620 421 695 l 626 620 l 596 541 l 370 541 q 363 501 366 523 q 361 455 361 480 l 565 455 l 535 376 l 363 376 q 400 248 363 287 q 514 209 437 209 q 547 211 529 209 q 584 220 565 214 l 546 -2 q 489 -17 520 -12 q 417 -22 459 -22 q 166 75 253 -22 q 79 354 79 172 l 79 376 l -16 376 l 13 455 l 82 455 q 88 508 86 490 q 93 540 90 525 l 9 540 l 39 619 l 111 619 q 281 905 162 803 q 564 1007 400 1007 q 638 1000 603 1007 q 709 981 674 994 "},"4":{"x_min":-27.25,"x_max":662.609375,"ha":669,"o":"m 341 402 l 393 734 l 205 402 l 341 402 m 280 0 l 310 201 l -27 201 l 5 407 l 352 989 l 662 989 l 571 402 l 640 402 l 608 201 l 540 201 l 509 0 l 280 0 "},"p":{"x_min":-68.96875,"x_max":657,"ha":698,"o":"m -68 -237 l 75 695 l 296 695 l 286 623 q 380 691 334 669 q 475 714 427 714 q 610 650 563 714 q 657 464 657 585 q 576 120 657 260 q 378 -19 495 -19 q 288 -2 328 -19 q 219 48 247 14 l 175 -237 l -68 -237 m 264 277 q 276 215 264 235 q 313 195 288 195 q 376 258 351 195 q 402 418 402 322 q 390 479 402 459 q 352 499 378 499 q 289 435 315 499 q 264 277 264 371 "},"‡":{"x_min":-43.859375,"x_max":713.125,"ha":702,"o":"m 126 -218 l 160 0 l -43 0 l -9 221 l 194 221 l 246 554 l 41 554 l 76 775 l 280 775 l 314 989 l 541 989 l 509 775 l 713 775 l 677 554 l 473 554 l 422 221 l 626 221 l 592 0 l 388 0 l 353 -218 l 126 -218 "},"à":{"x_min":0,"x_max":687.109375,"ha":702,"o":"m 345 497 q 281 433 308 497 q 255 280 255 369 q 266 220 255 241 q 299 199 278 199 q 362 263 336 199 q 389 417 389 327 q 378 477 389 457 q 345 497 367 497 m 334 0 l 345 76 q 258 3 301 26 q 170 -19 216 -19 q 44 44 89 -19 q 0 222 0 107 q 81 573 0 432 q 284 714 163 714 q 366 691 331 714 q 429 618 401 668 l 442 694 l 687 694 l 579 0 l 334 0 m 409 788 l 328 1000 l 509 1000 l 509 788 l 409 788 "},"Ü":{"x_min":20,"x_max":793.375,"ha":765,"o":"m 27 354 l 124 990 l 397 990 l 294 327 q 292 312 293 319 q 291 297 291 306 q 305 257 291 272 q 344 243 319 243 q 394 264 376 243 q 419 327 413 285 l 522 990 l 793 990 l 694 354 l 692 344 q 605 93 663 164 q 487 7 559 36 q 319 -21 416 -21 q 93 44 167 -21 q 20 244 20 109 q 20 291 20 265 q 27 354 20 317 m 512 1211 q 539 1276 512 1249 q 604 1304 566 1304 q 668 1276 641 1304 q 695 1211 695 1249 q 668 1143 695 1171 q 604 1116 641 1116 q 539 1144 567 1116 q 512 1211 512 1172 m 293 1211 q 320 1276 293 1249 q 385 1304 347 1304 q 450 1276 423 1304 q 477 1211 477 1249 q 450 1143 477 1171 q 385 1116 423 1116 q 320 1144 348 1116 q 293 1211 293 1172 "},"ó":{"x_min":1,"x_max":622,"ha":664,"o":"m 246 265 q 256 208 246 227 q 288 189 267 189 q 350 260 323 189 q 376 427 376 330 q 366 485 376 466 q 333 503 355 503 q 272 432 298 503 q 246 265 246 360 m 293 -21 q 75 56 150 -21 q 1 282 1 133 q 90 596 1 478 q 330 714 179 714 q 547 637 473 714 q 622 410 622 560 q 533 96 622 213 q 293 -21 444 -21 m 406 788 l 300 788 l 380 1000 l 552 1000 l 406 788 "}},"cssFontWeight":"normal","ascender":1339,"underlinePosition":-221,"cssFontStyle":"normal","boundingBox":{"yMin":-327,"xMin":-123.609375,"yMax":1339,"xMax":1388},"resolution":1000,"original_font_information":{"postscript_name":"FuturaBT-ExtraBlackCondItalic","version_string":"mfgpctt-v4.4 Dec 29 1998","vendor_url":"","full_font_name":"Futura Extra Black Condensed Italic BT","font_family_name":"Futura XBlkCnIt BT","copyright":"Copyright 1990-1998 Bitstream Inc.  All rights reserved.","description":"","trademark":"","designer":"","designer_url":"","unique_font_identifier":"Futura Extra Black Condensed Italic, Geometric 211","license_url":"","license_description":"","manufacturer_name":"","font_sub_family_name":"Extra Black Italic"},"descender":-328,"familyName":"Futura XBlkCnIt BT","lineHeight":1666,"underlineThickness":246});


$(document).ready(function() {
				   
	$("#homepage-cta-blocks .cta").css("cursor", "pointer").click(entireDivClick);
	$("#homepage-news .news-item").css("cursor", "pointer").click(entireDivClick);
	$("#event-overview .event").css("cursor", "pointer").click(entireDivClick);
	$("#news-overview .news-item").css("cursor", "pointer").click(entireDivClick);
	$("#search-results .results ul li").css("cursor", "pointer").click(entireDivClick);
	$("#links li").css("cursor", "pointer").click(entireDivClick);

});

function entireDivClick (){
	window.location=$(this).find("a").attr("href");
	return false;
}


