/*
 * jQuery 1.2.6 - 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/06/23 22:58:52 $
 * $Rev: 5685 $
 */
(function(){var _jQuery=window.jQuery,_$=window.$;var jQuery=window.jQuery=window.$=function(selector,context){return new jQuery.fn.init(selector,context);};var quickExpr=/^[^<]*(<(.|\s)+>)[^>]*$|^#(\w+)$/,isSimple=/^.[^:#\[\.]*$/,undefined;jQuery.fn=jQuery.prototype={init:function(selector,context){selector=selector||document;if(selector.nodeType){this[0]=selector;this.length=1;return this;}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);return jQuery(elem);}selector=[];}}else
return jQuery(context).find(selector);}else if(jQuery.isFunction(selector))return jQuery(document)[jQuery.fn.ready?"ready":"load"](selector);return this.setArray(jQuery.makeArray(selector));},jquery:"1.2.6",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;return jQuery.inArray(elem&&elem.jquery?elem[0]:elem,this);},attr:function(name,value,type){var options=name;if(name.constructor==String)if(value===undefined)return this[0]&&jQuery[type||"attr"](this[0],name);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 this.pushStack(jQuery.unique(jQuery.merge(this.get(),typeof selector=='string'?jQuery(selector):jQuery.makeArray(selector))));},is:function(selector){return!!selector&&jQuery.multiFilter(selector,this).length>0;},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;}if(value.constructor==Number)value+='';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=jQuery.makeArray(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[0]?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===undefined){var data=this.triggerHandler("getData"+parts[1]+"!",[parts[0]]);if(data===undefined&&this.length)data=jQuery.data(this[0],key);return data===undefined&&parts[1]?this.data(parts[0]):data;}else
return this.trigger("setData"+parts[1]+"!",[parts[0],value]).each(function(){jQuery.data(this,key,value);});},removeData:function(key){return this.each(function(){jQuery.removeData(this,key);});},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.fn.init.prototype=jQuery.fn;function evalScript(i,elem){if(elem.src)jQuery.ajax({url:elem.src,async:false,dataType:"script"});else
jQuery.globalEval(elem.text||elem.textContent||elem.innerHTML||"");if(elem.parentNode)elem.parentNode.removeChild(elem);}function now(){return+new Date;}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==i){target=this;--i;}for(;i<length;i++)if((options=arguments[i])!=null)for(var name in options){var src=target[name],copy=options[name];if(target===copy)continue;if(deep&&copy&&typeof copy=="object"&&!copy.nodeType)target[name]=jQuery.extend(deep,src||(copy.length!=null?[]:{}),copy);else if(copy!==undefined)target[name]=copy;}return target;};var expando="jQuery"+now(),uuid=0,windowData={},exclude=/z-?index|font-?weight|opacity|zoom|line-?height/i,defaultView=document.defaultView||{};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&&/^[\s[]?function/.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.insertBefore(script,head.firstChild);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){var name,i=0,length=object.length;if(args){if(length==undefined){for(name in object)if(callback.apply(object[name],args)===false)break;}else
for(;i<length;)if(callback.apply(object[i++],args)===false)break;}else{if(length==undefined){for(name in object)if(callback.call(object[name],name,object[name])===false)break;}else
for(var value=object[0];i<length&&callback.call(value,i,value)!==false;value=object[++i]){}}return object;},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,style=elem.style;function color(elem){if(!jQuery.browser.safari)return false;var ret=defaultView.getComputedStyle(elem,null);return!ret||ret.getPropertyValue("color")=="";}if(name=="opacity"&&jQuery.browser.msie){ret=jQuery.attr(style,"opacity");return ret==""?"1":ret;}if(jQuery.browser.opera&&name=="display"){var save=style.outline;style.outline="0 solid black";style.outline=save;}if(name.match(/float/i))name=styleFloat;if(!force&&style&&style[name])ret=style[name];else if(defaultView.getComputedStyle){if(name.match(/float/i))name="float";name=name.replace(/([A-Z])/g,"-$1").toLowerCase();var computedStyle=defaultView.getComputedStyle(elem,null);if(computedStyle&&!color(elem))ret=computedStyle.getPropertyValue(name);else{var swap=[],stack=[],a=elem,i=0;for(;a&&color(a);a=a.parentNode)stack.unshift(a);for(;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":(computedStyle&&computedStyle.getPropertyValue(name))||"";for(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 left=style.left,rsLeft=elem.runtimeStyle.left;elem.runtimeStyle.left=elem.currentStyle.left;style.left=ret||0;ret=style.pixelLeft+"px";style.left=left;elem.runtimeStyle.left=rsLeft;}}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+='';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 notxml=!jQuery.isXMLDoc(elem),set=value!==undefined,msie=jQuery.browser.msie;name=notxml&&jQuery.props[name]||name;if(elem.tagName){var special=/href|src|style/.test(name);if(name=="selected"&&jQuery.browser.safari)elem.parentNode.selectedIndex;if(name in elem&&notxml&&!special){if(set){if(name=="type"&&jQuery.nodeName(elem,"input")&&elem.parentNode)throw"type property can't be changed";elem[name]=value;}if(jQuery.nodeName(elem,"form")&&elem.getAttributeNode(name))return elem.getAttributeNode(name).nodeValue;return elem[name];}if(msie&&notxml&&name=="style")return jQuery.attr(elem.style,"cssText",value);if(set)elem.setAttribute(name,""+value);var attr=msie&&notxml&&special?elem.getAttribute(name,2):elem.getAttribute(name);return attr===null?undefined:attr;}if(msie&&name=="opacity"){if(set){elem.zoom=1;elem.filter=(elem.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(value)+''=="NaN"?"":"alpha(opacity="+value*100+")");}return elem.filter&&elem.filter.indexOf("opacity=")>=0?(parseFloat(elem.filter.match(/opacity=([^)]*)/)[1])/100)+'':"";}name=name.replace(/-([a-z])/ig,function(all,letter){return letter.toUpperCase();});if(set)elem[name]=value;return elem[name];},trim:function(text){return(text||"").replace(/^\s+|\s+$/g,"");},makeArray:function(array){var ret=[];if(array!=null){var i=array.length;if(i==null||array.split||array.setInterval||array.call)ret[0]=array;else
while(i)ret[--i]=array[i];}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){var i=0,elem,pos=first.length;if(jQuery.browser.msie){while(elem=second[i++])if(elem.nodeType!=8)first[pos++]=elem;}else
while(elem=second[i++])first[pos++]=elem;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))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)ret[ret.length]=value;}return ret.concat.apply([],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,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing"}});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");};});function num(elem,prop){return elem[0]&&parseInt(jQuery.curCSS(elem[0],prop,true),10)||0;}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,re=quickChild,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=[],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&&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)elem=window;if(!handler.guid)handler.guid=this.guid++;if(data!=undefined){var fn=handler;handler=this.proxy(fn,function(){return fn.apply(this,arguments);});handler.data=data;}var events=jQuery.data(elem,"events")||jQuery.data(elem,"events",{}),handle=jQuery.data(elem,"handle")||jQuery.data(elem,"handle",function(){if(typeof jQuery!="undefined"&&!jQuery.event.triggered)return jQuery.event.handle.apply(arguments.callee.elem,arguments);});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({type:type,target:elem,preventDefault:function(){},stopPropagation:function(){},timeStamp:now()});data[0][expando]=true;}data[0].type=type;if(exclusive)data[0].exclusive=true;var handle=jQuery.data(elem,"handle");if(handle)val=handle.apply(elem,data);if((!fn||(jQuery.nodeName(elem,'a')&&type=="click"))&&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,ret,namespace,all,handlers;event=arguments[0]=jQuery.event.fix(event||window.event);namespace=event.type.split(".");event.type=namespace[0];namespace=namespace[1];all=!namespace&&!event.exclusive;handlers=(jQuery.data(this,"events")||{})[event.type];for(var j in handlers){var handler=handlers[j];if(all||handler.type==namespace){event.handler=handler;event.data=handler.data;ret=handler.apply(this,arguments);if(val!==false)val=ret;if(ret===false){event.preventDefault();event.stopPropagation();}}}return val;},fix:function(event){if(event[expando]==true)return event;var originalEvent=event;event={originalEvent:originalEvent};var props="altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target timeStamp toElement type view wheelDelta which".split(" ");for(var i=props.length;i;i--)event[props[i]]=originalEvent[props[i]];event[expando]=true;event.preventDefault=function(){if(originalEvent.preventDefault)originalEvent.preventDefault();originalEvent.returnValue=false;};event.stopPropagation=function(){if(originalEvent.stopPropagation)originalEvent.stopPropagation();originalEvent.cancelBubble=true;};event.timeStamp=event.timeStamp||now();if(!event.target)event.target=event.srcElement||document;if(event.target.nodeType==3)event.target=event.target.parentNode;if(!event.relatedTarget&&event.fromElement)event.relatedTarget=event.fromElement==event.target?event.toElement:event.fromElement;if(event.pageX==null&&event.clientX!=null){var doc=document.documentElement,body=document.body;event.pageX=event.clientX+(doc&&doc.scrollLeft||body&&body.scrollLeft||0)-(doc.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;},proxy:function(fn,proxy){proxy.guid=fn.guid=fn.guid||proxy.guid||this.guid++;return proxy;},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;event.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;event.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){var one=jQuery.event.proxy(fn||data,function(event){jQuery(this).unbind(event,one);return(fn||data).apply(this,arguments);});return this.each(function(){jQuery.event.add(this,type,one,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){return this[0]&&jQuery.event.trigger(type,data,this[0],false,fn);},toggle:function(fn){var args=arguments,i=1;while(i<args.length)jQuery.event.proxy(fn,args[i++]);return this.click(jQuery.event.proxy(fn,function(event){this.lastToggle=(this.lastToggle||0)%i;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.call(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:jQuery.fn.load,load:function(url,params,callback){if(typeof url!='string')return this._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=now();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:{url:location.href,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){s=jQuery.extend(true,s,jQuery.extend(true,{},jQuery.ajaxSettings,s));var jsonp,jsre=/=\?(&|$)/g,status,data,type=s.type.toUpperCase();if(s.data&&s.processData&&typeof s.data!="string")s.data=jQuery.param(s.data);if(s.dataType=="jsonp"){if(type=="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&&type=="GET"){var ts=now();var ret=s.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+ts+"$2");s.url=ret+((ret==s.url)?(s.url.match(/\?/)?"&":"?")+"_="+ts:"");}if(s.data&&type=="GET"){s.url+=(s.url.match(/\?/)?"&":"?")+s.data;s.data=null;}if(s.global&&!jQuery.active++)jQuery.event.trigger("ajaxStart");var remote=/^(?:\w+:)?\/\/([^\/?#]+)/;if(s.dataType=="script"&&type=="GET"&&remote.test(s.url)&&remote.exec(s.url)[1]!=location.host){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 xhr=window.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest();if(s.username)xhr.open(type,s.url,s.async,s.username,s.password);else
xhr.open(type,s.url,s.async);try{if(s.data)xhr.setRequestHeader("Content-Type",s.contentType);if(s.ifModified)xhr.setRequestHeader("If-Modified-Since",jQuery.lastModified[s.url]||"Thu, 01 Jan 1970 00:00:00 GMT");xhr.setRequestHeader("X-Requested-With","XMLHttpRequest");xhr.setRequestHeader("Accept",s.dataType&&s.accepts[s.dataType]?s.accepts[s.dataType]+", */*":s.accepts._default);}catch(e){}if(s.beforeSend&&s.beforeSend(xhr,s)===false){s.global&&jQuery.active--;xhr.abort();return false;}if(s.global)jQuery.event.trigger("ajaxSend",[xhr,s]);var onreadystatechange=function(isTimeout){if(!requestDone&&xhr&&(xhr.readyState==4||isTimeout=="timeout")){requestDone=true;if(ival){clearInterval(ival);ival=null;}status=isTimeout=="timeout"&&"timeout"||!jQuery.httpSuccess(xhr)&&"error"||s.ifModified&&jQuery.httpNotModified(xhr,s.url)&&"notmodified"||"success";if(status=="success"){try{data=jQuery.httpData(xhr,s.dataType,s.dataFilter);}catch(e){status="parsererror";}}if(status=="success"){var modRes;try{modRes=xhr.getResponseHeader("Last-Modified");}catch(e){}if(s.ifModified&&modRes)jQuery.lastModified[s.url]=modRes;if(!jsonp)success();}else
jQuery.handleError(s,xhr,status);complete();if(s.async)xhr=null;}};if(s.async){var ival=setInterval(onreadystatechange,13);if(s.timeout>0)setTimeout(function(){if(xhr){xhr.abort();if(!requestDone)onreadystatechange("timeout");}},s.timeout);}try{xhr.send(s.data);}catch(e){jQuery.handleError(s,xhr,null,e);}if(!s.async)onreadystatechange();function success(){if(s.success)s.success(data,status);if(s.global)jQuery.event.trigger("ajaxSuccess",[xhr,s]);}function complete(){if(s.complete)s.complete(xhr,status);if(s.global)jQuery.event.trigger("ajaxComplete",[xhr,s]);if(s.global&&!--jQuery.active)jQuery.event.trigger("ajaxStop");}return xhr;},handleError:function(s,xhr,status,e){if(s.error)s.error(xhr,status,e);if(s.global)jQuery.event.trigger("ajaxError",[xhr,s,e]);},active:0,httpSuccess:function(xhr){try{return!xhr.status&&location.protocol=="file:"||(xhr.status>=200&&xhr.status<300)||xhr.status==304||xhr.status==1223||jQuery.browser.safari&&xhr.status==undefined;}catch(e){}return false;},httpNotModified:function(xhr,url){try{var xhrRes=xhr.getResponseHeader("Last-Modified");return xhr.status==304||xhrRes==jQuery.lastModified[url]||jQuery.browser.safari&&xhr.status==undefined;}catch(e){}return false;},httpData:function(xhr,type,filter){var ct=xhr.getResponseHeader("content-type"),xml=type=="xml"||!type&&ct&&ct.indexOf("xml")>=0,data=xml?xhr.responseXML:xhr.responseText;if(xml&&data.documentElement.tagName=="parsererror")throw"parsererror";if(filter)data=filter(data,type);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(jQuery.isFunction(a[j])?a[j]():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.apply(this,arguments):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),p,hidden=jQuery(this).is(":hidden"),self=this;for(p in prop){if(prop[p]=="hide"&&hidden||prop[p]=="show"&&!hidden)return opt.complete.call(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.call(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){type=type||"fx";var q=jQuery.data(elem,type+"queue");if(!q||array)q=jQuery.data(elem,type+"queue",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].call(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:jQuery.fx.speeds[opt.duration])||jQuery.fx.speeds.def;opt.old=opt.complete;opt.complete=function(){if(opt.queue!==false)jQuery(this).dequeue();if(jQuery.isFunction(opt.old))opt.old.call(this);};return opt;},easing:{linear:function(p,n,firstNum,diff){return firstNum+diff*p;},swing:function(p,n,firstNum,diff){return((-Math.cos(p*Math.PI)/2)+0.5)*diff+firstNum;}},timers:[],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.call(this.elem,this.now,this);(jQuery.fx.step[this.prop]||jQuery.fx.step._default)(this);if(this.prop=="height"||this.prop=="width")this.elem.style.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=now();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=now();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)this.options.complete.call(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.extend(jQuery.fx,{speeds:{slow:600,fast:200,def:400},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),css=jQuery.curCSS,fixed=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&&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(css(parent,"display")))add(-parent.scrollLeft,-parent.scrollTop);if(mozilla&&css(parent,"overflow")!="visible")border(parent);parent=parent.parentNode;}if((safari2&&(fixed||css(offsetChild,"position")=="absolute"))||(mozilla&&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,10)||0;top+=parseInt(t,10)||0;}return results;};jQuery.fn.extend({position:function(){var left=0,top=0,results;if(this[0]){var offsetParent=this.offsetParent(),offset=this.offset(),parentOffset=/^body|html$/i.test(offsetParent[0].tagName)?{top:0,left:0}:offsetParent.offset();offset.top-=num(this,'marginTop');offset.left-=num(this,'marginLeft');parentOffset.top+=num(offsetParent,'borderTopWidth');parentOffset.left+=num(offsetParent,'borderLeftWidth');results={top:offset.top-parentOffset.top,left:offset.left-parentOffset.left};}return results;},offsetParent:function(){var offsetParent=this[0].offsetParent;while(offsetParent&&(!/^body|html$/i.test(offsetParent.tagName)&&jQuery.css(offsetParent,'position')=='static'))offsetParent=offsetParent.offsetParent;return jQuery(offsetParent);}});jQuery.each(['Left','Top'],function(i,name){var method='scroll'+name;jQuery.fn[method]=function(val){if(!this[0])return;return val!=undefined?this.each(function(){this==window||this==document?window.scrollTo(!i?val:jQuery(window).scrollLeft(),i?val:jQuery(window).scrollTop()):this[method]=val;}):this[0]==window||this[0]==document?self[i?'pageYOffset':'pageXOffset']||jQuery.boxModel&&document.documentElement[method]||document.body[method]:this[0][method];};});jQuery.each(["Height","Width"],function(i,name){var tl=i?"Left":"Top",br=i?"Right":"Bottom";jQuery.fn["inner"+name]=function(){return this[name.toLowerCase()]()+num(this,"padding"+tl)+num(this,"padding"+br);};jQuery.fn["outer"+name]=function(margin){return this["inner"+name]()+num(this,"border"+tl+"Width")+num(this,"border"+br+"Width")+(margin?num(this,"margin"+tl)+num(this,"margin"+br):0);};});})();;

var Drupal = Drupal || { 'settings': {}, 'behaviors': {}, 'themes': {}, 'locale': {} };

/**
 * Set the variable that indicates if JavaScript behaviors should be applied
 */
Drupal.jsEnabled = document.getElementsByTagName && document.createElement && document.createTextNode && document.documentElement && document.getElementById;

/**
 * Attach all registered behaviors to a page element.
 *
 * Behaviors are event-triggered actions that attach to page elements, enhancing
 * default non-Javascript UIs. Behaviors are registered in the Drupal.behaviors
 * object as follows:
 * @code
 *    Drupal.behaviors.behaviorName = function () {
 *      ...
 *    };
 * @endcode
 *
 * Drupal.attachBehaviors is added below to the jQuery ready event and so
 * runs on initial page load. Developers implementing AHAH/AJAX in their
 * solutions should also call this function after new page content has been
 * loaded, feeding in an element to be processed, in order to attach all
 * behaviors to the new content.
 *
 * Behaviors should use a class in the form behaviorName-processed to ensure
 * the behavior is attached only once to a given element. (Doing so enables
 * the reprocessing of given elements, which may be needed on occasion despite
 * the ability to limit behavior attachment to a particular element.)
 *
 * @param context
 *   An element to attach behaviors to. If none is given, the document element
 *   is used.
 */
Drupal.attachBehaviors = function(context) {
  context = context || document;
  if (Drupal.jsEnabled) {
    // Execute all of them.
    jQuery.each(Drupal.behaviors, function() {
      this(context);
    });
  }
};

/**
 * Encode special characters in a plain-text string for display as HTML.
 */
Drupal.checkPlain = function(str) {
  str = String(str);
  var replace = { '&': '&amp;', '"': '&quot;', '<': '&lt;', '>': '&gt;' };
  for (var character in replace) {
    var regex = new RegExp(character, 'g');
    str = str.replace(regex, replace[character]);
  }
  return str;
};

/**
 * Translate strings to the page language or a given language.
 *
 * See the documentation of the server-side t() function for further details.
 *
 * @param str
 *   A string containing the English string to translate.
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 * @return
 *   The translated string.
 */
Drupal.t = function(str, args) {
  // Fetch the localized version of the string.
  if (Drupal.locale.strings && Drupal.locale.strings[str]) {
    str = Drupal.locale.strings[str];
  }

  if (args) {
    // Transform arguments before inserting them
    for (var key in args) {
      switch (key.charAt(0)) {
        // Escaped only
        case '@':
          args[key] = Drupal.checkPlain(args[key]);
        break;
        // Pass-through
        case '!':
          break;
        // Escaped and placeholder
        case '%':
        default:
          args[key] = Drupal.theme('placeholder', args[key]);
          break;
      }
      str = str.replace(key, args[key]);
    }
  }
  return str;
};

/**
 * Format a string containing a count of items.
 *
 * This function ensures that the string is pluralized correctly. Since Drupal.t() is
 * called by this function, make sure not to pass already-localized strings to it.
 *
 * See the documentation of the server-side format_plural() function for further details.
 *
 * @param count
 *   The item count to display.
 * @param singular
 *   The string for the singular case. Please make sure it is clear this is
 *   singular, to ease translation (e.g. use "1 new comment" instead of "1 new").
 *   Do not use @count in the singular string.
 * @param plural
 *   The string for the plural case. Please make sure it is clear this is plural,
 *   to ease translation. Use @count in place of the item count, as in "@count
 *   new comments".
 * @param args
 *   An object of replacements pairs to make after translation. Incidences
 *   of any key in this array are replaced with the corresponding value.
 *   Based on the first character of the key, the value is escaped and/or themed:
 *    - !variable: inserted as is
 *    - @variable: escape plain text to HTML (Drupal.checkPlain)
 *    - %variable: escape text and theme as a placeholder for user-submitted
 *      content (checkPlain + Drupal.theme('placeholder'))
 *   Note that you do not need to include @count in this array.
 *   This replacement is done automatically for the plural case.
 * @return
 *   A translated string.
 */
Drupal.formatPlural = function(count, singular, plural, args) {
  var args = args || {};
  args['@count'] = count;
  // Determine the index of the plural form.
  var index = Drupal.locale.pluralFormula ? Drupal.locale.pluralFormula(args['@count']) : ((args['@count'] == 1) ? 0 : 1);

  if (index == 0) {
    return Drupal.t(singular, args);
  }
  else if (index == 1) {
    return Drupal.t(plural, args);
  }
  else {
    args['@count['+ index +']'] = args['@count'];
    delete args['@count'];
    return Drupal.t(plural.replace('@count', '@count['+ index +']'));
  }
};

/**
 * Generate the themed representation of a Drupal object.
 *
 * All requests for themed output must go through this function. It examines
 * the request and routes it to the appropriate theme function. If the current
 * theme does not provide an override function, the generic theme function is
 * called.
 *
 * For example, to retrieve the HTML that is output by theme_placeholder(text),
 * call Drupal.theme('placeholder', text).
 *
 * @param func
 *   The name of the theme function to call.
 * @param ...
 *   Additional arguments to pass along to the theme function.
 * @return
 *   Any data the theme function returns. This could be a plain HTML string,
 *   but also a complex object.
 */
Drupal.theme = function(func) {
  for (var i = 1, args = []; i < arguments.length; i++) {
    args.push(arguments[i]);
  }

  return (Drupal.theme[func] || Drupal.theme.prototype[func]).apply(this, args);
};

/**
 * Parse a JSON response.
 *
 * The result is either the JSON object, or an object with 'status' 0 and 'data' an error message.
 */
Drupal.parseJson = function (data) {
  if ((data.substring(0, 1) != '{') && (data.substring(0, 1) != '[')) {
    return { status: 0, data: data.length ? data : Drupal.t('Unspecified error') };
  }
  return eval('(' + data + ');');
};

/**
 * Freeze the current body height (as minimum height). Used to prevent
 * unnecessary upwards scrolling when doing DOM manipulations.
 */
Drupal.freezeHeight = function () {
  Drupal.unfreezeHeight();
  var div = document.createElement('div');
  $(div).css({
    position: 'absolute',
    top: '0px',
    left: '0px',
    width: '1px',
    height: $('body').css('height')
  }).attr('id', 'freeze-height');
  $('body').append(div);
};

/**
 * Unfreeze the body height
 */
Drupal.unfreezeHeight = function () {
  $('#freeze-height').remove();
};

/**
 * Wrapper around encodeURIComponent() which avoids Apache quirks (equivalent of
 * drupal_urlencode() in PHP). This function should only be used on paths, not
 * on query string arguments.
 */
Drupal.encodeURIComponent = function (item, uri) {
  uri = uri || location.href;
  item = encodeURIComponent(item).replace(/%2F/g, '/');
  return (uri.indexOf('?q=') != -1) ? item : item.replace(/%26/g, '%2526').replace(/%23/g, '%2523').replace(/\/\//g, '/%252F');
};

/**
 * Get the text selection in a textarea.
 */
Drupal.getSelection = function (element) {
  if (typeof(element.selectionStart) != 'number' && document.selection) {
    // The current selection
    var range1 = document.selection.createRange();
    var range2 = range1.duplicate();
    // Select all text.
    range2.moveToElementText(element);
    // Now move 'dummy' end point to end point of original range.
    range2.setEndPoint('EndToEnd', range1);
    // Now we can calculate start and end points.
    var start = range2.text.length - range1.text.length;
    var end = start + range1.text.length;
    return { 'start': start, 'end': end };
  }
  return { 'start': element.selectionStart, 'end': element.selectionEnd };
};

/**
 * Build an error message from ahah response.
 */
Drupal.ahahError = function(xmlhttp, uri) {
  if (xmlhttp.status == 200) {
    if (jQuery.trim($(xmlhttp.responseText).text())) {
      var message = Drupal.t("An error occurred. \n@uri\n@text", {'@uri': uri, '@text': xmlhttp.responseText });
    }
    else {
      var message = Drupal.t("An error occurred. \n@uri\n(no information available).", {'@uri': uri, '@text': xmlhttp.responseText });
    }
  }
  else {
    var message = Drupal.t("An HTTP error @status occurred. \n@uri", {'@uri': uri, '@status': xmlhttp.status });
  }
  return message;
}

// Global Killswitch on the <html> element
if (Drupal.jsEnabled) {
  // Global Killswitch on the <html> element
  $(document.documentElement).addClass('js');
  // 'js enabled' cookie
  document.cookie = 'has_js=1; path=/';
  // Attach all behaviors.
  $(document).ready(function() {
    Drupal.attachBehaviors(this);
  });
}

/**
 * The default themes.
 */
Drupal.theme.prototype = {

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
Drupal.locale = { 'pluralFormula': function($n) { return Number(($n!=1)); }, 'strings': { "Unspecified error": "Onbekend probleem", "Split summary at cursor": "Splits de samenvatting op de cursorpositie", "Join summary": "Samenvatting samenvoegen", "Drag to re-order": "Slepen om de volgorde te wijzigen", "Changes made in this table will not be saved until the form is submitted.": "Wijzigingen in deze tabel worden pas opgeslagen wanneer het formulier wordt ingediend.", "The changes to these blocks will not be saved until the \x3cem\x3eSave blocks\x3c/em\x3e button is clicked.": "Wijzigingen aan de blokken worden pas opgeslagen wanneer u de knop \x3cem\x3eBlokken opslaan\x3c/em\x3e aanklikt.", "Select all rows in this table": "Selecteer alle regels van deze tabel", "Deselect all rows in this table": "De-selecteer alle regels van deze tabel", "Testing clean URLs...": "Testen van schone URLs.", "Your server has been successfully tested to support this feature.": "De server is getest en kan deze functie gebruiken.", "Your system configuration does not currently support this feature. The \x3ca href=\"http://drupal.org/node/15365\"\x3ehandbook page on Clean URLs\x3c/a\x3e has additional troubleshooting information.": "De systeem configuratie ondersteunt deze functie momenteel niet. De \x3ca href=\"http://drupal.org/node/15365\"\x3e handboekpagina over Clean URLs\x3c/a\x3e geeft meer informatie.", "Upload": "Uploaden", "Only files with the following extensions are allowed: %files-allowed.": "Uitsluitend bestanden met de volgende extensies zijn toegelaten: %files-allowed.", "An HTTP error @status occurred. \n@uri": "Een HTTP-fout @status is opgetreden. \r\n@uri", "An error occurred. \n@uri\n@text": "Een fout is opgetreden. \r\n@uri \r\n@text", "An error occurred. \n@uri\n(no information available).": "Een fout is opgetreden. \r\n@uri \r\n(geen informatie beschikbaar)." } };;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());;
// $Id: thickbox.js,v 1.8.2.19 2010/03/09 07:10:48 frjo Exp $

/*
 * Thickbox 3.1 - One Box To Rule Them All.
 * By Cody Lindley (http://www.codylindley.com)
 * Copyright (c) 2007 cody lindley
 * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
*/


// Initialize Thickbox.
Drupal.behaviors.initThickbox = function (context) {
  $('a,area,input', context).filter('.thickbox:not(.initThickbox-processed)').addClass('initThickbox-processed').click(function() {
    var t = this.title || this.name || null;
    var a = $(this).attr('href') || this.alt;
    var g = this.rel || false;
    tb_show(t,a,g);
    this.blur();
    return false;
  });
};

function tb_show(caption, url, imageGroup) { //function called when the user clicks on a thickbox link

  var settings = Drupal.settings.thickbox;
  tb_setBrowserExtra();

  try {
    if (typeof document.body.style.maxHeight === 'undefined') { //if IE 6
      $('body','html').css({height: '100%', width: '100%'});
      $('html').css('overflow','hidden');
      if (document.getElementById('TB_HideSelect') === null) { //iframe to hide select elements in ie6
        $('body').append('<iframe id="TB_HideSelect"></iframe><div id="TB_overlay"></div><div id="TB_window"></div>');
        $('#TB_overlay').click(tb_remove);
      }
    }
    else { //all others
      if (document.getElementById('TB_overlay') === null) {
        $('body').append('<div id="TB_overlay"></div><div id="TB_window"></div>');
        $('#TB_overlay').click(tb_remove);
      }
    }

    if ($.browserextra.macfirefox) {
      $('#TB_overlay').addClass('TB_overlayMacFFBGHack'); //use png overlay so hide flash
    }
    else {
      $('#TB_overlay').addClass('TB_overlayBG'); //use background and opacity
    }

    if (caption === null) {
      caption = '';
    }
    $('body').append('<div id="TB_load"></div>'); //add loader to the page
    $('#TB_load').show(); //show loader

    var baseURL;
    if (url.indexOf('?')!==-1) { //ff there is a query string involved
      baseURL = url.substr(0, url.indexOf('?'));
    }
    else {
      baseURL = url;
    }

    var urlString = /\.jpg$|\.jpeg$|\.png$|\.gif$|\.bmp$/;
    var urlType = baseURL.toLowerCase().match(urlString);

    if (urlType == '.jpg' || urlType == '.jpeg' || urlType == '.png' || urlType == '.gif' || urlType == '.bmp') { //code to show images
      TB_PrevCaption = '';
      TB_PrevURL = '';
      TB_PrevHTML = '';
      TB_NextCaption = '';
      TB_NextURL = '';
      TB_NextHTML = '';
      TB_imageCount = '';
      TB_FoundURL = false;
      if (imageGroup) {
        TB_TempArray = $('a[rel=' + imageGroup + ']').get();
        for (TB_Counter = 0; ((TB_Counter < TB_TempArray.length) && (TB_NextHTML === '')); TB_Counter++) {
          var urlTypeTemp = TB_TempArray[TB_Counter].href.toLowerCase().match(urlString);
          if (!(TB_TempArray[TB_Counter].href == url)) {
            if (TB_FoundURL) {
              TB_NextCaption = TB_TempArray[TB_Counter].title;
              TB_NextURL = TB_TempArray[TB_Counter].href;
              TB_NextHTML = '<span id="TB_next">&nbsp;&nbsp;<a href="#">' + settings.next + '</a></span>';
            }
            else {
              TB_PrevCaption = TB_TempArray[TB_Counter].title;
              TB_PrevURL = TB_TempArray[TB_Counter].href;
              TB_PrevHTML = '<span id="TB_prev">&nbsp;&nbsp;<a href="#">' + settings.prev + '</a></span>';
            }
          }
          else {
            TB_FoundURL = true;
            if (TB_TempArray.length > 1) { // Don't show "Image 1 of 1".
              TB_imageCount = settings.image_count.replace(/\!current/, (TB_Counter + 1)).replace(/\!total/, TB_TempArray.length);
            }
          }
        }
      }

      // Modified to preload previous and next image.
      imgPreloader = new Image();
      prevImg = new Image();
      nextImg = new Image();
      imgPreloader.onload = function() {
        imgPreloader.onload = null;

        var TB_Links = $('a[class*="thickbox"]');
        var i = -1;
        TB_Links.each(function(n) { if (this.href == imgPreloader.src) { i = n; } });
        if (i != -1) {
          if (i > 0) { prevImg.src = TB_Links[i - 1].href; }
          if (i + 1 < TB_Links.length) { nextImg.src = TB_Links[i + 1].href; }
        }

        // Resizing large images - orginal by Christian Montoya edited by me.
        var pagesize = tb_getPageSize();
        var x = pagesize[0] - 100;
        var y = pagesize[1] - 100;
        var imageWidth = imgPreloader.width;
        var imageHeight = imgPreloader.height;
        if (imageWidth > x) {
          imageHeight = imageHeight * (x / imageWidth);
          imageWidth = x;
          if (imageHeight > y) {
            imageWidth = imageWidth * (y / imageHeight);
            imageHeight = y;
          }
        }
        else if (imageHeight > y) {
          imageWidth = imageWidth * (y / imageHeight);
          imageHeight = y;
          if (imageWidth > x) {
            imageHeight = imageHeight * (x / imageWidth);
            imageWidth = x;
          }
        }
        // End Resizing

        TB_WIDTH = imageWidth < 320 ? 350 : imageWidth + 30;
        TB_HEIGHT = imageHeight + 60;
        $('#TB_window').append('<a href="" id="TB_ImageOff" title="' + settings.next_close + '"><img id="TB_Image" src="' + url + '" width="' + imageWidth + '" height="' + imageHeight + '" alt="' + caption + '" /></a><div id="TB_caption">' + caption + '<div id="TB_secondLine">' + TB_imageCount + TB_PrevHTML + TB_NextHTML + '</div></div><div id="TB_closeWindow"><a href="#" id="TB_closeWindowButton" title="' + settings.close + '">' + settings.close + '</a> ' + settings.esc_key + '</div>');
        $('#TB_closeWindowButton').click(tb_remove);

        if (!(TB_PrevHTML === '')) {
          function goPrev() {
            if ($(document).unbind('click',goPrev)) {$(document).unbind('click',goPrev);}
            $('#TB_window').remove();
            $('body').append('<div id="TB_window"></div>');
            tb_show(TB_PrevCaption, TB_PrevURL, imageGroup);
            return false;
          }
          $('#TB_prev').click(goPrev);
        }

        if (!(TB_NextHTML === '')) {
          function goNext() {
            $('#TB_window').remove();
            $('body').append('<div id="TB_window"></div>');
            tb_show(TB_NextCaption, TB_NextURL, imageGroup);
            return false;
          }
          $('#TB_next').click(goNext);
          $('#TB_ImageOff').click(goNext);
        }
        else {
          $('#TB_ImageOff').click(tb_remove);
        }

        document.onkeydown = function(e) {
          if (e == null) { // ie
            keycode = event.keyCode;
            escapeKey = 27;
          }
          else if ($.browser.safari || $.browser.opera) { // safari or opera
            keycode = e.which;
            escapeKey = 27;
          }
          else { // mozilla
            keycode = e.keyCode;
            escapeKey = e.DOM_VK_ESCAPE;
          }
          key = String.fromCharCode(keycode).toLowerCase();
          if (key == 'x' || key == 'c' || keycode == escapeKey) { // close
            tb_remove();
          }
          else if (key == 'n' || keycode == 39) { // display previous image
            if (!(TB_NextHTML == '')) {
              document.onkeydown = '';
              goNext();
            }
          }
          else if (key == 'p' || keycode == 37) { // display next image
            if (!(TB_PrevHTML == '')) {
              document.onkeydown = '';
              goPrev();
            }
          }
        };

        tb_position();
        $('#TB_load').remove();
        $('#TB_window').css({display:'block', opacity: 0}).animate({opacity: 1}, 400); //for safari using css instead of show
      };

      imgPreloader.src = url;
    }
    else { //code to show html

      var queryString = url.replace(/^[^\?]+\??/,'');
      url = url.replace('?' + queryString,'');
      var params = tb_parseQuery( queryString );

      TB_WIDTH = (params['width']*1) + 30 || 630; //defaults to 630 if no paramaters were added to URL
      TB_HEIGHT = (params['height']*1) + 40 || 440; //defaults to 440 if no paramaters were added to URL
      ajaxContentW = TB_WIDTH - 30;
      ajaxContentH = TB_HEIGHT - 45;

      if (url.indexOf('TB_iframe') != -1) { // either iframe or ajax window
        urlNoQuery = url.split('TB_');
        $('#TB_iframeContent').remove();
        if (params['modal'] != 'true') { //iframe no modal
          $('#TB_window').append('<div id="TB_title"><div id="TB_ajaxWindowTitle">' + caption + '</div><div id="TB_closeAjaxWindow"><a href="#" id="TB_closeWindowButton" title="' + settings.close + '">' + settings.close + '</a> ' + settings.esc_key + '</div></div><iframe frameborder="0" hspace="0" src="' + urlNoQuery[0] + '" id="TB_iframeContent" name="TB_iframeContent' + Math.round(Math.random()*1000) + '" onload="tb_showIframe()" style="width:' + (ajaxContentW + 29) + 'px;height:' + (ajaxContentH + 17) + 'px;"></iframe>');
        }
        else { //iframe modal
          $('#TB_overlay').unbind();
          $('#TB_window').append('<iframe frameborder="0" hspace="0" src="' + urlNoQuery[0] + '" id="TB_iframeContent" name="TB_iframeContent' + Math.round(Math.random()*1000) + '" onload="tb_showIframe()" style="width:' + (ajaxContentW + 29) + 'px;height:' + (ajaxContentH + 17) + 'px;"></iframe>');
        }
      }
      else { // not an iframe, ajax
        if ($('#TB_window').css('display') != 'block') {
          if (params['modal'] != 'true') { //ajax no modal
            $('#TB_window').append('<div id="TB_title"><div id="TB_ajaxWindowTitle">' + caption + '</div><div id="TB_closeAjaxWindow"><a href="#" id="TB_closeWindowButton" title="' + settings.close + '">' + settings.close + '</a> ' + settings.esc_key + '</div></div><div id="TB_ajaxContent" style="width:' + ajaxContentW + 'px;height:' + ajaxContentH + 'px"></div>');
            window.setTimeout("tb_focusFirstFormElement()", 1000);
          }
          else { //ajax modal
            $('#TB_overlay').unbind();
            $('#TB_window').append('<div id="TB_ajaxContent" class="TB_modal" style="width:' + ajaxContentW + 'px;height:' + ajaxContentH + 'px;"></div>');
          }
        }
        else { //this means the window is already up, we are just loading new content via ajax
          $('#TB_ajaxContent')[0].style.width = ajaxContentW + 'px';
          $('#TB_ajaxContent')[0].style.height = ajaxContentH + 'px';
          $('#TB_ajaxContent')[0].scrollTop = 0;
          $('#TB_ajaxWindowTitle').html(caption);
        }
      }

      $('#TB_closeWindowButton').click(tb_remove);

      if (url.indexOf('TB_inline') != -1) {
        $('#TB_ajaxContent').append($('#' + params['inlineId']).children());
        $('#TB_window').unload(function () {
          $('#' + params['inlineId']).append($('#TB_ajaxContent').children()); // move elements back when you're finished
        });
        tb_position();
        $('#TB_load').remove();
        $('#TB_window').css({display:'block', opacity: 0}).animate({opacity: 1}, 400);
      }
      else if (url.indexOf('TB_iframe') != -1) {
        tb_position();
        if ($.browser.safari || $.browserextra.iphone) { //safari needs help because it will not fire iframe onload
          $('#TB_load').remove();
          $('#TB_window').css({display:'block', opacity: 0}).animate({opacity: 1}, 400);
        }
      }
      else {
        $('#TB_ajaxContent').load(url += '&random=' + (new Date().getTime()),function() { //to do a post change this load method
          tb_position();
          $('#TB_load').remove();
          Drupal.attachBehaviors('#TB_ajaxContent');
          $('#TB_window').css({display:'block', opacity: 0}).animate({opacity: 1}, 400);
        });
      }
    }

    if (!params['modal']) {
      document.onkeyup = function(e) {
        if (e == null) { // ie
          keycode = event.keyCode;
          escapeKey = 27;
        }
        else if ($.browser.safari || $.browser.opera) { // safari or opera
          keycode = e.which;
          escapeKey = 27;
        }
        else { // mozilla
          keycode = e.keyCode;
          escapeKey = e.DOM_VK_ESCAPE;
        }
        key = String.fromCharCode(keycode).toLowerCase();
        if (keycode == escapeKey) { // close
          tb_remove();
        }
      };
    }

  }
  catch(e) {
    //nothing here
  }
}

//helper functions below
function tb_showIframe() {
  $('#TB_load').remove();
  $('#TB_window').css({display:'block', opacity: 0}).animate({opacity: 1}, 400);
}

function tb_remove() {
  $('#TB_imageOff').unbind('click');
  $('#TB_overlay').unbind('click');
  $('#TB_closeWindowButton').unbind('click');
  $('#TB_window').fadeOut(400,function() {$('#TB_window,#TB_overlay,#TB_HideSelect').trigger('unload').unbind().remove();});
  $('#TB_load').remove();
  if (typeof document.body.style.maxHeight == 'undefined') { //if IE 6
    $('body','html').css({height: 'auto', width: 'auto'});
    $('html').css('overflow','');
  }
  document.onkeydown = '';
  document.onkeyup = '';
  return false;
}

function tb_position() {
  $('#TB_window').css({marginLeft: '-' + parseInt((TB_WIDTH / 2),10) + 'px', width: TB_WIDTH + 'px'});
  if (!($.browserextra.msie6)) { // take away IE6
    $('#TB_window').css({marginTop: '-' + parseInt((TB_HEIGHT / 2),10) + 'px'});
  }
}

function tb_parseQuery( query ) {
  var Params = {};
  if ( ! query ) {return Params;}// return empty object
  var Pairs = query.split(/[;&]/);
  for ( var i = 0; i < Pairs.length; i++ ) {
    var KeyVal = Pairs[i].split('=');
    if ( ! KeyVal || KeyVal.length != 2 ) {continue;}
    var key = unescape( KeyVal[0] );
    var val = unescape( KeyVal[1] );
    val = val.replace(/\+/g, ' ');
    Params[key] = val;
  }
  return Params;
}

function tb_getPageSize() {
  var de = document.documentElement;
  var w = window.innerWidth || self.innerWidth || (de&&de.clientWidth) || document.body.clientWidth;
  var h = window.innerHeight || self.innerHeight || (de&&de.clientHeight) || document.body.clientHeight;
  arrayPageSize = [w,h];
  return arrayPageSize;
}

function tb_setBrowserExtra() {
  // Return if already set.
  if ($.browserextra) {
    return;
  }

  // Add iPhone, IE 6 and Mac Firefox browser detection.
  // msie6 fixes the fact that IE 7 now reports itself as MSIE 6.0 compatible
  var userAgent = navigator.userAgent.toLowerCase();
  $.browserextra = {
    iphone: /iphone/.test( userAgent ),
    msie6: /msie/.test( userAgent ) && !/opera/.test( userAgent ) && /msie 6\.0/.test( userAgent ) && !/msie 7\.0/.test( userAgent ) && !/msie 8\.0/.test( userAgent ),
    macfirefox: /mac/.test( userAgent ) && /firefox/.test( userAgent )
  };
}

function tb_focusFirstFormElement() {
  $('#TB_window form input[type=text]:first').focus();
}
;
Drupal.behaviors.fixThickbox = function () {
  tb_setBrowserExtra();
};
;
Drupal.behaviors.omp = function (context) {

  // Prevent search form double-submission
  $('#omp-search-simple-search-form, #omp-search-adv-search-form').submit(function() {
    var form_disabled = false;

    $('input[type=submit], input[type=image]', this).each(function(i) {
      if ($(this).hasClass('disable')) {
        form_disabled = true;
      }
    });

    // Don's submit the form if it's disabled
    if (form_disabled) {
      return false;
    }

    // Disable form elements
    $('input[type=submit]', this).addClass('disable');
    $('input[type=image]', this).addClass('disable');
    $('input[type=text]', this).attr('readonly', 'readonly').addClass('disable');
    $('textarea', this).attr('readonly', 'readonly').addClass('disable');

    // Disabled select's do not post their values and there is no 'readonly' attribute available
    $('select', this).addClass('disable');

    // Make sure the form gets submitted
    this.submit();
  });
}
;
/*
 * jCarousel - Riding carousels with jQuery
 *   http://sorgalla.com/jcarousel/
 *
 * Copyright (c) 2006 Jan Sorgalla (http://sorgalla.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * Built on top of the jQuery library
 *   http://jquery.com
 *
 * Inspired by the "Carousel Component" by Bill Scott
 *   http://billwscott.com/carousel/
 */

(function($){$.fn.jcarousel=function(o){return this.each(function(){new $jc(this,o);});};var defaults={vertical:false,start:1,offset:1,size:null,scroll:3,visible:null,animation:'normal',easing:'swing',auto:0,wrap:null,initCallback:null,reloadCallback:null,itemLoadCallback:null,itemFirstInCallback:null,itemFirstOutCallback:null,itemLastInCallback:null,itemLastOutCallback:null,itemVisibleInCallback:null,itemVisibleOutCallback:null,buttonNextHTML:'<div></div>',buttonPrevHTML:'<div></div>',buttonNextEvent:'click',buttonPrevEvent:'click',buttonNextCallback:null,buttonPrevCallback:null};$.jcarousel=function(e,o){this.options=$.extend({},defaults,o||{});this.locked=false;this.container=null;this.clip=null;this.list=null;this.buttonNext=null;this.buttonPrev=null;this.wh=!this.options.vertical?'width':'height';this.lt=!this.options.vertical?'left':'top';var skin='',split=e.className.split(' ');for(var i=0;i<split.length;i++){if(split[i].indexOf('jcarousel-skin')!=-1){$(e).removeClass(split[i]);var skin=split[i];break;}}
if(e.nodeName=='UL'||e.nodeName=='OL'){this.list=$(e);this.container=this.list.parent();if(this.container.hasClass('jcarousel-clip')){if(!this.container.parent().hasClass('jcarousel-container'))
this.container=this.container.wrap('<div></div>');this.container=this.container.parent();}else if(!this.container.hasClass('jcarousel-container'))
this.container=this.list.wrap('<div></div>').parent();}else{this.container=$(e);this.list=$(e).find('>ul,>ol,div>ul,div>ol');}
if(skin!=''&&this.container.parent()[0].className.indexOf('jcarousel-skin')==-1)
this.container.wrap('<div class=" '+skin+'"></div>');this.clip=this.list.parent();if(!this.clip.length||!this.clip.hasClass('jcarousel-clip'))
this.clip=this.list.wrap('<div></div>').parent();this.buttonPrev=$('.jcarousel-prev',this.container);if(this.buttonPrev.size()==0&&this.options.buttonPrevHTML!=null)
this.buttonPrev=this.clip.before(this.options.buttonPrevHTML).prev();this.buttonPrev.addClass(this.className('jcarousel-prev'));this.buttonNext=$('.jcarousel-next',this.container);if(this.buttonNext.size()==0&&this.options.buttonNextHTML!=null)
this.buttonNext=this.clip.before(this.options.buttonNextHTML).prev();this.buttonNext.addClass(this.className('jcarousel-next'));this.clip.addClass(this.className('jcarousel-clip'));this.list.addClass(this.className('jcarousel-list'));this.container.addClass(this.className('jcarousel-container'));var di=this.options.visible!=null?Math.ceil(this.clipping()/this.options.visible):null;var li=this.list.children('li');var self=this;if(li.size()>0){var wh=0,i=this.options.offset;li.each(function(){self.format(this,i++);wh+=self.dimension(this,di);});this.list.css(this.wh,wh+'px');if(!o||o.size===undefined)
this.options.size=li.size();}
this.container.css('display','block');this.buttonNext.css('display','block');this.buttonPrev.css('display','block');this.funcNext=function(){self.next();};this.funcPrev=function(){self.prev();};this.funcResize=function(){self.reload();};if(this.options.initCallback!=null)
this.options.initCallback(this,'init');if($.browser.safari){this.buttons(false,false);$(window).bind('load',function(){self.setup();});}else
this.setup();};var $jc=$.jcarousel;$jc.fn=$jc.prototype={jcarousel:'0.2.3'};$jc.fn.extend=$jc.extend=$.extend;$jc.fn.extend({setup:function(){this.first=null;this.last=null;this.prevFirst=null;this.prevLast=null;this.animating=false;this.timer=null;this.tail=null;this.inTail=false;if(this.locked)
return;this.list.css(this.lt,this.pos(this.options.offset)+'px');var p=this.pos(this.options.start);this.prevFirst=this.prevLast=null;this.animate(p,false);$(window).unbind('resize',this.funcResize).bind('resize',this.funcResize);},reset:function(){this.list.empty();this.list.css(this.lt,'0px');this.list.css(this.wh,'10px');if(this.options.initCallback!=null)
this.options.initCallback(this,'reset');this.setup();},reload:function(){if(this.tail!=null&&this.inTail)
this.list.css(this.lt,$jc.intval(this.list.css(this.lt))+this.tail);this.tail=null;this.inTail=false;if(this.options.reloadCallback!=null)
this.options.reloadCallback(this);if(this.options.visible!=null){var self=this;var di=Math.ceil(this.clipping()/this.options.visible),wh=0,lt=0;$('li',this.list).each(function(i){wh+=self.dimension(this,di);if(i+1<self.first)
lt=wh;});this.list.css(this.wh,wh+'px');this.list.css(this.lt,-lt+'px');}
this.scroll(this.first,false);},lock:function(){this.locked=true;this.buttons();},unlock:function(){this.locked=false;this.buttons();},size:function(s){if(s!=undefined){this.options.size=s;if(!this.locked)
this.buttons();}
return this.options.size;},has:function(i,i2){if(i2==undefined||!i2)
i2=i;if(this.options.size!==null&&i2>this.options.size)
i2=this.options.size;for(var j=i;j<=i2;j++){var e=this.get(j);if(!e.length||e.hasClass('jcarousel-item-placeholder'))
return false;}
return true;},get:function(i){return $('.jcarousel-item-'+i,this.list);},add:function(i,s){var e=this.get(i),old=0,add=0;if(e.length==0){var c,e=this.create(i),j=$jc.intval(i);while(c=this.get(--j)){if(j<=0||c.length){j<=0?this.list.prepend(e):c.after(e);break;}}}else
old=this.dimension(e);e.removeClass(this.className('jcarousel-item-placeholder'));typeof s=='string'?e.html(s):e.empty().append(s);var di=this.options.visible!=null?Math.ceil(this.clipping()/this.options.visible):null;var wh=this.dimension(e,di)-old;if(i>0&&i<this.first)
this.list.css(this.lt,$jc.intval(this.list.css(this.lt))-wh+'px');this.list.css(this.wh,$jc.intval(this.list.css(this.wh))+wh+'px');return e;},remove:function(i){var e=this.get(i);if(!e.length||(i>=this.first&&i<=this.last))
return;var d=this.dimension(e);if(i<this.first)
this.list.css(this.lt,$jc.intval(this.list.css(this.lt))+d+'px');e.remove();this.list.css(this.wh,$jc.intval(this.list.css(this.wh))-d+'px');},next:function(){this.stopAuto();if(this.tail!=null&&!this.inTail)
this.scrollTail(false);else
this.scroll(((this.options.wrap=='both'||this.options.wrap=='last')&&this.options.size!=null&&this.last==this.options.size)?1:this.first+this.options.scroll);},prev:function(){this.stopAuto();if(this.tail!=null&&this.inTail)
this.scrollTail(true);else
this.scroll(((this.options.wrap=='both'||this.options.wrap=='first')&&this.options.size!=null&&this.first==1)?this.options.size:this.first-this.options.scroll);},scrollTail:function(b){if(this.locked||this.animating||!this.tail)
return;var pos=$jc.intval(this.list.css(this.lt));!b?pos-=this.tail:pos+=this.tail;this.inTail=!b;this.prevFirst=this.first;this.prevLast=this.last;this.animate(pos);},scroll:function(i,a){if(this.locked||this.animating)
return;this.animate(this.pos(i),a);},pos:function(i){if(this.locked||this.animating)
return;if(this.options.wrap!='circular')
i=i<1?1:(this.options.size&&i>this.options.size?this.options.size:i);var back=this.first>i;var pos=$jc.intval(this.list.css(this.lt));var f=this.options.wrap!='circular'&&this.first<=1?1:this.first;var c=back?this.get(f):this.get(this.last);var j=back?f:f-1;var e=null,l=0,p=false,d=0;while(back?--j>=i:++j<i){e=this.get(j);p=!e.length;if(e.length==0){e=this.create(j).addClass(this.className('jcarousel-item-placeholder'));c[back?'before':'after'](e);}
c=e;d=this.dimension(e);if(p)
l+=d;if(this.first!=null&&(this.options.wrap=='circular'||(j>=1&&(this.options.size==null||j<=this.options.size))))
pos=back?pos+d:pos-d;}
var clipping=this.clipping();var cache=[];var visible=0,j=i,v=0;var c=this.get(i-1);while(++visible){e=this.get(j);p=!e.length;if(e.length==0){e=this.create(j).addClass(this.className('jcarousel-item-placeholder'));c.length==0?this.list.prepend(e):c[back?'before':'after'](e);}
c=e;var d=this.dimension(e);if(d==0){alert('jCarousel: No width/height set for items. This will cause an infinite loop. Aborting...');return 0;}
if(this.options.wrap!='circular'&&this.options.size!==null&&j>this.options.size)
cache.push(e);else if(p)
l+=d;v+=d;if(v>=clipping)
break;j++;}
for(var x=0;x<cache.length;x++)
cache[x].remove();if(l>0){this.list.css(this.wh,this.dimension(this.list)+l+'px');if(back){pos-=l;this.list.css(this.lt,$jc.intval(this.list.css(this.lt))-l+'px');}}
var last=i+visible-1;if(this.options.wrap!='circular'&&this.options.size&&last>this.options.size)
last=this.options.size;if(j>last){visible=0,j=last,v=0;while(++visible){var e=this.get(j--);if(!e.length)
break;v+=this.dimension(e);if(v>=clipping)
break;}}
var first=last-visible+1;if(this.options.wrap!='circular'&&first<1)
first=1;if(this.inTail&&back){pos+=this.tail;this.inTail=false;}
this.tail=null;if(this.options.wrap!='circular'&&last==this.options.size&&(last-visible+1)>=1){var m=$jc.margin(this.get(last),!this.options.vertical?'marginRight':'marginBottom');if((v-m)>clipping)
this.tail=v-clipping-m;}
while(i-->first)
pos+=this.dimension(this.get(i));this.prevFirst=this.first;this.prevLast=this.last;this.first=first;this.last=last;return pos;},animate:function(p,a){if(this.locked||this.animating)
return;this.animating=true;var self=this;var scrolled=function(){self.animating=false;if(p==0)
self.list.css(self.lt,0);if(self.options.wrap=='both'||self.options.wrap=='last'||self.options.size==null||self.last<self.options.size)
self.startAuto();self.buttons();self.notify('onAfterAnimation');};this.notify('onBeforeAnimation');if(!this.options.animation||a==false){this.list.css(this.lt,p+'px');scrolled();}else{var o=!this.options.vertical?{'left':p}:{'top':p};this.list.animate(o,this.options.animation,this.options.easing,scrolled);}},startAuto:function(s){if(s!=undefined)
this.options.auto=s;if(this.options.auto==0)
return this.stopAuto();if(this.timer!=null)
return;var self=this;this.timer=setTimeout(function(){self.next();},this.options.auto*1000);},stopAuto:function(){if(this.timer==null)
return;clearTimeout(this.timer);this.timer=null;},buttons:function(n,p){if(n==undefined||n==null){var n=!this.locked&&this.options.size!==0&&((this.options.wrap&&this.options.wrap!='first')||this.options.size==null||this.last<this.options.size);if(!this.locked&&(!this.options.wrap||this.options.wrap=='first')&&this.options.size!=null&&this.last>=this.options.size)
n=this.tail!=null&&!this.inTail;}
if(p==undefined||p==null){var p=!this.locked&&this.options.size!==0&&((this.options.wrap&&this.options.wrap!='last')||this.first>1);if(!this.locked&&(!this.options.wrap||this.options.wrap=='last')&&this.options.size!=null&&this.first==1)
p=this.tail!=null&&this.inTail;}
var self=this;this.buttonNext[n?'bind':'unbind'](this.options.buttonNextEvent,this.funcNext)[n?'removeClass':'addClass'](this.className('jcarousel-next-disabled')).attr('disabled',n?false:true);this.buttonPrev[p?'bind':'unbind'](this.options.buttonPrevEvent,this.funcPrev)[p?'removeClass':'addClass'](this.className('jcarousel-prev-disabled')).attr('disabled',p?false:true);if(this.buttonNext.length>0&&(this.buttonNext[0].jcarouselstate==undefined||this.buttonNext[0].jcarouselstate!=n)&&this.options.buttonNextCallback!=null){this.buttonNext.each(function(){self.options.buttonNextCallback(self,this,n);});this.buttonNext[0].jcarouselstate=n;}
if(this.buttonPrev.length>0&&(this.buttonPrev[0].jcarouselstate==undefined||this.buttonPrev[0].jcarouselstate!=p)&&this.options.buttonPrevCallback!=null){this.buttonPrev.each(function(){self.options.buttonPrevCallback(self,this,p);});this.buttonPrev[0].jcarouselstate=p;}},notify:function(evt){var state=this.prevFirst==null?'init':(this.prevFirst<this.first?'next':'prev');this.callback('itemLoadCallback',evt,state);if(this.prevFirst!==this.first){this.callback('itemFirstInCallback',evt,state,this.first);this.callback('itemFirstOutCallback',evt,state,this.prevFirst);}
if(this.prevLast!==this.last){this.callback('itemLastInCallback',evt,state,this.last);this.callback('itemLastOutCallback',evt,state,this.prevLast);}
this.callback('itemVisibleInCallback',evt,state,this.first,this.last,this.prevFirst,this.prevLast);this.callback('itemVisibleOutCallback',evt,state,this.prevFirst,this.prevLast,this.first,this.last);},callback:function(cb,evt,state,i1,i2,i3,i4){if(this.options[cb]==undefined||(typeof this.options[cb]!='object'&&evt!='onAfterAnimation'))
return;var callback=typeof this.options[cb]=='object'?this.options[cb][evt]:this.options[cb];if(!$.isFunction(callback))
return;var self=this;if(i1===undefined)
callback(self,state,evt);else if(i2===undefined)
this.get(i1).each(function(){callback(self,this,i1,state,evt);});else{for(var i=i1;i<=i2;i++)
if(i!==null&&!(i>=i3&&i<=i4))
this.get(i).each(function(){callback(self,this,i,state,evt);});}},create:function(i){return this.format('<li></li>',i);},format:function(e,i){var $e=$(e).addClass(this.className('jcarousel-item')).addClass(this.className('jcarousel-item-'+i));$e.attr('jcarouselindex',i);return $e;},className:function(c){return c+' '+c+(!this.options.vertical?'-horizontal':'-vertical');},dimension:function(e,d){var el=e.jquery!=undefined?e[0]:e;var old=!this.options.vertical?el.offsetWidth+$jc.margin(el,'marginLeft')+$jc.margin(el,'marginRight'):el.offsetHeight+$jc.margin(el,'marginTop')+$jc.margin(el,'marginBottom');if(d==undefined||old==d)
return old;var w=!this.options.vertical?d-$jc.margin(el,'marginLeft')-$jc.margin(el,'marginRight'):d-$jc.margin(el,'marginTop')-$jc.margin(el,'marginBottom');$(el).css(this.wh,w+'px');return this.dimension(el);},clipping:function(){return!this.options.vertical?this.clip[0].offsetWidth-$jc.intval(this.clip.css('borderLeftWidth'))-$jc.intval(this.clip.css('borderRightWidth')):this.clip[0].offsetHeight-$jc.intval(this.clip.css('borderTopWidth'))-$jc.intval(this.clip.css('borderBottomWidth'));},index:function(i,s){if(s==undefined)
s=this.options.size;return Math.round((((i-1)/s)-Math.floor((i-1)/s))*s)+1;}});$jc.extend({defaults:function(d){return $.extend(defaults,d||{});},margin:function(e,p){if(!e)
return 0;var el=e.jquery!=undefined?e[0]:e;if(p=='marginRight'&&$.browser.safari){var old={'display':'block','float':'none','width':'auto'},oWidth,oWidth2;$.swap(el,old,function(){oWidth=el.offsetWidth;});old['marginRight']=0;$.swap(el,old,function(){oWidth2=el.offsetWidth;});return oWidth2-oWidth;}
return $jc.intval($.css(el,p));},intval:function(v){v=parseInt(v);return isNaN(v)?0:v;}});})(jQuery);
;
/* $Id: jcarousel.js,v 1.1.2.2.2.5 2009/03/25 18:10:22 robloach Exp $ */

/**
 * @file
 * Provides the jCarousel Drupal behavior.
 */

/**
 * The jCarousel Drupal behavior that creates the set of jCarousel elements from Drupal.settings.jcarousel.
 */
Drupal.behaviors.jcarousel = function() {
  // Iterate through each selector and add the carousel.
  jQuery.each(Drupal.settings.jcarousel, function(selector, options) {

    // Convert any callback arguments from strings to function calls.
    var callbacks = ['initCallback', 'itemLoadCallback', 'itemFirstInCallback', 'itemFirstOutCallback', 'itemLastOutCallback', 'itemLastInCallback', 'itemVisibleInCallback', 'itemVisibleOutCallback', 'buttonNextCallback', 'buttonPrevCallback'];
    for (callback in callbacks) {
      var callbackname = callbacks[callback];
      // The callback depends on its type.
      if (typeof(options[callbackname]) == 'string') {
        // Strings are evaluated as functions.
        options[callbackname] = eval(options[callbackname]);
      }
      else if (typeof(options[callbackname]) == 'object' && (options[callbackname] instanceof Array)) {
        // Arrays are evaluated as a list of callback registrations. This is because callbacks
        // like itemVisibleInCallback can either be a function call back, or an array of callbacks
        // consisting of both onBeforeAnimation and onAfterAnimation.
        for (subcallback in options[callbackname]) {
          var name = options[callbackname][subcallback];
          options[callbackname][name] = eval(options[callbackname][name]);
        }
      }
    }

    // Prepare the skin name to be added as a class name.
    var skin = options['skin'];
    if (typeof(skin) == 'string') {
      skin = ' jcarousel-skin-' + skin;
    }
    else {
      skin = '';
    }

    // Create the countdown element on non-processed elements.
    $(selector + ':not(.jcarousel-processed)').addClass('jcarousel-processed' + skin).jcarousel(options);
  });
};
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * 2000 Albert-Jan Pool, published by Fontshop International for the FontFont
 * library.
 * 
 * Manufacturer:
 * Albert-Jan Pool, published by Fontshop International for the FontFont library
 */
Cufon.registerFont({"w":143,"face":{"font-family":"DINCondBoldAlternate","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 6 4 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"3","bbox":"-13 -347.042 282 70","underline-thickness":"27.72","underline-position":"-14.04","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":64},"\u00dd":{"d":"90,-100r0,100r-40,0r0,-100r-50,-156r45,0r25,101r25,-101r45,0xm80,-274r-26,0r26,-50r32,0","w":140},"\u00fd":{"d":"82,24v-6,33,-32,43,-70,43r0,-34v25,1,33,-13,37,-33r-48,-190r43,0r25,130r25,-130r42,0xm80,-211r-27,0r26,-50r32,0","w":137},"\u00de":{"d":"62,-208v62,-4,90,17,90,78v0,60,-27,84,-90,79r0,51r-40,0r0,-256r40,0r0,48xm62,-88v36,5,50,-8,50,-42v0,-33,-14,-46,-50,-41r0,83","w":165},"\u00fe":{"d":"88,-193v47,3,47,46,47,98v0,51,1,98,-47,98v-13,0,-25,-6,-31,-15r0,79r-38,0r0,-323r37,0r0,80v6,-9,18,-18,32,-17xm76,-31v26,0,20,-34,20,-64v0,-30,5,-61,-20,-64v-35,5,-19,69,-19,105v0,14,6,23,19,23","w":147},"\u00bd":{"d":"109,0r-29,0r88,-256r30,0xm225,-156v41,-3,51,42,32,71r-42,64r53,0r0,21r-83,0r0,-20v18,-33,47,-55,55,-99v1,-9,-7,-15,-15,-15v-14,-1,-15,12,-14,26r-28,0v-3,-33,14,-46,42,-48xm49,-103r0,-125r-27,17r0,-28v14,-9,27,-21,54,-17r0,153r-27,0","w":282},"\u00bc":{"d":"109,0r-29,0r88,-256r30,0xm258,-23r0,23r-28,0r0,-23r-52,0r0,-21r39,-110r27,0r-38,110r24,0r0,-25r28,0r0,25r12,0r0,21r-12,0xm49,-103r0,-125r-27,17r0,-28v14,-9,27,-21,54,-17r0,153r-27,0","w":282},"\u00b9":{"d":"49,-103r0,-125r-27,17r0,-28v14,-9,27,-21,54,-17r0,153r-27,0","w":114},"\u00be":{"d":"109,0r-29,0r88,-256r30,0xm81,-183v33,17,21,87,-25,82v-28,-3,-44,-14,-42,-45r27,0v-7,26,28,33,30,10v1,-21,2,-41,-24,-37r0,-20v21,3,25,-10,23,-32v-2,-17,-29,-15,-28,3r0,9r-27,0v-3,-32,14,-42,41,-45v44,-6,56,60,25,75xm258,-23r0,23r-28,0r0,-23r-53,0r0,-21r40,-110r27,0r-38,110r24,0r0,-25r28,0r0,25r12,0r0,21r-12,0","w":282},"\u00b3":{"d":"81,-183v33,17,21,87,-25,82v-28,-3,-44,-14,-42,-45r27,0v-7,26,28,33,30,10v1,-21,2,-41,-24,-37r0,-20v21,3,25,-10,23,-32v-2,-17,-29,-15,-28,3r0,9r-27,0v-3,-32,14,-42,41,-45v44,-6,56,60,25,75","w":114},"\u00b2":{"d":"57,-258v40,-2,52,41,32,70r-43,64r53,0r0,21r-83,0r0,-20r54,-84v4,-12,2,-30,-13,-30v-14,0,-16,12,-15,27r-27,0v-3,-34,13,-46,42,-48","w":114},"\u00a6":{"d":"40,-158r0,-124r38,0r0,124r-38,0xm40,26r0,-125r38,0r0,125r-38,0","w":118},"\u00d7":{"d":"124,-37r-42,-41r-41,41r-25,-24r42,-42r-42,-42r25,-24r41,41r42,-41r25,24r-42,42r42,42","w":164},"!":{"d":"31,-72r0,-184r38,0r0,184r-38,0xm50,-49v14,0,26,12,26,25v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25v0,-13,11,-25,25,-25","w":92},"\"":{"d":"26,-184r0,-72r37,0r0,72r-37,0xm95,-184r0,-72r36,0r0,72r-36,0","w":157},"#":{"d":"172,-154r-7,46r26,0r0,36r-32,0r-10,72r-40,0r11,-72r-39,0r-10,72r-40,0r10,-72r-24,0r0,-36r30,0r7,-46r-26,0r0,-36r31,0r10,-66r40,0r-10,66r39,0r9,-66r40,0r-10,66r25,0r0,36r-30,0xm94,-154r-7,46r38,0r7,-46r-38,0","w":218},"$":{"d":"80,-222v-34,0,-30,60,-3,67v40,10,70,27,70,84v0,42,-14,66,-49,72r0,40r-35,0r0,-40v-35,-6,-51,-27,-49,-70r40,0v-1,23,6,34,26,35v39,1,32,-70,2,-78v-37,-10,-69,-24,-66,-77v2,-38,17,-59,47,-67r0,-34r35,0r0,33v33,6,47,31,47,70r-41,0v1,-20,-4,-35,-24,-35","w":161},"%":{"d":"201,-131v48,0,49,43,46,91v-1,28,-19,41,-46,43v-46,1,-49,-43,-46,-91v1,-27,17,-43,46,-43xm63,-259v46,-2,45,43,45,91v0,29,-19,41,-45,43v-46,1,-48,-43,-46,-91v1,-28,19,-42,46,-43xm102,0r-29,0r89,-256r30,0xm63,-153v23,-1,11,-40,14,-62v1,-10,-5,-16,-14,-16v-25,0,-12,39,-15,62v-1,11,6,16,15,16xm201,-25v23,-1,11,-40,14,-62v1,-10,-5,-17,-14,-17v-24,0,-12,40,-15,63v-1,11,6,16,15,16","w":263},"&":{"d":"167,-135v-1,32,-9,60,-22,81r34,54r-40,0r-14,-23v-30,44,-118,27,-113,-40v3,-36,19,-55,38,-77v-13,-20,-27,-34,-27,-62v0,-35,19,-57,52,-57v34,0,50,21,51,54v1,34,-14,52,-32,70r30,48v5,-12,10,-31,11,-48r32,0xm69,-109v-35,20,-21,99,23,72v5,-3,9,-8,14,-15xm75,-165v16,-11,28,-55,0,-60v-30,4,-14,48,0,60","w":179},"'":{"d":"26,-184r0,-72r37,0r0,72r-37,0","w":88},"(":{"d":"55,-45v0,31,11,40,26,53r-26,26v-19,-19,-38,-38,-38,-77r2,-192v4,-26,22,-40,36,-55r26,25v-15,14,-26,23,-26,54r0,166","w":95},")":{"d":"41,-290v19,20,37,37,37,77r-1,191v-5,24,-21,41,-36,56r-26,-26v14,-13,25,-23,25,-53r0,-166v1,-30,-12,-40,-25,-54","w":95},"*":{"d":"121,-149r-34,-21r2,45r-28,0r2,-45r-34,21r-14,-23r36,-19r-36,-18r14,-24r34,21r-2,-45r28,0r-2,45r34,-21r14,24r-36,18r36,19","w":150},"+":{"d":"100,-86r0,49r-36,0r0,-49r-48,0r0,-36r48,0r0,-48r36,0r0,48r49,0r0,36r-49,0","w":164},",":{"d":"21,54r0,-99r41,0r0,68","w":82},"-":{"d":"17,-86r0,-36r73,0r0,36r-73,0","w":106},".":{"d":"42,-49v14,0,25,11,25,25v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25","w":84},"\/":{"d":"38,27r-36,0r67,-310r36,0","w":107},"0":{"d":"71,-217v75,0,55,92,57,162v0,38,-21,58,-57,58v-36,0,-57,-20,-57,-58v2,-70,-19,-162,57,-162xm71,-31v10,0,20,-10,19,-22r0,-108v0,-12,-8,-22,-19,-22v-10,0,-20,10,-19,22r0,108v0,12,8,22,19,22","w":141},"1":{"d":"53,0r0,-170r-38,29r0,-43r38,-31r38,0r0,215r-38,0","w":119},"2":{"d":"69,-216v64,-3,65,77,35,117r-49,65r72,0r0,34r-116,0r0,-32v24,-44,69,-66,76,-127v1,-13,-7,-23,-18,-23v-17,0,-21,17,-19,37r-38,0v-4,-46,16,-69,57,-71","w":139},"3":{"d":"104,-93v22,14,23,44,22,82v-1,36,-22,57,-58,57v-40,0,-61,-26,-57,-73r38,0v-2,20,2,39,19,39v21,0,20,-23,20,-45v1,-28,-2,-48,-33,-44r0,-32v34,7,33,-25,30,-55v0,-11,-7,-18,-17,-18v-18,0,-18,19,-17,38r-38,0v-4,-45,16,-72,55,-72v64,0,72,95,36,123","w":140},"4":{"d":"120,-11r0,55r-38,0r0,-55r-72,0r0,-34r66,-181r37,0r-63,181r32,0r0,-46r38,0r0,46r19,0r0,34r-19,0","w":149},"5":{"d":"83,-129v51,0,47,54,47,107v0,41,-19,66,-58,66v-40,0,-61,-24,-57,-70r38,0v0,20,-1,42,19,40v30,-2,19,-53,19,-83v0,-15,-5,-25,-19,-26v-15,0,-20,12,-19,28r-36,0r0,-148r110,0r0,34r-76,0r0,69v6,-9,18,-17,32,-17","w":142},"6":{"d":"65,-153v53,-19,68,38,62,97v-4,37,-21,58,-57,59v-67,3,-66,-90,-47,-141r45,-118r39,0xm70,-31v27,0,19,-43,19,-71v-1,-13,-6,-24,-19,-24v-27,0,-19,44,-19,71v0,15,6,24,19,24","w":140},"7":{"d":"64,41r-38,0r67,-222r-44,0r0,34r-37,0r0,-68r119,0r0,32","w":142},"8":{"d":"107,-134v39,28,33,145,-35,137v-68,9,-75,-108,-36,-137v-36,-29,-28,-132,35,-125v64,-8,73,96,36,125xm72,-31v26,-2,19,-38,19,-65v0,-12,-7,-22,-19,-22v-21,0,-20,23,-20,44v0,20,0,44,20,43xm72,-150v18,0,18,-20,18,-38v0,-17,0,-37,-18,-37v-24,0,-18,32,-18,56v0,11,6,19,18,19"},"9":{"d":"70,-216v69,0,66,90,47,141r-45,118r-39,0r42,-104v-51,20,-69,-37,-62,-97v4,-36,20,-58,57,-58xm70,-88v27,-1,19,-43,19,-70v0,-15,-5,-24,-19,-24v-28,1,-19,42,-19,70v0,13,4,25,19,24","w":140},":":{"d":"50,-157v14,0,26,12,26,25v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25v0,-13,11,-25,25,-25xm50,-49v14,0,26,12,26,25v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25v0,-13,11,-25,25,-25","w":92},";":{"d":"30,54r0,-99r41,0r0,68xm50,-157v14,0,26,12,26,25v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25v0,-13,11,-25,25,-25","w":92},"<":{"d":"75,-85r76,75r-49,0r-93,-93r93,-92r49,0r-76,74r167,0r0,36r-167,0","w":258},"=":{"d":"16,-117r0,-37r133,0r0,37r-133,0xm16,-52r0,-37r133,0r0,37r-133,0","w":164},">":{"d":"157,-10r-49,0r76,-75r-167,0r0,-36r167,0r-76,-74r49,0r93,92","w":258},"?":{"d":"80,-258v59,-4,78,70,49,114v-13,20,-35,35,-29,72r-38,0v-10,-60,39,-65,41,-118v2,-19,-6,-33,-22,-34v-17,0,-24,15,-23,34r-38,0v1,-41,18,-65,60,-68xm81,-49v14,0,25,12,25,25v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25v0,-13,12,-25,26,-25","w":153},"@":{"d":"76,-256v62,-2,123,-6,123,59r0,197r-36,0r0,-14v-25,32,-83,15,-77,-39v6,-54,-14,-127,45,-123v12,0,24,6,30,14v1,-31,2,-63,-30,-62v-36,2,-76,-8,-76,32r0,143v-1,14,4,19,11,26r-28,28v-39,-35,-17,-134,-21,-202v-3,-39,22,-58,59,-59xm143,-31v31,0,14,-58,18,-89v1,-13,-7,-23,-18,-23v-32,2,-15,58,-19,90v-1,13,8,22,19,22","w":218},"A":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-194r-22,107r44,0","w":168},"B":{"d":"125,-134v22,7,27,31,27,58v0,80,-56,79,-130,76r0,-256r64,0v73,-14,86,96,39,122xm62,-36v34,2,50,-4,50,-40v0,-35,-16,-43,-50,-40r0,80xm62,-150v31,2,49,-4,49,-35v0,-33,-18,-37,-49,-35r0,70","w":169},"C":{"d":"149,-68v-3,43,-22,70,-66,71v-78,0,-62,-88,-68,-166v-6,-75,58,-124,113,-80v14,11,19,31,20,54r-40,0v-2,-18,-6,-34,-25,-34v-38,0,-28,49,-28,95v0,46,-9,88,28,95v19,-1,25,-15,25,-35r41,0","w":160},"D":{"d":"87,-256v77,0,68,84,68,162v0,54,-15,94,-68,94r-65,0r0,-256r65,0xm62,-36v63,8,53,-39,53,-93v0,-53,10,-99,-53,-91r0,184","w":169},"E":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0","w":142},"F":{"d":"62,-220r0,73r58,0r0,36r-58,0r0,111r-40,0r0,-256r107,0r0,36r-67,0","w":140},"G":{"d":"149,-139v2,71,5,142,-66,142v-78,0,-62,-88,-68,-166v-6,-76,59,-124,114,-79v13,11,19,31,20,54r-41,0v0,-20,-6,-34,-25,-35v-37,7,-28,49,-28,95v0,46,-9,88,28,95v31,-1,24,-41,25,-73r-25,0r0,-33r66,0","w":163},"H":{"d":"112,0r0,-112r-50,0r0,112r-40,0r0,-256r40,0r0,108r50,0r0,-108r40,0r0,256r-40,0","w":173},"I":{"d":"22,0r0,-256r40,0r0,256r-40,0","w":83},"J":{"d":"121,-67v6,65,-79,91,-120,49r28,-27v14,22,51,11,51,-22r0,-189r41,0r0,189","w":140},"K":{"d":"123,0r-42,-105r-19,39r0,66r-40,0r0,-256r40,0r0,120r56,-120r40,0r-51,106r59,150r-43,0","w":168},"L":{"d":"22,0r0,-256r40,0r0,220r67,0r0,36r-107,0","w":137},"M":{"d":"153,0r0,-160r-35,105r-22,0r-34,-103r0,158r-40,0r0,-256r36,0r50,134r49,-134r37,0r0,256r-41,0","w":215},"N":{"d":"122,0r-60,-152r0,152r-40,0r0,-256r36,0r60,152r0,-152r40,0r0,256r-36,0","w":179},"O":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95","w":166},"P":{"d":"86,-256v50,1,65,26,66,77v1,60,-27,84,-90,79r0,100r-40,0r0,-256r64,0xm62,-136v35,5,50,-8,50,-42v0,-34,-14,-48,-50,-42r0,84","w":165},"Q":{"d":"151,-163v0,46,4,99,-10,131r21,18r-18,22r-21,-17v-11,8,-21,12,-40,12v-78,0,-68,-87,-68,-166v0,-55,14,-96,68,-96v54,0,68,41,68,96xm55,-128v0,47,-10,100,37,93r-14,-11r19,-23r11,9v5,-17,3,-46,3,-68v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95","w":166},"R":{"d":"152,-181v-2,34,-6,55,-30,67r38,114r-42,0r-33,-105r-23,0r0,105r-40,0r0,-256v73,-3,136,-5,130,75xm62,-141v34,4,50,-7,50,-40v0,-32,-16,-44,-50,-39r0,79","w":172},"S":{"d":"79,-222v-34,0,-30,60,-3,67v39,10,76,26,69,84v17,83,-108,98,-129,35v-2,-8,-3,-19,-3,-33r40,0v-1,23,6,33,26,35v34,4,34,-58,14,-71v-33,-21,-86,-23,-78,-84v-11,-75,106,-94,125,-30v3,9,4,20,4,32r-41,0v1,-20,-4,-35,-24,-35","w":159},"T":{"d":"91,-220r0,220r-41,0r0,-220r-42,0r0,-36r126,0r0,36r-43,0","w":141},"U":{"d":"150,-63v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28v15,0,26,-11,25,-28r0,-195r40,0r0,193","w":169},"V":{"d":"99,0r-41,0r-57,-256r45,0r32,194r34,-194r44,0","w":157},"W":{"d":"207,0r-42,0r-36,-195r-37,195r-42,0r-49,-256r45,0r25,194r35,-194r45,0r35,194r25,-194r45,0","w":257},"X":{"d":"107,0r-29,-92r-30,92r-44,0r51,-133r-47,-123r44,0r26,85r25,-85r45,0r-48,123r52,133r-45,0","w":155},"Y":{"d":"90,-100r0,100r-40,0r0,-100r-50,-156r45,0r25,101r25,-101r45,0","w":140},"Z":{"d":"11,0r0,-30r70,-190r-66,0r0,-36r108,0r0,30r-70,190r70,0r0,36r-112,0","w":134},"[":{"d":"19,27r0,-310r72,0r0,34r-34,0r0,242r34,0r0,34r-72,0","w":101},"\\":{"d":"69,27r-67,-310r36,0r67,310r-36,0","w":107},"]":{"d":"10,27r0,-34r34,0r0,-242r-34,0r0,-34r72,0r0,310r-72,0","w":101},"^":{"d":"113,-156r-29,-64r-30,64r-38,0r51,-102r33,0r50,102r-37,0","w":166},"_":{"d":"0,55r0,-28r165,0r0,28r-165,0","w":164},"`":{"d":"62,-211r-32,-50r32,0r26,50r-26,0"},"a":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26"},"b":{"d":"87,-193v48,3,47,45,47,98v-1,52,2,98,-47,98v-14,0,-25,-8,-32,-17r0,14r-36,0r0,-256r38,0r0,79v6,-9,16,-16,30,-16xm76,-31v32,0,19,-64,19,-99v0,-17,-5,-28,-19,-29v-35,5,-19,69,-19,105v0,14,6,23,19,23","w":146},"c":{"d":"128,-56v-2,35,-18,59,-57,59v-52,0,-59,-45,-58,-98v-13,-73,42,-125,98,-84v12,9,16,26,17,45r-38,0v0,-13,-5,-25,-19,-25v-32,0,-19,63,-19,99v0,17,4,29,19,29v12,0,20,-11,19,-25r38,0","w":138},"d":{"d":"60,-193v14,0,24,7,30,16r0,-79r38,0r0,256r-37,0r0,-14v-6,9,-18,17,-31,17v-49,0,-46,-46,-47,-98v0,-53,-1,-98,47,-98xm71,-31v36,-5,14,-70,19,-105v2,-14,-6,-23,-19,-23v-32,0,-19,64,-19,99v0,17,4,28,19,29","w":146},"e":{"d":"71,-193v56,-1,60,52,58,109r-78,0v1,26,-2,53,21,53v14,0,17,-13,19,-25r38,0v-2,34,-20,59,-57,59v-61,0,-58,-63,-58,-123v0,-43,16,-72,57,-73xm91,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0","w":141},"f":{"d":"64,-161r0,161r-38,0r0,-161r-19,0r0,-29r19,0v-3,-47,18,-70,65,-68r0,34v-22,0,-29,12,-27,34r27,0r0,29r-27,0","w":97},"g":{"d":"61,-193v14,0,24,7,30,16r0,-13r37,0r0,194v12,69,-90,87,-110,30v-2,-7,-4,-14,-4,-22r38,0v-1,15,6,24,19,24v26,1,18,-36,19,-62v-8,10,-13,14,-29,14v-46,-2,-48,-40,-48,-90v0,-51,2,-91,48,-91xm71,-45v34,0,19,-59,19,-91v0,-12,-6,-23,-19,-23v-30,0,-19,55,-19,88v0,16,5,26,19,26","w":146},"h":{"d":"57,-177v24,-32,86,-11,75,40r0,137r-38,0r0,-136v1,-13,-7,-22,-18,-22v-12,0,-19,9,-19,22r0,136r-38,0r0,-256r38,0r0,79","w":150},"i":{"d":"19,0r0,-185r38,0r0,185r-38,0xm38,-261v13,0,24,11,24,24v0,13,-11,25,-24,25v-13,0,-24,-12,-24,-25v0,-13,11,-24,24,-24","w":75},"j":{"d":"-7,32v19,0,25,-7,26,-25r0,-192r38,0v-3,73,7,158,-5,222v-10,19,-30,30,-59,30r0,-35xm38,-261v13,0,24,11,24,24v0,13,-11,25,-24,25v-13,0,-24,-12,-24,-25v0,-13,11,-24,24,-24","w":75},"k":{"d":"105,0r-32,-80r-16,26r0,54r-38,0r0,-256r38,0r0,147r48,-81r40,0r-47,76r49,114r-42,0","w":149},"l":{"d":"82,0v-41,0,-64,-16,-64,-58r0,-198r38,0r0,196v0,17,9,26,26,26r0,34","w":87},"m":{"d":"124,-173v23,-34,84,-23,84,36r0,137r-38,0r0,-136v1,-13,-7,-22,-19,-22v-11,0,-20,10,-19,22r0,136r-38,0r0,-136v1,-13,-7,-22,-18,-22v-12,0,-19,9,-19,22r0,136r-38,0r0,-190r36,0r0,14v14,-23,57,-20,69,3","w":226},"n":{"d":"55,-176v27,-33,77,-14,77,39r0,137r-38,0r0,-136v1,-13,-7,-22,-18,-22v-12,0,-19,9,-19,22r0,136r-38,0r0,-190r36,0r0,14","w":150},"o":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29","w":142},"p":{"d":"87,-193v48,2,47,45,47,98v0,53,1,96,-47,98v-13,0,-24,-6,-30,-15r0,79r-38,0r0,-257r36,0r0,14v7,-8,18,-17,32,-17xm76,-31v32,0,19,-64,19,-99v0,-17,-5,-28,-19,-29v-35,5,-19,69,-19,105v0,14,6,23,19,23","w":146},"q":{"d":"60,-193v14,0,25,8,31,17r0,-14r37,0r0,257r-38,0r0,-79v-6,9,-17,15,-30,15v-48,-2,-47,-45,-47,-98v0,-53,-1,-95,47,-98xm71,-31v36,-5,14,-70,19,-105v2,-14,-6,-23,-19,-23v-32,0,-19,64,-19,99v0,17,4,28,19,29","w":146},"r":{"d":"102,-156v-73,-9,-37,97,-45,156r-38,0r0,-190r36,0r0,20v10,-12,26,-23,47,-23r0,37","w":107},"s":{"d":"68,-159v-25,0,-23,34,-2,42v30,11,61,20,61,62v0,65,-94,77,-113,23v-3,-7,-4,-14,-4,-23r38,0v0,14,6,23,20,23v28,0,26,-39,2,-45v-27,-13,-59,-19,-59,-59v0,-62,89,-76,109,-25v3,7,5,15,5,25r-38,0v1,-14,-8,-23,-19,-23","w":137},"t":{"d":"91,0v-41,1,-65,-17,-65,-58r0,-103r-19,0r0,-29r19,0r0,-48r38,0r0,48r27,0r0,29r-27,0r0,101v0,17,9,26,27,26r0,34","w":98},"u":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22","w":150},"v":{"d":"89,0r-40,0r-48,-190r43,0r25,130r25,-130r42,0","w":137},"w":{"d":"164,0r-38,0r-23,-123r-22,123r-38,0r-42,-190r43,0r20,130r23,-130r33,0r24,130r19,-130r43,0","w":207},"x":{"d":"95,0r-25,-59r-25,59r-42,0r45,-96r-43,-94r43,0r22,58r23,-58r42,0r-43,94r46,96r-43,0","w":140},"y":{"d":"82,24v-6,33,-32,43,-70,43r0,-34v25,1,33,-13,37,-33r-48,-190r43,0r25,130r25,-130r42,0","w":137},"z":{"d":"9,0r0,-29r56,-127r-51,0r0,-34r94,0r0,29r-56,127r56,0r0,34r-99,0","w":117},"{":{"d":"56,-128v56,13,-17,127,55,120r0,35v-43,3,-67,-11,-70,-51v-3,-35,19,-95,-31,-87r0,-34v77,8,-26,-159,101,-138r0,34v-67,-13,-1,103,-55,121","w":120},"|":{"d":"40,27r0,-310r38,0r0,310r-38,0","w":118},"}":{"d":"80,-233v3,35,-20,96,31,88r0,34v-48,-10,-29,50,-31,87v-3,40,-27,54,-70,51r0,-35v17,1,31,0,31,-18v0,-40,-10,-95,24,-102v-35,-6,-24,-63,-24,-102v0,-18,-13,-20,-31,-19r0,-34v43,-3,67,10,70,50","w":120},"~":{"d":"156,-103v-14,12,-23,23,-45,23v-30,1,-56,-32,-79,-4r-24,-23v14,-13,24,-24,46,-24v29,0,58,32,79,5","w":164},"\u00c4":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-194r-22,107r44,0xm54,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm115,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":168},"\u00c5":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-347v24,0,38,15,38,37v0,23,-15,38,-38,38v-23,0,-37,-16,-37,-38v0,-21,15,-38,37,-37xm84,-194r-22,107r44,0xm84,-293v10,0,17,-7,17,-17v0,-10,-7,-17,-17,-17v-9,0,-16,8,-16,17v0,9,7,17,16,17","w":168},"\u00c7":{"d":"83,-33v19,-1,25,-15,25,-35r41,0v-3,43,-22,70,-66,71v-78,0,-62,-88,-68,-166v-6,-75,58,-124,113,-80v14,11,19,31,20,54r-40,0v-2,-18,-6,-34,-25,-34v-38,0,-28,49,-28,95v0,46,-9,88,28,95xm77,70r-27,0r22,-56r24,0","w":160},"\u00c9":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0xm87,-274r-27,0r26,-50r32,0","w":142},"\u00d1":{"d":"122,0r-60,-152r0,152r-40,0r0,-256r36,0r60,152r0,-152r40,0r0,256r-36,0xm41,-296v17,-24,47,-15,70,-6v8,0,10,-2,16,-8r17,17v-10,10,-17,17,-32,17v-20,0,-39,-24,-55,-4","w":179},"\u00d6":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm53,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm114,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":166},"\u00dc":{"d":"85,-33v15,0,26,-11,25,-28r0,-195r40,0r0,193v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28xm54,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm115,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":169},"\u00e1":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26xm81,-211r-26,0r26,-50r32,0"},"\u00e0":{"d":"68,-193v85,-3,50,116,57,193r-36,0r0,-16v-23,37,-86,15,-80,-39v5,-42,30,-59,78,-56v0,0,4,-48,-18,-48v-13,0,-19,10,-19,23r-38,0v1,-35,22,-56,56,-57xm67,-31v23,1,20,-29,20,-53v-25,-2,-40,5,-40,27v0,18,7,26,20,26xm61,-211r-31,-50r32,0r25,50r-26,0"},"\u00e2":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm91,-211r-21,-30r-21,30r-30,0r36,-50r30,0r36,50r-30,0xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26"},"\u00e4":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26xm39,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm100,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-19,-9,-19,-20v0,-11,8,-19,19,-19"},"\u00e3":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm20,-234v16,-24,48,-16,70,-5v8,-1,10,-3,16,-9r17,17v-17,24,-48,16,-70,5v-9,1,-10,3,-17,9xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26"},"\u00e5":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm70,-286v22,0,38,15,38,37v0,23,-15,38,-38,38v-23,0,-38,-15,-38,-38v0,-21,17,-37,38,-37xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26xm70,-232v10,0,16,-7,16,-17v0,-10,-7,-16,-16,-16v-9,0,-16,6,-16,16v0,10,6,17,16,17"},"\u00e7":{"d":"71,-31v12,0,20,-11,19,-25r38,0v-2,35,-18,59,-57,59v-52,0,-59,-45,-58,-98v-13,-73,42,-125,98,-84v12,9,16,26,17,45r-38,0v0,-13,-5,-25,-19,-25v-32,0,-19,63,-19,99v0,17,4,29,19,29xm68,70r-27,0r22,-56r24,0","w":138},"\u00e9":{"d":"71,-193v56,-1,60,52,58,109r-78,0v1,26,-2,53,21,53v14,0,17,-13,19,-25r38,0v-2,34,-20,59,-57,59v-61,0,-58,-63,-58,-123v0,-43,16,-72,57,-73xm91,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0xm82,-211r-27,0r26,-50r32,0","w":141},"\u00e8":{"d":"89,-193v56,-1,58,53,58,109r-79,0v1,26,-2,53,21,53v13,0,18,-11,19,-25r38,0v-1,35,-20,59,-57,59v-61,1,-58,-63,-58,-123v0,-44,17,-72,58,-73xm108,-112v5,-31,-12,-61,-34,-39v-5,9,-6,24,-6,39r40,0xm62,-211r-32,-50r32,0r26,50r-26,0"},"\u00ea":{"d":"71,-193v56,-1,60,52,58,109r-78,0v1,26,-2,53,21,53v14,0,17,-13,19,-25r38,0v-2,34,-20,59,-57,59v-61,0,-58,-63,-58,-123v0,-43,16,-72,57,-73xm93,-211r-21,-30r-22,30r-29,0r36,-50r30,0r35,50r-29,0xm91,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0","w":141},"\u00eb":{"d":"71,-193v56,-1,60,52,58,109r-78,0v1,26,-2,53,21,53v14,0,17,-13,19,-25r38,0v-2,34,-20,59,-57,59v-61,0,-58,-63,-58,-123v0,-43,16,-72,57,-73xm91,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0xm41,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm102,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19","w":141},"\u00ed":{"d":"19,0r0,-190r38,0r0,190r-38,0xm49,-211r-27,0r26,-50r32,0","w":75},"\u00ec":{"d":"19,0r0,-190r38,0r0,190r-38,0xm29,-211r-32,-50r33,0r25,50r-26,0","w":75},"\u00ee":{"d":"19,0r0,-190r38,0r0,190r-38,0xm59,-211r-21,-30r-21,30r-30,0r36,-50r30,0r36,50r-30,0","w":75},"\u00ef":{"d":"19,0r0,-190r38,0r0,190r-38,0xm68,-252v12,0,21,8,21,19v0,11,-10,20,-21,20v-11,0,-19,-9,-19,-20v0,-11,8,-19,19,-19xm8,-252v11,0,19,8,19,19v0,11,-8,20,-19,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19","w":75},"\u00f1":{"d":"55,-176v27,-33,77,-14,77,39r0,137r-38,0r0,-136v1,-13,-7,-22,-18,-22v-12,0,-19,9,-19,22r0,136r-38,0r0,-190r36,0r0,14xm26,-234v16,-24,48,-16,70,-5v8,-1,10,-3,16,-9r17,17v-17,24,-48,16,-70,5v-9,1,-10,3,-17,9","w":150},"\u00f3":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29xm82,-211r-27,0r26,-50r32,0","w":142},"\u00f2":{"d":"89,-193v51,0,58,44,58,98v0,53,-5,98,-58,98v-53,0,-59,-44,-59,-98v0,-54,7,-98,59,-98xm89,-31v32,0,19,-63,19,-99v0,-17,-4,-29,-19,-29v-33,0,-20,63,-20,99v0,17,5,29,20,29xm62,-211r-32,-50r32,0r26,50r-26,0"},"\u00f4":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29xm93,-211r-21,-30r-22,30r-29,0r36,-50r30,0r35,50r-29,0","w":142},"\u00f6":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29xm41,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm102,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19","w":142},"\u00f5":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29xm21,-234v17,-23,48,-16,70,-5v8,-1,10,-3,16,-9r17,17v-16,24,-48,16,-70,5v-9,1,-10,3,-17,9","w":142},"\u00fa":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22xm89,-211r-26,0r26,-50r32,0","w":150},"\u00f9":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22xm63,-211r-31,-50r32,0r26,50r-27,0","w":150},"\u00fb":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22xm97,-211r-22,-30r-21,30r-29,0r35,-50r30,0r36,50r-29,0","w":150},"\u00fc":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22xm44,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm105,-252v12,0,20,7,20,19v0,12,-9,20,-20,20v-11,0,-19,-9,-19,-20v0,-11,8,-19,19,-19","w":150},"\u00b0":{"d":"74,-261v36,0,58,24,58,58v0,34,-22,58,-58,58v-36,0,-59,-24,-59,-58v0,-34,23,-58,59,-58xm74,-178v14,0,25,-12,25,-25v0,-13,-11,-25,-25,-25v-14,0,-25,11,-25,25v0,14,11,25,25,25","w":147},"\u00a2":{"d":"130,-93v-2,29,-15,49,-42,54r0,39r-29,0r0,-39v-40,-5,-44,-46,-44,-92v0,-47,5,-86,44,-92r0,-33r29,0r0,33v27,3,40,27,42,55r-38,0v0,-13,-6,-23,-19,-23v-33,2,-16,59,-19,94v-1,17,5,26,19,27v12,0,20,-10,19,-23r38,0","w":141},"\u00a3":{"d":"126,-212v-15,-21,-51,-9,-51,22r0,44r28,0r0,29r-28,0r0,81r79,0r0,36r-120,0r0,-117r-22,0r0,-29r22,0v-20,-89,56,-144,120,-93","w":165},"\u00a7":{"d":"77,-223v-25,0,-23,38,-2,43v42,11,71,35,63,100v-3,21,-11,36,-27,43v44,22,24,108,-35,102v-35,-4,-57,-22,-58,-57r39,0v0,13,6,22,19,22v28,1,24,-39,2,-44v-43,-10,-68,-40,-61,-100v3,-22,11,-34,27,-42v-44,-21,-24,-104,33,-100v34,2,57,20,57,55r-38,0v1,-13,-8,-22,-19,-22xm77,-55v19,-1,23,-19,23,-42v0,-22,-2,-42,-23,-42v-20,0,-23,19,-23,42v0,21,3,42,23,42","w":154},"\u00b6":{"d":"13,-180v0,-48,12,-76,53,-76r132,0r0,323r-39,0r0,-287r-36,0r0,287r-38,0r0,-170v-54,4,-72,-22,-72,-77","w":216},"\u00df":{"d":"115,-142v36,22,31,133,-15,139v-8,1,-16,3,-24,3r0,-34v31,2,22,-41,22,-69v0,-14,-8,-23,-22,-22r0,-32v23,2,20,-25,20,-49v0,-11,-8,-19,-20,-19v-12,0,-20,9,-19,23r0,202r-38,0r0,-201v0,-39,21,-54,57,-58v62,-7,77,87,39,117","w":149},"\u00ae":{"d":"152,-258v78,0,130,52,130,130v0,78,-52,130,-130,130v-78,0,-130,-52,-130,-130v0,-78,52,-130,130,-130xm152,-21v64,0,105,-43,105,-107v0,-65,-41,-107,-105,-107v-64,0,-105,42,-105,107v0,65,40,107,105,107xm156,-199v42,-6,46,63,20,79r20,63r-24,0r-18,-57r-13,0r0,57r-23,0r0,-142r38,0xm141,-136v22,3,31,-6,27,-30v1,-13,-14,-11,-27,-11r0,41","w":303},"\u00a9":{"d":"152,-258v78,0,130,52,130,130v0,78,-52,130,-130,130v-78,0,-130,-52,-130,-130v0,-78,52,-130,130,-130xm152,-21v64,0,105,-43,105,-107v0,-65,-41,-107,-105,-107v-64,0,-105,42,-105,107v0,65,40,107,105,107xm153,-77v10,0,14,-8,13,-20r24,0v-1,24,-14,42,-37,42v-42,0,-38,-50,-38,-90v0,-44,33,-72,63,-46v7,7,11,18,11,32r-23,0v1,-12,-3,-21,-13,-20v-19,2,-15,28,-15,51v0,22,-5,49,15,51","w":303},"\u00b4":{"d":"82,-211r-27,0r26,-50r32,0"},"\u00a8":{"d":"41,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm102,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19"},"\u00c6":{"d":"122,0r0,-53r-57,0r-19,53r-44,0r94,-256r134,0r0,36r-68,0r0,73r58,0r0,36r-58,0r0,75r68,0r0,36r-108,0xm122,-220r-45,130r45,0r0,-130","w":243},"\u00d8":{"d":"135,-235v23,30,14,90,17,142v4,67,-38,114,-100,89r-7,20r-27,0r14,-37v-23,-29,-13,-90,-17,-142v-5,-68,37,-114,99,-89r8,-20r26,0xm83,-223v-43,0,-22,69,-28,123v0,7,1,13,2,18r44,-133v-4,-5,-10,-8,-18,-8xm83,-33v47,0,22,-83,27,-141r-44,133v4,5,9,8,17,8","w":164},"\u00b1":{"d":"100,-114r0,48r-36,0r0,-48r-48,0r0,-36r48,0r0,-48r36,0r0,48r49,0r0,36r-49,0xm16,-5r0,-36r133,0r0,36r-133,0","w":164},"\u00a5":{"d":"103,-147r22,0r0,29r-31,0v-3,10,-6,19,-5,32r36,0r0,29r-36,0r0,57r-38,0r0,-57r-36,0r0,-29r36,0v1,-13,-2,-22,-5,-32r-31,0r0,-29r22,0r-34,-109r42,0r25,101r25,-101r42,0","w":140},"\u00b5":{"d":"75,-31v11,0,19,-9,19,-22r0,-137r38,0r0,190r-37,0r0,-14v-7,10,-26,22,-40,14r0,67r-37,0r0,-257r38,0r0,137v0,12,8,22,19,22","w":151},"\u03bc":{"d":"75,-31v11,0,19,-9,19,-22r0,-137r38,0r0,190r-37,0r0,-14v-7,10,-26,22,-40,14r0,67r-37,0r0,-257r38,0r0,137v0,12,8,22,19,22","w":151},"\u00aa":{"d":"58,-258v66,-1,41,91,46,152r-29,0r0,-12v-21,26,-70,12,-66,-32v3,-32,25,-47,63,-44v-1,-16,4,-36,-14,-36v-11,0,-15,8,-15,18r-31,0v-1,-30,18,-46,46,-46xm57,-131v17,0,16,-22,15,-41v-32,-10,-43,38,-15,41","w":119},"\u00ba":{"d":"59,-258v43,0,48,34,48,77v1,43,-5,77,-48,77v-42,0,-47,-35,-47,-77v0,-42,5,-77,47,-77xm59,-131v24,-4,16,-45,16,-74v0,-12,-4,-27,-16,-25v-24,3,-15,46,-15,74v0,13,4,24,15,25","w":118},"\u00e6":{"d":"110,-180v49,-36,94,6,94,69r0,27r-78,0v1,25,-2,51,20,53v12,0,19,-12,20,-25r37,0v8,60,-80,78,-104,34v-19,42,-89,29,-89,-33v0,-44,30,-59,78,-56v0,-22,4,-50,-19,-48v-13,0,-18,10,-18,23r-38,0v-5,-51,66,-75,95,-40v1,-2,1,-3,2,-4xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26xm166,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0","w":216},"\u00f8":{"d":"71,-193v10,0,21,3,28,6r8,-19r25,0r-15,35v13,16,12,48,13,76v0,52,-6,100,-59,98v-11,0,-20,-2,-27,-6r-8,19r-26,0r15,-35v-12,-16,-11,-48,-12,-76v-2,-54,7,-99,58,-98xm85,-154v-36,-20,-33,24,-34,59r1,22xm58,-35v39,18,33,-32,34,-72v0,-4,-1,-7,-1,-9","w":141},"\u00bf":{"d":"73,35v16,0,23,-17,22,-35r38,0v0,42,-19,67,-60,69v-59,3,-76,-71,-49,-115v13,-21,35,-35,30,-72r38,0v10,61,-40,65,-42,118v-2,20,6,35,23,35xm73,-191v14,0,25,11,25,25v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25","w":153},"\u00a1":{"d":"23,67r0,-185r38,0r0,185r-38,0xm42,-191v14,0,25,11,25,25v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25","w":92},"\u00ac":{"d":"110,-51r0,-40r-92,0r0,-36r129,0r0,76r-37,0","w":164},"\u00ab":{"d":"9,-99r58,-90r0,57r-22,33r22,33r0,56xm75,-99r57,-90r0,57r-22,33r22,33r0,56","w":149},"\u00bb":{"d":"82,-10r0,-56r22,-33r-22,-33r0,-57r58,90xm17,-10r0,-56r22,-33r-22,-33r0,-57r58,90","w":149},"\u00a0":{"w":64},"\u00c0":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-194r-22,107r44,0xm74,-274r-31,-50r32,0r26,50r-27,0","w":168},"\u00c3":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm137,-293v-20,37,-64,-9,-87,13r-16,-16v17,-24,46,-16,70,-6v8,0,10,-2,16,-8xm84,-194r-22,107r44,0","w":168},"\u00d5":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm136,-293v-20,37,-64,-9,-87,13r-16,-16v17,-24,46,-16,70,-6v8,0,10,-2,16,-8","w":166},"\u00f7":{"d":"16,-82r0,-37r133,0r0,37r-133,0xm82,-192v14,0,26,12,26,25v0,13,-13,26,-26,26v-13,0,-25,-12,-25,-26v0,-14,11,-25,25,-25xm82,-60v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-11,-25,-25v0,-14,12,-26,25,-26","w":164},"\u00ff":{"d":"82,24v-6,33,-32,43,-70,43r0,-34v25,1,33,-13,37,-33r-48,-190r43,0r25,130r25,-130r42,0xm39,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-8,-20,-20v0,-12,8,-19,20,-19xm100,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19","w":137},"\u00a4":{"d":"165,-68v-3,42,-21,71,-65,71v-51,0,-67,-35,-68,-88r-20,0r0,-29r20,0r0,-29r-20,0r0,-29r20,0v-9,-72,62,-112,113,-71v14,11,19,31,20,54r-40,0v7,-37,-46,-47,-50,-10v-3,7,-2,18,-2,27r38,0r0,29r-39,0r0,29r39,0r0,29r-38,0v1,29,1,52,27,52v18,0,26,-15,25,-35r40,0","w":179},"\u00b7":{"d":"50,-139v19,0,31,12,31,31v0,44,-62,36,-62,0v0,-17,12,-31,31,-31","w":100},"\u00c2":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm106,-274r-22,-29r-21,29r-29,0r35,-50r30,0r36,50r-29,0xm84,-194r-22,107r44,0","w":168},"\u00ca":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0xm98,-274r-21,-29r-22,29r-29,0r36,-50r30,0r35,50r-29,0","w":142},"\u00c1":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-194r-22,107r44,0xm94,-274r-26,0r26,-50r32,0","w":168},"\u00cb":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0xm46,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm107,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":142},"\u00c8":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0xm66,-274r-31,-50r32,0r26,50r-27,0","w":142},"\u00cd":{"d":"22,0r0,-256r40,0r0,256r-40,0xm52,-274r-26,0r25,-50r33,0","w":83},"\u00ce":{"d":"22,0r0,-256r40,0r0,256r-40,0xm63,-274r-21,-29r-21,29r-30,0r36,-50r30,0r36,50r-30,0","w":83},"\u00cf":{"d":"22,0r0,-256r40,0r0,256r-40,0xm11,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm72,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-19,-9,-19,-20v0,-11,8,-20,19,-20","w":83},"\u00cc":{"d":"22,0r0,-256r40,0r0,256r-40,0xm32,-274r-32,-50r32,0r26,50r-26,0","w":83},"\u00d3":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm94,-274r-27,0r26,-50r32,0","w":166},"\u00d4":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm105,-274r-22,-29r-21,29r-29,0r35,-50r30,0r36,50r-29,0","w":166},"\u00d2":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm73,-274r-31,-50r32,0r26,50r-27,0","w":166},"\u00da":{"d":"85,-33v15,0,26,-11,25,-28r0,-195r40,0r0,193v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28xm96,-274r-27,0r26,-50r32,0","w":169},"\u00db":{"d":"85,-33v15,0,26,-11,25,-28r0,-195r40,0r0,193v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28xm107,-274r-22,-29r-21,29r-29,0r35,-50r30,0r36,50r-29,0","w":169},"\u00d9":{"d":"85,-33v15,0,26,-11,25,-28r0,-195r40,0r0,193v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28xm75,-274r-31,-50r32,0r26,50r-27,0","w":169},"\u00af":{"d":"28,-220r0,-25r88,0r0,25r-88,0"},"\u00b8":{"d":"68,70r-27,0r22,-56r24,0"},"\u00d0":{"d":"93,-256v78,-1,68,84,68,162v0,55,-14,93,-68,94r-65,0r0,-113r-19,0r0,-32r19,0r0,-111r65,0xm68,-36v62,7,53,-38,53,-93v0,-55,9,-99,-53,-91r0,75r25,0r0,32r-25,0r0,77","w":176},"\u00f0":{"d":"13,-87v0,-60,15,-107,69,-85r-10,-33r-27,0r0,-28r18,0r-8,-23r38,0r8,23r25,0r0,28r-17,0v20,56,53,206,-37,208v-50,1,-59,-40,-59,-90xm72,-31v23,-3,20,-29,20,-57v0,-27,5,-57,-20,-57v-26,0,-21,29,-21,57v0,28,-4,54,21,57","w":144}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * 2000 Albert-Jan Pool, published by Fontshop International for the FontFont
 * library.
 * 
 * Manufacturer:
 * Albert-Jan Pool, published by Fontshop International for the FontFont library
 */
Cufon.registerFont({"w":143,"face":{"font-family":"DINCondBoldAlternate","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 6 4 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"3","bbox":"-13 -347.042 282 70","underline-thickness":"27.72","underline-position":"-14.04","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":64},"\u00dd":{"d":"90,-100r0,100r-40,0r0,-100r-50,-156r45,0r25,101r25,-101r45,0xm80,-274r-26,0r26,-50r32,0","w":140},"\u00fd":{"d":"82,24v-6,33,-32,43,-70,43r0,-34v25,1,33,-13,37,-33r-48,-190r43,0r25,130r25,-130r42,0xm80,-211r-27,0r26,-50r32,0","w":137},"\u00de":{"d":"62,-208v62,-4,90,17,90,78v0,60,-27,84,-90,79r0,51r-40,0r0,-256r40,0r0,48xm62,-88v36,5,50,-8,50,-42v0,-33,-14,-46,-50,-41r0,83","w":165},"\u00fe":{"d":"88,-193v47,3,47,46,47,98v0,51,1,98,-47,98v-13,0,-25,-6,-31,-15r0,79r-38,0r0,-323r37,0r0,80v6,-9,18,-18,32,-17xm76,-31v26,0,20,-34,20,-64v0,-30,5,-61,-20,-64v-35,5,-19,69,-19,105v0,14,6,23,19,23","w":147},"\u00bd":{"d":"109,0r-29,0r88,-256r30,0xm225,-156v41,-3,51,42,32,71r-42,64r53,0r0,21r-83,0r0,-20v18,-33,47,-55,55,-99v1,-9,-7,-15,-15,-15v-14,-1,-15,12,-14,26r-28,0v-3,-33,14,-46,42,-48xm49,-103r0,-125r-27,17r0,-28v14,-9,27,-21,54,-17r0,153r-27,0","w":282},"\u00bc":{"d":"109,0r-29,0r88,-256r30,0xm258,-23r0,23r-28,0r0,-23r-52,0r0,-21r39,-110r27,0r-38,110r24,0r0,-25r28,0r0,25r12,0r0,21r-12,0xm49,-103r0,-125r-27,17r0,-28v14,-9,27,-21,54,-17r0,153r-27,0","w":282},"\u00b9":{"d":"49,-103r0,-125r-27,17r0,-28v14,-9,27,-21,54,-17r0,153r-27,0","w":114},"\u00be":{"d":"109,0r-29,0r88,-256r30,0xm81,-183v33,17,21,87,-25,82v-28,-3,-44,-14,-42,-45r27,0v-7,26,28,33,30,10v1,-21,2,-41,-24,-37r0,-20v21,3,25,-10,23,-32v-2,-17,-29,-15,-28,3r0,9r-27,0v-3,-32,14,-42,41,-45v44,-6,56,60,25,75xm258,-23r0,23r-28,0r0,-23r-53,0r0,-21r40,-110r27,0r-38,110r24,0r0,-25r28,0r0,25r12,0r0,21r-12,0","w":282},"\u00b3":{"d":"81,-183v33,17,21,87,-25,82v-28,-3,-44,-14,-42,-45r27,0v-7,26,28,33,30,10v1,-21,2,-41,-24,-37r0,-20v21,3,25,-10,23,-32v-2,-17,-29,-15,-28,3r0,9r-27,0v-3,-32,14,-42,41,-45v44,-6,56,60,25,75","w":114},"\u00b2":{"d":"57,-258v40,-2,52,41,32,70r-43,64r53,0r0,21r-83,0r0,-20r54,-84v4,-12,2,-30,-13,-30v-14,0,-16,12,-15,27r-27,0v-3,-34,13,-46,42,-48","w":114},"\u00a6":{"d":"40,-158r0,-124r38,0r0,124r-38,0xm40,26r0,-125r38,0r0,125r-38,0","w":118},"\u00d7":{"d":"124,-37r-42,-41r-41,41r-25,-24r42,-42r-42,-42r25,-24r41,41r42,-41r25,24r-42,42r42,42","w":164},"!":{"d":"31,-72r0,-184r38,0r0,184r-38,0xm50,-49v14,0,26,12,26,25v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25v0,-13,11,-25,25,-25","w":92},"\"":{"d":"26,-184r0,-72r37,0r0,72r-37,0xm95,-184r0,-72r36,0r0,72r-36,0","w":157},"#":{"d":"172,-154r-7,46r26,0r0,36r-32,0r-10,72r-40,0r11,-72r-39,0r-10,72r-40,0r10,-72r-24,0r0,-36r30,0r7,-46r-26,0r0,-36r31,0r10,-66r40,0r-10,66r39,0r9,-66r40,0r-10,66r25,0r0,36r-30,0xm94,-154r-7,46r38,0r7,-46r-38,0","w":218},"$":{"d":"80,-222v-34,0,-30,60,-3,67v40,10,70,27,70,84v0,42,-14,66,-49,72r0,40r-35,0r0,-40v-35,-6,-51,-27,-49,-70r40,0v-1,23,6,34,26,35v39,1,32,-70,2,-78v-37,-10,-69,-24,-66,-77v2,-38,17,-59,47,-67r0,-34r35,0r0,33v33,6,47,31,47,70r-41,0v1,-20,-4,-35,-24,-35","w":161},"%":{"d":"201,-131v48,0,49,43,46,91v-1,28,-19,41,-46,43v-46,1,-49,-43,-46,-91v1,-27,17,-43,46,-43xm63,-259v46,-2,45,43,45,91v0,29,-19,41,-45,43v-46,1,-48,-43,-46,-91v1,-28,19,-42,46,-43xm102,0r-29,0r89,-256r30,0xm63,-153v23,-1,11,-40,14,-62v1,-10,-5,-16,-14,-16v-25,0,-12,39,-15,62v-1,11,6,16,15,16xm201,-25v23,-1,11,-40,14,-62v1,-10,-5,-17,-14,-17v-24,0,-12,40,-15,63v-1,11,6,16,15,16","w":263},"&":{"d":"167,-135v-1,32,-9,60,-22,81r34,54r-40,0r-14,-23v-30,44,-118,27,-113,-40v3,-36,19,-55,38,-77v-13,-20,-27,-34,-27,-62v0,-35,19,-57,52,-57v34,0,50,21,51,54v1,34,-14,52,-32,70r30,48v5,-12,10,-31,11,-48r32,0xm69,-109v-35,20,-21,99,23,72v5,-3,9,-8,14,-15xm75,-165v16,-11,28,-55,0,-60v-30,4,-14,48,0,60","w":179},"'":{"d":"26,-184r0,-72r37,0r0,72r-37,0","w":88},"(":{"d":"55,-45v0,31,11,40,26,53r-26,26v-19,-19,-38,-38,-38,-77r2,-192v4,-26,22,-40,36,-55r26,25v-15,14,-26,23,-26,54r0,166","w":95},")":{"d":"41,-290v19,20,37,37,37,77r-1,191v-5,24,-21,41,-36,56r-26,-26v14,-13,25,-23,25,-53r0,-166v1,-30,-12,-40,-25,-54","w":95},"*":{"d":"121,-149r-34,-21r2,45r-28,0r2,-45r-34,21r-14,-23r36,-19r-36,-18r14,-24r34,21r-2,-45r28,0r-2,45r34,-21r14,24r-36,18r36,19","w":150},"+":{"d":"100,-86r0,49r-36,0r0,-49r-48,0r0,-36r48,0r0,-48r36,0r0,48r49,0r0,36r-49,0","w":164},",":{"d":"21,54r0,-99r41,0r0,68","w":82},"-":{"d":"17,-86r0,-36r73,0r0,36r-73,0","w":106},".":{"d":"42,-49v14,0,25,11,25,25v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25","w":84},"\/":{"d":"38,27r-36,0r67,-310r36,0","w":107},"0":{"d":"71,-217v75,0,55,92,57,162v0,38,-21,58,-57,58v-36,0,-57,-20,-57,-58v2,-70,-19,-162,57,-162xm71,-31v10,0,20,-10,19,-22r0,-108v0,-12,-8,-22,-19,-22v-10,0,-20,10,-19,22r0,108v0,12,8,22,19,22","w":141},"1":{"d":"53,0r0,-170r-38,29r0,-43r38,-31r38,0r0,215r-38,0","w":119},"2":{"d":"69,-216v64,-3,65,77,35,117r-49,65r72,0r0,34r-116,0r0,-32v24,-44,69,-66,76,-127v1,-13,-7,-23,-18,-23v-17,0,-21,17,-19,37r-38,0v-4,-46,16,-69,57,-71","w":139},"3":{"d":"104,-93v22,14,23,44,22,82v-1,36,-22,57,-58,57v-40,0,-61,-26,-57,-73r38,0v-2,20,2,39,19,39v21,0,20,-23,20,-45v1,-28,-2,-48,-33,-44r0,-32v34,7,33,-25,30,-55v0,-11,-7,-18,-17,-18v-18,0,-18,19,-17,38r-38,0v-4,-45,16,-72,55,-72v64,0,72,95,36,123","w":140},"4":{"d":"120,-11r0,55r-38,0r0,-55r-72,0r0,-34r66,-181r37,0r-63,181r32,0r0,-46r38,0r0,46r19,0r0,34r-19,0","w":149},"5":{"d":"83,-129v51,0,47,54,47,107v0,41,-19,66,-58,66v-40,0,-61,-24,-57,-70r38,0v0,20,-1,42,19,40v30,-2,19,-53,19,-83v0,-15,-5,-25,-19,-26v-15,0,-20,12,-19,28r-36,0r0,-148r110,0r0,34r-76,0r0,69v6,-9,18,-17,32,-17","w":142},"6":{"d":"65,-153v53,-19,68,38,62,97v-4,37,-21,58,-57,59v-67,3,-66,-90,-47,-141r45,-118r39,0xm70,-31v27,0,19,-43,19,-71v-1,-13,-6,-24,-19,-24v-27,0,-19,44,-19,71v0,15,6,24,19,24","w":140},"7":{"d":"64,41r-38,0r67,-222r-44,0r0,34r-37,0r0,-68r119,0r0,32","w":142},"8":{"d":"107,-134v39,28,33,145,-35,137v-68,9,-75,-108,-36,-137v-36,-29,-28,-132,35,-125v64,-8,73,96,36,125xm72,-31v26,-2,19,-38,19,-65v0,-12,-7,-22,-19,-22v-21,0,-20,23,-20,44v0,20,0,44,20,43xm72,-150v18,0,18,-20,18,-38v0,-17,0,-37,-18,-37v-24,0,-18,32,-18,56v0,11,6,19,18,19"},"9":{"d":"70,-216v69,0,66,90,47,141r-45,118r-39,0r42,-104v-51,20,-69,-37,-62,-97v4,-36,20,-58,57,-58xm70,-88v27,-1,19,-43,19,-70v0,-15,-5,-24,-19,-24v-28,1,-19,42,-19,70v0,13,4,25,19,24","w":140},":":{"d":"50,-157v14,0,26,12,26,25v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25v0,-13,11,-25,25,-25xm50,-49v14,0,26,12,26,25v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25v0,-13,11,-25,25,-25","w":92},";":{"d":"30,54r0,-99r41,0r0,68xm50,-157v14,0,26,12,26,25v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25v0,-13,11,-25,25,-25","w":92},"<":{"d":"75,-85r76,75r-49,0r-93,-93r93,-92r49,0r-76,74r167,0r0,36r-167,0","w":258},"=":{"d":"16,-117r0,-37r133,0r0,37r-133,0xm16,-52r0,-37r133,0r0,37r-133,0","w":164},">":{"d":"157,-10r-49,0r76,-75r-167,0r0,-36r167,0r-76,-74r49,0r93,92","w":258},"?":{"d":"80,-258v59,-4,78,70,49,114v-13,20,-35,35,-29,72r-38,0v-10,-60,39,-65,41,-118v2,-19,-6,-33,-22,-34v-17,0,-24,15,-23,34r-38,0v1,-41,18,-65,60,-68xm81,-49v14,0,25,12,25,25v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25v0,-13,12,-25,26,-25","w":153},"@":{"d":"76,-256v62,-2,123,-6,123,59r0,197r-36,0r0,-14v-25,32,-83,15,-77,-39v6,-54,-14,-127,45,-123v12,0,24,6,30,14v1,-31,2,-63,-30,-62v-36,2,-76,-8,-76,32r0,143v-1,14,4,19,11,26r-28,28v-39,-35,-17,-134,-21,-202v-3,-39,22,-58,59,-59xm143,-31v31,0,14,-58,18,-89v1,-13,-7,-23,-18,-23v-32,2,-15,58,-19,90v-1,13,8,22,19,22","w":218},"A":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-194r-22,107r44,0","w":168},"B":{"d":"125,-134v22,7,27,31,27,58v0,80,-56,79,-130,76r0,-256r64,0v73,-14,86,96,39,122xm62,-36v34,2,50,-4,50,-40v0,-35,-16,-43,-50,-40r0,80xm62,-150v31,2,49,-4,49,-35v0,-33,-18,-37,-49,-35r0,70","w":169},"C":{"d":"149,-68v-3,43,-22,70,-66,71v-78,0,-62,-88,-68,-166v-6,-75,58,-124,113,-80v14,11,19,31,20,54r-40,0v-2,-18,-6,-34,-25,-34v-38,0,-28,49,-28,95v0,46,-9,88,28,95v19,-1,25,-15,25,-35r41,0","w":160},"D":{"d":"87,-256v77,0,68,84,68,162v0,54,-15,94,-68,94r-65,0r0,-256r65,0xm62,-36v63,8,53,-39,53,-93v0,-53,10,-99,-53,-91r0,184","w":169},"E":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0","w":142},"F":{"d":"62,-220r0,73r58,0r0,36r-58,0r0,111r-40,0r0,-256r107,0r0,36r-67,0","w":140},"G":{"d":"149,-139v2,71,5,142,-66,142v-78,0,-62,-88,-68,-166v-6,-76,59,-124,114,-79v13,11,19,31,20,54r-41,0v0,-20,-6,-34,-25,-35v-37,7,-28,49,-28,95v0,46,-9,88,28,95v31,-1,24,-41,25,-73r-25,0r0,-33r66,0","w":163},"H":{"d":"112,0r0,-112r-50,0r0,112r-40,0r0,-256r40,0r0,108r50,0r0,-108r40,0r0,256r-40,0","w":173},"I":{"d":"22,0r0,-256r40,0r0,256r-40,0","w":83},"J":{"d":"121,-67v6,65,-79,91,-120,49r28,-27v14,22,51,11,51,-22r0,-189r41,0r0,189","w":140},"K":{"d":"123,0r-42,-105r-19,39r0,66r-40,0r0,-256r40,0r0,120r56,-120r40,0r-51,106r59,150r-43,0","w":168},"L":{"d":"22,0r0,-256r40,0r0,220r67,0r0,36r-107,0","w":137},"M":{"d":"153,0r0,-160r-35,105r-22,0r-34,-103r0,158r-40,0r0,-256r36,0r50,134r49,-134r37,0r0,256r-41,0","w":215},"N":{"d":"122,0r-60,-152r0,152r-40,0r0,-256r36,0r60,152r0,-152r40,0r0,256r-36,0","w":179},"O":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95","w":166},"P":{"d":"86,-256v50,1,65,26,66,77v1,60,-27,84,-90,79r0,100r-40,0r0,-256r64,0xm62,-136v35,5,50,-8,50,-42v0,-34,-14,-48,-50,-42r0,84","w":165},"Q":{"d":"151,-163v0,46,4,99,-10,131r21,18r-18,22r-21,-17v-11,8,-21,12,-40,12v-78,0,-68,-87,-68,-166v0,-55,14,-96,68,-96v54,0,68,41,68,96xm55,-128v0,47,-10,100,37,93r-14,-11r19,-23r11,9v5,-17,3,-46,3,-68v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95","w":166},"R":{"d":"152,-181v-2,34,-6,55,-30,67r38,114r-42,0r-33,-105r-23,0r0,105r-40,0r0,-256v73,-3,136,-5,130,75xm62,-141v34,4,50,-7,50,-40v0,-32,-16,-44,-50,-39r0,79","w":172},"S":{"d":"79,-222v-34,0,-30,60,-3,67v39,10,76,26,69,84v17,83,-108,98,-129,35v-2,-8,-3,-19,-3,-33r40,0v-1,23,6,33,26,35v34,4,34,-58,14,-71v-33,-21,-86,-23,-78,-84v-11,-75,106,-94,125,-30v3,9,4,20,4,32r-41,0v1,-20,-4,-35,-24,-35","w":159},"T":{"d":"91,-220r0,220r-41,0r0,-220r-42,0r0,-36r126,0r0,36r-43,0","w":141},"U":{"d":"150,-63v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28v15,0,26,-11,25,-28r0,-195r40,0r0,193","w":169},"V":{"d":"99,0r-41,0r-57,-256r45,0r32,194r34,-194r44,0","w":157},"W":{"d":"207,0r-42,0r-36,-195r-37,195r-42,0r-49,-256r45,0r25,194r35,-194r45,0r35,194r25,-194r45,0","w":257},"X":{"d":"107,0r-29,-92r-30,92r-44,0r51,-133r-47,-123r44,0r26,85r25,-85r45,0r-48,123r52,133r-45,0","w":155},"Y":{"d":"90,-100r0,100r-40,0r0,-100r-50,-156r45,0r25,101r25,-101r45,0","w":140},"Z":{"d":"11,0r0,-30r70,-190r-66,0r0,-36r108,0r0,30r-70,190r70,0r0,36r-112,0","w":134},"[":{"d":"19,27r0,-310r72,0r0,34r-34,0r0,242r34,0r0,34r-72,0","w":101},"\\":{"d":"69,27r-67,-310r36,0r67,310r-36,0","w":107},"]":{"d":"10,27r0,-34r34,0r0,-242r-34,0r0,-34r72,0r0,310r-72,0","w":101},"^":{"d":"113,-156r-29,-64r-30,64r-38,0r51,-102r33,0r50,102r-37,0","w":166},"_":{"d":"0,55r0,-28r165,0r0,28r-165,0","w":164},"`":{"d":"62,-211r-32,-50r32,0r26,50r-26,0"},"a":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26"},"b":{"d":"87,-193v48,3,47,45,47,98v-1,52,2,98,-47,98v-14,0,-25,-8,-32,-17r0,14r-36,0r0,-256r38,0r0,79v6,-9,16,-16,30,-16xm76,-31v32,0,19,-64,19,-99v0,-17,-5,-28,-19,-29v-35,5,-19,69,-19,105v0,14,6,23,19,23","w":146},"c":{"d":"128,-56v-2,35,-18,59,-57,59v-52,0,-59,-45,-58,-98v-13,-73,42,-125,98,-84v12,9,16,26,17,45r-38,0v0,-13,-5,-25,-19,-25v-32,0,-19,63,-19,99v0,17,4,29,19,29v12,0,20,-11,19,-25r38,0","w":138},"d":{"d":"60,-193v14,0,24,7,30,16r0,-79r38,0r0,256r-37,0r0,-14v-6,9,-18,17,-31,17v-49,0,-46,-46,-47,-98v0,-53,-1,-98,47,-98xm71,-31v36,-5,14,-70,19,-105v2,-14,-6,-23,-19,-23v-32,0,-19,64,-19,99v0,17,4,28,19,29","w":146},"e":{"d":"71,-193v56,-1,60,52,58,109r-78,0v1,26,-2,53,21,53v14,0,17,-13,19,-25r38,0v-2,34,-20,59,-57,59v-61,0,-58,-63,-58,-123v0,-43,16,-72,57,-73xm91,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0","w":141},"f":{"d":"64,-161r0,161r-38,0r0,-161r-19,0r0,-29r19,0v-3,-47,18,-70,65,-68r0,34v-22,0,-29,12,-27,34r27,0r0,29r-27,0","w":97},"g":{"d":"61,-193v14,0,24,7,30,16r0,-13r37,0r0,194v12,69,-90,87,-110,30v-2,-7,-4,-14,-4,-22r38,0v-1,15,6,24,19,24v26,1,18,-36,19,-62v-8,10,-13,14,-29,14v-46,-2,-48,-40,-48,-90v0,-51,2,-91,48,-91xm71,-45v34,0,19,-59,19,-91v0,-12,-6,-23,-19,-23v-30,0,-19,55,-19,88v0,16,5,26,19,26","w":146},"h":{"d":"57,-177v24,-32,86,-11,75,40r0,137r-38,0r0,-136v1,-13,-7,-22,-18,-22v-12,0,-19,9,-19,22r0,136r-38,0r0,-256r38,0r0,79","w":150},"i":{"d":"19,0r0,-185r38,0r0,185r-38,0xm38,-261v13,0,24,11,24,24v0,13,-11,25,-24,25v-13,0,-24,-12,-24,-25v0,-13,11,-24,24,-24","w":75},"j":{"d":"-7,32v19,0,25,-7,26,-25r0,-192r38,0v-3,73,7,158,-5,222v-10,19,-30,30,-59,30r0,-35xm38,-261v13,0,24,11,24,24v0,13,-11,25,-24,25v-13,0,-24,-12,-24,-25v0,-13,11,-24,24,-24","w":75},"k":{"d":"105,0r-32,-80r-16,26r0,54r-38,0r0,-256r38,0r0,147r48,-81r40,0r-47,76r49,114r-42,0","w":149},"l":{"d":"82,0v-41,0,-64,-16,-64,-58r0,-198r38,0r0,196v0,17,9,26,26,26r0,34","w":87},"m":{"d":"124,-173v23,-34,84,-23,84,36r0,137r-38,0r0,-136v1,-13,-7,-22,-19,-22v-11,0,-20,10,-19,22r0,136r-38,0r0,-136v1,-13,-7,-22,-18,-22v-12,0,-19,9,-19,22r0,136r-38,0r0,-190r36,0r0,14v14,-23,57,-20,69,3","w":226},"n":{"d":"55,-176v27,-33,77,-14,77,39r0,137r-38,0r0,-136v1,-13,-7,-22,-18,-22v-12,0,-19,9,-19,22r0,136r-38,0r0,-190r36,0r0,14","w":150},"o":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29","w":142},"p":{"d":"87,-193v48,2,47,45,47,98v0,53,1,96,-47,98v-13,0,-24,-6,-30,-15r0,79r-38,0r0,-257r36,0r0,14v7,-8,18,-17,32,-17xm76,-31v32,0,19,-64,19,-99v0,-17,-5,-28,-19,-29v-35,5,-19,69,-19,105v0,14,6,23,19,23","w":146},"q":{"d":"60,-193v14,0,25,8,31,17r0,-14r37,0r0,257r-38,0r0,-79v-6,9,-17,15,-30,15v-48,-2,-47,-45,-47,-98v0,-53,-1,-95,47,-98xm71,-31v36,-5,14,-70,19,-105v2,-14,-6,-23,-19,-23v-32,0,-19,64,-19,99v0,17,4,28,19,29","w":146},"r":{"d":"102,-156v-73,-9,-37,97,-45,156r-38,0r0,-190r36,0r0,20v10,-12,26,-23,47,-23r0,37","w":107},"s":{"d":"68,-159v-25,0,-23,34,-2,42v30,11,61,20,61,62v0,65,-94,77,-113,23v-3,-7,-4,-14,-4,-23r38,0v0,14,6,23,20,23v28,0,26,-39,2,-45v-27,-13,-59,-19,-59,-59v0,-62,89,-76,109,-25v3,7,5,15,5,25r-38,0v1,-14,-8,-23,-19,-23","w":137},"t":{"d":"91,0v-41,1,-65,-17,-65,-58r0,-103r-19,0r0,-29r19,0r0,-48r38,0r0,48r27,0r0,29r-27,0r0,101v0,17,9,26,27,26r0,34","w":98},"u":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22","w":150},"v":{"d":"89,0r-40,0r-48,-190r43,0r25,130r25,-130r42,0","w":137},"w":{"d":"164,0r-38,0r-23,-123r-22,123r-38,0r-42,-190r43,0r20,130r23,-130r33,0r24,130r19,-130r43,0","w":207},"x":{"d":"95,0r-25,-59r-25,59r-42,0r45,-96r-43,-94r43,0r22,58r23,-58r42,0r-43,94r46,96r-43,0","w":140},"y":{"d":"82,24v-6,33,-32,43,-70,43r0,-34v25,1,33,-13,37,-33r-48,-190r43,0r25,130r25,-130r42,0","w":137},"z":{"d":"9,0r0,-29r56,-127r-51,0r0,-34r94,0r0,29r-56,127r56,0r0,34r-99,0","w":117},"{":{"d":"56,-128v56,13,-17,127,55,120r0,35v-43,3,-67,-11,-70,-51v-3,-35,19,-95,-31,-87r0,-34v77,8,-26,-159,101,-138r0,34v-67,-13,-1,103,-55,121","w":120},"|":{"d":"40,27r0,-310r38,0r0,310r-38,0","w":118},"}":{"d":"80,-233v3,35,-20,96,31,88r0,34v-48,-10,-29,50,-31,87v-3,40,-27,54,-70,51r0,-35v17,1,31,0,31,-18v0,-40,-10,-95,24,-102v-35,-6,-24,-63,-24,-102v0,-18,-13,-20,-31,-19r0,-34v43,-3,67,10,70,50","w":120},"~":{"d":"156,-103v-14,12,-23,23,-45,23v-30,1,-56,-32,-79,-4r-24,-23v14,-13,24,-24,46,-24v29,0,58,32,79,5","w":164},"\u00c4":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-194r-22,107r44,0xm54,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm115,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":168},"\u00c5":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-347v24,0,38,15,38,37v0,23,-15,38,-38,38v-23,0,-37,-16,-37,-38v0,-21,15,-38,37,-37xm84,-194r-22,107r44,0xm84,-293v10,0,17,-7,17,-17v0,-10,-7,-17,-17,-17v-9,0,-16,8,-16,17v0,9,7,17,16,17","w":168},"\u00c7":{"d":"83,-33v19,-1,25,-15,25,-35r41,0v-3,43,-22,70,-66,71v-78,0,-62,-88,-68,-166v-6,-75,58,-124,113,-80v14,11,19,31,20,54r-40,0v-2,-18,-6,-34,-25,-34v-38,0,-28,49,-28,95v0,46,-9,88,28,95xm77,70r-27,0r22,-56r24,0","w":160},"\u00c9":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0xm87,-274r-27,0r26,-50r32,0","w":142},"\u00d1":{"d":"122,0r-60,-152r0,152r-40,0r0,-256r36,0r60,152r0,-152r40,0r0,256r-36,0xm41,-296v17,-24,47,-15,70,-6v8,0,10,-2,16,-8r17,17v-10,10,-17,17,-32,17v-20,0,-39,-24,-55,-4","w":179},"\u00d6":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm53,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm114,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":166},"\u00dc":{"d":"85,-33v15,0,26,-11,25,-28r0,-195r40,0r0,193v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28xm54,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm115,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":169},"\u00e1":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26xm81,-211r-26,0r26,-50r32,0"},"\u00e0":{"d":"68,-193v85,-3,50,116,57,193r-36,0r0,-16v-23,37,-86,15,-80,-39v5,-42,30,-59,78,-56v0,0,4,-48,-18,-48v-13,0,-19,10,-19,23r-38,0v1,-35,22,-56,56,-57xm67,-31v23,1,20,-29,20,-53v-25,-2,-40,5,-40,27v0,18,7,26,20,26xm61,-211r-31,-50r32,0r25,50r-26,0"},"\u00e2":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm91,-211r-21,-30r-21,30r-30,0r36,-50r30,0r36,50r-30,0xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26"},"\u00e4":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26xm39,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm100,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-19,-9,-19,-20v0,-11,8,-19,19,-19"},"\u00e3":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm20,-234v16,-24,48,-16,70,-5v8,-1,10,-3,16,-9r17,17v-17,24,-48,16,-70,5v-9,1,-10,3,-17,9xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26"},"\u00e5":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm70,-286v22,0,38,15,38,37v0,23,-15,38,-38,38v-23,0,-38,-15,-38,-38v0,-21,17,-37,38,-37xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26xm70,-232v10,0,16,-7,16,-17v0,-10,-7,-16,-16,-16v-9,0,-16,6,-16,16v0,10,6,17,16,17"},"\u00e7":{"d":"71,-31v12,0,20,-11,19,-25r38,0v-2,35,-18,59,-57,59v-52,0,-59,-45,-58,-98v-13,-73,42,-125,98,-84v12,9,16,26,17,45r-38,0v0,-13,-5,-25,-19,-25v-32,0,-19,63,-19,99v0,17,4,29,19,29xm68,70r-27,0r22,-56r24,0","w":138},"\u00e9":{"d":"71,-193v56,-1,60,52,58,109r-78,0v1,26,-2,53,21,53v14,0,17,-13,19,-25r38,0v-2,34,-20,59,-57,59v-61,0,-58,-63,-58,-123v0,-43,16,-72,57,-73xm91,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0xm82,-211r-27,0r26,-50r32,0","w":141},"\u00e8":{"d":"89,-193v56,-1,58,53,58,109r-79,0v1,26,-2,53,21,53v13,0,18,-11,19,-25r38,0v-1,35,-20,59,-57,59v-61,1,-58,-63,-58,-123v0,-44,17,-72,58,-73xm108,-112v5,-31,-12,-61,-34,-39v-5,9,-6,24,-6,39r40,0xm62,-211r-32,-50r32,0r26,50r-26,0"},"\u00ea":{"d":"71,-193v56,-1,60,52,58,109r-78,0v1,26,-2,53,21,53v14,0,17,-13,19,-25r38,0v-2,34,-20,59,-57,59v-61,0,-58,-63,-58,-123v0,-43,16,-72,57,-73xm93,-211r-21,-30r-22,30r-29,0r36,-50r30,0r35,50r-29,0xm91,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0","w":141},"\u00eb":{"d":"71,-193v56,-1,60,52,58,109r-78,0v1,26,-2,53,21,53v14,0,17,-13,19,-25r38,0v-2,34,-20,59,-57,59v-61,0,-58,-63,-58,-123v0,-43,16,-72,57,-73xm91,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0xm41,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm102,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19","w":141},"\u00ed":{"d":"19,0r0,-190r38,0r0,190r-38,0xm49,-211r-27,0r26,-50r32,0","w":75},"\u00ec":{"d":"19,0r0,-190r38,0r0,190r-38,0xm29,-211r-32,-50r33,0r25,50r-26,0","w":75},"\u00ee":{"d":"19,0r0,-190r38,0r0,190r-38,0xm59,-211r-21,-30r-21,30r-30,0r36,-50r30,0r36,50r-30,0","w":75},"\u00ef":{"d":"19,0r0,-190r38,0r0,190r-38,0xm68,-252v12,0,21,8,21,19v0,11,-10,20,-21,20v-11,0,-19,-9,-19,-20v0,-11,8,-19,19,-19xm8,-252v11,0,19,8,19,19v0,11,-8,20,-19,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19","w":75},"\u00f1":{"d":"55,-176v27,-33,77,-14,77,39r0,137r-38,0r0,-136v1,-13,-7,-22,-18,-22v-12,0,-19,9,-19,22r0,136r-38,0r0,-190r36,0r0,14xm26,-234v16,-24,48,-16,70,-5v8,-1,10,-3,16,-9r17,17v-17,24,-48,16,-70,5v-9,1,-10,3,-17,9","w":150},"\u00f3":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29xm82,-211r-27,0r26,-50r32,0","w":142},"\u00f2":{"d":"89,-193v51,0,58,44,58,98v0,53,-5,98,-58,98v-53,0,-59,-44,-59,-98v0,-54,7,-98,59,-98xm89,-31v32,0,19,-63,19,-99v0,-17,-4,-29,-19,-29v-33,0,-20,63,-20,99v0,17,5,29,20,29xm62,-211r-32,-50r32,0r26,50r-26,0"},"\u00f4":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29xm93,-211r-21,-30r-22,30r-29,0r36,-50r30,0r35,50r-29,0","w":142},"\u00f6":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29xm41,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm102,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19","w":142},"\u00f5":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29xm21,-234v17,-23,48,-16,70,-5v8,-1,10,-3,16,-9r17,17v-16,24,-48,16,-70,5v-9,1,-10,3,-17,9","w":142},"\u00fa":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22xm89,-211r-26,0r26,-50r32,0","w":150},"\u00f9":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22xm63,-211r-31,-50r32,0r26,50r-27,0","w":150},"\u00fb":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22xm97,-211r-22,-30r-21,30r-29,0r35,-50r30,0r36,50r-29,0","w":150},"\u00fc":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22xm44,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm105,-252v12,0,20,7,20,19v0,12,-9,20,-20,20v-11,0,-19,-9,-19,-20v0,-11,8,-19,19,-19","w":150},"\u00b0":{"d":"74,-261v36,0,58,24,58,58v0,34,-22,58,-58,58v-36,0,-59,-24,-59,-58v0,-34,23,-58,59,-58xm74,-178v14,0,25,-12,25,-25v0,-13,-11,-25,-25,-25v-14,0,-25,11,-25,25v0,14,11,25,25,25","w":147},"\u00a2":{"d":"130,-93v-2,29,-15,49,-42,54r0,39r-29,0r0,-39v-40,-5,-44,-46,-44,-92v0,-47,5,-86,44,-92r0,-33r29,0r0,33v27,3,40,27,42,55r-38,0v0,-13,-6,-23,-19,-23v-33,2,-16,59,-19,94v-1,17,5,26,19,27v12,0,20,-10,19,-23r38,0","w":141},"\u00a3":{"d":"126,-212v-15,-21,-51,-9,-51,22r0,44r28,0r0,29r-28,0r0,81r79,0r0,36r-120,0r0,-117r-22,0r0,-29r22,0v-20,-89,56,-144,120,-93","w":165},"\u00a7":{"d":"77,-223v-25,0,-23,38,-2,43v42,11,71,35,63,100v-3,21,-11,36,-27,43v44,22,24,108,-35,102v-35,-4,-57,-22,-58,-57r39,0v0,13,6,22,19,22v28,1,24,-39,2,-44v-43,-10,-68,-40,-61,-100v3,-22,11,-34,27,-42v-44,-21,-24,-104,33,-100v34,2,57,20,57,55r-38,0v1,-13,-8,-22,-19,-22xm77,-55v19,-1,23,-19,23,-42v0,-22,-2,-42,-23,-42v-20,0,-23,19,-23,42v0,21,3,42,23,42","w":154},"\u00b6":{"d":"13,-180v0,-48,12,-76,53,-76r132,0r0,323r-39,0r0,-287r-36,0r0,287r-38,0r0,-170v-54,4,-72,-22,-72,-77","w":216},"\u00df":{"d":"115,-142v36,22,31,133,-15,139v-8,1,-16,3,-24,3r0,-34v31,2,22,-41,22,-69v0,-14,-8,-23,-22,-22r0,-32v23,2,20,-25,20,-49v0,-11,-8,-19,-20,-19v-12,0,-20,9,-19,23r0,202r-38,0r0,-201v0,-39,21,-54,57,-58v62,-7,77,87,39,117","w":149},"\u00ae":{"d":"152,-258v78,0,130,52,130,130v0,78,-52,130,-130,130v-78,0,-130,-52,-130,-130v0,-78,52,-130,130,-130xm152,-21v64,0,105,-43,105,-107v0,-65,-41,-107,-105,-107v-64,0,-105,42,-105,107v0,65,40,107,105,107xm156,-199v42,-6,46,63,20,79r20,63r-24,0r-18,-57r-13,0r0,57r-23,0r0,-142r38,0xm141,-136v22,3,31,-6,27,-30v1,-13,-14,-11,-27,-11r0,41","w":303},"\u00a9":{"d":"152,-258v78,0,130,52,130,130v0,78,-52,130,-130,130v-78,0,-130,-52,-130,-130v0,-78,52,-130,130,-130xm152,-21v64,0,105,-43,105,-107v0,-65,-41,-107,-105,-107v-64,0,-105,42,-105,107v0,65,40,107,105,107xm153,-77v10,0,14,-8,13,-20r24,0v-1,24,-14,42,-37,42v-42,0,-38,-50,-38,-90v0,-44,33,-72,63,-46v7,7,11,18,11,32r-23,0v1,-12,-3,-21,-13,-20v-19,2,-15,28,-15,51v0,22,-5,49,15,51","w":303},"\u00b4":{"d":"82,-211r-27,0r26,-50r32,0"},"\u00a8":{"d":"41,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm102,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19"},"\u00c6":{"d":"122,0r0,-53r-57,0r-19,53r-44,0r94,-256r134,0r0,36r-68,0r0,73r58,0r0,36r-58,0r0,75r68,0r0,36r-108,0xm122,-220r-45,130r45,0r0,-130","w":243},"\u00d8":{"d":"135,-235v23,30,14,90,17,142v4,67,-38,114,-100,89r-7,20r-27,0r14,-37v-23,-29,-13,-90,-17,-142v-5,-68,37,-114,99,-89r8,-20r26,0xm83,-223v-43,0,-22,69,-28,123v0,7,1,13,2,18r44,-133v-4,-5,-10,-8,-18,-8xm83,-33v47,0,22,-83,27,-141r-44,133v4,5,9,8,17,8","w":164},"\u00b1":{"d":"100,-114r0,48r-36,0r0,-48r-48,0r0,-36r48,0r0,-48r36,0r0,48r49,0r0,36r-49,0xm16,-5r0,-36r133,0r0,36r-133,0","w":164},"\u00a5":{"d":"103,-147r22,0r0,29r-31,0v-3,10,-6,19,-5,32r36,0r0,29r-36,0r0,57r-38,0r0,-57r-36,0r0,-29r36,0v1,-13,-2,-22,-5,-32r-31,0r0,-29r22,0r-34,-109r42,0r25,101r25,-101r42,0","w":140},"\u00b5":{"d":"75,-31v11,0,19,-9,19,-22r0,-137r38,0r0,190r-37,0r0,-14v-7,10,-26,22,-40,14r0,67r-37,0r0,-257r38,0r0,137v0,12,8,22,19,22","w":151},"\u03bc":{"d":"75,-31v11,0,19,-9,19,-22r0,-137r38,0r0,190r-37,0r0,-14v-7,10,-26,22,-40,14r0,67r-37,0r0,-257r38,0r0,137v0,12,8,22,19,22","w":151},"\u00aa":{"d":"58,-258v66,-1,41,91,46,152r-29,0r0,-12v-21,26,-70,12,-66,-32v3,-32,25,-47,63,-44v-1,-16,4,-36,-14,-36v-11,0,-15,8,-15,18r-31,0v-1,-30,18,-46,46,-46xm57,-131v17,0,16,-22,15,-41v-32,-10,-43,38,-15,41","w":119},"\u00ba":{"d":"59,-258v43,0,48,34,48,77v1,43,-5,77,-48,77v-42,0,-47,-35,-47,-77v0,-42,5,-77,47,-77xm59,-131v24,-4,16,-45,16,-74v0,-12,-4,-27,-16,-25v-24,3,-15,46,-15,74v0,13,4,24,15,25","w":118},"\u00e6":{"d":"110,-180v49,-36,94,6,94,69r0,27r-78,0v1,25,-2,51,20,53v12,0,19,-12,20,-25r37,0v8,60,-80,78,-104,34v-19,42,-89,29,-89,-33v0,-44,30,-59,78,-56v0,-22,4,-50,-19,-48v-13,0,-18,10,-18,23r-38,0v-5,-51,66,-75,95,-40v1,-2,1,-3,2,-4xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26xm166,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0","w":216},"\u00f8":{"d":"71,-193v10,0,21,3,28,6r8,-19r25,0r-15,35v13,16,12,48,13,76v0,52,-6,100,-59,98v-11,0,-20,-2,-27,-6r-8,19r-26,0r15,-35v-12,-16,-11,-48,-12,-76v-2,-54,7,-99,58,-98xm85,-154v-36,-20,-33,24,-34,59r1,22xm58,-35v39,18,33,-32,34,-72v0,-4,-1,-7,-1,-9","w":141},"\u00bf":{"d":"73,35v16,0,23,-17,22,-35r38,0v0,42,-19,67,-60,69v-59,3,-76,-71,-49,-115v13,-21,35,-35,30,-72r38,0v10,61,-40,65,-42,118v-2,20,6,35,23,35xm73,-191v14,0,25,11,25,25v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25","w":153},"\u00a1":{"d":"23,67r0,-185r38,0r0,185r-38,0xm42,-191v14,0,25,11,25,25v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25","w":92},"\u00ac":{"d":"110,-51r0,-40r-92,0r0,-36r129,0r0,76r-37,0","w":164},"\u00ab":{"d":"9,-99r58,-90r0,57r-22,33r22,33r0,56xm75,-99r57,-90r0,57r-22,33r22,33r0,56","w":149},"\u00bb":{"d":"82,-10r0,-56r22,-33r-22,-33r0,-57r58,90xm17,-10r0,-56r22,-33r-22,-33r0,-57r58,90","w":149},"\u00a0":{"w":64},"\u00c0":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-194r-22,107r44,0xm74,-274r-31,-50r32,0r26,50r-27,0","w":168},"\u00c3":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm137,-293v-20,37,-64,-9,-87,13r-16,-16v17,-24,46,-16,70,-6v8,0,10,-2,16,-8xm84,-194r-22,107r44,0","w":168},"\u00d5":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm136,-293v-20,37,-64,-9,-87,13r-16,-16v17,-24,46,-16,70,-6v8,0,10,-2,16,-8","w":166},"\u00f7":{"d":"16,-82r0,-37r133,0r0,37r-133,0xm82,-192v14,0,26,12,26,25v0,13,-13,26,-26,26v-13,0,-25,-12,-25,-26v0,-14,11,-25,25,-25xm82,-60v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-11,-25,-25v0,-14,12,-26,25,-26","w":164},"\u00ff":{"d":"82,24v-6,33,-32,43,-70,43r0,-34v25,1,33,-13,37,-33r-48,-190r43,0r25,130r25,-130r42,0xm39,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-8,-20,-20v0,-12,8,-19,20,-19xm100,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19","w":137},"\u00a4":{"d":"165,-68v-3,42,-21,71,-65,71v-51,0,-67,-35,-68,-88r-20,0r0,-29r20,0r0,-29r-20,0r0,-29r20,0v-9,-72,62,-112,113,-71v14,11,19,31,20,54r-40,0v7,-37,-46,-47,-50,-10v-3,7,-2,18,-2,27r38,0r0,29r-39,0r0,29r39,0r0,29r-38,0v1,29,1,52,27,52v18,0,26,-15,25,-35r40,0","w":179},"\u00b7":{"d":"50,-139v19,0,31,12,31,31v0,44,-62,36,-62,0v0,-17,12,-31,31,-31","w":100},"\u00c2":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm106,-274r-22,-29r-21,29r-29,0r35,-50r30,0r36,50r-29,0xm84,-194r-22,107r44,0","w":168},"\u00ca":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0xm98,-274r-21,-29r-22,29r-29,0r36,-50r30,0r35,50r-29,0","w":142},"\u00c1":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-194r-22,107r44,0xm94,-274r-26,0r26,-50r32,0","w":168},"\u00cb":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0xm46,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm107,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":142},"\u00c8":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0xm66,-274r-31,-50r32,0r26,50r-27,0","w":142},"\u00cd":{"d":"22,0r0,-256r40,0r0,256r-40,0xm52,-274r-26,0r25,-50r33,0","w":83},"\u00ce":{"d":"22,0r0,-256r40,0r0,256r-40,0xm63,-274r-21,-29r-21,29r-30,0r36,-50r30,0r36,50r-30,0","w":83},"\u00cf":{"d":"22,0r0,-256r40,0r0,256r-40,0xm11,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm72,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-19,-9,-19,-20v0,-11,8,-20,19,-20","w":83},"\u00cc":{"d":"22,0r0,-256r40,0r0,256r-40,0xm32,-274r-32,-50r32,0r26,50r-26,0","w":83},"\u00d3":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm94,-274r-27,0r26,-50r32,0","w":166},"\u00d4":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm105,-274r-22,-29r-21,29r-29,0r35,-50r30,0r36,50r-29,0","w":166},"\u00d2":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm73,-274r-31,-50r32,0r26,50r-27,0","w":166},"\u00da":{"d":"85,-33v15,0,26,-11,25,-28r0,-195r40,0r0,193v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28xm96,-274r-27,0r26,-50r32,0","w":169},"\u00db":{"d":"85,-33v15,0,26,-11,25,-28r0,-195r40,0r0,193v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28xm107,-274r-22,-29r-21,29r-29,0r35,-50r30,0r36,50r-29,0","w":169},"\u00d9":{"d":"85,-33v15,0,26,-11,25,-28r0,-195r40,0r0,193v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28xm75,-274r-31,-50r32,0r26,50r-27,0","w":169},"\u00af":{"d":"28,-220r0,-25r88,0r0,25r-88,0"},"\u00b8":{"d":"68,70r-27,0r22,-56r24,0"},"\u00d0":{"d":"93,-256v78,-1,68,84,68,162v0,55,-14,93,-68,94r-65,0r0,-113r-19,0r0,-32r19,0r0,-111r65,0xm68,-36v62,7,53,-38,53,-93v0,-55,9,-99,-53,-91r0,75r25,0r0,32r-25,0r0,77","w":176},"\u00f0":{"d":"13,-87v0,-60,15,-107,69,-85r-10,-33r-27,0r0,-28r18,0r-8,-23r38,0r8,23r25,0r0,28r-17,0v20,56,53,206,-37,208v-50,1,-59,-40,-59,-90xm72,-31v23,-3,20,-29,20,-57v0,-27,5,-57,-20,-57v-26,0,-21,29,-21,57v0,28,-4,54,21,57","w":144}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * 2000 Albert-Jan Pool, published by Fontshop International for the FontFont
 * library.
 * 
 * Manufacturer:
 * Albert-Jan Pool, published by Fontshop International for the FontFont library
 */
Cufon.registerFont({"w":143,"face":{"font-family":"DINCondBoldAlternate","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 6 4 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"3","bbox":"-13 -347.042 282 70","underline-thickness":"27.72","underline-position":"-14.04","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":64},"\u00dd":{"d":"90,-100r0,100r-40,0r0,-100r-50,-156r45,0r25,101r25,-101r45,0xm80,-274r-26,0r26,-50r32,0","w":140},"\u00fd":{"d":"82,24v-6,33,-32,43,-70,43r0,-34v25,1,33,-13,37,-33r-48,-190r43,0r25,130r25,-130r42,0xm80,-211r-27,0r26,-50r32,0","w":137},"\u00de":{"d":"62,-208v62,-4,90,17,90,78v0,60,-27,84,-90,79r0,51r-40,0r0,-256r40,0r0,48xm62,-88v36,5,50,-8,50,-42v0,-33,-14,-46,-50,-41r0,83","w":165},"\u00fe":{"d":"88,-193v47,3,47,46,47,98v0,51,1,98,-47,98v-13,0,-25,-6,-31,-15r0,79r-38,0r0,-323r37,0r0,80v6,-9,18,-18,32,-17xm76,-31v26,0,20,-34,20,-64v0,-30,5,-61,-20,-64v-35,5,-19,69,-19,105v0,14,6,23,19,23","w":147},"\u00bd":{"d":"109,0r-29,0r88,-256r30,0xm225,-156v41,-3,51,42,32,71r-42,64r53,0r0,21r-83,0r0,-20v18,-33,47,-55,55,-99v1,-9,-7,-15,-15,-15v-14,-1,-15,12,-14,26r-28,0v-3,-33,14,-46,42,-48xm49,-103r0,-125r-27,17r0,-28v14,-9,27,-21,54,-17r0,153r-27,0","w":282},"\u00bc":{"d":"109,0r-29,0r88,-256r30,0xm258,-23r0,23r-28,0r0,-23r-52,0r0,-21r39,-110r27,0r-38,110r24,0r0,-25r28,0r0,25r12,0r0,21r-12,0xm49,-103r0,-125r-27,17r0,-28v14,-9,27,-21,54,-17r0,153r-27,0","w":282},"\u00b9":{"d":"49,-103r0,-125r-27,17r0,-28v14,-9,27,-21,54,-17r0,153r-27,0","w":114},"\u00be":{"d":"109,0r-29,0r88,-256r30,0xm81,-183v33,17,21,87,-25,82v-28,-3,-44,-14,-42,-45r27,0v-7,26,28,33,30,10v1,-21,2,-41,-24,-37r0,-20v21,3,25,-10,23,-32v-2,-17,-29,-15,-28,3r0,9r-27,0v-3,-32,14,-42,41,-45v44,-6,56,60,25,75xm258,-23r0,23r-28,0r0,-23r-53,0r0,-21r40,-110r27,0r-38,110r24,0r0,-25r28,0r0,25r12,0r0,21r-12,0","w":282},"\u00b3":{"d":"81,-183v33,17,21,87,-25,82v-28,-3,-44,-14,-42,-45r27,0v-7,26,28,33,30,10v1,-21,2,-41,-24,-37r0,-20v21,3,25,-10,23,-32v-2,-17,-29,-15,-28,3r0,9r-27,0v-3,-32,14,-42,41,-45v44,-6,56,60,25,75","w":114},"\u00b2":{"d":"57,-258v40,-2,52,41,32,70r-43,64r53,0r0,21r-83,0r0,-20r54,-84v4,-12,2,-30,-13,-30v-14,0,-16,12,-15,27r-27,0v-3,-34,13,-46,42,-48","w":114},"\u00a6":{"d":"40,-158r0,-124r38,0r0,124r-38,0xm40,26r0,-125r38,0r0,125r-38,0","w":118},"\u00d7":{"d":"124,-37r-42,-41r-41,41r-25,-24r42,-42r-42,-42r25,-24r41,41r42,-41r25,24r-42,42r42,42","w":164},"!":{"d":"31,-72r0,-184r38,0r0,184r-38,0xm50,-49v14,0,26,12,26,25v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25v0,-13,11,-25,25,-25","w":92},"\"":{"d":"26,-184r0,-72r37,0r0,72r-37,0xm95,-184r0,-72r36,0r0,72r-36,0","w":157},"#":{"d":"172,-154r-7,46r26,0r0,36r-32,0r-10,72r-40,0r11,-72r-39,0r-10,72r-40,0r10,-72r-24,0r0,-36r30,0r7,-46r-26,0r0,-36r31,0r10,-66r40,0r-10,66r39,0r9,-66r40,0r-10,66r25,0r0,36r-30,0xm94,-154r-7,46r38,0r7,-46r-38,0","w":218},"$":{"d":"80,-222v-34,0,-30,60,-3,67v40,10,70,27,70,84v0,42,-14,66,-49,72r0,40r-35,0r0,-40v-35,-6,-51,-27,-49,-70r40,0v-1,23,6,34,26,35v39,1,32,-70,2,-78v-37,-10,-69,-24,-66,-77v2,-38,17,-59,47,-67r0,-34r35,0r0,33v33,6,47,31,47,70r-41,0v1,-20,-4,-35,-24,-35","w":161},"%":{"d":"201,-131v48,0,49,43,46,91v-1,28,-19,41,-46,43v-46,1,-49,-43,-46,-91v1,-27,17,-43,46,-43xm63,-259v46,-2,45,43,45,91v0,29,-19,41,-45,43v-46,1,-48,-43,-46,-91v1,-28,19,-42,46,-43xm102,0r-29,0r89,-256r30,0xm63,-153v23,-1,11,-40,14,-62v1,-10,-5,-16,-14,-16v-25,0,-12,39,-15,62v-1,11,6,16,15,16xm201,-25v23,-1,11,-40,14,-62v1,-10,-5,-17,-14,-17v-24,0,-12,40,-15,63v-1,11,6,16,15,16","w":263},"&":{"d":"167,-135v-1,32,-9,60,-22,81r34,54r-40,0r-14,-23v-30,44,-118,27,-113,-40v3,-36,19,-55,38,-77v-13,-20,-27,-34,-27,-62v0,-35,19,-57,52,-57v34,0,50,21,51,54v1,34,-14,52,-32,70r30,48v5,-12,10,-31,11,-48r32,0xm69,-109v-35,20,-21,99,23,72v5,-3,9,-8,14,-15xm75,-165v16,-11,28,-55,0,-60v-30,4,-14,48,0,60","w":179},"'":{"d":"26,-184r0,-72r37,0r0,72r-37,0","w":88},"(":{"d":"55,-45v0,31,11,40,26,53r-26,26v-19,-19,-38,-38,-38,-77r2,-192v4,-26,22,-40,36,-55r26,25v-15,14,-26,23,-26,54r0,166","w":95},")":{"d":"41,-290v19,20,37,37,37,77r-1,191v-5,24,-21,41,-36,56r-26,-26v14,-13,25,-23,25,-53r0,-166v1,-30,-12,-40,-25,-54","w":95},"*":{"d":"121,-149r-34,-21r2,45r-28,0r2,-45r-34,21r-14,-23r36,-19r-36,-18r14,-24r34,21r-2,-45r28,0r-2,45r34,-21r14,24r-36,18r36,19","w":150},"+":{"d":"100,-86r0,49r-36,0r0,-49r-48,0r0,-36r48,0r0,-48r36,0r0,48r49,0r0,36r-49,0","w":164},",":{"d":"21,54r0,-99r41,0r0,68","w":82},"-":{"d":"17,-86r0,-36r73,0r0,36r-73,0","w":106},".":{"d":"42,-49v14,0,25,11,25,25v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25","w":84},"\/":{"d":"38,27r-36,0r67,-310r36,0","w":107},"0":{"d":"71,-217v75,0,55,92,57,162v0,38,-21,58,-57,58v-36,0,-57,-20,-57,-58v2,-70,-19,-162,57,-162xm71,-31v10,0,20,-10,19,-22r0,-108v0,-12,-8,-22,-19,-22v-10,0,-20,10,-19,22r0,108v0,12,8,22,19,22","w":141},"1":{"d":"53,0r0,-170r-38,29r0,-43r38,-31r38,0r0,215r-38,0","w":119},"2":{"d":"69,-216v64,-3,65,77,35,117r-49,65r72,0r0,34r-116,0r0,-32v24,-44,69,-66,76,-127v1,-13,-7,-23,-18,-23v-17,0,-21,17,-19,37r-38,0v-4,-46,16,-69,57,-71","w":139},"3":{"d":"104,-93v22,14,23,44,22,82v-1,36,-22,57,-58,57v-40,0,-61,-26,-57,-73r38,0v-2,20,2,39,19,39v21,0,20,-23,20,-45v1,-28,-2,-48,-33,-44r0,-32v34,7,33,-25,30,-55v0,-11,-7,-18,-17,-18v-18,0,-18,19,-17,38r-38,0v-4,-45,16,-72,55,-72v64,0,72,95,36,123","w":140},"4":{"d":"120,-11r0,55r-38,0r0,-55r-72,0r0,-34r66,-181r37,0r-63,181r32,0r0,-46r38,0r0,46r19,0r0,34r-19,0","w":149},"5":{"d":"83,-129v51,0,47,54,47,107v0,41,-19,66,-58,66v-40,0,-61,-24,-57,-70r38,0v0,20,-1,42,19,40v30,-2,19,-53,19,-83v0,-15,-5,-25,-19,-26v-15,0,-20,12,-19,28r-36,0r0,-148r110,0r0,34r-76,0r0,69v6,-9,18,-17,32,-17","w":142},"6":{"d":"65,-153v53,-19,68,38,62,97v-4,37,-21,58,-57,59v-67,3,-66,-90,-47,-141r45,-118r39,0xm70,-31v27,0,19,-43,19,-71v-1,-13,-6,-24,-19,-24v-27,0,-19,44,-19,71v0,15,6,24,19,24","w":140},"7":{"d":"64,41r-38,0r67,-222r-44,0r0,34r-37,0r0,-68r119,0r0,32","w":142},"8":{"d":"107,-134v39,28,33,145,-35,137v-68,9,-75,-108,-36,-137v-36,-29,-28,-132,35,-125v64,-8,73,96,36,125xm72,-31v26,-2,19,-38,19,-65v0,-12,-7,-22,-19,-22v-21,0,-20,23,-20,44v0,20,0,44,20,43xm72,-150v18,0,18,-20,18,-38v0,-17,0,-37,-18,-37v-24,0,-18,32,-18,56v0,11,6,19,18,19"},"9":{"d":"70,-216v69,0,66,90,47,141r-45,118r-39,0r42,-104v-51,20,-69,-37,-62,-97v4,-36,20,-58,57,-58xm70,-88v27,-1,19,-43,19,-70v0,-15,-5,-24,-19,-24v-28,1,-19,42,-19,70v0,13,4,25,19,24","w":140},":":{"d":"50,-157v14,0,26,12,26,25v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25v0,-13,11,-25,25,-25xm50,-49v14,0,26,12,26,25v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25v0,-13,11,-25,25,-25","w":92},";":{"d":"30,54r0,-99r41,0r0,68xm50,-157v14,0,26,12,26,25v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25v0,-13,11,-25,25,-25","w":92},"<":{"d":"75,-85r76,75r-49,0r-93,-93r93,-92r49,0r-76,74r167,0r0,36r-167,0","w":258},"=":{"d":"16,-117r0,-37r133,0r0,37r-133,0xm16,-52r0,-37r133,0r0,37r-133,0","w":164},">":{"d":"157,-10r-49,0r76,-75r-167,0r0,-36r167,0r-76,-74r49,0r93,92","w":258},"?":{"d":"80,-258v59,-4,78,70,49,114v-13,20,-35,35,-29,72r-38,0v-10,-60,39,-65,41,-118v2,-19,-6,-33,-22,-34v-17,0,-24,15,-23,34r-38,0v1,-41,18,-65,60,-68xm81,-49v14,0,25,12,25,25v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25v0,-13,12,-25,26,-25","w":153},"@":{"d":"76,-256v62,-2,123,-6,123,59r0,197r-36,0r0,-14v-25,32,-83,15,-77,-39v6,-54,-14,-127,45,-123v12,0,24,6,30,14v1,-31,2,-63,-30,-62v-36,2,-76,-8,-76,32r0,143v-1,14,4,19,11,26r-28,28v-39,-35,-17,-134,-21,-202v-3,-39,22,-58,59,-59xm143,-31v31,0,14,-58,18,-89v1,-13,-7,-23,-18,-23v-32,2,-15,58,-19,90v-1,13,8,22,19,22","w":218},"A":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-194r-22,107r44,0","w":168},"B":{"d":"125,-134v22,7,27,31,27,58v0,80,-56,79,-130,76r0,-256r64,0v73,-14,86,96,39,122xm62,-36v34,2,50,-4,50,-40v0,-35,-16,-43,-50,-40r0,80xm62,-150v31,2,49,-4,49,-35v0,-33,-18,-37,-49,-35r0,70","w":169},"C":{"d":"149,-68v-3,43,-22,70,-66,71v-78,0,-62,-88,-68,-166v-6,-75,58,-124,113,-80v14,11,19,31,20,54r-40,0v-2,-18,-6,-34,-25,-34v-38,0,-28,49,-28,95v0,46,-9,88,28,95v19,-1,25,-15,25,-35r41,0","w":160},"D":{"d":"87,-256v77,0,68,84,68,162v0,54,-15,94,-68,94r-65,0r0,-256r65,0xm62,-36v63,8,53,-39,53,-93v0,-53,10,-99,-53,-91r0,184","w":169},"E":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0","w":142},"F":{"d":"62,-220r0,73r58,0r0,36r-58,0r0,111r-40,0r0,-256r107,0r0,36r-67,0","w":140},"G":{"d":"149,-139v2,71,5,142,-66,142v-78,0,-62,-88,-68,-166v-6,-76,59,-124,114,-79v13,11,19,31,20,54r-41,0v0,-20,-6,-34,-25,-35v-37,7,-28,49,-28,95v0,46,-9,88,28,95v31,-1,24,-41,25,-73r-25,0r0,-33r66,0","w":163},"H":{"d":"112,0r0,-112r-50,0r0,112r-40,0r0,-256r40,0r0,108r50,0r0,-108r40,0r0,256r-40,0","w":173},"I":{"d":"22,0r0,-256r40,0r0,256r-40,0","w":83},"J":{"d":"121,-67v6,65,-79,91,-120,49r28,-27v14,22,51,11,51,-22r0,-189r41,0r0,189","w":140},"K":{"d":"123,0r-42,-105r-19,39r0,66r-40,0r0,-256r40,0r0,120r56,-120r40,0r-51,106r59,150r-43,0","w":168},"L":{"d":"22,0r0,-256r40,0r0,220r67,0r0,36r-107,0","w":137},"M":{"d":"153,0r0,-160r-35,105r-22,0r-34,-103r0,158r-40,0r0,-256r36,0r50,134r49,-134r37,0r0,256r-41,0","w":215},"N":{"d":"122,0r-60,-152r0,152r-40,0r0,-256r36,0r60,152r0,-152r40,0r0,256r-36,0","w":179},"O":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95","w":166},"P":{"d":"86,-256v50,1,65,26,66,77v1,60,-27,84,-90,79r0,100r-40,0r0,-256r64,0xm62,-136v35,5,50,-8,50,-42v0,-34,-14,-48,-50,-42r0,84","w":165},"Q":{"d":"151,-163v0,46,4,99,-10,131r21,18r-18,22r-21,-17v-11,8,-21,12,-40,12v-78,0,-68,-87,-68,-166v0,-55,14,-96,68,-96v54,0,68,41,68,96xm55,-128v0,47,-10,100,37,93r-14,-11r19,-23r11,9v5,-17,3,-46,3,-68v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95","w":166},"R":{"d":"152,-181v-2,34,-6,55,-30,67r38,114r-42,0r-33,-105r-23,0r0,105r-40,0r0,-256v73,-3,136,-5,130,75xm62,-141v34,4,50,-7,50,-40v0,-32,-16,-44,-50,-39r0,79","w":172},"S":{"d":"79,-222v-34,0,-30,60,-3,67v39,10,76,26,69,84v17,83,-108,98,-129,35v-2,-8,-3,-19,-3,-33r40,0v-1,23,6,33,26,35v34,4,34,-58,14,-71v-33,-21,-86,-23,-78,-84v-11,-75,106,-94,125,-30v3,9,4,20,4,32r-41,0v1,-20,-4,-35,-24,-35","w":159},"T":{"d":"91,-220r0,220r-41,0r0,-220r-42,0r0,-36r126,0r0,36r-43,0","w":141},"U":{"d":"150,-63v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28v15,0,26,-11,25,-28r0,-195r40,0r0,193","w":169},"V":{"d":"99,0r-41,0r-57,-256r45,0r32,194r34,-194r44,0","w":157},"W":{"d":"207,0r-42,0r-36,-195r-37,195r-42,0r-49,-256r45,0r25,194r35,-194r45,0r35,194r25,-194r45,0","w":257},"X":{"d":"107,0r-29,-92r-30,92r-44,0r51,-133r-47,-123r44,0r26,85r25,-85r45,0r-48,123r52,133r-45,0","w":155},"Y":{"d":"90,-100r0,100r-40,0r0,-100r-50,-156r45,0r25,101r25,-101r45,0","w":140},"Z":{"d":"11,0r0,-30r70,-190r-66,0r0,-36r108,0r0,30r-70,190r70,0r0,36r-112,0","w":134},"[":{"d":"19,27r0,-310r72,0r0,34r-34,0r0,242r34,0r0,34r-72,0","w":101},"\\":{"d":"69,27r-67,-310r36,0r67,310r-36,0","w":107},"]":{"d":"10,27r0,-34r34,0r0,-242r-34,0r0,-34r72,0r0,310r-72,0","w":101},"^":{"d":"113,-156r-29,-64r-30,64r-38,0r51,-102r33,0r50,102r-37,0","w":166},"_":{"d":"0,55r0,-28r165,0r0,28r-165,0","w":164},"`":{"d":"62,-211r-32,-50r32,0r26,50r-26,0"},"a":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26"},"b":{"d":"87,-193v48,3,47,45,47,98v-1,52,2,98,-47,98v-14,0,-25,-8,-32,-17r0,14r-36,0r0,-256r38,0r0,79v6,-9,16,-16,30,-16xm76,-31v32,0,19,-64,19,-99v0,-17,-5,-28,-19,-29v-35,5,-19,69,-19,105v0,14,6,23,19,23","w":146},"c":{"d":"128,-56v-2,35,-18,59,-57,59v-52,0,-59,-45,-58,-98v-13,-73,42,-125,98,-84v12,9,16,26,17,45r-38,0v0,-13,-5,-25,-19,-25v-32,0,-19,63,-19,99v0,17,4,29,19,29v12,0,20,-11,19,-25r38,0","w":138},"d":{"d":"60,-193v14,0,24,7,30,16r0,-79r38,0r0,256r-37,0r0,-14v-6,9,-18,17,-31,17v-49,0,-46,-46,-47,-98v0,-53,-1,-98,47,-98xm71,-31v36,-5,14,-70,19,-105v2,-14,-6,-23,-19,-23v-32,0,-19,64,-19,99v0,17,4,28,19,29","w":146},"e":{"d":"71,-193v56,-1,60,52,58,109r-78,0v1,26,-2,53,21,53v14,0,17,-13,19,-25r38,0v-2,34,-20,59,-57,59v-61,0,-58,-63,-58,-123v0,-43,16,-72,57,-73xm91,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0","w":141},"f":{"d":"64,-161r0,161r-38,0r0,-161r-19,0r0,-29r19,0v-3,-47,18,-70,65,-68r0,34v-22,0,-29,12,-27,34r27,0r0,29r-27,0","w":97},"g":{"d":"61,-193v14,0,24,7,30,16r0,-13r37,0r0,194v12,69,-90,87,-110,30v-2,-7,-4,-14,-4,-22r38,0v-1,15,6,24,19,24v26,1,18,-36,19,-62v-8,10,-13,14,-29,14v-46,-2,-48,-40,-48,-90v0,-51,2,-91,48,-91xm71,-45v34,0,19,-59,19,-91v0,-12,-6,-23,-19,-23v-30,0,-19,55,-19,88v0,16,5,26,19,26","w":146},"h":{"d":"57,-177v24,-32,86,-11,75,40r0,137r-38,0r0,-136v1,-13,-7,-22,-18,-22v-12,0,-19,9,-19,22r0,136r-38,0r0,-256r38,0r0,79","w":150},"i":{"d":"19,0r0,-185r38,0r0,185r-38,0xm38,-261v13,0,24,11,24,24v0,13,-11,25,-24,25v-13,0,-24,-12,-24,-25v0,-13,11,-24,24,-24","w":75},"j":{"d":"-7,32v19,0,25,-7,26,-25r0,-192r38,0v-3,73,7,158,-5,222v-10,19,-30,30,-59,30r0,-35xm38,-261v13,0,24,11,24,24v0,13,-11,25,-24,25v-13,0,-24,-12,-24,-25v0,-13,11,-24,24,-24","w":75},"k":{"d":"105,0r-32,-80r-16,26r0,54r-38,0r0,-256r38,0r0,147r48,-81r40,0r-47,76r49,114r-42,0","w":149},"l":{"d":"82,0v-41,0,-64,-16,-64,-58r0,-198r38,0r0,196v0,17,9,26,26,26r0,34","w":87},"m":{"d":"124,-173v23,-34,84,-23,84,36r0,137r-38,0r0,-136v1,-13,-7,-22,-19,-22v-11,0,-20,10,-19,22r0,136r-38,0r0,-136v1,-13,-7,-22,-18,-22v-12,0,-19,9,-19,22r0,136r-38,0r0,-190r36,0r0,14v14,-23,57,-20,69,3","w":226},"n":{"d":"55,-176v27,-33,77,-14,77,39r0,137r-38,0r0,-136v1,-13,-7,-22,-18,-22v-12,0,-19,9,-19,22r0,136r-38,0r0,-190r36,0r0,14","w":150},"o":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29","w":142},"p":{"d":"87,-193v48,2,47,45,47,98v0,53,1,96,-47,98v-13,0,-24,-6,-30,-15r0,79r-38,0r0,-257r36,0r0,14v7,-8,18,-17,32,-17xm76,-31v32,0,19,-64,19,-99v0,-17,-5,-28,-19,-29v-35,5,-19,69,-19,105v0,14,6,23,19,23","w":146},"q":{"d":"60,-193v14,0,25,8,31,17r0,-14r37,0r0,257r-38,0r0,-79v-6,9,-17,15,-30,15v-48,-2,-47,-45,-47,-98v0,-53,-1,-95,47,-98xm71,-31v36,-5,14,-70,19,-105v2,-14,-6,-23,-19,-23v-32,0,-19,64,-19,99v0,17,4,28,19,29","w":146},"r":{"d":"102,-156v-73,-9,-37,97,-45,156r-38,0r0,-190r36,0r0,20v10,-12,26,-23,47,-23r0,37","w":107},"s":{"d":"68,-159v-25,0,-23,34,-2,42v30,11,61,20,61,62v0,65,-94,77,-113,23v-3,-7,-4,-14,-4,-23r38,0v0,14,6,23,20,23v28,0,26,-39,2,-45v-27,-13,-59,-19,-59,-59v0,-62,89,-76,109,-25v3,7,5,15,5,25r-38,0v1,-14,-8,-23,-19,-23","w":137},"t":{"d":"91,0v-41,1,-65,-17,-65,-58r0,-103r-19,0r0,-29r19,0r0,-48r38,0r0,48r27,0r0,29r-27,0r0,101v0,17,9,26,27,26r0,34","w":98},"u":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22","w":150},"v":{"d":"89,0r-40,0r-48,-190r43,0r25,130r25,-130r42,0","w":137},"w":{"d":"164,0r-38,0r-23,-123r-22,123r-38,0r-42,-190r43,0r20,130r23,-130r33,0r24,130r19,-130r43,0","w":207},"x":{"d":"95,0r-25,-59r-25,59r-42,0r45,-96r-43,-94r43,0r22,58r23,-58r42,0r-43,94r46,96r-43,0","w":140},"y":{"d":"82,24v-6,33,-32,43,-70,43r0,-34v25,1,33,-13,37,-33r-48,-190r43,0r25,130r25,-130r42,0","w":137},"z":{"d":"9,0r0,-29r56,-127r-51,0r0,-34r94,0r0,29r-56,127r56,0r0,34r-99,0","w":117},"{":{"d":"56,-128v56,13,-17,127,55,120r0,35v-43,3,-67,-11,-70,-51v-3,-35,19,-95,-31,-87r0,-34v77,8,-26,-159,101,-138r0,34v-67,-13,-1,103,-55,121","w":120},"|":{"d":"40,27r0,-310r38,0r0,310r-38,0","w":118},"}":{"d":"80,-233v3,35,-20,96,31,88r0,34v-48,-10,-29,50,-31,87v-3,40,-27,54,-70,51r0,-35v17,1,31,0,31,-18v0,-40,-10,-95,24,-102v-35,-6,-24,-63,-24,-102v0,-18,-13,-20,-31,-19r0,-34v43,-3,67,10,70,50","w":120},"~":{"d":"156,-103v-14,12,-23,23,-45,23v-30,1,-56,-32,-79,-4r-24,-23v14,-13,24,-24,46,-24v29,0,58,32,79,5","w":164},"\u00c4":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-194r-22,107r44,0xm54,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm115,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":168},"\u00c5":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-347v24,0,38,15,38,37v0,23,-15,38,-38,38v-23,0,-37,-16,-37,-38v0,-21,15,-38,37,-37xm84,-194r-22,107r44,0xm84,-293v10,0,17,-7,17,-17v0,-10,-7,-17,-17,-17v-9,0,-16,8,-16,17v0,9,7,17,16,17","w":168},"\u00c7":{"d":"83,-33v19,-1,25,-15,25,-35r41,0v-3,43,-22,70,-66,71v-78,0,-62,-88,-68,-166v-6,-75,58,-124,113,-80v14,11,19,31,20,54r-40,0v-2,-18,-6,-34,-25,-34v-38,0,-28,49,-28,95v0,46,-9,88,28,95xm77,70r-27,0r22,-56r24,0","w":160},"\u00c9":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0xm87,-274r-27,0r26,-50r32,0","w":142},"\u00d1":{"d":"122,0r-60,-152r0,152r-40,0r0,-256r36,0r60,152r0,-152r40,0r0,256r-36,0xm41,-296v17,-24,47,-15,70,-6v8,0,10,-2,16,-8r17,17v-10,10,-17,17,-32,17v-20,0,-39,-24,-55,-4","w":179},"\u00d6":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm53,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm114,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":166},"\u00dc":{"d":"85,-33v15,0,26,-11,25,-28r0,-195r40,0r0,193v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28xm54,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm115,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":169},"\u00e1":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26xm81,-211r-26,0r26,-50r32,0"},"\u00e0":{"d":"68,-193v85,-3,50,116,57,193r-36,0r0,-16v-23,37,-86,15,-80,-39v5,-42,30,-59,78,-56v0,0,4,-48,-18,-48v-13,0,-19,10,-19,23r-38,0v1,-35,22,-56,56,-57xm67,-31v23,1,20,-29,20,-53v-25,-2,-40,5,-40,27v0,18,7,26,20,26xm61,-211r-31,-50r32,0r25,50r-26,0"},"\u00e2":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm91,-211r-21,-30r-21,30r-30,0r36,-50r30,0r36,50r-30,0xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26"},"\u00e4":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26xm39,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm100,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-19,-9,-19,-20v0,-11,8,-19,19,-19"},"\u00e3":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm20,-234v16,-24,48,-16,70,-5v8,-1,10,-3,16,-9r17,17v-17,24,-48,16,-70,5v-9,1,-10,3,-17,9xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26"},"\u00e5":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm70,-286v22,0,38,15,38,37v0,23,-15,38,-38,38v-23,0,-38,-15,-38,-38v0,-21,17,-37,38,-37xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26xm70,-232v10,0,16,-7,16,-17v0,-10,-7,-16,-16,-16v-9,0,-16,6,-16,16v0,10,6,17,16,17"},"\u00e7":{"d":"71,-31v12,0,20,-11,19,-25r38,0v-2,35,-18,59,-57,59v-52,0,-59,-45,-58,-98v-13,-73,42,-125,98,-84v12,9,16,26,17,45r-38,0v0,-13,-5,-25,-19,-25v-32,0,-19,63,-19,99v0,17,4,29,19,29xm68,70r-27,0r22,-56r24,0","w":138},"\u00e9":{"d":"71,-193v56,-1,60,52,58,109r-78,0v1,26,-2,53,21,53v14,0,17,-13,19,-25r38,0v-2,34,-20,59,-57,59v-61,0,-58,-63,-58,-123v0,-43,16,-72,57,-73xm91,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0xm82,-211r-27,0r26,-50r32,0","w":141},"\u00e8":{"d":"89,-193v56,-1,58,53,58,109r-79,0v1,26,-2,53,21,53v13,0,18,-11,19,-25r38,0v-1,35,-20,59,-57,59v-61,1,-58,-63,-58,-123v0,-44,17,-72,58,-73xm108,-112v5,-31,-12,-61,-34,-39v-5,9,-6,24,-6,39r40,0xm62,-211r-32,-50r32,0r26,50r-26,0"},"\u00ea":{"d":"71,-193v56,-1,60,52,58,109r-78,0v1,26,-2,53,21,53v14,0,17,-13,19,-25r38,0v-2,34,-20,59,-57,59v-61,0,-58,-63,-58,-123v0,-43,16,-72,57,-73xm93,-211r-21,-30r-22,30r-29,0r36,-50r30,0r35,50r-29,0xm91,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0","w":141},"\u00eb":{"d":"71,-193v56,-1,60,52,58,109r-78,0v1,26,-2,53,21,53v14,0,17,-13,19,-25r38,0v-2,34,-20,59,-57,59v-61,0,-58,-63,-58,-123v0,-43,16,-72,57,-73xm91,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0xm41,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm102,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19","w":141},"\u00ed":{"d":"19,0r0,-190r38,0r0,190r-38,0xm49,-211r-27,0r26,-50r32,0","w":75},"\u00ec":{"d":"19,0r0,-190r38,0r0,190r-38,0xm29,-211r-32,-50r33,0r25,50r-26,0","w":75},"\u00ee":{"d":"19,0r0,-190r38,0r0,190r-38,0xm59,-211r-21,-30r-21,30r-30,0r36,-50r30,0r36,50r-30,0","w":75},"\u00ef":{"d":"19,0r0,-190r38,0r0,190r-38,0xm68,-252v12,0,21,8,21,19v0,11,-10,20,-21,20v-11,0,-19,-9,-19,-20v0,-11,8,-19,19,-19xm8,-252v11,0,19,8,19,19v0,11,-8,20,-19,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19","w":75},"\u00f1":{"d":"55,-176v27,-33,77,-14,77,39r0,137r-38,0r0,-136v1,-13,-7,-22,-18,-22v-12,0,-19,9,-19,22r0,136r-38,0r0,-190r36,0r0,14xm26,-234v16,-24,48,-16,70,-5v8,-1,10,-3,16,-9r17,17v-17,24,-48,16,-70,5v-9,1,-10,3,-17,9","w":150},"\u00f3":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29xm82,-211r-27,0r26,-50r32,0","w":142},"\u00f2":{"d":"89,-193v51,0,58,44,58,98v0,53,-5,98,-58,98v-53,0,-59,-44,-59,-98v0,-54,7,-98,59,-98xm89,-31v32,0,19,-63,19,-99v0,-17,-4,-29,-19,-29v-33,0,-20,63,-20,99v0,17,5,29,20,29xm62,-211r-32,-50r32,0r26,50r-26,0"},"\u00f4":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29xm93,-211r-21,-30r-22,30r-29,0r36,-50r30,0r35,50r-29,0","w":142},"\u00f6":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29xm41,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm102,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19","w":142},"\u00f5":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29xm21,-234v17,-23,48,-16,70,-5v8,-1,10,-3,16,-9r17,17v-16,24,-48,16,-70,5v-9,1,-10,3,-17,9","w":142},"\u00fa":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22xm89,-211r-26,0r26,-50r32,0","w":150},"\u00f9":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22xm63,-211r-31,-50r32,0r26,50r-27,0","w":150},"\u00fb":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22xm97,-211r-22,-30r-21,30r-29,0r35,-50r30,0r36,50r-29,0","w":150},"\u00fc":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22xm44,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm105,-252v12,0,20,7,20,19v0,12,-9,20,-20,20v-11,0,-19,-9,-19,-20v0,-11,8,-19,19,-19","w":150},"\u00b0":{"d":"74,-261v36,0,58,24,58,58v0,34,-22,58,-58,58v-36,0,-59,-24,-59,-58v0,-34,23,-58,59,-58xm74,-178v14,0,25,-12,25,-25v0,-13,-11,-25,-25,-25v-14,0,-25,11,-25,25v0,14,11,25,25,25","w":147},"\u00a2":{"d":"130,-93v-2,29,-15,49,-42,54r0,39r-29,0r0,-39v-40,-5,-44,-46,-44,-92v0,-47,5,-86,44,-92r0,-33r29,0r0,33v27,3,40,27,42,55r-38,0v0,-13,-6,-23,-19,-23v-33,2,-16,59,-19,94v-1,17,5,26,19,27v12,0,20,-10,19,-23r38,0","w":141},"\u00a3":{"d":"126,-212v-15,-21,-51,-9,-51,22r0,44r28,0r0,29r-28,0r0,81r79,0r0,36r-120,0r0,-117r-22,0r0,-29r22,0v-20,-89,56,-144,120,-93","w":165},"\u00a7":{"d":"77,-223v-25,0,-23,38,-2,43v42,11,71,35,63,100v-3,21,-11,36,-27,43v44,22,24,108,-35,102v-35,-4,-57,-22,-58,-57r39,0v0,13,6,22,19,22v28,1,24,-39,2,-44v-43,-10,-68,-40,-61,-100v3,-22,11,-34,27,-42v-44,-21,-24,-104,33,-100v34,2,57,20,57,55r-38,0v1,-13,-8,-22,-19,-22xm77,-55v19,-1,23,-19,23,-42v0,-22,-2,-42,-23,-42v-20,0,-23,19,-23,42v0,21,3,42,23,42","w":154},"\u00b6":{"d":"13,-180v0,-48,12,-76,53,-76r132,0r0,323r-39,0r0,-287r-36,0r0,287r-38,0r0,-170v-54,4,-72,-22,-72,-77","w":216},"\u00df":{"d":"115,-142v36,22,31,133,-15,139v-8,1,-16,3,-24,3r0,-34v31,2,22,-41,22,-69v0,-14,-8,-23,-22,-22r0,-32v23,2,20,-25,20,-49v0,-11,-8,-19,-20,-19v-12,0,-20,9,-19,23r0,202r-38,0r0,-201v0,-39,21,-54,57,-58v62,-7,77,87,39,117","w":149},"\u00ae":{"d":"152,-258v78,0,130,52,130,130v0,78,-52,130,-130,130v-78,0,-130,-52,-130,-130v0,-78,52,-130,130,-130xm152,-21v64,0,105,-43,105,-107v0,-65,-41,-107,-105,-107v-64,0,-105,42,-105,107v0,65,40,107,105,107xm156,-199v42,-6,46,63,20,79r20,63r-24,0r-18,-57r-13,0r0,57r-23,0r0,-142r38,0xm141,-136v22,3,31,-6,27,-30v1,-13,-14,-11,-27,-11r0,41","w":303},"\u00a9":{"d":"152,-258v78,0,130,52,130,130v0,78,-52,130,-130,130v-78,0,-130,-52,-130,-130v0,-78,52,-130,130,-130xm152,-21v64,0,105,-43,105,-107v0,-65,-41,-107,-105,-107v-64,0,-105,42,-105,107v0,65,40,107,105,107xm153,-77v10,0,14,-8,13,-20r24,0v-1,24,-14,42,-37,42v-42,0,-38,-50,-38,-90v0,-44,33,-72,63,-46v7,7,11,18,11,32r-23,0v1,-12,-3,-21,-13,-20v-19,2,-15,28,-15,51v0,22,-5,49,15,51","w":303},"\u00b4":{"d":"82,-211r-27,0r26,-50r32,0"},"\u00a8":{"d":"41,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm102,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19"},"\u00c6":{"d":"122,0r0,-53r-57,0r-19,53r-44,0r94,-256r134,0r0,36r-68,0r0,73r58,0r0,36r-58,0r0,75r68,0r0,36r-108,0xm122,-220r-45,130r45,0r0,-130","w":243},"\u00d8":{"d":"135,-235v23,30,14,90,17,142v4,67,-38,114,-100,89r-7,20r-27,0r14,-37v-23,-29,-13,-90,-17,-142v-5,-68,37,-114,99,-89r8,-20r26,0xm83,-223v-43,0,-22,69,-28,123v0,7,1,13,2,18r44,-133v-4,-5,-10,-8,-18,-8xm83,-33v47,0,22,-83,27,-141r-44,133v4,5,9,8,17,8","w":164},"\u00b1":{"d":"100,-114r0,48r-36,0r0,-48r-48,0r0,-36r48,0r0,-48r36,0r0,48r49,0r0,36r-49,0xm16,-5r0,-36r133,0r0,36r-133,0","w":164},"\u00a5":{"d":"103,-147r22,0r0,29r-31,0v-3,10,-6,19,-5,32r36,0r0,29r-36,0r0,57r-38,0r0,-57r-36,0r0,-29r36,0v1,-13,-2,-22,-5,-32r-31,0r0,-29r22,0r-34,-109r42,0r25,101r25,-101r42,0","w":140},"\u00b5":{"d":"75,-31v11,0,19,-9,19,-22r0,-137r38,0r0,190r-37,0r0,-14v-7,10,-26,22,-40,14r0,67r-37,0r0,-257r38,0r0,137v0,12,8,22,19,22","w":151},"\u03bc":{"d":"75,-31v11,0,19,-9,19,-22r0,-137r38,0r0,190r-37,0r0,-14v-7,10,-26,22,-40,14r0,67r-37,0r0,-257r38,0r0,137v0,12,8,22,19,22","w":151},"\u00aa":{"d":"58,-258v66,-1,41,91,46,152r-29,0r0,-12v-21,26,-70,12,-66,-32v3,-32,25,-47,63,-44v-1,-16,4,-36,-14,-36v-11,0,-15,8,-15,18r-31,0v-1,-30,18,-46,46,-46xm57,-131v17,0,16,-22,15,-41v-32,-10,-43,38,-15,41","w":119},"\u00ba":{"d":"59,-258v43,0,48,34,48,77v1,43,-5,77,-48,77v-42,0,-47,-35,-47,-77v0,-42,5,-77,47,-77xm59,-131v24,-4,16,-45,16,-74v0,-12,-4,-27,-16,-25v-24,3,-15,46,-15,74v0,13,4,24,15,25","w":118},"\u00e6":{"d":"110,-180v49,-36,94,6,94,69r0,27r-78,0v1,25,-2,51,20,53v12,0,19,-12,20,-25r37,0v8,60,-80,78,-104,34v-19,42,-89,29,-89,-33v0,-44,30,-59,78,-56v0,-22,4,-50,-19,-48v-13,0,-18,10,-18,23r-38,0v-5,-51,66,-75,95,-40v1,-2,1,-3,2,-4xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26xm166,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0","w":216},"\u00f8":{"d":"71,-193v10,0,21,3,28,6r8,-19r25,0r-15,35v13,16,12,48,13,76v0,52,-6,100,-59,98v-11,0,-20,-2,-27,-6r-8,19r-26,0r15,-35v-12,-16,-11,-48,-12,-76v-2,-54,7,-99,58,-98xm85,-154v-36,-20,-33,24,-34,59r1,22xm58,-35v39,18,33,-32,34,-72v0,-4,-1,-7,-1,-9","w":141},"\u00bf":{"d":"73,35v16,0,23,-17,22,-35r38,0v0,42,-19,67,-60,69v-59,3,-76,-71,-49,-115v13,-21,35,-35,30,-72r38,0v10,61,-40,65,-42,118v-2,20,6,35,23,35xm73,-191v14,0,25,11,25,25v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25","w":153},"\u00a1":{"d":"23,67r0,-185r38,0r0,185r-38,0xm42,-191v14,0,25,11,25,25v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25","w":92},"\u00ac":{"d":"110,-51r0,-40r-92,0r0,-36r129,0r0,76r-37,0","w":164},"\u00ab":{"d":"9,-99r58,-90r0,57r-22,33r22,33r0,56xm75,-99r57,-90r0,57r-22,33r22,33r0,56","w":149},"\u00bb":{"d":"82,-10r0,-56r22,-33r-22,-33r0,-57r58,90xm17,-10r0,-56r22,-33r-22,-33r0,-57r58,90","w":149},"\u00a0":{"w":64},"\u00c0":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-194r-22,107r44,0xm74,-274r-31,-50r32,0r26,50r-27,0","w":168},"\u00c3":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm137,-293v-20,37,-64,-9,-87,13r-16,-16v17,-24,46,-16,70,-6v8,0,10,-2,16,-8xm84,-194r-22,107r44,0","w":168},"\u00d5":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm136,-293v-20,37,-64,-9,-87,13r-16,-16v17,-24,46,-16,70,-6v8,0,10,-2,16,-8","w":166},"\u00f7":{"d":"16,-82r0,-37r133,0r0,37r-133,0xm82,-192v14,0,26,12,26,25v0,13,-13,26,-26,26v-13,0,-25,-12,-25,-26v0,-14,11,-25,25,-25xm82,-60v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-11,-25,-25v0,-14,12,-26,25,-26","w":164},"\u00ff":{"d":"82,24v-6,33,-32,43,-70,43r0,-34v25,1,33,-13,37,-33r-48,-190r43,0r25,130r25,-130r42,0xm39,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-8,-20,-20v0,-12,8,-19,20,-19xm100,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19","w":137},"\u00a4":{"d":"165,-68v-3,42,-21,71,-65,71v-51,0,-67,-35,-68,-88r-20,0r0,-29r20,0r0,-29r-20,0r0,-29r20,0v-9,-72,62,-112,113,-71v14,11,19,31,20,54r-40,0v7,-37,-46,-47,-50,-10v-3,7,-2,18,-2,27r38,0r0,29r-39,0r0,29r39,0r0,29r-38,0v1,29,1,52,27,52v18,0,26,-15,25,-35r40,0","w":179},"\u00b7":{"d":"50,-139v19,0,31,12,31,31v0,44,-62,36,-62,0v0,-17,12,-31,31,-31","w":100},"\u00c2":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm106,-274r-22,-29r-21,29r-29,0r35,-50r30,0r36,50r-29,0xm84,-194r-22,107r44,0","w":168},"\u00ca":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0xm98,-274r-21,-29r-22,29r-29,0r36,-50r30,0r35,50r-29,0","w":142},"\u00c1":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-194r-22,107r44,0xm94,-274r-26,0r26,-50r32,0","w":168},"\u00cb":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0xm46,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm107,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":142},"\u00c8":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0xm66,-274r-31,-50r32,0r26,50r-27,0","w":142},"\u00cd":{"d":"22,0r0,-256r40,0r0,256r-40,0xm52,-274r-26,0r25,-50r33,0","w":83},"\u00ce":{"d":"22,0r0,-256r40,0r0,256r-40,0xm63,-274r-21,-29r-21,29r-30,0r36,-50r30,0r36,50r-30,0","w":83},"\u00cf":{"d":"22,0r0,-256r40,0r0,256r-40,0xm11,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm72,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-19,-9,-19,-20v0,-11,8,-20,19,-20","w":83},"\u00cc":{"d":"22,0r0,-256r40,0r0,256r-40,0xm32,-274r-32,-50r32,0r26,50r-26,0","w":83},"\u00d3":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm94,-274r-27,0r26,-50r32,0","w":166},"\u00d4":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm105,-274r-22,-29r-21,29r-29,0r35,-50r30,0r36,50r-29,0","w":166},"\u00d2":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm73,-274r-31,-50r32,0r26,50r-27,0","w":166},"\u00da":{"d":"85,-33v15,0,26,-11,25,-28r0,-195r40,0r0,193v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28xm96,-274r-27,0r26,-50r32,0","w":169},"\u00db":{"d":"85,-33v15,0,26,-11,25,-28r0,-195r40,0r0,193v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28xm107,-274r-22,-29r-21,29r-29,0r35,-50r30,0r36,50r-29,0","w":169},"\u00d9":{"d":"85,-33v15,0,26,-11,25,-28r0,-195r40,0r0,193v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28xm75,-274r-31,-50r32,0r26,50r-27,0","w":169},"\u00af":{"d":"28,-220r0,-25r88,0r0,25r-88,0"},"\u00b8":{"d":"68,70r-27,0r22,-56r24,0"},"\u00d0":{"d":"93,-256v78,-1,68,84,68,162v0,55,-14,93,-68,94r-65,0r0,-113r-19,0r0,-32r19,0r0,-111r65,0xm68,-36v62,7,53,-38,53,-93v0,-55,9,-99,-53,-91r0,75r25,0r0,32r-25,0r0,77","w":176},"\u00f0":{"d":"13,-87v0,-60,15,-107,69,-85r-10,-33r-27,0r0,-28r18,0r-8,-23r38,0r8,23r25,0r0,28r-17,0v20,56,53,206,-37,208v-50,1,-59,-40,-59,-90xm72,-31v23,-3,20,-29,20,-57v0,-27,5,-57,-20,-57v-26,0,-21,29,-21,57v0,28,-4,54,21,57","w":144}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * 2000 Albert-Jan Pool, published by Fontshop International for the FontFont
 * library.
 * 
 * Manufacturer:
 * Albert-Jan Pool, published by Fontshop International for the FontFont library
 */
Cufon.registerFont({"w":143,"face":{"font-family":"DINCondBoldAlternate","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 6 4 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"3","bbox":"-13 -347.042 282 70","underline-thickness":"27.72","underline-position":"-14.04","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":64},"\u00dd":{"d":"90,-100r0,100r-40,0r0,-100r-50,-156r45,0r25,101r25,-101r45,0xm80,-274r-26,0r26,-50r32,0","w":140},"\u00fd":{"d":"82,24v-6,33,-32,43,-70,43r0,-34v25,1,33,-13,37,-33r-48,-190r43,0r25,130r25,-130r42,0xm80,-211r-27,0r26,-50r32,0","w":137},"\u00de":{"d":"62,-208v62,-4,90,17,90,78v0,60,-27,84,-90,79r0,51r-40,0r0,-256r40,0r0,48xm62,-88v36,5,50,-8,50,-42v0,-33,-14,-46,-50,-41r0,83","w":165},"\u00fe":{"d":"88,-193v47,3,47,46,47,98v0,51,1,98,-47,98v-13,0,-25,-6,-31,-15r0,79r-38,0r0,-323r37,0r0,80v6,-9,18,-18,32,-17xm76,-31v26,0,20,-34,20,-64v0,-30,5,-61,-20,-64v-35,5,-19,69,-19,105v0,14,6,23,19,23","w":147},"\u00bd":{"d":"109,0r-29,0r88,-256r30,0xm225,-156v41,-3,51,42,32,71r-42,64r53,0r0,21r-83,0r0,-20v18,-33,47,-55,55,-99v1,-9,-7,-15,-15,-15v-14,-1,-15,12,-14,26r-28,0v-3,-33,14,-46,42,-48xm49,-103r0,-125r-27,17r0,-28v14,-9,27,-21,54,-17r0,153r-27,0","w":282},"\u00bc":{"d":"109,0r-29,0r88,-256r30,0xm258,-23r0,23r-28,0r0,-23r-52,0r0,-21r39,-110r27,0r-38,110r24,0r0,-25r28,0r0,25r12,0r0,21r-12,0xm49,-103r0,-125r-27,17r0,-28v14,-9,27,-21,54,-17r0,153r-27,0","w":282},"\u00b9":{"d":"49,-103r0,-125r-27,17r0,-28v14,-9,27,-21,54,-17r0,153r-27,0","w":114},"\u00be":{"d":"109,0r-29,0r88,-256r30,0xm81,-183v33,17,21,87,-25,82v-28,-3,-44,-14,-42,-45r27,0v-7,26,28,33,30,10v1,-21,2,-41,-24,-37r0,-20v21,3,25,-10,23,-32v-2,-17,-29,-15,-28,3r0,9r-27,0v-3,-32,14,-42,41,-45v44,-6,56,60,25,75xm258,-23r0,23r-28,0r0,-23r-53,0r0,-21r40,-110r27,0r-38,110r24,0r0,-25r28,0r0,25r12,0r0,21r-12,0","w":282},"\u00b3":{"d":"81,-183v33,17,21,87,-25,82v-28,-3,-44,-14,-42,-45r27,0v-7,26,28,33,30,10v1,-21,2,-41,-24,-37r0,-20v21,3,25,-10,23,-32v-2,-17,-29,-15,-28,3r0,9r-27,0v-3,-32,14,-42,41,-45v44,-6,56,60,25,75","w":114},"\u00b2":{"d":"57,-258v40,-2,52,41,32,70r-43,64r53,0r0,21r-83,0r0,-20r54,-84v4,-12,2,-30,-13,-30v-14,0,-16,12,-15,27r-27,0v-3,-34,13,-46,42,-48","w":114},"\u00a6":{"d":"40,-158r0,-124r38,0r0,124r-38,0xm40,26r0,-125r38,0r0,125r-38,0","w":118},"\u00d7":{"d":"124,-37r-42,-41r-41,41r-25,-24r42,-42r-42,-42r25,-24r41,41r42,-41r25,24r-42,42r42,42","w":164},"!":{"d":"31,-72r0,-184r38,0r0,184r-38,0xm50,-49v14,0,26,12,26,25v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25v0,-13,11,-25,25,-25","w":92},"\"":{"d":"26,-184r0,-72r37,0r0,72r-37,0xm95,-184r0,-72r36,0r0,72r-36,0","w":157},"#":{"d":"172,-154r-7,46r26,0r0,36r-32,0r-10,72r-40,0r11,-72r-39,0r-10,72r-40,0r10,-72r-24,0r0,-36r30,0r7,-46r-26,0r0,-36r31,0r10,-66r40,0r-10,66r39,0r9,-66r40,0r-10,66r25,0r0,36r-30,0xm94,-154r-7,46r38,0r7,-46r-38,0","w":218},"$":{"d":"80,-222v-34,0,-30,60,-3,67v40,10,70,27,70,84v0,42,-14,66,-49,72r0,40r-35,0r0,-40v-35,-6,-51,-27,-49,-70r40,0v-1,23,6,34,26,35v39,1,32,-70,2,-78v-37,-10,-69,-24,-66,-77v2,-38,17,-59,47,-67r0,-34r35,0r0,33v33,6,47,31,47,70r-41,0v1,-20,-4,-35,-24,-35","w":161},"%":{"d":"201,-131v48,0,49,43,46,91v-1,28,-19,41,-46,43v-46,1,-49,-43,-46,-91v1,-27,17,-43,46,-43xm63,-259v46,-2,45,43,45,91v0,29,-19,41,-45,43v-46,1,-48,-43,-46,-91v1,-28,19,-42,46,-43xm102,0r-29,0r89,-256r30,0xm63,-153v23,-1,11,-40,14,-62v1,-10,-5,-16,-14,-16v-25,0,-12,39,-15,62v-1,11,6,16,15,16xm201,-25v23,-1,11,-40,14,-62v1,-10,-5,-17,-14,-17v-24,0,-12,40,-15,63v-1,11,6,16,15,16","w":263},"&":{"d":"167,-135v-1,32,-9,60,-22,81r34,54r-40,0r-14,-23v-30,44,-118,27,-113,-40v3,-36,19,-55,38,-77v-13,-20,-27,-34,-27,-62v0,-35,19,-57,52,-57v34,0,50,21,51,54v1,34,-14,52,-32,70r30,48v5,-12,10,-31,11,-48r32,0xm69,-109v-35,20,-21,99,23,72v5,-3,9,-8,14,-15xm75,-165v16,-11,28,-55,0,-60v-30,4,-14,48,0,60","w":179},"'":{"d":"26,-184r0,-72r37,0r0,72r-37,0","w":88},"(":{"d":"55,-45v0,31,11,40,26,53r-26,26v-19,-19,-38,-38,-38,-77r2,-192v4,-26,22,-40,36,-55r26,25v-15,14,-26,23,-26,54r0,166","w":95},")":{"d":"41,-290v19,20,37,37,37,77r-1,191v-5,24,-21,41,-36,56r-26,-26v14,-13,25,-23,25,-53r0,-166v1,-30,-12,-40,-25,-54","w":95},"*":{"d":"121,-149r-34,-21r2,45r-28,0r2,-45r-34,21r-14,-23r36,-19r-36,-18r14,-24r34,21r-2,-45r28,0r-2,45r34,-21r14,24r-36,18r36,19","w":150},"+":{"d":"100,-86r0,49r-36,0r0,-49r-48,0r0,-36r48,0r0,-48r36,0r0,48r49,0r0,36r-49,0","w":164},",":{"d":"21,54r0,-99r41,0r0,68","w":82},"-":{"d":"17,-86r0,-36r73,0r0,36r-73,0","w":106},".":{"d":"42,-49v14,0,25,11,25,25v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25","w":84},"\/":{"d":"38,27r-36,0r67,-310r36,0","w":107},"0":{"d":"71,-217v75,0,55,92,57,162v0,38,-21,58,-57,58v-36,0,-57,-20,-57,-58v2,-70,-19,-162,57,-162xm71,-31v10,0,20,-10,19,-22r0,-108v0,-12,-8,-22,-19,-22v-10,0,-20,10,-19,22r0,108v0,12,8,22,19,22","w":141},"1":{"d":"53,0r0,-170r-38,29r0,-43r38,-31r38,0r0,215r-38,0","w":119},"2":{"d":"69,-216v64,-3,65,77,35,117r-49,65r72,0r0,34r-116,0r0,-32v24,-44,69,-66,76,-127v1,-13,-7,-23,-18,-23v-17,0,-21,17,-19,37r-38,0v-4,-46,16,-69,57,-71","w":139},"3":{"d":"104,-93v22,14,23,44,22,82v-1,36,-22,57,-58,57v-40,0,-61,-26,-57,-73r38,0v-2,20,2,39,19,39v21,0,20,-23,20,-45v1,-28,-2,-48,-33,-44r0,-32v34,7,33,-25,30,-55v0,-11,-7,-18,-17,-18v-18,0,-18,19,-17,38r-38,0v-4,-45,16,-72,55,-72v64,0,72,95,36,123","w":140},"4":{"d":"120,-11r0,55r-38,0r0,-55r-72,0r0,-34r66,-181r37,0r-63,181r32,0r0,-46r38,0r0,46r19,0r0,34r-19,0","w":149},"5":{"d":"83,-129v51,0,47,54,47,107v0,41,-19,66,-58,66v-40,0,-61,-24,-57,-70r38,0v0,20,-1,42,19,40v30,-2,19,-53,19,-83v0,-15,-5,-25,-19,-26v-15,0,-20,12,-19,28r-36,0r0,-148r110,0r0,34r-76,0r0,69v6,-9,18,-17,32,-17","w":142},"6":{"d":"65,-153v53,-19,68,38,62,97v-4,37,-21,58,-57,59v-67,3,-66,-90,-47,-141r45,-118r39,0xm70,-31v27,0,19,-43,19,-71v-1,-13,-6,-24,-19,-24v-27,0,-19,44,-19,71v0,15,6,24,19,24","w":140},"7":{"d":"64,41r-38,0r67,-222r-44,0r0,34r-37,0r0,-68r119,0r0,32","w":142},"8":{"d":"107,-134v39,28,33,145,-35,137v-68,9,-75,-108,-36,-137v-36,-29,-28,-132,35,-125v64,-8,73,96,36,125xm72,-31v26,-2,19,-38,19,-65v0,-12,-7,-22,-19,-22v-21,0,-20,23,-20,44v0,20,0,44,20,43xm72,-150v18,0,18,-20,18,-38v0,-17,0,-37,-18,-37v-24,0,-18,32,-18,56v0,11,6,19,18,19"},"9":{"d":"70,-216v69,0,66,90,47,141r-45,118r-39,0r42,-104v-51,20,-69,-37,-62,-97v4,-36,20,-58,57,-58xm70,-88v27,-1,19,-43,19,-70v0,-15,-5,-24,-19,-24v-28,1,-19,42,-19,70v0,13,4,25,19,24","w":140},":":{"d":"50,-157v14,0,26,12,26,25v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25v0,-13,11,-25,25,-25xm50,-49v14,0,26,12,26,25v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25v0,-13,11,-25,25,-25","w":92},";":{"d":"30,54r0,-99r41,0r0,68xm50,-157v14,0,26,12,26,25v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25v0,-13,11,-25,25,-25","w":92},"<":{"d":"75,-85r76,75r-49,0r-93,-93r93,-92r49,0r-76,74r167,0r0,36r-167,0","w":258},"=":{"d":"16,-117r0,-37r133,0r0,37r-133,0xm16,-52r0,-37r133,0r0,37r-133,0","w":164},">":{"d":"157,-10r-49,0r76,-75r-167,0r0,-36r167,0r-76,-74r49,0r93,92","w":258},"?":{"d":"80,-258v59,-4,78,70,49,114v-13,20,-35,35,-29,72r-38,0v-10,-60,39,-65,41,-118v2,-19,-6,-33,-22,-34v-17,0,-24,15,-23,34r-38,0v1,-41,18,-65,60,-68xm81,-49v14,0,25,12,25,25v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25v0,-13,12,-25,26,-25","w":153},"@":{"d":"76,-256v62,-2,123,-6,123,59r0,197r-36,0r0,-14v-25,32,-83,15,-77,-39v6,-54,-14,-127,45,-123v12,0,24,6,30,14v1,-31,2,-63,-30,-62v-36,2,-76,-8,-76,32r0,143v-1,14,4,19,11,26r-28,28v-39,-35,-17,-134,-21,-202v-3,-39,22,-58,59,-59xm143,-31v31,0,14,-58,18,-89v1,-13,-7,-23,-18,-23v-32,2,-15,58,-19,90v-1,13,8,22,19,22","w":218},"A":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-194r-22,107r44,0","w":168},"B":{"d":"125,-134v22,7,27,31,27,58v0,80,-56,79,-130,76r0,-256r64,0v73,-14,86,96,39,122xm62,-36v34,2,50,-4,50,-40v0,-35,-16,-43,-50,-40r0,80xm62,-150v31,2,49,-4,49,-35v0,-33,-18,-37,-49,-35r0,70","w":169},"C":{"d":"149,-68v-3,43,-22,70,-66,71v-78,0,-62,-88,-68,-166v-6,-75,58,-124,113,-80v14,11,19,31,20,54r-40,0v-2,-18,-6,-34,-25,-34v-38,0,-28,49,-28,95v0,46,-9,88,28,95v19,-1,25,-15,25,-35r41,0","w":160},"D":{"d":"87,-256v77,0,68,84,68,162v0,54,-15,94,-68,94r-65,0r0,-256r65,0xm62,-36v63,8,53,-39,53,-93v0,-53,10,-99,-53,-91r0,184","w":169},"E":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0","w":142},"F":{"d":"62,-220r0,73r58,0r0,36r-58,0r0,111r-40,0r0,-256r107,0r0,36r-67,0","w":140},"G":{"d":"149,-139v2,71,5,142,-66,142v-78,0,-62,-88,-68,-166v-6,-76,59,-124,114,-79v13,11,19,31,20,54r-41,0v0,-20,-6,-34,-25,-35v-37,7,-28,49,-28,95v0,46,-9,88,28,95v31,-1,24,-41,25,-73r-25,0r0,-33r66,0","w":163},"H":{"d":"112,0r0,-112r-50,0r0,112r-40,0r0,-256r40,0r0,108r50,0r0,-108r40,0r0,256r-40,0","w":173},"I":{"d":"22,0r0,-256r40,0r0,256r-40,0","w":83},"J":{"d":"121,-67v6,65,-79,91,-120,49r28,-27v14,22,51,11,51,-22r0,-189r41,0r0,189","w":140},"K":{"d":"123,0r-42,-105r-19,39r0,66r-40,0r0,-256r40,0r0,120r56,-120r40,0r-51,106r59,150r-43,0","w":168},"L":{"d":"22,0r0,-256r40,0r0,220r67,0r0,36r-107,0","w":137},"M":{"d":"153,0r0,-160r-35,105r-22,0r-34,-103r0,158r-40,0r0,-256r36,0r50,134r49,-134r37,0r0,256r-41,0","w":215},"N":{"d":"122,0r-60,-152r0,152r-40,0r0,-256r36,0r60,152r0,-152r40,0r0,256r-36,0","w":179},"O":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95","w":166},"P":{"d":"86,-256v50,1,65,26,66,77v1,60,-27,84,-90,79r0,100r-40,0r0,-256r64,0xm62,-136v35,5,50,-8,50,-42v0,-34,-14,-48,-50,-42r0,84","w":165},"Q":{"d":"151,-163v0,46,4,99,-10,131r21,18r-18,22r-21,-17v-11,8,-21,12,-40,12v-78,0,-68,-87,-68,-166v0,-55,14,-96,68,-96v54,0,68,41,68,96xm55,-128v0,47,-10,100,37,93r-14,-11r19,-23r11,9v5,-17,3,-46,3,-68v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95","w":166},"R":{"d":"152,-181v-2,34,-6,55,-30,67r38,114r-42,0r-33,-105r-23,0r0,105r-40,0r0,-256v73,-3,136,-5,130,75xm62,-141v34,4,50,-7,50,-40v0,-32,-16,-44,-50,-39r0,79","w":172},"S":{"d":"79,-222v-34,0,-30,60,-3,67v39,10,76,26,69,84v17,83,-108,98,-129,35v-2,-8,-3,-19,-3,-33r40,0v-1,23,6,33,26,35v34,4,34,-58,14,-71v-33,-21,-86,-23,-78,-84v-11,-75,106,-94,125,-30v3,9,4,20,4,32r-41,0v1,-20,-4,-35,-24,-35","w":159},"T":{"d":"91,-220r0,220r-41,0r0,-220r-42,0r0,-36r126,0r0,36r-43,0","w":141},"U":{"d":"150,-63v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28v15,0,26,-11,25,-28r0,-195r40,0r0,193","w":169},"V":{"d":"99,0r-41,0r-57,-256r45,0r32,194r34,-194r44,0","w":157},"W":{"d":"207,0r-42,0r-36,-195r-37,195r-42,0r-49,-256r45,0r25,194r35,-194r45,0r35,194r25,-194r45,0","w":257},"X":{"d":"107,0r-29,-92r-30,92r-44,0r51,-133r-47,-123r44,0r26,85r25,-85r45,0r-48,123r52,133r-45,0","w":155},"Y":{"d":"90,-100r0,100r-40,0r0,-100r-50,-156r45,0r25,101r25,-101r45,0","w":140},"Z":{"d":"11,0r0,-30r70,-190r-66,0r0,-36r108,0r0,30r-70,190r70,0r0,36r-112,0","w":134},"[":{"d":"19,27r0,-310r72,0r0,34r-34,0r0,242r34,0r0,34r-72,0","w":101},"\\":{"d":"69,27r-67,-310r36,0r67,310r-36,0","w":107},"]":{"d":"10,27r0,-34r34,0r0,-242r-34,0r0,-34r72,0r0,310r-72,0","w":101},"^":{"d":"113,-156r-29,-64r-30,64r-38,0r51,-102r33,0r50,102r-37,0","w":166},"_":{"d":"0,55r0,-28r165,0r0,28r-165,0","w":164},"`":{"d":"62,-211r-32,-50r32,0r26,50r-26,0"},"a":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26"},"b":{"d":"87,-193v48,3,47,45,47,98v-1,52,2,98,-47,98v-14,0,-25,-8,-32,-17r0,14r-36,0r0,-256r38,0r0,79v6,-9,16,-16,30,-16xm76,-31v32,0,19,-64,19,-99v0,-17,-5,-28,-19,-29v-35,5,-19,69,-19,105v0,14,6,23,19,23","w":146},"c":{"d":"128,-56v-2,35,-18,59,-57,59v-52,0,-59,-45,-58,-98v-13,-73,42,-125,98,-84v12,9,16,26,17,45r-38,0v0,-13,-5,-25,-19,-25v-32,0,-19,63,-19,99v0,17,4,29,19,29v12,0,20,-11,19,-25r38,0","w":138},"d":{"d":"60,-193v14,0,24,7,30,16r0,-79r38,0r0,256r-37,0r0,-14v-6,9,-18,17,-31,17v-49,0,-46,-46,-47,-98v0,-53,-1,-98,47,-98xm71,-31v36,-5,14,-70,19,-105v2,-14,-6,-23,-19,-23v-32,0,-19,64,-19,99v0,17,4,28,19,29","w":146},"e":{"d":"71,-193v56,-1,60,52,58,109r-78,0v1,26,-2,53,21,53v14,0,17,-13,19,-25r38,0v-2,34,-20,59,-57,59v-61,0,-58,-63,-58,-123v0,-43,16,-72,57,-73xm91,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0","w":141},"f":{"d":"64,-161r0,161r-38,0r0,-161r-19,0r0,-29r19,0v-3,-47,18,-70,65,-68r0,34v-22,0,-29,12,-27,34r27,0r0,29r-27,0","w":97},"g":{"d":"61,-193v14,0,24,7,30,16r0,-13r37,0r0,194v12,69,-90,87,-110,30v-2,-7,-4,-14,-4,-22r38,0v-1,15,6,24,19,24v26,1,18,-36,19,-62v-8,10,-13,14,-29,14v-46,-2,-48,-40,-48,-90v0,-51,2,-91,48,-91xm71,-45v34,0,19,-59,19,-91v0,-12,-6,-23,-19,-23v-30,0,-19,55,-19,88v0,16,5,26,19,26","w":146},"h":{"d":"57,-177v24,-32,86,-11,75,40r0,137r-38,0r0,-136v1,-13,-7,-22,-18,-22v-12,0,-19,9,-19,22r0,136r-38,0r0,-256r38,0r0,79","w":150},"i":{"d":"19,0r0,-185r38,0r0,185r-38,0xm38,-261v13,0,24,11,24,24v0,13,-11,25,-24,25v-13,0,-24,-12,-24,-25v0,-13,11,-24,24,-24","w":75},"j":{"d":"-7,32v19,0,25,-7,26,-25r0,-192r38,0v-3,73,7,158,-5,222v-10,19,-30,30,-59,30r0,-35xm38,-261v13,0,24,11,24,24v0,13,-11,25,-24,25v-13,0,-24,-12,-24,-25v0,-13,11,-24,24,-24","w":75},"k":{"d":"105,0r-32,-80r-16,26r0,54r-38,0r0,-256r38,0r0,147r48,-81r40,0r-47,76r49,114r-42,0","w":149},"l":{"d":"82,0v-41,0,-64,-16,-64,-58r0,-198r38,0r0,196v0,17,9,26,26,26r0,34","w":87},"m":{"d":"124,-173v23,-34,84,-23,84,36r0,137r-38,0r0,-136v1,-13,-7,-22,-19,-22v-11,0,-20,10,-19,22r0,136r-38,0r0,-136v1,-13,-7,-22,-18,-22v-12,0,-19,9,-19,22r0,136r-38,0r0,-190r36,0r0,14v14,-23,57,-20,69,3","w":226},"n":{"d":"55,-176v27,-33,77,-14,77,39r0,137r-38,0r0,-136v1,-13,-7,-22,-18,-22v-12,0,-19,9,-19,22r0,136r-38,0r0,-190r36,0r0,14","w":150},"o":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29","w":142},"p":{"d":"87,-193v48,2,47,45,47,98v0,53,1,96,-47,98v-13,0,-24,-6,-30,-15r0,79r-38,0r0,-257r36,0r0,14v7,-8,18,-17,32,-17xm76,-31v32,0,19,-64,19,-99v0,-17,-5,-28,-19,-29v-35,5,-19,69,-19,105v0,14,6,23,19,23","w":146},"q":{"d":"60,-193v14,0,25,8,31,17r0,-14r37,0r0,257r-38,0r0,-79v-6,9,-17,15,-30,15v-48,-2,-47,-45,-47,-98v0,-53,-1,-95,47,-98xm71,-31v36,-5,14,-70,19,-105v2,-14,-6,-23,-19,-23v-32,0,-19,64,-19,99v0,17,4,28,19,29","w":146},"r":{"d":"102,-156v-73,-9,-37,97,-45,156r-38,0r0,-190r36,0r0,20v10,-12,26,-23,47,-23r0,37","w":107},"s":{"d":"68,-159v-25,0,-23,34,-2,42v30,11,61,20,61,62v0,65,-94,77,-113,23v-3,-7,-4,-14,-4,-23r38,0v0,14,6,23,20,23v28,0,26,-39,2,-45v-27,-13,-59,-19,-59,-59v0,-62,89,-76,109,-25v3,7,5,15,5,25r-38,0v1,-14,-8,-23,-19,-23","w":137},"t":{"d":"91,0v-41,1,-65,-17,-65,-58r0,-103r-19,0r0,-29r19,0r0,-48r38,0r0,48r27,0r0,29r-27,0r0,101v0,17,9,26,27,26r0,34","w":98},"u":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22","w":150},"v":{"d":"89,0r-40,0r-48,-190r43,0r25,130r25,-130r42,0","w":137},"w":{"d":"164,0r-38,0r-23,-123r-22,123r-38,0r-42,-190r43,0r20,130r23,-130r33,0r24,130r19,-130r43,0","w":207},"x":{"d":"95,0r-25,-59r-25,59r-42,0r45,-96r-43,-94r43,0r22,58r23,-58r42,0r-43,94r46,96r-43,0","w":140},"y":{"d":"82,24v-6,33,-32,43,-70,43r0,-34v25,1,33,-13,37,-33r-48,-190r43,0r25,130r25,-130r42,0","w":137},"z":{"d":"9,0r0,-29r56,-127r-51,0r0,-34r94,0r0,29r-56,127r56,0r0,34r-99,0","w":117},"{":{"d":"56,-128v56,13,-17,127,55,120r0,35v-43,3,-67,-11,-70,-51v-3,-35,19,-95,-31,-87r0,-34v77,8,-26,-159,101,-138r0,34v-67,-13,-1,103,-55,121","w":120},"|":{"d":"40,27r0,-310r38,0r0,310r-38,0","w":118},"}":{"d":"80,-233v3,35,-20,96,31,88r0,34v-48,-10,-29,50,-31,87v-3,40,-27,54,-70,51r0,-35v17,1,31,0,31,-18v0,-40,-10,-95,24,-102v-35,-6,-24,-63,-24,-102v0,-18,-13,-20,-31,-19r0,-34v43,-3,67,10,70,50","w":120},"~":{"d":"156,-103v-14,12,-23,23,-45,23v-30,1,-56,-32,-79,-4r-24,-23v14,-13,24,-24,46,-24v29,0,58,32,79,5","w":164},"\u00c4":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-194r-22,107r44,0xm54,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm115,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":168},"\u00c5":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-347v24,0,38,15,38,37v0,23,-15,38,-38,38v-23,0,-37,-16,-37,-38v0,-21,15,-38,37,-37xm84,-194r-22,107r44,0xm84,-293v10,0,17,-7,17,-17v0,-10,-7,-17,-17,-17v-9,0,-16,8,-16,17v0,9,7,17,16,17","w":168},"\u00c7":{"d":"83,-33v19,-1,25,-15,25,-35r41,0v-3,43,-22,70,-66,71v-78,0,-62,-88,-68,-166v-6,-75,58,-124,113,-80v14,11,19,31,20,54r-40,0v-2,-18,-6,-34,-25,-34v-38,0,-28,49,-28,95v0,46,-9,88,28,95xm77,70r-27,0r22,-56r24,0","w":160},"\u00c9":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0xm87,-274r-27,0r26,-50r32,0","w":142},"\u00d1":{"d":"122,0r-60,-152r0,152r-40,0r0,-256r36,0r60,152r0,-152r40,0r0,256r-36,0xm41,-296v17,-24,47,-15,70,-6v8,0,10,-2,16,-8r17,17v-10,10,-17,17,-32,17v-20,0,-39,-24,-55,-4","w":179},"\u00d6":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm53,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm114,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":166},"\u00dc":{"d":"85,-33v15,0,26,-11,25,-28r0,-195r40,0r0,193v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28xm54,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm115,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":169},"\u00e1":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26xm81,-211r-26,0r26,-50r32,0"},"\u00e0":{"d":"68,-193v85,-3,50,116,57,193r-36,0r0,-16v-23,37,-86,15,-80,-39v5,-42,30,-59,78,-56v0,0,4,-48,-18,-48v-13,0,-19,10,-19,23r-38,0v1,-35,22,-56,56,-57xm67,-31v23,1,20,-29,20,-53v-25,-2,-40,5,-40,27v0,18,7,26,20,26xm61,-211r-31,-50r32,0r25,50r-26,0"},"\u00e2":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm91,-211r-21,-30r-21,30r-30,0r36,-50r30,0r36,50r-30,0xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26"},"\u00e4":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26xm39,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm100,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-19,-9,-19,-20v0,-11,8,-19,19,-19"},"\u00e3":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm20,-234v16,-24,48,-16,70,-5v8,-1,10,-3,16,-9r17,17v-17,24,-48,16,-70,5v-9,1,-10,3,-17,9xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26"},"\u00e5":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm70,-286v22,0,38,15,38,37v0,23,-15,38,-38,38v-23,0,-38,-15,-38,-38v0,-21,17,-37,38,-37xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26xm70,-232v10,0,16,-7,16,-17v0,-10,-7,-16,-16,-16v-9,0,-16,6,-16,16v0,10,6,17,16,17"},"\u00e7":{"d":"71,-31v12,0,20,-11,19,-25r38,0v-2,35,-18,59,-57,59v-52,0,-59,-45,-58,-98v-13,-73,42,-125,98,-84v12,9,16,26,17,45r-38,0v0,-13,-5,-25,-19,-25v-32,0,-19,63,-19,99v0,17,4,29,19,29xm68,70r-27,0r22,-56r24,0","w":138},"\u00e9":{"d":"71,-193v56,-1,60,52,58,109r-78,0v1,26,-2,53,21,53v14,0,17,-13,19,-25r38,0v-2,34,-20,59,-57,59v-61,0,-58,-63,-58,-123v0,-43,16,-72,57,-73xm91,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0xm82,-211r-27,0r26,-50r32,0","w":141},"\u00e8":{"d":"89,-193v56,-1,58,53,58,109r-79,0v1,26,-2,53,21,53v13,0,18,-11,19,-25r38,0v-1,35,-20,59,-57,59v-61,1,-58,-63,-58,-123v0,-44,17,-72,58,-73xm108,-112v5,-31,-12,-61,-34,-39v-5,9,-6,24,-6,39r40,0xm62,-211r-32,-50r32,0r26,50r-26,0"},"\u00ea":{"d":"71,-193v56,-1,60,52,58,109r-78,0v1,26,-2,53,21,53v14,0,17,-13,19,-25r38,0v-2,34,-20,59,-57,59v-61,0,-58,-63,-58,-123v0,-43,16,-72,57,-73xm93,-211r-21,-30r-22,30r-29,0r36,-50r30,0r35,50r-29,0xm91,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0","w":141},"\u00eb":{"d":"71,-193v56,-1,60,52,58,109r-78,0v1,26,-2,53,21,53v14,0,17,-13,19,-25r38,0v-2,34,-20,59,-57,59v-61,0,-58,-63,-58,-123v0,-43,16,-72,57,-73xm91,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0xm41,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm102,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19","w":141},"\u00ed":{"d":"19,0r0,-190r38,0r0,190r-38,0xm49,-211r-27,0r26,-50r32,0","w":75},"\u00ec":{"d":"19,0r0,-190r38,0r0,190r-38,0xm29,-211r-32,-50r33,0r25,50r-26,0","w":75},"\u00ee":{"d":"19,0r0,-190r38,0r0,190r-38,0xm59,-211r-21,-30r-21,30r-30,0r36,-50r30,0r36,50r-30,0","w":75},"\u00ef":{"d":"19,0r0,-190r38,0r0,190r-38,0xm68,-252v12,0,21,8,21,19v0,11,-10,20,-21,20v-11,0,-19,-9,-19,-20v0,-11,8,-19,19,-19xm8,-252v11,0,19,8,19,19v0,11,-8,20,-19,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19","w":75},"\u00f1":{"d":"55,-176v27,-33,77,-14,77,39r0,137r-38,0r0,-136v1,-13,-7,-22,-18,-22v-12,0,-19,9,-19,22r0,136r-38,0r0,-190r36,0r0,14xm26,-234v16,-24,48,-16,70,-5v8,-1,10,-3,16,-9r17,17v-17,24,-48,16,-70,5v-9,1,-10,3,-17,9","w":150},"\u00f3":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29xm82,-211r-27,0r26,-50r32,0","w":142},"\u00f2":{"d":"89,-193v51,0,58,44,58,98v0,53,-5,98,-58,98v-53,0,-59,-44,-59,-98v0,-54,7,-98,59,-98xm89,-31v32,0,19,-63,19,-99v0,-17,-4,-29,-19,-29v-33,0,-20,63,-20,99v0,17,5,29,20,29xm62,-211r-32,-50r32,0r26,50r-26,0"},"\u00f4":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29xm93,-211r-21,-30r-22,30r-29,0r36,-50r30,0r35,50r-29,0","w":142},"\u00f6":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29xm41,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm102,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19","w":142},"\u00f5":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29xm21,-234v17,-23,48,-16,70,-5v8,-1,10,-3,16,-9r17,17v-16,24,-48,16,-70,5v-9,1,-10,3,-17,9","w":142},"\u00fa":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22xm89,-211r-26,0r26,-50r32,0","w":150},"\u00f9":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22xm63,-211r-31,-50r32,0r26,50r-27,0","w":150},"\u00fb":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22xm97,-211r-22,-30r-21,30r-29,0r35,-50r30,0r36,50r-29,0","w":150},"\u00fc":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22xm44,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm105,-252v12,0,20,7,20,19v0,12,-9,20,-20,20v-11,0,-19,-9,-19,-20v0,-11,8,-19,19,-19","w":150},"\u00b0":{"d":"74,-261v36,0,58,24,58,58v0,34,-22,58,-58,58v-36,0,-59,-24,-59,-58v0,-34,23,-58,59,-58xm74,-178v14,0,25,-12,25,-25v0,-13,-11,-25,-25,-25v-14,0,-25,11,-25,25v0,14,11,25,25,25","w":147},"\u00a2":{"d":"130,-93v-2,29,-15,49,-42,54r0,39r-29,0r0,-39v-40,-5,-44,-46,-44,-92v0,-47,5,-86,44,-92r0,-33r29,0r0,33v27,3,40,27,42,55r-38,0v0,-13,-6,-23,-19,-23v-33,2,-16,59,-19,94v-1,17,5,26,19,27v12,0,20,-10,19,-23r38,0","w":141},"\u00a3":{"d":"126,-212v-15,-21,-51,-9,-51,22r0,44r28,0r0,29r-28,0r0,81r79,0r0,36r-120,0r0,-117r-22,0r0,-29r22,0v-20,-89,56,-144,120,-93","w":165},"\u00a7":{"d":"77,-223v-25,0,-23,38,-2,43v42,11,71,35,63,100v-3,21,-11,36,-27,43v44,22,24,108,-35,102v-35,-4,-57,-22,-58,-57r39,0v0,13,6,22,19,22v28,1,24,-39,2,-44v-43,-10,-68,-40,-61,-100v3,-22,11,-34,27,-42v-44,-21,-24,-104,33,-100v34,2,57,20,57,55r-38,0v1,-13,-8,-22,-19,-22xm77,-55v19,-1,23,-19,23,-42v0,-22,-2,-42,-23,-42v-20,0,-23,19,-23,42v0,21,3,42,23,42","w":154},"\u00b6":{"d":"13,-180v0,-48,12,-76,53,-76r132,0r0,323r-39,0r0,-287r-36,0r0,287r-38,0r0,-170v-54,4,-72,-22,-72,-77","w":216},"\u00df":{"d":"115,-142v36,22,31,133,-15,139v-8,1,-16,3,-24,3r0,-34v31,2,22,-41,22,-69v0,-14,-8,-23,-22,-22r0,-32v23,2,20,-25,20,-49v0,-11,-8,-19,-20,-19v-12,0,-20,9,-19,23r0,202r-38,0r0,-201v0,-39,21,-54,57,-58v62,-7,77,87,39,117","w":149},"\u00ae":{"d":"152,-258v78,0,130,52,130,130v0,78,-52,130,-130,130v-78,0,-130,-52,-130,-130v0,-78,52,-130,130,-130xm152,-21v64,0,105,-43,105,-107v0,-65,-41,-107,-105,-107v-64,0,-105,42,-105,107v0,65,40,107,105,107xm156,-199v42,-6,46,63,20,79r20,63r-24,0r-18,-57r-13,0r0,57r-23,0r0,-142r38,0xm141,-136v22,3,31,-6,27,-30v1,-13,-14,-11,-27,-11r0,41","w":303},"\u00a9":{"d":"152,-258v78,0,130,52,130,130v0,78,-52,130,-130,130v-78,0,-130,-52,-130,-130v0,-78,52,-130,130,-130xm152,-21v64,0,105,-43,105,-107v0,-65,-41,-107,-105,-107v-64,0,-105,42,-105,107v0,65,40,107,105,107xm153,-77v10,0,14,-8,13,-20r24,0v-1,24,-14,42,-37,42v-42,0,-38,-50,-38,-90v0,-44,33,-72,63,-46v7,7,11,18,11,32r-23,0v1,-12,-3,-21,-13,-20v-19,2,-15,28,-15,51v0,22,-5,49,15,51","w":303},"\u00b4":{"d":"82,-211r-27,0r26,-50r32,0"},"\u00a8":{"d":"41,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm102,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19"},"\u00c6":{"d":"122,0r0,-53r-57,0r-19,53r-44,0r94,-256r134,0r0,36r-68,0r0,73r58,0r0,36r-58,0r0,75r68,0r0,36r-108,0xm122,-220r-45,130r45,0r0,-130","w":243},"\u00d8":{"d":"135,-235v23,30,14,90,17,142v4,67,-38,114,-100,89r-7,20r-27,0r14,-37v-23,-29,-13,-90,-17,-142v-5,-68,37,-114,99,-89r8,-20r26,0xm83,-223v-43,0,-22,69,-28,123v0,7,1,13,2,18r44,-133v-4,-5,-10,-8,-18,-8xm83,-33v47,0,22,-83,27,-141r-44,133v4,5,9,8,17,8","w":164},"\u00b1":{"d":"100,-114r0,48r-36,0r0,-48r-48,0r0,-36r48,0r0,-48r36,0r0,48r49,0r0,36r-49,0xm16,-5r0,-36r133,0r0,36r-133,0","w":164},"\u00a5":{"d":"103,-147r22,0r0,29r-31,0v-3,10,-6,19,-5,32r36,0r0,29r-36,0r0,57r-38,0r0,-57r-36,0r0,-29r36,0v1,-13,-2,-22,-5,-32r-31,0r0,-29r22,0r-34,-109r42,0r25,101r25,-101r42,0","w":140},"\u00b5":{"d":"75,-31v11,0,19,-9,19,-22r0,-137r38,0r0,190r-37,0r0,-14v-7,10,-26,22,-40,14r0,67r-37,0r0,-257r38,0r0,137v0,12,8,22,19,22","w":151},"\u03bc":{"d":"75,-31v11,0,19,-9,19,-22r0,-137r38,0r0,190r-37,0r0,-14v-7,10,-26,22,-40,14r0,67r-37,0r0,-257r38,0r0,137v0,12,8,22,19,22","w":151},"\u00aa":{"d":"58,-258v66,-1,41,91,46,152r-29,0r0,-12v-21,26,-70,12,-66,-32v3,-32,25,-47,63,-44v-1,-16,4,-36,-14,-36v-11,0,-15,8,-15,18r-31,0v-1,-30,18,-46,46,-46xm57,-131v17,0,16,-22,15,-41v-32,-10,-43,38,-15,41","w":119},"\u00ba":{"d":"59,-258v43,0,48,34,48,77v1,43,-5,77,-48,77v-42,0,-47,-35,-47,-77v0,-42,5,-77,47,-77xm59,-131v24,-4,16,-45,16,-74v0,-12,-4,-27,-16,-25v-24,3,-15,46,-15,74v0,13,4,24,15,25","w":118},"\u00e6":{"d":"110,-180v49,-36,94,6,94,69r0,27r-78,0v1,25,-2,51,20,53v12,0,19,-12,20,-25r37,0v8,60,-80,78,-104,34v-19,42,-89,29,-89,-33v0,-44,30,-59,78,-56v0,-22,4,-50,-19,-48v-13,0,-18,10,-18,23r-38,0v-5,-51,66,-75,95,-40v1,-2,1,-3,2,-4xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26xm166,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0","w":216},"\u00f8":{"d":"71,-193v10,0,21,3,28,6r8,-19r25,0r-15,35v13,16,12,48,13,76v0,52,-6,100,-59,98v-11,0,-20,-2,-27,-6r-8,19r-26,0r15,-35v-12,-16,-11,-48,-12,-76v-2,-54,7,-99,58,-98xm85,-154v-36,-20,-33,24,-34,59r1,22xm58,-35v39,18,33,-32,34,-72v0,-4,-1,-7,-1,-9","w":141},"\u00bf":{"d":"73,35v16,0,23,-17,22,-35r38,0v0,42,-19,67,-60,69v-59,3,-76,-71,-49,-115v13,-21,35,-35,30,-72r38,0v10,61,-40,65,-42,118v-2,20,6,35,23,35xm73,-191v14,0,25,11,25,25v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25","w":153},"\u00a1":{"d":"23,67r0,-185r38,0r0,185r-38,0xm42,-191v14,0,25,11,25,25v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25","w":92},"\u00ac":{"d":"110,-51r0,-40r-92,0r0,-36r129,0r0,76r-37,0","w":164},"\u00ab":{"d":"9,-99r58,-90r0,57r-22,33r22,33r0,56xm75,-99r57,-90r0,57r-22,33r22,33r0,56","w":149},"\u00bb":{"d":"82,-10r0,-56r22,-33r-22,-33r0,-57r58,90xm17,-10r0,-56r22,-33r-22,-33r0,-57r58,90","w":149},"\u00a0":{"w":64},"\u00c0":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-194r-22,107r44,0xm74,-274r-31,-50r32,0r26,50r-27,0","w":168},"\u00c3":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm137,-293v-20,37,-64,-9,-87,13r-16,-16v17,-24,46,-16,70,-6v8,0,10,-2,16,-8xm84,-194r-22,107r44,0","w":168},"\u00d5":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm136,-293v-20,37,-64,-9,-87,13r-16,-16v17,-24,46,-16,70,-6v8,0,10,-2,16,-8","w":166},"\u00f7":{"d":"16,-82r0,-37r133,0r0,37r-133,0xm82,-192v14,0,26,12,26,25v0,13,-13,26,-26,26v-13,0,-25,-12,-25,-26v0,-14,11,-25,25,-25xm82,-60v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-11,-25,-25v0,-14,12,-26,25,-26","w":164},"\u00ff":{"d":"82,24v-6,33,-32,43,-70,43r0,-34v25,1,33,-13,37,-33r-48,-190r43,0r25,130r25,-130r42,0xm39,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-8,-20,-20v0,-12,8,-19,20,-19xm100,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19","w":137},"\u00a4":{"d":"165,-68v-3,42,-21,71,-65,71v-51,0,-67,-35,-68,-88r-20,0r0,-29r20,0r0,-29r-20,0r0,-29r20,0v-9,-72,62,-112,113,-71v14,11,19,31,20,54r-40,0v7,-37,-46,-47,-50,-10v-3,7,-2,18,-2,27r38,0r0,29r-39,0r0,29r39,0r0,29r-38,0v1,29,1,52,27,52v18,0,26,-15,25,-35r40,0","w":179},"\u00b7":{"d":"50,-139v19,0,31,12,31,31v0,44,-62,36,-62,0v0,-17,12,-31,31,-31","w":100},"\u00c2":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm106,-274r-22,-29r-21,29r-29,0r35,-50r30,0r36,50r-29,0xm84,-194r-22,107r44,0","w":168},"\u00ca":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0xm98,-274r-21,-29r-22,29r-29,0r36,-50r30,0r35,50r-29,0","w":142},"\u00c1":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-194r-22,107r44,0xm94,-274r-26,0r26,-50r32,0","w":168},"\u00cb":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0xm46,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm107,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":142},"\u00c8":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0xm66,-274r-31,-50r32,0r26,50r-27,0","w":142},"\u00cd":{"d":"22,0r0,-256r40,0r0,256r-40,0xm52,-274r-26,0r25,-50r33,0","w":83},"\u00ce":{"d":"22,0r0,-256r40,0r0,256r-40,0xm63,-274r-21,-29r-21,29r-30,0r36,-50r30,0r36,50r-30,0","w":83},"\u00cf":{"d":"22,0r0,-256r40,0r0,256r-40,0xm11,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm72,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-19,-9,-19,-20v0,-11,8,-20,19,-20","w":83},"\u00cc":{"d":"22,0r0,-256r40,0r0,256r-40,0xm32,-274r-32,-50r32,0r26,50r-26,0","w":83},"\u00d3":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm94,-274r-27,0r26,-50r32,0","w":166},"\u00d4":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm105,-274r-22,-29r-21,29r-29,0r35,-50r30,0r36,50r-29,0","w":166},"\u00d2":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm73,-274r-31,-50r32,0r26,50r-27,0","w":166},"\u00da":{"d":"85,-33v15,0,26,-11,25,-28r0,-195r40,0r0,193v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28xm96,-274r-27,0r26,-50r32,0","w":169},"\u00db":{"d":"85,-33v15,0,26,-11,25,-28r0,-195r40,0r0,193v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28xm107,-274r-22,-29r-21,29r-29,0r35,-50r30,0r36,50r-29,0","w":169},"\u00d9":{"d":"85,-33v15,0,26,-11,25,-28r0,-195r40,0r0,193v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28xm75,-274r-31,-50r32,0r26,50r-27,0","w":169},"\u00af":{"d":"28,-220r0,-25r88,0r0,25r-88,0"},"\u00b8":{"d":"68,70r-27,0r22,-56r24,0"},"\u00d0":{"d":"93,-256v78,-1,68,84,68,162v0,55,-14,93,-68,94r-65,0r0,-113r-19,0r0,-32r19,0r0,-111r65,0xm68,-36v62,7,53,-38,53,-93v0,-55,9,-99,-53,-91r0,75r25,0r0,32r-25,0r0,77","w":176},"\u00f0":{"d":"13,-87v0,-60,15,-107,69,-85r-10,-33r-27,0r0,-28r18,0r-8,-23r38,0r8,23r25,0r0,28r-17,0v20,56,53,206,-37,208v-50,1,-59,-40,-59,-90xm72,-31v23,-3,20,-29,20,-57v0,-27,5,-57,-20,-57v-26,0,-21,29,-21,57v0,28,-4,54,21,57","w":144}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * 2000 Albert-Jan Pool, published by Fontshop International for the FontFont
 * library.
 * 
 * Manufacturer:
 * Albert-Jan Pool, published by Fontshop International for the FontFont library
 */
Cufon.registerFont({"w":143,"face":{"font-family":"DINCondBoldAlternate","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 6 4 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"3","bbox":"-13 -347.042 282 70","underline-thickness":"27.72","underline-position":"-14.04","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":64},"\u00dd":{"d":"90,-100r0,100r-40,0r0,-100r-50,-156r45,0r25,101r25,-101r45,0xm80,-274r-26,0r26,-50r32,0","w":140},"\u00fd":{"d":"82,24v-6,33,-32,43,-70,43r0,-34v25,1,33,-13,37,-33r-48,-190r43,0r25,130r25,-130r42,0xm80,-211r-27,0r26,-50r32,0","w":137},"\u00de":{"d":"62,-208v62,-4,90,17,90,78v0,60,-27,84,-90,79r0,51r-40,0r0,-256r40,0r0,48xm62,-88v36,5,50,-8,50,-42v0,-33,-14,-46,-50,-41r0,83","w":165},"\u00fe":{"d":"88,-193v47,3,47,46,47,98v0,51,1,98,-47,98v-13,0,-25,-6,-31,-15r0,79r-38,0r0,-323r37,0r0,80v6,-9,18,-18,32,-17xm76,-31v26,0,20,-34,20,-64v0,-30,5,-61,-20,-64v-35,5,-19,69,-19,105v0,14,6,23,19,23","w":147},"\u00bd":{"d":"109,0r-29,0r88,-256r30,0xm225,-156v41,-3,51,42,32,71r-42,64r53,0r0,21r-83,0r0,-20v18,-33,47,-55,55,-99v1,-9,-7,-15,-15,-15v-14,-1,-15,12,-14,26r-28,0v-3,-33,14,-46,42,-48xm49,-103r0,-125r-27,17r0,-28v14,-9,27,-21,54,-17r0,153r-27,0","w":282},"\u00bc":{"d":"109,0r-29,0r88,-256r30,0xm258,-23r0,23r-28,0r0,-23r-52,0r0,-21r39,-110r27,0r-38,110r24,0r0,-25r28,0r0,25r12,0r0,21r-12,0xm49,-103r0,-125r-27,17r0,-28v14,-9,27,-21,54,-17r0,153r-27,0","w":282},"\u00b9":{"d":"49,-103r0,-125r-27,17r0,-28v14,-9,27,-21,54,-17r0,153r-27,0","w":114},"\u00be":{"d":"109,0r-29,0r88,-256r30,0xm81,-183v33,17,21,87,-25,82v-28,-3,-44,-14,-42,-45r27,0v-7,26,28,33,30,10v1,-21,2,-41,-24,-37r0,-20v21,3,25,-10,23,-32v-2,-17,-29,-15,-28,3r0,9r-27,0v-3,-32,14,-42,41,-45v44,-6,56,60,25,75xm258,-23r0,23r-28,0r0,-23r-53,0r0,-21r40,-110r27,0r-38,110r24,0r0,-25r28,0r0,25r12,0r0,21r-12,0","w":282},"\u00b3":{"d":"81,-183v33,17,21,87,-25,82v-28,-3,-44,-14,-42,-45r27,0v-7,26,28,33,30,10v1,-21,2,-41,-24,-37r0,-20v21,3,25,-10,23,-32v-2,-17,-29,-15,-28,3r0,9r-27,0v-3,-32,14,-42,41,-45v44,-6,56,60,25,75","w":114},"\u00b2":{"d":"57,-258v40,-2,52,41,32,70r-43,64r53,0r0,21r-83,0r0,-20r54,-84v4,-12,2,-30,-13,-30v-14,0,-16,12,-15,27r-27,0v-3,-34,13,-46,42,-48","w":114},"\u00a6":{"d":"40,-158r0,-124r38,0r0,124r-38,0xm40,26r0,-125r38,0r0,125r-38,0","w":118},"\u00d7":{"d":"124,-37r-42,-41r-41,41r-25,-24r42,-42r-42,-42r25,-24r41,41r42,-41r25,24r-42,42r42,42","w":164},"!":{"d":"31,-72r0,-184r38,0r0,184r-38,0xm50,-49v14,0,26,12,26,25v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25v0,-13,11,-25,25,-25","w":92},"\"":{"d":"26,-184r0,-72r37,0r0,72r-37,0xm95,-184r0,-72r36,0r0,72r-36,0","w":157},"#":{"d":"172,-154r-7,46r26,0r0,36r-32,0r-10,72r-40,0r11,-72r-39,0r-10,72r-40,0r10,-72r-24,0r0,-36r30,0r7,-46r-26,0r0,-36r31,0r10,-66r40,0r-10,66r39,0r9,-66r40,0r-10,66r25,0r0,36r-30,0xm94,-154r-7,46r38,0r7,-46r-38,0","w":218},"$":{"d":"80,-222v-34,0,-30,60,-3,67v40,10,70,27,70,84v0,42,-14,66,-49,72r0,40r-35,0r0,-40v-35,-6,-51,-27,-49,-70r40,0v-1,23,6,34,26,35v39,1,32,-70,2,-78v-37,-10,-69,-24,-66,-77v2,-38,17,-59,47,-67r0,-34r35,0r0,33v33,6,47,31,47,70r-41,0v1,-20,-4,-35,-24,-35","w":161},"%":{"d":"201,-131v48,0,49,43,46,91v-1,28,-19,41,-46,43v-46,1,-49,-43,-46,-91v1,-27,17,-43,46,-43xm63,-259v46,-2,45,43,45,91v0,29,-19,41,-45,43v-46,1,-48,-43,-46,-91v1,-28,19,-42,46,-43xm102,0r-29,0r89,-256r30,0xm63,-153v23,-1,11,-40,14,-62v1,-10,-5,-16,-14,-16v-25,0,-12,39,-15,62v-1,11,6,16,15,16xm201,-25v23,-1,11,-40,14,-62v1,-10,-5,-17,-14,-17v-24,0,-12,40,-15,63v-1,11,6,16,15,16","w":263},"&":{"d":"167,-135v-1,32,-9,60,-22,81r34,54r-40,0r-14,-23v-30,44,-118,27,-113,-40v3,-36,19,-55,38,-77v-13,-20,-27,-34,-27,-62v0,-35,19,-57,52,-57v34,0,50,21,51,54v1,34,-14,52,-32,70r30,48v5,-12,10,-31,11,-48r32,0xm69,-109v-35,20,-21,99,23,72v5,-3,9,-8,14,-15xm75,-165v16,-11,28,-55,0,-60v-30,4,-14,48,0,60","w":179},"'":{"d":"26,-184r0,-72r37,0r0,72r-37,0","w":88},"(":{"d":"55,-45v0,31,11,40,26,53r-26,26v-19,-19,-38,-38,-38,-77r2,-192v4,-26,22,-40,36,-55r26,25v-15,14,-26,23,-26,54r0,166","w":95},")":{"d":"41,-290v19,20,37,37,37,77r-1,191v-5,24,-21,41,-36,56r-26,-26v14,-13,25,-23,25,-53r0,-166v1,-30,-12,-40,-25,-54","w":95},"*":{"d":"121,-149r-34,-21r2,45r-28,0r2,-45r-34,21r-14,-23r36,-19r-36,-18r14,-24r34,21r-2,-45r28,0r-2,45r34,-21r14,24r-36,18r36,19","w":150},"+":{"d":"100,-86r0,49r-36,0r0,-49r-48,0r0,-36r48,0r0,-48r36,0r0,48r49,0r0,36r-49,0","w":164},",":{"d":"21,54r0,-99r41,0r0,68","w":82},"-":{"d":"17,-86r0,-36r73,0r0,36r-73,0","w":106},".":{"d":"42,-49v14,0,25,11,25,25v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25","w":84},"\/":{"d":"38,27r-36,0r67,-310r36,0","w":107},"0":{"d":"71,-217v75,0,55,92,57,162v0,38,-21,58,-57,58v-36,0,-57,-20,-57,-58v2,-70,-19,-162,57,-162xm71,-31v10,0,20,-10,19,-22r0,-108v0,-12,-8,-22,-19,-22v-10,0,-20,10,-19,22r0,108v0,12,8,22,19,22","w":141},"1":{"d":"53,0r0,-170r-38,29r0,-43r38,-31r38,0r0,215r-38,0","w":119},"2":{"d":"69,-216v64,-3,65,77,35,117r-49,65r72,0r0,34r-116,0r0,-32v24,-44,69,-66,76,-127v1,-13,-7,-23,-18,-23v-17,0,-21,17,-19,37r-38,0v-4,-46,16,-69,57,-71","w":139},"3":{"d":"104,-93v22,14,23,44,22,82v-1,36,-22,57,-58,57v-40,0,-61,-26,-57,-73r38,0v-2,20,2,39,19,39v21,0,20,-23,20,-45v1,-28,-2,-48,-33,-44r0,-32v34,7,33,-25,30,-55v0,-11,-7,-18,-17,-18v-18,0,-18,19,-17,38r-38,0v-4,-45,16,-72,55,-72v64,0,72,95,36,123","w":140},"4":{"d":"120,-11r0,55r-38,0r0,-55r-72,0r0,-34r66,-181r37,0r-63,181r32,0r0,-46r38,0r0,46r19,0r0,34r-19,0","w":149},"5":{"d":"83,-129v51,0,47,54,47,107v0,41,-19,66,-58,66v-40,0,-61,-24,-57,-70r38,0v0,20,-1,42,19,40v30,-2,19,-53,19,-83v0,-15,-5,-25,-19,-26v-15,0,-20,12,-19,28r-36,0r0,-148r110,0r0,34r-76,0r0,69v6,-9,18,-17,32,-17","w":142},"6":{"d":"65,-153v53,-19,68,38,62,97v-4,37,-21,58,-57,59v-67,3,-66,-90,-47,-141r45,-118r39,0xm70,-31v27,0,19,-43,19,-71v-1,-13,-6,-24,-19,-24v-27,0,-19,44,-19,71v0,15,6,24,19,24","w":140},"7":{"d":"64,41r-38,0r67,-222r-44,0r0,34r-37,0r0,-68r119,0r0,32","w":142},"8":{"d":"107,-134v39,28,33,145,-35,137v-68,9,-75,-108,-36,-137v-36,-29,-28,-132,35,-125v64,-8,73,96,36,125xm72,-31v26,-2,19,-38,19,-65v0,-12,-7,-22,-19,-22v-21,0,-20,23,-20,44v0,20,0,44,20,43xm72,-150v18,0,18,-20,18,-38v0,-17,0,-37,-18,-37v-24,0,-18,32,-18,56v0,11,6,19,18,19"},"9":{"d":"70,-216v69,0,66,90,47,141r-45,118r-39,0r42,-104v-51,20,-69,-37,-62,-97v4,-36,20,-58,57,-58xm70,-88v27,-1,19,-43,19,-70v0,-15,-5,-24,-19,-24v-28,1,-19,42,-19,70v0,13,4,25,19,24","w":140},":":{"d":"50,-157v14,0,26,12,26,25v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25v0,-13,11,-25,25,-25xm50,-49v14,0,26,12,26,25v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25v0,-13,11,-25,25,-25","w":92},";":{"d":"30,54r0,-99r41,0r0,68xm50,-157v14,0,26,12,26,25v0,13,-12,25,-26,25v-14,0,-25,-12,-25,-25v0,-13,11,-25,25,-25","w":92},"<":{"d":"75,-85r76,75r-49,0r-93,-93r93,-92r49,0r-76,74r167,0r0,36r-167,0","w":258},"=":{"d":"16,-117r0,-37r133,0r0,37r-133,0xm16,-52r0,-37r133,0r0,37r-133,0","w":164},">":{"d":"157,-10r-49,0r76,-75r-167,0r0,-36r167,0r-76,-74r49,0r93,92","w":258},"?":{"d":"80,-258v59,-4,78,70,49,114v-13,20,-35,35,-29,72r-38,0v-10,-60,39,-65,41,-118v2,-19,-6,-33,-22,-34v-17,0,-24,15,-23,34r-38,0v1,-41,18,-65,60,-68xm81,-49v14,0,25,12,25,25v0,13,-11,25,-25,25v-14,0,-26,-12,-26,-25v0,-13,12,-25,26,-25","w":153},"@":{"d":"76,-256v62,-2,123,-6,123,59r0,197r-36,0r0,-14v-25,32,-83,15,-77,-39v6,-54,-14,-127,45,-123v12,0,24,6,30,14v1,-31,2,-63,-30,-62v-36,2,-76,-8,-76,32r0,143v-1,14,4,19,11,26r-28,28v-39,-35,-17,-134,-21,-202v-3,-39,22,-58,59,-59xm143,-31v31,0,14,-58,18,-89v1,-13,-7,-23,-18,-23v-32,2,-15,58,-19,90v-1,13,8,22,19,22","w":218},"A":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-194r-22,107r44,0","w":168},"B":{"d":"125,-134v22,7,27,31,27,58v0,80,-56,79,-130,76r0,-256r64,0v73,-14,86,96,39,122xm62,-36v34,2,50,-4,50,-40v0,-35,-16,-43,-50,-40r0,80xm62,-150v31,2,49,-4,49,-35v0,-33,-18,-37,-49,-35r0,70","w":169},"C":{"d":"149,-68v-3,43,-22,70,-66,71v-78,0,-62,-88,-68,-166v-6,-75,58,-124,113,-80v14,11,19,31,20,54r-40,0v-2,-18,-6,-34,-25,-34v-38,0,-28,49,-28,95v0,46,-9,88,28,95v19,-1,25,-15,25,-35r41,0","w":160},"D":{"d":"87,-256v77,0,68,84,68,162v0,54,-15,94,-68,94r-65,0r0,-256r65,0xm62,-36v63,8,53,-39,53,-93v0,-53,10,-99,-53,-91r0,184","w":169},"E":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0","w":142},"F":{"d":"62,-220r0,73r58,0r0,36r-58,0r0,111r-40,0r0,-256r107,0r0,36r-67,0","w":140},"G":{"d":"149,-139v2,71,5,142,-66,142v-78,0,-62,-88,-68,-166v-6,-76,59,-124,114,-79v13,11,19,31,20,54r-41,0v0,-20,-6,-34,-25,-35v-37,7,-28,49,-28,95v0,46,-9,88,28,95v31,-1,24,-41,25,-73r-25,0r0,-33r66,0","w":163},"H":{"d":"112,0r0,-112r-50,0r0,112r-40,0r0,-256r40,0r0,108r50,0r0,-108r40,0r0,256r-40,0","w":173},"I":{"d":"22,0r0,-256r40,0r0,256r-40,0","w":83},"J":{"d":"121,-67v6,65,-79,91,-120,49r28,-27v14,22,51,11,51,-22r0,-189r41,0r0,189","w":140},"K":{"d":"123,0r-42,-105r-19,39r0,66r-40,0r0,-256r40,0r0,120r56,-120r40,0r-51,106r59,150r-43,0","w":168},"L":{"d":"22,0r0,-256r40,0r0,220r67,0r0,36r-107,0","w":137},"M":{"d":"153,0r0,-160r-35,105r-22,0r-34,-103r0,158r-40,0r0,-256r36,0r50,134r49,-134r37,0r0,256r-41,0","w":215},"N":{"d":"122,0r-60,-152r0,152r-40,0r0,-256r36,0r60,152r0,-152r40,0r0,256r-36,0","w":179},"O":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95","w":166},"P":{"d":"86,-256v50,1,65,26,66,77v1,60,-27,84,-90,79r0,100r-40,0r0,-256r64,0xm62,-136v35,5,50,-8,50,-42v0,-34,-14,-48,-50,-42r0,84","w":165},"Q":{"d":"151,-163v0,46,4,99,-10,131r21,18r-18,22r-21,-17v-11,8,-21,12,-40,12v-78,0,-68,-87,-68,-166v0,-55,14,-96,68,-96v54,0,68,41,68,96xm55,-128v0,47,-10,100,37,93r-14,-11r19,-23r11,9v5,-17,3,-46,3,-68v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95","w":166},"R":{"d":"152,-181v-2,34,-6,55,-30,67r38,114r-42,0r-33,-105r-23,0r0,105r-40,0r0,-256v73,-3,136,-5,130,75xm62,-141v34,4,50,-7,50,-40v0,-32,-16,-44,-50,-39r0,79","w":172},"S":{"d":"79,-222v-34,0,-30,60,-3,67v39,10,76,26,69,84v17,83,-108,98,-129,35v-2,-8,-3,-19,-3,-33r40,0v-1,23,6,33,26,35v34,4,34,-58,14,-71v-33,-21,-86,-23,-78,-84v-11,-75,106,-94,125,-30v3,9,4,20,4,32r-41,0v1,-20,-4,-35,-24,-35","w":159},"T":{"d":"91,-220r0,220r-41,0r0,-220r-42,0r0,-36r126,0r0,36r-43,0","w":141},"U":{"d":"150,-63v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28v15,0,26,-11,25,-28r0,-195r40,0r0,193","w":169},"V":{"d":"99,0r-41,0r-57,-256r45,0r32,194r34,-194r44,0","w":157},"W":{"d":"207,0r-42,0r-36,-195r-37,195r-42,0r-49,-256r45,0r25,194r35,-194r45,0r35,194r25,-194r45,0","w":257},"X":{"d":"107,0r-29,-92r-30,92r-44,0r51,-133r-47,-123r44,0r26,85r25,-85r45,0r-48,123r52,133r-45,0","w":155},"Y":{"d":"90,-100r0,100r-40,0r0,-100r-50,-156r45,0r25,101r25,-101r45,0","w":140},"Z":{"d":"11,0r0,-30r70,-190r-66,0r0,-36r108,0r0,30r-70,190r70,0r0,36r-112,0","w":134},"[":{"d":"19,27r0,-310r72,0r0,34r-34,0r0,242r34,0r0,34r-72,0","w":101},"\\":{"d":"69,27r-67,-310r36,0r67,310r-36,0","w":107},"]":{"d":"10,27r0,-34r34,0r0,-242r-34,0r0,-34r72,0r0,310r-72,0","w":101},"^":{"d":"113,-156r-29,-64r-30,64r-38,0r51,-102r33,0r50,102r-37,0","w":166},"_":{"d":"0,55r0,-28r165,0r0,28r-165,0","w":164},"`":{"d":"62,-211r-32,-50r32,0r26,50r-26,0"},"a":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26"},"b":{"d":"87,-193v48,3,47,45,47,98v-1,52,2,98,-47,98v-14,0,-25,-8,-32,-17r0,14r-36,0r0,-256r38,0r0,79v6,-9,16,-16,30,-16xm76,-31v32,0,19,-64,19,-99v0,-17,-5,-28,-19,-29v-35,5,-19,69,-19,105v0,14,6,23,19,23","w":146},"c":{"d":"128,-56v-2,35,-18,59,-57,59v-52,0,-59,-45,-58,-98v-13,-73,42,-125,98,-84v12,9,16,26,17,45r-38,0v0,-13,-5,-25,-19,-25v-32,0,-19,63,-19,99v0,17,4,29,19,29v12,0,20,-11,19,-25r38,0","w":138},"d":{"d":"60,-193v14,0,24,7,30,16r0,-79r38,0r0,256r-37,0r0,-14v-6,9,-18,17,-31,17v-49,0,-46,-46,-47,-98v0,-53,-1,-98,47,-98xm71,-31v36,-5,14,-70,19,-105v2,-14,-6,-23,-19,-23v-32,0,-19,64,-19,99v0,17,4,28,19,29","w":146},"e":{"d":"71,-193v56,-1,60,52,58,109r-78,0v1,26,-2,53,21,53v14,0,17,-13,19,-25r38,0v-2,34,-20,59,-57,59v-61,0,-58,-63,-58,-123v0,-43,16,-72,57,-73xm91,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0","w":141},"f":{"d":"64,-161r0,161r-38,0r0,-161r-19,0r0,-29r19,0v-3,-47,18,-70,65,-68r0,34v-22,0,-29,12,-27,34r27,0r0,29r-27,0","w":97},"g":{"d":"61,-193v14,0,24,7,30,16r0,-13r37,0r0,194v12,69,-90,87,-110,30v-2,-7,-4,-14,-4,-22r38,0v-1,15,6,24,19,24v26,1,18,-36,19,-62v-8,10,-13,14,-29,14v-46,-2,-48,-40,-48,-90v0,-51,2,-91,48,-91xm71,-45v34,0,19,-59,19,-91v0,-12,-6,-23,-19,-23v-30,0,-19,55,-19,88v0,16,5,26,19,26","w":146},"h":{"d":"57,-177v24,-32,86,-11,75,40r0,137r-38,0r0,-136v1,-13,-7,-22,-18,-22v-12,0,-19,9,-19,22r0,136r-38,0r0,-256r38,0r0,79","w":150},"i":{"d":"19,0r0,-185r38,0r0,185r-38,0xm38,-261v13,0,24,11,24,24v0,13,-11,25,-24,25v-13,0,-24,-12,-24,-25v0,-13,11,-24,24,-24","w":75},"j":{"d":"-7,32v19,0,25,-7,26,-25r0,-192r38,0v-3,73,7,158,-5,222v-10,19,-30,30,-59,30r0,-35xm38,-261v13,0,24,11,24,24v0,13,-11,25,-24,25v-13,0,-24,-12,-24,-25v0,-13,11,-24,24,-24","w":75},"k":{"d":"105,0r-32,-80r-16,26r0,54r-38,0r0,-256r38,0r0,147r48,-81r40,0r-47,76r49,114r-42,0","w":149},"l":{"d":"82,0v-41,0,-64,-16,-64,-58r0,-198r38,0r0,196v0,17,9,26,26,26r0,34","w":87},"m":{"d":"124,-173v23,-34,84,-23,84,36r0,137r-38,0r0,-136v1,-13,-7,-22,-19,-22v-11,0,-20,10,-19,22r0,136r-38,0r0,-136v1,-13,-7,-22,-18,-22v-12,0,-19,9,-19,22r0,136r-38,0r0,-190r36,0r0,14v14,-23,57,-20,69,3","w":226},"n":{"d":"55,-176v27,-33,77,-14,77,39r0,137r-38,0r0,-136v1,-13,-7,-22,-18,-22v-12,0,-19,9,-19,22r0,136r-38,0r0,-190r36,0r0,14","w":150},"o":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29","w":142},"p":{"d":"87,-193v48,2,47,45,47,98v0,53,1,96,-47,98v-13,0,-24,-6,-30,-15r0,79r-38,0r0,-257r36,0r0,14v7,-8,18,-17,32,-17xm76,-31v32,0,19,-64,19,-99v0,-17,-5,-28,-19,-29v-35,5,-19,69,-19,105v0,14,6,23,19,23","w":146},"q":{"d":"60,-193v14,0,25,8,31,17r0,-14r37,0r0,257r-38,0r0,-79v-6,9,-17,15,-30,15v-48,-2,-47,-45,-47,-98v0,-53,-1,-95,47,-98xm71,-31v36,-5,14,-70,19,-105v2,-14,-6,-23,-19,-23v-32,0,-19,64,-19,99v0,17,4,28,19,29","w":146},"r":{"d":"102,-156v-73,-9,-37,97,-45,156r-38,0r0,-190r36,0r0,20v10,-12,26,-23,47,-23r0,37","w":107},"s":{"d":"68,-159v-25,0,-23,34,-2,42v30,11,61,20,61,62v0,65,-94,77,-113,23v-3,-7,-4,-14,-4,-23r38,0v0,14,6,23,20,23v28,0,26,-39,2,-45v-27,-13,-59,-19,-59,-59v0,-62,89,-76,109,-25v3,7,5,15,5,25r-38,0v1,-14,-8,-23,-19,-23","w":137},"t":{"d":"91,0v-41,1,-65,-17,-65,-58r0,-103r-19,0r0,-29r19,0r0,-48r38,0r0,48r27,0r0,29r-27,0r0,101v0,17,9,26,27,26r0,34","w":98},"u":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22","w":150},"v":{"d":"89,0r-40,0r-48,-190r43,0r25,130r25,-130r42,0","w":137},"w":{"d":"164,0r-38,0r-23,-123r-22,123r-38,0r-42,-190r43,0r20,130r23,-130r33,0r24,130r19,-130r43,0","w":207},"x":{"d":"95,0r-25,-59r-25,59r-42,0r45,-96r-43,-94r43,0r22,58r23,-58r42,0r-43,94r46,96r-43,0","w":140},"y":{"d":"82,24v-6,33,-32,43,-70,43r0,-34v25,1,33,-13,37,-33r-48,-190r43,0r25,130r25,-130r42,0","w":137},"z":{"d":"9,0r0,-29r56,-127r-51,0r0,-34r94,0r0,29r-56,127r56,0r0,34r-99,0","w":117},"{":{"d":"56,-128v56,13,-17,127,55,120r0,35v-43,3,-67,-11,-70,-51v-3,-35,19,-95,-31,-87r0,-34v77,8,-26,-159,101,-138r0,34v-67,-13,-1,103,-55,121","w":120},"|":{"d":"40,27r0,-310r38,0r0,310r-38,0","w":118},"}":{"d":"80,-233v3,35,-20,96,31,88r0,34v-48,-10,-29,50,-31,87v-3,40,-27,54,-70,51r0,-35v17,1,31,0,31,-18v0,-40,-10,-95,24,-102v-35,-6,-24,-63,-24,-102v0,-18,-13,-20,-31,-19r0,-34v43,-3,67,10,70,50","w":120},"~":{"d":"156,-103v-14,12,-23,23,-45,23v-30,1,-56,-32,-79,-4r-24,-23v14,-13,24,-24,46,-24v29,0,58,32,79,5","w":164},"\u00c4":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-194r-22,107r44,0xm54,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm115,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":168},"\u00c5":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-347v24,0,38,15,38,37v0,23,-15,38,-38,38v-23,0,-37,-16,-37,-38v0,-21,15,-38,37,-37xm84,-194r-22,107r44,0xm84,-293v10,0,17,-7,17,-17v0,-10,-7,-17,-17,-17v-9,0,-16,8,-16,17v0,9,7,17,16,17","w":168},"\u00c7":{"d":"83,-33v19,-1,25,-15,25,-35r41,0v-3,43,-22,70,-66,71v-78,0,-62,-88,-68,-166v-6,-75,58,-124,113,-80v14,11,19,31,20,54r-40,0v-2,-18,-6,-34,-25,-34v-38,0,-28,49,-28,95v0,46,-9,88,28,95xm77,70r-27,0r22,-56r24,0","w":160},"\u00c9":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0xm87,-274r-27,0r26,-50r32,0","w":142},"\u00d1":{"d":"122,0r-60,-152r0,152r-40,0r0,-256r36,0r60,152r0,-152r40,0r0,256r-36,0xm41,-296v17,-24,47,-15,70,-6v8,0,10,-2,16,-8r17,17v-10,10,-17,17,-32,17v-20,0,-39,-24,-55,-4","w":179},"\u00d6":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm53,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm114,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":166},"\u00dc":{"d":"85,-33v15,0,26,-11,25,-28r0,-195r40,0r0,193v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28xm54,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm115,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":169},"\u00e1":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26xm81,-211r-26,0r26,-50r32,0"},"\u00e0":{"d":"68,-193v85,-3,50,116,57,193r-36,0r0,-16v-23,37,-86,15,-80,-39v5,-42,30,-59,78,-56v0,0,4,-48,-18,-48v-13,0,-19,10,-19,23r-38,0v1,-35,22,-56,56,-57xm67,-31v23,1,20,-29,20,-53v-25,-2,-40,5,-40,27v0,18,7,26,20,26xm61,-211r-31,-50r32,0r25,50r-26,0"},"\u00e2":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm91,-211r-21,-30r-21,30r-30,0r36,-50r30,0r36,50r-30,0xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26"},"\u00e4":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26xm39,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm100,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-19,-9,-19,-20v0,-11,8,-19,19,-19"},"\u00e3":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm20,-234v16,-24,48,-16,70,-5v8,-1,10,-3,16,-9r17,17v-17,24,-48,16,-70,5v-9,1,-10,3,-17,9xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26"},"\u00e5":{"d":"69,-193v84,-3,51,116,57,193r-36,0r0,-16v-23,36,-80,16,-80,-39v0,-44,30,-59,78,-56v0,-22,3,-48,-19,-48v-12,0,-18,10,-18,23r-38,0v1,-35,22,-56,56,-57xm70,-286v22,0,38,15,38,37v0,23,-15,38,-38,38v-23,0,-38,-15,-38,-38v0,-21,17,-37,38,-37xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26xm70,-232v10,0,16,-7,16,-17v0,-10,-7,-16,-16,-16v-9,0,-16,6,-16,16v0,10,6,17,16,17"},"\u00e7":{"d":"71,-31v12,0,20,-11,19,-25r38,0v-2,35,-18,59,-57,59v-52,0,-59,-45,-58,-98v-13,-73,42,-125,98,-84v12,9,16,26,17,45r-38,0v0,-13,-5,-25,-19,-25v-32,0,-19,63,-19,99v0,17,4,29,19,29xm68,70r-27,0r22,-56r24,0","w":138},"\u00e9":{"d":"71,-193v56,-1,60,52,58,109r-78,0v1,26,-2,53,21,53v14,0,17,-13,19,-25r38,0v-2,34,-20,59,-57,59v-61,0,-58,-63,-58,-123v0,-43,16,-72,57,-73xm91,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0xm82,-211r-27,0r26,-50r32,0","w":141},"\u00e8":{"d":"89,-193v56,-1,58,53,58,109r-79,0v1,26,-2,53,21,53v13,0,18,-11,19,-25r38,0v-1,35,-20,59,-57,59v-61,1,-58,-63,-58,-123v0,-44,17,-72,58,-73xm108,-112v5,-31,-12,-61,-34,-39v-5,9,-6,24,-6,39r40,0xm62,-211r-32,-50r32,0r26,50r-26,0"},"\u00ea":{"d":"71,-193v56,-1,60,52,58,109r-78,0v1,26,-2,53,21,53v14,0,17,-13,19,-25r38,0v-2,34,-20,59,-57,59v-61,0,-58,-63,-58,-123v0,-43,16,-72,57,-73xm93,-211r-21,-30r-22,30r-29,0r36,-50r30,0r35,50r-29,0xm91,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0","w":141},"\u00eb":{"d":"71,-193v56,-1,60,52,58,109r-78,0v1,26,-2,53,21,53v14,0,17,-13,19,-25r38,0v-2,34,-20,59,-57,59v-61,0,-58,-63,-58,-123v0,-43,16,-72,57,-73xm91,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0xm41,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm102,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19","w":141},"\u00ed":{"d":"19,0r0,-190r38,0r0,190r-38,0xm49,-211r-27,0r26,-50r32,0","w":75},"\u00ec":{"d":"19,0r0,-190r38,0r0,190r-38,0xm29,-211r-32,-50r33,0r25,50r-26,0","w":75},"\u00ee":{"d":"19,0r0,-190r38,0r0,190r-38,0xm59,-211r-21,-30r-21,30r-30,0r36,-50r30,0r36,50r-30,0","w":75},"\u00ef":{"d":"19,0r0,-190r38,0r0,190r-38,0xm68,-252v12,0,21,8,21,19v0,11,-10,20,-21,20v-11,0,-19,-9,-19,-20v0,-11,8,-19,19,-19xm8,-252v11,0,19,8,19,19v0,11,-8,20,-19,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19","w":75},"\u00f1":{"d":"55,-176v27,-33,77,-14,77,39r0,137r-38,0r0,-136v1,-13,-7,-22,-18,-22v-12,0,-19,9,-19,22r0,136r-38,0r0,-190r36,0r0,14xm26,-234v16,-24,48,-16,70,-5v8,-1,10,-3,16,-9r17,17v-17,24,-48,16,-70,5v-9,1,-10,3,-17,9","w":150},"\u00f3":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29xm82,-211r-27,0r26,-50r32,0","w":142},"\u00f2":{"d":"89,-193v51,0,58,44,58,98v0,53,-5,98,-58,98v-53,0,-59,-44,-59,-98v0,-54,7,-98,59,-98xm89,-31v32,0,19,-63,19,-99v0,-17,-4,-29,-19,-29v-33,0,-20,63,-20,99v0,17,5,29,20,29xm62,-211r-32,-50r32,0r26,50r-26,0"},"\u00f4":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29xm93,-211r-21,-30r-22,30r-29,0r36,-50r30,0r35,50r-29,0","w":142},"\u00f6":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29xm41,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm102,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19","w":142},"\u00f5":{"d":"71,-193v52,0,60,45,59,98v0,52,-6,98,-59,98v-52,0,-58,-45,-58,-98v0,-54,7,-98,58,-98xm71,-31v34,-4,20,-60,20,-99v0,-17,-5,-29,-20,-29v-32,0,-19,63,-19,99v0,17,4,28,19,29xm21,-234v17,-23,48,-16,70,-5v8,-1,10,-3,16,-9r17,17v-16,24,-48,16,-70,5v-9,1,-10,3,-17,9","w":142},"\u00fa":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22xm89,-211r-26,0r26,-50r32,0","w":150},"\u00f9":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22xm63,-211r-31,-50r32,0r26,50r-27,0","w":150},"\u00fb":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22xm97,-211r-22,-30r-21,30r-29,0r35,-50r30,0r36,50r-29,0","w":150},"\u00fc":{"d":"75,-31v10,0,18,-9,18,-22r0,-137r38,0r0,190r-36,0r0,-14v-25,32,-77,16,-77,-39r0,-137r38,0r0,137v-1,13,8,22,19,22xm44,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm105,-252v12,0,20,7,20,19v0,12,-9,20,-20,20v-11,0,-19,-9,-19,-20v0,-11,8,-19,19,-19","w":150},"\u00b0":{"d":"74,-261v36,0,58,24,58,58v0,34,-22,58,-58,58v-36,0,-59,-24,-59,-58v0,-34,23,-58,59,-58xm74,-178v14,0,25,-12,25,-25v0,-13,-11,-25,-25,-25v-14,0,-25,11,-25,25v0,14,11,25,25,25","w":147},"\u00a2":{"d":"130,-93v-2,29,-15,49,-42,54r0,39r-29,0r0,-39v-40,-5,-44,-46,-44,-92v0,-47,5,-86,44,-92r0,-33r29,0r0,33v27,3,40,27,42,55r-38,0v0,-13,-6,-23,-19,-23v-33,2,-16,59,-19,94v-1,17,5,26,19,27v12,0,20,-10,19,-23r38,0","w":141},"\u00a3":{"d":"126,-212v-15,-21,-51,-9,-51,22r0,44r28,0r0,29r-28,0r0,81r79,0r0,36r-120,0r0,-117r-22,0r0,-29r22,0v-20,-89,56,-144,120,-93","w":165},"\u00a7":{"d":"77,-223v-25,0,-23,38,-2,43v42,11,71,35,63,100v-3,21,-11,36,-27,43v44,22,24,108,-35,102v-35,-4,-57,-22,-58,-57r39,0v0,13,6,22,19,22v28,1,24,-39,2,-44v-43,-10,-68,-40,-61,-100v3,-22,11,-34,27,-42v-44,-21,-24,-104,33,-100v34,2,57,20,57,55r-38,0v1,-13,-8,-22,-19,-22xm77,-55v19,-1,23,-19,23,-42v0,-22,-2,-42,-23,-42v-20,0,-23,19,-23,42v0,21,3,42,23,42","w":154},"\u00b6":{"d":"13,-180v0,-48,12,-76,53,-76r132,0r0,323r-39,0r0,-287r-36,0r0,287r-38,0r0,-170v-54,4,-72,-22,-72,-77","w":216},"\u00df":{"d":"115,-142v36,22,31,133,-15,139v-8,1,-16,3,-24,3r0,-34v31,2,22,-41,22,-69v0,-14,-8,-23,-22,-22r0,-32v23,2,20,-25,20,-49v0,-11,-8,-19,-20,-19v-12,0,-20,9,-19,23r0,202r-38,0r0,-201v0,-39,21,-54,57,-58v62,-7,77,87,39,117","w":149},"\u00ae":{"d":"152,-258v78,0,130,52,130,130v0,78,-52,130,-130,130v-78,0,-130,-52,-130,-130v0,-78,52,-130,130,-130xm152,-21v64,0,105,-43,105,-107v0,-65,-41,-107,-105,-107v-64,0,-105,42,-105,107v0,65,40,107,105,107xm156,-199v42,-6,46,63,20,79r20,63r-24,0r-18,-57r-13,0r0,57r-23,0r0,-142r38,0xm141,-136v22,3,31,-6,27,-30v1,-13,-14,-11,-27,-11r0,41","w":303},"\u00a9":{"d":"152,-258v78,0,130,52,130,130v0,78,-52,130,-130,130v-78,0,-130,-52,-130,-130v0,-78,52,-130,130,-130xm152,-21v64,0,105,-43,105,-107v0,-65,-41,-107,-105,-107v-64,0,-105,42,-105,107v0,65,40,107,105,107xm153,-77v10,0,14,-8,13,-20r24,0v-1,24,-14,42,-37,42v-42,0,-38,-50,-38,-90v0,-44,33,-72,63,-46v7,7,11,18,11,32r-23,0v1,-12,-3,-21,-13,-20v-19,2,-15,28,-15,51v0,22,-5,49,15,51","w":303},"\u00b4":{"d":"82,-211r-27,0r26,-50r32,0"},"\u00a8":{"d":"41,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19xm102,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19"},"\u00c6":{"d":"122,0r0,-53r-57,0r-19,53r-44,0r94,-256r134,0r0,36r-68,0r0,73r58,0r0,36r-58,0r0,75r68,0r0,36r-108,0xm122,-220r-45,130r45,0r0,-130","w":243},"\u00d8":{"d":"135,-235v23,30,14,90,17,142v4,67,-38,114,-100,89r-7,20r-27,0r14,-37v-23,-29,-13,-90,-17,-142v-5,-68,37,-114,99,-89r8,-20r26,0xm83,-223v-43,0,-22,69,-28,123v0,7,1,13,2,18r44,-133v-4,-5,-10,-8,-18,-8xm83,-33v47,0,22,-83,27,-141r-44,133v4,5,9,8,17,8","w":164},"\u00b1":{"d":"100,-114r0,48r-36,0r0,-48r-48,0r0,-36r48,0r0,-48r36,0r0,48r49,0r0,36r-49,0xm16,-5r0,-36r133,0r0,36r-133,0","w":164},"\u00a5":{"d":"103,-147r22,0r0,29r-31,0v-3,10,-6,19,-5,32r36,0r0,29r-36,0r0,57r-38,0r0,-57r-36,0r0,-29r36,0v1,-13,-2,-22,-5,-32r-31,0r0,-29r22,0r-34,-109r42,0r25,101r25,-101r42,0","w":140},"\u00b5":{"d":"75,-31v11,0,19,-9,19,-22r0,-137r38,0r0,190r-37,0r0,-14v-7,10,-26,22,-40,14r0,67r-37,0r0,-257r38,0r0,137v0,12,8,22,19,22","w":151},"\u03bc":{"d":"75,-31v11,0,19,-9,19,-22r0,-137r38,0r0,190r-37,0r0,-14v-7,10,-26,22,-40,14r0,67r-37,0r0,-257r38,0r0,137v0,12,8,22,19,22","w":151},"\u00aa":{"d":"58,-258v66,-1,41,91,46,152r-29,0r0,-12v-21,26,-70,12,-66,-32v3,-32,25,-47,63,-44v-1,-16,4,-36,-14,-36v-11,0,-15,8,-15,18r-31,0v-1,-30,18,-46,46,-46xm57,-131v17,0,16,-22,15,-41v-32,-10,-43,38,-15,41","w":119},"\u00ba":{"d":"59,-258v43,0,48,34,48,77v1,43,-5,77,-48,77v-42,0,-47,-35,-47,-77v0,-42,5,-77,47,-77xm59,-131v24,-4,16,-45,16,-74v0,-12,-4,-27,-16,-25v-24,3,-15,46,-15,74v0,13,4,24,15,25","w":118},"\u00e6":{"d":"110,-180v49,-36,94,6,94,69r0,27r-78,0v1,25,-2,51,20,53v12,0,19,-12,20,-25r37,0v8,60,-80,78,-104,34v-19,42,-89,29,-89,-33v0,-44,30,-59,78,-56v0,-22,4,-50,-19,-48v-13,0,-18,10,-18,23r-38,0v-5,-51,66,-75,95,-40v1,-2,1,-3,2,-4xm68,-31v23,1,20,-29,20,-53v-25,-3,-40,4,-40,27v0,18,7,26,20,26xm166,-112v10,-38,-28,-68,-39,-25v-1,7,-1,15,-1,25r40,0","w":216},"\u00f8":{"d":"71,-193v10,0,21,3,28,6r8,-19r25,0r-15,35v13,16,12,48,13,76v0,52,-6,100,-59,98v-11,0,-20,-2,-27,-6r-8,19r-26,0r15,-35v-12,-16,-11,-48,-12,-76v-2,-54,7,-99,58,-98xm85,-154v-36,-20,-33,24,-34,59r1,22xm58,-35v39,18,33,-32,34,-72v0,-4,-1,-7,-1,-9","w":141},"\u00bf":{"d":"73,35v16,0,23,-17,22,-35r38,0v0,42,-19,67,-60,69v-59,3,-76,-71,-49,-115v13,-21,35,-35,30,-72r38,0v10,61,-40,65,-42,118v-2,20,6,35,23,35xm73,-191v14,0,25,11,25,25v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25","w":153},"\u00a1":{"d":"23,67r0,-185r38,0r0,185r-38,0xm42,-191v14,0,25,11,25,25v0,14,-11,25,-25,25v-14,0,-25,-11,-25,-25v0,-14,11,-25,25,-25","w":92},"\u00ac":{"d":"110,-51r0,-40r-92,0r0,-36r129,0r0,76r-37,0","w":164},"\u00ab":{"d":"9,-99r58,-90r0,57r-22,33r22,33r0,56xm75,-99r57,-90r0,57r-22,33r22,33r0,56","w":149},"\u00bb":{"d":"82,-10r0,-56r22,-33r-22,-33r0,-57r58,90xm17,-10r0,-56r22,-33r-22,-33r0,-57r58,90","w":149},"\u00a0":{"w":64},"\u00c0":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-194r-22,107r44,0xm74,-274r-31,-50r32,0r26,50r-27,0","w":168},"\u00c3":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm137,-293v-20,37,-64,-9,-87,13r-16,-16v17,-24,46,-16,70,-6v8,0,10,-2,16,-8xm84,-194r-22,107r44,0","w":168},"\u00d5":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm136,-293v-20,37,-64,-9,-87,13r-16,-16v17,-24,46,-16,70,-6v8,0,10,-2,16,-8","w":166},"\u00f7":{"d":"16,-82r0,-37r133,0r0,37r-133,0xm82,-192v14,0,26,12,26,25v0,13,-13,26,-26,26v-13,0,-25,-12,-25,-26v0,-14,11,-25,25,-25xm82,-60v13,0,26,13,26,26v0,13,-12,25,-26,25v-14,0,-25,-11,-25,-25v0,-14,12,-26,25,-26","w":164},"\u00ff":{"d":"82,24v-6,33,-32,43,-70,43r0,-34v25,1,33,-13,37,-33r-48,-190r43,0r25,130r25,-130r42,0xm39,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-8,-20,-20v0,-12,8,-19,20,-19xm100,-252v11,0,20,8,20,19v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-19,20,-19","w":137},"\u00a4":{"d":"165,-68v-3,42,-21,71,-65,71v-51,0,-67,-35,-68,-88r-20,0r0,-29r20,0r0,-29r-20,0r0,-29r20,0v-9,-72,62,-112,113,-71v14,11,19,31,20,54r-40,0v7,-37,-46,-47,-50,-10v-3,7,-2,18,-2,27r38,0r0,29r-39,0r0,29r39,0r0,29r-38,0v1,29,1,52,27,52v18,0,26,-15,25,-35r40,0","w":179},"\u00b7":{"d":"50,-139v19,0,31,12,31,31v0,44,-62,36,-62,0v0,-17,12,-31,31,-31","w":100},"\u00c2":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm106,-274r-22,-29r-21,29r-29,0r35,-50r30,0r36,50r-29,0xm84,-194r-22,107r44,0","w":168},"\u00ca":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0xm98,-274r-21,-29r-22,29r-29,0r36,-50r30,0r35,50r-29,0","w":142},"\u00c1":{"d":"124,0r-10,-51r-60,0r-10,51r-42,0r63,-256r39,0r62,256r-42,0xm84,-194r-22,107r44,0xm94,-274r-26,0r26,-50r32,0","w":168},"\u00cb":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0xm46,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm107,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20","w":142},"\u00c8":{"d":"22,0r0,-256r107,0r0,36r-67,0r0,73r58,0r0,36r-58,0r0,75r67,0r0,36r-107,0xm66,-274r-31,-50r32,0r26,50r-27,0","w":142},"\u00cd":{"d":"22,0r0,-256r40,0r0,256r-40,0xm52,-274r-26,0r25,-50r33,0","w":83},"\u00ce":{"d":"22,0r0,-256r40,0r0,256r-40,0xm63,-274r-21,-29r-21,29r-30,0r36,-50r30,0r36,50r-30,0","w":83},"\u00cf":{"d":"22,0r0,-256r40,0r0,256r-40,0xm11,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20xm72,-315v11,0,20,9,20,20v0,11,-9,20,-20,20v-11,0,-19,-9,-19,-20v0,-11,8,-20,19,-20","w":83},"\u00cc":{"d":"22,0r0,-256r40,0r0,256r-40,0xm32,-274r-32,-50r32,0r26,50r-26,0","w":83},"\u00d3":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm94,-274r-27,0r26,-50r32,0","w":166},"\u00d4":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm105,-274r-22,-29r-21,29r-29,0r35,-50r30,0r36,50r-29,0","w":166},"\u00d2":{"d":"83,-259v79,-1,69,91,68,166v0,55,-14,95,-68,96v-78,0,-68,-87,-68,-166v0,-55,14,-95,68,-96xm83,-33v38,-6,28,-48,28,-95v0,-47,10,-89,-28,-95v-37,7,-28,49,-28,95v0,46,-9,88,28,95xm73,-274r-31,-50r32,0r26,50r-27,0","w":166},"\u00da":{"d":"85,-33v15,0,26,-11,25,-28r0,-195r40,0r0,193v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28xm96,-274r-27,0r26,-50r32,0","w":169},"\u00db":{"d":"85,-33v15,0,26,-11,25,-28r0,-195r40,0r0,193v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28xm107,-274r-22,-29r-21,29r-29,0r35,-50r30,0r36,50r-29,0","w":169},"\u00d9":{"d":"85,-33v15,0,26,-11,25,-28r0,-195r40,0r0,193v0,40,-27,66,-65,66v-39,0,-65,-25,-66,-66r0,-193r41,0r0,195v-1,17,10,28,25,28xm75,-274r-31,-50r32,0r26,50r-27,0","w":169},"\u00af":{"d":"28,-220r0,-25r88,0r0,25r-88,0"},"\u00b8":{"d":"68,70r-27,0r22,-56r24,0"},"\u00d0":{"d":"93,-256v78,-1,68,84,68,162v0,55,-14,93,-68,94r-65,0r0,-113r-19,0r0,-32r19,0r0,-111r65,0xm68,-36v62,7,53,-38,53,-93v0,-55,9,-99,-53,-91r0,75r25,0r0,32r-25,0r0,77","w":176},"\u00f0":{"d":"13,-87v0,-60,15,-107,69,-85r-10,-33r-27,0r0,-28r18,0r-8,-23r38,0r8,23r25,0r0,28r-17,0v20,56,53,206,-37,208v-50,1,-59,-40,-59,-90xm72,-31v23,-3,20,-29,20,-57v0,-27,5,-57,-20,-57v-26,0,-21,29,-21,57v0,28,-4,54,21,57","w":144}}});
;
/**
 * @author Robin
 */
function getPath(path) {
  if (typeof(path) != "undefined")
  {
    var parts = path.split("/");
    var newPath = '';
    
    for (var i = 0; i < parts.length - 2; i++)
    {
      newPath += parts[i] + "/";
    }
    
    return newPath;
  }
}

function isIEbrowser()
{
    if(navigator.userAgent.match(/MSIE \d\.\d+/))
        return true;
    return false;
}
 
Drupal.behaviors.mouseovers = function(context)
{
  Cufon.refresh();

  if(isIEbrowser()) {
  	var zIndexNumber = 1000;
  	$('#TB_window fieldset.keywords fieldset, #TB_window fieldset.Trefwoorden fieldset').each(function() {
  		$(this).css('zIndex', zIndexNumber);
  		zIndexNumber -= 10;
  	});
	}

  $("#omp-search-simple-search-form input").not('.disable').mouseover(function ()
  {
    $(this).attr("src", "/sites/all/themes/ompredesign/extraredesign/images/button_zoeken_hover.gif");
  });

  $("#omp-search-simple-search-form input").mouseout(function ()
  {
    $(this).attr("src", "/sites/all/themes/ompredesign/extraredesign/images/button_zoeken.gif");
  });

  $("#omp-search-adv-search-form #edit-submit-1, #omp-search-adv-search-form #edit-submit").not('.disable').mouseover(function ()
  {
    $(this).attr("src", "/sites/all/themes/ompredesign/extraredesign/images/button_geavanceerd-zoeken_hover.gif");
  });

  $("#omp-search-adv-search-form #edit-submit-1, #omp-search-adv-search-form #edit-submit").mouseout(function ()
  {
    $(this).attr("src", "/sites/all/themes/ompredesign/extraredesign/images/button_geavanceerd-zoeken.gif");
  });
  
  $("#omp-search-adv-search-form #edit-bewaar-submit").not('.disable').mouseover(function ()
  {
    $(this).attr("src", "/sites/all/themes/ompredesign/extraredesign/images/button_bewaar-zoekopdracht_hover.gif");
  });

  $("#omp-search-adv-search-form #edit-bewaar-submit").mouseout(function ()
  {
    $(this).attr("src", "/sites/all/themes/ompredesign/extraredesign/images/button_bewaar-zoekopdracht.gif");
  });
  
  $("#omp-search-adv-search-form #edit-adv-search-simple-search").not('.disable').mouseover(function ()
  {
    $(this).attr("src", "/sites/all/themes/ompredesign/extraredesign/images/button_eenvoudig-zoeken_hover.gif");
  });

  $("#omp-search-adv-search-form #edit-adv-search-simple-search").mouseout(function ()
  {
    $(this).attr("src", "/sites/all/themes/ompredesign/extraredesign/images/button_eenvoudig-zoeken.gif");
  });

  $("#block-menu-primary-links li:not(.active-trail) a span, #block-menu-secondary-links li:not(.active-trail) a span").each(function ()
  {
    var newimg = $("img.link", $(this)).clone().addClass('hover').attr("src",  "" + getPath($("img.link", $(this)).attr("src")) + 'basisactive/' + $("img.link", $(this)).attr("title") + ".png");
    $(this).append(newimg);
    // fix safari not hiding cloned element
    $("img.hover", $(this)).hide();
  });
    
  $("#block-menu-primary-links li:not(.active-trail), #block-menu-secondary-links li:not(.active-trail)").mouseover(function ()
  {    
    var href =  $("a",$(this)).attr("href");
      
    $("img.link",$(this)).toggle();
    $("img.link",$(this)).mousedown(function ()
    {
      location.href = href;
    });
  });

  $("#block-menu-primary-links li:not(.active-trail), #block-menu-secondary-links li:not(.active-trail)").mouseout(function ()
  {
    $("img.link",$(this)).toggle();
  });
  
  $(".asset_more_info, .asset_embed").mousedown(function ()
  {
    //$(".asset_metadata_collapse").toggle();
    $(this).next().toggle();
    $(this).toggleClass("expanded");
  });

  $(".add_predicate").mouseover(function ()
  {
    $(this).attr("src", "/sites/all/themes/ompredesign/extraredesign/images/button_+_hover.gif");
  });

  $(".add_predicate").mouseout(function ()
  {
    $(this).attr("src", "/sites/all/themes/ompredesign/extraredesign/images/button_+.gif");
  });

  $(".remove_predicate").mouseover(function ()
  {
    $(this).attr("src", "/sites/all/themes/ompredesign/extraredesign/images/button_-_hover.gif");
  });

  $(".remove_predicate").mouseout(function ()
  {
    $(this).attr("src", "/sites/all/themes/ompredesign/extraredesign/images/button_-.gif");
  });
};

