jQuery(document).ready(function() {
	bluz_portfade();							
	bluz_engage();
	bluz_minor();
});


function bluz_portfade(){
	jQuery('ul.gallery li a img').hover(function(){
		jQuery(this).stop().fadeTo(500, 0.4); //portfolio effect
	}, function() {
		jQuery(this).stop().fadeTo(300, 1);
	});
}

function bluz_engage(){
	jQuery('ul.sf-menu').superfish({ 
        delay:       250  // one second delay on mouseout 
	});
	jQuery('#login-holder #login').fancybox();
	//jQuery('.lightbox').fancybox({'titlePosition' : 'outside'}); //andreas: disabled for images section
	Cufon.replace('h1, h2, h3, h4, h5, h6, .dropcap', {hover: 'true'}); 
	Cufon.replace('.plan h4, .footer-colum h4, .widget .title h5',{textShadow: '#000 0px -1px'});
	Cufon.replace('.slide h2, #pagename h2',{textShadow: '#000 1px 1px'});
	Cufon.replace('.colum h3',{textShadow: '#fff 1px 1px'});
	jQuery(".pricing-table tr:even").addClass("even");
}

function bluz_minor(){
	jQuery('span.close').click(function() {
		jQuery(this).parent().slideUp(400,"easeInCubic");					   
	});
	jQuery('.footer-colum li:last-child').css("border-bottom", "none");
	jQuery('.footer-colum li:first-child').css("border-top", "none");
	jQuery('[rel=tipsy]').tipsy({fade: true, gravity: 's'});
}

(function($) {
    $.fn.tipsy = function(options) {

        options = $.extend({}, $.fn.tipsy.defaults, options);
        
        return this.each(function() {
            
            var opts = $.fn.tipsy.elementOptions(this, options);
            
            $(this).hover(function() {

                $.data(this, 'cancel.tipsy', true);

                var tip = $.data(this, 'active.tipsy');
                if (!tip) {
                    tip = $('<div class="tipsy"><div class="tipsy-inner"/></div>');
                    tip.css({position: 'absolute', zIndex: 100000});
                    $.data(this, 'active.tipsy', tip);
                }

                if ($(this).attr('title') || typeof($(this).attr('original-title')) != 'string') {
                    $(this).attr('original-title', $(this).attr('title') || '').removeAttr('title');
                }

                var title;
                if (typeof opts.title == 'string') {
                    title = $(this).attr(opts.title == 'title' ? 'original-title' : opts.title);
                } else if (typeof opts.title == 'function') {
                    title = opts.title.call(this);
                }

                tip.find('.tipsy-inner')[opts.html ? 'html' : 'text'](title || opts.fallback);

                var pos = $.extend({}, $(this).offset(), {width: this.offsetWidth, height: this.offsetHeight});
                tip.get(0).className = 'tipsy'; // reset classname in case of dynamic gravity
                tip.remove().css({top: 0, left: 0, visibility: 'hidden', display: 'block'}).appendTo(document.body);
                var actualWidth = tip[0].offsetWidth, actualHeight = tip[0].offsetHeight;
                var gravity = (typeof opts.gravity == 'function') ? opts.gravity.call(this) : opts.gravity;

                switch (gravity.charAt(0)) {
                    case 'n':
                        tip.css({top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2}).addClass('tipsy-north');
                        break;
                    case 's':
                        tip.css({top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2}).addClass('tipsy-south');
                        break;
                    case 'e':
                        tip.css({top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth}).addClass('tipsy-east');
                        break;
                    case 'w':
                        tip.css({top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width}).addClass('tipsy-west');
                        break;
                }

                if (opts.fade) {
                    tip.css({opacity: 0, display: 'block', visibility: 'visible'}).animate({opacity: 0.8});
                } else {
                    tip.css({visibility: 'visible'});
                }

            }, function() {
                $.data(this, 'cancel.tipsy', false);
                var self = this;
                setTimeout(function() {
                    if ($.data(this, 'cancel.tipsy')) return;
                    var tip = $.data(self, 'active.tipsy');
                    if (opts.fade) {
                        tip.stop().fadeOut(function() { $(this).remove(); });
                    } else {
                        tip.remove();
                    }
                }, 100);

            });
            
        });
        
    };
    
    // Overwrite this method to provide options on a per-element basis.
    // For example, you could store the gravity in a 'tipsy-gravity' attribute:
    // return $.extend({}, options, {gravity: $(ele).attr('tipsy-gravity') || 'n' });
    // (remember - do not modify 'options' in place!)
    $.fn.tipsy.elementOptions = function(ele, options) {
        return $.metadata ? $.extend({}, options, $(ele).metadata()) : options;
    };
    
    $.fn.tipsy.defaults = {
        fade: false,
        fallback: '',
        gravity: 'n',
        html: false,
        title: 'title'
    };
    
    $.fn.tipsy.autoNS = function() {
        return $(this).offset().top > ($(document).scrollTop() + $(window).height() / 2) ? 's' : 'n';
    };
    
    $.fn.tipsy.autoWE = function() {
        return $(this).offset().left > ($(document).scrollLeft() + $(window).width() / 2) ? 'e' : 'w';
    };
    
})(jQuery);

/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */

;(function($){
	$.fn.superfish = function(op){

		var sf = $.fn.superfish,
			c = sf.c,
			$arrow = $(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),
			over = function(){
				var $$ = $(this), menu = getMenu($$);
				clearTimeout(menu.sfTimer);
				$$.showSuperfishUl().siblings().hideSuperfishUl();
			},
			out = function(){
				var $$ = $(this), menu = getMenu($$), o = sf.op;
				clearTimeout(menu.sfTimer);
				menu.sfTimer=setTimeout(function(){
					o.retainPath=($.inArray($$[0],o.$path)>-1);
					$$.hideSuperfishUl();
					if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
				},o.delay);	
			},
			getMenu = function($menu){
				var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
				sf.op = sf.o[menu.serial];
				return menu;
			},
			addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };
			
		return this.each(function() {
			var s = this.serial = sf.o.length;
			var o = $.extend({},sf.defaults,op);
			o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
				$(this).addClass([o.hoverClass,c.bcClass].join(' '))
					.filter('li:has(ul)').removeClass(o.pathClass);
			});
			sf.o[s] = sf.op = o;
			
			$('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
				if (o.autoArrows) addArrow( $('>a:first-child',this) );
			})
			.not('.'+c.bcClass)
				.hideSuperfishUl();
			
			var $a = $('a',this);
			$a.each(function(i){
				var $li = $a.eq(i).parents('li');
				$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
			});
			o.onInit.call(this);
			
		}).each(function() {
			var menuClasses = [c.menuClass];
			if (sf.op.dropShadows  && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
			$(this).addClass(menuClasses.join(' '));
		});
	};

	var sf = $.fn.superfish;
	sf.o = [];
	sf.op = {};
	sf.IE7fix = function(){
		var o = sf.op;
		if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined)
			this.toggleClass(sf.c.shadowClass+'-off');
		};
	sf.c = {
		bcClass     : 'sf-breadcrumb',
		menuClass   : 'sf-js-enabled',
		anchorClass : 'sf-with-ul',
		arrowClass  : 'sf-sub-indicator',
		shadowClass : 'sf-shadow'
	};
	sf.defaults = {
		hoverClass	: 'sfHover',
		pathClass	: 'overideThisToUse',
		pathLevels	: 1,
		delay		: 600,
		animationOpen : {height:'show', opacity:'show'}, 
		animationClose : {opacity:'hide'},
		speed		: 200,
		autoArrows	: false,
		dropShadows : false,
		disableHI	: false,		// true disables hoverIntent detection
		onInit		: function(){}, // callback functions
		onBeforeShow: function(){},
		onShow		: function(){},
		onHide		: function(){}
	};
	$.fn.extend({
		hideSuperfishUl : function(){ var o = $.fn.superfish.op, $ul = $('li.'+o.hoverClass,this).add(this); $ul.find('>ul').animate(o.animationClose, o.speed, function() { $(this).css('visibility','hidden'); $ul.removeClass(o.hoverClass); o.onBeforeShow.call($ul); }); return this; }, showSuperfishUl : function(){ var o = $.fn.superfish.op, $ul = this.addClass(o.hoverClass) .find('>ul:hidden').css('visibility','visible'); o.onBeforeShow.call($ul); $ul.animate(o.animationOpen,o.speed,o.easing,function(){ o.onShow.call(this); }); return this; 
		}
	});

	$(document).ready(function() {
		$(".sf-menu li li a").css("paddingLeft","10px");
	});


})(jQuery);
/*
 * jQuery Form Plugin
 * version: 2.18 (06-JAN-2009)
 * @requires jQuery v1.2.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
 *
 * Revision: $Id$
 */
;(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 };

    options = $.extend({
        url:  this.attr('action') || window.location.toString(),
        type: this.attr('method') || 'GET'
    }, 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) {
            $(options.target).html(data).each(oldSuccess, arguments);
        });
    }
    else if (options.success)
        callbacks.push(options.success);

    options.success = function(data, status) {
        for (var i=0, max=callbacks.length; i < max; i++)
            callbacks[i].apply(options, [data, status, $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;

    // options.iframe allows user to force iframe mode
   if (options.iframe || found) { 
       // hack to fix Safari hang (thanks to Tim Molendijk for this)
       // see:  http://groups.google.com/group/jquery-dev/browse_thread/thread/36395b7ab510dd5d
       if ($.browser.safari && 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 = jQuery.extend(true, {}, $.extend(true, {}, $.ajaxSettings), opts);

        var id = 'jqFormIO' + (new Date().getTime());
        var $io = $('<iframe id="' + id + '" name="' + id + '" />');
        var io = $io[0];

        if ($.browser.msie || $.browser.opera) 
            io.src = 'javascript:false;document.write("");';
        $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','about:blank'); // 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 && jQuery.active--;
			return;
        }
        if (xhr.aborted)
            return;
        
        var cbInvoked = 0;
        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) {
                options.extraData = options.extraData || {};
                options.extraData[n] = sub.value;
                if (sub.type == "image") {
                    options.extraData[name+'.x'] = form.clk_x;
                    options.extraData[name+'.y'] = form.clk_y;
                }
            }
        }

        // take a breath so that pending repaints get some cpu time before the upload starts
        setTimeout(function() {
            // make sure form attrs are set
            var t = $form.attr('target'), a = $form.attr('action');
            $form.attr({
                target:   id,
                method:   'POST',
                action:   opts.url
            });
            
            // ie borks in some cases when setting encoding
            if (! options.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 (options.extraData)
                    for (var n in options.extraData)
                        extraInputs.push(
                            $('<input type="hidden" name="'+n+'" value="'+options.extraData[n]+'" />')
                                .appendTo(form)[0]);
            
                // add iframe to doc and submit the form
                $io.appendTo('body');
                io.attachEvent ? io.attachEvent('onload', cb) : io.addEventListener('load', cb, false);
                form.submit();
            }
            finally {
                // reset attrs and remove "extra" input elements
                $form.attr('action', a);
                t ? $form.attr('target', t) : $form.removeAttr('target');
                $(extraInputs).remove();
            }
        }, 10);

        function cb() {
            if (cbInvoked++) return;
            
            io.detachEvent ? io.detachEvent('onload', cb) : io.removeEventListener('load', cb, false);

            var operaHack = 0;
            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;
                
                if (doc.body == null && !operaHack && $.browser.opera) {
                    // In Opera 9.2.x the iframe DOM is not always traversable when
                    // the onload callback fires so we give Opera 100ms to right itself
                    operaHack = 1;
                    cbInvoked--;
                    setTimeout(cb, 100);
                    return;
                }
                
                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') {
                    var ta = doc.getElementsByTagName('textarea')[0];
                    xhr.responseText = ta ? ta.value : xhr.responseText;
                }
                else if (opts.dataType == 'xml' && !xhr.responseXML && xhr.responseText != null) {
                    xhr.responseXML = toXml(xhr.responseText);
                }
                data = $.httpData(xhr, opts.dataType);
            }
            catch(e){
                ok = false;
                $.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.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() {
        $(this).ajaxSubmit(options);
        return false;
    }).each(function() {
        // store options in hash
        $(":submit,input:image", this).bind('click.form-plugin',function(e) {
            var form = this.form;
            form.clk = this;
            if (this.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 = $(this).offset();
                    form.clk_x = e.pageX - offset.left;
                    form.clk_y = e.pageY - offset.top;
                } else {
                    form.clk_x = e.pageX - this.offsetLeft;
                    form.clk_y = e.pageY - this.offsetTop;
                }
            }
            // clear form vars
            setTimeout(function() { form.clk = form.clk_x = form.clk_y = null; }, 10);
        });
    });
};

// ajaxFormUnbind unbinds the event handlers that were bound by ajaxForm
$.fn.ajaxFormUnbind = function() {
    this.unbind('submit.form-plugin');
    return this.each(function() {
        $(":submit,input:image", this).unbind('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+'.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 them here
        var inputs = form.getElementsByTagName("input");
        for(var i=0, max=inputs.length; i < max; i++) {
            var input = inputs[i];
            var n = input.name;
            if(n && !input.disabled && input.type == "image" && form.clk == input)
                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) {
                // extra pain for IE...
                var v = $.browser.msie && !(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 && window.console && window.console.log)
        window.console.log('[jquery.form] ' + Array.prototype.join.call(arguments,''));
};

})(jQuery);
/*
 * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
 *
 * Uses the built In easIng capabilities added In jQuery 1.1
 * to offer multiple easIng options
 *
 * Copyright (c) 2007 George Smith
 * Licensed under the MIT License:
 *   http://www.opensource.org/licenses/mit-license.php
 */

// 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) + d;
	},
	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;
	}
});
/*!
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2009 M. Alsup
 * Version: 2.72 (09-SEP-2009)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Requires: jQuery v1.2.6 or later
 *
 * Originally based on the work of:
 *	1) Matt Oakes
 *	2) Torsten Baldes (http://medienfreunde.com/lab/innerfade/)
 *	3) Benjamin Sterling (http://www.benjaminsterling.com/experiments/jqShuffle/)
 */
;(function($) {

var ver = '2.72';

// if $.support is not defined (pre jQuery 1.3) add what I need
if ($.support == undefined) {
	$.support = {
		opacity: !($.browser.msie)
	};
}

function debug(s) {
	if ($.fn.cycle.debug)
		log(s);
}		
function log() {
	if (window.console && window.console.log)
		window.console.log('[cycle] ' + Array.prototype.join.call(arguments,' '));
	//$('body').append('<div>'+Array.prototype.join.call(arguments,' ')+'</div>');
};

// the options arg can be...
//   a number  - indicates an immediate transition should occur to the given slide index
//   a string  - 'stop', 'pause', 'resume', or the name of a transition effect (ie, 'fade', 'zoom', etc)
//   an object - properties to control the slideshow
//
// the arg2 arg can be...
//   the name of an fx (only used in conjunction with a numeric value for 'options')
//   the value true (only used in conjunction with a options == 'resume') and indicates
//	 that the resume should occur immediately (not wait for next timeout)

$.fn.cycle = function(options, arg2) {
	var o = { s: this.selector, c: this.context };

	// in 1.3+ we can fix mistakes with the ready state
	if (this.length === 0 && options != 'stop') {
		if (!$.isReady && o.s) {
			log('DOM not ready, queuing slideshow');
			$(function() {
				$(o.s,o.c).cycle(options,arg2);
			});
			return this;
		}
		// is your DOM ready?  http://docs.jquery.com/Tutorials:Introducing_$(document).ready()
		log('terminating; zero elements found by selector' + ($.isReady ? '' : ' (DOM not ready)'));
		return this;
	}

	// iterate the matched nodeset
	return this.each(function() {
		var opts = handleArguments(this, options, arg2);
		if (opts === false)
			return;

		// stop existing slideshow for this container (if there is one)
		if (this.cycleTimeout)
			clearTimeout(this.cycleTimeout);
		this.cycleTimeout = this.cyclePause = 0;

		var $cont = $(this);
		var $slides = opts.slideExpr ? $(opts.slideExpr, this) : $cont.children();
		var els = $slides.get();
		if (els.length < 2) {
			log('terminating; too few slides: ' + els.length);
			return;
		}

		var opts2 = buildOptions($cont, $slides, els, opts, o);
		if (opts2 === false)
			return;

		var startTime = opts2.continuous ? 10 : getTimeout(opts2.currSlide, opts2.nextSlide, opts2, !opts2.rev);

		// if it's an auto slideshow, kick it off
		if (startTime) {
			startTime += (opts2.delay || 0);
			if (startTime < 10)
				startTime = 10;
			debug('first timeout: ' + startTime);
			this.cycleTimeout = setTimeout(function(){go(els,opts2,0,!opts2.rev)}, startTime);
		}
	});
};

// process the args that were passed to the plugin fn
function handleArguments(cont, options, arg2) {
	if (cont.cycleStop == undefined)
		cont.cycleStop = 0;
	if (options === undefined || options === null)
		options = {};
	if (options.constructor == String) {
		switch(options) {
		case 'stop':
			cont.cycleStop++; // callbacks look for change
			if (cont.cycleTimeout)
				clearTimeout(cont.cycleTimeout);
			cont.cycleTimeout = 0;
			$(cont).removeData('cycle.opts');
			return false;
		case 'pause':
			cont.cyclePause = 1;
			return false;
		case 'resume':
			cont.cyclePause = 0;
			if (arg2 === true) { // resume now!
				options = $(cont).data('cycle.opts');
				if (!options) {
					log('options not found, can not resume');
					return false;
				}
				if (cont.cycleTimeout) {
					clearTimeout(cont.cycleTimeout);
					cont.cycleTimeout = 0;
				}
				go(options.elements, options, 1, 1);
			}
			return false;
		case 'prev':
		case 'next':
			var opts = $(cont).data('cycle.opts');
			if (!opts) {
				log('options not found, "prev/next" ignored');
				return false;
			}
			$.fn.cycle[options](opts);
			return false;
		default:
			options = { fx: options };
		};
		return options;
	}
	else if (options.constructor == Number) {
		// go to the requested slide
		var num = options;
		options = $(cont).data('cycle.opts');
		if (!options) {
			log('options not found, can not advance slide');
			return false;
		}
		if (num < 0 || num >= options.elements.length) {
			log('invalid slide index: ' + num);
			return false;
		}
		options.nextSlide = num;
		if (cont.cycleTimeout) {
			clearTimeout(cont.cycleTimeout);
			cont.cycleTimeout = 0;
		}
		if (typeof arg2 == 'string')
			options.oneTimeFx = arg2;
		go(options.elements, options, 1, num >= options.currSlide);
		return false;
	}
	return options;
};

function removeFilter(el, opts) {
	if (!$.support.opacity && opts.cleartype && el.style.filter) {
		try { el.style.removeAttribute('filter'); }
		catch(smother) {} // handle old opera versions
	}
};

// one-time initialization
function buildOptions($cont, $slides, els, options, o) {
	// support metadata plugin (v1.0 and v2.0)
	var opts = $.extend({}, $.fn.cycle.defaults, options || {}, $.metadata ? $cont.metadata() : $.meta ? $cont.data() : {});
	if (opts.autostop)
		opts.countdown = opts.autostopCount || els.length;

	var cont = $cont[0];
	$cont.data('cycle.opts', opts);
	opts.$cont = $cont;
	opts.stopCount = cont.cycleStop;
	opts.elements = els;
	opts.before = opts.before ? [opts.before] : [];
	opts.after = opts.after ? [opts.after] : [];
	opts.after.unshift(function(){ opts.busy=0; });

	// push some after callbacks
	if (!$.support.opacity && opts.cleartype)
		opts.after.push(function() { removeFilter(this, opts); });
	if (opts.continuous)
		opts.after.push(function() { go(els,opts,0,!opts.rev); });

	saveOriginalOpts(opts);

	// clearType corrections
	if (!$.support.opacity && opts.cleartype && !opts.cleartypeNoBg)
		clearTypeFix($slides);

	// container requires non-static position so that slides can be position within
	if ($cont.css('position') == 'static')
		$cont.css('position', 'relative');
	if (opts.width)
		$cont.width(opts.width);
	if (opts.height && opts.height != 'auto')
		$cont.height(opts.height);

	if (opts.startingSlide)
		opts.startingSlide = parseInt(opts.startingSlide);

	// if random, mix up the slide array
	if (opts.random) {
		opts.randomMap = [];
		for (var i = 0; i < els.length; i++)
			opts.randomMap.push(i);
		opts.randomMap.sort(function(a,b) {return Math.random() - 0.5;});
		opts.randomIndex = 0;
		opts.startingSlide = opts.randomMap[0];
	}
	else if (opts.startingSlide >= els.length)
		opts.startingSlide = 0; // catch bogus input
	opts.currSlide = opts.startingSlide = opts.startingSlide || 0;
	var first = opts.startingSlide;

	// set position and zIndex on all the slides
	$slides.css({position: 'absolute', top:0, left:0}).hide().each(function(i) {
		var z = first ? i >= first ? els.length - (i-first) : first-i : els.length-i;
		$(this).css('z-index', z)
	});

	// make sure first slide is visible
	$(els[first]).css('opacity',1).show(); // opacity bit needed to handle restart use case
	removeFilter(els[first], opts);

	// stretch slides
	if (opts.fit && opts.width)
		$slides.width(opts.width);
	if (opts.fit && opts.height && opts.height != 'auto')
		$slides.height(opts.height);

	// stretch container
	var reshape = opts.containerResize && !$cont.innerHeight();
	if (reshape) { // do this only if container has no size http://tinyurl.com/da2oa9
		var maxw = 0, maxh = 0;
		for(var j=0; j < els.length; j++) {
			var $e = $(els[j]), e = $e[0], w = $e.outerWidth(), h = $e.outerHeight();
			if (!w) w = e.offsetWidth;
			if (!h) h = e.offsetHeight;
			maxw = w > maxw ? w : maxw;
			maxh = h > maxh ? h : maxh;
		}
		if (maxw > 0 && maxh > 0)
			$cont.css({width:maxw+'px',height:maxh+'px'});
	}

	if (opts.pause)
		$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});

	if (supportMultiTransitions(opts) === false)
		return false;

	// apparently a lot of people use image slideshows without height/width attributes on the images.
	// Cycle 2.50+ requires the sizing info for every slide; this block tries to deal with that.
	var requeue = false;
	options.requeueAttempts = options.requeueAttempts || 0;
	$slides.each(function() {
		// try to get height/width of each slide
		var $el = $(this);
		this.cycleH = (opts.fit && opts.height) ? opts.height : $el.height();
		this.cycleW = (opts.fit && opts.width) ? opts.width : $el.width();

		if ( $el.is('img') ) {
			// sigh..  sniffing, hacking, shrugging...  this crappy hack tries to account for what browsers do when
			// an image is being downloaded and the markup did not include sizing info (height/width attributes);
			// there seems to be some "default" sizes used in this situation
			var loadingIE	= ($.browser.msie  && this.cycleW == 28 && this.cycleH == 30 && !this.complete);
			var loadingFF	= ($.browser.mozilla && this.cycleW == 34 && this.cycleH == 19 && !this.complete);
			var loadingOp	= ($.browser.opera && ((this.cycleW == 42 && this.cycleH == 19) || (this.cycleW == 37 && this.cycleH == 17)) && !this.complete);
			var loadingOther = (this.cycleH == 0 && this.cycleW == 0 && !this.complete);
			// don't requeue for images that are still loading but have a valid size
			if (loadingIE || loadingFF || loadingOp || loadingOther) {
				if (o.s && opts.requeueOnImageNotLoaded && ++options.requeueAttempts < 100) { // track retry count so we don't loop forever
					log(options.requeueAttempts,' - img slide not loaded, requeuing slideshow: ', this.src, this.cycleW, this.cycleH);
					setTimeout(function() {$(o.s,o.c).cycle(options)}, opts.requeueTimeout);
					requeue = true;
					return false; // break each loop
				}
				else {
					log('could not determine size of image: '+this.src, this.cycleW, this.cycleH);
				}
			}
		}
		return true;
	});

	if (requeue)
		return false;

	opts.cssBefore = opts.cssBefore || {};
	opts.animIn = opts.animIn || {};
	opts.animOut = opts.animOut || {};

	$slides.not(':eq('+first+')').css(opts.cssBefore);
	if (opts.cssFirst)
		$($slides[first]).css(opts.cssFirst);

	if (opts.timeout) {
		opts.timeout = parseInt(opts.timeout);
		// ensure that timeout and speed settings are sane
		if (opts.speed.constructor == String)
			opts.speed = $.fx.speeds[opts.speed] || parseInt(opts.speed);
		if (!opts.sync)
			opts.speed = opts.speed / 2;
		while((opts.timeout - opts.speed) < 250) // sanitize timeout
			opts.timeout += opts.speed;
	}
	if (opts.easing)
		opts.easeIn = opts.easeOut = opts.easing;
	if (!opts.speedIn)
		opts.speedIn = opts.speed;
	if (!opts.speedOut)
		opts.speedOut = opts.speed;

	opts.slideCount = els.length;
	opts.currSlide = opts.lastSlide = first;
	if (opts.random) {
		opts.nextSlide = opts.currSlide;
		if (++opts.randomIndex == els.length)
			opts.randomIndex = 0;
		opts.nextSlide = opts.randomMap[opts.randomIndex];
	}
	else
		opts.nextSlide = opts.startingSlide >= (els.length-1) ? 0 : opts.startingSlide+1;

	// run transition init fn
	if (!opts.multiFx) {
		var init = $.fn.cycle.transitions[opts.fx];
		if ($.isFunction(init))
			init($cont, $slides, opts);
		else if (opts.fx != 'custom' && !opts.multiFx) {
			log('unknown transition: ' + opts.fx,'; slideshow terminating');
			return false;
		}
	}

	// fire artificial events
	var e0 = $slides[first];
	if (opts.before.length)
		opts.before[0].apply(e0, [e0, e0, opts, true]);
	if (opts.after.length > 1)
		opts.after[1].apply(e0, [e0, e0, opts, true]);

	if (opts.next)
		$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1)});
	if (opts.prev)
		$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1)});
	if (opts.pager)
		buildPager(els,opts);

	exposeAddSlide(opts, els);

	return opts;
};

// save off original opts so we can restore after clearing state
function saveOriginalOpts(opts) {
	opts.original = { before: [], after: [] };
	opts.original.cssBefore = $.extend({}, opts.cssBefore);
	opts.original.cssAfter  = $.extend({}, opts.cssAfter);
	opts.original.animIn	= $.extend({}, opts.animIn);
	opts.original.animOut   = $.extend({}, opts.animOut);
	$.each(opts.before, function() { opts.original.before.push(this); });
	$.each(opts.after,  function() { opts.original.after.push(this); });
};

function supportMultiTransitions(opts) {
	var i, tx, txs = $.fn.cycle.transitions;
	// look for multiple effects
	if (opts.fx.indexOf(',') > 0) {
		opts.multiFx = true;
		opts.fxs = opts.fx.replace(/\s*/g,'').split(',');
		// discard any bogus effect names
		for (i=0; i < opts.fxs.length; i++) {
			var fx = opts.fxs[i];
			tx = txs[fx];
			if (!tx || !txs.hasOwnProperty(fx) || !$.isFunction(tx)) {
				log('discarding unknown transition: ',fx);
				opts.fxs.splice(i,1);
				i--;
			}
		}
		// if we have an empty list then we threw everything away!
		if (!opts.fxs.length) {
			log('No valid transitions named; slideshow terminating.');
			return false;
		}
	}
	else if (opts.fx == 'all') {  // auto-gen the list of transitions
		opts.multiFx = true;
		opts.fxs = [];
		for (p in txs) {
			tx = txs[p];
			if (txs.hasOwnProperty(p) && $.isFunction(tx))
				opts.fxs.push(p);
		}
	}
	if (opts.multiFx && opts.randomizeEffects) {
		// munge the fxs array to make effect selection random
		var r1 = Math.floor(Math.random() * 20) + 30;
		for (i = 0; i < r1; i++) {
			var r2 = Math.floor(Math.random() * opts.fxs.length);
			opts.fxs.push(opts.fxs.splice(r2,1)[0]);
		}
		debug('randomized fx sequence: ',opts.fxs);
	}
	return true;
};

// provide a mechanism for adding slides after the slideshow has started
function exposeAddSlide(opts, els) {
	opts.addSlide = function(newSlide, prepend) {
		var $s = $(newSlide), s = $s[0];
		if (!opts.autostopCount)
			opts.countdown++;
		els[prepend?'unshift':'push'](s);
		if (opts.els)
			opts.els[prepend?'unshift':'push'](s); // shuffle needs this
		opts.slideCount = els.length;

		$s.css('position','absolute');
		$s[prepend?'prependTo':'appendTo'](opts.$cont);

		if (prepend) {
			opts.currSlide++;
			opts.nextSlide++;
		}

		if (!$.support.opacity && opts.cleartype && !opts.cleartypeNoBg)
			clearTypeFix($s);

		if (opts.fit && opts.width)
			$s.width(opts.width);
		if (opts.fit && opts.height && opts.height != 'auto')
			$slides.height(opts.height);
		s.cycleH = (opts.fit && opts.height) ? opts.height : $s.height();
		s.cycleW = (opts.fit && opts.width) ? opts.width : $s.width();

		$s.css(opts.cssBefore);

		if (opts.pager)
			$.fn.cycle.createPagerAnchor(els.length-1, s, $(opts.pager), els, opts);

		if ($.isFunction(opts.onAddSlide))
			opts.onAddSlide($s);
		else
			$s.hide(); // default behavior
	};
}

// reset internal state; we do this on every pass in order to support multiple effects
$.fn.cycle.resetState = function(opts, fx) {
	fx = fx || opts.fx;
	opts.before = []; opts.after = [];
	opts.cssBefore = $.extend({}, opts.original.cssBefore);
	opts.cssAfter  = $.extend({}, opts.original.cssAfter);
	opts.animIn	= $.extend({}, opts.original.animIn);
	opts.animOut   = $.extend({}, opts.original.animOut);
	opts.fxFn = null;
	$.each(opts.original.before, function() { opts.before.push(this); });
	$.each(opts.original.after,  function() { opts.after.push(this); });

	// re-init
	var init = $.fn.cycle.transitions[fx];
	if ($.isFunction(init))
		init(opts.$cont, $(opts.elements), opts);
};

// this is the main engine fn, it handles the timeouts, callbacks and slide index mgmt
function go(els, opts, manual, fwd) {
	// opts.busy is true if we're in the middle of an animation
	if (manual && opts.busy && opts.manualTrump) {
		// let manual transitions requests trump active ones
		$(els).stop(true,true);
		opts.busy = false;
	}
	// don't begin another timeout-based transition if there is one active
	if (opts.busy)
		return;

	var p = opts.$cont[0], curr = els[opts.currSlide], next = els[opts.nextSlide];

	// stop cycling if we have an outstanding stop request
	if (p.cycleStop != opts.stopCount || p.cycleTimeout === 0 && !manual)
		return;

	// check to see if we should stop cycling based on autostop options
	if (!manual && !p.cyclePause &&
		((opts.autostop && (--opts.countdown <= 0)) ||
		(opts.nowrap && !opts.random && opts.nextSlide < opts.currSlide))) {
		if (opts.end)
			opts.end(opts);
		return;
	}

	// if slideshow is paused, only transition on a manual trigger
	if (manual || !p.cyclePause) {
		var fx = opts.fx;
		// keep trying to get the slide size if we don't have it yet
		curr.cycleH = curr.cycleH || $(curr).height();
		curr.cycleW = curr.cycleW || $(curr).width();
		next.cycleH = next.cycleH || $(next).height();
		next.cycleW = next.cycleW || $(next).width();

		// support multiple transition types
		if (opts.multiFx) {
			if (opts.lastFx == undefined || ++opts.lastFx >= opts.fxs.length)
				opts.lastFx = 0;
			fx = opts.fxs[opts.lastFx];
			opts.currFx = fx;
		}

		// one-time fx overrides apply to:  $('div').cycle(3,'zoom');
		if (opts.oneTimeFx) {
			fx = opts.oneTimeFx;
			opts.oneTimeFx = null;
		}

		$.fn.cycle.resetState(opts, fx);

		// run the before callbacks
		if (opts.before.length)
			$.each(opts.before, function(i,o) {
				if (p.cycleStop != opts.stopCount) return;
				o.apply(next, [curr, next, opts, fwd]);
			});

		// stage the after callacks
		var after = function() {
			$.each(opts.after, function(i,o) {
				if (p.cycleStop != opts.stopCount) return;
				o.apply(next, [curr, next, opts, fwd]);
			});
		};

		if (opts.nextSlide != opts.currSlide) {
			// get ready to perform the transition
			opts.busy = 1;
			if (opts.fxFn) // fx function provided?
				opts.fxFn(curr, next, opts, after, fwd);
			else if ($.isFunction($.fn.cycle[opts.fx])) // fx plugin ?
				$.fn.cycle[opts.fx](curr, next, opts, after);
			else
				$.fn.cycle.custom(curr, next, opts, after, manual && opts.fastOnEvent);
		}

		// calculate the next slide
		opts.lastSlide = opts.currSlide;
		if (opts.random) {
			opts.currSlide = opts.nextSlide;
			if (++opts.randomIndex == els.length)
				opts.randomIndex = 0;
			opts.nextSlide = opts.randomMap[opts.randomIndex];
		}
		else { // sequence
			var roll = (opts.nextSlide + 1) == els.length;
			opts.nextSlide = roll ? 0 : opts.nextSlide+1;
			opts.currSlide = roll ? els.length-1 : opts.nextSlide-1;
		}

		if (opts.pager)
			$.fn.cycle.updateActivePagerLink(opts.pager, opts.currSlide);
	}

	// stage the next transtion
	var ms = 0;
	if (opts.timeout && !opts.continuous)
		ms = getTimeout(curr, next, opts, fwd);
	else if (opts.continuous && p.cyclePause) // continuous shows work off an after callback, not this timer logic
		ms = 10;
	if (ms > 0)
		p.cycleTimeout = setTimeout(function(){ go(els, opts, 0, !opts.rev) }, ms);
};

// invoked after transition
$.fn.cycle.updateActivePagerLink = function(pager, currSlide) {
	$(pager).find('a').removeClass('activeSlide').filter('a:eq('+currSlide+')').addClass('activeSlide');
};

// calculate timeout value for current transition
function getTimeout(curr, next, opts, fwd) {
	if (opts.timeoutFn) {
		// call user provided calc fn
		var t = opts.timeoutFn(curr,next,opts,fwd);
		while ((t - opts.speed) < 250) // sanitize timeout
			t += opts.speed;
		debug('calculated timeout: ' + t + '; speed: ' + opts.speed);
		if (t !== false)
			return t;
	}
	return opts.timeout;
};

// expose next/prev function, caller must pass in state
$.fn.cycle.next = function(opts) { advance(opts, opts.rev?-1:1); };
$.fn.cycle.prev = function(opts) { advance(opts, opts.rev?1:-1);};

// advance slide forward or back
function advance(opts, val) {
	var els = opts.elements;
	var p = opts.$cont[0], timeout = p.cycleTimeout;
	if (timeout) {
		clearTimeout(timeout);
		p.cycleTimeout = 0;
	}
	if (opts.random && val < 0) {
		// move back to the previously display slide
		opts.randomIndex--;
		if (--opts.randomIndex == -2)
			opts.randomIndex = els.length-2;
		else if (opts.randomIndex == -1)
			opts.randomIndex = els.length-1;
		opts.nextSlide = opts.randomMap[opts.randomIndex];
	}
	else if (opts.random) {
		if (++opts.randomIndex == els.length)
			opts.randomIndex = 0;
		opts.nextSlide = opts.randomMap[opts.randomIndex];
	}
	else {
		opts.nextSlide = opts.currSlide + val;
		if (opts.nextSlide < 0) {
			if (opts.nowrap) return false;
			opts.nextSlide = els.length - 1;
		}
		else if (opts.nextSlide >= els.length) {
			if (opts.nowrap) return false;
			opts.nextSlide = 0;
		}
	}

	if ($.isFunction(opts.prevNextClick))
		opts.prevNextClick(val > 0, opts.nextSlide, els[opts.nextSlide]);
	go(els, opts, 1, val>=0);
	return false;
};

function buildPager(els, opts) {
	var $p = $(opts.pager);
	$.each(els, function(i,o) {
		$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);
	});
   $.fn.cycle.updateActivePagerLink(opts.pager, opts.startingSlide);
};

$.fn.cycle.createPagerAnchor = function(i, el, $p, els, opts) {
	var a;
	if ($.isFunction(opts.pagerAnchorBuilder))
		a = opts.pagerAnchorBuilder(i,el);
	else
		a = '<a href="#">'+(i+1)+'</a>';
		
	if (!a)
		return;
	var $a = $(a);
	// don't reparent if anchor is in the dom
	if ($a.parents('body').length === 0) {
		var arr = [];
		if ($p.length > 1) {
			$p.each(function() {
				var $clone = $a.clone(true);
				$(this).append($clone);
				arr.push($clone);
			});
			$a = $(arr);
		}
		else {
			$a.appendTo($p);
		}
	}

	$a.bind(opts.pagerEvent, function(e) {
		e.preventDefault();
		opts.nextSlide = i;
		var p = opts.$cont[0], timeout = p.cycleTimeout;
		if (timeout) {
			clearTimeout(timeout);
			p.cycleTimeout = 0;
		}
		if ($.isFunction(opts.pagerClick))
			opts.pagerClick(opts.nextSlide, els[opts.nextSlide]);
		go(els,opts,1,opts.currSlide < i); // trigger the trans
		return false;
	});
	
	if (opts.pagerEvent != 'click')
		$a.click(function(){return false;}); // supress click
	
	if (opts.pauseOnPagerHover)
		$a.hover(function() { opts.$cont[0].cyclePause++; }, function() { opts.$cont[0].cyclePause--; } );
};

// helper fn to calculate the number of slides between the current and the next
$.fn.cycle.hopsFromLast = function(opts, fwd) {
	var hops, l = opts.lastSlide, c = opts.currSlide;
	if (fwd)
		hops = c > l ? c - l : opts.slideCount - l;
	else
		hops = c < l ? l - c : l + opts.slideCount - c;
	return hops;
};

// fix clearType problems in ie6 by setting an explicit bg color
// (otherwise text slides look horrible during a fade transition)
function clearTypeFix($slides) {
	function hex(s) {
		s = parseInt(s).toString(16);
		return s.length < 2 ? '0'+s : s;
	};
	function getBg(e) {
		for ( ; e && e.nodeName.toLowerCase() != 'html'; e = e.parentNode) {
			var v = $.css(e,'background-color');
			if (v.indexOf('rgb') >= 0 ) {
				var rgb = v.match(/\d+/g);
				return '#'+ hex(rgb[0]) + hex(rgb[1]) + hex(rgb[2]);
			}
			if (v && v != 'transparent')
				return v;
		}
		return '#ffffff';
	};
	$slides.each(function() { $(this).css('background-color', getBg(this)); });
};

// reset common props before the next transition
$.fn.cycle.commonReset = function(curr,next,opts,w,h,rev) {
	$(opts.elements).not(curr).hide();
	opts.cssBefore.opacity = 1;
	opts.cssBefore.display = 'block';
	if (w !== false && next.cycleW > 0)
		opts.cssBefore.width = next.cycleW;
	if (h !== false && next.cycleH > 0)
		opts.cssBefore.height = next.cycleH;
	opts.cssAfter = opts.cssAfter || {};
	opts.cssAfter.display = 'none';
	$(curr).css('zIndex',opts.slideCount + (rev === true ? 1 : 0));
	$(next).css('zIndex',opts.slideCount + (rev === true ? 0 : 1));
};

// the actual fn for effecting a transition
$.fn.cycle.custom = function(curr, next, opts, cb, speedOverride) {
	var $l = $(curr), $n = $(next);
	var speedIn = opts.speedIn, speedOut = opts.speedOut, easeIn = opts.easeIn, easeOut = opts.easeOut;
	$n.css(opts.cssBefore);
	if (speedOverride) {
		if (typeof speedOverride == 'number')
			speedIn = speedOut = speedOverride;
		else
			speedIn = speedOut = 1;
		easeIn = easeOut = null;
	}
	var fn = function() {$n.animate(opts.animIn, speedIn, easeIn, cb)};
	$l.animate(opts.animOut, speedOut, easeOut, function() {
		if (opts.cssAfter) $l.css(opts.cssAfter);
		if (!opts.sync) fn();
	});
	if (opts.sync) fn();
};

// transition definitions - only fade is defined here, transition pack defines the rest
$.fn.cycle.transitions = {
	fade: function($cont, $slides, opts) {
		$slides.not(':eq('+opts.currSlide+')').css('opacity',0);
		opts.before.push(function(curr,next,opts) {
			$.fn.cycle.commonReset(curr,next,opts);
			opts.cssBefore.opacity = 0;
		});
		opts.animIn	   = { opacity: 1 };
		opts.animOut   = { opacity: 0 };
		opts.cssBefore = { top: 0, left: 0 };
	}
};

$.fn.cycle.ver = function() { return ver; };

// override these globally if you like (they are all optional)
$.fn.cycle.defaults = {
	fx:			  'fade', // name of transition effect (or comma separated names, ex: fade,scrollUp,shuffle)
	timeout:	   4000,  // milliseconds between slide transitions (0 to disable auto advance)
	timeoutFn:	 null,  // callback for determining per-slide timeout value:  function(currSlideElement, nextSlideElement, options, forwardFlag)
	continuous:	   0,	  // true to start next transition immediately after current one completes
	speed:		   1000,  // speed of the transition (any valid fx speed value)
	speedIn:	   null,  // speed of the 'in' transition
	speedOut:	   null,  // speed of the 'out' transition
	next:		   null,  // selector for element to use as click trigger for next slide
	prev:		   null,  // selector for element to use as click trigger for previous slide
	prevNextClick: null,  // callback fn for prev/next clicks:	function(isNext, zeroBasedSlideIndex, slideElement)
	prevNextEvent:'click',// event which drives the manual transition to the previous or next slide
	pager:		   null,  // selector for element to use as pager container
	pagerClick:	   null,  // callback fn for pager clicks:	function(zeroBasedSlideIndex, slideElement)
	pagerEvent:	  'click', // name of event which drives the pager navigation
	pagerAnchorBuilder: null, // callback fn for building anchor links:  function(index, DOMelement)
	before:		   null,  // transition callback (scope set to element to be shown):	 function(currSlideElement, nextSlideElement, options, forwardFlag)
	after:		   null,  // transition callback (scope set to element that was shown):  function(currSlideElement, nextSlideElement, options, forwardFlag)
	end:		   null,  // callback invoked when the slideshow terminates (use with autostop or nowrap options): function(options)
	easing:		   null,  // easing method for both in and out transitions
	easeIn:		   null,  // easing for "in" transition
	easeOut:	   null,  // easing for "out" transition
	shuffle:	   null,  // coords for shuffle animation, ex: { top:15, left: 200 }
	animIn:		   null,  // properties that define how the slide animates in
	animOut:	   null,  // properties that define how the slide animates out
	cssBefore:	   null,  // properties that define the initial state of the slide before transitioning in
	cssAfter:	   null,  // properties that defined the state of the slide after transitioning out
	fxFn:		   null,  // function used to control the transition: function(currSlideElement, nextSlideElement, options, afterCalback, forwardFlag)
	height:		  'auto', // container height
	startingSlide: 0,	  // zero-based index of the first slide to be displayed
	sync:		   1,	  // true if in/out transitions should occur simultaneously
	random:		   0,	  // true for random, false for sequence (not applicable to shuffle fx)
	fit:		   0,	  // force slides to fit container
	containerResize: 1,	  // resize container to fit largest slide
	pause:		   0,	  // true to enable "pause on hover"
	pauseOnPagerHover: 0, // true to pause when hovering over pager link
	autostop:	   0,	  // true to end slideshow after X transitions (where X == slide count)
	autostopCount: 0,	  // number of transitions (optionally used with autostop to define X)
	delay:		   0,	  // additional delay (in ms) for first transition (hint: can be negative)
	slideExpr:	   null,  // expression for selecting slides (if something other than all children is required)
	cleartype:	   !$.support.opacity,  // true if clearType corrections should be applied (for IE)
	cleartypeNoBg: false, // set to true to disable extra cleartype fixing (leave false to force background color setting on slides)
	nowrap:		   0,	  // true to prevent slideshow from wrapping
	fastOnEvent:   0,	  // force fast transitions when triggered manually (via pager or prev/next); value == time in ms
	randomizeEffects: 1,  // valid when multiple effects are used; true to make the effect sequence random
	rev:		   0,	 // causes animations to transition in reverse
	manualTrump:   true,  // causes manual transition to stop an active transition instead of being ignored
	requeueOnImageNotLoaded: true, // requeue the slideshow if any image slides are not yet loaded
	requeueTimeout: 250   // ms delay for requeue
};

})(jQuery);


/*!
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2008 M. Alsup
 * Version:	 2.72
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
(function($) {

//
// These functions define one-time slide initialization for the named
// transitions. To save file size feel free to remove any of these that you
// don't need.
//
$.fn.cycle.transitions.none = function($cont, $slides, opts) {
	opts.fxFn = function(curr,next,opts,after){
		$(next).show();
		$(curr).hide();
		after();
	};
}

// scrollUp/Down/Left/Right
$.fn.cycle.transitions.scrollUp = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push($.fn.cycle.commonReset);
	var h = $cont.height();
	opts.cssBefore ={ top: h, left: 0 };
	opts.cssFirst = { top: 0 };
	opts.animIn	  = { top: 0 };
	opts.animOut  = { top: -h };
};
$.fn.cycle.transitions.scrollDown = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push($.fn.cycle.commonReset);
	var h = $cont.height();
	opts.cssFirst = { top: 0 };
	opts.cssBefore= { top: -h, left: 0 };
	opts.animIn	  = { top: 0 };
	opts.animOut  = { top: h };
};
$.fn.cycle.transitions.scrollLeft = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push($.fn.cycle.commonReset);
	var w = $cont.width();
	opts.cssFirst = { left: 0 };
	opts.cssBefore= { left: w, top: 0 };
	opts.animIn	  = { left: 0 };
	opts.animOut  = { left: 0-w };
};
$.fn.cycle.transitions.scrollRight = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push($.fn.cycle.commonReset);
	var w = $cont.width();
	opts.cssFirst = { left: 0 };
	opts.cssBefore= { left: -w, top: 0 };
	opts.animIn	  = { left: 0 };
	opts.animOut  = { left: w };
};
$.fn.cycle.transitions.scrollHorz = function($cont, $slides, opts) {
	$cont.css('overflow','hidden').width();
	opts.before.push(function(curr, next, opts, fwd) {
		$.fn.cycle.commonReset(curr,next,opts);
		opts.cssBefore.left = fwd ? (next.cycleW-1) : (1-next.cycleW);
		opts.animOut.left = fwd ? -curr.cycleW : curr.cycleW;
	});
	opts.cssFirst = { left: 0 };
	opts.cssBefore= { top: 0 };
	opts.animIn   = { left: 0 };
	opts.animOut  = { top: 0 };
};
$.fn.cycle.transitions.scrollVert = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push(function(curr, next, opts, fwd) {
		$.fn.cycle.commonReset(curr,next,opts);
		opts.cssBefore.top = fwd ? (1-next.cycleH) : (next.cycleH-1);
		opts.animOut.top = fwd ? curr.cycleH : -curr.cycleH;
	});
	opts.cssFirst = { top: 0 };
	opts.cssBefore= { left: 0 };
	opts.animIn   = { top: 0 };
	opts.animOut  = { left: 0 };
};

// slideX/slideY
$.fn.cycle.transitions.slideX = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$(opts.elements).not(curr).hide();
		$.fn.cycle.commonReset(curr,next,opts,false,true);
		opts.animIn.width = next.cycleW;
	});
	opts.cssBefore = { left: 0, top: 0, width: 0 };
	opts.animIn	 = { width: 'show' };
	opts.animOut = { width: 0 };
};
$.fn.cycle.transitions.slideY = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$(opts.elements).not(curr).hide();
		$.fn.cycle.commonReset(curr,next,opts,true,false);
		opts.animIn.height = next.cycleH;
	});
	opts.cssBefore = { left: 0, top: 0, height: 0 };
	opts.animIn	 = { height: 'show' };
	opts.animOut = { height: 0 };
};

// shuffle
$.fn.cycle.transitions.shuffle = function($cont, $slides, opts) {
	var i, w = $cont.css('overflow', 'visible').width();
	$slides.css({left: 0, top: 0});
	opts.before.push(function(curr,next,opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,true,true);
	});
	// only adjust speed once!
	if (!opts.speedAdjusted) {
		opts.speed = opts.speed / 2; // shuffle has 2 transitions
		opts.speedAdjusted = true;
	}
	opts.random = 0;
	opts.shuffle = opts.shuffle || {left:-w, top:15};
	opts.els = [];
	for (i=0; i < $slides.length; i++)
		opts.els.push($slides[i]);

	for (i=0; i < opts.currSlide; i++)
		opts.els.push(opts.els.shift());

	// custom transition fn (hat tip to Benjamin Sterling for this bit of sweetness!)
	opts.fxFn = function(curr, next, opts, cb, fwd) {
		var $el = fwd ? $(curr) : $(next);
		$(next).css(opts.cssBefore);
		var count = opts.slideCount;
		$el.animate(opts.shuffle, opts.speedIn, opts.easeIn, function() {
			var hops = $.fn.cycle.hopsFromLast(opts, fwd);
			for (var k=0; k < hops; k++)
				fwd ? opts.els.push(opts.els.shift()) : opts.els.unshift(opts.els.pop());
			if (fwd) {
				for (var i=0, len=opts.els.length; i < len; i++)
					$(opts.els[i]).css('z-index', len-i+count);
			}
			else {
				var z = $(curr).css('z-index');
				$el.css('z-index', parseInt(z)+1+count);
			}
			$el.animate({left:0, top:0}, opts.speedOut, opts.easeOut, function() {
				$(fwd ? this : curr).hide();
				if (cb) cb();
			});
		});
	};
	opts.cssBefore = { display: 'block', opacity: 1, top: 0, left: 0 };
};

// turnUp/Down/Left/Right
$.fn.cycle.transitions.turnUp = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,false);
		opts.cssBefore.top = next.cycleH;
		opts.animIn.height = next.cycleH;
	});
	opts.cssFirst  = { top: 0 };
	opts.cssBefore = { left: 0, height: 0 };
	opts.animIn	   = { top: 0 };
	opts.animOut   = { height: 0 };
};
$.fn.cycle.transitions.turnDown = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,false);
		opts.animIn.height = next.cycleH;
		opts.animOut.top   = curr.cycleH;
	});
	opts.cssFirst  = { top: 0 };
	opts.cssBefore = { left: 0, top: 0, height: 0 };
	opts.animOut   = { height: 0 };
};
$.fn.cycle.transitions.turnLeft = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,true);
		opts.cssBefore.left = next.cycleW;
		opts.animIn.width = next.cycleW;
	});
	opts.cssBefore = { top: 0, width: 0  };
	opts.animIn	   = { left: 0 };
	opts.animOut   = { width: 0 };
};
$.fn.cycle.transitions.turnRight = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,true);
		opts.animIn.width = next.cycleW;
		opts.animOut.left = curr.cycleW;
	});
	opts.cssBefore = { top: 0, left: 0, width: 0 };
	opts.animIn	   = { left: 0 };
	opts.animOut   = { width: 0 };
};

// zoom
$.fn.cycle.transitions.zoom = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,false,true);
		opts.cssBefore.top = next.cycleH/2;
		opts.cssBefore.left = next.cycleW/2;
		opts.animIn	   = { top: 0, left: 0, width: next.cycleW, height: next.cycleH };
		opts.animOut   = { width: 0, height: 0, top: curr.cycleH/2, left: curr.cycleW/2 };
	});
	opts.cssFirst = { top:0, left: 0 };
	opts.cssBefore = { width: 0, height: 0 };
};

// fadeZoom
$.fn.cycle.transitions.fadeZoom = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,false);
		opts.cssBefore.left = next.cycleW/2;
		opts.cssBefore.top = next.cycleH/2;
		opts.animIn	= { top: 0, left: 0, width: next.cycleW, height: next.cycleH };
	});
	opts.cssBefore = { width: 0, height: 0 };
	opts.animOut  = { opacity: 0 };
};

// blindX
$.fn.cycle.transitions.blindX = function($cont, $slides, opts) {
	var w = $cont.css('overflow','hidden').width();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts);
		opts.animIn.width = next.cycleW;
		opts.animOut.left   = curr.cycleW;
	});
	opts.cssBefore = { left: w, top: 0 };
	opts.animIn = { left: 0 };
	opts.animOut  = { left: w };
};
// blindY
$.fn.cycle.transitions.blindY = function($cont, $slides, opts) {
	var h = $cont.css('overflow','hidden').height();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts);
		opts.animIn.height = next.cycleH;
		opts.animOut.top   = curr.cycleH;
	});
	opts.cssBefore = { top: h, left: 0 };
	opts.animIn = { top: 0 };
	opts.animOut  = { top: h };
};
// blindZ
$.fn.cycle.transitions.blindZ = function($cont, $slides, opts) {
	var h = $cont.css('overflow','hidden').height();
	var w = $cont.width();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts);
		opts.animIn.height = next.cycleH;
		opts.animOut.top   = curr.cycleH;
	});
	opts.cssBefore = { top: h, left: w };
	opts.animIn = { top: 0, left: 0 };
	opts.animOut  = { top: h, left: w };
};

// growX - grow horizontally from centered 0 width
$.fn.cycle.transitions.growX = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,true);
		opts.cssBefore.left = this.cycleW/2;
		opts.animIn = { left: 0, width: this.cycleW };
		opts.animOut = { left: 0 };
	});
	opts.cssBefore = { width: 0, top: 0 };
};
// growY - grow vertically from centered 0 height
$.fn.cycle.transitions.growY = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,false);
		opts.cssBefore.top = this.cycleH/2;
		opts.animIn = { top: 0, height: this.cycleH };
		opts.animOut = { top: 0 };
	});
	opts.cssBefore = { height: 0, left: 0 };
};

// curtainX - squeeze in both edges horizontally
$.fn.cycle.transitions.curtainX = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,true,true);
		opts.cssBefore.left = next.cycleW/2;
		opts.animIn = { left: 0, width: this.cycleW };
		opts.animOut = { left: curr.cycleW/2, width: 0 };
	});
	opts.cssBefore = { top: 0, width: 0 };
};
// curtainY - squeeze in both edges vertically
$.fn.cycle.transitions.curtainY = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,false,true);
		opts.cssBefore.top = next.cycleH/2;
		opts.animIn = { top: 0, height: next.cycleH };
		opts.animOut = { top: curr.cycleH/2, height: 0 };
	});
	opts.cssBefore = { left: 0, height: 0 };
};

// cover - curr slide covered by next slide
$.fn.cycle.transitions.cover = function($cont, $slides, opts) {
	var d = opts.direction || 'left';
	var w = $cont.css('overflow','hidden').width();
	var h = $cont.height();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts);
		if (d == 'right')
			opts.cssBefore.left = -w;
		else if (d == 'up')
			opts.cssBefore.top = h;
		else if (d == 'down')
			opts.cssBefore.top = -h;
		else
			opts.cssBefore.left = w;
	});
	opts.animIn = { left: 0, top: 0};
	opts.animOut = { opacity: 1 };
	opts.cssBefore = { top: 0, left: 0 };
};

// uncover - curr slide moves off next slide
$.fn.cycle.transitions.uncover = function($cont, $slides, opts) {
	var d = opts.direction || 'left';
	var w = $cont.css('overflow','hidden').width();
	var h = $cont.height();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,true,true);
		if (d == 'right')
			opts.animOut.left = w;
		else if (d == 'up')
			opts.animOut.top = -h;
		else if (d == 'down')
			opts.animOut.top = h;
		else
			opts.animOut.left = -w;
	});
	opts.animIn = { left: 0, top: 0 };
	opts.animOut = { opacity: 1 };
	opts.cssBefore = { top: 0, left: 0 };
};

// toss - move top slide and fade away
$.fn.cycle.transitions.toss = function($cont, $slides, opts) {
	var w = $cont.css('overflow','visible').width();
	var h = $cont.height();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,true,true);
		// provide default toss settings if animOut not provided
		if (!opts.animOut.left && !opts.animOut.top)
			opts.animOut = { left: w*2, top: -h/2, opacity: 0 };
		else
			opts.animOut.opacity = 0;
	});
	opts.cssBefore = { left: 0, top: 0 };
	opts.animIn = { left: 0 };
};

// wipe - clip animation
$.fn.cycle.transitions.wipe = function($cont, $slides, opts) {
	var w = $cont.css('overflow','hidden').width();
	var h = $cont.height();
	opts.cssBefore = opts.cssBefore || {};
	var clip;
	if (opts.clip) {
		if (/l2r/.test(opts.clip))
			clip = 'rect(0px 0px '+h+'px 0px)';
		else if (/r2l/.test(opts.clip))
			clip = 'rect(0px '+w+'px '+h+'px '+w+'px)';
		else if (/t2b/.test(opts.clip))
			clip = 'rect(0px '+w+'px 0px 0px)';
		else if (/b2t/.test(opts.clip))
			clip = 'rect('+h+'px '+w+'px '+h+'px 0px)';
		else if (/zoom/.test(opts.clip)) {
			var top = parseInt(h/2);
			var left = parseInt(w/2);
			clip = 'rect('+top+'px '+left+'px '+top+'px '+left+'px)';
		}
	}

	opts.cssBefore.clip = opts.cssBefore.clip || clip || 'rect(0px 0px 0px 0px)';

	var d = opts.cssBefore.clip.match(/(\d+)/g);
	var t = parseInt(d[0]), r = parseInt(d[1]), b = parseInt(d[2]), l = parseInt(d[3]);

	opts.before.push(function(curr, next, opts) {
		if (curr == next) return;
		var $curr = $(curr), $next = $(next);
		$.fn.cycle.commonReset(curr,next,opts,true,true,false);
		opts.cssAfter.display = 'block';

		var step = 1, count = parseInt((opts.speedIn / 13)) - 1;
		(function f() {
			var tt = t ? t - parseInt(step * (t/count)) : 0;
			var ll = l ? l - parseInt(step * (l/count)) : 0;
			var bb = b < h ? b + parseInt(step * ((h-b)/count || 1)) : h;
			var rr = r < w ? r + parseInt(step * ((w-r)/count || 1)) : w;
			$next.css({ clip: 'rect('+tt+'px '+rr+'px '+bb+'px '+ll+'px)' });
			(step++ <= count) ? setTimeout(f, 13) : $curr.css('display', 'none');
		})();
	});
	opts.cssBefore = { display: 'block', opacity: 1, top: 0, left: 0 };
	opts.animIn	   = { left: 0 };
	opts.animOut   = { left: 0 };
};

})(jQuery);
/*
 * 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}})());
Cufon.registerFont({"w":242,"face":{"font-family":"Harabara","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 3 5 3 2 2 2 4","ascent":"288","descent":"-72","bbox":"-27 -307.302 359 79","underline-thickness":"0","underline-position":"0","unicode-range":"U+0020-U+00FC"},"glyphs":{" ":{"w":80},"A":{"d":"80,-226v6,-23,37,-14,63,-16r88,242r-52,0r-17,-50r-94,0r-15,50r-53,0xm115,-193r-33,102r67,0"},"\u00c1":{"d":"80,-226v6,-23,37,-14,63,-16r88,242r-52,0r-17,-50r-94,0r-15,50r-53,0xm171,-303r-43,44r-23,0v12,-14,10,-44,34,-44r32,0xm115,-193r-33,102r67,0"},"\u00c0":{"d":"80,-226v6,-23,37,-14,63,-16r88,242r-52,0r-17,-50r-94,0r-15,50r-53,0xm70,-303v16,2,39,-4,46,8r20,36r-24,0xm115,-193r-33,102r67,0"},"\u00c2":{"d":"80,-226v6,-23,37,-14,63,-16r88,242r-52,0r-17,-50r-94,0r-15,50r-53,0xm115,-193r-33,102r67,0xm89,-285v27,-36,60,4,76,26r-29,0r-21,-24v-10,14,-20,28,-48,24"},"\u00c3":{"d":"115,-193r-33,102r67,0xm80,-226v6,-23,37,-14,63,-16r88,242r-52,0r-17,-50r-94,0r-15,50r-53,0xm72,-259v-11,-50,40,-32,70,-22v6,0,13,-3,18,-9v8,51,-41,24,-74,20v-6,0,-10,3,-14,11"},"\u00c4":{"d":"115,-193r-33,102r67,0xm80,-226v6,-23,37,-14,63,-16r88,242r-52,0r-17,-50r-94,0r-15,50r-53,0xm152,-291v15,-1,10,19,11,32r-32,0r0,-32r21,0xm88,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0"},"B":{"d":"198,-74v0,91,-109,73,-198,74r0,-217v4,-42,73,-19,114,-25v74,-11,103,84,47,111v22,10,37,25,37,57xm140,-174v1,-38,-56,-23,-92,-26r0,52v36,-3,91,11,92,-26xm147,-75v0,-45,-58,-29,-99,-32r0,63v41,-3,99,13,99,-31","w":208},"C":{"d":"111,-39v32,0,49,-17,56,-45r49,0v-4,57,-47,90,-108,90v-76,0,-112,-48,-112,-127v-1,-82,38,-127,116,-128v61,0,99,31,104,87v-24,0,-47,4,-54,-15v-7,-17,-26,-27,-50,-27v-47,0,-66,33,-66,83v1,48,19,82,65,82","w":226},"\u00c7":{"d":"111,-39v32,0,49,-17,56,-45r49,0v-4,57,-47,90,-108,90v-76,0,-112,-48,-112,-127v-1,-82,38,-127,116,-128v61,0,99,31,104,87v-24,0,-47,4,-54,-15v-7,-17,-26,-27,-50,-27v-47,0,-66,33,-66,83v1,48,19,82,65,82xm58,51v-3,-26,3,-48,33,-40v18,5,46,22,62,4v9,55,-45,28,-79,23v-6,0,-12,5,-16,13","w":226},"D":{"d":"205,-121v-2,80,-35,124,-123,121r-82,0r0,-217v1,-38,58,-24,95,-25v77,-2,112,43,110,121xm155,-121v-2,-49,-14,-78,-60,-79r-46,0r0,156v68,4,109,-7,106,-77","w":215},"E":{"d":"143,-148v3,23,-5,41,-25,41r-69,0r0,62r127,0r0,45r-176,0r0,-217v-1,-14,12,-25,25,-25r151,0r0,42r-127,0r0,52r94,0","w":184},"\u00c8":{"d":"143,-148v3,23,-5,41,-25,41r-69,0r0,62r127,0r0,45r-176,0r0,-217v-1,-14,12,-25,25,-25r151,0r0,42r-127,0r0,52r94,0xm45,-303v17,1,39,-4,46,8r20,36r-23,0","w":184},"\u00c9":{"d":"143,-148v3,23,-5,41,-25,41r-69,0r0,62r127,0r0,45r-176,0r0,-217v-1,-14,12,-25,25,-25r151,0r0,42r-127,0r0,52r94,0xm146,-303r-43,44r-24,0v12,-15,12,-44,35,-44r32,0","w":184},"\u00ca":{"d":"143,-148v3,23,-5,41,-25,41r-69,0r0,62r127,0r0,45r-176,0r0,-217v-1,-14,12,-25,25,-25r151,0r0,42r-127,0r0,52r94,0xm68,-285v26,-36,59,4,75,26r-28,0r-21,-24v-11,14,-21,28,-49,24","w":184},"\u00cb":{"d":"143,-148v3,23,-5,41,-25,41r-69,0r0,62r127,0r0,45r-176,0r0,-217v-1,-14,12,-25,25,-25r151,0r0,42r-127,0r0,52r94,0xm124,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0xm60,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0","w":184},"F":{"d":"143,-148v3,23,-5,41,-25,41r-69,0r0,107r-49,0r0,-217v-1,-14,12,-25,25,-25r151,0r0,42r-127,0r0,52r94,0","w":184},"G":{"d":"174,-90v-35,3,-62,-2,-55,-41r100,0r0,131v-25,3,-38,-7,-40,-29v-14,22,-36,35,-70,35v-71,0,-113,-54,-113,-128v0,-140,198,-175,223,-45v-23,-1,-47,5,-56,-13v-8,-15,-27,-25,-51,-25v-44,0,-66,36,-66,83v0,86,112,119,128,32","w":229},"H":{"d":"0,-217v0,-23,24,-27,50,-25r0,90r100,0r0,-90r50,0r0,242r-50,0r0,-108r-100,0r0,108r-50,0r0,-217","w":210},"I":{"d":"0,-217v0,-23,24,-27,50,-25r0,242r-50,0r0,-217","w":52},"\u00cd":{"d":"0,-217v0,-23,24,-27,50,-25r0,242r-50,0r0,-217xm79,-303r-42,44r-23,0v12,-14,11,-44,35,-44r30,0","w":82},"\u00cc":{"d":"0,-217v0,-23,24,-27,50,-25r0,242r-50,0r0,-217xm-25,-303v17,1,38,-4,45,8r20,36r-23,0","w":52},"\u00cf":{"d":"8,-217v0,-23,24,-27,50,-25r0,242r-50,0r0,-217xm69,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0xm5,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0","w":84},"\u00ce":{"d":"0,-217v0,-23,24,-27,50,-25r0,242r-50,0r0,-217xm-1,-285v26,-37,60,4,75,26r-28,0r-21,-24v-11,13,-21,29,-48,24","w":77},"J":{"d":"78,6v-60,1,-84,-30,-78,-97r49,0v-1,29,-4,59,28,56v23,-1,28,-11,28,-38r0,-144v0,-23,24,-28,50,-25r0,171v4,59,-27,76,-77,77","w":162},"K":{"d":"0,-217v0,-23,24,-27,50,-25r0,99r94,-99r63,0r-97,98r105,144r-60,0r-61,-86v-15,-23,-44,-22,-44,1r0,85r-50,0r0,-217","w":225},"L":{"d":"0,-217v0,-23,24,-27,50,-25r0,197r118,0r0,45r-168,0r0,-217","w":175},"M":{"d":"0,-217v0,-32,41,-26,74,-26r48,185r47,-185r74,0r0,243r-46,0r0,-195r-49,195r-52,0r-50,-195r0,195r-46,0r0,-217","w":255},"N":{"d":"0,-217v0,-24,25,-29,52,-26r98,167r0,-167r50,0r0,243r-52,0r-99,-167r0,167r-49,0r0,-217","w":209},"\u00d1":{"d":"0,-217v0,-24,25,-27,52,-25r98,166r0,-166r50,0r0,242r-52,0r-99,-167r0,167r-49,0r0,-217xm61,-260v-3,-24,3,-42,30,-34v18,5,43,21,58,3v8,51,-41,23,-73,19v-6,0,-11,4,-15,12","w":209},"O":{"d":"113,-205v-47,0,-67,34,-67,84v0,50,21,84,67,84v45,0,68,-36,68,-84v0,-48,-22,-84,-68,-84xm113,6v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,118,52,118,128v0,76,-45,127,-118,127"},"\u00d3":{"d":"113,-205v-47,0,-67,34,-67,84v0,50,21,84,67,84v45,0,68,-36,68,-84v0,-48,-22,-84,-68,-84xm160,-303r-43,44r-22,0v12,-14,11,-44,34,-44r31,0xm113,6v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,118,52,118,128v0,76,-45,127,-118,127"},"\u00d2":{"d":"113,-205v-47,0,-67,34,-67,84v0,50,21,84,67,84v45,0,68,-36,68,-84v0,-48,-22,-84,-68,-84xm56,-303v17,1,40,-4,46,8r19,36r-23,0xm113,6v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,118,52,118,128v0,76,-45,127,-118,127"},"\u00d4":{"d":"113,6v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,118,52,118,128v0,76,-45,127,-118,127xm86,-285v27,-36,60,3,76,26r-28,0r-22,-24v-10,14,-20,28,-48,24xm113,-205v-47,0,-67,34,-67,84v0,50,21,84,67,84v45,0,68,-36,68,-84v0,-48,-22,-84,-68,-84"},"\u00d5":{"d":"113,6v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,118,52,118,128v0,76,-45,127,-118,127xm69,-259v-10,-50,41,-32,71,-22v6,0,13,-3,18,-9v6,51,-43,24,-74,19v-6,0,-11,4,-15,12xm113,-205v-47,0,-67,34,-67,84v0,50,21,84,67,84v45,0,68,-36,68,-84v0,-48,-22,-84,-68,-84"},"\u00d6":{"d":"113,6v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,118,52,118,128v0,76,-45,127,-118,127xm149,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0xm85,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0xm113,-205v-47,0,-67,34,-67,84v0,50,21,84,67,84v45,0,68,-36,68,-84v0,-48,-22,-84,-68,-84"},"\u00d8":{"d":"231,-121v0,109,-116,161,-194,103r-16,18r-27,0r28,-33v-18,-22,-26,-51,-26,-88v0,-109,115,-164,193,-103r16,-19r28,0r-29,34v18,22,27,51,27,88xm68,-54v46,41,113,3,113,-67v0,-20,-3,-37,-10,-51xm158,-188v-46,-41,-112,-5,-112,67v0,20,3,36,10,50","w":243},"P":{"d":"185,-164v1,48,-26,79,-74,78r-61,0r0,86r-50,0r0,-217v3,-41,68,-25,108,-25v51,0,76,27,77,78xm136,-165v0,-42,-45,-36,-86,-35r0,70v40,-1,86,9,86,-35","w":194},"Q":{"d":"231,-121v-1,36,-9,65,-26,84r27,25v-9,11,-25,28,-41,14r-14,-13v-17,12,-38,17,-64,17v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,120,52,118,128xm46,-121v0,62,41,100,96,77r-25,-24v10,-20,40,-22,53,-3v25,-50,8,-134,-57,-134v-47,0,-67,34,-67,84","w":243},"R":{"d":"145,0v-15,-39,10,-94,-42,-94r-53,0r0,94r-50,0r0,-217v4,-42,75,-22,117,-25v49,-3,78,21,78,68v1,31,-12,50,-36,58v35,9,30,55,32,100v1,8,5,14,9,16r-55,0xm146,-168v0,-44,-55,-30,-96,-32r0,64v41,-2,96,11,96,-32","w":209},"S":{"d":"167,-127v63,45,18,141,-67,133v-60,-6,-96,-26,-100,-81r49,0v-2,47,96,55,99,9v0,-15,-22,-28,-64,-37v-50,-11,-76,-19,-80,-73v-6,-77,113,-92,159,-53v17,14,24,34,25,57v-23,0,-44,4,-51,-15v-10,-29,-87,-30,-85,8v2,34,90,34,115,52","w":206},"T":{"d":"0,-199v-3,-24,5,-42,25,-43r168,0r0,43r-71,0r0,199r-50,0r0,-199r-72,0","w":201},"U":{"d":"0,-216v0,-24,24,-30,51,-27r0,152v-1,37,12,54,46,54v34,0,48,-17,47,-54r0,-152r50,0r0,157v0,61,-34,92,-97,92v-63,0,-97,-31,-97,-92r0,-130","w":203},"\u00da":{"d":"0,-216v0,-24,24,-30,51,-27r0,152v-1,37,12,54,46,54v34,0,48,-17,47,-54r0,-152r50,0r0,157v0,61,-34,92,-97,92v-63,0,-97,-31,-97,-92r0,-130xm144,-303r-43,44r-22,0v11,-15,12,-39,33,-44r32,0","w":203},"\u00d9":{"d":"0,-217v0,-24,24,-29,51,-26r0,152v-1,37,12,54,46,54v34,0,48,-17,47,-54r0,-152r50,0r0,157v0,61,-34,92,-97,92v-63,0,-97,-31,-97,-92r0,-131xm51,-303v17,1,39,-4,46,8r20,36r-23,0","w":203},"\u00db":{"d":"0,-217v0,-24,24,-29,51,-26r0,152v-1,37,12,54,46,54v34,0,48,-17,47,-54r0,-152r50,0r0,157v0,61,-34,92,-97,92v-63,0,-97,-31,-97,-92r0,-131xm70,-285v27,-36,60,4,76,26r-28,0r-22,-24v-10,14,-20,28,-48,24","w":203},"\u00dc":{"d":"0,-217v0,-24,24,-29,51,-26r0,152v-1,37,12,54,46,54v34,0,48,-17,47,-54r0,-152r50,0r0,157v0,61,-34,92,-97,92v-63,0,-97,-31,-97,-92r0,-131xm69,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0xm133,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0","w":203},"V":{"d":"84,0r-84,-242r56,0r51,181r47,-163v4,-24,34,-17,60,-18r-83,242r-47,0","w":224},"W":{"d":"70,0r-70,-242r51,0r42,171r35,-171r53,0r35,171r37,-153v3,-22,31,-18,56,-18r-69,242r-48,0r-37,-186r-38,186r-47,0","w":323},"X":{"d":"0,0r76,-124r-76,-118r58,0r49,84r42,-72v9,-19,40,-10,65,-12r-76,118r76,124r-57,0r-50,-84r-49,84r-58,0","w":224},"Y":{"d":"138,0r-50,0r0,-90r-88,-152r61,0r51,104r42,-90v8,-20,37,-13,63,-14r-79,152r0,90","w":227},"Z":{"d":"131,-198v-50,-8,-138,28,-128,-44r189,0r0,42r-132,156r129,0r0,44r-189,0r0,-42","w":201},"a":{"d":"66,-34v31,0,46,-24,42,-60v-21,13,-67,6,-67,37v1,14,9,23,25,23xm154,-75v1,60,-39,79,-95,79v-35,-1,-63,-20,-63,-60v0,-48,37,-57,81,-61v21,-3,31,-10,31,-19v0,-23,-54,-23,-60,-3r-47,0v0,-69,155,-72,153,0r0,64","w":161},"\u00e1":{"d":"124,-248r-42,44r-24,0v12,-15,12,-44,35,-44r31,0xm66,-34v31,0,46,-24,42,-60v-21,13,-67,6,-67,37v1,14,9,23,25,23xm154,-75v1,60,-39,79,-95,79v-35,-1,-63,-20,-63,-60v0,-48,37,-57,81,-61v21,-3,31,-10,31,-19v0,-23,-54,-23,-60,-3r-47,0v0,-69,155,-72,153,0r0,64","w":161},"\u00e0":{"d":"66,-34v31,0,46,-24,42,-60v-21,13,-67,6,-67,37v1,14,9,23,25,23xm154,-75v1,60,-39,79,-95,79v-35,-1,-63,-20,-63,-60v0,-48,37,-57,81,-61v21,-3,31,-10,31,-19v0,-23,-54,-23,-60,-3r-47,0v0,-69,155,-72,153,0r0,64xm29,-248v17,1,39,-4,46,8r19,36r-22,0","w":161},"\u00e2":{"d":"66,-34v31,0,46,-24,42,-60v-21,13,-67,6,-67,37v1,14,9,23,25,23xm154,-75v1,60,-39,79,-95,79v-35,-1,-63,-20,-63,-60v0,-48,37,-57,81,-61v21,-3,31,-10,31,-19v0,-23,-54,-23,-60,-3r-47,0v0,-69,155,-72,153,0r0,64xm48,-231v27,-34,61,5,76,27r-29,0r-21,-23v-12,12,-21,27,-49,23","w":161},"\u00e3":{"d":"66,-34v31,0,46,-24,42,-60v-21,13,-67,6,-67,37v1,14,9,23,25,23xm154,-75v1,60,-39,79,-95,79v-35,-1,-63,-20,-63,-60v0,-48,37,-57,81,-61v21,-3,31,-10,31,-19v0,-23,-54,-23,-60,-3r-47,0v0,-69,155,-72,153,0r0,64xm30,-204v-10,-50,43,-31,72,-22v6,0,11,-3,16,-9v8,52,-42,23,-73,19v-6,0,-11,4,-15,12","w":161},"\u00e4":{"d":"46,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm110,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm66,-34v31,0,46,-24,42,-60v-21,13,-67,6,-67,37v1,14,9,23,25,23xm154,-75v1,60,-39,79,-95,79v-35,-1,-63,-20,-63,-60v0,-48,37,-57,81,-61v21,-3,31,-10,31,-19v0,-23,-54,-23,-60,-3r-47,0v0,-69,155,-72,153,0r0,64","w":161},"b":{"d":"0,-243v25,-2,48,1,48,24r0,57v9,-16,26,-30,53,-29v48,0,75,46,75,98v0,57,-27,98,-85,97v-50,-2,-91,-26,-91,-86r0,-161xm87,-37v29,0,41,-25,41,-58v0,-30,-13,-54,-39,-54v-29,0,-41,23,-41,54v0,35,10,58,39,58","w":184},"c":{"d":"44,-94v0,54,45,73,73,40v10,-7,32,-3,48,-4v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-108,148,-131,168,-35r-49,0v-6,-14,-16,-20,-33,-20v-30,0,-38,22,-38,56","w":172},"\u00e7":{"d":"44,-94v0,54,45,73,73,40v10,-7,32,-3,48,-4v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-108,148,-131,168,-35r-49,0v-6,-14,-16,-20,-33,-20v-30,0,-38,22,-38,56xm41,39v-10,-50,41,-32,71,-22v6,0,12,-3,17,-9v8,51,-42,24,-73,19v-6,0,-11,4,-15,12","w":172},"d":{"d":"70,-191v27,-1,43,13,54,29r0,-81v25,-3,47,2,48,24r0,137v3,61,-41,86,-92,86v-58,0,-84,-38,-84,-97v0,-54,26,-97,74,-98xm83,-149v-26,0,-39,23,-39,54v0,34,11,58,40,58v29,0,41,-25,40,-58v0,-30,-13,-54,-41,-54","w":180},"e":{"d":"84,-37v24,2,25,-21,46,-21r35,0v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-57,29,-95,84,-96v62,-1,94,44,87,110r-121,0v0,28,13,43,38,44xm117,-112v4,-37,-37,-49,-61,-29v-8,6,-10,17,-10,29r71,0","w":175},"\u00e9":{"d":"84,-37v24,2,25,-21,46,-21r35,0v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-57,29,-95,84,-96v62,-1,94,44,87,110r-121,0v0,28,13,43,38,44xm131,-248r-42,44r-24,0v12,-15,12,-44,35,-44r31,0xm117,-112v4,-37,-37,-49,-61,-29v-8,6,-10,17,-10,29r71,0","w":175},"\u00e8":{"d":"84,-37v24,2,25,-21,46,-21r35,0v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-57,29,-95,84,-96v62,-1,94,44,87,110r-121,0v0,28,13,43,38,44xm36,-248v17,1,39,-4,46,8r19,36r-22,0xm117,-112v4,-37,-37,-49,-61,-29v-8,6,-10,17,-10,29r71,0","w":175},"\u00ea":{"d":"84,-37v24,2,25,-21,46,-21r35,0v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-57,29,-95,84,-96v62,-1,94,44,87,110r-121,0v0,28,13,43,38,44xm55,-231v27,-34,61,5,76,27r-28,0r-22,-23v-12,12,-21,27,-49,23xm117,-112v4,-37,-37,-49,-61,-29v-8,6,-10,17,-10,29r71,0","w":175},"\u00eb":{"d":"84,-37v24,2,25,-21,46,-21r35,0v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-57,29,-95,84,-96v62,-1,94,44,87,110r-121,0v0,28,13,43,38,44xm117,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm53,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm117,-112v4,-37,-37,-49,-61,-29v-8,6,-10,17,-10,29r71,0","w":175},"f":{"d":"78,-176v2,23,-8,37,-30,35r0,141r-48,0r0,-193v-3,-45,33,-55,78,-48r0,39v-21,-2,-35,-1,-30,26r30,0","w":81},"g":{"d":"172,-6v3,60,-41,85,-92,85v-43,0,-70,-21,-80,-61r51,0v10,19,47,27,62,4v7,-10,12,-25,11,-45v-22,40,-93,28,-113,-10v-31,-59,-14,-164,69,-158v50,4,92,25,92,86r0,99xm84,-150v-54,0,-50,103,-12,112v54,12,64,-64,39,-99v-6,-8,-15,-13,-27,-13","w":180},"h":{"d":"127,0v-4,-58,18,-149,-38,-149v-60,0,-36,91,-41,149r-48,0r0,-242v25,-2,48,1,48,24r0,56v19,-41,91,-34,113,2v22,35,10,106,13,160r-47,0","w":182},"k":{"d":"0,-242v25,-2,49,1,49,23r0,101r60,-69r59,0r-67,72r68,115r-59,0r-35,-63v-9,-19,-20,-21,-26,-8r0,71r-49,0r0,-242","w":177},"m":{"d":"196,-152v-21,1,-33,15,-33,42r0,110r-48,0r0,-120v1,-20,-16,-32,-33,-32v-17,0,-33,11,-33,32r0,120r-49,0r0,-110v-9,-81,88,-99,140,-64v50,-35,138,-18,138,64r0,110v-25,2,-47,0,-49,-24v-3,-49,19,-128,-33,-128","w":291},"n":{"d":"80,-191v49,0,83,22,83,81r0,110v-25,1,-48,0,-48,-24v0,-49,18,-127,-33,-128v-17,1,-33,11,-33,32r0,120r-49,0r0,-110v-3,-58,34,-81,80,-81","w":170},"\u00f1":{"d":"38,-203v-3,-23,3,-42,30,-35v19,4,42,22,58,3v8,53,-41,24,-73,20v-6,0,-11,4,-15,12xm80,-191v49,0,83,22,83,81r0,110v-25,1,-48,0,-48,-24v0,-49,18,-127,-33,-128v-17,1,-33,11,-33,32r0,120r-49,0r0,-110v-3,-58,34,-81,80,-81","w":170},"o":{"d":"150,-29v-34,51,-134,35,-148,-22v-20,-85,25,-163,115,-135v52,16,64,109,33,157xm112,-132v-26,-39,-79,-7,-68,40v-6,49,40,72,67,39v11,-13,11,-64,1,-79","w":175},"\u00f3":{"d":"163,-56v-13,74,-144,77,-161,5v-21,-85,25,-165,115,-135v43,14,56,75,46,130xm131,-248r-42,44r-24,0v12,-15,12,-44,35,-44r31,0xm112,-132v-26,-39,-79,-7,-68,40v-6,49,40,72,67,39v11,-13,11,-64,1,-79","w":175},"\u00f2":{"d":"163,-56v-13,74,-144,77,-161,5v-21,-85,25,-165,115,-135v43,14,56,75,46,130xm36,-248v17,1,39,-4,46,8r19,36r-22,0xm112,-132v-26,-39,-79,-7,-68,40v-6,49,40,72,67,39v11,-13,11,-64,1,-79","w":175},"\u00f4":{"d":"163,-56v-13,74,-144,77,-161,5v-21,-85,25,-165,115,-135v43,14,56,75,46,130xm55,-231v27,-34,61,5,76,27r-28,0r-22,-23v-12,12,-21,27,-49,23xm112,-132v-26,-39,-79,-7,-68,40v-6,49,40,72,67,39v11,-13,11,-64,1,-79","w":175},"\u00f5":{"d":"163,-56v-13,74,-144,77,-161,5v-21,-85,25,-165,115,-135v43,14,56,75,46,130xm37,-204v-10,-50,43,-31,72,-22v6,0,12,-3,17,-9v8,52,-43,24,-74,19v-6,0,-11,4,-15,12xm112,-132v-26,-39,-79,-7,-68,40v-6,49,40,72,67,39v11,-13,11,-64,1,-79","w":175},"\u00f6":{"d":"163,-56v-13,74,-144,77,-161,5v-21,-85,25,-165,115,-135v43,14,56,75,46,130xm117,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm53,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm112,-132v-26,-39,-79,-7,-68,40v-6,49,40,72,67,39v11,-13,11,-64,1,-79","w":175},"p":{"d":"101,4v-26,0,-42,-11,-53,-29v-3,45,17,107,-48,94r0,-175v-3,-60,41,-84,91,-85v57,-1,85,39,85,96v0,54,-27,99,-75,99xm89,-38v26,0,39,-26,39,-55v0,-32,-12,-57,-41,-57v-28,0,-39,24,-39,57v0,33,13,55,41,55","w":184},"q":{"d":"172,69v-25,2,-48,-1,-48,-24r0,-70v-11,18,-28,29,-54,29v-48,0,-74,-44,-74,-99v0,-57,26,-97,84,-96v50,1,92,25,92,85r0,175xm84,-150v-29,0,-40,25,-40,57v0,30,12,55,39,55v28,0,41,-23,41,-55v1,-32,-11,-56,-40,-57","w":180},"r":{"d":"105,-137v-35,-3,-56,7,-56,41r0,96r-49,0r0,-91v0,-67,38,-97,105,-96r0,50","w":110},"s":{"d":"76,4v-50,0,-80,-19,-80,-66r48,0v0,20,17,29,38,28v35,0,42,-30,1,-37v-45,-8,-80,-16,-83,-60v-4,-61,92,-76,134,-44v15,11,20,27,21,46v-27,2,-46,1,-56,-18v-13,-9,-51,-11,-50,11v-3,9,27,20,49,21v39,11,64,16,64,55v0,46,-35,64,-86,64","w":169},"u":{"d":"82,-35v84,0,-27,-169,81,-152r0,110v2,60,-34,81,-83,81v-46,0,-80,-22,-80,-81r0,-110r49,0r0,119v-2,21,15,33,33,33","w":170},"\u00fa":{"d":"82,-35v84,0,-27,-169,81,-152r0,110v2,60,-34,81,-83,81v-46,0,-80,-22,-80,-81r0,-110r49,0r0,119v-2,21,15,33,33,33xm66,-204v12,-15,12,-44,35,-44r30,0r-42,44r-23,0","w":170},"\u00f9":{"d":"82,-35v84,0,-27,-169,81,-152r0,110v2,60,-34,81,-83,81v-46,0,-80,-22,-80,-81r0,-110r49,0r0,119v-2,21,15,33,33,33xm36,-248v17,1,39,-4,46,8r20,36r-23,0","w":170},"\u00fb":{"d":"82,-35v84,0,-27,-169,81,-152r0,110v2,60,-34,81,-83,81v-46,0,-80,-22,-80,-81r0,-110r49,0r0,119v-2,21,15,33,33,33xm56,-231v26,-34,61,5,75,27r-28,0r-21,-23v-12,13,-22,27,-50,23","w":170},"\u00fc":{"d":"82,-35v84,0,-27,-169,81,-152r0,110v2,60,-34,81,-83,81v-46,0,-80,-22,-80,-81r0,-110r49,0r0,119v-2,21,15,33,33,33xm54,-236v16,-1,11,18,12,32r-32,0r0,-32r20,0xm117,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0","w":170},"v":{"d":"115,0r-50,0r-65,-187r52,0r37,131r33,-114v6,-23,33,-16,59,-17","w":189},"x":{"d":"181,0r-57,0r-33,-59r-34,59r-57,0r61,-96r-57,-91r54,0r32,56r36,-60v7,-20,38,-11,63,-13r-70,108","w":198},"w":{"d":"207,0r-49,0r-29,-134r-28,134r-50,0r-51,-187r48,0r29,129r27,-129r50,0r25,129r26,-112v4,-21,30,-17,54,-17","w":271},"y":{"d":"27,66r0,-39v23,1,47,-1,38,-28r-65,-186r54,0r38,132r33,-115v4,-22,32,-16,56,-17r-71,213v-10,36,-37,47,-83,40","w":189},"z":{"d":"101,-148v-41,-4,-104,18,-95,-39r153,0r0,40r-99,106r102,0r0,41r-162,0r0,-37","w":170},":":{"d":"0,-49v-1,-18,22,-14,39,-14r0,39r-39,0r0,-25xm0,-148v-1,-19,22,-14,39,-15r0,39r-39,0r0,-24","w":40},".":{"d":"0,-24v-1,-19,22,-14,39,-15r0,39r-39,0r0,-24","w":40},";":{"d":"0,44v-4,-20,23,-20,21,-39v2,-7,-13,-4,-20,-5v1,-17,-5,-39,14,-39r24,0v2,41,1,80,-39,83xm1,-124v-2,-19,21,-15,38,-15r0,39r-38,0r0,-24","w":40},",":{"d":"0,44v-4,-20,23,-20,21,-39v2,-7,-13,-4,-20,-5v1,-17,-5,-39,14,-39r24,0v2,41,1,80,-39,83","w":40},"+":{"d":"0,-77v0,-16,-2,-34,15,-33r48,0r0,-63v16,0,34,-2,33,15r0,48r63,0r0,33r-63,0r0,63r-33,0r0,-63r-63,0","w":166},"-":{"d":"0,-74v0,-20,-2,-39,19,-39r78,0r0,39r-97,0","w":101},"~":{"d":"0,-74v-4,-27,6,-46,34,-38v20,5,48,24,64,3v9,58,-45,26,-81,22v-7,0,-13,5,-17,13","w":101},"\u00b1":{"d":"0,-135v-6,-31,24,-26,50,-26r0,-45v16,0,32,-2,32,15r0,30r51,0r0,26r-51,0r0,45r-32,0r0,-45r-50,0xm0,-39v-1,-15,0,-27,15,-26r118,0r0,26r-133,0","w":139},"#":{"d":"27,-139v5,-33,25,-52,68,-45r20,-58v17,-1,34,0,36,13v3,21,-4,31,-8,45r33,0r19,-58v17,0,38,-1,38,13v0,21,-5,31,-9,45r43,0r-15,45r-43,0r-11,35r42,0r-14,46r-44,0r-20,58r-47,0r19,-58r-33,0r-19,58r-49,0r20,-58r-53,0v6,-32,24,-53,68,-46r11,-35r-52,0xm160,-139r-32,0r-12,35r33,0","w":280},"$":{"d":"190,-75v0,50,-33,76,-85,78r0,30r-26,0r0,-30v-51,-2,-80,-31,-83,-80r48,0v3,22,14,34,35,38v-2,-21,4,-49,-2,-66v-51,-8,-78,-19,-78,-71v0,-49,31,-68,80,-72v1,-9,-2,-23,1,-30v15,0,27,12,25,30v46,4,74,30,76,75r-28,0v-24,0,-24,-33,-48,-34r0,60v42,13,85,18,85,72xm105,-38v19,0,37,-10,36,-30v0,-11,-12,-21,-36,-29r0,59xm79,-208v-20,1,-32,11,-33,29v0,12,11,21,33,26r0,-55","w":198},"\u00a3":{"d":"186,-8v-51,34,-124,-28,-168,12r-18,-41v17,-12,27,-24,32,-38r-32,0r0,-31r35,0v-2,-8,-3,-15,-4,-18r-31,0r0,-31r22,0v-22,-77,70,-120,129,-78v14,10,22,27,25,49v-18,3,-48,9,-50,-10v-12,-31,-62,-17,-60,14v0,7,1,15,4,25v30,2,65,-10,58,31r-49,0v2,11,3,18,3,18v29,-2,50,-1,46,31r-49,0v-3,9,-11,19,-22,32v35,-15,74,21,111,-5","w":195},"\u00a2":{"d":"165,-71v-2,51,-43,82,-102,74r-10,36r-18,0r11,-40v-33,-15,-50,-45,-50,-93v0,-66,36,-105,104,-97r8,-28r18,0r-9,33v29,8,43,32,47,66r-47,0v-2,-12,-6,-17,-13,-26r-29,109v27,2,38,-9,42,-34r48,0xm89,-151v-52,-11,-56,77,-29,107","w":172},"!":{"d":"0,-217v0,-23,24,-27,50,-25r-9,174r-33,0xm1,-30v-2,-24,26,-19,48,-19r0,49r-48,0r0,-30","w":52},"%":{"d":"22,0r134,-232v6,-15,27,-9,46,-10r-140,242r-40,0xm224,-59v0,-26,-24,-50,-50,-50v-28,0,-50,24,-50,50v0,26,23,50,50,50v26,0,50,-24,50,-50xm0,-184v0,-27,24,-49,50,-49v26,0,50,23,50,49v0,27,-23,50,-50,50v-27,0,-50,-22,-50,-50xm75,-184v0,-12,-12,-23,-25,-23v-13,0,-25,10,-25,23v0,14,11,25,25,25v14,0,25,-12,25,-25xm150,-59v0,-14,10,-25,24,-25v13,0,24,12,24,25v0,13,-11,25,-24,25v-15,0,-24,-11,-24,-25","w":234},"&":{"d":"58,-97v-40,26,1,80,38,58v6,-2,12,-6,18,-12r-44,-55xm85,-207v-32,1,-16,40,-2,49v20,-6,35,-47,2,-49xm-4,-64v5,-39,20,-55,50,-72v-10,-14,-24,-28,-24,-49v0,-36,28,-57,64,-58v34,0,60,21,60,54v0,32,-18,46,-40,60r35,43v7,-9,11,-29,12,-41v19,0,44,-4,40,19v-4,21,-15,41,-26,55r45,53r-57,0r-16,-20v-37,43,-151,27,-143,-44","w":222},"(":{"d":"53,36v-63,-69,-76,-207,-15,-288v9,-19,32,-21,49,-22v-57,81,-57,230,0,310r-34,0","w":91},")":{"d":"34,-274v45,61,81,143,44,232v-12,30,-29,83,-78,77v58,-78,57,-232,0,-309r34,0","w":97},"{":{"d":"51,-119v72,5,-5,142,72,124v4,25,-8,41,-32,35v-47,3,-49,-47,-46,-99v1,-30,-14,-47,-45,-42r0,-35v50,6,48,-39,45,-85v-4,-54,32,-61,78,-57r0,35v-75,-20,-1,121,-72,124","w":128},"}":{"d":"72,-119v-73,-5,4,-142,-72,-125v-6,-32,12,-40,41,-33v77,-4,-10,150,82,141r0,35v-50,-7,-48,38,-45,85v4,52,-31,60,-78,56r0,-35v76,16,0,-120,72,-124","w":128},"|":{"d":"0,-285v0,-16,14,-24,33,-22r0,370r-33,0r0,-348","w":34},"<":{"d":"147,-22r-138,-75v-18,-9,-16,-39,1,-48r137,-75v-1,15,4,34,-8,41r-98,54v-4,3,-4,6,0,8r106,57r0,38","w":153},">":{"d":"0,-220r137,75v20,8,19,36,0,47r-137,76v1,-16,-4,-35,8,-42r98,-53v4,-3,4,-6,0,-8r-106,-58r0,-37","w":158},"\\":{"d":"71,0r-71,-243v14,1,26,-3,30,10r68,233r-27,0","w":103},"[":{"d":"0,40r0,-323r86,0r0,36r-40,0r0,251r40,0v1,19,1,36,-18,36r-68,0","w":90},"]":{"d":"0,-245v-1,-19,1,-36,18,-36r68,0r0,323r-86,0r0,-36r40,0r0,-251r-40,0","w":90},"\/":{"d":"71,-243r27,0r-68,234v-2,12,-17,9,-30,9","w":103},"\u00f7":{"d":"0,-104v0,-16,-2,-32,15,-32r144,0r0,32r-159,0xm56,-68v1,-12,10,-23,23,-23v15,0,23,8,23,23v0,32,-46,28,-46,0xm56,-172v0,-11,10,-23,23,-23v12,0,23,12,23,23v0,12,-10,22,-23,22v-14,0,-23,-10,-23,-22","w":166},"=":{"d":"0,-131v0,-16,-2,-34,15,-33r144,0r0,33r-159,0xm0,-77v0,-16,-2,-32,15,-32r144,0r0,32r-159,0","w":166},"\u00f8":{"d":"151,-158v34,54,12,153,-44,158v-31,9,-64,0,-82,-15r-12,15r-26,0r25,-30v-36,-54,-12,-160,52,-160v31,0,55,1,73,16r12,-13r27,0xm107,-139v-44,-36,-75,19,-61,70xm55,-49v11,15,45,18,55,-4v10,-9,13,-48,7,-66","w":184},"@":{"d":"105,-77v0,31,33,40,52,20v18,-18,42,-88,-4,-90v-29,-1,-48,38,-48,70xm208,-21v-21,1,-35,-9,-35,-28v-20,43,-112,33,-103,-29v-7,-64,77,-126,119,-72r9,-16v23,0,27,7,23,25r-19,81v0,9,5,13,16,11v38,-6,55,-41,56,-82v2,-55,-51,-91,-110,-90v-87,2,-132,51,-139,131v-9,112,153,138,226,79v7,47,-51,57,-99,57v-93,0,-156,-46,-156,-136v0,-100,70,-159,169,-159v78,0,139,42,139,119v0,61,-37,105,-96,109","w":319},"\u00a9":{"d":"74,-210v0,-20,-13,-33,-34,-33v-47,0,-41,67,0,67v20,0,34,-12,34,-34xm60,-217v-12,-3,-29,-18,-32,7v-2,19,22,22,23,8r9,0v0,11,-9,16,-20,17v-17,0,-20,-10,-22,-25v-2,-21,23,-31,37,-19v4,3,5,7,5,12xm0,-210v0,-23,17,-40,40,-40v23,-1,41,19,41,40v0,22,-19,42,-41,41v-23,-1,-40,-16,-40,-41","w":84},"\u00ae":{"d":"40,-169v-40,2,-54,-59,-20,-76v28,-15,62,7,61,35v-1,23,-18,40,-41,41xm45,-233v16,-4,17,21,8,23v9,2,2,16,7,22v-19,6,-1,-24,-28,-18r0,18r-9,0r0,-41v1,-8,15,-3,22,-4xm32,-214v10,3,27,-4,12,-12r-12,0r0,12xm74,-210v0,-21,-12,-32,-34,-33v-20,-1,-34,15,-34,33v0,17,14,34,34,34v20,0,34,-13,34,-34","w":84},"*":{"d":"31,-221v-1,-17,-1,-31,18,-27r0,27v14,-5,30,-10,32,10r-25,7v7,9,19,28,-1,32r-15,-21v-6,11,-17,25,-30,10r15,-21r-25,-7v1,-17,17,-17,31,-10","w":84},"`":{"d":"0,-249v17,1,39,-4,46,9r20,35r-23,0","w":68},"'":{"d":"66,-249r-43,44r-23,0v12,-14,13,-39,34,-44r32,0","w":68},"\u00b4":{"d":"66,-249r-43,44r-23,0v12,-14,13,-39,34,-44r32,0","w":68},"\"":{"d":"45,-249v5,26,-31,20,-24,47v3,3,16,2,23,2v-1,18,6,41,-16,41r-28,0v-3,-47,1,-85,45,-90xm115,-249v5,24,-26,19,-24,42v-3,10,15,6,24,7v-1,19,5,41,-17,41r-28,0v-3,-47,2,-84,45,-90","w":120},"\u00a8":{"d":"95,-201v1,-9,-16,-5,-24,-6v1,-19,-5,-42,16,-42r28,0v3,46,0,87,-45,90v-4,-22,26,-21,25,-42xm1,-233v-1,-20,25,-16,44,-16v3,46,0,87,-45,90v-5,-21,25,-20,25,-42v2,-9,-15,-5,-24,-6r0,-26","w":120},"_":{"d":"0,44v-2,-18,5,-31,20,-31r163,0r0,31r-183,0","w":191},"\u00aa":{"d":"30,-172v17,1,22,-11,21,-29v-10,7,-34,1,-33,18v-1,7,5,12,12,11xm34,-249v37,0,39,21,39,57v0,32,-23,39,-46,39v-18,0,-31,-9,-31,-29v0,-24,18,-29,39,-30v10,-1,15,-4,15,-9v1,-11,-27,-12,-29,-2r-22,0v2,-17,15,-26,35,-26","w":76},"\u00ba":{"d":"71,-169v-25,32,-83,13,-75,-33v-8,-48,60,-62,78,-26v8,15,7,47,-3,59xm25,-224v-12,16,-11,51,18,51v9,0,13,-10,13,-28v0,-27,-17,-31,-31,-23","w":82},"\u00b2":{"d":"58,-224v0,22,-26,27,-36,41r35,0r0,14r-57,0v-3,-27,36,-38,41,-55v-2,-18,-26,-11,-25,3v-4,3,-16,2,-14,-8v6,-27,56,-26,56,5","w":60},"\u00b3":{"d":"29,-167v-17,-2,-29,-8,-28,-27r15,0v0,10,4,13,13,13v8,-1,12,-2,12,-12v1,-10,-8,-12,-17,-12v1,-3,-1,-9,1,-10v17,3,19,-22,4,-21v-7,0,-12,3,-11,12v-8,0,-16,2,-14,-8v4,-25,55,-22,52,5v1,5,-8,15,-10,15v25,10,8,48,-17,45","w":61},"\u00bc":{"d":"6,-169v10,-1,18,-8,21,-18v9,-1,16,1,15,10r0,84r-19,0r0,-63r-17,0r0,-13xm110,0r0,-21r-41,0v0,-36,24,-48,35,-73v13,0,25,-3,25,15r0,42r11,0r0,16r-11,0r0,21r-19,0xm0,0r104,-179v3,-9,12,-8,24,-8r-108,187r-20,0xm110,-36r0,-41r-26,41r26,0","w":146},"\u00bd":{"d":"139,-65v0,27,-31,31,-43,48r42,0r0,17r-68,0v-4,-32,44,-44,49,-65v0,-8,-6,-14,-14,-14v-12,0,-16,7,-16,19v-22,5,-19,-16,-9,-26v19,-19,59,-8,59,21xm0,0r104,-179v3,-9,12,-8,24,-8r-108,187r-20,0xm6,-169v10,-1,18,-8,21,-18v9,-1,16,1,15,10r0,84r-19,0r0,-63r-17,0r0,-13","w":144},"\u00be":{"d":"20,0r104,-179v4,-9,12,-8,24,-8r-109,187r-19,0xm130,0r0,-21r-41,0v0,-36,24,-48,35,-73v13,0,28,-3,24,15r0,42r12,0r0,16r-12,0r0,21r-18,0xm130,-36r0,-41r-26,41r26,0xm54,-143v30,13,13,53,-20,53v-19,0,-36,-10,-34,-31r18,0v-1,10,6,16,16,16v10,0,15,-6,15,-15v-1,-11,-9,-14,-21,-14v1,-4,-3,-13,2,-13v9,1,16,-5,16,-13v0,-8,-4,-12,-12,-12v-11,1,-13,5,-14,15v-20,5,-19,-13,-9,-22v16,-15,57,-8,55,18v0,11,-5,14,-12,18","w":167},"\u00a7":{"d":"18,-177v-27,-26,-4,-75,39,-72v30,2,52,17,56,44v-13,2,-39,9,-40,-5v-3,-17,-32,-13,-32,2v13,35,85,43,83,91v-1,18,-10,33,-23,42v31,28,10,82,-40,79v-35,-2,-54,-18,-59,-48v33,-9,34,15,60,20v10,-1,17,-5,18,-15v-7,-37,-89,-43,-84,-96v2,-18,7,-34,22,-42xm39,-160v-16,9,-14,30,5,43r37,26v32,-31,-26,-53,-42,-69","w":129},"0":{"d":"-4,-121v0,-77,21,-125,89,-125v66,0,91,49,90,125v0,78,-21,125,-90,125v-66,0,-90,-44,-89,-125xm124,-120v0,-37,-4,-87,-39,-87v-35,0,-39,48,-39,86v0,39,4,87,39,87v35,0,39,-48,39,-86","w":183},"1":{"d":"55,-242v23,-3,39,6,39,25r0,217r-48,0r0,-163r-46,0r0,-35v26,-1,50,-19,55,-44","w":98},"2":{"d":"1,-183v13,-87,177,-81,171,14v-4,60,-48,74,-89,104v-12,8,-19,15,-20,22r106,0r0,43r-173,0v-3,-80,70,-105,112,-141v25,-21,11,-63,-24,-63v-27,0,-40,19,-39,47v-23,0,-49,5,-44,-26","w":180},"3":{"d":"82,4v-55,-4,-86,-27,-86,-81r47,0v0,27,13,41,39,41v25,0,39,-13,40,-37v1,-28,-25,-41,-55,-36r0,-34v54,12,65,-63,15,-64v-25,0,-35,14,-35,38v-23,0,-51,4,-43,-25v9,-34,39,-52,80,-52v45,0,81,24,81,66v1,25,-14,39,-30,48v74,33,33,143,-53,136","w":182},"4":{"d":"92,-242v36,-2,62,-1,62,40r0,108r29,0r0,40r-29,0r0,54r-49,0r0,-54r-105,0r0,-44xm106,-92r0,-107r-67,107r67,0","w":191},"5":{"d":"122,-82v0,-43,-56,-59,-73,-27r-45,-2r16,-132r118,0v19,1,27,20,24,43r-107,0r-6,47v51,-35,125,5,125,69v0,79,-100,113,-155,69v-16,-12,-22,-32,-23,-55r48,0v0,21,14,34,37,34v29,0,41,-17,41,-46","w":182},"6":{"d":"86,-121v-24,0,-39,17,-38,41v0,27,13,45,39,45v25,0,37,-18,37,-45v0,-25,-14,-41,-38,-41xm132,-184v-20,-2,-19,-25,-45,-23v-29,2,-40,27,-40,64v45,-41,128,-6,128,61v0,51,-35,87,-88,86v-66,-1,-91,-46,-91,-119v0,-101,75,-164,150,-114v15,10,21,26,23,45r-37,0","w":183},"7":{"d":"36,0v5,-82,40,-144,86,-200r-122,0r0,-42r160,0v24,-2,29,23,16,37v-46,50,-83,120,-88,205r-52,0","w":194},"8":{"d":"20,-224v40,-36,148,-27,148,43v0,25,-13,42,-29,51v21,13,36,27,35,58v0,50,-35,76,-90,76v-54,0,-89,-23,-88,-76v0,-32,12,-46,36,-58v-34,-9,-39,-70,-12,-94xm46,-73v-1,25,19,39,46,36v17,-2,33,-17,32,-36v-1,-23,-17,-37,-40,-37v-23,0,-37,13,-38,37xm120,-177v0,-17,-16,-30,-36,-30v-20,0,-35,12,-35,30v0,19,12,29,35,29v22,0,36,-10,36,-29","w":182},"9":{"d":"82,-246v66,0,93,49,93,120v0,77,-29,130,-98,130v-36,0,-68,-14,-72,-48v-2,-19,29,-13,47,-14v2,30,47,31,60,7v6,-11,10,-26,11,-47v-43,38,-127,7,-127,-62v0,-53,33,-86,86,-86xm45,-162v-5,47,69,59,76,12v4,-30,-9,-57,-39,-57v-26,0,-35,21,-37,45","w":183},"?":{"d":"53,-70v-10,-60,46,-59,54,-104v5,-35,-42,-41,-58,-23v-6,7,-10,17,-10,30v-25,-2,-43,7,-43,-21v0,-65,104,-76,144,-35v28,29,14,88,-13,104v-17,10,-32,20,-30,49r-44,0xm51,-30v-2,-24,27,-18,49,-19r0,49r-49,0r0,-30","w":164},"\u00bf":{"d":"107,-75v0,-45,-64,-44,-54,-104r44,0v-1,56,60,48,60,107v0,82,-126,94,-156,33v-6,-13,-8,-41,7,-42v8,-1,18,-1,31,-1v1,29,14,43,44,40v16,-2,24,-14,24,-33xm100,-200v-21,-1,-49,6,-49,-18r0,-31r49,0r0,49","w":164},"\u00c6":{"d":"321,-148v10,54,-49,40,-94,41r0,63r132,0r0,44r-181,0r0,-50r-94,0r-32,50r-52,0r154,-225v9,-19,40,-16,68,-16r131,0r0,42r-126,0r0,51r94,0xm178,-90r0,-103r-67,103r67,0","w":376},"\u00d0":{"d":"254,-120v0,78,-36,123,-124,120r-81,0r0,-105r-49,0r0,-31r49,0v4,-40,-15,-105,26,-105r68,0v77,1,111,42,111,121xm203,-120v0,-69,-36,-86,-105,-79r0,63v27,-1,54,-3,48,31r-48,0r0,61v67,4,105,-7,105,-76","w":266},"\u00de":{"d":"131,-120v2,51,-41,88,-96,66v-2,20,7,51,-13,53v-9,1,-16,1,-22,1r0,-241v14,0,35,-2,35,17r0,37v12,-6,24,-5,40,-6v37,-1,55,38,56,73xm97,-121v0,-20,-14,-39,-32,-39v-19,0,-32,20,-31,39v0,19,12,39,31,39v18,0,32,-19,32,-39","w":137},"\u00df":{"d":"104,-207v-35,-3,-56,15,-56,41r0,196r-48,0r0,-198v2,-53,48,-81,114,-81v45,0,75,19,76,61v0,25,-12,41,-29,50v22,11,36,26,37,57v1,65,-57,78,-127,73r0,-43v35,0,75,6,75,-31v0,-38,-38,-32,-75,-32r0,-41v31,0,69,5,69,-26v0,-20,-14,-24,-36,-26","w":207},"\u00e6":{"d":"65,-33v34,1,46,-24,43,-59v-21,14,-67,4,-67,37v0,14,9,22,24,22xm158,-79v-8,45,54,57,68,23r48,0v-7,57,-98,80,-140,38v-39,30,-144,41,-138,-36v3,-42,29,-55,69,-58v22,-2,62,-14,34,-31v-11,-7,-48,-9,-51,8r-47,0v1,-58,102,-63,138,-34v62,-43,153,-1,137,90r-118,0xm227,-110v4,-33,-39,-47,-60,-27v-7,6,-9,16,-9,27r69,0","w":289},"\u00b5":{"d":"77,-32v79,0,-26,-159,77,-142r0,102v3,66,-50,83,-108,72v2,39,4,77,-46,67r0,-241r46,0r0,111v-1,20,15,31,31,31","w":161},"^":{"d":"22,-234v28,-37,61,4,76,27r-28,0r-21,-24v-12,13,-21,28,-49,24","w":103},"l":{"d":"2,-242v25,-1,49,0,49,23r0,219r-49,0r0,-242","w":59},"t":{"d":"83,-186v3,22,-8,35,-29,33r0,104v-1,14,15,12,29,12r0,37v-33,0,-77,8,-77,-35r0,-207v25,-2,48,1,48,24r0,32r29,0","w":87},"i":{"d":"4,-187v26,-2,49,1,49,24r0,163r-49,0r0,-187xm4,-242v32,-3,55,4,49,39r-49,0r0,-39","w":55},"\u00ed":{"d":"4,-187v26,-2,49,1,49,24r0,163r-49,0r0,-187xm79,-248r-43,44r-23,0v11,-15,11,-44,34,-44r32,0","w":63},"\u00ec":{"d":"4,-187v26,-2,49,1,49,24r0,163r-49,0r0,-187xm-27,-248v17,1,38,-4,45,8r19,36r-23,0","w":63},"\u00ee":{"d":"4,-187v26,-2,49,1,49,24r0,163r-49,0r0,-187xm3,-230v26,-36,60,4,75,26r-28,0r-22,-23v-10,13,-21,27,-48,23","w":63},"\u00ef":{"d":"5,-187v25,-2,48,1,48,24r0,163r-48,0r0,-187xm1,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm65,-236v16,-1,11,18,12,32r-32,0r0,-32r20,0","w":63},"j":{"d":"53,0v5,55,-9,84,-69,78r0,-41v24,5,20,-17,20,-37r0,-187v26,-2,49,1,49,24r0,163xm4,-242v32,-3,55,4,49,39r-49,0r0,-39","w":63},"\u00c5":{"d":"82,-225v6,-23,37,-14,63,-16r87,241r-52,0r-17,-49r-93,0r-17,49r-52,0xm103,-274v0,8,7,15,14,15v7,0,13,-7,13,-15v0,-7,-5,-15,-13,-14v-8,-1,-14,7,-14,14xm117,-300v14,3,26,10,26,26v0,16,-11,25,-26,26v-14,-3,-26,-9,-26,-26v1,-16,11,-24,26,-26xm116,-193r-33,104r67,0","w":243},"\u00e5":{"d":"66,-35v32,1,46,-24,42,-60v-20,12,-66,7,-67,37v0,14,11,23,25,23xm76,-202v-15,0,-25,-10,-26,-26v-1,-27,42,-33,50,-10v7,19,-6,36,-24,36xm63,-228v-1,8,5,15,13,15v8,0,14,-7,13,-15v0,-7,-5,-15,-13,-14v-8,-1,-13,7,-13,14xm1,-140v1,-70,153,-72,153,1v0,54,5,113,-34,131v-47,21,-124,14,-124,-48v0,-49,38,-56,81,-62v21,-3,31,-9,31,-18v-2,-23,-53,-22,-60,-4r-47,0","w":161},"\u00a0":{"w":80}}});
Cufon.registerFont({"w":242,"face":{"font-family":"Harabara","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 3 5 3 2 2 2 4","ascent":"288","descent":"-72","bbox":"-27 -307.302 359 79","underline-thickness":"0","underline-position":"0","unicode-range":"U+0020-U+00FC"},"glyphs":{" ":{"w":80},"A":{"d":"80,-226v6,-23,37,-14,63,-16r88,242r-52,0r-17,-50r-94,0r-15,50r-53,0xm115,-193r-33,102r67,0"},"\u00c1":{"d":"80,-226v6,-23,37,-14,63,-16r88,242r-52,0r-17,-50r-94,0r-15,50r-53,0xm171,-303r-43,44r-23,0v12,-14,10,-44,34,-44r32,0xm115,-193r-33,102r67,0"},"\u00c0":{"d":"80,-226v6,-23,37,-14,63,-16r88,242r-52,0r-17,-50r-94,0r-15,50r-53,0xm70,-303v16,2,39,-4,46,8r20,36r-24,0xm115,-193r-33,102r67,0"},"\u00c2":{"d":"80,-226v6,-23,37,-14,63,-16r88,242r-52,0r-17,-50r-94,0r-15,50r-53,0xm115,-193r-33,102r67,0xm89,-285v27,-36,60,4,76,26r-29,0r-21,-24v-10,14,-20,28,-48,24"},"\u00c3":{"d":"115,-193r-33,102r67,0xm80,-226v6,-23,37,-14,63,-16r88,242r-52,0r-17,-50r-94,0r-15,50r-53,0xm72,-259v-11,-50,40,-32,70,-22v6,0,13,-3,18,-9v8,51,-41,24,-74,20v-6,0,-10,3,-14,11"},"\u00c4":{"d":"115,-193r-33,102r67,0xm80,-226v6,-23,37,-14,63,-16r88,242r-52,0r-17,-50r-94,0r-15,50r-53,0xm152,-291v15,-1,10,19,11,32r-32,0r0,-32r21,0xm88,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0"},"B":{"d":"198,-74v0,91,-109,73,-198,74r0,-217v4,-42,73,-19,114,-25v74,-11,103,84,47,111v22,10,37,25,37,57xm140,-174v1,-38,-56,-23,-92,-26r0,52v36,-3,91,11,92,-26xm147,-75v0,-45,-58,-29,-99,-32r0,63v41,-3,99,13,99,-31","w":208},"C":{"d":"111,-39v32,0,49,-17,56,-45r49,0v-4,57,-47,90,-108,90v-76,0,-112,-48,-112,-127v-1,-82,38,-127,116,-128v61,0,99,31,104,87v-24,0,-47,4,-54,-15v-7,-17,-26,-27,-50,-27v-47,0,-66,33,-66,83v1,48,19,82,65,82","w":226},"\u00c7":{"d":"111,-39v32,0,49,-17,56,-45r49,0v-4,57,-47,90,-108,90v-76,0,-112,-48,-112,-127v-1,-82,38,-127,116,-128v61,0,99,31,104,87v-24,0,-47,4,-54,-15v-7,-17,-26,-27,-50,-27v-47,0,-66,33,-66,83v1,48,19,82,65,82xm58,51v-3,-26,3,-48,33,-40v18,5,46,22,62,4v9,55,-45,28,-79,23v-6,0,-12,5,-16,13","w":226},"D":{"d":"205,-121v-2,80,-35,124,-123,121r-82,0r0,-217v1,-38,58,-24,95,-25v77,-2,112,43,110,121xm155,-121v-2,-49,-14,-78,-60,-79r-46,0r0,156v68,4,109,-7,106,-77","w":215},"E":{"d":"143,-148v3,23,-5,41,-25,41r-69,0r0,62r127,0r0,45r-176,0r0,-217v-1,-14,12,-25,25,-25r151,0r0,42r-127,0r0,52r94,0","w":184},"\u00c8":{"d":"143,-148v3,23,-5,41,-25,41r-69,0r0,62r127,0r0,45r-176,0r0,-217v-1,-14,12,-25,25,-25r151,0r0,42r-127,0r0,52r94,0xm45,-303v17,1,39,-4,46,8r20,36r-23,0","w":184},"\u00c9":{"d":"143,-148v3,23,-5,41,-25,41r-69,0r0,62r127,0r0,45r-176,0r0,-217v-1,-14,12,-25,25,-25r151,0r0,42r-127,0r0,52r94,0xm146,-303r-43,44r-24,0v12,-15,12,-44,35,-44r32,0","w":184},"\u00ca":{"d":"143,-148v3,23,-5,41,-25,41r-69,0r0,62r127,0r0,45r-176,0r0,-217v-1,-14,12,-25,25,-25r151,0r0,42r-127,0r0,52r94,0xm68,-285v26,-36,59,4,75,26r-28,0r-21,-24v-11,14,-21,28,-49,24","w":184},"\u00cb":{"d":"143,-148v3,23,-5,41,-25,41r-69,0r0,62r127,0r0,45r-176,0r0,-217v-1,-14,12,-25,25,-25r151,0r0,42r-127,0r0,52r94,0xm124,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0xm60,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0","w":184},"F":{"d":"143,-148v3,23,-5,41,-25,41r-69,0r0,107r-49,0r0,-217v-1,-14,12,-25,25,-25r151,0r0,42r-127,0r0,52r94,0","w":184},"G":{"d":"174,-90v-35,3,-62,-2,-55,-41r100,0r0,131v-25,3,-38,-7,-40,-29v-14,22,-36,35,-70,35v-71,0,-113,-54,-113,-128v0,-140,198,-175,223,-45v-23,-1,-47,5,-56,-13v-8,-15,-27,-25,-51,-25v-44,0,-66,36,-66,83v0,86,112,119,128,32","w":229},"H":{"d":"0,-217v0,-23,24,-27,50,-25r0,90r100,0r0,-90r50,0r0,242r-50,0r0,-108r-100,0r0,108r-50,0r0,-217","w":210},"I":{"d":"0,-217v0,-23,24,-27,50,-25r0,242r-50,0r0,-217","w":52},"\u00cd":{"d":"0,-217v0,-23,24,-27,50,-25r0,242r-50,0r0,-217xm79,-303r-42,44r-23,0v12,-14,11,-44,35,-44r30,0","w":82},"\u00cc":{"d":"0,-217v0,-23,24,-27,50,-25r0,242r-50,0r0,-217xm-25,-303v17,1,38,-4,45,8r20,36r-23,0","w":52},"\u00cf":{"d":"8,-217v0,-23,24,-27,50,-25r0,242r-50,0r0,-217xm69,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0xm5,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0","w":84},"\u00ce":{"d":"0,-217v0,-23,24,-27,50,-25r0,242r-50,0r0,-217xm-1,-285v26,-37,60,4,75,26r-28,0r-21,-24v-11,13,-21,29,-48,24","w":77},"J":{"d":"78,6v-60,1,-84,-30,-78,-97r49,0v-1,29,-4,59,28,56v23,-1,28,-11,28,-38r0,-144v0,-23,24,-28,50,-25r0,171v4,59,-27,76,-77,77","w":162},"K":{"d":"0,-217v0,-23,24,-27,50,-25r0,99r94,-99r63,0r-97,98r105,144r-60,0r-61,-86v-15,-23,-44,-22,-44,1r0,85r-50,0r0,-217","w":225},"L":{"d":"0,-217v0,-23,24,-27,50,-25r0,197r118,0r0,45r-168,0r0,-217","w":175},"M":{"d":"0,-217v0,-32,41,-26,74,-26r48,185r47,-185r74,0r0,243r-46,0r0,-195r-49,195r-52,0r-50,-195r0,195r-46,0r0,-217","w":255},"N":{"d":"0,-217v0,-24,25,-29,52,-26r98,167r0,-167r50,0r0,243r-52,0r-99,-167r0,167r-49,0r0,-217","w":209},"\u00d1":{"d":"0,-217v0,-24,25,-27,52,-25r98,166r0,-166r50,0r0,242r-52,0r-99,-167r0,167r-49,0r0,-217xm61,-260v-3,-24,3,-42,30,-34v18,5,43,21,58,3v8,51,-41,23,-73,19v-6,0,-11,4,-15,12","w":209},"O":{"d":"113,-205v-47,0,-67,34,-67,84v0,50,21,84,67,84v45,0,68,-36,68,-84v0,-48,-22,-84,-68,-84xm113,6v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,118,52,118,128v0,76,-45,127,-118,127"},"\u00d3":{"d":"113,-205v-47,0,-67,34,-67,84v0,50,21,84,67,84v45,0,68,-36,68,-84v0,-48,-22,-84,-68,-84xm160,-303r-43,44r-22,0v12,-14,11,-44,34,-44r31,0xm113,6v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,118,52,118,128v0,76,-45,127,-118,127"},"\u00d2":{"d":"113,-205v-47,0,-67,34,-67,84v0,50,21,84,67,84v45,0,68,-36,68,-84v0,-48,-22,-84,-68,-84xm56,-303v17,1,40,-4,46,8r19,36r-23,0xm113,6v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,118,52,118,128v0,76,-45,127,-118,127"},"\u00d4":{"d":"113,6v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,118,52,118,128v0,76,-45,127,-118,127xm86,-285v27,-36,60,3,76,26r-28,0r-22,-24v-10,14,-20,28,-48,24xm113,-205v-47,0,-67,34,-67,84v0,50,21,84,67,84v45,0,68,-36,68,-84v0,-48,-22,-84,-68,-84"},"\u00d5":{"d":"113,6v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,118,52,118,128v0,76,-45,127,-118,127xm69,-259v-10,-50,41,-32,71,-22v6,0,13,-3,18,-9v6,51,-43,24,-74,19v-6,0,-11,4,-15,12xm113,-205v-47,0,-67,34,-67,84v0,50,21,84,67,84v45,0,68,-36,68,-84v0,-48,-22,-84,-68,-84"},"\u00d6":{"d":"113,6v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,118,52,118,128v0,76,-45,127,-118,127xm149,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0xm85,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0xm113,-205v-47,0,-67,34,-67,84v0,50,21,84,67,84v45,0,68,-36,68,-84v0,-48,-22,-84,-68,-84"},"\u00d8":{"d":"231,-121v0,109,-116,161,-194,103r-16,18r-27,0r28,-33v-18,-22,-26,-51,-26,-88v0,-109,115,-164,193,-103r16,-19r28,0r-29,34v18,22,27,51,27,88xm68,-54v46,41,113,3,113,-67v0,-20,-3,-37,-10,-51xm158,-188v-46,-41,-112,-5,-112,67v0,20,3,36,10,50","w":243},"P":{"d":"185,-164v1,48,-26,79,-74,78r-61,0r0,86r-50,0r0,-217v3,-41,68,-25,108,-25v51,0,76,27,77,78xm136,-165v0,-42,-45,-36,-86,-35r0,70v40,-1,86,9,86,-35","w":194},"Q":{"d":"231,-121v-1,36,-9,65,-26,84r27,25v-9,11,-25,28,-41,14r-14,-13v-17,12,-38,17,-64,17v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,120,52,118,128xm46,-121v0,62,41,100,96,77r-25,-24v10,-20,40,-22,53,-3v25,-50,8,-134,-57,-134v-47,0,-67,34,-67,84","w":243},"R":{"d":"145,0v-15,-39,10,-94,-42,-94r-53,0r0,94r-50,0r0,-217v4,-42,75,-22,117,-25v49,-3,78,21,78,68v1,31,-12,50,-36,58v35,9,30,55,32,100v1,8,5,14,9,16r-55,0xm146,-168v0,-44,-55,-30,-96,-32r0,64v41,-2,96,11,96,-32","w":209},"S":{"d":"167,-127v63,45,18,141,-67,133v-60,-6,-96,-26,-100,-81r49,0v-2,47,96,55,99,9v0,-15,-22,-28,-64,-37v-50,-11,-76,-19,-80,-73v-6,-77,113,-92,159,-53v17,14,24,34,25,57v-23,0,-44,4,-51,-15v-10,-29,-87,-30,-85,8v2,34,90,34,115,52","w":206},"T":{"d":"0,-199v-3,-24,5,-42,25,-43r168,0r0,43r-71,0r0,199r-50,0r0,-199r-72,0","w":201},"U":{"d":"0,-216v0,-24,24,-30,51,-27r0,152v-1,37,12,54,46,54v34,0,48,-17,47,-54r0,-152r50,0r0,157v0,61,-34,92,-97,92v-63,0,-97,-31,-97,-92r0,-130","w":203},"\u00da":{"d":"0,-216v0,-24,24,-30,51,-27r0,152v-1,37,12,54,46,54v34,0,48,-17,47,-54r0,-152r50,0r0,157v0,61,-34,92,-97,92v-63,0,-97,-31,-97,-92r0,-130xm144,-303r-43,44r-22,0v11,-15,12,-39,33,-44r32,0","w":203},"\u00d9":{"d":"0,-217v0,-24,24,-29,51,-26r0,152v-1,37,12,54,46,54v34,0,48,-17,47,-54r0,-152r50,0r0,157v0,61,-34,92,-97,92v-63,0,-97,-31,-97,-92r0,-131xm51,-303v17,1,39,-4,46,8r20,36r-23,0","w":203},"\u00db":{"d":"0,-217v0,-24,24,-29,51,-26r0,152v-1,37,12,54,46,54v34,0,48,-17,47,-54r0,-152r50,0r0,157v0,61,-34,92,-97,92v-63,0,-97,-31,-97,-92r0,-131xm70,-285v27,-36,60,4,76,26r-28,0r-22,-24v-10,14,-20,28,-48,24","w":203},"\u00dc":{"d":"0,-217v0,-24,24,-29,51,-26r0,152v-1,37,12,54,46,54v34,0,48,-17,47,-54r0,-152r50,0r0,157v0,61,-34,92,-97,92v-63,0,-97,-31,-97,-92r0,-131xm69,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0xm133,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0","w":203},"V":{"d":"84,0r-84,-242r56,0r51,181r47,-163v4,-24,34,-17,60,-18r-83,242r-47,0","w":224},"W":{"d":"70,0r-70,-242r51,0r42,171r35,-171r53,0r35,171r37,-153v3,-22,31,-18,56,-18r-69,242r-48,0r-37,-186r-38,186r-47,0","w":323},"X":{"d":"0,0r76,-124r-76,-118r58,0r49,84r42,-72v9,-19,40,-10,65,-12r-76,118r76,124r-57,0r-50,-84r-49,84r-58,0","w":224},"Y":{"d":"138,0r-50,0r0,-90r-88,-152r61,0r51,104r42,-90v8,-20,37,-13,63,-14r-79,152r0,90","w":227},"Z":{"d":"131,-198v-50,-8,-138,28,-128,-44r189,0r0,42r-132,156r129,0r0,44r-189,0r0,-42","w":201},"a":{"d":"66,-34v31,0,46,-24,42,-60v-21,13,-67,6,-67,37v1,14,9,23,25,23xm154,-75v1,60,-39,79,-95,79v-35,-1,-63,-20,-63,-60v0,-48,37,-57,81,-61v21,-3,31,-10,31,-19v0,-23,-54,-23,-60,-3r-47,0v0,-69,155,-72,153,0r0,64","w":161},"\u00e1":{"d":"124,-248r-42,44r-24,0v12,-15,12,-44,35,-44r31,0xm66,-34v31,0,46,-24,42,-60v-21,13,-67,6,-67,37v1,14,9,23,25,23xm154,-75v1,60,-39,79,-95,79v-35,-1,-63,-20,-63,-60v0,-48,37,-57,81,-61v21,-3,31,-10,31,-19v0,-23,-54,-23,-60,-3r-47,0v0,-69,155,-72,153,0r0,64","w":161},"\u00e0":{"d":"66,-34v31,0,46,-24,42,-60v-21,13,-67,6,-67,37v1,14,9,23,25,23xm154,-75v1,60,-39,79,-95,79v-35,-1,-63,-20,-63,-60v0,-48,37,-57,81,-61v21,-3,31,-10,31,-19v0,-23,-54,-23,-60,-3r-47,0v0,-69,155,-72,153,0r0,64xm29,-248v17,1,39,-4,46,8r19,36r-22,0","w":161},"\u00e2":{"d":"66,-34v31,0,46,-24,42,-60v-21,13,-67,6,-67,37v1,14,9,23,25,23xm154,-75v1,60,-39,79,-95,79v-35,-1,-63,-20,-63,-60v0,-48,37,-57,81,-61v21,-3,31,-10,31,-19v0,-23,-54,-23,-60,-3r-47,0v0,-69,155,-72,153,0r0,64xm48,-231v27,-34,61,5,76,27r-29,0r-21,-23v-12,12,-21,27,-49,23","w":161},"\u00e3":{"d":"66,-34v31,0,46,-24,42,-60v-21,13,-67,6,-67,37v1,14,9,23,25,23xm154,-75v1,60,-39,79,-95,79v-35,-1,-63,-20,-63,-60v0,-48,37,-57,81,-61v21,-3,31,-10,31,-19v0,-23,-54,-23,-60,-3r-47,0v0,-69,155,-72,153,0r0,64xm30,-204v-10,-50,43,-31,72,-22v6,0,11,-3,16,-9v8,52,-42,23,-73,19v-6,0,-11,4,-15,12","w":161},"\u00e4":{"d":"46,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm110,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm66,-34v31,0,46,-24,42,-60v-21,13,-67,6,-67,37v1,14,9,23,25,23xm154,-75v1,60,-39,79,-95,79v-35,-1,-63,-20,-63,-60v0,-48,37,-57,81,-61v21,-3,31,-10,31,-19v0,-23,-54,-23,-60,-3r-47,0v0,-69,155,-72,153,0r0,64","w":161},"b":{"d":"0,-243v25,-2,48,1,48,24r0,57v9,-16,26,-30,53,-29v48,0,75,46,75,98v0,57,-27,98,-85,97v-50,-2,-91,-26,-91,-86r0,-161xm87,-37v29,0,41,-25,41,-58v0,-30,-13,-54,-39,-54v-29,0,-41,23,-41,54v0,35,10,58,39,58","w":184},"c":{"d":"44,-94v0,54,45,73,73,40v10,-7,32,-3,48,-4v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-108,148,-131,168,-35r-49,0v-6,-14,-16,-20,-33,-20v-30,0,-38,22,-38,56","w":172},"\u00e7":{"d":"44,-94v0,54,45,73,73,40v10,-7,32,-3,48,-4v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-108,148,-131,168,-35r-49,0v-6,-14,-16,-20,-33,-20v-30,0,-38,22,-38,56xm41,39v-10,-50,41,-32,71,-22v6,0,12,-3,17,-9v8,51,-42,24,-73,19v-6,0,-11,4,-15,12","w":172},"d":{"d":"70,-191v27,-1,43,13,54,29r0,-81v25,-3,47,2,48,24r0,137v3,61,-41,86,-92,86v-58,0,-84,-38,-84,-97v0,-54,26,-97,74,-98xm83,-149v-26,0,-39,23,-39,54v0,34,11,58,40,58v29,0,41,-25,40,-58v0,-30,-13,-54,-41,-54","w":180},"e":{"d":"84,-37v24,2,25,-21,46,-21r35,0v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-57,29,-95,84,-96v62,-1,94,44,87,110r-121,0v0,28,13,43,38,44xm117,-112v4,-37,-37,-49,-61,-29v-8,6,-10,17,-10,29r71,0","w":175},"\u00e9":{"d":"84,-37v24,2,25,-21,46,-21r35,0v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-57,29,-95,84,-96v62,-1,94,44,87,110r-121,0v0,28,13,43,38,44xm131,-248r-42,44r-24,0v12,-15,12,-44,35,-44r31,0xm117,-112v4,-37,-37,-49,-61,-29v-8,6,-10,17,-10,29r71,0","w":175},"\u00e8":{"d":"84,-37v24,2,25,-21,46,-21r35,0v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-57,29,-95,84,-96v62,-1,94,44,87,110r-121,0v0,28,13,43,38,44xm36,-248v17,1,39,-4,46,8r19,36r-22,0xm117,-112v4,-37,-37,-49,-61,-29v-8,6,-10,17,-10,29r71,0","w":175},"\u00ea":{"d":"84,-37v24,2,25,-21,46,-21r35,0v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-57,29,-95,84,-96v62,-1,94,44,87,110r-121,0v0,28,13,43,38,44xm55,-231v27,-34,61,5,76,27r-28,0r-22,-23v-12,12,-21,27,-49,23xm117,-112v4,-37,-37,-49,-61,-29v-8,6,-10,17,-10,29r71,0","w":175},"\u00eb":{"d":"84,-37v24,2,25,-21,46,-21r35,0v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-57,29,-95,84,-96v62,-1,94,44,87,110r-121,0v0,28,13,43,38,44xm117,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm53,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm117,-112v4,-37,-37,-49,-61,-29v-8,6,-10,17,-10,29r71,0","w":175},"f":{"d":"78,-176v2,23,-8,37,-30,35r0,141r-48,0r0,-193v-3,-45,33,-55,78,-48r0,39v-21,-2,-35,-1,-30,26r30,0","w":81},"g":{"d":"172,-6v3,60,-41,85,-92,85v-43,0,-70,-21,-80,-61r51,0v10,19,47,27,62,4v7,-10,12,-25,11,-45v-22,40,-93,28,-113,-10v-31,-59,-14,-164,69,-158v50,4,92,25,92,86r0,99xm84,-150v-54,0,-50,103,-12,112v54,12,64,-64,39,-99v-6,-8,-15,-13,-27,-13","w":180},"h":{"d":"127,0v-4,-58,18,-149,-38,-149v-60,0,-36,91,-41,149r-48,0r0,-242v25,-2,48,1,48,24r0,56v19,-41,91,-34,113,2v22,35,10,106,13,160r-47,0","w":182},"k":{"d":"0,-242v25,-2,49,1,49,23r0,101r60,-69r59,0r-67,72r68,115r-59,0r-35,-63v-9,-19,-20,-21,-26,-8r0,71r-49,0r0,-242","w":177},"m":{"d":"196,-152v-21,1,-33,15,-33,42r0,110r-48,0r0,-120v1,-20,-16,-32,-33,-32v-17,0,-33,11,-33,32r0,120r-49,0r0,-110v-9,-81,88,-99,140,-64v50,-35,138,-18,138,64r0,110v-25,2,-47,0,-49,-24v-3,-49,19,-128,-33,-128","w":291},"n":{"d":"80,-191v49,0,83,22,83,81r0,110v-25,1,-48,0,-48,-24v0,-49,18,-127,-33,-128v-17,1,-33,11,-33,32r0,120r-49,0r0,-110v-3,-58,34,-81,80,-81","w":170},"\u00f1":{"d":"38,-203v-3,-23,3,-42,30,-35v19,4,42,22,58,3v8,53,-41,24,-73,20v-6,0,-11,4,-15,12xm80,-191v49,0,83,22,83,81r0,110v-25,1,-48,0,-48,-24v0,-49,18,-127,-33,-128v-17,1,-33,11,-33,32r0,120r-49,0r0,-110v-3,-58,34,-81,80,-81","w":170},"o":{"d":"150,-29v-34,51,-134,35,-148,-22v-20,-85,25,-163,115,-135v52,16,64,109,33,157xm112,-132v-26,-39,-79,-7,-68,40v-6,49,40,72,67,39v11,-13,11,-64,1,-79","w":175},"\u00f3":{"d":"163,-56v-13,74,-144,77,-161,5v-21,-85,25,-165,115,-135v43,14,56,75,46,130xm131,-248r-42,44r-24,0v12,-15,12,-44,35,-44r31,0xm112,-132v-26,-39,-79,-7,-68,40v-6,49,40,72,67,39v11,-13,11,-64,1,-79","w":175},"\u00f2":{"d":"163,-56v-13,74,-144,77,-161,5v-21,-85,25,-165,115,-135v43,14,56,75,46,130xm36,-248v17,1,39,-4,46,8r19,36r-22,0xm112,-132v-26,-39,-79,-7,-68,40v-6,49,40,72,67,39v11,-13,11,-64,1,-79","w":175},"\u00f4":{"d":"163,-56v-13,74,-144,77,-161,5v-21,-85,25,-165,115,-135v43,14,56,75,46,130xm55,-231v27,-34,61,5,76,27r-28,0r-22,-23v-12,12,-21,27,-49,23xm112,-132v-26,-39,-79,-7,-68,40v-6,49,40,72,67,39v11,-13,11,-64,1,-79","w":175},"\u00f5":{"d":"163,-56v-13,74,-144,77,-161,5v-21,-85,25,-165,115,-135v43,14,56,75,46,130xm37,-204v-10,-50,43,-31,72,-22v6,0,12,-3,17,-9v8,52,-43,24,-74,19v-6,0,-11,4,-15,12xm112,-132v-26,-39,-79,-7,-68,40v-6,49,40,72,67,39v11,-13,11,-64,1,-79","w":175},"\u00f6":{"d":"163,-56v-13,74,-144,77,-161,5v-21,-85,25,-165,115,-135v43,14,56,75,46,130xm117,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm53,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm112,-132v-26,-39,-79,-7,-68,40v-6,49,40,72,67,39v11,-13,11,-64,1,-79","w":175},"p":{"d":"101,4v-26,0,-42,-11,-53,-29v-3,45,17,107,-48,94r0,-175v-3,-60,41,-84,91,-85v57,-1,85,39,85,96v0,54,-27,99,-75,99xm89,-38v26,0,39,-26,39,-55v0,-32,-12,-57,-41,-57v-28,0,-39,24,-39,57v0,33,13,55,41,55","w":184},"q":{"d":"172,69v-25,2,-48,-1,-48,-24r0,-70v-11,18,-28,29,-54,29v-48,0,-74,-44,-74,-99v0,-57,26,-97,84,-96v50,1,92,25,92,85r0,175xm84,-150v-29,0,-40,25,-40,57v0,30,12,55,39,55v28,0,41,-23,41,-55v1,-32,-11,-56,-40,-57","w":180},"r":{"d":"105,-137v-35,-3,-56,7,-56,41r0,96r-49,0r0,-91v0,-67,38,-97,105,-96r0,50","w":110},"s":{"d":"76,4v-50,0,-80,-19,-80,-66r48,0v0,20,17,29,38,28v35,0,42,-30,1,-37v-45,-8,-80,-16,-83,-60v-4,-61,92,-76,134,-44v15,11,20,27,21,46v-27,2,-46,1,-56,-18v-13,-9,-51,-11,-50,11v-3,9,27,20,49,21v39,11,64,16,64,55v0,46,-35,64,-86,64","w":169},"u":{"d":"82,-35v84,0,-27,-169,81,-152r0,110v2,60,-34,81,-83,81v-46,0,-80,-22,-80,-81r0,-110r49,0r0,119v-2,21,15,33,33,33","w":170},"\u00fa":{"d":"82,-35v84,0,-27,-169,81,-152r0,110v2,60,-34,81,-83,81v-46,0,-80,-22,-80,-81r0,-110r49,0r0,119v-2,21,15,33,33,33xm66,-204v12,-15,12,-44,35,-44r30,0r-42,44r-23,0","w":170},"\u00f9":{"d":"82,-35v84,0,-27,-169,81,-152r0,110v2,60,-34,81,-83,81v-46,0,-80,-22,-80,-81r0,-110r49,0r0,119v-2,21,15,33,33,33xm36,-248v17,1,39,-4,46,8r20,36r-23,0","w":170},"\u00fb":{"d":"82,-35v84,0,-27,-169,81,-152r0,110v2,60,-34,81,-83,81v-46,0,-80,-22,-80,-81r0,-110r49,0r0,119v-2,21,15,33,33,33xm56,-231v26,-34,61,5,75,27r-28,0r-21,-23v-12,13,-22,27,-50,23","w":170},"\u00fc":{"d":"82,-35v84,0,-27,-169,81,-152r0,110v2,60,-34,81,-83,81v-46,0,-80,-22,-80,-81r0,-110r49,0r0,119v-2,21,15,33,33,33xm54,-236v16,-1,11,18,12,32r-32,0r0,-32r20,0xm117,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0","w":170},"v":{"d":"115,0r-50,0r-65,-187r52,0r37,131r33,-114v6,-23,33,-16,59,-17","w":189},"x":{"d":"181,0r-57,0r-33,-59r-34,59r-57,0r61,-96r-57,-91r54,0r32,56r36,-60v7,-20,38,-11,63,-13r-70,108","w":198},"w":{"d":"207,0r-49,0r-29,-134r-28,134r-50,0r-51,-187r48,0r29,129r27,-129r50,0r25,129r26,-112v4,-21,30,-17,54,-17","w":271},"y":{"d":"27,66r0,-39v23,1,47,-1,38,-28r-65,-186r54,0r38,132r33,-115v4,-22,32,-16,56,-17r-71,213v-10,36,-37,47,-83,40","w":189},"z":{"d":"101,-148v-41,-4,-104,18,-95,-39r153,0r0,40r-99,106r102,0r0,41r-162,0r0,-37","w":170},":":{"d":"0,-49v-1,-18,22,-14,39,-14r0,39r-39,0r0,-25xm0,-148v-1,-19,22,-14,39,-15r0,39r-39,0r0,-24","w":40},".":{"d":"0,-24v-1,-19,22,-14,39,-15r0,39r-39,0r0,-24","w":40},";":{"d":"0,44v-4,-20,23,-20,21,-39v2,-7,-13,-4,-20,-5v1,-17,-5,-39,14,-39r24,0v2,41,1,80,-39,83xm1,-124v-2,-19,21,-15,38,-15r0,39r-38,0r0,-24","w":40},",":{"d":"0,44v-4,-20,23,-20,21,-39v2,-7,-13,-4,-20,-5v1,-17,-5,-39,14,-39r24,0v2,41,1,80,-39,83","w":40},"+":{"d":"0,-77v0,-16,-2,-34,15,-33r48,0r0,-63v16,0,34,-2,33,15r0,48r63,0r0,33r-63,0r0,63r-33,0r0,-63r-63,0","w":166},"-":{"d":"0,-74v0,-20,-2,-39,19,-39r78,0r0,39r-97,0","w":101},"~":{"d":"0,-74v-4,-27,6,-46,34,-38v20,5,48,24,64,3v9,58,-45,26,-81,22v-7,0,-13,5,-17,13","w":101},"\u00b1":{"d":"0,-135v-6,-31,24,-26,50,-26r0,-45v16,0,32,-2,32,15r0,30r51,0r0,26r-51,0r0,45r-32,0r0,-45r-50,0xm0,-39v-1,-15,0,-27,15,-26r118,0r0,26r-133,0","w":139},"#":{"d":"27,-139v5,-33,25,-52,68,-45r20,-58v17,-1,34,0,36,13v3,21,-4,31,-8,45r33,0r19,-58v17,0,38,-1,38,13v0,21,-5,31,-9,45r43,0r-15,45r-43,0r-11,35r42,0r-14,46r-44,0r-20,58r-47,0r19,-58r-33,0r-19,58r-49,0r20,-58r-53,0v6,-32,24,-53,68,-46r11,-35r-52,0xm160,-139r-32,0r-12,35r33,0","w":280},"$":{"d":"190,-75v0,50,-33,76,-85,78r0,30r-26,0r0,-30v-51,-2,-80,-31,-83,-80r48,0v3,22,14,34,35,38v-2,-21,4,-49,-2,-66v-51,-8,-78,-19,-78,-71v0,-49,31,-68,80,-72v1,-9,-2,-23,1,-30v15,0,27,12,25,30v46,4,74,30,76,75r-28,0v-24,0,-24,-33,-48,-34r0,60v42,13,85,18,85,72xm105,-38v19,0,37,-10,36,-30v0,-11,-12,-21,-36,-29r0,59xm79,-208v-20,1,-32,11,-33,29v0,12,11,21,33,26r0,-55","w":198},"\u00a3":{"d":"186,-8v-51,34,-124,-28,-168,12r-18,-41v17,-12,27,-24,32,-38r-32,0r0,-31r35,0v-2,-8,-3,-15,-4,-18r-31,0r0,-31r22,0v-22,-77,70,-120,129,-78v14,10,22,27,25,49v-18,3,-48,9,-50,-10v-12,-31,-62,-17,-60,14v0,7,1,15,4,25v30,2,65,-10,58,31r-49,0v2,11,3,18,3,18v29,-2,50,-1,46,31r-49,0v-3,9,-11,19,-22,32v35,-15,74,21,111,-5","w":195},"\u00a2":{"d":"165,-71v-2,51,-43,82,-102,74r-10,36r-18,0r11,-40v-33,-15,-50,-45,-50,-93v0,-66,36,-105,104,-97r8,-28r18,0r-9,33v29,8,43,32,47,66r-47,0v-2,-12,-6,-17,-13,-26r-29,109v27,2,38,-9,42,-34r48,0xm89,-151v-52,-11,-56,77,-29,107","w":172},"!":{"d":"0,-217v0,-23,24,-27,50,-25r-9,174r-33,0xm1,-30v-2,-24,26,-19,48,-19r0,49r-48,0r0,-30","w":52},"%":{"d":"22,0r134,-232v6,-15,27,-9,46,-10r-140,242r-40,0xm224,-59v0,-26,-24,-50,-50,-50v-28,0,-50,24,-50,50v0,26,23,50,50,50v26,0,50,-24,50,-50xm0,-184v0,-27,24,-49,50,-49v26,0,50,23,50,49v0,27,-23,50,-50,50v-27,0,-50,-22,-50,-50xm75,-184v0,-12,-12,-23,-25,-23v-13,0,-25,10,-25,23v0,14,11,25,25,25v14,0,25,-12,25,-25xm150,-59v0,-14,10,-25,24,-25v13,0,24,12,24,25v0,13,-11,25,-24,25v-15,0,-24,-11,-24,-25","w":234},"&":{"d":"58,-97v-40,26,1,80,38,58v6,-2,12,-6,18,-12r-44,-55xm85,-207v-32,1,-16,40,-2,49v20,-6,35,-47,2,-49xm-4,-64v5,-39,20,-55,50,-72v-10,-14,-24,-28,-24,-49v0,-36,28,-57,64,-58v34,0,60,21,60,54v0,32,-18,46,-40,60r35,43v7,-9,11,-29,12,-41v19,0,44,-4,40,19v-4,21,-15,41,-26,55r45,53r-57,0r-16,-20v-37,43,-151,27,-143,-44","w":222},"(":{"d":"53,36v-63,-69,-76,-207,-15,-288v9,-19,32,-21,49,-22v-57,81,-57,230,0,310r-34,0","w":91},")":{"d":"34,-274v45,61,81,143,44,232v-12,30,-29,83,-78,77v58,-78,57,-232,0,-309r34,0","w":97},"{":{"d":"51,-119v72,5,-5,142,72,124v4,25,-8,41,-32,35v-47,3,-49,-47,-46,-99v1,-30,-14,-47,-45,-42r0,-35v50,6,48,-39,45,-85v-4,-54,32,-61,78,-57r0,35v-75,-20,-1,121,-72,124","w":128},"}":{"d":"72,-119v-73,-5,4,-142,-72,-125v-6,-32,12,-40,41,-33v77,-4,-10,150,82,141r0,35v-50,-7,-48,38,-45,85v4,52,-31,60,-78,56r0,-35v76,16,0,-120,72,-124","w":128},"|":{"d":"0,-285v0,-16,14,-24,33,-22r0,370r-33,0r0,-348","w":34},"<":{"d":"147,-22r-138,-75v-18,-9,-16,-39,1,-48r137,-75v-1,15,4,34,-8,41r-98,54v-4,3,-4,6,0,8r106,57r0,38","w":153},">":{"d":"0,-220r137,75v20,8,19,36,0,47r-137,76v1,-16,-4,-35,8,-42r98,-53v4,-3,4,-6,0,-8r-106,-58r0,-37","w":158},"\\":{"d":"71,0r-71,-243v14,1,26,-3,30,10r68,233r-27,0","w":103},"[":{"d":"0,40r0,-323r86,0r0,36r-40,0r0,251r40,0v1,19,1,36,-18,36r-68,0","w":90},"]":{"d":"0,-245v-1,-19,1,-36,18,-36r68,0r0,323r-86,0r0,-36r40,0r0,-251r-40,0","w":90},"\/":{"d":"71,-243r27,0r-68,234v-2,12,-17,9,-30,9","w":103},"\u00f7":{"d":"0,-104v0,-16,-2,-32,15,-32r144,0r0,32r-159,0xm56,-68v1,-12,10,-23,23,-23v15,0,23,8,23,23v0,32,-46,28,-46,0xm56,-172v0,-11,10,-23,23,-23v12,0,23,12,23,23v0,12,-10,22,-23,22v-14,0,-23,-10,-23,-22","w":166},"=":{"d":"0,-131v0,-16,-2,-34,15,-33r144,0r0,33r-159,0xm0,-77v0,-16,-2,-32,15,-32r144,0r0,32r-159,0","w":166},"\u00f8":{"d":"151,-158v34,54,12,153,-44,158v-31,9,-64,0,-82,-15r-12,15r-26,0r25,-30v-36,-54,-12,-160,52,-160v31,0,55,1,73,16r12,-13r27,0xm107,-139v-44,-36,-75,19,-61,70xm55,-49v11,15,45,18,55,-4v10,-9,13,-48,7,-66","w":184},"@":{"d":"105,-77v0,31,33,40,52,20v18,-18,42,-88,-4,-90v-29,-1,-48,38,-48,70xm208,-21v-21,1,-35,-9,-35,-28v-20,43,-112,33,-103,-29v-7,-64,77,-126,119,-72r9,-16v23,0,27,7,23,25r-19,81v0,9,5,13,16,11v38,-6,55,-41,56,-82v2,-55,-51,-91,-110,-90v-87,2,-132,51,-139,131v-9,112,153,138,226,79v7,47,-51,57,-99,57v-93,0,-156,-46,-156,-136v0,-100,70,-159,169,-159v78,0,139,42,139,119v0,61,-37,105,-96,109","w":319},"\u00a9":{"d":"74,-210v0,-20,-13,-33,-34,-33v-47,0,-41,67,0,67v20,0,34,-12,34,-34xm60,-217v-12,-3,-29,-18,-32,7v-2,19,22,22,23,8r9,0v0,11,-9,16,-20,17v-17,0,-20,-10,-22,-25v-2,-21,23,-31,37,-19v4,3,5,7,5,12xm0,-210v0,-23,17,-40,40,-40v23,-1,41,19,41,40v0,22,-19,42,-41,41v-23,-1,-40,-16,-40,-41","w":84},"\u00ae":{"d":"40,-169v-40,2,-54,-59,-20,-76v28,-15,62,7,61,35v-1,23,-18,40,-41,41xm45,-233v16,-4,17,21,8,23v9,2,2,16,7,22v-19,6,-1,-24,-28,-18r0,18r-9,0r0,-41v1,-8,15,-3,22,-4xm32,-214v10,3,27,-4,12,-12r-12,0r0,12xm74,-210v0,-21,-12,-32,-34,-33v-20,-1,-34,15,-34,33v0,17,14,34,34,34v20,0,34,-13,34,-34","w":84},"*":{"d":"31,-221v-1,-17,-1,-31,18,-27r0,27v14,-5,30,-10,32,10r-25,7v7,9,19,28,-1,32r-15,-21v-6,11,-17,25,-30,10r15,-21r-25,-7v1,-17,17,-17,31,-10","w":84},"`":{"d":"0,-249v17,1,39,-4,46,9r20,35r-23,0","w":68},"'":{"d":"66,-249r-43,44r-23,0v12,-14,13,-39,34,-44r32,0","w":68},"\u00b4":{"d":"66,-249r-43,44r-23,0v12,-14,13,-39,34,-44r32,0","w":68},"\"":{"d":"45,-249v5,26,-31,20,-24,47v3,3,16,2,23,2v-1,18,6,41,-16,41r-28,0v-3,-47,1,-85,45,-90xm115,-249v5,24,-26,19,-24,42v-3,10,15,6,24,7v-1,19,5,41,-17,41r-28,0v-3,-47,2,-84,45,-90","w":120},"\u00a8":{"d":"95,-201v1,-9,-16,-5,-24,-6v1,-19,-5,-42,16,-42r28,0v3,46,0,87,-45,90v-4,-22,26,-21,25,-42xm1,-233v-1,-20,25,-16,44,-16v3,46,0,87,-45,90v-5,-21,25,-20,25,-42v2,-9,-15,-5,-24,-6r0,-26","w":120},"_":{"d":"0,44v-2,-18,5,-31,20,-31r163,0r0,31r-183,0","w":191},"\u00aa":{"d":"30,-172v17,1,22,-11,21,-29v-10,7,-34,1,-33,18v-1,7,5,12,12,11xm34,-249v37,0,39,21,39,57v0,32,-23,39,-46,39v-18,0,-31,-9,-31,-29v0,-24,18,-29,39,-30v10,-1,15,-4,15,-9v1,-11,-27,-12,-29,-2r-22,0v2,-17,15,-26,35,-26","w":76},"\u00ba":{"d":"71,-169v-25,32,-83,13,-75,-33v-8,-48,60,-62,78,-26v8,15,7,47,-3,59xm25,-224v-12,16,-11,51,18,51v9,0,13,-10,13,-28v0,-27,-17,-31,-31,-23","w":82},"\u00b2":{"d":"58,-224v0,22,-26,27,-36,41r35,0r0,14r-57,0v-3,-27,36,-38,41,-55v-2,-18,-26,-11,-25,3v-4,3,-16,2,-14,-8v6,-27,56,-26,56,5","w":60},"\u00b3":{"d":"29,-167v-17,-2,-29,-8,-28,-27r15,0v0,10,4,13,13,13v8,-1,12,-2,12,-12v1,-10,-8,-12,-17,-12v1,-3,-1,-9,1,-10v17,3,19,-22,4,-21v-7,0,-12,3,-11,12v-8,0,-16,2,-14,-8v4,-25,55,-22,52,5v1,5,-8,15,-10,15v25,10,8,48,-17,45","w":61},"\u00bc":{"d":"6,-169v10,-1,18,-8,21,-18v9,-1,16,1,15,10r0,84r-19,0r0,-63r-17,0r0,-13xm110,0r0,-21r-41,0v0,-36,24,-48,35,-73v13,0,25,-3,25,15r0,42r11,0r0,16r-11,0r0,21r-19,0xm0,0r104,-179v3,-9,12,-8,24,-8r-108,187r-20,0xm110,-36r0,-41r-26,41r26,0","w":146},"\u00bd":{"d":"139,-65v0,27,-31,31,-43,48r42,0r0,17r-68,0v-4,-32,44,-44,49,-65v0,-8,-6,-14,-14,-14v-12,0,-16,7,-16,19v-22,5,-19,-16,-9,-26v19,-19,59,-8,59,21xm0,0r104,-179v3,-9,12,-8,24,-8r-108,187r-20,0xm6,-169v10,-1,18,-8,21,-18v9,-1,16,1,15,10r0,84r-19,0r0,-63r-17,0r0,-13","w":144},"\u00be":{"d":"20,0r104,-179v4,-9,12,-8,24,-8r-109,187r-19,0xm130,0r0,-21r-41,0v0,-36,24,-48,35,-73v13,0,28,-3,24,15r0,42r12,0r0,16r-12,0r0,21r-18,0xm130,-36r0,-41r-26,41r26,0xm54,-143v30,13,13,53,-20,53v-19,0,-36,-10,-34,-31r18,0v-1,10,6,16,16,16v10,0,15,-6,15,-15v-1,-11,-9,-14,-21,-14v1,-4,-3,-13,2,-13v9,1,16,-5,16,-13v0,-8,-4,-12,-12,-12v-11,1,-13,5,-14,15v-20,5,-19,-13,-9,-22v16,-15,57,-8,55,18v0,11,-5,14,-12,18","w":167},"\u00a7":{"d":"18,-177v-27,-26,-4,-75,39,-72v30,2,52,17,56,44v-13,2,-39,9,-40,-5v-3,-17,-32,-13,-32,2v13,35,85,43,83,91v-1,18,-10,33,-23,42v31,28,10,82,-40,79v-35,-2,-54,-18,-59,-48v33,-9,34,15,60,20v10,-1,17,-5,18,-15v-7,-37,-89,-43,-84,-96v2,-18,7,-34,22,-42xm39,-160v-16,9,-14,30,5,43r37,26v32,-31,-26,-53,-42,-69","w":129},"0":{"d":"-4,-121v0,-77,21,-125,89,-125v66,0,91,49,90,125v0,78,-21,125,-90,125v-66,0,-90,-44,-89,-125xm124,-120v0,-37,-4,-87,-39,-87v-35,0,-39,48,-39,86v0,39,4,87,39,87v35,0,39,-48,39,-86","w":183},"1":{"d":"55,-242v23,-3,39,6,39,25r0,217r-48,0r0,-163r-46,0r0,-35v26,-1,50,-19,55,-44","w":98},"2":{"d":"1,-183v13,-87,177,-81,171,14v-4,60,-48,74,-89,104v-12,8,-19,15,-20,22r106,0r0,43r-173,0v-3,-80,70,-105,112,-141v25,-21,11,-63,-24,-63v-27,0,-40,19,-39,47v-23,0,-49,5,-44,-26","w":180},"3":{"d":"82,4v-55,-4,-86,-27,-86,-81r47,0v0,27,13,41,39,41v25,0,39,-13,40,-37v1,-28,-25,-41,-55,-36r0,-34v54,12,65,-63,15,-64v-25,0,-35,14,-35,38v-23,0,-51,4,-43,-25v9,-34,39,-52,80,-52v45,0,81,24,81,66v1,25,-14,39,-30,48v74,33,33,143,-53,136","w":182},"4":{"d":"92,-242v36,-2,62,-1,62,40r0,108r29,0r0,40r-29,0r0,54r-49,0r0,-54r-105,0r0,-44xm106,-92r0,-107r-67,107r67,0","w":191},"5":{"d":"122,-82v0,-43,-56,-59,-73,-27r-45,-2r16,-132r118,0v19,1,27,20,24,43r-107,0r-6,47v51,-35,125,5,125,69v0,79,-100,113,-155,69v-16,-12,-22,-32,-23,-55r48,0v0,21,14,34,37,34v29,0,41,-17,41,-46","w":182},"6":{"d":"86,-121v-24,0,-39,17,-38,41v0,27,13,45,39,45v25,0,37,-18,37,-45v0,-25,-14,-41,-38,-41xm132,-184v-20,-2,-19,-25,-45,-23v-29,2,-40,27,-40,64v45,-41,128,-6,128,61v0,51,-35,87,-88,86v-66,-1,-91,-46,-91,-119v0,-101,75,-164,150,-114v15,10,21,26,23,45r-37,0","w":183},"7":{"d":"36,0v5,-82,40,-144,86,-200r-122,0r0,-42r160,0v24,-2,29,23,16,37v-46,50,-83,120,-88,205r-52,0","w":194},"8":{"d":"20,-224v40,-36,148,-27,148,43v0,25,-13,42,-29,51v21,13,36,27,35,58v0,50,-35,76,-90,76v-54,0,-89,-23,-88,-76v0,-32,12,-46,36,-58v-34,-9,-39,-70,-12,-94xm46,-73v-1,25,19,39,46,36v17,-2,33,-17,32,-36v-1,-23,-17,-37,-40,-37v-23,0,-37,13,-38,37xm120,-177v0,-17,-16,-30,-36,-30v-20,0,-35,12,-35,30v0,19,12,29,35,29v22,0,36,-10,36,-29","w":182},"9":{"d":"82,-246v66,0,93,49,93,120v0,77,-29,130,-98,130v-36,0,-68,-14,-72,-48v-2,-19,29,-13,47,-14v2,30,47,31,60,7v6,-11,10,-26,11,-47v-43,38,-127,7,-127,-62v0,-53,33,-86,86,-86xm45,-162v-5,47,69,59,76,12v4,-30,-9,-57,-39,-57v-26,0,-35,21,-37,45","w":183},"?":{"d":"53,-70v-10,-60,46,-59,54,-104v5,-35,-42,-41,-58,-23v-6,7,-10,17,-10,30v-25,-2,-43,7,-43,-21v0,-65,104,-76,144,-35v28,29,14,88,-13,104v-17,10,-32,20,-30,49r-44,0xm51,-30v-2,-24,27,-18,49,-19r0,49r-49,0r0,-30","w":164},"\u00bf":{"d":"107,-75v0,-45,-64,-44,-54,-104r44,0v-1,56,60,48,60,107v0,82,-126,94,-156,33v-6,-13,-8,-41,7,-42v8,-1,18,-1,31,-1v1,29,14,43,44,40v16,-2,24,-14,24,-33xm100,-200v-21,-1,-49,6,-49,-18r0,-31r49,0r0,49","w":164},"\u00c6":{"d":"321,-148v10,54,-49,40,-94,41r0,63r132,0r0,44r-181,0r0,-50r-94,0r-32,50r-52,0r154,-225v9,-19,40,-16,68,-16r131,0r0,42r-126,0r0,51r94,0xm178,-90r0,-103r-67,103r67,0","w":376},"\u00d0":{"d":"254,-120v0,78,-36,123,-124,120r-81,0r0,-105r-49,0r0,-31r49,0v4,-40,-15,-105,26,-105r68,0v77,1,111,42,111,121xm203,-120v0,-69,-36,-86,-105,-79r0,63v27,-1,54,-3,48,31r-48,0r0,61v67,4,105,-7,105,-76","w":266},"\u00de":{"d":"131,-120v2,51,-41,88,-96,66v-2,20,7,51,-13,53v-9,1,-16,1,-22,1r0,-241v14,0,35,-2,35,17r0,37v12,-6,24,-5,40,-6v37,-1,55,38,56,73xm97,-121v0,-20,-14,-39,-32,-39v-19,0,-32,20,-31,39v0,19,12,39,31,39v18,0,32,-19,32,-39","w":137},"\u00df":{"d":"104,-207v-35,-3,-56,15,-56,41r0,196r-48,0r0,-198v2,-53,48,-81,114,-81v45,0,75,19,76,61v0,25,-12,41,-29,50v22,11,36,26,37,57v1,65,-57,78,-127,73r0,-43v35,0,75,6,75,-31v0,-38,-38,-32,-75,-32r0,-41v31,0,69,5,69,-26v0,-20,-14,-24,-36,-26","w":207},"\u00e6":{"d":"65,-33v34,1,46,-24,43,-59v-21,14,-67,4,-67,37v0,14,9,22,24,22xm158,-79v-8,45,54,57,68,23r48,0v-7,57,-98,80,-140,38v-39,30,-144,41,-138,-36v3,-42,29,-55,69,-58v22,-2,62,-14,34,-31v-11,-7,-48,-9,-51,8r-47,0v1,-58,102,-63,138,-34v62,-43,153,-1,137,90r-118,0xm227,-110v4,-33,-39,-47,-60,-27v-7,6,-9,16,-9,27r69,0","w":289},"\u00b5":{"d":"77,-32v79,0,-26,-159,77,-142r0,102v3,66,-50,83,-108,72v2,39,4,77,-46,67r0,-241r46,0r0,111v-1,20,15,31,31,31","w":161},"^":{"d":"22,-234v28,-37,61,4,76,27r-28,0r-21,-24v-12,13,-21,28,-49,24","w":103},"l":{"d":"2,-242v25,-1,49,0,49,23r0,219r-49,0r0,-242","w":59},"t":{"d":"83,-186v3,22,-8,35,-29,33r0,104v-1,14,15,12,29,12r0,37v-33,0,-77,8,-77,-35r0,-207v25,-2,48,1,48,24r0,32r29,0","w":87},"i":{"d":"4,-187v26,-2,49,1,49,24r0,163r-49,0r0,-187xm4,-242v32,-3,55,4,49,39r-49,0r0,-39","w":55},"\u00ed":{"d":"4,-187v26,-2,49,1,49,24r0,163r-49,0r0,-187xm79,-248r-43,44r-23,0v11,-15,11,-44,34,-44r32,0","w":63},"\u00ec":{"d":"4,-187v26,-2,49,1,49,24r0,163r-49,0r0,-187xm-27,-248v17,1,38,-4,45,8r19,36r-23,0","w":63},"\u00ee":{"d":"4,-187v26,-2,49,1,49,24r0,163r-49,0r0,-187xm3,-230v26,-36,60,4,75,26r-28,0r-22,-23v-10,13,-21,27,-48,23","w":63},"\u00ef":{"d":"5,-187v25,-2,48,1,48,24r0,163r-48,0r0,-187xm1,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm65,-236v16,-1,11,18,12,32r-32,0r0,-32r20,0","w":63},"j":{"d":"53,0v5,55,-9,84,-69,78r0,-41v24,5,20,-17,20,-37r0,-187v26,-2,49,1,49,24r0,163xm4,-242v32,-3,55,4,49,39r-49,0r0,-39","w":63},"\u00c5":{"d":"82,-225v6,-23,37,-14,63,-16r87,241r-52,0r-17,-49r-93,0r-17,49r-52,0xm103,-274v0,8,7,15,14,15v7,0,13,-7,13,-15v0,-7,-5,-15,-13,-14v-8,-1,-14,7,-14,14xm117,-300v14,3,26,10,26,26v0,16,-11,25,-26,26v-14,-3,-26,-9,-26,-26v1,-16,11,-24,26,-26xm116,-193r-33,104r67,0","w":243},"\u00e5":{"d":"66,-35v32,1,46,-24,42,-60v-20,12,-66,7,-67,37v0,14,11,23,25,23xm76,-202v-15,0,-25,-10,-26,-26v-1,-27,42,-33,50,-10v7,19,-6,36,-24,36xm63,-228v-1,8,5,15,13,15v8,0,14,-7,13,-15v0,-7,-5,-15,-13,-14v-8,-1,-13,7,-13,14xm1,-140v1,-70,153,-72,153,1v0,54,5,113,-34,131v-47,21,-124,14,-124,-48v0,-49,38,-56,81,-62v21,-3,31,-9,31,-18v-2,-23,-53,-22,-60,-4r-47,0","w":161},"\u00a0":{"w":80}}});
Cufon.registerFont({"w":242,"face":{"font-family":"Harabara","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 3 5 3 2 2 2 4","ascent":"288","descent":"-72","bbox":"-27 -307.302 359 79","underline-thickness":"0","underline-position":"0","unicode-range":"U+0020-U+00FC"},"glyphs":{" ":{"w":80},"A":{"d":"80,-226v6,-23,37,-14,63,-16r88,242r-52,0r-17,-50r-94,0r-15,50r-53,0xm115,-193r-33,102r67,0"},"\u00c1":{"d":"80,-226v6,-23,37,-14,63,-16r88,242r-52,0r-17,-50r-94,0r-15,50r-53,0xm171,-303r-43,44r-23,0v12,-14,10,-44,34,-44r32,0xm115,-193r-33,102r67,0"},"\u00c0":{"d":"80,-226v6,-23,37,-14,63,-16r88,242r-52,0r-17,-50r-94,0r-15,50r-53,0xm70,-303v16,2,39,-4,46,8r20,36r-24,0xm115,-193r-33,102r67,0"},"\u00c2":{"d":"80,-226v6,-23,37,-14,63,-16r88,242r-52,0r-17,-50r-94,0r-15,50r-53,0xm115,-193r-33,102r67,0xm89,-285v27,-36,60,4,76,26r-29,0r-21,-24v-10,14,-20,28,-48,24"},"\u00c3":{"d":"115,-193r-33,102r67,0xm80,-226v6,-23,37,-14,63,-16r88,242r-52,0r-17,-50r-94,0r-15,50r-53,0xm72,-259v-11,-50,40,-32,70,-22v6,0,13,-3,18,-9v8,51,-41,24,-74,20v-6,0,-10,3,-14,11"},"\u00c4":{"d":"115,-193r-33,102r67,0xm80,-226v6,-23,37,-14,63,-16r88,242r-52,0r-17,-50r-94,0r-15,50r-53,0xm152,-291v15,-1,10,19,11,32r-32,0r0,-32r21,0xm88,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0"},"B":{"d":"198,-74v0,91,-109,73,-198,74r0,-217v4,-42,73,-19,114,-25v74,-11,103,84,47,111v22,10,37,25,37,57xm140,-174v1,-38,-56,-23,-92,-26r0,52v36,-3,91,11,92,-26xm147,-75v0,-45,-58,-29,-99,-32r0,63v41,-3,99,13,99,-31","w":208},"C":{"d":"111,-39v32,0,49,-17,56,-45r49,0v-4,57,-47,90,-108,90v-76,0,-112,-48,-112,-127v-1,-82,38,-127,116,-128v61,0,99,31,104,87v-24,0,-47,4,-54,-15v-7,-17,-26,-27,-50,-27v-47,0,-66,33,-66,83v1,48,19,82,65,82","w":226},"\u00c7":{"d":"111,-39v32,0,49,-17,56,-45r49,0v-4,57,-47,90,-108,90v-76,0,-112,-48,-112,-127v-1,-82,38,-127,116,-128v61,0,99,31,104,87v-24,0,-47,4,-54,-15v-7,-17,-26,-27,-50,-27v-47,0,-66,33,-66,83v1,48,19,82,65,82xm58,51v-3,-26,3,-48,33,-40v18,5,46,22,62,4v9,55,-45,28,-79,23v-6,0,-12,5,-16,13","w":226},"D":{"d":"205,-121v-2,80,-35,124,-123,121r-82,0r0,-217v1,-38,58,-24,95,-25v77,-2,112,43,110,121xm155,-121v-2,-49,-14,-78,-60,-79r-46,0r0,156v68,4,109,-7,106,-77","w":215},"E":{"d":"143,-148v3,23,-5,41,-25,41r-69,0r0,62r127,0r0,45r-176,0r0,-217v-1,-14,12,-25,25,-25r151,0r0,42r-127,0r0,52r94,0","w":184},"\u00c8":{"d":"143,-148v3,23,-5,41,-25,41r-69,0r0,62r127,0r0,45r-176,0r0,-217v-1,-14,12,-25,25,-25r151,0r0,42r-127,0r0,52r94,0xm45,-303v17,1,39,-4,46,8r20,36r-23,0","w":184},"\u00c9":{"d":"143,-148v3,23,-5,41,-25,41r-69,0r0,62r127,0r0,45r-176,0r0,-217v-1,-14,12,-25,25,-25r151,0r0,42r-127,0r0,52r94,0xm146,-303r-43,44r-24,0v12,-15,12,-44,35,-44r32,0","w":184},"\u00ca":{"d":"143,-148v3,23,-5,41,-25,41r-69,0r0,62r127,0r0,45r-176,0r0,-217v-1,-14,12,-25,25,-25r151,0r0,42r-127,0r0,52r94,0xm68,-285v26,-36,59,4,75,26r-28,0r-21,-24v-11,14,-21,28,-49,24","w":184},"\u00cb":{"d":"143,-148v3,23,-5,41,-25,41r-69,0r0,62r127,0r0,45r-176,0r0,-217v-1,-14,12,-25,25,-25r151,0r0,42r-127,0r0,52r94,0xm124,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0xm60,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0","w":184},"F":{"d":"143,-148v3,23,-5,41,-25,41r-69,0r0,107r-49,0r0,-217v-1,-14,12,-25,25,-25r151,0r0,42r-127,0r0,52r94,0","w":184},"G":{"d":"174,-90v-35,3,-62,-2,-55,-41r100,0r0,131v-25,3,-38,-7,-40,-29v-14,22,-36,35,-70,35v-71,0,-113,-54,-113,-128v0,-140,198,-175,223,-45v-23,-1,-47,5,-56,-13v-8,-15,-27,-25,-51,-25v-44,0,-66,36,-66,83v0,86,112,119,128,32","w":229},"H":{"d":"0,-217v0,-23,24,-27,50,-25r0,90r100,0r0,-90r50,0r0,242r-50,0r0,-108r-100,0r0,108r-50,0r0,-217","w":210},"I":{"d":"0,-217v0,-23,24,-27,50,-25r0,242r-50,0r0,-217","w":52},"\u00cd":{"d":"0,-217v0,-23,24,-27,50,-25r0,242r-50,0r0,-217xm79,-303r-42,44r-23,0v12,-14,11,-44,35,-44r30,0","w":82},"\u00cc":{"d":"0,-217v0,-23,24,-27,50,-25r0,242r-50,0r0,-217xm-25,-303v17,1,38,-4,45,8r20,36r-23,0","w":52},"\u00cf":{"d":"8,-217v0,-23,24,-27,50,-25r0,242r-50,0r0,-217xm69,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0xm5,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0","w":84},"\u00ce":{"d":"0,-217v0,-23,24,-27,50,-25r0,242r-50,0r0,-217xm-1,-285v26,-37,60,4,75,26r-28,0r-21,-24v-11,13,-21,29,-48,24","w":77},"J":{"d":"78,6v-60,1,-84,-30,-78,-97r49,0v-1,29,-4,59,28,56v23,-1,28,-11,28,-38r0,-144v0,-23,24,-28,50,-25r0,171v4,59,-27,76,-77,77","w":162},"K":{"d":"0,-217v0,-23,24,-27,50,-25r0,99r94,-99r63,0r-97,98r105,144r-60,0r-61,-86v-15,-23,-44,-22,-44,1r0,85r-50,0r0,-217","w":225},"L":{"d":"0,-217v0,-23,24,-27,50,-25r0,197r118,0r0,45r-168,0r0,-217","w":175},"M":{"d":"0,-217v0,-32,41,-26,74,-26r48,185r47,-185r74,0r0,243r-46,0r0,-195r-49,195r-52,0r-50,-195r0,195r-46,0r0,-217","w":255},"N":{"d":"0,-217v0,-24,25,-29,52,-26r98,167r0,-167r50,0r0,243r-52,0r-99,-167r0,167r-49,0r0,-217","w":209},"\u00d1":{"d":"0,-217v0,-24,25,-27,52,-25r98,166r0,-166r50,0r0,242r-52,0r-99,-167r0,167r-49,0r0,-217xm61,-260v-3,-24,3,-42,30,-34v18,5,43,21,58,3v8,51,-41,23,-73,19v-6,0,-11,4,-15,12","w":209},"O":{"d":"113,-205v-47,0,-67,34,-67,84v0,50,21,84,67,84v45,0,68,-36,68,-84v0,-48,-22,-84,-68,-84xm113,6v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,118,52,118,128v0,76,-45,127,-118,127"},"\u00d3":{"d":"113,-205v-47,0,-67,34,-67,84v0,50,21,84,67,84v45,0,68,-36,68,-84v0,-48,-22,-84,-68,-84xm160,-303r-43,44r-22,0v12,-14,11,-44,34,-44r31,0xm113,6v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,118,52,118,128v0,76,-45,127,-118,127"},"\u00d2":{"d":"113,-205v-47,0,-67,34,-67,84v0,50,21,84,67,84v45,0,68,-36,68,-84v0,-48,-22,-84,-68,-84xm56,-303v17,1,40,-4,46,8r19,36r-23,0xm113,6v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,118,52,118,128v0,76,-45,127,-118,127"},"\u00d4":{"d":"113,6v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,118,52,118,128v0,76,-45,127,-118,127xm86,-285v27,-36,60,3,76,26r-28,0r-22,-24v-10,14,-20,28,-48,24xm113,-205v-47,0,-67,34,-67,84v0,50,21,84,67,84v45,0,68,-36,68,-84v0,-48,-22,-84,-68,-84"},"\u00d5":{"d":"113,6v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,118,52,118,128v0,76,-45,127,-118,127xm69,-259v-10,-50,41,-32,71,-22v6,0,13,-3,18,-9v6,51,-43,24,-74,19v-6,0,-11,4,-15,12xm113,-205v-47,0,-67,34,-67,84v0,50,21,84,67,84v45,0,68,-36,68,-84v0,-48,-22,-84,-68,-84"},"\u00d6":{"d":"113,6v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,118,52,118,128v0,76,-45,127,-118,127xm149,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0xm85,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0xm113,-205v-47,0,-67,34,-67,84v0,50,21,84,67,84v45,0,68,-36,68,-84v0,-48,-22,-84,-68,-84"},"\u00d8":{"d":"231,-121v0,109,-116,161,-194,103r-16,18r-27,0r28,-33v-18,-22,-26,-51,-26,-88v0,-109,115,-164,193,-103r16,-19r28,0r-29,34v18,22,27,51,27,88xm68,-54v46,41,113,3,113,-67v0,-20,-3,-37,-10,-51xm158,-188v-46,-41,-112,-5,-112,67v0,20,3,36,10,50","w":243},"P":{"d":"185,-164v1,48,-26,79,-74,78r-61,0r0,86r-50,0r0,-217v3,-41,68,-25,108,-25v51,0,76,27,77,78xm136,-165v0,-42,-45,-36,-86,-35r0,70v40,-1,86,9,86,-35","w":194},"Q":{"d":"231,-121v-1,36,-9,65,-26,84r27,25v-9,11,-25,28,-41,14r-14,-13v-17,12,-38,17,-64,17v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,120,52,118,128xm46,-121v0,62,41,100,96,77r-25,-24v10,-20,40,-22,53,-3v25,-50,8,-134,-57,-134v-47,0,-67,34,-67,84","w":243},"R":{"d":"145,0v-15,-39,10,-94,-42,-94r-53,0r0,94r-50,0r0,-217v4,-42,75,-22,117,-25v49,-3,78,21,78,68v1,31,-12,50,-36,58v35,9,30,55,32,100v1,8,5,14,9,16r-55,0xm146,-168v0,-44,-55,-30,-96,-32r0,64v41,-2,96,11,96,-32","w":209},"S":{"d":"167,-127v63,45,18,141,-67,133v-60,-6,-96,-26,-100,-81r49,0v-2,47,96,55,99,9v0,-15,-22,-28,-64,-37v-50,-11,-76,-19,-80,-73v-6,-77,113,-92,159,-53v17,14,24,34,25,57v-23,0,-44,4,-51,-15v-10,-29,-87,-30,-85,8v2,34,90,34,115,52","w":206},"T":{"d":"0,-199v-3,-24,5,-42,25,-43r168,0r0,43r-71,0r0,199r-50,0r0,-199r-72,0","w":201},"U":{"d":"0,-216v0,-24,24,-30,51,-27r0,152v-1,37,12,54,46,54v34,0,48,-17,47,-54r0,-152r50,0r0,157v0,61,-34,92,-97,92v-63,0,-97,-31,-97,-92r0,-130","w":203},"\u00da":{"d":"0,-216v0,-24,24,-30,51,-27r0,152v-1,37,12,54,46,54v34,0,48,-17,47,-54r0,-152r50,0r0,157v0,61,-34,92,-97,92v-63,0,-97,-31,-97,-92r0,-130xm144,-303r-43,44r-22,0v11,-15,12,-39,33,-44r32,0","w":203},"\u00d9":{"d":"0,-217v0,-24,24,-29,51,-26r0,152v-1,37,12,54,46,54v34,0,48,-17,47,-54r0,-152r50,0r0,157v0,61,-34,92,-97,92v-63,0,-97,-31,-97,-92r0,-131xm51,-303v17,1,39,-4,46,8r20,36r-23,0","w":203},"\u00db":{"d":"0,-217v0,-24,24,-29,51,-26r0,152v-1,37,12,54,46,54v34,0,48,-17,47,-54r0,-152r50,0r0,157v0,61,-34,92,-97,92v-63,0,-97,-31,-97,-92r0,-131xm70,-285v27,-36,60,4,76,26r-28,0r-22,-24v-10,14,-20,28,-48,24","w":203},"\u00dc":{"d":"0,-217v0,-24,24,-29,51,-26r0,152v-1,37,12,54,46,54v34,0,48,-17,47,-54r0,-152r50,0r0,157v0,61,-34,92,-97,92v-63,0,-97,-31,-97,-92r0,-131xm69,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0xm133,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0","w":203},"V":{"d":"84,0r-84,-242r56,0r51,181r47,-163v4,-24,34,-17,60,-18r-83,242r-47,0","w":224},"W":{"d":"70,0r-70,-242r51,0r42,171r35,-171r53,0r35,171r37,-153v3,-22,31,-18,56,-18r-69,242r-48,0r-37,-186r-38,186r-47,0","w":323},"X":{"d":"0,0r76,-124r-76,-118r58,0r49,84r42,-72v9,-19,40,-10,65,-12r-76,118r76,124r-57,0r-50,-84r-49,84r-58,0","w":224},"Y":{"d":"138,0r-50,0r0,-90r-88,-152r61,0r51,104r42,-90v8,-20,37,-13,63,-14r-79,152r0,90","w":227},"Z":{"d":"131,-198v-50,-8,-138,28,-128,-44r189,0r0,42r-132,156r129,0r0,44r-189,0r0,-42","w":201},"a":{"d":"66,-34v31,0,46,-24,42,-60v-21,13,-67,6,-67,37v1,14,9,23,25,23xm154,-75v1,60,-39,79,-95,79v-35,-1,-63,-20,-63,-60v0,-48,37,-57,81,-61v21,-3,31,-10,31,-19v0,-23,-54,-23,-60,-3r-47,0v0,-69,155,-72,153,0r0,64","w":161},"\u00e1":{"d":"124,-248r-42,44r-24,0v12,-15,12,-44,35,-44r31,0xm66,-34v31,0,46,-24,42,-60v-21,13,-67,6,-67,37v1,14,9,23,25,23xm154,-75v1,60,-39,79,-95,79v-35,-1,-63,-20,-63,-60v0,-48,37,-57,81,-61v21,-3,31,-10,31,-19v0,-23,-54,-23,-60,-3r-47,0v0,-69,155,-72,153,0r0,64","w":161},"\u00e0":{"d":"66,-34v31,0,46,-24,42,-60v-21,13,-67,6,-67,37v1,14,9,23,25,23xm154,-75v1,60,-39,79,-95,79v-35,-1,-63,-20,-63,-60v0,-48,37,-57,81,-61v21,-3,31,-10,31,-19v0,-23,-54,-23,-60,-3r-47,0v0,-69,155,-72,153,0r0,64xm29,-248v17,1,39,-4,46,8r19,36r-22,0","w":161},"\u00e2":{"d":"66,-34v31,0,46,-24,42,-60v-21,13,-67,6,-67,37v1,14,9,23,25,23xm154,-75v1,60,-39,79,-95,79v-35,-1,-63,-20,-63,-60v0,-48,37,-57,81,-61v21,-3,31,-10,31,-19v0,-23,-54,-23,-60,-3r-47,0v0,-69,155,-72,153,0r0,64xm48,-231v27,-34,61,5,76,27r-29,0r-21,-23v-12,12,-21,27,-49,23","w":161},"\u00e3":{"d":"66,-34v31,0,46,-24,42,-60v-21,13,-67,6,-67,37v1,14,9,23,25,23xm154,-75v1,60,-39,79,-95,79v-35,-1,-63,-20,-63,-60v0,-48,37,-57,81,-61v21,-3,31,-10,31,-19v0,-23,-54,-23,-60,-3r-47,0v0,-69,155,-72,153,0r0,64xm30,-204v-10,-50,43,-31,72,-22v6,0,11,-3,16,-9v8,52,-42,23,-73,19v-6,0,-11,4,-15,12","w":161},"\u00e4":{"d":"46,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm110,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm66,-34v31,0,46,-24,42,-60v-21,13,-67,6,-67,37v1,14,9,23,25,23xm154,-75v1,60,-39,79,-95,79v-35,-1,-63,-20,-63,-60v0,-48,37,-57,81,-61v21,-3,31,-10,31,-19v0,-23,-54,-23,-60,-3r-47,0v0,-69,155,-72,153,0r0,64","w":161},"b":{"d":"0,-243v25,-2,48,1,48,24r0,57v9,-16,26,-30,53,-29v48,0,75,46,75,98v0,57,-27,98,-85,97v-50,-2,-91,-26,-91,-86r0,-161xm87,-37v29,0,41,-25,41,-58v0,-30,-13,-54,-39,-54v-29,0,-41,23,-41,54v0,35,10,58,39,58","w":184},"c":{"d":"44,-94v0,54,45,73,73,40v10,-7,32,-3,48,-4v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-108,148,-131,168,-35r-49,0v-6,-14,-16,-20,-33,-20v-30,0,-38,22,-38,56","w":172},"\u00e7":{"d":"44,-94v0,54,45,73,73,40v10,-7,32,-3,48,-4v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-108,148,-131,168,-35r-49,0v-6,-14,-16,-20,-33,-20v-30,0,-38,22,-38,56xm41,39v-10,-50,41,-32,71,-22v6,0,12,-3,17,-9v8,51,-42,24,-73,19v-6,0,-11,4,-15,12","w":172},"d":{"d":"70,-191v27,-1,43,13,54,29r0,-81v25,-3,47,2,48,24r0,137v3,61,-41,86,-92,86v-58,0,-84,-38,-84,-97v0,-54,26,-97,74,-98xm83,-149v-26,0,-39,23,-39,54v0,34,11,58,40,58v29,0,41,-25,40,-58v0,-30,-13,-54,-41,-54","w":180},"e":{"d":"84,-37v24,2,25,-21,46,-21r35,0v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-57,29,-95,84,-96v62,-1,94,44,87,110r-121,0v0,28,13,43,38,44xm117,-112v4,-37,-37,-49,-61,-29v-8,6,-10,17,-10,29r71,0","w":175},"\u00e9":{"d":"84,-37v24,2,25,-21,46,-21r35,0v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-57,29,-95,84,-96v62,-1,94,44,87,110r-121,0v0,28,13,43,38,44xm131,-248r-42,44r-24,0v12,-15,12,-44,35,-44r31,0xm117,-112v4,-37,-37,-49,-61,-29v-8,6,-10,17,-10,29r71,0","w":175},"\u00e8":{"d":"84,-37v24,2,25,-21,46,-21r35,0v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-57,29,-95,84,-96v62,-1,94,44,87,110r-121,0v0,28,13,43,38,44xm36,-248v17,1,39,-4,46,8r19,36r-22,0xm117,-112v4,-37,-37,-49,-61,-29v-8,6,-10,17,-10,29r71,0","w":175},"\u00ea":{"d":"84,-37v24,2,25,-21,46,-21r35,0v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-57,29,-95,84,-96v62,-1,94,44,87,110r-121,0v0,28,13,43,38,44xm55,-231v27,-34,61,5,76,27r-28,0r-22,-23v-12,12,-21,27,-49,23xm117,-112v4,-37,-37,-49,-61,-29v-8,6,-10,17,-10,29r71,0","w":175},"\u00eb":{"d":"84,-37v24,2,25,-21,46,-21r35,0v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-57,29,-95,84,-96v62,-1,94,44,87,110r-121,0v0,28,13,43,38,44xm117,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm53,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm117,-112v4,-37,-37,-49,-61,-29v-8,6,-10,17,-10,29r71,0","w":175},"f":{"d":"78,-176v2,23,-8,37,-30,35r0,141r-48,0r0,-193v-3,-45,33,-55,78,-48r0,39v-21,-2,-35,-1,-30,26r30,0","w":81},"g":{"d":"172,-6v3,60,-41,85,-92,85v-43,0,-70,-21,-80,-61r51,0v10,19,47,27,62,4v7,-10,12,-25,11,-45v-22,40,-93,28,-113,-10v-31,-59,-14,-164,69,-158v50,4,92,25,92,86r0,99xm84,-150v-54,0,-50,103,-12,112v54,12,64,-64,39,-99v-6,-8,-15,-13,-27,-13","w":180},"h":{"d":"127,0v-4,-58,18,-149,-38,-149v-60,0,-36,91,-41,149r-48,0r0,-242v25,-2,48,1,48,24r0,56v19,-41,91,-34,113,2v22,35,10,106,13,160r-47,0","w":182},"k":{"d":"0,-242v25,-2,49,1,49,23r0,101r60,-69r59,0r-67,72r68,115r-59,0r-35,-63v-9,-19,-20,-21,-26,-8r0,71r-49,0r0,-242","w":177},"m":{"d":"196,-152v-21,1,-33,15,-33,42r0,110r-48,0r0,-120v1,-20,-16,-32,-33,-32v-17,0,-33,11,-33,32r0,120r-49,0r0,-110v-9,-81,88,-99,140,-64v50,-35,138,-18,138,64r0,110v-25,2,-47,0,-49,-24v-3,-49,19,-128,-33,-128","w":291},"n":{"d":"80,-191v49,0,83,22,83,81r0,110v-25,1,-48,0,-48,-24v0,-49,18,-127,-33,-128v-17,1,-33,11,-33,32r0,120r-49,0r0,-110v-3,-58,34,-81,80,-81","w":170},"\u00f1":{"d":"38,-203v-3,-23,3,-42,30,-35v19,4,42,22,58,3v8,53,-41,24,-73,20v-6,0,-11,4,-15,12xm80,-191v49,0,83,22,83,81r0,110v-25,1,-48,0,-48,-24v0,-49,18,-127,-33,-128v-17,1,-33,11,-33,32r0,120r-49,0r0,-110v-3,-58,34,-81,80,-81","w":170},"o":{"d":"150,-29v-34,51,-134,35,-148,-22v-20,-85,25,-163,115,-135v52,16,64,109,33,157xm112,-132v-26,-39,-79,-7,-68,40v-6,49,40,72,67,39v11,-13,11,-64,1,-79","w":175},"\u00f3":{"d":"163,-56v-13,74,-144,77,-161,5v-21,-85,25,-165,115,-135v43,14,56,75,46,130xm131,-248r-42,44r-24,0v12,-15,12,-44,35,-44r31,0xm112,-132v-26,-39,-79,-7,-68,40v-6,49,40,72,67,39v11,-13,11,-64,1,-79","w":175},"\u00f2":{"d":"163,-56v-13,74,-144,77,-161,5v-21,-85,25,-165,115,-135v43,14,56,75,46,130xm36,-248v17,1,39,-4,46,8r19,36r-22,0xm112,-132v-26,-39,-79,-7,-68,40v-6,49,40,72,67,39v11,-13,11,-64,1,-79","w":175},"\u00f4":{"d":"163,-56v-13,74,-144,77,-161,5v-21,-85,25,-165,115,-135v43,14,56,75,46,130xm55,-231v27,-34,61,5,76,27r-28,0r-22,-23v-12,12,-21,27,-49,23xm112,-132v-26,-39,-79,-7,-68,40v-6,49,40,72,67,39v11,-13,11,-64,1,-79","w":175},"\u00f5":{"d":"163,-56v-13,74,-144,77,-161,5v-21,-85,25,-165,115,-135v43,14,56,75,46,130xm37,-204v-10,-50,43,-31,72,-22v6,0,12,-3,17,-9v8,52,-43,24,-74,19v-6,0,-11,4,-15,12xm112,-132v-26,-39,-79,-7,-68,40v-6,49,40,72,67,39v11,-13,11,-64,1,-79","w":175},"\u00f6":{"d":"163,-56v-13,74,-144,77,-161,5v-21,-85,25,-165,115,-135v43,14,56,75,46,130xm117,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm53,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm112,-132v-26,-39,-79,-7,-68,40v-6,49,40,72,67,39v11,-13,11,-64,1,-79","w":175},"p":{"d":"101,4v-26,0,-42,-11,-53,-29v-3,45,17,107,-48,94r0,-175v-3,-60,41,-84,91,-85v57,-1,85,39,85,96v0,54,-27,99,-75,99xm89,-38v26,0,39,-26,39,-55v0,-32,-12,-57,-41,-57v-28,0,-39,24,-39,57v0,33,13,55,41,55","w":184},"q":{"d":"172,69v-25,2,-48,-1,-48,-24r0,-70v-11,18,-28,29,-54,29v-48,0,-74,-44,-74,-99v0,-57,26,-97,84,-96v50,1,92,25,92,85r0,175xm84,-150v-29,0,-40,25,-40,57v0,30,12,55,39,55v28,0,41,-23,41,-55v1,-32,-11,-56,-40,-57","w":180},"r":{"d":"105,-137v-35,-3,-56,7,-56,41r0,96r-49,0r0,-91v0,-67,38,-97,105,-96r0,50","w":110},"s":{"d":"76,4v-50,0,-80,-19,-80,-66r48,0v0,20,17,29,38,28v35,0,42,-30,1,-37v-45,-8,-80,-16,-83,-60v-4,-61,92,-76,134,-44v15,11,20,27,21,46v-27,2,-46,1,-56,-18v-13,-9,-51,-11,-50,11v-3,9,27,20,49,21v39,11,64,16,64,55v0,46,-35,64,-86,64","w":169},"u":{"d":"82,-35v84,0,-27,-169,81,-152r0,110v2,60,-34,81,-83,81v-46,0,-80,-22,-80,-81r0,-110r49,0r0,119v-2,21,15,33,33,33","w":170},"\u00fa":{"d":"82,-35v84,0,-27,-169,81,-152r0,110v2,60,-34,81,-83,81v-46,0,-80,-22,-80,-81r0,-110r49,0r0,119v-2,21,15,33,33,33xm66,-204v12,-15,12,-44,35,-44r30,0r-42,44r-23,0","w":170},"\u00f9":{"d":"82,-35v84,0,-27,-169,81,-152r0,110v2,60,-34,81,-83,81v-46,0,-80,-22,-80,-81r0,-110r49,0r0,119v-2,21,15,33,33,33xm36,-248v17,1,39,-4,46,8r20,36r-23,0","w":170},"\u00fb":{"d":"82,-35v84,0,-27,-169,81,-152r0,110v2,60,-34,81,-83,81v-46,0,-80,-22,-80,-81r0,-110r49,0r0,119v-2,21,15,33,33,33xm56,-231v26,-34,61,5,75,27r-28,0r-21,-23v-12,13,-22,27,-50,23","w":170},"\u00fc":{"d":"82,-35v84,0,-27,-169,81,-152r0,110v2,60,-34,81,-83,81v-46,0,-80,-22,-80,-81r0,-110r49,0r0,119v-2,21,15,33,33,33xm54,-236v16,-1,11,18,12,32r-32,0r0,-32r20,0xm117,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0","w":170},"v":{"d":"115,0r-50,0r-65,-187r52,0r37,131r33,-114v6,-23,33,-16,59,-17","w":189},"x":{"d":"181,0r-57,0r-33,-59r-34,59r-57,0r61,-96r-57,-91r54,0r32,56r36,-60v7,-20,38,-11,63,-13r-70,108","w":198},"w":{"d":"207,0r-49,0r-29,-134r-28,134r-50,0r-51,-187r48,0r29,129r27,-129r50,0r25,129r26,-112v4,-21,30,-17,54,-17","w":271},"y":{"d":"27,66r0,-39v23,1,47,-1,38,-28r-65,-186r54,0r38,132r33,-115v4,-22,32,-16,56,-17r-71,213v-10,36,-37,47,-83,40","w":189},"z":{"d":"101,-148v-41,-4,-104,18,-95,-39r153,0r0,40r-99,106r102,0r0,41r-162,0r0,-37","w":170},":":{"d":"0,-49v-1,-18,22,-14,39,-14r0,39r-39,0r0,-25xm0,-148v-1,-19,22,-14,39,-15r0,39r-39,0r0,-24","w":40},".":{"d":"0,-24v-1,-19,22,-14,39,-15r0,39r-39,0r0,-24","w":40},";":{"d":"0,44v-4,-20,23,-20,21,-39v2,-7,-13,-4,-20,-5v1,-17,-5,-39,14,-39r24,0v2,41,1,80,-39,83xm1,-124v-2,-19,21,-15,38,-15r0,39r-38,0r0,-24","w":40},",":{"d":"0,44v-4,-20,23,-20,21,-39v2,-7,-13,-4,-20,-5v1,-17,-5,-39,14,-39r24,0v2,41,1,80,-39,83","w":40},"+":{"d":"0,-77v0,-16,-2,-34,15,-33r48,0r0,-63v16,0,34,-2,33,15r0,48r63,0r0,33r-63,0r0,63r-33,0r0,-63r-63,0","w":166},"-":{"d":"0,-74v0,-20,-2,-39,19,-39r78,0r0,39r-97,0","w":101},"~":{"d":"0,-74v-4,-27,6,-46,34,-38v20,5,48,24,64,3v9,58,-45,26,-81,22v-7,0,-13,5,-17,13","w":101},"\u00b1":{"d":"0,-135v-6,-31,24,-26,50,-26r0,-45v16,0,32,-2,32,15r0,30r51,0r0,26r-51,0r0,45r-32,0r0,-45r-50,0xm0,-39v-1,-15,0,-27,15,-26r118,0r0,26r-133,0","w":139},"#":{"d":"27,-139v5,-33,25,-52,68,-45r20,-58v17,-1,34,0,36,13v3,21,-4,31,-8,45r33,0r19,-58v17,0,38,-1,38,13v0,21,-5,31,-9,45r43,0r-15,45r-43,0r-11,35r42,0r-14,46r-44,0r-20,58r-47,0r19,-58r-33,0r-19,58r-49,0r20,-58r-53,0v6,-32,24,-53,68,-46r11,-35r-52,0xm160,-139r-32,0r-12,35r33,0","w":280},"$":{"d":"190,-75v0,50,-33,76,-85,78r0,30r-26,0r0,-30v-51,-2,-80,-31,-83,-80r48,0v3,22,14,34,35,38v-2,-21,4,-49,-2,-66v-51,-8,-78,-19,-78,-71v0,-49,31,-68,80,-72v1,-9,-2,-23,1,-30v15,0,27,12,25,30v46,4,74,30,76,75r-28,0v-24,0,-24,-33,-48,-34r0,60v42,13,85,18,85,72xm105,-38v19,0,37,-10,36,-30v0,-11,-12,-21,-36,-29r0,59xm79,-208v-20,1,-32,11,-33,29v0,12,11,21,33,26r0,-55","w":198},"\u00a3":{"d":"186,-8v-51,34,-124,-28,-168,12r-18,-41v17,-12,27,-24,32,-38r-32,0r0,-31r35,0v-2,-8,-3,-15,-4,-18r-31,0r0,-31r22,0v-22,-77,70,-120,129,-78v14,10,22,27,25,49v-18,3,-48,9,-50,-10v-12,-31,-62,-17,-60,14v0,7,1,15,4,25v30,2,65,-10,58,31r-49,0v2,11,3,18,3,18v29,-2,50,-1,46,31r-49,0v-3,9,-11,19,-22,32v35,-15,74,21,111,-5","w":195},"\u00a2":{"d":"165,-71v-2,51,-43,82,-102,74r-10,36r-18,0r11,-40v-33,-15,-50,-45,-50,-93v0,-66,36,-105,104,-97r8,-28r18,0r-9,33v29,8,43,32,47,66r-47,0v-2,-12,-6,-17,-13,-26r-29,109v27,2,38,-9,42,-34r48,0xm89,-151v-52,-11,-56,77,-29,107","w":172},"!":{"d":"0,-217v0,-23,24,-27,50,-25r-9,174r-33,0xm1,-30v-2,-24,26,-19,48,-19r0,49r-48,0r0,-30","w":52},"%":{"d":"22,0r134,-232v6,-15,27,-9,46,-10r-140,242r-40,0xm224,-59v0,-26,-24,-50,-50,-50v-28,0,-50,24,-50,50v0,26,23,50,50,50v26,0,50,-24,50,-50xm0,-184v0,-27,24,-49,50,-49v26,0,50,23,50,49v0,27,-23,50,-50,50v-27,0,-50,-22,-50,-50xm75,-184v0,-12,-12,-23,-25,-23v-13,0,-25,10,-25,23v0,14,11,25,25,25v14,0,25,-12,25,-25xm150,-59v0,-14,10,-25,24,-25v13,0,24,12,24,25v0,13,-11,25,-24,25v-15,0,-24,-11,-24,-25","w":234},"&":{"d":"58,-97v-40,26,1,80,38,58v6,-2,12,-6,18,-12r-44,-55xm85,-207v-32,1,-16,40,-2,49v20,-6,35,-47,2,-49xm-4,-64v5,-39,20,-55,50,-72v-10,-14,-24,-28,-24,-49v0,-36,28,-57,64,-58v34,0,60,21,60,54v0,32,-18,46,-40,60r35,43v7,-9,11,-29,12,-41v19,0,44,-4,40,19v-4,21,-15,41,-26,55r45,53r-57,0r-16,-20v-37,43,-151,27,-143,-44","w":222},"(":{"d":"53,36v-63,-69,-76,-207,-15,-288v9,-19,32,-21,49,-22v-57,81,-57,230,0,310r-34,0","w":91},")":{"d":"34,-274v45,61,81,143,44,232v-12,30,-29,83,-78,77v58,-78,57,-232,0,-309r34,0","w":97},"{":{"d":"51,-119v72,5,-5,142,72,124v4,25,-8,41,-32,35v-47,3,-49,-47,-46,-99v1,-30,-14,-47,-45,-42r0,-35v50,6,48,-39,45,-85v-4,-54,32,-61,78,-57r0,35v-75,-20,-1,121,-72,124","w":128},"}":{"d":"72,-119v-73,-5,4,-142,-72,-125v-6,-32,12,-40,41,-33v77,-4,-10,150,82,141r0,35v-50,-7,-48,38,-45,85v4,52,-31,60,-78,56r0,-35v76,16,0,-120,72,-124","w":128},"|":{"d":"0,-285v0,-16,14,-24,33,-22r0,370r-33,0r0,-348","w":34},"<":{"d":"147,-22r-138,-75v-18,-9,-16,-39,1,-48r137,-75v-1,15,4,34,-8,41r-98,54v-4,3,-4,6,0,8r106,57r0,38","w":153},">":{"d":"0,-220r137,75v20,8,19,36,0,47r-137,76v1,-16,-4,-35,8,-42r98,-53v4,-3,4,-6,0,-8r-106,-58r0,-37","w":158},"\\":{"d":"71,0r-71,-243v14,1,26,-3,30,10r68,233r-27,0","w":103},"[":{"d":"0,40r0,-323r86,0r0,36r-40,0r0,251r40,0v1,19,1,36,-18,36r-68,0","w":90},"]":{"d":"0,-245v-1,-19,1,-36,18,-36r68,0r0,323r-86,0r0,-36r40,0r0,-251r-40,0","w":90},"\/":{"d":"71,-243r27,0r-68,234v-2,12,-17,9,-30,9","w":103},"\u00f7":{"d":"0,-104v0,-16,-2,-32,15,-32r144,0r0,32r-159,0xm56,-68v1,-12,10,-23,23,-23v15,0,23,8,23,23v0,32,-46,28,-46,0xm56,-172v0,-11,10,-23,23,-23v12,0,23,12,23,23v0,12,-10,22,-23,22v-14,0,-23,-10,-23,-22","w":166},"=":{"d":"0,-131v0,-16,-2,-34,15,-33r144,0r0,33r-159,0xm0,-77v0,-16,-2,-32,15,-32r144,0r0,32r-159,0","w":166},"\u00f8":{"d":"151,-158v34,54,12,153,-44,158v-31,9,-64,0,-82,-15r-12,15r-26,0r25,-30v-36,-54,-12,-160,52,-160v31,0,55,1,73,16r12,-13r27,0xm107,-139v-44,-36,-75,19,-61,70xm55,-49v11,15,45,18,55,-4v10,-9,13,-48,7,-66","w":184},"@":{"d":"105,-77v0,31,33,40,52,20v18,-18,42,-88,-4,-90v-29,-1,-48,38,-48,70xm208,-21v-21,1,-35,-9,-35,-28v-20,43,-112,33,-103,-29v-7,-64,77,-126,119,-72r9,-16v23,0,27,7,23,25r-19,81v0,9,5,13,16,11v38,-6,55,-41,56,-82v2,-55,-51,-91,-110,-90v-87,2,-132,51,-139,131v-9,112,153,138,226,79v7,47,-51,57,-99,57v-93,0,-156,-46,-156,-136v0,-100,70,-159,169,-159v78,0,139,42,139,119v0,61,-37,105,-96,109","w":319},"\u00a9":{"d":"74,-210v0,-20,-13,-33,-34,-33v-47,0,-41,67,0,67v20,0,34,-12,34,-34xm60,-217v-12,-3,-29,-18,-32,7v-2,19,22,22,23,8r9,0v0,11,-9,16,-20,17v-17,0,-20,-10,-22,-25v-2,-21,23,-31,37,-19v4,3,5,7,5,12xm0,-210v0,-23,17,-40,40,-40v23,-1,41,19,41,40v0,22,-19,42,-41,41v-23,-1,-40,-16,-40,-41","w":84},"\u00ae":{"d":"40,-169v-40,2,-54,-59,-20,-76v28,-15,62,7,61,35v-1,23,-18,40,-41,41xm45,-233v16,-4,17,21,8,23v9,2,2,16,7,22v-19,6,-1,-24,-28,-18r0,18r-9,0r0,-41v1,-8,15,-3,22,-4xm32,-214v10,3,27,-4,12,-12r-12,0r0,12xm74,-210v0,-21,-12,-32,-34,-33v-20,-1,-34,15,-34,33v0,17,14,34,34,34v20,0,34,-13,34,-34","w":84},"*":{"d":"31,-221v-1,-17,-1,-31,18,-27r0,27v14,-5,30,-10,32,10r-25,7v7,9,19,28,-1,32r-15,-21v-6,11,-17,25,-30,10r15,-21r-25,-7v1,-17,17,-17,31,-10","w":84},"`":{"d":"0,-249v17,1,39,-4,46,9r20,35r-23,0","w":68},"'":{"d":"66,-249r-43,44r-23,0v12,-14,13,-39,34,-44r32,0","w":68},"\u00b4":{"d":"66,-249r-43,44r-23,0v12,-14,13,-39,34,-44r32,0","w":68},"\"":{"d":"45,-249v5,26,-31,20,-24,47v3,3,16,2,23,2v-1,18,6,41,-16,41r-28,0v-3,-47,1,-85,45,-90xm115,-249v5,24,-26,19,-24,42v-3,10,15,6,24,7v-1,19,5,41,-17,41r-28,0v-3,-47,2,-84,45,-90","w":120},"\u00a8":{"d":"95,-201v1,-9,-16,-5,-24,-6v1,-19,-5,-42,16,-42r28,0v3,46,0,87,-45,90v-4,-22,26,-21,25,-42xm1,-233v-1,-20,25,-16,44,-16v3,46,0,87,-45,90v-5,-21,25,-20,25,-42v2,-9,-15,-5,-24,-6r0,-26","w":120},"_":{"d":"0,44v-2,-18,5,-31,20,-31r163,0r0,31r-183,0","w":191},"\u00aa":{"d":"30,-172v17,1,22,-11,21,-29v-10,7,-34,1,-33,18v-1,7,5,12,12,11xm34,-249v37,0,39,21,39,57v0,32,-23,39,-46,39v-18,0,-31,-9,-31,-29v0,-24,18,-29,39,-30v10,-1,15,-4,15,-9v1,-11,-27,-12,-29,-2r-22,0v2,-17,15,-26,35,-26","w":76},"\u00ba":{"d":"71,-169v-25,32,-83,13,-75,-33v-8,-48,60,-62,78,-26v8,15,7,47,-3,59xm25,-224v-12,16,-11,51,18,51v9,0,13,-10,13,-28v0,-27,-17,-31,-31,-23","w":82},"\u00b2":{"d":"58,-224v0,22,-26,27,-36,41r35,0r0,14r-57,0v-3,-27,36,-38,41,-55v-2,-18,-26,-11,-25,3v-4,3,-16,2,-14,-8v6,-27,56,-26,56,5","w":60},"\u00b3":{"d":"29,-167v-17,-2,-29,-8,-28,-27r15,0v0,10,4,13,13,13v8,-1,12,-2,12,-12v1,-10,-8,-12,-17,-12v1,-3,-1,-9,1,-10v17,3,19,-22,4,-21v-7,0,-12,3,-11,12v-8,0,-16,2,-14,-8v4,-25,55,-22,52,5v1,5,-8,15,-10,15v25,10,8,48,-17,45","w":61},"\u00bc":{"d":"6,-169v10,-1,18,-8,21,-18v9,-1,16,1,15,10r0,84r-19,0r0,-63r-17,0r0,-13xm110,0r0,-21r-41,0v0,-36,24,-48,35,-73v13,0,25,-3,25,15r0,42r11,0r0,16r-11,0r0,21r-19,0xm0,0r104,-179v3,-9,12,-8,24,-8r-108,187r-20,0xm110,-36r0,-41r-26,41r26,0","w":146},"\u00bd":{"d":"139,-65v0,27,-31,31,-43,48r42,0r0,17r-68,0v-4,-32,44,-44,49,-65v0,-8,-6,-14,-14,-14v-12,0,-16,7,-16,19v-22,5,-19,-16,-9,-26v19,-19,59,-8,59,21xm0,0r104,-179v3,-9,12,-8,24,-8r-108,187r-20,0xm6,-169v10,-1,18,-8,21,-18v9,-1,16,1,15,10r0,84r-19,0r0,-63r-17,0r0,-13","w":144},"\u00be":{"d":"20,0r104,-179v4,-9,12,-8,24,-8r-109,187r-19,0xm130,0r0,-21r-41,0v0,-36,24,-48,35,-73v13,0,28,-3,24,15r0,42r12,0r0,16r-12,0r0,21r-18,0xm130,-36r0,-41r-26,41r26,0xm54,-143v30,13,13,53,-20,53v-19,0,-36,-10,-34,-31r18,0v-1,10,6,16,16,16v10,0,15,-6,15,-15v-1,-11,-9,-14,-21,-14v1,-4,-3,-13,2,-13v9,1,16,-5,16,-13v0,-8,-4,-12,-12,-12v-11,1,-13,5,-14,15v-20,5,-19,-13,-9,-22v16,-15,57,-8,55,18v0,11,-5,14,-12,18","w":167},"\u00a7":{"d":"18,-177v-27,-26,-4,-75,39,-72v30,2,52,17,56,44v-13,2,-39,9,-40,-5v-3,-17,-32,-13,-32,2v13,35,85,43,83,91v-1,18,-10,33,-23,42v31,28,10,82,-40,79v-35,-2,-54,-18,-59,-48v33,-9,34,15,60,20v10,-1,17,-5,18,-15v-7,-37,-89,-43,-84,-96v2,-18,7,-34,22,-42xm39,-160v-16,9,-14,30,5,43r37,26v32,-31,-26,-53,-42,-69","w":129},"0":{"d":"-4,-121v0,-77,21,-125,89,-125v66,0,91,49,90,125v0,78,-21,125,-90,125v-66,0,-90,-44,-89,-125xm124,-120v0,-37,-4,-87,-39,-87v-35,0,-39,48,-39,86v0,39,4,87,39,87v35,0,39,-48,39,-86","w":183},"1":{"d":"55,-242v23,-3,39,6,39,25r0,217r-48,0r0,-163r-46,0r0,-35v26,-1,50,-19,55,-44","w":98},"2":{"d":"1,-183v13,-87,177,-81,171,14v-4,60,-48,74,-89,104v-12,8,-19,15,-20,22r106,0r0,43r-173,0v-3,-80,70,-105,112,-141v25,-21,11,-63,-24,-63v-27,0,-40,19,-39,47v-23,0,-49,5,-44,-26","w":180},"3":{"d":"82,4v-55,-4,-86,-27,-86,-81r47,0v0,27,13,41,39,41v25,0,39,-13,40,-37v1,-28,-25,-41,-55,-36r0,-34v54,12,65,-63,15,-64v-25,0,-35,14,-35,38v-23,0,-51,4,-43,-25v9,-34,39,-52,80,-52v45,0,81,24,81,66v1,25,-14,39,-30,48v74,33,33,143,-53,136","w":182},"4":{"d":"92,-242v36,-2,62,-1,62,40r0,108r29,0r0,40r-29,0r0,54r-49,0r0,-54r-105,0r0,-44xm106,-92r0,-107r-67,107r67,0","w":191},"5":{"d":"122,-82v0,-43,-56,-59,-73,-27r-45,-2r16,-132r118,0v19,1,27,20,24,43r-107,0r-6,47v51,-35,125,5,125,69v0,79,-100,113,-155,69v-16,-12,-22,-32,-23,-55r48,0v0,21,14,34,37,34v29,0,41,-17,41,-46","w":182},"6":{"d":"86,-121v-24,0,-39,17,-38,41v0,27,13,45,39,45v25,0,37,-18,37,-45v0,-25,-14,-41,-38,-41xm132,-184v-20,-2,-19,-25,-45,-23v-29,2,-40,27,-40,64v45,-41,128,-6,128,61v0,51,-35,87,-88,86v-66,-1,-91,-46,-91,-119v0,-101,75,-164,150,-114v15,10,21,26,23,45r-37,0","w":183},"7":{"d":"36,0v5,-82,40,-144,86,-200r-122,0r0,-42r160,0v24,-2,29,23,16,37v-46,50,-83,120,-88,205r-52,0","w":194},"8":{"d":"20,-224v40,-36,148,-27,148,43v0,25,-13,42,-29,51v21,13,36,27,35,58v0,50,-35,76,-90,76v-54,0,-89,-23,-88,-76v0,-32,12,-46,36,-58v-34,-9,-39,-70,-12,-94xm46,-73v-1,25,19,39,46,36v17,-2,33,-17,32,-36v-1,-23,-17,-37,-40,-37v-23,0,-37,13,-38,37xm120,-177v0,-17,-16,-30,-36,-30v-20,0,-35,12,-35,30v0,19,12,29,35,29v22,0,36,-10,36,-29","w":182},"9":{"d":"82,-246v66,0,93,49,93,120v0,77,-29,130,-98,130v-36,0,-68,-14,-72,-48v-2,-19,29,-13,47,-14v2,30,47,31,60,7v6,-11,10,-26,11,-47v-43,38,-127,7,-127,-62v0,-53,33,-86,86,-86xm45,-162v-5,47,69,59,76,12v4,-30,-9,-57,-39,-57v-26,0,-35,21,-37,45","w":183},"?":{"d":"53,-70v-10,-60,46,-59,54,-104v5,-35,-42,-41,-58,-23v-6,7,-10,17,-10,30v-25,-2,-43,7,-43,-21v0,-65,104,-76,144,-35v28,29,14,88,-13,104v-17,10,-32,20,-30,49r-44,0xm51,-30v-2,-24,27,-18,49,-19r0,49r-49,0r0,-30","w":164},"\u00bf":{"d":"107,-75v0,-45,-64,-44,-54,-104r44,0v-1,56,60,48,60,107v0,82,-126,94,-156,33v-6,-13,-8,-41,7,-42v8,-1,18,-1,31,-1v1,29,14,43,44,40v16,-2,24,-14,24,-33xm100,-200v-21,-1,-49,6,-49,-18r0,-31r49,0r0,49","w":164},"\u00c6":{"d":"321,-148v10,54,-49,40,-94,41r0,63r132,0r0,44r-181,0r0,-50r-94,0r-32,50r-52,0r154,-225v9,-19,40,-16,68,-16r131,0r0,42r-126,0r0,51r94,0xm178,-90r0,-103r-67,103r67,0","w":376},"\u00d0":{"d":"254,-120v0,78,-36,123,-124,120r-81,0r0,-105r-49,0r0,-31r49,0v4,-40,-15,-105,26,-105r68,0v77,1,111,42,111,121xm203,-120v0,-69,-36,-86,-105,-79r0,63v27,-1,54,-3,48,31r-48,0r0,61v67,4,105,-7,105,-76","w":266},"\u00de":{"d":"131,-120v2,51,-41,88,-96,66v-2,20,7,51,-13,53v-9,1,-16,1,-22,1r0,-241v14,0,35,-2,35,17r0,37v12,-6,24,-5,40,-6v37,-1,55,38,56,73xm97,-121v0,-20,-14,-39,-32,-39v-19,0,-32,20,-31,39v0,19,12,39,31,39v18,0,32,-19,32,-39","w":137},"\u00df":{"d":"104,-207v-35,-3,-56,15,-56,41r0,196r-48,0r0,-198v2,-53,48,-81,114,-81v45,0,75,19,76,61v0,25,-12,41,-29,50v22,11,36,26,37,57v1,65,-57,78,-127,73r0,-43v35,0,75,6,75,-31v0,-38,-38,-32,-75,-32r0,-41v31,0,69,5,69,-26v0,-20,-14,-24,-36,-26","w":207},"\u00e6":{"d":"65,-33v34,1,46,-24,43,-59v-21,14,-67,4,-67,37v0,14,9,22,24,22xm158,-79v-8,45,54,57,68,23r48,0v-7,57,-98,80,-140,38v-39,30,-144,41,-138,-36v3,-42,29,-55,69,-58v22,-2,62,-14,34,-31v-11,-7,-48,-9,-51,8r-47,0v1,-58,102,-63,138,-34v62,-43,153,-1,137,90r-118,0xm227,-110v4,-33,-39,-47,-60,-27v-7,6,-9,16,-9,27r69,0","w":289},"\u00b5":{"d":"77,-32v79,0,-26,-159,77,-142r0,102v3,66,-50,83,-108,72v2,39,4,77,-46,67r0,-241r46,0r0,111v-1,20,15,31,31,31","w":161},"^":{"d":"22,-234v28,-37,61,4,76,27r-28,0r-21,-24v-12,13,-21,28,-49,24","w":103},"l":{"d":"2,-242v25,-1,49,0,49,23r0,219r-49,0r0,-242","w":59},"t":{"d":"83,-186v3,22,-8,35,-29,33r0,104v-1,14,15,12,29,12r0,37v-33,0,-77,8,-77,-35r0,-207v25,-2,48,1,48,24r0,32r29,0","w":87},"i":{"d":"4,-187v26,-2,49,1,49,24r0,163r-49,0r0,-187xm4,-242v32,-3,55,4,49,39r-49,0r0,-39","w":55},"\u00ed":{"d":"4,-187v26,-2,49,1,49,24r0,163r-49,0r0,-187xm79,-248r-43,44r-23,0v11,-15,11,-44,34,-44r32,0","w":63},"\u00ec":{"d":"4,-187v26,-2,49,1,49,24r0,163r-49,0r0,-187xm-27,-248v17,1,38,-4,45,8r19,36r-23,0","w":63},"\u00ee":{"d":"4,-187v26,-2,49,1,49,24r0,163r-49,0r0,-187xm3,-230v26,-36,60,4,75,26r-28,0r-22,-23v-10,13,-21,27,-48,23","w":63},"\u00ef":{"d":"5,-187v25,-2,48,1,48,24r0,163r-48,0r0,-187xm1,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm65,-236v16,-1,11,18,12,32r-32,0r0,-32r20,0","w":63},"j":{"d":"53,0v5,55,-9,84,-69,78r0,-41v24,5,20,-17,20,-37r0,-187v26,-2,49,1,49,24r0,163xm4,-242v32,-3,55,4,49,39r-49,0r0,-39","w":63},"\u00c5":{"d":"82,-225v6,-23,37,-14,63,-16r87,241r-52,0r-17,-49r-93,0r-17,49r-52,0xm103,-274v0,8,7,15,14,15v7,0,13,-7,13,-15v0,-7,-5,-15,-13,-14v-8,-1,-14,7,-14,14xm117,-300v14,3,26,10,26,26v0,16,-11,25,-26,26v-14,-3,-26,-9,-26,-26v1,-16,11,-24,26,-26xm116,-193r-33,104r67,0","w":243},"\u00e5":{"d":"66,-35v32,1,46,-24,42,-60v-20,12,-66,7,-67,37v0,14,11,23,25,23xm76,-202v-15,0,-25,-10,-26,-26v-1,-27,42,-33,50,-10v7,19,-6,36,-24,36xm63,-228v-1,8,5,15,13,15v8,0,14,-7,13,-15v0,-7,-5,-15,-13,-14v-8,-1,-13,7,-13,14xm1,-140v1,-70,153,-72,153,1v0,54,5,113,-34,131v-47,21,-124,14,-124,-48v0,-49,38,-56,81,-62v21,-3,31,-9,31,-18v-2,-23,-53,-22,-60,-4r-47,0","w":161},"\u00a0":{"w":80}}});
Cufon.registerFont({"w":242,"face":{"font-family":"Harabara","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 3 5 3 2 2 2 4","ascent":"288","descent":"-72","bbox":"-27 -307.302 359 79","underline-thickness":"0","underline-position":"0","unicode-range":"U+0020-U+00FC"},"glyphs":{" ":{"w":80},"A":{"d":"80,-226v6,-23,37,-14,63,-16r88,242r-52,0r-17,-50r-94,0r-15,50r-53,0xm115,-193r-33,102r67,0"},"\u00c1":{"d":"80,-226v6,-23,37,-14,63,-16r88,242r-52,0r-17,-50r-94,0r-15,50r-53,0xm171,-303r-43,44r-23,0v12,-14,10,-44,34,-44r32,0xm115,-193r-33,102r67,0"},"\u00c0":{"d":"80,-226v6,-23,37,-14,63,-16r88,242r-52,0r-17,-50r-94,0r-15,50r-53,0xm70,-303v16,2,39,-4,46,8r20,36r-24,0xm115,-193r-33,102r67,0"},"\u00c2":{"d":"80,-226v6,-23,37,-14,63,-16r88,242r-52,0r-17,-50r-94,0r-15,50r-53,0xm115,-193r-33,102r67,0xm89,-285v27,-36,60,4,76,26r-29,0r-21,-24v-10,14,-20,28,-48,24"},"\u00c3":{"d":"115,-193r-33,102r67,0xm80,-226v6,-23,37,-14,63,-16r88,242r-52,0r-17,-50r-94,0r-15,50r-53,0xm72,-259v-11,-50,40,-32,70,-22v6,0,13,-3,18,-9v8,51,-41,24,-74,20v-6,0,-10,3,-14,11"},"\u00c4":{"d":"115,-193r-33,102r67,0xm80,-226v6,-23,37,-14,63,-16r88,242r-52,0r-17,-50r-94,0r-15,50r-53,0xm152,-291v15,-1,10,19,11,32r-32,0r0,-32r21,0xm88,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0"},"B":{"d":"198,-74v0,91,-109,73,-198,74r0,-217v4,-42,73,-19,114,-25v74,-11,103,84,47,111v22,10,37,25,37,57xm140,-174v1,-38,-56,-23,-92,-26r0,52v36,-3,91,11,92,-26xm147,-75v0,-45,-58,-29,-99,-32r0,63v41,-3,99,13,99,-31","w":208},"C":{"d":"111,-39v32,0,49,-17,56,-45r49,0v-4,57,-47,90,-108,90v-76,0,-112,-48,-112,-127v-1,-82,38,-127,116,-128v61,0,99,31,104,87v-24,0,-47,4,-54,-15v-7,-17,-26,-27,-50,-27v-47,0,-66,33,-66,83v1,48,19,82,65,82","w":226},"\u00c7":{"d":"111,-39v32,0,49,-17,56,-45r49,0v-4,57,-47,90,-108,90v-76,0,-112,-48,-112,-127v-1,-82,38,-127,116,-128v61,0,99,31,104,87v-24,0,-47,4,-54,-15v-7,-17,-26,-27,-50,-27v-47,0,-66,33,-66,83v1,48,19,82,65,82xm58,51v-3,-26,3,-48,33,-40v18,5,46,22,62,4v9,55,-45,28,-79,23v-6,0,-12,5,-16,13","w":226},"D":{"d":"205,-121v-2,80,-35,124,-123,121r-82,0r0,-217v1,-38,58,-24,95,-25v77,-2,112,43,110,121xm155,-121v-2,-49,-14,-78,-60,-79r-46,0r0,156v68,4,109,-7,106,-77","w":215},"E":{"d":"143,-148v3,23,-5,41,-25,41r-69,0r0,62r127,0r0,45r-176,0r0,-217v-1,-14,12,-25,25,-25r151,0r0,42r-127,0r0,52r94,0","w":184},"\u00c8":{"d":"143,-148v3,23,-5,41,-25,41r-69,0r0,62r127,0r0,45r-176,0r0,-217v-1,-14,12,-25,25,-25r151,0r0,42r-127,0r0,52r94,0xm45,-303v17,1,39,-4,46,8r20,36r-23,0","w":184},"\u00c9":{"d":"143,-148v3,23,-5,41,-25,41r-69,0r0,62r127,0r0,45r-176,0r0,-217v-1,-14,12,-25,25,-25r151,0r0,42r-127,0r0,52r94,0xm146,-303r-43,44r-24,0v12,-15,12,-44,35,-44r32,0","w":184},"\u00ca":{"d":"143,-148v3,23,-5,41,-25,41r-69,0r0,62r127,0r0,45r-176,0r0,-217v-1,-14,12,-25,25,-25r151,0r0,42r-127,0r0,52r94,0xm68,-285v26,-36,59,4,75,26r-28,0r-21,-24v-11,14,-21,28,-49,24","w":184},"\u00cb":{"d":"143,-148v3,23,-5,41,-25,41r-69,0r0,62r127,0r0,45r-176,0r0,-217v-1,-14,12,-25,25,-25r151,0r0,42r-127,0r0,52r94,0xm124,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0xm60,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0","w":184},"F":{"d":"143,-148v3,23,-5,41,-25,41r-69,0r0,107r-49,0r0,-217v-1,-14,12,-25,25,-25r151,0r0,42r-127,0r0,52r94,0","w":184},"G":{"d":"174,-90v-35,3,-62,-2,-55,-41r100,0r0,131v-25,3,-38,-7,-40,-29v-14,22,-36,35,-70,35v-71,0,-113,-54,-113,-128v0,-140,198,-175,223,-45v-23,-1,-47,5,-56,-13v-8,-15,-27,-25,-51,-25v-44,0,-66,36,-66,83v0,86,112,119,128,32","w":229},"H":{"d":"0,-217v0,-23,24,-27,50,-25r0,90r100,0r0,-90r50,0r0,242r-50,0r0,-108r-100,0r0,108r-50,0r0,-217","w":210},"I":{"d":"0,-217v0,-23,24,-27,50,-25r0,242r-50,0r0,-217","w":52},"\u00cd":{"d":"0,-217v0,-23,24,-27,50,-25r0,242r-50,0r0,-217xm79,-303r-42,44r-23,0v12,-14,11,-44,35,-44r30,0","w":82},"\u00cc":{"d":"0,-217v0,-23,24,-27,50,-25r0,242r-50,0r0,-217xm-25,-303v17,1,38,-4,45,8r20,36r-23,0","w":52},"\u00cf":{"d":"8,-217v0,-23,24,-27,50,-25r0,242r-50,0r0,-217xm69,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0xm5,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0","w":84},"\u00ce":{"d":"0,-217v0,-23,24,-27,50,-25r0,242r-50,0r0,-217xm-1,-285v26,-37,60,4,75,26r-28,0r-21,-24v-11,13,-21,29,-48,24","w":77},"J":{"d":"78,6v-60,1,-84,-30,-78,-97r49,0v-1,29,-4,59,28,56v23,-1,28,-11,28,-38r0,-144v0,-23,24,-28,50,-25r0,171v4,59,-27,76,-77,77","w":162},"K":{"d":"0,-217v0,-23,24,-27,50,-25r0,99r94,-99r63,0r-97,98r105,144r-60,0r-61,-86v-15,-23,-44,-22,-44,1r0,85r-50,0r0,-217","w":225},"L":{"d":"0,-217v0,-23,24,-27,50,-25r0,197r118,0r0,45r-168,0r0,-217","w":175},"M":{"d":"0,-217v0,-32,41,-26,74,-26r48,185r47,-185r74,0r0,243r-46,0r0,-195r-49,195r-52,0r-50,-195r0,195r-46,0r0,-217","w":255},"N":{"d":"0,-217v0,-24,25,-29,52,-26r98,167r0,-167r50,0r0,243r-52,0r-99,-167r0,167r-49,0r0,-217","w":209},"\u00d1":{"d":"0,-217v0,-24,25,-27,52,-25r98,166r0,-166r50,0r0,242r-52,0r-99,-167r0,167r-49,0r0,-217xm61,-260v-3,-24,3,-42,30,-34v18,5,43,21,58,3v8,51,-41,23,-73,19v-6,0,-11,4,-15,12","w":209},"O":{"d":"113,-205v-47,0,-67,34,-67,84v0,50,21,84,67,84v45,0,68,-36,68,-84v0,-48,-22,-84,-68,-84xm113,6v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,118,52,118,128v0,76,-45,127,-118,127"},"\u00d3":{"d":"113,-205v-47,0,-67,34,-67,84v0,50,21,84,67,84v45,0,68,-36,68,-84v0,-48,-22,-84,-68,-84xm160,-303r-43,44r-22,0v12,-14,11,-44,34,-44r31,0xm113,6v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,118,52,118,128v0,76,-45,127,-118,127"},"\u00d2":{"d":"113,-205v-47,0,-67,34,-67,84v0,50,21,84,67,84v45,0,68,-36,68,-84v0,-48,-22,-84,-68,-84xm56,-303v17,1,40,-4,46,8r19,36r-23,0xm113,6v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,118,52,118,128v0,76,-45,127,-118,127"},"\u00d4":{"d":"113,6v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,118,52,118,128v0,76,-45,127,-118,127xm86,-285v27,-36,60,3,76,26r-28,0r-22,-24v-10,14,-20,28,-48,24xm113,-205v-47,0,-67,34,-67,84v0,50,21,84,67,84v45,0,68,-36,68,-84v0,-48,-22,-84,-68,-84"},"\u00d5":{"d":"113,6v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,118,52,118,128v0,76,-45,127,-118,127xm69,-259v-10,-50,41,-32,71,-22v6,0,13,-3,18,-9v6,51,-43,24,-74,19v-6,0,-11,4,-15,12xm113,-205v-47,0,-67,34,-67,84v0,50,21,84,67,84v45,0,68,-36,68,-84v0,-48,-22,-84,-68,-84"},"\u00d6":{"d":"113,6v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,118,52,118,128v0,76,-45,127,-118,127xm149,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0xm85,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0xm113,-205v-47,0,-67,34,-67,84v0,50,21,84,67,84v45,0,68,-36,68,-84v0,-48,-22,-84,-68,-84"},"\u00d8":{"d":"231,-121v0,109,-116,161,-194,103r-16,18r-27,0r28,-33v-18,-22,-26,-51,-26,-88v0,-109,115,-164,193,-103r16,-19r28,0r-29,34v18,22,27,51,27,88xm68,-54v46,41,113,3,113,-67v0,-20,-3,-37,-10,-51xm158,-188v-46,-41,-112,-5,-112,67v0,20,3,36,10,50","w":243},"P":{"d":"185,-164v1,48,-26,79,-74,78r-61,0r0,86r-50,0r0,-217v3,-41,68,-25,108,-25v51,0,76,27,77,78xm136,-165v0,-42,-45,-36,-86,-35r0,70v40,-1,86,9,86,-35","w":194},"Q":{"d":"231,-121v-1,36,-9,65,-26,84r27,25v-9,11,-25,28,-41,14r-14,-13v-17,12,-38,17,-64,17v-74,0,-117,-51,-117,-127v0,-76,45,-128,117,-128v72,0,120,52,118,128xm46,-121v0,62,41,100,96,77r-25,-24v10,-20,40,-22,53,-3v25,-50,8,-134,-57,-134v-47,0,-67,34,-67,84","w":243},"R":{"d":"145,0v-15,-39,10,-94,-42,-94r-53,0r0,94r-50,0r0,-217v4,-42,75,-22,117,-25v49,-3,78,21,78,68v1,31,-12,50,-36,58v35,9,30,55,32,100v1,8,5,14,9,16r-55,0xm146,-168v0,-44,-55,-30,-96,-32r0,64v41,-2,96,11,96,-32","w":209},"S":{"d":"167,-127v63,45,18,141,-67,133v-60,-6,-96,-26,-100,-81r49,0v-2,47,96,55,99,9v0,-15,-22,-28,-64,-37v-50,-11,-76,-19,-80,-73v-6,-77,113,-92,159,-53v17,14,24,34,25,57v-23,0,-44,4,-51,-15v-10,-29,-87,-30,-85,8v2,34,90,34,115,52","w":206},"T":{"d":"0,-199v-3,-24,5,-42,25,-43r168,0r0,43r-71,0r0,199r-50,0r0,-199r-72,0","w":201},"U":{"d":"0,-216v0,-24,24,-30,51,-27r0,152v-1,37,12,54,46,54v34,0,48,-17,47,-54r0,-152r50,0r0,157v0,61,-34,92,-97,92v-63,0,-97,-31,-97,-92r0,-130","w":203},"\u00da":{"d":"0,-216v0,-24,24,-30,51,-27r0,152v-1,37,12,54,46,54v34,0,48,-17,47,-54r0,-152r50,0r0,157v0,61,-34,92,-97,92v-63,0,-97,-31,-97,-92r0,-130xm144,-303r-43,44r-22,0v11,-15,12,-39,33,-44r32,0","w":203},"\u00d9":{"d":"0,-217v0,-24,24,-29,51,-26r0,152v-1,37,12,54,46,54v34,0,48,-17,47,-54r0,-152r50,0r0,157v0,61,-34,92,-97,92v-63,0,-97,-31,-97,-92r0,-131xm51,-303v17,1,39,-4,46,8r20,36r-23,0","w":203},"\u00db":{"d":"0,-217v0,-24,24,-29,51,-26r0,152v-1,37,12,54,46,54v34,0,48,-17,47,-54r0,-152r50,0r0,157v0,61,-34,92,-97,92v-63,0,-97,-31,-97,-92r0,-131xm70,-285v27,-36,60,4,76,26r-28,0r-22,-24v-10,14,-20,28,-48,24","w":203},"\u00dc":{"d":"0,-217v0,-24,24,-29,51,-26r0,152v-1,37,12,54,46,54v34,0,48,-17,47,-54r0,-152r50,0r0,157v0,61,-34,92,-97,92v-63,0,-97,-31,-97,-92r0,-131xm69,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0xm133,-291v16,-1,11,18,12,32r-32,0r0,-32r20,0","w":203},"V":{"d":"84,0r-84,-242r56,0r51,181r47,-163v4,-24,34,-17,60,-18r-83,242r-47,0","w":224},"W":{"d":"70,0r-70,-242r51,0r42,171r35,-171r53,0r35,171r37,-153v3,-22,31,-18,56,-18r-69,242r-48,0r-37,-186r-38,186r-47,0","w":323},"X":{"d":"0,0r76,-124r-76,-118r58,0r49,84r42,-72v9,-19,40,-10,65,-12r-76,118r76,124r-57,0r-50,-84r-49,84r-58,0","w":224},"Y":{"d":"138,0r-50,0r0,-90r-88,-152r61,0r51,104r42,-90v8,-20,37,-13,63,-14r-79,152r0,90","w":227},"Z":{"d":"131,-198v-50,-8,-138,28,-128,-44r189,0r0,42r-132,156r129,0r0,44r-189,0r0,-42","w":201},"a":{"d":"66,-34v31,0,46,-24,42,-60v-21,13,-67,6,-67,37v1,14,9,23,25,23xm154,-75v1,60,-39,79,-95,79v-35,-1,-63,-20,-63,-60v0,-48,37,-57,81,-61v21,-3,31,-10,31,-19v0,-23,-54,-23,-60,-3r-47,0v0,-69,155,-72,153,0r0,64","w":161},"\u00e1":{"d":"124,-248r-42,44r-24,0v12,-15,12,-44,35,-44r31,0xm66,-34v31,0,46,-24,42,-60v-21,13,-67,6,-67,37v1,14,9,23,25,23xm154,-75v1,60,-39,79,-95,79v-35,-1,-63,-20,-63,-60v0,-48,37,-57,81,-61v21,-3,31,-10,31,-19v0,-23,-54,-23,-60,-3r-47,0v0,-69,155,-72,153,0r0,64","w":161},"\u00e0":{"d":"66,-34v31,0,46,-24,42,-60v-21,13,-67,6,-67,37v1,14,9,23,25,23xm154,-75v1,60,-39,79,-95,79v-35,-1,-63,-20,-63,-60v0,-48,37,-57,81,-61v21,-3,31,-10,31,-19v0,-23,-54,-23,-60,-3r-47,0v0,-69,155,-72,153,0r0,64xm29,-248v17,1,39,-4,46,8r19,36r-22,0","w":161},"\u00e2":{"d":"66,-34v31,0,46,-24,42,-60v-21,13,-67,6,-67,37v1,14,9,23,25,23xm154,-75v1,60,-39,79,-95,79v-35,-1,-63,-20,-63,-60v0,-48,37,-57,81,-61v21,-3,31,-10,31,-19v0,-23,-54,-23,-60,-3r-47,0v0,-69,155,-72,153,0r0,64xm48,-231v27,-34,61,5,76,27r-29,0r-21,-23v-12,12,-21,27,-49,23","w":161},"\u00e3":{"d":"66,-34v31,0,46,-24,42,-60v-21,13,-67,6,-67,37v1,14,9,23,25,23xm154,-75v1,60,-39,79,-95,79v-35,-1,-63,-20,-63,-60v0,-48,37,-57,81,-61v21,-3,31,-10,31,-19v0,-23,-54,-23,-60,-3r-47,0v0,-69,155,-72,153,0r0,64xm30,-204v-10,-50,43,-31,72,-22v6,0,11,-3,16,-9v8,52,-42,23,-73,19v-6,0,-11,4,-15,12","w":161},"\u00e4":{"d":"46,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm110,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm66,-34v31,0,46,-24,42,-60v-21,13,-67,6,-67,37v1,14,9,23,25,23xm154,-75v1,60,-39,79,-95,79v-35,-1,-63,-20,-63,-60v0,-48,37,-57,81,-61v21,-3,31,-10,31,-19v0,-23,-54,-23,-60,-3r-47,0v0,-69,155,-72,153,0r0,64","w":161},"b":{"d":"0,-243v25,-2,48,1,48,24r0,57v9,-16,26,-30,53,-29v48,0,75,46,75,98v0,57,-27,98,-85,97v-50,-2,-91,-26,-91,-86r0,-161xm87,-37v29,0,41,-25,41,-58v0,-30,-13,-54,-39,-54v-29,0,-41,23,-41,54v0,35,10,58,39,58","w":184},"c":{"d":"44,-94v0,54,45,73,73,40v10,-7,32,-3,48,-4v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-108,148,-131,168,-35r-49,0v-6,-14,-16,-20,-33,-20v-30,0,-38,22,-38,56","w":172},"\u00e7":{"d":"44,-94v0,54,45,73,73,40v10,-7,32,-3,48,-4v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-108,148,-131,168,-35r-49,0v-6,-14,-16,-20,-33,-20v-30,0,-38,22,-38,56xm41,39v-10,-50,41,-32,71,-22v6,0,12,-3,17,-9v8,51,-42,24,-73,19v-6,0,-11,4,-15,12","w":172},"d":{"d":"70,-191v27,-1,43,13,54,29r0,-81v25,-3,47,2,48,24r0,137v3,61,-41,86,-92,86v-58,0,-84,-38,-84,-97v0,-54,26,-97,74,-98xm83,-149v-26,0,-39,23,-39,54v0,34,11,58,40,58v29,0,41,-25,40,-58v0,-30,-13,-54,-41,-54","w":180},"e":{"d":"84,-37v24,2,25,-21,46,-21r35,0v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-57,29,-95,84,-96v62,-1,94,44,87,110r-121,0v0,28,13,43,38,44xm117,-112v4,-37,-37,-49,-61,-29v-8,6,-10,17,-10,29r71,0","w":175},"\u00e9":{"d":"84,-37v24,2,25,-21,46,-21r35,0v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-57,29,-95,84,-96v62,-1,94,44,87,110r-121,0v0,28,13,43,38,44xm131,-248r-42,44r-24,0v12,-15,12,-44,35,-44r31,0xm117,-112v4,-37,-37,-49,-61,-29v-8,6,-10,17,-10,29r71,0","w":175},"\u00e8":{"d":"84,-37v24,2,25,-21,46,-21r35,0v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-57,29,-95,84,-96v62,-1,94,44,87,110r-121,0v0,28,13,43,38,44xm36,-248v17,1,39,-4,46,8r19,36r-22,0xm117,-112v4,-37,-37,-49,-61,-29v-8,6,-10,17,-10,29r71,0","w":175},"\u00ea":{"d":"84,-37v24,2,25,-21,46,-21r35,0v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-57,29,-95,84,-96v62,-1,94,44,87,110r-121,0v0,28,13,43,38,44xm55,-231v27,-34,61,5,76,27r-28,0r-22,-23v-12,12,-21,27,-49,23xm117,-112v4,-37,-37,-49,-61,-29v-8,6,-10,17,-10,29r71,0","w":175},"\u00eb":{"d":"84,-37v24,2,25,-21,46,-21r35,0v-9,39,-40,62,-84,62v-56,0,-85,-40,-85,-99v0,-57,29,-95,84,-96v62,-1,94,44,87,110r-121,0v0,28,13,43,38,44xm117,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm53,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm117,-112v4,-37,-37,-49,-61,-29v-8,6,-10,17,-10,29r71,0","w":175},"f":{"d":"78,-176v2,23,-8,37,-30,35r0,141r-48,0r0,-193v-3,-45,33,-55,78,-48r0,39v-21,-2,-35,-1,-30,26r30,0","w":81},"g":{"d":"172,-6v3,60,-41,85,-92,85v-43,0,-70,-21,-80,-61r51,0v10,19,47,27,62,4v7,-10,12,-25,11,-45v-22,40,-93,28,-113,-10v-31,-59,-14,-164,69,-158v50,4,92,25,92,86r0,99xm84,-150v-54,0,-50,103,-12,112v54,12,64,-64,39,-99v-6,-8,-15,-13,-27,-13","w":180},"h":{"d":"127,0v-4,-58,18,-149,-38,-149v-60,0,-36,91,-41,149r-48,0r0,-242v25,-2,48,1,48,24r0,56v19,-41,91,-34,113,2v22,35,10,106,13,160r-47,0","w":182},"k":{"d":"0,-242v25,-2,49,1,49,23r0,101r60,-69r59,0r-67,72r68,115r-59,0r-35,-63v-9,-19,-20,-21,-26,-8r0,71r-49,0r0,-242","w":177},"m":{"d":"196,-152v-21,1,-33,15,-33,42r0,110r-48,0r0,-120v1,-20,-16,-32,-33,-32v-17,0,-33,11,-33,32r0,120r-49,0r0,-110v-9,-81,88,-99,140,-64v50,-35,138,-18,138,64r0,110v-25,2,-47,0,-49,-24v-3,-49,19,-128,-33,-128","w":291},"n":{"d":"80,-191v49,0,83,22,83,81r0,110v-25,1,-48,0,-48,-24v0,-49,18,-127,-33,-128v-17,1,-33,11,-33,32r0,120r-49,0r0,-110v-3,-58,34,-81,80,-81","w":170},"\u00f1":{"d":"38,-203v-3,-23,3,-42,30,-35v19,4,42,22,58,3v8,53,-41,24,-73,20v-6,0,-11,4,-15,12xm80,-191v49,0,83,22,83,81r0,110v-25,1,-48,0,-48,-24v0,-49,18,-127,-33,-128v-17,1,-33,11,-33,32r0,120r-49,0r0,-110v-3,-58,34,-81,80,-81","w":170},"o":{"d":"150,-29v-34,51,-134,35,-148,-22v-20,-85,25,-163,115,-135v52,16,64,109,33,157xm112,-132v-26,-39,-79,-7,-68,40v-6,49,40,72,67,39v11,-13,11,-64,1,-79","w":175},"\u00f3":{"d":"163,-56v-13,74,-144,77,-161,5v-21,-85,25,-165,115,-135v43,14,56,75,46,130xm131,-248r-42,44r-24,0v12,-15,12,-44,35,-44r31,0xm112,-132v-26,-39,-79,-7,-68,40v-6,49,40,72,67,39v11,-13,11,-64,1,-79","w":175},"\u00f2":{"d":"163,-56v-13,74,-144,77,-161,5v-21,-85,25,-165,115,-135v43,14,56,75,46,130xm36,-248v17,1,39,-4,46,8r19,36r-22,0xm112,-132v-26,-39,-79,-7,-68,40v-6,49,40,72,67,39v11,-13,11,-64,1,-79","w":175},"\u00f4":{"d":"163,-56v-13,74,-144,77,-161,5v-21,-85,25,-165,115,-135v43,14,56,75,46,130xm55,-231v27,-34,61,5,76,27r-28,0r-22,-23v-12,12,-21,27,-49,23xm112,-132v-26,-39,-79,-7,-68,40v-6,49,40,72,67,39v11,-13,11,-64,1,-79","w":175},"\u00f5":{"d":"163,-56v-13,74,-144,77,-161,5v-21,-85,25,-165,115,-135v43,14,56,75,46,130xm37,-204v-10,-50,43,-31,72,-22v6,0,12,-3,17,-9v8,52,-43,24,-74,19v-6,0,-11,4,-15,12xm112,-132v-26,-39,-79,-7,-68,40v-6,49,40,72,67,39v11,-13,11,-64,1,-79","w":175},"\u00f6":{"d":"163,-56v-13,74,-144,77,-161,5v-21,-85,25,-165,115,-135v43,14,56,75,46,130xm117,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm53,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm112,-132v-26,-39,-79,-7,-68,40v-6,49,40,72,67,39v11,-13,11,-64,1,-79","w":175},"p":{"d":"101,4v-26,0,-42,-11,-53,-29v-3,45,17,107,-48,94r0,-175v-3,-60,41,-84,91,-85v57,-1,85,39,85,96v0,54,-27,99,-75,99xm89,-38v26,0,39,-26,39,-55v0,-32,-12,-57,-41,-57v-28,0,-39,24,-39,57v0,33,13,55,41,55","w":184},"q":{"d":"172,69v-25,2,-48,-1,-48,-24r0,-70v-11,18,-28,29,-54,29v-48,0,-74,-44,-74,-99v0,-57,26,-97,84,-96v50,1,92,25,92,85r0,175xm84,-150v-29,0,-40,25,-40,57v0,30,12,55,39,55v28,0,41,-23,41,-55v1,-32,-11,-56,-40,-57","w":180},"r":{"d":"105,-137v-35,-3,-56,7,-56,41r0,96r-49,0r0,-91v0,-67,38,-97,105,-96r0,50","w":110},"s":{"d":"76,4v-50,0,-80,-19,-80,-66r48,0v0,20,17,29,38,28v35,0,42,-30,1,-37v-45,-8,-80,-16,-83,-60v-4,-61,92,-76,134,-44v15,11,20,27,21,46v-27,2,-46,1,-56,-18v-13,-9,-51,-11,-50,11v-3,9,27,20,49,21v39,11,64,16,64,55v0,46,-35,64,-86,64","w":169},"u":{"d":"82,-35v84,0,-27,-169,81,-152r0,110v2,60,-34,81,-83,81v-46,0,-80,-22,-80,-81r0,-110r49,0r0,119v-2,21,15,33,33,33","w":170},"\u00fa":{"d":"82,-35v84,0,-27,-169,81,-152r0,110v2,60,-34,81,-83,81v-46,0,-80,-22,-80,-81r0,-110r49,0r0,119v-2,21,15,33,33,33xm66,-204v12,-15,12,-44,35,-44r30,0r-42,44r-23,0","w":170},"\u00f9":{"d":"82,-35v84,0,-27,-169,81,-152r0,110v2,60,-34,81,-83,81v-46,0,-80,-22,-80,-81r0,-110r49,0r0,119v-2,21,15,33,33,33xm36,-248v17,1,39,-4,46,8r20,36r-23,0","w":170},"\u00fb":{"d":"82,-35v84,0,-27,-169,81,-152r0,110v2,60,-34,81,-83,81v-46,0,-80,-22,-80,-81r0,-110r49,0r0,119v-2,21,15,33,33,33xm56,-231v26,-34,61,5,75,27r-28,0r-21,-23v-12,13,-22,27,-50,23","w":170},"\u00fc":{"d":"82,-35v84,0,-27,-169,81,-152r0,110v2,60,-34,81,-83,81v-46,0,-80,-22,-80,-81r0,-110r49,0r0,119v-2,21,15,33,33,33xm54,-236v16,-1,11,18,12,32r-32,0r0,-32r20,0xm117,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0","w":170},"v":{"d":"115,0r-50,0r-65,-187r52,0r37,131r33,-114v6,-23,33,-16,59,-17","w":189},"x":{"d":"181,0r-57,0r-33,-59r-34,59r-57,0r61,-96r-57,-91r54,0r32,56r36,-60v7,-20,38,-11,63,-13r-70,108","w":198},"w":{"d":"207,0r-49,0r-29,-134r-28,134r-50,0r-51,-187r48,0r29,129r27,-129r50,0r25,129r26,-112v4,-21,30,-17,54,-17","w":271},"y":{"d":"27,66r0,-39v23,1,47,-1,38,-28r-65,-186r54,0r38,132r33,-115v4,-22,32,-16,56,-17r-71,213v-10,36,-37,47,-83,40","w":189},"z":{"d":"101,-148v-41,-4,-104,18,-95,-39r153,0r0,40r-99,106r102,0r0,41r-162,0r0,-37","w":170},":":{"d":"0,-49v-1,-18,22,-14,39,-14r0,39r-39,0r0,-25xm0,-148v-1,-19,22,-14,39,-15r0,39r-39,0r0,-24","w":40},".":{"d":"0,-24v-1,-19,22,-14,39,-15r0,39r-39,0r0,-24","w":40},";":{"d":"0,44v-4,-20,23,-20,21,-39v2,-7,-13,-4,-20,-5v1,-17,-5,-39,14,-39r24,0v2,41,1,80,-39,83xm1,-124v-2,-19,21,-15,38,-15r0,39r-38,0r0,-24","w":40},",":{"d":"0,44v-4,-20,23,-20,21,-39v2,-7,-13,-4,-20,-5v1,-17,-5,-39,14,-39r24,0v2,41,1,80,-39,83","w":40},"+":{"d":"0,-77v0,-16,-2,-34,15,-33r48,0r0,-63v16,0,34,-2,33,15r0,48r63,0r0,33r-63,0r0,63r-33,0r0,-63r-63,0","w":166},"-":{"d":"0,-74v0,-20,-2,-39,19,-39r78,0r0,39r-97,0","w":101},"~":{"d":"0,-74v-4,-27,6,-46,34,-38v20,5,48,24,64,3v9,58,-45,26,-81,22v-7,0,-13,5,-17,13","w":101},"\u00b1":{"d":"0,-135v-6,-31,24,-26,50,-26r0,-45v16,0,32,-2,32,15r0,30r51,0r0,26r-51,0r0,45r-32,0r0,-45r-50,0xm0,-39v-1,-15,0,-27,15,-26r118,0r0,26r-133,0","w":139},"#":{"d":"27,-139v5,-33,25,-52,68,-45r20,-58v17,-1,34,0,36,13v3,21,-4,31,-8,45r33,0r19,-58v17,0,38,-1,38,13v0,21,-5,31,-9,45r43,0r-15,45r-43,0r-11,35r42,0r-14,46r-44,0r-20,58r-47,0r19,-58r-33,0r-19,58r-49,0r20,-58r-53,0v6,-32,24,-53,68,-46r11,-35r-52,0xm160,-139r-32,0r-12,35r33,0","w":280},"$":{"d":"190,-75v0,50,-33,76,-85,78r0,30r-26,0r0,-30v-51,-2,-80,-31,-83,-80r48,0v3,22,14,34,35,38v-2,-21,4,-49,-2,-66v-51,-8,-78,-19,-78,-71v0,-49,31,-68,80,-72v1,-9,-2,-23,1,-30v15,0,27,12,25,30v46,4,74,30,76,75r-28,0v-24,0,-24,-33,-48,-34r0,60v42,13,85,18,85,72xm105,-38v19,0,37,-10,36,-30v0,-11,-12,-21,-36,-29r0,59xm79,-208v-20,1,-32,11,-33,29v0,12,11,21,33,26r0,-55","w":198},"\u00a3":{"d":"186,-8v-51,34,-124,-28,-168,12r-18,-41v17,-12,27,-24,32,-38r-32,0r0,-31r35,0v-2,-8,-3,-15,-4,-18r-31,0r0,-31r22,0v-22,-77,70,-120,129,-78v14,10,22,27,25,49v-18,3,-48,9,-50,-10v-12,-31,-62,-17,-60,14v0,7,1,15,4,25v30,2,65,-10,58,31r-49,0v2,11,3,18,3,18v29,-2,50,-1,46,31r-49,0v-3,9,-11,19,-22,32v35,-15,74,21,111,-5","w":195},"\u00a2":{"d":"165,-71v-2,51,-43,82,-102,74r-10,36r-18,0r11,-40v-33,-15,-50,-45,-50,-93v0,-66,36,-105,104,-97r8,-28r18,0r-9,33v29,8,43,32,47,66r-47,0v-2,-12,-6,-17,-13,-26r-29,109v27,2,38,-9,42,-34r48,0xm89,-151v-52,-11,-56,77,-29,107","w":172},"!":{"d":"0,-217v0,-23,24,-27,50,-25r-9,174r-33,0xm1,-30v-2,-24,26,-19,48,-19r0,49r-48,0r0,-30","w":52},"%":{"d":"22,0r134,-232v6,-15,27,-9,46,-10r-140,242r-40,0xm224,-59v0,-26,-24,-50,-50,-50v-28,0,-50,24,-50,50v0,26,23,50,50,50v26,0,50,-24,50,-50xm0,-184v0,-27,24,-49,50,-49v26,0,50,23,50,49v0,27,-23,50,-50,50v-27,0,-50,-22,-50,-50xm75,-184v0,-12,-12,-23,-25,-23v-13,0,-25,10,-25,23v0,14,11,25,25,25v14,0,25,-12,25,-25xm150,-59v0,-14,10,-25,24,-25v13,0,24,12,24,25v0,13,-11,25,-24,25v-15,0,-24,-11,-24,-25","w":234},"&":{"d":"58,-97v-40,26,1,80,38,58v6,-2,12,-6,18,-12r-44,-55xm85,-207v-32,1,-16,40,-2,49v20,-6,35,-47,2,-49xm-4,-64v5,-39,20,-55,50,-72v-10,-14,-24,-28,-24,-49v0,-36,28,-57,64,-58v34,0,60,21,60,54v0,32,-18,46,-40,60r35,43v7,-9,11,-29,12,-41v19,0,44,-4,40,19v-4,21,-15,41,-26,55r45,53r-57,0r-16,-20v-37,43,-151,27,-143,-44","w":222},"(":{"d":"53,36v-63,-69,-76,-207,-15,-288v9,-19,32,-21,49,-22v-57,81,-57,230,0,310r-34,0","w":91},")":{"d":"34,-274v45,61,81,143,44,232v-12,30,-29,83,-78,77v58,-78,57,-232,0,-309r34,0","w":97},"{":{"d":"51,-119v72,5,-5,142,72,124v4,25,-8,41,-32,35v-47,3,-49,-47,-46,-99v1,-30,-14,-47,-45,-42r0,-35v50,6,48,-39,45,-85v-4,-54,32,-61,78,-57r0,35v-75,-20,-1,121,-72,124","w":128},"}":{"d":"72,-119v-73,-5,4,-142,-72,-125v-6,-32,12,-40,41,-33v77,-4,-10,150,82,141r0,35v-50,-7,-48,38,-45,85v4,52,-31,60,-78,56r0,-35v76,16,0,-120,72,-124","w":128},"|":{"d":"0,-285v0,-16,14,-24,33,-22r0,370r-33,0r0,-348","w":34},"<":{"d":"147,-22r-138,-75v-18,-9,-16,-39,1,-48r137,-75v-1,15,4,34,-8,41r-98,54v-4,3,-4,6,0,8r106,57r0,38","w":153},">":{"d":"0,-220r137,75v20,8,19,36,0,47r-137,76v1,-16,-4,-35,8,-42r98,-53v4,-3,4,-6,0,-8r-106,-58r0,-37","w":158},"\\":{"d":"71,0r-71,-243v14,1,26,-3,30,10r68,233r-27,0","w":103},"[":{"d":"0,40r0,-323r86,0r0,36r-40,0r0,251r40,0v1,19,1,36,-18,36r-68,0","w":90},"]":{"d":"0,-245v-1,-19,1,-36,18,-36r68,0r0,323r-86,0r0,-36r40,0r0,-251r-40,0","w":90},"\/":{"d":"71,-243r27,0r-68,234v-2,12,-17,9,-30,9","w":103},"\u00f7":{"d":"0,-104v0,-16,-2,-32,15,-32r144,0r0,32r-159,0xm56,-68v1,-12,10,-23,23,-23v15,0,23,8,23,23v0,32,-46,28,-46,0xm56,-172v0,-11,10,-23,23,-23v12,0,23,12,23,23v0,12,-10,22,-23,22v-14,0,-23,-10,-23,-22","w":166},"=":{"d":"0,-131v0,-16,-2,-34,15,-33r144,0r0,33r-159,0xm0,-77v0,-16,-2,-32,15,-32r144,0r0,32r-159,0","w":166},"\u00f8":{"d":"151,-158v34,54,12,153,-44,158v-31,9,-64,0,-82,-15r-12,15r-26,0r25,-30v-36,-54,-12,-160,52,-160v31,0,55,1,73,16r12,-13r27,0xm107,-139v-44,-36,-75,19,-61,70xm55,-49v11,15,45,18,55,-4v10,-9,13,-48,7,-66","w":184},"@":{"d":"105,-77v0,31,33,40,52,20v18,-18,42,-88,-4,-90v-29,-1,-48,38,-48,70xm208,-21v-21,1,-35,-9,-35,-28v-20,43,-112,33,-103,-29v-7,-64,77,-126,119,-72r9,-16v23,0,27,7,23,25r-19,81v0,9,5,13,16,11v38,-6,55,-41,56,-82v2,-55,-51,-91,-110,-90v-87,2,-132,51,-139,131v-9,112,153,138,226,79v7,47,-51,57,-99,57v-93,0,-156,-46,-156,-136v0,-100,70,-159,169,-159v78,0,139,42,139,119v0,61,-37,105,-96,109","w":319},"\u00a9":{"d":"74,-210v0,-20,-13,-33,-34,-33v-47,0,-41,67,0,67v20,0,34,-12,34,-34xm60,-217v-12,-3,-29,-18,-32,7v-2,19,22,22,23,8r9,0v0,11,-9,16,-20,17v-17,0,-20,-10,-22,-25v-2,-21,23,-31,37,-19v4,3,5,7,5,12xm0,-210v0,-23,17,-40,40,-40v23,-1,41,19,41,40v0,22,-19,42,-41,41v-23,-1,-40,-16,-40,-41","w":84},"\u00ae":{"d":"40,-169v-40,2,-54,-59,-20,-76v28,-15,62,7,61,35v-1,23,-18,40,-41,41xm45,-233v16,-4,17,21,8,23v9,2,2,16,7,22v-19,6,-1,-24,-28,-18r0,18r-9,0r0,-41v1,-8,15,-3,22,-4xm32,-214v10,3,27,-4,12,-12r-12,0r0,12xm74,-210v0,-21,-12,-32,-34,-33v-20,-1,-34,15,-34,33v0,17,14,34,34,34v20,0,34,-13,34,-34","w":84},"*":{"d":"31,-221v-1,-17,-1,-31,18,-27r0,27v14,-5,30,-10,32,10r-25,7v7,9,19,28,-1,32r-15,-21v-6,11,-17,25,-30,10r15,-21r-25,-7v1,-17,17,-17,31,-10","w":84},"`":{"d":"0,-249v17,1,39,-4,46,9r20,35r-23,0","w":68},"'":{"d":"66,-249r-43,44r-23,0v12,-14,13,-39,34,-44r32,0","w":68},"\u00b4":{"d":"66,-249r-43,44r-23,0v12,-14,13,-39,34,-44r32,0","w":68},"\"":{"d":"45,-249v5,26,-31,20,-24,47v3,3,16,2,23,2v-1,18,6,41,-16,41r-28,0v-3,-47,1,-85,45,-90xm115,-249v5,24,-26,19,-24,42v-3,10,15,6,24,7v-1,19,5,41,-17,41r-28,0v-3,-47,2,-84,45,-90","w":120},"\u00a8":{"d":"95,-201v1,-9,-16,-5,-24,-6v1,-19,-5,-42,16,-42r28,0v3,46,0,87,-45,90v-4,-22,26,-21,25,-42xm1,-233v-1,-20,25,-16,44,-16v3,46,0,87,-45,90v-5,-21,25,-20,25,-42v2,-9,-15,-5,-24,-6r0,-26","w":120},"_":{"d":"0,44v-2,-18,5,-31,20,-31r163,0r0,31r-183,0","w":191},"\u00aa":{"d":"30,-172v17,1,22,-11,21,-29v-10,7,-34,1,-33,18v-1,7,5,12,12,11xm34,-249v37,0,39,21,39,57v0,32,-23,39,-46,39v-18,0,-31,-9,-31,-29v0,-24,18,-29,39,-30v10,-1,15,-4,15,-9v1,-11,-27,-12,-29,-2r-22,0v2,-17,15,-26,35,-26","w":76},"\u00ba":{"d":"71,-169v-25,32,-83,13,-75,-33v-8,-48,60,-62,78,-26v8,15,7,47,-3,59xm25,-224v-12,16,-11,51,18,51v9,0,13,-10,13,-28v0,-27,-17,-31,-31,-23","w":82},"\u00b2":{"d":"58,-224v0,22,-26,27,-36,41r35,0r0,14r-57,0v-3,-27,36,-38,41,-55v-2,-18,-26,-11,-25,3v-4,3,-16,2,-14,-8v6,-27,56,-26,56,5","w":60},"\u00b3":{"d":"29,-167v-17,-2,-29,-8,-28,-27r15,0v0,10,4,13,13,13v8,-1,12,-2,12,-12v1,-10,-8,-12,-17,-12v1,-3,-1,-9,1,-10v17,3,19,-22,4,-21v-7,0,-12,3,-11,12v-8,0,-16,2,-14,-8v4,-25,55,-22,52,5v1,5,-8,15,-10,15v25,10,8,48,-17,45","w":61},"\u00bc":{"d":"6,-169v10,-1,18,-8,21,-18v9,-1,16,1,15,10r0,84r-19,0r0,-63r-17,0r0,-13xm110,0r0,-21r-41,0v0,-36,24,-48,35,-73v13,0,25,-3,25,15r0,42r11,0r0,16r-11,0r0,21r-19,0xm0,0r104,-179v3,-9,12,-8,24,-8r-108,187r-20,0xm110,-36r0,-41r-26,41r26,0","w":146},"\u00bd":{"d":"139,-65v0,27,-31,31,-43,48r42,0r0,17r-68,0v-4,-32,44,-44,49,-65v0,-8,-6,-14,-14,-14v-12,0,-16,7,-16,19v-22,5,-19,-16,-9,-26v19,-19,59,-8,59,21xm0,0r104,-179v3,-9,12,-8,24,-8r-108,187r-20,0xm6,-169v10,-1,18,-8,21,-18v9,-1,16,1,15,10r0,84r-19,0r0,-63r-17,0r0,-13","w":144},"\u00be":{"d":"20,0r104,-179v4,-9,12,-8,24,-8r-109,187r-19,0xm130,0r0,-21r-41,0v0,-36,24,-48,35,-73v13,0,28,-3,24,15r0,42r12,0r0,16r-12,0r0,21r-18,0xm130,-36r0,-41r-26,41r26,0xm54,-143v30,13,13,53,-20,53v-19,0,-36,-10,-34,-31r18,0v-1,10,6,16,16,16v10,0,15,-6,15,-15v-1,-11,-9,-14,-21,-14v1,-4,-3,-13,2,-13v9,1,16,-5,16,-13v0,-8,-4,-12,-12,-12v-11,1,-13,5,-14,15v-20,5,-19,-13,-9,-22v16,-15,57,-8,55,18v0,11,-5,14,-12,18","w":167},"\u00a7":{"d":"18,-177v-27,-26,-4,-75,39,-72v30,2,52,17,56,44v-13,2,-39,9,-40,-5v-3,-17,-32,-13,-32,2v13,35,85,43,83,91v-1,18,-10,33,-23,42v31,28,10,82,-40,79v-35,-2,-54,-18,-59,-48v33,-9,34,15,60,20v10,-1,17,-5,18,-15v-7,-37,-89,-43,-84,-96v2,-18,7,-34,22,-42xm39,-160v-16,9,-14,30,5,43r37,26v32,-31,-26,-53,-42,-69","w":129},"0":{"d":"-4,-121v0,-77,21,-125,89,-125v66,0,91,49,90,125v0,78,-21,125,-90,125v-66,0,-90,-44,-89,-125xm124,-120v0,-37,-4,-87,-39,-87v-35,0,-39,48,-39,86v0,39,4,87,39,87v35,0,39,-48,39,-86","w":183},"1":{"d":"55,-242v23,-3,39,6,39,25r0,217r-48,0r0,-163r-46,0r0,-35v26,-1,50,-19,55,-44","w":98},"2":{"d":"1,-183v13,-87,177,-81,171,14v-4,60,-48,74,-89,104v-12,8,-19,15,-20,22r106,0r0,43r-173,0v-3,-80,70,-105,112,-141v25,-21,11,-63,-24,-63v-27,0,-40,19,-39,47v-23,0,-49,5,-44,-26","w":180},"3":{"d":"82,4v-55,-4,-86,-27,-86,-81r47,0v0,27,13,41,39,41v25,0,39,-13,40,-37v1,-28,-25,-41,-55,-36r0,-34v54,12,65,-63,15,-64v-25,0,-35,14,-35,38v-23,0,-51,4,-43,-25v9,-34,39,-52,80,-52v45,0,81,24,81,66v1,25,-14,39,-30,48v74,33,33,143,-53,136","w":182},"4":{"d":"92,-242v36,-2,62,-1,62,40r0,108r29,0r0,40r-29,0r0,54r-49,0r0,-54r-105,0r0,-44xm106,-92r0,-107r-67,107r67,0","w":191},"5":{"d":"122,-82v0,-43,-56,-59,-73,-27r-45,-2r16,-132r118,0v19,1,27,20,24,43r-107,0r-6,47v51,-35,125,5,125,69v0,79,-100,113,-155,69v-16,-12,-22,-32,-23,-55r48,0v0,21,14,34,37,34v29,0,41,-17,41,-46","w":182},"6":{"d":"86,-121v-24,0,-39,17,-38,41v0,27,13,45,39,45v25,0,37,-18,37,-45v0,-25,-14,-41,-38,-41xm132,-184v-20,-2,-19,-25,-45,-23v-29,2,-40,27,-40,64v45,-41,128,-6,128,61v0,51,-35,87,-88,86v-66,-1,-91,-46,-91,-119v0,-101,75,-164,150,-114v15,10,21,26,23,45r-37,0","w":183},"7":{"d":"36,0v5,-82,40,-144,86,-200r-122,0r0,-42r160,0v24,-2,29,23,16,37v-46,50,-83,120,-88,205r-52,0","w":194},"8":{"d":"20,-224v40,-36,148,-27,148,43v0,25,-13,42,-29,51v21,13,36,27,35,58v0,50,-35,76,-90,76v-54,0,-89,-23,-88,-76v0,-32,12,-46,36,-58v-34,-9,-39,-70,-12,-94xm46,-73v-1,25,19,39,46,36v17,-2,33,-17,32,-36v-1,-23,-17,-37,-40,-37v-23,0,-37,13,-38,37xm120,-177v0,-17,-16,-30,-36,-30v-20,0,-35,12,-35,30v0,19,12,29,35,29v22,0,36,-10,36,-29","w":182},"9":{"d":"82,-246v66,0,93,49,93,120v0,77,-29,130,-98,130v-36,0,-68,-14,-72,-48v-2,-19,29,-13,47,-14v2,30,47,31,60,7v6,-11,10,-26,11,-47v-43,38,-127,7,-127,-62v0,-53,33,-86,86,-86xm45,-162v-5,47,69,59,76,12v4,-30,-9,-57,-39,-57v-26,0,-35,21,-37,45","w":183},"?":{"d":"53,-70v-10,-60,46,-59,54,-104v5,-35,-42,-41,-58,-23v-6,7,-10,17,-10,30v-25,-2,-43,7,-43,-21v0,-65,104,-76,144,-35v28,29,14,88,-13,104v-17,10,-32,20,-30,49r-44,0xm51,-30v-2,-24,27,-18,49,-19r0,49r-49,0r0,-30","w":164},"\u00bf":{"d":"107,-75v0,-45,-64,-44,-54,-104r44,0v-1,56,60,48,60,107v0,82,-126,94,-156,33v-6,-13,-8,-41,7,-42v8,-1,18,-1,31,-1v1,29,14,43,44,40v16,-2,24,-14,24,-33xm100,-200v-21,-1,-49,6,-49,-18r0,-31r49,0r0,49","w":164},"\u00c6":{"d":"321,-148v10,54,-49,40,-94,41r0,63r132,0r0,44r-181,0r0,-50r-94,0r-32,50r-52,0r154,-225v9,-19,40,-16,68,-16r131,0r0,42r-126,0r0,51r94,0xm178,-90r0,-103r-67,103r67,0","w":376},"\u00d0":{"d":"254,-120v0,78,-36,123,-124,120r-81,0r0,-105r-49,0r0,-31r49,0v4,-40,-15,-105,26,-105r68,0v77,1,111,42,111,121xm203,-120v0,-69,-36,-86,-105,-79r0,63v27,-1,54,-3,48,31r-48,0r0,61v67,4,105,-7,105,-76","w":266},"\u00de":{"d":"131,-120v2,51,-41,88,-96,66v-2,20,7,51,-13,53v-9,1,-16,1,-22,1r0,-241v14,0,35,-2,35,17r0,37v12,-6,24,-5,40,-6v37,-1,55,38,56,73xm97,-121v0,-20,-14,-39,-32,-39v-19,0,-32,20,-31,39v0,19,12,39,31,39v18,0,32,-19,32,-39","w":137},"\u00df":{"d":"104,-207v-35,-3,-56,15,-56,41r0,196r-48,0r0,-198v2,-53,48,-81,114,-81v45,0,75,19,76,61v0,25,-12,41,-29,50v22,11,36,26,37,57v1,65,-57,78,-127,73r0,-43v35,0,75,6,75,-31v0,-38,-38,-32,-75,-32r0,-41v31,0,69,5,69,-26v0,-20,-14,-24,-36,-26","w":207},"\u00e6":{"d":"65,-33v34,1,46,-24,43,-59v-21,14,-67,4,-67,37v0,14,9,22,24,22xm158,-79v-8,45,54,57,68,23r48,0v-7,57,-98,80,-140,38v-39,30,-144,41,-138,-36v3,-42,29,-55,69,-58v22,-2,62,-14,34,-31v-11,-7,-48,-9,-51,8r-47,0v1,-58,102,-63,138,-34v62,-43,153,-1,137,90r-118,0xm227,-110v4,-33,-39,-47,-60,-27v-7,6,-9,16,-9,27r69,0","w":289},"\u00b5":{"d":"77,-32v79,0,-26,-159,77,-142r0,102v3,66,-50,83,-108,72v2,39,4,77,-46,67r0,-241r46,0r0,111v-1,20,15,31,31,31","w":161},"^":{"d":"22,-234v28,-37,61,4,76,27r-28,0r-21,-24v-12,13,-21,28,-49,24","w":103},"l":{"d":"2,-242v25,-1,49,0,49,23r0,219r-49,0r0,-242","w":59},"t":{"d":"83,-186v3,22,-8,35,-29,33r0,104v-1,14,15,12,29,12r0,37v-33,0,-77,8,-77,-35r0,-207v25,-2,48,1,48,24r0,32r29,0","w":87},"i":{"d":"4,-187v26,-2,49,1,49,24r0,163r-49,0r0,-187xm4,-242v32,-3,55,4,49,39r-49,0r0,-39","w":55},"\u00ed":{"d":"4,-187v26,-2,49,1,49,24r0,163r-49,0r0,-187xm79,-248r-43,44r-23,0v11,-15,11,-44,34,-44r32,0","w":63},"\u00ec":{"d":"4,-187v26,-2,49,1,49,24r0,163r-49,0r0,-187xm-27,-248v17,1,38,-4,45,8r19,36r-23,0","w":63},"\u00ee":{"d":"4,-187v26,-2,49,1,49,24r0,163r-49,0r0,-187xm3,-230v26,-36,60,4,75,26r-28,0r-22,-23v-10,13,-21,27,-48,23","w":63},"\u00ef":{"d":"5,-187v25,-2,48,1,48,24r0,163r-48,0r0,-187xm1,-236v16,-1,11,18,12,32r-31,0r0,-32r19,0xm65,-236v16,-1,11,18,12,32r-32,0r0,-32r20,0","w":63},"j":{"d":"53,0v5,55,-9,84,-69,78r0,-41v24,5,20,-17,20,-37r0,-187v26,-2,49,1,49,24r0,163xm4,-242v32,-3,55,4,49,39r-49,0r0,-39","w":63},"\u00c5":{"d":"82,-225v6,-23,37,-14,63,-16r87,241r-52,0r-17,-49r-93,0r-17,49r-52,0xm103,-274v0,8,7,15,14,15v7,0,13,-7,13,-15v0,-7,-5,-15,-13,-14v-8,-1,-14,7,-14,14xm117,-300v14,3,26,10,26,26v0,16,-11,25,-26,26v-14,-3,-26,-9,-26,-26v1,-16,11,-24,26,-26xm116,-193r-33,104r67,0","w":243},"\u00e5":{"d":"66,-35v32,1,46,-24,42,-60v-20,12,-66,7,-67,37v0,14,11,23,25,23xm76,-202v-15,0,-25,-10,-26,-26v-1,-27,42,-33,50,-10v7,19,-6,36,-24,36xm63,-228v-1,8,5,15,13,15v8,0,14,-7,13,-15v0,-7,-5,-15,-13,-14v-8,-1,-13,7,-13,14xm1,-140v1,-70,153,-72,153,1v0,54,5,113,-34,131v-47,21,-124,14,-124,-48v0,-49,38,-56,81,-62v21,-3,31,-9,31,-18v-2,-23,-53,-22,-60,-4r-47,0","w":161},"\u00a0":{"w":80}}});
/*
CSS Browser Selector v0.3.5 (Feb 05, 2010)
Rafael Lima (http://rafael.adm.br)
http://rafael.adm.br/css_browser_selector
License: http://creativecommons.org/licenses/by/2.5/
Contributors: http://rafael.adm.br/css_browser_selector#contributors
*/
function css_browser_selector(u){var ua = u.toLowerCase(),is=function(t){return ua.indexOf(t)>-1;},g='gecko',w='webkit',s='safari',o='opera',h=document.documentElement,b=[(!(/opera|webtv/i.test(ua))&&/msie\s(\d)/.test(ua))?('ie ie'+RegExp.$1):is('firefox/2')?g+' ff2':is('firefox/3.5')?g+' ff3 ff3_5':is('firefox/3')?g+' ff3':is('gecko/')?g:is('opera')?o+(/version\/(\d+)/.test(ua)?' '+o+RegExp.$1:(/opera(\s|\/)(\d+)/.test(ua)?' '+o+RegExp.$2:'')):is('konqueror')?'konqueror':is('chrome')?w+' chrome':is('iron')?w+' iron':is('applewebkit/')?w+' '+s+(/version\/(\d+)/.test(ua)?' '+s+RegExp.$1:''):is('mozilla/')?g:'',is('j2me')?'mobile':is('iphone')?'iphone':is('ipod')?'ipod':is('mac')?'mac':is('darwin')?'mac':is('webtv')?'webtv':is('win')?'win':is('freebsd')?'freebsd':(is('x11')||is('linux'))?'linux':'','js']; c = b.join(' '); h.className += ' '+c; return c;}; css_browser_selector(navigator.userAgent);

