(function(){var root=this;var previousUnderscore=root._;var wrapper=function(obj){this._wrapped=obj;};var breaker=typeof StopIteration!=='undefined'?StopIteration:'__break__';var _=root._=function(obj){return new wrapper(obj);};if(typeof exports!=='undefined')exports._=_;var slice=Array.prototype.slice,unshift=Array.prototype.unshift,toString=Object.prototype.toString,hasOwnProperty=Object.prototype.hasOwnProperty,propertyIsEnumerable=Object.prototype.propertyIsEnumerable;_.VERSION='0.5.8';_.each=function(obj,iterator,context){var index=0;try{if(obj.forEach){obj.forEach(iterator,context);}else if(_.isNumber(obj.length)){for(var i=0,l=obj.length;i<l;i++)iterator.call(context,obj[i],i,obj);}else{var keys=_.keys(obj),l=keys.length;for(var i=0;i<l;i++)iterator.call(context,obj[keys[i]],keys[i],obj);}}catch(e){if(e!=breaker)throw e;}
return obj;};_.map=function(obj,iterator,context){if(obj&&_.isFunction(obj.map))return obj.map(iterator,context);var results=[];_.each(obj,function(value,index,list){results.push(iterator.call(context,value,index,list));});return results;};_.reduce=function(obj,memo,iterator,context){if(obj&&_.isFunction(obj.reduce))return obj.reduce(_.bind(iterator,context),memo);_.each(obj,function(value,index,list){memo=iterator.call(context,memo,value,index,list);});return memo;};_.reduceRight=function(obj,memo,iterator,context){if(obj&&_.isFunction(obj.reduceRight))return obj.reduceRight(_.bind(iterator,context),memo);var reversed=_.clone(_.toArray(obj)).reverse();_.each(reversed,function(value,index){memo=iterator.call(context,memo,value,index,obj);});return memo;};_.detect=function(obj,iterator,context){var result;_.each(obj,function(value,index,list){if(iterator.call(context,value,index,list)){result=value;_.breakLoop();}});return result;};_.select=function(obj,iterator,context){if(obj&&_.isFunction(obj.filter))return obj.filter(iterator,context);var results=[];_.each(obj,function(value,index,list){iterator.call(context,value,index,list)&&results.push(value);});return results;};_.reject=function(obj,iterator,context){var results=[];_.each(obj,function(value,index,list){!iterator.call(context,value,index,list)&&results.push(value);});return results;};_.all=function(obj,iterator,context){iterator=iterator||_.identity;if(obj&&_.isFunction(obj.every))return obj.every(iterator,context);var result=true;_.each(obj,function(value,index,list){if(!(result=result&&iterator.call(context,value,index,list)))_.breakLoop();});return result;};_.any=function(obj,iterator,context){iterator=iterator||_.identity;if(obj&&_.isFunction(obj.some))return obj.some(iterator,context);var result=false;_.each(obj,function(value,index,list){if(result=iterator.call(context,value,index,list))_.breakLoop();});return result;};_.include=function(obj,target){if(obj&&_.isFunction(obj.indexOf))return _.indexOf(obj,target)!=-1;var found=false;_.each(obj,function(value){if(found=value===target)_.breakLoop();});return found;};_.invoke=function(obj,method){var args=_.rest(arguments,2);return _.map(obj,function(value){return(method?value[method]:value).apply(value,args);});};_.pluck=function(obj,key){return _.map(obj,function(value){return value[key];});};_.max=function(obj,iterator,context){if(!iterator&&_.isArray(obj))return Math.max.apply(Math,obj);var result={computed:-Infinity};_.each(obj,function(value,index,list){var computed=iterator?iterator.call(context,value,index,list):value;computed>=result.computed&&(result={value:value,computed:computed});});return result.value;};_.min=function(obj,iterator,context){if(!iterator&&_.isArray(obj))return Math.min.apply(Math,obj);var result={computed:Infinity};_.each(obj,function(value,index,list){var computed=iterator?iterator.call(context,value,index,list):value;computed<result.computed&&(result={value:value,computed:computed});});return result.value;};_.sortBy=function(obj,iterator,context){return _.pluck(_.map(obj,function(value,index,list){return{value:value,criteria:iterator.call(context,value,index,list)};}).sort(function(left,right){var a=left.criteria,b=right.criteria;return a<b?-1:a>b?1:0;}),'value');};_.sortedIndex=function(array,obj,iterator){iterator=iterator||_.identity;var low=0,high=array.length;while(low<high){var mid=(low+high)>>1;iterator(array[mid])<iterator(obj)?low=mid+1:high=mid;}
return low;};_.toArray=function(iterable){if(!iterable)return[];if(iterable.toArray)return iterable.toArray();if(_.isArray(iterable))return iterable;if(_.isArguments(iterable))return slice.call(iterable);return _.values(iterable);};_.size=function(obj){return _.toArray(obj).length;};_.first=function(array,n,guard){return n&&!guard?slice.call(array,0,n):array[0];};_.rest=function(array,index,guard){return slice.call(array,_.isUndefined(index)||guard?1:index);};_.last=function(array){return array[array.length-1];};_.compact=function(array){return _.select(array,function(value){return!!value;});};_.flatten=function(array){return _.reduce(array,[],function(memo,value){if(_.isArray(value))return memo.concat(_.flatten(value));memo.push(value);return memo;});};_.without=function(array){var values=_.rest(arguments);return _.select(array,function(value){return!_.include(values,value);});};_.uniq=function(array,isSorted){return _.reduce(array,[],function(memo,el,i){if(0==i||(isSorted===true?_.last(memo)!=el:!_.include(memo,el)))memo.push(el);return memo;});};_.intersect=function(array){var rest=_.rest(arguments);return _.select(_.uniq(array),function(item){return _.all(rest,function(other){return _.indexOf(other,item)>=0;});});};_.zip=function(){var args=_.toArray(arguments);var length=_.max(_.pluck(args,'length'));var results=new Array(length);for(var i=0;i<length;i++)results[i]=_.pluck(args,String(i));return results;};_.indexOf=function(array,item){if(array.indexOf)return array.indexOf(item);for(var i=0,l=array.length;i<l;i++)if(array[i]===item)return i;return-1;};_.lastIndexOf=function(array,item){if(array.lastIndexOf)return array.lastIndexOf(item);var i=array.length;while(i--)if(array[i]===item)return i;return-1;};_.range=function(start,stop,step){var a=_.toArray(arguments);var solo=a.length<=1;var start=solo?0:a[0],stop=solo?a[0]:a[1],step=a[2]||1;var len=Math.ceil((stop-start)/step);if(len<=0)return[];var range=new Array(len);for(var i=start,idx=0;true;i+=step){if((step>0?i-stop:stop-i)>=0)return range;range[idx++]=i;}};_.bind=function(func,obj){var args=_.rest(arguments,2);return function(){return func.apply(obj||root,args.concat(_.toArray(arguments)));};};_.bindAll=function(obj){var funcs=_.rest(arguments);if(funcs.length==0)funcs=_.functions(obj);_.each(funcs,function(f){obj[f]=_.bind(obj[f],obj);});return obj;};_.delay=function(func,wait){var args=_.rest(arguments,2);return setTimeout(function(){return func.apply(func,args);},wait);};_.defer=function(func){return _.delay.apply(_,[func,1].concat(_.rest(arguments)));};_.wrap=function(func,wrapper){return function(){var args=[func].concat(_.toArray(arguments));return wrapper.apply(wrapper,args);};};_.compose=function(){var funcs=_.toArray(arguments);return function(){var args=_.toArray(arguments);for(var i=funcs.length-1;i>=0;i--){args=[funcs[i].apply(this,args)];}
return args[0];};};_.keys=function(obj){if(_.isArray(obj))return _.range(0,obj.length);var keys=[];for(var key in obj)if(hasOwnProperty.call(obj,key))keys.push(key);return keys;};_.values=function(obj){return _.map(obj,_.identity);};_.functions=function(obj){return _.select(_.keys(obj),function(key){return _.isFunction(obj[key]);}).sort();};_.extend=function(destination,source){for(var property in source)destination[property]=source[property];return destination;};_.clone=function(obj){if(_.isArray(obj))return obj.slice(0);return _.extend({},obj);};_.tap=function(obj,interceptor){interceptor(obj);return obj;};_.isEqual=function(a,b){if(a===b)return true;var atype=typeof(a),btype=typeof(b);if(atype!=btype)return false;if(a==b)return true;if((!a&&b)||(a&&!b))return false;if(a.isEqual)return a.isEqual(b);if(_.isDate(a)&&_.isDate(b))return a.getTime()===b.getTime();if(_.isNaN(a)&&_.isNaN(b))return true;if(_.isRegExp(a)&&_.isRegExp(b))
return a.source===b.source&&a.global===b.global&&a.ignoreCase===b.ignoreCase&&a.multiline===b.multiline;if(atype!=='object')return false;if(a.length&&(a.length!==b.length))return false;var aKeys=_.keys(a),bKeys=_.keys(b);if(aKeys.length!=bKeys.length)return false;for(var key in a)if(!_.isEqual(a[key],b[key]))return false;return true;};_.isEmpty=function(obj){return _.keys(obj).length==0;};_.isElement=function(obj){return!!(obj&&obj.nodeType==1);};_.isArray=function(obj){return!!(obj&&obj.concat&&obj.unshift);};_.isArguments=function(obj){return obj&&_.isNumber(obj.length)&&!obj.concat&&!obj.substr&&!obj.apply&&!propertyIsEnumerable.call(obj,'length');};_.isFunction=function(obj){return!!(obj&&obj.constructor&&obj.call&&obj.apply);};_.isString=function(obj){return!!(obj===''||(obj&&obj.charCodeAt&&obj.substr));};_.isNumber=function(obj){return(obj===+obj)||(toString.call(obj)==='[object Number]');};_.isDate=function(obj){return!!(obj&&obj.getTimezoneOffset&&obj.setUTCFullYear);};_.isRegExp=function(obj){return!!(obj&&obj.test&&obj.exec&&(obj.ignoreCase||obj.ignoreCase===false));};_.isNaN=function(obj){return _.isNumber(obj)&&isNaN(obj);};_.isNull=function(obj){return obj===null;};_.isUndefined=function(obj){return typeof obj=='undefined';};_.noConflict=function(){root._=previousUnderscore;return this;};_.identity=function(value){return value;};_.breakLoop=function(){throw breaker;};var idCounter=0;_.uniqueId=function(prefix){var id=idCounter++;return prefix?prefix+id:id;};_.templateSettings={start:'<%',end:'%>',interpolate:/<%=(.+?)%>/g};_.template=function(str,data){var c=_.templateSettings;var fn=new Function('obj','var p=[],print=function(){p.push.apply(p,arguments);};'+'with(obj){p.push(\''+
str.replace(/[\r\t\n]/g," ").replace(new RegExp("'(?=[^"+c.end[0]+"]*"+c.end+")","g"),"\t").split("'").join("\\'").split("\t").join("'").replace(c.interpolate,"',$1,'").split(c.start).join("');").split(c.end).join("p.push('")
+"');}return p.join('');");return data?fn(data):fn;};_.forEach=_.each;_.foldl=_.inject=_.reduce;_.foldr=_.reduceRight;_.filter=_.select;_.every=_.all;_.some=_.any;_.head=_.first;_.tail=_.rest;_.methods=_.functions;var result=function(obj,chain){return chain?_(obj).chain():obj;};_.each(_.functions(_),function(name){var method=_[name];wrapper.prototype[name]=function(){var args=_.toArray(arguments);unshift.call(args,this._wrapped);return result(method.apply(_,args),this._chain);};});_.each(['pop','push','reverse','shift','sort','splice','unshift'],function(name){var method=Array.prototype[name];wrapper.prototype[name]=function(){method.apply(this._wrapped,arguments);return result(this._wrapped,this._chain);};});_.each(['concat','join','slice'],function(name){var method=Array.prototype[name];wrapper.prototype[name]=function(){return result(method.apply(this._wrapped,arguments),this._chain);};});wrapper.prototype.chain=function(){this._chain=true;return this;};wrapper.prototype.value=function(){return this._wrapped;};})();;(function($){$.extend({metadata:{defaults:{type:'class',name:'metadata',cre:/({.*})/,single:'metadata'},setType:function(type,name){this.defaults.type=type;this.defaults.name=name;},get:function(elem,opts){var settings=$.extend({},this.defaults,opts);if(!settings.single.length)settings.single='metadata';var data=$.data(elem,settings.single);if(data)return data;data="{}";var getData=function(data){if(typeof data!="string")return data;if(data.indexOf('{')<0){data=eval("("+data+")");}}
var getObject=function(data){if(typeof data!="string")return data;data=eval("("+data+")");return data;}
if(settings.type=="html5"){var object={};$(elem.attributes).each(function(){var name=this.nodeName;if(name.match(/^data-/))name=name.replace(/^data-/,'');else return true;object[name]=getObject(this.nodeValue);});}else{if(settings.type=="class"){var m=settings.cre.exec(elem.className);if(m)
data=m[1];}else if(settings.type=="elem"){if(!elem.getElementsByTagName)return;var e=elem.getElementsByTagName(settings.name);if(e.length)
data=$.trim(e[0].innerHTML);}else if(elem.getAttribute!=undefined){var attr=elem.getAttribute(settings.name);if(attr)
data=attr;}
object=getObject(data.indexOf("{")<0?"{"+data+"}":data);}
$.data(elem,settings.single,object);return object;}}});$.fn.metadata=function(opts){return $.metadata.get(this[0],opts);};})(jQuery);;(function($){var win=window,doc=document,encode=encodeURIComponent,decode=decodeURIComponent,history,E_MISSING_OR_INVALID_ARG='Missing or invalid argument',REGEXP=/([^=&]+)=([^&]*)/g,_useIFrame=false,_getHash,EV_HISTORY_READY='ready',EV_HISTORY_GLOBAL_STATE_CHANGE='globalStateChange',EV_HISTORY_MODULE_STATE_CHANGE='moduleStateChange',_ready=false,_modules={},_stateField=null,_historyIFrame=null;if($.browser.mozilla){_getHash=function(){var m=/#(.*)$/.exec(win.location.href);return m&&m[1]?m[1]:'';};}else{_getHash=function(){return win.location.hash.substr(1);};}
function _storeStates(){var initialStates=[],currentStates=[];$.each(_modules,function(moduleId,module){initialStates.push(moduleId+'='+module.initialState);currentStates.push(moduleId+'='+module.currentState);});_stateField.val(initialStates.join('&')+'|'+currentStates.join('&'));}
function _handleFQStateChange(fqstate){var m,states=[],globalStateChanged=false;if(fqstate){REGEXP.lastIndex=0;while((m=REGEXP.exec(fqstate))){states[m[1]]=m[2];}
$.each(_modules,function(moduleId,module){var currentState=states[moduleId];if(!currentState||module.currentState!==currentState){module.currentState=currentState||module.initialState;module.trigger(EV_HISTORY_MODULE_STATE_CHANGE,decode(module.currentState));globalStateChanged=true;}});}else{$.each(_modules,function(moduleId,module){if(module.currentState!==module.initialState){module.currentState=module.initialState;$(module).trigger(EV_HISTORY_MODULE_STATE_CHANGE,decode(module.currentState));globalStateChanged=true;}});}
if(globalStateChanged){history.trigger(EV_HISTORY_GLOBAL_STATE_CHANGE);}}
function _updateIFrame(fqstate){var html,doc;html='<html><body>'+fqstate+'</body></html>';try{doc=_historyIFrame.get(0).contentWindow.document;doc.open();doc.write(html);doc.close();return true;}catch(e){return false;}}
function _checkIframeLoaded(){var elem,fqstate,hash;if(!_historyIFrame.get(0).contentWindow.document){setTimeout(_checkIframeLoaded,10);return;}
elem=$(_historyIFrame.get(0).contentWindow.document.body);fqstate=elem?elem.text():null;hash=_getHash();setInterval(function(){var newfqstate,states,newHash;elem=$(_historyIFrame.get(0).contentWindow.document.body);newfqstate=elem?elem.text():null;newHash=_getHash();if(newfqstate!==fqstate){fqstate=newfqstate;_handleFQStateChange(fqstate);if(!fqstate){states=[];$.each(_modules,function(moduleId,module){states.push(moduleId+'='+module.initialState);});newHash=states.join('&');}else{newHash=fqstate;}
win.location.hash=hash=newHash;_storeStates();}else if(newHash!==hash){hash=newHash;_updateIFrame(newHash);}},50);_ready=true;history.trigger(EV_HISTORY_READY);}
function _multiNavigate(states){var newStates=[],fqstate,globalStateChanged=false;if(!_ready){return false;}
$.each(_modules,function(moduleId,module){var state,decodedModuleId=decode(moduleId);if(!states.hasOwnProperty(decodedModuleId)){state=module.currentState;}else{state=encode(states[decodedModuleId]);if(state!==module.upcomingState){module.upcomingState=state;globalStateChanged=true;}}
if(state.length){newStates.push(moduleId+'='+state);}});if(!globalStateChanged){return false;}
fqstate=newStates.join('&');if(_useIFrame){return _updateIFrame(fqstate);}else{win.location.hash=fqstate||'##';return true;}}
function _navigate(moduleId,state){var states;if(!(typeof moduleId==="string")||!(typeof state==="string")){throw new Error(E_MISSING_OR_INVALID_ARG);}
states={};states[moduleId]=state;return _multiNavigate(states);}
function _getCurrentState(moduleId){var module;if(!(typeof moduleId==="string")){throw new Error(E_MISSING_OR_INVALID_ARG);}
if(!_ready){return null;}
moduleId=encode(moduleId);module=_modules[moduleId];if(!module){return null;}
return decode(module.currentState);}
function _initialize(){var m,parts,moduleId,module,initialState,currentState,hash;parts=_stateField.val().split('|');if(parts.length>1){REGEXP.lastIndex=0;while((m=REGEXP.exec(parts[0]))){moduleId=m[1];initialState=m[2];module=_modules[moduleId];if(module){module.initialState=initialState;}}
REGEXP.lastIndex=0;while((m=REGEXP.exec(parts[1]))){moduleId=m[1];currentState=m[2];module=_modules[moduleId];if(module){module.currentState=currentState;}}}
if(!(typeof win.onhashchange==="undefined")&&((typeof doc.documentMode==="undefined")||doc.documentMode>7)){win.onhashchange=function(){var hash=_getHash();_handleFQStateChange(hash);_storeStates();};_ready=true;history.trigger(EV_HISTORY_READY);}else if(_useIFrame){_checkIframeLoaded();}else{hash=_getHash();setInterval(function(){var newHash=_getHash();if(newHash!==hash){hash=newHash;_handleFQStateChange(hash);_storeStates();}},50);_ready=true;history.trigger(EV_HISTORY_READY);}}
function history(moduleId,state){if(typeof state==='undefined'){if(typeof moduleId==='object'){return _multiNavigate(moduleId);}
return _getCurrentState(moduleId);}
return _navigate(moduleId,state);}
$.extend(history,{register:function(moduleId,initialState){var module;if(!$(typeof moduleId==="string")||$.trim(moduleId)===''||!(typeof initialState==="string")){throw new Error(E_MISSING_OR_INVALID_ARG);}
moduleId=encode(moduleId);initialState=encode(initialState);if(_modules[moduleId]){return;}
if(_ready){return null;}
module=new history.Module(moduleId,initialState);_modules[moduleId]=module;return module;},init:function(stateField,historyIFrame){var tagName,type;if(_ready){return true;}
stateField=$(stateField);if(!stateField.length){throw new Error(E_MISSING_OR_INVALID_ARG);}
tagName=stateField.get(0).tagName.toUpperCase();type=stateField.attr('type');if(tagName!=='TEXTAREA'&&(tagName!=='INPUT'||type!=='hidden'&&type!=='text')){throw new Error(E_MISSING_OR_INVALID_ARG);}
if($.browser.msie&&$.browser.version<8){_useIFrame=true;historyIFrame=$(historyIFrame);if(!historyIFrame.length||historyIFrame.get(0).tagName.toUpperCase()!=='IFRAME'){throw new Error(E_MISSING_OR_INVALID_ARG);}}
if($.browser.opera&&!(typeof win.history.navigationMode==="undefined")){win.history.navigationMode='compatible';}
_stateField=stateField;_historyIFrame=historyIFrame;$(_initialize);return true;},bookmark:function(moduleId){var m,i,h;if(!(typeof moduleId==="string")){throw new Error(E_MISSING_OR_INVALID_ARG);}
moduleId=encode(moduleId);h=win.location.href;i=h.indexOf('#');if(i>=0){h=h.substr(i+1);REGEXP.lastIndex=0;while((m=REGEXP.exec(h))){if(decode(m[1])===moduleId){return decode(m[2]);}}}
return null;},bind:function(type,data,fn){$([history]).bind(type,data,fn)},trigger:function(event,data){$([history]).trigger(event,data)}});history.Module=function(id,initialState){this.id=id;this.initialState=initialState;this.currentState=initialState;this.upcomingState=null;};$.extend(history.Module.prototype,{bind:function(type,data,fn){$(this).bind(type,data,fn)},trigger:function(event,data){$(this).trigger(event,data)}});$.history=history;})(jQuery);;(function($){$.image=function(options){var opts=$.extend({},$.image.defaults,options);opts.src=opts.src||opts['default'];if(!opts.src){return'';}
var src=opts.src.replace(/\.(png|gif|jpg|jpeg)$/,'_$1')+'_';opts.format=opts.format||/\.(png|gif|jpg|jpeg)$/.exec(opts.src)[1];fmt={'jpg':'jpg','jpeg':'jpg','png':'png','gif':'gif'};opts.format=fmt[opts.format];if(opts.width){src+='w'+opts.width;}
if(opts.height){src+='h'+opts.height;}
if(opts.rotation){src+='r'+opts.rotation;}
if(opts.mode){src+='s'+opts.mode;}
src+='.'+opts.format;return'<img src="'+src+'"'
+(opts['class']?' class="'+opts['class']+'"':'')
+(opts.alt?' alt="'+opts.alt+'"':'')
+'>';}
$.image.REGULAR=0;$.image.CROP=1;$.image.EXPAND=2;$.image.defaults={};})(jQuery);;(function($){var count=0;$.fn.external=function(options){$(this).live('click',function(){var opts=$.extend($.fn.external.defaults,options,{});if($(this).prev('.popup_width').length>0){opts.width=$(this).prevAll('.popup_width').val();}
else if($(this).parent().is('#provider_page_wide_banner')){opts.width=$(this).parent().prev('.popup_width').val();}
else{opts.width=800;}
window.open($(this).attr("href"),'external_'+(++count)+Math.floor(Math.random()*10),$.param(opts).replace(/&/g,','));return false;});return this;}
$.fn.external.defaults={toolbar:1,scrollbars:1,location:1,statusbar:1,menubar:1,resizable:1,width:800,height:600,left:100,top:150}})(jQuery);;var emailPattern=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i;jQuery.fn.fadeToggle=function(speed,easing,callback){return this.animate({opacity:'toggle'},speed,easing,callback);};jQuery(function($){$('html').removeClass('no-js').addClass('js');});jQuery(function($){$.history.init('#historyinput','#historyiframe');});function slug(text){return text.replace(/\'/,"").replace(/[^a-zA-Z0-9\_]+/g,"_").replace(/^_+/,'').replace(/_+$/,'').replace(/_+/,'_').toLowerCase();}
$.fn.clickable=function(){$(this).hover(function(){$('.new_button',this).addClass('hover');},function(){$('.new_button',this).removeClass('hover');});$(this).click(function(){$('.new_button',this).click();return false;});}
$.fn.stickyheader=function(){if(!$.browser.msie||$.browser.version>6){$(window).scroll(function(){$('#sticky').hide();var table=$('#products table').not('#sticky table');var table_offset=$('#products').offset();if($(document).scrollTop()>table_offset.top&&$(document).scrollTop()<table.innerHeight()+table_offset.top-20){$('#sticky').show().css('left',table_offset.left);$('#sticky_shadow').insertAfter('#sticky table').show();}
else{$('#sticky').css('left','-9999px');}});$(window).bind('resize',function(){var table_offset=$('#products').offset();$('#sticky').css('left',table_offset.left);});}}
$.fn.hint=function(){return this.each(function(){var t=$(this);var title=t.attr('title');if(title){t.focus(function(){if(t.val()==title){t.addClass('blur');t.val('');}})
t.blur(function(){if(t.val()==''){t.removeClass('blur');t.val(title);}})
t.blur();}})}
function getUrlVars()
{var vars=[],hash;var hashes=window.location.href.slice(window.location.href.indexOf('?')+1).split('&');for(var i=0;i<hashes.length;i++)
{hash=hashes[i].split('=');vars.push(hash[0]);vars[hash[0]]=hash[1];}
return vars;}
function buttons(){$('button:not(.new_button)').each(function(){$(this).wrap('<div class=\"button\"></div>').parent().addClass($(this).attr('class')).end().removeAttr('class');});if($('#products').length==0){$('<span></span>').prependTo('.button');}
$('.button.arrowed').prepend('<span class="arrow_box"></span>');$('.button.down_arrowed').append('<span class="down_arrow_box"></span>')
$('button').each(function(){if($(this).is(':not(.cloned)')){$(this).after('<a href="" id="'+$(this).attr('id')+'" class="submit btn_clone '+$(this).attr('class')+'">'+$(this).html()+'</a>');$(this).hide().addClass('cloned');}});$('.btn_clone').live('click',function(){if(!$(this).parents('form').hasClass('invalid')){$(this).parents('form').submit();}
return false;});}
$(document).ready(function(){buttons();$('.stretched').hover(function(){$('.new_button',this).addClass('hover');},function(){$('.new_button',this).removeClass('hover');});$('.item_box .unclick').click(function(){return false;});$('.clickable').clickable();$('body').addClass('js_active');$("a[href^='/go/']").external({width:$(this).prevAll('.popup_width').val()});$("a[rel^='external']").external();Cufon.replace('.sifr:not(.lightbox)');if(!$.browser.msie||$.browser.version>6){Cufon.replace('.top10font',{hover:true,hoverables:{div:true,span:true,a:true}});}
if($('#channel_nav').length){var channel_nav=$('#channel_nav');var channel_nav_trigger=$('#channel_trigger a');var nav_open=false;var link_text=channel_nav_trigger.html();channel_nav.hide();channel_nav.find('li').css('top','-150px');channel_nav_trigger.click(function(){if(nav_open==false){channel_nav.slideDown('fast',function(){channel_nav.find('li').eq(0).animate({top:0},200,function(){$(this).next().animate({top:0},150,function(){$(this).next().animate({top:0},100);});});});channel_nav_trigger.html('Close').addClass('clicked');nav_open=true;}
else{channel_nav.find('li').eq(0).animate({top:-150},200,function(){$(this).next().animate({top:-150},150,function(){$(this).next().animate({top:-150},100,function(){channel_nav.slideUp();});});});channel_nav_trigger.html(link_text).removeClass('clicked');nav_open=false;}
return false;});}
$("#consent div").hide();$("#consent label").append(' <a href="#">Privacy policy</a>.');$("#consent a").click(function(){$("#consent div").slideToggle('fast');return false;});$('#email_form').submit(function(){if(!emailPattern.test($("#email_form [name=\"email\"]").val())){$('#email_status').html('Please enter your email address').slideDown('fast');}
else{$("#email_form fieldset").hide();$("#email_status").clone().insertAfter('#rating_form').removeClass('error_message').html('<img src="/_img/broadband/brands/loading.gif" alt="Loading..." title="Sending review" />').slideDown('fast');$("#email_status").remove();$.ajax({type:"POST",url:"/_ajax/rating.php",data:$('#email_form').serialize(),success:function(response){if(response=='success'){message='<p class="success">Subscription successful</p>';}
else{message='<p><strong>There\'s been a problem saving your review.</strong></p><p>Our technical team have been informed so please try again later.</p>';}
$("#email_form").html(message);}});}
return false;});$('input.hint').hint();if(banner_data){for(i in banner_data.banners){var req_url='channel_id='+banner_data.channel_id+'&menu_id='+banner_data.menu_id+'&types='+banner_data.banners[i];delete banner_data.banners[i];$.ajax({type:"GET",url:"/_ajax/banners.php?rand="+new Date().getTime(),data:req_url,container_id:i,success:function(response){$("#"+this.container_id).before(response).remove();}});}}});function postForm(form,status,success_message,failure_message){$.ajax({type:"POST",url:"/_ajax/rating.php",data:$(form).serialize(),success:function(response){if(response=='success'){message=success_message;$(status).addClass('success').removeClass('error_message');}
else{message=failure_message;$(status).addClass('error_message');}
$(status).html(message).slideDown('slow');}});}
function formFail(messageContainer,problem){$('#'+messageContainer).html(problem);$('#'+messageContainer).slideDown('fast');return false;}
function formPassed(messageContainer){$('#'+messageContainer).hide();}
$.fn.checkEmail=function(){$('button',form).addClass('disabled_button');var emailPattern=/\b[\w\.-]+@[\w\.-]+\.\w{2,4}\b/gi;var form=$(this);var field=$('input[name="email_address"]',form);$(field).bind('keyup click change',function(){testValue(field.val());});$('label',form).before('<div class="error_alert_icn"></div>');function testValue(value){var valid=false;if(!emailPattern.test(value)){$('.submit',form).addClass('disabled_button');}
else{$('.submit',form).removeClass('disabled_button');$(field).removeClass('invalid');$(field).prev('label').prev('.error_alert_icn').hide();valid=true;}
return valid;}
$(form).submit(function(){if(!testValue(field.val())){$(field).addClass('invalid');$(field).prev('label').prev('.error_alert_icn').show();return false;}});};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}})());;
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Part of the digitally encoded machine readable outline data for producing the
 * Typefaces provided is copyrighted (c) 1989, 1995, 2003 Linotype Library GmbH,
 * www.linotype.com. All rights reserved. This software is the property of Linotype
 * Library GmbH, and may not be reproduced, used, displayed, modified, disclosed or
 * transferred without the express written approval of Linotype Library GmbH.
 * Copyright (c) 1989, 1995 Adobe Systems Incorporated. All rights reserved.
 * 
 * Description:
 * Part of the digitally encoded machine readable outline data for producing the
 * Typefaces provided is copyrighted (c) 1989, 1995, 2003 Linotype Library GmbH,
 * www.linotype.com. All rights reserved. This software is the property of Linotype
 * Library GmbH, and may not be reproduced, used, displayed, modified, disclosed or
 * transferred without the express written approval of Linotype Library GmbH.
 * Copyright (c) 1989, 1995 Adobe Systems Incorporated. All rights reserved.
 * 
 * Manufacturer:
 * Linotype Library GmbH & Adobe Systems
 * 
 * Designer:
 * H. F. W. Brendel / Adrian Williams
 * 
 * Vendor URL:
 * http://www.linotype.com
 * 
 * License information:
 * NOTIFICATION OF LICENSE AGREEMENT
 * 
 * This typeface is the property of Heidelberger Druckmaschinen AG and its use by
 * you is covered under the terms of a license agreement respectively font software
 * license agreement. We are fully authorized and empowered to use and commercially
 * exploit these intellectual property rights in their business of licensing,
 * manufacturing and selling typefaces.
 * 
 * You have obtained this typeface software either directly from Linotype Library
 * GmbH or together with software distributed by one of Linotype Library's
 * licensees.
 * 
 * This software is a valuable asset of the Linotype Library GmbH. Unless you have
 * entered into a specific license agreement granting you additional rights, your
 * use of this software is limited to your workstation(s) for your own publishing
 * use. You may not copy or distribute this software.
 * 
 * If you have any question concerning your rights you should review the license
 * agreement you received with the software or contact Linotype Library GmbH for a
 * copy of the license agreement.
 * 
 * Linotype Library can be contacted at:
 * 
 * Tel.: +49(6172) 484-401  or http://www.linotype.com
 */
Cufon.registerFont({"w":192,"face":{"font-family":"VAGRounded LT Thin","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 3 3 3 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"2","cap-height":"2","bbox":"-19.7184 -332 322.085 104","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0020-U+0192"},"glyphs":{" ":{"w":86},"!":{"d":"37,-242v0,-11,4,-16,13,-16v9,0,13,5,13,16r0,153v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-153xm67,-14v0,21,-33,20,-34,0v0,-20,34,-22,34,0","w":100},"\"":{"d":"80,-184v-21,-1,-9,-40,-12,-61v0,-7,4,-14,12,-13v21,2,12,40,12,61v0,6,-5,14,-12,13xm33,-184v-20,-2,-8,-40,-11,-61v0,-7,4,-14,11,-13v21,1,9,40,12,61v0,7,-4,14,-12,13","w":113},"#":{"d":"125,-157r-48,0r-8,58r48,0xm113,2v-14,0,-7,-18,-7,-27r7,-53r-47,0r-10,67v0,8,-4,13,-12,13v-13,0,-9,-18,-8,-27r8,-53v-15,0,-36,3,-37,-11v0,-16,25,-8,40,-10r8,-58v-15,-1,-37,4,-37,-11v0,-15,24,-10,40,-11r9,-67v1,-8,5,-12,13,-12v14,0,7,18,7,27r-7,52r47,0r10,-67v0,-8,4,-12,12,-12v13,0,9,18,8,27r-8,52v15,0,37,-3,37,11v0,16,-24,10,-40,11r-8,58v15,1,37,-5,37,10v-1,15,-24,10,-40,11r-9,67v-1,8,-4,13,-13,13"},"$":{"d":"19,-40v19,4,27,21,56,18r0,-106v-31,-12,-64,-22,-63,-66v1,-40,28,-57,63,-64v-4,-13,5,-36,13,-17r0,17v25,1,51,7,56,28v0,6,-3,13,-10,12v-16,-4,-24,-18,-46,-17r0,85v34,12,72,23,71,70v-1,48,-27,76,-71,81v4,14,-6,37,-13,17r0,-16v-31,-1,-61,-7,-68,-32v0,-4,5,-12,12,-10xm75,-234v-42,0,-48,58,-15,72r15,6r0,-78xm88,-22v45,-3,64,-78,17,-94v-6,-2,-11,-5,-17,-7r0,101","w":166},"%":{"d":"95,-3v-2,11,-20,12,-21,0r101,-257v11,-8,24,6,14,17xm163,-59v1,24,10,44,34,44v24,0,33,-20,34,-44v0,-24,-11,-46,-34,-46v-23,0,-34,23,-34,46xm252,-59v0,36,-20,61,-55,61v-35,0,-56,-26,-56,-61v0,-36,20,-63,56,-63v35,0,55,26,55,63xm36,-195v1,24,10,44,34,44v24,0,33,-20,34,-44v0,-24,-11,-46,-34,-46v-23,0,-34,23,-34,46xm125,-195v0,36,-20,61,-55,61v-35,0,-56,-26,-56,-61v0,-36,20,-63,56,-63v35,0,55,26,55,63","w":266},"&":{"d":"43,-76v-4,67,94,68,117,17r-70,-81v-23,12,-46,33,-47,64xm97,-171v17,-10,37,-16,37,-39v0,-17,-14,-27,-32,-27v-37,0,-34,42,-13,57v4,5,4,4,8,9xm160,-212v0,33,-26,47,-47,60r63,73v14,-16,20,-41,40,-51v29,18,-15,50,-24,69v12,17,31,29,38,48v2,17,-18,18,-24,6r-29,-33v-19,20,-40,41,-78,42v-52,0,-84,-26,-84,-77v0,-43,31,-63,61,-83v-13,-16,-30,-27,-30,-52v0,-32,22,-48,57,-48v34,0,57,15,57,46","w":240},"'":{"d":"33,-184v-20,-2,-8,-40,-11,-61v0,-7,4,-14,11,-13v21,1,9,40,12,61v0,7,-4,14,-12,13","w":66},"(":{"d":"58,-258v-26,77,-26,201,0,278v0,11,-16,12,-20,3v-32,-73,-32,-213,0,-284v4,-8,20,-7,20,3","w":73},")":{"d":"15,20v27,-74,26,-204,0,-278v11,-18,27,-1,28,15v22,76,22,199,-7,266v-5,9,-20,8,-21,-3","w":73},"*":{"d":"70,-130v-20,-4,-7,-36,-6,-54v-12,8,-25,21,-38,26v-15,0,-15,-16,-1,-22r33,-14v-13,-8,-38,-12,-44,-26v11,-26,38,9,50,15v1,-18,-15,-49,6,-53v21,3,5,35,6,53v12,-8,23,-22,38,-25v14,0,14,15,1,21r-33,15v13,8,38,11,43,25v-10,28,-38,-10,-49,-15v0,18,15,49,-6,54","w":139},"+":{"d":"17,-91v5,-23,53,-8,79,-12v4,-26,-11,-72,12,-79v23,7,8,53,12,79v26,4,73,-11,79,12v-7,23,-53,8,-79,12v-4,26,11,72,-12,79v-23,-7,-8,-53,-12,-79v-26,-4,-72,11,-79,-12","w":216},",":{"d":"36,36v-4,11,-25,10,-24,-3v2,-22,17,-37,23,-56v4,-12,25,-10,25,3v-4,21,-18,37,-24,56","w":86},"-":{"d":"15,-96v8,-23,56,-8,83,-12v7,0,14,5,14,12v-6,24,-57,7,-84,12v-7,0,-13,-5,-13,-12","w":126},".":{"d":"60,-14v0,22,-33,19,-33,0v0,-9,7,-17,16,-17v10,0,17,7,17,17","w":86},"\/":{"d":"38,-7v-2,11,-23,12,-24,0r99,-249v12,-7,23,2,17,17","w":146},"0":{"d":"96,-22v75,-9,65,-166,24,-205v-56,-29,-80,40,-77,99v2,51,7,100,53,106xm178,-128v0,69,-19,130,-82,130v-62,0,-81,-60,-81,-130v0,-70,19,-130,81,-130v63,0,82,61,82,130"},"1":{"d":"31,-256v21,3,57,-9,58,12r0,230v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-219v-18,-1,-45,6,-46,-11v-1,-7,7,-13,14,-12","w":126},"2":{"d":"96,-258v69,-5,81,74,44,124r-81,110r99,0v7,0,14,5,14,12v1,7,-7,13,-14,12r-120,0v-17,0,-15,-15,-7,-26v33,-47,74,-92,100,-144v15,-31,0,-67,-36,-65v-33,2,-48,24,-48,59v0,8,-4,13,-12,13v-11,0,-13,-7,-14,-17v2,-47,28,-75,75,-78"},"3":{"d":"90,-258v69,-6,84,96,35,121v25,9,43,29,43,61v0,49,-31,78,-78,78v-40,0,-65,-24,-72,-56v5,-25,24,-12,28,4v11,42,94,36,94,-21v0,-41,-29,-47,-58,-55v-15,-24,27,-19,36,-35v15,-27,8,-76,-28,-74v-23,0,-35,16,-35,41v0,7,-6,13,-13,13v-7,0,-13,-6,-13,-13v1,-38,23,-61,61,-64"},"4":{"d":"128,-93r-1,-144r-83,144r84,0xm181,-81v0,13,-13,13,-27,12v-4,24,11,68,-13,71v-24,-2,-9,-48,-13,-71r-103,0v-21,2,-10,-21,-4,-31r86,-142v6,-20,47,-23,47,5r0,144v13,-1,27,0,27,12"},"5":{"d":"90,-141v-19,0,-39,23,-48,1v7,-37,10,-78,20,-112v21,-10,60,-1,88,-4v7,0,15,5,14,12v0,7,-7,11,-14,11r-68,0r-11,75v48,-21,98,15,97,69v-1,55,-26,91,-79,91v-32,0,-62,-15,-71,-39v0,-6,6,-14,13,-13v19,8,27,30,58,28v36,-2,50,-27,51,-63v1,-33,-18,-56,-50,-56"},"6":{"d":"50,-81v1,32,13,59,45,59v34,0,48,-25,48,-59v0,-35,-14,-62,-47,-63v-34,-1,-47,26,-46,63xm171,-83v-4,48,-25,83,-73,85v-91,3,-87,-123,-50,-181v20,-32,39,-65,73,-83v24,7,2,28,-9,38v-18,16,-37,42,-47,69v50,-29,111,9,106,72"},"7":{"d":"10,-244v-1,-7,7,-13,14,-12r126,0v18,-1,13,13,8,23r-95,226v-2,13,-24,12,-25,-1v28,-78,63,-149,93,-225r-107,0v-7,0,-14,-4,-14,-11","w":173},"8":{"d":"58,-197v0,24,12,42,38,42v26,0,39,-17,39,-41v0,-22,-17,-39,-39,-39v-23,0,-38,16,-38,38xm171,-76v0,47,-27,75,-75,78v-82,6,-99,-125,-30,-143v-16,-13,-34,-31,-34,-58v0,-36,26,-59,64,-59v39,0,65,23,65,59v0,27,-18,45,-34,58v27,7,44,33,44,65xm143,-78v0,-31,-16,-53,-47,-53v-31,0,-46,23,-46,53v0,30,15,56,46,56v32,0,47,-25,47,-56"},"9":{"d":"143,-175v-1,-32,-13,-60,-45,-60v-33,0,-48,25,-48,60v0,34,13,61,47,62v34,0,47,-26,46,-62xm22,-173v4,-48,23,-84,73,-85v91,-3,88,123,50,180v-21,32,-39,66,-73,84v-7,1,-13,-7,-12,-14v21,-29,54,-54,68,-93v-52,28,-111,-9,-106,-72"},":":{"d":"60,-14v0,22,-33,19,-33,0v0,-9,7,-17,16,-17v10,0,17,7,17,17xm43,-120v-10,0,-16,-7,-16,-16v0,-9,7,-17,16,-17v10,0,17,7,17,17v0,10,-7,16,-17,16","w":86},";":{"d":"43,-153v9,0,17,8,17,17v0,22,-33,19,-33,0v0,-8,8,-17,16,-17xm36,36v-4,11,-25,10,-24,-3v2,-22,17,-37,23,-56v4,-12,25,-10,25,3v-4,21,-18,37,-24,56","w":86},"<":{"d":"181,-181v14,-10,31,7,18,15v-45,29,-100,49,-149,75r142,69v12,3,15,23,0,24v-60,-22,-112,-55,-169,-80v-12,-5,-13,-21,0,-26","w":216},"=":{"d":"17,-55v-1,-7,7,-13,14,-12r154,0v7,0,15,5,14,12v0,7,-7,12,-14,12r-154,0v-7,0,-14,-5,-14,-12xm17,-127v-1,-7,7,-13,14,-12r154,0v7,0,15,5,14,12v0,7,-7,12,-14,12r-154,0v-7,0,-14,-5,-14,-12","w":216},">":{"d":"35,-1v-12,9,-29,-4,-19,-15v46,-29,101,-49,150,-75r-149,-75v-7,-5,-4,-22,7,-18v61,21,112,55,169,80v12,5,13,21,0,26","w":216},"?":{"d":"76,2v-9,0,-17,-7,-17,-16v0,-10,7,-17,17,-17v10,0,17,7,17,17v0,9,-8,16,-17,16xm150,-195v0,43,-26,61,-61,68v-2,20,8,55,-13,55v-23,0,-12,-50,-11,-73v26,-8,57,-16,57,-49v0,-48,-78,-55,-86,-12v-2,10,-3,14,-14,14v-8,0,-12,-6,-12,-13v2,-36,30,-53,68,-53v43,0,72,21,72,63","w":159},"@":{"d":"148,-204v19,0,37,10,43,28v-1,-15,21,-31,28,-13v-10,37,-24,70,-32,109v-1,7,4,11,10,11v35,-7,56,-41,56,-80v0,-59,-44,-90,-105,-90v-68,0,-113,45,-113,112v0,66,45,105,110,110v51,3,74,-24,103,-42v6,-1,7,4,8,8v-17,32,-60,53,-109,53v-79,0,-133,-52,-133,-131v0,-79,55,-129,134,-129v73,0,126,36,126,107v0,55,-36,94,-84,101v-17,2,-25,-10,-30,-23v-21,39,-100,25,-94,-32v6,-53,29,-99,82,-99xm150,-180v-36,3,-56,36,-56,73v0,19,10,34,29,33v36,-2,53,-41,57,-74v2,-20,-10,-34,-30,-32","w":288},"A":{"d":"164,-80r-54,-145r-53,145r107,0xm213,-19v9,13,-7,28,-19,18v-10,-16,-14,-37,-22,-55r-124,0v-7,18,-13,39,-22,55v-10,9,-29,-3,-18,-18r88,-233v10,-13,35,-3,34,12","w":220,"k":{"y":6,"w":6,"v":6,"Y":13,"W":13,"V":20,"T":27}},"B":{"d":"154,-74v0,-49,-51,-55,-104,-51r0,101v53,2,104,2,104,-50xm134,-191v0,-41,-40,-45,-84,-42r0,86v45,3,85,-1,84,-44xm86,-256v75,-12,99,97,38,117v31,8,56,27,56,66v0,70,-65,78,-140,73v-12,0,-16,-2,-16,-14r0,-229v0,-24,41,-10,62,-13","w":193},"C":{"d":"14,-125v0,-75,35,-133,112,-133v36,0,67,13,78,38v1,9,-6,13,-12,14v-20,-10,-34,-31,-66,-29v-57,3,-84,52,-84,110v0,58,25,103,88,103v32,0,50,-15,68,-25v7,0,11,4,11,13v-10,25,-45,36,-80,36v-78,0,-115,-51,-115,-127","w":213},"D":{"d":"184,-131v1,-78,-46,-113,-134,-102r0,209r50,0v63,0,83,-45,84,-107xm40,0v-12,-1,-16,-2,-16,-14r0,-229v0,-11,4,-13,16,-13r64,0v74,2,108,57,108,130v0,98,-64,136,-172,126","w":226},"E":{"d":"135,-128v-6,24,-58,7,-85,12r0,92r78,0v7,0,14,5,14,12v1,7,-7,13,-14,12r-88,0v-12,0,-16,-2,-16,-14r0,-229v0,-11,4,-13,16,-13r85,0v7,0,13,5,13,12v0,6,-6,11,-13,11r-75,0r0,93r71,0v7,0,14,5,14,12","w":159},"F":{"d":"132,-128v-4,25,-56,7,-82,12r0,102v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-229v0,-8,6,-12,13,-13r91,0v7,0,14,4,13,12v1,7,-6,11,-13,11r-78,0r0,93r69,0v6,0,14,5,13,12","w":146,"k":{"A":13,".":27,",":27}},"G":{"d":"146,-132v2,-21,41,-10,63,-12v15,-1,22,6,22,19v1,80,-29,127,-104,127v-78,0,-113,-54,-113,-130v0,-73,37,-130,112,-130v39,0,76,12,87,39v2,9,-6,13,-12,13v-23,-8,-39,-30,-74,-29v-59,3,-78,49,-85,107v-12,103,134,150,159,45v3,-12,4,-25,4,-38v-21,-3,-56,8,-59,-11","w":240},"H":{"d":"50,-14v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-228v0,-11,4,-16,13,-16v9,0,13,5,13,16r0,99r140,0r0,-99v0,-11,4,-16,13,-16v9,0,13,5,13,16r0,228v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-106r-140,0r0,106","w":240},"I":{"d":"50,-14v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-228v0,-11,4,-16,13,-16v9,0,13,5,13,16r0,228","w":73},"J":{"d":"45,-19v24,0,33,-16,32,-40r0,-183v0,-11,4,-16,13,-16v9,0,13,5,13,16r0,183v10,63,-85,80,-109,36v8,-29,29,8,51,4","w":126},"K":{"d":"194,-21v9,5,8,24,-5,23v-8,0,-11,-3,-16,-8r-123,-118r0,110v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-228v0,-11,4,-16,13,-16v9,0,13,5,13,16r0,95r122,-109v13,-9,27,7,14,19r-113,101","w":200},"L":{"d":"37,0v-7,0,-13,-6,-13,-13r0,-229v0,-11,4,-16,13,-16v9,0,13,5,13,16r0,218v27,4,73,-11,81,12v1,7,-7,13,-14,12r-80,0","w":133,"k":{"y":20,"Y":40,"W":27,"V":33,"T":33}},"M":{"d":"34,-2v-18,13,-27,-5,-19,-25r31,-211v0,-24,40,-28,47,-4r57,199r58,-199v3,-23,42,-21,46,4r34,228v2,13,-16,16,-22,8v-19,-70,-21,-156,-37,-228r-64,215v-1,18,-22,24,-28,4r-67,-219r-32,217v-1,5,-2,8,-4,11","w":300},"N":{"d":"216,-14v3,20,-18,19,-26,7r-140,-204r0,197v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-229v-3,-17,22,-20,28,-6r138,201r0,-194v0,-11,4,-16,13,-16v9,0,13,5,13,16r0,228","w":239},"O":{"d":"42,-128v0,56,22,106,81,106v58,0,81,-48,81,-106v0,-58,-23,-107,-81,-107v-59,0,-81,50,-81,107xm123,2v-73,0,-109,-57,-109,-130v0,-73,36,-130,109,-130v74,0,109,57,109,130v0,73,-35,130,-109,130","w":246},"P":{"d":"155,-177v0,-53,-48,-60,-105,-56r0,111v56,4,105,-3,105,-55xm181,-179v0,68,-55,87,-131,81r0,84v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-229v0,-10,4,-13,16,-13r62,0v51,0,79,30,79,77","w":186,"k":{"A":20,".":33,",":33}},"Q":{"d":"42,-128v-3,70,46,131,115,101v9,-4,17,-11,23,-19v-9,-11,-23,-21,-28,-34v-1,-12,17,-14,23,-5r17,18v26,-65,10,-172,-69,-170v-60,1,-78,52,-81,109xm123,-258v103,-4,133,133,88,211v10,13,26,23,32,39v-14,26,-36,-12,-46,-21v-17,18,-40,32,-74,31v-73,-3,-109,-57,-109,-130v0,-73,36,-127,109,-130","w":246},"R":{"d":"50,-136v49,2,98,2,98,-46v0,-52,-46,-54,-98,-51r0,97xm170,-20v9,6,5,23,-6,22v-4,0,-8,-2,-12,-6r-102,-110r0,100v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-229v2,-25,49,-8,72,-13v47,0,78,25,78,69v0,52,-34,78,-92,73","w":186},"S":{"d":"128,-133v59,36,25,142,-50,135v-32,-3,-63,-6,-71,-30v12,-31,38,9,67,6v36,-4,56,-21,59,-55v-8,-69,-121,-37,-121,-116v0,-68,105,-87,132,-37v-10,31,-35,-5,-60,-5v-34,0,-62,37,-38,63v19,20,58,24,82,39","w":166},"T":{"d":"153,-244v-4,20,-42,8,-63,11r0,219v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-219v-22,-3,-60,9,-64,-11v-1,-7,7,-13,14,-12r125,0v7,0,15,5,14,12","w":153,"k":{"\u00ad":40,"y":33,"w":33,"u":33,"s":33,"r":33,"o":33,"i":11,"e":33,"c":33,"a":33,"A":27,";":33,":":33,".":33,",":33}},"U":{"d":"120,2v-58,0,-96,-31,-96,-89r0,-155v0,-11,4,-16,13,-16v9,0,13,5,13,16r0,152v1,44,27,68,70,68v43,0,70,-25,70,-68r0,-152v0,-11,4,-16,13,-16v9,0,13,5,13,16r0,155v-2,58,-38,89,-96,89","w":239},"V":{"d":"9,-228v-16,-23,12,-43,20,-20r71,207r71,-207v3,-14,26,-13,26,2r-81,232v-2,18,-29,21,-31,0","w":200,"k":{"\u00ad":13,"u":6,"r":6,"o":13,"e":13,"a":13,"A":20,";":6,":":6,".":33,",":33}},"W":{"d":"14,-221v-4,-19,-8,-45,17,-35v3,2,4,5,5,10r35,218r62,-218v1,-14,23,-16,28,0r62,218r35,-218v-1,-15,26,-17,26,-2r-42,236v-2,18,-34,19,-39,0r-56,-206r-58,206v-2,19,-35,19,-38,0","w":293,"k":{"\u00ad":13,"o":6,"e":6,"a":6,"A":13,";":3,":":3,".":13,",":13}},"X":{"d":"23,-237v-12,-10,2,-27,15,-19v25,31,46,66,69,98r69,-98v12,-8,27,8,14,19r-69,99r89,130v-2,13,-22,13,-26,1r-77,-110r-83,117v-13,8,-28,-8,-15,-20r84,-118","w":213},"Y":{"d":"8,-230v-16,-14,3,-43,16,-21r63,104v23,-36,42,-77,68,-110v19,-6,23,14,10,27r-65,109r0,107v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-107","w":173,"k":{"\u00ad":27,"v":6,"u":13,"q":27,"p":20,"o":27,"e":27,"a":27,"A":20,";":13,":":13,".":33,",":27}},"Z":{"d":"173,-256v15,-1,14,13,7,22r-138,210r134,0v7,0,14,5,14,12v1,7,-7,13,-14,12r-144,0v-27,1,-22,-20,-11,-37r128,-196r-120,0v-7,0,-14,-4,-14,-11v-1,-7,7,-13,14,-12r144,0","w":200},"[":{"d":"64,21v-17,-1,-37,4,-37,-13r0,-254v-2,-16,21,-11,37,-12v7,-2,12,5,11,10v1,10,-10,13,-22,11r0,236v12,-1,23,1,22,11v1,5,-4,11,-11,11","w":79},"\\":{"d":"17,-239v-9,-13,4,-24,16,-17v37,79,68,164,99,249v0,12,-22,12,-23,0","w":146},"]":{"d":"16,-258v16,1,37,-5,37,12r0,254v1,17,-20,13,-37,13v-6,1,-12,-6,-11,-11v-1,-10,10,-13,22,-11r0,-236v-12,1,-23,-1,-22,-11v-1,-5,4,-12,11,-10","w":79},"^":{"d":"44,-107v-2,15,-31,18,-26,-1r78,-143v4,-9,20,-10,24,0r79,147v-3,16,-24,10,-27,-3r-64,-116","w":216},"_":{"d":"190,36v0,5,-4,10,-10,9r-180,0v-6,1,-10,-4,-10,-9v0,-5,4,-10,10,-9r180,0v6,-1,10,4,10,9","w":180},"`":{"d":"66,-241v17,3,11,29,-4,24v-21,-8,-47,-15,-64,-27v-5,-12,6,-21,19,-16","w":73},"a":{"d":"96,-172v-73,0,-73,153,0,153v41,0,54,-35,54,-77v0,-42,-14,-76,-54,-76xm96,-194v27,0,40,14,54,29v-1,-14,0,-30,13,-29v9,0,13,6,13,17r0,163v0,11,-4,16,-13,16v-15,0,-11,-17,-14,-28v-10,16,-28,28,-53,28v-56,-2,-82,-41,-82,-98v0,-55,27,-95,82,-98","w":200},"b":{"d":"104,-172v-41,0,-55,36,-55,76v0,41,14,77,55,77v74,0,73,-153,0,-153xm104,2v-26,1,-42,-13,-54,-28v1,14,0,29,-13,28v-9,0,-13,-5,-13,-16r0,-247v0,-11,4,-17,13,-17v9,0,13,6,13,17r1,96v12,-17,27,-29,53,-29v56,0,82,43,82,98v0,57,-26,96,-82,98","w":200},"c":{"d":"96,-170v-72,3,-71,145,0,148v18,1,26,-7,39,-10v5,0,12,5,11,11v-3,20,-27,23,-50,23v-55,0,-82,-43,-82,-98v0,-55,30,-98,86,-98v20,0,42,4,47,20v-3,29,-29,2,-51,4","w":159},"d":{"d":"96,-172v-73,0,-73,153,0,153v41,0,54,-35,54,-77v0,-42,-14,-76,-54,-76xm96,-194v27,0,40,14,54,29r0,-96v0,-11,4,-17,13,-17v9,0,13,6,13,17r0,247v0,11,-4,16,-13,16v-15,0,-11,-17,-14,-28v-10,16,-28,28,-53,28v-56,-2,-82,-41,-82,-98v0,-55,27,-95,82,-98","w":200},"e":{"d":"150,-106v8,-67,-89,-90,-104,-24v-2,8,-4,16,-4,24r108,0xm178,-100v1,12,-6,15,-17,16r-119,0v3,35,21,63,57,65v32,1,44,-21,64,-30v8,0,12,4,12,13v-10,24,-39,37,-74,38v-59,0,-87,-41,-87,-98v0,-55,28,-98,82,-98v55,0,80,39,82,94","w":186},"f":{"d":"90,-181v0,14,-19,11,-34,11r0,156v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-156v-14,1,-28,1,-28,-11v0,-12,14,-12,28,-11v-1,-46,-6,-95,48,-86v19,-3,24,27,4,24v-37,-6,-24,34,-26,62v15,0,34,-4,34,11","w":86,"k":{"f":-6}},"g":{"d":"96,-172v-74,1,-73,153,0,153v47,0,59,-42,55,-95v-3,-33,-20,-57,-55,-58xm96,-194v24,0,42,15,54,28v-8,-27,25,-41,26,-11r0,168v-1,55,-30,87,-83,87v-33,0,-64,-12,-74,-35v0,-8,4,-13,13,-13v20,5,31,25,58,24v46,0,64,-31,60,-81v-11,18,-27,29,-54,29v-56,-2,-82,-41,-82,-98v0,-55,27,-98,82,-98","w":200},"h":{"d":"96,-170v-66,2,-42,93,-46,156v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-247v0,-11,4,-17,13,-17v9,0,13,6,13,17r0,93v30,-46,119,-25,119,43r0,111v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16v-5,-63,23,-158,-47,-156"},"i":{"d":"37,-223v-11,0,-18,-7,-18,-18v0,-10,8,-17,18,-17v10,0,17,7,17,17v0,10,-7,18,-17,18xm50,-14v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-163v0,-11,4,-17,13,-17v9,0,13,6,13,17r0,163","w":73},"j":{"d":"37,-223v-11,0,-18,-7,-18,-18v0,-10,8,-17,18,-17v10,0,17,7,17,17v0,10,-7,18,-17,18xm50,61v0,11,-4,17,-13,17v-9,0,-13,-6,-13,-17r0,-238v0,-11,4,-17,13,-17v9,0,13,6,13,17r0,238","w":73},"k":{"d":"152,-25v17,9,5,37,-11,24v-33,-26,-61,-61,-91,-90r0,77v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-247v0,-11,4,-17,13,-17v9,0,13,6,13,17r0,137v31,-23,57,-49,90,-70v13,0,13,18,4,25r-78,60","w":159},"l":{"d":"50,-14v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-247v0,-11,4,-17,13,-17v9,0,13,6,13,17r0,247","w":73},"m":{"d":"50,-168v18,-34,91,-34,101,8v26,-55,125,-38,125,35r0,111v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16v0,-60,23,-157,-43,-156v-63,1,-40,94,-44,156v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16v0,-60,23,-157,-43,-156v-63,1,-40,94,-44,156v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-163v0,-11,4,-17,13,-17v12,-1,14,12,13,26","w":299},"n":{"d":"96,-170v-66,2,-42,93,-46,156v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-163v0,-11,4,-17,13,-17v12,-1,14,12,13,26v30,-46,119,-25,119,43r0,111v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16v-5,-63,23,-158,-47,-156"},"o":{"d":"96,-194v56,0,83,42,83,98v0,57,-26,98,-83,98v-56,0,-82,-41,-82,-98v0,-55,27,-98,82,-98xm96,-172v-74,0,-73,153,0,153v41,0,55,-36,55,-77v0,-40,-14,-76,-55,-76"},"p":{"d":"104,-172v-41,0,-55,36,-55,76v0,41,14,77,55,77v74,0,73,-153,0,-153xm104,2v-26,0,-40,-13,-54,-28r0,87v0,11,-4,17,-13,17v-9,0,-13,-6,-13,-17r0,-238v0,-11,4,-17,13,-17v15,0,12,17,14,29v10,-17,28,-29,53,-29v56,0,82,41,82,98v0,55,-25,97,-82,98","w":200},"q":{"d":"96,-19v41,0,55,-36,55,-77v0,-40,-14,-76,-55,-76v-74,0,-73,153,0,153xm96,2v-56,0,-82,-43,-82,-98v0,-57,26,-96,82,-98v25,0,42,14,54,29v-1,-14,0,-30,13,-29v9,0,13,6,13,17r0,238v0,11,-4,17,-13,17v-9,0,-13,-6,-13,-17r-1,-87v-12,16,-28,28,-53,28","w":200},"r":{"d":"93,-194v24,0,21,27,-1,28v-24,8,-43,24,-42,58r0,94v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-163v0,-11,4,-17,13,-17v15,-1,13,20,13,35v8,-18,23,-35,43,-35","w":113,"k":{"\u00ad":20,"y":-6,"v":-6,".":20,",":20}},"s":{"d":"49,-100v-56,-19,-30,-99,27,-94v29,3,60,8,68,30v-1,6,-4,14,-13,12v-18,-3,-26,-20,-50,-20v-33,0,-51,35,-19,50v35,16,85,20,87,69v3,68,-122,71,-140,19v1,-7,6,-11,12,-13v19,7,31,26,58,28v35,2,59,-41,25,-58v-17,-9,-36,-17,-55,-23","w":159},"t":{"d":"84,-181v0,12,-14,12,-28,11r0,156v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-156v-14,1,-28,1,-28,-11v0,-12,14,-12,28,-11v2,-21,-8,-59,13,-59v21,0,10,38,13,59v14,-1,28,-1,28,11","w":86},"u":{"d":"96,2v-43,0,-71,-22,-72,-65r0,-114v0,-11,4,-17,13,-17v9,0,13,6,13,17v5,62,-22,158,46,158v69,0,42,-95,47,-158v0,-11,4,-17,13,-17v9,0,13,6,13,17r0,114v-1,44,-30,65,-73,65"},"v":{"d":"6,-174v-8,-13,8,-26,19,-17v22,45,32,102,52,148v18,-49,30,-104,52,-148v9,-8,24,2,19,17r-58,166v-2,13,-23,13,-27,0","w":153,"k":{".":20,",":20}},"w":{"d":"4,-172v-8,-16,7,-27,20,-19v22,45,30,104,50,151r44,-142v4,-16,26,-16,30,0r45,142r45,-142v1,-15,26,-16,26,0v-16,60,-39,115,-57,173v-5,17,-28,12,-30,-5r-44,-139r-45,144v-2,16,-26,12,-29,0","w":266,"k":{".":14,",":14}},"x":{"d":"158,-21v8,9,5,23,-7,23v-5,0,-10,-3,-14,-9r-54,-76r-54,76v-8,15,-29,9,-25,-7v20,-31,43,-59,64,-88r-56,-75v-3,-16,15,-22,25,-8r46,63r46,-63v7,-16,31,-8,25,8r-56,75","w":166},"y":{"d":"65,65v-1,15,-25,18,-26,2v6,-26,17,-48,25,-72r-60,-177v1,-15,25,-16,26,0r47,139v18,-49,30,-104,52,-148v9,-8,24,2,19,17","w":153,"k":{".":20,",":20}},"z":{"d":"131,-192v17,-2,17,16,9,26r-96,142r92,0v7,0,14,5,14,12v1,7,-7,13,-14,12r-111,0v-18,1,-17,-16,-9,-26r96,-142r-84,0v-7,0,-15,-5,-14,-12v0,-7,7,-12,14,-12r103,0","w":159},"{":{"d":"10,-129v59,-3,-21,-142,70,-129v6,0,11,3,11,9v0,9,-8,11,-19,10v-23,4,-13,43,-14,67v-1,27,-13,43,-28,54v30,11,29,58,28,102v2,10,6,20,22,17v6,0,11,4,11,10v0,10,-11,10,-22,10v-41,0,-35,-42,-35,-81v0,-28,-1,-47,-24,-49v-11,0,-11,-20,0,-20","w":92},"|":{"d":"40,104v-7,0,-12,-7,-12,-14r0,-360v0,-7,5,-14,12,-14v7,0,12,7,12,14r0,360v0,7,-5,14,-12,14","w":79},"}":{"d":"63,-118v-29,-13,-29,-59,-29,-103v0,-24,-29,-11,-33,-28v0,-9,11,-10,22,-9v43,-5,35,41,36,81v1,27,0,47,23,48v4,0,10,4,9,10v1,6,-5,10,-9,10v-56,5,20,140,-69,130v-15,-2,-15,-20,0,-20v33,0,20,-39,22,-67v2,-26,11,-44,28,-52","w":92},"~":{"d":"144,-90v23,2,20,-34,44,-25v9,26,-17,48,-45,48v-38,0,-73,-52,-98,-4v-4,8,-22,5,-20,-7v3,-24,22,-39,48,-39v30,0,43,25,71,27","w":216},"\u0192":{"d":"40,-165v0,-14,21,-11,36,-11v11,-49,8,-109,74,-102v7,0,14,5,14,12v-3,22,-45,2,-49,29v-7,17,-9,41,-13,61v15,0,34,-3,34,11v0,15,-22,11,-38,11r-24,136v-9,42,-18,78,-69,76v-7,0,-14,-5,-14,-12v3,-23,49,-1,51,-36v14,-49,20,-111,30,-164v-14,0,-32,2,-32,-11"},"\u0160":{"d":"119,-313v11,-5,24,2,19,16v-13,11,-38,16,-55,24v-17,-8,-41,-13,-55,-24v-5,-13,7,-22,19,-16r36,16xm128,-133v59,36,25,142,-50,135v-32,-3,-63,-6,-71,-30v12,-31,38,9,67,6v36,-4,56,-21,59,-55v-8,-69,-121,-37,-121,-116v0,-68,105,-87,132,-37v-10,31,-35,-5,-60,-5v-34,0,-62,37,-38,63v19,20,58,24,82,39","w":166},"\u0152":{"d":"123,-22v58,0,81,-48,81,-106v0,-58,-23,-107,-81,-107v-59,0,-81,50,-81,107v0,56,22,106,81,106xm123,2v-73,0,-109,-57,-109,-130v0,-73,36,-127,109,-130v42,-2,64,20,81,44v1,-20,-6,-42,17,-42r84,0v7,0,13,5,13,12v0,6,-6,11,-13,11r-75,0r0,93r71,0v7,0,14,5,14,12v-6,24,-58,7,-85,12r0,92r78,0v7,0,14,5,14,12v1,7,-7,13,-14,12r-91,0v-19,1,-10,-29,-14,-44v-17,26,-41,46,-80,46","w":333},"\u017d":{"d":"136,-313v11,-5,24,2,19,16v-13,11,-38,16,-55,24v-17,-8,-41,-13,-55,-24v-5,-13,7,-22,19,-16r36,16xm173,-256v15,-1,14,13,7,22r-138,210r134,0v7,0,14,5,14,12v1,7,-7,13,-14,12r-144,0v-27,1,-22,-20,-11,-37r128,-196r-120,0v-7,0,-14,-4,-14,-11v-1,-7,7,-13,14,-12r144,0","w":200},"\u0161":{"d":"116,-255v11,-5,25,1,19,15v-12,13,-38,16,-55,25v-18,-11,-50,-9,-56,-31v8,-25,40,3,56,7xm49,-100v-56,-19,-30,-99,27,-94v29,3,60,8,68,30v-1,6,-4,14,-13,12v-18,-3,-26,-20,-50,-20v-33,0,-51,35,-19,50v35,16,85,20,87,69v3,68,-122,71,-140,19v1,-7,6,-11,12,-13v19,7,31,26,58,28v35,2,59,-41,25,-58v-17,-9,-36,-17,-55,-23","w":159},"\u0153":{"d":"281,-106v7,-65,-86,-92,-100,-24v-2,8,-4,16,-4,24r104,0xm14,-96v0,-55,27,-98,82,-98v35,0,55,17,68,41v12,-22,33,-41,63,-41v55,0,84,43,81,99v-1,8,-8,10,-17,11r-114,0v2,36,20,63,54,65v32,2,43,-21,63,-30v8,0,12,4,12,13v-10,23,-36,37,-69,38v-37,1,-59,-15,-73,-39v-12,23,-33,40,-68,39v-56,-1,-82,-41,-82,-98xm96,-172v-74,0,-73,153,0,153v41,0,55,-36,55,-77v0,-40,-14,-76,-55,-76","w":326},"\u017e":{"d":"116,-255v11,-5,25,1,19,15v-12,13,-38,16,-55,25v-18,-11,-50,-9,-56,-31v8,-25,40,3,56,7xm131,-192v17,-2,17,16,9,26r-96,142r92,0v7,0,14,5,14,12v1,7,-7,13,-14,12r-111,0v-18,1,-17,-16,-9,-26r96,-142r-84,0v-7,0,-15,-5,-14,-12v0,-7,7,-12,14,-12r103,0","w":159},"\u0178":{"d":"119,-270v-26,0,-21,-36,0,-36v21,0,22,36,0,36xm55,-270v-26,0,-21,-36,0,-36v21,0,22,36,0,36xm8,-230v-16,-14,3,-43,16,-21r63,104v23,-36,42,-77,68,-110v19,-6,23,14,10,27r-65,109r0,107v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-107","w":173},"\u00a0":{"w":86},"\u00a1":{"d":"63,50v0,11,-4,17,-13,17v-9,0,-13,-6,-13,-17r0,-152v0,-11,4,-17,13,-17v9,0,13,6,13,17r0,152xm33,-177v0,-21,34,-22,34,0v0,20,-33,20,-34,0","w":100},"\u00a2":{"d":"145,-19v-4,16,-27,21,-47,21v3,13,-4,40,-13,20r0,-20v-46,-9,-72,-45,-72,-97v0,-52,25,-90,72,-99v-4,-14,5,-40,13,-19r0,19v23,0,46,6,49,22v-6,24,-31,-1,-49,0r0,153v17,0,26,-7,38,-11v6,0,10,5,9,11xm85,-172v-59,12,-58,141,0,151r0,-151","w":159},"\u00a3":{"d":"92,-118v11,40,-5,71,-30,94r125,0v7,0,14,5,14,12v1,7,-7,13,-14,12r-147,0v-9,0,-13,-4,-13,-12v16,-30,57,-53,39,-106v-20,-2,-53,7,-53,-12v0,-17,27,-11,45,-12v-8,-18,-19,-28,-19,-53v1,-42,31,-63,74,-63v47,0,76,27,82,65v2,15,-19,17,-23,4v-9,-27,-24,-46,-59,-46v-53,0,-54,59,-28,93v21,2,57,-8,57,12v0,18,-31,10,-50,12","w":213},"\u00a4":{"d":"96,-196v-39,0,-65,28,-65,68v0,40,26,68,65,68v40,0,66,-27,66,-68v0,-40,-26,-68,-66,-68xm42,-58v-5,9,-29,30,-34,7v1,-11,12,-15,18,-22v-24,-24,-25,-86,0,-110v-11,-7,-29,-28,-7,-34v11,2,16,12,23,18v23,-23,85,-24,108,0v8,-9,30,-30,35,-6v-1,11,-12,15,-18,22v25,24,24,86,0,110v6,7,17,11,18,22v-7,23,-27,1,-35,-7v-24,25,-84,24,-108,0"},"\u00a5":{"d":"96,2v-21,-5,-7,-47,-11,-70v-21,-3,-62,9,-62,-11v0,-20,41,-8,62,-11r0,-27v-21,-3,-62,9,-62,-11v0,-18,32,-9,51,-11r-63,-109v0,-12,17,-13,23,-3r62,105v24,-36,43,-77,69,-111v20,-6,17,14,9,27r-54,91v18,2,50,-7,50,11v0,20,-41,8,-62,11r0,27v21,3,62,-9,62,11v0,20,-41,8,-62,11v-3,24,10,66,-12,70"},"\u00a6":{"d":"40,63v-7,0,-12,-7,-12,-14r0,-98v0,-7,5,-14,12,-14v7,0,12,7,12,14r0,98v0,7,-5,14,-12,14xm40,-117v-7,0,-12,-7,-12,-14r0,-98v0,-7,5,-14,12,-14v7,0,12,7,12,14r0,98v0,7,-5,14,-12,14","w":79},"\u00a7":{"d":"82,-148v-40,3,-60,62,-16,85r61,31v33,-11,49,-67,9,-88xm149,-205v-2,-38,-91,-43,-92,2v22,60,131,38,131,122v0,31,-20,45,-41,59v15,10,24,23,24,46v0,39,-35,54,-74,54v-44,0,-73,-18,-76,-57v4,-18,28,-14,28,5v0,38,94,40,94,-3v0,-22,-15,-24,-29,-33v-38,-24,-99,-32,-101,-89v-2,-38,23,-47,46,-60v-15,-10,-28,-20,-28,-42v1,-40,33,-57,73,-57v37,0,70,14,71,52v0,11,-4,18,-12,18v-8,0,-14,-8,-14,-17","w":200},"\u00a8":{"d":"69,-213v-10,0,-18,-7,-18,-17v0,-11,7,-18,18,-18v10,0,17,8,17,18v0,10,-7,17,-17,17xm5,-213v-10,0,-18,-7,-18,-17v0,-11,7,-18,18,-18v10,0,17,8,17,18v0,10,-7,17,-17,17","w":73},"\u00a9":{"d":"144,-237v-63,0,-107,44,-107,109v0,64,43,109,107,109v64,0,107,-45,107,-109v0,-65,-44,-109,-107,-109xm144,2v-78,0,-130,-52,-130,-130v0,-78,52,-130,130,-130v78,0,130,52,130,130v0,78,-52,130,-130,130xm143,-185v-34,3,-49,24,-50,58v0,37,19,57,53,60v32,2,32,-29,53,-37v6,0,9,4,9,10v-6,27,-28,49,-62,48v-49,-1,-77,-31,-77,-80v0,-49,26,-81,75,-81v35,0,61,18,66,46v1,7,-5,11,-11,11v-22,-7,-21,-38,-56,-35","w":288},"\u00aa":{"d":"62,-158v25,1,32,-18,32,-42v0,-23,-8,-42,-32,-41v-40,0,-41,83,0,83xm105,-258v7,-1,11,4,11,10r0,97v0,6,-5,10,-11,10v-9,0,-12,-8,-11,-18v-26,38,-86,8,-86,-40v0,-47,54,-79,86,-44v-1,-9,2,-16,11,-15","w":129},"\u00ab":{"d":"68,-44v11,11,-3,26,-15,18v-12,-23,-29,-44,-38,-70v10,-24,25,-48,38,-69v11,-9,26,5,15,17r-30,52xm122,-44v10,11,-3,26,-15,18v-12,-23,-30,-44,-39,-70v10,-24,26,-48,39,-69v7,-7,21,-1,18,11r-34,58","w":140},"\u00ac":{"d":"187,-39v-23,-5,-8,-51,-12,-76r-144,0v-7,0,-14,-5,-14,-12v-1,-7,7,-13,14,-12r150,0v34,1,13,58,18,87v1,7,-4,14,-12,13","w":216},"\u00ad":{"d":"15,-96v8,-23,56,-8,83,-12v7,0,14,5,14,12v-6,24,-57,7,-84,12v-7,0,-13,-5,-13,-12","w":126},"\u2010":{"d":"15,-96v8,-23,56,-8,83,-12v7,0,14,5,14,12v-6,24,-57,7,-84,12v-7,0,-13,-5,-13,-12","w":126},"\u00ae":{"d":"144,-237v-63,0,-107,44,-107,109v0,64,43,109,107,109v64,0,107,-45,107,-109v0,-65,-44,-109,-107,-109xm144,2v-78,0,-130,-52,-130,-130v0,-78,52,-130,130,-130v78,0,130,52,130,130v0,78,-52,130,-130,130xm183,-160v0,-30,-37,-23,-66,-24r0,50v29,-2,66,7,66,-26xm200,-68v11,9,0,26,-12,18v-18,-18,-28,-46,-43,-67r-28,0v-3,23,9,63,-11,69v-6,0,-11,-8,-11,-15r0,-132v0,-5,2,-7,7,-7v48,-1,103,-4,103,43v0,26,-15,37,-37,41","w":288},"\u00af":{"d":"3,-215v-11,0,-17,-4,-17,-13v0,-9,6,-13,17,-13r68,0v11,0,16,4,16,13v0,9,-5,13,-16,13r-68,0","w":73},"\u00b0":{"d":"72,-241v-20,2,-34,12,-34,34v0,22,14,32,34,34v20,-2,34,-12,34,-34v0,-22,-14,-32,-34,-34xm72,-156v-32,0,-51,-19,-51,-51v0,-32,19,-51,51,-51v32,0,51,19,51,51v0,32,-19,51,-51,51","w":144},"\u00b1":{"d":"199,-12v1,7,-7,13,-14,12r-154,0v-7,0,-15,-5,-14,-12v0,-7,7,-12,14,-12r154,0v7,0,14,5,14,12xm17,-110v7,-23,53,-8,79,-12v2,-22,-8,-56,12,-60v20,3,9,39,12,60v26,4,72,-11,79,12v-5,23,-53,8,-79,12v-2,22,8,57,-12,61v-20,-3,-9,-40,-12,-61v-26,-4,-73,11,-79,-12","w":216},"\u00b2":{"d":"62,-258v48,0,56,41,32,72r-48,62r58,0v5,0,10,4,9,10v1,6,-4,9,-9,9r-77,0v-11,0,-12,-10,-5,-18v19,-30,54,-63,64,-98v-6,-30,-54,-20,-52,10v0,13,-22,12,-22,0v0,-29,20,-47,50,-47","w":125},"\u00b3":{"d":"60,-258v45,-5,58,55,25,71v47,14,30,89,-24,84v-26,-3,-45,-10,-48,-32v0,-5,4,-11,10,-10v17,2,11,26,38,23v14,-2,28,-12,28,-29v0,-14,-11,-23,-25,-23v-17,0,-11,-16,2,-18v20,-4,19,-50,-7,-47v-22,-3,-12,27,-30,27v-5,0,-10,-5,-10,-10v1,-23,17,-33,41,-36","w":125},"\u00b4":{"d":"17,-219v-12,7,-24,-3,-19,-16v18,-12,44,-20,68,-27v12,1,14,18,0,24","w":73},"\u00b5":{"d":"143,-11v-23,19,-76,17,-93,-7r0,79v0,11,-4,17,-13,17v-9,0,-13,-6,-13,-17r0,-238v0,-11,4,-17,13,-17v9,0,13,6,13,17v5,62,-22,158,46,158v69,0,42,-95,47,-158v0,-11,4,-17,13,-17v9,0,13,6,13,17r0,166v0,7,-6,13,-13,13v-7,0,-13,-6,-13,-13"},"\u00b6":{"d":"105,78v-7,1,-13,-7,-12,-14r0,-184v-45,-1,-74,-25,-76,-67v-4,-72,74,-72,148,-69v16,1,20,1,20,18r0,302v0,7,-5,15,-12,14v-7,0,-12,-7,-12,-14r0,-299r-44,0r0,299v0,7,-5,14,-12,14","w":216},"\u00b7":{"d":"43,-98v-22,0,-19,-33,0,-33v8,0,17,8,17,16v0,9,-8,17,-17,17","w":86},"\u22c5":{"d":"43,-98v-22,0,-19,-33,0,-33v8,0,17,8,17,16v0,9,-8,17,-17,17","w":86},"\u2219":{"d":"43,-98v-22,0,-19,-33,0,-33v8,0,17,8,17,16v0,9,-8,17,-17,17","w":86},"\u00b8":{"d":"46,37v1,-17,-44,0,-24,-26v3,-8,9,-13,23,-11r-9,15v16,-5,31,5,31,19v0,30,-52,42,-63,17v2,-22,40,9,42,-14","w":73},"\u00b9":{"d":"47,-103v-7,0,-11,-3,-11,-10r0,-124v-13,0,-30,3,-30,-10v0,-15,27,-7,42,-9v5,-1,10,4,10,8r0,135v0,7,-4,10,-11,10","w":82},"\u00ba":{"d":"63,-141v-35,0,-55,-24,-55,-59v0,-35,20,-58,55,-58v35,0,54,24,54,59v0,35,-19,58,-54,58xm63,-241v-41,0,-42,83,0,83v41,-1,41,-82,0,-83","w":125},"\u00bb":{"d":"72,-148v-11,-11,4,-27,15,-17v14,21,28,45,38,69v-9,25,-26,48,-38,70v-12,8,-26,-6,-15,-18r30,-52xm18,-148v-10,-11,6,-28,15,-17v16,19,28,45,39,69v-9,25,-25,49,-39,70v-10,8,-23,-5,-15,-18r31,-52","w":140},"\u00bc":{"d":"231,-56v-1,-26,2,-56,-1,-80r-50,80r51,0xm269,-46v0,9,-7,11,-17,10v-2,15,6,38,-10,38v-16,0,-10,-23,-11,-38r-64,0v-13,0,-10,-14,-5,-22r54,-85v7,-12,36,-18,36,5r0,82v10,-1,17,1,17,10xm56,-103v-7,0,-11,-3,-11,-10r0,-124v-13,0,-30,3,-30,-10v0,-15,27,-7,42,-9v5,-1,10,4,10,8r0,135v0,7,-4,10,-11,10xm87,-3v-2,11,-20,12,-21,0r101,-257v11,-7,23,5,14,17","w":289},"\u00bd":{"d":"210,-154v47,0,55,41,32,72r-48,63r58,0v6,-1,9,4,9,9v0,5,-4,10,-9,10r-77,0v-11,0,-13,-11,-5,-18v19,-30,53,-64,64,-98v-6,-30,-52,-20,-52,10v0,13,-22,12,-22,0v0,-29,20,-48,50,-48xm56,-103v-7,0,-11,-3,-11,-10r0,-124v-13,0,-30,3,-30,-10v0,-15,27,-7,42,-9v5,-1,10,4,10,8r0,135v0,7,-4,10,-11,10xm87,-3v-2,11,-20,12,-21,0r101,-257v11,-7,23,5,14,17","w":289},"\u00be":{"d":"231,-56v-1,-26,2,-56,-1,-80r-50,80r51,0xm269,-46v0,9,-7,11,-17,10v-2,15,6,38,-10,38v-16,0,-10,-23,-11,-38r-64,0v-13,0,-10,-14,-5,-22r54,-85v7,-12,36,-18,36,5r0,82v10,-1,17,1,17,10xm54,-258v45,-5,56,56,24,71v47,14,30,89,-24,84v-26,-3,-45,-10,-48,-32v0,-5,4,-11,10,-10v17,2,11,26,38,23v14,-2,30,-12,28,-29v7,-28,-45,-15,-32,-38v26,1,34,-48,3,-50v-23,-1,-14,26,-31,27v-5,0,-10,-5,-10,-10v1,-24,17,-33,42,-36xm105,-3v-2,11,-20,12,-21,0r101,-257v11,-7,23,5,14,17","w":289},"\u00bf":{"d":"84,-194v10,0,16,7,16,17v1,10,-6,17,-16,16v-10,0,-17,-6,-17,-16v0,-10,7,-17,17,-17xm10,4v0,-43,27,-60,61,-69v2,-20,-8,-55,13,-55v22,0,13,52,10,73v-24,10,-56,16,-56,50v0,48,76,52,86,12v-1,-19,27,-19,26,-1v-2,36,-32,53,-69,53v-42,0,-71,-22,-71,-63","w":159},"\u00c0":{"d":"140,-298v14,3,12,22,0,24v-25,-7,-49,-16,-68,-28v-5,-12,4,-21,18,-16xm164,-80r-54,-145r-53,145r107,0xm213,-19v9,13,-7,28,-19,18v-10,-16,-14,-37,-22,-55r-124,0v-7,18,-13,39,-22,55v-10,9,-29,-3,-18,-18r88,-233v10,-13,35,-3,34,12","w":220},"\u00c1":{"d":"90,-276v-13,6,-23,-3,-18,-16v18,-12,44,-21,68,-28v12,1,13,19,0,24xm164,-80r-54,-145r-53,145r107,0xm213,-19v9,13,-7,28,-19,18v-10,-16,-14,-37,-22,-55r-124,0v-7,18,-13,39,-22,55v-10,9,-29,-3,-18,-18r88,-233v10,-13,35,-3,34,12","w":220},"\u00c2":{"d":"74,-275v-9,6,-25,-2,-19,-15v12,-13,38,-16,55,-25v18,11,50,9,56,31v-7,25,-40,-3,-56,-7xm164,-80r-54,-145r-53,145r107,0xm213,-19v9,13,-7,28,-19,18v-10,-16,-14,-37,-22,-55r-124,0v-7,18,-13,39,-22,55v-10,9,-29,-3,-18,-18r88,-233v10,-13,35,-3,34,12","w":220},"\u00c3":{"d":"162,-299v-6,31,-49,16,-73,11v-11,2,-27,18,-31,-1v5,-34,49,-19,74,-13v10,-2,27,-20,30,3xm164,-80r-54,-145r-53,145r107,0xm213,-19v9,13,-7,28,-19,18v-10,-16,-14,-37,-22,-55r-124,0v-7,18,-13,39,-22,55v-10,9,-29,-3,-18,-18r88,-233v10,-13,35,-3,34,12","w":220},"\u00c4":{"d":"142,-270v-21,0,-22,-36,0,-36v26,0,21,36,0,36xm78,-306v26,0,21,36,0,36v-22,-1,-22,-35,0,-36xm164,-80r-54,-145r-53,145r107,0xm213,-19v9,13,-7,28,-19,18v-10,-16,-14,-37,-22,-55r-124,0v-7,18,-13,39,-22,55v-10,9,-29,-3,-18,-18r88,-233v10,-13,35,-3,34,12","w":220},"\u00c5":{"d":"110,-317v-9,0,-19,9,-18,19v-1,9,9,19,18,18v10,1,19,-9,19,-18v0,-9,-10,-19,-19,-19xm110,-265v-19,-2,-33,-12,-33,-33v0,-21,13,-34,33,-34v20,0,34,14,34,34v0,20,-14,31,-34,33xm164,-80r-54,-145r-53,145r107,0xm213,-19v9,13,-7,28,-19,18v-10,-16,-14,-37,-22,-55r-124,0v-7,18,-13,39,-22,55v-10,9,-29,-3,-18,-18r88,-233v10,-13,35,-3,34,12","w":220},"\u00c6":{"d":"137,-79r-1,-147r-72,147r73,0xm248,-128v1,7,-6,13,-13,12r-72,0r0,92r79,0v6,0,13,6,13,12v0,7,-6,12,-13,12r-92,0v-21,-2,-11,-37,-13,-58r-84,0v-13,20,-15,51,-39,60v-14,-2,-10,-17,-4,-28r112,-224v2,-4,5,-6,9,-6r107,0v7,0,15,5,14,12v0,7,-7,11,-14,11r-75,0r0,93r72,0v6,0,14,5,13,12","w":266},"\u00c7":{"d":"209,-34v-10,25,-43,33,-77,36v-2,4,-8,9,-7,13v16,-5,31,5,31,19v0,29,-53,42,-64,17v2,-22,41,9,42,-14v1,-17,-44,0,-24,-26r6,-10v-68,-6,-102,-55,-102,-126v0,-75,35,-133,112,-133v36,0,67,13,78,38v1,9,-6,13,-12,14v-20,-10,-34,-31,-66,-29v-57,3,-84,52,-84,110v0,58,25,103,88,103v32,0,50,-15,68,-25v7,0,11,4,11,13","w":213},"\u00c8":{"d":"109,-298v16,3,13,23,0,24v-24,-7,-49,-15,-67,-28v-6,-10,4,-22,18,-16xm135,-128v-6,24,-58,7,-85,12r0,92r78,0v7,0,14,5,14,12v1,7,-7,13,-14,12r-88,0v-12,0,-16,-2,-16,-14r0,-229v0,-11,4,-13,16,-13r85,0v7,0,13,5,13,12v0,6,-6,11,-13,11r-75,0r0,93r71,0v7,0,14,5,14,12","w":159},"\u00c9":{"d":"60,-276v-13,7,-24,-5,-18,-16v18,-13,44,-21,67,-28v13,1,16,22,0,24xm135,-128v-6,24,-58,7,-85,12r0,92r78,0v7,0,14,5,14,12v1,7,-7,13,-14,12r-88,0v-12,0,-16,-2,-16,-14r0,-229v0,-11,4,-13,16,-13r85,0v7,0,13,5,13,12v0,6,-6,11,-13,11r-75,0r0,93r71,0v7,0,14,5,14,12","w":159},"\u00ca":{"d":"44,-275v-9,6,-25,-2,-19,-15v12,-13,38,-16,55,-25v18,11,50,9,56,31v-7,25,-40,-3,-56,-7xm135,-128v-6,24,-58,7,-85,12r0,92r78,0v7,0,14,5,14,12v1,7,-7,13,-14,12r-88,0v-12,0,-16,-2,-16,-14r0,-229v0,-11,4,-13,16,-13r85,0v7,0,13,5,13,12v0,6,-6,11,-13,11r-75,0r0,93r71,0v7,0,14,5,14,12","w":159},"\u00cb":{"d":"112,-306v22,1,22,35,0,36v-22,-1,-22,-35,0,-36xm66,-288v-1,22,-36,23,-36,0v0,-23,36,-22,36,0xm135,-128v-6,24,-58,7,-85,12r0,92r78,0v7,0,14,5,14,12v1,7,-7,13,-14,12r-88,0v-12,0,-16,-2,-16,-14r0,-229v0,-11,4,-13,16,-13r85,0v7,0,13,5,13,12v0,6,-6,11,-13,11r-75,0r0,93r71,0v7,0,14,5,14,12","w":159},"\u00cc":{"d":"66,-298v15,2,12,24,0,24v-24,-7,-49,-16,-68,-28v-4,-12,6,-22,19,-16xm50,-14v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-228v0,-11,4,-16,13,-16v9,0,13,5,13,16r0,228","w":73},"\u00cd":{"d":"17,-276v-13,6,-23,-4,-19,-16v18,-12,45,-21,68,-28v12,1,15,21,0,24xm50,-14v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-228v0,-11,4,-16,13,-16v9,0,13,5,13,16r0,228","w":73},"\u00ce":{"d":"1,-275v-10,6,-26,-1,-19,-15v12,-13,38,-16,55,-25v18,11,48,11,56,31v-7,25,-40,-3,-56,-7xm50,-14v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-228v0,-11,4,-16,13,-16v9,0,13,5,13,16r0,228","w":73},"\u00cf":{"d":"69,-270v-26,0,-21,-36,0,-36v21,0,22,36,0,36xm5,-270v-26,0,-21,-36,0,-36v21,0,22,36,0,36xm50,-14v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-228v0,-11,4,-16,13,-16v9,0,13,5,13,16r0,228","w":73},"\u00d0":{"d":"102,0v-26,-4,-73,12,-78,-13r0,-104v-24,6,-33,-23,-10,-24r10,0r0,-102v3,-25,54,-8,80,-13v74,2,108,57,108,130v0,76,-39,121,-110,126xm184,-131v1,-78,-46,-113,-134,-102r0,92v23,3,64,-10,64,12v0,21,-42,9,-64,12r0,93r50,0v63,0,83,-45,84,-107","w":226},"\u00d1":{"d":"172,-299v-6,30,-50,17,-74,11v-11,2,-27,18,-30,-1v5,-35,47,-18,73,-13v11,-2,28,-19,31,3xm216,-14v3,20,-18,19,-26,7r-140,-204r0,197v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-229v-3,-17,22,-20,28,-6r138,201r0,-194v0,-11,4,-16,13,-16v9,0,13,5,13,16r0,228","w":239},"\u00d2":{"d":"153,-298v14,3,12,22,0,24v-25,-7,-49,-16,-68,-28v-5,-12,4,-21,18,-16xm42,-128v0,56,22,106,81,106v58,0,81,-48,81,-106v0,-58,-23,-107,-81,-107v-59,0,-81,50,-81,107xm123,2v-73,0,-109,-57,-109,-130v0,-73,36,-130,109,-130v74,0,109,57,109,130v0,73,-35,130,-109,130","w":246},"\u00d3":{"d":"103,-276v-13,6,-23,-3,-18,-16v18,-12,44,-21,68,-28v12,1,13,19,0,24xm42,-128v0,56,22,106,81,106v58,0,81,-48,81,-106v0,-58,-23,-107,-81,-107v-59,0,-81,50,-81,107xm123,2v-73,0,-109,-57,-109,-130v0,-73,36,-130,109,-130v74,0,109,57,109,130v0,73,-35,130,-109,130","w":246},"\u00d4":{"d":"87,-275v-9,6,-25,-2,-19,-15v12,-13,38,-16,55,-25v18,11,50,9,56,31v-7,25,-40,-3,-56,-7xm42,-128v0,56,22,106,81,106v58,0,81,-48,81,-106v0,-58,-23,-107,-81,-107v-59,0,-81,50,-81,107xm123,2v-73,0,-109,-57,-109,-130v0,-73,36,-130,109,-130v74,0,109,57,109,130v0,73,-35,130,-109,130","w":246},"\u00d5":{"d":"175,-299v-6,31,-49,16,-73,11v-11,2,-27,18,-31,-1v5,-34,49,-19,74,-13v10,-2,27,-20,30,3xm42,-128v0,56,22,106,81,106v58,0,81,-48,81,-106v0,-58,-23,-107,-81,-107v-59,0,-81,50,-81,107xm123,2v-73,0,-109,-57,-109,-130v0,-73,36,-130,109,-130v74,0,109,57,109,130v0,73,-35,130,-109,130","w":246},"\u00d6":{"d":"155,-270v-21,0,-22,-36,0,-36v26,0,21,36,0,36xm91,-306v26,0,21,36,0,36v-22,-1,-22,-35,0,-36xm42,-128v0,56,22,106,81,106v58,0,81,-48,81,-106v0,-58,-23,-107,-81,-107v-59,0,-81,50,-81,107xm123,2v-73,0,-109,-57,-109,-130v0,-73,36,-130,109,-130v74,0,109,57,109,130v0,73,-35,130,-109,130","w":246},"\u00d7":{"d":"185,-30v10,6,6,21,-5,22v-29,-16,-47,-46,-72,-67v-25,22,-43,50,-72,67v-11,0,-15,-16,-5,-22r60,-61r-65,-67v-5,-12,10,-21,20,-11r62,62v25,-22,43,-50,72,-67v11,0,15,16,5,22r-60,61","w":216},"\u00d8":{"d":"30,-1v-4,10,-20,8,-20,-3v6,-16,20,-26,29,-39v-50,-75,-21,-215,84,-215v32,0,55,11,71,28v11,-11,16,-27,32,-32v13,1,10,13,2,23r-21,25v51,74,22,220,-84,216v-31,-1,-54,-12,-71,-29xm123,-235v-80,-1,-95,106,-67,171r121,-147v-12,-14,-29,-23,-54,-24xm123,-22v81,0,96,-106,66,-171r-121,147v12,13,29,24,55,24","w":246},"\u00d9":{"d":"149,-298v15,2,12,24,0,24v-24,-7,-49,-15,-67,-28v-6,-10,4,-22,18,-16xm120,2v-58,0,-96,-31,-96,-89r0,-155v0,-11,4,-16,13,-16v9,0,13,5,13,16r0,152v1,44,27,68,70,68v43,0,70,-25,70,-68r0,-152v0,-11,4,-16,13,-16v9,0,13,5,13,16r0,155v-2,58,-38,89,-96,89","w":239},"\u00da":{"d":"100,-276v-13,7,-24,-5,-18,-16v18,-13,44,-21,67,-28v12,1,15,21,0,24xm120,2v-58,0,-96,-31,-96,-89r0,-155v0,-11,4,-16,13,-16v9,0,13,5,13,16r0,152v1,44,27,68,70,68v43,0,70,-25,70,-68r0,-152v0,-11,4,-16,13,-16v9,0,13,5,13,16r0,155v-2,58,-38,89,-96,89","w":239},"\u00db":{"d":"84,-275v-9,6,-25,-2,-19,-15v12,-13,38,-16,55,-25v18,11,50,9,56,31v-7,25,-40,-3,-56,-7xm120,2v-58,0,-96,-31,-96,-89r0,-155v0,-11,4,-16,13,-16v9,0,13,5,13,16r0,152v1,44,27,68,70,68v43,0,70,-25,70,-68r0,-152v0,-11,4,-16,13,-16v9,0,13,5,13,16r0,155v-2,58,-38,89,-96,89","w":239},"\u00dc":{"d":"152,-306v22,1,22,35,0,36v-22,-1,-22,-35,0,-36xm88,-270v-26,0,-21,-36,0,-36v21,0,22,36,0,36xm120,2v-58,0,-96,-31,-96,-89r0,-155v0,-11,4,-16,13,-16v9,0,13,5,13,16r0,152v1,44,27,68,70,68v43,0,70,-25,70,-68r0,-152v0,-11,4,-16,13,-16v9,0,13,5,13,16r0,155v-2,58,-38,89,-96,89","w":239},"\u00dd":{"d":"67,-276v-13,6,-23,-4,-19,-16v18,-12,45,-21,68,-28v12,1,15,21,0,24xm8,-230v-16,-14,3,-43,16,-21r63,104v23,-36,42,-77,68,-110v19,-6,23,14,10,27r-65,109r0,107v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-107","w":173},"\u00de":{"d":"155,-133v0,-53,-48,-60,-105,-56r0,111v56,4,105,-3,105,-55xm181,-135v0,68,-55,87,-131,81v-2,20,8,56,-13,56v-9,0,-13,-5,-13,-16r0,-228v0,-11,4,-16,13,-16v19,-1,12,29,13,46v75,-6,131,10,131,77","w":186},"\u00df":{"d":"91,-254v-32,-1,-40,23,-41,53r0,187v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-190v0,-46,24,-70,67,-74v69,-6,92,96,41,126v32,9,49,35,49,74v0,44,-21,79,-66,80v-13,0,-21,-5,-21,-17v2,-6,8,-9,17,-9v57,0,56,-112,1,-112v-18,0,-27,-20,-8,-24v20,-5,31,-21,30,-48v-1,-27,-14,-46,-43,-46","w":200},"\u00e0":{"d":"130,-241v16,4,11,27,-4,24v-21,-9,-47,-15,-64,-27v-7,-10,6,-24,18,-16xm96,-172v-73,0,-73,153,0,153v41,0,54,-35,54,-77v0,-42,-14,-76,-54,-76xm96,-194v27,0,40,14,54,29v-1,-14,0,-30,13,-29v9,0,13,6,13,17r0,163v0,11,-4,16,-13,16v-15,0,-11,-17,-14,-28v-10,16,-28,28,-53,28v-56,-2,-82,-41,-82,-98v0,-55,27,-95,82,-98","w":200},"\u00e1":{"d":"80,-219v-11,7,-25,-5,-18,-16v18,-12,44,-21,68,-27v12,1,13,19,0,24xm96,-172v-73,0,-73,153,0,153v41,0,54,-35,54,-77v0,-42,-14,-76,-54,-76xm96,-194v27,0,40,14,54,29v-1,-14,0,-30,13,-29v9,0,13,6,13,17r0,163v0,11,-4,16,-13,16v-15,0,-11,-17,-14,-28v-10,16,-28,28,-53,28v-56,-2,-82,-41,-82,-98v0,-55,27,-95,82,-98","w":200},"\u00e2":{"d":"64,-217v-11,5,-24,-2,-19,-16v13,-11,38,-16,55,-24v17,8,41,13,55,24v5,13,-7,22,-19,16r-36,-16xm96,-172v-73,0,-73,153,0,153v41,0,54,-35,54,-77v0,-42,-14,-76,-54,-76xm96,-194v27,0,40,14,54,29v-1,-14,0,-30,13,-29v9,0,13,6,13,17r0,163v0,11,-4,16,-13,16v-15,0,-11,-17,-14,-28v-10,16,-28,28,-53,28v-56,-2,-82,-41,-82,-98v0,-55,27,-95,82,-98","w":200},"\u00e3":{"d":"48,-231v5,-34,49,-20,74,-13v9,-4,28,-18,30,2v-6,32,-49,17,-74,12v-10,2,-26,16,-30,-1xm96,-172v-73,0,-73,153,0,153v41,0,54,-35,54,-77v0,-42,-14,-76,-54,-76xm96,-194v27,0,40,14,54,29v-1,-14,0,-30,13,-29v9,0,13,6,13,17r0,163v0,11,-4,16,-13,16v-15,0,-11,-17,-14,-28v-10,16,-28,28,-53,28v-56,-2,-82,-41,-82,-98v0,-55,27,-95,82,-98","w":200},"\u00e4":{"d":"150,-230v0,24,-36,20,-36,0v1,-10,8,-18,18,-18v11,0,18,7,18,18xm86,-230v0,21,-36,22,-36,0v0,-26,36,-21,36,0xm96,-172v-73,0,-73,153,0,153v41,0,54,-35,54,-77v0,-42,-14,-76,-54,-76xm96,-194v27,0,40,14,54,29v-1,-14,0,-30,13,-29v9,0,13,6,13,17r0,163v0,11,-4,16,-13,16v-15,0,-11,-17,-14,-28v-10,16,-28,28,-53,28v-56,-2,-82,-41,-82,-98v0,-55,27,-95,82,-98","w":200},"\u00e5":{"d":"100,-263v-9,0,-19,9,-18,19v-1,9,9,19,18,18v9,1,19,-9,18,-18v1,-10,-9,-19,-18,-19xm100,-211v-19,0,-33,-12,-33,-33v0,-21,13,-34,33,-34v20,0,34,14,34,34v0,20,-14,33,-34,33xm96,-172v-73,0,-73,153,0,153v41,0,54,-35,54,-77v0,-42,-14,-76,-54,-76xm96,-194v27,0,40,14,54,29v-1,-14,0,-30,13,-29v9,0,13,6,13,17r0,163v0,11,-4,16,-13,16v-15,0,-11,-17,-14,-28v-10,16,-28,28,-53,28v-56,-2,-82,-41,-82,-98v0,-55,27,-95,82,-98","w":200},"\u00e6":{"d":"281,-106v7,-67,-87,-91,-103,-24v-2,8,-4,16,-4,24r107,0xm162,2v-13,0,-12,-15,-12,-29v-11,18,-28,29,-54,29v-56,0,-82,-41,-82,-98v0,-55,27,-98,82,-98v27,0,39,13,54,28v0,-13,0,-28,12,-28v13,-1,12,14,12,27v16,-10,26,-28,53,-27v55,2,84,43,81,99v-1,8,-8,10,-17,11r-117,0v3,35,21,63,57,65v32,1,43,-21,63,-30v8,0,12,4,12,13v-14,45,-107,49,-132,12v0,13,0,27,-12,26xm96,-172v-73,0,-73,153,0,153v41,0,54,-35,54,-77v0,-42,-14,-76,-54,-76","w":320},"\u00e7":{"d":"146,-21v-2,18,-22,20,-41,22v-2,5,-8,10,-7,14v16,-5,31,5,31,19v0,29,-53,42,-64,17v2,-22,41,9,42,-14v1,-17,-44,0,-24,-26r6,-9v-49,-7,-75,-45,-75,-98v0,-55,30,-98,86,-98v20,0,42,4,47,20v-3,29,-29,2,-51,4v-72,3,-71,145,0,148v18,1,26,-7,39,-10v5,0,12,5,11,11","w":159},"\u00e8":{"d":"123,-241v16,3,11,27,-4,24v-21,-9,-47,-15,-64,-27v-5,-11,6,-23,18,-16xm150,-106v8,-67,-89,-90,-104,-24v-2,8,-4,16,-4,24r108,0xm178,-100v1,12,-6,15,-17,16r-119,0v3,35,21,63,57,65v32,1,44,-21,64,-30v8,0,12,4,12,13v-10,24,-39,37,-74,38v-59,0,-87,-41,-87,-98v0,-55,28,-98,82,-98v55,0,80,39,82,94","w":186},"\u00e9":{"d":"73,-219v-11,7,-23,-4,-18,-16v18,-12,44,-20,68,-27v11,1,15,22,0,24xm150,-106v8,-67,-89,-90,-104,-24v-2,8,-4,16,-4,24r108,0xm178,-100v1,12,-6,15,-17,16r-119,0v3,35,21,63,57,65v32,1,44,-21,64,-30v8,0,12,4,12,13v-10,24,-39,37,-74,38v-59,0,-87,-41,-87,-98v0,-55,28,-98,82,-98v55,0,80,39,82,94","w":186},"\u00ea":{"d":"58,-217v-12,6,-26,-3,-19,-16v13,-11,38,-16,55,-24v18,11,49,10,56,31v-9,25,-40,-3,-56,-7xm150,-106v8,-67,-89,-90,-104,-24v-2,8,-4,16,-4,24r108,0xm178,-100v1,12,-6,15,-17,16r-119,0v3,35,21,63,57,65v32,1,44,-21,64,-30v8,0,12,4,12,13v-10,24,-39,37,-74,38v-59,0,-87,-41,-87,-98v0,-55,28,-98,82,-98v55,0,80,39,82,94","w":186},"\u00eb":{"d":"126,-213v-10,0,-18,-7,-18,-17v0,-11,7,-18,18,-18v10,0,17,8,17,18v0,10,-7,17,-17,17xm62,-213v-10,0,-18,-7,-18,-17v0,-11,7,-18,18,-18v10,0,17,8,17,18v0,10,-7,17,-17,17xm150,-106v8,-67,-89,-90,-104,-24v-2,8,-4,16,-4,24r108,0xm178,-100v1,12,-6,15,-17,16r-119,0v3,35,21,63,57,65v32,1,44,-21,64,-30v8,0,12,4,12,13v-10,24,-39,37,-74,38v-59,0,-87,-41,-87,-98v0,-55,28,-98,82,-98v55,0,80,39,82,94","w":186},"\u00ec":{"d":"66,-241v17,3,11,29,-4,24v-21,-8,-47,-15,-64,-27v-5,-12,6,-21,19,-16xm50,-14v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-163v0,-11,4,-17,13,-17v9,0,13,6,13,17r0,163","w":73},"\u00ed":{"d":"17,-219v-12,7,-24,-3,-19,-16v18,-12,44,-20,68,-27v12,1,14,18,0,24xm50,-14v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-163v0,-11,4,-17,13,-17v9,0,13,6,13,17r0,163","w":73},"\u00ee":{"d":"1,-217v-12,5,-25,-2,-19,-16v13,-11,38,-16,55,-24v18,11,49,10,56,31v-9,25,-40,-3,-56,-7xm50,-14v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-163v0,-11,4,-17,13,-17v9,0,13,6,13,17r0,163","w":73},"\u00ef":{"d":"69,-213v-10,0,-18,-7,-18,-17v0,-11,7,-18,18,-18v10,0,17,8,17,18v0,10,-7,17,-17,17xm5,-213v-10,0,-18,-7,-18,-17v0,-11,7,-18,18,-18v10,0,17,8,17,18v0,10,-7,17,-17,17xm50,-14v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-163v0,-11,4,-17,13,-17v9,0,13,6,13,17r0,163","w":73},"\u00f0":{"d":"96,-170v-73,0,-73,151,0,151v40,0,55,-35,55,-75v0,-41,-14,-76,-55,-76xm179,-107v0,65,-24,109,-83,109v-56,0,-82,-42,-82,-96v0,-55,27,-95,82,-98v20,-1,40,15,48,24v-10,-25,-27,-49,-48,-64v-15,6,-27,15,-43,20v-9,-1,-8,-14,0,-18r31,-15v-9,-11,-31,-8,-36,-22v10,-25,45,2,57,11v14,-6,24,-15,40,-18v10,-2,10,13,3,16r-28,14v36,31,59,74,59,137"},"\u00f1":{"d":"148,-242v-7,33,-48,16,-73,12v-10,1,-27,17,-30,-1v4,-35,49,-19,73,-13v9,-3,28,-19,30,2xm96,-170v-66,2,-42,93,-46,156v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16r0,-163v0,-11,4,-17,13,-17v12,-1,14,12,13,26v30,-46,119,-25,119,43r0,111v0,11,-4,16,-13,16v-9,0,-13,-5,-13,-16v-5,-63,23,-158,-47,-156"},"\u00f2":{"d":"126,-241v16,3,11,27,-4,24v-21,-9,-47,-15,-64,-27v-5,-11,6,-23,18,-16xm96,-194v56,0,83,42,83,98v0,57,-26,98,-83,98v-56,0,-82,-41,-82,-98v0,-55,27,-98,82,-98xm96,-172v-74,0,-73,153,0,153v41,0,55,-36,55,-77v0,-40,-14,-76,-55,-76"},"\u00f3":{"d":"76,-219v-11,7,-23,-4,-18,-16v18,-12,44,-20,68,-27v11,1,15,22,0,24xm96,-194v56,0,83,42,83,98v0,57,-26,98,-83,98v-56,0,-82,-41,-82,-98v0,-55,27,-98,82,-98xm96,-172v-74,0,-73,153,0,153v41,0,55,-36,55,-77v0,-40,-14,-76,-55,-76"},"\u00f4":{"d":"60,-217v-11,6,-25,-4,-18,-16v13,-11,37,-16,54,-24v18,11,50,10,57,31v-9,25,-41,-3,-57,-7xm96,-194v56,0,83,42,83,98v0,57,-26,98,-83,98v-56,0,-82,-41,-82,-98v0,-55,27,-98,82,-98xm96,-172v-74,0,-73,153,0,153v41,0,55,-36,55,-77v0,-40,-14,-76,-55,-76"},"\u00f5":{"d":"148,-242v-7,33,-48,16,-73,12v-10,1,-27,17,-30,-1v4,-35,49,-19,73,-13v9,-3,28,-19,30,2xm96,-194v56,0,83,42,83,98v0,57,-26,98,-83,98v-56,0,-82,-41,-82,-98v0,-55,27,-98,82,-98xm96,-172v-74,0,-73,153,0,153v41,0,55,-36,55,-77v0,-40,-14,-76,-55,-76"},"\u00f6":{"d":"129,-213v-10,0,-18,-7,-18,-17v0,-11,7,-18,18,-18v10,0,17,8,17,18v0,10,-7,17,-17,17xm64,-213v-10,0,-17,-7,-17,-17v0,-10,7,-18,17,-18v11,0,18,7,18,18v0,10,-8,17,-18,17xm96,-194v56,0,83,42,83,98v0,57,-26,98,-83,98v-56,0,-82,-41,-82,-98v0,-55,27,-98,82,-98xm96,-172v-74,0,-73,153,0,153v41,0,55,-36,55,-77v0,-40,-14,-76,-55,-76"},"\u00f7":{"d":"108,-144v-12,0,-23,-11,-23,-23v0,-12,10,-22,23,-22v13,0,23,10,23,22v0,12,-11,23,-23,23xm108,7v-13,0,-23,-10,-23,-22v0,-12,10,-23,23,-23v13,0,23,11,23,23v0,12,-10,22,-23,22xm199,-91v0,7,-7,12,-14,12r-154,0v-7,0,-14,-5,-14,-12v-1,-7,7,-13,14,-12r154,0v7,0,15,5,14,12","w":216},"\u00f8":{"d":"96,-19v55,0,64,-72,47,-119r-82,103v8,9,19,15,35,16xm96,-194v23,0,39,7,51,19v8,-10,26,-40,35,-16v-3,13,-14,21,-21,31v36,58,16,167,-65,162v-21,-1,-38,-7,-50,-17v-8,9,-25,37,-35,15v3,-14,14,-21,21,-31v-38,-55,-15,-167,64,-163xm96,-172v-54,1,-63,72,-46,118r82,-102v-8,-9,-19,-16,-36,-16"},"\u00f9":{"d":"126,-241v16,3,11,27,-4,24v-21,-9,-47,-15,-64,-27v-5,-11,6,-23,18,-16xm96,2v-43,0,-71,-22,-72,-65r0,-114v0,-11,4,-17,13,-17v9,0,13,6,13,17v5,62,-22,158,46,158v69,0,42,-95,47,-158v0,-11,4,-17,13,-17v9,0,13,6,13,17r0,114v-1,44,-30,65,-73,65"},"\u00fa":{"d":"76,-219v-11,7,-23,-4,-18,-16v18,-12,44,-20,68,-27v11,1,15,22,0,24xm96,2v-43,0,-71,-22,-72,-65r0,-114v0,-11,4,-17,13,-17v9,0,13,6,13,17v5,62,-22,158,46,158v69,0,42,-95,47,-158v0,-11,4,-17,13,-17v9,0,13,6,13,17r0,114v-1,44,-30,65,-73,65"},"\u00fb":{"d":"60,-217v-11,6,-25,-4,-18,-16v13,-11,37,-16,54,-24v18,11,50,10,57,31v-9,25,-41,-3,-57,-7xm96,2v-43,0,-71,-22,-72,-65r0,-114v0,-11,4,-17,13,-17v9,0,13,6,13,17v5,62,-22,158,46,158v69,0,42,-95,47,-158v0,-11,4,-17,13,-17v9,0,13,6,13,17r0,114v-1,44,-30,65,-73,65"},"\u00fc":{"d":"129,-213v-10,0,-18,-7,-18,-17v0,-11,7,-18,18,-18v10,0,17,8,17,18v0,10,-7,17,-17,17xm64,-213v-10,0,-17,-7,-17,-17v0,-10,7,-18,17,-18v11,0,18,7,18,18v0,10,-8,17,-18,17xm96,2v-43,0,-71,-22,-72,-65r0,-114v0,-11,4,-17,13,-17v9,0,13,6,13,17v5,62,-22,158,46,158v69,0,42,-95,47,-158v0,-11,4,-17,13,-17v9,0,13,6,13,17r0,114v-1,44,-30,65,-73,65"},"\u00fd":{"d":"57,-219v-12,7,-24,-3,-19,-16v18,-12,44,-20,68,-27v12,1,14,18,0,24xm65,65v-1,15,-25,18,-26,2v6,-26,17,-48,25,-72r-60,-177v1,-15,25,-16,26,0r47,139v18,-49,30,-104,52,-148v9,-8,24,2,19,17","w":153},"\u00fe":{"d":"104,-172v-41,0,-55,36,-55,76v0,41,14,77,55,77v74,0,73,-153,0,-153xm104,2v-25,0,-40,-13,-54,-28r0,87v0,11,-4,17,-13,17v-9,0,-13,-6,-13,-17r0,-322v0,-11,4,-17,13,-17v9,0,13,6,13,17r1,96v12,-17,28,-29,53,-29v54,0,82,43,82,98v0,55,-27,96,-82,98","w":200},"\u00ff":{"d":"109,-213v-10,0,-18,-7,-18,-17v0,-11,7,-18,18,-18v10,0,17,8,17,18v0,10,-7,17,-17,17xm45,-213v-10,0,-18,-7,-18,-17v0,-11,7,-18,18,-18v10,0,17,8,17,18v0,10,-7,17,-17,17xm65,65v-1,15,-25,18,-26,2v6,-26,17,-48,25,-72r-60,-177v1,-15,25,-16,26,0r47,139v18,-49,30,-104,52,-148v9,-8,24,2,19,17","w":153}}});
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Part of the digitally encoded machine readable outline data for producing the
 * Typefaces provided is copyrighted (c) 1989, 1995, 2003 Linotype Library GmbH,
 * www.linotype.com. All rights reserved. This software is the property of Linotype
 * Library GmbH, and may not be reproduced, used, displayed, modified, disclosed or
 * transferred without the express written approval of Linotype Library GmbH.
 * Copyright (c) 1989, 1995 Adobe Systems Incorporated. All rights reserved.
 * 
 * Description:
 * Part of the digitally encoded machine readable outline data for producing the
 * Typefaces provided is copyrighted (c) 1989, 1995, 2003 Linotype Library GmbH,
 * www.linotype.com. All rights reserved. This software is the property of Linotype
 * Library GmbH, and may not be reproduced, used, displayed, modified, disclosed or
 * transferred without the express written approval of Linotype Library GmbH.
 * Copyright (c) 1989, 1995 Adobe Systems Incorporated. All rights reserved.
 * 
 * Manufacturer:
 * Linotype Library GmbH & Adobe Systems
 * 
 * Designer:
 * H. F. W. Brendel / Adrian Williams
 * 
 * Vendor URL:
 * http://www.linotype.com
 * 
 * License information:
 * NOTIFICATION OF LICENSE AGREEMENT
 * 
 * This typeface is the property of Heidelberger Druckmaschinen AG and its use by
 * you is covered under the terms of a license agreement respectively font software
 * license agreement. We are fully authorized and empowered to use and commercially
 * exploit these intellectual property rights in their business of licensing,
 * manufacturing and selling typefaces.
 * 
 * You have obtained this typeface software either directly from Linotype Library
 * GmbH or together with software distributed by one of Linotype Library's
 * licensees.
 * 
 * This software is a valuable asset of the Linotype Library GmbH. Unless you have
 * entered into a specific license agreement granting you additional rights, your
 * use of this software is limited to your workstation(s) for your own publishing
 * use. You may not copy or distribute this software.
 * 
 * If you have any question concerning your rights you should review the license
 * agreement you received with the software or contact Linotype Library GmbH for a
 * copy of the license agreement.
 * 
 * Linotype Library can be contacted at:
 * 
 * Tel.: +49(6172) 484-401  or http://www.linotype.com
 */
Cufon.registerFont({"w":206,"face":{"font-family":"VAGRounded LT Thin","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 3 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"4","cap-height":"2","bbox":"-26 -338 342.05 112","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0020-U+0192"},"glyphs":{" ":{"w":96},"!":{"d":"88,-24v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-28,28,-28v15,0,28,13,28,28xm60,-73v-14,0,-26,-10,-26,-25r0,-138v0,-15,12,-25,26,-25v14,0,26,11,26,25r0,138v0,14,-12,25,-26,25","w":120},"\"":{"d":"47,-156v-34,0,-17,-52,-21,-83v-1,-13,8,-23,21,-22v34,0,20,51,22,83v1,12,-9,23,-22,22xm113,-156v-34,0,-20,-51,-22,-83v-1,-12,9,-23,22,-22v34,0,17,52,21,83v1,13,-8,23,-21,22","w":159},"#":{"d":"88,-108r34,0r6,-41r-34,0xm0,-90v0,-23,30,-18,53,-18r6,-41v-22,0,-48,5,-48,-17v0,-23,30,-16,53,-17v5,-23,3,-55,14,-72v13,-9,35,0,28,20r-7,52r34,0v5,-23,3,-55,14,-72v13,-9,36,1,28,20r-7,52v22,0,48,-5,48,17v0,23,-30,16,-53,17r-6,41v22,0,48,-4,48,18v0,23,-30,16,-53,17v-8,26,3,70,-26,75v-31,-2,-9,-49,-9,-75r-34,0v-8,26,3,70,-26,75v-31,-2,-9,-63,-9,-75v-22,0,-48,5,-48,-17","w":216},"$":{"d":"7,-36v0,-43,51,-18,78,-12r0,-60v-38,-11,-78,-21,-77,-71v1,-50,34,-73,77,-82v1,-13,-2,-27,10,-27v14,-1,9,16,10,28v28,2,61,8,63,35v2,34,-40,28,-63,17r0,48v41,12,82,26,81,81v-1,52,-35,76,-81,83v-1,12,3,28,-10,28v-12,-1,-9,-16,-10,-28v-33,-4,-78,-6,-78,-40xm85,-207v-15,1,-26,22,-14,33v3,3,8,6,14,8r0,-41xm105,-49v19,-3,31,-28,17,-44v-4,-4,-10,-7,-17,-9r0,53","w":193},"%":{"d":"175,-54v0,12,6,22,18,22v12,0,19,-10,19,-22v0,-12,-7,-21,-19,-21v-12,0,-19,9,-18,21xm249,-54v0,35,-21,58,-56,58v-35,0,-55,-24,-55,-58v0,-34,22,-58,55,-58v33,0,56,23,56,58xm122,-202v0,34,-22,58,-55,58v-34,0,-56,-23,-56,-58v0,-35,22,-59,56,-59v34,0,55,24,55,59xm87,-5v-10,22,-48,6,-36,-16r122,-230v6,-20,38,-12,38,8v-36,84,-84,157,-124,238xm48,-202v0,12,7,21,19,21v12,0,18,-10,18,-21v0,-12,-7,-21,-18,-22v-12,0,-19,10,-19,22","w":259},"&":{"d":"139,-199v1,-25,-46,-28,-46,-3v0,16,9,19,19,31v11,-7,26,-12,27,-28xm188,-204v0,33,-23,50,-45,63r37,42v12,-12,19,-32,42,-33v39,7,8,56,-9,66v10,16,29,24,32,46v3,20,-29,32,-44,16r-25,-26v-42,52,-171,45,-167,-43v1,-42,27,-63,54,-79v-12,-13,-23,-26,-24,-48v-2,-79,149,-81,149,-4xm91,-122v-35,11,-46,81,7,79v22,0,33,-11,46,-21","w":253},"'":{"d":"43,-156v-34,0,-17,-52,-21,-83v-1,-13,8,-23,21,-22v34,0,20,51,22,83v1,12,-9,23,-22,22","w":86},"(":{"d":"76,4v15,22,7,64,-25,47v-51,-70,-48,-241,-1,-307v9,-13,37,0,35,16v-26,67,-37,171,-9,244","w":86},")":{"d":"2,35v30,-76,33,-197,0,-273v-2,-25,32,-30,42,-9v36,79,38,232,-7,298v-13,10,-37,0,-35,-16","w":86},"*":{"d":"54,-219v-3,-18,-7,-41,16,-39v21,-3,20,21,15,39v13,-16,45,-22,45,6v0,15,-18,16,-29,22v11,6,29,7,29,22v0,27,-33,23,-45,6v4,18,6,40,-15,40v-21,0,-20,-20,-16,-40v-11,15,-45,23,-44,-6v1,-15,18,-16,29,-22v-11,-6,-29,-7,-29,-22v0,-28,32,-22,44,-6","w":140},"+":{"d":"13,-91v0,-32,44,-20,73,-22v3,-30,-11,-73,22,-73v33,0,19,44,22,73v30,2,73,-10,73,22v0,32,-44,20,-73,22v-2,30,10,73,-22,73v-32,0,-20,-44,-22,-73v-30,-2,-73,10,-73,-22","w":216},",":{"d":"31,-44v12,-23,56,-7,44,19v-11,25,-24,51,-43,70v-21,12,-43,-13,-31,-35","w":96},"-":{"d":"11,-104v1,-39,62,-23,97,-23v14,0,21,10,21,23v-2,38,-62,22,-97,22v-13,0,-21,-9,-21,-22","w":140},".":{"d":"48,4v-15,0,-28,-13,-28,-28v0,-15,13,-28,28,-28v15,0,28,13,28,28v0,15,-13,28,-28,28","w":96},"\/":{"d":"45,-9v-6,20,-44,16,-42,-6v29,-80,70,-153,99,-232v7,-20,43,-17,42,6","w":146},"0":{"d":"199,-128v0,70,-24,132,-96,132v-71,0,-95,-62,-95,-132v0,-70,25,-133,95,-133v71,0,96,63,96,133xm64,-128v0,36,3,83,39,83v36,0,40,-46,40,-83v0,-38,-4,-84,-40,-84v-35,0,-39,47,-39,84"},"1":{"d":"82,2v-17,0,-28,-10,-27,-28r0,-181v-25,2,-46,-2,-46,-24v0,-34,44,-24,76,-25v15,-1,24,12,24,25r0,205v0,17,-10,28,-27,28","w":133},"2":{"d":"183,-186v0,64,-56,98,-87,138v36,4,92,-14,94,24v1,16,-11,24,-25,24r-121,0v-25,3,-35,-25,-20,-42r46,-52v20,-27,51,-49,57,-89v2,-13,-12,-28,-26,-28v-41,0,-20,55,-56,58v-17,0,-27,-11,-27,-26v0,-50,36,-82,85,-82v46,0,80,26,80,75"},"3":{"d":"98,-261v70,-6,102,88,47,121v23,11,43,34,44,65v3,97,-177,106,-177,12v0,-16,11,-24,27,-24v30,0,23,45,60,42v17,0,35,-14,33,-34v6,-46,-61,-15,-61,-56v0,-36,51,-14,51,-52v0,-15,-11,-24,-26,-24v-31,0,-26,33,-54,35v-14,1,-24,-13,-23,-26v4,-37,39,-56,79,-59"},"4":{"d":"118,-104r-1,-100r-49,100r50,0xm144,2v-31,0,-26,-30,-26,-59r-87,0v-22,3,-29,-20,-20,-37r80,-146v16,-36,79,-23,79,25r0,111v18,-2,31,7,31,24v0,16,-13,25,-31,23v0,29,4,59,-26,59"},"5":{"d":"157,-256v32,-4,33,49,7,49r-74,0r-5,39v54,-14,102,18,101,73v-1,63,-32,99,-95,99v-35,0,-75,-13,-79,-48v-1,-13,11,-25,24,-24v22,3,32,22,56,23v45,1,54,-89,3,-84v-25,3,-69,27,-62,-17v5,-34,4,-77,18,-104v24,-14,72,-2,106,-6"},"6":{"d":"138,-85v0,-22,-12,-37,-35,-37v-21,-1,-35,16,-34,37v0,20,13,37,34,37v21,1,35,-16,35,-37xm194,-85v0,53,-36,88,-91,89v-71,2,-110,-67,-81,-133v23,-53,52,-109,105,-132v17,3,33,24,18,41v-16,18,-38,40,-49,59v51,-17,98,24,98,76"},"7":{"d":"84,-12v-15,30,-67,8,-50,-24r90,-171v-42,-6,-119,18,-119,-24v0,-15,9,-25,27,-25r130,0v28,-2,31,33,18,49","w":193},"8":{"d":"130,-186v0,-16,-12,-27,-27,-27v-16,0,-26,11,-26,27v0,16,9,28,26,28v16,0,27,-12,27,-28xm103,-261v70,-6,104,86,51,121v22,10,39,32,38,62v-2,52,-35,82,-89,82v-52,0,-89,-30,-89,-82v0,-31,17,-50,39,-62v-15,-12,-27,-26,-27,-52v2,-45,32,-65,77,-69xm136,-81v0,-23,-12,-36,-33,-36v-21,-1,-33,16,-32,36v1,21,11,36,32,36v21,0,32,-15,33,-36"},"9":{"d":"69,-171v1,22,11,37,34,37v20,0,35,-16,35,-37v0,-21,-13,-39,-35,-38v-20,0,-35,17,-34,38xm13,-171v0,-54,36,-90,90,-90v70,0,109,67,81,134v-22,52,-53,103,-99,131v-23,2,-39,-23,-23,-41v16,-18,38,-39,49,-58v-54,16,-98,-23,-98,-76"},":":{"d":"48,4v-15,0,-28,-13,-28,-28v0,-15,13,-28,28,-28v15,0,28,13,28,28v0,15,-13,28,-28,28xm48,-111v-14,0,-28,-13,-28,-28v0,-15,13,-28,28,-28v15,0,28,13,28,28v0,15,-14,28,-28,28","w":96},";":{"d":"48,-111v-14,0,-28,-13,-28,-28v0,-15,13,-28,28,-28v15,0,28,13,28,28v0,15,-14,28,-28,28xm41,36v-11,25,-56,5,-43,-19v15,-26,22,-62,53,-73v18,-1,31,20,21,38","w":96},"<":{"d":"168,-177v21,-14,42,4,33,28v-38,25,-88,38,-130,58v43,20,91,34,130,58v9,22,-8,39,-33,28r-142,-66v-17,-3,-16,-34,0,-41","w":216},"=":{"d":"13,-51v0,-13,8,-21,21,-21r148,0v13,0,21,8,21,21v0,13,-8,23,-21,22r-148,0v-13,1,-21,-9,-21,-22xm13,-131v0,-13,8,-23,21,-22r148,0v13,-1,21,9,21,22v0,13,-8,21,-21,21r-148,0v-13,0,-21,-8,-21,-21","w":216},">":{"d":"48,-5v-21,14,-42,-4,-33,-28v38,-25,88,-38,130,-58v-43,-20,-91,-34,-130,-58v-9,-22,9,-42,33,-28v49,27,106,44,152,73v8,11,1,32,-10,33","w":216},"?":{"d":"107,-24v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-28,28,-28v15,0,28,13,28,28xm79,-73v-29,0,-30,-32,-26,-61v4,-29,62,-11,58,-50v-2,-16,-13,-26,-30,-27v-31,0,-31,34,-58,36v-13,1,-23,-12,-22,-26v4,-39,40,-60,80,-60v49,0,84,27,86,77v1,42,-29,64,-62,73v3,23,-6,38,-26,38","w":173},"@":{"d":"12,-128v0,-81,54,-133,132,-133v74,0,132,42,132,116v0,58,-42,84,-92,91v-17,2,-23,-7,-26,-18v-31,38,-91,7,-91,-45v0,-63,76,-108,113,-58v-6,-24,31,-29,37,-12v-2,33,-15,56,-17,89v1,5,3,7,8,8v23,-5,36,-26,36,-55v0,-56,-44,-83,-100,-83v-60,0,-96,40,-100,100v-6,99,130,127,193,69v10,-3,20,0,19,12v-13,41,-60,51,-112,51v-79,0,-132,-53,-132,-132xm104,-122v1,17,7,31,25,31v40,0,51,-69,9,-69v-22,0,-31,18,-34,38","w":288},"A":{"d":"80,-100r68,0r-34,-104xm44,-3v-21,17,-51,-6,-41,-32r73,-196v5,-23,42,-41,62,-21v6,6,12,12,15,21r73,209v2,30,-42,31,-51,5r-11,-33r-100,0v-6,16,-8,37,-20,47","w":226,"k":{"y":6,"w":6,"v":6,"Y":27,"W":20,"V":27,"T":33}},"B":{"d":"147,-79v-1,-32,-42,-29,-77,-28r0,59v36,0,78,5,77,-31xm127,-183v0,-27,-29,-27,-57,-26r0,54v30,1,57,2,57,-28xm119,0v-40,0,-102,15,-103,-27r0,-202v0,-41,60,-23,98,-27v68,-8,91,94,34,116v29,9,55,26,55,62v0,52,-33,78,-84,78"},"C":{"d":"130,4v-78,0,-124,-53,-124,-132v0,-80,47,-133,124,-133v33,0,77,7,77,41v0,42,-46,11,-77,11v-47,0,-68,36,-68,82v0,45,22,77,68,79v25,1,38,-12,57,-15v14,1,24,11,24,25v0,35,-43,42,-81,42","w":219},"D":{"d":"174,-127v0,-62,-37,-86,-104,-80r0,157v66,7,104,-16,104,-77xm107,0v-37,0,-91,12,-91,-27r0,-202v-1,-38,52,-27,88,-27v82,0,126,49,126,131v0,80,-46,125,-123,125","w":240},"E":{"d":"137,0v-44,-5,-121,19,-121,-27r0,-198v-2,-50,74,-25,118,-31v17,-1,25,11,25,25v1,36,-54,21,-89,24r0,53v35,2,86,-10,86,25v0,35,-51,23,-86,25r0,54v36,3,92,-13,92,25v0,14,-10,27,-25,25","w":166},"F":{"d":"43,2v-17,0,-27,-11,-27,-28r0,-202v0,-46,76,-23,120,-28v16,-1,24,12,25,25v0,37,-56,21,-91,24r0,53v33,2,82,-10,82,24v1,34,-48,25,-82,26v-4,40,16,105,-27,106","w":159,"k":{"A":20,".":40,",":40}},"G":{"d":"129,-127v1,-36,52,-25,87,-25v23,0,31,12,31,35v-2,74,-42,121,-117,121v-78,0,-124,-53,-124,-132v0,-80,47,-133,124,-133v46,0,90,14,99,51v-15,56,-60,-4,-99,-1v-47,4,-63,38,-68,83v-8,75,87,113,124,52v4,-7,5,-16,5,-26v-30,1,-63,4,-62,-25","w":253},"H":{"d":"43,2v-17,0,-27,-11,-27,-28r0,-204v0,-17,10,-28,27,-28v42,0,23,65,27,104r113,0v4,-39,-15,-103,27,-104v17,0,28,10,27,28r0,204v1,18,-10,28,-27,28v-43,-1,-23,-66,-27,-106r-113,0v-4,40,16,105,-27,106","w":253},"I":{"d":"43,2v-17,0,-27,-11,-27,-28r0,-204v0,-17,10,-28,27,-28v17,0,27,11,27,28r0,204v0,17,-10,28,-27,28","w":86},"J":{"d":"15,-59v24,7,63,31,63,-17r0,-154v0,-17,10,-28,27,-28v17,0,28,10,27,28v-7,94,33,238,-71,234v-32,-1,-66,-9,-66,-41v0,-12,8,-21,20,-22","w":146},"K":{"d":"43,2v-16,0,-27,-11,-27,-26r0,-208v0,-14,11,-27,27,-26v43,0,23,65,27,104r97,-101v38,-16,47,26,22,51r-68,67r94,100v15,23,-16,53,-38,35v-40,-32,-71,-77,-107,-114v-5,43,18,115,-27,118","w":219},"L":{"d":"134,0v-44,-5,-117,19,-118,-30r0,-200v0,-17,10,-28,27,-28v17,0,27,11,27,28r0,180v36,3,90,-12,90,26v-1,13,-10,25,-26,24","w":153,"k":{"y":20,"Y":46,"W":27,"V":40,"T":40}},"M":{"d":"55,-4v-18,14,-51,3,-46,-26r33,-201v5,-34,62,-34,72,-2r43,143r42,-143v5,-12,18,-25,36,-25v20,0,34,12,36,27r34,207v2,23,-31,33,-46,20v-20,-45,-18,-113,-30,-166r-46,158v-7,17,-46,19,-52,0r-47,-158r-21,147v-1,8,-4,15,-8,19","w":313},"N":{"d":"41,2v-17,0,-27,-11,-27,-28r0,-204v-3,-28,35,-36,50,-17r115,153r0,-136v-1,-18,10,-28,27,-28v17,0,27,11,27,28r0,204v3,29,-35,36,-50,16r-115,-150r0,134v0,17,-10,28,-27,28","w":246},"O":{"d":"254,-128v0,79,-45,132,-124,132v-78,0,-124,-53,-124,-132v0,-80,47,-133,124,-133v77,0,124,54,124,133xm62,-128v0,47,21,83,68,83v47,0,68,-36,68,-83v0,-46,-21,-83,-68,-83v-47,0,-68,37,-68,83","w":259},"P":{"d":"144,-171v0,-37,-35,-41,-74,-38r0,77v40,3,74,-1,74,-39xm43,2v-17,0,-27,-11,-27,-28r0,-202v-2,-41,55,-28,92,-28v56,0,92,31,92,86v0,68,-54,91,-130,85v-2,36,11,88,-27,87","w":200,"k":{"A":27,".":43,",":43}},"Q":{"d":"153,-48v-27,-11,-24,-60,12,-52r24,18v22,-53,3,-131,-59,-129v-47,1,-67,37,-68,83v-2,55,33,93,91,80xm250,-27v20,11,14,45,-12,44v-22,0,-30,-20,-45,-29v-16,9,-38,16,-63,16v-78,-3,-124,-53,-124,-132v0,-80,47,-129,124,-133v108,-5,155,133,100,216","w":259},"R":{"d":"141,-175v0,-35,-36,-33,-71,-32r0,64v35,1,71,3,71,-32xm43,2v-17,0,-27,-11,-27,-28r0,-202v-2,-41,54,-26,91,-28v57,-2,90,24,90,81v0,42,-29,62,-67,68r62,66v19,18,-3,52,-31,41v-36,-29,-58,-72,-91,-104v-4,40,16,105,-27,106","w":200,"k":{"Y":13,"W":6,"V":6,"T":6}},"S":{"d":"39,-125v-62,-41,-18,-144,58,-136v30,3,71,8,71,36v0,61,-94,-17,-102,40v25,45,125,19,120,106v-3,54,-37,83,-92,83v-38,0,-83,-5,-87,-40v5,-65,115,30,121,-42v-7,-36,-62,-29,-89,-47","w":193},"T":{"d":"86,2v-17,0,-27,-11,-27,-28r0,-181v-29,0,-65,6,-63,-24v1,-13,8,-25,24,-25r133,0v16,-1,24,12,24,25v2,29,-35,24,-64,24r0,181v1,18,-10,28,-27,28","w":172,"k":{"\u00ad":40,"y":40,"w":40,"u":33,"s":40,"r":33,"o":40,"e":40,"c":40,"a":40,"A":33,";":33,":":33,".":33,",":33}},"U":{"d":"123,4v-65,0,-109,-41,-109,-106r0,-128v0,-17,10,-28,27,-28v17,0,26,11,27,28v4,75,-24,185,55,185v78,0,56,-109,56,-185v0,-18,10,-28,27,-28v17,0,27,11,27,28r0,128v-4,65,-44,106,-110,106","w":246},"V":{"d":"162,-241v8,-25,54,-20,53,8v-22,76,-56,141,-82,214v-3,27,-49,27,-53,0v-26,-73,-60,-137,-81,-214v-2,-28,43,-33,52,-8r56,150","w":213,"k":{"\u00ad":20,"y":6,"u":13,"r":13,"o":20,"e":20,"a":20,"A":27,";":20,":":20,".":40,",":40}},"W":{"d":"279,-251v17,-17,51,-3,44,29r-46,196v-3,34,-60,37,-71,2r-43,-139r-42,139v-3,23,-40,35,-59,18v-6,-6,-10,-12,-12,-20r-47,-209v-2,-21,32,-31,45,-16v24,46,23,118,41,171r46,-157v4,-26,49,-27,57,0r47,157v15,-56,18,-123,40,-171","w":326,"k":{"\u00ad":6,"y":6,"u":13,"r":13,"o":13,"i":4,"e":13,"a":20,"A":20,";":6,":":6,".":27,",":27}},"X":{"d":"51,-10v-15,26,-61,6,-48,-24r76,-103r-58,-79v-18,-21,7,-53,34,-39v23,20,36,49,55,73v19,-24,34,-52,55,-73v25,-14,53,15,35,39r-59,79r76,103v13,30,-30,49,-48,24r-59,-82","w":220},"Y":{"d":"96,2v-48,0,-20,-79,-27,-122r-68,-96v-12,-17,-1,-43,21,-42v10,0,18,3,23,10r51,76r52,-76v19,-26,66,3,44,32r-69,96v-7,44,21,122,-27,122","w":192,"k":{"\u00ad":36,"v":20,"u":27,"q":33,"p":27,"o":33,"i":6,"e":33,"a":33,"A":27,";":27,":":27,".":40,",":40}},"Z":{"d":"168,-256v29,-3,36,30,22,49r-115,159r105,0v15,1,25,9,26,24v0,13,-14,23,-26,24r-142,0v-28,2,-38,-27,-23,-47r116,-162r-95,0v-14,0,-26,-9,-25,-23v0,-13,12,-24,25,-24r132,0","w":213},"[":{"d":"78,55v-29,0,-62,4,-62,-25r0,-265v-2,-30,32,-27,62,-26v11,0,20,7,19,21v2,21,-16,21,-36,20r0,234v20,-1,36,0,36,21v0,14,-7,20,-19,20","w":100},"\\":{"d":"6,-231v-13,-21,14,-38,31,-26v40,76,71,161,107,242v1,21,-33,26,-42,6","w":146},"]":{"d":"22,-261v30,-1,62,-4,62,26r0,265v1,29,-33,26,-62,25v-12,0,-19,-6,-19,-20v0,-21,16,-22,36,-21r0,-234v-20,1,-36,1,-36,-20v0,-14,8,-21,19,-21","w":100},"^":{"d":"185,-142v14,18,-5,35,-24,27v-3,-1,-6,-3,-8,-6r-45,-83r-45,83v-13,19,-52,0,-32,-21r58,-106v4,-13,31,-13,38,0","w":216},"_":{"d":"190,36v0,5,-4,10,-10,9r-180,0v-6,1,-10,-4,-10,-9v0,-5,4,-10,10,-9r180,0v6,-1,10,4,10,9","w":180},"`":{"d":"10,-235v-22,-6,-17,-43,5,-43v26,6,49,15,67,29v9,19,-11,43,-31,30","w":79},"a":{"d":"100,-148v-55,0,-54,105,0,105v54,0,53,-105,0,-105xm142,-172v1,-29,51,-28,50,1r0,150v-2,14,-9,23,-25,23v-17,0,-20,-9,-25,-22v-51,57,-135,2,-135,-75v0,-77,85,-133,135,-77"},"b":{"d":"107,-148v-28,0,-40,23,-40,51v0,29,12,54,40,54v54,0,54,-105,0,-105xm41,2v-16,0,-27,-12,-26,-29r0,-221v-1,-17,10,-29,26,-29v39,0,23,61,26,99v13,-10,28,-18,49,-18v57,0,78,46,83,103v6,75,-85,128,-132,74v-4,13,-10,22,-26,21"},"c":{"d":"100,-196v36,-2,84,23,52,55v-16,9,-30,-8,-49,-7v-31,1,-42,24,-44,53v-2,48,46,62,82,41v12,0,22,10,22,23v-3,27,-34,35,-63,35v-59,0,-93,-41,-93,-99v0,-58,34,-97,93,-101","w":166},"d":{"d":"99,-43v29,0,41,-25,41,-54v0,-29,-12,-51,-41,-51v-53,0,-53,105,0,105xm192,-27v4,34,-49,39,-52,8v-8,14,-27,23,-47,23v-56,0,-82,-42,-86,-97v-5,-77,73,-132,133,-85v3,-38,-14,-98,26,-99v16,0,27,12,26,29r0,221"},"e":{"d":"138,-113v0,-34,-47,-54,-70,-28v-7,8,-12,17,-13,28r83,0xm190,-102v0,16,-7,24,-23,24r-110,0v3,25,23,37,48,37v26,1,38,-18,59,-21v11,-2,23,11,21,22v-5,33,-46,44,-84,44v-62,0,-97,-39,-97,-99v0,-59,34,-101,92,-101v56,0,94,40,94,94","w":193},"f":{"d":"53,2v-16,0,-27,-12,-26,-29r0,-119v-39,10,-46,-44,-12,-46r12,0v-4,-49,10,-86,54,-85v35,-9,51,45,15,45v-21,0,-18,20,-18,40v23,-1,43,0,43,23v0,23,-20,24,-43,23r0,119v0,17,-9,29,-25,29","w":106,"k":{"f":6}},"g":{"d":"99,-43v28,0,41,-22,41,-51v0,-29,-12,-54,-41,-54v-54,0,-53,105,0,105xm166,-194v16,0,27,12,26,29r0,150v-1,63,-37,93,-100,93v-33,0,-77,-7,-82,-38v10,-44,53,-7,86,-7v29,0,50,-21,43,-53v-11,16,-28,24,-52,24v-56,-2,-76,-44,-80,-99v-6,-76,85,-134,133,-77v4,-13,11,-22,26,-22"},"h":{"d":"41,2v-16,0,-27,-12,-26,-29r0,-221v-1,-17,10,-29,26,-29v39,0,23,61,26,99v39,-38,126,-12,118,52v-6,45,19,123,-26,128v-63,-6,17,-155,-59,-155v-51,0,-29,78,-33,126v-1,16,-10,28,-26,29","w":200},"i":{"d":"11,-243v1,-17,12,-28,29,-28v17,0,28,11,29,28v1,16,-14,31,-29,30v-16,-1,-29,-12,-29,-30xm40,2v-16,0,-27,-12,-26,-29r0,-138v-1,-17,10,-29,26,-29v16,0,27,12,26,29r0,138v1,17,-10,29,-26,29","w":79},"j":{"d":"11,-243v1,-17,12,-28,29,-28v17,0,28,11,29,28v1,16,-14,31,-29,30v-16,-1,-29,-12,-29,-30xm40,78v-16,0,-27,-11,-26,-28r0,-215v-1,-17,10,-29,26,-29v16,0,27,12,26,29r0,215v1,17,-10,28,-26,28","w":79},"k":{"d":"41,2v-16,0,-27,-12,-26,-29r0,-221v-1,-17,10,-29,26,-29v16,1,26,13,26,29r0,121v27,-22,43,-56,80,-67v21,0,28,29,12,44r-46,41r66,80v10,32,-34,45,-48,17r-64,-78v-2,37,11,91,-26,92","w":180},"l":{"d":"40,2v-16,0,-27,-12,-26,-29r0,-221v-1,-17,10,-29,26,-29v16,0,27,12,26,29r0,221v1,17,-10,29,-26,29","w":79},"m":{"d":"41,2v-16,0,-27,-12,-26,-29r0,-138v-5,-32,47,-40,49,-9v23,-28,80,-31,102,4v35,-45,134,-28,126,44v-5,45,20,128,-26,128v-64,0,15,-155,-56,-155v-50,0,-31,79,-31,126v0,17,-10,29,-26,29v-63,0,14,-155,-56,-155v-50,0,-25,80,-30,126v-2,16,-10,28,-26,29","w":306},"n":{"d":"41,2v-16,0,-27,-12,-26,-29r0,-138v-5,-31,46,-40,49,-10v35,-41,130,-18,121,49v-6,45,19,123,-26,128v-63,-6,17,-155,-59,-155v-51,0,-29,78,-33,126v-1,16,-10,28,-26,29","w":200},"o":{"d":"141,-95v0,-29,-12,-53,-41,-53v-55,0,-54,105,0,105v28,0,41,-23,41,-52xm7,-95v0,-58,34,-101,93,-101v59,0,93,43,93,101v0,58,-34,99,-93,99v-59,0,-93,-41,-93,-99","w":200},"p":{"d":"107,-148v-28,0,-40,23,-40,51v0,29,12,54,40,54v54,0,54,-105,0,-105xm199,-93v5,74,-77,124,-132,79v-3,36,12,92,-26,92v-16,0,-27,-11,-26,-28r0,-215v-4,-34,49,-38,52,-7v8,-15,27,-24,49,-24v57,0,79,46,83,103"},"q":{"d":"99,-43v29,0,41,-25,41,-54v0,-29,-12,-51,-41,-51v-53,0,-53,105,0,105xm166,-194v16,0,27,12,26,29r0,215v1,17,-10,28,-26,28v-39,1,-23,-56,-26,-92v-55,46,-138,-6,-133,-79v4,-57,27,-103,84,-103v22,0,40,9,49,24v4,-13,11,-22,26,-22"},"r":{"d":"40,2v-16,0,-27,-12,-26,-29r0,-141v-2,-17,14,-25,27,-26v15,0,23,9,26,22v10,-26,65,-32,61,6v-4,34,-60,19,-62,60v-2,40,16,108,-26,108","w":119,"k":{"\u00ad":20,"q":6,"o":6,"n":-6,"m":-6,"e":6,"d":6,"c":6,".":29,",":29}},"s":{"d":"80,-196v30,0,62,9,65,38v0,11,-9,24,-21,23v-15,-2,-28,-15,-47,-15v-16,0,-23,16,-11,24v31,18,81,22,84,69v5,75,-129,79,-146,21v7,-43,51,-8,76,-5v34,-3,18,-27,-3,-33v-31,-10,-67,-22,-67,-61v0,-40,29,-61,70,-61","w":153},"t":{"d":"53,2v-16,-1,-26,-13,-26,-29r0,-119v-20,2,-34,-4,-34,-23v1,-16,14,-26,34,-23v-1,-29,-1,-59,26,-59v28,0,27,30,26,59v22,-1,40,2,40,23v0,21,-18,24,-40,23r0,119v1,17,-10,29,-26,29","w":106},"u":{"d":"100,4v-52,0,-85,-27,-85,-75v0,-44,-19,-123,26,-123v64,0,-16,155,59,155v51,0,34,-77,34,-126v0,-17,9,-29,25,-29v45,0,26,79,26,123v0,48,-33,75,-85,75","w":200},"v":{"d":"117,-175v4,-28,52,-22,50,7v-19,57,-40,113,-65,164v-16,13,-46,3,-47,-15v-17,-51,-44,-94,-55,-149v-6,-29,41,-34,50,-7r34,102","w":166,"k":{".":20,",":20}},"w":{"d":"227,-173v4,-29,53,-26,51,5v-18,56,-35,115,-61,163v-18,15,-48,3,-50,-17r-27,-83v-13,33,-18,75,-38,101v-20,15,-45,-1,-50,-20v-13,-51,-37,-95,-49,-149v1,-29,42,-25,50,0r31,99v13,-37,21,-81,39,-114v15,-14,44,-2,43,17r31,97","w":280,"k":{".":13,",":13}},"x":{"d":"47,-9v-14,23,-60,5,-45,-23v14,-27,39,-45,58,-68v-17,-23,-42,-38,-52,-68v-1,-23,32,-34,46,-16r36,46v18,-19,27,-48,55,-56v21,-1,35,26,19,44r-44,50v19,26,52,42,60,77v6,24,-33,32,-47,14r-43,-53","w":180},"y":{"d":"85,58v-6,30,-62,22,-51,-10v7,-23,17,-42,25,-63r-60,-156v2,-27,42,-30,51,-4r35,97v17,-36,26,-80,48,-111v19,-15,48,5,38,31","w":173,"k":{".":27,",":27}},"z":{"d":"25,0v-19,3,-26,-19,-16,-32r81,-114v-33,-3,-84,12,-84,-23v-1,-14,12,-23,24,-23r122,1v15,1,14,21,7,31r-82,115v35,4,90,-13,92,22v1,13,-11,23,-23,23r-121,0","w":173},"{":{"d":"101,55v-42,2,-72,-5,-70,-47v-6,-31,17,-93,-17,-93v-11,0,-17,-10,-18,-18v1,-24,38,-9,35,-41v-5,-64,-11,-132,70,-117v10,0,16,6,16,17v0,29,-41,3,-41,37v0,48,10,107,-39,105v51,-5,38,58,39,104v-7,33,42,8,41,37v1,11,-6,16,-16,16","w":119},"|":{"d":"40,112v-14,0,-22,-9,-22,-22r0,-360v0,-12,9,-22,22,-22v14,0,22,9,22,22r0,360v0,12,-9,22,-22,22","w":79},"}":{"d":"19,-261v42,-2,72,6,70,48v6,31,-15,88,17,93v10,-1,17,8,17,17v2,25,-41,9,-34,41v-1,54,13,122,-48,117v-18,-1,-38,4,-38,-16v0,-28,41,-4,41,-37v0,-47,-10,-106,38,-105v-50,4,-38,-59,-38,-104v0,-32,-42,-9,-41,-37v-1,-11,6,-17,16,-17","w":119},"~":{"d":"69,-125v30,0,50,25,77,25v19,0,22,-20,40,-22v11,-1,15,8,15,17v-1,31,-24,48,-54,48v-30,0,-50,-25,-77,-25v-19,0,-22,20,-40,22v-11,1,-15,-8,-15,-17v2,-30,22,-48,54,-48","w":216},"\u0192":{"d":"38,-129v0,-21,19,-25,42,-23v10,-49,9,-111,69,-109v20,0,34,7,36,25v3,31,-39,8,-45,40r-8,44v22,-2,38,3,38,22v0,23,-22,23,-46,23r-29,149v-9,21,-24,37,-55,36v-35,10,-48,-42,-15,-45v18,3,22,-10,25,-22r22,-118v-20,2,-34,-5,-34,-22"},"\u0160":{"d":"97,-319v18,-12,55,-21,55,10v0,28,-36,26,-55,38v-19,-12,-55,-10,-55,-38v0,-30,38,-23,55,-10xm39,-125v-62,-41,-18,-144,58,-136v30,3,71,8,71,36v0,61,-94,-17,-102,40v25,45,125,19,120,106v-3,54,-37,83,-92,83v-38,0,-83,-5,-87,-40v5,-65,115,30,121,-42v-7,-36,-62,-29,-89,-47","w":193},"\u0152":{"d":"130,-211v-47,0,-68,37,-68,83v0,47,21,83,68,83v47,0,68,-36,68,-83v0,-46,-21,-83,-68,-83xm339,-231v1,36,-55,21,-90,24r0,53v35,2,86,-10,87,25v0,35,-52,23,-87,25r0,54v36,3,95,-13,93,25v-2,45,-82,18,-125,25v-15,1,-16,-9,-17,-21v-13,19,-39,26,-70,25v-78,-3,-120,-53,-124,-132v-6,-108,116,-169,195,-106v-2,-18,7,-24,26,-22v40,5,111,-17,112,25","w":346},"\u017d":{"d":"107,-319v18,-12,55,-21,55,10v0,28,-36,26,-55,38v-19,-12,-55,-10,-55,-38v0,-30,38,-23,55,-10xm168,-256v29,-3,36,30,22,49r-115,159r105,0v15,1,25,9,26,24v0,13,-14,23,-26,24r-142,0v-28,2,-38,-27,-23,-47r116,-162r-95,0v-14,0,-26,-9,-25,-23v0,-13,12,-24,25,-24r132,0","w":213},"\u0161":{"d":"77,-261v21,-19,68,-12,50,24v-13,11,-34,16,-50,24v-19,-12,-55,-10,-55,-38v0,-30,37,-22,55,-10xm80,-196v30,0,62,9,65,38v0,11,-9,24,-21,23v-15,-2,-28,-15,-47,-15v-16,0,-23,16,-11,24v31,18,81,22,84,69v5,75,-129,79,-146,21v7,-43,51,-8,76,-5v34,-3,18,-27,-3,-33v-31,-10,-67,-22,-67,-61v0,-40,29,-61,70,-61","w":153},"\u0153":{"d":"100,-148v-55,0,-54,105,0,105v28,0,41,-23,41,-52v0,-29,-12,-53,-41,-53xm323,-102v1,16,-7,24,-23,24r-110,0v3,24,23,37,49,37v32,0,68,-44,80,1v-13,54,-127,57,-154,14v-13,17,-35,31,-65,30v-59,-2,-93,-41,-93,-99v0,-58,34,-99,93,-101v29,-1,51,15,67,29v12,-15,35,-30,62,-29v55,3,90,40,94,94xm271,-113v0,-34,-46,-54,-69,-28v-7,8,-12,17,-13,28r82,0","w":326},"\u017e":{"d":"87,-261v21,-18,68,-12,50,24v-13,11,-34,16,-50,24v-19,-12,-55,-10,-55,-38v0,-30,37,-22,55,-10xm25,0v-19,3,-26,-19,-16,-32r81,-114v-33,-3,-84,12,-84,-23v-1,-14,12,-23,24,-23r122,1v15,1,14,21,7,31r-82,115v35,4,90,-13,92,22v1,13,-11,23,-23,23r-121,0","w":173},"\u0178":{"d":"57,-275v-13,0,-26,-13,-26,-26v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,13,-13,26,-26,26xm136,-275v-13,0,-26,-13,-26,-26v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,13,-13,26,-26,26xm96,2v-48,0,-20,-79,-27,-122r-68,-96v-12,-17,-1,-43,21,-42v10,0,18,3,23,10r51,76r52,-76v19,-26,66,3,44,32r-69,96v-7,44,21,122,-27,122","w":192},"\u00a0":{"w":96},"\u00a1":{"d":"32,-168v0,-15,13,-28,28,-28v15,0,28,13,28,28v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28xm60,69v-14,0,-26,-9,-26,-24r0,-139v0,-15,12,-24,26,-24v14,0,26,10,26,24r0,139v0,14,-13,23,-26,24","w":120},"\u00a2":{"d":"163,-163v2,35,-35,23,-58,15r0,105v13,-2,25,-8,36,-11v12,0,22,10,22,23v-2,26,-31,33,-58,35v0,12,2,26,-10,26v-12,0,-8,-16,-9,-27v-50,-8,-79,-43,-79,-100v0,-53,30,-89,79,-97v1,-13,-4,-27,9,-27v14,0,9,13,10,25v26,2,57,8,58,33xm86,-144v-35,12,-35,84,0,96r0,-96","w":166},"\u00a3":{"d":"158,-190v-11,-25,-70,-27,-70,9v0,12,6,20,10,28v33,2,81,-11,81,25v0,33,-41,24,-72,25v-1,22,-8,39,-19,53r100,0v15,1,26,9,26,25v0,16,-11,24,-26,25r-141,0v-17,0,-28,-10,-28,-28v8,-25,34,-37,31,-75v-24,2,-45,-2,-44,-25v0,-18,13,-26,33,-25v-28,-58,17,-111,82,-108v47,2,86,20,91,63v2,22,-27,36,-43,21","w":219},"\u00a4":{"d":"154,-128v0,-30,-17,-49,-46,-49v-29,0,-46,19,-46,49v0,30,19,48,46,48v27,0,46,-18,46,-48xm181,-179v22,21,21,80,0,101v14,11,42,38,9,48v-15,-4,-20,-18,-31,-26v-22,22,-80,22,-102,0v-11,15,-42,42,-48,7v5,-13,18,-19,26,-29v-21,-21,-22,-80,0,-101v-8,-12,-27,-17,-25,-35v2,-9,16,-18,26,-8r21,20v24,-20,78,-20,102,0v11,-15,42,-41,48,-6v-5,13,-18,19,-26,29","w":216},"\u00a5":{"d":"103,2v-35,0,-26,-38,-27,-70v-25,-3,-68,10,-68,-15v0,-25,44,-12,68,-15r0,-24v-25,-3,-68,10,-68,-16v0,-19,26,-15,46,-15v-16,-27,-43,-45,-50,-79v-5,-24,34,-35,48,-16r51,76v21,-28,36,-61,62,-84v27,-11,49,18,33,40r-46,63v20,0,47,-4,47,15v0,26,-44,13,-69,16r0,24v25,3,69,-10,69,15v0,25,-44,12,-69,15v-1,32,8,70,-27,70"},"\u00a6":{"d":"40,63v-39,-3,-18,-68,-22,-104v-1,-12,9,-23,22,-22v39,3,18,68,22,104v1,12,-9,23,-22,22xm40,-117v-39,-3,-18,-68,-22,-104v-1,-12,9,-23,22,-22v39,3,18,68,22,104v1,12,-9,23,-22,22","w":79},"\u00a7":{"d":"77,-125v-19,9,-21,40,3,50r45,19v15,-6,26,-30,10,-43v-15,-12,-39,-17,-58,-26xm39,-155v-40,-42,1,-112,62,-106v41,3,85,13,89,54v0,12,-12,25,-24,25v-27,-2,-30,-30,-59,-31v-18,-1,-36,25,-21,37v35,30,109,25,113,86v2,36,-17,50,-38,64v38,40,0,109,-60,104v-42,-4,-85,-15,-89,-54v-2,-16,14,-27,28,-27v25,0,25,34,54,34v29,0,36,-36,9,-43v-38,-20,-96,-24,-96,-81v0,-33,12,-45,32,-62"},"\u00a8":{"d":"0,-217v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26v14,0,26,12,26,26v0,14,-12,26,-26,26xm80,-217v-14,0,-26,-12,-26,-26v0,-14,12,-26,26,-26v13,0,25,12,25,26v0,14,-12,26,-25,26","w":79},"\u00a9":{"d":"144,-228v-60,0,-100,40,-100,100v0,60,40,100,100,100v60,0,100,-40,100,-100v0,-60,-40,-100,-100,-100xm144,4v-79,0,-132,-53,-132,-132v0,-81,54,-133,132,-133v78,0,132,52,132,133v0,79,-53,132,-132,132xm207,-159v2,13,-3,17,-14,19v-25,-2,-17,-33,-48,-30v-23,2,-31,18,-33,42v-4,41,50,58,64,22v5,-14,37,-15,31,9v-20,71,-140,47,-134,-31v4,-45,26,-74,72,-74v32,0,59,15,62,43","w":288},"\u00aa":{"d":"39,-201v0,18,7,32,26,32v17,0,25,-13,25,-32v0,-18,-8,-32,-25,-32v-19,0,-26,15,-26,32xm109,-261v13,-1,15,9,16,20r0,84v-1,10,-4,16,-16,16v-11,1,-16,-5,-16,-14v-29,31,-94,4,-88,-46v-4,-49,55,-77,88,-46v0,-9,6,-14,16,-14","w":134},"\u00ab":{"d":"89,-58v14,16,-8,45,-28,32v-19,-22,-37,-47,-48,-77v9,-28,28,-47,44,-69v14,-19,47,4,32,27r-28,44xm163,-58v17,23,-21,50,-36,26r-40,-64v2,-35,29,-50,43,-76v16,-17,48,4,33,27r-29,44","w":180},"\u00ac":{"d":"13,-131v0,-13,8,-23,21,-22r148,0v38,2,16,67,21,103v2,13,-8,23,-21,22v-34,0,-19,-51,-22,-82r-126,0v-13,0,-21,-8,-21,-21","w":216},"\u00ad":{"d":"11,-104v1,-39,62,-23,97,-23v14,0,21,10,21,23v-2,38,-62,22,-97,22v-13,0,-21,-9,-21,-22","w":140},"\u2010":{"d":"11,-104v1,-39,62,-23,97,-23v14,0,21,10,21,23v-2,38,-62,22,-97,22v-13,0,-21,-9,-21,-22","w":140},"\u00ae":{"d":"144,-228v-60,0,-100,40,-100,100v0,60,40,100,100,100v60,0,100,-40,100,-100v0,-60,-40,-100,-100,-100xm144,4v-79,0,-132,-53,-132,-132v0,-81,54,-133,132,-133v78,0,132,52,132,133v0,79,-53,132,-132,132xm169,-156v0,-22,-26,-15,-46,-16r0,32v20,-1,46,6,46,-16xm148,-198v59,-11,75,81,18,82v9,17,21,30,27,49v-3,22,-34,13,-36,-4r-23,-43r-11,0v-3,23,10,60,-16,60v-13,0,-16,-5,-16,-17r0,-112v-1,-24,36,-11,57,-15","w":288},"\u00af":{"d":"-17,-241v0,-35,57,-19,90,-22v14,-1,24,9,24,22v0,35,-58,18,-91,21v-14,1,-23,-8,-23,-21","w":79},"\u00b0":{"d":"72,-145v-36,0,-58,-24,-58,-58v0,-34,24,-58,58,-58v34,0,58,24,58,58v0,34,-23,58,-58,58xm72,-233v-15,0,-30,15,-30,30v0,15,15,30,30,30v15,0,30,-15,30,-30v0,-15,-15,-30,-30,-30","w":144},"\u00b1":{"d":"13,-22v0,-13,8,-21,21,-21r148,0v13,0,21,8,21,21v0,13,-8,23,-21,22r-148,0v-13,1,-21,-9,-21,-22xm13,-120v0,-32,44,-20,73,-22v-1,-23,-1,-44,22,-44v23,0,23,21,22,44v30,2,73,-10,73,22v0,31,-44,19,-73,21v1,23,1,45,-22,45v-23,0,-23,-22,-22,-45v-29,-2,-73,10,-73,-21","w":216},"\u00b2":{"d":"119,-216v0,36,-32,53,-48,75v23,2,53,-9,53,18v0,13,-5,18,-16,18r-81,0v-16,2,-22,-17,-11,-25v22,-27,55,-45,66,-84v0,-10,-6,-14,-16,-14v-26,-2,-14,31,-37,32v-12,1,-18,-9,-17,-20v2,-27,25,-45,55,-45v30,0,52,15,52,45","w":134},"\u00b3":{"d":"88,-152v0,-27,-39,-9,-40,-33v-1,-23,37,-8,33,-31v-5,-28,-37,2,-51,6v-9,0,-17,-7,-16,-16v7,-45,101,-48,102,5v0,16,-9,27,-20,33v52,18,26,90,-30,85v-29,-3,-54,-14,-57,-40v-1,-7,11,-15,18,-14v18,2,15,24,39,22v11,-1,22,-6,22,-17","w":134},"\u00b4":{"d":"69,-235v-26,14,-81,36,-71,-14v18,-14,42,-22,67,-29v22,1,26,38,4,43","w":79},"\u00b5":{"d":"41,78v-16,0,-27,-11,-26,-28r0,-215v-1,-17,10,-29,26,-29v64,0,-16,155,59,155v51,0,34,-77,34,-126v0,-17,9,-29,25,-29v16,0,27,12,26,29r0,138v1,17,-10,29,-26,29v-17,1,-24,-11,-26,-25v-7,32,-51,34,-66,9v-3,36,12,92,-26,92","w":200},"\u00b6":{"d":"107,76v-13,0,-22,-8,-21,-21r0,-186v-47,1,-80,-19,-81,-61v-2,-83,101,-61,180,-64v13,0,22,9,22,21r0,290v0,12,-9,21,-22,21v-13,0,-21,-9,-21,-21r0,-279r-35,0r0,279v0,12,-9,21,-22,21","w":223},"\u00b7":{"d":"20,-101v0,-15,13,-29,28,-28v17,1,27,11,28,28v1,16,-13,27,-28,28v-15,1,-28,-13,-28,-28","w":96},"\u22c5":{"d":"20,-101v0,-15,13,-29,28,-28v17,1,27,11,28,28v1,16,-13,27,-28,28v-15,1,-28,-13,-28,-28","w":96},"\u2219":{"d":"20,-101v0,-15,13,-29,28,-28v17,1,27,11,28,28v1,16,-13,27,-28,28v-15,1,-28,-13,-28,-28","w":96},"\u00b8":{"d":"54,45v3,-19,-35,-1,-22,-26r14,-19r21,0r-14,18v20,-5,35,7,35,27v-1,25,-22,33,-49,33v-16,0,-33,-20,-15,-27v10,2,28,9,30,-6","w":79},"\u00b9":{"d":"50,-103v-11,0,-17,-5,-18,-15r0,-104v-17,1,-30,-1,-28,-18v-3,-25,27,-17,49,-18v9,-1,15,7,15,15r0,125v0,10,-7,15,-18,15","w":86},"\u00ba":{"d":"65,-233v-34,0,-34,64,0,64v34,0,35,-64,0,-64xm5,-201v0,-36,24,-60,60,-60v37,0,60,24,60,60v0,38,-23,60,-60,60v-37,0,-60,-22,-60,-60","w":129},"\u00bb":{"d":"50,-30v-15,18,-49,-3,-33,-27r29,-44v-11,-19,-29,-31,-33,-55v-4,-21,29,-30,40,-13r40,63v-2,35,-29,50,-43,76xm123,-30v-11,16,-42,4,-36,-20v9,-18,22,-34,32,-51v-10,-19,-28,-31,-32,-55v-4,-20,29,-30,39,-13v13,24,32,42,41,70v-8,29,-29,47,-44,69","w":180},"\u00bc":{"d":"240,-120r-30,56r30,0r0,-56xm240,-30v-27,-3,-87,11,-69,-25v18,-34,37,-70,62,-98v19,-8,44,0,44,25r0,64v12,-1,20,4,20,16v0,12,-7,19,-20,18v1,18,1,32,-18,32v-19,0,-20,-14,-19,-32xm59,-103v-11,0,-17,-5,-18,-15r0,-104v-17,1,-28,-2,-28,-18v0,-25,27,-17,49,-18v10,-1,16,6,16,15r0,125v0,9,-8,15,-19,15xm91,-5v-7,19,-37,11,-36,-8v0,-6,2,-11,3,-14r119,-224v7,-21,43,-12,38,13","w":309},"\u00bd":{"d":"59,-103v-11,0,-17,-5,-18,-15r0,-104v-17,1,-28,-2,-28,-18v0,-25,27,-17,49,-18v10,-1,16,6,16,15r0,125v0,9,-8,15,-19,15xm297,-18v1,12,-5,18,-15,18r-81,0v-15,3,-23,-17,-12,-25v23,-30,54,-44,66,-85v0,-10,-7,-13,-16,-13v-27,-2,-13,32,-37,32v-12,0,-17,-9,-17,-21v2,-53,109,-61,107,0v-1,36,-31,54,-48,75v24,0,53,-5,53,19xm91,-5v-7,19,-37,11,-36,-8v0,-6,2,-11,3,-14r119,-224v7,-21,43,-12,38,13","w":309},"\u00be":{"d":"245,-64v-1,-18,2,-40,-1,-56r-30,56r31,0xm245,-30v-28,-2,-88,10,-69,-25v19,-34,37,-69,61,-98v19,-8,45,1,45,25r0,64v12,-1,20,4,20,16v0,12,-7,19,-20,18v1,18,1,32,-18,32v-19,0,-20,-14,-19,-32xm13,-226v6,-45,101,-48,102,5v0,16,-9,27,-20,33v54,23,25,90,-31,85v-29,-2,-53,-14,-56,-40v-1,-7,11,-15,18,-14v18,2,15,24,38,22v11,-1,22,-6,23,-17v0,-27,-39,-9,-40,-33v0,-23,34,-7,33,-31v0,-8,-6,-13,-16,-12v-18,0,-19,17,-36,18v-9,0,-16,-8,-15,-16xm119,-5v-10,22,-48,6,-36,-16r122,-230v6,-20,38,-12,38,8v-36,84,-84,157,-124,238","w":309},"\u00bf":{"d":"66,-168v0,-14,13,-28,28,-28v15,0,28,13,28,28v0,15,-13,28,-28,28v-15,0,-28,-14,-28,-28xm94,-118v29,-1,30,31,26,60v-4,30,-61,11,-58,50v1,17,13,26,30,27v31,1,31,-32,58,-35v13,0,23,12,22,26v-4,40,-40,59,-80,59v-51,0,-86,-27,-86,-77v0,-43,27,-64,62,-73v-3,-22,7,-37,26,-37","w":173},"\u00c0":{"d":"84,-293v-23,-6,-16,-42,5,-44v24,10,58,13,69,37v-1,17,-14,31,-34,23xm80,-100r68,0r-34,-104xm44,-3v-21,17,-51,-6,-41,-32r73,-196v5,-23,42,-41,62,-21v6,6,12,12,15,21r73,209v2,30,-42,31,-51,5r-11,-33r-100,0v-6,16,-8,37,-20,47","w":226},"\u00c1":{"d":"143,-293v-26,16,-84,32,-71,-15v17,-15,43,-21,66,-29v21,2,28,38,5,44xm80,-100r68,0r-34,-104xm44,-3v-21,17,-51,-6,-41,-32r73,-196v5,-23,42,-41,62,-21v6,6,12,12,15,21r73,209v2,30,-42,31,-51,5r-11,-33r-100,0v-6,16,-8,37,-20,47","w":226},"\u00c2":{"d":"113,-285v-18,12,-54,20,-54,-11v0,-28,35,-25,54,-37v19,11,55,8,55,37v0,29,-37,24,-55,11xm80,-100r68,0r-34,-104xm44,-3v-21,17,-51,-6,-41,-32r73,-196v5,-23,42,-41,62,-21v6,6,12,12,15,21r73,209v2,30,-42,31,-51,5r-11,-33r-100,0v-6,16,-8,37,-20,47","w":226},"\u00c3":{"d":"173,-308v-4,54,-67,11,-101,32v-9,0,-19,-9,-18,-19v0,-38,46,-34,74,-23v16,-7,47,-19,45,10xm80,-100r68,0r-34,-104xm44,-3v-21,17,-51,-6,-41,-32r73,-196v5,-23,42,-41,62,-21v6,6,12,12,15,21r73,209v2,30,-42,31,-51,5r-11,-33r-100,0v-6,16,-8,37,-20,47","w":226},"\u00c4":{"d":"74,-275v-14,0,-26,-12,-26,-26v0,-14,11,-26,26,-26v14,0,26,12,26,26v0,13,-13,26,-26,26xm153,-275v-13,0,-26,-13,-26,-26v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,13,-13,26,-26,26xm80,-100r68,0r-34,-104xm44,-3v-21,17,-51,-6,-41,-32r73,-196v5,-23,42,-41,62,-21v6,6,12,12,15,21r73,209v2,30,-42,31,-51,5r-11,-33r-100,0v-6,16,-8,37,-20,47","w":226},"\u00c5":{"d":"113,-319v-22,0,-19,33,0,33v9,0,17,-7,17,-16v0,-10,-7,-17,-17,-17xm113,-267v-19,0,-35,-16,-35,-35v0,-20,15,-36,35,-36v20,0,36,16,36,36v0,20,-16,35,-36,35xm80,-100r68,0r-34,-104xm44,-3v-21,17,-51,-6,-41,-32r73,-196v5,-23,42,-41,62,-21v6,6,12,12,15,21r73,209v2,30,-42,31,-51,5r-11,-33r-100,0v-6,16,-8,37,-20,47","w":226},"\u00c6":{"d":"92,-94r57,0r0,-104xm50,-15v-10,27,-67,16,-50,-15r115,-214v4,-7,10,-13,25,-12r127,0v17,-1,25,11,25,25v1,36,-54,21,-89,24r0,53v35,2,86,-10,86,25v0,35,-51,23,-86,25r0,54v36,3,93,-12,93,25v0,43,-77,21,-119,25v-23,2,-31,-19,-28,-45r-82,0","w":299},"\u00c7":{"d":"211,-38v0,34,-42,40,-77,42r-11,14v20,-4,35,6,35,27v0,36,-64,47,-72,15v1,-22,35,8,38,-15v2,-19,-35,-1,-22,-26r11,-16v-67,-10,-107,-58,-107,-131v0,-80,47,-133,124,-133v33,0,77,7,77,41v0,42,-46,11,-77,11v-47,0,-68,36,-68,82v0,45,22,77,68,79v25,1,38,-12,57,-15v14,1,24,11,24,25","w":219},"\u00c8":{"d":"54,-293v-23,-6,-16,-42,5,-44v24,10,58,13,69,37v-1,17,-14,31,-34,23xm137,0v-44,-5,-121,19,-121,-27r0,-198v-2,-50,74,-25,118,-31v17,-1,25,11,25,25v1,36,-54,21,-89,24r0,53v35,2,86,-10,86,25v0,35,-51,23,-86,25r0,54v36,3,92,-13,92,25v0,14,-10,27,-25,25","w":166},"\u00c9":{"d":"113,-293v-26,16,-84,32,-71,-15v17,-15,43,-21,66,-29v21,2,28,38,5,44xm137,0v-44,-5,-121,19,-121,-27r0,-198v-2,-50,74,-25,118,-31v17,-1,25,11,25,25v1,36,-54,21,-89,24r0,53v35,2,86,-10,86,25v0,35,-51,23,-86,25r0,54v36,3,92,-13,92,25v0,14,-10,27,-25,25","w":166},"\u00ca":{"d":"84,-285v-23,18,-69,11,-51,-25v13,-11,34,-15,51,-23v19,11,54,9,54,37v0,30,-37,23,-54,11xm137,0v-44,-5,-121,19,-121,-27r0,-198v-2,-50,74,-25,118,-31v17,-1,25,11,25,25v1,36,-54,21,-89,24r0,53v35,2,86,-10,86,25v0,35,-51,23,-86,25r0,54v36,3,92,-13,92,25v0,14,-10,27,-25,25","w":166},"\u00cb":{"d":"44,-275v-13,0,-26,-13,-26,-26v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,13,-13,26,-26,26xm123,-275v-13,0,-26,-13,-26,-26v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,13,-13,26,-26,26xm137,0v-44,-5,-121,19,-121,-27r0,-198v-2,-50,74,-25,118,-31v17,-1,25,11,25,25v1,36,-54,21,-89,24r0,53v35,2,86,-10,86,25v0,35,-51,23,-86,25r0,54v36,3,92,-13,92,25v0,14,-10,27,-25,25","w":166},"\u00cc":{"d":"14,-293v-22,-8,-17,-42,4,-44v24,7,49,15,67,29v10,54,-41,25,-71,15xm43,2v-17,0,-27,-11,-27,-28r0,-204v0,-17,10,-28,27,-28v17,0,27,11,27,28r0,204v0,17,-10,28,-27,28","w":86},"\u00cd":{"d":"73,-293v-26,15,-85,33,-71,-15v17,-15,42,-21,66,-29v21,1,27,38,5,44xm43,2v-17,0,-27,-11,-27,-28r0,-204v0,-17,10,-28,27,-28v17,0,27,11,27,28r0,204v0,17,-10,28,-27,28","w":86},"\u00ce":{"d":"43,-285v-18,12,-55,19,-55,-11v0,-28,36,-26,55,-37v19,12,55,9,55,37v0,29,-37,24,-55,11xm43,2v-17,0,-27,-11,-27,-28r0,-204v0,-17,10,-28,27,-28v17,0,27,11,27,28r0,204v0,17,-10,28,-27,28","w":86},"\u00cf":{"d":"4,-275v-14,0,-26,-12,-26,-26v0,-14,11,-26,26,-26v14,0,26,12,26,26v0,13,-13,26,-26,26xm83,-275v-14,0,-26,-12,-26,-26v0,-14,11,-26,26,-26v14,0,26,12,26,26v0,13,-13,26,-26,26xm43,2v-17,0,-27,-11,-27,-28r0,-204v0,-17,10,-28,27,-28v17,0,27,11,27,28r0,204v0,17,-10,28,-27,28","w":86},"\u00d0":{"d":"174,-127v0,-62,-37,-86,-104,-80r0,57v24,0,52,-4,52,20v0,24,-28,22,-52,21r0,59v66,7,104,-16,104,-77xm107,0v-37,0,-91,12,-91,-27r0,-82v-19,2,-32,-5,-32,-21v-1,-16,13,-22,32,-20v4,-41,-16,-103,28,-106v114,-7,188,25,186,131v0,80,-46,125,-123,125","w":240},"\u00d1":{"d":"183,-308v-4,55,-67,11,-101,32v-9,0,-19,-9,-18,-19v0,-38,46,-34,74,-23v16,-7,47,-19,45,10xm41,2v-17,0,-27,-11,-27,-28r0,-204v-3,-28,35,-36,50,-17r115,153r0,-136v-1,-18,10,-28,27,-28v17,0,27,11,27,28r0,204v3,29,-35,36,-50,16r-115,-150r0,134v0,17,-10,28,-27,28","w":246},"\u00d2":{"d":"100,-293v-24,-8,-13,-52,11,-43v21,8,44,15,61,28v10,54,-42,25,-72,15xm254,-128v0,79,-45,132,-124,132v-78,0,-124,-53,-124,-132v0,-80,47,-133,124,-133v77,0,124,54,124,133xm62,-128v0,47,21,83,68,83v47,0,68,-36,68,-83v0,-46,-21,-83,-68,-83v-47,0,-68,37,-68,83","w":259},"\u00d3":{"d":"159,-293v-26,14,-82,34,-71,-15v18,-14,43,-21,67,-29v21,2,27,38,4,44xm254,-128v0,79,-45,132,-124,132v-78,0,-124,-53,-124,-132v0,-80,47,-133,124,-133v77,0,124,54,124,133xm62,-128v0,47,21,83,68,83v47,0,68,-36,68,-83v0,-46,-21,-83,-68,-83v-47,0,-68,37,-68,83","w":259},"\u00d4":{"d":"130,-285v-18,12,-55,19,-55,-11v0,-28,36,-26,55,-37v19,11,55,10,55,37v0,29,-37,24,-55,11xm254,-128v0,79,-45,132,-124,132v-78,0,-124,-53,-124,-132v0,-80,47,-133,124,-133v77,0,124,54,124,133xm62,-128v0,47,21,83,68,83v47,0,68,-36,68,-83v0,-46,-21,-83,-68,-83v-47,0,-68,37,-68,83","w":259},"\u00d5":{"d":"190,-308v0,55,-67,11,-102,32v-9,0,-18,-10,-18,-19v0,-39,47,-33,75,-23v16,-7,45,-18,45,10xm254,-128v0,79,-45,132,-124,132v-78,0,-124,-53,-124,-132v0,-80,47,-133,124,-133v77,0,124,54,124,133xm62,-128v0,47,21,83,68,83v47,0,68,-36,68,-83v0,-46,-21,-83,-68,-83v-47,0,-68,37,-68,83","w":259},"\u00d6":{"d":"90,-275v-13,0,-26,-13,-26,-26v0,-14,12,-26,26,-26v14,0,26,11,26,26v0,14,-12,26,-26,26xm170,-275v-14,0,-26,-12,-26,-26v0,-14,11,-26,26,-26v14,0,25,12,25,26v0,14,-12,26,-25,26xm254,-128v0,79,-45,132,-124,132v-78,0,-124,-53,-124,-132v0,-80,47,-133,124,-133v77,0,124,54,124,133xm62,-128v0,47,21,83,68,83v47,0,68,-36,68,-83v0,-46,-21,-83,-68,-83v-47,0,-68,37,-68,83","w":259},"\u00d7":{"d":"34,-136v-14,-11,-3,-37,15,-36v25,9,39,36,59,51v20,-16,34,-41,59,-51v18,-1,28,23,15,36r-44,45v16,20,41,34,51,59v1,18,-23,28,-36,15r-45,-45v-20,17,-33,40,-58,52v-18,0,-30,-21,-16,-36r44,-45","w":216},"\u00d8":{"d":"130,-211v-60,-1,-80,70,-60,123r102,-108v-10,-9,-24,-15,-42,-15xm29,0v-11,13,-35,2,-28,-16v9,-11,19,-20,29,-30v-15,-21,-24,-48,-24,-82v0,-80,47,-133,124,-133v33,0,59,12,78,28v13,-9,18,-27,37,-30v34,13,-4,39,-16,53v15,22,25,48,25,82v0,79,-45,130,-124,132v-34,1,-60,-11,-79,-27xm130,-45v61,1,80,-69,60,-124r-102,108v10,9,24,15,42,16","w":259},"\u00d9":{"d":"94,-293v-23,-6,-16,-42,5,-44v24,10,58,13,69,37v-1,17,-14,31,-34,23xm123,4v-65,0,-109,-41,-109,-106r0,-128v0,-17,10,-28,27,-28v17,0,26,11,27,28v4,75,-24,185,55,185v78,0,56,-109,56,-185v0,-18,10,-28,27,-28v17,0,27,11,27,28r0,128v-4,65,-44,106,-110,106","w":246},"\u00da":{"d":"153,-293v-26,16,-84,32,-71,-15v17,-15,43,-21,66,-29v21,2,28,38,5,44xm123,4v-65,0,-109,-41,-109,-106r0,-128v0,-17,10,-28,27,-28v17,0,26,11,27,28v4,75,-24,185,55,185v78,0,56,-109,56,-185v0,-18,10,-28,27,-28v17,0,27,11,27,28r0,128v-4,65,-44,106,-110,106","w":246},"\u00db":{"d":"123,-285v-18,12,-54,20,-54,-11v0,-28,35,-25,54,-37v19,11,55,8,55,37v0,31,-37,22,-55,11xm123,4v-65,0,-109,-41,-109,-106r0,-128v0,-17,10,-28,27,-28v17,0,26,11,27,28v4,75,-24,185,55,185v78,0,56,-109,56,-185v0,-18,10,-28,27,-28v17,0,27,11,27,28r0,128v-4,65,-44,106,-110,106","w":246},"\u00dc":{"d":"84,-275v-13,0,-26,-13,-26,-26v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,13,-13,26,-26,26xm163,-275v-13,0,-26,-13,-26,-26v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,13,-13,26,-26,26xm123,4v-65,0,-109,-41,-109,-106r0,-128v0,-17,10,-28,27,-28v17,0,26,11,27,28v4,75,-24,185,55,185v78,0,56,-109,56,-185v0,-18,10,-28,27,-28v17,0,27,11,27,28r0,128v-4,65,-44,106,-110,106","w":246},"\u00dd":{"d":"126,-293v-26,16,-84,32,-71,-15v17,-15,43,-21,66,-29v21,2,28,38,5,44xm96,2v-48,0,-20,-79,-27,-122r-68,-96v-12,-17,-1,-43,21,-42v10,0,18,3,23,10r51,76r52,-76v19,-26,66,3,44,32r-69,96v-7,44,21,122,-27,122","w":192},"\u00de":{"d":"43,2v-17,0,-27,-11,-27,-28r0,-204v0,-17,10,-28,27,-28v20,0,29,15,27,38v76,-6,130,17,130,86v0,68,-54,91,-130,85v2,27,-1,52,-27,51xm144,-135v0,-37,-35,-41,-74,-38r0,77v40,3,74,-1,74,-39","w":200},"\u00df":{"d":"40,2v-16,0,-27,-12,-26,-29v5,-106,-30,-250,83,-250v71,0,103,89,53,125v29,8,45,35,45,70v0,49,-31,80,-79,86v-33,4,-44,-42,-12,-46v42,3,56,-73,9,-80v-16,-2,-31,-6,-30,-26v0,-33,42,-16,42,-55v0,-13,-13,-28,-28,-27v-25,1,-31,19,-31,44r0,159v1,17,-10,29,-26,29","w":200},"\u00e0":{"d":"74,-235v-22,-5,-18,-42,4,-43v26,8,58,13,70,36v0,18,-14,31,-34,23xm100,-148v-55,0,-54,105,0,105v54,0,53,-105,0,-105xm142,-172v1,-29,51,-28,50,1r0,150v-2,14,-9,23,-25,23v-17,0,-20,-9,-25,-22v-51,57,-135,2,-135,-75v0,-77,85,-133,135,-77"},"\u00e1":{"d":"133,-235v-26,15,-84,34,-71,-14v17,-15,41,-22,66,-29v23,1,27,38,5,43xm100,-148v-55,0,-54,105,0,105v54,0,53,-105,0,-105xm142,-172v1,-29,51,-28,50,1r0,150v-2,14,-9,23,-25,23v-17,0,-20,-9,-25,-22v-51,57,-135,2,-135,-75v0,-77,85,-133,135,-77"},"\u00e2":{"d":"103,-227v-21,19,-68,10,-50,-24v12,-12,34,-16,50,-24v19,11,55,9,55,37v0,29,-37,24,-55,11xm100,-148v-55,0,-54,105,0,105v54,0,53,-105,0,-105xm142,-172v1,-29,51,-28,50,1r0,150v-2,14,-9,23,-25,23v-17,0,-20,-9,-25,-22v-51,57,-135,2,-135,-75v0,-77,85,-133,135,-77"},"\u00e3":{"d":"128,-218v-23,-7,-46,-11,-66,0v-9,0,-18,-9,-18,-19v0,-37,49,-34,74,-22v16,-8,46,-19,45,10v-1,19,-15,30,-35,31xm100,-148v-55,0,-54,105,0,105v54,0,53,-105,0,-105xm142,-172v1,-29,51,-28,50,1r0,150v-2,14,-9,23,-25,23v-17,0,-20,-9,-25,-22v-51,57,-135,2,-135,-75v0,-77,85,-133,135,-77"},"\u00e4":{"d":"64,-217v-14,0,-26,-12,-26,-26v0,-14,12,-26,26,-26v13,0,26,13,26,26v0,13,-13,26,-26,26xm143,-217v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26v13,0,26,13,26,26v0,13,-13,26,-26,26xm100,-148v-55,0,-54,105,0,105v54,0,53,-105,0,-105xm142,-172v1,-29,51,-28,50,1r0,150v-2,14,-9,23,-25,23v-17,0,-20,-9,-25,-22v-51,57,-135,2,-135,-75v0,-77,85,-133,135,-77"},"\u00e5":{"d":"103,-260v-10,0,-16,7,-16,16v0,9,7,15,16,16v9,0,17,-7,17,-16v0,-10,-7,-16,-17,-16xm103,-208v-19,0,-35,-17,-35,-36v0,-19,16,-36,35,-36v19,0,36,16,36,36v0,20,-17,36,-36,36xm100,-148v-55,0,-54,105,0,105v54,0,53,-105,0,-105xm142,-172v1,-29,51,-28,50,1r0,150v-2,14,-9,23,-25,23v-17,0,-20,-9,-25,-22v-51,57,-135,2,-135,-75v0,-77,85,-133,135,-77"},"\u00e6":{"d":"271,-113v0,-34,-46,-54,-69,-28v-7,8,-12,17,-13,28r82,0xm143,-172v0,-23,36,-30,41,-7v55,-44,139,8,139,77v0,16,-7,24,-23,24r-110,0v3,24,23,37,49,37v32,0,68,-44,80,1v-10,44,-98,58,-135,29v-7,22,-44,13,-43,-9v-11,14,-25,24,-48,24v-56,0,-82,-42,-86,-99v-6,-78,86,-133,136,-77xm100,-148v-55,0,-54,105,0,105v54,0,53,-105,0,-105","w":326},"\u00e7":{"d":"163,-31v-2,26,-32,31,-55,35r-11,14v20,-5,35,7,35,27v-1,25,-23,33,-50,33v-16,0,-33,-21,-14,-27v10,2,29,10,29,-6v4,-19,-34,-1,-21,-26r11,-16v-49,-8,-80,-44,-80,-98v0,-58,34,-97,93,-101v36,-2,84,23,52,55v-16,9,-30,-8,-49,-7v-31,1,-42,24,-44,53v-2,48,46,62,82,41v12,0,22,10,22,23","w":166},"\u00e8":{"d":"67,-235v-21,-7,-17,-43,5,-43v26,9,57,13,69,36v-1,45,-48,16,-74,7xm138,-113v0,-34,-47,-54,-70,-28v-7,8,-12,17,-13,28r83,0xm190,-102v0,16,-7,24,-23,24r-110,0v3,25,23,37,48,37v26,1,38,-18,59,-21v11,-2,23,11,21,22v-5,33,-46,44,-84,44v-62,0,-97,-39,-97,-99v0,-59,34,-101,92,-101v56,0,94,40,94,94","w":193},"\u00e9":{"d":"126,-235v-26,14,-81,36,-71,-14v18,-14,42,-22,67,-29v22,1,26,38,4,43xm138,-113v0,-34,-47,-54,-70,-28v-7,8,-12,17,-13,28r83,0xm190,-102v0,16,-7,24,-23,24r-110,0v3,25,23,37,48,37v26,1,38,-18,59,-21v11,-2,23,11,21,22v-5,33,-46,44,-84,44v-62,0,-97,-39,-97,-99v0,-59,34,-101,92,-101v56,0,94,40,94,94","w":193},"\u00ea":{"d":"97,-227v-21,19,-69,10,-51,-24v12,-12,34,-16,51,-24v20,11,55,10,55,37v0,29,-37,24,-55,11xm138,-113v0,-34,-47,-54,-70,-28v-7,8,-12,17,-13,28r83,0xm190,-102v0,16,-7,24,-23,24r-110,0v3,25,23,37,48,37v26,1,38,-18,59,-21v11,-2,23,11,21,22v-5,33,-46,44,-84,44v-62,0,-97,-39,-97,-99v0,-59,34,-101,92,-101v56,0,94,40,94,94","w":193},"\u00eb":{"d":"57,-217v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26v14,0,26,12,26,26v0,14,-12,26,-26,26xm136,-217v-13,0,-25,-12,-25,-26v0,-14,12,-26,25,-26v14,0,26,12,26,26v0,14,-12,26,-26,26xm138,-113v0,-34,-47,-54,-70,-28v-7,8,-12,17,-13,28r83,0xm190,-102v0,16,-7,24,-23,24r-110,0v3,25,23,37,48,37v26,1,38,-18,59,-21v11,-2,23,11,21,22v-5,33,-46,44,-84,44v-62,0,-97,-39,-97,-99v0,-59,34,-101,92,-101v56,0,94,40,94,94","w":193},"\u00ec":{"d":"10,-235v-22,-6,-17,-43,5,-43v26,6,49,15,67,29v9,19,-11,43,-31,30xm40,2v-16,0,-27,-12,-26,-29r0,-138v-1,-17,10,-29,26,-29v16,0,27,12,26,29r0,138v1,17,-10,29,-26,29","w":79},"\u00ed":{"d":"69,-235v-26,14,-81,36,-71,-14v18,-14,42,-22,67,-29v22,1,26,38,4,43xm40,2v-16,0,-27,-12,-26,-29r0,-138v-1,-17,10,-29,26,-29v16,0,27,12,26,29r0,138v1,17,-10,29,-26,29","w":79},"\u00ee":{"d":"40,-227v-21,20,-72,7,-50,-24v10,-14,34,-16,50,-24v20,11,55,10,55,37v0,29,-37,24,-55,11xm40,2v-16,0,-27,-12,-26,-29r0,-138v-1,-17,10,-29,26,-29v16,0,27,12,26,29r0,138v1,17,-10,29,-26,29","w":79},"\u00ef":{"d":"0,-217v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26v14,0,26,12,26,26v0,14,-12,26,-26,26xm80,-217v-14,0,-26,-12,-26,-26v0,-14,12,-26,26,-26v13,0,25,12,25,26v0,14,-12,26,-25,26xm40,2v-16,0,-27,-12,-26,-29r0,-138v-1,-17,10,-29,26,-29v16,0,27,12,26,29r0,138v1,17,-10,29,-26,29","w":79},"\u00f0":{"d":"141,-95v0,-27,-14,-47,-41,-47v-27,0,-41,21,-41,47v0,28,13,52,41,52v28,0,41,-23,41,-52xm138,-243v71,48,86,249,-38,247v-59,-1,-90,-41,-93,-99v-3,-68,76,-116,129,-78v-9,-19,-24,-36,-41,-47v-16,7,-28,19,-47,22v-20,-1,-14,-26,1,-29r18,-9v-8,-6,-25,-7,-25,-21v2,-39,59,-18,75,-5v13,-6,24,-17,41,-20v9,-1,18,14,10,22v-7,6,-21,12,-30,17","w":200},"\u00f1":{"d":"160,-249v-2,43,-51,26,-82,23v-11,12,-38,9,-38,-11v-1,-37,50,-34,75,-22v16,-8,46,-19,45,10xm41,2v-16,0,-27,-12,-26,-29r0,-138v-5,-31,46,-40,49,-10v35,-41,130,-18,121,49v-6,45,19,123,-26,128v-63,-6,17,-155,-59,-155v-51,0,-29,78,-33,126v-1,16,-10,28,-26,29","w":200},"\u00f2":{"d":"71,-235v-22,-5,-19,-42,4,-43v25,6,49,15,67,29v9,19,-8,39,-31,30xm141,-95v0,-29,-12,-53,-41,-53v-55,0,-54,105,0,105v28,0,41,-23,41,-52xm7,-95v0,-58,34,-101,93,-101v59,0,93,43,93,101v0,58,-34,99,-93,99v-59,0,-93,-41,-93,-99","w":200},"\u00f3":{"d":"130,-235v-26,13,-82,36,-72,-14v18,-14,42,-22,67,-29v22,0,27,37,5,43xm141,-95v0,-29,-12,-53,-41,-53v-55,0,-54,105,0,105v28,0,41,-23,41,-52xm7,-95v0,-58,34,-101,93,-101v59,0,93,43,93,101v0,58,-34,99,-93,99v-59,0,-93,-41,-93,-99","w":200},"\u00f4":{"d":"100,-227v-21,20,-72,7,-50,-24v10,-14,34,-16,50,-24v20,11,55,10,55,37v0,29,-37,24,-55,11xm141,-95v0,-29,-12,-53,-41,-53v-55,0,-54,105,0,105v28,0,41,-23,41,-52xm7,-95v0,-58,34,-101,93,-101v59,0,93,43,93,101v0,58,-34,99,-93,99v-59,0,-93,-41,-93,-99","w":200},"\u00f5":{"d":"160,-249v-2,43,-51,26,-82,23v-11,12,-38,9,-38,-11v-1,-37,50,-34,75,-22v16,-8,46,-19,45,10xm141,-95v0,-29,-12,-53,-41,-53v-55,0,-54,105,0,105v28,0,41,-23,41,-52xm7,-95v0,-58,34,-101,93,-101v59,0,93,43,93,101v0,58,-34,99,-93,99v-59,0,-93,-41,-93,-99","w":200},"\u00f6":{"d":"60,-217v-13,0,-25,-12,-25,-26v0,-14,12,-26,25,-26v14,0,26,12,26,26v0,14,-12,26,-26,26xm140,-217v-14,0,-26,-12,-26,-26v0,-14,12,-26,26,-26v13,0,26,13,26,26v0,13,-13,26,-26,26xm141,-95v0,-29,-12,-53,-41,-53v-55,0,-54,105,0,105v28,0,41,-23,41,-52xm7,-95v0,-58,34,-101,93,-101v59,0,93,43,93,101v0,58,-34,99,-93,99v-59,0,-93,-41,-93,-99","w":200},"\u00f7":{"d":"108,-138v-15,0,-28,-13,-28,-28v0,-15,14,-28,28,-28v14,0,28,13,28,28v0,15,-13,28,-28,28xm108,12v-15,0,-28,-14,-28,-29v0,-15,14,-28,28,-28v14,0,28,13,28,28v0,15,-14,29,-28,29xm13,-91v0,-13,8,-23,21,-22r148,0v13,-1,21,9,21,22v0,13,-8,23,-21,22r-148,0v-13,1,-21,-9,-21,-22","w":216},"\u00f8":{"d":"78,-51v36,25,75,-16,61,-63xm26,4v-12,12,-34,-8,-21,-21r19,-19v-41,-64,-3,-162,76,-160v24,0,43,9,57,21v8,-7,15,-20,27,-22v29,8,4,33,-8,44v40,60,4,161,-76,157v-24,-1,-42,-7,-56,-19xm124,-140v-37,-26,-79,18,-62,64","w":200},"\u00f9":{"d":"71,-235v-22,-5,-19,-42,4,-43v25,6,49,15,67,29v9,19,-8,39,-31,30xm100,4v-52,0,-85,-27,-85,-75v0,-44,-19,-123,26,-123v64,0,-16,155,59,155v51,0,34,-77,34,-126v0,-17,9,-29,25,-29v45,0,26,79,26,123v0,48,-33,75,-85,75","w":200},"\u00fa":{"d":"130,-235v-26,13,-82,36,-72,-14v18,-14,42,-22,67,-29v22,0,27,37,5,43xm100,4v-52,0,-85,-27,-85,-75v0,-44,-19,-123,26,-123v64,0,-16,155,59,155v51,0,34,-77,34,-126v0,-17,9,-29,25,-29v45,0,26,79,26,123v0,48,-33,75,-85,75","w":200},"\u00fb":{"d":"100,-227v-21,20,-72,7,-50,-24v10,-14,34,-16,50,-24v20,11,55,10,55,37v0,29,-37,24,-55,11xm100,4v-52,0,-85,-27,-85,-75v0,-44,-19,-123,26,-123v64,0,-16,155,59,155v51,0,34,-77,34,-126v0,-17,9,-29,25,-29v45,0,26,79,26,123v0,48,-33,75,-85,75","w":200},"\u00fc":{"d":"60,-217v-13,0,-25,-12,-25,-26v0,-14,12,-26,25,-26v14,0,26,12,26,26v0,14,-12,26,-26,26xm140,-217v-14,0,-26,-12,-26,-26v0,-14,12,-26,26,-26v13,0,26,13,26,26v0,13,-13,26,-26,26xm100,4v-52,0,-85,-27,-85,-75v0,-44,-19,-123,26,-123v64,0,-16,155,59,155v51,0,34,-77,34,-126v0,-17,9,-29,25,-29v45,0,26,79,26,123v0,48,-33,75,-85,75","w":200},"\u00fd":{"d":"116,-235v-26,15,-83,34,-71,-14v17,-15,42,-22,67,-29v22,1,26,38,4,43xm85,58v-6,30,-62,22,-51,-10v7,-23,17,-42,25,-63r-60,-156v2,-27,42,-30,51,-4r35,97v17,-36,26,-80,48,-111v19,-15,48,5,38,31","w":173},"\u00fe":{"d":"107,-148v-52,0,-55,105,0,105v54,0,55,-105,0,-105xm199,-98v5,76,-73,131,-132,84v-3,36,12,92,-26,92v-16,0,-27,-11,-26,-28r0,-298v-1,-17,10,-29,26,-29v41,0,22,66,26,105v8,-15,27,-24,47,-24v55,0,82,42,85,98"},"\u00ff":{"d":"47,-217v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26v14,0,26,12,26,26v0,14,-12,26,-26,26xm126,-217v-13,0,-26,-13,-26,-26v0,-13,13,-26,26,-26v14,0,26,12,26,26v0,14,-12,26,-26,26xm85,58v-6,30,-62,22,-51,-10v7,-23,17,-42,25,-63r-60,-156v2,-27,42,-30,51,-4r35,97v17,-36,26,-80,48,-111v19,-15,48,5,38,31","w":173}}});;;(function(b){function H(){v.hide();r.onerror=r.onload=null;F&&F.abort();l.empty()}function Q(){b.fancybox('<p id="fancybox_error">The requested content cannot be loaded.<br />Please try again later.</p>',{scrolling:"no",padding:20,transitionIn:"none",transitionOut:"none"})}function B(){H();var a=q[s];e=b.extend({},b.fn.fancybox.defaults,typeof b(a).data("fancybox")=="undefined"?e:b(a).data("fancybox"));var d,f,o=a.title||b(a).title||e.title||"";if(a.nodeName&&!e.orig)e.orig=b(a).children("img:first").length?b(a).children("img:first"):b(a);if(o==""&&e.orig)o=e.orig.attr("alt");d=a.nodeName&&/^(?:javascript|#)/i.test(a.href)?e.href||null:e.href||a.href||null;if(e.type){f=e.type;if(!d)d=e.content}else if(e.content)f="html";else if(d)if(d.match(I))f="image";else if(d.match(T))f="swf";else if(b(a).hasClass("iframe"))f="iframe";else if(d.match(/#/)){a=d.substr(d.indexOf("#"));f=b(a).length>0?"inline":"ajax"}else f="ajax";else f="inline";e.type=f;e.href=d;e.title=o;if(e.autoDimensions&&e.type!=="iframe"&&e.type!=="swf"){e.width="auto";e.height="auto"}if(e.modal){e.overlayShow=true;e.hideOnOverlayClick=false;e.hideOnContentClick=false;e.enableEscapeButton=false;e.showCloseButton=false}if(b.isFunction(e.onStart))if(e.onStart(q,s,e)===false){h=false;return}l.css("padding",t+e.padding+e.margin);b(".fancybox-inline-tmp").unbind("fancybox-cancel").bind("fancybox-change",function(){b(this).replaceWith(i.children())});switch(f){case"html":l.html(e.content);G();break;case"inline":b('<div class="fancybox-inline-tmp" />').hide().insertBefore(b(a)).bind("fancybox-cleanup",function(){b(this).replaceWith(i.children())}).bind("fancybox-cancel",function(){b(this).replaceWith(l.children())});b(a).appendTo(l);G();break;case"image":h=false;b.fancybox.showActivity();r=new Image;r.onerror=function(){Q()};r.onload=function(){r.onerror=null;r.onload=null;U()};r.src=d;break;case"swf":var u="",w="";u+='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+e.width+'" height="'+e.height+'"><param name="movie" value="'+d+'"></param>';b.each(e.swf,function(p,R){u+='<param name="'+p+'" value="'+R+'"></param>';w+=" "+p+'="'+R+'"'});u+='<embed src="'+d+'" type="application/x-shockwave-flash" width="'+e.width+'" height="'+e.height+'"'+w+"></embed></object>";l.html(u);G();break;case"ajax":a=d.split("#",2);f=e.ajax.data||{};if(a.length>1){d=a[0];typeof f=="string"?(f+="&selector="+a[1]):(f.selector=a[1])}h=false;b.fancybox.showActivity();F=b.ajax(b.extend(e.ajax,{url:d,data:f,error:Q,success:function(p){if(F.status==200){l.html(p);G()}}}));break;case"iframe":b('<iframe id="fancybox-frame" name="fancybox-frame'+
(new Date).getTime()+'" frameborder="0" hspace="0" scrolling="'+e.scrolling+'" src="'+e.href+'"></iframe>').appendTo(l);J();break}}function U(){h=true;e.width=r.width;e.height=r.height;b("<img />").attr({id:"fancybox-img",src:r.src,alt:e.title}).appendTo(l);J()}function G(){l.width(e.width);l.height(e.height);if(e.width=="auto")e.width=l.width();if(e.height=="auto")e.height=l.height();J()}function J(){v.hide();if(g.is(":visible")&&b.isFunction(c.onCleanup))if(c.onCleanup(j,n,c)===false){b.event.trigger("fancybox-cancel");h=false;return}j=q;n=s;c=e;i.get(0).scrollTop=0;i.get(0).scrollLeft=0;if(c.overlayShow){K&&b("select:not(#fancybox-tmp select)").filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one("fancybox-cleanup",function(){this.style.visibility="inherit"});y.css({"background-color":c.overlayColor,opacity:c.overlayOpacity}).unbind().show()}m=V();W();if(g.is(":visible")){b(z.add(C).add(D)).hide();var a=g.position();k={top:a.top,left:a.left,width:g.width(),height:g.height()};var d=k.width==m.width&&k.height==m.height;i.fadeOut(c.changeFade,function(){function f(){i.html(l.contents()).fadeIn(c.changeFade,L)}b.event.trigger("fancybox-change");i.css({top:c.padding,left:c.padding,width:Math.max(k.width-c.padding*2,1),height:Math.max(k.height-c.padding*2,1)}).empty().css("overflow","hidden");A.prop=0;b(A).animate({prop:1},{duration:d?0:c.changeSpeed,easing:c.easingChange,step:M,complete:f})})}else{g.css("opacity",1);if(c.transitionIn=="elastic"){k=S();i.css({top:c.padding,left:c.padding,width:Math.max(k.width-c.padding*2,1),height:Math.max(k.height-c.padding*2,1)}).html(l.contents());g.css(k).show();if(c.opacity)m.opacity=0;A.prop=0;b(A).animate({prop:1},{duration:c.speedIn,easing:c.easingIn,step:M,complete:L})}else{i.css({top:c.padding,left:c.padding,width:Math.max(m.width-c.padding*2,1),height:Math.max(m.height-c.padding*2-x,1)}).html(l.contents());g.css(m).fadeIn(c.transitionIn=="none"?0:c.speedIn,L)}}}function M(a){var d=Math.round(k.width+(m.width-k.width)*a),f=Math.round(k.height+(m.height-k.height)*a),o=Math.round(k.top+(m.top-k.top)*a),u=Math.round(k.left+(m.left-k.left)*a);g.css({width:d+"px",height:f+"px",top:o+"px",left:u+"px"});d=Math.max(d-c.padding*2,0);f=Math.max(f-(c.padding*2+x*a),0);i.css({width:d+"px",height:f+"px"});if(typeof m.opacity!=="undefined")g.css("opacity",a<0.5?0.5:a)}function L(){i.css("overflow",overflow=c.scrolling=="auto"?c.type=="image"||c.type=="iframe"||c.type=="swf"?"hidden":"auto":c.scrolling=="yes"?"auto":"visible");if(!b.support.opacity){i.get(0).style.removeAttribute("filter");g.get(0).style.removeAttribute("filter")}b("#fancybox-title").show();c.hideOnContentClick&&i.one("click",b.fancybox.close);c.hideOnOverlayClick&&y.one("click",b.fancybox.close);c.showCloseButton&&z.show();X();b(window).bind("resize.fb",b.fancybox.center);c.centerOnScroll?b(window).bind("scroll.fb",b.fancybox.center):b(window).unbind("scroll.fb");b.isFunction(c.onComplete)&&c.onComplete(j,n,c);h=false;Y()}function V(){var a=N(),d={},f=c.margin,o=c.autoScale,u=(t+f)*2,w=(t+f)*2,p=c.padding*2;if(c.width.toString().indexOf("%")>-1){d.width=a[0]*parseFloat(c.width)/100-t*2;o=false}else d.width=c.width+p;if(c.height.toString().indexOf("%")>-1){d.height=a[1]*parseFloat(c.height)/100-t*2;o=false}else d.height=c.height+p;if(o&&(d.width>a[0]-u||d.height>a[1]-w))if(e.type=="image"||e.type=="swf"){u+=p;w+=p;o=Math.min(Math.min(a[0]-u,c.width)/c.width,Math.min(a[1]-w,c.height)/c.height);d.width=Math.round(o*(d.width-p))+p;d.height=Math.round(o*(d.height-p))+p}else{d.width=Math.min(d.width,a[0]-u);d.height=Math.min(d.height,a[1]-w)}d.top=a[3]+(a[1]-(d.height+t*2))*0.5;d.left=a[2]+(a[0]-(d.width+t*2))*0.5;if(c.autoScale==false){d.top=Math.max(a[3]+f,d.top);d.left=Math.max(a[2]+f,d.left)}return d}function S(){var a=e.orig?b(e.orig):false,d={};if(a&&a.length){a=Z(a);d={width:a.width+c.padding*2,height:a.height+c.padding*2,top:a.top-c.padding-t,left:a.left-c.padding-t}}else{a=N();d={width:1,height:1,top:a[3]+a[1]*0.5,left:a[2]+a[0]*0.5}}return d}
function X(){b(document).unbind("keydown.fb").bind("keydown.fb",function(a){if(a.keyCode==27&&c.enableEscapeButton){a.preventDefault();b.fancybox.close()}else if(a.keyCode==37){a.preventDefault();b.fancybox.prev()}else if(a.keyCode==39){a.preventDefault();b.fancybox.next()}});if(b.fn.mousewheel){g.unbind("mousewheel.fb");j.length>1&&g.bind("mousewheel.fb",function(a,d){a.preventDefault();h||d==0||(d>0?b.fancybox.prev():b.fancybox.next())})}if(c.showNavArrows){if(c.cyclic&&j.length>1||n!=0)C.show();if(c.cyclic&&j.length>1||n!=j.length-1)D.show()}}function Y(){if(j.length-1>n){var a=j[n+1].href;if(typeof a!=="undefined"&&a.match(I)){var d=new Image;d.src=a}}if(n>0){a=j[n-1].href;if(typeof a!=="undefined"&&a.match(I)){d=new Image;d.src=a}}}function $(){if(v.is(":visible")){b("div",v).css("top",O*-40+"px");O=(O+1)%12}else clearInterval(P)}function N(){return[b(window).width(),b(window).height(),b(document).scrollLeft(),b(document).scrollTop()]}function Z(a){var d=a.offset();d.top+=parseFloat(a.css("paddingTop"))||0;d.left+=parseFloat(a.css("paddingLeft"))||0;d.top+=parseFloat(a.css("border-top-width"))||0;d.left+=parseFloat(a.css("border-left-width"))||0;d.width=a.width();d.height=a.height();return d}function W(){b("#fancybox-title").remove();x=0;if(c.titleShow!=false){var a=c.title;a=b.isFunction(c.titleFormat)?c.titleFormat(a,j,n,c):aa(a);if(!(!a||a=="")){var d=m.width-c.padding*2;b('<div id="fancybox-title" class="'+("fancybox-title-"+c.titlePosition)+'" />').css({width:d,paddingLeft:c.padding,paddingRight:c.padding}).html(a).appendTo("body");switch(c.titlePosition){case"inside":x=b("#fancybox-title").outerHeight(true)-c.padding;m.height+=x;break;case"over":b("#fancybox-title").css("bottom",c.padding);break;default:b("#fancybox-title").css("bottom",b("#fancybox-title").outerHeight(true)*-1);break}b("#fancybox-title").appendTo(E).hide();K&&b("#fancybox-title span").fixPNG()}}}function aa(a){if(a&&a.length)switch(c.titlePosition){case"inside":return a;case"over":return'<span id="fancybox-title-over">'+a+"</span>";default:return'<span id="fancybox-title-wrap"><span id="fancybox-title-left"></span><span id="fancybox-title-main">'+
a+'</span><span id="fancybox-title-right"></span></span>'}return false}function ba(){if(!b("#fancybox-wrap").length){b("body").append(l=b('<div id="fancybox-tmp"></div>'),v=b('<div id="fancybox-loading"><div></div></div>'),y=b('<div id="fancybox-overlay"></div>'),g=b('<div id="fancybox-wrap"></div>'));E=b('<div id="fancybox-outer"></div>').append('<div class="fancy-bg" id="fancy-bg-n"></div><div class="fancy-bg" id="fancy-bg-ne"></div><div class="fancy-bg" id="fancy-bg-e"></div><div class="fancy-bg" id="fancy-bg-se"></div><div class="fancy-bg" id="fancy-bg-s"></div><div class="fancy-bg" id="fancy-bg-sw"></div><div class="fancy-bg" id="fancy-bg-w"></div><div class="fancy-bg" id="fancy-bg-nw"></div>').appendTo(g);E.append(i=b('<div id="fancybox-inner"></div>'),z=b('<a id="fancybox-close"></a>'),C=b('<a href="javascript:;" id="fancybox-left"><span class="fancy-ico" id="fancybox-left-ico"></span></a>'),D=b('<a href="javascript:;" id="fancybox-right"><span class="fancy-ico" id="fancybox-right-ico"></span></a>'));z.click(b.fancybox.close);v.click(b.fancybox.cancel);C.click(function(a){a.preventDefault();b.fancybox.prev()});D.click(function(a){a.preventDefault();b.fancybox.next()});b.support.opacity||E.find(".fancy-bg").fixPNG();if(K){b(z.add(".fancy-ico").add("div",v)).fixPNG();y.get(0).style.setExpression("height","document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px'");v.get(0).style.setExpression("top","(-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px'");E.prepend('<iframe id="fancybox-hide-sel-frame" src="javascript:\'\';" scrolling="no" frameborder="0" ></iframe>')}}}
var l,v,y,g,E,i,z,C,D,s=0,e={},q=[],n=0,c={},j=[],F=null,r=new Image,I=/\.(jpg|gif|png|bmp|jpeg)(.*)?$/i,T=/[^\.]\.(swf)\s*$/i,P,O=1,k,m,h=false,t=20,A=b.extend(b("<div/>")[0],{prop:0}),x=0,K=!b.support.opacity&&!window.XMLHttpRequest;b.fn.fixPNG=function(){return this.each(function(){var a=b(this).css("backgroundImage");if(a.match(/^url\(["']?(.*\.png)["']?\)$/i)){a=RegExp.$1;b(this).css({}).each(function(){var d=b(this).css("position");d!="absolute"&&d!="relative"&&b(this).css("position","relative")}).css("zoom",1)}})};b.fn.fancybox=function(a){b(this).data("fancybox",b.extend({},a));b(this).unbind("click.fb").bind("click.fb",function(d){d.preventDefault();if(!h){h=true;b(this).blur();q=[];s=0;d=b(this).attr("rel")||"";if(!d||d==""||d==="nofollow")q.push(this);else{q=b("a[rel="+d+"], area[rel="+d+"]");s=q.index(this)}B();return false}});return this};b.fancybox=function(a,d){if(!h){h=true;q=[];s=0;if(b.isArray(a)){for(var f=0,o=a.length;f<o;f++)if(typeof a[f]=="object")b(a[f]).data("fancybox",b.extend({},d,a[f]));else a[f]=b({}).data("fancybox",b.extend({content:a[f]},d));q=jQuery.merge(q,a)}else{if(typeof a=="object")b(a).data("fancybox",b.extend({},d,a));else a=b({}).data("fancybox",b.extend({content:a},d));q.push(a)}B()}};b.fancybox.showActivity=function(){clearInterval(P);v.show();P=setInterval($,66)};b.fancybox.hideActivity=function(){v.hide()};b.fancybox.next=function(){return b.fancybox.pos(n+1)};b.fancybox.prev=function(){return b.fancybox.pos(n-1)};b.fancybox.pos=function(a){if(!h){a=parseInt(a);if(a>-1&&j.length>a){s=a;B()}if(c.cyclic&&j.length>1&&a<0){s=j.length-1;B()}if(c.cyclic&&j.length>1&&a>=j.length){s=0;B()}}};b.fancybox.cancel=function(){if(!h){h=true;b.event.trigger("fancybox-cancel");H();e&&b.isFunction(e.onCancel)&&e.onCancel(q,s,e);h=false}};b.fancybox.close=function(){function a(){y.fadeOut("fast");g.hide();b.event.trigger("fancybox-cleanup");i.empty();b.isFunction(c.onClosed)&&c.onClosed(j,n,c);j=e=[];n=s=0;c=e={};h=false}if(!(h||g.is(":hidden"))){h=true;if(c&&b.isFunction(c.onCleanup))if(c.onCleanup(j,n,c)===false){h=false;return}H();b(z.add(C).add(D)).hide();b("#fancybox-title").remove();g.add(i).add(y).unbind();b(window).unbind("resize.fb scroll.fb");b(document).unbind("keydown.fb");i.css("overflow","hidden");if(c.transitionOut=="elastic"){k=S();var d=g.position();m={top:d.top,left:d.left,width:g.width(),height:g.height()};if(c.opacity)m.opacity=1;A.prop=1;b(A).animate({prop:0},{duration:c.speedOut,easing:c.easingOut,step:M,complete:a})}else g.fadeOut(c.transitionOut=="none"?0:c.speedOut,a)}};b.fancybox.resize=function(){if(!(h||g.is(":hidden"))){h=true;var a=i.wrapInner("<div style='overflow:auto'></div>").children(),d=a.height();g.css({height:d+c.padding*2+x});i.css({height:d});a.replaceWith(a.children());b.fancybox.center()}};b.fancybox.center=function(){h=true;var a=N(),d=c.margin,f={};f.top=a[3]+(a[1]-(g.height()-x+t*2))*0.5;f.left=a[2]+(a[0]-(g.width()+t*2))*0.5;f.top=Math.max(a[3]+d,f.top);f.left=Math.max(a[2]+d,f.left);g.css(f);h=false};b.fn.fancybox.defaults={padding:0,margin:20,opacity:false,modal:false,cyclic:false,scrolling:"no",width:560,height:340,autoScale:false,autoDimensions:false,centerOnScroll:false,ajax:{},swf:{wmode:"transparent"},hideOnOverlayClick:true,hideOnContentClick:false,overlayShow:true,overlayOpacity:0.8,overlayColor:"#E9F3FC",titleShow:true,titlePosition:"outside",titleFormat:null,transitionIn:"fade",transitionOut:"fade",speedIn:300,speedOut:300,changeSpeed:300,changeFade:"fast",easingIn:"swing",easingOut:"swing",showCloseButton:true,showNavArrows:true,enableEscapeButton:true,onStart:null,onCancel:null,onComplete:function(){addCloseText();},onCleanup:null,onClosed:null};b(document).ready(function(){ba()})})(jQuery);;$.fn.fixPNG=function(){return $(this);}
function addCloseText(){$('#fancybox-close').empty().html('<span>Close</span>');return $(this);};var current_page=0;var current_item=0;jQuery.fn.center=function(){if(typeof window.innerWidth!='undefined'){pageWidth=window.innerWidth/2;pageHeight=window.innerHeight/2;}else if(typeof document.documentElement!='undefined'&&typeof document.documentElement.clientWidth!='undefined'&&document.documentElement.clientWidth!=0){pageWidth=document.documentElement.clientWidth/2;pageHeight=document.documentElement.clientHeight/2;var popupHeight=(document.documentElement.scrollTop)+(document.documentElement.clientHeight-this.outerHeight())/2;if(popupHeight<0){popupHeight=12;}}
var popupWidth=pageWidth-(this.outerWidth()/2);if(!popupHeight){var popupHeight=pageHeight-(this.outerHeight()/2)};if(popupHeight<0){popupHeight=0;}
this.css({'top':popupHeight+'px','left':popupWidth+'px'});return this;}
$.fn.infiniteCarousel=function(){function repeat(str,num){return new Array(num+1).join(str);}
return this.each(function(){var $wrapper=$('> div',this).css('overflow','hidden'),$slider=$wrapper.find('> ul'),$items=$slider.find('> li'),$single=$items.filter(':first'),singleWidth=$single.outerWidth(),visible=Math.ceil($wrapper.innerWidth()/singleWidth),currentPage=1,pages=Math.ceil($items.length/visible);if(($items.length%visible)!=0){$slider.append(repeat('<li class="empty" />',visible-($items.length%visible)));$items=$slider.find('> li');}
$items.filter(':first').before($items.slice(-visible).clone().addClass('cloned'));$items.filter(':last').after($items.slice(0,visible).clone().addClass('cloned'));$items=$slider.find('> li');$wrapper.scrollLeft(singleWidth*visible);$('<li class="back"><a href="#">Previous Images</a></li><li class="forward"><a href="#">Next Images</a></li>').appendTo('.other_media_navigation');function gotoPage(page){var dir=page<currentPage?-1:1,n=Math.abs(currentPage-page),left=singleWidth*dir*visible*n;$wrapper.filter(':not(:animated)').animate({scrollLeft:'+='+left},500,function(){if(page==0){$wrapper.scrollLeft(singleWidth*visible*pages);page=pages;}else if(page>pages){$wrapper.scrollLeft(singleWidth*visible);page=1;}
currentPage=page;current_page=page;});if(page==1){$('.forward').css({'visibility':'visible'});$('.back').css({'visibility':'hidden'});}else if(page<pages){$('.forward').css({'visibility':'visible'});$('.back').css({'visibility':'visible'});}else if(page==pages){$('.forward').css({'visibility':'hidden'});$('.back').css({'visibility':'visible'});}
return false;}
$('.back a').click(function(){return gotoPage(currentPage-1);});$('.forward a').click(function(){return gotoPage(currentPage+1);});gotoPage(Math.floor(current_item/6)+1);$(this).bind('goto',function(event,page){gotoPage(page);});});};jQuery.fn.createPopup=function(options){var defaults={mode:'standard',title:'Popup',width:300,height:250,css_class:'normal'}
var options=$.extend(defaults,options);var items=this;this.each(function(){var number=items.index(this);$(this).click(function(){$('<div id="popup_overlay"></div><div id="popup_wrapper"><div id="popup_inner"><div id="popup_background"><div class="nw"></div><div class="n"></div><div class="ne"></div><div class="e"></div><div class="se"></div><div class="s"></div><div class="sw"></div><div class="w"></div></div><div id="popup_content"></div><div id="popup_close"><a href="#"><strong>Close</strong> <span></span></a></div></div></div>').appendTo('body');var popup=$('#popup_wrapper');var popup_overlay=$('#popup_overlay');var popup_content=$('#popup_content');var popup_close=$('#popup_close');$('<h2 class="sifr">'+options.title+'</h2>').appendTo(popup_content);Cufon.replace(popup_content.find('h2'));var popup_title=popup_content.find('h2');if(options.css_class){popup.addClass(options.css_class);}
if(options.mode=='gallery'){options.width=670;options.height=530;$('<span></span>').appendTo(popup_title);$('<div class="selected_media"><img id="center_image" /><div class="video"></div><ul class="prev_next_navigation"><li class="prev"><a href="#"></a></li><li class="next"><a href="#"></a></li></ul></div>').appendTo(popup_content);current_item=0;if(items.length>1){var thumbnails='<ul class="other_media_thumbnails">';$('<div class="other_media"><div class="scroller"></div></div>').appendTo(popup_content);items.each(function(){var thumbnail=$(this).find('img').attr('src');var big=$(this).attr('href');var video='';var icon='';if($(this).attr('href')=='#video'){video='<div class="video_icon">'+$(this).next('.video_icon').html()+'</div>';icon='<span class="media_gallery_video"></span>';}else{icon='<span class="media_gallery_image"></span>';}
if($(this).hasClass('large_image')){thumbnail=$(this).find('span img').attr('src');if(thumbnail.indexOf('pixel.gif')>0){var match=$(this).find('span img').attr('style').match(/src=['"|](.*?)['"|]/);if(match.length){thumbnail=match[1];}}}else{if(thumbnail.indexOf('pixel.gif')>0){var match=$(this).find('img').attr('style').match(/src=['"|](.*?)['"|]/);if(match.length){thumbnail=match[1];}}}
thumbnails+='<li><a href="'+big+'"><img src="'+thumbnail+'" />'+icon+''+video+'</a></li>';});thumbnails+='</ul>';$(thumbnails).appendTo('.scroller');$('.other_media, .prev_next_navigation').show();if(items.length>6){options.height+=120;popup.addClass('has_thumbnails has_thumbnails_navigation');$('<ul class="other_media_navigation"></ul>').appendTo(popup_content);}else{popup.addClass('has_thumbnails');options.height+=96;}
$('<div class="other_media_bg_sw"></div><div class="other_media_bg_s"></div><div class="other_media_bg_se"></div>').appendTo('#popup_background');}else{$('.other_media, .prev_next_navigation').hide();var link=$(this).attr('href');var video=$(this).find('.video_icon').html();if(link!='#video'){$('.selected_media .video').hide();$('.selected_media img#center_image').attr({src:link}).fadeIn();}else{$('.selected_media img').hide();$('.selected_media .video').html(video).show();offset=($('.selected_media').height()-$('.selected_media .video').height())/2+"px";$('.selected_media .video').css({"margin-top":offset});}}
$('.selected_media .prev, .selected_media .next').click(function(){if($(this).hasClass('prev')){if(current_item>0){current_item=current_item-1;}}else{if(current_item<(items.length-1)){current_item=current_item+1;}}
$('.other_media_thumbnails li:not(.cloned):eq('+current_item+') a').click();var new_page=Math.floor(current_item/6)+1;if(new_page<current_page){$('.other_media_navigation .back a').click();}else if(new_page>current_page){$('.other_media_navigation .forward a').click();}
$(this).find('a').blur();return false;});$('.other_media_thumbnails a').click(function(){current_item=$('.other_media_thumbnails li:not(.cloned) a').index(this);var link=$(this).attr('href');var video=$(this).find('.video_icon').html();if(link.indexOf('#video')==-1){$('.selected_media .video').hide();$('.selected_media img#center_image').attr({src:link}).fadeIn();}else{$('.selected_media img').hide();$('.selected_media .video').html(video).show();offset=($('.selected_media').height()-$('.selected_media .video').height())/2+"px";$('.selected_media .video').css({"margin-top":offset});$('embed').css({"visibility":"visible"});}
popup_title.find('span').text(' / '+(current_item+1)+' of '+items.length);Cufon.replace(popup_title.find('span'));$('.other_media_thumbnails li').removeClass('selected').find('.arrow').remove();$(this).parent().addClass('selected').append('<div class="arrow"></div>');if(current_item+1==items.length){$('.prev_next_navigation .next').hide();}else if(current_item==0){$('.prev_next_navigation .prev').hide();}else{$('.prev_next_navigation li').show();}
return false;});}else if(options.mode=='standard'){var content=$(this).attr('href');$(content).clone().appendTo(popup_content);}else if(options.mode=='products'){}else if(options.mode=='ajax'){popup_content.append('<div class="loading_overlay"><span class="loading_large"><span class="sifr"><img width="32" height="32" src="/_img/spinner_big.gif"/> Loading...</span></span></div>');popup_content.find('.loading_overlay').css({'line-height':(options.height-50)+'px'});setTimeout(function(){popup_content.load(options.url,function(){popup_content.find('.loading_overlay').hide();});},1500);}
if(typeof document.documentElement!='undefined'&&typeof document.documentElement.clientWidth!='undefined'&&document.documentElement.clientWidth!=0){$('embed, object, select').css('visibility','hidden');popup_overlay.css('height',$(document).height());}
popup.width(options.width+'px').height(options.height+'px').center();popup_overlay.css({'opacity':0.8}).show();popup.show();var IE6=false/*@cc_on || @_jscript_version < 5.7 @*/;if(IE6){$(window).scroll(function(){popup.center();});}
if(options.mode=='gallery'){$('.other_media_thumbnails li:eq('+number+') a').trigger('click');if(items.length>6){$('.other_media').infiniteCarousel();}}
popup_close.click(function(){popup_overlay.click();return false;});popup_overlay.click(function(){$(this).fadeOut('fast',function(){$(this).remove();});$('embed, object, select').css('visibility','visible');popup.remove();});document.onkeydown=function(e){if(e==null){keycode=event.keyCode;}else{keycode=e.which;}
if(keycode==27){popup_overlay.click();}else if(keycode==37){$('.selected_media .prev').click();}else if(keycode==39){$('.selected_media .next').click();}};return false;});})}
jQuery(function($){$('.media_gallery').createPopup({mode:'gallery',title:'Media Gallery'});});;var postcodePattern=/[A-Za-z]{1,2}\d[A-Za-z\d]? ?\d[A-Za-z]{2}/;var phonePattern=/^([ 0-9\(\)\.\+\-]{11,20})$/;var emailPattern=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i;$(document).ready(function(){$('.postcode_checker_form').each(function(){$(this).checkPostcode();if($.cookie('location')){$('.postcode',this).focus().val($.cookie('location')).addClass('blur').click();}});$(".stripeMe tr").mouseover(function(){$(this).addClass("over");}).mouseout(function(){$(this).removeClass("over");});$(".stripeMe tr:even").addClass("alt");$('.submit_select').change(function(){$(this).parents('form').submit()});});function str_replace(search,replace,subject){var result="";var prev_i=0;for(i=subject.indexOf(search);i>-1;i=subject.indexOf(search,i)){result+=subject.substring(prev_i,i);result+=replace;i+=search.length;prev_i=i;}
return result+subject.substring(prev_i,subject.length);}
function is_numeric(strString)
{var strValidChars="0123456789";var strChar;var blnResult=true;if(strString.length==0)return false;for(i=0;i<strString.length&&blnResult==true;i++)
{strChar=strString.charAt(i);if(strValidChars.indexOf(strChar)==-1)
{blnResult=false;}}
return blnResult;}
$.fn.checkPostcode=function(){if(!$(form).is('.disabled_exception')){$('button',form).addClass('disabled_button');}
var postcodePattern=/^([A-PR-UWYZ0-9][A-HK-Y0-9][AEHMNPRTVXY0-9]?[ABEHMNPRVWXY0-9]? {0,2}[0-9][ABD-HJLN-UW-Z]{2}|GIR 0AA)$/i;var form=$(this);var field=$('input.postcode',form);if(!$(field).hasClass('hint')){}
$(field).bind('keyup click change',function(){testValue(field.val());});$('label',form).before('<div class="error_alert_icn"></div>');function testValue(value){var valid=false;if(!postcodePattern.test(value)){field.removeClass('valid');if(!$(form).is('.disabled_exception')){$('.submit',form).addClass('disabled_button');}
if(value.length>=7){field.addClass('invalid');form.addClass('invalid');$(field).prev('label').prev('.error_alert_icn').show();}}
else{$('.submit',form).removeClass('disabled_button');$(field).removeClass('invalid').addClass('valid');$(form).removeClass('invalid');$(field).prev('label').prev('.error_alert_icn').hide();if(!$(form).is('.invalid')||!$('.submit',form).is('.disabled_button')){var options={path:'/',expires:10};$.cookie('location',value,options);}
valid=true;}
return valid;}
$(form).submit(function(){if(!testValue(field.val())){$(field).addClass('invalid');$(field).prev('label').prev('.error_alert_icn').show();return false;}});};jQuery.cookie=function(name,value,options){if(typeof value!='undefined'){options=options||{};if(value===null){value='';options.expires=-1;}
var expires='';if(options.expires&&(typeof options.expires=='number'||options.expires.toUTCString)){var date;if(typeof options.expires=='number'){date=new Date();date.setTime(date.getTime()+(options.expires*24*60*60*1000));}else{date=options.expires;}
expires='; expires='+date.toUTCString();}
var path=options.path?'; path='+(options.path):'';var domain=options.domain?'; domain='+(options.domain):'';var secure=options.secure?'; secure':'';document.cookie=[name,'=',encodeURIComponent(value),expires,path,domain,secure].join('');}else{var cookieValue=null;if(document.cookie&&document.cookie!=''){var cookies=document.cookie.split(';');for(var i=0;i<cookies.length;i++){var cookie=jQuery.trim(cookies[i]);if(cookie.substring(0,name.length+1)==(name+'=')){cookieValue=decodeURIComponent(cookie.substring(name.length+1));break;}}}
return cookieValue;}};