


/*
 * Metadata - jQuery plugin for parsing metadata from elements
 *
 * Copyright (c) 2006 John Resig, Yehuda Katz, Jï¿½Ã¶rn Zaefferer, Paul McLanahan
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 *
 * Revision: $Id: jquery.metadata.js 4187 2007-12-16 17:15:27Z joern.zaefferer $
 *
 */

/**
 * Sets the type of metadata to use. Metadata is encoded in JSON, and each property
 * in the JSON will become a property of the element itself.
 *
 * There are three supported types of metadata storage:
 *
 *   attr:  Inside an attribute. The name parameter indicates *which* attribute.
 *          
 *   class: Inside the class attribute, wrapped in curly braces: { }
 *   
 *   elem:  Inside a child element (e.g. a script tag). The
 *          name parameter indicates *which* element.
 *          
 * The metadata for an element is loaded the first time the element is accessed via jQuery.
 *
 * As a result, you can define the metadata type, use $(expr) to load the metadata into the elements
 * matched by expr, then redefine the metadata type and run another $(expr) for other elements.
 * 
 * @name $.metadata.setType
 *
 * @example <p id="one" class="some_class {item_id: 1, item_label: 'Label'}">This is a p</p>
 * @before $.metadata.setType("class")
 * @after $("#one").metadata().item_id == 1; $("#one").metadata().item_label == "Label"
 * @desc Reads metadata from the class attribute
 * 
 * @example <p id="one" class="some_class" data="{item_id: 1, item_label: 'Label'}">This is a p</p>
 * @before $.metadata.setType("attr", "data")
 * @after $("#one").metadata().item_id == 1; $("#one").metadata().item_label == "Label"
 * @desc Reads metadata from a "data" attribute
 * 
 * @example <p id="one" class="some_class"><script>{item_id: 1, item_label: 'Label'}</script>This is a p</p>
 * @before $.metadata.setType("elem", "script")
 * @after $("#one").metadata().item_id == 1; $("#one").metadata().item_label == "Label"
 * @desc Reads metadata from a nested script element
 * 
 * @param String type The encoding type
 * @param String name The name of the attribute to be used to get metadata (optional)
 * @cat Plugins/Metadata
 * @descr Sets the type of encoding to be used when loading metadata for the first time
 * @type undefined
 * @see metadata()
 */

(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);
			// check for empty string in single property
			if ( !settings.single.length ) settings.single = 'metadata';
			
			var data = $.data(elem, settings.single);
			// returned cached data if it already exists
			if ( data ) return data;
			
			data = "{}";
			
			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 undefined;
				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;
			}
			
			if ( data.indexOf( '{' ) <0 )
			data = "{" + data + "}";
			
			data = eval("(" + data + ")");
			
			$.data( elem, settings.single, data );
			return data;
		}
	}
});

/**
 * Returns the metadata object for the first member of the jQuery object.
 *
 * @name metadata
 * @descr Returns element's metadata object
 * @param Object opts An object contianing settings to override the defaults
 * @type jQuery
 * @cat Plugins/Metadata
 */
$.fn.metadata = function( opts ){
	return $.metadata.get( this[0], opts );
};

})(jQuery);


/*!
 * jQuery UI 1.8
 *
 * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI
 */
/*
 * jQuery UI 1.8
 *
 * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI
 */
jQuery.ui||(function(a){a.ui={version:"1.8",plugin:{add:function(c,d,f){var e=a.ui[c].prototype;for(var b in f){e.plugins[b]=e.plugins[b]||[];e.plugins[b].push([d,f[b]])}},call:function(b,d,c){var f=b.plugins[d];if(!f||!b.element[0].parentNode){return}for(var e=0;e<f.length;e++){if(b.options[f[e][0]]){f[e][1].apply(b.element,c)}}}},contains:function(d,c){return document.compareDocumentPosition?d.compareDocumentPosition(c)&16:d!==c&&d.contains(c)},hasScroll:function(e,c){if(a(e).css("overflow")=="hidden"){return false}var b=(c&&c=="left")?"scrollLeft":"scrollTop",d=false;if(e[b]>0){return true}e[b]=1;d=(e[b]>0);e[b]=0;return d},isOverAxis:function(c,b,d){return(c>b)&&(c<(b+d))},isOver:function(g,c,f,e,b,d){return a.ui.isOverAxis(g,f,b)&&a.ui.isOverAxis(c,e,d)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};a.fn.extend({_focus:a.fn.focus,focus:function(b,c){return typeof b==="number"?this.each(function(){var d=this;setTimeout(function(){a(d).focus();(c&&c.call(d))},b)}):this._focus.apply(this,arguments)},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var b;if((a.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){b=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(a.curCSS(this,"position",1))&&(/(auto|scroll)/).test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0)}else{b=this.parents().filter(function(){return(/(auto|scroll)/).test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!b.length?a(document):b},zIndex:function(e){if(e!==undefined){return this.css("zIndex",e)}if(this.length){var c=a(this[0]),b,d;while(c.length&&c[0]!==document){b=c.css("position");if(b=="absolute"||b=="relative"||b=="fixed"){d=parseInt(c.css("zIndex"));if(!isNaN(d)&&d!=0){return d}}c=c.parent()}}return 0}});a.extend(a.expr[":"],{data:function(d,c,b){return !!a.data(d,b[3])},focusable:function(c){var d=c.nodeName.toLowerCase(),b=a.attr(c,"tabindex");return(/input|select|textarea|button|object/.test(d)?!c.disabled:"a"==d||"area"==d?c.href||!isNaN(b):!isNaN(b))&&!a(c)["area"==d?"parents":"closest"](":hidden").length},tabbable:function(c){var b=a.attr(c,"tabindex");return(isNaN(b)||b>=0)&&a(c).is(":focusable")}})})(jQuery);;/*!
 * jQuery UI Widget 1.8
 *
 * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Widget
 */
/*
 * jQuery UI Widget 1.8
 *
 * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Widget
 */
(function(b){var a=b.fn.remove;b.fn.remove=function(c,d){return this.each(function(){if(!d){if(!c||b.filter(c,[this]).length){b("*",this).add(this).each(function(){b(this).triggerHandler("remove")})}}return a.call(b(this),c,d)})};b.widget=function(d,f,c){var e=d.split(".")[0],h;d=d.split(".")[1];h=e+"-"+d;if(!c){c=f;f=b.Widget}b.expr[":"][h]=function(i){return !!b.data(i,d)};b[e]=b[e]||{};b[e][d]=function(i,j){if(arguments.length){this._createWidget(i,j)}};var g=new f();g.options=b.extend({},g.options);b[e][d].prototype=b.extend(true,g,{namespace:e,widgetName:d,widgetEventPrefix:b[e][d].prototype.widgetEventPrefix||d,widgetBaseClass:h},c);b.widget.bridge(d,b[e][d])};b.widget.bridge=function(d,c){b.fn[d]=function(g){var e=typeof g==="string",f=Array.prototype.slice.call(arguments,1),h=this;g=!e&&f.length?b.extend.apply(null,[true,g].concat(f)):g;if(e&&g.substring(0,1)==="_"){return h}if(e){this.each(function(){var i=b.data(this,d),j=i&&b.isFunction(i[g])?i[g].apply(i,f):i;if(j!==i&&j!==undefined){h=j;return false}})}else{this.each(function(){var i=b.data(this,d);if(i){if(g){i.option(g)}i._init()}else{b.data(this,d,new c(g,this))}})}return h}};b.Widget=function(c,d){if(arguments.length){this._createWidget(c,d)}};b.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:false},_createWidget:function(d,e){this.element=b(e).data(this.widgetName,this);this.options=b.extend(true,{},this.options,b.metadata&&b.metadata.get(e)[this.widgetName],d);var c=this;this.element.bind("remove."+this.widgetName,function(){c.destroy()});this._create();this._init()},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled")},widget:function(){return this.element},option:function(e,f){var d=e,c=this;if(arguments.length===0){return b.extend({},c.options)}if(typeof e==="string"){if(f===undefined){return this.options[e]}d={};d[e]=f}b.each(d,function(g,h){c._setOption(g,h)});return c},_setOption:function(c,d){this.options[c]=d;if(c==="disabled"){this.widget()[d?"addClass":"removeClass"](this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").attr("aria-disabled",d)}return this},enable:function(){return this._setOption("disabled",false)},disable:function(){return this._setOption("disabled",true)},_trigger:function(d,e,f){var h=this.options[d];e=b.Event(e);e.type=(d===this.widgetEventPrefix?d:this.widgetEventPrefix+d).toLowerCase();f=f||{};if(e.originalEvent){for(var c=b.event.props.length,g;c;){g=b.event.props[--c];e[g]=e.originalEvent[g]}}this.element.trigger(e,f);return !(b.isFunction(h)&&h.call(this.element[0],e,f)===false||e.isDefaultPrevented())}}})(jQuery);;/*!
 * jQuery UI Mouse 1.8
 *
 * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Mouse
 *
 * Depends:
 *	jquery.ui.widget.js
 */
/*
 * jQuery UI Mouse 1.8
 *
 * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Mouse
 *
 * Depends:
 *	jquery.ui.widget.js
 */
(function(a){a.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var b=this;this.element.bind("mousedown."+this.widgetName,function(c){return b._mouseDown(c)}).bind("click."+this.widgetName,function(c){if(b._preventClickEvent){b._preventClickEvent=false;c.stopImmediatePropagation();return false}});this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName)},_mouseDown:function(d){d.originalEvent=d.originalEvent||{};if(d.originalEvent.mouseHandled){return}(this._mouseStarted&&this._mouseUp(d));this._mouseDownEvent=d;var c=this,e=(d.which==1),b=(typeof this.options.cancel=="string"?a(d.target).parents().add(d.target).filter(this.options.cancel).length:false);if(!e||b||!this._mouseCapture(d)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){c.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(d)&&this._mouseDelayMet(d)){this._mouseStarted=(this._mouseStart(d)!==false);if(!this._mouseStarted){d.preventDefault();return true}}this._mouseMoveDelegate=function(f){return c._mouseMove(f)};this._mouseUpDelegate=function(f){return c._mouseUp(f)};a(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);(a.browser.safari||d.preventDefault());d.originalEvent.mouseHandled=true;return true},_mouseMove:function(b){if(a.browser.msie&&!b.button){return this._mouseUp(b)}if(this._mouseStarted){this._mouseDrag(b);return b.preventDefault()}if(this._mouseDistanceMet(b)&&this._mouseDelayMet(b)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,b)!==false);(this._mouseStarted?this._mouseDrag(b):this._mouseUp(b))}return !this._mouseStarted},_mouseUp:function(b){a(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(b.target==this._mouseDownEvent.target);this._mouseStop(b)}return false},_mouseDistanceMet:function(b){return(Math.max(Math.abs(this._mouseDownEvent.pageX-b.pageX),Math.abs(this._mouseDownEvent.pageY-b.pageY))>=this.options.distance)},_mouseDelayMet:function(b){return this.mouseDelayMet},_mouseStart:function(b){},_mouseDrag:function(b){},_mouseStop:function(b){},_mouseCapture:function(b){return true}})})(jQuery);;/*
 * jQuery UI Accordion 1.8
 *
 * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Accordion
 *
 * Depends:
 *	jquery.ui.core.js
 *	jquery.ui.widget.js
 */
(function(a){a.widget("ui.accordion",{options:{active:0,animated:"slide",autoHeight:true,clearStyle:false,collapsible:false,event:"click",fillSpace:false,header:"> li > :first-child,> :not(li):even",icons:{header:"ui-icon-triangle-1-e",headerSelected:"ui-icon-triangle-1-s"},navigation:false,navigationFilter:function(){return this.href.toLowerCase()==location.href.toLowerCase()}},_create:function(){var d=this.options,b=this;this.running=0;this.element.addClass("ui-accordion ui-widget ui-helper-reset");if(this.element[0].nodeName=="UL"){this.element.children("li").addClass("ui-accordion-li-fix")}this.headers=this.element.find(d.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all").bind("mouseenter.accordion",function(){a(this).addClass("ui-state-hover")}).bind("mouseleave.accordion",function(){a(this).removeClass("ui-state-hover")}).bind("focus.accordion",function(){a(this).addClass("ui-state-focus")}).bind("blur.accordion",function(){a(this).removeClass("ui-state-focus")});this.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom");if(d.navigation){var c=this.element.find("a").filter(d.navigationFilter);if(c.length){var e=c.closest(".ui-accordion-header");if(e.length){this.active=e}else{this.active=c.closest(".ui-accordion-content").prev()}}}this.active=this._findActive(this.active||d.active).toggleClass("ui-state-default").toggleClass("ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top");this.active.next().addClass("ui-accordion-content-active");this._createIcons();if(a.browser.msie){this.element.find("a").css("zoom","1")}this.resize();this.element.attr("role","tablist");this.headers.attr("role","tab").bind("keydown",function(f){return b._keydown(f)}).next().attr("role","tabpanel");this.headers.not(this.active||"").attr("aria-expanded","false").attr("tabIndex","-1").next().hide();if(!this.active.length){this.headers.eq(0).attr("tabIndex","0")}else{this.active.attr("aria-expanded","true").attr("tabIndex","0")}if(!a.browser.safari){this.headers.find("a").attr("tabIndex","-1")}if(d.event){this.headers.bind((d.event)+".accordion",function(f){b._clickHandler.call(b,f,this);f.preventDefault()})}},_createIcons:function(){var b=this.options;if(b.icons){a("<span/>").addClass("ui-icon "+b.icons.header).prependTo(this.headers);this.active.find(".ui-icon").toggleClass(b.icons.header).toggleClass(b.icons.headerSelected);this.element.addClass("ui-accordion-icons")}},_destroyIcons:function(){this.headers.children(".ui-icon").remove();this.element.removeClass("ui-accordion-icons")},destroy:function(){var c=this.options;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role").unbind(".accordion").removeData("accordion");this.headers.unbind(".accordion").removeClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr("tabindex");this.headers.find("a").removeAttr("tabindex");this._destroyIcons();var b=this.headers.next().css("display","").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active");if(c.autoHeight||c.fillHeight){b.css("height","")}return this},_setOption:function(b,c){a.Widget.prototype._setOption.apply(this,arguments);if(b=="active"){this.activate(c)}if(b=="icons"){this._destroyIcons();if(c){this._createIcons()}}},_keydown:function(e){var g=this.options,f=a.ui.keyCode;if(g.disabled||e.altKey||e.ctrlKey){return}var d=this.headers.length;var b=this.headers.index(e.target);var c=false;switch(e.keyCode){case f.RIGHT:case f.DOWN:c=this.headers[(b+1)%d];break;case f.LEFT:case f.UP:c=this.headers[(b-1+d)%d];break;case f.SPACE:case f.ENTER:this._clickHandler({target:e.target},e.target);e.preventDefault()}if(c){a(e.target).attr("tabIndex","-1");a(c).attr("tabIndex","0");c.focus();return false}return true},resize:function(){var d=this.options,c;if(d.fillSpace){if(a.browser.msie){var b=this.element.parent().css("overflow");this.element.parent().css("overflow","hidden")}c=this.element.parent().height();if(a.browser.msie){this.element.parent().css("overflow",b)}this.headers.each(function(){c-=a(this).outerHeight(true)});this.headers.next().each(function(){a(this).height(Math.max(0,c-a(this).innerHeight()+a(this).height()))}).css("overflow","auto")}else{if(d.autoHeight){c=0;this.headers.next().each(function(){c=Math.max(c,a(this).height())}).height(c)}}return this},activate:function(b){this.options.active=b;var c=this._findActive(b)[0];this._clickHandler({target:c},c);return this},_findActive:function(b){return b?typeof b=="number"?this.headers.filter(":eq("+b+")"):this.headers.not(this.headers.not(b)):b===false?a([]):this.headers.filter(":eq(0)")},_clickHandler:function(b,f){var d=this.options;if(d.disabled){return}if(!b.target){if(!d.collapsible){return}this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").find(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);this.active.next().addClass("ui-accordion-content-active");var h=this.active.next(),e={options:d,newHeader:a([]),oldHeader:d.active,newContent:a([]),oldContent:h},c=(this.active=a([]));this._toggle(c,h,e);return}var g=a(b.currentTarget||f);var i=g[0]==this.active[0];d.active=d.collapsible&&i?false:a(".ui-accordion-header",this.element).index(g);if(this.running||(!d.collapsible&&i)){return}this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").find(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);if(!i){g.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top").find(".ui-icon").removeClass(d.icons.header).addClass(d.icons.headerSelected);g.next().addClass("ui-accordion-content-active")}var c=g.next(),h=this.active.next(),e={options:d,newHeader:i&&d.collapsible?a([]):g,oldHeader:this.active,newContent:i&&d.collapsible?a([]):c,oldContent:h},j=this.headers.index(this.active[0])>this.headers.index(g[0]);this.active=i?a([]):g;this._toggle(c,h,e,i,j);return},_toggle:function(b,i,g,j,k){var d=this.options,m=this;this.toShow=b;this.toHide=i;this.data=g;var c=function(){if(!m){return}return m._completed.apply(m,arguments)};this._trigger("changestart",null,this.data);this.running=i.size()===0?b.size():i.size();if(d.animated){var f={};if(d.collapsible&&j){f={toShow:a([]),toHide:i,complete:c,down:k,autoHeight:d.autoHeight||d.fillSpace}}else{f={toShow:b,toHide:i,complete:c,down:k,autoHeight:d.autoHeight||d.fillSpace}}if(!d.proxied){d.proxied=d.animated}if(!d.proxiedDuration){d.proxiedDuration=d.duration}d.animated=a.isFunction(d.proxied)?d.proxied(f):d.proxied;d.duration=a.isFunction(d.proxiedDuration)?d.proxiedDuration(f):d.proxiedDuration;var l=a.ui.accordion.animations,e=d.duration,h=d.animated;if(h&&!l[h]&&!a.easing[h]){h="slide"}if(!l[h]){l[h]=function(n){this.slide(n,{easing:h,duration:e||700})}}l[h](f)}else{if(d.collapsible&&j){b.toggle()}else{i.hide();b.show()}c(true)}i.prev().attr("aria-expanded","false").attr("tabIndex","-1").blur();b.prev().attr("aria-expanded","true").attr("tabIndex","0").focus()},_completed:function(b){var c=this.options;this.running=b?0:--this.running;if(this.running){return}if(c.clearStyle){this.toShow.add(this.toHide).css({height:"",overflow:""})}this.toHide.removeClass("ui-accordion-content-active");this._trigger("change",null,this.data)}});a.extend(a.ui.accordion,{version:"1.8",animations:{slide:function(j,h){j=a.extend({easing:"swing",duration:300},j,h);if(!j.toHide.size()){j.toShow.animate({height:"show"},j);return}if(!j.toShow.size()){j.toHide.animate({height:"hide"},j);return}var c=j.toShow.css("overflow"),g=0,d={},f={},e=["height","paddingTop","paddingBottom"],b;var i=j.toShow;b=i[0].style.width;i.width(parseInt(i.parent().width(),10)-parseInt(i.css("paddingLeft"),10)-parseInt(i.css("paddingRight"),10)-(parseInt(i.css("borderLeftWidth"),10)||0)-(parseInt(i.css("borderRightWidth"),10)||0));a.each(e,function(k,m){f[m]="hide";var l=(""+a.css(j.toShow[0],m)).match(/^([\d+-.]+)(.*)$/);d[m]={value:l[1],unit:l[2]||"px"}});j.toShow.css({height:0,overflow:"hidden"}).show();j.toHide.filter(":hidden").each(j.complete).end().filter(":visible").animate(f,{step:function(k,l){if(l.prop=="height"){g=(l.end-l.start===0)?0:(l.now-l.start)/(l.end-l.start)}j.toShow[0].style[l.prop]=(g*d[l.prop].value)+d[l.prop].unit},duration:j.duration,easing:j.easing,complete:function(){if(!j.autoHeight){j.toShow.css("height","")}j.toShow.css("width",b);j.toShow.css({overflow:c});j.complete()}})},bounceslide:function(b){this.slide(b,{easing:b.down?"easeOutBounce":"swing",duration:b.down?1000:200})}}})})(jQuery);;/*
 * jQuery UI Slider 1.8
 *
 * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Slider
 *
 * Depends:
 *	jquery.ui.core.js
 *	jquery.ui.mouse.js
 *	jquery.ui.widget.js
 */
(function(b){var a=5;b.widget("ui.slider",b.ui.mouse,{widgetEventPrefix:"slide",options:{animate:false,distance:0,max:100,min:0,orientation:"horizontal",range:false,step:1,value:0,values:null},_create:function(){var c=this,d=this.options;this._keySliding=false;this._mouseSliding=false;this._animateOff=true;this._handleIndex=null;this._detectOrientation();this._mouseInit();this.element.addClass("ui-slider ui-slider-"+this.orientation+" ui-widget ui-widget-content ui-corner-all");if(d.disabled){this.element.addClass("ui-slider-disabled ui-disabled")}this.range=b([]);if(d.range){if(d.range===true){this.range=b("<div></div>");if(!d.values){d.values=[this._valueMin(),this._valueMin()]}if(d.values.length&&d.values.length!=2){d.values=[d.values[0],d.values[0]]}}else{this.range=b("<div></div>")}this.range.appendTo(this.element).addClass("ui-slider-range");if(d.range=="min"||d.range=="max"){this.range.addClass("ui-slider-range-"+d.range)}this.range.addClass("ui-widget-header")}if(b(".ui-slider-handle",this.element).length==0){b('<a href="#"></a>').appendTo(this.element).addClass("ui-slider-handle")}if(d.values&&d.values.length){while(b(".ui-slider-handle",this.element).length<d.values.length){b('<a href="#"></a>').appendTo(this.element).addClass("ui-slider-handle")}}this.handles=b(".ui-slider-handle",this.element).addClass("ui-state-default ui-corner-all");this.handle=this.handles.eq(0);this.handles.add(this.range).filter("a").click(function(e){e.preventDefault()}).hover(function(){if(!d.disabled){b(this).addClass("ui-state-hover")}},function(){b(this).removeClass("ui-state-hover")}).focus(function(){if(!d.disabled){b(".ui-slider .ui-state-focus").removeClass("ui-state-focus");b(this).addClass("ui-state-focus")}else{b(this).blur()}}).blur(function(){b(this).removeClass("ui-state-focus")});this.handles.each(function(e){b(this).data("index.ui-slider-handle",e)});this.handles.keydown(function(j){var g=true;var f=b(this).data("index.ui-slider-handle");if(c.options.disabled){return}switch(j.keyCode){case b.ui.keyCode.HOME:case b.ui.keyCode.END:case b.ui.keyCode.PAGE_UP:case b.ui.keyCode.PAGE_DOWN:case b.ui.keyCode.UP:case b.ui.keyCode.RIGHT:case b.ui.keyCode.DOWN:case b.ui.keyCode.LEFT:g=false;if(!c._keySliding){c._keySliding=true;b(this).addClass("ui-state-active");c._start(j,f)}break}var h,e,i=c._step();if(c.options.values&&c.options.values.length){h=e=c.values(f)}else{h=e=c.value()}switch(j.keyCode){case b.ui.keyCode.HOME:e=c._valueMin();break;case b.ui.keyCode.END:e=c._valueMax();break;case b.ui.keyCode.PAGE_UP:e=h+((c._valueMax()-c._valueMin())/a);break;case b.ui.keyCode.PAGE_DOWN:e=h-((c._valueMax()-c._valueMin())/a);break;case b.ui.keyCode.UP:case b.ui.keyCode.RIGHT:if(h==c._valueMax()){return}e=h+i;break;case b.ui.keyCode.DOWN:case b.ui.keyCode.LEFT:if(h==c._valueMin()){return}e=h-i;break}c._slide(j,f,e);return g}).keyup(function(f){var e=b(this).data("index.ui-slider-handle");if(c._keySliding){c._keySliding=false;c._stop(f,e);c._change(f,e);b(this).removeClass("ui-state-active")}});this._refreshValue();this._animateOff=false},destroy:function(){this.handles.remove();this.range.remove();this.element.removeClass("ui-slider ui-slider-horizontal ui-slider-vertical ui-slider-disabled ui-widget ui-widget-content ui-corner-all").removeData("slider").unbind(".slider");this._mouseDestroy();return this},_mouseCapture:function(e){var f=this.options;if(f.disabled){return false}this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()};this.elementOffset=this.element.offset();var i={x:e.pageX,y:e.pageY};var k=this._normValueFromMouse(i);var d=this._valueMax()-this._valueMin()+1,g;var l=this,j;this.handles.each(function(m){var n=Math.abs(k-l.values(m));if(d>n){d=n;g=b(this);j=m}});if(f.range==true&&this.values(1)==f.min){g=b(this.handles[++j])}this._start(e,j);this._mouseSliding=true;l._handleIndex=j;g.addClass("ui-state-active").focus();var h=g.offset();var c=!b(e.target).parents().andSelf().is(".ui-slider-handle");this._clickOffset=c?{left:0,top:0}:{left:e.pageX-h.left-(g.width()/2),top:e.pageY-h.top-(g.height()/2)-(parseInt(g.css("borderTopWidth"),10)||0)-(parseInt(g.css("borderBottomWidth"),10)||0)+(parseInt(g.css("marginTop"),10)||0)};k=this._normValueFromMouse(i);this._slide(e,j,k);this._animateOff=true;return true},_mouseStart:function(c){return true},_mouseDrag:function(e){var c={x:e.pageX,y:e.pageY};var d=this._normValueFromMouse(c);this._slide(e,this._handleIndex,d);return false},_mouseStop:function(c){this.handles.removeClass("ui-state-active");this._mouseSliding=false;this._stop(c,this._handleIndex);this._change(c,this._handleIndex);this._handleIndex=null;this._clickOffset=null;this._animateOff=false;return false},_detectOrientation:function(){this.orientation=this.options.orientation=="vertical"?"vertical":"horizontal"},_normValueFromMouse:function(e){var d,i;if("horizontal"==this.orientation){d=this.elementSize.width;i=e.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)}else{d=this.elementSize.height;i=e.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)}var g=(i/d);if(g>1){g=1}if(g<0){g=0}if("vertical"==this.orientation){g=1-g}var f=this._valueMax()-this._valueMin(),j=g*f,c=j%this.options.step,h=this._valueMin()+j-c;if(c>(this.options.step/2)){h+=this.options.step}return parseFloat(h.toFixed(5))},_start:function(e,d){var c={handle:this.handles[d],value:this.value()};if(this.options.values&&this.options.values.length){c.value=this.values(d);c.values=this.values()}this._trigger("start",e,c)},_slide:function(g,f,e){var h=this.handles[f];if(this.options.values&&this.options.values.length){var c=this.values(f?0:1);if((this.options.values.length==2&&this.options.range===true)&&((f==0&&e>c)||(f==1&&e<c))){e=c}if(e!=this.values(f)){var d=this.values();d[f]=e;var i=this._trigger("slide",g,{handle:this.handles[f],value:e,values:d});var c=this.values(f?0:1);if(i!==false){this.values(f,e,true)}}}else{if(e!=this.value()){var i=this._trigger("slide",g,{handle:this.handles[f],value:e});if(i!==false){this.value(e)}}}},_stop:function(e,d){var c={handle:this.handles[d],value:this.value()};if(this.options.values&&this.options.values.length){c.value=this.values(d);c.values=this.values()}this._trigger("stop",e,c)},_change:function(e,d){if(!this._keySliding&&!this._mouseSliding){var c={handle:this.handles[d],value:this.value()};if(this.options.values&&this.options.values.length){c.value=this.values(d);c.values=this.values()}this._trigger("change",e,c)}},value:function(c){if(arguments.length){this.options.value=this._trimValue(c);this._refreshValue();this._change(null,0)}return this._value()},values:function(e,h){if(arguments.length>1){this.options.values[e]=this._trimValue(h);this._refreshValue();this._change(null,e)}if(arguments.length){if(b.isArray(arguments[0])){var g=this.options.values,d=arguments[0];for(var f=0,c=g.length;f<c;f++){g[f]=this._trimValue(d[f]);this._change(null,f)}this._refreshValue()}else{if(this.options.values&&this.options.values.length){return this._values(e)}else{return this.value()}}}else{return this._values()}},_setOption:function(d,e){var c,f=0;if(jQuery.isArray(this.options.values)){f=this.options.values.length}b.Widget.prototype._setOption.apply(this,arguments);switch(d){case"disabled":if(e){this.handles.filter(".ui-state-focus").blur();this.handles.removeClass("ui-state-hover");this.handles.attr("disabled","disabled");this.element.addClass("ui-disabled")}else{this.handles.removeAttr("disabled");this.element.removeClass("ui-disabled")}case"orientation":this._detectOrientation();this.element.removeClass("ui-slider-horizontal ui-slider-vertical").addClass("ui-slider-"+this.orientation);this._refreshValue();break;case"value":this._animateOff=true;this._refreshValue();this._change(null,0);this._animateOff=false;break;case"values":this._animateOff=true;this._refreshValue();for(c=0;c<f;c++){this._change(null,c)}this._animateOff=false;break}},_step:function(){var c=this.options.step;return c},_value:function(){var c=this.options.value;c=this._trimValue(c);return c},_values:function(d){if(arguments.length){var g=this.options.values[d];g=this._trimValue(g);return g}else{var f=this.options.values.slice();for(var e=0,c=f.length;e<c;e++){f[e]=this._trimValue(f[e])}return f}},_trimValue:function(c){if(c<this._valueMin()){c=this._valueMin()}if(c>this._valueMax()){c=this._valueMax()}return c},_valueMin:function(){var c=this.options.min;return c},_valueMax:function(){var c=this.options.max;return c},_refreshValue:function(){var g=this.options.range,e=this.options,m=this;var d=(!this._animateOff)?e.animate:false;if(this.options.values&&this.options.values.length){var j,i;this.handles.each(function(q,o){var p=(m.values(q)-m._valueMin())/(m._valueMax()-m._valueMin())*100;var n={};n[m.orientation=="horizontal"?"left":"bottom"]=p+"%";b(this).stop(1,1)[d?"animate":"css"](n,e.animate);if(m.options.range===true){if(m.orientation=="horizontal"){(q==0)&&m.range.stop(1,1)[d?"animate":"css"]({left:p+"%"},e.animate);(q==1)&&m.range[d?"animate":"css"]({width:(p-lastValPercent)+"%"},{queue:false,duration:e.animate})}else{(q==0)&&m.range.stop(1,1)[d?"animate":"css"]({bottom:(p)+"%"},e.animate);(q==1)&&m.range[d?"animate":"css"]({height:(p-lastValPercent)+"%"},{queue:false,duration:e.animate})}}lastValPercent=p})}else{var k=this.value(),h=this._valueMin(),l=this._valueMax(),f=l!=h?(k-h)/(l-h)*100:0;var c={};c[m.orientation=="horizontal"?"left":"bottom"]=f+"%";this.handle.stop(1,1)[d?"animate":"css"](c,e.animate);(g=="min")&&(this.orientation=="horizontal")&&this.range.stop(1,1)[d?"animate":"css"]({width:f+"%"},e.animate);(g=="max")&&(this.orientation=="horizontal")&&this.range[d?"animate":"css"]({width:(100-f)+"%"},{queue:false,duration:e.animate});(g=="min")&&(this.orientation=="vertical")&&this.range.stop(1,1)[d?"animate":"css"]({height:f+"%"},e.animate);(g=="max")&&(this.orientation=="vertical")&&this.range[d?"animate":"css"]({height:(100-f)+"%"},{queue:false,duration:e.animate})}}});b.extend(b.ui.slider,{version:"1.8"})})(jQuery);/*
 * jQuery UI Tabs 1.8
 *
 * Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Tabs
 *
 * Depends:
 *	jquery.ui.core.js
 *	jquery.ui.widget.js
 */
(function(c){var b=0,a=0;c.widget("ui.tabs",{options:{add:null,ajaxOptions:null,cache:false,cookie:null,collapsible:false,disable:null,disabled:[],enable:null,event:"click",fx:null,idPrefix:"ui-tabs-",load:null,panelTemplate:"<div></div>",remove:null,select:null,show:null,spinner:"<em>Loading&#8230;</em>",tabTemplate:'<li><a href="#{href}"><span>#{label}</span></a></li>'},_create:function(){this._tabify(true)},_setOption:function(d,e){if(d=="selected"){if(this.options.collapsible&&e==this.options.selected){return}this.select(e)}else{this.options[d]=e;this._tabify()}},_tabId:function(d){return d.title&&d.title.replace(/\s/g,"_").replace(/[^A-Za-z0-9\-_:\.]/g,"")||this.options.idPrefix+(++b)},_sanitizeSelector:function(d){return d.replace(/:/g,"\\:")},_cookie:function(){var d=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+(++a));return c.cookie.apply(null,[d].concat(c.makeArray(arguments)))},_ui:function(e,d){return{tab:e,panel:d,index:this.anchors.index(e)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var d=c(this);d.html(d.data("label.tabs")).removeData("label.tabs")})},_tabify:function(q){this.list=this.element.find("ol,ul").eq(0);this.lis=c("li:has(a[href])",this.list);this.anchors=this.lis.map(function(){return c("a",this)[0]});this.panels=c([]);var r=this,f=this.options;var e=/^#.+/;this.anchors.each(function(u,o){var s=c(o).attr("href");var v=s.split("#")[0],w;if(v&&(v===location.toString().split("#")[0]||(w=c("base")[0])&&v===w.href)){s=o.hash;o.href=s}if(e.test(s)){r.panels=r.panels.add(r._sanitizeSelector(s))}else{if(s!="#"){c.data(o,"href.tabs",s);c.data(o,"load.tabs",s.replace(/#.*$/,""));var y=r._tabId(o);o.href="#"+y;var x=c("#"+y);if(!x.length){x=c(f.panelTemplate).attr("id",y).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(r.panels[u-1]||r.list);x.data("destroy.tabs",true)}r.panels=r.panels.add(x)}else{f.disabled.push(u)}}});if(q){this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all");this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.lis.addClass("ui-state-default ui-corner-top");this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom");if(f.selected===undefined){if(location.hash){this.anchors.each(function(s,o){if(o.hash==location.hash){f.selected=s;return false}})}if(typeof f.selected!="number"&&f.cookie){f.selected=parseInt(r._cookie(),10)}if(typeof f.selected!="number"&&this.lis.filter(".ui-tabs-selected").length){f.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))}f.selected=f.selected||(this.lis.length?0:-1)}else{if(f.selected===null){f.selected=-1}}f.selected=((f.selected>=0&&this.anchors[f.selected])||f.selected<0)?f.selected:0;f.disabled=c.unique(f.disabled.concat(c.map(this.lis.filter(".ui-state-disabled"),function(s,o){return r.lis.index(s)}))).sort();if(c.inArray(f.selected,f.disabled)!=-1){f.disabled.splice(c.inArray(f.selected,f.disabled),1)}this.panels.addClass("ui-tabs-hide");this.lis.removeClass("ui-tabs-selected ui-state-active");if(f.selected>=0&&this.anchors.length){this.panels.eq(f.selected).removeClass("ui-tabs-hide");this.lis.eq(f.selected).addClass("ui-tabs-selected ui-state-active");r.element.queue("tabs",function(){r._trigger("show",null,r._ui(r.anchors[f.selected],r.panels[f.selected]))});this.load(f.selected)}c(window).bind("unload",function(){r.lis.add(r.anchors).unbind(".tabs");r.lis=r.anchors=r.panels=null})}else{f.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))}this.element[f.collapsible?"addClass":"removeClass"]("ui-tabs-collapsible");if(f.cookie){this._cookie(f.selected,f.cookie)}for(var j=0,p;(p=this.lis[j]);j++){c(p)[c.inArray(j,f.disabled)!=-1&&!c(p).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled")}if(f.cache===false){this.anchors.removeData("cache.tabs")}this.lis.add(this.anchors).unbind(".tabs");if(f.event!="mouseover"){var h=function(o,i){if(i.is(":not(.ui-state-disabled)")){i.addClass("ui-state-"+o)}};var l=function(o,i){i.removeClass("ui-state-"+o)};this.lis.bind("mouseover.tabs",function(){h("hover",c(this))});this.lis.bind("mouseout.tabs",function(){l("hover",c(this))});this.anchors.bind("focus.tabs",function(){h("focus",c(this).closest("li"))});this.anchors.bind("blur.tabs",function(){l("focus",c(this).closest("li"))})}var d,k;if(f.fx){if(c.isArray(f.fx)){d=f.fx[0];k=f.fx[1]}else{d=k=f.fx}}function g(i,o){i.css({display:""});if(!c.support.opacity&&o.opacity){i[0].style.removeAttribute("filter")}}var m=k?function(i,o){c(i).closest("li").addClass("ui-tabs-selected ui-state-active");o.hide().removeClass("ui-tabs-hide").animate(k,k.duration||"normal",function(){g(o,k);r._trigger("show",null,r._ui(i,o[0]))})}:function(i,o){c(i).closest("li").addClass("ui-tabs-selected ui-state-active");o.removeClass("ui-tabs-hide");r._trigger("show",null,r._ui(i,o[0]))};var n=d?function(o,i){i.animate(d,d.duration||"normal",function(){r.lis.removeClass("ui-tabs-selected ui-state-active");i.addClass("ui-tabs-hide");g(i,d);r.element.dequeue("tabs")})}:function(o,i,s){r.lis.removeClass("ui-tabs-selected ui-state-active");i.addClass("ui-tabs-hide");r.element.dequeue("tabs")};this.anchors.bind(f.event+".tabs",function(){var o=this,u=c(this).closest("li"),i=r.panels.filter(":not(.ui-tabs-hide)"),s=c(r._sanitizeSelector(this.hash));if((u.hasClass("ui-tabs-selected")&&!f.collapsible)||u.hasClass("ui-state-disabled")||u.hasClass("ui-state-processing")||r._trigger("select",null,r._ui(this,s[0]))===false){this.blur();return false}f.selected=r.anchors.index(this);r.abort();if(f.collapsible){if(u.hasClass("ui-tabs-selected")){f.selected=-1;if(f.cookie){r._cookie(f.selected,f.cookie)}r.element.queue("tabs",function(){n(o,i)}).dequeue("tabs");this.blur();return false}else{if(!i.length){if(f.cookie){r._cookie(f.selected,f.cookie)}r.element.queue("tabs",function(){m(o,s)});r.load(r.anchors.index(this));this.blur();return false}}}if(f.cookie){r._cookie(f.selected,f.cookie)}if(s.length){if(i.length){r.element.queue("tabs",function(){n(o,i)})}r.element.queue("tabs",function(){m(o,s)});r.load(r.anchors.index(this))}else{throw"jQuery UI Tabs: Mismatching fragment identifier."}if(c.browser.msie){this.blur()}});this.anchors.bind("click.tabs",function(){return false})},destroy:function(){var d=this.options;this.abort();this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs");this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.anchors.each(function(){var e=c.data(this,"href.tabs");if(e){this.href=e}var f=c(this).unbind(".tabs");c.each(["href","load","cache"],function(g,h){f.removeData(h+".tabs")})});this.lis.unbind(".tabs").add(this.panels).each(function(){if(c.data(this,"destroy.tabs")){c(this).remove()}else{c(this).removeClass(["ui-state-default","ui-corner-top","ui-tabs-selected","ui-state-active","ui-state-hover","ui-state-focus","ui-state-disabled","ui-tabs-panel","ui-widget-content","ui-corner-bottom","ui-tabs-hide"].join(" "))}});if(d.cookie){this._cookie(null,d.cookie)}return this},add:function(g,f,e){if(e===undefined){e=this.anchors.length}var d=this,i=this.options,k=c(i.tabTemplate.replace(/#\{href\}/g,g).replace(/#\{label\}/g,f)),j=!g.indexOf("#")?g.replace("#",""):this._tabId(c("a",k)[0]);k.addClass("ui-state-default ui-corner-top").data("destroy.tabs",true);var h=c("#"+j);if(!h.length){h=c(i.panelTemplate).attr("id",j).data("destroy.tabs",true)}h.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide");if(e>=this.lis.length){k.appendTo(this.list);h.appendTo(this.list[0].parentNode)}else{k.insertBefore(this.lis[e]);h.insertBefore(this.panels[e])}i.disabled=c.map(i.disabled,function(m,l){return m>=e?++m:m});this._tabify();if(this.anchors.length==1){i.selected=0;k.addClass("ui-tabs-selected ui-state-active");h.removeClass("ui-tabs-hide");this.element.queue("tabs",function(){d._trigger("show",null,d._ui(d.anchors[0],d.panels[0]))});this.load(0)}this._trigger("add",null,this._ui(this.anchors[e],this.panels[e]));return this},remove:function(d){var f=this.options,g=this.lis.eq(d).remove(),e=this.panels.eq(d).remove();if(g.hasClass("ui-tabs-selected")&&this.anchors.length>1){this.select(d+(d+1<this.anchors.length?1:-1))}f.disabled=c.map(c.grep(f.disabled,function(j,h){return j!=d}),function(j,h){return j>=d?--j:j});this._tabify();this._trigger("remove",null,this._ui(g.find("a")[0],e[0]));return this},enable:function(d){var e=this.options;if(c.inArray(d,e.disabled)==-1){return}this.lis.eq(d).removeClass("ui-state-disabled");e.disabled=c.grep(e.disabled,function(g,f){return g!=d});this._trigger("enable",null,this._ui(this.anchors[d],this.panels[d]));return this},disable:function(e){var d=this,f=this.options;if(e!=f.selected){this.lis.eq(e).addClass("ui-state-disabled");f.disabled.push(e);f.disabled.sort();this._trigger("disable",null,this._ui(this.anchors[e],this.panels[e]))}return this},select:function(d){if(typeof d=="string"){d=this.anchors.index(this.anchors.filter("[href$="+d+"]"))}else{if(d===null){d=-1}}if(d==-1&&this.options.collapsible){d=this.options.selected}this.anchors.eq(d).trigger(this.options.event+".tabs");return this},load:function(g){var e=this,i=this.options,d=this.anchors.eq(g)[0],f=c.data(d,"load.tabs");this.abort();if(!f||this.element.queue("tabs").length!==0&&c.data(d,"cache.tabs")){this.element.dequeue("tabs");return}this.lis.eq(g).addClass("ui-state-processing");if(i.spinner){var h=c("span",d);h.data("label.tabs",h.html()).html(i.spinner)}this.xhr=c.ajax(c.extend({},i.ajaxOptions,{url:f,success:function(k,j){c(e._sanitizeSelector(d.hash)).html(k);e._cleanup();if(i.cache){c.data(d,"cache.tabs",true)}e._trigger("load",null,e._ui(e.anchors[g],e.panels[g]));try{i.ajaxOptions.success(k,j)}catch(l){}},error:function(l,j,k){e._cleanup();e._trigger("load",null,e._ui(e.anchors[g],e.panels[g]));try{i.ajaxOptions.error(l,j,g,d)}catch(k){}}}));e.element.dequeue("tabs");return this},abort:function(){this.element.queue([]);this.panels.stop(false,true);this.element.queue("tabs",this.element.queue("tabs").splice(-2,2));if(this.xhr){this.xhr.abort();delete this.xhr}this._cleanup();return this},url:function(e,d){this.anchors.eq(e).removeData("cache.tabs").data("load.tabs",d);return this},length:function(){return this.anchors.length}});c.extend(c.ui.tabs,{version:"1.8"});c.extend(c.ui.tabs.prototype,{rotation:null,rotate:function(f,h){var d=this,i=this.options;var e=d._rotate||(d._rotate=function(j){clearTimeout(d.rotation);d.rotation=setTimeout(function(){var k=i.selected;d.select(++k<d.anchors.length?k:0)},f);if(j){j.stopPropagation()}});var g=d._unrotate||(d._unrotate=!h?function(j){if(j.clientX){d.rotate(null)}}:function(j){t=i.selected;e()});if(f){this.element.bind("tabsshow",e);this.anchors.bind(i.event+".tabs",g);e()}else{clearTimeout(d.rotation);this.element.unbind("tabsshow",e);this.anchors.unbind(i.event+".tabs",g);delete this._rotate;delete this._unrotate}return this}})})(jQuery);




// t: current time, b: begInnIng value, c: change In value, d: duration
jQuery.easing['jswing'] = jQuery.easing['swing'];

jQuery.extend( jQuery.easing,
{
	def: 'easeOutQuad',
	swing: function (x, t, b, c, d) {
		//alert(jQuery.easing.default);
		return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
	},
	easeInQuad: function (x, t, b, c, d) {
		return c*(t/=d)*t + b;
	},
	easeOutQuad: function (x, t, b, c, d) {
		return -c *(t/=d)*(t-2) + b;
	},
	easeInOutQuad: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t + b;
		return -c/2 * ((--t)*(t-2) - 1) + b;
	},
	easeInCubic: function (x, t, b, c, d) {
		return c*(t/=d)*t*t + b;
	},
	easeOutCubic: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t + 1) + b;
	},
	easeInOutCubic: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t + b;
		return c/2*((t-=2)*t*t + 2) + b;
	},
	easeInQuart: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t + b;
	},
	easeOutQuart: function (x, t, b, c, d) {
		return -c * ((t=t/d-1)*t*t*t - 1) + b;
	},
	easeInOutQuart: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
		return -c/2 * ((t-=2)*t*t*t - 2) + b;
	},
	easeInQuint: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t*t + b;
	},
	easeOutQuint: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t*t*t + 1) + b;
	},
	easeInOutQuint: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
		return c/2*((t-=2)*t*t*t*t + 2) + b;
	},
	easeInSine: function (x, t, b, c, d) {
		return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
	},
	easeOutSine: function (x, t, b, c, d) {
		return c * Math.sin(t/d * (Math.PI/2)) + b;
	},
	easeInOutSine: function (x, t, b, c, d) {
		return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
	},
	easeInExpo: function (x, t, b, c, d) {
		return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
	},
	easeOutExpo: function (x, t, b, c, d) {
		return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
	},
	easeInOutExpo: function (x, t, b, c, d) {
		if (t==0) return b;
		if (t==d) return b+c;
		if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
		return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
	},
	easeInCirc: function (x, t, b, c, d) {
		return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
	},
	easeOutCirc: function (x, t, b, c, d) {
		return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
	},
	easeInOutCirc: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
		return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
	},
	easeInElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
	},
	easeOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
	},
	easeInOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d/2)==2) return b+c;  if (!p) p=d*(.3*1.5);
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
		return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
	},
	easeInBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*(t/=d)*t*((s+1)*t - s) + b;
	},
	easeOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
	},
	easeInOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158; 
		if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
		return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
	},
	easeInBounce: function (x, t, b, c, d) {
		return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
	},
	easeOutBounce: function (x, t, b, c, d) {
		if ((t/=d) < (1/2.75)) {
			return c*(7.5625*t*t) + b;
		} else if (t < (2/2.75)) {
			return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
		} else if (t < (2.5/2.75)) {
			return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
		} else {
			return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
		}
	},
	easeInOutBounce: function (x, t, b, c, d) {
		if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
		return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
	}
});


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


/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Digitized data (C) 2004 Agfa Monotype Corporation. Neo Sans(TM) is a trademark
 * of Agfa Monotype Corporation and may be registered in certain jurisdictions. 
 * All rights reserved. Neo Sans is designed by Sebastian Lester.
 * 
 * Trademark:
 * Please refer to the Copyright section for the font trademark attribution
 * notices.
 * 
 * Manufacturer:
 * Digitized data (C) Agfa Monotype Corporation. Neo Sans(TM) is a trademark of
 * Agfa Monotype Corporation and may be registered in certain jurisdictions
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"176,-7v0,10,-14,6,-24,7v-4,0,-8,-3,-8,-7r0,-119v3,-62,-51,-51,-88,-33r0,152v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-184v0,-10,15,-6,25,-7v7,0,8,7,7,14v52,-33,120,-18,120,58r0,119","w":200},{"d":"210,-8v3,3,0,8,-4,8v-12,-2,-27,5,-32,-5r-65,-107r-49,-1r0,106v0,11,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-252v0,-5,3,-7,9,-8v75,-8,164,-7,164,77v0,40,-24,64,-57,73xm60,-141v59,3,108,5,108,-52v0,-50,-57,-49,-108,-46r0,98","w":225},{"d":"186,-262v6,-9,36,-9,33,3r-66,234v-14,40,-63,40,-74,0r-67,-236v1,-10,29,-9,34,-1r63,229v1,10,11,10,14,0","w":231},{"d":"134,-7v0,11,-16,6,-26,7v-4,0,-6,-3,-6,-7r0,-227v-18,7,-33,16,-52,22v-5,-2,-6,-24,1,-27v26,-9,41,-28,76,-28v4,0,7,2,7,6r0,254"},{"d":"252,-261v4,-11,34,-9,33,1r-40,243v-3,28,-52,24,-59,0r-38,-136v-15,42,-26,91,-37,136v-6,23,-54,29,-58,0r-40,-244v1,-9,31,-11,33,0r36,234v16,-42,27,-93,38,-138v5,-22,51,-23,57,0r38,138","w":297},{"d":"42,-34v-23,-9,-26,-43,-4,-56v-34,-41,-21,-110,63,-108r79,0v7,0,9,8,8,17v0,10,-12,7,-19,10v28,43,7,110,-68,101v-25,3,-46,-17,-51,5v7,20,44,18,65,25v35,12,69,19,69,56v0,35,-23,56,-82,56v-86,0,-103,-67,-60,-106xm101,-95v40,-1,50,-14,49,-39v0,-22,-10,-39,-49,-39v-41,1,-48,19,-48,42v0,16,7,36,48,36xm102,48v42,-3,52,-11,51,-35v5,-23,-60,-30,-85,-38v-26,22,-32,77,34,73","w":201},{"d":"14,72v64,-90,63,-250,0,-340v4,-5,24,-6,29,1v66,79,66,258,0,338v-5,6,-22,5,-29,1","w":109},{"d":"211,-97v0,69,-34,100,-92,100v-58,0,-92,-31,-92,-100r0,-164v1,-9,30,-10,33,0r0,164v0,46,14,71,59,71v45,0,59,-24,59,-71r0,-164v1,-9,30,-10,33,0r0,164","w":238},{"d":"177,-116v-1,10,3,27,-7,27r-120,0v-8,75,57,67,116,60v7,-1,4,11,5,17v0,5,-1,7,-7,8v-72,14,-141,16,-146,-80v-3,-69,17,-117,80,-117v53,0,79,34,79,85xm145,-113v1,-42,-14,-60,-47,-60v-32,0,-49,20,-48,60r95,0","w":195},{"d":"147,-22v5,33,-28,24,-52,25v-58,3,-77,-48,-77,-116v0,-72,54,-99,122,-84v11,2,6,12,7,21v0,5,-3,6,-8,6v-50,-8,-89,-5,-89,57v0,47,6,88,45,88v19,0,29,-2,46,-3v3,0,6,2,6,6","w":162},{"d":"216,-111v0,80,-40,114,-97,114v-73,0,-97,-65,-97,-160v0,-80,40,-113,97,-113v57,0,97,33,97,113r0,46xm119,-27v55,0,64,-61,64,-130v0,-60,-24,-83,-64,-83v-55,0,-64,60,-64,129v0,60,24,84,64,84","w":237},{"d":"143,-175v18,0,49,-3,54,14r-11,113v45,-6,52,-39,52,-84v0,-45,-29,-83,-88,-83v-92,-2,-111,70,-112,157v0,43,29,77,91,77v18,1,41,-5,55,0v-1,7,3,18,-6,17v-84,14,-170,-17,-163,-105v7,-95,34,-167,136,-167v74,0,111,50,111,104v0,88,-45,111,-131,113v-58,1,-62,-47,-54,-99v6,-37,27,-57,66,-57xm165,-147v-30,-5,-57,-2,-58,30v-1,33,-17,79,33,72v5,0,11,0,16,-1","w":276},{"d":"148,-27v12,0,12,28,0,27r-108,0v-28,0,-27,-34,-14,-50r94,-119v-25,-6,-62,0,-91,-2v-8,0,-7,-11,-7,-20v0,-4,3,-7,7,-7r106,0v27,-1,24,32,12,46r-97,122v0,2,0,3,3,3r95,0","w":173},{"d":"246,-7v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-215r-52,108v-6,15,-42,15,-49,0r-53,-108r0,215v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-250v0,-15,39,-15,45,-4r64,127v25,-38,41,-86,64,-127v5,-9,45,-12,45,4r0,250","w":273},{"d":"162,-7v0,10,-14,6,-23,7v-7,0,-9,-7,-8,-15v-42,29,-114,29,-114,-45v0,-48,48,-62,114,-58v2,-35,-5,-58,-39,-56r-57,3v-8,2,-6,-11,-6,-18v0,-4,2,-6,7,-7v15,-3,32,-5,56,-5v99,-4,64,109,70,194xm131,-38r0,-58v-44,-1,-92,0,-82,40v0,49,54,34,82,18","w":186},{"d":"175,-27v8,3,5,26,0,28v-14,1,-49,2,-70,2v-50,0,-77,-19,-77,-67r0,-139v-7,-75,81,-69,147,-65v6,2,7,25,0,28v-45,3,-124,-15,-114,37r0,50r110,0v10,0,8,11,8,21v0,4,-4,7,-8,7r-110,0v5,47,-21,98,44,98r70,0","w":198},{"d":"171,-153v11,0,12,28,0,28r-110,0r0,118v0,11,-16,6,-26,7v-4,0,-7,-3,-7,-7r0,-196v-7,-75,81,-69,147,-65v6,2,7,25,0,28v-45,3,-124,-15,-114,37r0,50r110,0","w":198},{"d":"178,-113v0,68,-17,116,-80,116v-63,0,-80,-48,-80,-116v0,-53,27,-88,80,-88v53,0,80,35,80,88xm98,-25v43,0,49,-40,49,-88v0,-37,-15,-60,-49,-60v-43,0,-48,40,-48,88v0,37,14,60,48,60","w":196},{"d":"217,-7v0,11,-16,6,-26,7v-4,0,-7,-3,-7,-7r0,-120r-123,0r0,120v0,11,-16,6,-26,7v-4,0,-7,-3,-7,-7r0,-253v0,-11,16,-6,26,-7v4,0,7,3,7,7r0,104r123,0r0,-104v0,-11,16,-6,26,-7v4,0,7,3,7,7r0,253","w":244},{"d":"54,-273v12,4,11,42,0,43v-10,-1,-26,4,-26,-7v0,-13,-6,-36,7,-36r19,0xm60,-7v0,10,-14,6,-24,7v-4,0,-8,-3,-8,-7r0,-184v0,-10,32,-12,32,0r0,184","w":88},{"d":"170,-12v0,5,-1,7,-7,8v-22,4,-45,7,-67,7v-63,0,-78,-47,-78,-115v0,-75,49,-101,121,-85r0,-67v0,-11,15,-6,25,-7v4,0,6,3,6,7r0,252xm139,-27r0,-143v-51,-9,-89,-2,-89,58v0,47,0,90,46,87v12,0,31,-1,43,-2","w":194},{"d":"170,64v0,11,-15,6,-25,7v-4,0,-6,-3,-6,-7r0,-65v-81,19,-121,-19,-121,-111v0,-54,24,-89,78,-89v22,0,48,4,67,9v6,1,7,3,7,8r0,248xm139,-28r0,-142v-10,-2,-28,-4,-43,-4v-45,-2,-46,41,-46,88v0,60,37,70,89,58","w":194},{"d":"165,-8v3,12,-17,7,-29,8v-4,0,-5,-1,-8,-5r-72,-88r0,86v0,10,-14,6,-24,7v-4,0,-8,-3,-8,-7r0,-257v0,-10,32,-12,32,0r0,150r72,-81v5,-5,43,-7,36,5r-79,86","w":178},{"d":"183,-8v2,4,2,8,-4,8v-10,-1,-25,3,-30,-3r-51,-75r-52,74v-4,7,-27,7,-32,0r67,-97r-63,-93v4,-7,30,-8,36,1r46,68r46,-68v5,-10,17,-3,28,-5v6,0,6,5,3,9r-60,86","w":196},{"d":"217,-8v2,12,-17,7,-27,8v-3,0,-5,-2,-6,-5r-23,-83r-94,0r-23,83v-2,9,-37,8,-33,-3r66,-235v14,-38,62,-39,73,0xm154,-117r-33,-118v-1,-9,-12,-9,-14,0r-33,118r80,0","w":227},{"d":"192,-11v0,4,-2,7,-6,8v-81,15,-166,10,-165,-106r0,-49v1,-119,83,-119,165,-107v10,-1,5,15,6,23v0,3,-3,4,-6,4v-68,-3,-134,-18,-132,80r0,49v-1,81,46,88,105,80r0,-103v0,-11,16,-6,26,-7v4,0,7,3,7,7r0,121","w":220},{"w":88},{"d":"237,-192v3,-11,35,-9,32,3r-35,167v-5,23,-8,25,-30,25v-19,0,-23,-3,-29,-26r-32,-123v-2,-4,-2,-3,-3,0r-32,123v-5,21,-10,26,-29,26v-22,0,-25,-3,-30,-25r-35,-169v0,-10,30,-11,32,-1r30,164v2,7,4,5,6,0r35,-138v2,-16,45,-18,49,0r38,142v16,-50,20,-114,33,-168","w":282},{"d":"189,-30v12,1,10,30,0,30r-139,0v-34,4,-37,-26,-24,-45r130,-191v-36,-6,-84,-2,-124,-2v-11,0,-6,-14,-7,-23v0,-4,3,-6,7,-6r129,0v31,-5,37,26,24,45r-129,190v38,6,91,0,133,2","w":214},{"d":"190,-69v0,31,-14,63,-66,70v-1,20,9,48,-24,41v-13,-2,-5,-26,-7,-39v-21,0,-38,-4,-52,-6v-11,-2,-4,-12,-6,-21v0,-4,3,-6,7,-6v45,7,124,8,114,-39v0,-52,-128,-71,-128,-137v0,-37,24,-58,65,-63v1,-20,-7,-44,24,-38v13,3,5,24,7,37v19,1,41,3,53,5v9,1,5,12,6,21v0,4,-2,6,-7,6v-38,-2,-121,-15,-115,32v7,49,143,75,129,137"},{"d":"89,63v0,4,-2,7,-6,7r-67,0v-9,0,-7,-11,-7,-19v4,-14,33,-4,48,-7r0,-285v-19,-4,-54,12,-48,-19v0,-4,3,-7,7,-7r67,0v4,0,6,2,6,6r0,324","w":117},{"d":"176,-7v0,10,-15,6,-25,7v-7,0,-8,-7,-7,-14v-52,33,-120,18,-120,-58r0,-119v0,-10,32,-12,32,0r0,119v-3,61,51,52,88,33r0,-152v0,-10,32,-12,32,0r0,184","w":200},{"d":"54,-273v12,4,11,42,0,43v-10,-1,-26,4,-26,-7v0,-13,-6,-36,7,-36r19,0xm15,71v-15,0,-31,-1,-26,-21v8,-14,47,8,39,-27r0,-214v0,-11,16,-6,26,-7v4,0,6,3,6,7r0,214v0,37,-16,48,-45,48","w":88},{"d":"102,44v11,0,10,27,0,26r-67,0v-4,0,-6,-3,-6,-7r0,-324v0,-4,2,-6,6,-6r67,0v9,0,7,11,7,19v-4,14,-33,4,-48,7r0,285r41,0","w":117},{"d":"263,-7v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-128v0,-51,-43,-40,-75,-28v7,46,1,105,3,156v0,11,-15,6,-25,7v-4,0,-6,-3,-6,-7r0,-128v2,-56,-42,-39,-72,-24r0,152v0,11,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-184v0,-10,15,-6,25,-7v7,0,8,7,7,14v23,-16,68,-27,89,-2v52,-24,117,-28,118,51r0,128","w":287},{"d":"61,63v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-324v0,-9,29,-10,32,0r0,324","w":89},{"d":"177,-112v0,88,-36,131,-121,111r0,65v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-248v0,-5,2,-7,8,-8v19,-5,44,-9,66,-9v54,0,79,35,79,89xm98,-24v44,2,47,-40,47,-88v0,-38,-11,-62,-47,-62v-15,0,-32,2,-42,4r0,142v12,2,30,4,42,4","w":194},{"d":"60,-7v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-257v0,-10,15,-6,25,-7v4,0,7,3,7,7r0,257","w":87},{"d":"151,-198v11,1,29,-4,25,9r-48,171v-9,29,-57,29,-65,0r-49,-174v0,-9,30,-11,32,1r42,157v3,15,11,14,15,0r41,-157v1,-5,4,-7,7,-7","w":190},{"d":"180,-69v0,35,-18,72,-89,72v-25,0,-44,-4,-60,-6v-11,-1,-5,-11,-7,-20v9,-15,48,0,67,-4v43,0,55,-17,55,-42v0,-52,-135,-71,-128,-137v-8,-66,86,-69,149,-60v9,1,10,28,0,28v-43,2,-121,-15,-116,32v6,49,142,76,129,137","w":198},{"d":"184,-9v-13,15,-31,12,-67,12v-44,0,-95,-25,-95,-112r0,-50v4,-116,74,-119,155,-105v10,-1,5,15,6,23v-9,10,-42,1,-66,1v-35,0,-63,20,-63,81r0,50v-1,90,57,86,124,79v9,0,5,13,6,21","w":196},{"d":"106,-201v12,0,10,28,0,28v-17,0,-32,4,-50,15r0,151v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-184v0,-10,14,-6,24,-7v7,0,8,7,7,15v18,-13,35,-18,51,-18","w":123},{"d":"130,-18v6,22,-15,21,-30,21v-33,0,-49,-9,-49,-49r0,-125v-16,-5,-47,6,-42,-21v3,-13,29,-4,42,-6v2,-14,-6,-37,6,-42v9,0,25,-9,25,3r0,39v19,3,53,-12,47,19v-3,15,-31,5,-47,8r0,125v-2,29,17,22,40,23v5,0,8,1,8,5","w":138},{"d":"193,-267v12,1,10,28,0,28r-70,0r0,232v0,11,-17,6,-27,7v-4,0,-6,-3,-6,-7r0,-232r-70,0v-10,1,-6,-13,-7,-22v0,-4,3,-6,7,-6r173,0","w":212},{"d":"28,-254v5,-24,37,-16,69,-16v59,0,105,15,105,75v0,27,-14,48,-38,57v27,10,40,31,40,64v0,81,-93,82,-164,73v-8,-1,-12,-4,-12,-13r0,-240xm117,-152v45,-1,53,-20,53,-49v0,-47,-61,-42,-109,-40r0,89r56,0xm61,-27v54,4,110,6,110,-53v0,-24,-12,-46,-54,-46r-56,0r0,99","w":221},{"d":"112,-88v-60,28,37,158,-95,158v-9,0,-7,-11,-7,-19v7,-17,57,5,48,-31v2,-49,-9,-99,26,-118v-35,-20,-26,-70,-26,-120v0,-26,-17,-23,-41,-23v-9,0,-7,-11,-7,-19v0,-10,15,-6,25,-7v100,-14,20,117,77,158r0,21","w":119},{"w":88},{"d":"116,-270v34,0,56,-1,70,13v0,9,3,22,-9,20v-18,-4,-38,-6,-61,-6v-57,0,-62,35,-62,84v62,-15,143,-11,143,70v0,57,-29,92,-88,92v-54,0,-87,-32,-87,-103r0,-63v0,-77,32,-107,94,-107xm109,-24v34,1,56,-18,55,-67v0,-61,-66,-51,-110,-43v-4,61,9,119,55,110"},{"d":"32,-244v-3,-35,46,-24,71,-26v102,-9,110,92,40,134v-39,23,-96,56,-85,108r121,0v10,-1,6,13,7,22v0,4,-3,6,-7,6r-143,0v-13,-1,-5,-24,-7,-36v-6,-52,50,-94,91,-119v31,-19,37,-29,37,-51v0,-49,-75,-37,-119,-31v-4,0,-6,-3,-6,-7"},{"d":"54,-41v-1,21,8,48,-24,41v-13,-3,-7,-27,-7,-41v0,-10,14,-6,24,-7v4,0,7,3,7,7","w":77},{"d":"197,-99v11,1,10,29,0,28r-31,0r0,64v0,12,-17,6,-27,7v-4,0,-6,-3,-6,-7r0,-64r-104,0v-21,3,-19,-29,-11,-41r107,-150v4,-7,38,-10,41,2r0,161r31,0xm133,-99r-2,-125r-87,123v24,6,61,0,89,2"},{"d":"53,71v-18,0,-44,4,-38,-22v3,-13,28,-1,40,-4v27,5,33,-21,39,-45v-17,0,-24,-1,-32,-25r-48,-167v1,-9,29,-10,32,0r43,156v3,10,5,8,13,8r43,-165v3,-7,37,-10,33,4r-60,207v-11,39,-24,53,-65,53","w":192},{"d":"175,-27v8,2,5,25,0,26v-9,1,-36,4,-70,4v-39,0,-77,-8,-77,-67r0,-196v0,-11,16,-6,26,-7v4,0,7,3,7,7r0,196v-10,52,69,34,114,37","w":185},{"d":"28,-258v7,-18,42,-12,68,-12v60,0,101,21,101,83v0,73,-64,85,-137,79r0,101v0,11,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-251xm60,-135v57,5,114,-2,105,-57v5,-48,-53,-54,-105,-49r0,106","w":213},{"d":"170,-267v11,1,33,-4,27,9r-56,125v-6,14,-14,21,-20,24r0,102v0,11,-16,6,-26,7v-4,0,-6,-3,-6,-7r0,-102v-6,-3,-14,-10,-20,-24r-56,-129v2,-8,30,-8,34,0v20,41,33,89,58,126v3,0,4,-2,8,-10r50,-116v1,-3,4,-5,7,-5","w":209},{"d":"96,-119v11,1,10,27,0,27r-72,0v-10,1,-7,-11,-7,-20v0,-4,3,-7,7,-7r72,0","w":119},{"d":"35,-46v9,1,29,-4,25,6r-27,68v-1,10,-21,10,-26,3r21,-71v1,-5,3,-6,7,-6","w":77},{"d":"30,-243v-3,-35,40,-25,68,-27v55,-4,92,18,90,75v0,24,-13,45,-35,56v28,16,35,36,35,64v0,78,-86,88,-151,70v-10,0,-11,-24,-1,-25v53,6,118,17,118,-52v0,-19,-9,-44,-42,-44r-66,0v-9,0,-5,-11,-6,-19v0,-4,2,-7,6,-7r66,0v37,-1,42,-24,42,-48v0,-53,-71,-45,-118,-37v-4,0,-6,-2,-6,-6"},{"d":"90,-260v2,-12,33,-10,30,0r-82,253v0,11,-26,10,-30,2","w":127},{"d":"165,-267v30,0,31,22,22,41r-103,221v-4,9,-19,3,-30,5v-6,0,-6,-5,-4,-9r109,-228v-36,-6,-86,0,-126,-2v-10,0,-7,-13,-7,-22v0,-4,3,-6,7,-6r132,0"},{"d":"201,-8v3,3,2,8,-3,8v-13,-1,-29,4,-36,-4r-101,-123r0,120v0,11,-16,6,-26,7v-4,0,-7,-3,-7,-7r0,-254v1,-9,30,-10,33,0r0,117r104,-120v6,-5,30,-5,38,0v-34,44,-74,83,-110,126","w":218},{"d":"216,-9v2,4,2,9,-4,9v-12,-1,-26,4,-31,-5r-65,-105r-65,105v-5,10,-18,3,-29,5v-6,0,-6,-5,-4,-9r80,-127r-81,-126v2,-9,28,-7,36,-2r64,103r63,-103v5,-5,37,-7,33,5r-78,124","w":232},{"d":"28,-257v7,-19,38,-10,73,-13v85,-6,109,62,109,161v0,77,-42,112,-109,112v-35,0,-66,6,-73,-13r0,-247xm177,-109r0,-49v-1,-83,-49,-88,-116,-83r0,215v66,3,116,0,116,-83","w":230},{"d":"101,-274v19,2,30,0,27,20v-8,15,-53,-8,-46,30r0,26v19,3,53,-11,45,21v-3,13,-31,3,-45,6r0,164v0,11,-15,6,-24,7v-4,0,-7,-3,-7,-7r0,-164v-16,-5,-47,6,-42,-21v3,-13,29,-4,42,-6v-4,-47,8,-80,50,-76","w":137},{"d":"229,-8v3,2,2,8,-2,8v-26,4,-38,-8,-49,-22v-43,40,-159,37,-159,-44v0,-30,16,-48,52,-71v-32,-36,-40,-57,-40,-76v0,-38,30,-57,76,-57v41,0,72,19,71,60v5,24,-26,52,-65,78r65,70v11,-18,14,-41,14,-68v0,-9,13,-5,21,-6v6,0,8,4,7,11v0,31,-8,61,-23,83xm95,-152v30,-18,60,-37,53,-61v0,-24,-16,-33,-41,-33v-28,0,-48,8,-47,36v-3,11,10,32,35,58xm161,-41r-72,-76v-30,19,-37,28,-37,54v0,51,84,49,109,22","w":244},{"d":"9,65v-18,0,-24,-2,-22,-20v9,-14,53,3,45,-32r0,-274v0,-9,30,-10,32,0r0,274v0,35,-15,52,-55,52","w":92},{"d":"193,-105v8,105,-76,120,-156,101v-11,0,-7,-10,-8,-20v0,-5,3,-8,8,-7v18,4,39,6,62,6v58,0,62,-35,62,-84v-62,15,-143,11,-143,-70v0,-57,29,-91,88,-91v54,0,87,31,87,102r0,63xm161,-134v4,-60,-9,-118,-55,-109v-35,-1,-57,17,-56,66v0,62,67,52,111,43"},{"d":"101,-268v-62,91,-65,250,0,340v-4,5,-24,6,-29,-1v-66,-79,-66,-257,0,-338v5,-7,22,-5,29,-1","w":109},{"d":"217,-10v0,15,-37,13,-45,4r-112,-212r0,211v0,10,-27,10,-32,3r0,-253v0,-16,40,-13,45,-3r111,211r1,-212v0,-10,16,-5,25,-6v4,0,7,2,7,6r0,251","w":244},{"d":"177,-112v0,68,-15,115,-79,115v-22,0,-44,-3,-66,-7v-6,-1,-8,-3,-8,-8r0,-252v0,-10,15,-6,25,-7v4,0,7,3,7,7r0,67v71,-16,121,11,121,85xm98,-25v46,2,47,-39,47,-87v0,-59,-37,-68,-89,-58r0,143v12,1,30,2,42,2","w":194},{"d":"102,44v11,0,10,26,0,26v-48,0,-73,-5,-73,-50v0,-44,11,-91,-22,-108r0,-21v60,-28,-37,-158,95,-158v9,0,7,11,7,19v-6,18,-57,-6,-48,30v-2,50,9,100,-26,120v35,20,26,69,26,118v0,26,17,24,41,24","w":119},{"d":"190,-87v0,83,-80,103,-155,83v-9,0,-7,-11,-7,-20v0,-5,2,-6,7,-6v61,11,129,11,122,-57v7,-50,-61,-50,-118,-48v-3,0,-6,-3,-6,-6r10,-120v0,-4,3,-6,7,-6r124,0v10,-1,6,12,7,21v0,4,-3,6,-7,6r-103,0r-6,78v72,-2,125,11,125,75"},{"d":"270,-89v0,50,-7,92,-49,92v-42,0,-48,-43,-48,-92v0,-40,18,-59,48,-59v30,0,49,19,49,59xm213,-267v7,1,25,-4,19,6r-150,255v-3,11,-19,8,-29,5v46,-90,102,-172,151,-260v3,-5,5,-6,9,-6xm113,-212v0,49,-6,92,-48,92v-42,0,-49,-42,-49,-92v0,-40,19,-58,49,-58v30,0,48,18,48,58xm221,-18v27,0,26,-40,26,-71v0,-27,-10,-38,-26,-38v-27,0,-26,40,-26,71v0,27,10,38,26,38xm65,-141v27,0,26,-40,26,-71v0,-27,-10,-38,-26,-38v-27,0,-26,40,-26,71v0,27,10,38,26,38","w":285},{"d":"216,-157v0,86,-18,157,-81,159v0,21,-3,36,22,36v15,0,34,-5,29,18v0,6,-11,9,-29,9v-42,0,-58,-18,-54,-64v-62,-2,-81,-71,-81,-158v0,-80,40,-113,97,-113v57,0,97,33,97,113xm119,-27v55,0,64,-61,64,-130v0,-60,-24,-83,-64,-83v-55,0,-64,60,-64,129v0,60,24,84,64,84","w":237},{"d":"176,-7v0,10,-14,6,-24,7v-4,0,-8,-3,-8,-7r0,-119v0,-61,-45,-51,-88,-37r0,156v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-257v0,-10,15,-6,25,-7v4,0,7,3,7,7r0,75v58,-24,120,-16,120,63r0,119","w":200},{"d":"82,3v-16,-4,-71,8,-64,-26v22,-16,100,21,100,-27v0,-41,-100,-48,-100,-103v0,-57,73,-51,121,-43v10,1,6,10,7,19v0,4,-2,6,-7,6v-24,1,-90,-17,-89,18v9,39,100,54,100,103v0,37,-28,53,-68,53","w":167},{"d":"64,-7v0,11,-16,6,-26,7v-4,0,-6,-3,-6,-7r0,-254v0,-11,17,-4,26,-6v4,0,6,2,6,6r0,254","w":96},{"d":"197,-109v0,80,-34,112,-88,112v-54,0,-88,-32,-88,-112r0,-49v0,-80,34,-112,88,-112v54,0,88,32,88,112r0,49xm109,-25v50,0,56,-67,56,-133v0,-61,-22,-84,-56,-84v-50,0,-55,68,-55,133v0,61,21,84,55,84"},{"d":"198,-81v2,59,-38,85,-91,84v-50,0,-90,-27,-87,-84v0,-22,12,-46,35,-59v-24,-13,-35,-32,-34,-59v0,-51,38,-72,90,-71v50,0,88,22,87,74v0,24,-12,44,-35,56v23,13,35,37,35,59xm98,-153v42,0,68,-13,68,-46v0,-30,-21,-45,-59,-44v-37,0,-56,15,-55,47v0,22,13,43,46,43xm107,-25v41,1,59,-19,59,-56v0,-28,-26,-50,-68,-46v-35,4,-45,25,-45,52v0,31,18,50,54,50"}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+280-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("IUdE@v5X~(&8I6|>gvhKbUb&`w5Edv&8`w+K~(nadZBS!eX:@|+(;ZgaIZZ|!X&f1LE_n#dYTU|Lm(O4.#gmg7f]!7o$(:ngg(l@@`2]@Fd7.$+XZk+&bV!K}*n[7hod}T]e`6B$TE_kd:dI9T_9!aSE+ZhcmXL]96b8m$oS~`.cb:bl}UL&;62]t(b8m62St`f8@UZ8d$nc}Um&!:[v}vgS1`ofo6VkhUFb+I};59t.nT7#Z(`!d~@mg1A{_:*L|vacliRSO8Y]2KeXEw$4[u>B&3GcmeE>A7Old:_:}v&RtT&1IVBug$g$`64ltK{G9a5Xm$.257!2`6[egUha~([a}(h]!(5cdZ]8@vZXmvZa~`5Xma|m}v[|g6LL}wL8gUZeg6_S@w5_gU|Y@:[c@$5X@vhOdTLldv&KIVOltU]>IKOlI(g@!EOl`ZX&mhOl``XlI6L{")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":217,"face":{"font-family":"NeoSans","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 6 2 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"3","bbox":"-13.3675 -307.937 285.024 76","underline-thickness":"18","underline-position":"-18","stemh":"26","stemv":"23","unicode-range":"U+0020-U+007D"}}));


/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 2004 Monotype Imaging, Inc. All Rights Reserved.
 * 
 * Trademark:
 * Neo Sans is a trademark of Monotype Imaging, Inc. and may be registered in
 * certain jurisdictions.
 * 
 * Full name:
 * NeoSansStd-Regular
 * 
 * Vendor URL:
 * http://www.monotypeimaging.com.
 * 
 * License information:
 * http://www.monotypeimaging.com/html/type/license.html.
 */
Cufon.registerFont({"w":217,"face":{"font-family":"NeoSansRegular","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 4 3 5 4 4 2 4","ascent":"275","descent":"-85","x-height":"3","bbox":"-44.4444 -353 502 78","underline-thickness":"20.52","underline-position":"-7.56","stemh":"26","stemv":"23","unicode-range":"U+0020-U+FB04"},"glyphs":{" ":{"w":88},"\ufb01":{"d":"197,-7v0,4,-3,7,-7,7r-17,0v-4,0,-7,-3,-7,-7r0,-164r-84,0r0,164v0,4,-2,7,-6,7r-18,0v-4,0,-7,-3,-7,-7r0,-164r-35,-4v-4,0,-7,-3,-7,-7r0,-10v0,-4,3,-6,7,-6r35,0r0,-26v0,-39,18,-50,50,-50v10,0,15,1,20,2v4,1,7,3,7,6r0,12v0,4,-2,5,-6,5r-18,0v-17,0,-22,5,-22,25r0,26r108,0v4,0,7,3,7,7r0,184xm198,-237v0,4,-3,7,-7,7r-19,0v-4,0,-7,-3,-7,-7r0,-29v0,-4,3,-7,7,-7r19,0v4,0,7,3,7,7r0,29","w":226},"\ufb02":{"d":"197,-7v0,4,-2,7,-6,7r-19,0v-4,0,-6,-3,-6,-7r0,-242r-59,0v-17,0,-25,5,-25,25r0,26r38,0v4,0,7,2,7,6r0,15v0,4,-3,6,-7,6r-38,0r0,164v0,4,-2,7,-6,7r-18,0v-4,0,-7,-3,-7,-7r0,-164r-35,-4v-4,0,-7,-3,-7,-7r0,-10v0,-4,3,-6,7,-6r35,0r0,-26v0,-39,20,-50,52,-50v10,0,49,0,69,3r19,0v4,0,6,3,6,7r0,257","w":225},"\ufb00":{"d":"243,-254v0,4,-2,5,-6,5r-18,0v-17,0,-22,5,-22,25r0,26r38,0v4,0,7,2,7,6r0,15v0,4,-3,6,-7,6r-38,0r0,164v0,4,-3,7,-7,7r-17,0v-4,0,-7,-3,-7,-7r0,-164r-84,0r0,164v0,4,-2,7,-6,7r-18,0v-4,0,-7,-3,-7,-7r0,-164r-35,-4v-4,0,-7,-3,-7,-7r0,-10v0,-4,3,-6,7,-6r35,0r0,-26v0,-39,18,-50,50,-50v10,0,15,1,20,2v4,1,7,3,7,6r0,12v0,4,-2,5,-6,5r-18,0v-17,0,-22,5,-22,25r0,26r84,0r0,-26v0,-39,18,-50,50,-50v10,0,15,1,20,2v4,1,7,3,7,6r0,12","w":252,"k":{"q":7,"d":7,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":7,"\u00f8":7,"\u0153":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7,"c":7,"\u00e7":7}},"\ufb03":{"d":"312,-7v0,4,-3,7,-7,7r-17,0v-4,0,-8,-3,-8,-7r0,-164r-83,0r0,164v0,4,-3,7,-7,7r-17,0v-4,0,-7,-3,-7,-7r0,-164r-84,0r0,164v0,4,-2,7,-6,7r-18,0v-4,0,-7,-3,-7,-7r0,-164r-35,-4v-4,0,-7,-3,-7,-7r0,-10v0,-4,3,-6,7,-6r35,0r0,-26v0,-39,18,-50,50,-50v10,0,15,1,20,2v4,1,7,3,7,6r0,12v0,4,-2,5,-6,5r-18,0v-17,0,-22,5,-22,25r0,26r84,0r0,-26v0,-39,18,-50,50,-50v10,0,15,1,20,2v4,1,7,3,7,6r0,12v0,4,-2,5,-6,5r-18,0v-17,0,-22,5,-22,25r0,26r108,0v4,0,7,3,7,7r0,184xm313,-237v0,4,-3,7,-7,7r-19,0v-4,0,-7,-3,-7,-7r0,-29v0,-4,3,-7,7,-7r19,0v4,0,7,3,7,7r0,29","w":340},"\ufb04":{"d":"128,-254v0,4,-2,5,-6,5r-18,0v-17,0,-22,5,-22,25r0,26r84,0r0,-26v0,-39,20,-50,52,-50v10,0,49,0,69,3r18,0v4,0,7,3,7,7r0,257v0,4,-3,7,-7,7r-18,0v-4,0,-7,-3,-7,-7r0,-242r-59,0v-17,0,-24,5,-24,25r0,26r38,0v4,0,7,2,7,6r0,15v0,4,-3,6,-7,6r-38,0r0,164v0,4,-3,7,-7,7r-17,0v-4,0,-7,-3,-7,-7r0,-164r-84,0r0,164v0,4,-2,7,-6,7r-18,0v-4,0,-7,-3,-7,-7r0,-164r-35,-4v-4,0,-7,-3,-7,-7r0,-10v0,-4,3,-6,7,-6r35,0r0,-26v0,-39,18,-50,50,-50v10,0,15,1,20,2v4,1,7,3,7,6r0,12","w":339},"\ue000":{"d":"318,-86v0,54,-25,89,-79,89v-22,0,-44,-3,-66,-7v-6,-1,-7,-3,-7,-8r0,-237r-59,0v-17,0,-25,5,-25,25r0,26r38,0v4,0,7,2,7,6r0,15v0,4,-3,6,-7,6r-38,0r0,164v0,4,-2,7,-6,7r-18,0v-4,0,-7,-3,-7,-7r0,-164r-35,-4v-4,0,-7,-3,-7,-7r0,-10v0,-4,3,-6,7,-6r35,0r0,-26v0,-39,20,-50,52,-50v10,0,49,0,69,3r18,0v4,0,7,3,7,7r0,67v14,-3,30,-4,42,-4v52,0,79,32,79,89r0,26xm286,-86r0,-26v0,-39,-12,-61,-47,-61v-11,0,-30,1,-42,3r0,143v12,1,30,2,42,2v36,0,47,-22,47,-61","w":335},"\ue001":{"d":"128,-254v0,4,-2,5,-6,5r-18,0v-17,0,-22,5,-22,25r0,26r84,0r0,-26v0,-39,20,-50,52,-50v10,0,45,0,65,3r18,0v4,0,7,3,7,7r0,67v14,-3,30,-4,42,-4v52,0,79,32,79,89r0,26v0,54,-25,89,-79,89v-22,0,-44,-3,-66,-7v-6,-1,-8,-3,-8,-8r0,-237r-55,0v-17,0,-24,5,-24,25r0,26r38,0v4,0,7,2,7,6r0,15v0,4,-3,6,-7,6r-38,0r0,164v0,4,-3,7,-7,7r-17,0v-4,0,-7,-3,-7,-7r0,-164r-84,0r0,164v0,4,-2,7,-6,7r-18,0v-4,0,-7,-3,-7,-7r0,-164r-35,-4v-4,0,-7,-3,-7,-7r0,-10v0,-4,3,-6,7,-6r35,0r0,-26v0,-39,18,-50,50,-50v10,0,15,1,20,2v4,1,7,3,7,6r0,12xm397,-86r0,-26v0,-39,-12,-61,-47,-61v-11,0,-30,1,-42,3r0,143v12,1,30,2,42,2v36,0,47,-22,47,-61","w":446},"\ue002":{"d":"308,-264r0,75v17,-8,40,-12,55,-12v38,0,65,22,65,75r0,119v0,4,-3,7,-7,7r-17,0v-4,0,-8,-3,-8,-7r0,-119v0,-36,-15,-47,-38,-47v-11,0,-34,3,-50,10r0,156v0,4,-3,7,-7,7r-18,0v-4,0,-7,-3,-7,-7r0,-242r-55,0v-17,0,-24,5,-24,25r0,26r38,0v4,0,7,2,7,6r0,15v0,4,-3,6,-7,6r-38,0r0,164v0,4,-3,7,-7,7r-17,0v-4,0,-7,-3,-7,-7r0,-164r-84,0r0,164v0,4,-2,7,-6,7r-18,0v-4,0,-7,-3,-7,-7r0,-164r-35,-4v-4,0,-7,-3,-7,-7r0,-10v0,-4,3,-6,7,-6r35,0r0,-26v0,-39,18,-50,50,-50v10,0,15,1,20,2v4,1,7,3,7,6r0,12v0,4,-2,5,-6,5r-18,0v-17,0,-22,5,-22,25r0,26r84,0r0,-26v0,-39,20,-50,52,-50v10,0,45,0,65,3r18,0v4,0,7,3,7,7","w":452},"\ue004":{"d":"276,-249r-55,0v-17,0,-24,5,-24,25r0,26r38,0v4,0,7,2,7,6r0,15v0,4,-3,6,-7,6r-38,0r0,164v0,4,-3,7,-7,7r-17,0v-4,0,-7,-3,-7,-7r0,-164r-84,0r0,164v0,4,-2,7,-6,7r-18,0v-4,0,-7,-3,-7,-7r0,-164r-35,-4v-4,0,-7,-3,-7,-7r0,-10v0,-4,3,-6,7,-6r35,0r0,-26v0,-39,18,-50,50,-50v10,0,15,1,20,2v4,1,7,3,7,6r0,12v0,4,-2,5,-6,5r-18,0v-17,0,-22,5,-22,25r0,26r84,0r0,-26v0,-39,20,-50,52,-50v10,0,45,0,65,3r18,0v4,0,7,3,7,7r0,150r72,-81v2,-3,3,-3,7,-3r26,0v4,0,5,2,5,4v0,1,-1,3,-2,4r-79,86r80,96v1,1,1,2,1,3v0,3,-1,5,-4,5r-26,0v-4,0,-5,-1,-8,-5r-72,-88r0,86v0,4,-3,7,-7,7r-17,0v-4,0,-8,-3,-8,-7r0,-242","w":430,"k":{"q":18,"d":18,"e":18,"\u00e9":18,"\u00ea":18,"\u00eb":18,"\u00e8":18,"o":18,"\u00f8":18,"\u0153":18,"\u00f3":18,"\u00f4":18,"\u00f6":18,"\u00f2":18,"\u00f5":18,"c":18,"\u00e7":18}},"\ue005":{"d":"197,-264r0,75v17,-8,40,-12,55,-12v38,0,65,22,65,75r0,119v0,4,-3,7,-7,7r-17,0v-4,0,-8,-3,-8,-7r0,-119v0,-36,-15,-47,-38,-47v-11,0,-34,3,-50,10r0,156v0,4,-3,7,-7,7r-18,0v-4,0,-6,-3,-6,-7r0,-242r-59,0v-17,0,-25,5,-25,25r0,26r38,0v4,0,7,2,7,6r0,15v0,4,-3,6,-7,6r-38,0r0,164v0,4,-2,7,-6,7r-18,0v-4,0,-7,-3,-7,-7r0,-164r-35,-4v-4,0,-7,-3,-7,-7r0,-10v0,-4,3,-6,7,-6r35,0r0,-26v0,-39,20,-50,52,-50v10,0,49,0,69,3r18,0v4,0,7,3,7,7","w":341},"\ue006":{"d":"197,23v0,37,-16,48,-45,48v-7,0,-12,-1,-19,-2v-5,-1,-7,-2,-7,-5r0,-14v0,-3,3,-5,8,-5r15,0v14,0,17,-4,17,-22r0,-194r-84,0r0,164v0,4,-2,7,-6,7r-18,0v-4,0,-7,-3,-7,-7r0,-164r-35,-4v-4,0,-7,-3,-7,-7r0,-10v0,-4,3,-6,7,-6r35,0r0,-26v0,-39,18,-50,50,-50v10,0,15,1,20,2v4,1,7,3,7,6r0,12v0,4,-2,5,-6,5r-18,0v-17,0,-22,5,-22,25r0,26r109,0v4,0,6,3,6,7r0,214xm198,-237v0,4,-3,7,-7,7r-19,0v-4,0,-7,-3,-7,-7r0,-29v0,-4,3,-7,7,-7r19,0v4,0,7,3,7,7r0,29","w":226},"\ue003":{"d":"312,23v0,37,-16,48,-45,48v-7,0,-12,-1,-19,-2v-5,-1,-7,-2,-7,-5r0,-14v0,-3,3,-5,8,-5r15,0v14,0,16,-4,16,-22r0,-194r-83,0r0,164v0,4,-3,7,-7,7r-17,0v-4,0,-7,-3,-7,-7r0,-164r-84,0r0,164v0,4,-2,7,-6,7r-18,0v-4,0,-7,-3,-7,-7r0,-164r-35,-4v-4,0,-7,-3,-7,-7r0,-10v0,-4,3,-6,7,-6r35,0r0,-26v0,-39,18,-50,50,-50v10,0,15,1,20,2v4,1,7,3,7,6r0,12v0,4,-2,5,-6,5r-18,0v-17,0,-22,5,-22,25r0,26r84,0r0,-26v0,-39,18,-50,50,-50v10,0,15,1,20,2v4,1,7,3,7,6r0,12v0,4,-2,5,-6,5r-18,0v-17,0,-22,5,-22,25r0,26r109,0v4,0,6,3,6,7r0,214xm313,-237v0,4,-3,7,-7,7r-19,0v-4,0,-7,-3,-7,-7r0,-29v0,-4,3,-7,7,-7r19,0v4,0,7,3,7,7r0,29","w":340},"\ue007":{"d":"166,-249r-59,0v-17,0,-25,5,-25,25r0,26r38,0v4,0,7,2,7,6r0,15v0,4,-3,6,-7,6r-38,0r0,164v0,4,-2,7,-6,7r-18,0v-4,0,-7,-3,-7,-7r0,-164r-35,-4v-4,0,-7,-3,-7,-7r0,-10v0,-4,3,-6,7,-6r35,0r0,-26v0,-39,20,-50,52,-50v10,0,49,0,69,3r18,0v4,0,7,3,7,7r0,150r72,-81v2,-3,3,-3,7,-3r26,0v4,0,5,2,5,4v0,1,-1,3,-2,4r-79,86r80,96v1,1,1,2,1,3v0,3,-1,5,-4,5r-26,0v-4,0,-5,-1,-8,-5r-72,-88r0,86v0,4,-3,7,-7,7r-17,0v-4,0,-7,-3,-7,-7r0,-242","w":319,"k":{"q":18,"d":18,"e":18,"\u00e9":18,"\u00ea":18,"\u00eb":18,"\u00e8":18,"o":18,"\u00f8":18,"\u0153":18,"\u00f3":18,"\u00f4":18,"\u00f6":18,"\u00f2":18,"\u00f5":18,"c":18,"\u00e7":18}},"!":{"d":"55,-264r-2,187v0,4,-3,7,-7,7r-13,0v-4,0,-7,-3,-7,-7r-3,-187v0,-4,3,-7,7,-7r18,0v4,0,7,3,7,7xm55,-7v0,4,-3,7,-7,7r-17,0v-4,0,-7,-3,-7,-7r0,-34v0,-4,3,-7,7,-7r17,0v4,0,7,3,7,7r0,34","w":78},"\"":{"d":"120,-267r0,3r-21,68v-1,5,-3,7,-7,7r-17,0v-3,0,-3,-2,-3,-4r0,-3r17,-68v1,-5,3,-7,7,-7r20,0v3,0,4,1,4,4xm59,-267v0,1,-1,2,-1,3r-21,68v-1,5,-2,7,-6,7r-17,0v-3,0,-4,-2,-4,-4v0,-1,1,-2,1,-3r16,-68v1,-5,4,-7,8,-7r20,0v3,0,4,1,4,4","w":130,"k":{",":23,"\u201a":23,"\u201e":23,".":23,"\u2026":23}},"#":{"d":"220,-184r0,0r-1,8v0,4,-3,7,-7,7r-35,0r-7,73r36,0v4,0,5,3,5,7r0,0r0,8v0,4,-4,7,-8,7r-35,0r-6,67v0,4,-2,7,-6,7r-16,0v-4,0,-6,-3,-6,-6r0,-1r6,-67r-56,0r-6,67v0,4,-2,7,-6,7r-16,0v-3,0,-6,-3,-6,-6r0,-1r6,-67r-34,0v-4,0,-5,-3,-5,-7r0,-1r0,-7v0,-4,3,-7,7,-7r34,0r6,-73r-33,0v-4,0,-6,-3,-6,-7r0,0r1,-8v0,-4,3,-7,7,-7r33,0r6,-70v0,-4,3,-6,7,-6r16,0v3,0,6,3,6,6r0,0r-6,70r55,0r7,-70v0,-4,2,-6,6,-6r16,0v4,0,6,3,6,6r0,0r-6,70r35,0v4,0,6,3,6,7xm149,-169r-56,0r-7,73r56,0","w":237},"$":{"d":"190,-69v0,31,-14,63,-66,70r0,34v0,4,-3,7,-7,7r-17,0v-4,0,-7,-3,-7,-7r0,-32v-21,0,-38,-3,-52,-6v-6,-1,-6,-2,-6,-6r0,-15v0,-4,3,-6,6,-6r1,0v17,1,42,4,59,4v43,0,55,-18,55,-43v0,-18,-10,-29,-43,-49r-35,-21v-33,-20,-50,-38,-50,-67v0,-37,24,-58,65,-63r0,-31v0,-4,3,-7,7,-7r17,0v4,0,7,3,7,7r0,30v19,1,41,3,53,5v4,1,6,2,6,6r0,15v0,4,-2,6,-6,6r-1,0v-16,-1,-41,-3,-62,-3v-37,0,-53,9,-53,35v0,17,12,26,39,43r34,20v42,25,56,45,56,74"},"%":{"d":"270,-56v0,39,-19,59,-49,59v-30,0,-48,-20,-48,-59r0,-33v0,-40,18,-59,48,-59v30,0,49,19,49,59r0,33xm234,-265v0,1,-1,2,-2,4r-150,255v-3,5,-4,7,-8,7r-18,0v-2,0,-3,0,-3,-2v0,-1,0,-4,1,-5r150,-255v3,-5,5,-6,9,-6r18,0v2,0,3,1,3,2xm113,-179v0,39,-18,59,-48,59v-30,0,-49,-20,-49,-59r0,-33v0,-40,19,-58,49,-58v30,0,48,18,48,58r0,33xm247,-56r0,-33v0,-27,-10,-38,-26,-38v-16,0,-26,11,-26,38r0,33v0,27,10,38,26,38v16,0,26,-11,26,-38xm91,-179r0,-33v0,-27,-10,-38,-26,-38v-16,0,-26,11,-26,38r0,33v0,27,10,38,26,38v16,0,26,-11,26,-38","w":285},"&":{"d":"231,-4v0,3,-2,4,-4,4r-25,0v-3,0,-5,-2,-6,-3r-18,-19v-18,15,-41,25,-71,25v-44,0,-88,-17,-88,-66r0,-3v0,-30,16,-48,52,-71r-3,-3v-34,-39,-37,-54,-37,-70r0,-3v0,-38,30,-57,76,-57v40,0,71,19,71,57r0,3v0,24,-10,40,-55,71r-10,7r65,70v10,-17,14,-39,14,-63r0,-5v0,-4,2,-6,6,-6r15,0v4,0,7,2,7,6r0,5v0,31,-8,61,-23,83r32,34v1,1,2,3,2,4xm148,-210r0,-3v0,-24,-16,-33,-41,-33v-27,0,-47,8,-47,33r0,3v0,13,2,22,31,54r4,4r12,-7v35,-22,41,-31,41,-51xm161,-41r-72,-76v-29,18,-37,29,-37,51r0,3v0,29,26,41,55,41v23,0,41,-8,54,-19","w":244},"\u2019":{"d":"57,-267v0,1,-1,2,-1,3r-22,68v-1,5,-3,7,-7,7r-13,0v-3,0,-4,-2,-4,-4v0,-1,1,-2,1,-3r13,-68v1,-5,3,-7,7,-7r22,0v3,0,4,1,4,4","w":66,"k":{",":23,"\u201a":23,"\u201e":23,".":23,"\u2026":23}},"(":{"d":"101,72v0,1,-1,3,-4,3r-17,0v-4,0,-5,0,-8,-4v-32,-39,-50,-103,-50,-166r0,-5v0,-63,18,-128,50,-167v3,-4,4,-4,8,-4r17,0v3,0,4,2,4,3v0,1,0,3,-1,4v-31,45,-47,101,-47,164r0,5v0,63,16,119,47,164v1,1,1,2,1,3","w":109},")":{"d":"93,-95v0,63,-18,127,-50,166v-3,4,-4,4,-8,4r-17,0v-3,0,-4,-2,-4,-3v0,-1,0,-2,1,-3v31,-45,47,-101,47,-164r0,-5v0,-63,-16,-119,-47,-164v-1,-1,-1,-3,-1,-4v0,-1,1,-3,4,-3r17,0v4,0,5,0,8,4v32,39,50,104,50,167r0,5","w":109},"*":{"d":"151,-215v0,3,-2,4,-5,5r-45,14r28,38v1,1,1,4,1,5v0,1,-1,3,-2,4r-8,6v-1,1,-2,2,-3,2v-2,0,-5,-2,-6,-4r-27,-38r-27,38v-1,2,-4,4,-6,4v-1,0,-2,-1,-3,-2r-9,-6v-1,-1,-2,-3,-2,-4v0,-1,1,-4,2,-5r28,-38r-45,-14v-3,-1,-5,-2,-5,-5r0,-2r4,-11v1,-3,2,-3,4,-3v1,0,2,1,3,1r45,14r0,-47v0,-4,1,-7,5,-7r11,0v4,0,6,3,6,7r-1,47r45,-14v1,0,3,-1,4,-1v2,0,3,0,4,3r3,11v0,1,1,1,1,2","w":167},"+":{"d":"191,-134v0,4,-3,6,-7,6r-62,0r0,62v0,4,-2,7,-6,7r-14,0v-4,0,-6,-3,-6,-7r0,-62r-62,0v-4,0,-7,-2,-7,-6r0,-14v0,-4,3,-6,7,-6r62,0r0,-62v0,-4,2,-7,6,-7r14,0v4,0,6,3,6,7r0,62r62,0v4,0,7,2,7,6r0,14"},",":{"d":"61,-42v0,1,-1,1,-1,2r-27,68v-2,5,-3,7,-7,7r-14,0v-3,0,-5,-1,-5,-4v0,-1,1,-2,1,-3r20,-68v1,-5,3,-6,7,-6r21,0v3,0,5,1,5,4","w":77,"k":{"\"":23,"'":23,"\u2019":23,"\u201d":23}},"-":{"d":"103,-98v0,4,-3,6,-7,6r-72,0v-4,0,-7,-2,-7,-6r0,-14v0,-4,3,-7,7,-7r72,0v4,0,7,3,7,7r0,14","w":119},".":{"d":"54,-8v0,4,-3,8,-7,8r-17,0v-4,0,-7,-4,-7,-8r0,-33v0,-4,3,-7,7,-7r17,0v4,0,7,3,7,7r0,33","w":77,"k":{"\"":23,"'":23,"\u2019":23,"\u201d":23}},"\/":{"d":"120,-262r0,2r-82,253v-1,4,-2,7,-6,7r-19,0v-3,0,-5,-2,-5,-5v0,-1,1,-1,1,-2r81,-253v1,-4,2,-7,6,-7r19,0v3,0,5,2,5,5","w":127,"k":{"\/":12}},"0":{"d":"197,-109v0,80,-34,112,-88,112v-54,0,-88,-32,-88,-112r0,-49v0,-80,34,-112,88,-112v54,0,88,32,88,112r0,49xm165,-109r0,-49v0,-61,-22,-84,-56,-84v-34,0,-55,23,-55,84r0,49v0,61,21,84,55,84v34,0,56,-23,56,-84"},"1":{"d":"180,0r-148,0v-4,0,-7,-2,-7,-6r0,-16v0,-4,3,-6,7,-6r58,0r0,-206r-57,24v-3,1,-8,2,-8,-3r0,-18v0,-3,1,-4,4,-5r64,-29v3,-1,6,-2,8,-2r15,0v4,0,6,2,6,6r0,233r58,0v4,0,7,2,7,6r0,16v0,4,-3,6,-7,6"},"2":{"d":"189,-206v0,28,-13,47,-46,70r-35,23v-40,27,-50,46,-50,77r0,8r121,0v4,0,7,2,7,6r0,16v0,4,-3,6,-7,6r-143,0v-4,0,-7,-3,-7,-7r0,-29v0,-37,16,-69,55,-95r36,-24v30,-20,37,-29,37,-51v0,-26,-15,-37,-54,-37v-19,0,-43,3,-63,6r-2,0v-4,0,-6,-3,-6,-7r0,-12v0,-4,3,-6,7,-7v18,-5,43,-7,64,-7v58,0,86,20,86,64"},"3":{"d":"188,-75v0,54,-37,78,-90,78v-23,0,-44,-4,-61,-8v-4,-1,-7,-3,-7,-7r0,-12v0,-4,2,-6,6,-6r1,0v22,3,44,5,61,5v39,0,56,-15,56,-50r0,-7v0,-19,-9,-44,-42,-44r-66,0v-4,0,-6,-2,-6,-6r0,-13v0,-4,2,-7,6,-7r66,0v35,0,42,-24,42,-43r0,-5v0,-30,-15,-43,-56,-43v-21,0,-38,3,-61,6r-1,0v-4,0,-6,-2,-6,-6r0,-13v0,-3,3,-6,7,-7v17,-4,38,-7,61,-7v54,0,90,17,90,70r0,5v0,24,-13,45,-35,56v26,13,35,36,35,57r0,7"},"4":{"d":"204,-78v0,4,-3,7,-7,7r-31,0r0,64v0,4,-2,7,-6,7r-21,0v-4,0,-6,-3,-6,-7r0,-64r-104,0v-11,0,-15,-4,-15,-14r0,-14v0,-5,1,-9,4,-13r107,-150v2,-3,4,-5,10,-5r22,0v6,0,9,2,9,7r0,161r31,0v4,0,7,3,7,7r0,14xm133,-99r0,-123v0,-1,0,-2,-1,-2r-1,0v-1,0,-1,1,-2,2r-84,118v-1,1,-1,2,-1,3v0,1,1,2,3,2r86,0"},"5":{"d":"190,-81v0,53,-34,84,-92,84v-23,0,-45,-3,-63,-7v-4,-1,-7,-2,-7,-7r0,-13v0,-4,2,-6,5,-6r2,0v23,4,45,5,63,5v41,0,59,-19,59,-56r0,-6v0,-36,-22,-48,-75,-48r-43,0v-3,0,-6,-3,-6,-6r0,0r10,-120v0,-4,3,-6,7,-6r124,0v4,0,7,2,7,6r0,15v0,4,-3,6,-7,6r-103,0r-6,78r17,0v67,0,108,17,108,75r0,6"},"6":{"d":"197,-89v0,57,-29,92,-88,92v-54,0,-87,-32,-87,-103r0,-63v0,-77,32,-107,94,-107v28,0,46,3,61,6v4,1,9,3,9,7r0,14v0,4,-3,6,-7,6r-2,0v-18,-4,-38,-6,-61,-6v-55,0,-62,33,-62,80r0,4v15,-3,32,-7,54,-7v47,0,89,17,89,75r0,2xm164,-89r0,-2v0,-39,-28,-49,-56,-49v-18,0,-41,3,-54,6r0,34v0,59,20,76,55,76v33,0,55,-16,55,-65"},"7":{"d":"192,-245v0,6,-2,13,-5,19r-103,221v-2,4,-4,5,-8,5r-22,0v-4,0,-5,-2,-5,-5v0,-1,0,-3,1,-4r108,-226v0,0,1,-1,1,-2v0,-1,-1,-2,-3,-2r-123,0v-4,0,-7,-3,-7,-7r0,-15v0,-4,3,-6,7,-6r132,0v20,0,27,10,27,22","k":{"\/":36}},"8":{"d":"198,-75v0,53,-39,78,-87,78r-4,0v-48,0,-87,-25,-87,-78r0,-6v0,-22,12,-46,35,-59v-23,-12,-34,-32,-34,-56r0,-3v0,-50,37,-71,86,-71r4,0v49,0,87,21,87,71r0,3v0,24,-12,44,-35,56v23,13,35,37,35,59r0,6xm166,-196r0,-3v0,-29,-19,-44,-55,-44r-4,0v-36,0,-55,15,-55,44r0,3v0,22,13,43,46,43r22,0v33,0,46,-21,46,-43xm166,-75r0,-6v0,-21,-13,-46,-46,-46r-22,0v-33,0,-45,25,-45,46r0,6v0,31,18,50,54,50r4,0v36,0,55,-19,55,-50"},"9":{"d":"193,-105v0,77,-32,108,-94,108v-28,0,-47,-4,-62,-7v-5,-1,-8,-2,-8,-6r0,-14v0,-4,2,-7,6,-7r2,0v18,4,39,6,62,6v56,0,62,-33,62,-80r0,-4v-15,3,-32,7,-54,7v-47,0,-89,-17,-89,-75r0,-2v0,-57,29,-91,88,-91v54,0,87,31,87,102r0,63xm161,-134r0,-34v0,-59,-20,-75,-55,-75v-34,0,-56,15,-56,64r0,2v0,39,28,50,56,50v18,0,42,-4,55,-7"},":":{"d":"55,-157v0,4,-3,7,-7,7r-17,0v-4,0,-7,-3,-7,-7r0,-34v0,-4,3,-7,7,-7r17,0v4,0,7,3,7,7r0,34xm55,-7v0,4,-3,7,-7,7r-17,0v-4,0,-7,-3,-7,-7r0,-34v0,-4,3,-7,7,-7r17,0v4,0,7,3,7,7r0,34","w":78},";":{"d":"55,-157v0,4,-3,7,-7,7r-17,0v-4,0,-7,-3,-7,-7r0,-34v0,-4,3,-7,7,-7r17,0v4,0,7,3,7,7r0,34xm57,-42v0,1,-1,2,-1,3r-27,68v-2,5,-3,7,-7,7r-14,0v-3,0,-5,-2,-5,-5v0,-1,1,-1,1,-2r20,-68v1,-5,3,-7,7,-7r21,0v3,0,5,1,5,4","w":78},"<":{"d":"174,-54v0,2,-2,4,-5,4r-21,0v-4,0,-7,-1,-11,-5r-87,-74v-4,-4,-6,-8,-6,-12v0,-4,2,-8,6,-12r87,-73v4,-4,7,-5,11,-5r21,0v3,0,5,1,5,3v0,2,-1,5,-4,7r-94,80r94,81v3,2,4,4,4,6"},"=":{"d":"185,-174v0,4,-3,6,-7,6r-138,0v-4,0,-8,-2,-8,-6r0,-14v0,-4,4,-6,8,-6r138,0v4,0,7,2,7,6r0,14xm185,-94v0,4,-3,6,-7,6r-138,0v-4,0,-8,-2,-8,-6r0,-14v0,-4,4,-6,8,-6r138,0v4,0,7,2,7,6r0,14"},">":{"d":"174,-141v0,4,-3,8,-7,12r-86,74v-4,4,-8,5,-12,5r-20,0v-3,0,-5,-2,-5,-4v0,-2,1,-4,4,-6r94,-81r-94,-80v-3,-2,-4,-5,-4,-7v0,-2,2,-3,5,-3r20,0v4,0,8,1,12,5r86,73v4,4,7,8,7,12"},"?":{"d":"139,-211v0,17,-6,30,-33,61r-16,19v-13,15,-19,21,-19,37r0,17v0,4,-3,7,-7,7r-16,0v-4,0,-7,-3,-7,-7r0,-17v0,-23,5,-34,24,-55r16,-18v18,-20,23,-30,23,-44r0,-5v0,-19,-12,-26,-37,-26v-17,0,-33,2,-49,4r-1,0v-4,0,-5,-2,-5,-6r0,-13v0,-4,0,-7,6,-8v15,-3,33,-5,49,-5v41,0,72,13,72,54r0,5xm71,-7v0,4,-3,7,-7,7r-17,0v-4,0,-7,-3,-7,-7r0,-33v0,-4,3,-8,7,-8r17,0v4,0,7,4,7,8r0,33","w":160},"@":{"d":"262,-132v0,45,-12,73,-34,90v-22,17,-55,23,-97,23v-36,0,-58,-18,-58,-50r0,-7r4,-42v4,-37,27,-57,66,-57v15,0,32,2,46,5v5,1,8,3,8,8r0,1r-11,113v45,-6,52,-39,52,-84v0,-45,-29,-83,-88,-83v-63,0,-101,36,-106,91r-5,55v0,4,-1,7,-1,11v0,43,29,77,91,77v17,0,34,-1,51,-2r1,0v3,0,3,2,3,2r0,12v0,4,-2,5,-6,5v-9,1,-28,3,-50,3v-69,0,-113,-39,-113,-97r0,-11r6,-56v6,-65,53,-111,130,-111v74,0,111,50,111,104xm165,-147v-8,-1,-17,-2,-25,-2v-21,0,-31,10,-33,32r-4,41r0,6v0,17,8,25,29,25r8,0v5,0,11,0,16,-1","w":276},"A":{"d":"217,-6v0,3,-2,6,-6,6r-21,0v-3,0,-5,-2,-6,-5r-23,-83r-94,0r-23,83v-1,3,-3,5,-6,5r-21,0v-4,0,-7,-3,-7,-6v0,-1,1,-1,1,-2r66,-235v6,-22,23,-27,37,-27v13,0,30,5,36,27r67,235r0,2xm154,-117r-33,-118v-1,-4,-3,-7,-7,-7v-4,0,-6,3,-7,7r-33,118r80,0","w":227,"k":{"\ufb02":16,"\ufb01":16,"O":9,"\u00d8":9,"\u0152":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"\u00d5":9,"Q":9,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"y":19,"\u00fd":19,"\u00ff":19,"\u2019":16,"\u201d":16,"C":8,"\u00c7":8,"G":8,"L":6,"\u0141":6,"S":6,"\u0160":6,"T":32,"U":9,"\u00da":9,"\u00db":9,"\u00dc":9,"\u00d9":9,"V":25,"W":12,"Y":31,"\u00dd":31,"\u0178":31,"c":4,"\u00e7":4,"d":4,"f":16,"g":4,"q":4,"t":16,"v":19,"w":14}},"B":{"d":"204,-74v0,60,-49,77,-105,77v-24,0,-45,-2,-59,-4v-8,-1,-12,-4,-12,-13r0,-240v0,-8,4,-12,12,-13v12,-1,34,-3,57,-3v57,0,105,15,105,69r0,6v0,27,-14,48,-38,57v25,9,40,30,40,58r0,6xm170,-195r0,-6v0,-35,-29,-41,-73,-41v-12,0,-26,1,-36,1r0,89r56,0v42,0,53,-20,53,-43xm171,-74r0,-6v0,-24,-12,-46,-54,-46r-56,0r0,99v12,0,25,2,38,2v45,0,72,-10,72,-49","w":221,"k":{"\u00c6":7,"T":12,"Y":12,"\u00dd":12,"\u0178":12,"A":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7}},"C":{"d":"184,-9v0,4,-4,6,-8,7v-15,3,-28,5,-59,5v-44,0,-95,-25,-95,-112r0,-50v0,-88,51,-111,95,-111v23,0,44,3,60,6v3,0,6,1,6,4r0,19v0,2,0,4,-4,4r-2,0v-13,-1,-39,-3,-60,-3v-35,0,-63,20,-63,81r0,50v0,60,28,82,63,82v21,0,46,-2,59,-3r2,0v4,0,6,2,6,6r0,15","w":196,"k":{"O":10,"\u00d8":10,"\u0152":10,"\u00d3":10,"\u00d4":10,"\u00d6":10,"\u00d2":10,"\u00d5":10,"Q":10,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"y":8,"\u00fd":8,"\u00ff":8,"C":6,"\u00c7":6,"G":10}},"D":{"d":"210,-109v0,77,-42,112,-109,112v-27,0,-55,-2,-65,-4v-5,-1,-8,-4,-8,-9r0,-247v0,-5,3,-8,8,-9v10,-2,38,-4,65,-4v67,0,109,34,109,112r0,49xm177,-109r0,-49v0,-65,-33,-84,-76,-84v-17,0,-28,0,-40,1r0,215v12,1,23,0,40,0v43,0,76,-18,76,-83","w":230,"k":{"T":13,"V":7,"W":4,"Y":11,"\u00dd":11,"\u0178":11,"A":8,"\u00c6":8,"\u00c1":8,"\u00c2":8,"\u00c4":8,"\u00c0":8,"\u00c5":8,"\u00c3":8,"X":11,"Z":8,"\u017d":8}},"E":{"d":"179,-4v0,2,-2,5,-4,5v-14,1,-49,2,-70,2v-50,0,-77,-19,-77,-67r0,-139v0,-48,27,-67,77,-67v21,0,55,1,70,2v2,0,4,3,4,5r0,18v0,3,-1,5,-4,5r-70,0v-38,0,-44,10,-44,37r0,50r110,0v4,0,8,3,8,7r0,14v0,4,-4,7,-8,7r-110,0r0,61v0,27,6,37,44,37r70,0v3,0,4,1,4,4r0,19","w":198},"F":{"d":"179,-132v0,4,-4,7,-8,7r-110,0r0,118v0,4,-3,7,-7,7r-19,0v-4,0,-7,-3,-7,-7r0,-196v0,-48,27,-67,77,-67v21,0,55,1,70,2v2,0,4,3,4,5r0,18v0,3,-1,5,-4,5r-70,0v-38,0,-44,10,-44,37r0,50r110,0v4,0,8,3,8,7r0,14","w":198,"k":{"\u201e":33,"\u201a":33,"O":4,"\u00d8":4,"\u0152":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"o":10,"\u00f8":10,"\u0153":10,"\u00f3":10,"\u00f4":10,"\u00f6":10,"\u00f2":10,"\u00f5":10,",":33,".":33,"\u2026":33,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22}},"G":{"d":"192,-11v0,4,-2,7,-6,8v-18,3,-38,6,-72,6v-45,0,-93,-30,-93,-112r0,-49v0,-87,50,-112,96,-112v33,0,55,3,69,5v3,0,6,1,6,5r0,18v0,3,-2,4,-5,4r-1,0v-21,-2,-38,-2,-69,-2v-33,0,-63,17,-63,82r0,49v0,59,27,82,60,82v22,0,36,-1,45,-2r0,-103v0,-4,3,-7,7,-7r19,0v4,0,7,3,7,7r0,121","w":220,"k":{"V":5}},"H":{"d":"217,-7v0,4,-3,7,-7,7r-19,0v-4,0,-7,-3,-7,-7r0,-120r-123,0r0,120v0,4,-3,7,-7,7r-19,0v-4,0,-7,-3,-7,-7r0,-253v0,-4,3,-7,7,-7r19,0v4,0,7,3,7,7r0,104r123,0r0,-104v0,-4,3,-7,7,-7r19,0v4,0,7,3,7,7r0,253","w":244},"I":{"d":"64,-7v0,4,-2,7,-6,7r-20,0v-4,0,-6,-3,-6,-7r0,-254v0,-4,2,-6,6,-6r20,0v4,0,6,2,6,6r0,254","w":96},"J":{"d":"64,13v0,35,-15,52,-55,52v-8,0,-17,-2,-19,-3v-1,-1,-3,-2,-3,-4r0,-13v0,-4,4,-6,8,-6r14,0v19,0,23,-8,23,-26r0,-274v0,-4,3,-6,7,-6r19,0v4,0,6,2,6,6r0,274","w":92},"K":{"d":"203,-4v0,2,-2,4,-5,4r-28,0v-3,0,-6,-1,-8,-4r-101,-123r0,120v0,4,-3,7,-7,7r-19,0v-4,0,-7,-3,-7,-7r0,-254v0,-4,3,-6,7,-6r19,0v4,0,7,2,7,6r0,117r104,-120v2,-2,3,-3,7,-3r26,0v4,0,5,1,5,3v0,1,-1,3,-2,4r-108,122r108,130v1,1,2,3,2,4","w":218,"k":{"\u00c7":25,"w":18,"v":21,"t":10,"q":13,"d":16,"V":4,"T":5,"Q":17,"G":25,"-":14,"O":17,"\u00d8":17,"\u0152":17,"\u00d3":17,"\u00d4":17,"\u00d6":17,"\u00d2":17,"\u00d5":17,"e":16,"\u00e9":16,"\u00ea":16,"\u00eb":16,"\u00e8":16,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"u":15,"\u00fa":15,"\u00fb":15,"\u00fc":15,"\u00f9":15,"y":20,"\u00fd":20,"\u00ff":20,"\u2019":6,"\u201d":6,"C":25,"L":6,"\u0141":6,"U":6,"\u00da":6,"\u00db":6,"\u00dc":6,"\u00d9":6,"c":16,"\u00e7":16,"f":5,"\ufb01":5,"\ufb02":5,"E":13,"\u00c9":13,"\u00ca":13,"\u00cb":13,"\u00c8":13,"\u2013":14,"\u2014":14}},"L":{"d":"179,-6v0,2,-2,5,-4,5v-9,1,-36,4,-70,4v-39,0,-77,-8,-77,-67r0,-196v0,-4,3,-7,7,-7r19,0v4,0,7,3,7,7r0,196v0,27,6,37,44,37r70,0v3,0,4,1,4,4r0,17","w":185,"k":{"O":16,"\u00d8":16,"\u0152":16,"\u00d3":16,"\u00d4":16,"\u00d6":16,"\u00d2":16,"\u00d5":16,"Q":16,"e":8,"\u00e9":8,"\u00ea":8,"\u00eb":8,"\u00e8":8,"o":9,"\u00f8":9,"\u0153":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9,"y":19,"\u00fd":19,"\u00ff":19,"C":12,"\u00c7":12,"G":14,"S":6,"\u0160":6,"T":36,"U":14,"\u00da":14,"\u00db":14,"\u00dc":14,"\u00d9":14,"V":33,"W":13,"Y":37,"\u00dd":37,"\u0178":37,"v":18,"w":10,"E":7,"\u00c9":7,"\u00ca":7,"\u00cb":7,"\u00c8":7,"\u2013":14,"\u2014":14,"-":14,"\u00ae":21,"\u2122":21}},"M":{"d":"246,-7v0,4,-3,7,-7,7r-18,0v-4,0,-7,-3,-7,-7r0,-214r0,-1v0,0,-1,0,-1,1r-51,107v-4,7,-8,10,-17,10r-16,0v-9,0,-12,-3,-16,-10r-52,-107v0,-1,-1,-1,-1,-1r0,1r0,214v0,4,-3,7,-7,7r-18,0v-4,0,-7,-3,-7,-7r0,-250v0,-6,5,-10,11,-10r23,0v6,0,9,1,11,6r60,123v1,3,2,4,4,4v2,0,3,-1,4,-4r60,-123v2,-5,5,-6,11,-6r24,0v6,0,10,4,10,10r0,250","w":273,"k":{"V":6,"Y":13,"\u00dd":13,"\u0178":13}},"N":{"d":"217,-10v0,6,-5,10,-11,10r-22,0v-6,0,-10,-2,-12,-6r-111,-211v0,-1,-1,-1,-1,-1r0,1r0,210v0,4,-3,7,-7,7r-18,0v-4,0,-7,0,-7,-4r0,-253v0,-6,5,-10,11,-10r19,0v10,0,12,2,15,7r111,210r0,1r1,-1r0,-211v0,-4,2,-6,6,-6r19,0v4,0,7,2,7,6r0,251","w":244,"k":{"T":12,"V":8,"Y":6,"\u00dd":6,"\u0178":6}},"O":{"d":"216,-111v0,80,-40,114,-97,114v-57,0,-97,-34,-97,-114r0,-46v0,-80,40,-113,97,-113v57,0,97,33,97,113r0,46xm183,-111r0,-46v0,-60,-24,-83,-64,-83v-39,0,-64,23,-64,83r0,46v0,60,24,84,64,84v39,0,64,-24,64,-84","w":237,"k":{"T":16,"V":8,"W":4,"Y":14,"\u00dd":14,"\u0178":14,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"X":16,"Z":13,"\u017d":13}},"P":{"d":"197,-187v0,60,-43,80,-101,80v-12,0,-27,0,-36,-1r0,101v0,4,-2,7,-6,7r-19,0v-4,0,-7,-3,-7,-7r0,-251v0,-5,4,-8,9,-9v15,-2,38,-3,59,-3v58,0,101,20,101,78r0,5xm165,-187r0,-5v0,-36,-23,-50,-69,-50v-11,0,-27,0,-36,1r0,106v8,0,27,1,36,1v49,0,69,-16,69,-53","w":213,"k":{"\u00c6":22,"\u201e":39,"\u201a":39,"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e4":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,",":39,".":39,"\u2026":39,"A":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"Z":12,"\u017d":12}},"Q":{"d":"216,-111v0,72,-33,107,-81,113r0,15v0,18,4,21,22,21r21,0v4,0,8,2,8,6r0,12v0,6,-11,9,-29,9v-35,0,-54,-9,-54,-47r0,-17v-48,-6,-81,-40,-81,-112r0,-46v0,-80,40,-113,97,-113v57,0,97,33,97,113r0,46xm183,-111r0,-46v0,-60,-24,-83,-64,-83v-39,0,-64,23,-64,83r0,46v0,60,24,84,64,84v39,0,64,-24,64,-84","w":237,"k":{"X":16,"W":4,"V":8,"T":16,"Y":14,"\u00dd":14,"\u0178":14,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"Z":13,"\u017d":13}},"R":{"d":"211,-5v0,3,-2,5,-5,5r-23,0v-4,0,-6,0,-9,-5r-65,-107r-3,0r-6,0v-12,0,-21,0,-40,-1r0,106v0,4,-2,7,-6,7r-19,0v-4,0,-7,-3,-7,-7r0,-252v0,-5,3,-7,9,-8v15,-2,42,-3,63,-3v57,0,101,19,101,77r0,3v0,40,-24,64,-57,73r66,109v1,1,1,2,1,3xm168,-190r0,-3v0,-36,-23,-47,-68,-47v-11,0,-31,0,-40,1r0,98v16,0,32,1,40,1v44,0,68,-11,68,-50","w":225,"k":{"g":5,"W":3,"V":12,"T":15,"Q":7,"G":7,"O":7,"\u00d8":7,"\u0152":7,"\u00d3":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u00d5":7,"e":8,"\u00e9":8,"\u00ea":8,"\u00eb":8,"\u00e8":8,"o":9,"\u00f8":9,"\u0153":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9,"y":7,"\u00fd":7,"\u00ff":7,"C":7,"\u00c7":7,"Y":15,"\u00dd":15,"\u0178":15,"c":5,"\u00e7":5}},"S":{"d":"180,-69v0,35,-18,72,-89,72v-25,0,-44,-3,-60,-6v-6,-1,-7,-2,-7,-6r0,-14v0,-4,4,-6,7,-6r1,0v17,1,42,2,59,2v43,0,55,-17,55,-42v0,-18,-10,-29,-43,-49r-35,-21v-33,-20,-50,-38,-50,-67v0,-44,31,-64,86,-64v21,0,49,2,63,4v4,1,6,2,6,6r0,16v0,4,-2,6,-6,6r-1,0v-16,-1,-41,-2,-62,-2v-37,0,-53,8,-53,34v0,17,12,26,39,43r33,20v42,25,57,45,57,74","w":198,"k":{"\u00c6":6,"y":6,"\u00fd":6,"\u00ff":6,"V":9,"W":5,"Y":8,"\u00dd":8,"\u0178":8,"t":14,"v":8,"A":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"x":5}},"T":{"d":"200,-245v0,4,-3,6,-7,6r-70,0r0,232v0,4,-3,7,-7,7r-20,0v-4,0,-6,-3,-6,-7r0,-232r-70,0v-4,0,-7,-2,-7,-6r0,-16v0,-4,3,-6,7,-6r173,0v4,0,7,2,7,6r0,16","w":212,"k":{"x":14,"w":12,"v":12,"t":12,"r":17,"q":29,"p":14,"n":14,"m":14,"g":23,"d":30,"Q":16,"G":11,"F":6,"O":16,"\u00d8":16,"\u0152":16,"\u00d3":16,"\u00d4":16,"\u00d6":16,"\u00d2":16,"\u00d5":16,"a":31,"\u00e6":31,"\u00e1":31,"\u00e2":31,"\u00e4":31,"\u00e0":31,"\u00e5":31,"\u00e3":31,"e":29,"\u00e9":29,"\u00ea":29,"\u00eb":29,"\u00e8":29,"o":32,"\u00f8":32,"\u0153":32,"\u00f3":32,"\u00f4":32,"\u00f6":32,"\u00f2":32,"\u00f5":32,"u":15,"\u00fa":15,"\u00fb":15,"\u00fc":15,"\u00f9":15,"y":23,"\u00fd":23,"\u00ff":23,",":27,"\u201a":27,"\u201e":27,".":27,"\u2026":27,"C":14,"\u00c7":14,"c":28,"\u00e7":28,"A":32,"\u00c6":32,"\u00c1":32,"\u00c2":32,"\u00c4":32,"\u00c0":32,"\u00c5":32,"\u00c3":32,"E":10,"\u00c9":10,"\u00ca":10,"\u00cb":10,"\u00c8":10,"s":28,"\u0161":28,"z":13,"\u017e":13}},"U":{"d":"211,-97v0,69,-34,100,-92,100v-58,0,-92,-31,-92,-100r0,-164v0,-4,3,-6,7,-6r19,0v4,0,7,2,7,6r0,164v0,46,14,71,59,71v45,0,59,-24,59,-71r0,-164v0,-4,3,-6,7,-6r19,0v4,0,7,2,7,6r0,164","w":238,"k":{"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9}},"V":{"d":"219,-261r0,2r-66,234v-6,23,-23,28,-37,28v-13,0,-31,-5,-37,-28r-66,-234v0,-1,-1,-1,-1,-2v0,-4,3,-6,7,-6r21,0v3,0,5,2,6,5r63,229v1,5,3,8,7,8v4,0,6,-3,7,-8r63,-229v1,-3,3,-5,6,-5r21,0v4,0,6,2,6,6","w":231,"k":{"\u00bf":33,"\u00a1":9,"x":14,"w":9,"v":9,"r":12,"q":18,"p":9,"n":9,"m":9,"g":17,"Q":8,"G":8,"O":8,"\u00d8":8,"\u0152":8,"\u00d3":8,"\u00d4":8,"\u00d6":8,"\u00d2":8,"\u00d5":8,"a":19,"\u00e6":19,"\u00e1":19,"\u00e2":19,"\u00e4":19,"\u00e0":19,"\u00e5":19,"\u00e3":19,"e":18,"\u00e9":18,"\u00ea":18,"\u00eb":18,"\u00e8":18,"o":18,"\u00f8":18,"\u0153":18,"\u00f3":18,"\u00f4":18,"\u00f6":18,"\u00f2":18,"\u00f5":18,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13,"y":12,"\u00fd":12,"\u00ff":12,",":27,"\u201a":27,"\u201e":27,".":27,"\u2026":27,"C":9,"\u00c7":9,"S":8,"\u0160":8,"c":17,"\u00e7":17,"A":25,"\u00c6":25,"\u00c1":25,"\u00c2":25,"\u00c4":25,"\u00c0":25,"\u00c5":25,"\u00c3":25,"E":9,"\u00c9":9,"\u00ca":9,"\u00cb":9,"\u00c8":9,"s":18,"\u0161":18,"z":10,"\u017e":10}},"W":{"d":"285,-261r0,1r-40,243v-3,15,-11,18,-23,18r-15,0v-10,0,-18,-7,-21,-18r-35,-133v-1,-3,-1,-3,-2,-3r0,0r-1,0v-1,0,-1,0,-2,3r-35,133v-3,11,-11,18,-21,18r-15,0v-12,0,-19,-3,-22,-18r-40,-243r0,-1v0,-4,2,-6,6,-6r21,0v3,0,5,2,6,6r35,229v1,4,0,5,1,5v1,0,2,-2,3,-5r35,-133v3,-10,8,-15,17,-15r23,0v9,0,14,5,17,15r35,133v1,3,2,5,3,5v1,0,1,-1,2,-5r35,-229v1,-4,3,-6,6,-6r21,0v4,0,6,2,6,6","w":297,"k":{"\u00bf":19,"Q":5,"G":4,"O":5,"\u00d8":5,"\u0152":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"a":9,"\u00e6":9,"\u00e1":9,"\u00e2":9,"\u00e4":9,"\u00e0":9,"\u00e5":9,"\u00e3":9,"e":11,"\u00e9":11,"\u00ea":11,"\u00eb":11,"\u00e8":11,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"C":4,"\u00c7":4,"A":16,"\u00c6":16,"\u00c1":16,"\u00c2":16,"\u00c4":16,"\u00c0":16,"\u00c5":16,"\u00c3":16}},"X":{"d":"217,-5v0,3,-1,5,-5,5r-23,0v-4,0,-5,-1,-8,-5r-65,-105r-65,105v-3,4,-4,5,-7,5r-22,0v-4,0,-5,-2,-5,-5v0,-1,0,-3,1,-4r80,-127r-80,-123v-1,-1,-1,-2,-1,-3v0,-3,2,-5,6,-5r23,0v4,0,6,0,7,3r64,103r63,-103v2,-3,4,-3,7,-3r21,0v4,0,6,2,6,5v0,1,0,2,-1,3r-78,124r81,126v1,1,1,3,1,4","w":232,"k":{"v":15,"Q":16,"G":13,"O":16,"\u00d8":16,"\u0152":16,"\u00d3":16,"\u00d4":16,"\u00d6":16,"\u00d2":16,"\u00d5":16,"e":10,"\u00e9":10,"\u00ea":10,"\u00eb":10,"\u00e8":10,"o":12,"\u00f8":12,"\u0153":12,"\u00f3":12,"\u00f4":12,"\u00f6":12,"\u00f2":12,"\u00f5":12,"u":12,"\u00fa":12,"\u00fb":12,"\u00fc":12,"\u00f9":12,"y":13,"\u00fd":13,"\u00ff":13,"C":13,"\u00c7":13}},"Y":{"d":"198,-262v0,1,0,3,-1,4r-56,125v-6,14,-14,21,-20,24r0,102v0,4,-2,7,-6,7r-20,0v-4,0,-6,-3,-6,-7r0,-102v-6,-3,-14,-10,-20,-24r-55,-125v-1,-1,-1,-3,-1,-4v0,-3,2,-5,6,-5r22,0v3,0,5,2,6,5r50,116v4,8,6,10,8,10v3,0,4,-2,8,-10r50,-116v1,-3,4,-5,7,-5r22,0v4,0,6,2,6,5","w":209,"k":{"O":14,"\u00d8":14,"\u0152":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"Q":14,"a":31,"\u00e6":31,"\u00e1":31,"\u00e2":31,"\u00e4":31,"\u00e0":31,"\u00e5":31,"\u00e3":31,"e":34,"\u00e9":34,"\u00ea":34,"\u00eb":34,"\u00e8":34,"o":35,"\u00f8":35,"\u0153":35,"\u00f3":35,"\u00f4":35,"\u00f6":35,"\u00f2":35,"\u00f5":35,"u":26,"\u00fa":26,"\u00fb":26,"\u00fc":26,"\u00f9":26,"y":19,"\u00fd":19,"\u00ff":19,",":33,"\u201a":33,"\u201e":33,".":33,"\u2026":33,"C":16,"\u00c7":16,"G":16,"S":8,"\u0160":8,"c":33,"\u00e7":33,"d":33,"f":13,"\ufb01":13,"\ufb02":13,"g":33,"q":35,"t":13,"v":21,"w":20,"A":31,"\u00c6":31,"\u00c1":31,"\u00c2":31,"\u00c4":31,"\u00c0":31,"\u00c5":31,"\u00c3":31,"E":10,"\u00c9":10,"\u00ca":10,"\u00cb":10,"\u00c8":10,"\u2013":28,"\u2014":28,"-":28,"x":19,"s":26,"\u0161":26,"z":25,"\u017e":25,"\u00a1":20,"m":17,"n":17,"p":27,"\u00bf":46,"r":27,"\/":33}},"Z":{"d":"196,-6v0,4,-3,6,-7,6r-139,0v-23,0,-30,-5,-30,-24v0,-6,2,-16,6,-21r128,-188v1,-1,2,-2,2,-3v0,-1,-2,-2,-4,-2r-120,0v-4,0,-7,-2,-7,-6r0,-17v0,-4,3,-6,7,-6r129,0v20,0,30,3,30,23v0,6,-2,17,-6,22r-128,187v-1,1,-1,2,-1,3v0,1,0,2,3,2r130,0v4,0,7,3,7,7r0,17","w":214},"[":{"d":"109,63v0,4,-3,7,-7,7r-67,0v-4,0,-6,-3,-6,-7r0,-324v0,-4,2,-6,6,-6r67,0v4,0,7,3,7,7r0,12v0,4,-3,7,-7,7r-41,0r0,285r41,0v4,0,7,3,7,7r0,12","w":117},"\\":{"d":"120,-5v0,3,-2,5,-5,5r-19,0v-4,0,-5,-3,-6,-7r-81,-253v0,-1,-1,-1,-1,-2v0,-3,2,-5,5,-5r19,0v4,0,5,3,6,7r82,253r0,2","w":127},"]":{"d":"89,63v0,4,-2,7,-6,7r-67,0v-4,0,-7,-3,-7,-7r0,-12v0,-4,3,-7,7,-7r41,0r0,-285r-41,0v-4,0,-7,-3,-7,-7r0,-12v0,-4,3,-7,7,-7r67,0v4,0,6,2,6,6r0,324","w":117},"^":{"d":"182,-206v0,2,-1,3,-4,3r-22,0v-5,0,-6,-2,-10,-6r-37,-43r-37,43v-4,4,-5,6,-10,6r-22,0v-3,0,-4,-1,-4,-3v0,-1,1,-3,2,-4r41,-54v4,-5,6,-6,11,-6r38,0v5,0,7,1,11,6r41,54v1,1,2,3,2,4"},"_":{"d":"189,32v0,4,-3,6,-7,6r-186,0v-4,0,-7,-2,-7,-6r0,-9v0,-4,3,-5,7,-5r186,0v4,0,7,1,7,5r0,9","w":177},"\u2018":{"d":"57,-267v0,1,-1,2,-1,3r-13,68v-1,5,-3,7,-7,7r-22,0v-3,0,-4,-1,-4,-4v0,-1,1,-2,1,-3r22,-68v1,-5,3,-7,7,-7r13,0v3,0,4,2,4,4","w":66,"k":{"A":16,"\u00c6":16,"\u00c1":16,"\u00c2":16,"\u00c4":16,"\u00c0":16,"\u00c5":16,"\u00c3":16}},"a":{"d":"162,-7v0,4,-3,7,-7,7r-16,0v-4,0,-8,-3,-8,-7r0,-8v-17,10,-35,18,-55,18v-31,0,-59,-14,-59,-59r0,-4v0,-39,23,-58,87,-58r27,0r0,-15v0,-30,-11,-41,-39,-41v-23,0,-41,2,-55,3r-2,0v-3,0,-6,0,-6,-5r0,-13v0,-4,2,-6,7,-7v15,-3,32,-5,56,-5v50,0,70,26,70,68r0,126xm131,-38r0,-58r-27,0v-44,0,-55,10,-55,36r0,4v0,26,12,33,33,33v17,0,32,-6,49,-15","w":186,"k":{"y":8,"\u00fd":8,"\u00ff":8,"f":7,"\ufb01":7,"\ufb02":7,"t":9,"v":11}},"b":{"d":"177,-86v0,54,-25,89,-79,89v-22,0,-44,-3,-66,-7v-6,-1,-8,-3,-8,-8r0,-252v0,-4,3,-7,7,-7r18,0v4,0,7,3,7,7r0,67v14,-3,30,-4,42,-4v52,0,79,32,79,89r0,26xm145,-86r0,-26v0,-39,-12,-61,-47,-61v-11,0,-30,1,-42,3r0,143v12,1,30,2,42,2v36,0,47,-22,47,-61","w":194,"k":{"f":7,"\ufb01":7,"\ufb02":7,"t":11,"x":8,"\ufb03":7,"\ufb00":7,"\ufb04":7,"\ue000":7,"\ue001":7,"\ue005":7,"\ue002":7,"\ue006":7,"\ue003":7,"\ue007":7,"\ue004":7}},"c":{"d":"147,-9v0,5,-1,7,-7,8v-12,2,-28,4,-45,4v-49,0,-77,-35,-77,-88r0,-28v0,-53,28,-88,77,-88v17,0,33,2,45,4v6,1,7,3,7,8r0,13v0,4,-3,6,-6,6r-2,0v-16,-2,-26,-3,-44,-3v-29,0,-45,19,-45,60r0,28v0,40,16,60,45,60v18,0,28,-1,44,-3r2,0v3,0,6,2,6,6r0,13","w":162,"k":{"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13}},"d":{"d":"170,-12v0,5,-1,7,-7,8v-22,4,-45,7,-67,7v-54,0,-78,-35,-78,-89r0,-26v0,-57,25,-89,78,-89v11,0,29,1,43,4r0,-67v0,-4,2,-7,6,-7r19,0v4,0,6,3,6,7r0,252xm139,-27r0,-143v-12,-2,-31,-3,-43,-3v-35,0,-46,22,-46,61r0,26v0,39,10,61,46,61v12,0,31,-1,43,-2","w":194},"e":{"d":"177,-97v0,5,-3,8,-7,8r-120,0r0,5v0,43,17,59,50,59v21,0,47,-1,64,-4r2,0v3,0,5,1,5,5r0,12v0,5,-1,7,-7,8v-21,4,-40,7,-64,7v-41,0,-82,-20,-82,-87r0,-32v0,-51,29,-85,80,-85v53,0,79,34,79,85r0,19xm145,-113r0,-3v0,-41,-15,-57,-47,-57v-31,0,-48,18,-48,57r0,3r95,0","w":195,"k":{"y":7,"\u00fd":7,"\u00ff":7,"T":33,"f":7,"\ufb01":7,"\ufb02":7,"t":11,"v":7,"w":2,"x":10,"\ufb03":7,"\ufb00":7,"\ufb04":7,"\ue000":7,"\ue001":7,"\ue005":7,"\ue002":7,"\ue006":7,"\ue003":7,"\ue007":7,"\ue004":7}},"f":{"d":"128,-254v0,4,-2,5,-6,5r-18,0v-17,0,-22,5,-22,25r0,26r38,0v4,0,7,2,7,6r0,15v0,4,-3,6,-7,6r-38,0r0,164v0,4,-2,7,-6,7r-18,0v-4,0,-7,-3,-7,-7r0,-164r-35,-4v-4,0,-7,-3,-7,-7r0,-10v0,-4,3,-6,7,-6r35,0r0,-26v0,-39,18,-50,50,-50v10,0,15,1,20,2v4,1,7,3,7,6r0,12","w":137,"k":{"q":7,"g":8,"d":4,"e":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"o":8,"\u00f8":8,"\u0153":8,"\u00f3":8,"\u00f4":8,"\u00f6":8,"\u00f2":8,"\u00f5":8,",":20,"\u201a":20,"\u201e":20,".":20,"\u2026":20,"c":8,"\u00e7":8,"s":5,"\u0161":5}},"g":{"d":"188,-181v0,5,-2,6,-6,7r-13,3v6,7,12,18,12,37r0,3v0,40,-25,61,-80,61v-19,0,-32,-3,-42,-7v-6,3,-9,7,-9,12v0,6,4,10,12,12r53,13v35,9,69,19,69,53r0,3v0,35,-23,56,-82,56v-57,0,-83,-22,-83,-57r0,-3v0,-20,11,-37,23,-46r-2,-1v-12,-5,-17,-17,-17,-28r0,-1v0,-10,5,-20,15,-26v-11,-10,-17,-23,-17,-41r0,-3v0,-32,18,-64,80,-64r79,0v4,0,8,4,8,8r0,9xm150,-131r0,-3v0,-22,-10,-39,-49,-39v-40,0,-48,19,-48,39r0,3v0,16,7,36,48,36v39,0,49,-14,49,-36xm153,16r0,-3v0,-14,-12,-20,-44,-28r-41,-10v-10,9,-18,18,-18,37r0,3v0,20,12,33,52,33v41,0,51,-12,51,-32","w":201},"h":{"d":"176,-7v0,4,-3,7,-7,7r-17,0v-4,0,-8,-3,-8,-7r0,-119v0,-36,-15,-47,-38,-47v-11,0,-34,3,-50,10r0,156v0,4,-3,7,-7,7r-18,0v-4,0,-7,-3,-7,-7r0,-257v0,-4,3,-7,7,-7r18,0v4,0,7,3,7,7r0,75v17,-8,40,-12,55,-12v38,0,65,22,65,75r0,119","w":200,"k":{"t":7,"y":7,"\u00fd":7,"\u00ff":7,"f":7,"\ufb01":7,"\ufb02":7}},"i":{"d":"61,-237v0,4,-3,7,-7,7r-19,0v-4,0,-7,-3,-7,-7r0,-29v0,-4,3,-7,7,-7r19,0v4,0,7,3,7,7r0,29xm60,-7v0,4,-3,7,-7,7r-17,0v-4,0,-8,-3,-8,-7r0,-184v0,-4,4,-7,8,-7r17,0v4,0,7,3,7,7r0,184","w":88},"j":{"d":"61,-237v0,4,-3,7,-7,7r-19,0v-4,0,-7,-3,-7,-7r0,-29v0,-4,3,-7,7,-7r19,0v4,0,7,3,7,7r0,29xm60,23v0,37,-16,48,-45,48v-7,0,-12,-1,-19,-2v-5,-1,-7,-2,-7,-5r0,-14v0,-3,3,-5,8,-5r15,0v14,0,16,-4,16,-22r0,-214v0,-4,3,-7,7,-7r19,0v4,0,6,3,6,7r0,214","w":88},"k":{"d":"166,-5v0,3,-1,5,-4,5r-26,0v-4,0,-5,-1,-8,-5r-72,-88r0,86v0,4,-3,7,-7,7r-17,0v-4,0,-8,-3,-8,-7r0,-257v0,-4,4,-7,8,-7r17,0v4,0,7,3,7,7r0,150r72,-81v2,-3,3,-3,7,-3r26,0v4,0,5,2,5,4v0,1,-1,3,-2,4r-79,86r80,96v1,1,1,2,1,3","w":178,"k":{"q":10,"d":9,"a":5,"\u00e6":5,"\u00e1":5,"\u00e2":5,"\u00e4":5,"\u00e0":5,"\u00e5":5,"\u00e3":5,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"o":12,"\u00f8":12,"\u0153":12,"\u00f3":12,"\u00f4":12,"\u00f6":12,"\u00f2":12,"\u00f5":12,"c":10,"\u00e7":10}},"l":{"d":"60,-7v0,4,-3,7,-7,7r-18,0v-4,0,-7,-3,-7,-7r0,-257v0,-4,3,-7,7,-7r18,0v4,0,7,3,7,7r0,257","w":87},"m":{"d":"263,-7v0,4,-3,7,-7,7r-18,0v-4,0,-7,-3,-7,-7r0,-128v0,-30,-14,-38,-33,-38v-13,0,-28,5,-42,10v2,8,3,17,3,28r0,128v0,4,-2,7,-6,7r-19,0v-4,0,-6,-3,-6,-7r0,-128v0,-31,-9,-38,-28,-38v-13,0,-29,6,-44,14r0,152v0,4,-2,7,-6,7r-19,0v-4,0,-7,-3,-7,-7r0,-184v0,-4,3,-7,7,-7r18,0v4,0,7,3,7,7r0,7v14,-9,33,-17,53,-17v15,0,27,5,36,15v20,-9,40,-15,59,-15v32,0,59,16,59,66r0,128","w":287,"k":{"t":7,"y":5,"\u00fd":5,"\u00ff":5,"f":7,"\ufb01":7,"\ufb02":7}},"n":{"d":"176,-7v0,4,-3,7,-7,7r-17,0v-4,0,-8,-3,-8,-7r0,-119v0,-36,-12,-47,-39,-47v-15,0,-32,6,-49,14r0,152v0,4,-3,7,-7,7r-18,0v-4,0,-7,-3,-7,-7r0,-184v0,-4,3,-7,7,-7r18,0v4,0,7,3,7,7r0,7v20,-11,36,-17,57,-17v43,0,63,27,63,75r0,119","w":200,"k":{"y":8,"\u00fd":8,"\u00ff":8,"f":7,"\ufb01":7,"\ufb02":7,"t":7,"v":8,"w":7}},"o":{"d":"178,-85v0,53,-27,88,-80,88v-53,0,-80,-35,-80,-88r0,-28v0,-53,27,-88,80,-88v53,0,80,35,80,88r0,28xm147,-85r0,-28v0,-37,-15,-60,-49,-60v-33,0,-48,23,-48,60r0,28v0,37,14,60,48,60v33,0,49,-23,49,-60","w":196,"k":{"y":8,"\u00fd":8,"\u00ff":8,"f":7,"\ufb01":7,"\ufb02":7,"t":11,"v":8,"w":6,"x":13,"z":6,"\u017e":6,"\ufb03":7,"\ufb00":7,"\ufb04":7,"\ue000":7,"\ue001":7,"\ue005":7,"\ue002":7,"\ue006":7,"\ue003":7,"\ue007":7,"\ue004":7}},"p":{"d":"177,-86v0,57,-26,89,-79,89v-11,0,-28,-1,-42,-4r0,65v0,4,-3,7,-7,7r-18,0v-4,0,-7,-3,-7,-7r0,-248v0,-5,2,-7,8,-8v19,-5,44,-9,66,-9v54,0,79,35,79,89r0,26xm145,-86r0,-26v0,-38,-11,-62,-47,-62v-15,0,-32,2,-42,4r0,142v12,2,30,4,42,4v35,0,47,-23,47,-62","w":194,"k":{"\ue007":7,"\ue003":7,"\ue006":7,"\ue005":7,"\ue004":7,"\ue002":7,"\ue001":7,"\ue000":7,"\ufb04":7,"\ufb03":7,"\ufb00":7,"x":11,"w":5,"t":11,"y":7,"\u00fd":7,"\u00ff":7,"f":7,"\ufb01":7,"\ufb02":7}},"q":{"d":"170,64v0,4,-2,7,-6,7r-19,0v-4,0,-6,-3,-6,-7r0,-65v-14,3,-31,4,-43,4v-52,0,-78,-32,-78,-89r0,-26v0,-54,24,-89,78,-89v22,0,48,4,67,9v6,1,7,3,7,8r0,248xm139,-28r0,-142v-10,-2,-28,-4,-43,-4v-36,0,-46,24,-46,62r0,26v0,39,11,62,46,62v11,0,31,-2,43,-4","w":194},"r":{"d":"113,-179v0,4,-2,6,-7,6v-17,0,-32,4,-50,15r0,151v0,4,-3,7,-7,7r-18,0v-4,0,-7,-3,-7,-7r0,-184v0,-4,3,-7,7,-7r17,0v4,0,7,3,7,7r0,8v18,-13,35,-18,51,-18v5,0,7,3,7,7r0,15","w":123,"k":{"q":10,"g":9,"d":10,"a":10,"\u00e6":10,"\u00e1":10,"\u00e2":10,"\u00e4":10,"\u00e0":10,"\u00e5":10,"\u00e3":10,"e":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"o":9,"\u00f8":9,"\u0153":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9,",":11,"\u201a":11,"\u201e":11,".":11,"\u2026":11,"c":9,"\u00e7":9}},"s":{"d":"150,-50v0,37,-28,53,-68,53v-13,0,-38,-2,-56,-6v-5,-1,-8,-3,-8,-7r0,-13v0,-3,2,-5,6,-5r2,0v17,2,43,4,56,4v23,0,36,-7,36,-26v0,-11,-6,-18,-27,-30r-36,-21v-22,-13,-37,-29,-37,-52v0,-37,28,-48,65,-48v20,0,39,2,56,5v5,1,7,3,7,7r0,12v0,4,-2,6,-6,6r-1,0v-13,-1,-36,-3,-56,-3v-20,0,-33,3,-33,21v0,11,8,18,25,28r35,21v30,18,40,33,40,54","w":167,"k":{"y":4,"\u00fd":4,"\u00ff":4,"f":4,"\ufb01":4,"\ufb02":4,"t":5,"v":5}},"t":{"d":"130,-5v0,3,-2,5,-7,6v-7,1,-16,2,-23,2v-33,0,-49,-9,-49,-49r0,-125r-35,-4v-4,0,-7,-3,-7,-7r0,-10v0,-4,3,-6,7,-6r35,0r0,-35v0,-4,2,-6,6,-7r19,-3r1,0v3,0,5,2,5,6r0,39r39,0v4,0,8,3,8,7r0,12v0,4,-4,8,-8,8r-39,0r0,125v0,20,6,23,20,23r20,0v5,0,8,1,8,5r0,13","w":138,"k":{"q":5,"g":4,"d":4,"o":5,"\u00f8":5,"\u0153":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5,"c":4,"\u00e7":4}},"u":{"d":"176,-7v0,4,-3,7,-7,7r-18,0v-4,0,-7,-3,-7,-7r0,-7v-20,11,-36,17,-57,17v-43,0,-63,-27,-63,-75r0,-119v0,-4,4,-7,8,-7r17,0v4,0,7,3,7,7r0,119v0,36,13,47,40,47v15,0,31,-6,48,-14r0,-152v0,-4,4,-7,8,-7r17,0v4,0,7,3,7,7r0,184","w":200},"v":{"d":"177,-192v0,1,-1,2,-1,3r-48,171v-5,16,-18,21,-33,21v-15,0,-27,-5,-32,-21r-49,-171r0,-3v0,-4,2,-6,6,-6r20,0v3,0,5,2,6,7r42,157v2,9,3,10,7,10v3,0,6,-1,8,-10r41,-157v1,-5,4,-7,7,-7r20,0v4,0,6,2,6,6","w":190,"k":{"\u201e":18,"\u201a":18,"q":8,".":17,"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e4":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":8,"\u00f8":8,"\u0153":8,"\u00f3":8,"\u00f4":8,"\u00f6":8,"\u00f2":8,"\u00f5":8,",":18,"\u2026":17}},"w":{"d":"269,-191r0,2r-35,167v-5,23,-8,25,-30,25v-19,0,-23,-3,-29,-26r-32,-123v-1,-3,-1,-2,-2,-2v-1,0,0,-1,-1,2r-32,123v-5,21,-10,26,-29,26v-22,0,-25,-3,-30,-25r-35,-167r0,-2v0,-4,3,-7,7,-7r19,0v3,0,6,3,6,6r30,164v1,4,2,4,3,4v1,0,2,-1,3,-4r35,-138v2,-8,6,-11,14,-11r21,0v8,0,12,3,14,11r35,138v1,3,2,4,3,4v1,0,2,0,3,-4r30,-164v0,-3,3,-6,6,-6r19,0v4,0,7,3,7,7","w":282,"k":{"e":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"c":6,"\u00e7":6}},"x":{"d":"184,-4v0,2,-1,4,-5,4r-25,0v-3,0,-4,-1,-5,-3r-51,-75r-52,74v-2,3,-3,4,-6,4r-21,0v-3,0,-5,-2,-5,-4v0,-1,1,-2,2,-4r65,-93r-61,-88v-1,-2,-2,-4,-2,-5v0,-3,2,-4,5,-4r24,0v3,0,4,1,7,5r46,68r46,-68v3,-5,4,-5,7,-5r21,0v3,0,5,1,5,4v0,1,-1,3,-2,5r-60,86r66,95v1,1,1,3,1,4","w":196,"k":{"q":13,"g":13,"d":13,"e":13,"\u00e9":13,"\u00ea":13,"\u00eb":13,"\u00e8":13,"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13,"c":10,"\u00e7":10,"f":2,"\ufb01":2,"\ufb02":2}},"y":{"d":"178,-192r0,3r-60,207v-11,39,-24,53,-65,53v-10,0,-23,-1,-31,-3v-4,-1,-7,-2,-7,-6r0,-13v0,-4,3,-6,7,-6r1,0v8,1,24,2,32,2v21,0,29,-5,35,-30r4,-15r-5,0v-11,0,-21,-3,-27,-25r-48,-164r0,-3v0,-4,3,-6,7,-6r19,0v3,0,5,3,6,6r43,156v2,7,4,8,7,8r6,0r43,-165v1,-3,4,-5,7,-5r20,0v4,0,6,2,6,6","w":192,"k":{"\u201e":13,"\u201a":13,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":8,"\u00f8":8,"\u0153":8,"\u00f3":8,"\u00f4":8,"\u00f6":8,"\u00f2":8,"\u00f5":8,",":13,"c":9,"\u00e7":9,"g":9,"q":7}},"z":{"d":"156,-7v0,4,-4,7,-8,7r-108,0v-15,0,-22,-10,-22,-20r0,-7v0,-10,2,-15,8,-23r93,-116v1,-1,1,-2,1,-3v0,-1,0,-2,-3,-2r-88,0v-4,0,-7,-4,-7,-8r0,-12v0,-4,3,-7,7,-7r106,0v15,0,20,7,20,18r0,8v0,8,-2,13,-8,20r-95,119v-1,1,-2,2,-2,3v0,2,0,3,3,3r95,0v4,0,8,4,8,8r0,12","w":173,"k":{"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"c":4,"\u00e7":4,"d":5,"q":4}},"{":{"d":"109,63v0,4,-3,7,-7,7r-18,0v-44,0,-55,-12,-55,-50r0,-63v0,-22,-5,-33,-22,-45r0,-21v17,-12,22,-23,22,-45r0,-64v0,-38,11,-49,55,-49r18,0v4,0,7,3,7,7r0,12v0,4,-3,7,-7,7r-16,0v-21,0,-25,4,-25,23r0,64v0,25,-7,43,-26,56v19,13,26,30,26,55r0,63v0,19,4,24,25,24r16,0v4,0,7,3,7,7r0,12","w":119},"|":{"d":"61,63v0,4,-3,7,-7,7r-18,0v-4,0,-7,-3,-7,-7r0,-324v0,-4,3,-6,7,-6r18,0v4,0,7,2,7,6r0,324","w":89},"}":{"d":"112,-88v-17,12,-22,23,-22,45r0,63v0,38,-11,50,-55,50r-18,0v-4,0,-7,-3,-7,-7r0,-12v0,-4,3,-7,7,-7r16,0v21,0,25,-5,25,-24r0,-63v0,-25,7,-42,26,-55v-19,-13,-26,-31,-26,-56r0,-64v0,-19,-4,-23,-25,-23r-16,0v-4,0,-7,-3,-7,-7r0,-12v0,-4,3,-7,7,-7r18,0v44,0,55,11,55,49r0,64v0,22,5,33,22,45r0,21","w":119},"~":{"d":"185,-168v0,30,-10,46,-39,46v-10,0,-20,-4,-28,-10r-26,-21v-10,-8,-14,-11,-19,-11v-14,0,-15,8,-15,21r0,9v0,4,-3,8,-7,8r-11,0v-4,0,-7,-4,-7,-8r0,-9v0,-31,14,-47,40,-47v10,0,19,4,27,10r31,25v4,4,11,7,15,7v14,0,14,-6,14,-20r0,-10v0,-4,3,-7,7,-7r11,0v4,0,7,3,7,7r0,10"},"\u00a1":{"d":"55,-157v0,4,-3,7,-7,7r-17,0v-4,0,-7,-3,-7,-7r0,-34v0,-4,3,-7,7,-7r17,0v4,0,7,3,7,7r0,34xm49,73r-19,0v-4,0,-7,-3,-7,-7r3,-187v0,-4,3,-7,7,-7r13,0v4,0,7,3,7,7r3,187v0,4,-3,7,-7,7","w":78,"k":{"V":9,"Y":20,"\u00dd":20,"\u0178":20}},"\u00a2":{"d":"174,-9v0,5,-2,7,-8,8v-9,1,-21,2,-34,3r0,33v0,4,-3,7,-7,7r-14,0v-4,0,-8,-3,-8,-7r0,-34v-38,-8,-58,-40,-58,-86r0,-28v0,-46,20,-78,58,-86r0,-33v0,-4,4,-7,8,-7r14,0v4,0,7,3,7,7r0,32v13,1,25,2,34,3v6,1,8,3,8,8r0,13v0,4,-4,6,-7,6r-1,0v-16,-2,-27,-3,-45,-3v-29,0,-45,19,-45,60r0,28v0,40,16,60,45,60v18,0,29,-1,45,-3r1,0v3,0,7,2,7,6r0,13"},"\u00a3":{"d":"193,-6v0,4,-4,6,-8,6r-143,0v-4,0,-6,-2,-6,-5r0,-14v0,-4,2,-6,3,-9v8,-14,11,-23,11,-42r0,-55r-18,0v-4,0,-7,-2,-7,-6r0,-16v0,-4,3,-6,7,-6r18,0r0,-23v0,-60,19,-91,80,-91v19,0,43,3,56,5v6,1,7,2,7,6r0,14v0,4,-2,7,-6,7r-2,0v-16,-2,-38,-4,-55,-4v-37,0,-47,14,-47,63r0,23r78,0v4,0,6,2,6,6r0,16v0,4,-3,6,-7,6r-77,0r0,55v0,18,-6,32,-12,43r114,0v4,0,8,1,8,5r0,16"},"\u2044":{"d":"133,-267v5,0,4,2,2,6r-150,255v-3,5,-4,7,-8,7r-17,0v-4,0,-6,-3,-3,-7r151,-256v3,-5,4,-5,8,-5r17,0","w":91},"\u00a5":{"d":"205,-83v0,4,-3,7,-7,7r-72,0r0,69v0,4,-3,7,-7,7r-20,0v-4,0,-6,-3,-6,-7r0,-69r-73,0v-4,0,-7,-3,-7,-7r0,-11v0,-4,3,-7,7,-7r73,0r0,-8r-20,-39r-53,0v-4,0,-7,-4,-7,-8r0,-10v0,-4,3,-8,7,-8r40,0r-43,-84v-1,-2,-1,-4,-1,-5v0,-3,2,-4,6,-4r23,0v3,0,5,2,6,5r58,122r58,-122v1,-3,4,-5,7,-5r22,0v4,0,6,2,6,5v0,1,0,3,-1,4r-43,84r40,0v4,0,7,4,7,8r0,10v0,4,-3,8,-7,8r-53,0r-19,39r0,8r72,0v4,0,7,3,7,7r0,11"},"\u0192":{"d":"197,-267r0,1r-1,11v0,4,-4,6,-9,6r-20,0v-17,0,-23,5,-26,24r-10,71r52,0v4,0,6,2,6,5r0,1r-2,14v0,4,-4,6,-8,6r-52,0r-18,129v-5,37,-27,49,-57,49v-12,0,-20,-1,-25,-2v-5,-1,-6,-2,-6,-5r0,-1r1,-11v0,-4,4,-6,9,-6r20,0v17,0,23,-5,26,-24r18,-129r-46,0v-4,0,-6,-2,-6,-6r0,0r2,-14v0,-4,4,-6,8,-6r46,0r10,-71v5,-37,27,-49,57,-49v12,0,20,1,25,2v5,1,6,2,6,5"},"\u00a7":{"d":"180,6v0,36,-18,72,-89,72v-25,0,-45,-2,-61,-5v-3,-1,-7,-3,-7,-7r0,-15v0,-4,4,-6,8,-6r0,0v19,2,40,3,59,3r1,0v43,0,54,-17,54,-42v0,-19,-8,-28,-39,-47r-40,-24v-38,-23,-49,-39,-49,-67v0,-15,6,-27,13,-38v-8,-8,-13,-22,-13,-37v0,-40,23,-63,86,-63v20,0,53,3,63,5v4,1,7,3,7,7r0,15v0,4,-3,6,-7,6r0,0v-21,-1,-42,-3,-63,-3v-42,0,-52,10,-52,33v0,17,8,25,37,42r39,24v43,25,53,45,53,72v0,14,-3,27,-11,39v8,11,11,23,11,36xm147,-69v0,-19,-9,-28,-37,-46r-33,-20v-8,-5,-18,-11,-26,-17v-3,8,-3,11,-3,20v0,17,11,29,32,41r40,23v11,6,16,9,24,15v3,-8,3,-7,3,-16","w":196},"\u00a4":{"d":"197,-207v0,2,-1,5,-2,6r-30,29v8,11,12,25,12,38v0,13,-4,26,-12,38r29,29v1,1,3,4,3,6v0,1,-1,3,-2,4r-10,10v-1,1,-3,2,-4,2v-2,0,-4,-2,-5,-3r-30,-30v-11,8,-24,12,-37,12v-13,0,-26,-4,-37,-12r-30,29v-1,1,-4,3,-6,3v-1,0,-2,-1,-3,-2r-10,-10v-1,-1,-2,-3,-2,-4v0,-2,2,-4,3,-5r29,-29v-8,-11,-12,-25,-12,-38v0,-13,3,-26,11,-37r-29,-30v-1,-1,-2,-3,-2,-5v0,-2,0,-3,1,-4r10,-10v1,-1,3,-2,4,-2v2,0,5,2,6,3r29,29v12,-8,25,-12,38,-12v13,0,27,4,38,12r29,-30v1,-1,4,-2,6,-2v1,0,3,1,4,2r9,9v1,1,2,3,2,4xm152,-134v0,-24,-20,-43,-44,-43v-24,0,-43,19,-43,43v0,24,19,43,43,43v24,0,44,-19,44,-43"},"'":{"d":"59,-267v0,1,-1,2,-1,3r-21,68v-1,5,-2,7,-6,7r-17,0v-3,0,-4,-2,-4,-4v0,-1,1,-2,1,-3r16,-68v1,-5,4,-7,8,-7r20,0v3,0,4,1,4,4","w":69,"k":{",":23,"\u201a":23,"\u201e":23,".":23,"\u2026":23}},"\u201c":{"d":"111,-267v0,1,-1,2,-1,3r-13,68v-1,5,-3,7,-7,7r-22,0v-3,0,-4,-1,-4,-4v0,-1,1,-2,1,-3r22,-68v1,-5,3,-7,7,-7r13,0v3,0,4,2,4,4xm57,-267v0,1,-1,2,-1,3r-13,68v-1,5,-3,7,-7,7r-22,0v-3,0,-4,-1,-4,-4v0,-1,1,-2,1,-3r22,-68v1,-5,3,-7,7,-7r13,0v3,0,4,2,4,4","w":120,"k":{"A":16,"\u00c6":16,"\u00c1":16,"\u00c2":16,"\u00c4":16,"\u00c0":16,"\u00c5":16,"\u00c3":16}},"\u00ab":{"d":"202,-28v0,2,-1,3,-4,3r-21,0v-3,0,-5,-1,-8,-4r-61,-61v-3,-3,-4,-7,-4,-10v0,-3,1,-7,4,-10r61,-61v3,-3,5,-3,8,-3r21,0v3,0,4,1,4,3v0,2,-2,4,-3,5r-64,66r64,67v1,1,3,3,3,5xm108,-28v0,2,-1,3,-4,3r-21,0v-3,0,-4,-1,-7,-4r-61,-61v-3,-3,-4,-7,-4,-10v0,-3,1,-7,4,-10r61,-61v3,-3,4,-3,7,-3r21,0v3,0,4,1,4,3v0,2,-1,4,-2,5r-64,66r64,67v1,1,2,3,2,5","w":221},"\u2039":{"d":"108,-28v0,2,-1,3,-4,3r-21,0v-3,0,-4,-1,-7,-4r-61,-61v-3,-3,-4,-7,-4,-10v0,-3,1,-7,4,-10r61,-61v3,-3,4,-3,7,-3r21,0v3,0,4,1,4,3v0,2,-1,4,-2,5r-64,66r64,67v1,1,2,3,2,5","w":127},"\u203a":{"d":"117,-100v0,3,-1,7,-4,10r-61,61v-3,3,-5,4,-8,4r-21,0v-3,0,-4,-1,-4,-3v0,-2,2,-4,3,-5r64,-67r-64,-66v-1,-1,-3,-3,-3,-5v0,-2,1,-3,4,-3r21,0v3,0,5,0,8,3r61,61v3,3,4,7,4,10","w":127},"\u2013":{"d":"117,-95v0,4,-3,6,-7,6r-109,0v-4,0,-6,-2,-6,-6r0,-14v0,-4,2,-6,6,-6r109,0v4,0,7,2,7,6r0,14","w":111},"\u2020":{"d":"132,-178v0,4,-3,6,-7,6r-39,0r0,165v0,4,-2,7,-6,7r-20,0v-4,0,-6,-3,-6,-7r0,-165r-34,0v-4,0,-7,-2,-7,-6r0,-16v0,-4,3,-6,7,-6r34,0r0,-64v0,-4,2,-7,6,-7r20,0v4,0,6,3,6,7r0,64r39,0v4,0,7,2,7,6r0,16","w":145},"\u2021":{"d":"132,-103v0,4,-3,6,-7,6r-39,0r0,90v0,4,-2,7,-6,7r-20,0v-4,0,-6,-3,-6,-7r0,-90r-34,0v-4,0,-7,-2,-7,-6r0,-16v0,-4,3,-5,7,-5r34,0r0,-48r-34,0v-4,0,-7,-2,-7,-6r0,-16v0,-4,3,-6,7,-6r34,0r0,-64v0,-4,2,-7,6,-7r20,0v4,0,6,3,6,7r0,64r39,0v4,0,7,2,7,6r0,16v0,4,-3,6,-7,6r-39,0r0,48r39,0v4,0,7,1,7,5r0,16","w":145},"\u00b7":{"d":"54,-124v0,4,-3,7,-7,7r-17,0v-4,0,-7,-3,-7,-7r0,-34v0,-4,3,-7,7,-7r17,0v4,0,7,3,7,7r0,34","w":77},"\u00b6":{"d":"201,63v0,4,-3,7,-7,7r-8,0v-4,0,-6,-3,-6,-7r0,-311r-21,0r0,311v0,4,-2,7,-6,7r-8,0v-4,0,-6,-3,-6,-7r0,-158r-38,0v-50,0,-85,-28,-85,-80r0,-12v0,-52,35,-80,85,-80r94,0v4,0,6,2,6,6r0,324","w":223},"\u2022":{"d":"132,-132v0,32,-25,57,-57,57v-32,0,-57,-25,-57,-57v0,-32,25,-57,57,-57v32,0,57,25,57,57","w":150},"\u201a":{"d":"61,-42v0,1,-1,1,-1,2r-27,68v-2,5,-3,7,-7,7r-14,0v-3,0,-5,-1,-5,-4v0,-1,1,-2,1,-3r20,-68v1,-5,3,-6,7,-6r21,0v3,0,5,1,5,4","w":66,"k":{"\"":23,"'":23,"\u2019":23,"\u201d":23}},"\u201e":{"d":"126,-42v0,1,-1,1,-1,2r-27,68v-2,5,-3,7,-7,7r-15,0v-3,0,-4,-1,-4,-4r0,-3r21,-68v1,-5,3,-6,7,-6r21,0v3,0,5,1,5,4xm61,-42v0,1,-1,1,-1,2r-27,68v-2,5,-3,7,-7,7r-14,0v-3,0,-5,-1,-5,-4v0,-1,1,-2,1,-3r20,-68v1,-5,3,-6,7,-6r21,0v3,0,5,1,5,4","w":120,"k":{"\"":23,"'":23,"\u2019":23,"\u201d":23}},"\u201d":{"d":"111,-267v0,1,-1,2,-1,3r-22,68v-1,5,-3,7,-7,7r-13,0v-3,0,-4,-2,-4,-4v0,-1,1,-2,1,-3r13,-68v1,-5,3,-7,7,-7r22,0v3,0,4,1,4,4xm57,-267v0,1,-1,2,-1,3r-22,68v-1,5,-3,7,-7,7r-13,0v-3,0,-4,-2,-4,-4v0,-1,1,-2,1,-3r13,-68v1,-5,3,-7,7,-7r22,0v3,0,4,1,4,4","w":120,"k":{",":23,"\u201a":23,"\u201e":23,".":23,"\u2026":23}},"\u00bb":{"d":"210,-100v0,3,-1,7,-4,10r-61,61v-3,3,-4,4,-7,4r-21,0v-3,0,-4,-1,-4,-3v0,-2,1,-4,2,-5r64,-67r-64,-66v-1,-1,-2,-3,-2,-5v0,-2,1,-3,4,-3r21,0v3,0,4,0,7,3r61,61v3,3,4,7,4,10xm117,-100v0,3,-1,7,-4,10r-61,61v-3,3,-5,4,-8,4r-21,0v-3,0,-4,-1,-4,-3v0,-2,2,-4,3,-5r64,-67r-64,-66v-1,-1,-3,-3,-3,-5v0,-2,1,-3,4,-3r21,0v3,0,5,0,8,3r61,61v3,3,4,7,4,10","w":221},"\u2026":{"d":"197,-7v0,4,-3,7,-7,7r-17,0v-4,0,-7,-3,-7,-7r0,-34v0,-4,3,-7,7,-7r17,0v4,0,7,3,7,7r0,34xm125,-7v0,4,-3,7,-7,7r-18,0v-4,0,-6,-3,-6,-7r0,-34v0,-4,2,-7,6,-7r18,0v4,0,7,3,7,7r0,34xm52,-7v0,4,-3,7,-7,7r-17,0v-4,0,-7,-3,-7,-7r0,-34v0,-4,3,-7,7,-7r17,0v4,0,7,3,7,7r0,34","w":218,"k":{"\"":23,"'":23,"\u2019":23,"\u201d":23}},"\u2030":{"d":"392,-56v0,39,-18,59,-48,59v-30,0,-49,-20,-49,-59r0,-33v0,-40,19,-59,49,-59v30,0,48,19,48,59r0,33xm270,-56v0,39,-19,59,-49,59v-30,0,-48,-20,-48,-59r0,-33v0,-40,18,-59,48,-59v30,0,49,19,49,59r0,33xm234,-265v0,1,-1,2,-2,4r-150,255v-3,5,-4,7,-8,7r-19,0v-2,0,-3,-1,-3,-2v0,-1,1,-3,2,-5r150,-255v3,-5,5,-6,9,-6r18,0v2,0,3,1,3,2xm113,-179v0,39,-18,59,-48,59v-30,0,-49,-20,-49,-59r0,-33v0,-40,19,-58,49,-58v30,0,48,18,48,58r0,33xm370,-56r0,-33v0,-27,-10,-38,-26,-38v-16,0,-26,11,-26,38r0,33v0,27,10,38,26,38v16,0,26,-11,26,-38xm247,-56r0,-33v0,-27,-10,-38,-26,-38v-16,0,-26,11,-26,38r0,33v0,27,10,38,26,38v16,0,26,-11,26,-38xm91,-179r0,-33v0,-27,-10,-38,-26,-38v-16,0,-26,11,-26,38r0,33v0,27,10,38,26,38v16,0,26,-11,26,-38","w":408},"\u00bf":{"d":"118,-158v0,4,-3,8,-7,8r-17,0v-4,0,-7,-4,-7,-8r0,-33v0,-4,3,-7,7,-7r17,0v4,0,7,3,7,7r0,33xm146,59v0,4,0,8,-6,9v-15,3,-33,4,-49,4v-41,0,-72,-13,-72,-54r0,-4v0,-17,6,-31,33,-62r16,-18v13,-15,19,-21,19,-37r0,-18v0,-4,3,-7,7,-7r16,0v4,0,7,3,7,7r0,18v0,23,-5,33,-24,54r-16,18v-18,20,-23,31,-23,45r0,4v0,19,12,26,37,26v17,0,33,-1,49,-3r1,0v4,0,5,2,5,6r0,12","w":160,"k":{"V":22,"Y":26,"\u00dd":26,"\u0178":26}},"`":{"d":"87,-227v0,1,-1,3,-3,3r-19,0v-4,0,-5,-2,-8,-6r-41,-45v-1,-1,-2,-2,-2,-3v0,-2,1,-2,4,-2r24,0v4,0,6,1,9,5r35,45v1,1,1,2,1,3","w":133},"\u00b4":{"d":"120,-278v0,1,-1,2,-2,3r-40,45v-3,4,-5,6,-9,6r-19,0v-2,0,-3,-2,-3,-3v0,-1,0,-2,1,-3r36,-45v3,-4,4,-5,8,-5r24,0v3,0,4,0,4,2","w":134},"\u02c6":{"d":"127,-227v0,1,-1,3,-3,3r-19,0v-4,0,-5,-2,-8,-6r-30,-35r-30,35v-3,4,-4,6,-8,6r-19,0v-2,0,-3,-2,-3,-3v0,-1,1,-2,2,-3r34,-45v3,-4,5,-5,9,-5r30,0v4,0,6,1,9,5r35,45v1,1,1,2,1,3","w":134},"\u02dc":{"d":"151,-263v0,25,-10,38,-34,38v-8,0,-17,-3,-23,-8r-22,-18v-9,-7,-11,-7,-15,-7v-9,0,-11,5,-11,16r0,8v0,3,-3,6,-6,6r-11,0v-3,0,-6,-3,-6,-6r0,-8v0,-26,13,-39,34,-39v8,0,16,3,22,8r25,21v4,3,10,5,13,5v7,0,11,-4,11,-16r0,-8v0,-3,3,-7,6,-7r11,0v3,0,6,4,6,7r0,8","w":177},"\u00af":{"d":"126,-249v0,4,-3,6,-7,6r-104,0v-4,0,-7,-2,-7,-6r0,-12v0,-4,3,-6,7,-6r104,0v4,0,7,2,7,6r0,12","w":134},"\u02d8":{"d":"126,-276r0,2v-3,33,-31,50,-59,50v-28,0,-55,-17,-58,-50r0,-2v0,-3,1,-4,4,-4r13,0v4,0,5,1,5,5v2,19,19,29,36,29v17,0,34,-10,36,-29v0,-4,2,-5,6,-5r13,0v3,0,4,1,4,4","w":134},"\u02d9":{"d":"83,-237v0,4,-3,7,-7,7r-17,0v-4,0,-8,-3,-8,-7r0,-30v0,-4,4,-7,8,-7r17,0v4,0,7,3,7,7r0,30","w":134},"\u00a8":{"d":"113,-238v0,4,-3,7,-7,7r-14,0v-4,0,-7,-3,-7,-7r0,-29v0,-4,3,-7,7,-7r14,0v4,0,7,3,7,7r0,29xm50,-238v0,4,-3,7,-7,7r-14,0v-4,0,-7,-3,-7,-7r0,-29v0,-4,3,-7,7,-7r14,0v4,0,7,3,7,7r0,29","w":134},"\u02da":{"d":"104,-253v0,20,-17,36,-37,36v-20,0,-36,-16,-36,-36v0,-20,16,-37,36,-37v20,0,37,17,37,37xm86,-253v0,-10,-9,-19,-19,-19v-10,0,-18,9,-18,19v0,10,8,19,18,19v10,0,19,-9,19,-19","w":134},"\u00b8":{"d":"91,14v0,1,0,2,-1,3r-41,45v-3,4,-4,6,-8,6r-19,0v-2,0,-4,-2,-4,-3v0,-1,1,-2,2,-3r35,-45v3,-4,5,-5,9,-5r23,0v3,0,4,0,4,2","w":131},"\u02dd":{"d":"148,-278v0,1,0,2,-1,3r-40,45v-3,4,-5,6,-9,6r-19,0v-2,0,-3,-2,-3,-3v0,-1,0,-2,1,-3r35,-45v3,-4,5,-5,9,-5r23,0v3,0,4,0,4,2xm85,-278v0,1,0,2,-1,3r-40,45v-3,4,-5,6,-9,6r-19,0v-2,0,-3,-2,-3,-3v0,-1,0,-2,1,-3r35,-45v3,-4,5,-5,9,-5r23,0v3,0,4,0,4,2","w":134},"\u02db":{"d":"107,64v0,3,-1,3,-4,4v-1,0,-12,4,-27,4v-36,0,-48,-16,-48,-35v0,-19,14,-27,23,-32r24,-15v3,-2,6,-3,9,-3r19,0v5,0,5,5,2,7r-31,21v-12,8,-19,13,-19,22v0,9,7,14,25,14v12,0,23,-3,25,-3v1,0,2,0,2,2r0,14","w":131},"\u02c7":{"d":"128,-278v0,1,-1,3,-2,4r-35,44v-3,4,-5,6,-9,6r-30,0v-4,0,-6,-2,-9,-6r-35,-44v-1,-1,-2,-3,-2,-4v0,-1,2,-2,4,-2r19,0v4,0,5,1,8,5r30,35r30,-35v3,-4,4,-5,8,-5r20,0v2,0,3,1,3,2","w":134},"\u2014":{"d":"221,-95v0,4,-2,6,-6,6r-214,0v-4,0,-6,-2,-6,-6r0,-14v0,-4,2,-6,6,-6r214,0v4,0,6,2,6,6r0,14","w":216},"\u00c6":{"d":"289,-5v0,2,-1,5,-3,5v-10,1,-39,3,-60,3v-50,0,-76,-19,-76,-67r0,-24r-86,0r-23,83v-1,3,-4,5,-7,5r-21,0v-4,0,-6,-3,-6,-6r0,-2r67,-232v6,-22,23,-27,37,-27r175,0v2,0,3,3,3,5r0,19v0,3,-1,4,-4,4r-102,0r0,86r99,0v4,0,7,3,7,7r0,14v0,4,-3,7,-7,7r-99,0r0,61v0,27,6,37,44,37r58,0v3,0,4,1,4,4r0,18xm150,-117r0,-122r-39,0v-4,0,-7,2,-8,6r-32,116r79,0","w":309},"\u00aa":{"d":"95,-162v0,3,-1,5,-4,6v-11,3,-23,4,-35,4v-32,0,-45,-11,-45,-35r0,-2v0,-23,16,-33,51,-33r11,0r0,-5v0,-17,-5,-23,-19,-23v-13,0,-22,1,-30,2r-1,0v-3,0,-5,-2,-5,-5r0,-7v0,-3,2,-5,5,-5v8,-1,18,-4,31,-4v29,0,41,15,41,42r0,65xm74,-170r0,-37r-8,0r-4,0v-23,1,-30,5,-30,18r0,2v0,13,5,19,24,19v7,0,14,-1,18,-2","w":105},"\u0141":{"d":"179,-6v0,2,-2,5,-4,5v-9,1,-36,4,-70,4v-50,0,-77,-19,-77,-67r0,-43r-22,27v-1,2,-3,3,-4,3v-1,0,-2,-2,-2,-3r0,-22r0,-1v0,-2,-1,-5,2,-8r26,-32r0,-117v0,-4,3,-7,7,-7r19,0v4,0,7,3,7,7r0,77r24,-30v1,-2,3,-2,4,-2v1,0,3,1,3,2r0,24v0,3,0,5,-3,8r-28,34r0,83v0,27,6,37,44,37r70,0v3,0,4,1,4,4r0,17","w":185,"k":{"O":16,"\u00d8":16,"\u0152":16,"\u00d3":16,"\u00d4":16,"\u00d6":16,"\u00d2":16,"\u00d5":16,"Q":16,"e":8,"\u00e9":8,"\u00ea":8,"\u00eb":8,"\u00e8":8,"o":9,"\u00f8":9,"\u0153":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9,"y":19,"\u00fd":19,"\u00ff":19,"C":12,"\u00c7":12,"G":14,"S":6,"\u0160":6,"T":36,"U":14,"\u00da":14,"\u00db":14,"\u00dc":14,"\u00d9":14,"V":33,"W":13,"Y":37,"\u00dd":37,"\u0178":37,"v":18,"w":10,"E":7,"\u00c9":7,"\u00ca":7,"\u00cb":7,"\u00c8":7,"\u2013":14,"\u2014":14,"-":14,"\u00ae":21,"\u2122":21}},"\u00d8":{"d":"228,-265v0,1,0,2,-1,3r-26,36v10,17,15,40,15,69r0,46v0,80,-40,114,-97,114v-26,0,-49,-8,-66,-23r-11,16v-2,3,-5,7,-9,7r-19,0v-3,0,-4,-2,-4,-4v0,-1,0,-2,1,-3r26,-36v-10,-17,-15,-41,-15,-71r0,-46v0,-80,40,-113,97,-113v26,0,49,7,66,23r11,-15v2,-3,5,-7,9,-7r19,0v3,0,4,2,4,4xm166,-221v-11,-14,-27,-19,-47,-19v-39,0,-64,23,-64,83r0,46v0,15,1,28,4,39xm183,-111r0,-46v0,-15,-1,-28,-4,-38r-107,149v11,13,27,19,47,19v40,0,64,-24,64,-84","w":237,"k":{"T":16,"V":8,"W":4,"Y":14,"\u00dd":14,"\u0178":14,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"X":16,"Z":13,"\u017d":13}},"\u0152":{"d":"334,-5v0,2,-2,5,-4,5v-9,1,-36,3,-70,3v-34,0,-57,-9,-68,-30v-17,20,-43,30,-73,30v-57,0,-97,-34,-97,-114r0,-46v0,-80,40,-113,97,-113v30,0,56,10,73,30v11,-21,34,-30,68,-30v34,0,61,2,70,3v2,0,4,3,4,5r0,17v0,3,-1,5,-4,5r-69,0v-38,0,-45,10,-45,37r0,50r111,0v4,0,7,3,7,7r0,14v0,4,-3,7,-7,7r-111,0r0,61v0,27,7,37,45,37r69,0v3,0,4,2,4,5r0,17xm184,-110r0,-48v0,-44,-14,-82,-65,-82v-40,0,-64,23,-64,83r0,46v0,60,24,84,64,84v51,0,65,-39,65,-83","w":353},"\u00ba":{"d":"105,-204v0,33,-16,52,-47,52v-31,0,-46,-19,-46,-52r0,-12v0,-33,15,-53,46,-53v31,0,47,20,47,53r0,12xm83,-204r0,-12v0,-22,-7,-33,-25,-33v-18,0,-25,11,-25,33r0,12v0,22,7,34,25,34v18,0,25,-12,25,-34","w":115},"\u00e6":{"d":"289,-97v0,5,-3,8,-7,8r-120,0r0,12v0,37,17,53,53,53v21,0,44,-2,61,-5r1,0r1,0v3,0,6,1,6,5r0,12v0,5,-1,7,-7,8v-21,4,-40,7,-64,7v-28,0,-47,-6,-62,-22v-17,14,-41,22,-65,22v-36,0,-69,-18,-69,-60r0,-3v0,-40,23,-58,87,-58r27,0r0,-15v0,-30,-11,-41,-39,-41v-23,0,-41,2,-55,3r-1,0r-1,0v-4,0,-6,-1,-6,-5r0,-13v0,-4,2,-6,7,-7v15,-3,32,-5,56,-5v30,0,49,10,60,26v13,-16,33,-26,59,-26v53,0,78,38,78,89r0,15xm258,-113r0,-2v0,-39,-15,-59,-47,-59v-31,0,-49,22,-49,59r0,2r96,0xm131,-34r0,-61r-27,0v-44,0,-55,9,-55,35r0,3v0,26,19,34,41,34v15,0,31,-3,41,-11","w":307,"k":{"y":7,"\u00fd":7,"\u00ff":7,"T":33,"f":7,"\ufb01":7,"\ufb02":7,"t":11,"v":7,"w":2,"x":10,"\ufb03":7,"\ufb00":7,"\ufb04":7,"\ue000":7,"\ue001":7,"\ue005":7,"\ue002":7,"\ue006":7,"\ue003":7,"\ue007":7,"\ue004":7}},"\u0131":{"d":"60,-7v0,4,-3,7,-7,7r-17,0v-4,0,-8,-3,-8,-7r0,-184v0,-4,4,-7,8,-7r17,0v4,0,7,3,7,7r0,184","w":88},"\u0142":{"d":"89,-188v0,3,-1,5,-2,6r-27,34r0,141v0,4,-3,7,-7,7r-18,0v-4,0,-7,-3,-7,-7r0,-102r-24,29v-1,1,-3,2,-4,2v-2,0,-3,-2,-3,-3r0,-21r0,-1v0,-3,0,-5,3,-8r28,-34r0,-119v0,-4,3,-7,7,-7r18,0v4,0,7,3,7,7r0,80r23,-29v1,-1,2,-2,3,-2v2,0,3,2,3,4r0,23","w":87},"\u00f8":{"d":"190,-207v0,1,0,3,-1,4r-26,34v10,15,15,34,15,56r0,28v0,53,-27,88,-80,88v-21,0,-37,-6,-50,-16r-16,22v-3,3,-4,4,-6,4r-17,0v-2,0,-3,-1,-3,-3v0,-1,0,-3,1,-4r26,-35v-10,-15,-15,-33,-15,-56r0,-28v0,-53,27,-88,80,-88v21,0,37,6,50,16r15,-21v3,-3,4,-4,6,-4r18,0v2,0,3,1,3,3xm130,-162v-8,-7,-18,-11,-32,-11v-34,0,-48,23,-48,60r0,28v0,11,0,20,3,28xm147,-85r0,-28v0,-10,-1,-20,-4,-28r-77,105v8,7,18,11,32,11v34,0,49,-23,49,-60","w":196,"k":{"y":8,"\u00fd":8,"\u00ff":8,"f":7,"\ufb01":7,"\ufb02":7,"t":11,"v":8,"w":6,"x":13,"z":6,"\u017e":6,"\ufb03":7,"\ufb00":7,"\ufb04":7,"\ue000":7,"\ue001":7,"\ue005":7,"\ue002":7,"\ue006":7,"\ue003":7,"\ue007":7,"\ue004":7}},"\u0153":{"d":"306,-97v0,5,-3,8,-7,8r-121,0r0,4v0,36,10,60,50,60v21,0,47,-1,64,-4r2,0v3,0,6,1,6,5r0,12v0,5,-1,7,-7,8v-21,4,-41,7,-65,7v-26,0,-51,-8,-66,-30v-13,19,-34,30,-64,30v-53,0,-80,-35,-80,-88r0,-28v0,-53,27,-88,80,-88v30,0,51,11,64,30v13,-19,34,-30,64,-30v53,0,80,34,80,85r0,19xm274,-113r0,-3v0,-41,-16,-57,-48,-57v-31,0,-48,18,-48,57r0,3r96,0xm147,-85r0,-28v0,-37,-15,-60,-49,-60v-33,0,-48,23,-48,60r0,28v0,37,14,60,48,60v33,0,49,-23,49,-60","w":323,"k":{"y":7,"\u00fd":7,"\u00ff":7,"T":33,"f":7,"\ufb01":7,"\ufb02":7,"t":11,"v":7,"w":2,"x":10,"\ufb03":7,"\ufb00":7,"\ufb04":7,"\ue000":7,"\ue001":7,"\ue005":7,"\ue002":7,"\ue006":7,"\ue003":7,"\ue007":7,"\ue004":7}},"\u00df":{"d":"190,-77v0,57,-41,80,-86,80v-5,0,-10,-1,-17,-2v-4,0,-7,-2,-7,-6r0,-15v0,-3,1,-4,4,-4r15,0v35,0,59,-11,59,-53r0,-5v0,-26,-19,-47,-56,-47r-13,0v-4,0,-8,-3,-8,-7r0,-10v0,-4,4,-7,8,-7r13,0v36,0,50,-21,50,-44r0,-5v0,-26,-14,-43,-47,-43v-33,0,-50,18,-50,60r0,177v0,4,-2,8,-6,8r-19,0v-4,0,-7,-4,-7,-8r0,-177v0,-60,32,-88,82,-88v46,0,79,21,79,71r0,5v0,26,-17,46,-38,55v25,9,44,31,44,60r0,5","w":209},"\u00ac":{"d":"185,-89v0,4,-3,7,-7,7r-11,0v-4,0,-8,-3,-8,-7r0,-79r-119,0v-4,0,-8,-2,-8,-6r0,-14v0,-4,4,-6,8,-6r139,0v4,0,6,2,6,6r0,99"},"\u00b5":{"d":"176,-16v0,4,-2,7,-7,8v-17,6,-42,11,-66,11v-19,0,-35,-4,-47,-11r0,71v0,4,-3,8,-7,8r-17,0v-4,0,-8,-4,-8,-8r0,-254v0,-4,3,-7,7,-7r18,0v4,0,7,3,7,7r0,119v0,33,15,48,47,48v14,0,30,-3,41,-6r0,-161v0,-4,4,-7,8,-7r17,0v4,0,7,3,7,7r0,175","w":200},"\u2122":{"d":"269,-125v0,2,-2,4,-4,4r-14,0v-2,0,-4,-2,-4,-4r0,-86v0,-28,-3,-37,-38,-37r0,123v0,2,-1,4,-3,4r-16,0v-2,0,-3,-2,-3,-4r0,-123v-15,0,-28,1,-38,2r0,121v0,2,-2,4,-4,4r-14,0v-2,0,-4,-2,-4,-4r0,-133v0,-5,1,-7,5,-7v21,-2,44,-4,66,-4v50,0,71,9,71,58r0,86xm114,-253v0,4,-3,5,-6,5r-35,0r0,121v0,3,-3,6,-6,6r-11,0v-3,0,-6,-3,-6,-6r0,-121r-35,0v-3,0,-6,-1,-6,-5r0,-9v0,-3,3,-5,6,-5r93,0v3,0,6,2,6,5r0,9","w":284},"\u00d0":{"d":"210,-109v0,77,-42,112,-109,112v-27,0,-55,-2,-65,-4v-5,-1,-8,-4,-8,-9r0,-115r-14,0v-4,0,-7,-3,-7,-7r0,-14v0,-4,3,-7,7,-7r14,0r0,-104v0,-5,3,-8,8,-9v10,-2,38,-4,65,-4v67,0,109,34,109,112r0,49xm177,-109r0,-49v0,-65,-33,-84,-76,-84v-17,0,-28,0,-40,1r0,88r37,0v4,0,7,3,7,7r0,14v0,4,-3,7,-7,7r-37,0r0,99v12,1,23,0,40,0v43,0,76,-18,76,-83","w":230,"k":{"T":13,"V":7,"W":4,"Y":11,"\u00dd":11,"\u0178":11,"A":8,"\u00c6":8,"\u00c1":8,"\u00c2":8,"\u00c4":8,"\u00c0":8,"\u00c5":8,"\u00c3":8,"X":11,"Z":8,"\u017d":8}},"\u00bd":{"d":"209,-265v0,1,-1,2,-2,4r-150,255v-3,5,-4,7,-8,7r-18,0v-2,0,-4,0,-4,-2v0,-1,1,-4,2,-5r150,-255v3,-5,5,-6,9,-6r18,0v2,0,3,1,3,2xm44,-242r-23,10v-4,1,-7,-1,-7,-5r0,-10v0,-3,2,-4,4,-5r29,-13v4,-2,6,-2,11,-2r2,0v6,0,7,2,7,6r0,136v0,3,-3,7,-7,7r-10,0v-4,0,-6,-3,-6,-7r0,-117xm253,-113v0,16,-7,27,-25,40v-6,4,-13,8,-19,12v-21,14,-26,24,-26,39r0,1r62,0v3,0,7,2,7,6r0,9v0,4,-4,6,-7,6r-77,0v-3,0,-6,-2,-6,-6r0,-16v0,-21,9,-39,31,-54r19,-13r0,0v15,-11,19,-14,19,-24v0,-12,-8,-18,-27,-18v-10,0,-22,2,-34,4v-4,0,-6,-3,-6,-7r0,-7v0,-3,2,-5,5,-6v10,-3,23,-4,35,-4v33,0,49,12,49,38","w":267},"\u00b1":{"d":"191,-134v0,4,-3,6,-7,6r-62,0r0,62v0,4,-2,7,-6,7r-14,0v-4,0,-6,-3,-6,-7r0,-62r-62,0v-4,0,-7,-2,-7,-6r0,-14v0,-4,3,-6,7,-6r62,0r0,-62v0,-4,2,-7,6,-7r14,0v4,0,6,3,6,7r0,62r62,0v4,0,7,2,7,6r0,14xm191,-6v0,4,-3,6,-7,6r-150,0v-4,0,-7,-2,-7,-6r0,-12v0,-4,3,-5,7,-5r150,0v4,0,7,1,7,5r0,12"},"\u00de":{"d":"197,-153v0,61,-43,81,-101,81v-12,0,-26,0,-36,-1r0,66v0,4,-1,7,-5,7r-20,0v-4,0,-7,-3,-7,-7r0,-254v0,-4,3,-6,7,-6r19,0v4,0,6,2,6,6r0,25v9,0,25,-1,35,-1v59,0,102,21,102,79r0,5xm165,-153r0,-5v0,-37,-24,-50,-69,-50v-12,0,-28,-1,-36,0r0,107v8,0,27,1,36,1v46,0,69,-15,69,-53","w":213,"k":{"a":8,"\u00e6":8,"\u00e1":8,"\u00e2":8,"\u00e4":8,"\u00e0":8,"\u00e5":8,"\u00e3":8,"e":6,"\u00e9":6,"\u00ea":6,"\u00eb":6,"\u00e8":6,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,",":39,"\u201a":39,"\u201e":39,".":39,"\u2026":39,"A":22,"\u00c6":22,"\u00c1":22,"\u00c2":22,"\u00c4":22,"\u00c0":22,"\u00c5":22,"\u00c3":22,"Z":12,"\u017d":12}},"\u00bc":{"d":"209,-265v0,1,-1,2,-2,4r-150,255v-3,5,-4,7,-8,7r-18,0v-2,0,-4,0,-4,-2v0,-1,1,-4,2,-5r150,-255v3,-5,5,-6,9,-6r18,0v2,0,3,1,3,2xm44,-242r-23,10v-4,1,-7,-1,-7,-5r0,-10v0,-3,2,-4,4,-5r29,-13v4,-2,6,-2,11,-2r2,0v6,0,7,2,7,6r0,136v0,3,-3,7,-7,7r-10,0v-4,0,-6,-3,-6,-7r0,-117xm252,-45v0,4,-2,6,-6,6r-14,0r0,32v0,3,-3,7,-7,7r-11,0v-4,0,-6,-3,-6,-7r0,-32r-53,0v-8,0,-11,-2,-11,-10r0,-7v0,-3,1,-6,3,-9r58,-81v1,-2,2,-4,7,-4r12,0v5,0,8,2,8,7r0,84r14,0v4,0,6,2,6,6r0,8xm208,-59r0,-58r-40,58r40,0","w":266},"\u00f7":{"d":"124,-190v0,4,-3,7,-7,7r-17,0v-4,0,-7,-3,-7,-7r0,-31v0,-4,3,-7,7,-7r17,0v4,0,7,3,7,7r0,31xm185,-134v0,4,-3,6,-7,6r-138,0v-4,0,-8,-2,-8,-6r0,-14v0,-4,4,-6,8,-6r138,0v4,0,7,2,7,6r0,14xm124,-58v0,4,-3,7,-7,7r-17,0v-4,0,-7,-3,-7,-7r0,-32v0,-4,3,-7,7,-7r17,0v4,0,7,3,7,7r0,32"},"\u00a6":{"d":"61,-130v0,4,-3,7,-7,7r-19,0v-4,0,-6,-3,-6,-7r0,-125v0,-4,2,-7,6,-7r19,0v4,0,7,3,7,7r0,125xm61,69v0,4,-3,7,-7,7r-19,0v-4,0,-6,-3,-6,-7r0,-125v0,-4,2,-7,6,-7r19,0v4,0,7,3,7,7r0,125","w":89},"\u00b0":{"d":"113,-219v0,28,-23,51,-51,51v-28,0,-52,-23,-52,-51v0,-28,24,-51,52,-51v28,0,51,23,51,51xm94,-219v0,-17,-15,-32,-32,-32v-17,0,-32,15,-32,32v0,17,15,32,32,32v17,0,32,-15,32,-32","w":123},"\u00fe":{"d":"177,-86v0,57,-26,89,-79,89v-11,0,-28,-1,-42,-4r0,65v0,4,-3,7,-7,7r-18,0v-4,0,-7,-3,-7,-7r0,-328v0,-4,4,-7,8,-7r17,0v4,0,7,3,7,7r0,67v14,-2,29,-4,42,-4v54,0,79,35,79,89r0,26xm145,-86r0,-26v0,-38,-11,-62,-47,-62v-15,0,-32,2,-42,4r0,142v12,2,30,4,42,4v35,0,47,-23,47,-62","w":194,"k":{"f":7,"\ufb01":7,"\ufb02":7,"t":11,"x":8,"\ufb03":7,"\ufb00":7,"\ufb04":7,"\ue000":7,"\ue001":7,"\ue005":7,"\ue002":7,"\ue006":7,"\ue003":7,"\ue007":7,"\ue004":7}},"\u00be":{"d":"239,-265v0,1,-1,2,-2,4r-150,255v-3,5,-4,7,-8,7r-18,0v-2,0,-3,0,-3,-2v0,-1,0,-4,1,-5r151,-255v3,-5,4,-6,8,-6r18,0v2,0,3,1,3,2xm283,-45v0,4,-3,6,-7,6r-14,0r0,32v0,3,-2,7,-6,7r-11,0v-4,0,-6,-3,-6,-7r0,-32r-53,0v-8,0,-11,-2,-11,-10r0,-7v0,-3,0,-6,2,-9r59,-81v1,-2,2,-4,7,-4r11,0v5,0,8,2,8,7r0,84r14,0v4,0,7,2,7,6r0,8xm239,-59r0,-58r-41,58r41,0xm105,-161v0,31,-21,45,-51,45v-12,0,-25,-2,-34,-4v-3,-1,-6,-3,-6,-7r0,-6v0,-4,3,-7,7,-7v12,2,24,3,33,3v19,0,27,-7,27,-24r0,-4v0,-9,-5,-21,-20,-21r-35,0v-4,0,-6,-2,-6,-6r0,-7v0,-4,2,-6,6,-6r35,0v16,0,20,-11,20,-20r0,-3v0,-14,-7,-20,-27,-20v-10,0,-18,1,-29,2v-1,0,-2,1,-4,1v-4,0,-7,-3,-7,-7r0,-6v0,-4,3,-6,6,-7v9,-2,20,-4,34,-4v31,0,51,10,51,41r0,3v0,13,-6,23,-16,30v12,8,16,19,16,30r0,4","w":297},"\u00ae":{"d":"205,-174v0,54,-43,96,-97,96v-54,0,-97,-42,-97,-96v0,-54,43,-97,97,-97v54,0,97,43,97,97xm190,-174v0,-45,-37,-83,-82,-83v-45,0,-82,38,-82,83v0,45,37,81,82,81v45,0,82,-36,82,-81xm153,-119v0,3,-1,5,-4,5r-10,0v-2,0,-4,-2,-5,-3r-29,-46r-4,-2r-15,0r0,45v0,3,-2,6,-5,6r-9,0v-3,0,-4,-3,-4,-6r0,-109v0,-5,2,-8,6,-8v5,-1,20,-1,28,-1v30,0,47,10,47,37r0,1v0,18,-9,29,-24,33r27,45v0,1,1,2,1,3xm131,-200r0,-1v0,-14,-8,-20,-28,-20r-12,0r-5,0r0,41r17,0v20,0,28,-6,28,-20","w":215},"\u2212":{"d":"189,-134v0,4,-3,6,-7,6r-149,0v-4,0,-7,-2,-7,-6r0,-14v0,-4,3,-6,7,-6r149,0v4,0,7,2,7,6r0,14"},"\u00f0":{"d":"178,-87v0,58,-26,90,-79,90v-55,0,-81,-34,-81,-90r0,-20v0,-58,28,-90,80,-90v16,0,31,4,41,13v-7,-19,-25,-37,-53,-50r-31,24v-2,1,-4,2,-5,2v-1,0,-3,-1,-4,-2r-6,-7v-1,-1,-1,-1,-1,-2v0,-2,1,-5,3,-6r22,-17v-9,-3,-18,-6,-28,-8v-3,-1,-6,-3,-6,-6v0,0,1,0,1,-1r4,-13v1,-3,3,-4,5,-4v1,0,2,1,3,1v17,4,31,8,44,13r34,-25v1,-1,3,-2,5,-2v1,0,3,1,4,2r6,6v1,1,2,2,2,3v0,2,-2,3,-4,5r-26,20v55,31,70,72,70,144r0,20xm147,-87r0,-20v0,-40,-14,-63,-49,-63v-35,0,-48,23,-48,63r0,20v0,40,14,62,49,62v35,0,48,-22,48,-62","w":196},"\u00d7":{"d":"176,-87v0,1,-1,2,-2,3r-10,10v-1,1,-3,2,-4,2v-2,0,-4,-1,-6,-3r-47,-47r-47,47v-2,2,-4,3,-6,3v-1,0,-3,-1,-4,-2r-10,-10v-1,-1,-1,-3,-1,-4v0,-2,0,-4,2,-6r48,-47r-48,-47v-2,-2,-2,-4,-2,-6v0,-1,0,-2,1,-3r10,-10v1,-1,3,-2,4,-2v2,0,5,1,6,2r47,48r47,-48v2,-2,4,-3,6,-3v1,0,3,1,4,2r10,10v1,1,2,3,2,4v0,2,-1,4,-3,6r-48,47r48,48v2,2,3,4,3,6"},"\u00a9":{"d":"252,-135v0,64,-53,117,-117,117v-64,0,-117,-53,-117,-117v0,-64,53,-117,117,-117v64,0,117,53,117,117xm236,-135v0,-56,-45,-102,-101,-102v-56,0,-102,46,-102,102v0,56,46,101,102,101v56,0,101,-45,101,-101xm171,-66v0,4,-2,6,-5,6v-5,1,-16,2,-33,2v-31,0,-55,-18,-55,-66r0,-24v0,-48,24,-66,55,-66v17,0,28,2,33,3v3,0,5,1,5,5r0,10v0,4,-2,4,-4,4r-1,0v-8,-1,-20,-1,-33,-1v-18,0,-33,10,-33,45r0,24v0,35,15,46,33,46v12,0,25,-1,33,-2r0,0v2,0,5,0,5,4r0,10","w":270},"\u00c1":{"d":"217,-6v0,3,-2,6,-6,6r-21,0v-3,0,-5,-2,-6,-5r-23,-83r-94,0r-23,83v-1,3,-3,5,-6,5r-21,0v-4,0,-7,-3,-7,-6v0,-1,1,-1,1,-2r66,-235v6,-22,23,-27,37,-27v13,0,30,5,36,27r67,235r0,2xm154,-117r-33,-118v-1,-4,-3,-7,-7,-7v-4,0,-6,3,-7,7r-33,118r80,0xm169,-339v0,1,-1,1,-2,2r-40,46v-3,4,-5,5,-9,5r-19,0v-2,0,-3,-1,-3,-2v0,-1,0,-3,1,-4r35,-45v3,-4,5,-5,9,-5r24,0v3,0,4,1,4,3","w":227,"k":{"O":9,"\u00d8":9,"\u0152":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"\u00d5":9,"Q":9,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"y":19,"\u00fd":19,"\u00ff":19,"\u2019":16,"\u201d":16,"C":8,"\u00c7":8,"G":8,"L":6,"\u0141":6,"S":6,"\u0160":6,"T":32,"U":9,"\u00da":9,"\u00db":9,"\u00dc":9,"\u00d9":9,"V":25,"W":12,"Y":31,"\u00dd":31,"\u0178":31,"c":4,"\u00e7":4,"d":4,"f":16,"\ufb01":16,"\ufb02":16,"g":4,"q":4,"t":16,"v":19,"w":14}},"\u00c2":{"d":"217,-6v0,3,-2,6,-6,6r-21,0v-3,0,-5,-2,-6,-5r-23,-83r-94,0r-23,83v-1,3,-3,5,-6,5r-21,0v-4,0,-7,-3,-7,-6v0,-1,1,-1,1,-2r66,-235v6,-22,23,-27,37,-27v13,0,30,5,36,27r67,235r0,2xm154,-117r-33,-118v-1,-4,-3,-7,-7,-7v-4,0,-6,3,-7,7r-33,118r80,0xm176,-288v0,1,-2,2,-4,2r-18,0v-4,0,-6,-1,-9,-5r-29,-35r-30,35v-3,4,-4,5,-8,5r-19,0v-2,0,-3,-1,-3,-2v0,-1,0,-3,1,-4r35,-45v3,-4,4,-5,8,-5r31,0v4,0,6,1,9,5r34,45v1,1,2,3,2,4","w":227,"k":{"O":9,"\u00d8":9,"\u0152":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"\u00d5":9,"Q":9,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"y":19,"\u00fd":19,"\u00ff":19,"\u2019":16,"\u201d":16,"C":8,"\u00c7":8,"G":8,"L":6,"\u0141":6,"S":6,"\u0160":6,"T":32,"U":9,"\u00da":9,"\u00db":9,"\u00dc":9,"\u00d9":9,"V":25,"W":12,"Y":31,"\u00dd":31,"\u0178":31,"c":4,"\u00e7":4,"d":4,"f":16,"\ufb01":16,"\ufb02":16,"g":4,"q":4,"t":16,"v":19,"w":14}},"\u00c4":{"d":"217,-6v0,3,-2,6,-6,6r-21,0v-3,0,-5,-2,-6,-5r-23,-83r-94,0r-23,83v-1,3,-3,5,-6,5r-21,0v-4,0,-7,-3,-7,-6v0,-1,1,-1,1,-2r66,-235v6,-22,23,-27,37,-27v13,0,30,5,36,27r67,235r0,2xm154,-117r-33,-118v-1,-4,-3,-7,-7,-7v-4,0,-6,3,-7,7r-33,118r80,0xm162,-298v0,4,-3,7,-7,7r-14,0v-4,0,-7,-3,-7,-7r0,-29v0,-4,3,-7,7,-7r14,0v4,0,7,3,7,7r0,29xm99,-298v0,4,-3,7,-7,7r-14,0v-4,0,-7,-3,-7,-7r0,-29v0,-4,3,-7,7,-7r14,0v4,0,7,3,7,7r0,29","w":227,"k":{"O":9,"\u00d8":9,"\u0152":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"\u00d5":9,"Q":9,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"y":19,"\u00fd":19,"\u00ff":19,"\u2019":16,"\u201d":16,"C":8,"\u00c7":8,"G":8,"L":6,"\u0141":6,"S":6,"\u0160":6,"T":32,"U":9,"\u00da":9,"\u00db":9,"\u00dc":9,"\u00d9":9,"V":25,"W":12,"Y":31,"\u00dd":31,"\u0178":31,"c":4,"\u00e7":4,"d":4,"f":16,"\ufb01":16,"\ufb02":16,"g":4,"q":4,"t":16,"v":19,"w":14}},"\u00c0":{"d":"217,-6v0,3,-2,6,-6,6r-21,0v-3,0,-5,-2,-6,-5r-23,-83r-94,0r-23,83v-1,3,-3,5,-6,5r-21,0v-4,0,-7,-3,-7,-6v0,-1,1,-1,1,-2r66,-235v6,-22,23,-27,37,-27v13,0,30,5,36,27r67,235r0,2xm154,-117r-33,-118v-1,-4,-3,-7,-7,-7v-4,0,-6,3,-7,7r-33,118r80,0xm139,-288v0,1,-2,2,-4,2r-19,0v-4,0,-5,-1,-8,-5r-41,-46v-1,-1,-1,-1,-1,-2v0,-2,0,-3,3,-3r24,0v4,0,6,1,9,5r35,45v1,1,2,3,2,4","w":227,"k":{"O":9,"\u00d8":9,"\u0152":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"\u00d5":9,"Q":9,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"y":19,"\u00fd":19,"\u00ff":19,"\u2019":16,"\u201d":16,"C":8,"\u00c7":8,"G":8,"L":6,"\u0141":6,"S":6,"\u0160":6,"T":32,"U":9,"\u00da":9,"\u00db":9,"\u00dc":9,"\u00d9":9,"V":25,"W":12,"Y":31,"\u00dd":31,"\u0178":31,"c":4,"\u00e7":4,"d":4,"f":16,"\ufb01":16,"\ufb02":16,"g":4,"q":4,"t":16,"v":19,"w":14}},"\u00c5":{"d":"217,-6v0,3,-2,6,-6,6r-21,0v-3,0,-5,-2,-6,-5r-23,-83r-94,0r-23,83v-1,3,-3,5,-6,5r-21,0v-4,0,-7,-3,-7,-6v0,-1,1,-1,1,-2r66,-235v6,-22,23,-27,37,-27v13,0,30,5,36,27r67,235r0,2xm154,-117r-33,-118v-1,-4,-3,-7,-7,-7v-4,0,-6,3,-7,7r-33,118r80,0xm150,-316v0,20,-16,36,-36,36v-20,0,-37,-16,-37,-36v0,-20,17,-37,37,-37v20,0,36,17,36,37xm133,-316v0,-10,-9,-19,-19,-19v-10,0,-19,9,-19,19v0,10,9,19,19,19v10,0,19,-9,19,-19","w":227,"k":{"O":9,"\u00d8":9,"\u0152":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"\u00d5":9,"Q":9,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"y":19,"\u00fd":19,"\u00ff":19,"\u2019":16,"\u201d":16,"C":8,"\u00c7":8,"G":8,"L":6,"\u0141":6,"S":6,"\u0160":6,"T":32,"U":9,"\u00da":9,"\u00db":9,"\u00dc":9,"\u00d9":9,"V":25,"W":12,"Y":31,"\u00dd":31,"\u0178":31,"c":4,"\u00e7":4,"d":4,"f":16,"\ufb01":16,"\ufb02":16,"g":4,"q":4,"t":16,"v":19,"w":14}},"\u00c3":{"d":"217,-6v0,3,-2,6,-6,6r-21,0v-3,0,-5,-2,-6,-5r-23,-83r-94,0r-23,83v-1,3,-3,5,-6,5r-21,0v-4,0,-7,-3,-7,-6v0,-1,1,-1,1,-2r66,-235v6,-22,23,-27,37,-27v13,0,30,5,36,27r67,235r0,2xm154,-117r-33,-118v-1,-4,-3,-7,-7,-7v-4,0,-6,3,-7,7r-33,118r80,0xm179,-322v0,25,-10,38,-34,38v-8,0,-17,-3,-23,-8r-22,-17v-9,-7,-11,-8,-15,-8v-9,0,-11,5,-11,16r0,8v0,3,-3,6,-6,6r-11,0v-3,0,-6,-3,-6,-6r0,-8v0,-26,13,-39,34,-39v8,0,16,4,22,9r25,20v4,3,10,5,13,5v7,0,11,-4,11,-16r0,-8v0,-3,3,-6,6,-6r11,0v3,0,6,3,6,6r0,8","w":227,"k":{"O":9,"\u00d8":9,"\u0152":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"\u00d5":9,"Q":9,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"u":4,"\u00fa":4,"\u00fb":4,"\u00fc":4,"\u00f9":4,"y":19,"\u00fd":19,"\u00ff":19,"\u2019":16,"\u201d":16,"C":8,"\u00c7":8,"G":8,"L":6,"\u0141":6,"S":6,"\u0160":6,"T":32,"U":9,"\u00da":9,"\u00db":9,"\u00dc":9,"\u00d9":9,"V":25,"W":12,"Y":31,"\u00dd":31,"\u0178":31,"c":4,"\u00e7":4,"d":4,"f":16,"\ufb01":16,"\ufb02":16,"g":4,"q":4,"t":16,"v":19,"w":14}},"\u00c7":{"d":"184,-9v0,4,-4,6,-8,7v-15,3,-28,5,-59,5v-44,0,-95,-25,-95,-112r0,-50v0,-88,51,-111,95,-111v23,0,44,3,60,6v3,0,6,1,6,4r0,19v0,2,0,4,-4,4r-2,0v-13,-1,-39,-3,-60,-3v-35,0,-63,20,-63,81r0,50v0,60,28,82,63,82v21,0,46,-2,59,-3r2,0v4,0,6,2,6,6r0,15xm137,14v0,1,0,2,-1,3r-41,45v-3,4,-4,6,-8,6r-20,0v-2,0,-3,-2,-3,-3v0,-1,1,-2,2,-3r34,-45v3,-4,5,-5,9,-5r24,0v3,0,4,0,4,2","w":196,"k":{"O":10,"\u00d8":10,"\u0152":10,"\u00d3":10,"\u00d4":10,"\u00d6":10,"\u00d2":10,"\u00d5":10,"Q":10,"o":4,"\u00f8":4,"\u0153":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"y":8,"\u00fd":8,"\u00ff":8,"C":6,"\u00c7":6,"G":10}},"\u00c9":{"d":"179,-4v0,2,-2,5,-4,5v-14,1,-49,2,-70,2v-50,0,-77,-19,-77,-67r0,-139v0,-48,27,-67,77,-67v21,0,55,1,70,2v2,0,4,3,4,5r0,18v0,3,-1,5,-4,5r-70,0v-38,0,-44,10,-44,37r0,50r110,0v4,0,8,3,8,7r0,14v0,4,-4,7,-8,7r-110,0r0,61v0,27,6,37,44,37r70,0v3,0,4,1,4,4r0,19xm157,-339v0,1,0,1,-1,2r-41,46v-3,4,-4,5,-8,5r-20,0v-2,0,-3,-1,-3,-2v0,-1,0,-3,1,-4r36,-45v3,-4,4,-5,8,-5r24,0v3,0,4,1,4,3","w":198},"\u00ca":{"d":"179,-4v0,2,-2,5,-4,5v-14,1,-49,2,-70,2v-50,0,-77,-19,-77,-67r0,-139v0,-48,27,-67,77,-67v21,0,55,1,70,2v2,0,4,3,4,5r0,18v0,3,-1,5,-4,5r-70,0v-38,0,-44,10,-44,37r0,50r110,0v4,0,8,3,8,7r0,14v0,4,-4,7,-8,7r-110,0r0,61v0,27,6,37,44,37r70,0v3,0,4,1,4,4r0,19xm164,-288v0,1,-1,2,-3,2r-19,0v-4,0,-5,-1,-8,-5r-30,-35r-29,35v-3,4,-5,5,-9,5r-18,0v-2,0,-4,-1,-4,-2v0,-1,1,-3,2,-4r34,-45v3,-4,5,-5,9,-5r31,0v4,0,6,1,9,5r34,45v1,1,1,3,1,4","w":198},"\u00cb":{"d":"179,-4v0,2,-2,5,-4,5v-14,1,-49,2,-70,2v-50,0,-77,-19,-77,-67r0,-139v0,-48,27,-67,77,-67v21,0,55,1,70,2v2,0,4,3,4,5r0,18v0,3,-1,5,-4,5r-70,0v-38,0,-44,10,-44,37r0,50r110,0v4,0,8,3,8,7r0,14v0,4,-4,7,-8,7r-110,0r0,61v0,27,6,37,44,37r70,0v3,0,4,1,4,4r0,19xm153,-298v0,4,-4,6,-8,6r-14,0v-4,0,-7,-2,-7,-6r0,-30v0,-4,3,-7,7,-7r14,0v4,0,8,3,8,7r0,30xm90,-298v0,4,-4,6,-8,6r-14,0v-4,0,-7,-2,-7,-6r0,-30v0,-4,3,-7,7,-7r14,0v4,0,8,3,8,7r0,30","w":198},"\u00c8":{"d":"179,-4v0,2,-2,5,-4,5v-14,1,-49,2,-70,2v-50,0,-77,-19,-77,-67r0,-139v0,-48,27,-67,77,-67v21,0,55,1,70,2v2,0,4,3,4,5r0,18v0,3,-1,5,-4,5r-70,0v-38,0,-44,10,-44,37r0,50r110,0v4,0,8,3,8,7r0,14v0,4,-4,7,-8,7r-110,0r0,61v0,27,6,37,44,37r70,0v3,0,4,1,4,4r0,19xm130,-288v0,1,-2,3,-4,3r-19,0v-4,0,-5,-2,-8,-6r-41,-45v-1,-1,-1,-2,-1,-3v0,-2,0,-3,3,-3r24,0v4,0,6,2,9,6r35,44v1,1,2,3,2,4","w":198},"\u00cd":{"d":"64,-7v0,4,-2,7,-6,7r-20,0v-4,0,-6,-3,-6,-7r0,-254v0,-4,2,-6,6,-6r20,0v4,0,6,2,6,6r0,254xm98,-339v0,1,-1,1,-2,2r-40,46v-3,4,-4,5,-8,5r-20,0v-2,0,-3,-1,-3,-2v0,-1,0,-3,1,-4r36,-45v3,-4,4,-5,8,-5r24,0v3,0,4,1,4,3","w":96},"\u00ce":{"d":"64,-7v0,4,-2,7,-6,7r-20,0v-4,0,-6,-3,-6,-7r0,-254v0,-4,2,-6,6,-6r20,0v4,0,6,2,6,6r0,254xm107,-288v0,1,-2,2,-4,2r-18,0v-4,0,-6,-1,-9,-5r-29,-35r-30,35v-3,4,-4,5,-8,5r-19,0v-2,0,-3,-1,-3,-2v0,-1,0,-3,1,-4r35,-45v3,-4,4,-5,8,-5r31,0v4,0,6,1,9,5r34,45v1,1,2,3,2,4","w":96},"\u00cf":{"d":"64,-7v0,4,-2,7,-6,7r-20,0v-4,0,-6,-3,-6,-7r0,-254v0,-4,2,-6,6,-6r20,0v4,0,6,2,6,6r0,254xm94,-298v0,4,-3,7,-7,7r-14,0v-4,0,-7,-3,-7,-7r0,-29v0,-4,3,-7,7,-7r14,0v4,0,7,3,7,7r0,29xm31,-298v0,4,-3,7,-7,7r-14,0v-4,0,-7,-3,-7,-7r0,-29v0,-4,3,-7,7,-7r14,0v4,0,7,3,7,7r0,29","w":96},"\u00cc":{"d":"64,-7v0,4,-2,7,-6,7r-20,0v-4,0,-6,-3,-6,-7r0,-254v0,-4,2,-6,6,-6r20,0v4,0,6,2,6,6r0,254xm71,-288v0,1,-1,2,-3,2r-19,0v-4,0,-6,-1,-9,-5r-40,-46v-1,-1,-2,-1,-2,-2v0,-2,1,-3,4,-3r24,0v4,0,6,1,9,5r35,45v1,1,1,3,1,4","w":96},"\u00d1":{"d":"217,-10v0,6,-5,10,-11,10r-22,0v-6,0,-10,-2,-12,-6r-111,-211v0,-1,-1,-1,-1,-1r0,1r0,210v0,4,-3,7,-7,7r-18,0v-4,0,-7,0,-7,-4r0,-253v0,-6,5,-10,11,-10r19,0v10,0,12,2,15,7r111,210r0,1r1,-1r0,-211v0,-4,2,-6,6,-6r19,0v4,0,7,2,7,6r0,251xm183,-321v0,25,-10,38,-34,38v-8,0,-17,-3,-23,-8r-22,-18v-9,-7,-11,-7,-15,-7v-9,0,-11,5,-11,16r0,8v0,3,-3,6,-6,6r-11,0v-3,0,-6,-3,-6,-6r0,-8v0,-26,13,-39,34,-39v8,0,16,4,22,9r25,20v4,3,10,5,13,5v7,0,11,-4,11,-16r0,-8v0,-3,3,-7,6,-7r11,0v3,0,6,4,6,7r0,8","w":244,"k":{"T":12,"V":8,"Y":6,"\u00dd":6,"\u0178":6}},"\u00d3":{"d":"216,-111v0,80,-40,114,-97,114v-57,0,-97,-34,-97,-114r0,-46v0,-80,40,-113,97,-113v57,0,97,33,97,113r0,46xm183,-111r0,-46v0,-60,-24,-83,-64,-83v-39,0,-64,23,-64,83r0,46v0,60,24,84,64,84v39,0,64,-24,64,-84xm165,-339v0,1,-1,1,-2,2r-41,46v-3,4,-4,5,-8,5r-19,0v-2,0,-4,-1,-4,-2v0,-1,1,-3,2,-4r35,-45v3,-4,5,-5,9,-5r24,0v3,0,4,1,4,3","w":237,"k":{"T":16,"V":8,"W":4,"Y":14,"\u00dd":14,"\u0178":14,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"X":16,"Z":13,"\u017d":13}},"\u00d4":{"d":"216,-111v0,80,-40,114,-97,114v-57,0,-97,-34,-97,-114r0,-46v0,-80,40,-113,97,-113v57,0,97,33,97,113r0,46xm183,-111r0,-46v0,-60,-24,-83,-64,-83v-39,0,-64,23,-64,83r0,46v0,60,24,84,64,84v39,0,64,-24,64,-84xm179,-289v0,1,-1,3,-3,3r-19,0v-4,0,-5,-2,-8,-6r-30,-35r-30,35v-3,4,-4,6,-8,6r-19,0v-2,0,-3,-2,-3,-3v0,-1,0,-2,1,-3r35,-45v3,-4,5,-5,9,-5r30,0v4,0,6,1,9,5r34,45v1,1,2,2,2,3","w":237,"k":{"T":16,"V":8,"W":4,"Y":14,"\u00dd":14,"\u0178":14,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"X":16,"Z":13,"\u017d":13}},"\u00d6":{"d":"216,-111v0,80,-40,114,-97,114v-57,0,-97,-34,-97,-114r0,-46v0,-80,40,-113,97,-113v57,0,97,33,97,113r0,46xm183,-111r0,-46v0,-60,-24,-83,-64,-83v-39,0,-64,23,-64,83r0,46v0,60,24,84,64,84v39,0,64,-24,64,-84xm165,-298v0,4,-3,6,-7,6r-14,0v-4,0,-8,-2,-8,-6r0,-30v0,-4,4,-7,8,-7r14,0v4,0,7,3,7,7r0,30xm102,-298v0,4,-3,6,-7,6r-14,0v-4,0,-8,-2,-8,-6r0,-30v0,-4,4,-7,8,-7r14,0v4,0,7,3,7,7r0,30","w":237,"k":{"T":16,"V":8,"W":4,"Y":14,"\u00dd":14,"\u0178":14,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"X":16,"Z":13,"\u017d":13}},"\u00d2":{"d":"216,-111v0,80,-40,114,-97,114v-57,0,-97,-34,-97,-114r0,-46v0,-80,40,-113,97,-113v57,0,97,33,97,113r0,46xm183,-111r0,-46v0,-60,-24,-83,-64,-83v-39,0,-64,23,-64,83r0,46v0,60,24,84,64,84v39,0,64,-24,64,-84xm143,-288v0,1,-1,2,-3,2r-20,0v-4,0,-5,-1,-8,-5r-41,-46v-1,-1,-1,-1,-1,-2v0,-2,1,-3,4,-3r24,0v4,0,6,1,9,5r34,45v1,1,2,3,2,4","w":237,"k":{"T":16,"V":8,"W":4,"Y":14,"\u00dd":14,"\u0178":14,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"X":16,"Z":13,"\u017d":13}},"\u00d5":{"d":"216,-111v0,80,-40,114,-97,114v-57,0,-97,-34,-97,-114r0,-46v0,-80,40,-113,97,-113v57,0,97,33,97,113r0,46xm183,-111r0,-46v0,-60,-24,-83,-64,-83v-39,0,-64,23,-64,83r0,46v0,60,24,84,64,84v39,0,64,-24,64,-84xm184,-322v0,25,-10,38,-34,38v-8,0,-17,-3,-23,-8r-22,-17v-9,-7,-11,-8,-15,-8v-9,0,-11,5,-11,16r0,8v0,3,-3,6,-6,6r-11,0v-3,0,-6,-3,-6,-6r0,-8v0,-26,13,-39,34,-39v8,0,16,4,22,9r26,20v4,3,9,5,12,5v7,0,11,-4,11,-16r0,-8v0,-3,3,-6,6,-6r11,0v3,0,6,3,6,6r0,8","w":237,"k":{"T":16,"V":8,"W":4,"Y":14,"\u00dd":14,"\u0178":14,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,"X":16,"Z":13,"\u017d":13}},"\u0160":{"d":"180,-69v0,35,-18,72,-89,72v-25,0,-44,-3,-60,-6v-6,-1,-7,-2,-7,-6r0,-14v0,-4,4,-6,7,-6r1,0v17,1,42,2,59,2v43,0,55,-17,55,-42v0,-18,-10,-29,-43,-49r-35,-21v-33,-20,-50,-38,-50,-67v0,-44,31,-64,86,-64v21,0,49,2,63,4v4,1,6,2,6,6r0,16v0,4,-2,6,-6,6r-1,0v-16,-1,-41,-2,-62,-2v-37,0,-53,8,-53,34v0,17,12,26,39,43r33,20v42,25,57,45,57,74xm164,-339v0,1,0,2,-1,3r-35,45v-3,4,-5,5,-9,5r-31,0v-4,0,-5,-1,-8,-5r-36,-45v-1,-1,-1,-2,-1,-3v0,-1,1,-3,3,-3r20,0v4,0,5,2,8,6r30,34r29,-34v3,-4,4,-6,8,-6r20,0v2,0,3,2,3,3","w":198,"k":{"y":6,"\u00fd":6,"\u00ff":6,"V":9,"W":5,"Y":8,"\u00dd":8,"\u0178":8,"t":14,"v":8,"A":6,"\u00c6":6,"\u00c1":6,"\u00c2":6,"\u00c4":6,"\u00c0":6,"\u00c5":6,"\u00c3":6,"x":5}},"\u00da":{"d":"211,-97v0,69,-34,100,-92,100v-58,0,-92,-31,-92,-100r0,-164v0,-4,3,-6,7,-6r19,0v4,0,7,2,7,6r0,164v0,46,14,71,59,71v45,0,59,-24,59,-71r0,-164v0,-4,3,-6,7,-6r19,0v4,0,7,2,7,6r0,164xm172,-339v0,1,0,1,-1,2r-41,46v-3,4,-4,5,-8,5r-19,0v-2,0,-4,-1,-4,-2v0,-1,1,-3,2,-4r35,-45v3,-4,5,-5,9,-5r23,0v3,0,4,1,4,3","w":238,"k":{"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9}},"\u00db":{"d":"211,-97v0,69,-34,100,-92,100v-58,0,-92,-31,-92,-100r0,-164v0,-4,3,-6,7,-6r19,0v4,0,7,2,7,6r0,164v0,46,14,71,59,71v45,0,59,-24,59,-71r0,-164v0,-4,3,-6,7,-6r19,0v4,0,7,2,7,6r0,164xm178,-288v0,1,-1,2,-3,2r-19,0v-4,0,-5,-1,-8,-5r-30,-35r-30,35v-3,4,-4,5,-8,5r-19,0v-2,0,-3,-1,-3,-2v0,-1,0,-3,1,-4r35,-45v3,-4,5,-5,9,-5r30,0v4,0,6,1,9,5r34,45v1,1,2,3,2,4","w":238,"k":{"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9}},"\u00dc":{"d":"211,-97v0,69,-34,100,-92,100v-58,0,-92,-31,-92,-100r0,-164v0,-4,3,-6,7,-6r19,0v4,0,7,2,7,6r0,164v0,46,14,71,59,71v45,0,59,-24,59,-71r0,-164v0,-4,3,-6,7,-6r19,0v4,0,7,2,7,6r0,164xm164,-298v0,4,-3,6,-7,6r-14,0v-4,0,-7,-2,-7,-6r0,-30v0,-4,3,-7,7,-7r14,0v4,0,7,3,7,7r0,30xm101,-298v0,4,-3,6,-7,6r-14,0v-4,0,-7,-2,-7,-6r0,-30v0,-4,3,-7,7,-7r14,0v4,0,7,3,7,7r0,30","w":238,"k":{"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9}},"\u00d9":{"d":"211,-97v0,69,-34,100,-92,100v-58,0,-92,-31,-92,-100r0,-164v0,-4,3,-6,7,-6r19,0v4,0,7,2,7,6r0,164v0,46,14,71,59,71v45,0,59,-24,59,-71r0,-164v0,-4,3,-6,7,-6r19,0v4,0,7,2,7,6r0,164xm140,-288v0,1,-1,2,-3,2r-20,0v-4,0,-5,-1,-8,-5r-41,-46v-1,-1,-1,-1,-1,-2v0,-2,1,-3,4,-3r24,0v4,0,6,1,9,5r35,45v1,1,1,3,1,4","w":238,"k":{"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9}},"\u00dd":{"d":"198,-262v0,1,0,3,-1,4r-56,125v-6,14,-14,21,-20,24r0,102v0,4,-2,7,-6,7r-20,0v-4,0,-6,-3,-6,-7r0,-102v-6,-3,-14,-10,-20,-24r-55,-125v-1,-1,-1,-3,-1,-4v0,-3,2,-5,6,-5r22,0v3,0,5,2,6,5r50,116v4,8,6,10,8,10v3,0,4,-2,8,-10r50,-116v1,-3,4,-5,7,-5r22,0v4,0,6,2,6,5xm158,-339v0,1,-1,1,-2,2r-40,46v-3,4,-5,5,-9,5r-19,0v-2,0,-3,-1,-3,-2v0,-1,0,-3,1,-4r35,-45v3,-4,5,-5,9,-5r24,0v3,0,4,1,4,3","w":209,"k":{"O":14,"\u00d8":14,"\u0152":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"Q":14,"a":31,"\u00e6":31,"\u00e1":31,"\u00e2":31,"\u00e4":31,"\u00e0":31,"\u00e5":31,"\u00e3":31,"e":34,"\u00e9":34,"\u00ea":34,"\u00eb":34,"\u00e8":34,"o":35,"\u00f8":35,"\u0153":35,"\u00f3":35,"\u00f4":35,"\u00f6":35,"\u00f2":35,"\u00f5":35,"u":26,"\u00fa":26,"\u00fb":26,"\u00fc":26,"\u00f9":26,"y":19,"\u00fd":19,"\u00ff":19,",":33,"\u201a":33,"\u201e":33,".":33,"\u2026":33,"C":16,"\u00c7":16,"G":16,"S":8,"\u0160":8,"c":33,"\u00e7":33,"d":33,"f":13,"\ufb01":13,"\ufb02":13,"g":33,"q":35,"t":13,"v":21,"w":20,"A":31,"\u00c6":31,"\u00c1":31,"\u00c2":31,"\u00c4":31,"\u00c0":31,"\u00c5":31,"\u00c3":31,"E":10,"\u00c9":10,"\u00ca":10,"\u00cb":10,"\u00c8":10,"\u2013":28,"\u2014":28,"-":28,"x":19,"s":26,"\u0161":26,"z":25,"\u017e":25,"\u00a1":20,"m":17,"n":17,"p":27,"\u00bf":46,"r":27,"\/":33}},"\u0178":{"d":"198,-262v0,1,0,3,-1,4r-56,125v-6,14,-14,21,-20,24r0,102v0,4,-2,7,-6,7r-20,0v-4,0,-6,-3,-6,-7r0,-102v-6,-3,-14,-10,-20,-24r-55,-125v-1,-1,-1,-3,-1,-4v0,-3,2,-5,6,-5r22,0v3,0,5,2,6,5r50,116v4,8,6,10,8,10v3,0,4,-2,8,-10r50,-116v1,-3,4,-5,7,-5r22,0v4,0,6,2,6,5xm150,-296v0,4,-3,7,-7,7r-14,0v-4,0,-7,-3,-7,-7r0,-29v0,-4,3,-7,7,-7r14,0v4,0,7,3,7,7r0,29xm87,-296v0,4,-3,7,-7,7r-14,0v-4,0,-7,-3,-7,-7r0,-29v0,-4,3,-7,7,-7r14,0v4,0,7,3,7,7r0,29","w":209,"k":{"O":14,"\u00d8":14,"\u0152":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"Q":14,"a":31,"\u00e6":31,"\u00e1":31,"\u00e2":31,"\u00e4":31,"\u00e0":31,"\u00e5":31,"\u00e3":31,"e":34,"\u00e9":34,"\u00ea":34,"\u00eb":34,"\u00e8":34,"o":35,"\u00f8":35,"\u0153":35,"\u00f3":35,"\u00f4":35,"\u00f6":35,"\u00f2":35,"\u00f5":35,"u":26,"\u00fa":26,"\u00fb":26,"\u00fc":26,"\u00f9":26,"y":19,"\u00fd":19,"\u00ff":19,",":33,"\u201a":33,"\u201e":33,".":33,"\u2026":33,"C":16,"\u00c7":16,"G":16,"S":8,"\u0160":8,"c":33,"\u00e7":33,"d":33,"f":13,"\ufb01":13,"\ufb02":13,"g":33,"q":35,"t":13,"v":21,"w":20,"A":31,"\u00c6":31,"\u00c1":31,"\u00c2":31,"\u00c4":31,"\u00c0":31,"\u00c5":31,"\u00c3":31,"E":10,"\u00c9":10,"\u00ca":10,"\u00cb":10,"\u00c8":10,"\u2013":28,"\u2014":28,"-":28,"x":19,"s":26,"\u0161":26,"z":25,"\u017e":25,"\u00a1":20,"m":17,"n":17,"p":27,"\u00bf":46,"r":27,"\/":33}},"\u017d":{"d":"196,-6v0,4,-3,6,-7,6r-139,0v-23,0,-30,-5,-30,-24v0,-6,2,-16,6,-21r128,-188v1,-1,2,-2,2,-3v0,-1,-2,-2,-4,-2r-120,0v-4,0,-7,-2,-7,-6r0,-17v0,-4,3,-6,7,-6r129,0v20,0,30,3,30,23v0,6,-2,17,-6,22r-128,187v-1,1,-1,2,-1,3v0,1,0,2,3,2r130,0v4,0,7,3,7,7r0,17xm169,-339v0,1,0,2,-1,3r-35,45v-3,4,-5,5,-9,5r-31,0v-4,0,-5,-1,-8,-5r-36,-45v-1,-1,-1,-2,-1,-3v0,-1,1,-3,3,-3r20,0v4,0,5,2,8,6r30,34r29,-34v3,-4,5,-6,9,-6r19,0v2,0,3,2,3,3","w":214},"\u00e1":{"d":"162,-7v0,4,-3,7,-7,7r-16,0v-4,0,-8,-3,-8,-7r0,-8v-17,10,-35,18,-55,18v-31,0,-59,-14,-59,-59r0,-4v0,-39,23,-58,87,-58r27,0r0,-15v0,-30,-11,-41,-39,-41v-23,0,-41,2,-55,3r-2,0v-3,0,-6,0,-6,-5r0,-13v0,-4,2,-6,7,-7v15,-3,32,-5,56,-5v50,0,70,26,70,68r0,126xm131,-38r0,-58r-27,0v-44,0,-55,10,-55,36r0,4v0,26,12,33,33,33v17,0,32,-6,49,-15xm148,-278v0,1,0,2,-1,3r-41,45v-3,4,-4,6,-8,6r-20,0v-2,0,-3,-2,-3,-3v0,-1,1,-2,2,-3r35,-45v3,-4,5,-5,9,-5r23,0v3,0,4,0,4,2","w":186,"k":{"v":11,"y":8,"\u00fd":8,"\u00ff":8,"f":7,"\ufb01":7,"\ufb02":7,"t":9}},"\u00e2":{"d":"162,-7v0,4,-3,7,-7,7r-16,0v-4,0,-8,-3,-8,-7r0,-8v-17,10,-35,18,-55,18v-31,0,-59,-14,-59,-59r0,-4v0,-39,23,-58,87,-58r27,0r0,-15v0,-30,-11,-41,-39,-41v-23,0,-41,2,-55,3r-2,0v-3,0,-6,0,-6,-5r0,-13v0,-4,2,-6,7,-7v15,-3,32,-5,56,-5v50,0,70,26,70,68r0,126xm131,-38r0,-58r-27,0v-44,0,-55,10,-55,36r0,4v0,26,12,33,33,33v17,0,32,-6,49,-15xm153,-227v0,1,-1,3,-3,3r-19,0v-4,0,-5,-2,-8,-6r-30,-35r-30,35v-3,4,-4,6,-8,6r-19,0v-2,0,-3,-2,-3,-3v0,-1,1,-2,2,-3r34,-45v3,-4,5,-5,9,-5r30,0v4,0,6,1,9,5r35,45v1,1,1,2,1,3","w":186,"k":{"v":11,"y":8,"\u00fd":8,"\u00ff":8,"f":7,"\ufb01":7,"\ufb02":7,"t":9}},"\u00e4":{"d":"162,-7v0,4,-3,7,-7,7r-16,0v-4,0,-8,-3,-8,-7r0,-8v-17,10,-35,18,-55,18v-31,0,-59,-14,-59,-59r0,-4v0,-39,23,-58,87,-58r27,0r0,-15v0,-30,-11,-41,-39,-41v-23,0,-41,2,-55,3r-2,0v-3,0,-6,0,-6,-5r0,-13v0,-4,2,-6,7,-7v15,-3,32,-5,56,-5v50,0,70,26,70,68r0,126xm131,-38r0,-58r-27,0v-44,0,-55,10,-55,36r0,4v0,26,12,33,33,33v17,0,32,-6,49,-15xm140,-238v0,4,-4,7,-8,7r-14,0v-4,0,-7,-3,-7,-7r0,-29v0,-4,3,-7,7,-7r14,0v4,0,8,3,8,7r0,29xm77,-238v0,4,-4,7,-8,7r-14,0v-4,0,-7,-3,-7,-7r0,-29v0,-4,3,-7,7,-7r14,0v4,0,8,3,8,7r0,29","w":186,"k":{"v":11,"y":8,"\u00fd":8,"\u00ff":8,"f":7,"\ufb01":7,"\ufb02":7,"t":9}},"\u00e0":{"d":"162,-7v0,4,-3,7,-7,7r-16,0v-4,0,-8,-3,-8,-7r0,-8v-17,10,-35,18,-55,18v-31,0,-59,-14,-59,-59r0,-4v0,-39,23,-58,87,-58r27,0r0,-15v0,-30,-11,-41,-39,-41v-23,0,-41,2,-55,3r-2,0v-3,0,-6,0,-6,-5r0,-13v0,-4,2,-6,7,-7v15,-3,32,-5,56,-5v50,0,70,26,70,68r0,126xm131,-38r0,-58r-27,0v-44,0,-55,10,-55,36r0,4v0,26,12,33,33,33v17,0,32,-6,49,-15xm117,-227v0,1,-2,3,-4,3r-19,0v-4,0,-5,-2,-8,-6r-41,-45v-1,-1,-1,-2,-1,-3v0,-2,1,-2,4,-2r23,0v4,0,6,1,9,5r35,45v1,1,2,2,2,3","w":186,"k":{"v":11,"y":8,"\u00fd":8,"\u00ff":8,"f":7,"\ufb01":7,"\ufb02":7,"t":9}},"\u00e5":{"d":"162,-7v0,4,-3,7,-7,7r-16,0v-4,0,-8,-3,-8,-7r0,-8v-17,10,-35,18,-55,18v-31,0,-59,-14,-59,-59r0,-4v0,-39,23,-58,87,-58r27,0r0,-15v0,-30,-11,-41,-39,-41v-23,0,-41,2,-55,3r-2,0v-3,0,-6,0,-6,-5r0,-13v0,-4,2,-6,7,-7v15,-3,32,-5,56,-5v50,0,70,26,70,68r0,126xm131,-38r0,-58r-27,0v-44,0,-55,10,-55,36r0,4v0,26,12,33,33,33v17,0,32,-6,49,-15xm129,-253v0,20,-16,36,-36,36v-20,0,-37,-16,-37,-36v0,-20,17,-37,37,-37v20,0,36,17,36,37xm112,-253v0,-10,-9,-19,-19,-19v-10,0,-19,9,-19,19v0,10,9,19,19,19v10,0,19,-9,19,-19","w":186,"k":{"v":11,"y":8,"\u00fd":8,"\u00ff":8,"f":7,"\ufb01":7,"\ufb02":7,"t":9}},"\u00e3":{"d":"162,-7v0,4,-3,7,-7,7r-16,0v-4,0,-8,-3,-8,-7r0,-8v-17,10,-35,18,-55,18v-31,0,-59,-14,-59,-59r0,-4v0,-39,23,-58,87,-58r27,0r0,-15v0,-30,-11,-41,-39,-41v-23,0,-41,2,-55,3r-2,0v-3,0,-6,0,-6,-5r0,-13v0,-4,2,-6,7,-7v15,-3,32,-5,56,-5v50,0,70,26,70,68r0,126xm131,-38r0,-58r-27,0v-44,0,-55,10,-55,36r0,4v0,26,12,33,33,33v17,0,32,-6,49,-15xm161,-263v0,25,-10,38,-34,38v-8,0,-17,-3,-23,-8r-22,-18v-9,-7,-11,-7,-15,-7v-9,0,-11,5,-11,16r0,8v0,3,-3,6,-6,6r-11,0v-3,0,-6,-3,-6,-6r0,-8v0,-26,13,-39,34,-39v8,0,16,3,22,8r25,21v4,3,10,5,13,5v7,0,11,-4,11,-16r0,-8v0,-3,3,-7,6,-7r11,0v3,0,6,4,6,7r0,8","w":186,"k":{"v":11,"y":8,"\u00fd":8,"\u00ff":8,"f":7,"\ufb01":7,"\ufb02":7,"t":9}},"\u00e7":{"d":"147,-9v0,5,-1,7,-7,8v-12,2,-28,4,-45,4v-49,0,-77,-35,-77,-88r0,-28v0,-53,28,-88,77,-88v17,0,33,2,45,4v6,1,7,3,7,8r0,13v0,4,-3,6,-6,6r-2,0v-16,-2,-26,-3,-44,-3v-29,0,-45,19,-45,60r0,28v0,40,16,60,45,60v18,0,28,-1,44,-3r2,0v3,0,6,2,6,6r0,13xm116,14v0,1,-1,2,-2,3r-40,45v-3,4,-4,6,-8,6r-20,0v-2,0,-3,-2,-3,-3v0,-1,0,-2,1,-3r35,-45v3,-4,5,-5,9,-5r24,0v3,0,4,0,4,2","w":162,"k":{"o":13,"\u00f8":13,"\u0153":13,"\u00f3":13,"\u00f4":13,"\u00f6":13,"\u00f2":13,"\u00f5":13}},"\u00e9":{"d":"177,-97v0,5,-3,8,-7,8r-120,0r0,5v0,43,17,59,50,59v21,0,47,-1,64,-4r2,0v3,0,5,1,5,5r0,12v0,5,-1,7,-7,8v-21,4,-40,7,-64,7v-41,0,-82,-20,-82,-87r0,-32v0,-51,29,-85,80,-85v53,0,79,34,79,85r0,19xm145,-113r0,-3v0,-41,-15,-57,-47,-57v-31,0,-48,18,-48,57r0,3r95,0xm156,-278v0,1,0,2,-1,3r-41,45v-3,4,-4,6,-8,6r-20,0v-2,0,-3,-2,-3,-3v0,-1,1,-2,2,-3r35,-45v3,-4,5,-5,9,-5r23,0v3,0,4,0,4,2","w":195,"k":{"t":11,"y":7,"\u00fd":7,"\u00ff":7,"T":33,"f":7,"\ufb01":7,"\ufb02":7,"v":7,"w":2,"x":10,"\ufb03":7,"\ufb00":7,"\ufb04":7,"\ue000":7,"\ue001":7,"\ue005":7,"\ue002":7,"\ue006":7,"\ue003":7,"\ue007":7,"\ue004":7}},"\u00ea":{"d":"177,-97v0,5,-3,8,-7,8r-120,0r0,5v0,43,17,59,50,59v21,0,47,-1,64,-4r2,0v3,0,5,1,5,5r0,12v0,5,-1,7,-7,8v-21,4,-40,7,-64,7v-41,0,-82,-20,-82,-87r0,-32v0,-51,29,-85,80,-85v53,0,79,34,79,85r0,19xm145,-113r0,-3v0,-41,-15,-57,-47,-57v-31,0,-48,18,-48,57r0,3r95,0xm158,-227v0,1,-1,3,-3,3r-19,0v-4,0,-5,-2,-8,-6r-30,-35r-30,35v-3,4,-4,6,-8,6r-19,0v-2,0,-3,-2,-3,-3v0,-1,1,-2,2,-3r34,-45v3,-4,5,-5,9,-5r30,0v4,0,6,1,9,5r35,45v1,1,1,2,1,3","w":195,"k":{"t":11,"y":7,"\u00fd":7,"\u00ff":7,"T":33,"f":7,"\ufb01":7,"\ufb02":7,"v":7,"w":2,"x":10,"\ufb03":7,"\ufb00":7,"\ufb04":7,"\ue000":7,"\ue001":7,"\ue005":7,"\ue002":7,"\ue006":7,"\ue003":7,"\ue007":7,"\ue004":7}},"\u00eb":{"d":"177,-97v0,5,-3,8,-7,8r-120,0r0,5v0,43,17,59,50,59v21,0,47,-1,64,-4r2,0v3,0,5,1,5,5r0,12v0,5,-1,7,-7,8v-21,4,-40,7,-64,7v-41,0,-82,-20,-82,-87r0,-32v0,-51,29,-85,80,-85v53,0,79,34,79,85r0,19xm145,-113r0,-3v0,-41,-15,-57,-47,-57v-31,0,-48,18,-48,57r0,3r95,0xm145,-238v0,4,-3,7,-7,7r-14,0v-4,0,-7,-3,-7,-7r0,-29v0,-4,3,-7,7,-7r14,0v4,0,7,3,7,7r0,29xm82,-238v0,4,-3,7,-7,7r-14,0v-4,0,-7,-3,-7,-7r0,-29v0,-4,3,-7,7,-7r14,0v4,0,7,3,7,7r0,29","w":195,"k":{"t":11,"y":7,"\u00fd":7,"\u00ff":7,"T":33,"f":7,"\ufb01":7,"\ufb02":7,"v":7,"w":2,"x":10,"\ufb03":7,"\ufb00":7,"\ufb04":7,"\ue000":7,"\ue001":7,"\ue005":7,"\ue002":7,"\ue006":7,"\ue003":7,"\ue007":7,"\ue004":7}},"\u00e8":{"d":"177,-97v0,5,-3,8,-7,8r-120,0r0,5v0,43,17,59,50,59v21,0,47,-1,64,-4r2,0v3,0,5,1,5,5r0,12v0,5,-1,7,-7,8v-21,4,-40,7,-64,7v-41,0,-82,-20,-82,-87r0,-32v0,-51,29,-85,80,-85v53,0,79,34,79,85r0,19xm145,-113r0,-3v0,-41,-15,-57,-47,-57v-31,0,-48,18,-48,57r0,3r95,0xm129,-227v0,1,-1,3,-3,3r-20,0v-4,0,-5,-2,-8,-6r-41,-45v-1,-1,-1,-2,-1,-3v0,-2,1,-2,4,-2r24,0v4,0,6,1,9,5r34,45v1,1,2,2,2,3","w":195,"k":{"t":11,"y":7,"\u00fd":7,"\u00ff":7,"T":33,"f":7,"\ufb01":7,"\ufb02":7,"v":7,"w":2,"x":10,"\ufb03":7,"\ufb00":7,"\ufb04":7,"\ue000":7,"\ue001":7,"\ue005":7,"\ue002":7,"\ue006":7,"\ue003":7,"\ue007":7,"\ue004":7}},"\u00ed":{"d":"60,-7v0,4,-3,7,-7,7r-17,0v-4,0,-8,-3,-8,-7r0,-184v0,-4,4,-7,8,-7r17,0v4,0,7,3,7,7r0,184xm98,-278v0,1,-1,2,-2,3r-41,45v-3,4,-4,6,-8,6r-19,0v-2,0,-4,-2,-4,-3v0,-1,1,-2,2,-3r35,-45v3,-4,5,-5,9,-5r24,0v3,0,4,0,4,2","w":88},"\u00ee":{"d":"60,-7v0,4,-3,7,-7,7r-17,0v-4,0,-8,-3,-8,-7r0,-184v0,-4,4,-7,8,-7r17,0v4,0,7,3,7,7r0,184xm104,-227v0,1,-1,3,-3,3r-19,0v-4,0,-5,-2,-8,-6r-30,-35r-30,35v-3,4,-4,6,-8,6r-19,0v-2,0,-3,-2,-3,-3v0,-1,1,-2,2,-3r34,-45v3,-4,5,-5,9,-5r30,0v4,0,6,1,9,5r35,45v1,1,1,2,1,3","w":88},"\u00ef":{"d":"60,-7v0,4,-3,7,-7,7r-17,0v-4,0,-8,-3,-8,-7r0,-184v0,-4,4,-7,8,-7r17,0v4,0,7,3,7,7r0,184xm90,-238v0,4,-3,7,-7,7r-14,0v-4,0,-7,-3,-7,-7r0,-29v0,-4,3,-7,7,-7r14,0v4,0,7,3,7,7r0,29xm27,-238v0,4,-3,7,-7,7r-14,0v-4,0,-7,-3,-7,-7r0,-29v0,-4,3,-7,7,-7r14,0v4,0,7,3,7,7r0,29","w":88},"\u00ec":{"d":"60,-7v0,4,-3,7,-7,7r-17,0v-4,0,-8,-3,-8,-7r0,-184v0,-4,4,-7,8,-7r17,0v4,0,7,3,7,7r0,184xm67,-227v0,1,-2,3,-4,3r-19,0v-4,0,-5,-2,-8,-6r-41,-45v-1,-1,-1,-2,-1,-3v0,-2,0,-2,3,-2r24,0v4,0,6,1,9,5r35,45v1,1,2,2,2,3","w":88},"\u00f1":{"d":"176,-7v0,4,-3,7,-7,7r-17,0v-4,0,-8,-3,-8,-7r0,-119v0,-36,-12,-47,-39,-47v-15,0,-32,6,-49,14r0,152v0,4,-3,7,-7,7r-18,0v-4,0,-7,-3,-7,-7r0,-184v0,-4,3,-7,7,-7r18,0v4,0,7,3,7,7r0,7v20,-11,36,-17,57,-17v43,0,63,27,63,75r0,119xm166,-263v0,25,-10,38,-34,38v-8,0,-17,-3,-23,-8r-22,-18v-9,-7,-11,-7,-15,-7v-9,0,-11,5,-11,16r0,8v0,3,-3,6,-6,6r-11,0v-3,0,-6,-3,-6,-6r0,-8v0,-26,13,-39,34,-39v8,0,16,3,22,8r25,21v4,3,10,5,13,5v7,0,11,-4,11,-16r0,-8v0,-3,3,-7,6,-7r11,0v3,0,6,4,6,7r0,8","w":200,"k":{"y":8,"\u00fd":8,"\u00ff":8,"f":7,"\ufb01":7,"\ufb02":7,"t":7,"v":8,"w":7}},"\u00f3":{"d":"178,-85v0,53,-27,88,-80,88v-53,0,-80,-35,-80,-88r0,-28v0,-53,27,-88,80,-88v53,0,80,35,80,88r0,28xm147,-85r0,-28v0,-37,-15,-60,-49,-60v-33,0,-48,23,-48,60r0,28v0,37,14,60,48,60v33,0,49,-23,49,-60xm153,-278v0,1,0,2,-1,3r-41,45v-3,4,-4,6,-8,6r-19,0v-2,0,-4,-2,-4,-3v0,-1,1,-2,2,-3r35,-45v3,-4,5,-5,9,-5r23,0v3,0,4,0,4,2","w":196,"k":{"t":11,"y":8,"\u00fd":8,"\u00ff":8,"f":7,"\ufb01":7,"\ufb02":7,"v":8,"w":6,"x":13,"z":6,"\u017e":6,"\ufb03":7,"\ufb00":7,"\ufb04":7,"\ue000":7,"\ue001":7,"\ue005":7,"\ue002":7,"\ue006":7,"\ue003":7,"\ue007":7,"\ue004":7}},"\u00f4":{"d":"178,-85v0,53,-27,88,-80,88v-53,0,-80,-35,-80,-88r0,-28v0,-53,27,-88,80,-88v53,0,80,35,80,88r0,28xm147,-85r0,-28v0,-37,-15,-60,-49,-60v-33,0,-48,23,-48,60r0,28v0,37,14,60,48,60v33,0,49,-23,49,-60xm158,-227v0,1,-1,3,-3,3r-19,0v-4,0,-5,-2,-8,-6r-29,-35r-30,35v-3,4,-5,6,-9,6r-18,0v-2,0,-3,-2,-3,-3v0,-1,0,-2,1,-3r35,-45v3,-4,4,-5,8,-5r31,0v4,0,6,1,9,5r34,45v1,1,1,2,1,3","w":196,"k":{"t":11,"y":8,"\u00fd":8,"\u00ff":8,"f":7,"\ufb01":7,"\ufb02":7,"v":8,"w":6,"x":13,"z":6,"\u017e":6,"\ufb03":7,"\ufb00":7,"\ufb04":7,"\ue000":7,"\ue001":7,"\ue005":7,"\ue002":7,"\ue006":7,"\ue003":7,"\ue007":7,"\ue004":7}},"\u00f6":{"d":"178,-85v0,53,-27,88,-80,88v-53,0,-80,-35,-80,-88r0,-28v0,-53,27,-88,80,-88v53,0,80,35,80,88r0,28xm147,-85r0,-28v0,-37,-15,-60,-49,-60v-33,0,-48,23,-48,60r0,28v0,37,14,60,48,60v33,0,49,-23,49,-60xm143,-238v0,4,-3,7,-7,7r-14,0v-4,0,-7,-3,-7,-7r0,-29v0,-4,3,-7,7,-7r14,0v4,0,7,3,7,7r0,29xm80,-238v0,4,-3,7,-7,7r-14,0v-4,0,-7,-3,-7,-7r0,-29v0,-4,3,-7,7,-7r14,0v4,0,7,3,7,7r0,29","w":196,"k":{"t":11,"y":8,"\u00fd":8,"\u00ff":8,"f":7,"\ufb01":7,"\ufb02":7,"v":8,"w":6,"x":13,"z":6,"\u017e":6,"\ufb03":7,"\ufb00":7,"\ufb04":7,"\ue000":7,"\ue001":7,"\ue005":7,"\ue002":7,"\ue006":7,"\ue003":7,"\ue007":7,"\ue004":7}},"\u00f2":{"d":"178,-85v0,53,-27,88,-80,88v-53,0,-80,-35,-80,-88r0,-28v0,-53,27,-88,80,-88v53,0,80,35,80,88r0,28xm147,-85r0,-28v0,-37,-15,-60,-49,-60v-33,0,-48,23,-48,60r0,28v0,37,14,60,48,60v33,0,49,-23,49,-60xm119,-227v0,1,-1,3,-3,3r-20,0v-4,0,-5,-2,-8,-6r-41,-45v-1,-1,-1,-2,-1,-3v0,-2,1,-2,4,-2r23,0v4,0,6,1,9,5r35,45v1,1,2,2,2,3","w":196,"k":{"t":11,"y":8,"\u00fd":8,"\u00ff":8,"f":7,"\ufb01":7,"\ufb02":7,"v":8,"w":6,"x":13,"z":6,"\u017e":6,"\ufb03":7,"\ufb00":7,"\ufb04":7,"\ue000":7,"\ue001":7,"\ue005":7,"\ue002":7,"\ue006":7,"\ue003":7,"\ue007":7,"\ue004":7}},"\u00f5":{"d":"178,-85v0,53,-27,88,-80,88v-53,0,-80,-35,-80,-88r0,-28v0,-53,27,-88,80,-88v53,0,80,35,80,88r0,28xm147,-85r0,-28v0,-37,-15,-60,-49,-60v-33,0,-48,23,-48,60r0,28v0,37,14,60,48,60v33,0,49,-23,49,-60xm164,-263v0,25,-10,38,-34,38v-8,0,-17,-3,-23,-8r-22,-18v-9,-7,-10,-7,-14,-7v-9,0,-12,5,-12,16r0,8v0,3,-3,6,-6,6r-11,0v-3,0,-6,-3,-6,-6r0,-8v0,-26,14,-39,35,-39v8,0,15,3,21,8r26,21v4,3,9,5,12,5v7,0,11,-4,11,-16r0,-8v0,-3,3,-7,6,-7r11,0v3,0,6,4,6,7r0,8","w":196,"k":{"t":11,"y":8,"\u00fd":8,"\u00ff":8,"f":7,"\ufb01":7,"\ufb02":7,"v":8,"w":6,"x":13,"z":6,"\u017e":6,"\ufb03":7,"\ufb00":7,"\ufb04":7,"\ue000":7,"\ue001":7,"\ue005":7,"\ue002":7,"\ue006":7,"\ue003":7,"\ue007":7,"\ue004":7}},"\u0161":{"d":"150,-50v0,37,-28,53,-68,53v-13,0,-38,-2,-56,-6v-5,-1,-8,-3,-8,-7r0,-13v0,-3,2,-5,6,-5r2,0v17,2,43,4,56,4v23,0,36,-7,36,-26v0,-11,-6,-18,-27,-30r-36,-21v-22,-13,-37,-29,-37,-52v0,-37,28,-48,65,-48v20,0,39,2,56,5v5,1,7,3,7,7r0,12v0,4,-2,6,-6,6r-1,0v-13,-1,-36,-3,-56,-3v-20,0,-33,3,-33,21v0,11,8,18,25,28r35,21v30,18,40,33,40,54xm143,-278v0,1,-1,3,-2,4r-35,44v-3,4,-5,6,-9,6r-30,0v-4,0,-6,-2,-9,-6r-35,-44v-1,-1,-2,-3,-2,-4v0,-1,1,-2,3,-2r20,0v4,0,5,1,8,5r30,35r30,-35v3,-4,4,-5,8,-5r19,0v2,0,4,1,4,2","w":167,"k":{"y":4,"\u00fd":4,"\u00ff":4,"f":4,"\ufb01":4,"\ufb02":4,"t":5,"v":5}},"\u00fa":{"d":"176,-7v0,4,-3,7,-7,7r-18,0v-4,0,-7,-3,-7,-7r0,-7v-20,11,-36,17,-57,17v-43,0,-63,-27,-63,-75r0,-119v0,-4,4,-7,8,-7r17,0v4,0,7,3,7,7r0,119v0,36,13,47,40,47v15,0,31,-6,48,-14r0,-152v0,-4,4,-7,8,-7r17,0v4,0,7,3,7,7r0,184xm156,-278v0,1,0,2,-1,3r-41,45v-3,4,-4,6,-8,6r-20,0v-2,0,-3,-2,-3,-3v0,-1,1,-2,2,-3r35,-45v3,-4,5,-5,9,-5r23,0v3,0,4,0,4,2","w":200},"\u00fb":{"d":"176,-7v0,4,-3,7,-7,7r-18,0v-4,0,-7,-3,-7,-7r0,-7v-20,11,-36,17,-57,17v-43,0,-63,-27,-63,-75r0,-119v0,-4,4,-7,8,-7r17,0v4,0,7,3,7,7r0,119v0,36,13,47,40,47v15,0,31,-6,48,-14r0,-152v0,-4,4,-7,8,-7r17,0v4,0,7,3,7,7r0,184xm161,-227v0,1,-2,3,-4,3r-18,0v-4,0,-6,-2,-9,-6r-29,-35r-30,35v-3,4,-4,6,-8,6r-19,0v-2,0,-3,-2,-3,-3v0,-1,0,-2,1,-3r35,-45v3,-4,4,-5,8,-5r31,0v4,0,6,1,9,5r34,45v1,1,2,2,2,3","w":200},"\u00fc":{"d":"176,-7v0,4,-3,7,-7,7r-18,0v-4,0,-7,-3,-7,-7r0,-7v-20,11,-36,17,-57,17v-43,0,-63,-27,-63,-75r0,-119v0,-4,4,-7,8,-7r17,0v4,0,7,3,7,7r0,119v0,36,13,47,40,47v15,0,31,-6,48,-14r0,-152v0,-4,4,-7,8,-7r17,0v4,0,7,3,7,7r0,184xm146,-238v0,4,-3,7,-7,7r-14,0v-4,0,-8,-3,-8,-7r0,-29v0,-4,4,-7,8,-7r14,0v4,0,7,3,7,7r0,29xm83,-238v0,4,-3,7,-7,7r-14,0v-4,0,-8,-3,-8,-7r0,-29v0,-4,4,-7,8,-7r14,0v4,0,7,3,7,7r0,29","w":200},"\u00f9":{"d":"176,-7v0,4,-3,7,-7,7r-18,0v-4,0,-7,-3,-7,-7r0,-7v-20,11,-36,17,-57,17v-43,0,-63,-27,-63,-75r0,-119v0,-4,4,-7,8,-7r17,0v4,0,7,3,7,7r0,119v0,36,13,47,40,47v15,0,31,-6,48,-14r0,-152v0,-4,4,-7,8,-7r17,0v4,0,7,3,7,7r0,184xm121,-227v0,1,-1,3,-3,3r-20,0v-4,0,-5,-2,-8,-6r-41,-45v-1,-1,-1,-2,-1,-3v0,-2,1,-2,4,-2r24,0v4,0,6,1,9,5r35,45v1,1,1,2,1,3","w":200},"\u00fd":{"d":"178,-192r0,3r-60,207v-11,39,-24,53,-65,53v-10,0,-23,-1,-31,-3v-4,-1,-7,-2,-7,-6r0,-13v0,-4,3,-6,7,-6r1,0v8,1,24,2,32,2v21,0,29,-5,35,-30r4,-15r-5,0v-11,0,-21,-3,-27,-25r-48,-164r0,-3v0,-4,3,-6,7,-6r19,0v3,0,5,3,6,6r43,156v2,7,4,8,7,8r6,0r43,-165v1,-3,4,-5,7,-5r20,0v4,0,6,2,6,6xm161,-278v0,1,-1,2,-2,3r-41,45v-3,4,-4,6,-8,6r-19,0v-2,0,-4,-2,-4,-3v0,-1,1,-2,2,-3r35,-45v3,-4,5,-5,9,-5r24,0v3,0,4,0,4,2","w":192,"k":{"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":8,"\u00f8":8,"\u0153":8,"\u00f3":8,"\u00f4":8,"\u00f6":8,"\u00f2":8,"\u00f5":8,",":13,"\u201a":13,"\u201e":13,"c":9,"\u00e7":9,"g":9,"q":7}},"\u00ff":{"d":"178,-192r0,3r-60,207v-11,39,-24,53,-65,53v-10,0,-23,-1,-31,-3v-4,-1,-7,-2,-7,-6r0,-13v0,-4,3,-6,7,-6r1,0v8,1,24,2,32,2v21,0,29,-5,35,-30r4,-15r-5,0v-11,0,-21,-3,-27,-25r-48,-164r0,-3v0,-4,3,-6,7,-6r19,0v3,0,5,3,6,6r43,156v2,7,4,8,7,8r6,0r43,-165v1,-3,4,-5,7,-5r20,0v4,0,6,2,6,6xm145,-238v0,4,-3,7,-7,7r-14,0v-4,0,-7,-3,-7,-7r0,-29v0,-4,3,-7,7,-7r14,0v4,0,7,3,7,7r0,29xm82,-238v0,4,-3,7,-7,7r-14,0v-4,0,-7,-3,-7,-7r0,-29v0,-4,3,-7,7,-7r14,0v4,0,7,3,7,7r0,29","w":192,"k":{"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":8,"\u00f8":8,"\u0153":8,"\u00f3":8,"\u00f4":8,"\u00f6":8,"\u00f2":8,"\u00f5":8,",":13,"\u201a":13,"\u201e":13,"c":9,"\u00e7":9,"g":9,"q":7}},"\u017e":{"d":"156,-7v0,4,-4,7,-8,7r-108,0v-15,0,-22,-10,-22,-20r0,-7v0,-10,2,-15,8,-23r93,-116v1,-1,1,-2,1,-3v0,-1,0,-2,-3,-2r-88,0v-4,0,-7,-4,-7,-8r0,-12v0,-4,3,-7,7,-7r106,0v15,0,20,7,20,18r0,8v0,8,-2,13,-8,20r-95,119v-1,1,-2,2,-2,3v0,2,0,3,3,3r95,0v4,0,8,4,8,8r0,12xm149,-278v0,1,-1,3,-2,4r-35,44v-3,4,-5,6,-9,6r-30,0v-4,0,-6,-2,-9,-6r-35,-44v-1,-1,-2,-3,-2,-4v0,-1,2,-2,4,-2r19,0v4,0,5,1,8,5r30,35r30,-35v3,-4,4,-5,8,-5r19,0v2,0,4,1,4,2","w":173,"k":{"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":6,"\u00f8":6,"\u0153":6,"\u00f3":6,"\u00f4":6,"\u00f6":6,"\u00f2":6,"\u00f5":6,"c":4,"\u00e7":4,"d":5,"q":4}},"\u215b":{"d":"205,-267v5,0,4,2,2,6r-150,255v-3,5,-4,7,-8,7r-17,0v-4,0,-6,-3,-3,-7r151,-256v3,-5,4,-5,8,-5r17,0xm44,-242r-23,10v-4,1,-7,-1,-7,-5r0,-10v0,-3,2,-4,4,-5r29,-13v4,-2,6,-2,11,-2r2,0v6,0,7,2,7,6r0,136v0,3,-3,7,-7,7r-10,0v-4,0,-6,-3,-6,-7r0,-117xm259,-43v0,30,-23,44,-50,44r-2,0v-27,0,-50,-14,-50,-44r0,-3v0,-11,6,-25,16,-32v-10,-7,-16,-18,-16,-30r0,-2v0,-29,22,-41,50,-41r2,0v28,0,49,12,49,41r0,2v0,12,-5,23,-15,30v10,7,16,20,16,32r0,3xm235,-43r0,-3v0,-10,-6,-22,-21,-22r-12,0v-16,0,-22,12,-22,22r0,3v0,15,9,24,27,24r2,0v18,0,26,-9,26,-24xm236,-108r0,-2v0,-14,-9,-21,-27,-21r-2,0v-18,0,-27,7,-27,21r0,2v0,10,6,21,22,21r12,0v15,0,22,-11,22,-21","w":273},"\u215c":{"d":"285,-43v0,30,-23,44,-50,44r-1,0v-27,0,-50,-14,-50,-44r0,-3v0,-11,6,-25,16,-32v-10,-7,-16,-18,-16,-30r0,-2v0,-29,22,-41,50,-41r1,0v28,0,50,12,50,41r0,2v0,12,-6,23,-16,30v10,7,16,20,16,32r0,3xm262,-43r0,-3v0,-10,-6,-22,-21,-22r-12,0v-16,0,-22,12,-22,22r0,3v0,15,9,24,27,24r1,0v18,0,27,-9,27,-24xm262,-108r0,-2v0,-14,-9,-21,-27,-21r-1,0v-18,0,-27,7,-27,21r0,2v0,10,6,21,22,21r12,0v15,0,21,-11,21,-21xm231,-267v5,0,5,2,3,6r-151,255v-3,5,-4,7,-8,7r-17,0v-4,0,-6,-3,-3,-7r152,-256v3,-5,3,-5,7,-5r17,0xm105,-161v0,31,-21,45,-51,45v-12,0,-25,-2,-34,-4v-3,-1,-6,-3,-6,-7r0,-6v0,-4,3,-7,7,-7v12,2,24,3,33,3v19,0,27,-7,27,-24r0,-4v0,-9,-5,-21,-20,-21r-35,0v-4,0,-6,-2,-6,-6r0,-7v0,-4,2,-6,6,-6r35,0v16,0,20,-11,20,-20r0,-3v0,-14,-7,-20,-27,-20v-10,0,-18,1,-29,2v-1,0,-2,1,-4,1v-4,0,-7,-3,-7,-7r0,-6v0,-4,3,-6,6,-7v9,-2,20,-4,34,-4v31,0,51,10,51,41r0,3v0,13,-6,23,-16,30v12,8,16,19,16,30r0,4","w":299},"\u215d":{"d":"230,-267v5,0,4,2,2,6r-150,255v-3,5,-4,7,-8,7r-17,0v-4,0,-6,-3,-3,-7r152,-256v3,-5,3,-5,7,-5r17,0xm284,-43v0,30,-23,44,-50,44r-2,0v-27,0,-50,-14,-50,-44r0,-3v0,-11,6,-25,16,-32v-10,-7,-15,-18,-15,-30r0,-2v0,-29,21,-41,49,-41r2,0v28,0,50,12,50,41r0,2v0,12,-6,23,-16,30v10,7,16,20,16,32r0,3xm261,-43r0,-3v0,-10,-7,-22,-22,-22r-12,0v-16,0,-21,12,-21,22r0,3v0,15,8,24,26,24r2,0v18,0,27,-9,27,-24xm261,-108r0,-2v0,-14,-9,-21,-27,-21r-2,0v-18,0,-26,7,-26,21r0,2v0,10,5,21,21,21r12,0v15,0,22,-11,22,-21xm107,-164v0,30,-19,48,-52,48v-13,0,-25,-1,-35,-4v-4,-1,-6,-2,-6,-6r0,-8v0,-4,2,-6,7,-6v13,2,25,3,34,3v20,0,29,-9,29,-27r0,-3v0,-17,-12,-23,-38,-23r-23,0v-3,0,-6,-3,-6,-7r5,-64v1,-4,4,-6,7,-6r67,0v4,0,6,2,6,6r0,9v0,4,-2,5,-6,5r-54,0r-2,36r6,0v38,0,61,11,61,44r0,3","w":298},"\u215e":{"d":"210,-267v5,0,4,2,2,6r-150,255v-3,5,-4,7,-8,7r-17,0v-4,0,-6,-3,-3,-7r152,-256v3,-5,3,-5,7,-5r17,0xm264,-43v0,30,-23,44,-50,44r-2,0v-27,0,-50,-14,-50,-44r0,-3v0,-11,7,-25,17,-32v-10,-7,-16,-18,-16,-30r0,-2v0,-29,21,-41,49,-41r2,0v28,0,50,12,50,41r0,2v0,12,-6,23,-16,30v10,7,16,20,16,32r0,3xm241,-43r0,-3v0,-10,-6,-22,-21,-22r-13,0v-16,0,-21,12,-21,22r0,3v0,15,8,24,26,24r2,0v18,0,27,-9,27,-24xm241,-108r0,-2v0,-14,-9,-21,-27,-21r-2,0v-18,0,-26,7,-26,21r0,2v0,10,5,21,21,21r13,0v15,0,21,-11,21,-21xm27,-126r58,-121r-64,0v-4,0,-7,-1,-7,-5r0,-9v0,-4,3,-6,7,-6r74,0v11,0,14,4,14,12v0,6,0,9,-3,14r-56,120v-1,2,-3,3,-6,3r-13,0v-5,0,-6,-3,-4,-8","w":278},"\u2153":{"d":"209,-265v0,1,-1,2,-2,4r-150,255v-3,5,-4,7,-8,7r-18,0v-2,0,-4,0,-4,-2v0,-1,1,-4,2,-5r150,-255v3,-5,5,-6,9,-6r18,0v2,0,3,1,3,2xm44,-242r-23,10v-4,1,-7,-1,-7,-5r0,-10v0,-3,2,-4,4,-5r29,-13v4,-2,6,-2,11,-2r2,0v6,0,7,2,7,6r0,136v0,3,-3,7,-7,7r-10,0v-4,0,-6,-3,-6,-7r0,-117xm255,-43v0,31,-22,44,-52,44v-12,0,-24,-2,-33,-4v-3,-1,-6,-2,-6,-6r0,-6v0,-4,3,-7,7,-7v12,2,23,3,32,3v19,0,28,-7,28,-24r0,-4v0,-9,-5,-21,-20,-21r-35,0v-4,0,-6,-2,-6,-6r0,-7v0,-4,2,-6,6,-6r35,0v16,0,20,-12,20,-21r0,-2v0,-14,-8,-21,-28,-21v-10,0,-17,2,-28,3v-1,0,-3,1,-5,1v-4,0,-6,-3,-6,-7r0,-6v0,-4,3,-6,6,-7v9,-2,19,-4,33,-4v31,0,52,10,52,41r0,2v0,13,-6,24,-16,31v12,8,16,19,16,30r0,4","w":268},"\u2154":{"d":"106,-231v0,16,-8,27,-26,40r-18,12v-21,14,-26,24,-26,39r0,1r62,0v3,0,6,3,6,7r0,8v0,4,-3,6,-6,6r-77,0v-3,0,-7,-2,-7,-6r0,-16v0,-21,9,-38,31,-53r20,-13r0,0v15,-11,19,-15,19,-25v0,-12,-8,-17,-27,-17v-10,0,-23,1,-35,3v-4,0,-5,-3,-5,-7r0,-6v0,-3,2,-6,5,-7v10,-3,23,-4,35,-4v33,0,49,12,49,38xm246,-267v5,0,4,2,2,6r-150,255v-3,5,-4,7,-8,7r-17,0v-4,0,-6,-3,-3,-7r151,-256v3,-5,4,-5,8,-5r17,0xm305,-43v0,31,-22,44,-52,44v-12,0,-24,-2,-33,-4v-3,-1,-6,-2,-6,-6r0,-6v0,-4,3,-7,7,-7v12,2,23,3,32,3v19,0,28,-7,28,-24r0,-4v0,-9,-5,-21,-20,-21r-35,0v-4,0,-6,-2,-6,-6r0,-7v0,-4,2,-6,6,-6r35,0v16,0,20,-12,20,-21r0,-2v0,-14,-8,-21,-28,-21v-10,0,-17,2,-28,3v-1,0,-3,1,-5,1v-4,0,-6,-3,-6,-7r0,-6v0,-4,3,-6,6,-7v9,-2,19,-4,33,-4v31,0,52,10,52,41r0,2v0,13,-6,24,-16,31v12,8,16,19,16,30r0,4","w":318},"\uf730":{"d":"197,-97v0,69,-34,100,-88,100v-54,0,-88,-31,-88,-100r0,-5v0,-69,34,-100,88,-100v54,0,88,31,88,100r0,5xm165,-97r0,-5v0,-50,-22,-72,-56,-72v-34,0,-55,22,-55,72r0,5v0,50,21,72,55,72v34,0,56,-22,56,-72"},"\uf731":{"d":"102,-7v0,4,-3,7,-7,7r-19,0v-4,0,-7,-3,-7,-7r0,-157r-46,20v-2,1,-4,1,-5,1v-2,0,-3,-1,-3,-4r0,-18v0,-3,0,-4,3,-5r55,-26v3,-1,5,-2,7,-2r15,0v4,0,7,3,7,7r0,184","w":154},"\uf732":{"d":"182,-142v0,39,-33,58,-68,71v-52,19,-56,27,-60,43r118,0v4,0,7,2,7,6r0,16v0,4,-3,6,-7,6r-143,0v-4,0,-7,-3,-7,-7r0,-14v0,-45,30,-55,76,-75v41,-18,52,-22,52,-46v0,-26,-15,-32,-54,-32v-19,0,-44,2,-64,5r-1,0v-4,0,-6,-2,-6,-6r0,-13v0,-4,3,-5,7,-6v18,-5,43,-8,64,-8v58,0,86,16,86,60","w":201},"\uf733":{"d":"188,-6v0,54,-37,77,-90,77v-23,0,-44,-3,-61,-7v-4,-1,-7,-3,-7,-7r0,-12v0,-4,2,-6,6,-6r1,0v22,3,44,5,61,5v39,0,56,-15,56,-50r0,-8v0,-19,-9,-44,-42,-44r-66,0v-4,0,-6,-2,-6,-6r0,-13v0,-4,2,-7,6,-7r66,0v35,0,42,-23,42,-42r0,-5v0,-30,-15,-43,-56,-43v-21,0,-38,2,-61,5r-1,0v-4,0,-6,-2,-6,-6r0,-13v0,-3,3,-5,7,-6v17,-4,38,-8,61,-8v54,0,90,18,90,71r0,5v0,24,-13,45,-35,56v26,13,35,35,35,56r0,8"},"\uf734":{"d":"204,-8v0,4,-3,7,-7,7r-31,0r0,64v0,4,-2,7,-6,7r-21,0v-4,0,-6,-3,-6,-7r0,-64r-104,0v-11,0,-15,-4,-15,-14r0,-14v0,-5,1,-9,4,-13r107,-150v2,-3,4,-6,10,-6r22,0v6,0,9,3,9,8r0,161r31,0v4,0,7,3,7,7r0,14xm133,-29r0,-123v0,-1,0,-2,-1,-2r-1,0v-1,0,-1,1,-2,2r-84,118v-1,1,-1,2,-1,3v0,1,1,2,3,2r86,0"},"\uf735":{"d":"190,-12v0,53,-34,84,-92,84v-23,0,-45,-2,-63,-6v-4,-1,-7,-3,-7,-8r0,-13v0,-4,2,-5,5,-5r2,0v23,4,45,5,63,5v41,0,59,-20,59,-57r0,-5v0,-36,-22,-49,-75,-49r-43,0v-3,0,-6,-3,-6,-6r0,0r10,-120v0,-4,3,-6,7,-6r124,0v4,0,7,2,7,6r0,16v0,4,-3,6,-7,6r-103,0r-6,77r17,0v67,0,108,18,108,76r0,5"},"\uf736":{"d":"197,-89v0,57,-29,92,-88,92v-54,0,-87,-32,-87,-103r0,-63v0,-77,32,-107,94,-107v28,0,46,3,61,6v4,1,9,3,9,7r0,14v0,4,-3,6,-7,6r-2,0v-18,-4,-38,-6,-61,-6v-55,0,-62,33,-62,80r0,4v15,-3,32,-7,54,-7v47,0,89,17,89,75r0,2xm164,-89r0,-2v0,-39,-28,-49,-56,-49v-18,0,-41,3,-54,6r0,34v0,59,20,76,55,76v33,0,55,-16,55,-65"},"\uf737":{"d":"184,-175v0,6,-2,13,-5,19r-104,220v-2,4,-4,6,-8,6r-21,0v-4,0,-6,-3,-6,-6v0,-1,0,-3,1,-4r109,-226r0,-1v0,0,0,-3,-2,-3r-123,0v-4,0,-7,-2,-7,-6r0,-15v0,-4,3,-7,7,-7r132,0v20,0,27,11,27,23","w":202},"\uf738":{"d":"198,-75v0,53,-39,78,-87,78r-4,0v-48,0,-87,-25,-87,-78r0,-6v0,-22,12,-46,35,-59v-23,-12,-34,-32,-34,-56r0,-3v0,-50,37,-71,86,-71r4,0v49,0,87,21,87,71r0,3v0,24,-12,44,-35,56v23,13,35,37,35,59r0,6xm166,-196r0,-3v0,-29,-19,-44,-55,-44r-4,0v-36,0,-55,15,-55,44r0,3v0,22,13,43,46,43r22,0v33,0,46,-21,46,-43xm166,-75r0,-6v0,-21,-13,-46,-46,-46r-22,0v-33,0,-45,25,-45,46r0,6v0,31,18,50,54,50r4,0v36,0,55,-19,55,-50"},"\uf739":{"d":"193,-36v0,77,-32,107,-94,107v-28,0,-47,-3,-62,-6v-5,-1,-8,-3,-8,-7r0,-14v0,-4,2,-7,6,-7v1,0,1,1,2,1v18,4,39,6,62,6v56,0,62,-33,62,-80r0,-4v-15,3,-32,7,-54,7v-47,0,-89,-17,-89,-75r0,-3v0,-57,29,-91,88,-91v54,0,87,32,87,103r0,63xm161,-65r0,-34v0,-59,-20,-76,-55,-76v-34,0,-56,15,-56,64r0,3v0,39,28,49,56,49v18,0,42,-3,55,-6"},"\ue009":{"d":"200,-95v0,4,-3,6,-7,6r-170,0v-4,0,-7,-2,-7,-6r0,-14v0,-4,3,-6,7,-6r170,0v4,0,7,2,7,6r0,14","w":216},"\uf6e9":{"d":"99,-121v0,3,-2,5,-5,5r-10,0v-3,0,-6,-2,-6,-5r0,-2v-9,5,-19,9,-29,9v-18,0,-35,-8,-35,-35r0,-2v0,-23,13,-35,51,-35r13,0r0,-6v0,-15,-6,-21,-20,-21v-12,0,-19,0,-27,1v-1,0,-3,1,-5,1v-3,0,-5,-1,-5,-5r0,-8v0,-4,2,-5,6,-5v8,-1,17,-2,31,-2v30,0,41,14,41,39r0,71xm78,-140r0,-30r-13,0v-23,0,-29,5,-29,18r0,3v0,13,7,17,17,17v9,0,16,-3,25,-8","w":113},"\uf6ea":{"d":"103,-166v0,32,-14,52,-45,52v-13,0,-26,-1,-38,-4v-5,-1,-6,-2,-6,-6r0,-142v0,-3,3,-5,6,-5r10,0v3,0,6,2,6,5r0,36v8,-1,16,-1,22,-1v30,0,45,18,45,51r0,14xm82,-166r0,-14v0,-21,-6,-33,-24,-33v-6,0,-15,0,-22,1r0,78r3,0v6,0,14,1,19,1v18,0,24,-12,24,-33","w":114},"\uf6eb":{"d":"100,-124v0,4,-1,5,-6,6v-13,3,-24,4,-37,4v-31,0,-46,-20,-46,-52r0,-14v0,-33,15,-51,46,-51v5,0,13,0,21,1r0,-36v0,-3,3,-5,6,-5r10,0v3,0,6,2,6,5r0,142xm78,-134r0,-78v-6,-1,-15,-1,-21,-1v-18,0,-25,12,-25,33r0,14v0,21,6,33,25,33v5,0,12,-1,18,-1r3,0","w":114},"\uf6ec":{"d":"104,-172v0,4,-3,6,-6,6r-66,0r0,1v0,23,9,32,27,32v11,0,26,-1,36,-2v3,0,5,0,5,4r0,7v0,4,-1,5,-5,6v-12,3,-22,4,-36,4v-24,0,-48,-12,-48,-51r0,-18v0,-30,17,-48,47,-48v31,0,46,18,46,48r0,11xm82,-183v0,-22,-7,-30,-24,-30v-16,0,-26,9,-26,30r50,0","w":114},"\uf6ed":{"d":"36,-121v0,3,-2,5,-5,5r-10,0v-3,0,-6,-2,-6,-5r0,-104v0,-3,3,-5,6,-5r10,0v3,0,5,2,5,5r0,104xm37,-251v0,3,-3,6,-6,6r-10,0v-3,0,-7,-3,-7,-6r0,-16v0,-3,4,-6,7,-6r10,0v3,0,6,3,6,6r0,16","w":51},"\uf6ee":{"d":"36,-121v0,3,-1,5,-5,5r-11,0v-3,0,-6,-2,-6,-5r0,-145v0,-3,2,-5,6,-5r11,0v3,0,5,2,5,5r0,145","w":50},"\uf6ef":{"d":"152,-121v0,3,-3,5,-6,5r-10,0v-3,0,-6,-2,-6,-5r0,-72v0,-15,-7,-20,-16,-20v-6,0,-13,2,-21,5v1,4,1,9,1,15r0,72v0,3,-2,5,-6,5r-11,0v-3,0,-5,-2,-5,-5r0,-72v0,-16,-4,-20,-14,-20v-7,0,-14,3,-22,7r0,85v0,3,-3,5,-6,5r-11,0v-3,0,-5,-2,-5,-5r0,-104v0,-3,3,-5,6,-5r10,0v3,0,6,2,6,5r0,1v8,-5,17,-8,27,-8v8,0,16,2,21,7v11,-4,23,-7,33,-7v19,0,35,9,35,39r0,72","w":165},"\u207f":{"d":"103,-121v0,3,-2,5,-6,5r-10,0v-3,0,-5,-2,-5,-5r0,-67v0,-19,-7,-25,-21,-25v-8,0,-16,3,-25,7r0,85v0,3,-3,5,-6,5r-10,0v-3,0,-6,-2,-6,-5r0,-104v0,-3,2,-5,6,-5r10,0v3,0,6,2,6,5r0,1v10,-5,18,-7,30,-7v25,0,37,15,37,43r0,67","w":117},"\uf6f0":{"d":"104,-165v0,31,-15,51,-46,51v-31,0,-47,-20,-47,-51r0,-15v0,-31,16,-51,47,-51v31,0,46,20,46,51r0,15xm83,-165r0,-15v0,-20,-7,-33,-25,-33v-18,0,-26,13,-26,33r0,15v0,19,8,32,26,32v18,0,25,-12,25,-32","w":115},"\uf6f1":{"d":"68,-218v0,3,-2,5,-6,5v-9,0,-16,2,-26,8r0,84v0,3,-3,5,-6,5r-10,0v-3,0,-6,-2,-6,-5r0,-104v0,-3,2,-5,6,-5r9,0v4,0,6,2,6,5r0,1v10,-6,18,-7,27,-7v4,0,6,1,6,5r0,8","w":75},"\uf6f2":{"d":"88,-145v0,22,-16,31,-39,31v-8,0,-23,0,-33,-3v-3,0,-5,-3,-5,-6r0,-7v0,-3,2,-5,6,-5v10,1,25,3,32,3v12,0,18,-3,18,-13v0,-5,-3,-10,-14,-16r-21,-12v-13,-8,-21,-16,-21,-30v0,-22,16,-28,38,-28v12,0,23,0,32,2v3,0,5,2,5,5r0,7v0,4,-1,6,-5,6v-7,-1,-20,-2,-32,-2v-10,0,-17,1,-17,10v0,4,6,9,13,14v6,4,14,9,20,12v17,10,23,20,23,32","w":99},"\uf6f3":{"d":"75,-121v0,3,-2,6,-5,6v-4,1,-9,1,-13,1v-20,0,-30,-6,-30,-29r0,-69v-6,-1,-12,-1,-18,-2v-3,0,-5,-3,-5,-6r0,-5v0,-4,2,-5,5,-5r18,0r0,-18v0,-3,2,-6,6,-6r11,-2v3,0,5,2,5,5r0,21r20,0v3,0,6,2,6,5r0,7v0,4,-3,6,-6,6r-20,0r0,69v0,10,3,11,9,11r11,0v4,0,6,2,6,5r0,6","w":78},"\u00b9":{"d":"49,-242r-23,10v-4,1,-7,-1,-7,-5r0,-10v0,-3,2,-4,4,-5r29,-13v4,-2,6,-2,11,-2r3,0v6,0,6,2,6,6r0,136v0,3,-2,7,-6,7r-11,0v-4,0,-6,-3,-6,-7r0,-117","w":119},"\u00b2":{"d":"106,-231v0,16,-8,27,-26,40v-6,4,-13,8,-19,12v-21,14,-26,24,-26,39r0,1r63,0v3,0,6,3,6,7r0,8v0,4,-3,6,-6,6r-77,0v-3,0,-7,-2,-7,-6r0,-16v0,-21,9,-38,31,-53r20,-13r-1,0v15,-11,19,-15,19,-25v0,-12,-7,-17,-26,-17v-10,0,-23,1,-35,3v-4,0,-6,-3,-6,-7r0,-6v0,-3,3,-6,6,-7v10,-3,23,-4,35,-4v33,0,49,12,49,38","w":119},"\u00b3":{"d":"105,-161v0,31,-21,45,-51,45v-12,0,-24,-2,-33,-4v-3,-1,-6,-3,-6,-7r0,-6v0,-4,3,-7,7,-7v12,2,23,3,32,3v19,0,27,-7,27,-24r0,-4v0,-9,-4,-21,-19,-21r-36,0v-4,0,-6,-2,-6,-6r0,-7v0,-4,2,-6,6,-6r36,0v16,0,19,-11,19,-20r0,-3v0,-14,-7,-20,-27,-20v-10,0,-18,1,-29,2v-1,0,-2,1,-4,1v-4,0,-6,-3,-6,-7r0,-6v0,-4,2,-6,5,-7v9,-2,20,-4,34,-4v31,0,51,10,51,41r0,3v0,13,-5,23,-15,30v12,8,15,19,15,30r0,4","w":119},"\uf6c3":{"d":"56,18r25,0v3,0,4,1,4,4r-1,2r-19,40v-2,5,-4,7,-9,7r-15,0v-1,0,-3,-1,-3,-3v0,-1,1,-2,1,-3r10,-41v1,-5,3,-6,7,-6","w":123},"\u2206":{"d":"217,-6v0,3,-2,6,-6,6r-194,0v-4,0,-7,-3,-7,-6v0,-1,1,-1,1,-2r66,-235v6,-22,23,-27,37,-27v13,0,30,5,36,27r67,235r0,2xm177,-28r-56,-207v-1,-4,-3,-7,-7,-7v-4,0,-6,3,-7,7r-56,207r126,0","w":227},"\u2126":{"d":"200,-8v0,6,-3,8,-8,8r-65,0v-5,0,-8,-3,-8,-8r0,-40v0,-6,1,-8,5,-9v30,-10,45,-38,45,-77r0,-32v0,-59,-27,-77,-62,-77v-35,0,-63,18,-63,77r0,32v0,39,15,67,45,77v4,1,5,3,5,9r0,40v0,5,-3,8,-8,8r-65,0v-5,0,-8,-2,-8,-8r0,-12v0,-6,3,-7,8,-7r44,0r0,-13v-39,-17,-53,-53,-53,-94r0,-32v0,-67,35,-106,95,-106v60,0,95,39,95,106r0,32v0,41,-15,77,-54,94r0,13r44,0v5,0,8,1,8,7r0,12","w":213},"\u03bc":{"d":"176,-16v0,4,-2,7,-7,8v-17,6,-42,11,-66,11v-19,0,-35,-4,-47,-11r0,71v0,4,-3,8,-7,8r-17,0v-4,0,-8,-4,-8,-8r0,-254v0,-4,3,-7,7,-7r18,0v4,0,7,3,7,7r0,119v0,33,15,48,47,48v14,0,30,-3,41,-6r0,-161v0,-4,4,-7,8,-7r17,0v4,0,7,3,7,7r0,175","w":200},"\u03c0":{"d":"186,-169r-25,0r0,121v0,22,3,27,18,27r9,0v0,0,3,1,3,4r0,15v0,4,-1,4,-4,5v-4,1,-8,1,-14,1v-32,0,-43,-13,-43,-52r0,-121r-60,0r0,162v0,3,0,7,-5,7r-22,0v-4,0,-5,-3,-5,-7r0,-162r-25,0v-4,0,-5,0,-5,-5r0,-18v0,-5,1,-6,5,-6r173,0v4,0,5,1,5,6r0,18v0,5,-1,5,-5,5","w":198},"\u20a3":{"d":"179,-245v0,3,-1,5,-4,5r-70,0v-38,0,-44,10,-44,37r0,50r110,0v4,0,8,3,8,7r0,14v0,4,-4,7,-8,7r-110,0r0,34r42,0v4,0,8,3,8,7r0,14v0,4,-4,7,-8,7r-42,0r0,56v0,4,-3,7,-7,7r-19,0v-4,0,-7,-3,-7,-7r0,-56r-21,0v-4,0,-7,-3,-7,-7r0,-14v0,-4,3,-7,7,-7r21,0r0,-112v0,-48,27,-67,77,-67v21,0,55,1,70,2v2,0,4,3,4,5r0,18","w":198},"\u20a4":{"d":"160,-78r-77,0r0,8v0,18,-6,32,-12,43r114,0v4,0,8,1,8,5r0,16v0,4,-4,6,-8,6r-143,0v-4,0,-6,-2,-6,-5r0,-14v0,-4,2,-6,3,-9v8,-14,11,-23,11,-42r0,-8r-18,0v-4,0,-7,-3,-7,-7r0,-15v0,-4,3,-6,7,-6r18,0r0,-26r-18,0v-4,0,-7,-3,-7,-7r0,-15v0,-4,3,-6,7,-6r18,0r0,-16v0,-60,19,-91,80,-91v19,0,43,3,56,5v6,1,7,2,7,6r0,14v0,4,-2,7,-6,7r-2,0v-16,-2,-38,-4,-55,-4v-37,0,-47,14,-47,63r0,16r78,0v4,0,6,2,6,6r0,15v0,4,-3,7,-7,7r-77,0r0,26r78,0v4,0,6,2,6,6r0,15v0,4,-3,7,-7,7"},"\u20a7":{"d":"197,-187v0,60,-43,80,-101,80v-12,0,-27,0,-36,-1r0,101v0,4,-2,7,-6,7r-19,0v-4,0,-7,-3,-7,-7r0,-251v0,-5,4,-8,9,-9v15,-2,38,-3,59,-3v58,0,101,20,101,78r0,5xm165,-187r0,-5v0,-36,-23,-50,-69,-50v-11,0,-27,0,-36,1r0,106v8,0,27,1,36,1v49,0,69,-16,69,-53xm343,-5v0,3,-1,5,-6,6v-7,1,-17,2,-24,2v-33,0,-49,-9,-49,-49r0,-125r-35,-4v-4,0,-7,-3,-7,-7r0,-10v0,-4,3,-6,7,-6r35,0r0,-35v0,-4,3,-6,7,-7r18,-3r2,0v3,0,5,2,5,6r0,39r39,0v4,0,7,3,7,7r0,12v0,4,-3,8,-7,8r-39,0r0,125v0,20,5,23,19,23r21,0v5,0,7,1,7,5r0,13xm502,-50v0,37,-27,53,-67,53v-13,0,-39,-2,-57,-6v-5,-1,-8,-3,-8,-7r0,-13v0,-3,3,-5,7,-5r1,0v17,2,44,4,57,4v23,0,35,-7,35,-26v0,-11,-6,-18,-27,-30r-36,-21v-22,-13,-37,-29,-37,-52v0,-37,28,-48,65,-48v20,0,39,2,56,5v5,1,7,3,7,7r0,12v0,4,-2,6,-6,6r-1,0v-13,-1,-36,-3,-56,-3v-20,0,-33,3,-33,21v0,11,8,18,25,28r35,21v30,18,40,33,40,54","w":519},"\u20ac":{"d":"199,-9v0,4,-3,6,-7,7v-15,3,-23,5,-54,5v-42,0,-95,-22,-100,-98r-12,0v-4,0,-7,-4,-7,-8r0,-10v0,-4,3,-7,7,-7r11,0r0,-29r-11,0v-4,0,-7,-3,-7,-7r0,-10v0,-4,3,-8,7,-8r12,0v5,-76,58,-96,100,-96v23,0,39,3,55,6v3,0,6,1,6,4r0,19v0,2,-1,4,-5,4r-1,0v-13,-1,-33,-3,-54,-3v-32,0,-63,16,-68,66r104,0v4,0,6,3,6,6r0,2r-2,10v-1,4,-4,7,-8,7r-101,0r0,29r93,0v3,0,5,3,5,6r0,1r-3,10v-1,4,-3,8,-7,8r-87,0v4,51,35,68,68,68v21,0,40,-2,53,-3r2,0v4,0,5,2,5,6r0,15"},"\u2113":{"d":"150,-24v2,4,2,6,-1,9v-12,11,-35,19,-53,19v-36,0,-49,-20,-49,-59r0,-39r-23,18v-3,2,-6,3,-8,0r-4,-6v-2,-3,-2,-6,1,-8r34,-28r0,-99v0,-44,16,-65,52,-65v39,0,52,23,52,47v0,41,-29,80,-72,119r0,59v0,25,10,34,25,34v12,0,23,-5,32,-11v4,-3,6,-3,9,1xm131,-235v0,-16,-6,-29,-26,-29v-21,0,-26,15,-26,47r0,77v34,-35,52,-62,52,-95","w":162},"\u212e":{"d":"208,-102r-155,0r0,70v15,14,33,23,55,23v40,0,60,-22,76,-46r11,7v-19,29,-42,51,-87,51v-59,0,-98,-48,-98,-105v0,-57,37,-104,99,-104v61,0,99,47,99,104xm165,-113r0,-59v-13,-12,-35,-22,-56,-22v-22,0,-42,7,-56,22r0,59r112,0","w":218},"\u2202":{"d":"187,-171v0,24,-4,58,-8,84v-10,57,-39,91,-94,91v-48,0,-71,-27,-71,-69v0,-8,1,-17,5,-44v10,-62,43,-85,92,-85v16,0,35,5,46,17v0,-1,-1,-3,-1,-5v-1,-40,-14,-79,-75,-79v-12,0,-23,1,-36,3v-4,1,-6,-1,-6,-4r2,-10v0,-4,2,-6,6,-7v12,-3,24,-4,38,-4v73,0,102,44,102,112xm152,-128v0,-26,-11,-40,-41,-40v-35,0,-54,23,-60,63v-4,27,-4,33,-4,40v0,27,11,43,40,43v35,0,54,-23,60,-63v5,-27,5,-36,5,-43","w":201},"\u220f":{"d":"223,-242v0,3,-1,4,-4,4r-26,0r0,259v0,5,-3,6,-6,6r-20,0v-3,0,-6,-1,-6,-6r0,-259r-91,0r0,259v0,5,-3,6,-6,6r-20,0v-3,0,-6,-1,-6,-6r0,-259r-26,0v-3,0,-4,-1,-4,-4r0,-22v0,-4,1,-3,4,-3r207,0v3,0,4,-1,4,3r0,22","w":230},"\u2211":{"d":"166,21v0,4,-1,6,-5,6r-135,0v-5,0,-6,-3,-6,-7r0,-17v0,-3,0,-5,2,-8r69,-111v1,-2,1,-3,1,-4v0,-1,0,-3,-1,-5r-69,-110v-2,-3,-2,-6,-2,-9r0,-16v0,-4,1,-7,6,-7r135,0v4,0,5,1,5,5r0,18v0,4,-1,6,-5,6r-100,0v-2,0,-2,1,-1,3r64,103v1,2,2,4,2,7r0,10v0,3,-1,5,-2,7r-64,103v-1,2,-1,3,1,3r100,0v4,0,5,2,5,6r0,17","w":186},"\u2219":{"d":"54,-124v0,4,-3,7,-7,7r-17,0v-4,0,-7,-3,-7,-7r0,-34v0,-4,3,-7,7,-7r17,0v4,0,7,3,7,7r0,34","w":77},"\u221a":{"d":"250,-309r-103,330v-1,4,-4,6,-9,6r-26,0v-4,0,-7,-1,-8,-6r-49,-163v-1,-3,-2,-4,-5,-4r-35,0v-3,0,-3,-2,-3,-4r0,-17v0,-3,0,-5,3,-5r54,0v3,0,6,0,7,5r50,170r94,-312v1,-4,1,-5,6,-5r20,0v5,0,5,2,4,5","w":262},"\u221e":{"d":"207,-131v0,34,-9,78,-56,78r-2,0v-14,0,-31,-4,-45,-19v-9,14,-22,20,-35,20r-2,0v-47,0,-53,-45,-53,-79r0,-9v0,-34,8,-78,55,-78r3,0v13,0,30,4,44,19v9,-14,20,-20,36,-20r2,0v47,0,53,45,53,79r0,9xm181,-131r0,-9v0,-29,-3,-56,-27,-56r-2,0v-18,0,-24,14,-30,61v-4,26,-5,35,-8,43v12,14,25,17,35,17r2,0v24,0,30,-27,30,-56xm106,-177v-12,-14,-24,-19,-34,-19r-2,0v-25,0,-29,28,-29,56r0,9v0,28,1,56,26,56r2,0v17,0,24,-14,30,-62v4,-27,5,-34,7,-40","w":221},"\u222b":{"d":"149,-252v0,2,-1,3,-4,3r-28,0v-19,0,-20,5,-20,30r0,236v0,31,-5,56,-48,56v-12,0,-25,-2,-32,-4v-3,0,-3,-1,-3,-4r0,-15v0,-2,1,-3,4,-3v7,0,18,1,27,1v19,0,21,-6,21,-31r0,-236v0,-31,4,-56,47,-56v12,0,25,2,32,4v3,0,4,2,4,5r0,14","w":162},"\u2248":{"d":"173,-195v0,25,-10,38,-32,38v-8,0,-15,0,-28,-10r-19,-16v-9,-7,-11,-7,-16,-7v-8,0,-10,5,-10,16r0,8v0,3,-1,6,-6,6r-11,0v-5,0,-6,-3,-6,-6r0,-8v0,-26,13,-39,32,-39v10,0,16,2,29,12r21,17v6,5,9,5,13,5v6,0,10,-4,10,-16r0,-8v0,-3,1,-7,6,-7r11,0v5,0,6,4,6,7r0,8xm173,-109v0,25,-10,38,-32,38v-8,0,-15,0,-28,-10r-19,-15v-9,-7,-11,-8,-16,-8v-8,0,-10,6,-10,17r0,7v0,3,-1,6,-6,6r-11,0v-5,0,-6,-3,-6,-6r0,-7v0,-26,13,-40,32,-40v10,0,16,3,29,13r21,16v6,5,9,5,13,5v6,0,10,-4,10,-16r0,-8v0,-3,1,-6,6,-6r11,0v5,0,6,3,6,6r0,8"},"\u2260":{"d":"185,-94v0,4,-3,6,-7,6r-73,0r-28,81v-1,4,-3,7,-9,7r-13,0v-4,0,-6,-3,-5,-7r28,-81r-38,0v-4,0,-8,-2,-8,-6r0,-14v0,-4,4,-6,8,-6r47,0r18,-54r-65,0v-4,0,-8,-2,-8,-6r0,-14v0,-4,4,-6,8,-6r74,0r24,-69v1,-4,3,-7,9,-7r14,0v4,0,5,3,4,7r-24,69r37,0v4,0,7,2,7,6r0,14v0,4,-3,6,-7,6r-46,0r-18,54r64,0v4,0,7,2,7,6r0,14"},"\u2264":{"d":"146,-59v0,3,-2,4,-5,4r-25,0v-3,0,-5,0,-8,-4r-73,-72v-3,-3,-4,-8,-4,-12v0,-3,1,-9,4,-12r73,-72v3,-4,5,-4,8,-4r25,0v3,0,5,0,5,3v0,2,-1,4,-3,6r-79,79r79,79v2,2,3,3,3,5xm176,-6v0,4,-3,6,-7,6r-149,0v-4,0,-7,-2,-7,-6r0,-12v0,-4,3,-5,7,-5r149,0v4,0,7,1,7,5r0,12","w":189},"\u2265":{"d":"43,-59v0,-2,1,-3,3,-5r79,-79r-79,-79v-2,-2,-3,-4,-3,-6v0,-3,2,-3,5,-3r25,0v3,0,5,0,8,4r73,72v3,3,4,9,4,12v0,4,-1,9,-4,12r-73,72v-3,4,-5,4,-8,4r-25,0v-3,0,-5,-1,-5,-4xm13,-6r0,-12v0,-4,3,-5,7,-5r149,0v4,0,7,1,7,5r0,12v0,4,-3,6,-7,6r-149,0v-4,0,-7,-2,-7,-6","w":189},"\u25ca":{"d":"172,-130v0,6,-3,12,-8,18r-56,69v-6,7,-10,10,-15,10v-5,0,-9,-3,-15,-10r-56,-69v-5,-6,-8,-12,-8,-18v0,-6,3,-11,8,-18r56,-70v4,-4,8,-8,15,-8v7,0,12,4,15,8r56,70v5,7,8,12,8,18xm142,-129v0,-3,-1,-5,-4,-9r-38,-49v-3,-3,-5,-5,-7,-5v-3,0,-4,2,-7,5r-38,49v-3,4,-4,6,-4,9v0,3,2,5,5,9r37,47v4,4,4,6,7,6v2,0,4,-2,8,-6r37,-47v3,-4,4,-6,4,-9","w":186},"\u00a0":{"w":88},"\u00ad":{"d":"103,-98v0,4,-3,6,-7,6r-72,0v-4,0,-7,-2,-7,-6r0,-14v0,-4,3,-7,7,-7r72,0v4,0,7,3,7,7r0,14","w":119},"\u02c9":{"d":"126,-249v0,4,-3,6,-7,6r-104,0v-4,0,-7,-2,-7,-6r0,-12v0,-4,3,-6,7,-6r104,0v4,0,7,2,7,6r0,12","w":134},"\uf639":{"d":"197,-109v0,80,-34,112,-88,112v-54,0,-88,-32,-88,-112r0,-49v0,-80,34,-112,88,-112v54,0,88,32,88,112r0,49xm165,-109r0,-49v0,-61,-22,-84,-56,-84v-34,0,-55,23,-55,84r0,49v0,61,21,84,55,84v34,0,56,-23,56,-84"},"\uf6dc":{"d":"102,-7v0,4,-3,7,-7,7r-19,0v-4,0,-7,-3,-7,-7r0,-227r-46,21v-2,1,-4,1,-5,1v-2,0,-3,-1,-3,-4r0,-19v0,-3,0,-3,3,-4r55,-26v3,-1,5,-2,7,-2r15,0v4,0,7,2,7,6r0,254","w":147},"\uf63a":{"d":"189,-206v0,28,-13,47,-46,70r-35,23v-40,27,-50,46,-50,77r0,8r121,0v4,0,7,2,7,6r0,16v0,4,-3,6,-7,6r-143,0v-4,0,-7,-3,-7,-7r0,-29v0,-37,16,-69,55,-95r36,-24v30,-20,37,-29,37,-51v0,-26,-15,-37,-54,-37v-19,0,-43,3,-63,6r-2,0v-4,0,-6,-3,-6,-7r0,-12v0,-4,3,-6,7,-7v18,-5,43,-7,64,-7v58,0,86,20,86,64"},"\uf63b":{"d":"188,-75v0,54,-37,78,-90,78v-23,0,-44,-4,-61,-8v-4,-1,-7,-3,-7,-7r0,-12v0,-4,2,-6,6,-6r1,0v22,3,44,5,61,5v39,0,56,-15,56,-50r0,-7v0,-19,-9,-44,-42,-44r-66,0v-4,0,-6,-2,-6,-6r0,-13v0,-4,2,-7,6,-7r66,0v35,0,42,-24,42,-43r0,-5v0,-30,-15,-43,-56,-43v-21,0,-38,3,-61,6r-1,0v-4,0,-6,-2,-6,-6r0,-13v0,-3,3,-6,7,-7v17,-4,38,-7,61,-7v54,0,90,17,90,70r0,5v0,24,-13,45,-35,56v26,13,35,36,35,57r0,7"},"\uf63c":{"d":"204,-78v0,4,-3,7,-7,7r-31,0r0,64v0,4,-2,7,-6,7r-21,0v-4,0,-6,-3,-6,-7r0,-64r-104,0v-11,0,-15,-4,-15,-14r0,-14v0,-5,1,-9,4,-13r107,-150v2,-3,4,-5,10,-5r22,0v6,0,9,2,9,7r0,161r31,0v4,0,7,3,7,7r0,14xm133,-99r0,-123v0,-1,0,-2,-1,-2r-1,0v-1,0,-1,1,-2,2r-84,118v-1,1,-1,2,-1,3v0,1,1,2,3,2r86,0"},"\uf63d":{"d":"190,-81v0,53,-34,84,-92,84v-23,0,-45,-3,-63,-7v-4,-1,-7,-2,-7,-7r0,-13v0,-4,2,-6,5,-6r2,0v23,4,45,5,63,5v41,0,59,-19,59,-56r0,-6v0,-36,-22,-48,-75,-48r-43,0v-3,0,-6,-3,-6,-6r0,0r10,-120v0,-4,3,-6,7,-6r124,0v4,0,7,2,7,6r0,15v0,4,-3,6,-7,6r-103,0r-6,78r17,0v67,0,108,17,108,75r0,6"},"\uf63e":{"d":"197,-89v0,57,-29,92,-88,92v-54,0,-87,-32,-87,-103r0,-63v0,-77,32,-107,94,-107v28,0,46,3,61,6v4,1,9,3,9,7r0,14v0,4,-3,6,-7,6r-2,0v-18,-4,-38,-6,-61,-6v-55,0,-62,33,-62,80r0,4v15,-3,32,-7,54,-7v47,0,89,17,89,75r0,2xm164,-89r0,-2v0,-39,-28,-49,-56,-49v-18,0,-41,3,-54,6r0,34v0,59,20,76,55,76v33,0,55,-16,55,-65"},"\uf63f":{"d":"180,-245v0,6,-2,13,-5,19r-103,221v-2,4,-4,5,-8,5r-22,0v-4,0,-5,-2,-5,-5v0,-1,0,-3,1,-4r109,-226r0,-2v0,0,-1,-2,-3,-2r-122,0v-4,0,-8,-3,-8,-7r0,-15v0,-4,4,-6,8,-6r131,0v20,0,27,10,27,22","w":194},"\uf640":{"d":"198,-75v0,53,-39,78,-87,78r-4,0v-48,0,-87,-25,-87,-78r0,-6v0,-22,12,-46,35,-59v-23,-12,-34,-32,-34,-56r0,-3v0,-50,37,-71,86,-71r4,0v49,0,87,21,87,71r0,3v0,24,-12,44,-35,56v23,13,35,37,35,59r0,6xm166,-196r0,-3v0,-29,-19,-44,-55,-44r-4,0v-36,0,-55,15,-55,44r0,3v0,22,13,43,46,43r22,0v33,0,46,-21,46,-43xm166,-75r0,-6v0,-21,-13,-46,-46,-46r-22,0v-33,0,-45,25,-45,46r0,6v0,31,18,50,54,50r4,0v36,0,55,-19,55,-50"},"\uf641":{"d":"193,-105v0,77,-32,108,-94,108v-28,0,-47,-4,-62,-7v-5,-1,-8,-2,-8,-6r0,-14v0,-4,2,-7,6,-7r2,0v18,4,39,6,62,6v56,0,62,-33,62,-80r0,-4v-15,3,-32,7,-54,7v-47,0,-89,-17,-89,-75r0,-2v0,-57,29,-91,88,-91v54,0,87,31,87,102r0,63xm161,-134r0,-34v0,-59,-20,-75,-55,-75v-34,0,-56,15,-56,64r0,2v0,39,28,50,56,50v18,0,42,-4,55,-7"},"\uf643":{"d":"197,-97v0,69,-34,100,-88,100v-54,0,-88,-31,-88,-100r0,-5v0,-69,34,-100,88,-100v54,0,88,31,88,100r0,5xm165,-97r0,-5v0,-50,-22,-72,-56,-72v-34,0,-55,22,-55,72r0,5v0,50,21,72,55,72v34,0,56,-22,56,-72"},"\uf644":{"d":"180,0r-148,0v-4,0,-7,-2,-7,-6r0,-16v0,-4,3,-6,7,-6r58,0r0,-136r-57,24v-3,1,-8,2,-8,-3r0,-18v0,-3,1,-4,4,-5r64,-29v3,-1,6,-3,8,-3r15,0v4,0,6,3,6,7r0,163r58,0v4,0,7,2,7,6r0,16v0,4,-3,6,-7,6"},"\uf645":{"d":"189,-142v0,39,-33,58,-68,71v-52,19,-56,27,-60,43r118,0v4,0,7,2,7,6r0,16v0,4,-3,6,-7,6r-143,0v-4,0,-7,-3,-7,-7r0,-14v0,-45,30,-55,76,-75v41,-18,52,-22,52,-46v0,-26,-15,-32,-54,-32v-19,0,-43,2,-63,5r-2,0v-4,0,-6,-2,-6,-6r0,-13v0,-4,3,-5,7,-6v18,-5,43,-8,64,-8v58,0,86,16,86,60"},"\uf646":{"d":"188,-6v0,54,-37,77,-90,77v-23,0,-44,-3,-61,-7v-4,-1,-7,-3,-7,-7r0,-12v0,-4,2,-6,6,-6r1,0v22,3,44,5,61,5v39,0,56,-15,56,-50r0,-8v0,-19,-9,-44,-42,-44r-66,0v-4,0,-6,-2,-6,-6r0,-13v0,-4,2,-7,6,-7r66,0v35,0,42,-23,42,-42r0,-5v0,-30,-15,-43,-56,-43v-21,0,-38,2,-61,5r-1,0v-4,0,-6,-2,-6,-6r0,-13v0,-3,3,-5,7,-6v17,-4,38,-8,61,-8v54,0,90,18,90,71r0,5v0,24,-13,45,-35,56v26,13,35,35,35,56r0,8"},"\uf647":{"d":"204,-8v0,4,-3,7,-7,7r-31,0r0,64v0,4,-2,7,-6,7r-21,0v-4,0,-6,-3,-6,-7r0,-64r-104,0v-11,0,-15,-4,-15,-14r0,-14v0,-5,1,-9,4,-13r107,-150v2,-3,4,-6,10,-6r22,0v6,0,9,3,9,8r0,161r31,0v4,0,7,3,7,7r0,14xm133,-29r0,-123v0,-1,0,-2,-1,-2r-1,0v-1,0,-1,1,-2,2r-84,118v-1,1,-1,2,-1,3v0,1,1,2,3,2r86,0"},"\uf648":{"d":"190,-12v0,53,-34,84,-92,84v-23,0,-45,-2,-63,-6v-4,-1,-7,-3,-7,-8r0,-13v0,-4,2,-5,5,-5r2,0v23,4,45,5,63,5v41,0,59,-20,59,-57r0,-5v0,-36,-22,-49,-75,-49r-43,0v-3,0,-6,-3,-6,-6r0,0r10,-120v0,-4,3,-6,7,-6r124,0v4,0,7,2,7,6r0,16v0,4,-3,6,-7,6r-103,0r-6,77r17,0v67,0,108,18,108,76r0,5"},"\uf649":{"d":"197,-89v0,57,-29,92,-88,92v-54,0,-87,-32,-87,-103r0,-63v0,-77,32,-107,94,-107v28,0,46,3,61,6v4,1,9,3,9,7r0,14v0,4,-3,6,-7,6r-2,0v-18,-4,-38,-6,-61,-6v-55,0,-62,33,-62,80r0,4v15,-3,32,-7,54,-7v47,0,89,17,89,75r0,2xm164,-89r0,-2v0,-39,-28,-49,-56,-49v-18,0,-41,3,-54,6r0,34v0,59,20,76,55,76v33,0,55,-16,55,-65"},"\uf64a":{"d":"192,-175v0,6,-2,13,-5,19r-103,220v-2,4,-4,6,-8,6r-22,0v-4,0,-5,-3,-5,-6v0,-1,0,-3,1,-4r108,-226v0,0,1,0,1,-1v0,-1,-1,-3,-3,-3r-123,0v-4,0,-7,-2,-7,-6r0,-15v0,-4,3,-7,7,-7r132,0v20,0,27,11,27,23"},"\uf64b":{"d":"198,-75v0,53,-39,78,-87,78r-4,0v-48,0,-87,-25,-87,-78r0,-6v0,-22,12,-46,35,-59v-23,-12,-34,-32,-34,-56r0,-3v0,-50,37,-71,86,-71r4,0v49,0,87,21,87,71r0,3v0,24,-12,44,-35,56v23,13,35,37,35,59r0,6xm166,-196r0,-3v0,-29,-19,-44,-55,-44r-4,0v-36,0,-55,15,-55,44r0,3v0,22,13,43,46,43r22,0v33,0,46,-21,46,-43xm166,-75r0,-6v0,-21,-13,-46,-46,-46r-22,0v-33,0,-45,25,-45,46r0,6v0,31,18,50,54,50r4,0v36,0,55,-19,55,-50"},"\uf64c":{"d":"193,-36v0,77,-32,107,-94,107v-28,0,-47,-3,-62,-6v-5,-1,-8,-3,-8,-7r0,-14v0,-4,2,-7,6,-7v1,0,1,1,2,1v18,4,39,6,62,6v56,0,62,-33,62,-80r0,-4v-15,3,-32,7,-54,7v-47,0,-89,-17,-89,-75r0,-3v0,-57,29,-91,88,-91v54,0,87,32,87,103r0,63xm161,-65r0,-34v0,-59,-20,-76,-55,-76v-34,0,-56,15,-56,64r0,3v0,39,28,49,56,49v18,0,42,-3,55,-6"},"\uf655":{"d":"110,-62v0,45,-19,63,-50,63v-31,0,-51,-18,-51,-63r0,-25v0,-45,20,-64,51,-64v31,0,50,19,50,64r0,25xm87,-62r0,-25v0,-31,-11,-43,-27,-43v-17,0,-27,12,-27,43r0,25v0,31,10,43,27,43v16,0,27,-12,27,-43","w":119},"\uf656":{"d":"63,-124r-23,10v-4,1,-6,-1,-6,-5r0,-10v0,-3,1,-4,3,-5r29,-14v4,-2,7,-2,12,-2r2,0v6,0,6,3,6,7r0,136v0,3,-2,7,-6,7r-11,0v-4,0,-6,-3,-6,-7r0,-117","w":119},"\uf657":{"d":"106,-113v0,16,-8,27,-26,40v-6,4,-13,8,-19,12v-21,14,-26,24,-26,39r0,1r63,0v3,0,6,2,6,6r0,9v0,4,-3,6,-6,6r-77,0v-3,0,-7,-2,-7,-6r0,-16v0,-21,9,-39,31,-54r20,-13r-1,0v15,-11,19,-14,19,-24v0,-12,-7,-18,-26,-18v-10,0,-23,2,-35,4v-4,0,-6,-3,-6,-7r0,-7v0,-3,3,-5,6,-6v10,-3,23,-4,35,-4v33,0,49,12,49,38","w":119},"\uf658":{"d":"105,-43v0,31,-21,44,-51,44v-12,0,-24,-2,-33,-4v-3,-1,-6,-2,-6,-6r0,-6v0,-4,3,-7,7,-7v12,2,23,3,32,3v19,0,27,-7,27,-24r0,-4v0,-9,-4,-21,-19,-21r-36,0v-4,0,-6,-2,-6,-6r0,-7v0,-4,2,-6,6,-6r36,0v16,0,19,-12,19,-21r0,-2v0,-14,-7,-21,-27,-21v-10,0,-18,2,-29,3v-1,0,-2,1,-4,1v-4,0,-6,-3,-6,-7r0,-6v0,-4,2,-6,5,-7v9,-2,20,-4,34,-4v31,0,51,10,51,41r0,2v0,13,-5,24,-15,31v12,8,15,19,15,30r0,4","w":119},"\uf659":{"d":"114,-45v0,4,-3,6,-7,6r-13,0r0,32v0,3,-3,7,-7,7r-11,0v-4,0,-6,-3,-6,-7r0,-32r-53,0v-8,0,-11,-2,-11,-10r0,-7v0,-3,1,-6,3,-9r58,-81v1,-2,2,-4,7,-4r11,0v5,0,9,2,9,7r0,84r13,0v4,0,7,2,7,6r0,8xm70,-59r0,-58r-40,58r40,0","w":119},"\uf65a":{"d":"106,-46v0,30,-19,47,-52,47v-13,0,-25,0,-35,-3v-4,-1,-5,-3,-5,-7r0,-7v0,-4,2,-6,7,-6v13,2,24,3,33,3v20,0,29,-9,29,-27r0,-4v0,-17,-12,-22,-38,-22r-23,0v-3,0,-6,-3,-6,-7r5,-65v1,-4,4,-6,7,-6r67,0v4,0,7,3,7,7r0,8v0,4,-3,6,-7,6r-53,0r-3,36r6,0v38,0,61,10,61,43r0,4","w":119},"\uf65b":{"d":"110,-50v0,32,-17,51,-50,51v-31,0,-50,-18,-50,-57r0,-34v0,-44,19,-61,54,-61v15,0,26,1,34,3v3,1,6,3,6,7r0,7v0,7,-4,6,-11,5v-8,-1,-17,-2,-29,-2v-27,0,-31,16,-31,39v7,-2,16,-3,27,-3v26,0,50,10,50,43r0,2xm87,-50r0,-2v0,-19,-13,-24,-27,-24v-8,0,-20,1,-27,3r0,17v0,29,10,37,27,37v16,0,27,-7,27,-31","w":119},"\uf65c":{"d":"26,-9r57,-120r-64,0v-4,0,-6,-2,-6,-6r0,-8v0,-4,2,-7,6,-7r74,0v11,0,14,5,14,13v0,6,0,9,-3,14r-56,120v-1,2,-3,3,-6,3r-13,0v-5,0,-5,-4,-3,-9","w":119},"\uf65d":{"d":"111,-43v0,30,-23,44,-50,44r-2,0v-27,0,-50,-14,-50,-44r0,-3v0,-11,6,-25,16,-32v-10,-7,-16,-18,-16,-30r0,-2v0,-29,22,-41,50,-41r2,0v28,0,50,12,50,41r0,2v0,12,-6,23,-16,30v10,7,16,20,16,32r0,3xm87,-43r0,-3v0,-10,-6,-22,-21,-22r-12,0v-16,0,-22,12,-22,22r0,3v0,15,9,24,27,24r2,0v18,0,26,-9,26,-24xm88,-108r0,-2v0,-14,-9,-21,-27,-21r-2,0v-18,0,-27,7,-27,21r0,2v0,10,6,21,22,21r12,0v15,0,22,-11,22,-21","w":119},"\uf65e":{"d":"10,-99v0,-32,17,-52,50,-52v31,0,50,18,50,57r0,35v0,44,-18,60,-53,60v-15,0,-26,-1,-34,-3v-3,-1,-7,-3,-7,-7r0,-7v0,-7,4,-6,11,-5v8,1,18,2,30,2v27,0,30,-16,30,-39v-7,2,-16,3,-27,3v-26,0,-50,-10,-50,-43r0,-1xm33,-99r0,1v0,19,13,24,27,24v8,0,20,-1,27,-3r0,-17v0,-29,-10,-37,-27,-37v-16,0,-27,8,-27,32","w":119},"\uf661":{"d":"110,-179v0,45,-19,63,-50,63v-31,0,-51,-18,-51,-63r0,-26v0,-45,20,-64,51,-64v31,0,50,19,50,64r0,26xm87,-179r0,-26v0,-31,-11,-43,-27,-43v-17,0,-27,12,-27,43r0,26v0,31,10,42,27,42v16,0,27,-11,27,-42","w":119},"\uf662":{"d":"53,-242r-23,10v-4,1,-7,-1,-7,-5r0,-10v0,-3,2,-4,4,-5r29,-13v4,-2,6,-2,11,-2r2,0v6,0,7,2,7,6r0,136v0,3,-3,7,-7,7r-10,0v-4,0,-6,-3,-6,-7r0,-117","w":119},"\uf663":{"d":"106,-231v0,16,-8,27,-26,40v-6,4,-13,8,-19,12v-21,14,-26,24,-26,39r0,1r63,0v3,0,6,3,6,7r0,8v0,4,-3,6,-6,6r-77,0v-3,0,-7,-2,-7,-6r0,-16v0,-21,9,-38,31,-53r20,-13r-1,0v15,-11,19,-15,19,-25v0,-12,-7,-17,-26,-17v-10,0,-23,1,-35,3v-4,0,-6,-3,-6,-7r0,-6v0,-3,3,-6,6,-7v10,-3,23,-4,35,-4v33,0,49,12,49,38","w":119},"\uf664":{"d":"105,-161v0,31,-21,45,-51,45v-12,0,-24,-2,-33,-4v-3,-1,-6,-3,-6,-7r0,-6v0,-4,3,-7,7,-7v12,2,23,3,32,3v19,0,27,-7,27,-24r0,-4v0,-9,-4,-21,-19,-21r-36,0v-4,0,-6,-2,-6,-6r0,-7v0,-4,2,-6,6,-6r36,0v16,0,19,-11,19,-20r0,-3v0,-14,-7,-20,-27,-20v-10,0,-18,1,-29,2v-1,0,-2,1,-4,1v-4,0,-6,-3,-6,-7r0,-6v0,-4,2,-6,5,-7v9,-2,20,-4,34,-4v31,0,51,10,51,41r0,3v0,13,-5,23,-15,30v12,8,15,19,15,30r0,4","w":119},"\uf665":{"d":"114,-162v0,4,-3,6,-7,6r-13,0r0,31v0,3,-3,7,-7,7r-11,0v-4,0,-6,-3,-6,-7r0,-31r-53,0v-8,0,-11,-2,-11,-10r0,-8v0,-3,1,-6,3,-9r58,-81v1,-2,2,-3,7,-3r11,0v5,0,9,2,9,7r0,84r13,0v4,0,7,2,7,6r0,8xm70,-176r0,-59r-40,59r40,0","w":119},"\uf666":{"d":"106,-164v0,30,-19,48,-52,48v-13,0,-25,-1,-35,-4v-4,-1,-5,-2,-5,-6r0,-8v0,-4,2,-6,7,-6v13,2,24,3,33,3v20,0,29,-9,29,-27r0,-3v0,-17,-12,-23,-38,-23r-23,0v-3,0,-6,-3,-6,-7r5,-64v1,-4,4,-6,7,-6r67,0v4,0,7,2,7,6r0,9v0,4,-3,5,-7,5r-53,0r-3,36r6,0v38,0,61,11,61,44r0,3","w":119},"\uf667":{"d":"110,-168v0,32,-17,52,-50,52v-31,0,-50,-19,-50,-58r0,-34v0,-44,19,-61,54,-61v15,0,26,2,34,4v3,1,6,2,6,6r0,8v0,7,-4,6,-11,5v-8,-1,-17,-2,-29,-2v-27,0,-31,15,-31,38v7,-2,16,-3,27,-3v26,0,50,10,50,43r0,2xm87,-168r0,-2v0,-19,-13,-23,-27,-23v-8,0,-20,1,-27,3r0,16v0,29,10,38,27,38v16,0,27,-8,27,-32","w":119},"\uf668":{"d":"26,-126r57,-121r-64,0v-4,0,-6,-1,-6,-5r0,-9v0,-4,2,-6,6,-6r74,0v11,0,14,4,14,12v0,6,0,9,-3,14r-56,120v-1,2,-3,3,-6,3r-13,0v-5,0,-5,-3,-3,-8","w":119},"\uf669":{"d":"111,-161v0,30,-23,45,-50,45r-2,0v-27,0,-50,-15,-50,-45r0,-3v0,-11,6,-24,16,-31v-10,-7,-16,-19,-16,-31r0,-2v0,-29,22,-41,50,-41r2,0v28,0,50,12,50,41r0,2v0,12,-6,24,-16,31v10,7,16,19,16,31r0,3xm87,-161r0,-3v0,-10,-6,-22,-21,-22r-12,0v-16,0,-22,12,-22,22r0,3v0,15,9,24,27,24r2,0v18,0,26,-9,26,-24xm88,-226r0,-2v0,-14,-9,-21,-27,-21r-2,0v-18,0,-27,7,-27,21r0,2v0,10,6,21,22,21r12,0v15,0,22,-11,22,-21","w":119},"\uf66a":{"d":"10,-217v0,-32,17,-52,50,-52v31,0,50,19,50,58r0,34v0,44,-18,60,-53,60v-15,0,-26,-1,-34,-3v-3,-1,-7,-2,-7,-6r0,-8v0,-7,4,-6,11,-5v8,1,18,2,30,2v27,0,30,-16,30,-39v-7,2,-16,4,-27,4v-26,0,-50,-11,-50,-44r0,-1xm33,-217r0,1v0,19,13,24,27,24v8,0,20,-1,27,-3r0,-16v0,-29,-10,-38,-27,-38v-16,0,-27,8,-27,32","w":119},"\ue008":{"d":"60,23v0,37,-16,48,-45,48v-7,0,-12,-1,-19,-2v-5,-1,-7,-2,-7,-5r0,-14v0,-3,3,-5,8,-5r15,0v14,0,16,-4,16,-22r0,-214v0,-4,3,-7,7,-7r19,0v4,0,6,3,6,7r0,214","w":88},"\u2215":{"d":"133,-267v5,0,4,2,2,6r-150,255v-3,5,-4,7,-8,7r-17,0v-4,0,-6,-3,-3,-7r151,-256v3,-5,4,-5,8,-5r17,0","w":91},"\u03a9":{"d":"200,-8v0,6,-3,8,-8,8r-65,0v-5,0,-8,-3,-8,-8r0,-40v0,-6,1,-8,5,-9v30,-10,45,-38,45,-77r0,-32v0,-59,-27,-77,-62,-77v-35,0,-63,18,-63,77r0,32v0,39,15,67,45,77v4,1,5,3,5,9r0,40v0,5,-3,8,-8,8r-65,0v-5,0,-8,-2,-8,-8r0,-12v0,-6,3,-7,8,-7r44,0r0,-13v-39,-17,-53,-53,-53,-94r0,-32v0,-67,35,-106,95,-106v60,0,95,39,95,106r0,32v0,41,-15,77,-54,94r0,13r44,0v5,0,8,1,8,7r0,12","w":213}}});


/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * 1991 B & P Graphics, Ltd.
 * 
 * Manufacturer:
 * B & P Graphics, Ltd
 */
Cufon.registerFont({"w":253,"face":{"font-family":"Ornito","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 2 0 0 2 0 4","ascent":"288","descent":"-72","bbox":"-19 -350 388 83.7479","underline-thickness":"38.88","underline-position":"1.8","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":104},"\u00a0":{"w":104},"$":{"d":"173,-185v-21,-16,-75,-38,-82,2v5,26,40,21,62,31v43,8,61,59,40,104v-12,25,-34,42,-66,50r0,26r-43,0v0,-12,4,-27,-13,-25v-25,-5,-47,-15,-66,-29r23,-61v19,18,73,50,93,12v5,-28,-29,-26,-50,-34v-74,-8,-70,-117,-14,-141v10,-5,18,-9,28,-9r0,-26r45,0r0,25v25,2,43,8,61,20","w":212},"%":{"d":"205,-97v-33,2,-33,68,0,70v33,-3,33,-68,0,-70xm205,2v-39,0,-65,-25,-65,-64v0,-39,26,-64,65,-64v40,0,65,26,65,64v0,38,-27,64,-65,64xm217,-259r32,0r-185,259r-33,0xm76,-231v-34,0,-34,69,0,69v32,-1,33,-68,0,-69xm76,-132v-39,0,-66,-25,-66,-65v0,-39,27,-64,66,-64v38,0,65,26,65,64v0,39,-26,65,-65,65","w":280},"&":{"d":"105,-106v-23,6,-28,41,-5,52v13,9,37,3,49,-4xm118,-205v-9,37,38,50,44,11v4,-25,-36,-31,-44,-11xm282,-84v-11,13,-24,23,-38,34v16,19,37,37,55,50r-92,0r-18,-17v-70,47,-209,12,-173,-85v8,-22,32,-34,56,-43v-48,-36,-13,-121,50,-117v87,-16,141,81,67,125v-6,4,-12,8,-19,10r33,36v14,-11,29,-23,39,-37","w":295},"'":{"d":"18,-259r52,0r-8,91r-52,0","w":80},"(":{"d":"69,-130v0,56,24,101,56,131r-35,38v-86,-56,-102,-246,-18,-319r18,-18r35,38v-32,31,-56,74,-56,130","w":125},")":{"d":"57,-130v0,-58,-25,-101,-56,-130r32,-38v52,44,93,115,75,212v-10,53,-39,95,-75,125r-32,-38v32,-31,55,-72,56,-131","w":125},"*":{"d":"142,-165v-2,24,-40,28,-44,5v-1,-8,-11,-26,-17,-12v3,15,31,40,4,52v-29,13,-46,-23,-23,-41v4,-4,8,-14,0,-16v-16,5,-14,45,-45,30v-18,-9,-13,-42,11,-41v10,1,28,9,30,-3v-7,-18,-53,16,-52,-26v0,-24,39,-28,43,-5v2,8,11,26,18,13v-5,-16,-31,-40,-5,-53v34,-16,45,30,19,47v-2,5,3,15,9,9v9,-10,10,-33,32,-31v24,3,27,41,3,43v-12,-1,-47,-6,-29,9v12,0,48,-9,46,20","w":147},"+":{"d":"39,-168r59,0r0,-58r58,0r0,58r58,0r0,58r-58,0r0,58r-58,0r0,-58r-59,0r0,-58"},",":{"d":"9,-31v-2,-51,72,-48,76,-4v4,47,-25,67,-49,94r-29,-15v12,-12,22,-24,30,-39v-15,-3,-28,-18,-28,-36","w":93},"-":{"d":"8,-125r99,0r0,49r-99,0r0,-49","w":115},"\u00ad":{"d":"8,-125r99,0r0,49r-99,0r0,-49","w":115},".":{"d":"46,5v-22,0,-38,-16,-38,-39v0,-23,15,-38,38,-38v22,0,39,16,39,38v0,23,-16,39,-39,39","w":92},"\/":{"d":"72,-268r44,9r-64,268r-44,-9","w":124},"0":{"d":"145,-192v-50,-28,-66,51,-54,98v8,31,47,45,65,15v18,-30,15,-98,-11,-113xm164,0v-143,52,-207,-175,-96,-248v120,-79,235,106,139,218v-12,14,-27,24,-43,30"},"1":{"d":"88,-259r86,0r0,259r-74,0r0,-195r-33,0"},"2":{"d":"2,0r89,-80v30,-35,68,-52,64,-104v-12,-28,-59,-13,-53,20r-75,0v-7,-103,152,-133,195,-51v37,70,-30,119,-72,154r83,0r-18,61r-213,0"},"3":{"d":"202,-239v31,27,24,87,-15,96v54,6,62,95,19,124v-31,32,-122,29,-156,0v-20,-17,-34,-38,-32,-73r74,0v-8,44,60,54,66,12v4,-25,-19,-42,-45,-37r0,-46v35,10,50,-44,15,-48v-17,-2,-27,10,-30,25r-70,0v-4,-83,122,-98,174,-53"},"4":{"d":"132,-111v0,-35,0,-69,5,-99v-17,36,-41,66,-62,99r57,0xm10,-112r107,-147r89,0r0,147r27,0r0,56r-27,0r0,56r-74,0r0,-56r-122,0r0,-56"},"5":{"d":"33,-78v30,17,78,35,113,12v23,-34,-15,-62,-61,-53v-13,2,-35,6,-49,11r20,-151r163,0r-18,61r-92,0r-5,39v76,-21,151,29,119,106v-27,66,-128,72,-201,36"},"6":{"d":"165,-96v2,-42,-62,-50,-74,-13v-9,27,9,52,36,52v22,0,38,-16,38,-39xm122,-259r96,0r-81,81v80,-19,129,72,85,138v-28,43,-115,56,-166,24v-45,-28,-55,-107,-18,-149v28,-32,55,-64,84,-94"},"7":{"d":"32,-259r215,0r-142,259r-86,0r114,-192r16,-14v-31,19,-90,9,-137,11"},"8":{"d":"127,-156v25,0,36,-33,17,-48v-19,-15,-45,-1,-45,19v0,15,12,29,28,29xm127,-49v35,2,45,-55,12,-65v-25,-8,-46,7,-46,32v0,18,16,33,34,33xm66,-137v-34,-6,-48,-52,-29,-85v29,-51,151,-52,180,0v19,34,3,80,-30,85v39,7,60,56,39,97v-30,58,-167,59,-198,0v-21,-41,2,-90,38,-97"},"9":{"d":"127,-201v-23,0,-39,15,-39,39v0,23,16,38,39,38v22,0,38,-16,38,-39v-1,-22,-18,-38,-38,-38xm14,-179v11,-114,235,-110,227,16v-5,79,-71,112,-107,163r-99,0r81,-81v-63,12,-109,-32,-102,-98"},":":{"d":"51,-109v-23,0,-38,-16,-38,-39v0,-23,16,-37,38,-38v20,-1,39,16,39,38v0,23,-18,39,-39,39xm51,5v-22,0,-38,-16,-38,-39v0,-23,16,-38,38,-38v22,0,39,16,39,38v0,23,-17,39,-39,39","w":102},";":{"d":"52,-109v-22,0,-38,-16,-38,-38v0,-22,16,-38,38,-39v23,0,39,19,39,39v0,20,-17,38,-39,38xm43,3v-39,-7,-36,-76,9,-75v42,1,48,53,26,84v-9,13,-23,32,-36,45r-29,-15v12,-11,22,-24,30,-39","w":104},"\u037e":{"d":"52,-109v-22,0,-38,-16,-38,-38v0,-22,16,-38,38,-39v23,0,39,19,39,39v0,20,-17,38,-39,38xm43,3v-39,-7,-36,-76,9,-75v42,1,48,53,26,84v-9,13,-23,32,-36,45r-29,-15v12,-11,22,-24,30,-39","w":104},"<":{"d":"162,-213r0,58r-52,25r52,26r0,58r-152,-84","w":172},"=":{"d":"39,-131r176,0r0,49r-176,0r0,-49xm39,-196r175,0r0,49r-175,0r0,-49"},">":{"d":"10,-104r53,-26r-53,-25r0,-58r152,83r-152,84r0,-58","w":172},"?":{"d":"90,-182v3,-45,-58,-27,-75,-8r-18,-52v70,-60,214,8,140,96v-14,17,-37,27,-35,59r-56,0v-5,-49,31,-62,44,-95xm73,5v-22,0,-38,-16,-38,-39v0,-23,15,-38,38,-38v22,0,39,16,39,38v0,23,-16,39,-39,39","w":165},"@":{"d":"148,-78v18,-22,48,-102,6,-115v-43,3,-55,68,-42,109v4,12,27,18,36,6xm242,-78v-14,24,-67,37,-75,1r0,-4v-26,52,-90,19,-85,-41v5,-52,39,-105,92,-80v4,3,7,7,9,12r2,-16r20,0r-19,117v10,34,40,2,48,-14v33,-67,-6,-147,-94,-137v-90,10,-120,146,-52,201v33,27,95,29,131,1v13,-11,27,-22,36,-36v2,14,5,28,-5,35v-55,74,-187,44,-215,-25v-15,-37,-16,-91,-1,-128v28,-72,170,-100,218,-24v24,38,19,111,-10,138","w":288},"A":{"d":"149,-102r-24,-103v-6,37,-17,68,-25,103r49,0xm84,-259r81,0r91,259r-84,0r-13,-48r-69,0r-14,48r-84,0","w":248},"B":{"d":"149,-83v0,-28,-25,-28,-54,-28r0,59v31,1,54,0,54,-31xm95,-153v36,8,59,-22,42,-48v-7,-10,-24,-11,-42,-10r0,58xm17,-259v79,3,183,-20,191,61v3,33,-14,55,-38,63v53,2,66,86,26,118v-36,29,-118,12,-179,17r0,-259","w":231},"C":{"d":"90,-143v-11,70,66,98,116,58r25,65v-36,31,-117,34,-158,3v-65,-29,-83,-161,-20,-210v35,-41,132,-53,178,-11r-25,64v-41,-39,-108,-17,-116,31","w":234},"D":{"d":"164,-131v-1,-41,-25,-67,-69,-65r0,129v44,2,69,-22,69,-64xm17,-259v74,3,157,-9,191,35v39,31,49,120,17,169v-35,54,-117,58,-208,55r0,-259","w":257},"E":{"d":"17,-259r180,0r-16,59r-86,0r0,41r79,0r0,57r-79,0r0,43r103,0r-18,59r-163,0r0,-259","w":201},"F":{"d":"17,-259r178,0r-16,59r-84,0r0,41r84,0r-15,58r-69,0r0,101r-78,0r0,-259","w":190},"G":{"d":"203,-173v-18,-33,-79,-32,-99,1v-34,55,14,143,80,106v13,-7,22,-21,26,-36r-58,0r0,-48r140,0v5,102,-58,169,-165,153v-76,-11,-133,-72,-111,-165v15,-65,71,-111,161,-100v43,6,75,29,94,60","w":303},"H":{"d":"17,-259r78,0r0,92r77,0r0,-92r77,0r0,259r-77,0r0,-98r-77,0r0,98r-78,0r0,-259","w":266},"I":{"d":"17,-259r78,0r0,259r-78,0r0,-259","w":111},"J":{"d":"156,-76v12,96,-117,96,-161,46r31,-50v13,21,52,28,52,-14r0,-165r78,0r0,183","w":172},"K":{"d":"17,-259r78,0r0,102r62,-102r91,0r-89,124r89,135r-90,0r-63,-109r0,109r-78,0r0,-259","w":238},"L":{"d":"17,-259r78,0r0,198r102,0r-17,61r-163,0r0,-259","w":192},"M":{"d":"39,-259r77,0r46,149v1,5,1,25,3,14v11,-60,33,-108,48,-163r77,0r39,259r-76,0r-12,-171v-10,63,-32,114,-48,171r-58,0v-14,-51,-34,-97,-44,-152r-3,-13v0,58,-8,110,-12,165r-76,0","w":327},"N":{"d":"85,-178v11,53,5,118,8,178r-76,0r0,-259r78,0r88,141v4,7,12,25,15,36v-12,-51,-5,-118,-8,-177r76,0r0,259r-79,0r-89,-140","w":282},"O":{"d":"212,-154v-20,-61,-123,-49,-123,24v0,60,74,87,110,45v15,-17,22,-41,13,-69xm153,5v-85,0,-141,-50,-141,-135v0,-85,56,-134,141,-134v85,0,140,50,140,134v0,85,-55,135,-140,135","w":305},"P":{"d":"95,-140v45,15,76,-37,36,-59r-36,-1r0,60xm17,-259v102,-3,222,-14,203,111v-8,54,-58,68,-125,63r0,85r-78,0r0,-259","w":225},"Q":{"d":"212,-154v-20,-61,-123,-49,-123,24v0,60,73,86,110,46v14,-16,22,-43,13,-70xm159,-265v115,-3,174,142,100,227r30,38r-50,39r-35,-43v-98,30,-194,-23,-192,-126v2,-87,60,-132,147,-135","w":305},"R":{"d":"95,-143v24,1,45,-1,49,-22v7,-32,-16,-41,-49,-38r0,60xm17,-259v90,4,215,-27,198,93v-4,29,-24,51,-55,54r79,112r-91,0r-53,-92r0,92r-78,0r0,-259","w":232},"S":{"d":"173,-185v-21,-16,-75,-38,-82,2v5,26,40,21,62,31v57,8,60,92,21,129v-40,38,-130,33,-169,-3r23,-61v19,18,73,50,93,12v5,-28,-29,-26,-50,-34v-62,-5,-73,-93,-29,-131v36,-31,110,-27,149,0","w":212},"T":{"d":"-1,-259r193,0r-20,67r-46,0r0,192r-78,0r0,-192r-52,0","w":182},"U":{"d":"122,-63v26,3,43,-10,42,-37r0,-159r78,0v-2,126,32,282,-132,263v-56,-7,-93,-39,-93,-98r0,-165r78,0r0,159v0,23,7,34,27,37","w":258},"V":{"d":"72,-259v15,65,40,121,46,195v4,-76,30,-130,45,-195r79,0r-90,259r-68,0r-91,-259r79,0","w":235},"W":{"d":"251,-76v6,-67,23,-122,35,-183r74,0r-75,259r-69,0r-37,-186v-5,73,-24,122,-36,186r-70,0r-75,-259r75,0r35,183v3,-71,26,-122,39,-183r65,0v12,62,33,115,39,183","w":358},"X":{"d":"78,-138r-80,-121r84,0v14,27,33,47,40,81v4,-36,27,-53,39,-81r84,0r-80,121r89,138r-89,0v-14,-33,-39,-55,-43,-99v-5,42,-29,66,-44,99r-89,0","w":243},"Y":{"d":"115,-163v3,-42,28,-63,41,-96r83,0r-86,147r0,112r-77,0r0,-112r-86,-147r84,0v14,32,36,56,41,96","w":228},"Z":{"d":"112,-58v36,-9,87,-3,130,-5r-20,63r-225,0r119,-189r14,-14v-31,15,-84,4,-126,7r19,-63r220,0r-121,192v-3,3,-6,6,-10,9","w":241},"[":{"d":"25,-292r83,0r0,43r-23,0r0,239r23,0r0,42r-83,0r0,-324","w":120},"\\":{"d":"62,-259r46,259r-52,0r-46,-259r52,0","w":118},"]":{"d":"12,-10r23,0r0,-239r-23,0r0,-43r83,0r0,324r-83,0r0,-42","w":119},"^":{"d":"94,-206r85,152r-59,0r-26,-52r-25,52r-59,0","w":189},"_":{"d":"10,0r130,0r0,15r-130,0r0,-15","w":150},"`":{"d":"27,-273r43,58r-29,17r-53,-53","w":64},"a":{"d":"134,-124v-25,-18,-53,5,-49,40v3,25,32,40,50,23v12,-11,13,-52,-1,-63xm149,-19v-20,28,-79,30,-108,5v-32,-28,-40,-112,-6,-144v20,-32,91,-38,114,-5r0,-18r67,0r0,181r-67,0r0,-19","w":233},"b":{"d":"122,-131v-36,-11,-44,52,-24,69v24,21,56,-5,49,-39v-3,-17,-11,-26,-25,-30xm17,-229r71,-38r0,102v30,-33,101,-22,119,16v31,65,5,169,-81,153v-20,-4,-33,-10,-42,-23r0,19r-67,0r0,-229","w":232},"c":{"d":"156,-119v-37,-36,-95,15,-60,55v14,14,43,14,60,2r16,49v-29,23,-85,24,-118,3v-44,-28,-57,-115,-12,-151v25,-31,94,-36,131,-11","w":178},"d":{"d":"109,-130v-33,3,-31,74,2,75v36,11,43,-49,24,-69v-7,-6,-15,-8,-26,-6xm145,-229r71,-38r0,267r-67,0r0,-19v-16,24,-77,35,-102,9v-41,-23,-48,-120,-9,-153v21,-29,85,-30,107,-1r0,-65","w":233},"e":{"d":"144,-123v-23,-34,-84,-3,-69,35xm93,-56v14,16,41,11,50,-6r46,28v-19,36,-87,51,-133,26v-47,-25,-58,-113,-17,-150v20,-18,51,-34,89,-27v37,7,63,34,77,72","w":207},"f":{"d":"27,-181v-9,-75,50,-98,113,-78r-14,53v-17,-12,-33,1,-28,25r36,0r-14,55r-22,0r0,126r-71,0r0,-126r-33,0r15,-55r18,0","w":126},"g":{"d":"122,-130v-35,-8,-45,41,-30,64v15,23,52,10,52,-20v0,-28,-3,-39,-22,-44xm43,4v27,22,118,30,104,-31v-14,25,-68,32,-98,13v-36,-22,-50,-98,-20,-138v17,-36,92,-46,118,-11r0,-18r68,0r0,166v3,91,-127,104,-198,66","w":231},"h":{"d":"17,-229r71,-38r0,104v32,-44,120,-23,120,38r0,125r-72,0v-3,-39,8,-93,-7,-121v-15,-12,-41,0,-41,22r0,99r-71,0r0,-229","w":224},"i":{"d":"54,-191v-23,0,-39,-15,-39,-38v0,-24,16,-39,39,-39v22,0,39,16,39,38v0,23,-16,39,-39,39xm16,-150r71,-39r0,189r-71,0r0,-150","w":103},"j":{"d":"55,-192v-24,1,-39,-14,-40,-36v-1,-24,15,-38,37,-40v22,-2,40,16,40,38v0,22,-15,37,-37,38xm16,-152r71,-37r0,254r-71,0r0,-217","w":102},"k":{"d":"17,-229r71,-38r0,149r42,-63r84,0r-66,82r78,99r-90,0r-48,-72r0,72r-71,0r0,-229","w":212},"l":{"d":"17,-229r71,-38r0,267r-71,0r0,-229","w":105},"m":{"d":"17,-151r69,-39r0,29v16,-30,80,-36,99,-1v5,11,10,0,15,-4v36,-40,108,-17,108,43r0,123r-69,0v-3,-41,7,-95,-6,-125v-14,-10,-36,0,-36,21r0,104r-69,0v-2,-39,5,-89,-4,-121v-11,-17,-43,-6,-38,18r0,103r-69,0r0,-151","w":325},"n":{"d":"84,-162v16,-27,76,-33,102,-11v36,30,17,112,22,173r-72,0v-3,-40,8,-94,-7,-122v-17,-11,-40,1,-40,26r0,96r-71,0r-1,-151r67,-39r0,28","w":224},"o":{"d":"141,-106v-12,-34,-67,-21,-62,16v-4,32,34,49,55,28v10,-9,13,-27,7,-44xm73,0v-91,-33,-70,-188,38,-188v102,0,134,143,48,185v-24,12,-60,13,-86,3","w":222},"p":{"d":"123,-126v-34,-10,-46,50,-25,70v22,21,57,-5,49,-39v-4,-18,-11,-28,-24,-31xm220,-109v20,91,-75,146,-132,92r0,57r-71,34r0,-255r67,0r0,20v20,-28,81,-33,108,-5v13,14,22,32,28,57","w":233},"q":{"d":"117,-49v34,4,35,-56,18,-71v-21,-19,-50,5,-50,34v0,22,14,35,32,37xm149,-181r67,0r0,221r-71,33r0,-90v-20,29,-87,30,-109,-2v-32,-30,-31,-118,4,-145v22,-30,89,-26,109,2r0,-19","w":233},"r":{"d":"143,-114v-26,-17,-55,4,-55,38r0,76r-71,0r0,-151r67,-39r0,31v13,-20,49,-35,80,-22","w":153},"s":{"d":"104,-143v-25,-4,-31,25,-8,28v41,5,80,24,68,75v-13,56,-110,57,-161,28r16,-49v16,13,60,34,73,7v3,-19,-21,-15,-37,-21v-40,-5,-58,-56,-30,-89v25,-29,99,-32,134,-8r-15,45v-10,-7,-27,-14,-40,-16","w":175},"t":{"d":"96,-258r0,77r41,0r-19,55r-22,0r0,126r-71,0r0,-126r-30,0","w":124},"u":{"d":"107,-54v17,3,28,-8,28,-26r0,-101r71,0v2,99,16,203,-112,186v-46,-5,-76,-25,-77,-71r0,-115r71,0r0,101v1,16,5,23,19,26","w":222},"v":{"d":"68,-181v10,42,30,74,32,124v7,-46,22,-83,34,-124r77,0r-73,181r-74,0r-73,-181r77,0","w":201},"w":{"d":"95,-63v4,-45,20,-78,29,-118r53,0r27,118v3,-47,18,-78,26,-118r72,0r-61,181r-67,0v-9,-36,-20,-68,-25,-108v-4,41,-17,73,-27,108r-64,0r-62,-181r72,0","w":298},"x":{"d":"62,-94r-65,-87r83,0v10,17,24,30,27,54v4,-23,16,-38,27,-54r82,0r-64,87r69,94r-85,0v-9,-20,-27,-31,-29,-59v-4,26,-20,40,-30,59r-85,0","w":213},"y":{"d":"72,-181v11,38,27,70,34,113v7,-42,23,-75,34,-113r79,0r-106,246r-80,0r36,-73r-75,-173r78,0","w":210},"z":{"d":"100,-131v-23,10,-57,10,-91,9r19,-59r172,0r-85,118v-4,2,-12,8,-16,13v21,-13,60,-8,93,-9r-20,59r-176,0r86,-118v3,-4,11,-10,18,-13","w":199},"{":{"d":"35,-104v1,-14,-12,-26,-25,-26v14,1,26,-12,25,-26v7,-53,-24,-146,35,-147r52,0r0,31v-16,-1,-24,3,-25,17v-4,48,18,122,-32,125v48,5,28,77,32,126v0,14,9,18,25,17r0,31v-41,0,-87,7,-87,-36r0,-112","w":132},"|":{"d":"10,-259r52,0r0,259r-52,0r0,-259","w":72},"}":{"d":"98,-104v0,55,24,147,-36,148r-52,0r0,-31v15,1,25,-2,25,-17v0,-49,-16,-121,32,-126v-49,-4,-32,-77,-32,-125v0,-15,-9,-18,-25,-17r0,-31v41,0,88,-7,88,36r0,111v-1,14,10,27,24,26v-13,0,-24,13,-24,26","w":132},"~":{"d":"10,-95v2,-48,20,-84,72,-67v20,6,54,31,57,-5r37,0v1,50,-21,80,-72,66v-17,-5,-45,-28,-54,-4r-2,10r-38,0","w":186},"\u00c4":{"d":"149,-102r-24,-103v-6,37,-17,68,-25,103r49,0xm211,-271v0,20,-17,33,-39,31r84,240r-84,0r-13,-48r-69,0r-14,48r-84,0r85,-240v-23,1,-36,-12,-37,-32v-1,-21,17,-35,34,-35v21,0,43,24,31,48r41,0v-10,-24,5,-47,31,-47v21,0,34,15,34,35","w":248},"\u00c5":{"d":"123,-303v-8,-2,-12,10,-12,16v0,7,5,16,12,16v8,0,13,-8,13,-16v0,-8,-4,-17,-13,-16xm149,-102r-24,-103v-6,37,-17,68,-25,103r49,0xm123,-322v35,0,59,46,26,63r16,0r91,259r-84,0r-13,-48r-69,0r-14,48r-84,0r92,-259r15,0v-18,-8,-24,-39,-6,-52v9,-7,19,-11,30,-11","w":248},"\u00c7":{"d":"119,11r49,2r-28,54r-40,-1xm90,-143v-11,70,66,98,116,58r25,65v-36,31,-117,34,-158,3v-65,-29,-83,-161,-20,-210v35,-41,132,-53,178,-11r-25,64v-41,-39,-108,-17,-116,31","w":234},"\u00c9":{"d":"121,-350r38,22r-53,53r-29,-16xm17,-259r180,0r-16,59r-86,0r0,41r79,0r0,57r-79,0r0,43r103,0r-18,59r-163,0r0,-259","w":201},"\u00d1":{"d":"86,-316v34,-18,78,16,111,-5r0,37v-37,16,-78,-16,-111,5r0,-37xm85,-178v11,53,5,118,8,178r-76,0r0,-259r78,0r88,141v4,7,12,25,15,36v-12,-51,-5,-118,-8,-177r76,0r0,259r-79,0r-89,-140","w":282},"\u00d6":{"d":"212,-154v-20,-61,-123,-49,-123,24v0,60,74,87,110,45v15,-17,22,-41,13,-69xm226,-307v38,0,45,61,9,67v60,27,79,145,27,197v-39,62,-179,61,-219,0v-37,-38,-41,-126,-5,-168v9,-12,21,-22,34,-30v-14,-3,-26,-16,-26,-33v1,-21,13,-33,34,-33v26,-1,41,29,31,50v27,-9,57,-10,84,1v-12,-23,6,-51,31,-51","w":305},"\u00dc":{"d":"177,-306v23,3,35,19,33,47r31,0v-3,126,33,283,-132,263v-57,-7,-92,-39,-92,-98r0,-165r36,0v-21,-31,25,-63,53,-37v17,16,7,47,-11,52v3,55,-8,125,6,170v18,22,72,10,62,-26r1,-143v-30,-9,-26,-67,13,-63","w":258},"\u00e1":{"d":"137,-272r38,22r-53,53r-29,-16xm134,-124v-25,-18,-53,5,-49,40v3,25,32,40,50,23v12,-11,13,-52,-1,-63xm149,-19v-20,28,-79,30,-108,5v-32,-28,-40,-112,-6,-144v20,-32,91,-38,114,-5r0,-18r67,0r0,181r-67,0r0,-19","w":233},"\u00e0":{"d":"111,-273r43,58r-28,17r-53,-53xm134,-124v-25,-18,-53,5,-49,40v3,25,32,40,50,23v12,-11,13,-52,-1,-63xm149,-19v-20,28,-79,30,-108,5v-32,-28,-40,-112,-6,-144v20,-32,91,-38,114,-5r0,-18r67,0r0,181r-67,0r0,-19","w":233},"\u00e2":{"d":"117,-271r65,46r-11,28r-54,-27r-54,27r-11,-28xm134,-124v-25,-18,-53,5,-49,40v3,25,32,40,50,23v12,-11,13,-52,-1,-63xm149,-19v-20,28,-79,30,-108,5v-32,-28,-40,-112,-6,-144v20,-32,91,-38,114,-5r0,-18r67,0r0,181r-67,0r0,-19","w":233},"\u00e4":{"d":"154,-199v-15,0,-26,-14,-26,-27v-1,-15,11,-29,27,-29v16,0,27,13,26,28v0,14,-12,28,-27,28xm81,-198v-15,-1,-25,-12,-26,-28v-1,-15,11,-29,26,-29v14,0,27,13,27,28v0,14,-12,29,-27,29xm134,-124v-25,-18,-53,5,-49,40v3,25,32,40,50,23v12,-11,13,-52,-1,-63xm145,-181r71,0r0,181r-71,0r0,-19v-21,31,-85,32,-109,0v-31,-28,-30,-107,-2,-140v24,-29,86,-36,111,-5r0,-17","w":232},"\u00e3":{"d":"62,-238v34,-19,78,16,110,-5r0,37v-37,16,-78,-17,-110,5r0,-37xm134,-124v-25,-18,-53,5,-49,40v3,25,32,40,50,23v12,-11,13,-52,-1,-63xm149,-19v-20,28,-79,30,-108,5v-32,-28,-40,-112,-6,-144v20,-32,91,-38,114,-5r0,-18r67,0r0,181r-67,0r0,-19","w":233},"\u00e5":{"d":"127,-249v-19,1,-19,34,0,35v19,-1,19,-34,0,-35xm127,-197v-23,0,-40,-13,-40,-34v0,-22,16,-35,40,-35v21,0,40,13,40,34v0,22,-20,35,-40,35xm134,-124v-25,-18,-53,5,-49,40v3,25,32,40,50,23v12,-11,13,-52,-1,-63xm149,-19v-20,28,-79,30,-108,5v-34,-29,-36,-115,-3,-148v26,-27,87,-31,111,-2r0,-17r67,0r0,181r-67,0r0,-19","w":232},"\u00e7":{"d":"83,11r40,3r-34,56r-33,-2xm156,-119v-37,-36,-95,15,-60,55v14,14,43,14,60,2r16,49v-29,23,-85,24,-118,3v-44,-28,-57,-115,-12,-151v25,-31,94,-36,131,-11","w":178},"\u00e9":{"d":"124,-272r38,22r-54,53r-28,-16xm144,-123v-23,-34,-84,-3,-69,35xm93,-56v14,16,41,11,50,-6r46,28v-19,36,-87,51,-133,26v-47,-25,-58,-113,-17,-150v20,-18,51,-34,89,-27v37,7,63,34,77,72","w":207},"\u00e8":{"d":"98,-273r43,58r-29,17r-53,-53xm144,-123v-23,-34,-84,-3,-69,35xm93,-56v14,16,41,11,50,-6r46,28v-19,36,-87,51,-133,26v-47,-25,-58,-113,-17,-150v20,-18,51,-34,89,-27v37,7,63,34,77,72","w":207},"\u00ea":{"d":"104,-271r64,46r-11,28r-53,-27r-54,27r-11,-28xm144,-123v-23,-34,-84,-3,-69,35xm93,-56v14,16,41,11,50,-6r46,28v-19,36,-87,51,-133,26v-47,-25,-58,-113,-17,-150v20,-18,51,-34,89,-27v37,7,63,34,77,72","w":207},"\u00eb":{"d":"140,-198v-14,0,-26,-14,-26,-28v0,-14,11,-29,26,-29v15,0,27,14,27,29v0,14,-13,28,-27,28xm67,-198v-35,0,-34,-57,0,-57v15,0,26,15,26,29v0,14,-12,28,-26,28xm144,-123v-23,-34,-84,-3,-69,35xm93,-56v14,16,41,11,50,-6r46,28v-19,36,-87,51,-133,26v-47,-25,-58,-113,-17,-150v20,-18,51,-34,89,-27v37,7,63,34,77,72","w":207},"\u00ed":{"d":"73,-272r38,22r-53,53r-29,-16xm17,-150r72,-39r0,189r-72,0r0,-150","w":105},"\u00ec":{"d":"47,-273r43,58r-28,17r-53,-53xm17,-150r72,-39r0,189r-72,0r0,-150","w":105},"\u00ee":{"d":"53,-271r65,46r-11,28r-54,-27r-54,27r-11,-28xm17,-150r72,-39r0,189r-72,0r0,-150","w":105},"\u00ef":{"d":"89,-198v-14,0,-26,-14,-26,-28v0,-15,12,-29,27,-29v15,0,26,15,26,29v0,14,-13,28,-27,28xm16,-198v-14,0,-26,-14,-26,-28v0,-14,11,-29,26,-29v15,0,27,14,27,29v0,14,-13,28,-27,28xm17,-150r72,-39r0,189r-72,0r0,-150","w":105},"\u00f1":{"d":"57,-238v35,-18,79,15,111,-5r0,37v-38,16,-79,-17,-111,5r0,-37xm84,-162v16,-27,76,-33,102,-11v36,30,17,112,22,173r-72,0v-3,-40,8,-94,-7,-122v-17,-11,-40,1,-40,26r0,96r-71,0r-1,-151r67,-39r0,28","w":224},"\u00f3":{"d":"132,-272r38,22r-54,53r-28,-16xm141,-106v-12,-34,-67,-21,-62,16v-4,32,34,49,55,28v10,-9,13,-27,7,-44xm73,0v-91,-33,-70,-188,38,-188v102,0,134,143,48,185v-24,12,-60,13,-86,3","w":222},"\u00f2":{"d":"105,-273r44,58r-29,17r-53,-53xm141,-106v-12,-34,-67,-21,-62,16v-4,32,34,49,55,28v10,-9,13,-27,7,-44xm73,0v-91,-33,-70,-188,38,-188v102,0,134,143,48,185v-24,12,-60,13,-86,3","w":222},"\u00f4":{"d":"112,-271r64,46r-11,28r-53,-27r-54,27r-12,-28xm141,-106v-12,-34,-67,-21,-62,16v-4,32,34,49,55,28v10,-9,13,-27,7,-44xm73,0v-91,-33,-70,-188,38,-188v102,0,134,143,48,185v-24,12,-60,13,-86,3","w":222},"\u00f6":{"d":"151,-199v-14,-1,-26,-12,-26,-27v-1,-15,12,-30,27,-30v14,0,26,15,26,29v0,14,-12,29,-27,28xm78,-199v-34,0,-36,-57,0,-57v39,0,32,57,0,57xm141,-106v-12,-34,-67,-21,-62,16v-4,32,34,49,55,28v10,-9,13,-27,7,-44xm73,0v-91,-33,-70,-188,38,-188v102,0,134,143,48,185v-24,12,-60,13,-86,3","w":222},"\u00f5":{"d":"56,-238v35,-18,78,15,111,-5r0,37v-38,16,-79,-17,-111,5r0,-37xm141,-106v-12,-34,-67,-21,-62,16v-4,32,34,49,55,28v10,-9,13,-27,7,-44xm73,0v-91,-33,-70,-188,38,-188v102,0,134,143,48,185v-24,12,-60,13,-86,3","w":222},"\u00fa":{"d":"132,-272r38,22r-54,53r-28,-16xm107,-54v17,3,28,-8,28,-26r0,-101r71,0v2,99,16,203,-112,186v-46,-5,-76,-25,-77,-71r0,-115r71,0r0,101v1,16,5,23,19,26","w":222},"\u00f9":{"d":"105,-273r44,58r-29,17r-53,-53xm107,-54v17,3,28,-8,28,-26r0,-101r71,0v2,99,16,203,-112,186v-46,-5,-76,-25,-77,-71r0,-115r71,0r0,101v1,16,5,23,19,26","w":222},"\u00fb":{"d":"112,-271r64,46r-11,28r-53,-27r-54,27r-12,-28xm107,-54v17,3,28,-8,28,-26r0,-101r71,0v2,99,16,203,-112,186v-46,-5,-76,-25,-77,-71r0,-115r71,0r0,101v1,16,5,23,19,26","w":222},"\u00fc":{"d":"148,-199v-15,0,-26,-13,-26,-27v0,-15,12,-29,27,-29v15,0,26,15,26,29v0,15,-12,27,-27,27xm75,-198v-14,0,-26,-14,-26,-28v0,-14,11,-29,26,-29v15,0,27,14,27,28v0,15,-12,29,-27,29xm107,-54v20,2,27,-8,28,-26r0,-101r71,0v2,98,16,203,-111,186v-46,-5,-77,-25,-78,-71r0,-115r72,0r0,101v0,16,4,25,18,26","w":223},"\u2020":{"d":"8,-196r80,1r0,-80r61,0r0,80r80,-1r0,60r-79,-1r0,211r-63,0r0,-211r-79,1r0,-60","w":236},"\u00b0":{"d":"62,-246v-21,0,-34,14,-34,34v0,20,14,32,34,33v18,1,34,-16,34,-34v0,-18,-15,-34,-34,-33xm62,-161v-31,0,-52,-22,-52,-51v0,-30,21,-52,52,-52v31,0,52,20,52,52v0,31,-21,51,-52,51","w":124},"\u00a2":{"d":"12,-90v0,-53,33,-87,79,-96r0,-21r42,0r0,21v14,2,27,7,40,14r-17,53v-36,-35,-96,14,-60,55v14,14,43,14,60,2r16,49v-12,8,-25,12,-40,17r0,22r-42,0r0,-21v-45,-9,-78,-42,-78,-95","w":178},"\u00a3":{"d":"118,-108v4,28,-5,48,-27,55v41,3,85,4,111,-13r-12,61v-51,17,-127,14,-178,-2r12,-55v29,17,47,-21,28,-46r-34,0r0,-33r19,0v-38,-65,15,-147,99,-119v15,5,33,11,46,19r-17,52v-20,-27,-91,-29,-71,19v5,10,9,21,15,29r59,0r0,33r-50,0","w":207},"\u00a7":{"d":"161,-55v19,-9,10,-39,-8,-43r-64,-27v-23,10,-7,49,16,49xm126,-217v-31,-1,-36,35,-9,41v51,24,143,36,115,117v-4,12,-17,22,-28,31v44,61,-21,126,-102,109v-47,-9,-88,-28,-84,-86r62,3v-10,36,61,56,70,20v3,-11,-7,-21,-19,-23v-48,-25,-132,-24,-119,-102v3,-18,19,-36,35,-45v-31,-29,-10,-90,24,-101v69,-22,160,-1,159,74r-62,-3v-3,-23,-16,-34,-42,-35","w":248},"\u2022":{"d":"62,-78v-31,0,-52,-22,-52,-52v0,-29,21,-51,52,-51v31,0,52,20,52,51v0,32,-21,52,-52,52","w":124},"\u00b6":{"d":"162,-210r31,0r0,210r-31,0r0,-210xm10,-180v0,-47,31,-79,79,-79r124,0r0,28v-69,5,-175,-24,-174,51v1,38,28,54,71,50r0,-80r31,0r0,210r-31,0r0,-101v-63,5,-100,-26,-100,-79","w":223},"\u00df":{"d":"99,-163v31,5,55,-26,31,-46v-22,-10,-41,1,-41,32r0,177r-72,0r0,-188v-9,-85,139,-98,176,-40v23,37,-8,77,-39,84v67,-1,90,99,33,132v-21,12,-55,21,-85,13r5,-44v34,9,59,-30,39,-56v-9,-10,-27,-17,-47,-13r0,-51","w":232},"\u00a9":{"d":"212,-66v-54,40,-142,4,-128,-78v9,-55,82,-86,128,-47r-15,23v-43,-33,-107,16,-74,69v13,21,54,30,74,9xm155,-241v-65,0,-109,45,-109,111v0,66,44,112,109,112v66,0,110,-48,110,-112v0,-64,-44,-111,-110,-111xm155,5v-80,0,-134,-55,-134,-135v0,-79,53,-134,134,-134v81,0,134,53,134,134v0,82,-55,135,-134,135","w":310},"\u2122":{"d":"107,-259r27,0v9,33,27,57,30,95v3,-37,20,-64,30,-95r27,0r21,129r-26,0v-3,-32,-12,-63,-11,-95v-9,33,-22,64,-33,95r-16,0r-33,-95v3,36,-7,63,-11,95r-26,0xm10,-259r80,0r0,24r-26,0r0,105r-27,0r0,-105r-27,0r0,-24","w":252},"\u00b4":{"d":"59,-272r37,22r-53,53r-28,-16","w":76},"\u00a8":{"d":"99,-198v-14,0,-26,-14,-26,-28v0,-14,11,-29,26,-29v15,0,27,14,27,29v0,14,-13,28,-27,28xm26,-198v-35,0,-34,-57,0,-57v15,0,26,15,26,29v0,14,-12,28,-26,28","w":124},"\u00c6":{"d":"168,-102r0,-94r-45,94r45,0xm139,-259r208,0r-15,59r-87,0r0,40r79,0r0,58r-79,0r0,41r103,0r-17,61r-163,0r0,-48r-69,0r-22,48r-85,0","w":352},"\u00d8":{"d":"194,-180v-53,-44,-136,26,-92,89xm115,-78v53,43,133,-25,91,-89xm156,-265v37,0,69,16,93,35r33,-31r12,12r-33,32v19,21,33,51,33,85v0,86,-55,137,-141,137v-38,0,-70,-13,-93,-32r-34,34r-13,-13r34,-34v-20,-22,-35,-51,-35,-90v0,-86,57,-135,144,-135","w":305},"\u00a5":{"d":"135,-163v3,-42,27,-64,40,-96r84,0r-57,97r47,0r0,35r-68,0v-4,8,-11,13,-9,27r78,0r0,36r-78,0r0,64r-76,0r0,-64r-77,0r0,-36r77,0v2,-13,-4,-19,-8,-26r-69,0r0,-36r48,0r-58,-97r85,0v14,32,36,56,41,96","w":268},"\u00aa":{"d":"89,-229v-34,-8,-49,33,-32,56v19,25,65,6,57,-29v-3,-13,-12,-25,-25,-27xm12,-210v-1,-44,76,-75,102,-30r0,-19r38,0r0,127r-39,0r0,-20v-12,35,-81,24,-93,-5v-6,-14,-13,-32,-8,-53xm152,-115r0,35r-138,0r0,-35r138,0","w":162},"\u00ba":{"d":"114,-196v2,-40,-60,-45,-65,-6v-3,23,12,40,32,40v18,0,32,-15,33,-34xm81,-127v-67,4,-93,-86,-45,-122v43,-33,120,-6,116,53v-3,43,-28,66,-71,69xm13,-115r137,0r0,35r-137,0r0,-35","w":162},"\u00e6":{"d":"274,-123v-25,-33,-82,-1,-68,34xm108,-130v-29,5,-30,68,1,75v40,9,42,-49,27,-69v-6,-8,-16,-8,-28,-6xm140,-181r49,0r0,12v24,-27,83,-24,111,2v15,14,30,31,38,52r-113,57v9,18,42,15,50,-4r45,27v-20,38,-93,57,-131,24r0,11r-50,0r0,-13v-18,19,-71,25,-93,3v-39,-25,-44,-115,-9,-152v24,-25,76,-33,103,-7r0,-12","w":339},"\u00f8":{"d":"133,-120v-29,-24,-68,12,-49,48xm92,-60v28,25,69,-14,48,-48xm200,-183r10,10r-21,21v30,27,31,94,1,124v-25,39,-108,49,-143,11r-21,21r-10,-11r21,-19v-30,-28,-34,-95,-2,-126v26,-38,108,-50,144,-10","w":224},"\u00bf":{"d":"76,-78v-3,45,57,27,74,8r18,52v-71,59,-212,-9,-139,-96v14,-17,37,-25,35,-58r56,0v5,48,-31,62,-44,94xm93,-188v-23,0,-39,-15,-39,-38v0,-24,16,-39,39,-39v22,0,38,16,38,39v0,23,-15,38,-38,38","w":165},"\u00a1":{"d":"28,-172r55,0r12,172r-77,0xm56,-187v-21,0,-38,-17,-38,-38v1,-23,16,-39,39,-39v22,0,37,16,37,39v0,23,-17,37,-38,38","w":112},"\u00ac":{"d":"10,-181r208,0r0,103r-39,0r0,-52r-169,0r0,-51","w":228},"\u0192":{"d":"130,-4v-4,57,-65,78,-121,58r21,-53v10,9,31,3,30,-13r14,-114r-32,0r21,-55r18,0v2,-64,52,-95,123,-74r-21,54v-14,-11,-34,0,-31,20r37,0r-22,55r-22,0","w":213},"\u00ab":{"d":"175,-179r32,32r-55,57r55,57r-32,32r-86,-89xm95,-179r32,32r-56,57r56,57r-33,32r-86,-89","w":215},"\u00bb":{"d":"121,-179r85,89r-86,89r-31,-32r54,-57r-54,-57xm40,-179r86,89r-86,89r-32,-32r55,-57r-55,-57","w":214},"\u2026":{"d":"259,5v-23,0,-39,-16,-39,-39v0,-23,16,-39,39,-39v24,0,39,16,39,39v0,24,-15,39,-39,39xm156,5v-24,0,-39,-16,-39,-39v0,-23,15,-39,39,-39v24,0,38,16,38,39v0,23,-14,39,-38,39xm52,5v-24,0,-39,-15,-39,-39v0,-23,16,-39,39,-39v24,0,39,16,39,39v0,23,-15,39,-39,39","w":311},"\u00c0":{"d":"118,-350r44,58r-29,16r-53,-52xm149,-102r-24,-103v-6,37,-17,68,-25,103r49,0xm84,-259r81,0r91,259r-84,0r-13,-48r-69,0r-14,48r-84,0","w":248},"\u00c3":{"d":"69,-316v34,-18,78,16,111,-5r0,37v-36,16,-78,-16,-111,5r0,-37xm149,-102r-24,-103v-6,37,-17,68,-25,103r49,0xm84,-259r81,0r91,259r-84,0r-13,-48r-69,0r-14,48r-84,0","w":248},"\u00d5":{"d":"98,-316v33,-18,78,16,110,-5r0,37v-36,16,-78,-16,-110,5r0,-37xm212,-154v-20,-61,-123,-49,-123,24v0,60,74,87,110,45v15,-17,22,-41,13,-69xm153,5v-85,0,-141,-50,-141,-135v0,-85,56,-134,141,-134v85,0,140,50,140,134v0,85,-55,135,-140,135","w":305},"\u0152":{"d":"90,-139v-14,58,61,98,88,59r0,-95v0,-30,-53,-17,-68,-4v-11,10,-16,22,-20,40xm358,-259r-16,60r-86,0r0,40r79,0r0,57r-79,0r0,41r103,0r-17,61v-105,-3,-237,26,-295,-37v-35,-38,-45,-122,-10,-169v33,-45,94,-53,175,-53r146,0","w":362},"\u0153":{"d":"275,-123v-22,-32,-83,-1,-68,34xm130,-123v-36,-23,-70,29,-43,60v22,25,65,2,56,-35v-2,-11,-6,-20,-13,-25xm178,-20v-23,29,-83,35,-121,13v-39,-23,-62,-97,-27,-140v22,-43,116,-59,149,-13v28,-34,94,-33,127,-3v12,11,26,29,33,48r-112,57v12,17,43,12,49,-4r47,28v-20,24,-45,43,-87,40v-26,-2,-46,-11,-58,-26","w":341},"\u2013":{"d":"39,-164r176,0r0,49r-176,0r0,-49"},"\u2014":{"d":"8,-133r196,0r0,52r-196,0r0,-52","w":212},"\u201c":{"d":"172,-173v2,37,-53,51,-69,22v-25,-46,15,-85,42,-113r29,15v-12,12,-22,25,-30,39v16,3,27,19,28,37xm85,-173v2,37,-53,51,-69,22v-25,-46,15,-85,42,-113r29,15v-12,12,-22,25,-30,39v16,3,27,19,28,37","w":181},"\u201d":{"d":"96,-225v-2,-49,73,-49,77,-4v4,46,-25,67,-49,94r-29,-15v12,-12,22,-25,30,-39v-15,-3,-28,-19,-29,-36xm9,-225v-2,-38,54,-52,70,-22v25,46,-15,85,-42,112r-29,-15v12,-11,22,-25,30,-39v-15,-3,-28,-19,-29,-36","w":181},"\u2018":{"d":"85,-173v2,37,-53,51,-69,22v-25,-46,15,-85,42,-113r29,15v-12,12,-22,25,-30,39v16,3,27,19,28,37","w":94},"\u2019":{"d":"9,-225v-2,-38,54,-52,70,-22v25,46,-15,85,-42,112r-29,-15v12,-11,22,-25,30,-39v-15,-3,-28,-19,-29,-36","w":94},"\u00ff":{"d":"142,-198v-14,0,-26,-14,-26,-28v0,-15,12,-29,27,-29v15,0,26,15,26,29v0,14,-13,28,-27,28xm69,-198v-35,0,-34,-57,0,-57v15,0,27,15,27,29v0,14,-13,28,-27,28xm72,-181v11,38,27,70,34,113v7,-42,23,-75,34,-113r79,0r-106,246r-80,0r36,-73r-75,-173r78,0","w":210},"\u0178":{"d":"151,-276v-14,0,-26,-13,-26,-27v0,-15,12,-31,27,-30v35,1,32,57,-1,57xm78,-276v-35,0,-34,-57,0,-57v15,-1,27,15,27,29v0,14,-13,28,-27,28xm115,-163v3,-42,28,-63,41,-96r83,0r-86,147r0,112r-77,0r0,-112r-86,-147r84,0v14,32,36,56,41,96","w":228},"\u2044":{"d":"63,-273r32,0r-56,286r-34,0","w":97},"\u2215":{"d":"63,-273r32,0r-56,286r-34,0","w":97},"\u2039":{"d":"95,-179r32,32r-56,57r56,57r-33,32r-86,-89","w":134},"\u203a":{"d":"40,-179r86,89r-86,89r-32,-32r55,-57r-55,-57","w":133},"\u2021":{"d":"8,-104r80,2r-1,-36r-79,2r0,-61r80,2r0,-80r61,0r0,80r80,-2r0,61r-79,-2r-1,36r80,-2r0,60r-79,-1r0,119r-63,0r0,-119r-79,1r0,-60","w":236},"\u00b7":{"d":"51,-68v-23,0,-38,-15,-38,-38v0,-23,15,-38,38,-38v22,0,39,16,39,38v0,22,-17,38,-39,38","w":102},"\u2219":{"d":"51,-68v-23,0,-38,-15,-38,-38v0,-23,15,-38,38,-38v22,0,39,16,39,38v0,22,-17,38,-39,38","w":102},"\u201a":{"d":"9,-31v-2,-51,72,-48,76,-4v4,47,-25,67,-49,94r-29,-15v12,-12,22,-24,30,-39v-15,-3,-28,-18,-28,-36","w":93},"\u201e":{"d":"96,-31v-2,-51,73,-48,76,-4v3,46,-24,67,-49,94r-29,-15v12,-12,22,-23,30,-39v-15,-3,-28,-18,-28,-36xm9,-31v-2,-51,72,-48,76,-4v4,47,-25,67,-49,94r-29,-15v12,-12,22,-24,30,-39v-15,-3,-28,-18,-28,-36","w":180},"\u2030":{"d":"328,-97v-33,2,-29,70,0,70v32,-3,30,-69,0,-70xm328,2v-36,0,-60,-27,-60,-64v0,-36,22,-64,60,-64v37,0,60,28,60,64v0,36,-24,64,-60,64xm192,-97v-33,3,-31,69,0,70v32,-3,30,-69,0,-70xm192,2v-36,0,-60,-26,-60,-64v0,-37,22,-64,60,-64v37,0,59,27,59,64v0,37,-23,64,-59,64xm202,-259r31,0r-173,259r-30,0xm71,-231v-31,4,-31,65,0,69v31,-1,30,-68,0,-69xm71,-132v-39,0,-61,-28,-61,-65v0,-37,23,-64,61,-64v39,0,61,29,61,65v0,36,-23,64,-61,64","w":398},"\u00c2":{"d":"125,-349r64,47r-11,27r-53,-27r-54,27r-12,-27xm149,-102r-24,-103v-6,37,-17,68,-25,103r49,0xm84,-259r81,0r91,259r-84,0r-13,-48r-69,0r-14,48r-84,0","w":248},"\u00ca":{"d":"101,-349r65,47r-11,27r-54,-27r-54,27r-11,-27xm17,-259r180,0r-16,59r-86,0r0,41r79,0r0,57r-79,0r0,43r103,0r-18,59r-163,0r0,-259","w":201},"\u00c1":{"d":"145,-350r38,22r-54,53r-28,-16xm149,-102r-24,-103v-6,37,-17,68,-25,103r49,0xm84,-259r81,0r91,259r-84,0r-13,-48r-69,0r-14,48r-84,0","w":248},"\u00cb":{"d":"137,-276v-34,-1,-33,-57,1,-57v14,0,26,14,26,29v0,15,-13,28,-27,28xm64,-276v-14,0,-26,-14,-26,-28v0,-14,12,-29,26,-29v15,0,27,14,27,29v0,14,-13,28,-27,28xm17,-259r180,0r-16,59r-86,0r0,41r79,0r0,57r-79,0r0,43r103,0r-18,59r-163,0r0,-259","w":201},"\u00c8":{"d":"95,-350r44,58r-29,16r-53,-52xm17,-259r180,0r-16,59r-86,0r0,41r79,0r0,57r-79,0r0,43r103,0r-18,59r-163,0r0,-259","w":201},"\u00cd":{"d":"76,-350r38,22r-53,53r-29,-16xm17,-259r78,0r0,259r-78,0r0,-259","w":111},"\u00ce":{"d":"56,-349r65,47r-11,27r-54,-27r-54,27r-11,-27xm17,-259r78,0r0,259r-78,0r0,-259","w":111},"\u00cf":{"d":"92,-276v-34,-1,-33,-57,1,-57v14,0,26,14,26,29v0,15,-13,28,-27,28xm19,-276v-14,0,-26,-14,-26,-28v0,-14,12,-29,26,-29v15,0,27,14,27,29v0,14,-13,28,-27,28xm17,-259r78,0r0,259r-78,0r0,-259","w":111},"\u00cc":{"d":"50,-350r44,58r-29,16r-53,-52xm17,-259r78,0r0,259r-78,0r0,-259","w":111},"\u00d3":{"d":"173,-350r38,22r-53,53r-29,-16xm212,-154v-20,-61,-123,-49,-123,24v0,60,74,87,110,45v15,-17,22,-41,13,-69xm153,5v-85,0,-141,-50,-141,-135v0,-85,56,-134,141,-134v85,0,140,50,140,134v0,85,-55,135,-140,135","w":305},"\u00d4":{"d":"153,-349r65,47r-11,27r-54,-27r-54,27r-11,-27xm212,-154v-20,-61,-123,-49,-123,24v0,60,74,87,110,45v15,-17,22,-41,13,-69xm153,5v-85,0,-141,-50,-141,-135v0,-85,56,-134,141,-134v85,0,140,50,140,134v0,85,-55,135,-140,135","w":305},"\u00d2":{"d":"147,-350r43,58r-28,16r-53,-52xm212,-154v-20,-61,-123,-49,-123,24v0,60,74,87,110,45v15,-17,22,-41,13,-69xm153,5v-85,0,-141,-50,-141,-135v0,-85,56,-134,141,-134v85,0,140,50,140,134v0,85,-55,135,-140,135","w":305},"\u00da":{"d":"150,-350r38,22r-54,53r-28,-16xm122,-63v26,3,43,-10,42,-37r0,-159r78,0v-2,126,32,282,-132,263v-56,-7,-93,-39,-93,-98r0,-165r78,0r0,159v0,23,7,34,27,37","w":258},"\u00db":{"d":"130,-349r64,47r-11,27r-53,-27r-54,27r-12,-27xm122,-63v26,3,43,-10,42,-37r0,-159r78,0v-2,126,32,282,-132,263v-56,-7,-93,-39,-93,-98r0,-165r78,0r0,159v0,23,7,34,27,37","w":258},"\u00d9":{"d":"123,-350r44,58r-29,16r-53,-52xm122,-63v26,3,43,-10,42,-37r0,-159r78,0v-2,126,32,282,-132,263v-56,-7,-93,-39,-93,-98r0,-165r78,0r0,159v0,23,7,34,27,37","w":258},"\u0131":{"d":"17,-150r72,-39r0,189r-72,0r0,-150","w":105},"\u02c6":{"d":"46,-271r65,46r-11,28r-54,-27r-54,27r-11,-28","w":92},"\u02dc":{"d":"-19,-238v35,-18,79,15,111,-5r0,37v-38,16,-79,-17,-111,5r0,-37","w":73},"\u00af":{"d":"0,-237r88,0r0,34r-88,0r0,-34","w":87},"\u02c9":{"d":"0,-237r88,0r0,34r-88,0r0,-34","w":87},"\u02d8":{"d":"32,-271v4,45,81,47,85,0r22,27v-9,41,-68,62,-105,34v-11,-9,-20,-20,-25,-34","w":148},"\u02da":{"d":"48,-249v-19,0,-19,35,0,35v20,0,21,-35,0,-35xm87,-232v1,46,-78,43,-78,1v0,-22,17,-35,40,-35v19,0,38,12,38,34","w":96},"\u00b8":{"d":"26,11r40,3r-34,56r-33,-2","w":65},"\u02c7":{"d":"-8,-269r54,27r54,-27r11,27r-65,47r-65,-47","w":92},"#":{"d":"114,-99r14,-62r-32,0r-12,62r30,0xm16,-99r42,0r13,-62r-42,0r6,-25r41,0r15,-73r26,0r-15,73r31,0r16,-73r26,0r-16,73r42,0r-6,25r-41,0r-14,62r42,0r-6,26r-41,0r-15,73r-26,0r15,-73r-31,0r-16,73r-26,0r16,-73r-42,0","w":210},"!":{"d":"95,-259r-10,172r-55,0r-12,-172r77,0xm56,5v-22,0,-38,-16,-38,-39v0,-23,16,-38,39,-38v22,0,38,16,38,38v0,23,-16,39,-39,39","w":112},"\"":{"d":"91,-259r52,0r-8,91r-52,0xm18,-259r52,0r-8,91r-52,0","w":153},"\u00a4":{"d":"84,-172v-25,0,-43,17,-43,42v0,25,18,43,43,43v23,0,42,-18,42,-43v0,-24,-19,-42,-42,-42xm30,-94v-14,-18,-13,-55,0,-73v-15,-11,-24,-25,-3,-36r19,20v22,-15,52,-15,74,0v8,-5,15,-25,24,-16v5,4,8,9,11,14r-19,17v16,22,16,53,0,75v11,10,26,23,7,31v-1,1,-2,4,-4,5r-19,-20v-22,16,-51,16,-73,0v-9,6,-20,27,-28,11v-3,-3,-7,-5,-9,-9","w":165}}});

Cufon.replace('.side-bar h1, p.highlight, #global-banner h2', { fontFamily: 'NeoSansRegular' });
Cufon.replace('.item .title', { fontFamily: 'Ornito' });
Cufon.now();

/*
 * jQuery validation plug-in 1.6
 *
 * http://bassistance.de/jquery-plugins/jquery-plugin-validation/
 * http://docs.jquery.com/Plugins/Validation
 *
 * Copyright (c) 2006 - 2008 Jörn Zaefferer
 *
 * $Id: jquery.validate.js 6403 2009-06-17 14:27:16Z joern.zaefferer $
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */
(function($){$.extend($.fn,{validate:function(options){if(!this.length){options&&options.debug&&window.console&&console.warn("nothing selected, can't validate, returning nothing");return;}var validator=$.data(this[0],'validator');if(validator){return validator;}validator=new $.validator(options,this[0]);$.data(this[0],'validator',validator);if(validator.settings.onsubmit){this.find("input, button").filter(".cancel").click(function(){validator.cancelSubmit=true;});if(validator.settings.submitHandler){this.find("input, button").filter(":submit").click(function(){validator.submitButton=this;});}this.submit(function(event){if(validator.settings.debug)event.preventDefault();function handle(){if(validator.settings.submitHandler){if(validator.submitButton){var hidden=$("<input type='hidden'/>").attr("name",validator.submitButton.name).val(validator.submitButton.value).appendTo(validator.currentForm);}validator.settings.submitHandler.call(validator,validator.currentForm);if(validator.submitButton){hidden.remove();}return false;}return true;}if(validator.cancelSubmit){validator.cancelSubmit=false;return handle();}if(validator.form()){if(validator.pendingRequest){validator.formSubmitted=true;return false;}return handle();}else{validator.focusInvalid();return false;}});}return validator;},valid:function(){if($(this[0]).is('form')){return this.validate().form();}else{var valid=true;var validator=$(this[0].form).validate();this.each(function(){valid&=validator.element(this);});return valid;}},removeAttrs:function(attributes){var result={},$element=this;$.each(attributes.split(/\s/),function(index,value){result[value]=$element.attr(value);$element.removeAttr(value);});return result;},rules:function(command,argument){var element=this[0];if(command){var settings=$.data(element.form,'validator').settings;var staticRules=settings.rules;var existingRules=$.validator.staticRules(element);switch(command){case"add":$.extend(existingRules,$.validator.normalizeRule(argument));staticRules[element.name]=existingRules;if(argument.messages)settings.messages[element.name]=$.extend(settings.messages[element.name],argument.messages);break;case"remove":if(!argument){delete staticRules[element.name];return existingRules;}var filtered={};$.each(argument.split(/\s/),function(index,method){filtered[method]=existingRules[method];delete existingRules[method];});return filtered;}}var data=$.validator.normalizeRules($.extend({},$.validator.metadataRules(element),$.validator.classRules(element),$.validator.attributeRules(element),$.validator.staticRules(element)),element);if(data.required){var param=data.required;delete data.required;data=$.extend({required:param},data);}return data;}});$.extend($.expr[":"],{blank:function(a){return!$.trim(""+a.value);},filled:function(a){return!!$.trim(""+a.value);},unchecked:function(a){return!a.checked;}});$.validator=function(options,form){this.settings=$.extend({},$.validator.defaults,options);this.currentForm=form;this.init();};$.validator.format=function(source,params){if(arguments.length==1)return function(){var args=$.makeArray(arguments);args.unshift(source);return $.validator.format.apply(this,args);};if(arguments.length>2&&params.constructor!=Array){params=$.makeArray(arguments).slice(1);}if(params.constructor!=Array){params=[params];}$.each(params,function(i,n){source=source.replace(new RegExp("\\{"+i+"\\}","g"),n);});return source;};$.extend($.validator,{defaults:{messages:{},groups:{},rules:{},errorClass:"error",validClass:"valid",errorElement:"label",focusInvalid:true,errorContainer:$([]),errorLabelContainer:$([]),onsubmit:true,ignore:[],ignoreTitle:false,onfocusin:function(element){this.lastActive=element;if(this.settings.focusCleanup&&!this.blockFocusCleanup){this.settings.unhighlight&&this.settings.unhighlight.call(this,element,this.settings.errorClass,this.settings.validClass);this.errorsFor(element).hide();}},onfocusout:function(element){if(!this.checkable(element)&&(element.name in this.submitted||!this.optional(element))){this.element(element);}},onkeyup:function(element){if(element.name in this.submitted||element==this.lastElement){this.element(element);}},onclick:function(element){if(element.name in this.submitted)this.element(element);else if(element.parentNode.name in this.submitted)this.element(element.parentNode)},highlight:function(element,errorClass,validClass){$(element).addClass(errorClass).removeClass(validClass);},unhighlight:function(element,errorClass,validClass){$(element).removeClass(errorClass).addClass(validClass);}},setDefaults:function(settings){$.extend($.validator.defaults,settings);},messages:{required:"This field is required.",remote:"Please fix this field.",email:"Please enter a valid email address.",url:"Please enter a valid URL.",date:"Please enter a valid date.",dateISO:"Please enter a valid date (ISO).",number:"Please enter a valid number.",digits:"Please enter only digits.",creditcard:"Please enter a valid credit card number.",equalTo:"Please enter the same value again.",accept:"Please enter a value with a valid extension.",maxlength:$.validator.format("Please enter no more than {0} characters."),minlength:$.validator.format("Please enter at least {0} characters."),rangelength:$.validator.format("Please enter a value between {0} and {1} characters long."),range:$.validator.format("Please enter a value between {0} and {1}."),max:$.validator.format("Please enter a value less than or equal to {0}."),min:$.validator.format("Please enter a value greater than or equal to {0}.")},autoCreateRanges:false,prototype:{init:function(){this.labelContainer=$(this.settings.errorLabelContainer);this.errorContext=this.labelContainer.length&&this.labelContainer||$(this.currentForm);this.containers=$(this.settings.errorContainer).add(this.settings.errorLabelContainer);this.submitted={};this.valueCache={};this.pendingRequest=0;this.pending={};this.invalid={};this.reset();var groups=(this.groups={});$.each(this.settings.groups,function(key,value){$.each(value.split(/\s/),function(index,name){groups[name]=key;});});var rules=this.settings.rules;$.each(rules,function(key,value){rules[key]=$.validator.normalizeRule(value);});function delegate(event){var validator=$.data(this[0].form,"validator");validator.settings["on"+event.type]&&validator.settings["on"+event.type].call(validator,this[0]);}$(this.currentForm).delegate("focusin focusout keyup",":text, :password, :file, select, textarea",delegate).delegate("click",":radio, :checkbox, select, option",delegate);if(this.settings.invalidHandler)$(this.currentForm).bind("invalid-form.validate",this.settings.invalidHandler);},form:function(){this.checkForm();$.extend(this.submitted,this.errorMap);this.invalid=$.extend({},this.errorMap);if(!this.valid())$(this.currentForm).triggerHandler("invalid-form",[this]);this.showErrors();return this.valid();},checkForm:function(){this.prepareForm();for(var i=0,elements=(this.currentElements=this.elements());elements[i];i++){this.check(elements[i]);}return this.valid();},element:function(element){element=this.clean(element);this.lastElement=element;this.prepareElement(element);this.currentElements=$(element);var result=this.check(element);if(result){delete this.invalid[element.name];}else{this.invalid[element.name]=true;}if(!this.numberOfInvalids()){this.toHide=this.toHide.add(this.containers);}this.showErrors();return result;},showErrors:function(errors){if(errors){$.extend(this.errorMap,errors);this.errorList=[];for(var name in errors){this.errorList.push({message:errors[name],element:this.findByName(name)[0]});}this.successList=$.grep(this.successList,function(element){return!(element.name in errors);});}this.settings.showErrors?this.settings.showErrors.call(this,this.errorMap,this.errorList):this.defaultShowErrors();},resetForm:function(){if($.fn.resetForm)$(this.currentForm).resetForm();this.submitted={};this.prepareForm();this.hideErrors();this.elements().removeClass(this.settings.errorClass);},numberOfInvalids:function(){return this.objectLength(this.invalid);},objectLength:function(obj){var count=0;for(var i in obj)count++;return count;},hideErrors:function(){this.addWrapper(this.toHide).hide();},valid:function(){return this.size()==0;},size:function(){return this.errorList.length;},focusInvalid:function(){if(this.settings.focusInvalid){try{$(this.findLastActive()||this.errorList.length&&this.errorList[0].element||[]).filter(":visible").focus();}catch(e){}}},findLastActive:function(){var lastActive=this.lastActive;return lastActive&&$.grep(this.errorList,function(n){return n.element.name==lastActive.name;}).length==1&&lastActive;},elements:function(){var validator=this,rulesCache={};return $([]).add(this.currentForm.elements).filter(":input").not(":submit, :reset, :image, [disabled]").not(this.settings.ignore).filter(function(){!this.name&&validator.settings.debug&&window.console&&console.error("%o has no name assigned",this);if(this.name in rulesCache||!validator.objectLength($(this).rules()))return false;rulesCache[this.name]=true;return true;});},clean:function(selector){return $(selector)[0];},errors:function(){return $(this.settings.errorElement+"."+this.settings.errorClass,this.errorContext);},reset:function(){this.successList=[];this.errorList=[];this.errorMap={};this.toShow=$([]);this.toHide=$([]);this.currentElements=$([]);},prepareForm:function(){this.reset();this.toHide=this.errors().add(this.containers);},prepareElement:function(element){this.reset();this.toHide=this.errorsFor(element);},check:function(element){element=this.clean(element);if(this.checkable(element)){element=this.findByName(element.name)[0];}var rules=$(element).rules();var dependencyMismatch=false;for(method in rules){var rule={method:method,parameters:rules[method]};try{var result=$.validator.methods[method].call(this,element.value.replace(/\r/g,""),element,rule.parameters);if(result=="dependency-mismatch"){dependencyMismatch=true;continue;}dependencyMismatch=false;if(result=="pending"){this.toHide=this.toHide.not(this.errorsFor(element));return;}if(!result){this.formatAndAdd(element,rule);return false;}}catch(e){this.settings.debug&&window.console&&console.log("exception occured when checking element "+element.id
+", check the '"+rule.method+"' method",e);throw e;}}if(dependencyMismatch)return;if(this.objectLength(rules))this.successList.push(element);return true;},customMetaMessage:function(element,method){if(!$.metadata)return;var meta=this.settings.meta?$(element).metadata()[this.settings.meta]:$(element).metadata();return meta&&meta.messages&&meta.messages[method];},customMessage:function(name,method){var m=this.settings.messages[name];return m&&(m.constructor==String?m:m[method]);},findDefined:function(){for(var i=0;i<arguments.length;i++){if(arguments[i]!==undefined)return arguments[i];}return undefined;},defaultMessage:function(element,method){return this.findDefined(this.customMessage(element.name,method),this.customMetaMessage(element,method),!this.settings.ignoreTitle&&element.title||undefined,$.validator.messages[method],"<strong>Warning: No message defined for "+element.name+"</strong>");},formatAndAdd:function(element,rule){var message=this.defaultMessage(element,rule.method),theregex=/\$?\{(\d+)\}/g;if(typeof message=="function"){message=message.call(this,rule.parameters,element);}else if(theregex.test(message)){message=jQuery.format(message.replace(theregex,'{$1}'),rule.parameters);}this.errorList.push({message:message,element:element});this.errorMap[element.name]=message;this.submitted[element.name]=message;},addWrapper:function(toToggle){if(this.settings.wrapper)toToggle=toToggle.add(toToggle.parent(this.settings.wrapper));return toToggle;},defaultShowErrors:function(){for(var i=0;this.errorList[i];i++){var error=this.errorList[i];this.settings.highlight&&this.settings.highlight.call(this,error.element,this.settings.errorClass,this.settings.validClass);this.showLabel(error.element,error.message);}if(this.errorList.length){this.toShow=this.toShow.add(this.containers);}if(this.settings.success){for(var i=0;this.successList[i];i++){this.showLabel(this.successList[i]);}}if(this.settings.unhighlight){for(var i=0,elements=this.validElements();elements[i];i++){this.settings.unhighlight.call(this,elements[i],this.settings.errorClass,this.settings.validClass);}}this.toHide=this.toHide.not(this.toShow);this.hideErrors();this.addWrapper(this.toShow).show();},validElements:function(){return this.currentElements.not(this.invalidElements());},invalidElements:function(){return $(this.errorList).map(function(){return this.element;});},showLabel:function(element,message){var label=this.errorsFor(element);if(label.length){label.removeClass().addClass(this.settings.errorClass);label.attr("generated")&&label.html(message);}else{label=$("<"+this.settings.errorElement+"/>").attr({"for":this.idOrName(element),generated:true}).addClass(this.settings.errorClass).html(message||"");if(this.settings.wrapper){label=label.hide().show().wrap("<"+this.settings.wrapper+"/>").parent();}if(!this.labelContainer.append(label).length)this.settings.errorPlacement?this.settings.errorPlacement(label,$(element)):label.insertAfter(element);}if(!message&&this.settings.success){label.text("");typeof this.settings.success=="string"?label.addClass(this.settings.success):this.settings.success(label);}this.toShow=this.toShow.add(label);},errorsFor:function(element){var name=this.idOrName(element);return this.errors().filter(function(){return $(this).attr('for')==name});},idOrName:function(element){return this.groups[element.name]||(this.checkable(element)?element.name:element.id||element.name);},checkable:function(element){return/radio|checkbox/i.test(element.type);},findByName:function(name){var form=this.currentForm;return $(document.getElementsByName(name)).map(function(index,element){return element.form==form&&element.name==name&&element||null;});},getLength:function(value,element){switch(element.nodeName.toLowerCase()){case'select':return $("option:selected",element).length;case'input':if(this.checkable(element))return this.findByName(element.name).filter(':checked').length;}return value.length;},depend:function(param,element){return this.dependTypes[typeof param]?this.dependTypes[typeof param](param,element):true;},dependTypes:{"boolean":function(param,element){return param;},"string":function(param,element){return!!$(param,element.form).length;},"function":function(param,element){return param(element);}},optional:function(element){return!$.validator.methods.required.call(this,$.trim(element.value),element)&&"dependency-mismatch";},startRequest:function(element){if(!this.pending[element.name]){this.pendingRequest++;this.pending[element.name]=true;}},stopRequest:function(element,valid){this.pendingRequest--;if(this.pendingRequest<0)this.pendingRequest=0;delete this.pending[element.name];if(valid&&this.pendingRequest==0&&this.formSubmitted&&this.form()){$(this.currentForm).submit();this.formSubmitted=false;}else if(!valid&&this.pendingRequest==0&&this.formSubmitted){$(this.currentForm).triggerHandler("invalid-form",[this]);this.formSubmitted=false;}},previousValue:function(element){return $.data(element,"previousValue")||$.data(element,"previousValue",{old:null,valid:true,message:this.defaultMessage(element,"remote")});}},classRuleSettings:{required:{required:true},email:{email:true},url:{url:true},date:{date:true},dateISO:{dateISO:true},dateDE:{dateDE:true},number:{number:true},numberDE:{numberDE:true},digits:{digits:true},creditcard:{creditcard:true}},addClassRules:function(className,rules){className.constructor==String?this.classRuleSettings[className]=rules:$.extend(this.classRuleSettings,className);},classRules:function(element){var rules={};var classes=$(element).attr('class');classes&&$.each(classes.split(' '),function(){if(this in $.validator.classRuleSettings){$.extend(rules,$.validator.classRuleSettings[this]);}});return rules;},attributeRules:function(element){var rules={};var $element=$(element);for(method in $.validator.methods){var value=$element.attr(method);if(value){rules[method]=value;}}if(rules.maxlength&&/-1|2147483647|524288/.test(rules.maxlength)){delete rules.maxlength;}return rules;},metadataRules:function(element){if(!$.metadata)return{};var meta=$.data(element.form,'validator').settings.meta;return meta?$(element).metadata()[meta]:$(element).metadata();},staticRules:function(element){var rules={};var validator=$.data(element.form,'validator');if(validator.settings.rules){rules=$.validator.normalizeRule(validator.settings.rules[element.name])||{};}return rules;},normalizeRules:function(rules,element){$.each(rules,function(prop,val){if(val===false){delete rules[prop];return;}if(val.param||val.depends){var keepRule=true;switch(typeof val.depends){case"string":keepRule=!!$(val.depends,element.form).length;break;case"function":keepRule=val.depends.call(element,element);break;}if(keepRule){rules[prop]=val.param!==undefined?val.param:true;}else{delete rules[prop];}}});$.each(rules,function(rule,parameter){rules[rule]=$.isFunction(parameter)?parameter(element):parameter;});$.each(['minlength','maxlength','min','max'],function(){if(rules[this]){rules[this]=Number(rules[this]);}});$.each(['rangelength','range'],function(){if(rules[this]){rules[this]=[Number(rules[this][0]),Number(rules[this][1])];}});if($.validator.autoCreateRanges){if(rules.min&&rules.max){rules.range=[rules.min,rules.max];delete rules.min;delete rules.max;}if(rules.minlength&&rules.maxlength){rules.rangelength=[rules.minlength,rules.maxlength];delete rules.minlength;delete rules.maxlength;}}if(rules.messages){delete rules.messages}return rules;},normalizeRule:function(data){if(typeof data=="string"){var transformed={};$.each(data.split(/\s/),function(){transformed[this]=true;});data=transformed;}return data;},addMethod:function(name,method,message){$.validator.methods[name]=method;$.validator.messages[name]=message!=undefined?message:$.validator.messages[name];if(method.length<3){$.validator.addClassRules(name,$.validator.normalizeRule(name));}},methods:{required:function(value,element,param){if(!this.depend(param,element))return"dependency-mismatch";switch(element.nodeName.toLowerCase()){case'select':var val=$(element).val();return val&&val.length>0;case'input':if(this.checkable(element))return this.getLength(value,element)>0;default:return $.trim(value).length>0;}},remote:function(value,element,param){if(this.optional(element))return"dependency-mismatch";var previous=this.previousValue(element);if(!this.settings.messages[element.name])this.settings.messages[element.name]={};previous.originalMessage=this.settings.messages[element.name].remote;this.settings.messages[element.name].remote=previous.message;param=typeof param=="string"&&{url:param}||param;if(previous.old!==value){previous.old=value;var validator=this;this.startRequest(element);var data={};data[element.name]=value;$.ajax($.extend(true,{url:param,mode:"abort",port:"validate"+element.name,dataType:"json",data:data,success:function(response){validator.settings.messages[element.name].remote=previous.originalMessage;var valid=response===true;if(valid){var submitted=validator.formSubmitted;validator.prepareElement(element);validator.formSubmitted=submitted;validator.successList.push(element);validator.showErrors();}else{var errors={};var message=(previous.message=response||validator.defaultMessage(element,"remote"));errors[element.name]=$.isFunction(message)?message(value):message;validator.showErrors(errors);}previous.valid=valid;validator.stopRequest(element,valid);}},param));return"pending";}else if(this.pending[element.name]){return"pending";}return previous.valid;},minlength:function(value,element,param){return this.optional(element)||this.getLength($.trim(value),element)>=param;},maxlength:function(value,element,param){return this.optional(element)||this.getLength($.trim(value),element)<=param;},rangelength:function(value,element,param){var length=this.getLength($.trim(value),element);return this.optional(element)||(length>=param[0]&&length<=param[1]);},min:function(value,element,param){return this.optional(element)||value>=param;},max:function(value,element,param){return this.optional(element)||value<=param;},range:function(value,element,param){return this.optional(element)||(value>=param[0]&&value<=param[1]);},email:function(value,element){return this.optional(element)||/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i.test(value);},url:function(value,element){return this.optional(element)||/^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(value);},date:function(value,element){return this.optional(element)||!/Invalid|NaN/.test(new Date(value));},dateISO:function(value,element){return this.optional(element)||/^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(value);},number:function(value,element){return this.optional(element)||/^-?(?:\d+|\d{1,3}(?:,\d{3})+)(?:\.\d+)?$/.test(value);},digits:function(value,element){return this.optional(element)||/^\d+$/.test(value);},creditcard:function(value,element){if(this.optional(element))return"dependency-mismatch";if(/[^0-9-]+/.test(value))return false;var nCheck=0,nDigit=0,bEven=false;value=value.replace(/\D/g,"");for(var n=value.length-1;n>=0;n--){var cDigit=value.charAt(n);var nDigit=parseInt(cDigit,10);if(bEven){if((nDigit*=2)>9)nDigit-=9;}nCheck+=nDigit;bEven=!bEven;}return(nCheck%10)==0;},accept:function(value,element,param){param=typeof param=="string"?param.replace(/,/g,'|'):"png|jpe?g|gif";return this.optional(element)||value.match(new RegExp(".("+param+")$","i"));},equalTo:function(value,element,param){var target=$(param).unbind(".validate-equalTo").bind("blur.validate-equalTo",function(){$(element).valid();});return value==target.val();}}});$.format=$.validator.format;})(jQuery);;(function($){var ajax=$.ajax;var pendingRequests={};$.ajax=function(settings){settings=$.extend(settings,$.extend({},$.ajaxSettings,settings));var port=settings.port;if(settings.mode=="abort"){if(pendingRequests[port]){pendingRequests[port].abort();}return(pendingRequests[port]=ajax.apply(this,arguments));}return ajax.apply(this,arguments);};})(jQuery);;(function($){$.each({focus:'focusin',blur:'focusout'},function(original,fix){$.event.special[fix]={setup:function(){if($.browser.msie)return false;this.addEventListener(original,$.event.special[fix].handler,true);},teardown:function(){if($.browser.msie)return false;this.removeEventListener(original,$.event.special[fix].handler,true);},handler:function(e){arguments[0]=$.event.fix(e);arguments[0].type=fix;return $.event.handle.apply(this,arguments);}};});$.extend($.fn,{delegate:function(type,delegate,handler){return this.bind(type,function(event){var target=$(event.target);if(target.is(delegate)){return handler.apply(target,arguments);}});},triggerEvent:function(type,target){return this.triggerHandler(type,[$.event.fix({type:type,target:target})]);}})})(jQuery);

/*!
 * jQuery Form Plugin
 * version: 2.43 (12-MAR-2010)
 * @requires jQuery v1.3.2 or later
 *
 * Examples and documentation at: http://malsup.com/jquery/form/
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */
;(function($) {

/*
	Usage Note:
	-----------
	Do not use both ajaxSubmit and ajaxForm on the same form.  These
	functions are intended to be exclusive.  Use ajaxSubmit if you want
	to bind your own submit handler to the form.  For example,

	$(document).ready(function() {
		$('#myForm').bind('submit', function() {
			$(this).ajaxSubmit({
				target: '#output'
			});
			return false; // <-- important!
		});
	});

	Use ajaxForm when you want the plugin to manage all the event binding
	for you.  For example,

	$(document).ready(function() {
		$('#myForm').ajaxForm({
			target: '#output'
		});
	});

	When using ajaxForm, the ajaxSubmit function will be invoked for you
	at the appropriate time.
*/

/**
 * ajaxSubmit() provides a mechanism for immediately submitting
 * an HTML form using AJAX.
 */
$.fn.ajaxSubmit = function(options) {
	// fast fail if nothing selected (http://dev.jquery.com/ticket/2752)
	if (!this.length) {
		log('ajaxSubmit: skipping submit process - no element selected');
		return this;
	}

	if (typeof options == 'function')
		options = { success: options };

	var url = $.trim(this.attr('action'));
	if (url) {
		// clean url (don't include hash vaue)
		url = (url.match(/^([^#]+)/)||[])[1];
   	}
   	url = url || window.location.href || '';

	options = $.extend({
		url:  url,
		type: this.attr('method') || 'GET',
		iframeSrc: /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank'
	}, options || {});

	// hook for manipulating the form data before it is extracted;
	// convenient for use with rich editors like tinyMCE or FCKEditor
	var veto = {};
	this.trigger('form-pre-serialize', [this, options, veto]);
	if (veto.veto) {
		log('ajaxSubmit: submit vetoed via form-pre-serialize trigger');
		return this;
	}

	// provide opportunity to alter form data before it is serialized
	if (options.beforeSerialize && options.beforeSerialize(this, options) === false) {
		log('ajaxSubmit: submit aborted via beforeSerialize callback');
		return this;
	}

	var a = this.formToArray(options.semantic);
	if (options.data) {
		options.extraData = options.data;
		for (var n in options.data) {
		  if(options.data[n] instanceof Array) {
			for (var k in options.data[n])
			  a.push( { name: n, value: options.data[n][k] } );
		  }
		  else
			 a.push( { name: n, value: options.data[n] } );
		}
	}

	// give pre-submit callback an opportunity to abort the submit
	if (options.beforeSubmit && options.beforeSubmit(a, this, options) === false) {
		log('ajaxSubmit: submit aborted via beforeSubmit callback');
		return this;
	}

	// fire vetoable 'validate' event
	this.trigger('form-submit-validate', [a, this, options, veto]);
	if (veto.veto) {
		log('ajaxSubmit: submit vetoed via form-submit-validate trigger');
		return this;
	}

	var q = $.param(a);

	if (options.type.toUpperCase() == 'GET') {
		options.url += (options.url.indexOf('?') >= 0 ? '&' : '?') + q;
		options.data = null;  // data is null for 'get'
	}
	else
		options.data = q; // data is the query string for 'post'

	var $form = this, callbacks = [];
	if (options.resetForm) callbacks.push(function() { $form.resetForm(); });
	if (options.clearForm) callbacks.push(function() { $form.clearForm(); });

	// perform a load on the target only if dataType is not provided
	if (!options.dataType && options.target) {
		var oldSuccess = options.success || function(){};
		callbacks.push(function(data) {
			var fn = options.replaceTarget ? 'replaceWith' : 'html';
			$(options.target)[fn](data).each(oldSuccess, arguments);
		});
	}
	else if (options.success)
		callbacks.push(options.success);

	options.success = function(data, status, xhr) { // jQuery 1.4+ passes xhr as 3rd arg
		for (var i=0, max=callbacks.length; i < max; i++)
			callbacks[i].apply(options, [data, status, xhr || $form, $form]);
	};

	// are there files to upload?
	var files = $('input:file', this).fieldValue();
	var found = false;
	for (var j=0; j < files.length; j++)
		if (files[j])
			found = true;

	var multipart = false;
//	var mp = 'multipart/form-data';
//	multipart = ($form.attr('enctype') == mp || $form.attr('encoding') == mp);

	// options.iframe allows user to force iframe mode
	// 06-NOV-09: now defaulting to iframe mode if file input is detected
   if ((files.length && options.iframe !== false) || options.iframe || found || multipart) {
	   // hack to fix Safari hang (thanks to Tim Molendijk for this)
	   // see:  http://groups.google.com/group/jquery-dev/browse_thread/thread/36395b7ab510dd5d
	   if (options.closeKeepAlive)
		   $.get(options.closeKeepAlive, fileUpload);
	   else
		   fileUpload();
	   }
   else
	   $.ajax(options);

	// fire 'notify' event
	this.trigger('form-submit-notify', [this, options]);
	return this;


	// private function for handling file uploads (hat tip to YAHOO!)
	function fileUpload() {
		var form = $form[0];

		if ($(':input[name=submit]', form).length) {
			alert('Error: Form elements must not be named "submit".');
			return;
		}

		var opts = $.extend({}, $.ajaxSettings, options);
		var s = $.extend(true, {}, $.extend(true, {}, $.ajaxSettings), opts);

		var id = 'jqFormIO' + (new Date().getTime());
		var $io = $('<iframe id="' + id + '" name="' + id + '" src="'+ opts.iframeSrc +'" onload="(jQuery(this).data(\'form-plugin-onload\'))()" />');
		var io = $io[0];

		$io.css({ position: 'absolute', top: '-1000px', left: '-1000px' });

		var xhr = { // mock object
			aborted: 0,
			responseText: null,
			responseXML: null,
			status: 0,
			statusText: 'n/a',
			getAllResponseHeaders: function() {},
			getResponseHeader: function() {},
			setRequestHeader: function() {},
			abort: function() {
				this.aborted = 1;
				$io.attr('src', opts.iframeSrc); // abort op in progress
			}
		};

		var g = opts.global;
		// trigger ajax global events so that activity/block indicators work like normal
		if (g && ! $.active++) $.event.trigger("ajaxStart");
		if (g) $.event.trigger("ajaxSend", [xhr, opts]);

		if (s.beforeSend && s.beforeSend(xhr, s) === false) {
			s.global && $.active--;
			return;
		}
		if (xhr.aborted)
			return;

		var cbInvoked = false;
		var timedOut = 0;

		// add submitting element to data if we know it
		var sub = form.clk;
		if (sub) {
			var n = sub.name;
			if (n && !sub.disabled) {
				opts.extraData = opts.extraData || {};
				opts.extraData[n] = sub.value;
				if (sub.type == "image") {
					opts.extraData[n+'.x'] = form.clk_x;
					opts.extraData[n+'.y'] = form.clk_y;
				}
			}
		}

		// take a breath so that pending repaints get some cpu time before the upload starts
		function doSubmit() {
			// make sure form attrs are set
			var t = $form.attr('target'), a = $form.attr('action');

			// update form attrs in IE friendly way
			form.setAttribute('target',id);
			if (form.getAttribute('method') != 'POST')
				form.setAttribute('method', 'POST');
			if (form.getAttribute('action') != opts.url)
				form.setAttribute('action', opts.url);

			// ie borks in some cases when setting encoding
			if (! opts.skipEncodingOverride) {
				$form.attr({
					encoding: 'multipart/form-data',
					enctype:  'multipart/form-data'
				});
			}

			// support timout
			if (opts.timeout)
				setTimeout(function() { timedOut = true; cb(); }, opts.timeout);

			// add "extra" data to form if provided in options
			var extraInputs = [];
			try {
				if (opts.extraData)
					for (var n in opts.extraData)
						extraInputs.push(
							$('<input type="hidden" name="'+n+'" value="'+opts.extraData[n]+'" />')
								.appendTo(form)[0]);

				// add iframe to doc and submit the form
				$io.appendTo('body');
				$io.data('form-plugin-onload', cb);
				form.submit();
			}
			finally {
				// reset attrs and remove "extra" input elements
				form.setAttribute('action',a);
				t ? form.setAttribute('target', t) : $form.removeAttr('target');
				$(extraInputs).remove();
			}
		};

		if (opts.forceSync)
			doSubmit();
		else
			setTimeout(doSubmit, 10); // this lets dom updates render
	
		var domCheckCount = 100;

		function cb() {
			if (cbInvoked) 
				return;

			var ok = true;
			try {
				if (timedOut) throw 'timeout';
				// extract the server response from the iframe
				var data, doc;

				doc = io.contentWindow ? io.contentWindow.document : io.contentDocument ? io.contentDocument : io.document;
				
				var isXml = opts.dataType == 'xml' || doc.XMLDocument || $.isXMLDoc(doc);
				log('isXml='+isXml);
				if (!isXml && (doc.body == null || doc.body.innerHTML == '')) {
				 	if (--domCheckCount) {
						// in some browsers (Opera) the iframe DOM is not always traversable when
						// the onload callback fires, so we loop a bit to accommodate
				 		log('requeing onLoad callback, DOM not available');
						setTimeout(cb, 250);
						return;
					}
					log('Could not access iframe DOM after 100 tries.');
					return;
				}

				log('response detected');
				cbInvoked = true;
				xhr.responseText = doc.body ? doc.body.innerHTML : null;
				xhr.responseXML = doc.XMLDocument ? doc.XMLDocument : doc;
				xhr.getResponseHeader = function(header){
					var headers = {'content-type': opts.dataType};
					return headers[header];
				};

				if (opts.dataType == 'json' || opts.dataType == 'script') {
					// see if user embedded response in textarea
					var ta = doc.getElementsByTagName('textarea')[0];
					if (ta)
						xhr.responseText = ta.value;
					else {
						// account for browsers injecting pre around json response
						var pre = doc.getElementsByTagName('pre')[0];
						if (pre)
							xhr.responseText = pre.innerHTML;
					}			  
				}
				else if (opts.dataType == 'xml' && !xhr.responseXML && xhr.responseText != null) {
					xhr.responseXML = toXml(xhr.responseText);
				}
				data = $.httpData(xhr, opts.dataType);
			}
			catch(e){
				log('error caught:',e);
				ok = false;
				xhr.error = e;
				$.handleError(opts, xhr, 'error', e);
			}

			// ordering of these callbacks/triggers is odd, but that's how $.ajax does it
			if (ok) {
				opts.success(data, 'success');
				if (g) $.event.trigger("ajaxSuccess", [xhr, opts]);
			}
			if (g) $.event.trigger("ajaxComplete", [xhr, opts]);
			if (g && ! --$.active) $.event.trigger("ajaxStop");
			if (opts.complete) opts.complete(xhr, ok ? 'success' : 'error');

			// clean up
			setTimeout(function() {
				$io.removeData('form-plugin-onload');
				$io.remove();
				xhr.responseXML = null;
			}, 100);
		};

		function toXml(s, doc) {
			if (window.ActiveXObject) {
				doc = new ActiveXObject('Microsoft.XMLDOM');
				doc.async = 'false';
				doc.loadXML(s);
			}
			else
				doc = (new DOMParser()).parseFromString(s, 'text/xml');
			return (doc && doc.documentElement && doc.documentElement.tagName != 'parsererror') ? doc : null;
		};
	};
};

/**
 * ajaxForm() provides a mechanism for fully automating form submission.
 *
 * The advantages of using this method instead of ajaxSubmit() are:
 *
 * 1: This method will include coordinates for <input type="image" /> elements (if the element
 *	is used to submit the form).
 * 2. This method will include the submit element's name/value data (for the element that was
 *	used to submit the form).
 * 3. This method binds the submit() method to the form for you.
 *
 * The options argument for ajaxForm works exactly as it does for ajaxSubmit.  ajaxForm merely
 * passes the options argument along after properly binding events for submit elements and
 * the form itself.
 */
$.fn.ajaxForm = function(options) {
	return this.ajaxFormUnbind().bind('submit.form-plugin', function(e) {
		e.preventDefault();
		$(this).ajaxSubmit(options);
	}).bind('click.form-plugin', function(e) {
		var target = e.target;
		var $el = $(target);
		if (!($el.is(":submit,input:image"))) {
			// is this a child element of the submit el?  (ex: a span within a button)
			var t = $el.closest(':submit');
			if (t.length == 0)
				return;
			target = t[0];
		}
		var form = this;
		form.clk = target;
		if (target.type == 'image') {
			if (e.offsetX != undefined) {
				form.clk_x = e.offsetX;
				form.clk_y = e.offsetY;
			} else if (typeof $.fn.offset == 'function') { // try to use dimensions plugin
				var offset = $el.offset();
				form.clk_x = e.pageX - offset.left;
				form.clk_y = e.pageY - offset.top;
			} else {
				form.clk_x = e.pageX - target.offsetLeft;
				form.clk_y = e.pageY - target.offsetTop;
			}
		}
		// clear form vars
		setTimeout(function() { form.clk = form.clk_x = form.clk_y = null; }, 100);
	});
};

// ajaxFormUnbind unbinds the event handlers that were bound by ajaxForm
$.fn.ajaxFormUnbind = function() {
	return this.unbind('submit.form-plugin click.form-plugin');
};

/**
 * formToArray() gathers form element data into an array of objects that can
 * be passed to any of the following ajax functions: $.get, $.post, or load.
 * Each object in the array has both a 'name' and 'value' property.  An example of
 * an array for a simple login form might be:
 *
 * [ { name: 'username', value: 'jresig' }, { name: 'password', value: 'secret' } ]
 *
 * It is this array that is passed to pre-submit callback functions provided to the
 * ajaxSubmit() and ajaxForm() methods.
 */
$.fn.formToArray = function(semantic) {
	var a = [];
	if (this.length == 0) return a;

	var form = this[0];
	var els = semantic ? form.getElementsByTagName('*') : form.elements;
	if (!els) return a;
	for(var i=0, max=els.length; i < max; i++) {
		var el = els[i];
		var n = el.name;
		if (!n) continue;

		if (semantic && form.clk && el.type == "image") {
			// handle image inputs on the fly when semantic == true
			if(!el.disabled && form.clk == el) {
				a.push({name: n, value: $(el).val()});
				a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
			}
			continue;
		}

		var v = $.fieldValue(el, true);
		if (v && v.constructor == Array) {
			for(var j=0, jmax=v.length; j < jmax; j++)
				a.push({name: n, value: v[j]});
		}
		else if (v !== null && typeof v != 'undefined')
			a.push({name: n, value: v});
	}

	if (!semantic && form.clk) {
		// input type=='image' are not found in elements array! handle it here
		var $input = $(form.clk), input = $input[0], n = input.name;
		if (n && !input.disabled && input.type == 'image') {
			a.push({name: n, value: $input.val()});
			a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
		}
	}
	return a;
};

/**
 * Serializes form data into a 'submittable' string. This method will return a string
 * in the format: name1=value1&amp;name2=value2
 */
$.fn.formSerialize = function(semantic) {
	//hand off to jQuery.param for proper encoding
	return $.param(this.formToArray(semantic));
};

/**
 * Serializes all field elements in the jQuery object into a query string.
 * This method will return a string in the format: name1=value1&amp;name2=value2
 */
$.fn.fieldSerialize = function(successful) {
	var a = [];
	this.each(function() {
		var n = this.name;
		if (!n) return;
		var v = $.fieldValue(this, successful);
		if (v && v.constructor == Array) {
			for (var i=0,max=v.length; i < max; i++)
				a.push({name: n, value: v[i]});
		}
		else if (v !== null && typeof v != 'undefined')
			a.push({name: this.name, value: v});
	});
	//hand off to jQuery.param for proper encoding
	return $.param(a);
};

/**
 * Returns the value(s) of the element in the matched set.  For example, consider the following form:
 *
 *  <form><fieldset>
 *	  <input name="A" type="text" />
 *	  <input name="A" type="text" />
 *	  <input name="B" type="checkbox" value="B1" />
 *	  <input name="B" type="checkbox" value="B2"/>
 *	  <input name="C" type="radio" value="C1" />
 *	  <input name="C" type="radio" value="C2" />
 *  </fieldset></form>
 *
 *  var v = $(':text').fieldValue();
 *  // if no values are entered into the text inputs
 *  v == ['','']
 *  // if values entered into the text inputs are 'foo' and 'bar'
 *  v == ['foo','bar']
 *
 *  var v = $(':checkbox').fieldValue();
 *  // if neither checkbox is checked
 *  v === undefined
 *  // if both checkboxes are checked
 *  v == ['B1', 'B2']
 *
 *  var v = $(':radio').fieldValue();
 *  // if neither radio is checked
 *  v === undefined
 *  // if first radio is checked
 *  v == ['C1']
 *
 * The successful argument controls whether or not the field element must be 'successful'
 * (per http://www.w3.org/TR/html4/interact/forms.html#successful-controls).
 * The default value of the successful argument is true.  If this value is false the value(s)
 * for each element is returned.
 *
 * Note: This method *always* returns an array.  If no valid value can be determined the
 *	   array will be empty, otherwise it will contain one or more values.
 */
$.fn.fieldValue = function(successful) {
	for (var val=[], i=0, max=this.length; i < max; i++) {
		var el = this[i];
		var v = $.fieldValue(el, successful);
		if (v === null || typeof v == 'undefined' || (v.constructor == Array && !v.length))
			continue;
		v.constructor == Array ? $.merge(val, v) : val.push(v);
	}
	return val;
};

/**
 * Returns the value of the field element.
 */
$.fieldValue = function(el, successful) {
	var n = el.name, t = el.type, tag = el.tagName.toLowerCase();
	if (typeof successful == 'undefined') successful = true;

	if (successful && (!n || el.disabled || t == 'reset' || t == 'button' ||
		(t == 'checkbox' || t == 'radio') && !el.checked ||
		(t == 'submit' || t == 'image') && el.form && el.form.clk != el ||
		tag == 'select' && el.selectedIndex == -1))
			return null;

	if (tag == 'select') {
		var index = el.selectedIndex;
		if (index < 0) return null;
		var a = [], ops = el.options;
		var one = (t == 'select-one');
		var max = (one ? index+1 : ops.length);
		for(var i=(one ? index : 0); i < max; i++) {
			var op = ops[i];
			if (op.selected) {
				var v = op.value;
				if (!v) // extra pain for IE...
					v = (op.attributes && op.attributes['value'] && !(op.attributes['value'].specified)) ? op.text : op.value;
				if (one) return v;
				a.push(v);
			}
		}
		return a;
	}
	return el.value;
};

/**
 * Clears the form data.  Takes the following actions on the form's input fields:
 *  - input text fields will have their 'value' property set to the empty string
 *  - select elements will have their 'selectedIndex' property set to -1
 *  - checkbox and radio inputs will have their 'checked' property set to false
 *  - inputs of type submit, button, reset, and hidden will *not* be effected
 *  - button elements will *not* be effected
 */
$.fn.clearForm = function() {
	return this.each(function() {
		$('input,select,textarea', this).clearFields();
	});
};

/**
 * Clears the selected form elements.
 */
$.fn.clearFields = $.fn.clearInputs = function() {
	return this.each(function() {
		var t = this.type, tag = this.tagName.toLowerCase();
		if (t == 'text' || t == 'password' || tag == 'textarea')
			this.value = '';
		else if (t == 'checkbox' || t == 'radio')
			this.checked = false;
		else if (tag == 'select')
			this.selectedIndex = -1;
	});
};

/**
 * Resets the form data.  Causes all form elements to be reset to their original value.
 */
$.fn.resetForm = function() {
	return this.each(function() {
		// guard against an input with the name of 'reset'
		// note that IE reports the reset function as an 'object'
		if (typeof this.reset == 'function' || (typeof this.reset == 'object' && !this.reset.nodeType))
			this.reset();
	});
};

/**
 * Enables or disables any matching elements.
 */
$.fn.enable = function(b) {
	if (b == undefined) b = true;
	return this.each(function() {
		this.disabled = !b;
	});
};

/**
 * Checks/unchecks any matching checkboxes or radio buttons and
 * selects/deselects and matching option elements.
 */
$.fn.selected = function(select) {
	if (select == undefined) select = true;
	return this.each(function() {
		var t = this.type;
		if (t == 'checkbox' || t == 'radio')
			this.checked = select;
		else if (this.tagName.toLowerCase() == 'option') {
			var $sel = $(this).parent('select');
			if (select && $sel[0] && $sel[0].type == 'select-one') {
				// deselect all other options
				$sel.find('option').selected(false);
			}
			this.selected = select;
		}
	});
};

// helper fn for console logging
// set $.fn.ajaxSubmit.debug to true to enable debug logging
function log() {
	if ($.fn.ajaxSubmit.debug) {
		var msg = '[jquery.form] ' + Array.prototype.join.call(arguments,'');
		if (window.console && window.console.log)
			window.console.log(msg);
		else if (window.opera && window.opera.postError)
			window.opera.postError(msg);
	}
};

})(jQuery);



/**
 * jQuery-Plugin "preloadCssImages"
 * by Scott Jehl, scott@filamentgroup.com
 * http://www.filamentgroup.com
 * reference article: http://www.filamentgroup.com/lab/update_automatically_preload_images_from_css_with_jquery/
 * demo page: http://www.filamentgroup.com/examples/preloadImages/index_v2.php
 * 
 * Copyright (c) 2008 Filament Group, Inc
 * Dual licensed under the MIT (filamentgroup.com/examples/mit-license.txt) and GPL (filamentgroup.com/examples/gpl-license.txt) licenses.
 *
 * Version: 5.0, 10.31.2008
 * Changelog:
 * 	02.20.2008 initial Version 1.0
 *    06.04.2008 Version 2.0 : removed need for any passed arguments. Images load from any and all directories.
 *    06.21.2008 Version 3.0 : Added options for loading status. Fixed IE abs image path bug (thanks Sam Pohlenz).
 *    07.24.2008 Version 4.0 : Added support for @imported CSS (credit: http://marcarea.com/). Fixed support in Opera as well. 
 *    10.31.2008 Version: 5.0 : Many feature and performance enhancements from trixta
 * --------------------------------------------------------------------
 */

;jQuery.preloadCssImages = function(settings){
	settings = jQuery.extend({
		statusTextEl: null,
		statusBarEl: null,
		errorDelay: 999, // handles 404-Errors in IE
		simultaneousCacheLoading: 2
	}, settings);
	var allImgs = [],
		loaded = 0,
		imgUrls = [],
		thisSheetRules,	
		errorTimer;
	
	function onImgComplete(){
		clearTimeout(errorTimer);
		if (imgUrls && imgUrls.length && imgUrls[loaded]) {
			loaded++;
			if (settings.statusTextEl) {
				var nowloading = (imgUrls[loaded]) ? 
					'Now Loading: <span>' + imgUrls[loaded].split('/')[imgUrls[loaded].split('/').length - 1] : 
					'Loading complete'; // wrong status-text bug fixed
				jQuery(settings.statusTextEl).html('<span class="numLoaded">' + loaded + '</span> of <span class="numTotal">' + imgUrls.length + '</span> loaded (<span class="percentLoaded">' + (loaded / imgUrls.length * 100).toFixed(0) + '%</span>) <span class="currentImg">' + nowloading + '</span></span>');
			}
			if (settings.statusBarEl) {
				var barWidth = jQuery(settings.statusBarEl).width();
				jQuery(settings.statusBarEl).css('background-position', -(barWidth - (barWidth * loaded / imgUrls.length).toFixed(0)) + 'px 50%');
			}
			loadImgs();
		}
	}
	
	function loadImgs(){
		//only load 1 image at the same time / most browsers can only handle 2 http requests, 1 should remain for user-interaction (Ajax, other images, normal page requests...)
		// otherwise set simultaneousCacheLoading to a higher number for simultaneous downloads
		if(imgUrls && imgUrls.length && imgUrls[loaded]){
			var img = new Image(); //new img obj
			img.src = imgUrls[loaded];	//set src either absolute or rel to css dir
			if(!img.complete){
				jQuery(img).bind('error load onreadystatechange', onImgComplete);
			} else {
				onImgComplete();
			}
			errorTimer = setTimeout(onImgComplete, settings.errorDelay); // handles 404-Errors in IE
		}
	}
	
	function parseCSS(sheets, urls) {
		var w3cImport = false,
			imported = [],
			importedSrc = [],
			baseURL;
		var sheetIndex = sheets.length;
		while(sheetIndex--){//loop through each stylesheet
			
			var cssPile = '';//create large string of all css rules in sheet
			
			if(urls && urls[sheetIndex]){
				baseURL = urls[sheetIndex];
			} else {
				var csshref = (sheets[sheetIndex].href) ? sheets[sheetIndex].href : 'window.location.href';
				var baseURLarr = csshref.split('/');//split href at / to make array
				baseURLarr.pop();//remove file path from baseURL array
				baseURL = baseURLarr.join('/');//create base url for the images in this sheet (css file's dir)
				if (baseURL) {
					baseURL += '/'; //tack on a / if needed
				}
			}
			if(sheets[sheetIndex].cssRules || sheets[sheetIndex].rules){
				thisSheetRules = (sheets[sheetIndex].cssRules) ? //->>> http://www.quirksmode.org/dom/w3c_css.html
					sheets[sheetIndex].cssRules : //w3
					sheets[sheetIndex].rules; //ie 
				var ruleIndex = thisSheetRules.length;
				while(ruleIndex--){
					if(thisSheetRules[ruleIndex].style && thisSheetRules[ruleIndex].style.cssText){
						var text = thisSheetRules[ruleIndex].style.cssText;
						if(text.toLowerCase().indexOf('url') != -1){ // only add rules to the string if you can assume, to find an image, speed improvement
							cssPile += text; // thisSheetRules[ruleIndex].style.cssText instead of thisSheetRules[ruleIndex].cssText is a huge speed improvement
						}
					} else if(thisSheetRules[ruleIndex].styleSheet) {
						imported.push(thisSheetRules[ruleIndex].styleSheet);
						w3cImport = true;
					}
					
				}
			}
			//parse cssPile for image urls
			var tmpImage = cssPile.match(/[^\("]+\.(gif|jpg|jpeg|png)/g);//reg ex to get a string of between a "(" and a ".filename" / '"' for opera-bugfix
			if(tmpImage){
				var i = tmpImage.length;
				while(i--){ // handle baseUrl here for multiple stylesheets in different folders bug
					var imgSrc = (tmpImage[i].charAt(0) == '/' || tmpImage[i].match('://')) ? // protocol-bug fixed
						tmpImage[i] : 
						baseURL + tmpImage[i];
					
					if(jQuery.inArray(imgSrc, imgUrls) == -1){
						imgUrls.push(imgSrc);
					}
				}
			}
			
			if(!w3cImport && sheets[sheetIndex].imports && sheets[sheetIndex].imports.length) {
				for(var iImport = 0, importLen = sheets[sheetIndex].imports.length; iImport < importLen; iImport++){
					var iHref = sheets[sheetIndex].imports[iImport].href;
					iHref = iHref.split('/');
					iHref.pop();
					iHref = iHref.join('/');
					if (iHref) {
						iHref += '/'; //tack on a / if needed
					}
					var iSrc = (iHref.charAt(0) == '/' || iHref.match('://')) ? // protocol-bug fixed
						iHref : 
						baseURL + iHref;
					
					importedSrc.push(iSrc);
					imported.push(sheets[sheetIndex].imports[iImport]);
				}
				
				
			}
		}//loop
		if(imported.length){
			parseCSS(imported, importedSrc);
			return false;
		}
		var downloads = settings.simultaneousCacheLoading;
		while( downloads--){
			setTimeout(loadImgs, downloads);
		}
	}
	parseCSS(document.styleSheets);
	return imgUrls;
};


/**
 *  Plugin which is applied on a list of img objects and calls
 *  the specified callback function, only when all of them are loaded (or errored).
 *  @author:  H. Yankov (hristo.yankov at gmail dot com)
 *  @version: 1.0.0 (Feb/22/2010)
 *	http://yankov.us
 */

(function($) {
$.fn.batchImageLoad = function(options) {
	var images = $(this);
	var originalTotalImagesCount = images.size();
	var totalImagesCount = originalTotalImagesCount;
	var elementsLoaded = 0;

	// Init
	$.fn.batchImageLoad.defaults = {
		loadingCompleteCallback: null, 
		imageLoadedCallback: null
	}
    var opts = $.extend({}, $.fn.batchImageLoad.defaults, options);
		
	// Start
	images.each(function() {
		// The image has already been loaded (cached)
		if ($(this)[0].complete) {
			totalImagesCount--;
			if (opts.imageLoadedCallback) opts.imageLoadedCallback(elementsLoaded, originalTotalImagesCount);
		// The image is loading, so attach the listener
		} else {
			$(this).load(function() {
				elementsLoaded++;
				
				if (opts.imageLoadedCallback) opts.imageLoadedCallback(elementsLoaded, originalTotalImagesCount);

				// An image has been loaded
				if (elementsLoaded >= totalImagesCount)
					if (opts.loadingCompleteCallback) opts.loadingCompleteCallback();
			});
			$(this).error(function() {
				elementsLoaded++;
				
				if (opts.imageLoadedCallback) opts.imageLoadedCallback(elementsLoaded, originalTotalImagesCount);
					
				// The image has errored
				if (elementsLoaded >= totalImagesCount)
					if (opts.loadingCompleteCallback) opts.loadingCompleteCallback();
			});
		}
	});

	// There are no unloaded images
	if (totalImagesCount <= 0)
		if (opts.loadingCompleteCallback) opts.loadingCompleteCallback();
};
})(jQuery);


/**
 * @author Alexander Farkas
 * v. 1.21
 */


(function($) {
	if(!document.defaultView || !document.defaultView.getComputedStyle){ // IE6-IE8
		var oldCurCSS = jQuery.curCSS;
		jQuery.curCSS = function(elem, name, force){
			if(name === 'background-position'){
				name = 'backgroundPosition';
			}
			if(name !== 'backgroundPosition' || !elem.currentStyle || elem.currentStyle[ name ]){
				return oldCurCSS.apply(this, arguments);
			}
			var style = elem.style;
			if ( !force && style && style[ name ] ){
				return style[ name ];
			}
			return oldCurCSS(elem, 'backgroundPositionX', force) +' '+ oldCurCSS(elem, 'backgroundPositionY', force);
		};
	}
	
	var oldAnim = $.fn.animate;
	$.fn.animate = function(prop){
		if('background-position' in prop){
			prop.backgroundPosition = prop['background-position'];
			delete prop['background-position'];
		}
		if('backgroundPosition' in prop){
			prop.backgroundPosition = '('+ prop.backgroundPosition;
		}
		return oldAnim.apply(this, arguments);
	};
	
	function toArray(strg){
		strg = strg.replace(/left|top/g,'0px');
		strg = strg.replace(/right|bottom/g,'100%');
		strg = strg.replace(/([0-9\.]+)(\s|\)|$)/g,"$1px$2");
		var res = strg.match(/(-?[0-9\.]+)(px|\%|em|pt)\s(-?[0-9\.]+)(px|\%|em|pt)/);
		return [parseFloat(res[1],10),res[2],parseFloat(res[3],10),res[4]];
	}
	
	$.fx.step. backgroundPosition = function(fx) {
		if (!fx.bgPosReady) {
			var start = $.curCSS(fx.elem,'backgroundPosition');
			
			if(!start){//FF2 no inline-style fallback
				start = '0px 0px';
			}
			
			start = toArray(start);
			
			fx.start = [start[0],start[2]];
			
			var end = toArray(fx.options.curAnim.backgroundPosition);
			fx.end = [end[0],end[2]];
			
			fx.unit = [end[1],end[3]];
			fx.bgPosReady = true;
		}
		//return;
		var nowPosX = [];
		nowPosX[0] = ((fx.end[0] - fx.start[0]) * fx.pos) + fx.start[0] + fx.unit[0];
		nowPosX[1] = ((fx.end[1] - fx.start[1]) * fx.pos) + fx.start[1] + fx.unit[1];           
		fx.elem.style.backgroundPosition = nowPosX[0]+' '+nowPosX[1];

	};
})(jQuery);


/*
 * SUBMIT ROLLOVER FUNCTION
 *
 */ 

function getLeaf(url) {
	var splited=url.split('?');// remove all the parameter from url
	url=splited[0];
	return url.substring(url.lastIndexOf("/")+1);// return file name without domain and path
}

//Hover Functions
mouseOver = function(item) {
		$("span.thumb", item).stop().animate({
		backgroundPosition: '0 -20px'
		}, 100, 'easeOutQuad');
}
mouseOut = function(item) {
		$("span.thumb", item).stop().animate({
			backgroundPosition: '0 0'
		}, 100, 'easeInQuad');
}	


/*
 * COMMON FUNCTION
 *
 */ 

$(document).ready( function() {
			
	$("form button").hover(
		 function () {
			$(this).addClass('active');
		  }, 
		  function () {
			$(this).removeClass('active');
		  }						   
	);
	
	$("input[type$='text']").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});

	$("textarea").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
	
	
	//external link
	$("a.external").click( function() {
        this.target = "_blank";
    });	
		
});


function showResponse(responseText, statusText, xhr, $form) {
	//if(responseText['result'] == '0') {
		alert(responseText);
	//}
}


//validation
$.validator.addMethod("defaultValidate", function(value, element, param) {
	if (value == element.defaultValue) {
		return false;
	}else{
		return true;
	}
}, "This field is required");


$(function () {
	
	function swapImage(param, uri){
		param.load({}).attr('src', uri);
	}			

	/*var map = $('#map');
	var img = $('img', map);
	//zoom function
	var ig = map.children();	
	map.mousemove(function(e){
		var divWidth = 350;
		var divHeight = 272;
		var igW = 700;
		var igH = 544;
		var dOs = map.offset();
		var x = e.pageX;
		var divLeft = dOs.left;
		var leftPan = (e.pageX - dOs.left) * (divWidth - igW)/(divWidth);
		var topPan = (e.pageY - dOs.top) * (divHeight - igH)/(divHeight);
		ig.css({left: leftPan, top: topPan});			
	});    
	
	//swap image from small to big
	map.hover(
		function () {
			img.css({ width: 700, height: 544});
			var hiSrc = img.attr("src").replace(/s.jpg/, 'l.jpg');
			swapImage(img, hiSrc);
		},
		function () {
			img.css({left: "0", top: "0", width: 350, height: 272});
			var loSrc = img.attr("src").replace(/l.jpg/, 's.jpg');
			swapImage(img, loSrc);
		}
	);*/
	
	var name = $('#NameEnq').val();
	var email = $('#EmailEnq').val();
	var comments = $('#CommentsEnq').val();
	
	var options = { 
		type: "POST",
		url: "/forms/contact.php",
		data: "name=" + name + "&amp;email=" + email + "&amp;comments=" + comments,
		success: function(html)
		{
			$('.contact-success').css('padding','10px 10px 0px 10px').html(html);
			var refresh = setInterval(function()
			{
				$('.contact-success').remove();
			}, 5000);
		},
		resetForm: true
	}; 
	
	$("form#contact").validate({
		submitHandler: function(form) {
			$(form).ajaxSubmit(options); 
		},
		errorPlacement: function(error, element) {
			error.appendTo( element.parent().parent().parent() );
		},
		rules: {
			NameEnq: "defaultValidate",
			EmailEnq: {
				required: true,
				email: true
			},
			CommentsEnq: "defaultValidate"
		},
		messages: {
			NameEnq: "Please enter your Name.",				
			EmailEnq: "Please enter a valid email address.",
			CommentsEnq: "Please enter a comment."
		}
	});
	
	
	var contactname = $('#Name').val();
	var contactcompany = $('#Company').val();
	var contactemail = $('#Email').val();
	var contactphone = $('#Phone').val();
	var contactmessage = $('#Message').val();
	
	var websiteaddress = $('#WebsiteAddress').val();
	var targetaudience = $('#TargetAudience').val();
	var websitesize = $('#WebsiteSize').val();
	var reference = $('#Reference').val();
	
	var design = $('#Design').serialize();
	var strategy = $('#Strategy').serialize();
	var development = $('#Development').serialize();
	
	var hosting = $('#Hosting').val();
	var maintenance = $('#Maintenance').val();
	var budget = $('#Budget').val();
	var comments = $('#Comments').val();
	
	var about = $('#About').val();
	
	var auto = '';
	
	var contactoptions = {
		type: "POST",
		url: "/forms/contactus.php",
		data: "contactname=" + contactname + "&amp;contactcompany=" + contactcompany + "&amp;contactemail=" + contactemail + "&amp;contactphone=" + contactphone + "&amp;contactmessage=" + contactmessage + "&amp;websiteaddress=" + websiteaddress + "&amp;targetaudience=" + targetaudience + "&amp;websitesize=" + websitesize + "&amp;design=" + design + "&amp;strategy=" + strategy + "&amp;development=" + development + "&amp;hosting=" + hosting + "&amp;maintenance=" + maintenance + "&amp;budget=" + budget + "&amp;comments=" + comments + "&amp;about=" + about,
		success: function(html)
		{
			$('.success').fadeTo('slow', 1).css({'padding':'0px 0px 10px 0px','font-size':'16px','font-weight':'normal','line-height':'20px'}).html(html);
			$('div.loading').remove();
			auto = setInterval(function()
			{
				$('#contactus').fadeTo('slow', 1);
			}, 3000);
		},
		resetForm: true
	};
	
	$("form#contactus").validate({
		submitHandler: function(form) {
			$(form).fadeTo('fast', 0);
			$('#joinmoso').hide('fast');
			$('#quotation').hide('fast');
			$(form).ajaxSubmit(contactoptions);
			$('.success').fadeTo('fast', 0)
			$('<div class="loading">Hang on a sec while we process your enquiry.</div>').prependTo('.main');
			clearInterval(auto);
		},
		errorPlacement: function(error, element) {
			error.appendTo( element.parent().parent().parent() );
		},
		rules: {
			Name: "defaultValidate",
			Company: "defaultValidate",
			Phone: "defaultValidate",
			Email: {
				required: true,
				email: true
			},
			Message: "defaultValidate",
			Upload: {
				accept: "pdf"
			}
		},
		messages: {
			Name: "Please enter your name.",
			Company: "Please enter your company name.",
			Phone: "Please enter your phone number.",
			Email: "Please enter a valid email address.",
			Message: "Please write a message.",
			Upload: "Sorry will only accept a PDF file."
		}
	});
	
	$('.ico').each(function() {
		// options
		var distance = 10;
		var time = 250;
		var hideDelay = 500;
	
		var hideDelayTimer = null;
	
		// tracker
		var beingShown = false;
		var shown = false;
		
		var trigger = $('.trigger', this);
		var popup = $('.popup', this);
	
		// set the mouseover and mouseout on both element
		$([trigger.get(0), popup.get(0)]).mouseover(function () {
		  // stops the hide event if we move from the trigger to the popup element
		  if (hideDelayTimer) clearTimeout(hideDelayTimer);
	
		  // don't trigger the animation again if we're being shown, or already visible
		  if (beingShown || shown) {
			return;
		  } else {
			beingShown = true;
	
			// reset position of popup box
			popup.css({
			  bottom: 40,
			  left: -55,
			  display: 'block' // brings the popup back in to view
			})
	
			// (we're using chaining on the popup) now animate it's opacity and position
			.animate({
			  bottom: '-=' + distance + 'px'
			}, time, 'swing', function() {
			  // once the animation is complete, set the tracker variables
			  beingShown = false;
			  shown = true;
			});
		  }
		}).mouseout(function () {
		  // reset the timer if we get fired again - avoids double animations
		  if (hideDelayTimer) clearTimeout(hideDelayTimer);
		  
		  // store the timer so that it can be cleared in the mouseover if required
		  hideDelayTimer = setTimeout(function () {
			hideDelayTimer = null;
			popup.animate({
			  bottom: '-=' + distance + 'px'
			}, time, 'swing', function () {
			  // once the animate is complete, set the tracker variables
			  shown = false;
			  // hide the popup entirely after the effect (opacity alone doesn't do the job)
			  popup.css('display', 'none');
			});
		  }, hideDelay);
		});
	});	
});


/* Copyright (c) 2006 Brandon Aaron (brandon.aaron@gmail.com || http://brandonaaron.net)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
 * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
 *
 * $LastChangedDate: 2007-12-20 09:02:08 -0600 (Thu, 20 Dec 2007) $
 * $Rev: 4265 $
 *
 * Version: 3.0
 * 
 * Requires: $ 1.2.2+
 */

(function($) {

$.event.special.mousewheel = {
	setup: function() {
		var handler = $.event.special.mousewheel.handler;
		
		// Fix pageX, pageY, clientX and clientY for mozilla
		if ( $.browser.mozilla )
			$(this).bind('mousemove.mousewheel', function(event) {
				$.data(this, 'mwcursorposdata', {
					pageX: event.pageX,
					pageY: event.pageY,
					clientX: event.clientX,
					clientY: event.clientY
				});
			});
	
		if ( this.addEventListener )
			this.addEventListener( ($.browser.mozilla ? 'DOMMouseScroll' : 'mousewheel'), handler, false);
		else
			this.onmousewheel = handler;
	},
	
	teardown: function() {
		var handler = $.event.special.mousewheel.handler;
		
		$(this).unbind('mousemove.mousewheel');
		
		if ( this.removeEventListener )
			this.removeEventListener( ($.browser.mozilla ? 'DOMMouseScroll' : 'mousewheel'), handler, false);
		else
			this.onmousewheel = function(){};
		
		$.removeData(this, 'mwcursorposdata');
	},
	
	handler: function(event) {
		var args = Array.prototype.slice.call( arguments, 1 );
		
		event = $.event.fix(event || window.event);
		// Get correct pageX, pageY, clientX and clientY for mozilla
		$.extend( event, $.data(this, 'mwcursorposdata') || {} );
		var delta = 0, returnValue = true;
		
		if ( event.wheelDelta ) delta = event.wheelDelta/120;
		if ( event.detail     ) delta = -event.detail/3;
//		if ( $.browser.opera  ) delta = -event.wheelDelta;
		
		event.data  = event.data || {};
		event.type  = "mousewheel";
		
		// Add delta to the front of the arguments
		args.unshift(delta);
		// Add event to the front of the arguments
		args.unshift(event);

		return $.event.handle.apply(this, args);
	}
};

$.fn.extend({
	mousewheel: function(fn) {
		return fn ? this.bind("mousewheel", fn) : this.trigger("mousewheel");
	},
	
	unmousewheel: function(fn) {
		return this.unbind("mousewheel", fn);
	}
});

})(jQuery);

/* Copyright (c) 2009 Kelvin Luck (kelvin AT kelvinluck DOT com || http://www.kelvinluck.com)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) 
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 * 
 * See http://kelvinluck.com/assets/jquery/jScrollPane/
 * $Id: jScrollPane.js 93 2010-06-01 08:17:28Z kelvin.luck $
 */

/**
 * Replace the vertical scroll bars on any matched elements with a fancy
 * styleable (via CSS) version. With JS disabled the elements will
 * gracefully degrade to the browsers own implementation of overflow:auto.
 * If the mousewheel plugin has been included on the page then the scrollable areas will also
 * respond to the mouse wheel.
 *
 * @example jQuery(".scroll-pane").jScrollPane();
 *
 * @name jScrollPane
 * @type jQuery
 * @param Object	settings	hash with options, described below.
 *								scrollbarWidth	-	The width of the generated scrollbar in pixels
 *								scrollbarMargin	-	The amount of space to leave on the side of the scrollbar in pixels
 *								wheelSpeed		-	The speed the pane will scroll in response to the mouse wheel in pixels
 *								showArrows		-	Whether to display arrows for the user to scroll with
 *								arrowSize		-	The height of the arrow buttons if showArrows=true
 *								animateTo		-	Whether to animate when calling scrollTo and scrollBy
 *								dragMinHeight	-	The minimum height to allow the drag bar to be
 *								dragMaxHeight	-	The maximum height to allow the drag bar to be
 *								animateInterval	-	The interval in milliseconds to update an animating scrollPane (default 100)
 *								animateStep		-	The amount to divide the remaining scroll distance by when animating (default 3)
 *								maintainPosition-	Whether you want the contents of the scroll pane to maintain it's position when you re-initialise it - so it doesn't scroll as you add more content (default true)
 *								tabIndex		-	The tabindex for this jScrollPane to control when it is tabbed to when navigating via keyboard (default 0)
 *								enableKeyboardNavigation - Whether to allow keyboard scrolling of this jScrollPane when it is focused (default true)
 *								animateToInternalLinks - Whether the move to an internal link (e.g. when it's focused by tabbing or by a hash change in the URL) should be animated or instant (default false)
 *								scrollbarOnLeft	-	Display the scrollbar on the left side?  (needs stylesheet changes, see examples.html)
 *								reinitialiseOnImageLoad - Whether the jScrollPane should automatically re-initialise itself when any contained images are loaded (default false)
 *								topCapHeight	-	The height of the "cap" area between the top of the jScrollPane and the top of the track/ buttons
 *								bottomCapHeight	-	The height of the "cap" area between the bottom of the jScrollPane and the bottom of the track/ buttons
 *								observeHash		-	Whether jScrollPane should attempt to automagically scroll to the correct place when an anchor inside the scrollpane is linked to (default true)
 * @return jQuery
 * @cat Plugins/jScrollPane
 * @author Kelvin Luck (kelvin AT kelvinluck DOT com || http://www.kelvinluck.com)
 */

(function($) {

$.jScrollPane = {
	active : []
};
$.fn.jScrollPane = function(settings)
{
	settings = $.extend({}, $.fn.jScrollPane.defaults, settings);

	var rf = function() { return false; };
	
	return this.each(
		function()
		{
			var $this = $(this);
			var paneEle = this;
			var currentScrollPosition = 0;
			var paneWidth;
			var paneHeight;
			var trackHeight;
			var trackOffset = settings.topCapHeight;
			var $container;
			
			if ($(this).parent().is('.jScrollPaneContainer')) {
				$container = $(this).parent();
				currentScrollPosition = settings.maintainPosition ? $this.position().top : 0;
				var $c = $(this).parent();
				paneWidth = $c.innerWidth();
				paneHeight = $c.outerHeight();
				$('>.jScrollPaneTrack, >.jScrollArrowUp, >.jScrollArrowDown, >.jScrollCap', $c).remove();
				$this.css({'top':0});
			} else {
				$this.data('originalStyleTag', $this.attr('style'));
				// Switch the element's overflow to hidden to ensure we get the size of the element without the scrollbars [http://plugins.jquery.com/node/1208]
				$this.css('overflow', 'hidden');
				this.originalPadding = $this.css('paddingTop') + ' ' + $this.css('paddingRight') + ' ' + $this.css('paddingBottom') + ' ' + $this.css('paddingLeft');
				this.originalSidePaddingTotal = (parseInt($this.css('paddingLeft')) || 0) + (parseInt($this.css('paddingRight')) || 0);
				paneWidth = $this.innerWidth();
				paneHeight = $this.innerHeight();
				$container = $('<div></div>')
					.attr({'className':'jScrollPaneContainer'})
					.css(
						{
							'height':paneHeight+'px', 
							'width':paneWidth+'px'
						}
					);
				if (settings.enableKeyboardNavigation) {
					$container.attr(
						'tabindex', 
						settings.tabIndex
					);
				}
				$this.wrap($container);
				$container = $this.parent();
				// deal with text size changes (if the jquery.em plugin is included)
				// and re-initialise the scrollPane so the track maintains the
				// correct size
				$(document).bind(
					'emchange', 
					function(e, cur, prev)
					{
						$this.jScrollPane(settings);
					}
				);
				
			}
			trackHeight = paneHeight;
			
			if (settings.reinitialiseOnImageLoad) {
				// code inspired by jquery.onImagesLoad: http://plugins.jquery.com/project/onImagesLoad
				// except we re-initialise the scroll pane when each image loads so that the scroll pane is always up to size...
				// TODO: Do I even need to store it in $.data? Is a local variable here the same since I don't pass the reinitialiseOnImageLoad when I re-initialise?
				var $imagesToLoad = $.data(paneEle, 'jScrollPaneImagesToLoad') || $('img', $this);
				var loadedImages = [];
				
				if ($imagesToLoad.length) {
					$imagesToLoad.each(function(i, val)	{
						$(this).bind('load readystatechange', function() {
							if($.inArray(i, loadedImages) == -1){ //don't double count images
								loadedImages.push(val); //keep a record of images we've seen
								$imagesToLoad = $.grep($imagesToLoad, function(n, i) {
									return n != val;
								});
								$.data(paneEle, 'jScrollPaneImagesToLoad', $imagesToLoad);
								var s2 = $.extend(settings, {reinitialiseOnImageLoad:false});
								$this.jScrollPane(s2); // re-initialise
							}
						}).each(function(i, val) {
							if(this.complete || this.complete===undefined) { 
								//needed for potential cached images
								this.src = this.src; 
							} 
						});
					});
				};
			}

			var p = this.originalSidePaddingTotal;
			var realPaneWidth = paneWidth - settings.scrollbarWidth - settings.scrollbarMargin - p;

			var cssToApply = {
				'height':'auto',
				'width': realPaneWidth + 'px'
			}

			if(settings.scrollbarOnLeft) {
				cssToApply.paddingLeft = settings.scrollbarMargin + settings.scrollbarWidth + 'px';
			} else {
				cssToApply.paddingRight = settings.scrollbarMargin + 'px';
			}

			$this.css(cssToApply);

			var contentHeight = $this.outerHeight();
			var percentInView = paneHeight / contentHeight;
			
			var isScrollable = percentInView < .99;
			$container[isScrollable ? 'addClass' : 'removeClass']('jScrollPaneScrollable');

			if (isScrollable) {
				$container.append(
					$('<div></div>').addClass('jScrollCap jScrollCapTop').css({height:settings.topCapHeight}),
					$('<div></div>').attr({'className':'jScrollPaneTrack'}).css({'width':settings.scrollbarWidth+'px'}).append(
						$('<div></div>').attr({'className':'jScrollPaneDrag'}).css({'width':settings.scrollbarWidth+'px'}).append(
							$('<div></div>').attr({'className':'jScrollPaneDragTop'}).css({'width':settings.scrollbarWidth+'px'}),
							$('<div></div>').attr({'className':'jScrollPaneDragBottom'}).css({'width':settings.scrollbarWidth+'px'})
						)
					),
					$('<div></div>').addClass('jScrollCap jScrollCapBottom').css({height:settings.bottomCapHeight})
				);
				
				var $track = $('>.jScrollPaneTrack', $container);
				var $drag = $('>.jScrollPaneTrack .jScrollPaneDrag', $container);
				
				
				var currentArrowDirection;
				var currentArrowTimerArr = [];// Array is used to store timers since they can stack up when dealing with keyboard events. This ensures all timers are cleaned up in the end, preventing an acceleration bug.
				var currentArrowInc;
				var whileArrowButtonDown = function() 
				{
					if (currentArrowInc > 4 || currentArrowInc % 4 == 0) {
						positionDrag(dragPosition + currentArrowDirection * mouseWheelMultiplier);
					}
					currentArrowInc++;
				};

				if (settings.enableKeyboardNavigation) {
					$container.bind(
						'keydown.jscrollpane',
						function(e) 
						{
							switch (e.keyCode) {
								case 38: //up
									currentArrowDirection = -1;
									currentArrowInc = 0;
									whileArrowButtonDown();
									currentArrowTimerArr[currentArrowTimerArr.length] = setInterval(whileArrowButtonDown, 100);
									return false;
								case 40: //down
									currentArrowDirection = 1;
									currentArrowInc = 0;
									whileArrowButtonDown();
									currentArrowTimerArr[currentArrowTimerArr.length] = setInterval(whileArrowButtonDown, 100);
									return false;
								case 33: // page up
								case 34: // page down
									// TODO
									return false;
								default:
							}
						}
					).bind(
						'keyup.jscrollpane',
						function(e) 
						{
							if (e.keyCode == 38 || e.keyCode == 40) {
								for (var i = 0; i < currentArrowTimerArr.length; i++) {
									clearInterval(currentArrowTimerArr[i]);
								}
								return false;
							}
						}
					);
				}

				if (settings.showArrows) {
					
					var currentArrowButton;
					var currentArrowInterval;

					var onArrowMouseUp = function(event)
					{
						$('html').unbind('mouseup', onArrowMouseUp);
						currentArrowButton.removeClass('jScrollActiveArrowButton');
						clearInterval(currentArrowInterval);
					};
					var onArrowMouseDown = function() {
						$('html').bind('mouseup', onArrowMouseUp);
						currentArrowButton.addClass('jScrollActiveArrowButton');
						currentArrowInc = 0;
						whileArrowButtonDown();
						currentArrowInterval = setInterval(whileArrowButtonDown, 100);
					};
					$container
						.append(
							$('<a></a>')
								.attr(
									{
										'href':'javascript:;', 
										'className':'jScrollArrowUp', 
										'tabindex':-1
									}
								)
								.css(
									{
										'width':settings.scrollbarWidth+'px',
										'top':settings.topCapHeight + 'px'
									}
								)
								.html('Scroll up')
								.bind('mousedown', function()
								{
									currentArrowButton = $(this);
									currentArrowDirection = -1;
									onArrowMouseDown();
									this.blur();
									return false;
								})
								.bind('click', rf),
							$('<a></a>')
								.attr(
									{
										'href':'javascript:;', 
										'className':'jScrollArrowDown', 
										'tabindex':-1
									}
								)
								.css(
									{
										'width':settings.scrollbarWidth+'px',
										'bottom':settings.bottomCapHeight + 'px'
									}
								)
								.html('Scroll down')
								.bind('mousedown', function()
								{
									currentArrowButton = $(this);
									currentArrowDirection = 1;
									onArrowMouseDown();
									this.blur();
									return false;
								})
								.bind('click', rf)
						);
					var $upArrow = $('>.jScrollArrowUp', $container);
					var $downArrow = $('>.jScrollArrowDown', $container);
				}
				
				if (settings.arrowSize) {
					trackHeight = paneHeight - settings.arrowSize - settings.arrowSize;
					trackOffset += settings.arrowSize;
				} else if ($upArrow) {
					var topArrowHeight = $upArrow.height();
					settings.arrowSize = topArrowHeight;
					trackHeight = paneHeight - topArrowHeight - $downArrow.height();
					trackOffset += topArrowHeight;
				}
				trackHeight -= settings.topCapHeight + settings.bottomCapHeight;
				$track.css({'height': trackHeight+'px', top:trackOffset+'px'})
				
				var $pane = $(this).css({'position':'absolute', 'overflow':'visible'});
				
				var currentOffset;
				var maxY;
				var mouseWheelMultiplier;
				// store this in a seperate variable so we can keep track more accurately than just updating the css property..
				var dragPosition = 0;
				var dragMiddle = percentInView*paneHeight/2;
				
				// pos function borrowed from tooltip plugin and adapted...
				var getPos = function (event, c) {
					var p = c == 'X' ? 'Left' : 'Top';
					return event['page' + c] || (event['client' + c] + (document.documentElement['scroll' + p] || document.body['scroll' + p])) || 0;
				};
				
				var ignoreNativeDrag = function() {	return false; };
				
				var initDrag = function()
				{
					ceaseAnimation();
					currentOffset = $drag.offset(false);
					currentOffset.top -= dragPosition;
					maxY = trackHeight - $drag[0].offsetHeight;
					mouseWheelMultiplier = 2 * settings.wheelSpeed * maxY / contentHeight;
				};
				
				var onStartDrag = function(event)
				{
					initDrag();
					dragMiddle = getPos(event, 'Y') - dragPosition - currentOffset.top;
					$('html').bind('mouseup', onStopDrag).bind('mousemove', updateScroll).bind('mouseleave', onStopDrag)
					if ($.browser.msie) {
						$('html').bind('dragstart', ignoreNativeDrag).bind('selectstart', ignoreNativeDrag);
					}
					return false;
				};
				var onStopDrag = function()
				{
					$('html').unbind('mouseup', onStopDrag).unbind('mousemove', updateScroll);
					dragMiddle = percentInView*paneHeight/2;
					if ($.browser.msie) {
						$('html').unbind('dragstart', ignoreNativeDrag).unbind('selectstart', ignoreNativeDrag);
					}
				};
				var positionDrag = function(destY)
				{
					$container.scrollTop(0);
					destY = destY < 0 ? 0 : (destY > maxY ? maxY : destY);
					dragPosition = destY;
					$drag.css({'top':destY+'px'});
					var p = destY / maxY;
					$this.data('jScrollPanePosition', (paneHeight-contentHeight)*-p);
					$pane.css({'top':((paneHeight-contentHeight)*p) + 'px'});
					$this.trigger('scroll');
					if (settings.showArrows) {
						$upArrow[destY == 0 ? 'addClass' : 'removeClass']('disabled');
						$downArrow[destY == maxY ? 'addClass' : 'removeClass']('disabled');
					}
				};
				var updateScroll = function(e)
				{
					positionDrag(getPos(e, 'Y') - currentOffset.top - dragMiddle);
				};
				
				var dragH = Math.max(Math.min(percentInView*(paneHeight-settings.arrowSize*2), settings.dragMaxHeight), settings.dragMinHeight);
				
				$drag.css(
					{'height':dragH+'px'}
				).bind('mousedown', onStartDrag);
				
				var trackScrollInterval;
				var trackScrollInc;
				var trackScrollMousePos;
				var doTrackScroll = function()
				{
					if (trackScrollInc > 8 || trackScrollInc%4==0) {
						positionDrag((dragPosition - ((dragPosition - trackScrollMousePos) / 2)));
					}
					trackScrollInc ++;
				};
				var onStopTrackClick = function()
				{
					clearInterval(trackScrollInterval);
					$('html').unbind('mouseup', onStopTrackClick).unbind('mousemove', onTrackMouseMove);
				};
				var onTrackMouseMove = function(event)
				{
					trackScrollMousePos = getPos(event, 'Y') - currentOffset.top - dragMiddle;
				};
				var onTrackClick = function(event)
				{
					initDrag();
					onTrackMouseMove(event);
					trackScrollInc = 0;
					$('html').bind('mouseup', onStopTrackClick).bind('mousemove', onTrackMouseMove);
					trackScrollInterval = setInterval(doTrackScroll, 100);
					doTrackScroll();
					return false;
				};
				
				$track.bind('mousedown', onTrackClick);
				
				$container.bind(
					'mousewheel',
					function (event, delta) {
						delta = delta || (event.wheelDelta ? event.wheelDelta / 120 : (event.detail) ?
-event.detail/3 : 0);
						initDrag();
						ceaseAnimation();
						var d = dragPosition;
						positionDrag(dragPosition - delta * mouseWheelMultiplier);
						var dragOccured = d != dragPosition;
						return !dragOccured;
					}
				);

				var _animateToPosition;
				var _animateToInterval;
				function animateToPosition()
				{
					var diff = (_animateToPosition - dragPosition) / settings.animateStep;
					if (diff > 1 || diff < -1) {
						positionDrag(dragPosition + diff);
					} else {
						positionDrag(_animateToPosition);
						ceaseAnimation();
					}
				}
				var ceaseAnimation = function()
				{
					if (_animateToInterval) {
						clearInterval(_animateToInterval);
						delete _animateToPosition;
					}
				};
				var scrollTo = function(pos, preventAni)
				{
					if (typeof pos == "string") {
						// Legal hash values aren't necessarily legal jQuery selectors so we need to catch any
						// errors from the lookup...
						try {
							$e = $(pos, $this);
						} catch (err) {
							return;
						}
						if (!$e.length) return;
						pos = $e.offset().top - $this.offset().top;
					}
					ceaseAnimation();
					var maxScroll = contentHeight - paneHeight;
					pos = pos > maxScroll ? maxScroll : pos;
					$this.data('jScrollPaneMaxScroll', maxScroll);
					var destDragPosition = pos/maxScroll * maxY;
					if (preventAni || !settings.animateTo) {
						positionDrag(destDragPosition);
					} else {
						$container.scrollTop(0);
						_animateToPosition = destDragPosition;
						_animateToInterval = setInterval(animateToPosition, settings.animateInterval);
					}
				};
				$this[0].scrollTo = scrollTo;
				
				$this[0].scrollBy = function(delta)
				{
					var currentPos = -parseInt($pane.css('top')) || 0;
					scrollTo(currentPos + delta);
				};
				
				initDrag();
				
				scrollTo(-currentScrollPosition, true);
			
				// Deal with it when the user tabs to a link or form element within this scrollpane
				$('*', this).bind(
					'focus',
					function(event)
					{
						var $e = $(this);
						
						// loop through parents adding the offset top of any elements that are relatively positioned between
						// the focused element and the jScrollPaneContainer so we can get the true distance from the top
						// of the focused element to the top of the scrollpane...
						var eleTop = 0;
						
						var preventInfiniteLoop = 100;
						
						while ($e[0] != $this[0]) {
							eleTop += $e.position().top;
							$e = $e.offsetParent();
							if (!preventInfiniteLoop--) {
								return;
							}
						}
						
						var viewportTop = -parseInt($pane.css('top')) || 0;
						var maxVisibleEleTop = viewportTop + paneHeight;
						var eleInView = eleTop > viewportTop && eleTop < maxVisibleEleTop;
						if (!eleInView) {
							var destPos = eleTop - settings.scrollbarMargin;
							if (eleTop > viewportTop) { // element is below viewport - scroll so it is at bottom.
								destPos += $(this).height() + 15 + settings.scrollbarMargin - paneHeight;
							}
							scrollTo(destPos);
						}
					}
				)
				
				
				if (settings.observeHash) {
					if (location.hash && location.hash.length > 1) {
						setTimeout(function(){
							scrollTo(location.hash);
						}, $.browser.safari ? 100 : 0);
					}
					
					// use event delegation to listen for all clicks on links and hijack them if they are links to
					// anchors within our content...
					$(document).bind('click', function(e){
						$target = $(e.target);
						if ($target.is('a')) {
							var h = $target.attr('href');
							if (h && h.substr(0, 1) == '#' && h.length > 1) {
								setTimeout(function(){
									scrollTo(h, !settings.animateToInternalLinks);
								}, $.browser.safari ? 100 : 0);
							}
						}
					});
				}
				
				// Deal with dragging and selecting text to make the scrollpane scroll...
				function onSelectScrollMouseDown(e)
				{
				   $(document).bind('mousemove.jScrollPaneDragging', onTextSelectionScrollMouseMove);
				   $(document).bind('mouseup.jScrollPaneDragging',   onSelectScrollMouseUp);
				  
				}
				
				var textDragDistanceAway;
				var textSelectionInterval;
				
				function onTextSelectionInterval()
				{
					direction = textDragDistanceAway < 0 ? -1 : 1;
					$this[0].scrollBy(textDragDistanceAway / 2);
				}

				function clearTextSelectionInterval()
				{
					if (textSelectionInterval) {
						clearInterval(textSelectionInterval);
						textSelectionInterval = undefined;
					}
				}
				
				function onTextSelectionScrollMouseMove(e)
				{
					var offset = $this.parent().offset().top;
					var maxOffset = offset + paneHeight;
					var mouseOffset = getPos(e, 'Y');
					textDragDistanceAway = mouseOffset < offset ? mouseOffset - offset : (mouseOffset > maxOffset ? mouseOffset - maxOffset : 0);
					if (textDragDistanceAway == 0) {
						clearTextSelectionInterval();
					} else {
						if (!textSelectionInterval) {
							textSelectionInterval  = setInterval(onTextSelectionInterval, 100);
						}
					}
				}

				function onSelectScrollMouseUp(e)
				{
				   $(document)
					  .unbind('mousemove.jScrollPaneDragging')
					  .unbind('mouseup.jScrollPaneDragging');
				   clearTextSelectionInterval();
				}

				$container.bind('mousedown.jScrollPane', onSelectScrollMouseDown);

				
				$.jScrollPane.active.push($this[0]);
				
			} else {
				$this.css(
					{
						'height':paneHeight+'px',
						'width':paneWidth-this.originalSidePaddingTotal+'px',
						'padding':this.originalPadding
					}
				);
				$this[0].scrollTo = $this[0].scrollBy = function() {};
				// clean up listeners
				$this.parent().unbind('mousewheel').unbind('mousedown.jScrollPane').unbind('keydown.jscrollpane').unbind('keyup.jscrollpane');
			}
			
		}
	)
};

$.fn.jScrollPaneRemove = function()
{
	$(this).each(function()
	{
		$this = $(this);
		var $c = $this.parent();
		if ($c.is('.jScrollPaneContainer')) {
			$this.css(
				{
					'top':'',
					'height':'',
					'width':'',
					'padding':'',
					'overflow':'',
					'position':''
				}
			);
			$this.attr('style', $this.data('originalStyleTag'));
			$c.after($this).remove();
		}
	});
}

$.fn.jScrollPane.defaults = {
	scrollbarWidth : 10,
	scrollbarMargin : 5,
	wheelSpeed : 18,
	showArrows : false,
	arrowSize : 0,
	animateTo : false,
	dragMinHeight : 1,
	dragMaxHeight : 99999,
	animateInterval : 100,
	animateStep: 3,
	maintainPosition: true,
	scrollbarOnLeft: false,
	reinitialiseOnImageLoad: false,
	tabIndex : 0,
	enableKeyboardNavigation: true,
	animateToInternalLinks: false,
	topCapHeight: 0,
	bottomCapHeight: 0,
	observeHash: true
};

// clean up the scrollTo expandos
$(window)
	.bind('unload', function() {
		var els = $.jScrollPane.active; 
		for (var i=0; i<els.length; i++) {
			els[i].scrollTo = els[i].scrollBy = null;
		}
	}
);

})(jQuery);


/*
Google map, directions interface
Written & Maintained by Holmesy
*/

var screenHeight = document.documentElement.clientHeight-90;
var easeType = 'easeInOutSine';

var map;
var panorama;
var moso = new google.maps.LatLng(-37.830316, 144.994198);
var directionsService;
var directionsDisplay;

var auto;
var directions;
var directionsaddress;

function mapLarge()
{
	directionsService = new google.maps.DirectionsService();
	directionsDisplay = new google.maps.DirectionsRenderer();
	
	var options = {
		mapTypeControl: false,
		mapTypeId: google.maps.MapTypeId.ROADMAP,
		streetViewControl: false,
		scrollwheel: false
	};
	
	map = new google.maps.Map(document.getElementById('display-google-map'), options);
	directionsDisplay.setMap(map);
	directionsDisplay.setPanel(document.getElementById('display-google-map-directions'));
	
	panorama = map.getStreetView();
	panorama.setPosition(moso);
	panorama.setPov({
		heading: 165,
		zoom: 1,
		pitch: 0
	});
}

function toggleStreetView()
{
	var toggle = panorama.getVisible();
	if (toggle == false) 
	{
	  panorama.setVisible(true);
	} 
	else 
	{
	  panorama.setVisible(false);
	}
}

$(window).load(function()
{
	mapLarge();
});	

$(document).ready(function()
{
	$('#google-map, #display-google-map').css({'height':'' + screenHeight + 'px'});
	$('#get-directions').submit(function()
	{
		//window.onload = mapLarge();
		directions = $('#directions').val();
		if (directions != 'Need directions? Enter your address here...')
		{
			directionsaddress = directions.replace(/ /g, "+");
			var start = directionsaddress;
			var end = '76/78 Balmain Street, Richmond, Victoria, Australia';
			var request = {
				origin: start, 
				destination: end,
				travelMode: google.maps.DirectionsTravelMode.DRIVING
			};
			directionsService.route(request, function(result, status) 
			{
				if (status == google.maps.DirectionsStatus.OK) 
				{
					directionsDisplay.setDirections(result);
					auto = setInterval(function()
					{
						$('#google-map').animate({'bottom':'0'},{easing: easeType}).css({'z-index':'9998'});
					}, 3000);
				}
				else
				{
					auto = setInterval(function()
					{
						$('#google-map').animate({'bottom':'0'},{easing: easeType}).css({'background':'#fff','z-index':'9998'});
						$('#display-google-map-errors').css({'display':'block','background':'#fff','width':'100%','height':'' + screenHeight + 'px'});
		
						var height = screenHeight/2;
						$('#display-google-map-errors-html').css({'display':'block','margin-top':'' + height-50 + 'px','margin-left':'auto','margin-right':'auto'}).html('Could not calculate directions from ' + directionsaddress + ' to 76/78 Balmain Street, Richmond, Victoria, Australia.');
					}, 3000);
				}
			});
			
			$(this).find('button').removeClass('active').addClass('loading');
		}
		return false;
	});
	
	$('#close-google-map').click(function()
	{
		$('#google-map').animate({'bottom':'-' + screenHeight  + 'px'},{easing: easeType});
		$('#directions').val('Need directions? Enter your address here...');
		$('#get-directions').find('button').removeClass('loading').addClass('active');
		$('#display-google-map-errors').hide('fast');
		$('#display-google-map-directions').hide().html('');
		clearInterval(auto);
		return false;
	});
	
	$('#show-google-map-streetview').click(function()
	{
		toggleStreetView();
	});
	
	$('#show-google-map-directions').mouseenter(function()
	{
		$('#display-google-map-directions').slideDown();
		$(this).addClass('active');
	});
	$('#display-google-map-directions').mouseleave(function()
	{
		$('#display-google-map-directions').slideUp();
		$('#show-google-map-directions').removeClass('active');
	});
});
