/*
 * 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;
		}
	}
}


$(document).ready(function() {
				   
	$("#homepage-cta-blocks .cta").css("cursor", "pointer").click(entireDivClick);
	$("#homepage-news .news-item").css("cursor", "pointer").click(entireDivClick);

});


function entireDivClick (){
	if($(this).find("a").attr("target") == '_blank'){
		window.open($(this).find("a").attr("href"));
	}else{
		window.location=$(this).find("a").attr("href");
	}
	return false;
}




if (_typeface_js && _typeface_js.loadFace) _typeface_js.loadFace({"glyphs":{"S":{"x_min":94,"x_max":1042.46875,"ha":1002,"o":"m 1042 709 l 750 709 q 612 832 750 832 q 526 808 556 832 q 497 752 497 785 q 520 707 497 728 q 632 652 544 686 q 815 570 745 609 q 931 470 886 532 q 976 316 976 408 q 927 154 976 229 q 787 31 879 79 q 528 -17 696 -17 q 192 76 291 -17 q 94 315 94 169 l 94 339 l 383 339 q 423 218 383 256 q 537 180 464 180 q 648 211 610 180 q 687 284 687 243 q 662 340 687 314 q 542 401 638 366 q 265 546 323 479 q 208 706 208 612 q 255 862 208 791 q 394 972 303 933 q 613 1011 485 1011 q 1042 709 1016 1011 "},"¦":{"x_min":157,"x_max":329,"ha":386,"o":"m 329 486 l 157 486 l 157 995 l 329 995 l 329 486 m 329 -275 l 157 -275 l 157 235 l 329 235 l 329 -275 "},"/":{"x_min":65.109375,"x_max":451.65625,"ha":386,"o":"m 451 995 l 237 -33 l 65 -33 l 279 995 l 451 995 "},"y":{"x_min":1.34375,"x_max":939.921875,"ha":848,"o":"m 939 719 l 483 -91 q 355 -251 416 -210 q 204 -292 293 -292 q 1 -264 101 -292 l 23 -78 q 113 -96 67 -96 q 241 0 194 -96 l 103 719 l 394 719 l 394 219 l 416 219 l 661 719 l 939 719 "},"Á":{"x_min":-22.375,"x_max":1024.71875,"ha":1080,"o":"m 1024 0 l 723 0 l 710 163 l 385 163 l 308 0 l -22 0 l 539 994 l 866 994 l 1024 0 m 690 374 l 659 736 l 657 736 l 486 374 l 690 374 m 955 1269 l 708 1066 l 573 1066 l 723 1269 l 955 1269 "},"g":{"x_min":40,"x_max":943.078125,"ha":926,"o":"m 943 719 l 800 42 q 665 -225 757 -158 q 397 -292 572 -292 q 205 -271 273 -292 q 88 -187 137 -251 q 40 -50 40 -124 q 41 -17 40 -27 l 307 -54 q 383 -128 307 -128 q 467 -93 433 -128 q 516 11 500 -58 l 540 119 l 537 121 q 325 26 446 26 q 149 104 214 26 q 83 311 83 182 q 186 609 83 482 q 446 736 289 736 q 665 617 578 736 l 687 719 l 943 719 m 450 212 q 565 294 526 212 q 604 450 604 377 q 576 524 604 495 q 509 553 549 553 q 399 481 446 553 q 353 320 353 409 q 380 240 353 269 q 450 212 407 212 "},"²":{"x_min":106.1875,"x_max":661,"ha":555,"o":"m 147 842 q 425 1012 190 1012 q 600 973 540 1012 q 661 871 661 934 q 550 725 661 783 q 370 626 440 667 l 370 624 l 633 624 l 606 500 l 106 500 q 163 621 119 565 q 287 723 208 677 l 405 791 q 465 834 453 820 q 478 860 478 848 q 411 902 478 902 q 318 827 341 902 l 147 842 "},"–":{"x_min":40,"x_max":751,"ha":694,"o":"m 751 288 l 40 288 l 40 438 l 751 438 l 751 288 "},"ë":{"x_min":83,"x_max":920.234375,"ha":926,"o":"m 876 184 q 719 30 816 77 q 475 -17 621 -17 q 172 78 262 -17 q 83 314 83 174 q 125 495 83 410 q 238 638 167 580 q 380 715 310 695 q 543 736 450 736 q 832 648 745 736 q 920 433 920 561 q 901 289 920 391 l 359 289 q 480 144 359 144 q 610 209 562 144 l 876 184 m 646 423 q 651 464 651 437 q 618 546 651 518 q 537 575 585 575 q 443 536 486 575 q 378 423 401 498 l 646 423 m 846 985 l 810 810 l 630 810 l 667 985 l 846 985 m 558 985 l 522 810 l 342 810 l 380 985 l 558 985 "},"ƒ":{"x_min":46.109375,"x_max":926.375,"ha":926,"o":"m 926 969 l 877 791 q 773 818 817 818 q 729 799 745 818 q 690 677 713 781 l 823 677 l 781 480 l 648 480 l 522 -116 q 278 -292 484 -292 q 46 -253 171 -292 l 95 -76 q 201 -100 163 -100 q 240 -86 224 -100 q 267 -17 256 -72 l 373 480 l 244 480 l 284 677 l 416 677 l 446 819 q 490 928 460 887 q 570 990 520 970 q 693 1011 619 1011 q 926 969 804 1011 "},"Î":{"x_min":70.53125,"x_max":694.453125,"ha":541,"o":"m 594 994 l 381 0 l 70 0 l 283 994 l 594 994 m 694 1064 l 550 1064 l 508 1173 l 386 1064 l 194 1064 l 421 1257 l 621 1257 l 694 1064 "},"e":{"x_min":83,"x_max":920.234375,"ha":926,"o":"m 876 184 q 719 30 816 77 q 475 -17 621 -17 q 172 78 262 -17 q 83 314 83 174 q 125 495 83 410 q 238 638 167 580 q 380 715 310 695 q 543 736 450 736 q 832 648 745 736 q 920 433 920 561 q 901 289 920 391 l 359 289 q 480 144 359 144 q 610 209 562 144 l 876 184 m 646 423 q 651 464 651 437 q 618 546 651 518 q 537 575 585 575 q 443 536 486 575 q 378 423 401 498 l 646 423 "},"Ã":{"x_min":-22.671875,"x_max":1024.421875,"ha":1080,"o":"m 1024 0 l 723 0 l 709 163 l 385 163 l 308 0 l -22 0 l 538 994 l 866 994 l 1024 0 m 690 374 l 659 736 l 656 736 l 485 374 l 690 374 m 953 1256 q 910 1116 945 1162 q 820 1070 874 1070 q 708 1097 785 1070 q 663 1114 691 1103 q 616 1126 635 1126 q 572 1069 582 1126 l 469 1069 q 511 1204 469 1157 q 610 1252 553 1252 q 715 1228 650 1252 q 804 1205 780 1205 q 848 1256 841 1205 l 953 1256 "},"J":{"x_min":-11,"x_max":941.796875,"ha":926,"o":"m 941 994 l 804 354 q 798 331 800 347 q 659 54 754 126 q 384 -17 564 -17 q 251 -10 311 -17 q 129 22 191 -4 q 28 107 68 48 q -11 264 -11 166 q -4 333 -11 291 l 286 367 l 286 355 q 283 317 283 336 l 283 296 q 373 214 283 214 q 441 235 416 214 q 477 291 465 257 q 502 387 489 325 l 633 994 l 941 994 "},"»":{"x_min":42.71875,"x_max":887.71875,"ha":926,"o":"m 887 340 l 622 52 l 401 52 l 637 351 l 551 678 l 744 678 l 887 340 m 528 340 l 263 52 l 42 52 l 279 351 l 193 678 l 385 678 l 528 340 "},"©":{"x_min":87,"x_max":1123,"ha":1110,"o":"m 605 1011 q 970 858 818 1011 q 1123 492 1123 706 q 970 128 1123 280 q 605 -24 818 -24 q 239 128 391 -24 q 87 492 87 280 q 239 858 87 706 q 605 1011 391 1011 m 605 76 q 900 198 777 76 q 1023 492 1023 321 q 900 788 1023 665 q 605 911 777 911 q 310 788 433 911 q 187 492 187 665 q 310 198 187 321 q 605 76 433 76 m 865 397 q 609 201 810 201 q 402 284 479 201 q 326 494 326 367 q 407 703 326 622 q 609 785 488 785 q 769 736 700 785 q 859 597 839 687 l 726 576 q 602 685 699 685 q 510 634 543 685 q 478 497 478 583 q 605 301 478 301 q 726 430 698 301 l 865 397 "},"ò":{"x_min":82,"x_max":907,"ha":927,"o":"m 536 736 q 818 638 729 736 q 907 409 907 540 q 856 206 907 309 q 703 43 805 103 q 451 -17 601 -17 q 172 76 262 -17 q 82 308 82 169 q 135 519 82 417 q 292 678 189 621 q 536 736 394 736 m 469 170 q 592 248 546 170 q 637 424 637 327 q 603 522 637 493 q 526 550 568 550 q 395 470 438 550 q 351 308 351 391 q 385 209 351 249 q 469 170 419 170 m 694 808 l 572 808 l 400 1011 l 614 1011 l 694 808 "},"^":{"x_min":170.90625,"x_max":912.8125,"ha":917,"o":"m 912 443 l 673 443 l 543 777 l 410 443 l 170 443 l 446 995 l 636 995 l 912 443 "},"«":{"x_min":96.984375,"x_max":941.984375,"ha":926,"o":"m 941 678 l 705 378 l 791 52 l 598 52 l 455 389 l 720 678 l 941 678 m 583 678 l 347 378 l 433 52 l 240 52 l 96 389 l 362 678 l 583 678 "},"D":{"x_min":57.265625,"x_max":1091,"ha":1081,"o":"m 265 994 l 673 994 q 991 878 891 994 q 1091 577 1091 763 q 1005 248 1091 399 q 803 48 920 96 q 580 0 686 0 l 57 0 l 265 994 m 412 220 l 539 220 q 727 350 665 220 q 789 609 789 480 q 753 730 789 686 q 625 775 717 775 l 527 775 l 412 220 "},"ÿ":{"x_min":1.34375,"x_max":939.921875,"ha":848,"o":"m 939 719 l 483 -91 q 355 -251 416 -210 q 204 -292 293 -292 q 1 -264 101 -292 l 23 -78 q 113 -96 67 -96 q 241 0 194 -96 l 103 719 l 394 719 l 394 219 l 416 219 l 661 719 l 939 719 m 808 985 l 772 810 l 592 810 l 629 985 l 808 985 m 520 985 l 484 810 l 304 810 l 341 985 l 520 985 "},"í":{"x_min":48.828125,"x_max":604.25,"ha":463,"o":"m 480 720 l 326 0 l 48 0 l 202 720 l 480 720 m 604 1011 l 356 809 l 222 809 l 372 1011 l 604 1011 "},"w":{"x_min":102.90625,"x_max":1402.28125,"ha":1311,"o":"m 1402 720 l 992 0 l 747 0 l 702 428 l 699 428 l 460 0 l 212 0 l 102 720 l 364 720 l 364 265 l 380 265 l 629 720 l 878 720 l 919 271 l 922 271 l 1119 720 l 1402 720 "},"$":{"x_min":80.578125,"x_max":984.46875,"ha":926,"o":"m 984 736 l 732 736 q 730 733 731 728 q 699 796 714 779 q 666 822 685 812 l 621 618 q 848 498 779 573 q 918 312 918 422 q 887 180 918 241 q 797 69 856 118 q 669 2 738 20 q 489 -16 600 -16 l 462 -142 l 365 -142 l 392 -11 q 80 285 125 23 l 350 317 q 374 228 358 257 q 431 174 390 199 l 484 418 q 268 547 332 465 q 204 715 204 629 q 298 917 204 831 q 606 1004 393 1004 l 621 1063 l 718 1063 l 703 1001 q 883 931 799 993 q 984 736 968 869 m 571 838 q 458 741 458 825 q 494 670 458 692 q 532 649 530 649 l 571 838 m 525 155 q 666 271 666 167 q 574 385 666 344 l 525 155 "},"\\":{"x_min":31.875,"x_max":417.75,"ha":386,"o":"m 417 -33 l 245 -33 l 31 995 l 204 995 l 417 -33 "},"Ì":{"x_min":70.53125,"x_max":594.75,"ha":541,"o":"m 594 994 l 381 0 l 70 0 l 283 994 l 594 994 m 543 1066 l 421 1066 l 248 1269 l 462 1269 l 543 1066 "},"µ":{"x_min":-11.796875,"x_max":953.234375,"ha":926,"o":"m 953 720 l 799 0 l 542 0 l 553 50 l 550 53 q 426 -17 492 -17 q 335 53 355 -17 l 332 53 l 264 -275 l -11 -275 l 199 719 l 475 719 l 404 381 q 393 318 397 344 q 389 279 389 293 q 464 187 389 187 q 550 234 519 187 q 605 389 581 281 l 675 720 l 953 720 "},"Ç":{"x_min":125,"x_max":1122.125,"ha":1080,"o":"m 1122 668 l 840 636 l 840 641 q 796 749 840 713 q 701 785 752 785 q 574 738 641 785 q 467 587 508 691 q 427 383 427 482 q 466 257 427 305 q 583 210 506 210 q 701 253 654 210 q 787 392 747 296 l 1074 347 q 901 87 1027 192 q 582 -17 775 -17 l 582 -19 q 705 -49 660 -19 q 750 -141 750 -80 q 678 -254 750 -215 q 485 -294 607 -294 q 287 -276 377 -294 l 323 -196 q 447 -209 403 -209 q 589 -146 589 -209 q 563 -107 589 -120 q 507 -94 537 -94 q 444 -99 486 -94 l 471 -27 q 553 -19 496 -19 l 553 -16 q 431 -6 484 -16 q 317 36 378 2 q 213 123 256 69 q 147 247 169 176 q 125 402 125 317 q 192 696 125 548 q 389 927 259 843 q 699 1012 518 1012 q 996 917 887 1012 q 1122 668 1105 823 "},"’":{"x_min":108.5,"x_max":497.09375,"ha":386,"o":"m 497 993 l 449 771 q 415 640 431 683 q 364 551 400 598 q 265 472 328 504 q 108 440 201 440 l 139 578 l 147 578 q 299 716 267 578 l 169 716 l 229 993 l 497 993 "},"-":{"x_min":38.65625,"x_max":486.25,"ha":463,"o":"m 486 469 l 440 257 l 38 257 l 84 469 l 486 469 "},"Q":{"x_min":121,"x_max":1163,"ha":1158,"o":"m 769 9 q 572 -17 681 -17 q 240 90 360 -17 q 121 395 121 198 q 149 591 121 494 q 237 774 178 687 q 383 918 296 860 q 552 994 469 976 q 722 1012 635 1012 q 1056 891 949 1012 q 1163 590 1163 770 q 1110 335 1163 467 q 933 101 1057 203 q 1067 0 1036 15 l 953 -160 q 769 9 892 -116 m 748 281 q 830 436 799 343 q 862 604 862 529 q 814 734 862 683 q 689 785 767 785 q 544 723 605 785 q 453 559 484 662 q 423 384 423 456 q 467 260 423 311 q 593 210 511 210 l 627 210 q 565 273 606 241 q 510 317 524 305 l 582 417 q 748 281 653 374 "},"M":{"x_min":51.5,"x_max":1380.609375,"ha":1311,"o":"m 1380 994 l 1166 0 l 910 0 l 1094 760 l 1090 760 l 722 0 l 474 0 l 474 760 l 450 760 l 307 0 l 51 0 l 263 994 l 657 994 l 657 364 l 678 364 l 994 994 l 1380 994 "},"C":{"x_min":123,"x_max":1120.125,"ha":1079,"o":"m 1120 668 l 838 636 l 838 641 q 794 749 838 714 q 699 785 751 785 q 567 735 631 785 q 463 582 502 685 q 425 383 425 480 q 464 259 425 309 q 581 210 504 210 q 700 254 651 210 q 785 392 748 299 l 1072 347 q 899 88 1027 193 q 564 -17 771 -17 q 236 97 350 -17 q 123 403 123 212 q 190 696 123 549 q 387 927 257 843 q 697 1012 516 1012 q 994 917 885 1012 q 1120 668 1103 823 "},"!":{"x_min":47.6875,"x_max":546.140625,"ha":463,"o":"m 546 994 q 509 818 523 894 q 450 624 496 742 q 336 314 403 506 l 162 314 q 184 573 184 461 q 193 742 184 686 q 243 960 203 798 q 247 980 244 963 q 250 994 249 992 l 546 994 m 377 256 l 323 0 l 47 0 l 103 256 l 377 256 "},"ç":{"x_min":85,"x_max":940.359375,"ha":927,"o":"m 940 462 l 690 462 q 563 550 673 550 q 408 468 462 550 q 354 289 354 386 q 392 200 354 231 q 476 169 431 169 q 640 291 587 169 l 899 263 q 475 -18 801 -18 l 446 -18 l 446 -20 q 539 -50 494 -20 q 585 -139 585 -80 q 556 -217 585 -182 q 467 -272 527 -252 q 318 -292 408 -292 q 120 -273 242 -292 l 158 -197 q 282 -210 237 -210 q 426 -145 426 -210 q 405 -109 426 -125 q 342 -94 385 -94 q 278 -99 333 -94 l 306 -28 q 407 -17 354 -17 l 407 -10 q 167 68 249 -10 q 85 291 85 147 q 210 604 85 473 q 563 735 335 735 q 826 667 728 735 q 940 462 923 598 "},"È":{"x_min":55.609375,"x_max":1080.328125,"ha":1003,"o":"m 1080 995 l 1034 781 l 530 781 l 497 622 l 983 622 l 938 421 l 453 421 l 410 227 l 958 227 l 909 0 l 55 0 l 267 995 l 1080 995 m 775 1066 l 653 1066 l 480 1269 l 694 1269 l 775 1066 "},"{":{"x_min":113,"x_max":620.21875,"ha":542,"o":"m 620 -292 l 533 -292 q 306 -240 373 -292 q 240 -13 240 -188 l 240 104 q 209 212 240 183 q 113 241 178 241 l 113 474 q 211 506 178 474 q 245 653 245 539 q 258 866 245 797 q 332 972 272 934 q 528 1011 392 1011 l 620 1011 l 620 791 l 613 791 q 513 763 537 791 q 490 609 490 736 q 467 446 490 507 q 370 358 444 386 q 467 266 444 327 q 491 96 491 205 q 512 -44 491 -17 q 620 -72 533 -72 l 620 -292 "},"X":{"x_min":-41.375,"x_max":1247.15625,"ha":1080,"o":"m 1247 994 l 776 484 l 1036 0 l 720 0 l 579 284 l 335 0 l -41 0 l 441 528 l 177 994 l 495 994 l 637 719 l 878 994 l 1247 994 "},"ô":{"x_min":82,"x_max":907,"ha":927,"o":"m 536 736 q 818 638 729 736 q 907 409 907 540 q 856 206 907 309 q 703 43 805 103 q 451 -17 601 -17 q 172 76 262 -17 q 82 308 82 169 q 135 519 82 417 q 292 678 189 621 q 536 736 394 736 m 469 170 q 592 248 546 170 q 637 424 637 327 q 603 522 637 493 q 526 550 568 550 q 395 470 438 550 q 351 308 351 391 q 385 209 351 249 q 469 170 419 170 m 818 807 l 673 807 l 632 916 l 510 807 l 318 807 l 544 1000 l 744 1000 l 818 807 "},"¼":{"x_min":226.515625,"x_max":1395.671875,"ha":1389,"o":"m 646 1011 l 537 501 l 364 501 l 431 806 q 325 759 358 768 q 254 750 292 750 l 282 884 q 509 1011 438 922 l 646 1011 m 1395 1011 l 394 -36 l 226 -36 l 1227 1011 l 1395 1011 m 1348 146 l 1326 39 l 1257 39 l 1240 -36 l 1089 -36 l 1107 39 l 814 39 l 840 160 l 1197 480 l 1348 480 l 1281 146 l 1348 146 m 1163 304 l 1160 306 l 980 146 l 1127 146 l 1163 304 "},"#":{"x_min":97,"x_max":928,"ha":917,"o":"m 928 223 l 725 223 l 677 -16 l 483 -16 l 531 223 l 383 223 l 335 -16 l 143 -16 l 191 223 l 97 223 l 97 410 l 227 410 l 263 581 l 97 581 l 97 769 l 301 769 l 348 1011 l 542 1011 l 493 769 l 641 769 l 690 1011 l 883 1011 l 835 769 l 928 769 l 928 581 l 797 581 l 762 410 l 928 410 l 928 223 m 604 581 l 457 581 l 421 410 l 569 410 l 604 581 "},"Ê":{"x_min":55.609375,"x_max":1080.328125,"ha":1003,"o":"m 1080 995 l 1034 781 l 530 781 l 497 622 l 983 622 l 938 421 l 453 421 l 410 227 l 958 227 l 909 0 l 55 0 l 267 995 l 1080 995 m 926 1064 l 781 1064 l 740 1173 l 618 1064 l 426 1064 l 653 1257 l 853 1257 l 926 1064 "},")":{"x_min":-58.28125,"x_max":505,"ha":540,"o":"m 380 1011 q 482 689 460 805 q 505 474 505 572 q 130 -292 505 107 l -58 -292 q 272 646 272 91 q 215 1011 272 847 l 380 1011 "},"Å":{"x_min":-22.578125,"x_max":1024.015625,"ha":1080,"o":"m 1024 0 l 723 0 l 709 163 l 385 163 l 308 0 l -22 0 l 538 994 l 866 994 l 1024 0 m 689 374 l 659 736 l 656 736 l 486 374 l 689 374 m 713 1355 q 821 1310 776 1355 q 866 1203 866 1266 q 821 1095 866 1140 q 713 1050 776 1050 q 606 1095 650 1050 q 562 1203 562 1140 q 606 1310 562 1265 q 713 1355 651 1355 m 713 1141 q 757 1159 738 1141 q 776 1203 776 1178 q 757 1246 776 1228 q 713 1265 738 1265 q 670 1246 688 1265 q 652 1203 652 1228 q 670 1159 652 1178 q 713 1141 688 1141 "},"ø":{"x_min":82,"x_max":907,"ha":927,"o":"m 818 640 q 907 414 907 537 q 855 209 907 314 q 701 44 804 105 q 450 -17 599 -17 q 262 16 336 -17 l 168 -87 l 95 -25 l 180 67 q 102 184 122 132 q 82 308 82 237 q 202 608 82 481 q 542 736 322 736 q 742 697 665 736 l 835 799 l 904 736 l 818 640 m 607 546 q 525 573 568 573 q 386 492 435 573 q 338 307 338 411 q 344 251 338 280 l 607 546 m 396 166 q 468 147 443 147 q 602 225 552 147 q 653 421 653 303 l 653 453 l 396 166 "},"â":{"x_min":69,"x_max":900,"ha":926,"o":"m 148 522 q 262 680 173 624 q 539 736 351 736 q 825 682 751 736 q 900 527 900 629 q 862 304 900 460 q 828 100 828 157 q 845 0 828 51 l 576 0 q 567 82 567 42 q 324 -17 458 -17 q 128 46 188 -17 q 69 194 69 110 q 122 340 69 290 q 253 408 175 390 q 466 440 331 426 q 626 465 586 453 q 635 514 635 497 q 607 557 635 541 q 534 574 579 574 q 457 558 486 574 q 405 494 427 543 l 148 522 m 596 322 q 372 266 405 290 q 339 208 339 241 q 362 154 339 174 q 423 134 386 134 q 527 176 476 134 q 596 322 578 218 m 817 807 l 673 807 l 632 916 l 510 807 l 317 807 l 544 1000 l 744 1000 l 817 807 "},"}":{"x_min":64.796875,"x_max":572,"ha":540,"o":"m 572 244 q 473 211 506 244 q 440 64 440 178 q 426 -147 440 -78 q 352 -253 412 -215 q 156 -292 292 -292 l 64 -292 l 64 -72 l 71 -72 q 171 -44 147 -72 q 195 109 195 -17 q 218 271 195 210 q 315 359 241 332 q 217 452 240 391 q 194 622 194 513 q 173 763 194 735 q 64 791 152 791 l 64 1011 l 150 1011 q 375 959 309 1011 q 441 732 441 907 l 441 614 q 477 506 447 535 q 572 478 506 478 l 572 244 "},"‰":{"x_min":97,"x_max":1991,"ha":2026,"o":"m 1214 1013 l 351 -48 l 196 -48 l 1059 1013 l 1214 1013 m 389 1014 q 559 960 496 1014 q 623 805 623 906 q 545 587 623 680 q 324 494 467 494 q 158 548 220 494 q 97 706 97 603 q 174 924 97 834 q 389 1014 252 1014 m 326 605 q 417 679 385 605 q 449 840 449 753 q 431 887 449 871 q 392 903 413 903 q 331 877 360 903 q 287 779 303 851 q 271 675 271 707 q 286 623 271 641 q 326 605 302 605 m 1084 471 q 1254 417 1191 471 q 1318 263 1318 363 q 1240 45 1318 138 q 1019 -48 1162 -48 q 853 6 915 -48 q 792 164 792 61 q 869 381 792 292 q 1084 471 947 471 m 1014 63 q 1107 137 1075 63 q 1139 297 1139 211 q 1121 344 1139 328 q 1082 360 1103 360 q 1021 334 1049 360 q 976 237 992 309 q 960 134 960 165 q 975 80 960 98 q 1014 63 991 63 m 1757 470 q 1927 416 1864 470 q 1991 262 1991 362 q 1913 44 1991 137 q 1691 -49 1835 -49 q 1525 5 1587 -49 q 1464 163 1464 60 q 1542 380 1464 291 q 1757 470 1620 470 m 1692 62 q 1785 136 1753 62 q 1817 296 1817 210 q 1799 343 1817 327 q 1760 359 1781 359 q 1699 333 1727 359 q 1654 236 1670 308 q 1638 133 1638 164 q 1653 79 1638 97 q 1692 62 1669 62 "},"Ä":{"x_min":-22.375,"x_max":1024.71875,"ha":1080,"o":"m 1024 0 l 723 0 l 710 163 l 385 163 l 308 0 l -22 0 l 539 994 l 866 994 l 1024 0 m 690 374 l 659 736 l 657 736 l 486 374 l 690 374 m 979 1242 l 944 1067 l 763 1067 l 800 1242 l 979 1242 m 692 1242 l 656 1067 l 476 1067 l 513 1242 l 692 1242 "},"¸":{"x_min":-24.859375,"x_max":322,"ha":462,"o":"m 112 -24 q 194 -13 155 -13 q 287 -45 252 -13 q 322 -125 322 -77 q 299 -197 322 -165 q 233 -247 277 -229 q 122 -265 189 -265 q -24 -248 61 -265 l 2 -177 q 95 -189 59 -189 q 203 -131 203 -189 q 187 -98 203 -113 q 140 -84 172 -84 q 117 -86 139 -84 q 91 -89 96 -88 l 112 -24 "},"a":{"x_min":69,"x_max":900,"ha":926,"o":"m 148 522 q 262 680 173 624 q 539 736 351 736 q 825 682 751 736 q 900 527 900 629 q 862 304 900 460 q 828 100 828 157 q 845 0 828 51 l 576 0 q 567 82 567 42 q 324 -17 458 -17 q 128 46 188 -17 q 69 194 69 110 q 122 340 69 290 q 253 408 175 390 q 466 440 331 426 q 626 465 586 453 q 635 514 635 497 q 607 557 635 541 q 534 574 579 574 q 457 558 486 574 q 405 494 427 543 l 148 522 m 596 322 q 372 266 405 290 q 339 208 339 241 q 362 154 339 174 q 423 134 386 134 q 527 176 476 134 q 596 322 578 218 "},"—":{"x_min":40,"x_max":1446,"ha":1389,"o":"m 1446 288 l 40 288 l 40 438 l 1446 438 l 1446 288 "},"=":{"x_min":142,"x_max":881,"ha":918,"o":"m 881 549 l 142 549 l 142 769 l 881 769 l 881 549 m 881 215 l 142 215 l 142 435 l 881 435 l 881 215 "},"N":{"x_min":55.609375,"x_max":1217.984375,"ha":1157,"o":"m 1217 994 l 1004 0 l 716 0 l 470 578 l 467 578 l 344 0 l 55 0 l 269 994 l 556 994 l 801 415 l 804 415 l 929 994 l 1217 994 "},"ú":{"x_min":87,"x_max":954.09375,"ha":926,"o":"m 954 720 l 800 0 l 540 0 l 565 109 l 562 112 q 284 -17 449 -17 q 136 33 185 -17 q 87 155 87 84 q 115 334 87 202 l 199 719 l 475 719 l 400 368 q 381 278 383 290 q 379 247 379 265 l 379 245 q 431 187 379 187 q 540 243 494 187 q 608 407 585 300 l 676 720 l 954 720 m 836 1011 l 588 809 l 454 809 l 604 1011 l 836 1011 "},"⁄":{"x_min":-352.640625,"x_max":816.515625,"ha":232,"o":"m 816 1011 l -184 -36 l -352 -36 l 648 1011 l 816 1011 "},"2":{"x_min":87.25,"x_max":951.234375,"ha":926,"o":"m 178 716 q 312 936 205 862 q 594 1011 418 1011 q 862 933 772 1011 q 951 737 951 855 q 893 563 951 646 q 698 384 835 480 q 573 296 603 319 q 502 227 544 272 l 895 227 l 845 0 l 87 0 q 204 260 113 152 q 462 489 296 367 l 564 563 q 654 648 627 610 q 682 720 682 686 q 648 799 682 772 q 577 825 615 825 q 450 676 477 825 l 178 716 "},"ü":{"x_min":87,"x_max":954.09375,"ha":926,"o":"m 954 720 l 800 0 l 540 0 l 565 109 l 562 112 q 284 -17 449 -17 q 136 33 185 -17 q 87 155 87 84 q 115 334 87 202 l 199 719 l 475 719 l 400 368 q 381 278 383 290 q 379 247 379 265 l 379 245 q 431 187 379 187 q 540 243 494 187 q 608 407 585 300 l 676 720 l 954 720 m 846 985 l 811 810 l 630 810 l 667 985 l 846 985 m 559 985 l 523 810 l 343 810 l 380 985 l 559 985 "},"¯":{"x_min":265,"x_max":976,"ha":694,"o":"m 976 1099 l 265 1099 l 265 1168 l 976 1168 l 976 1099 "},"Z":{"x_min":29.15625,"x_max":1073.546875,"ha":1003,"o":"m 1073 995 l 1038 794 l 446 214 l 994 214 l 948 0 l 29 0 l 75 214 l 658 781 l 164 781 l 210 995 l 1073 995 "},"u":{"x_min":87,"x_max":954.09375,"ha":926,"o":"m 954 720 l 800 0 l 540 0 l 565 109 l 562 112 q 284 -17 449 -17 q 136 33 185 -17 q 87 155 87 84 q 115 334 87 202 l 199 719 l 475 719 l 400 368 q 381 278 383 290 q 379 247 379 265 l 379 245 q 431 187 379 187 q 540 243 494 187 q 608 407 585 300 l 676 720 l 954 720 "},"Ó":{"x_min":121,"x_max":1163,"ha":1158,"o":"m 722 1012 q 1056 890 950 1012 q 1163 590 1163 768 q 1143 434 1163 521 q 1067 252 1123 346 q 921 92 1011 158 q 748 5 831 27 q 572 -17 665 -17 q 240 90 359 -17 q 121 393 121 198 q 150 592 121 495 q 238 774 180 688 q 383 918 297 860 q 552 994 469 976 q 722 1012 635 1012 m 591 210 q 742 277 680 210 q 833 446 805 344 q 862 591 862 548 q 813 736 862 687 q 689 785 764 785 q 544 723 605 785 q 453 560 484 662 q 423 386 423 458 q 467 260 423 310 q 591 210 512 210 m 993 1268 l 745 1066 l 611 1066 l 761 1268 l 993 1268 "},"k":{"x_min":51.546875,"x_max":1019.28125,"ha":926,"o":"m 1019 720 l 711 470 l 893 0 l 584 0 l 507 302 l 360 184 l 320 0 l 51 0 l 265 994 l 534 994 l 423 479 l 426 476 l 703 720 l 1019 720 "},"Ù":{"x_min":150,"x_max":1219.6875,"ha":1157,"o":"m 1219 994 l 1090 394 q 928 83 1045 184 q 582 -17 812 -17 q 378 8 454 -17 q 249 83 301 33 q 173 197 197 133 q 150 334 150 261 q 168 512 150 427 l 270 994 l 579 994 l 460 434 q 452 351 452 395 q 591 233 452 233 q 717 277 665 233 q 796 451 769 322 l 909 994 l 1219 994 m 851 1066 l 729 1066 l 557 1269 l 770 1269 l 851 1066 "},"¢":{"x_min":86,"x_max":940.140625,"ha":927,"o":"m 940 463 l 702 463 q 641 545 691 517 l 472 159 q 653 290 603 159 l 898 263 q 742 52 853 122 q 478 -17 632 -17 q 398 -10 437 -17 l 282 -273 l 196 -237 l 299 0 q 141 103 197 25 q 86 293 86 181 q 137 506 86 405 q 291 672 189 608 q 555 737 393 737 q 620 736 605 737 l 734 994 l 820 956 l 718 722 q 880 620 830 685 q 940 463 929 555 m 546 560 q 391 468 441 548 q 342 304 342 388 q 384 193 342 222 l 546 560 "},"ß":{"x_min":41.390625,"x_max":907,"ha":926,"o":"m 41 0 l 170 609 q 209 760 189 698 q 275 880 230 821 q 401 974 320 938 q 605 1011 482 1011 q 828 963 750 1011 q 907 825 907 915 q 896 753 907 785 q 859 685 885 722 l 805 611 q 762 527 762 552 q 771 493 762 510 q 812 436 780 476 q 884 329 863 371 q 906 229 906 287 q 830 54 906 126 q 606 -17 754 -17 q 389 83 461 -17 l 552 189 q 625 153 584 153 q 664 170 646 153 q 682 208 682 187 q 668 253 682 230 q 610 331 655 276 q 510 511 510 455 q 621 707 510 570 q 666 789 666 764 q 644 826 666 812 q 595 840 623 840 q 497 787 533 840 q 433 601 461 734 l 305 0 l 41 0 "},"é":{"x_min":83,"x_max":920.234375,"ha":926,"o":"m 876 184 q 719 30 816 77 q 475 -17 621 -17 q 172 78 262 -17 q 83 314 83 174 q 125 495 83 410 q 238 638 167 580 q 380 715 310 695 q 543 736 450 736 q 832 648 745 736 q 920 433 920 561 q 901 289 920 391 l 359 289 q 480 144 359 144 q 610 209 562 144 l 876 184 m 646 423 q 651 464 651 437 q 618 546 651 518 q 537 575 585 575 q 443 536 486 575 q 378 423 401 498 l 646 423 m 835 1011 l 588 809 l 453 809 l 603 1011 l 835 1011 "},"s":{"x_min":33.5,"x_max":845.15625,"ha":849,"o":"m 845 547 l 586 519 q 489 585 575 585 q 413 566 439 585 q 388 523 388 548 q 410 482 388 498 q 532 451 433 465 q 744 379 691 427 q 797 251 797 331 q 693 61 797 140 q 379 -17 590 -17 q 127 33 207 -17 q 33 198 47 83 l 306 222 q 421 135 324 135 q 502 154 467 135 q 537 211 537 174 q 511 255 537 244 q 417 278 486 267 q 199 354 256 303 q 142 482 142 405 q 184 605 142 545 q 314 701 227 666 q 526 736 400 736 q 748 693 671 736 q 845 547 825 651 "},"B":{"x_min":58.265625,"x_max":1076,"ha":1080,"o":"m 270 994 l 728 994 q 866 986 812 994 q 969 948 920 979 q 1047 869 1019 918 q 1076 761 1076 819 q 1031 619 1076 685 q 890 522 987 552 l 890 519 q 1050 310 1050 471 q 951 96 1050 192 q 670 0 853 0 l 58 0 l 270 994 m 495 606 l 600 606 q 704 615 667 606 q 764 655 741 624 q 787 715 787 685 q 762 772 787 752 q 665 793 737 793 l 534 793 l 495 606 m 412 214 l 576 214 q 750 329 750 214 q 724 393 750 370 q 622 417 699 417 l 455 417 l 412 214 "},"…":{"x_min":73.921875,"x_max":1314.96875,"ha":1389,"o":"m 1314 278 l 1255 0 l 959 0 l 1019 278 l 1314 278 m 872 278 l 812 0 l 516 0 l 576 278 l 872 278 m 429 278 l 369 0 l 73 0 l 133 278 l 429 278 "},"?":{"x_min":118.890625,"x_max":864,"ha":848,"o":"m 118 713 q 262 943 161 874 q 527 1012 363 1012 q 776 950 688 1012 q 864 768 864 888 q 839 657 864 707 q 785 579 815 608 q 643 468 756 551 q 548 388 580 420 q 500 312 516 357 l 245 312 q 286 430 263 388 q 345 505 309 473 q 463 599 380 538 q 574 692 552 664 q 597 742 597 719 q 574 786 597 771 q 517 802 551 802 q 377 685 401 802 l 118 713 m 496 257 l 443 0 l 169 0 l 224 257 l 496 257 "},"H":{"x_min":56.96875,"x_max":1222.0625,"ha":1157,"o":"m 1222 994 l 1008 0 l 699 0 l 786 404 l 453 404 l 368 0 l 56 0 l 270 994 l 579 994 l 503 643 l 836 643 l 914 994 l 1222 994 "},"î":{"x_min":48.828125,"x_max":585.9375,"ha":463,"o":"m 480 720 l 326 0 l 48 0 l 202 720 l 480 720 m 585 807 l 441 807 l 400 916 l 278 807 l 86 807 l 312 1000 l 512 1000 l 585 807 "},"c":{"x_min":85,"x_max":940.171875,"ha":927,"o":"m 940 462 l 690 462 q 563 550 672 550 q 408 468 462 550 q 354 290 354 386 q 392 201 354 232 q 476 170 431 170 q 640 291 586 170 l 898 264 q 465 -17 803 -17 q 85 294 85 -17 q 210 605 85 475 q 563 736 335 736 q 824 667 727 736 q 940 462 922 598 "},"¶":{"x_min":167.875,"x_max":1174,"ha":1181,"o":"m 1174 779 l 1084 779 l 1084 -275 l 883 -275 l 883 779 l 769 779 l 769 -275 l 568 -275 l 568 416 l 521 416 q 242 503 317 416 q 167 711 167 591 q 217 876 167 805 q 341 970 266 947 q 513 994 416 994 l 1174 994 l 1174 779 "},"•":{"x_min":193,"x_max":643,"ha":695,"o":"m 417 732 q 577 666 511 732 q 643 507 643 600 q 577 348 643 414 q 417 282 511 282 q 258 348 324 282 q 193 507 193 414 q 258 666 193 600 q 417 732 324 732 "},"¥":{"x_min":35.9375,"x_max":1095.921875,"ha":926,"o":"m 1095 996 l 760 564 l 976 564 l 941 414 l 658 414 l 640 336 l 925 336 l 891 185 l 608 185 l 565 0 l 282 0 l 323 185 l 35 185 l 69 336 l 356 336 l 373 414 l 86 414 l 120 564 l 323 564 l 153 996 l 453 996 l 544 671 l 769 996 l 1095 996 "},"(":{"x_min":100,"x_max":664.265625,"ha":541,"o":"m 664 1011 q 334 71 334 627 q 390 -292 334 -128 l 225 -292 q 122 29 145 -86 q 100 243 100 146 q 475 1011 100 611 l 664 1011 "},"U":{"x_min":150,"x_max":1219.6875,"ha":1157,"o":"m 1219 994 l 1090 394 q 928 83 1045 184 q 582 -17 812 -17 q 378 8 454 -17 q 249 83 301 33 q 173 197 197 133 q 150 334 150 261 q 168 512 150 427 l 270 994 l 579 994 l 460 434 q 452 351 452 395 q 591 233 452 233 q 717 277 665 233 q 796 451 769 322 l 909 994 l 1219 994 "},"◊":{"x_min":87.484375,"x_max":711.40625,"ha":686,"o":"m 427 964 l 711 480 l 427 0 l 352 0 l 87 480 l 352 964 l 427 964 m 391 898 l 161 480 l 391 63 l 634 480 l 391 898 "},"Ñ":{"x_min":56.015625,"x_max":1218.390625,"ha":1157,"o":"m 1218 994 l 1004 0 l 717 0 l 471 578 l 468 578 l 344 0 l 56 0 l 269 994 l 557 994 l 802 415 l 804 415 l 929 994 l 1218 994 m 991 1256 q 948 1116 983 1162 q 858 1070 912 1070 q 746 1096 823 1070 q 701 1113 729 1102 q 654 1125 673 1125 q 610 1068 620 1125 l 507 1068 q 548 1203 507 1156 q 648 1251 590 1251 q 753 1228 688 1251 q 842 1205 818 1205 q 886 1256 879 1205 l 991 1256 "},"F":{"x_min":56.96875,"x_max":1032.171875,"ha":926,"o":"m 1032 994 l 986 782 l 530 782 l 491 604 l 937 604 l 893 403 l 445 403 l 364 0 l 56 0 l 269 994 l 1032 994 "},"­":{"x_min":38.65625,"x_max":486.25,"ha":463,"o":"m 486 469 l 440 257 l 38 257 l 84 469 l 486 469 "},":":{"x_min":38.65625,"x_max":487.609375,"ha":463,"o":"m 487 720 l 427 442 l 132 442 l 191 720 l 487 720 m 394 278 l 335 0 l 38 0 l 98 278 l 394 278 "},"Û":{"x_min":150,"x_max":1219.6875,"ha":1157,"o":"m 1219 994 l 1090 394 q 928 83 1045 184 q 582 -17 812 -17 q 378 8 454 -17 q 249 83 301 33 q 173 197 197 133 q 150 334 150 261 q 168 512 150 427 l 270 994 l 579 994 l 460 434 q 452 351 452 395 q 591 233 452 233 q 717 277 665 233 q 796 451 769 322 l 909 994 l 1219 994 m 1002 1064 l 858 1064 l 816 1173 l 694 1064 l 502 1064 l 729 1257 l 929 1257 l 1002 1064 "},"*":{"x_min":229.21875,"x_max":755.484375,"ha":772,"o":"m 755 765 q 622 739 639 741 q 566 737 606 737 q 697 606 589 723 l 575 514 q 488 682 511 629 q 473 643 475 651 q 464 623 470 635 q 443 585 458 611 l 404 514 l 278 606 q 416 736 400 729 l 229 765 l 278 908 q 445 823 398 855 q 416 1012 436 862 l 566 1012 q 537 823 549 861 l 571 842 q 708 908 584 852 l 755 765 "},"†":{"x_min":158.015625,"x_max":946.046875,"ha":926,"o":"m 946 736 l 904 542 l 653 542 l 480 -275 l 242 -275 l 413 542 l 158 542 l 200 736 l 457 736 l 511 994 l 750 994 l 694 736 l 946 736 "},"°":{"x_min":178,"x_max":567,"ha":556,"o":"m 372 1012 q 509 954 452 1012 q 567 817 567 897 q 509 680 567 737 q 372 623 452 623 q 235 680 292 623 q 178 817 178 737 q 235 954 178 897 q 372 1012 292 1012 m 372 748 q 421 768 401 748 q 442 817 442 788 q 421 866 442 846 q 372 887 401 887 q 323 866 343 887 q 303 817 303 846 q 323 768 303 788 q 372 748 343 748 "},"V":{"x_min":166.828125,"x_max":1248.515625,"ha":1080,"o":"m 1248 994 l 690 0 l 358 0 l 166 994 l 472 994 l 560 286 l 563 286 l 915 994 l 1248 994 "},"å":{"x_min":69,"x_max":900,"ha":926,"o":"m 148 522 q 262 680 173 624 q 539 736 351 736 q 825 682 751 736 q 900 527 900 629 q 862 304 900 460 q 828 100 828 157 q 845 0 828 51 l 576 0 q 567 82 567 42 q 324 -17 458 -17 q 128 46 188 -17 q 69 194 69 110 q 122 340 69 290 q 253 408 175 390 q 466 440 331 426 q 626 465 586 453 q 635 514 635 497 q 607 557 635 541 q 534 574 580 574 q 457 558 487 574 q 405 494 428 543 l 148 522 m 596 322 q 372 266 405 290 q 339 208 339 241 q 362 154 339 174 q 423 134 386 134 q 527 176 476 134 q 596 322 578 218 m 594 1097 q 702 1052 657 1097 q 747 946 747 1008 q 702 838 747 883 q 594 793 657 793 q 487 838 531 793 q 443 946 443 883 q 487 1052 443 1007 q 594 1097 532 1097 m 594 884 q 638 902 619 884 q 657 946 657 921 q 638 988 657 970 q 594 1007 619 1007 q 551 988 569 1007 q 533 946 533 970 q 551 902 533 921 q 594 884 569 884 "}," ":{"x_min":0,"x_max":0,"ha":463},"0":{"x_min":103,"x_max":958,"ha":926,"o":"m 591 1011 q 848 913 739 1011 q 958 630 958 816 q 893 316 958 472 q 714 71 829 160 q 446 -17 599 -17 q 197 87 291 -17 q 103 389 103 191 q 164 681 103 529 q 337 922 226 834 q 591 1011 448 1011 m 370 317 q 476 170 370 170 q 588 251 540 170 q 664 468 637 332 q 691 688 691 603 q 664 787 691 750 q 585 825 637 825 q 470 744 520 825 q 395 530 421 663 q 370 321 370 398 l 370 317 "},"”":{"x_min":95.625,"x_max":828.046875,"ha":694,"o":"m 828 995 l 780 773 q 746 642 761 685 q 695 553 731 600 q 596 474 659 506 q 438 442 532 442 l 469 580 l 478 580 q 630 718 598 580 l 499 718 l 559 995 l 828 995 m 484 995 l 437 773 q 403 642 419 685 q 352 553 387 600 q 252 474 316 506 q 95 442 189 442 l 126 580 l 134 580 q 287 718 255 580 l 156 718 l 216 995 l 484 995 "},"¾":{"x_min":141.34375,"x_max":1394.46875,"ha":1388,"o":"m 191 879 q 438 1011 238 1011 q 612 976 545 1011 q 679 873 679 941 q 569 756 679 788 q 635 705 620 729 q 651 646 651 681 q 589 535 651 580 q 392 490 528 490 q 141 635 192 490 l 306 658 q 397 596 325 596 q 452 613 430 596 q 475 656 475 630 q 390 713 475 713 l 355 713 l 377 811 q 504 868 504 811 q 445 913 504 913 q 390 895 409 913 q 363 857 371 877 l 191 879 m 1394 1011 l 393 -36 l 225 -36 l 1226 1011 l 1394 1011 m 1347 146 l 1325 39 l 1256 39 l 1239 -36 l 1087 -36 l 1106 39 l 813 39 l 839 160 l 1196 480 l 1347 480 l 1279 146 l 1347 146 m 1161 304 l 1159 306 l 979 146 l 1126 146 l 1161 304 "},"@":{"x_min":46,"x_max":1079,"ha":1028,"o":"m 1079 69 q 862 -98 995 -38 q 591 -158 730 -158 q 196 6 347 -158 q 46 416 46 171 q 193 836 46 661 q 598 1012 340 1012 q 950 871 821 1012 q 1079 525 1079 730 q 1026 292 1079 394 q 887 133 973 190 q 728 77 801 77 q 622 156 642 77 q 460 77 548 77 q 303 153 367 77 q 239 367 239 230 q 322 667 239 532 q 529 802 406 802 q 689 701 625 802 l 700 778 l 833 778 l 748 241 q 745 218 745 236 q 773 192 745 192 q 905 281 834 192 q 977 523 977 371 q 872 807 977 704 q 599 910 768 910 q 271 771 395 910 q 147 416 147 632 q 268 73 147 204 q 588 -57 389 -57 q 940 69 782 -57 l 1079 69 m 482 175 q 609 307 570 175 q 648 558 648 440 q 623 654 648 615 q 553 693 597 693 q 425 578 469 693 q 382 333 382 463 q 410 217 382 260 q 482 175 438 175 "},"ö":{"x_min":82,"x_max":907,"ha":927,"o":"m 536 736 q 818 638 729 736 q 907 409 907 540 q 856 206 907 309 q 703 43 805 103 q 451 -17 601 -17 q 172 76 262 -17 q 82 308 82 169 q 135 519 82 417 q 292 678 189 621 q 536 736 394 736 m 469 170 q 592 248 546 170 q 637 424 637 327 q 603 522 637 493 q 526 550 568 550 q 395 470 438 550 q 351 308 351 391 q 385 209 351 249 q 469 170 419 170 m 847 985 l 811 810 l 630 810 l 668 985 l 847 985 m 559 985 l 523 810 l 343 810 l 380 985 l 559 985 "},"i":{"x_min":48.828125,"x_max":537.78125,"ha":463,"o":"m 537 994 l 498 804 l 222 804 l 261 994 l 537 994 m 480 720 l 326 0 l 48 0 l 202 720 l 480 720 "},"Õ":{"x_min":121,"x_max":1163,"ha":1158,"o":"m 722 1012 q 1056 890 950 1012 q 1163 590 1163 768 q 1143 434 1163 521 q 1067 252 1123 346 q 921 92 1011 158 q 748 5 831 27 q 572 -17 665 -17 q 240 90 359 -17 q 121 393 121 198 q 150 592 121 495 q 238 774 180 688 q 383 918 297 860 q 552 994 469 976 q 722 1012 635 1012 m 591 210 q 742 277 680 210 q 833 446 805 344 q 862 591 862 548 q 813 736 862 687 q 689 785 764 785 q 544 723 605 785 q 453 560 484 662 q 423 386 423 458 q 467 260 423 310 q 591 210 512 210 m 992 1256 q 948 1116 984 1162 q 858 1070 912 1070 q 746 1096 823 1070 q 701 1113 729 1102 q 654 1125 673 1125 q 610 1068 621 1125 l 507 1068 q 549 1203 507 1156 q 648 1251 591 1251 q 753 1228 688 1251 q 842 1205 818 1205 q 886 1256 880 1205 l 992 1256 "},"þ":{"x_min":-22.546875,"x_max":905.234375,"ha":926,"o":"m 459 669 q 654 736 553 736 q 840 655 775 736 q 905 437 905 574 q 807 118 905 254 q 562 -18 710 -18 q 333 96 410 -18 l 254 -275 l -22 -275 l 254 994 l 526 994 l 456 671 l 459 669 m 488 169 q 592 245 549 169 q 636 431 636 322 q 608 526 636 497 q 541 556 580 556 q 424 470 465 556 q 383 295 383 384 q 415 200 383 231 q 488 169 447 169 "},"]":{"x_min":-87.484375,"x_max":592.71875,"ha":541,"o":"m 592 995 l 322 -275 l -87 -275 l -52 -111 l 113 -111 l 314 832 l 151 832 l 184 995 l 592 995 "},"m":{"x_min":42.46875,"x_max":1368,"ha":1389,"o":"m 892 614 q 1035 710 970 684 q 1172 736 1099 736 q 1319 684 1270 736 q 1368 558 1368 632 q 1359 472 1368 514 l 1256 0 l 979 0 l 1045 307 q 1073 447 1070 425 q 1076 478 1076 469 q 1023 535 1076 535 q 921 483 961 535 q 856 320 880 431 l 788 0 l 511 0 l 576 302 q 605 446 601 423 q 608 480 608 468 q 552 535 608 535 q 463 491 510 535 q 395 345 417 448 l 320 0 l 42 0 l 197 720 l 454 720 l 431 617 l 434 614 q 700 736 553 736 q 821 704 768 736 q 892 614 873 672 "},"8":{"x_min":96,"x_max":936,"ha":927,"o":"m 297 556 q 203 723 203 622 q 302 924 203 837 q 588 1011 401 1011 q 846 945 757 1011 q 936 766 936 879 q 778 537 936 613 q 902 344 902 469 q 784 93 902 204 q 439 -17 667 -17 q 182 59 268 -17 q 96 258 96 136 q 297 556 96 448 m 561 616 q 645 655 609 616 q 681 749 681 694 q 655 821 681 796 q 584 847 629 847 q 494 808 530 847 q 459 715 459 770 q 487 640 459 665 q 561 616 516 616 m 472 153 q 591 211 549 153 q 634 346 634 269 q 603 426 634 400 q 528 453 572 453 q 405 392 446 453 q 365 262 365 331 q 394 182 365 212 q 472 153 424 153 "},"R":{"x_min":56.671875,"x_max":1115,"ha":1080,"o":"m 267 994 l 832 994 q 1047 917 979 994 q 1115 732 1115 840 q 1043 529 1115 616 q 813 417 971 441 q 1037 0 907 341 l 712 0 q 616 235 671 107 q 533 383 561 363 q 466 404 505 404 l 450 404 l 365 0 l 56 0 l 267 994 m 490 589 l 548 589 q 737 603 694 589 q 801 649 780 617 q 823 711 823 681 q 797 771 823 749 q 688 793 772 793 l 532 793 l 490 589 "},"á":{"x_min":69,"x_max":900,"ha":926,"o":"m 148 522 q 262 680 173 624 q 539 736 351 736 q 825 682 751 736 q 900 527 900 629 q 862 304 900 460 q 828 100 828 157 q 845 0 828 51 l 576 0 q 567 82 567 42 q 324 -17 458 -17 q 128 46 188 -17 q 69 194 69 110 q 122 340 69 290 q 253 408 175 390 q 466 440 331 426 q 626 465 586 453 q 635 514 635 497 q 607 557 635 541 q 534 574 579 574 q 457 558 486 574 q 405 494 427 543 l 148 522 m 596 322 q 372 266 405 290 q 339 208 339 241 q 362 154 339 174 q 423 134 386 134 q 527 176 476 134 q 596 322 578 218 m 836 1011 l 588 809 l 454 809 l 604 1011 l 836 1011 "},"×":{"x_min":140.375,"x_max":881.625,"ha":917,"o":"m 881 275 l 724 119 l 511 335 l 295 119 l 140 275 l 355 490 l 140 704 l 295 861 l 511 647 l 724 861 l 881 704 l 668 490 l 881 275 "},"o":{"x_min":82,"x_max":907,"ha":927,"o":"m 536 736 q 818 638 729 736 q 907 409 907 540 q 856 206 907 309 q 703 43 805 103 q 451 -17 601 -17 q 172 76 262 -17 q 82 308 82 169 q 135 519 82 417 q 292 678 189 621 q 536 736 394 736 m 469 170 q 592 248 546 170 q 637 424 637 327 q 603 522 637 493 q 526 550 568 550 q 395 470 438 550 q 351 308 351 391 q 385 209 351 249 q 469 170 419 170 "},"5":{"x_min":83.703125,"x_max":970.1875,"ha":927,"o":"m 970 994 l 924 783 l 497 783 l 450 622 q 565 661 527 650 q 647 672 604 672 q 843 602 766 672 q 920 394 920 532 q 872 198 920 286 q 723 47 825 111 q 440 -17 620 -17 q 186 50 270 -17 q 83 267 102 117 l 357 299 l 357 295 q 389 190 357 227 q 479 154 422 154 q 600 218 551 154 q 650 372 650 282 l 650 374 q 542 501 650 501 q 408 435 465 501 l 154 474 l 302 994 l 970 994 "},"õ":{"x_min":82,"x_max":907,"ha":927,"o":"m 536 736 q 818 638 729 736 q 907 409 907 540 q 856 206 907 309 q 703 43 805 103 q 451 -17 601 -17 q 172 76 262 -17 q 82 308 82 169 q 135 519 82 417 q 292 678 189 621 q 536 736 394 736 m 469 170 q 592 248 546 170 q 637 424 637 327 q 603 522 637 493 q 526 550 568 550 q 395 470 438 550 q 351 308 351 391 q 385 209 351 249 q 469 170 419 170 m 835 999 q 791 859 826 905 q 701 813 755 813 q 589 839 666 813 q 544 856 572 845 q 497 868 516 868 q 453 811 463 868 l 350 811 q 392 946 350 899 q 491 994 434 994 q 596 971 531 994 q 685 948 661 948 q 729 999 723 948 l 835 999 "},"7":{"x_min":172.25,"x_max":1026.0625,"ha":926,"o":"m 1026 994 l 987 809 q 619 404 748 627 q 454 0 490 182 l 172 0 q 637 762 272 437 l 172 762 l 221 994 l 1026 994 "},"K":{"x_min":55.609375,"x_max":1279.03125,"ha":1157,"o":"m 1279 994 l 848 619 l 1152 0 l 820 0 l 633 430 l 416 244 l 365 0 l 55 0 l 267 994 l 577 994 l 497 622 l 499 619 l 874 994 l 1279 994 "},",":{"x_min":-22.375,"x_max":394.6875,"ha":463,"o":"m 394 278 l 343 42 q 293 -111 320 -60 q 232 -194 267 -161 q 158 -243 198 -226 q 77 -266 118 -260 q -13 -273 37 -273 l -22 -273 l 8 -141 l 19 -141 q 181 0 151 -141 l 38 0 l 98 278 l 394 278 "},"d":{"x_min":83,"x_max":1010.546875,"ha":926,"o":"m 1010 994 l 796 0 l 541 0 l 554 71 l 552 74 q 446 1 493 20 q 334 -17 399 -17 q 147 63 212 -17 q 83 281 83 144 q 180 600 83 464 q 426 736 277 736 q 655 623 577 736 l 733 994 l 1010 994 m 446 164 q 564 249 523 164 q 605 424 605 335 q 572 519 605 487 q 499 551 540 551 q 395 474 438 551 q 352 288 352 397 q 378 195 352 227 q 446 164 404 164 "},"¨":{"x_min":111.21875,"x_max":615.09375,"ha":463,"o":"m 615 985 l 579 810 l 398 810 l 436 985 l 615 985 m 327 985 l 291 810 l 111 810 l 148 985 l 327 985 "},"Ô":{"x_min":121,"x_max":1163,"ha":1158,"o":"m 722 1012 q 1056 890 950 1012 q 1163 590 1163 768 q 1143 434 1163 521 q 1067 252 1123 346 q 921 92 1011 158 q 748 5 831 27 q 572 -17 665 -17 q 240 90 359 -17 q 121 393 121 198 q 150 592 121 495 q 238 774 180 688 q 383 918 297 860 q 552 994 469 976 q 722 1012 635 1012 m 591 210 q 742 277 680 210 q 833 446 805 344 q 862 591 862 548 q 813 736 862 687 q 689 785 764 785 q 544 723 605 785 q 453 560 484 662 q 423 386 423 458 q 467 260 423 310 q 591 210 512 210 m 1003 1064 l 858 1064 l 817 1173 l 695 1064 l 503 1064 l 729 1257 l 929 1257 l 1003 1064 "},"E":{"x_min":55.609375,"x_max":1080.328125,"ha":1003,"o":"m 1080 995 l 1034 781 l 530 781 l 497 622 l 983 622 l 938 421 l 453 421 l 410 227 l 958 227 l 909 0 l 55 0 l 267 995 l 1080 995 "},"Y":{"x_min":168.1875,"x_max":1252.578125,"ha":1080,"o":"m 1252 994 l 773 374 l 694 0 l 384 0 l 466 383 l 168 994 l 490 994 l 642 626 l 899 994 l 1252 994 "},"\"":{"x_min":150,"x_max":807.203125,"ha":695,"o":"m 807 995 l 776 849 q 744 758 772 831 l 693 630 l 500 630 l 500 831 l 531 995 l 807 995 m 457 995 l 426 849 q 393 758 422 831 l 343 630 l 150 630 l 150 831 l 181 995 l 457 995 "},"‹":{"x_min":44.765625,"x_max":530.328125,"ha":463,"o":"m 530 678 l 294 378 l 380 52 l 187 52 l 44 389 l 309 678 l 530 678 "},"ê":{"x_min":83,"x_max":920.234375,"ha":926,"o":"m 876 184 q 719 30 816 77 q 475 -17 621 -17 q 172 78 262 -17 q 83 314 83 174 q 125 495 83 410 q 238 638 167 580 q 380 715 310 695 q 543 736 450 736 q 832 648 745 736 q 920 433 920 561 q 901 289 920 391 l 359 289 q 480 144 359 144 q 610 209 562 144 l 876 184 m 646 423 q 651 464 651 437 q 618 546 651 518 q 537 575 585 575 q 443 536 486 575 q 378 423 401 498 l 646 423 m 817 807 l 672 807 l 631 916 l 509 807 l 317 807 l 543 1000 l 743 1000 l 817 807 "},"Ï":{"x_min":70.53125,"x_max":709.359375,"ha":541,"o":"m 594 994 l 381 0 l 70 0 l 283 994 l 594 994 m 709 1242 l 673 1067 l 493 1067 l 530 1242 l 709 1242 m 421 1242 l 385 1067 l 205 1067 l 242 1242 l 421 1242 "},"„":{"x_min":-35.9375,"x_max":695.796875,"ha":694,"o":"m 695 278 l 648 55 q 614 -74 630 -31 q 563 -163 598 -117 q 463 -242 527 -210 q 307 -275 400 -275 l 337 -137 l 345 -137 q 498 0 466 -137 l 368 0 l 427 278 l 695 278 m 352 278 l 305 55 q 271 -74 286 -31 q 220 -163 255 -117 q 120 -242 184 -210 q -35 -275 56 -275 l -5 -137 l 2 -137 q 155 0 123 -137 l 25 0 l 84 278 l 352 278 "},"Â":{"x_min":-22.375,"x_max":1024.71875,"ha":1080,"o":"m 1024 0 l 723 0 l 710 163 l 385 163 l 308 0 l -22 0 l 539 994 l 866 994 l 1024 0 m 690 374 l 659 736 l 657 736 l 486 374 l 690 374 m 951 1065 l 807 1065 l 765 1174 l 643 1065 l 451 1065 l 678 1258 l 878 1258 l 951 1065 "},"Í":{"x_min":70.53125,"x_max":684.265625,"ha":541,"o":"m 594 994 l 381 0 l 70 0 l 283 994 l 594 994 m 684 1269 l 436 1066 l 302 1066 l 452 1269 l 684 1269 "},"´":{"x_min":222.4375,"x_max":604.25,"ha":463,"o":"m 604 1012 l 356 809 l 222 809 l 372 1012 l 604 1012 "},"ì":{"x_min":48.828125,"x_max":480.828125,"ha":463,"o":"m 480 720 l 326 0 l 48 0 l 202 720 l 480 720 m 462 808 l 340 808 l 168 1011 l 381 1011 l 462 808 "},"±":{"x_min":142,"x_max":881,"ha":918,"o":"m 881 514 l 621 514 l 621 272 l 402 272 l 402 514 l 142 514 l 142 728 l 402 728 l 402 981 l 621 981 l 621 728 l 881 728 l 881 514 m 881 0 l 142 0 l 142 208 l 881 208 l 881 0 "},"Ú":{"x_min":150,"x_max":1219.6875,"ha":1157,"o":"m 1219 994 l 1090 394 q 928 83 1045 184 q 582 -17 812 -17 q 378 8 454 -17 q 249 83 301 33 q 173 197 197 133 q 150 334 150 261 q 168 512 150 427 l 270 994 l 579 994 l 460 434 q 452 351 452 395 q 591 233 452 233 q 717 277 665 233 q 796 451 769 322 l 909 994 l 1219 994 m 993 1268 l 745 1066 l 611 1066 l 761 1268 l 993 1268 "},"|":{"x_min":157,"x_max":329,"ha":386,"o":"m 329 -275 l 157 -275 l 157 995 l 329 995 l 329 -275 "},"§":{"x_min":31.71875,"x_max":944,"ha":926,"o":"m 944 756 l 701 735 q 593 829 701 829 q 513 811 540 829 q 487 765 487 793 q 512 720 487 740 q 653 638 537 700 q 796 554 745 589 q 878 474 847 519 q 909 366 909 428 q 733 130 909 220 q 791 -13 791 56 q 693 -208 791 -125 q 406 -292 595 -292 q 31 -37 79 -292 l 271 13 q 323 -77 288 -51 q 418 -103 357 -103 q 503 -79 475 -103 q 531 -22 531 -56 q 498 41 531 15 q 374 113 466 66 q 234 195 288 159 q 144 283 181 231 q 107 402 107 334 q 150 526 107 467 q 282 630 194 586 q 238 753 238 692 q 280 881 238 820 q 407 976 323 941 q 610 1011 490 1011 q 944 756 944 1011 m 617 233 q 687 322 687 271 q 675 356 687 341 q 634 391 663 372 q 574 429 605 411 q 513 464 542 446 l 443 506 q 395 536 403 531 q 327 439 327 492 q 335 408 327 422 q 365 378 344 394 q 432 335 385 363 q 543 272 479 307 q 617 233 606 237 "},"Ý":{"x_min":168.1875,"x_max":1252.578125,"ha":1080,"o":"m 1252 994 l 773 374 l 694 0 l 384 0 l 466 383 l 168 994 l 490 994 l 642 626 l 899 994 l 1252 994 m 955 1269 l 708 1066 l 573 1066 l 723 1269 l 955 1269 "},"b":{"x_min":41.140625,"x_max":909.234375,"ha":926,"o":"m 459 668 q 550 720 507 704 q 658 736 593 736 q 845 651 782 736 q 909 434 909 567 q 814 123 909 263 q 563 -17 719 -17 q 324 118 402 -17 l 298 0 l 41 0 l 252 994 l 528 994 l 459 668 m 492 170 q 596 244 552 170 q 640 433 640 319 q 543 556 640 556 q 429 474 472 556 q 387 296 387 393 q 419 201 387 233 q 492 170 451 170 "},"q":{"x_min":82,"x_max":949.859375,"ha":926,"o":"m 949 720 l 738 -275 l 462 -275 l 531 51 q 441 -1 484 14 q 333 -17 397 -17 q 145 67 208 -17 q 82 284 82 151 q 176 595 82 455 q 427 736 271 736 q 666 601 589 736 l 692 720 l 949 720 m 448 164 q 561 245 518 164 q 604 423 604 326 q 585 501 604 472 q 542 539 566 529 q 498 550 518 550 q 395 475 439 550 q 351 286 351 400 q 448 164 351 164 "},"Ö":{"x_min":121,"x_max":1163,"ha":1158,"o":"m 722 1012 q 1056 890 950 1012 q 1163 590 1163 768 q 1143 434 1163 521 q 1067 252 1123 346 q 921 92 1011 158 q 748 5 831 27 q 572 -17 665 -17 q 240 90 359 -17 q 121 393 121 198 q 150 592 121 495 q 238 774 180 688 q 383 918 297 860 q 552 994 469 976 q 722 1012 635 1012 m 591 210 q 742 277 680 210 q 833 446 805 344 q 862 591 862 548 q 813 736 862 687 q 689 785 764 785 q 544 723 605 785 q 453 560 484 662 q 423 386 423 458 q 467 260 423 310 q 591 210 512 210 m 1018 1242 l 982 1067 l 802 1067 l 839 1242 l 1018 1242 m 731 1242 l 695 1067 l 514 1067 l 551 1242 l 731 1242 "},"z":{"x_min":21.015625,"x_max":815.15625,"ha":772,"o":"m 815 720 l 779 556 l 387 189 l 734 189 l 695 0 l 21 0 l 55 162 l 454 531 l 128 531 l 170 720 l 815 720 "},"ã":{"x_min":69,"x_max":900,"ha":926,"o":"m 148 522 q 262 680 173 624 q 539 736 351 736 q 825 682 751 736 q 900 527 900 629 q 862 304 900 460 q 828 100 828 157 q 845 0 828 51 l 576 0 q 567 82 567 42 q 324 -17 458 -17 q 128 46 188 -17 q 69 194 69 110 q 122 340 69 290 q 253 408 175 390 q 466 440 331 426 q 626 465 586 453 q 635 514 635 497 q 607 557 635 541 q 534 574 580 574 q 457 558 487 574 q 405 494 427 543 l 148 522 m 596 322 q 372 266 405 290 q 339 208 339 241 q 362 154 339 174 q 423 134 386 134 q 527 176 476 134 q 596 322 578 218 m 834 999 q 791 859 826 905 q 701 813 755 813 q 589 839 666 813 q 544 856 572 845 q 497 868 516 868 q 453 811 463 868 l 350 811 q 391 946 350 899 q 491 994 433 994 q 596 971 531 994 q 685 948 661 948 q 729 999 723 948 l 834 999 "},"æ":{"x_min":69,"x_max":1384,"ha":1388,"o":"m 787 672 q 1024 736 877 736 q 1294 647 1205 736 q 1384 419 1384 558 q 1365 289 1384 364 l 841 289 q 959 144 841 144 q 1073 207 1038 144 l 1337 182 q 941 -17 1234 -17 q 763 11 830 -17 q 643 94 697 39 q 494 7 565 31 q 336 -17 422 -17 q 131 44 193 -17 q 69 193 69 105 q 143 357 69 297 q 345 432 218 417 q 480 447 473 447 q 602 462 483 447 q 607 508 607 488 q 583 556 607 538 q 520 575 559 575 q 405 493 429 575 l 147 522 q 272 686 182 636 q 527 736 363 736 q 679 723 617 736 q 787 672 741 711 m 1117 421 q 1122 466 1122 447 q 1097 543 1122 511 q 1023 575 1072 575 q 927 541 965 575 q 862 421 888 507 l 1117 421 m 576 324 q 374 273 410 300 q 339 203 339 246 q 360 151 339 169 q 409 134 381 134 q 511 184 467 134 q 576 324 554 234 "},"®":{"x_min":87,"x_max":1123,"ha":1110,"o":"m 605 1011 q 970 858 818 1011 q 1123 492 1123 706 q 970 128 1123 280 q 605 -24 818 -24 q 239 128 391 -24 q 87 492 87 280 q 239 858 87 706 q 605 1011 391 1011 m 605 76 q 900 198 777 76 q 1023 492 1023 321 q 900 788 1023 665 q 605 911 777 911 q 310 788 433 911 q 187 492 187 665 q 310 198 187 321 q 605 76 433 76 m 848 216 l 686 216 q 582 401 611 366 q 524 436 553 436 q 508 434 512 436 l 508 216 l 370 216 l 370 771 l 617 771 q 818 613 818 771 q 668 461 818 490 l 668 458 q 766 370 730 439 l 848 216 m 508 536 l 567 536 q 676 605 676 536 q 573 675 676 675 l 508 675 l 508 536 "},"É":{"x_min":55.609375,"x_max":1080.328125,"ha":1003,"o":"m 1080 995 l 1034 781 l 530 781 l 497 622 l 983 622 l 938 421 l 453 421 l 410 227 l 958 227 l 909 0 l 55 0 l 267 995 l 1080 995 m 916 1269 l 668 1066 l 534 1066 l 684 1269 l 916 1269 "},"~":{"x_min":122,"x_max":900,"ha":917,"o":"m 900 430 q 775 348 826 370 q 673 326 724 326 q 597 337 637 326 q 482 387 557 349 q 337 435 389 435 q 122 326 234 435 l 122 550 q 360 653 233 653 q 430 642 393 653 q 543 594 467 631 q 694 546 642 546 q 900 651 786 546 l 900 430 "},"³":{"x_min":120.34375,"x_max":658,"ha":555,"o":"m 170 879 q 417 1011 217 1011 q 591 976 524 1011 q 658 873 658 941 q 548 756 658 788 q 614 705 599 729 q 630 646 630 681 q 568 535 630 580 q 371 490 507 490 q 120 635 171 490 l 285 658 q 376 596 304 596 q 431 613 409 596 q 454 656 454 630 q 369 713 454 713 l 334 713 l 356 811 q 483 868 483 811 q 424 913 483 913 q 369 895 388 913 q 342 857 350 877 l 170 879 "},"¡":{"x_min":-4.140625,"x_max":494.3125,"ha":463,"o":"m 494 720 l 438 464 l 164 464 l 218 720 l 494 720 m 379 406 q 358 146 358 258 q 346 -22 358 33 q 298 -241 334 -78 l 294 -260 q 291 -275 292 -272 l -4 -275 q 31 -98 18 -174 q 91 95 44 -22 q 205 406 138 213 l 379 406 "},"[":{"x_min":13.5625,"x_max":694.453125,"ha":541,"o":"m 694 995 l 659 832 l 493 832 l 292 -111 l 455 -111 l 422 -275 l 13 -275 l 284 995 l 694 995 "},"L":{"x_min":56.96875,"x_max":909.421875,"ha":926,"o":"m 909 243 l 858 0 l 56 0 l 267 994 l 577 994 l 416 243 l 909 243 "}," ":{"x_min":0,"x_max":0,"ha":463},"%":{"x_min":135,"x_max":1353,"ha":1389,"o":"m 1252 1010 l 389 -51 l 234 -51 l 1097 1010 l 1252 1010 m 427 1011 q 597 957 534 1011 q 661 802 661 903 q 583 584 661 677 q 362 491 505 491 q 196 545 258 491 q 135 703 135 600 q 212 921 135 831 q 427 1011 290 1011 m 364 602 q 455 676 423 602 q 487 837 487 751 q 469 884 487 868 q 430 900 451 900 q 369 874 398 900 q 325 776 341 848 q 309 672 309 704 q 324 620 309 638 q 364 602 340 602 m 1119 467 q 1289 413 1226 467 q 1353 259 1353 359 q 1275 41 1353 134 q 1054 -52 1197 -52 q 888 2 950 -52 q 827 160 827 57 q 904 377 827 288 q 1119 467 982 467 m 1055 59 q 1147 133 1115 59 q 1179 293 1179 207 q 1161 340 1179 324 q 1122 356 1143 356 q 1061 330 1090 356 q 1017 233 1033 305 q 1001 130 1001 161 q 1016 76 1001 94 q 1055 59 1032 59 "},"P":{"x_min":54.125,"x_max":1046,"ha":1003,"o":"m 269 995 l 721 995 q 913 964 848 995 q 1012 875 978 934 q 1046 729 1046 815 q 985 530 1046 617 q 832 405 924 443 q 577 367 740 367 l 441 367 l 364 0 l 54 0 l 269 995 m 484 564 l 588 564 q 707 606 661 564 q 754 708 754 649 q 657 798 754 798 l 536 798 l 484 564 "},"À":{"x_min":-22.375,"x_max":1024.71875,"ha":1080,"o":"m 1024 0 l 723 0 l 710 163 l 385 163 l 308 0 l -22 0 l 539 994 l 866 994 l 1024 0 m 690 374 l 659 736 l 657 736 l 486 374 l 690 374 m 813 1066 l 691 1066 l 519 1269 l 733 1269 l 813 1066 "},"_":{"x_min":-8,"x_max":703,"ha":695,"o":"m 703 -174 l -8 -174 l -8 -105 l 703 -105 l 703 -174 "},"ñ":{"x_min":41.4375,"x_max":907,"ha":927,"o":"m 433 608 q 711 736 547 736 q 858 686 809 736 q 907 563 907 636 q 879 392 907 520 l 796 0 l 519 0 l 591 334 q 617 475 617 457 q 562 535 617 535 q 455 477 501 535 q 387 312 410 420 l 319 0 l 41 0 l 196 720 l 454 720 l 430 611 l 433 608 m 835 999 q 791 859 827 905 q 701 813 755 813 q 589 839 666 813 q 544 856 572 845 q 497 868 516 868 q 453 811 464 868 l 350 811 q 392 946 350 899 q 491 994 434 994 q 596 971 532 994 q 685 948 661 948 q 729 999 723 948 l 835 999 "},"+":{"x_min":142,"x_max":881,"ha":918,"o":"m 881 379 l 621 379 l 621 119 l 402 119 l 402 379 l 142 379 l 142 599 l 402 599 l 402 858 l 621 858 l 621 599 l 881 599 l 881 379 "},"‚":{"x_min":-34.59375,"x_max":354,"ha":386,"o":"m 354 278 l 307 55 q 272 -74 288 -31 q 221 -163 257 -117 q 122 -242 185 -210 q -34 -275 58 -275 l -4 -137 l 4 -137 q 156 0 124 -137 l 26 0 l 86 278 l 354 278 "},"½":{"x_min":222.140625,"x_max":1410,"ha":1389,"o":"m 644 1011 l 534 501 l 362 501 l 428 806 q 323 759 356 768 q 252 750 290 750 l 280 884 q 506 1011 436 922 l 644 1011 m 1391 1011 l 390 -36 l 222 -36 l 1223 1011 l 1391 1011 m 895 310 q 1173 480 939 480 q 1349 441 1289 480 q 1410 339 1410 402 q 1299 193 1410 251 q 1118 94 1189 135 l 1118 92 l 1382 92 l 1355 -32 l 854 -32 q 911 89 867 33 q 1035 191 956 145 l 1153 259 q 1214 302 1202 288 q 1227 328 1227 316 q 1159 370 1227 370 q 1066 295 1089 370 l 895 310 "},"Æ":{"x_min":-90.203125,"x_max":1483.15625,"ha":1389,"o":"m 1483 994 l 1437 780 l 1029 780 l 994 620 l 1384 620 l 1341 421 l 952 421 l 910 227 l 1361 227 l 1312 0 l 573 0 l 608 161 l 304 161 l 213 0 l -90 0 l 515 994 l 1483 994 m 743 794 l 655 794 l 422 372 l 655 372 l 743 794 "},"Ë":{"x_min":55.609375,"x_max":1080.328125,"ha":1003,"o":"m 1080 995 l 1034 781 l 530 781 l 497 622 l 983 622 l 938 421 l 453 421 l 410 227 l 958 227 l 909 0 l 55 0 l 267 995 l 1080 995 m 941 1242 l 905 1067 l 724 1067 l 762 1242 l 941 1242 m 653 1242 l 617 1067 l 437 1067 l 474 1242 l 653 1242 "},"'":{"x_min":168,"x_max":474.53125,"ha":386,"o":"m 474 995 l 444 849 q 411 758 439 831 l 360 630 l 168 630 l 168 831 l 199 995 l 474 995 "},"ª":{"x_min":110,"x_max":606,"ha":556,"o":"m 158 866 q 404 1012 220 1012 q 606 863 606 1012 q 593 784 606 830 l 560 660 q 548 578 548 611 q 560 513 548 545 l 414 513 q 405 545 409 523 q 268 499 340 499 q 154 536 198 499 q 110 638 110 573 q 163 752 110 710 q 358 793 216 793 q 443 807 415 793 q 455 859 455 842 q 395 905 455 905 q 305 846 338 905 l 158 866 m 414 710 q 293 687 325 701 q 261 644 261 672 q 279 611 261 624 q 315 599 297 599 q 414 710 391 599 "},"ð":{"x_min":83,"x_max":912.390625,"ha":926,"o":"m 912 914 l 788 879 q 909 472 909 682 q 786 114 909 246 q 449 -17 664 -17 q 175 77 268 -17 q 83 315 83 172 q 194 598 83 477 q 463 720 306 720 q 651 648 571 720 l 654 652 q 585 819 631 734 l 388 762 l 367 843 l 541 895 q 459 994 514 939 l 705 994 q 741 953 733 967 l 887 994 l 912 914 m 467 170 q 589 248 547 170 q 632 417 632 326 q 600 513 632 478 q 524 548 568 548 q 397 467 442 548 q 352 311 352 387 q 381 210 352 250 q 467 170 410 170 "},"T":{"x_min":148.515625,"x_max":1140,"ha":1003,"o":"m 1140 994 l 1089 750 l 766 750 l 604 0 l 295 0 l 457 750 l 148 750 l 200 994 l 1140 994 "},"Þ":{"x_min":53.78125,"x_max":1007,"ha":1003,"o":"m 538 817 l 683 817 q 824 809 775 817 q 915 769 873 802 q 981 680 956 737 q 1007 551 1007 623 q 943 348 1007 432 q 796 227 880 264 q 540 191 712 191 l 403 191 l 363 0 l 53 0 l 266 994 l 575 994 l 538 817 m 446 388 l 525 388 q 619 401 580 388 q 686 453 657 414 q 715 537 715 492 q 693 597 715 575 q 602 620 672 620 l 496 620 l 446 388 "},"j":{"x_min":-158.015625,"x_max":537.78125,"ha":463,"o":"m 537 994 l 498 804 l 222 804 l 261 994 l 537 994 m 480 719 l 326 0 q 278 -160 304 -100 q 194 -255 251 -219 q 34 -292 136 -292 q -158 -265 -52 -292 l -119 -70 q -48 -78 -80 -78 q 20 -56 -2 -78 q 63 65 42 -35 l 202 719 l 480 719 "},"1":{"x_min":212.265625,"x_max":865.34375,"ha":926,"o":"m 865 1011 l 646 0 l 369 0 l 511 654 q 212 534 385 576 l 262 769 q 629 1011 484 865 l 865 1011 "},"›":{"x_min":-10.84375,"x_max":476.078125,"ha":463,"o":"m 476 340 l 210 52 l -10 52 l 225 351 l 139 678 l 331 678 l 476 340 "},"ä":{"x_min":69,"x_max":900,"ha":926,"o":"m 148 522 q 262 680 173 624 q 539 736 351 736 q 825 682 751 736 q 900 527 900 629 q 862 304 900 460 q 828 100 828 157 q 845 0 828 51 l 576 0 q 567 82 567 42 q 324 -17 458 -17 q 128 46 188 -17 q 69 194 69 110 q 122 340 69 290 q 253 408 175 390 q 466 440 331 426 q 626 465 586 453 q 635 514 635 497 q 607 557 635 541 q 534 574 579 574 q 457 558 486 574 q 405 494 427 543 l 148 522 m 596 322 q 372 266 405 290 q 339 208 339 241 q 362 154 339 174 q 423 134 386 134 q 527 176 476 134 q 596 322 578 218 m 847 985 l 811 810 l 630 810 l 668 985 l 847 985 m 559 985 l 523 810 l 343 810 l 380 985 l 559 985 "},"<":{"x_min":110,"x_max":880,"ha":917,"o":"m 880 67 l 110 388 l 110 590 l 880 909 l 880 669 l 412 489 l 880 307 l 880 67 "},"£":{"x_min":51.6875,"x_max":974.96875,"ha":926,"o":"m 974 727 l 724 727 q 620 833 709 833 q 537 798 570 833 q 505 713 505 763 q 520 595 505 666 q 524 574 523 582 l 703 574 l 663 410 l 524 410 q 404 219 505 298 l 406 216 q 491 233 454 233 q 597 218 520 233 q 670 211 652 211 q 802 239 736 211 l 852 27 q 656 -17 747 -17 q 588 -11 618 -17 q 486 15 557 -6 q 320 46 386 46 q 232 33 276 46 q 111 -18 188 21 l 51 181 q 255 410 242 282 l 104 410 l 147 574 l 238 574 q 228 690 228 647 q 317 914 228 817 q 617 1011 406 1011 q 887 941 800 1011 q 974 727 974 871 "},"¹":{"x_min":206.84375,"x_max":598.828125,"ha":555,"o":"m 598 1011 l 488 501 l 316 501 l 383 806 q 277 759 310 768 q 206 750 244 750 l 234 884 q 461 1011 390 922 l 598 1011 "},"t":{"x_min":98.1875,"x_max":658.8125,"ha":617,"o":"m 658 719 l 616 522 l 472 522 l 419 267 q 414 232 414 251 q 478 184 414 184 q 563 196 498 184 l 522 0 q 339 -17 397 -17 q 174 38 223 -17 q 126 159 126 93 q 145 275 126 181 l 197 522 l 98 522 l 138 719 l 240 719 l 263 831 l 572 985 l 515 719 l 658 719 "},"¬":{"x_min":141.234375,"x_max":880,"ha":917,"o":"m 880 215 l 658 215 l 658 549 l 141 549 l 141 769 l 880 769 l 880 215 "},"ù":{"x_min":87,"x_max":954.09375,"ha":926,"o":"m 954 720 l 800 0 l 540 0 l 565 109 l 562 112 q 284 -17 449 -17 q 136 33 185 -17 q 87 155 87 84 q 115 334 87 202 l 199 719 l 475 719 l 400 368 q 381 278 383 290 q 379 247 379 265 l 379 245 q 431 187 379 187 q 540 243 494 187 q 608 407 585 300 l 676 720 l 954 720 m 694 808 l 572 808 l 400 1011 l 613 1011 l 694 808 "},"W":{"x_min":168,"x_max":1567.9375,"ha":1389,"o":"m 1567 994 l 1100 0 l 787 0 l 787 610 l 772 610 l 488 0 l 168 0 l 168 994 l 424 994 l 424 387 l 420 385 l 695 994 l 1001 994 l 1001 381 l 1011 381 l 1266 994 l 1567 994 "},"ï":{"x_min":48.828125,"x_max":615.09375,"ha":463,"o":"m 480 720 l 326 0 l 48 0 l 202 720 l 480 720 m 615 985 l 579 810 l 398 810 l 436 985 l 615 985 m 327 985 l 291 810 l 111 810 l 148 985 l 327 985 "},">":{"x_min":110,"x_max":880,"ha":917,"o":"m 880 388 l 110 67 l 110 310 l 577 490 l 110 670 l 110 909 l 880 588 l 880 388 "},"v":{"x_min":104.4375,"x_max":937.234375,"ha":848,"o":"m 937 720 l 487 0 l 242 0 l 104 720 l 365 720 l 406 264 l 409 264 l 648 720 l 937 720 "},"û":{"x_min":87,"x_max":954.09375,"ha":926,"o":"m 954 720 l 800 0 l 540 0 l 565 109 l 562 112 q 284 -17 449 -17 q 136 33 185 -17 q 87 155 87 84 q 115 334 87 202 l 199 719 l 475 719 l 400 368 q 381 278 383 290 q 379 247 379 265 l 379 245 q 431 187 379 187 q 540 243 494 187 q 608 407 585 300 l 676 720 l 954 720 m 817 807 l 673 807 l 631 916 l 509 807 l 317 807 l 544 1000 l 744 1000 l 817 807 "},"Ò":{"x_min":121,"x_max":1163,"ha":1158,"o":"m 722 1012 q 1056 890 950 1012 q 1163 590 1163 768 q 1143 434 1163 521 q 1067 252 1123 346 q 921 92 1011 158 q 748 5 831 27 q 572 -17 665 -17 q 240 90 359 -17 q 121 393 121 198 q 150 592 121 495 q 238 774 180 688 q 383 918 297 860 q 552 994 469 976 q 722 1012 635 1012 m 591 210 q 742 277 680 210 q 833 446 805 344 q 862 591 862 548 q 813 736 862 687 q 689 785 764 785 q 544 723 605 785 q 453 560 484 662 q 423 386 423 458 q 467 260 423 310 q 591 210 512 210 m 851 1066 l 729 1066 l 557 1269 l 771 1269 l 851 1066 "},"&":{"x_min":176,"x_max":1163.28125,"ha":1235,"o":"m 1163 340 q 1063 219 1119 280 q 1148 141 1077 207 l 993 -17 q 913 48 964 4 q 888 70 897 63 q 733 0 802 16 q 568 -17 664 -17 q 270 65 364 -17 q 176 261 176 148 q 460 581 176 476 q 406 760 406 676 q 499 945 406 880 q 735 1011 593 1011 q 962 948 876 1011 q 1048 794 1048 886 q 1017 690 1048 735 q 939 611 986 645 q 819 539 891 577 q 787 522 815 537 l 912 371 q 978 448 940 406 q 993 466 990 461 l 1163 340 m 686 673 q 788 739 756 705 q 821 802 821 774 q 798 845 821 827 q 741 864 775 864 q 671 836 697 864 q 645 771 645 809 q 686 673 645 736 m 735 225 q 566 424 626 337 q 445 282 445 360 q 459 226 445 255 q 500 180 472 197 q 569 163 528 163 q 735 225 644 163 "},"Ð":{"x_min":40.3125,"x_max":1091,"ha":1081,"o":"m 265 994 l 673 994 q 991 878 891 994 q 1091 577 1091 763 q 1005 248 1091 399 q 803 48 920 96 q 580 0 686 0 l 57 0 l 143 410 l 40 410 l 78 586 l 180 586 l 265 994 m 412 220 l 539 220 q 727 350 665 220 q 789 609 789 480 q 753 730 789 686 q 625 775 717 775 l 527 775 l 487 586 l 639 586 l 601 410 l 451 410 l 412 220 "},"I":{"x_min":70.53125,"x_max":594.75,"ha":541,"o":"m 594 994 l 381 0 l 70 0 l 283 994 l 594 994 "},"G":{"x_min":122,"x_max":1163.875,"ha":1157,"o":"m 1163 706 l 861 673 q 693 791 820 791 q 496 665 569 791 q 424 397 424 540 q 477 258 424 314 q 615 203 531 203 l 617 203 q 784 251 712 203 l 807 358 l 619 358 l 664 566 l 1127 566 l 1028 98 q 568 -17 796 -17 q 242 94 362 -17 q 122 406 122 205 q 198 715 122 574 q 414 933 275 855 q 734 1011 554 1011 q 1163 706 1087 1011 "},"`":{"x_min":168.1875,"x_max":462.515625,"ha":463,"o":"m 462 809 l 340 809 l 168 1012 l 381 1012 l 462 809 "},"·":{"x_min":146,"x_max":442,"ha":463,"o":"m 442 358 l 146 358 l 146 635 l 442 635 l 442 358 "},"r":{"x_min":41.375,"x_max":739.203125,"ha":616,"o":"m 739 714 l 637 501 q 580 509 605 509 q 451 451 501 509 q 375 269 402 394 l 318 0 l 41 0 l 194 720 l 453 720 l 421 578 l 423 575 q 537 703 488 671 q 644 736 585 736 q 739 714 688 736 "},"¿":{"x_min":-16,"x_max":728.4375,"ha":848,"o":"m 678 719 l 623 462 l 350 462 l 403 719 l 678 719 m 728 6 q 585 -223 685 -155 q 320 -292 484 -292 q 71 -230 159 -292 q -16 -48 -16 -168 q 8 62 -16 12 q 62 140 33 111 q 203 251 91 168 q 298 331 266 299 q 346 407 331 362 l 602 407 q 561 289 583 331 q 502 214 538 246 q 383 120 466 181 q 273 27 295 55 q 251 -22 251 0 q 273 -66 251 -51 q 329 -82 295 -82 q 470 34 446 -82 l 728 6 "},"ý":{"x_min":1.34375,"x_max":939.921875,"ha":848,"o":"m 939 719 l 483 -91 q 355 -251 416 -210 q 204 -292 293 -292 q 1 -264 101 -292 l 23 -78 q 113 -96 67 -96 q 241 0 194 -96 l 103 719 l 394 719 l 394 219 l 416 219 l 661 719 l 939 719 m 796 1011 l 549 808 l 415 808 l 564 1011 l 796 1011 "},"x":{"x_min":-30.515625,"x_max":1001.65625,"ha":926,"o":"m 1001 720 l 669 356 l 855 0 l 562 0 l 470 208 l 290 0 l -30 0 l 326 392 l 155 720 l 448 720 l 524 542 l 678 720 l 1001 720 "},"è":{"x_min":83,"x_max":920.234375,"ha":926,"o":"m 876 184 q 719 30 816 77 q 475 -17 621 -17 q 172 78 262 -17 q 83 314 83 174 q 125 495 83 410 q 238 638 167 580 q 380 715 310 695 q 543 736 450 736 q 832 648 745 736 q 920 433 920 561 q 901 289 920 391 l 359 289 q 480 144 359 144 q 610 209 562 144 l 876 184 m 646 423 q 651 464 651 437 q 618 546 651 518 q 537 575 585 575 q 443 536 486 575 q 378 423 401 498 l 646 423 m 693 808 l 571 808 l 399 1011 l 613 1011 l 693 808 "},"º":{"x_min":139,"x_max":661,"ha":555,"o":"m 425 1012 q 601 951 542 1012 q 661 798 661 891 q 583 595 661 691 q 366 499 505 499 q 204 555 269 499 q 139 716 139 611 q 171 861 139 790 q 268 971 204 931 q 425 1012 332 1012 m 369 613 q 462 682 428 613 q 497 821 497 751 q 478 874 497 851 q 424 898 460 898 q 335 829 368 898 q 302 696 302 761 q 320 636 302 659 q 369 613 339 613 "},"Ø":{"x_min":46.390625,"x_max":1231.5,"ha":1158,"o":"m 1231 933 l 1105 821 q 1163 586 1163 720 q 1005 171 1163 360 q 574 -17 848 -17 q 269 67 382 -17 l 144 -44 l 46 63 l 171 176 q 121 396 121 263 q 276 823 121 635 q 721 1012 432 1012 q 1010 931 909 1012 l 1133 1042 l 1231 933 m 803 745 q 689 785 759 785 q 547 725 607 785 q 454 568 486 666 q 423 403 423 469 l 803 745 m 856 600 l 473 253 q 596 210 516 210 q 782 324 708 210 q 856 600 856 439 "},"÷":{"x_min":143,"x_max":882,"ha":917,"o":"m 647 661 l 377 661 l 377 911 l 647 911 l 647 661 m 882 378 l 143 378 l 143 599 l 882 599 l 882 378 m 647 65 l 377 65 l 377 315 l 647 315 l 647 65 "},"h":{"x_min":40.921875,"x_max":906,"ha":926,"o":"m 456 632 q 712 736 557 736 q 857 685 809 736 q 906 563 906 635 q 878 392 906 520 l 795 0 l 519 0 l 590 334 q 616 475 616 457 q 561 535 616 535 q 455 477 500 535 q 386 312 409 420 l 318 0 l 40 0 l 255 994 l 531 994 l 453 635 l 456 632 "},".":{"x_min":38.65625,"x_max":394.6875,"ha":463,"o":"m 394 278 l 335 0 l 38 0 l 98 278 l 394 278 "},";":{"x_min":-22.375,"x_max":487.609375,"ha":463,"o":"m 487 720 l 427 442 l 132 442 l 191 720 l 487 720 m 394 278 l 343 42 q 293 -111 320 -60 q 232 -194 267 -161 q 158 -243 198 -226 q 77 -266 118 -260 q -13 -273 37 -273 l -22 -273 l 8 -141 l 19 -141 q 181 0 151 -141 l 38 0 l 98 278 l 394 278 "},"f":{"x_min":71.890625,"x_max":727.671875,"ha":541,"o":"m 727 980 l 683 816 q 587 835 627 835 q 538 820 556 835 q 501 719 519 805 l 632 719 l 590 522 l 459 522 l 349 0 l 71 0 l 184 522 l 82 522 l 123 719 l 226 719 q 264 882 251 845 q 308 950 278 919 q 384 996 338 981 q 494 1011 429 1011 q 727 980 590 1011 "},"“":{"x_min":101.71875,"x_max":833.46875,"ha":694,"o":"m 833 995 l 802 858 l 794 858 q 641 720 673 858 l 772 720 l 712 442 l 444 442 l 491 663 q 525 794 510 752 q 576 884 541 837 q 676 963 612 931 q 833 995 739 995 m 490 995 l 459 858 l 451 858 q 298 720 330 858 l 429 720 l 369 442 l 101 442 l 148 663 q 183 794 167 752 q 234 884 198 837 q 333 963 269 931 q 490 995 396 995 "},"A":{"x_min":-22.375,"x_max":1024.71875,"ha":1080,"o":"m 1024 0 l 723 0 l 710 163 l 385 163 l 308 0 l -22 0 l 539 994 l 866 994 l 1024 0 m 690 374 l 659 736 l 657 736 l 486 374 l 690 374 "},"6":{"x_min":106,"x_max":951.53125,"ha":926,"o":"m 951 771 l 684 746 q 588 844 667 844 q 488 784 530 844 q 411 593 447 724 l 414 590 q 619 667 505 667 q 818 583 736 667 q 900 373 900 500 q 788 103 900 223 q 485 -17 676 -17 q 207 90 309 -17 q 106 380 106 198 q 163 681 106 528 q 336 923 221 835 q 615 1011 451 1011 q 843 951 754 1011 q 951 771 931 891 m 482 150 q 585 205 534 150 q 636 393 636 260 q 605 464 636 428 q 520 500 575 500 q 415 442 461 500 q 370 289 370 385 q 398 187 370 224 q 482 150 427 150 "},"‘":{"x_min":104.4375,"x_max":493.03125,"ha":386,"o":"m 493 995 l 462 858 l 454 858 q 301 720 332 858 l 432 720 l 372 442 l 104 442 l 151 663 q 185 794 170 752 q 237 884 201 837 q 336 963 272 931 q 493 995 400 995 "},"π":{"x_min":74,"x_max":1030,"ha":983,"o":"m 1030 518 l 939 518 l 939 0 l 663 0 l 663 518 l 453 518 l 453 0 l 176 0 l 176 518 l 74 518 l 74 719 l 1030 719 l 1030 518 "},"O":{"x_min":121,"x_max":1163,"ha":1158,"o":"m 722 1012 q 1056 890 950 1012 q 1163 590 1163 768 q 1143 434 1163 521 q 1067 252 1123 346 q 921 92 1011 158 q 748 5 831 27 q 572 -17 665 -17 q 240 90 359 -17 q 121 393 121 198 q 150 592 121 495 q 238 774 180 688 q 383 918 297 860 q 552 994 469 976 q 722 1012 635 1012 m 591 210 q 742 277 680 210 q 833 446 805 344 q 862 591 862 548 q 813 736 862 687 q 689 785 764 785 q 544 723 605 785 q 453 560 484 662 q 423 386 423 458 q 467 260 423 310 q 591 210 512 210 "},"n":{"x_min":40.921875,"x_max":906,"ha":926,"o":"m 432 608 q 710 736 546 736 q 857 686 808 736 q 906 563 906 636 q 878 392 906 520 l 795 0 l 519 0 l 590 334 q 616 475 616 457 q 561 535 616 535 q 455 477 500 535 q 386 312 409 420 l 318 0 l 40 0 l 195 720 l 453 720 l 430 611 l 432 608 "},"3":{"x_min":75.46875,"x_max":938,"ha":927,"o":"m 189 754 q 337 952 236 892 q 596 1012 438 1012 q 851 935 765 1012 q 938 755 938 859 q 750 514 938 594 q 885 308 885 448 q 842 167 885 236 q 711 41 800 99 q 454 -17 621 -17 q 182 60 277 -17 q 75 262 87 137 l 344 297 q 481 153 365 153 q 580 197 542 153 q 618 300 618 241 q 585 388 618 352 q 504 424 552 424 q 450 417 486 424 l 485 599 l 505 599 q 671 744 671 599 q 572 842 671 842 q 444 708 470 842 l 189 754 "},"9":{"x_min":112.46875,"x_max":958,"ha":926,"o":"m 649 404 q 444 328 557 328 q 245 411 327 328 q 164 620 164 494 q 275 891 164 771 q 578 1011 387 1011 q 856 903 754 1011 q 958 613 958 796 q 900 312 958 465 q 727 70 842 158 q 448 -17 612 -17 q 220 43 309 -17 q 112 224 132 103 l 379 249 q 474 150 395 150 q 575 209 533 150 q 652 402 616 269 l 649 404 m 543 495 q 648 552 602 495 q 694 705 694 609 q 665 807 694 770 q 581 844 636 844 q 478 788 529 844 q 428 601 428 733 q 456 532 428 570 q 543 495 484 495 "},"l":{"x_min":48.828125,"x_max":537.78125,"ha":463,"o":"m 537 994 l 326 0 l 48 0 l 261 994 l 537 994 "},"¤":{"x_min":151.6875,"x_max":929.6875,"ha":917,"o":"m 929 242 l 786 98 l 691 195 q 538 158 613 158 q 388 195 463 158 l 296 98 l 151 242 l 247 337 q 210 484 210 400 q 247 637 210 568 l 151 734 l 292 876 l 388 780 q 539 818 460 818 q 691 780 616 818 l 786 876 l 929 734 l 834 637 q 870 490 870 569 q 834 337 870 412 l 929 242 m 539 358 q 631 396 593 358 q 670 487 670 434 q 631 579 670 541 q 539 618 593 618 q 447 579 485 618 q 410 487 410 541 q 447 395 410 433 q 539 358 485 358 "},"4":{"x_min":31.875,"x_max":952.828125,"ha":926,"o":"m 952 1011 l 819 399 l 947 399 l 901 185 l 775 185 l 734 0 l 497 0 l 537 185 l 31 185 l 82 413 l 714 1011 l 952 1011 m 651 710 l 648 713 l 315 399 l 583 399 l 651 710 "},"p":{"x_min":-22.546875,"x_max":905.234375,"ha":926,"o":"m 435 645 q 541 718 494 699 q 654 736 588 736 q 840 656 775 736 q 905 438 905 575 q 807 118 905 254 q 562 -18 710 -18 q 333 96 410 -18 l 254 -275 l -22 -275 l 191 720 l 446 720 l 433 647 l 435 645 m 488 169 q 592 245 549 169 q 636 431 636 322 q 608 526 636 497 q 541 556 580 556 q 424 470 465 556 q 383 295 383 384 q 415 200 383 231 q 488 169 447 169 "},"‡":{"x_min":33.234375,"x_max":952.828125,"ha":926,"o":"m 952 774 l 909 571 l 659 571 l 569 150 l 820 150 l 779 -53 l 527 -53 l 480 -275 l 242 -275 l 288 -53 l 33 -53 l 76 150 l 331 150 l 422 571 l 165 571 l 208 774 l 463 774 l 511 994 l 750 994 l 701 774 l 952 774 "},"à":{"x_min":69,"x_max":900,"ha":926,"o":"m 148 522 q 262 680 173 624 q 539 736 351 736 q 825 682 751 736 q 900 527 900 629 q 862 304 900 460 q 828 100 828 157 q 845 0 828 51 l 576 0 q 567 82 567 42 q 324 -17 458 -17 q 128 46 188 -17 q 69 194 69 110 q 122 340 69 290 q 253 408 175 390 q 466 440 331 426 q 626 465 586 453 q 635 514 635 497 q 607 557 635 541 q 534 574 579 574 q 457 558 486 574 q 405 494 427 543 l 148 522 m 596 322 q 372 266 405 290 q 339 208 339 241 q 362 154 339 174 q 423 134 386 134 q 527 176 476 134 q 596 322 578 218 m 694 808 l 572 808 l 400 1011 l 613 1011 l 694 808 "},"Ü":{"x_min":150,"x_max":1219.6875,"ha":1157,"o":"m 1219 994 l 1090 394 q 928 83 1045 184 q 582 -17 812 -17 q 378 8 454 -17 q 249 83 301 33 q 173 197 197 133 q 150 334 150 261 q 168 512 150 427 l 270 994 l 579 994 l 460 434 q 452 351 452 395 q 591 233 452 233 q 717 277 665 233 q 796 451 769 322 l 909 994 l 1219 994 m 1018 1242 l 982 1067 l 801 1067 l 839 1242 l 1018 1242 m 730 1242 l 694 1067 l 514 1067 l 551 1242 l 730 1242 "},"ó":{"x_min":82,"x_max":907,"ha":927,"o":"m 536 736 q 818 638 729 736 q 907 409 907 540 q 856 206 907 309 q 703 43 805 103 q 451 -17 601 -17 q 172 76 262 -17 q 82 308 82 169 q 135 519 82 417 q 292 678 189 621 q 536 736 394 736 m 469 170 q 592 248 546 170 q 637 424 637 327 q 603 522 637 493 q 526 550 568 550 q 395 470 438 550 q 351 308 351 391 q 385 209 351 249 q 469 170 419 170 m 836 1011 l 588 809 l 454 809 l 604 1011 l 836 1011 "}},"cssFontWeight":"normal","ascender":1529,"underlinePosition":-205,"cssFontStyle":"italic","boundingBox":{"yMin":-294,"xMin":-352.640625,"yMax":1355,"xMax":1991},"resolution":1000,"original_font_information":{"postscript_name":"Arial-BlackItalic","version_string":"Version 1.00","vendor_url":"http://www.monotype.com/html/mtname/ms_welcome.html","full_font_name":"Arial Black Italic","font_family_name":"Arial Black","copyright":"Digitized data copyright (C) 1996 The Monotype Corporation. All rights reserved. Arial® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.","description":"Monotype Drawing Office 1982. A contemporary sans serif design, Arial contains more humanist characteristics than many of its predecessors and as such is more in tune with the mood of the last decades of the twentieth century. The overall treatment of curves is softer and fuller than in most industrial-style sans serif faces. Terminal strokes are cut on the diagonal which helps to give the face a less mechanical appearance. Arial is an extremely versatile family of typefaces which can be used with equal success for text setting in reports, presentations, magazines etc, and for display use in newspapers, advertising and promotions.","trademark":"Arial® is a trademark of The Monotype Corporation which may be registered in certain jurisdictions.","designer":"Robin Nicholas, Patricia Saunders","designer_url":"http://www.monotype.com/html/designer/des_index.html","unique_font_identifier":"Monotype - Arial Black Italic","license_url":"","license_description":"","manufacturer_name":"Monotype Typography","font_sub_family_name":"Italic"},"descender":-430,"familyName":"Arial Black","lineHeight":1959,"underlineThickness":102});


