// Credit Card Validation Javascript
// copyright 12th May 2003, by Stephen Chapman, Felgall Pty Ltd

// You have permission to copy and use this javascript provided that
// the content of the script is not changed in any way.

function validateCreditCard(s) {
    // remove non-numerics
    var v = "0123456789";
    var w = "";
    for (i=0; i < s.length; i++) {
        x = s.charAt(i);
        if (v.indexOf(x,0) != -1)
        w += x;
    }
    // validate number
    j = w.length / 2;
    k = Math.floor(j);
    m = Math.ceil(j) - k;
    c = 0;
    for (i=0; i<k; i++) {
        a = w.charAt(i*2+m) * 2;
        c += a > 9 ? Math.floor(a/10 + a%10) : a;
    }
    for (i=0; i<k+m; i++) c += w.charAt(i*2+1-m) * 1;
    return (c%10 == 0);
}


/*
* Really easy field validation with Prototype
* http://tetlaw.id.au/view/javascript/really-easy-field-validation
* Andrew Tetlaw
* Version 1.5.4.1 (2007-01-05)
*
* Copyright (c) 2007 Andrew Tetlaw
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use, copy,
* modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*/
var Validator = Class.create();

Validator.prototype = {
    initialize : function(className, error, test, options) {
        if(typeof test == 'function'){
            this.options = $H(options);
            this._test = test;
        } else {
            this.options = $H(test);
            this._test = function(){return true};
        }
        this.error = error || 'Validation failed.';
        this.className = className;
    },
    test : function(v, elm) {
        return (this._test(v,elm) && this.options.all(function(p){
            return Validator.methods[p.key] ? Validator.methods[p.key](v,elm,p.value) : true;
        }));
    }
}
Validator.methods = {
    pattern : function(v,elm,opt) {return Validation.get('IsEmpty').test(v) || opt.test(v)},
    minLength : function(v,elm,opt) {return v.length >= opt},
    maxLength : function(v,elm,opt) {return v.length <= opt},
    min : function(v,elm,opt) {return v >= parseFloat(opt)},
    max : function(v,elm,opt) {return v <= parseFloat(opt)},
    notOneOf : function(v,elm,opt) {return $A(opt).all(function(value) {
        return v != value;
    })},
    oneOf : function(v,elm,opt) {return $A(opt).any(function(value) {
        return v == value;
    })},
    is : function(v,elm,opt) {return v == opt},
    isNot : function(v,elm,opt) {return v != opt},
    equalToField : function(v,elm,opt) {return v == $F(opt)},
    notEqualToField : function(v,elm,opt) {return v != $F(opt)},
    include : function(v,elm,opt) {return $A(opt).all(function(value) {
        return Validation.get(value).test(v,elm);
    })}
}

var Validation = Class.create();
Validation.defaultOptions = {
    onSubmit : true,
    stopOnFirst : false,
    immediate : false,
    focusOnError : true,
    useTitles : false,
    addClassNameToContainer: false,
    containerClassName: '.input-box',
    onFormValidate : function(result, form) {},
    onElementValidate : function(result, elm) {}
};

Validation.prototype = {
    initialize : function(form, options){
        this.form = $(form);
        if (!this.form) {
            return;
        }
        this.options = Object.extend({
            onSubmit : Validation.defaultOptions.onSubmit,
            stopOnFirst : Validation.defaultOptions.stopOnFirst,
            immediate : Validation.defaultOptions.immediate,
            focusOnError : Validation.defaultOptions.focusOnError,
            useTitles : Validation.defaultOptions.useTitles,
            onFormValidate : Validation.defaultOptions.onFormValidate,
            onElementValidate : Validation.defaultOptions.onElementValidate
        }, options || {});
        if(this.options.onSubmit) Event.observe(this.form,'submit',this.onSubmit.bind(this),false);
        if(this.options.immediate) {
            Form.getElements(this.form).each(function(input) { // Thanks Mike!
                if (input.tagName.toLowerCase() == 'select') {
                    Event.observe(input, 'blur', this.onChange.bindAsEventListener(this));
                }
                if (input.type.toLowerCase() == 'radio' || input.type.toLowerCase() == 'checkbox') {
                    Event.observe(input, 'click', this.onChange.bindAsEventListener(this));
                } else {
                    Event.observe(input, 'change', this.onChange.bindAsEventListener(this));
                }
            }, this);
        }
    },
    onChange : function (ev) {
        Validation.isOnChange = true;
        Validation.validate(Event.element(ev),{
                useTitle : this.options.useTitles,
                onElementValidate : this.options.onElementValidate
        });
        Validation.isOnChange = false;
    },
    onSubmit :  function(ev){
        if(!this.validate()) Event.stop(ev);
    },
    validate : function() {
        var result = false;
        var useTitles = this.options.useTitles;
        var callback = this.options.onElementValidate;
		
        try {
            if(this.options.stopOnFirst) {
                result = Form.getElements(this.form).all(function(elm) {
                    if (elm.hasClassName('local-validation') && !this.isElementInForm(elm, this.form)) {
                        return true;
                    }
                    return Validation.validate(elm,{useTitle : useTitles, onElementValidate : callback});
                }, this);
            } else {
                result = Form.getElements(this.form).collect(function(elm) {
                    if (elm.hasClassName('local-validation') && !this.isElementInForm(elm, this.form)) {
                        return true;
                    }
                    return Validation.validate(elm,{useTitle : useTitles, onElementValidate : callback});
                }, this).all();
            }
        } catch (e) {
        }
        if(!result && this.options.focusOnError) {
            try{
                Form.getElements(this.form).findAll(function(elm){return $(elm).hasClassName('validation-failed')}).first().focus()
            }
            catch(e){
            }
        }
        this.options.onFormValidate(result, this.form);
        return result;
    },
    reset : function() {
        Form.getElements(this.form).each(Validation.reset);
    },
    isElementInForm : function(elm, form) {
        var domForm = elm.up('form');
        if (domForm == form) {
            return true;
        }
        return false;
    }
}

Object.extend(Validation, {
    validate : function(elm, options){
        options = Object.extend({
            useTitle : false,
            onElementValidate : function(result, elm) {}
        }, options || {});
        elm = $(elm);

        var cn = $w(elm.className);
        return result = cn.all(function(value) {
            var test = Validation.test(value,elm,options.useTitle);
            options.onElementValidate(test, elm);
            return test;
        });
    },
    insertAdvice : function(elm, advice){
        var container = $(elm).up('.field-row');
        if(container){
            Element.insert(container, {after: advice});
        } else if (elm.up('td.value')) {
            elm.up('td.value').insert({bottom: advice});
        } else if (elm.advaiceContainer && $(elm.advaiceContainer)) {
            $(elm.advaiceContainer).update(advice);
        }
        else {
            switch (elm.type.toLowerCase()) {
                case 'checkbox':
                case 'radio':
                    var p = elm.parentNode;
                    if(p) {
                        Element.insert(p, {'bottom': advice});
                    } else {
                        Element.insert(elm, {'after': advice});
                    }
                    break;
                default:
                    Element.insert(elm, {'after': advice});
            }
        }
    },
    showAdvice : function(elm, advice, adviceName){
        if(!elm.advices){
            elm.advices = new Hash();
        }
        else{
            elm.advices.each(function(pair){
                this.hideAdvice(elm, pair.value);
            }.bind(this));
        }
        elm.advices.set(adviceName, advice);
        if(typeof Effect == 'undefined') {
            advice.style.display = 'block';
        } else {
            if(!advice._adviceAbsolutize) {
                new Effect.Appear(advice, {duration : 1 });
            } else {
                Position.absolutize(advice);
                advice.show();
                advice.setStyle({
                    'top':advice._adviceTop,
                    'left': advice._adviceLeft,
                    'width': advice._adviceWidth,
                    'z-index': 1000
                });
                advice.addClassName('advice-absolute');
            }
        }
    },
    hideAdvice : function(elm, advice){
        if(advice != null) advice.hide();
    },
    updateCallback : function(elm, status) {
        if (typeof elm.callbackFunction != 'undefined') {
            eval(elm.callbackFunction+'(\''+elm.id+'\',\''+status+'\')');
        }
    },
    ajaxError : function(elm, errorMsg) {
        var name = 'validate-ajax';
        var advice = Validation.getAdvice(name, elm);
        if (advice == null) {
            advice = this.createAdvice(name, elm, false, errorMsg);
        }
        this.showAdvice(elm, advice, 'validate-ajax');
        this.updateCallback(elm, 'failed');

        elm.addClassName('validation-failed');
        elm.addClassName('validate-ajax');
        if (Validation.defaultOptions.addClassNameToContainer && Validation.defaultOptions.containerClassName != '') {
            var container = elm.up(Validation.defaultOptions.containerClassName);
            if (container && this.allowContainerClassName(elm)) {
                container.removeClassName('validation-passed');
                container.addClassName('validation-error');
            }
        }
    },
    allowContainerClassName: function (elm) {
        if (elm.type == 'radio' || elm.type == 'checkbox') {
            return elm.hasClassName('change-container-classname');
        }

        return true;
    },
    test : function(name, elm, useTitle) {
        var v = Validation.get(name);
        var prop = '__advice'+name.camelize();
        try {
        if(Validation.isVisible(elm) && !v.test($F(elm), elm)) {
            //if(!elm[prop]) {
                var advice = Validation.getAdvice(name, elm);
                if (advice == null) {
                    advice = this.createAdvice(name, elm, useTitle);
                }
                this.showAdvice(elm, advice, name);
                this.updateCallback(elm, 'failed');
            //}
            elm[prop] = 1;
            if (!elm.advaiceContainer) {
                elm.removeClassName('validation-passed');
                elm.addClassName('validation-failed');
            }

           if (Validation.defaultOptions.addClassNameToContainer && Validation.defaultOptions.containerClassName != '') {
                var container = elm.up(Validation.defaultOptions.containerClassName);
                if (container && this.allowContainerClassName(elm)) {
                    container.removeClassName('validation-passed');
                    container.addClassName('validation-error');
                }
            }
            return false;
        } else {
            var advice = Validation.getAdvice(name, elm);
            this.hideAdvice(elm, advice);
            this.updateCallback(elm, 'passed');
            elm[prop] = '';
            elm.removeClassName('validation-failed');
            elm.addClassName('validation-passed');
            if (Validation.defaultOptions.addClassNameToContainer && Validation.defaultOptions.containerClassName != '') {
                var container = elm.up(Validation.defaultOptions.containerClassName);
                if (container && !container.down('.validation-failed') && this.allowContainerClassName(elm)) {
                    if (!Validation.get('IsEmpty').test(elm.value) || !this.isVisible(elm)) {
                        container.addClassName('validation-passed');
                    } else {
                        container.removeClassName('validation-passed');
                    }
                    container.removeClassName('validation-error');
                }
            }
            return true;
        }
        } catch(e) {
            throw(e)
        }
    },
    isVisible : function(elm) {
        while(elm.tagName != 'BODY') {
            if(!$(elm).visible()) return false;
            elm = elm.parentNode;
        }
        return true;
    },
    getAdvice : function(name, elm) {
        return $('advice-' + name + '-' + Validation.getElmID(elm)) || $('advice-' + Validation.getElmID(elm));
    },
    createAdvice : function(name, elm, useTitle, customError) {
        var v = Validation.get(name);
        var errorMsg = useTitle ? ((elm && elm.title) ? elm.title : v.error) : v.error;
        if (customError) {
            errorMsg = customError;
        }
        try {
            if (Translator){
                errorMsg = Translator.translate(errorMsg);
            }
        }
        catch(e){}

        advice = '<div class="validation-advice" id="advice-' + name + '-' + Validation.getElmID(elm) +'" style="display:none">' + errorMsg + '</div>'


        Validation.insertAdvice(elm, advice);
        advice = Validation.getAdvice(name, elm);
        if($(elm).hasClassName('absolute-advice')) {
            var dimensions = $(elm).getDimensions();
            var originalPosition = Position.cumulativeOffset(elm);

            advice._adviceTop = (originalPosition[1] + dimensions.height) + 'px';
            advice._adviceLeft = (originalPosition[0])  + 'px';
            advice._adviceWidth = (dimensions.width)  + 'px';
            advice._adviceAbsolutize = true;
        }
        return advice;
    },
    getElmID : function(elm) {
        return elm.id ? elm.id : elm.name;
    },
    reset : function(elm) {
        elm = $(elm);
        var cn = $w(elm.className);
        cn.each(function(value) {
            var prop = '__advice'+value.camelize();
            if(elm[prop]) {
                var advice = Validation.getAdvice(value, elm);
                if (advice) {
                    advice.hide();
                }
                elm[prop] = '';
            }
            elm.removeClassName('validation-failed');
            elm.removeClassName('validation-passed');
            if (Validation.defaultOptions.addClassNameToContainer && Validation.defaultOptions.containerClassName != '') {
                var container = elm.up(Validation.defaultOptions.containerClassName);
                if (container) {
                    container.removeClassName('validation-passed');
                    container.removeClassName('validation-error');
                }
            }
        });
    },
    add : function(className, error, test, options) {
        var nv = {};
        nv[className] = new Validator(className, error, test, options);
        Object.extend(Validation.methods, nv);
    },
    addAllThese : function(validators) {
        var nv = {};
        $A(validators).each(function(value) {
                nv[value[0]] = new Validator(value[0], value[1], value[2], (value.length > 3 ? value[3] : {}));
            });
        Object.extend(Validation.methods, nv);
    },
    get : function(name) {
        return  Validation.methods[name] ? Validation.methods[name] : Validation.methods['_LikeNoIDIEverSaw_'];
    },
    methods : {
        '_LikeNoIDIEverSaw_' : new Validator('_LikeNoIDIEverSaw_','',{})
    }
});

Validation.add('IsEmpty', '', function(v) {
    return  (v == '' || (v == null) || (v.length == 0) || /^\s+$/.test(v)); // || /^\s+$/.test(v));
});

Validation.addAllThese([
    ['validate-select', 'Please select an option.', function(v) {
                return ((v != "none") && (v != null) && (v.length != 0));
            }],
    ['required-entry', 'This is a required field.', function(v) {
                return !Validation.get('IsEmpty').test(v);
            }],
    ['validate-number', 'Please enter a valid number in this field.', function(v) {
                return Validation.get('IsEmpty').test(v) || (!isNaN(parseNumber(v)) && !/^\s+$/.test(parseNumber(v)));
            }],
    ['validate-digits', 'Please use numbers only in this field. please avoid spaces or other characters such as dots or commas.', function(v) {
                return Validation.get('IsEmpty').test(v) ||  !/[^\d]/.test(v);
            }],
    ['validate-digits-range', 'The value is not within the specified range.', function(v, elm) {
                var result = Validation.get('IsEmpty').test(v) ||  !/[^\d]/.test(v);
                var reRange = new RegExp(/^digits-range-[0-9]+-[0-9]+$/);
                $w(elm.className).each(function(name, index) {
                    if (name.match(reRange) && result) {
                        var min = parseInt(name.split('-')[2], 10);
                        var max = parseInt(name.split('-')[3], 10);
                        var val = parseInt(v, 10);
                        result = (v >= min) && (v <= max);
                    }
                });
                return result;
            }],
    ['validate-alpha', 'Please use letters only (a-z or A-Z) in this field.', function (v) {
                return Validation.get('IsEmpty').test(v) ||  /^[a-zA-Z]+$/.test(v)
            }],
    ['validate-code', 'Please use only letters (a-z), numbers (0-9) or underscore(_) in this field, first character should be a letter.', function (v) {
                return Validation.get('IsEmpty').test(v) ||  /^[a-z]+[a-z0-9_]+$/.test(v)
            }],
    ['validate-alphanum', 'Please use only letters (a-z or A-Z) or numbers (0-9) only in this field. No spaces or other characters are allowed.', function(v) {
                return Validation.get('IsEmpty').test(v) ||  /^[a-zA-Z0-9]+$/.test(v) /*!/\W/.test(v)*/
            }],
    ['validate-street', 'Please use only letters (a-z or A-Z) or numbers (0-9) or spaces and # only in this field.', function(v) {
                return Validation.get('IsEmpty').test(v) ||  /^[ \w]{3,}([A-Za-z]\.)?([ \w]*\#\d+)?(\r\n| )[ \w]{3,}/.test(v)
            }],
    ['validate-phoneStrict', 'Please enter a valid phone number. For example (123) 456-7890 or 123-456-7890.', function(v) {
                return Validation.get('IsEmpty').test(v) || /^(\()?\d{3}(\))?(-|\s)?\d{3}(-|\s)\d{4}$/.test(v);
            }],
    ['validate-phoneLax', 'Please enter a valid phone number. For example (123) 456-7890 or 123-456-7890.', function(v) {
                return Validation.get('IsEmpty').test(v) || /^((\d[-. ]?)?((\(\d{3}\))|\d{3}))?[-. ]?\d{3}[-. ]?\d{4}$/.test(v);
            }],
    ['validate-fax', 'Please enter a valid fax number. For example (123) 456-7890 or 123-456-7890.', function(v) {
                return Validation.get('IsEmpty').test(v) || /^(\()?\d{3}(\))?(-|\s)?\d{3}(-|\s)\d{4}$/.test(v);
            }],
    ['validate-date', 'Please enter a valid date.', function(v) {
                var test = new Date(v);
                return Validation.get('IsEmpty').test(v) || !isNaN(test);
            }],
    ['validate-email', 'Please enter a valid email address. For example johndoe@domain.com.', function (v) {
                //return Validation.get('IsEmpty').test(v) || /\w{1,}[@][\w\-]{1,}([.]([\w\-]{1,})){1,3}$/.test(v)
                //return Validation.get('IsEmpty').test(v) || /^[\!\#$%\*/?|\^\{\}`~&\'\+\-=_a-z0-9][\!\#$%\*/?|\^\{\}`~&\'\+\-=_a-z0-9\.]{1,30}[\!\#$%\*/?|\^\{\}`~&\'\+\-=_a-z0-9]@([a-z0-9_-]{1,30}\.){1,5}[a-z]{2,4}$/i.test(v)
                return Validation.get('IsEmpty').test(v) || /^([a-z0-9,!\#\$%&'\*\+\/=\?\^_`\{\|\}~-]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z0-9,!\#\$%&'\*\+\/=\?\^_`\{\|\}~-]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*@([a-z0-9-]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z0-9-]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*\.(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]){2,})$/i.test(v)
            }],
    ['validate-emailSender', 'Please use only visible characters and spaces.', function (v) {
                return Validation.get('IsEmpty').test(v) ||  /^[\S ]+$/.test(v)
                    }],
    ['validate-password', 'Please enter 6 or more characters. Leading or trailing spaces will be ignored.', function(v) {
                var pass=v.strip(); /*strip leading and trailing spaces*/
                return !(pass.length>0 && pass.length < 6);
            }],
    ['validate-admin-password', 'Please enter 7 or more characters. Password should contain both numeric and alphabetic characters.', function(v) {
                var pass=v.strip();
                if (0 == pass.length) {
                    return true;
                }
                if (!(/[a-z]/i.test(v)) || !(/[0-9]/.test(v))) {
                    return false;
                }
                return !(pass.length < 7);
            }],
    ['validate-cpassword', 'Please make sure your passwords match.', function(v) {
                var conf = $('confirmation') ? $('confirmation') : $$('.validate-cpassword')[0];
                var pass = false;
                if ($('password')) {
                    pass = $('password');
                }
                var passwordElements = $$('.validate-password');
                for (var i = 0; i < passwordElements.size(); i++) {
                    var passwordElement = passwordElements[i];
                    if (passwordElement.up('form').id == conf.up('form').id) {
                        pass = passwordElement;
                    }
                }
                if ($$('.validate-admin-password').size()) {
                    pass = $$('.validate-admin-password')[0];
                }
                return (pass.value == conf.value);
            }],
    ['validate-url', 'Please enter a valid URL. Protocol is required (http://, https:// or ftp://)', function (v) {
                return Validation.get('IsEmpty').test(v) || /^(http|https|ftp):\/\/(([A-Z0-9][A-Z0-9_-]*)(\.[A-Z0-9][A-Z0-9_-]*)+)(:(\d+))?\/?/i.test(v)
            }],
    ['validate-clean-url', 'Please enter a valid URL. For example http://www.example.com or www.example.com', function (v) {
                return Validation.get('IsEmpty').test(v) || /^(http|https|ftp):\/\/(([A-Z0-9][A-Z0-9_-]*)(\.[A-Z0-9][A-Z0-9_-]*)+.(com|org|net|dk|at|us|tv|info|uk|co.uk|biz|se)$)(:(\d+))?\/?/i.test(v) || /^(www)((\.[A-Z0-9][A-Z0-9_-]*)+.(com|org|net|dk|at|us|tv|info|uk|co.uk|biz|se)$)(:(\d+))?\/?/i.test(v)
            }],
    ['validate-identifier', 'Please enter a valid URL Key. For example "example-page", "example-page.html" or "anotherlevel/example-page".', function (v) {
                return Validation.get('IsEmpty').test(v) || /^[A-Z0-9][A-Z0-9_\/-]+(\.[A-Z0-9_-]+)*$/i.test(v)
            }],
    ['validate-xml-identifier', 'Please enter a valid XML-identifier. For example something_1, block5, id-4.', function (v) {
                return Validation.get('IsEmpty').test(v) || /^[A-Z][A-Z0-9_\/-]*$/i.test(v)
            }],
    ['validate-ssn', 'Please enter a valid social security number. For example 123-45-6789.', function(v) {
            return Validation.get('IsEmpty').test(v) || /^\d{3}-?\d{2}-?\d{4}$/.test(v);
            }],
    ['validate-zip', 'Please enter a valid zip code. For example 9060.', function(v) {
            return Validation.get('IsEmpty').test(v) || /(^\d{4}$)/.test(v);
			//return Validation.get('IsEmpty').test(v) || /^([0-9]{4})$/.test(v);
            }],
    ['validate-zip-international', 'Please enter a valid zip code.', function(v) {
            //return Validation.get('IsEmpty').test(v) || /(^[A-z0-9]{2,10}([\s]{0,1}|[\-]{0,1})[A-z0-9]{2,10}$)/.test(v);
            return true;
			//return Validation.get('IsEmpty').test(v) || /^([0-9]{4})$/.test(v);
            }],
    ['validate-date-au', 'Please use this date format: dd/mm/yyyy. For example 17/03/2006 for the 17th of March, 2006.', function(v) {
                if(Validation.get('IsEmpty').test(v)) return true;
                var regex = /^(\d{2})\/(\d{2})\/(\d{4})$/;
                if(!regex.test(v)) return false;
                var d = new Date(v.replace(regex, '$2/$1/$3'));
                return ( parseInt(RegExp.$2, 10) == (1+d.getMonth()) ) &&
                            (parseInt(RegExp.$1, 10) == d.getDate()) &&
                            (parseInt(RegExp.$3, 10) == d.getFullYear() );
            }],
    ['validate-currency-dollar', 'Please enter a valid $ amount. For example $100.00.', function(v) {
                // [$]1[##][,###]+[.##]
                // [$]1###+[.##]
                // [$]0.##
                // [$].##
                return Validation.get('IsEmpty').test(v) ||  /^\$?\-?([1-9]{1}[0-9]{0,2}(\,[0-9]{3})*(\.[0-9]{0,2})?|[1-9]{1}\d*(\.[0-9]{0,2})?|0(\.[0-9]{0,2})?|(\.[0-9]{1,2})?)$/.test(v)
            }],
    ['validate-one-required', 'Please select one of the above options.', function (v,elm) {
                var p = elm.parentNode;
                var options = p.getElementsByTagName('INPUT');
                return $A(options).any(function(elm) {
                    return $F(elm);
                });
            }],
    ['validate-one-required-by-name', 'Please select one of the options.', function (v,elm) {
                var inputs = $$('input[name="' + elm.name.replace(/([\\"])/g, '\\$1') + '"]');

                var error = 1;
                for(var i=0;i<inputs.length;i++) {
                    if((inputs[i].type == 'checkbox' || inputs[i].type == 'radio') && inputs[i].checked == true) {
                        error = 0;
                    }

                    if(Validation.isOnChange && (inputs[i].type == 'checkbox' || inputs[i].type == 'radio')) {
                        Validation.reset(inputs[i]);
                    }
                }

                if( error == 0 ) {
                    return true;
                } else {
                    return false;
                }
            }],
    ['validate-not-negative-number', 'Please enter a valid number in this field.', function(v) {
                v = parseNumber(v);
                return (!isNaN(v) && v>=0);
            }],
    ['validate-state', 'Please select State/Province.', function(v) {
                return (v!=0 || v == '');
            }],

    ['validate-new-password', 'Please enter 6 or more characters. Leading or trailing spaces will be ignored.', function(v) {
                if (!Validation.get('validate-password').test(v)) return false;
                if (Validation.get('IsEmpty').test(v) && v != '') return false;
                return true;
            }],
    ['validate-greater-than-zero', 'Please enter a number greater than 0 in this field.', function(v) {
                if(v.length)
                    return parseFloat(v) > 0;
                else
                    return true;
            }],
    ['validate-zero-or-greater', 'Please enter a number 0 or greater in this field.', function(v) {
                if(v.length)
                    return parseFloat(v) >= 0;
                else
                    return true;
            }],
    ['validate-cc-number', 'Please enter a valid credit card number.', function(v, elm) {
                // remove non-numerics
                var ccTypeContainer = $(elm.id.substr(0,elm.id.indexOf('_cc_number')) + '_cc_type');
                if (ccTypeContainer && typeof Validation.creditCartTypes.get(ccTypeContainer.value) != 'undefined'
                        && Validation.creditCartTypes.get(ccTypeContainer.value)[2] == false) {
                    if (!Validation.get('IsEmpty').test(v) && Validation.get('validate-digits').test(v)) {
                        return true;
                    } else {
                        return false;
                    }
                }
                return validateCreditCard(v);
            }],
    ['validate-cc-type', 'Credit card number does not match credit card type.', function(v, elm) {
                // remove credit card number delimiters such as "-" and space
                elm.value = removeDelimiters(elm.value);
                v         = removeDelimiters(v);

                var ccTypeContainer = $(elm.id.substr(0,elm.id.indexOf('_cc_number')) + '_cc_type');
                if (!ccTypeContainer) {
                    return true;
                }
                var ccType = ccTypeContainer.value;

                if (typeof Validation.creditCartTypes.get(ccType) == 'undefined') {
                    return false;
                }

                // Other card type or switch or solo card
                if (Validation.creditCartTypes.get(ccType)[0]==false) {
                    return true;
                }

                // Matched credit card type
                var ccMatchedType = '';

                Validation.creditCartTypes.each(function (pair) {
                    if (pair.value[0] && v.match(pair.value[0])) {
                        ccMatchedType = pair.key;
                        throw $break;
                    }
                });

                if(ccMatchedType != ccType) {
                    return false;
                }

                if (ccTypeContainer.hasClassName('validation-failed') && Validation.isOnChange) {
                    Validation.validate(ccTypeContainer);
                }

                return true;
            }],
     ['validate-cc-type-select', 'Card type does not match credit card number.', function(v, elm) {
                var ccNumberContainer = $(elm.id.substr(0,elm.id.indexOf('_cc_type')) + '_cc_number');
                if (Validation.isOnChange && Validation.get('IsEmpty').test(ccNumberContainer.value)) {
                    return true;
                }
                if (Validation.get('validate-cc-type').test(ccNumberContainer.value, ccNumberContainer)) {
                    Validation.validate(ccNumberContainer);
                }
                return Validation.get('validate-cc-type').test(ccNumberContainer.value, ccNumberContainer);
            }],
     ['validate-cc-exp', 'Incorrect credit card expiration date.', function(v, elm) {
                var ccExpMonth   = v;
                var ccExpYear    = $(elm.id.substr(0,elm.id.indexOf('_expiration')) + '_expiration_yr').value;
                var currentTime  = new Date();
                var currentMonth = currentTime.getMonth() + 1;
                var currentYear  = currentTime.getFullYear();
                if (ccExpMonth < currentMonth && ccExpYear == currentYear) {
                    return false;
                }
                return true;
            }],
     ['validate-cc-cvn', 'Please enter a valid credit card verification number.', function(v, elm) {
                var ccTypeContainer = $(elm.id.substr(0,elm.id.indexOf('_cc_cid')) + '_cc_type');
                if (!ccTypeContainer) {
                    return true;
                }
                var ccType = ccTypeContainer.value;

                if (typeof Validation.creditCartTypes.get(ccType) == 'undefined') {
                    return false;
                }

                var re = Validation.creditCartTypes.get(ccType)[1];

                if (v.match(re)) {
                    return true;
                }

                return false;
            }],
     ['validate-ajax', '', function(v, elm) { return true; }],
     ['validate-data', 'Please use only letters (a-z or A-Z), numbers (0-9) or underscore(_) in this field, first character should be a letter.', function (v) {
                if(v != '' && v) {
                    return /^[A-Za-z]+[A-Za-z0-9_]+$/.test(v);
                }
                return true;
            }],
     ['validate-css-length', 'Please input a valid CSS-length. For example 100px or 77pt or 20em or .5ex or 50%.', function (v) {
                if (v != '' && v) {
                    return /^[0-9\.]+(px|pt|em|ex|%)?$/.test(v) && (!(/\..*\./.test(v))) && !(/\.$/.test(v));
                }
                return true;
            }],
     ['validate-length', 'Text length does not satisfy specified text range.', function (v, elm) {
                var reMax = new RegExp(/^maximum-length-[0-9]+$/);
                var reMin = new RegExp(/^minimum-length-[0-9]+$/);
                var result = true;
                $w(elm.className).each(function(name, index) {
                    if (name.match(reMax) && result) {
                       var length = name.split('-')[2];
                       result = (v.length <= length);
                    }
                    if (name.match(reMin) && result && !Validation.get('IsEmpty').test(v)) {
                        var length = name.split('-')[2];
                        result = (v.length >= length);
                    }
                });
                return result;
            }],
     ['validate-percents', 'Please enter a number lower than 100.', {max:100}],
     ['required-file', 'Please select a file', function(v, elm) {
         var result = !Validation.get('IsEmpty').test(v);
         if (result === false) {
             ovId = elm.id + '_value';
             if ($(ovId)) {
                 result = !Validation.get('IsEmpty').test($(ovId).value);
             }
         }
         return result;
     }],
     ['validate-cc-ukss', 'Please enter issue number or start date for switch/solo card type.', function(v,elm) {
         var endposition;

         if (elm.id.match(/(.)+_cc_issue$/)) {
             endposition = elm.id.indexOf('_cc_issue');
         } else if (elm.id.match(/(.)+_start_month$/)) {
             endposition = elm.id.indexOf('_start_month');
         } else {
             endposition = elm.id.indexOf('_start_year');
         }

         var prefix = elm.id.substr(0,endposition);

         var ccTypeContainer = $(prefix + '_cc_type');

         if (!ccTypeContainer) {
               return true;
         }
         var ccType = ccTypeContainer.value;

         if(['SS','SM','SO'].indexOf(ccType) == -1){
             return true;
         }

         $(prefix + '_cc_issue').advaiceContainer
           = $(prefix + '_start_month').advaiceContainer
           = $(prefix + '_start_year').advaiceContainer
           = $(prefix + '_cc_type_ss_div').down('ul li.adv-container');

         var ccIssue   =  $(prefix + '_cc_issue').value;
         var ccSMonth  =  $(prefix + '_start_month').value;
         var ccSYear   =  $(prefix + '_start_year').value;

         var ccStartDatePresent = (ccSMonth && ccSYear) ? true : false;

         if (!ccStartDatePresent && !ccIssue){
             return false;
         }
         return true;
     }]
]);

function removeDelimiters (v) {
    v = v.replace(/\s/g, '');
    v = v.replace(/\-/g, '');
    return v;
}

function parseNumber(v)
{
    if (typeof v != 'string') {
        return parseFloat(v);
    }

    var isDot  = v.indexOf('.');
    var isComa = v.indexOf(',');

    if (isDot != -1 && isComa != -1) {
        if (isComa > isDot) {
            v = v.replace('.', '').replace(',', '.');
        }
        else {
            v = v.replace(',', '');
        }
    }
    else if (isComa != -1) {
        v = v.replace(',', '.');
    }

    return parseFloat(v);
}

/**
 * Hash with credit card types wich can be simply extended in payment modules
 * 0 - regexp for card number
 * 1 - regexp for cvn
 * 2 - check or not credit card number trough Luhn algorithm by
 *     function validateCreditCard wich you can find above in this file
 */
Validation.creditCartTypes = $H({
//    'SS': [new RegExp('^((6759[0-9]{12})|(5018|5020|5038|6304|6759|6761|6763[0-9]{12,19})|(49[013][1356][0-9]{12})|(6333[0-9]{12})|(6334[0-4]\d{11})|(633110[0-9]{10})|(564182[0-9]{10}))([0-9]{2,3})?$'), new RegExp('^([0-9]{3}|[0-9]{4})?$'), true],
    'SO': [new RegExp('^(6334[5-9]([0-9]{11}|[0-9]{13,14}))|(6767([0-9]{12}|[0-9]{14,15}))$'), new RegExp('^([0-9]{3}|[0-9]{4})?$'), true],
    'SM': [new RegExp('(^(5[0678])[0-9]{11,18}$)|(^(6[^05])[0-9]{11,18}$)|(^(601)[^1][0-9]{9,16}$)|(^(6011)[0-9]{9,11}$)|(^(6011)[0-9]{13,16}$)|(^(65)[0-9]{11,13}$)|(^(65)[0-9]{15,18}$)|(^(49030)[2-9]([0-9]{10}$|[0-9]{12,13}$))|(^(49033)[5-9]([0-9]{10}$|[0-9]{12,13}$))|(^(49110)[1-2]([0-9]{10}$|[0-9]{12,13}$))|(^(49117)[4-9]([0-9]{10}$|[0-9]{12,13}$))|(^(49118)[0-2]([0-9]{10}$|[0-9]{12,13}$))|(^(4936)([0-9]{12}$|[0-9]{14,15}$))'), new RegExp('^([0-9]{3}|[0-9]{4})?$'), true],
    'VI': [new RegExp('^4[0-9]{12}([0-9]{3})?$'), new RegExp('^[0-9]{3}$'), true],
    'MC': [new RegExp('^5[1-5][0-9]{14}$'), new RegExp('^[0-9]{3}$'), true],
    'AE': [new RegExp('^3[47][0-9]{13}$'), new RegExp('^[0-9]{4}$'), true],
    'DI': [new RegExp('^6011[0-9]{12}$'), new RegExp('^[0-9]{3}$'), true],
    'JCB': [new RegExp('^(3[0-9]{15}|(2131|1800)[0-9]{11})$'), new RegExp('^[0-9]{4}$'), true],
    'OT': [false, new RegExp('^([0-9]{3}|[0-9]{4})?$'), false]
});

// script.aculo.us builder.js v1.8.2, Tue Nov 18 18:30:58 +0100 2008

// Copyright (c) 2005-2008 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
//
// script.aculo.us is freely distributable under the terms of an MIT-style license.
// For details, see the script.aculo.us web site: http://script.aculo.us/

var Builder = {
  NODEMAP: {
    AREA: 'map',
    CAPTION: 'table',
    COL: 'table',
    COLGROUP: 'table',
    LEGEND: 'fieldset',
    OPTGROUP: 'select',
    OPTION: 'select',
    PARAM: 'object',
    TBODY: 'table',
    TD: 'table',
    TFOOT: 'table',
    TH: 'table',
    THEAD: 'table',
    TR: 'table'
  },
  // note: For Firefox < 1.5, OPTION and OPTGROUP tags are currently broken,
  //       due to a Firefox bug
  node: function(elementName) {
    elementName = elementName.toUpperCase();

    // try innerHTML approach
    var parentTag = this.NODEMAP[elementName] || 'div';
    var parentElement = document.createElement(parentTag);
    try { // prevent IE "feature": http://dev.rubyonrails.org/ticket/2707
      parentElement.innerHTML = "<" + elementName + "></" + elementName + ">";
    } catch(e) {}
    var element = parentElement.firstChild || null;

    // see if browser added wrapping tags
    if(element && (element.tagName.toUpperCase() != elementName))
      element = element.getElementsByTagName(elementName)[0];

    // fallback to createElement approach
    if(!element) element = document.createElement(elementName);

    // abort if nothing could be created
    if(!element) return;

    // attributes (or text)
    if(arguments[1])
      if(this._isStringOrNumber(arguments[1]) ||
        (arguments[1] instanceof Array) ||
        arguments[1].tagName) {
          this._children(element, arguments[1]);
        } else {
          var attrs = this._attributes(arguments[1]);
          if(attrs.length) {
            try { // prevent IE "feature": http://dev.rubyonrails.org/ticket/2707
              parentElement.innerHTML = "<" +elementName + " " +
                attrs + "></" + elementName + ">";
            } catch(e) {}
            element = parentElement.firstChild || null;
            // workaround firefox 1.0.X bug
            if(!element) {
              element = document.createElement(elementName);
              for(attr in arguments[1])
                element[attr == 'class' ? 'className' : attr] = arguments[1][attr];
            }
            if(element.tagName.toUpperCase() != elementName)
              element = parentElement.getElementsByTagName(elementName)[0];
          }
        }

    // text, or array of children
    if(arguments[2])
      this._children(element, arguments[2]);

     return $(element);
  },
  _text: function(text) {
     return document.createTextNode(text);
  },

  ATTR_MAP: {
    'className': 'class',
    'htmlFor': 'for'
  },

  _attributes: function(attributes) {
    var attrs = [];
    for(attribute in attributes)
      attrs.push((attribute in this.ATTR_MAP ? this.ATTR_MAP[attribute] : attribute) +
          '="' + attributes[attribute].toString().escapeHTML().gsub(/"/,'&quot;') + '"');
    return attrs.join(" ");
  },
  _children: function(element, children) {
    if(children.tagName) {
      element.appendChild(children);
      return;
    }
    if(typeof children=='object') { // array can hold nodes and text
      children.flatten().each( function(e) {
        if(typeof e=='object')
          element.appendChild(e);
        else
          if(Builder._isStringOrNumber(e))
            element.appendChild(Builder._text(e));
      });
    } else
      if(Builder._isStringOrNumber(children))
        element.appendChild(Builder._text(children));
  },
  _isStringOrNumber: function(param) {
    return(typeof param=='string' || typeof param=='number');
  },
  build: function(html) {
    var element = this.node('div');
    $(element).update(html.strip());
    return element.down();
  },
  dump: function(scope) {
    if(typeof scope != 'object' && typeof scope != 'function') scope = window; //global scope

    var tags = ("A ABBR ACRONYM ADDRESS APPLET AREA B BASE BASEFONT BDO BIG BLOCKQUOTE BODY " +
      "BR BUTTON CAPTION CENTER CITE CODE COL COLGROUP DD DEL DFN DIR DIV DL DT EM FIELDSET " +
      "FONT FORM FRAME FRAMESET H1 H2 H3 H4 H5 H6 HEAD HR HTML I IFRAME IMG INPUT INS ISINDEX "+
      "KBD LABEL LEGEND LI LINK MAP MENU META NOFRAMES NOSCRIPT OBJECT OL OPTGROUP OPTION P "+
      "PARAM PRE Q S SAMP SCRIPT SELECT SMALL SPAN STRIKE STRONG STYLE SUB SUP TABLE TBODY TD "+
      "TEXTAREA TFOOT TH THEAD TITLE TR TT U UL VAR").split(/\s+/);

    tags.each( function(tag){
      scope[tag] = function() {
        return Builder.node.apply(Builder, [tag].concat($A(arguments)));
      };
    });
  }
};
// script.aculo.us effects.js v1.8.2, Tue Nov 18 18:30:58 +0100 2008

// Copyright (c) 2005-2008 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
// Contributors:
//  Justin Palmer (http://encytemedia.com/)
//  Mark Pilgrim (http://diveintomark.org/)
//  Martin Bialasinki
//
// script.aculo.us is freely distributable under the terms of an MIT-style license.
// For details, see the script.aculo.us web site: http://script.aculo.us/

// converts rgb() and #xxx to #xxxxxx format,
// returns self (or first argument) if not convertable
String.prototype.parseColor = function() {
  var color = '#';
  if (this.slice(0,4) == 'rgb(') {
    var cols = this.slice(4,this.length-1).split(',');
    var i=0; do { color += parseInt(cols[i]).toColorPart() } while (++i<3);
  } else {
    if (this.slice(0,1) == '#') {
      if (this.length==4) for(var i=1;i<4;i++) color += (this.charAt(i) + this.charAt(i)).toLowerCase();
      if (this.length==7) color = this.toLowerCase();
    }
  }
  return (color.length==7 ? color : (arguments[0] || this));
};

/*--------------------------------------------------------------------------*/

Element.collectTextNodes = function(element) {
  return $A($(element).childNodes).collect( function(node) {
    return (node.nodeType==3 ? node.nodeValue :
      (node.hasChildNodes() ? Element.collectTextNodes(node) : ''));
  }).flatten().join('');
};

Element.collectTextNodesIgnoreClass = function(element, className) {
  return $A($(element).childNodes).collect( function(node) {
    return (node.nodeType==3 ? node.nodeValue :
      ((node.hasChildNodes() && !Element.hasClassName(node,className)) ?
        Element.collectTextNodesIgnoreClass(node, className) : ''));
  }).flatten().join('');
};

Element.setContentZoom = function(element, percent) {
  element = $(element);
  element.setStyle({fontSize: (percent/100) + 'em'});
  if (Prototype.Browser.WebKit) window.scrollBy(0,0);
  return element;
};

Element.getInlineOpacity = function(element){
  return $(element).style.opacity || '';
};

Element.forceRerendering = function(element) {
  try {
    element = $(element);
    var n = document.createTextNode(' ');
    element.appendChild(n);
    element.removeChild(n);
  } catch(e) { }
};

/*--------------------------------------------------------------------------*/

var Effect = {
  _elementDoesNotExistError: {
    name: 'ElementDoesNotExistError',
    message: 'The specified DOM element does not exist, but is required for this effect to operate'
  },
  Transitions: {
    linear: Prototype.K,
    sinoidal: function(pos) {
      return (-Math.cos(pos*Math.PI)/2) + .5;
    },
    reverse: function(pos) {
      return 1-pos;
    },
    flicker: function(pos) {
      var pos = ((-Math.cos(pos*Math.PI)/4) + .75) + Math.random()/4;
      return pos > 1 ? 1 : pos;
    },
    wobble: function(pos) {
      return (-Math.cos(pos*Math.PI*(9*pos))/2) + .5;
    },
    pulse: function(pos, pulses) {
      return (-Math.cos((pos*((pulses||5)-.5)*2)*Math.PI)/2) + .5;
    },
    spring: function(pos) {
      return 1 - (Math.cos(pos * 4.5 * Math.PI) * Math.exp(-pos * 6));
    },
    none: function(pos) {
      return 0;
    },
    full: function(pos) {
      return 1;
    }
  },
  DefaultOptions: {
    duration:   1.0,   // seconds
    fps:        100,   // 100= assume 66fps max.
    sync:       false, // true for combining
    from:       0.0,
    to:         1.0,
    delay:      0.0,
    queue:      'parallel'
  },
  tagifyText: function(element) {
    var tagifyStyle = 'position:relative';
    if (Prototype.Browser.IE) tagifyStyle += ';zoom:1';

    element = $(element);
    $A(element.childNodes).each( function(child) {
      if (child.nodeType==3) {
        child.nodeValue.toArray().each( function(character) {
          element.insertBefore(
            new Element('span', {style: tagifyStyle}).update(
              character == ' ' ? String.fromCharCode(160) : character),
              child);
        });
        Element.remove(child);
      }
    });
  },
  multiple: function(element, effect) {
    var elements;
    if (((typeof element == 'object') ||
        Object.isFunction(element)) &&
       (element.length))
      elements = element;
    else
      elements = $(element).childNodes;

    var options = Object.extend({
      speed: 0.1,
      delay: 0.0
    }, arguments[2] || { });
    var masterDelay = options.delay;

    $A(elements).each( function(element, index) {
      new effect(element, Object.extend(options, { delay: index * options.speed + masterDelay }));
    });
  },
  PAIRS: {
    'slide':  ['SlideDown','SlideUp'],
    'blind':  ['BlindDown','BlindUp'],
    'appear': ['Appear','Fade']
  },
  toggle: function(element, effect) {
    element = $(element);
    effect = (effect || 'appear').toLowerCase();
    var options = Object.extend({
      queue: { position:'end', scope:(element.id || 'global'), limit: 1 }
    }, arguments[2] || { });
    Effect[element.visible() ?
      Effect.PAIRS[effect][1] : Effect.PAIRS[effect][0]](element, options);
  }
};

Effect.DefaultOptions.transition = Effect.Transitions.sinoidal;

/* ------------- core effects ------------- */

Effect.ScopedQueue = Class.create(Enumerable, {
  initialize: function() {
    this.effects  = [];
    this.interval = null;
  },
  _each: function(iterator) {
    this.effects._each(iterator);
  },
  add: function(effect) {
    var timestamp = new Date().getTime();

    var position = Object.isString(effect.options.queue) ?
      effect.options.queue : effect.options.queue.position;

    switch(position) {
      case 'front':
        // move unstarted effects after this effect
        this.effects.findAll(function(e){ return e.state=='idle' }).each( function(e) {
            e.startOn  += effect.finishOn;
            e.finishOn += effect.finishOn;
          });
        break;
      case 'with-last':
        timestamp = this.effects.pluck('startOn').max() || timestamp;
        break;
      case 'end':
        // start effect after last queued effect has finished
        timestamp = this.effects.pluck('finishOn').max() || timestamp;
        break;
    }

    effect.startOn  += timestamp;
    effect.finishOn += timestamp;

    if (!effect.options.queue.limit || (this.effects.length < effect.options.queue.limit))
      this.effects.push(effect);

    if (!this.interval)
      this.interval = setInterval(this.loop.bind(this), 15);
  },
  remove: function(effect) {
    this.effects = this.effects.reject(function(e) { return e==effect });
    if (this.effects.length == 0) {
      clearInterval(this.interval);
      this.interval = null;
    }
  },
  loop: function() {
    var timePos = new Date().getTime();
    for(var i=0, len=this.effects.length;i<len;i++)
      this.effects[i] && this.effects[i].loop(timePos);
  }
});

Effect.Queues = {
  instances: $H(),
  get: function(queueName) {
    if (!Object.isString(queueName)) return queueName;

    return this.instances.get(queueName) ||
      this.instances.set(queueName, new Effect.ScopedQueue());
  }
};
Effect.Queue = Effect.Queues.get('global');

Effect.Base = Class.create({
  position: null,
  start: function(options) {
    function codeForEvent(options,eventName){
      return (
        (options[eventName+'Internal'] ? 'this.options.'+eventName+'Internal(this);' : '') +
        (options[eventName] ? 'this.options.'+eventName+'(this);' : '')
      );
    }
    if (options && options.transition === false) options.transition = Effect.Transitions.linear;
    this.options      = Object.extend(Object.extend({ },Effect.DefaultOptions), options || { });
    this.currentFrame = 0;
    this.state        = 'idle';
    this.startOn      = this.options.delay*1000;
    this.finishOn     = this.startOn+(this.options.duration*1000);
    this.fromToDelta  = this.options.to-this.options.from;
    this.totalTime    = this.finishOn-this.startOn;
    this.totalFrames  = this.options.fps*this.options.duration;

    this.render = (function() {
      function dispatch(effect, eventName) {
        if (effect.options[eventName + 'Internal'])
          effect.options[eventName + 'Internal'](effect);
        if (effect.options[eventName])
          effect.options[eventName](effect);
      }

      return function(pos) {
        if (this.state === "idle") {
          this.state = "running";
          dispatch(this, 'beforeSetup');
          if (this.setup) this.setup();
          dispatch(this, 'afterSetup');
        }
        if (this.state === "running") {
          pos = (this.options.transition(pos) * this.fromToDelta) + this.options.from;
          this.position = pos;
          dispatch(this, 'beforeUpdate');
          if (this.update) this.update(pos);
          dispatch(this, 'afterUpdate');
        }
      };
    })();

    this.event('beforeStart');
    if (!this.options.sync)
      Effect.Queues.get(Object.isString(this.options.queue) ?
        'global' : this.options.queue.scope).add(this);
  },
  loop: function(timePos) {
    if (timePos >= this.startOn) {
      if (timePos >= this.finishOn) {
        this.render(1.0);
        this.cancel();
        this.event('beforeFinish');
        if (this.finish) this.finish();
        this.event('afterFinish');
        return;
      }
      var pos   = (timePos - this.startOn) / this.totalTime,
          frame = (pos * this.totalFrames).round();
      if (frame > this.currentFrame) {
        this.render(pos);
        this.currentFrame = frame;
      }
    }
  },
  cancel: function() {
    if (!this.options.sync)
      Effect.Queues.get(Object.isString(this.options.queue) ?
        'global' : this.options.queue.scope).remove(this);
    this.state = 'finished';
  },
  event: function(eventName) {
    if (this.options[eventName + 'Internal']) this.options[eventName + 'Internal'](this);
    if (this.options[eventName]) this.options[eventName](this);
  },
  inspect: function() {
    var data = $H();
    for(property in this)
      if (!Object.isFunction(this[property])) data.set(property, this[property]);
    return '#<Effect:' + data.inspect() + ',options:' + $H(this.options).inspect() + '>';
  }
});

Effect.Parallel = Class.create(Effect.Base, {
  initialize: function(effects) {
    this.effects = effects || [];
    this.start(arguments[1]);
  },
  update: function(position) {
    this.effects.invoke('render', position);
  },
  finish: function(position) {
    this.effects.each( function(effect) {
      effect.render(1.0);
      effect.cancel();
      effect.event('beforeFinish');
      if (effect.finish) effect.finish(position);
      effect.event('afterFinish');
    });
  }
});

Effect.Tween = Class.create(Effect.Base, {
  initialize: function(object, from, to) {
    object = Object.isString(object) ? $(object) : object;
    var args = $A(arguments), method = args.last(),
      options = args.length == 5 ? args[3] : null;
    this.method = Object.isFunction(method) ? method.bind(object) :
      Object.isFunction(object[method]) ? object[method].bind(object) :
      function(value) { object[method] = value };
    this.start(Object.extend({ from: from, to: to }, options || { }));
  },
  update: function(position) {
    this.method(position);
  }
});

Effect.Event = Class.create(Effect.Base, {
  initialize: function() {
    this.start(Object.extend({ duration: 0 }, arguments[0] || { }));
  },
  update: Prototype.emptyFunction
});

Effect.Opacity = Class.create(Effect.Base, {
  initialize: function(element) {
    this.element = $(element);
    if (!this.element) throw(Effect._elementDoesNotExistError);
    // make this work on IE on elements without 'layout'
    if (Prototype.Browser.IE && (!this.element.currentStyle.hasLayout))
      this.element.setStyle({zoom: 1});
    var options = Object.extend({
      from: this.element.getOpacity() || 0.0,
      to:   1.0
    }, arguments[1] || { });
    this.start(options);
  },
  update: function(position) {
    this.element.setOpacity(position);
  }
});

Effect.Move = Class.create(Effect.Base, {
  initialize: function(element) {
    this.element = $(element);
    if (!this.element) throw(Effect._elementDoesNotExistError);
    var options = Object.extend({
      x:    0,
      y:    0,
      mode: 'relative'
    }, arguments[1] || { });
    this.start(options);
  },
  setup: function() {
    this.element.makePositioned();
    this.originalLeft = parseFloat(this.element.getStyle('left') || '0');
    this.originalTop  = parseFloat(this.element.getStyle('top')  || '0');
    if (this.options.mode == 'absolute') {
      this.options.x = this.options.x - this.originalLeft;
      this.options.y = this.options.y - this.originalTop;
    }
  },
  update: function(position) {
    this.element.setStyle({
      left: (this.options.x  * position + this.originalLeft).round() + 'px',
      top:  (this.options.y  * position + this.originalTop).round()  + 'px'
    });
  }
});

// for backwards compatibility
Effect.MoveBy = function(element, toTop, toLeft) {
  return new Effect.Move(element,
    Object.extend({ x: toLeft, y: toTop }, arguments[3] || { }));
};

Effect.Scale = Class.create(Effect.Base, {
  initialize: function(element, percent) {
    this.element = $(element);
    if (!this.element) throw(Effect._elementDoesNotExistError);
    var options = Object.extend({
      scaleX: true,
      scaleY: true,
      scaleContent: true,
      scaleFromCenter: false,
      scaleMode: 'box',        // 'box' or 'contents' or { } with provided values
      scaleFrom: 100.0,
      scaleTo:   percent
    }, arguments[2] || { });
    this.start(options);
  },
  setup: function() {
    this.restoreAfterFinish = this.options.restoreAfterFinish || false;
    this.elementPositioning = this.element.getStyle('position');

    this.originalStyle = { };
    ['top','left','width','height','fontSize'].each( function(k) {
      this.originalStyle[k] = this.element.style[k];
    }.bind(this));

    this.originalTop  = this.element.offsetTop;
    this.originalLeft = this.element.offsetLeft;

    var fontSize = this.element.getStyle('font-size') || '100%';
    ['em','px','%','pt'].each( function(fontSizeType) {
      if (fontSize.indexOf(fontSizeType)>0) {
        this.fontSize     = parseFloat(fontSize);
        this.fontSizeType = fontSizeType;
      }
    }.bind(this));

    this.factor = (this.options.scaleTo - this.options.scaleFrom)/100;

    this.dims = null;
    if (this.options.scaleMode=='box')
      this.dims = [this.element.offsetHeight, this.element.offsetWidth];
    if (/^content/.test(this.options.scaleMode))
      this.dims = [this.element.scrollHeight, this.element.scrollWidth];
    if (!this.dims)
      this.dims = [this.options.scaleMode.originalHeight,
                   this.options.scaleMode.originalWidth];
  },
  update: function(position) {
    var currentScale = (this.options.scaleFrom/100.0) + (this.factor * position);
    if (this.options.scaleContent && this.fontSize)
      this.element.setStyle({fontSize: this.fontSize * currentScale + this.fontSizeType });
    this.setDimensions(this.dims[0] * currentScale, this.dims[1] * currentScale);
  },
  finish: function(position) {
    if (this.restoreAfterFinish) this.element.setStyle(this.originalStyle);
  },
  setDimensions: function(height, width) {
    var d = { };
    if (this.options.scaleX) d.width = width.round() + 'px';
    if (this.options.scaleY) d.height = height.round() + 'px';
    if (this.options.scaleFromCenter) {
      var topd  = (height - this.dims[0])/2;
      var leftd = (width  - this.dims[1])/2;
      if (this.elementPositioning == 'absolute') {
        if (this.options.scaleY) d.top = this.originalTop-topd + 'px';
        if (this.options.scaleX) d.left = this.originalLeft-leftd + 'px';
      } else {
        if (this.options.scaleY) d.top = -topd + 'px';
        if (this.options.scaleX) d.left = -leftd + 'px';
      }
    }
    this.element.setStyle(d);
  }
});

Effect.Highlight = Class.create(Effect.Base, {
  initialize: function(element) {
    this.element = $(element);
    if (!this.element) throw(Effect._elementDoesNotExistError);
    var options = Object.extend({ startcolor: '#ffff99' }, arguments[1] || { });
    this.start(options);
  },
  setup: function() {
    // Prevent executing on elements not in the layout flow
    if (this.element.getStyle('display')=='none') { this.cancel(); return; }
    // Disable background image during the effect
    this.oldStyle = { };
    if (!this.options.keepBackgroundImage) {
      this.oldStyle.backgroundImage = this.element.getStyle('background-image');
      this.element.setStyle({backgroundImage: 'none'});
    }
    if (!this.options.endcolor)
      this.options.endcolor = this.element.getStyle('background-color').parseColor('#ffffff');
    if (!this.options.restorecolor)
      this.options.restorecolor = this.element.getStyle('background-color');
    // init color calculations
    this._base  = $R(0,2).map(function(i){ return parseInt(this.options.startcolor.slice(i*2+1,i*2+3),16) }.bind(this));
    this._delta = $R(0,2).map(function(i){ return parseInt(this.options.endcolor.slice(i*2+1,i*2+3),16)-this._base[i] }.bind(this));
  },
  update: function(position) {
    this.element.setStyle({backgroundColor: $R(0,2).inject('#',function(m,v,i){
      return m+((this._base[i]+(this._delta[i]*position)).round().toColorPart()); }.bind(this)) });
  },
  finish: function() {
    this.element.setStyle(Object.extend(this.oldStyle, {
      backgroundColor: this.options.restorecolor
    }));
  }
});

Effect.ScrollTo = function(element) {
  var options = arguments[1] || { },
  scrollOffsets = document.viewport.getScrollOffsets(),
  elementOffsets = $(element).cumulativeOffset();

  if (options.offset) elementOffsets[1] += options.offset;

  return new Effect.Tween(null,
    scrollOffsets.top,
    elementOffsets[1],
    options,
    function(p){ scrollTo(scrollOffsets.left, p.round()); }
  );
};

/* ------------- combination effects ------------- */

Effect.Fade = function(element) {
  element = $(element);
  var oldOpacity = element.getInlineOpacity();
  var options = Object.extend({
    from: element.getOpacity() || 1.0,
    to:   0.0,
    afterFinishInternal: function(effect) {
      if (effect.options.to!=0) return;
      effect.element.hide().setStyle({opacity: oldOpacity});
    }
  }, arguments[1] || { });
  return new Effect.Opacity(element,options);
};

Effect.Appear = function(element) {
  element = $(element);
  var options = Object.extend({
  from: (element.getStyle('display') == 'none' ? 0.0 : element.getOpacity() || 0.0),
  to:   1.0,
  // force Safari to render floated elements properly
  afterFinishInternal: function(effect) {
    effect.element.forceRerendering();
  },
  beforeSetup: function(effect) {
    effect.element.setOpacity(effect.options.from).show();
  }}, arguments[1] || { });
  return new Effect.Opacity(element,options);
};

Effect.Puff = function(element) {
  element = $(element);
  var oldStyle = {
    opacity: element.getInlineOpacity(),
    position: element.getStyle('position'),
    top:  element.style.top,
    left: element.style.left,
    width: element.style.width,
    height: element.style.height
  };
  return new Effect.Parallel(
   [ new Effect.Scale(element, 200,
      { sync: true, scaleFromCenter: true, scaleContent: true, restoreAfterFinish: true }),
     new Effect.Opacity(element, { sync: true, to: 0.0 } ) ],
     Object.extend({ duration: 1.0,
      beforeSetupInternal: function(effect) {
        Position.absolutize(effect.effects[0].element);
      },
      afterFinishInternal: function(effect) {
         effect.effects[0].element.hide().setStyle(oldStyle); }
     }, arguments[1] || { })
   );
};

Effect.BlindUp = function(element) {
  element = $(element);
  element.makeClipping();
  return new Effect.Scale(element, 0,
    Object.extend({ scaleContent: false,
      scaleX: false,
      restoreAfterFinish: true,
      afterFinishInternal: function(effect) {
        effect.element.hide().undoClipping();
      }
    }, arguments[1] || { })
  );
};

Effect.BlindDown = function(element) {
  element = $(element);
  var elementDimensions = element.getDimensions();
  return new Effect.Scale(element, 100, Object.extend({
    scaleContent: false,
    scaleX: false,
    scaleFrom: 0,
    scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width},
    restoreAfterFinish: true,
    afterSetup: function(effect) {
      effect.element.makeClipping().setStyle({height: '0px'}).show();
    },
    afterFinishInternal: function(effect) {
      effect.element.undoClipping();
    }
  }, arguments[1] || { }));
};

Effect.SwitchOff = function(element) {
  element = $(element);
  var oldOpacity = element.getInlineOpacity();
  return new Effect.Appear(element, Object.extend({
    duration: 0.4,
    from: 0,
    transition: Effect.Transitions.flicker,
    afterFinishInternal: function(effect) {
      new Effect.Scale(effect.element, 1, {
        duration: 0.3, scaleFromCenter: true,
        scaleX: false, scaleContent: false, restoreAfterFinish: true,
        beforeSetup: function(effect) {
          effect.element.makePositioned().makeClipping();
        },
        afterFinishInternal: function(effect) {
          effect.element.hide().undoClipping().undoPositioned().setStyle({opacity: oldOpacity});
        }
      });
    }
  }, arguments[1] || { }));
};

Effect.DropOut = function(element) {
  element = $(element);
  var oldStyle = {
    top: element.getStyle('top'),
    left: element.getStyle('left'),
    opacity: element.getInlineOpacity() };
  return new Effect.Parallel(
    [ new Effect.Move(element, {x: 0, y: 100, sync: true }),
      new Effect.Opacity(element, { sync: true, to: 0.0 }) ],
    Object.extend(
      { duration: 0.5,
        beforeSetup: function(effect) {
          effect.effects[0].element.makePositioned();
        },
        afterFinishInternal: function(effect) {
          effect.effects[0].element.hide().undoPositioned().setStyle(oldStyle);
        }
      }, arguments[1] || { }));
};

Effect.Shake = function(element) {
  element = $(element);
  var options = Object.extend({
    distance: 20,
    duration: 0.5
  }, arguments[1] || {});
  var distance = parseFloat(options.distance);
  var split = parseFloat(options.duration) / 10.0;
  var oldStyle = {
    top: element.getStyle('top'),
    left: element.getStyle('left') };
    return new Effect.Move(element,
      { x:  distance, y: 0, duration: split, afterFinishInternal: function(effect) {
    new Effect.Move(effect.element,
      { x: -distance*2, y: 0, duration: split*2,  afterFinishInternal: function(effect) {
    new Effect.Move(effect.element,
      { x:  distance*2, y: 0, duration: split*2,  afterFinishInternal: function(effect) {
    new Effect.Move(effect.element,
      { x: -distance*2, y: 0, duration: split*2,  afterFinishInternal: function(effect) {
    new Effect.Move(effect.element,
      { x:  distance*2, y: 0, duration: split*2,  afterFinishInternal: function(effect) {
    new Effect.Move(effect.element,
      { x: -distance, y: 0, duration: split, afterFinishInternal: function(effect) {
        effect.element.undoPositioned().setStyle(oldStyle);
  }}); }}); }}); }}); }}); }});
};

Effect.SlideDown = function(element) {
  element = $(element).cleanWhitespace();
  // SlideDown need to have the content of the element wrapped in a container element with fixed height!
  var oldInnerBottom = element.down().getStyle('bottom');
  var elementDimensions = element.getDimensions();
  return new Effect.Scale(element, 100, Object.extend({
    scaleContent: false,
    scaleX: false,
    scaleFrom: window.opera ? 0 : 1,
    scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width},
    restoreAfterFinish: true,
    afterSetup: function(effect) {
      effect.element.makePositioned();
      effect.element.down().makePositioned();
      if (window.opera) effect.element.setStyle({top: ''});
      effect.element.makeClipping().setStyle({height: '0px'}).show();
    },
    afterUpdateInternal: function(effect) {
      effect.element.down().setStyle({bottom:
        (effect.dims[0] - effect.element.clientHeight) + 'px' });
    },
    afterFinishInternal: function(effect) {
      effect.element.undoClipping().undoPositioned();
      effect.element.down().undoPositioned().setStyle({bottom: oldInnerBottom}); }
    }, arguments[1] || { })
  );
};

Effect.SlideUp = function(element) {
  element = $(element).cleanWhitespace();
  var oldInnerBottom = element.down().getStyle('bottom');
  var elementDimensions = element.getDimensions();
  return new Effect.Scale(element, window.opera ? 0 : 1,
   Object.extend({ scaleContent: false,
    scaleX: false,
    scaleMode: 'box',
    scaleFrom: 100,
    scaleMode: {originalHeight: elementDimensions.height, originalWidth: elementDimensions.width},
    restoreAfterFinish: true,
    afterSetup: function(effect) {
      effect.element.makePositioned();
      effect.element.down().makePositioned();
      if (window.opera) effect.element.setStyle({top: ''});
      effect.element.makeClipping().show();
    },
    afterUpdateInternal: function(effect) {
      effect.element.down().setStyle({bottom:
        (effect.dims[0] - effect.element.clientHeight) + 'px' });
    },
    afterFinishInternal: function(effect) {
      effect.element.hide().undoClipping().undoPositioned();
      effect.element.down().undoPositioned().setStyle({bottom: oldInnerBottom});
    }
   }, arguments[1] || { })
  );
};

// Bug in opera makes the TD containing this element expand for a instance after finish
Effect.Squish = function(element) {
  return new Effect.Scale(element, window.opera ? 1 : 0, {
    restoreAfterFinish: true,
    beforeSetup: function(effect) {
      effect.element.makeClipping();
    },
    afterFinishInternal: function(effect) {
      effect.element.hide().undoClipping();
    }
  });
};

Effect.Grow = function(element) {
  element = $(element);
  var options = Object.extend({
    direction: 'center',
    moveTransition: Effect.Transitions.sinoidal,
    scaleTransition: Effect.Transitions.sinoidal,
    opacityTransition: Effect.Transitions.full
  }, arguments[1] || { });
  var oldStyle = {
    top: element.style.top,
    left: element.style.left,
    height: element.style.height,
    width: element.style.width,
    opacity: element.getInlineOpacity() };

  var dims = element.getDimensions();
  var initialMoveX, initialMoveY;
  var moveX, moveY;

  switch (options.direction) {
    case 'top-left':
      initialMoveX = initialMoveY = moveX = moveY = 0;
      break;
    case 'top-right':
      initialMoveX = dims.width;
      initialMoveY = moveY = 0;
      moveX = -dims.width;
      break;
    case 'bottom-left':
      initialMoveX = moveX = 0;
      initialMoveY = dims.height;
      moveY = -dims.height;
      break;
    case 'bottom-right':
      initialMoveX = dims.width;
      initialMoveY = dims.height;
      moveX = -dims.width;
      moveY = -dims.height;
      break;
    case 'center':
      initialMoveX = dims.width / 2;
      initialMoveY = dims.height / 2;
      moveX = -dims.width / 2;
      moveY = -dims.height / 2;
      break;
  }

  return new Effect.Move(element, {
    x: initialMoveX,
    y: initialMoveY,
    duration: 0.01,
    beforeSetup: function(effect) {
      effect.element.hide().makeClipping().makePositioned();
    },
    afterFinishInternal: function(effect) {
      new Effect.Parallel(
        [ new Effect.Opacity(effect.element, { sync: true, to: 1.0, from: 0.0, transition: options.opacityTransition }),
          new Effect.Move(effect.element, { x: moveX, y: moveY, sync: true, transition: options.moveTransition }),
          new Effect.Scale(effect.element, 100, {
            scaleMode: { originalHeight: dims.height, originalWidth: dims.width },
            sync: true, scaleFrom: window.opera ? 1 : 0, transition: options.scaleTransition, restoreAfterFinish: true})
        ], Object.extend({
             beforeSetup: function(effect) {
               effect.effects[0].element.setStyle({height: '0px'}).show();
             },
             afterFinishInternal: function(effect) {
               effect.effects[0].element.undoClipping().undoPositioned().setStyle(oldStyle);
             }
           }, options)
      );
    }
  });
};

Effect.Shrink = function(element) {
  element = $(element);
  var options = Object.extend({
    direction: 'center',
    moveTransition: Effect.Transitions.sinoidal,
    scaleTransition: Effect.Transitions.sinoidal,
    opacityTransition: Effect.Transitions.none
  }, arguments[1] || { });
  var oldStyle = {
    top: element.style.top,
    left: element.style.left,
    height: element.style.height,
    width: element.style.width,
    opacity: element.getInlineOpacity() };

  var dims = element.getDimensions();
  var moveX, moveY;

  switch (options.direction) {
    case 'top-left':
      moveX = moveY = 0;
      break;
    case 'top-right':
      moveX = dims.width;
      moveY = 0;
      break;
    case 'bottom-left':
      moveX = 0;
      moveY = dims.height;
      break;
    case 'bottom-right':
      moveX = dims.width;
      moveY = dims.height;
      break;
    case 'center':
      moveX = dims.width / 2;
      moveY = dims.height / 2;
      break;
  }

  return new Effect.Parallel(
    [ new Effect.Opacity(element, { sync: true, to: 0.0, from: 1.0, transition: options.opacityTransition }),
      new Effect.Scale(element, window.opera ? 1 : 0, { sync: true, transition: options.scaleTransition, restoreAfterFinish: true}),
      new Effect.Move(element, { x: moveX, y: moveY, sync: true, transition: options.moveTransition })
    ], Object.extend({
         beforeStartInternal: function(effect) {
           effect.effects[0].element.makePositioned().makeClipping();
         },
         afterFinishInternal: function(effect) {
           effect.effects[0].element.hide().undoClipping().undoPositioned().setStyle(oldStyle); }
       }, options)
  );
};

Effect.Pulsate = function(element) {
  element = $(element);
  var options    = arguments[1] || { },
    oldOpacity = element.getInlineOpacity(),
    transition = options.transition || Effect.Transitions.linear,
    reverser   = function(pos){
      return 1 - transition((-Math.cos((pos*(options.pulses||5)*2)*Math.PI)/2) + .5);
    };

  return new Effect.Opacity(element,
    Object.extend(Object.extend({  duration: 2.0, from: 0,
      afterFinishInternal: function(effect) { effect.element.setStyle({opacity: oldOpacity}); }
    }, options), {transition: reverser}));
};

Effect.Fold = function(element) {
  element = $(element);
  var oldStyle = {
    top: element.style.top,
    left: element.style.left,
    width: element.style.width,
    height: element.style.height };
  element.makeClipping();
  return new Effect.Scale(element, 5, Object.extend({
    scaleContent: false,
    scaleX: false,
    afterFinishInternal: function(effect) {
    new Effect.Scale(element, 1, {
      scaleContent: false,
      scaleY: false,
      afterFinishInternal: function(effect) {
        effect.element.hide().undoClipping().setStyle(oldStyle);
      } });
  }}, arguments[1] || { }));
};

Effect.Morph = Class.create(Effect.Base, {
  initialize: function(element) {
    this.element = $(element);
    if (!this.element) throw(Effect._elementDoesNotExistError);
    var options = Object.extend({
      style: { }
    }, arguments[1] || { });

    if (!Object.isString(options.style)) this.style = $H(options.style);
    else {
      if (options.style.include(':'))
        this.style = options.style.parseStyle();
      else {
        this.element.addClassName(options.style);
        this.style = $H(this.element.getStyles());
        this.element.removeClassName(options.style);
        var css = this.element.getStyles();
        this.style = this.style.reject(function(style) {
          return style.value == css[style.key];
        });
        options.afterFinishInternal = function(effect) {
          effect.element.addClassName(effect.options.style);
          effect.transforms.each(function(transform) {
            effect.element.style[transform.style] = '';
          });
        };
      }
    }
    this.start(options);
  },

  setup: function(){
    function parseColor(color){
      if (!color || ['rgba(0, 0, 0, 0)','transparent'].include(color)) color = '#ffffff';
      color = color.parseColor();
      return $R(0,2).map(function(i){
        return parseInt( color.slice(i*2+1,i*2+3), 16 );
      });
    }
    this.transforms = this.style.map(function(pair){
      var property = pair[0], value = pair[1], unit = null;

      if (value.parseColor('#zzzzzz') != '#zzzzzz') {
        value = value.parseColor();
        unit  = 'color';
      } else if (property == 'opacity') {
        value = parseFloat(value);
        if (Prototype.Browser.IE && (!this.element.currentStyle.hasLayout))
          this.element.setStyle({zoom: 1});
      } else if (Element.CSS_LENGTH.test(value)) {
          var components = value.match(/^([\+\-]?[0-9\.]+)(.*)$/);
          value = parseFloat(components[1]);
          unit = (components.length == 3) ? components[2] : null;
      }

      var originalValue = this.element.getStyle(property);
      return {
        style: property.camelize(),
        originalValue: unit=='color' ? parseColor(originalValue) : parseFloat(originalValue || 0),
        targetValue: unit=='color' ? parseColor(value) : value,
        unit: unit
      };
    }.bind(this)).reject(function(transform){
      return (
        (transform.originalValue == transform.targetValue) ||
        (
          transform.unit != 'color' &&
          (isNaN(transform.originalValue) || isNaN(transform.targetValue))
        )
      );
    });
  },
  update: function(position) {
    var style = { }, transform, i = this.transforms.length;
    while(i--)
      style[(transform = this.transforms[i]).style] =
        transform.unit=='color' ? '#'+
          (Math.round(transform.originalValue[0]+
            (transform.targetValue[0]-transform.originalValue[0])*position)).toColorPart() +
          (Math.round(transform.originalValue[1]+
            (transform.targetValue[1]-transform.originalValue[1])*position)).toColorPart() +
          (Math.round(transform.originalValue[2]+
            (transform.targetValue[2]-transform.originalValue[2])*position)).toColorPart() :
        (transform.originalValue +
          (transform.targetValue - transform.originalValue) * position).toFixed(3) +
            (transform.unit === null ? '' : transform.unit);
    this.element.setStyle(style, true);
  }
});

Effect.Transform = Class.create({
  initialize: function(tracks){
    this.tracks  = [];
    this.options = arguments[1] || { };
    this.addTracks(tracks);
  },
  addTracks: function(tracks){
    tracks.each(function(track){
      track = $H(track);
      var data = track.values().first();
      this.tracks.push($H({
        ids:     track.keys().first(),
        effect:  Effect.Morph,
        options: { style: data }
      }));
    }.bind(this));
    return this;
  },
  play: function(){
    return new Effect.Parallel(
      this.tracks.map(function(track){
        var ids = track.get('ids'), effect = track.get('effect'), options = track.get('options');
        var elements = [$(ids) || $$(ids)].flatten();
        return elements.map(function(e){ return new effect(e, Object.extend({ sync:true }, options)) });
      }).flatten(),
      this.options
    );
  }
});

Element.CSS_PROPERTIES = $w(
  'backgroundColor backgroundPosition borderBottomColor borderBottomStyle ' +
  'borderBottomWidth borderLeftColor borderLeftStyle borderLeftWidth ' +
  'borderRightColor borderRightStyle borderRightWidth borderSpacing ' +
  'borderTopColor borderTopStyle borderTopWidth bottom clip color ' +
  'fontSize fontWeight height left letterSpacing lineHeight ' +
  'marginBottom marginLeft marginRight marginTop markerOffset maxHeight '+
  'maxWidth minHeight minWidth opacity outlineColor outlineOffset ' +
  'outlineWidth paddingBottom paddingLeft paddingRight paddingTop ' +
  'right textIndent top width wordSpacing zIndex');

Element.CSS_LENGTH = /^(([\+\-]?[0-9\.]+)(em|ex|px|in|cm|mm|pt|pc|\%))|0$/;

String.__parseStyleElement = document.createElement('div');
String.prototype.parseStyle = function(){
  var style, styleRules = $H();
  if (Prototype.Browser.WebKit)
    style = new Element('div',{style:this}).style;
  else {
    String.__parseStyleElement.innerHTML = '<div style="' + this + '"></div>';
    style = String.__parseStyleElement.childNodes[0].style;
  }

  Element.CSS_PROPERTIES.each(function(property){
    if (style[property]) styleRules.set(property, style[property]);
  });

  if (Prototype.Browser.IE && this.include('opacity'))
    styleRules.set('opacity', this.match(/opacity:\s*((?:0|1)?(?:\.\d*)?)/)[1]);

  return styleRules;
};

if (document.defaultView && document.defaultView.getComputedStyle) {
  Element.getStyles = function(element) {
    var css = document.defaultView.getComputedStyle($(element), null);
    return Element.CSS_PROPERTIES.inject({ }, function(styles, property) {
      styles[property] = css[property];
      return styles;
    });
  };
} else {
  Element.getStyles = function(element) {
    element = $(element);
    var css = element.currentStyle, styles;
    styles = Element.CSS_PROPERTIES.inject({ }, function(results, property) {
      results[property] = css[property];
      return results;
    });
    if (!styles.opacity) styles.opacity = element.getOpacity();
    return styles;
  };
}

Effect.Methods = {
  morph: function(element, style) {
    element = $(element);
    new Effect.Morph(element, Object.extend({ style: style }, arguments[2] || { }));
    return element;
  },
  visualEffect: function(element, effect, options) {
    element = $(element);
    var s = effect.dasherize().camelize(), klass = s.charAt(0).toUpperCase() + s.substring(1);
    new Effect[klass](element, options);
    return element;
  },
  highlight: function(element, options) {
    element = $(element);
    new Effect.Highlight(element, options);
    return element;
  }
};

$w('fade appear grow shrink fold blindUp blindDown slideUp slideDown '+
  'pulsate shake puff squish switchOff dropOut').each(
  function(effect) {
    Effect.Methods[effect] = function(element, options){
      element = $(element);
      Effect[effect.charAt(0).toUpperCase() + effect.substring(1)](element, options);
      return element;
    };
  }
);

$w('getInlineOpacity forceRerendering setContentZoom collectTextNodes collectTextNodesIgnoreClass getStyles').each(
  function(f) { Effect.Methods[f] = Element[f]; }
);

Element.addMethods(Effect.Methods);
// script.aculo.us dragdrop.js v1.8.2, Tue Nov 18 18:30:58 +0100 2008

// Copyright (c) 2005-2008 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
//           (c) 2005-2008 Sammi Williams (http://www.oriontransfer.co.nz, sammi@oriontransfer.co.nz)
//
// script.aculo.us is freely distributable under the terms of an MIT-style license.
// For details, see the script.aculo.us web site: http://script.aculo.us/

if(Object.isUndefined(Effect))
  throw("dragdrop.js requires including script.aculo.us' effects.js library");

var Droppables = {
  drops: [],

  remove: function(element) {
    this.drops = this.drops.reject(function(d) { return d.element==$(element) });
  },

  add: function(element) {
    element = $(element);
    var options = Object.extend({
      greedy:     true,
      hoverclass: null,
      tree:       false
    }, arguments[1] || { });

    // cache containers
    if(options.containment) {
      options._containers = [];
      var containment = options.containment;
      if(Object.isArray(containment)) {
        containment.each( function(c) { options._containers.push($(c)) });
      } else {
        options._containers.push($(containment));
      }
    }

    if(options.accept) options.accept = [options.accept].flatten();

    Element.makePositioned(element); // fix IE
    options.element = element;

    this.drops.push(options);
  },

  findDeepestChild: function(drops) {
    deepest = drops[0];

    for (i = 1; i < drops.length; ++i)
      if (Element.isParent(drops[i].element, deepest.element))
        deepest = drops[i];

    return deepest;
  },

  isContained: function(element, drop) {
    var containmentNode;
    if(drop.tree) {
      containmentNode = element.treeNode;
    } else {
      containmentNode = element.parentNode;
    }
    return drop._containers.detect(function(c) { return containmentNode == c });
  },

  isAffected: function(point, element, drop) {
    return (
      (drop.element!=element) &&
      ((!drop._containers) ||
        this.isContained(element, drop)) &&
      ((!drop.accept) ||
        (Element.classNames(element).detect(
          function(v) { return drop.accept.include(v) } ) )) &&
      Position.within(drop.element, point[0], point[1]) );
  },

  deactivate: function(drop) {
    if(drop.hoverclass)
      Element.removeClassName(drop.element, drop.hoverclass);
    this.last_active = null;
  },

  activate: function(drop) {
    if(drop.hoverclass)
      Element.addClassName(drop.element, drop.hoverclass);
    this.last_active = drop;
  },

  show: function(point, element) {
    if(!this.drops.length) return;
    var drop, affected = [];

    this.drops.each( function(drop) {
      if(Droppables.isAffected(point, element, drop))
        affected.push(drop);
    });

    if(affected.length>0)
      drop = Droppables.findDeepestChild(affected);

    if(this.last_active && this.last_active != drop) this.deactivate(this.last_active);
    if (drop) {
      Position.within(drop.element, point[0], point[1]);
      if(drop.onHover)
        drop.onHover(element, drop.element, Position.overlap(drop.overlap, drop.element));

      if (drop != this.last_active) Droppables.activate(drop);
    }
  },

  fire: function(event, element) {
    if(!this.last_active) return;
    Position.prepare();

    if (this.isAffected([Event.pointerX(event), Event.pointerY(event)], element, this.last_active))
      if (this.last_active.onDrop) {
        this.last_active.onDrop(element, this.last_active.element, event);
        return true;
      }
  },

  reset: function() {
    if(this.last_active)
      this.deactivate(this.last_active);
  }
};

var Draggables = {
  drags: [],
  observers: [],

  register: function(draggable) {
    if(this.drags.length == 0) {
      this.eventMouseUp   = this.endDrag.bindAsEventListener(this);
      this.eventMouseMove = this.updateDrag.bindAsEventListener(this);
      this.eventKeypress  = this.keyPress.bindAsEventListener(this);

      Event.observe(document, "mouseup", this.eventMouseUp);
      Event.observe(draggable.element, "mousemove", this.eventMouseMove);
      Event.observe(document, "keypress", this.eventKeypress);
    }
    this.drags.push(draggable);
  },

  unregister: function(draggable) {
    this.drags = this.drags.reject(function(d) { return d==draggable });
    if(this.drags.length == 0) {
      Event.stopObserving(document, "mouseup", this.eventMouseUp);
      Event.stopObserving(draggable.element, "mousemove", this.eventMouseMove);
      Event.stopObserving(document, "keypress", this.eventKeypress);
    }
  },

  activate: function(draggable) {
    if(draggable.options.delay) {
      this._timeout = setTimeout(function() {
        Draggables._timeout = null;
        window.focus();
        Draggables.activeDraggable = draggable;
      }.bind(this), draggable.options.delay);
    } else {
      window.focus(); // allows keypress events if window isn't currently focused, fails for Safari
      this.activeDraggable = draggable;
    }
  },

  deactivate: function() {
    this.activeDraggable = null;
  },

  updateDrag: function(event) {
    if(!this.activeDraggable) return;
    var pointer = [Event.pointerX(event), Event.pointerY(event)];
    // Mozilla-based browsers fire successive mousemove events with
    // the same coordinates, prevent needless redrawing (moz bug?)
    if(this._lastPointer && (this._lastPointer.inspect() == pointer.inspect())) return;
    this._lastPointer = pointer;

    this.activeDraggable.updateDrag(event, pointer);
  },

  endDrag: function(event) {
    if(this._timeout) {
      clearTimeout(this._timeout);
      this._timeout = null;
    }
    if(!this.activeDraggable) return;
    this._lastPointer = null;
    this.activeDraggable.endDrag(event);
    this.activeDraggable = null;
  },

  keyPress: function(event) {
    if(this.activeDraggable)
      this.activeDraggable.keyPress(event);
  },

  addObserver: function(observer) {
    this.observers.push(observer);
    this._cacheObserverCallbacks();
  },

  removeObserver: function(element) {  // element instead of observer fixes mem leaks
    this.observers = this.observers.reject( function(o) { return o.element==element });
    this._cacheObserverCallbacks();
  },

  notify: function(eventName, draggable, event) {  // 'onStart', 'onEnd', 'onDrag'
    if(this[eventName+'Count'] > 0)
      this.observers.each( function(o) {
        if(o[eventName]) o[eventName](eventName, draggable, event);
      });
    if(draggable.options[eventName]) draggable.options[eventName](draggable, event);
  },

  _cacheObserverCallbacks: function() {
    ['onStart','onEnd','onDrag'].each( function(eventName) {
      Draggables[eventName+'Count'] = Draggables.observers.select(
        function(o) { return o[eventName]; }
      ).length;
    });
  }
};

/*--------------------------------------------------------------------------*/

var Draggable = Class.create({
  initialize: function(element) {
    var defaults = {
      handle: false,
      reverteffect: function(element, top_offset, left_offset) {
        var dur = Math.sqrt(Math.abs(top_offset^2)+Math.abs(left_offset^2))*0.02;
        new Effect.Move(element, { x: -left_offset, y: -top_offset, duration: dur,
          queue: {scope:'_draggable', position:'end'}
        });
      },
      endeffect: function(element) {
        var toOpacity = Object.isNumber(element._opacity) ? element._opacity : 1.0;
        new Effect.Opacity(element, {duration:0.2, from:0.7, to:toOpacity,
          queue: {scope:'_draggable', position:'end'},
          afterFinish: function(){
            Draggable._dragging[element] = false
          }
        });
      },
      zindex: 1000,
      revert: false,
      quiet: false,
      scroll: false,
      scrollSensitivity: 20,
      scrollSpeed: 15,
      snap: false,  // false, or xy or [x,y] or function(x,y){ return [x,y] }
      delay: 0
    };

    if(!arguments[1] || Object.isUndefined(arguments[1].endeffect))
      Object.extend(defaults, {
        starteffect: function(element) {
          element._opacity = Element.getOpacity(element);
          Draggable._dragging[element] = true;
          new Effect.Opacity(element, {duration:0.2, from:element._opacity, to:0.7});
        }
      });

    var options = Object.extend(defaults, arguments[1] || { });

    this.element = $(element);

    if(options.handle && Object.isString(options.handle))
      this.handle = this.element.down('.'+options.handle, 0);

    if(!this.handle) this.handle = $(options.handle);
    if(!this.handle) this.handle = this.element;

    if(options.scroll && !options.scroll.scrollTo && !options.scroll.outerHTML) {
      options.scroll = $(options.scroll);
      this._isScrollChild = Element.childOf(this.element, options.scroll);
    }

    Element.makePositioned(this.element); // fix IE

    this.options  = options;
    this.dragging = false;

    this.eventMouseDown = this.initDrag.bindAsEventListener(this);
    Event.observe(this.handle, "mousedown", this.eventMouseDown);

    Draggables.register(this);
  },

  destroy: function() {
    Event.stopObserving(this.handle, "mousedown", this.eventMouseDown);
    Draggables.unregister(this);
  },

  currentDelta: function() {
    return([
      parseInt(Element.getStyle(this.element,'left') || '0'),
      parseInt(Element.getStyle(this.element,'top') || '0')]);
  },

  initDrag: function(event) {
    if(!Object.isUndefined(Draggable._dragging[this.element]) &&
      Draggable._dragging[this.element]) return;
    if(Event.isLeftClick(event)) {
      // abort on form elements, fixes a Firefox issue
      var src = Event.element(event);
      if((tag_name = src.tagName.toUpperCase()) && (
        tag_name=='INPUT' ||
        tag_name=='SELECT' ||
        tag_name=='OPTION' ||
        tag_name=='BUTTON' ||
        tag_name=='TEXTAREA')) return;

      var pointer = [Event.pointerX(event), Event.pointerY(event)];
      var pos     = Position.cumulativeOffset(this.element);
      this.offset = [0,1].map( function(i) { return (pointer[i] - pos[i]) });

      Draggables.activate(this);
      Event.stop(event);
    }
  },

  startDrag: function(event) {
    this.dragging = true;
    if(!this.delta)
      this.delta = this.currentDelta();

    if(this.options.zindex) {
      this.originalZ = parseInt(Element.getStyle(this.element,'z-index') || 0);
      this.element.style.zIndex = this.options.zindex;
    }

    if(this.options.ghosting) {
      this._clone = this.element.cloneNode(true);
      this._originallyAbsolute = (this.element.getStyle('position') == 'absolute');
      if (!this._originallyAbsolute)
        Position.absolutize(this.element);
      this.element.parentNode.insertBefore(this._clone, this.element);
    }

    if(this.options.scroll) {
      if (this.options.scroll == window) {
        var where = this._getWindowScroll(this.options.scroll);
        this.originalScrollLeft = where.left;
        this.originalScrollTop = where.top;
      } else {
        this.originalScrollLeft = this.options.scroll.scrollLeft;
        this.originalScrollTop = this.options.scroll.scrollTop;
      }
    }

    Draggables.notify('onStart', this, event);

    if(this.options.starteffect) this.options.starteffect(this.element);
  },

  updateDrag: function(event, pointer) {
    if(!this.dragging) this.startDrag(event);

    if(!this.options.quiet){
      Position.prepare();
      Droppables.show(pointer, this.element);
    }

    Draggables.notify('onDrag', this, event);

    this.draw(pointer);
    if(this.options.change) this.options.change(this);

    if(this.options.scroll) {
      this.stopScrolling();

      var p;
      if (this.options.scroll == window) {
        with(this._getWindowScroll(this.options.scroll)) { p = [ left, top, left+width, top+height ]; }
      } else {
        p = Position.page(this.options.scroll);
        p[0] += this.options.scroll.scrollLeft + Position.deltaX;
        p[1] += this.options.scroll.scrollTop + Position.deltaY;
        p.push(p[0]+this.options.scroll.offsetWidth);
        p.push(p[1]+this.options.scroll.offsetHeight);
      }
      var speed = [0,0];
      if(pointer[0] < (p[0]+this.options.scrollSensitivity)) speed[0] = pointer[0]-(p[0]+this.options.scrollSensitivity);
      if(pointer[1] < (p[1]+this.options.scrollSensitivity)) speed[1] = pointer[1]-(p[1]+this.options.scrollSensitivity);
      if(pointer[0] > (p[2]-this.options.scrollSensitivity)) speed[0] = pointer[0]-(p[2]-this.options.scrollSensitivity);
      if(pointer[1] > (p[3]-this.options.scrollSensitivity)) speed[1] = pointer[1]-(p[3]-this.options.scrollSensitivity);
      this.startScrolling(speed);
    }

    // fix AppleWebKit rendering
    if(Prototype.Browser.WebKit) window.scrollBy(0,0);

    Event.stop(event);
  },

  finishDrag: function(event, success) {
    this.dragging = false;

    if(this.options.quiet){
      Position.prepare();
      var pointer = [Event.pointerX(event), Event.pointerY(event)];
      Droppables.show(pointer, this.element);
    }

    if(this.options.ghosting) {
      if (!this._originallyAbsolute)
        Position.relativize(this.element);
      delete this._originallyAbsolute;
      Element.remove(this._clone);
      this._clone = null;
    }

    var dropped = false;
    if(success) {
      dropped = Droppables.fire(event, this.element);
      if (!dropped) dropped = false;
    }
    if(dropped && this.options.onDropped) this.options.onDropped(this.element);
    Draggables.notify('onEnd', this, event);

    var revert = this.options.revert;
    if(revert && Object.isFunction(revert)) revert = revert(this.element);

    var d = this.currentDelta();
    if(revert && this.options.reverteffect) {
      if (dropped == 0 || revert != 'failure')
        this.options.reverteffect(this.element,
          d[1]-this.delta[1], d[0]-this.delta[0]);
    } else {
      this.delta = d;
    }

    if(this.options.zindex)
      this.element.style.zIndex = this.originalZ;

    if(this.options.endeffect)
      this.options.endeffect(this.element);

    Draggables.deactivate(this);
    Droppables.reset();
  },

  keyPress: function(event) {
    if(event.keyCode!=Event.KEY_ESC) return;
    this.finishDrag(event, false);
    Event.stop(event);
  },

  endDrag: function(event) {
    if(!this.dragging) return;
    this.stopScrolling();
    this.finishDrag(event, true);
    Event.stop(event);
  },

  draw: function(point) {
    var pos = Position.cumulativeOffset(this.element);
    if(this.options.ghosting) {
      var r   = Position.realOffset(this.element);
      pos[0] += r[0] - Position.deltaX; pos[1] += r[1] - Position.deltaY;
    }

    var d = this.currentDelta();
    pos[0] -= d[0]; pos[1] -= d[1];

    if(this.options.scroll && (this.options.scroll != window && this._isScrollChild)) {
      pos[0] -= this.options.scroll.scrollLeft-this.originalScrollLeft;
      pos[1] -= this.options.scroll.scrollTop-this.originalScrollTop;
    }

    var p = [0,1].map(function(i){
      return (point[i]-pos[i]-this.offset[i])
    }.bind(this));

    if(this.options.snap) {
      if(Object.isFunction(this.options.snap)) {
        p = this.options.snap(p[0],p[1],this);
      } else {
      if(Object.isArray(this.options.snap)) {
        p = p.map( function(v, i) {
          return (v/this.options.snap[i]).round()*this.options.snap[i] }.bind(this));
      } else {
        p = p.map( function(v) {
          return (v/this.options.snap).round()*this.options.snap }.bind(this));
      }
    }}

    var style = this.element.style;
    if((!this.options.constraint) || (this.options.constraint=='horizontal'))
      style.left = p[0] + "px";
    if((!this.options.constraint) || (this.options.constraint=='vertical'))
      style.top  = p[1] + "px";

    if(style.visibility=="hidden") style.visibility = ""; // fix gecko rendering
  },

  stopScrolling: function() {
    if(this.scrollInterval) {
      clearInterval(this.scrollInterval);
      this.scrollInterval = null;
      Draggables._lastScrollPointer = null;
    }
  },

  startScrolling: function(speed) {
    if(!(speed[0] || speed[1])) return;
    this.scrollSpeed = [speed[0]*this.options.scrollSpeed,speed[1]*this.options.scrollSpeed];
    this.lastScrolled = new Date();
    this.scrollInterval = setInterval(this.scroll.bind(this), 10);
  },

  scroll: function() {
    var current = new Date();
    var delta = current - this.lastScrolled;
    this.lastScrolled = current;
    if(this.options.scroll == window) {
      with (this._getWindowScroll(this.options.scroll)) {
        if (this.scrollSpeed[0] || this.scrollSpeed[1]) {
          var d = delta / 1000;
          this.options.scroll.scrollTo( left + d*this.scrollSpeed[0], top + d*this.scrollSpeed[1] );
        }
      }
    } else {
      this.options.scroll.scrollLeft += this.scrollSpeed[0] * delta / 1000;
      this.options.scroll.scrollTop  += this.scrollSpeed[1] * delta / 1000;
    }

    Position.prepare();
    Droppables.show(Draggables._lastPointer, this.element);
    Draggables.notify('onDrag', this);
    if (this._isScrollChild) {
      Draggables._lastScrollPointer = Draggables._lastScrollPointer || $A(Draggables._lastPointer);
      Draggables._lastScrollPointer[0] += this.scrollSpeed[0] * delta / 1000;
      Draggables._lastScrollPointer[1] += this.scrollSpeed[1] * delta / 1000;
      if (Draggables._lastScrollPointer[0] < 0)
        Draggables._lastScrollPointer[0] = 0;
      if (Draggables._lastScrollPointer[1] < 0)
        Draggables._lastScrollPointer[1] = 0;
      this.draw(Draggables._lastScrollPointer);
    }

    if(this.options.change) this.options.change(this);
  },

  _getWindowScroll: function(w) {
    var T, L, W, H;
    with (w.document) {
      if (w.document.documentElement && documentElement.scrollTop) {
        T = documentElement.scrollTop;
        L = documentElement.scrollLeft;
      } else if (w.document.body) {
        T = body.scrollTop;
        L = body.scrollLeft;
      }
      if (w.innerWidth) {
        W = w.innerWidth;
        H = w.innerHeight;
      } else if (w.document.documentElement && documentElement.clientWidth) {
        W = documentElement.clientWidth;
        H = documentElement.clientHeight;
      } else {
        W = body.offsetWidth;
        H = body.offsetHeight;
      }
    }
    return { top: T, left: L, width: W, height: H };
  }
});

Draggable._dragging = { };

/*--------------------------------------------------------------------------*/

var SortableObserver = Class.create({
  initialize: function(element, observer) {
    this.element   = $(element);
    this.observer  = observer;
    this.lastValue = Sortable.serialize(this.element);
  },

  onStart: function() {
    this.lastValue = Sortable.serialize(this.element);
  },

  onEnd: function() {
    Sortable.unmark();
    if(this.lastValue != Sortable.serialize(this.element))
      this.observer(this.element)
  }
});

var Sortable = {
  SERIALIZE_RULE: /^[^_\-](?:[A-Za-z0-9\-\_]*)[_](.*)$/,

  sortables: { },

  _findRootElement: function(element) {
    while (element.tagName.toUpperCase() != "BODY") {
      if(element.id && Sortable.sortables[element.id]) return element;
      element = element.parentNode;
    }
  },

  options: function(element) {
    element = Sortable._findRootElement($(element));
    if(!element) return;
    return Sortable.sortables[element.id];
  },

  destroy: function(element){
    element = $(element);
    var s = Sortable.sortables[element.id];

    if(s) {
      Draggables.removeObserver(s.element);
      s.droppables.each(function(d){ Droppables.remove(d) });
      s.draggables.invoke('destroy');

      delete Sortable.sortables[s.element.id];
    }
  },

  create: function(element) {
    element = $(element);
    var options = Object.extend({
      element:     element,
      tag:         'li',       // assumes li children, override with tag: 'tagname'
      dropOnEmpty: false,
      tree:        false,
      treeTag:     'ul',
      overlap:     'vertical', // one of 'vertical', 'horizontal'
      constraint:  'vertical', // one of 'vertical', 'horizontal', false
      containment: element,    // also takes array of elements (or id's); or false
      handle:      false,      // or a CSS class
      only:        false,
      delay:       0,
      hoverclass:  null,
      ghosting:    false,
      quiet:       false,
      scroll:      false,
      scrollSensitivity: 20,
      scrollSpeed: 15,
      format:      this.SERIALIZE_RULE,

      // these take arrays of elements or ids and can be
      // used for better initialization performance
      elements:    false,
      handles:     false,

      onChange:    Prototype.emptyFunction,
      onUpdate:    Prototype.emptyFunction
    }, arguments[1] || { });

    // clear any old sortable with same element
    this.destroy(element);

    // build options for the draggables
    var options_for_draggable = {
      revert:      true,
      quiet:       options.quiet,
      scroll:      options.scroll,
      scrollSpeed: options.scrollSpeed,
      scrollSensitivity: options.scrollSensitivity,
      delay:       options.delay,
      ghosting:    options.ghosting,
      constraint:  options.constraint,
      handle:      options.handle };

    if(options.starteffect)
      options_for_draggable.starteffect = options.starteffect;

    if(options.reverteffect)
      options_for_draggable.reverteffect = options.reverteffect;
    else
      if(options.ghosting) options_for_draggable.reverteffect = function(element) {
        element.style.top  = 0;
        element.style.left = 0;
      };

    if(options.endeffect)
      options_for_draggable.endeffect = options.endeffect;

    if(options.zindex)
      options_for_draggable.zindex = options.zindex;

    // build options for the droppables
    var options_for_droppable = {
      overlap:     options.overlap,
      containment: options.containment,
      tree:        options.tree,
      hoverclass:  options.hoverclass,
      onHover:     Sortable.onHover
    };

    var options_for_tree = {
      onHover:      Sortable.onEmptyHover,
      overlap:      options.overlap,
      containment:  options.containment,
      hoverclass:   options.hoverclass
    };

    // fix for gecko engine
    Element.cleanWhitespace(element);

    options.draggables = [];
    options.droppables = [];

    // drop on empty handling
    if(options.dropOnEmpty || options.tree) {
      Droppables.add(element, options_for_tree);
      options.droppables.push(element);
    }

    (options.elements || this.findElements(element, options) || []).each( function(e,i) {
      var handle = options.handles ? $(options.handles[i]) :
        (options.handle ? $(e).select('.' + options.handle)[0] : e);
      options.draggables.push(
        new Draggable(e, Object.extend(options_for_draggable, { handle: handle })));
      Droppables.add(e, options_for_droppable);
      if(options.tree) e.treeNode = element;
      options.droppables.push(e);
    });

    if(options.tree) {
      (Sortable.findTreeElements(element, options) || []).each( function(e) {
        Droppables.add(e, options_for_tree);
        e.treeNode = element;
        options.droppables.push(e);
      });
    }

    // keep reference
    this.sortables[element.id] = options;

    // for onupdate
    Draggables.addObserver(new SortableObserver(element, options.onUpdate));

  },

  // return all suitable-for-sortable elements in a guaranteed order
  findElements: function(element, options) {
    return Element.findChildren(
      element, options.only, options.tree ? true : false, options.tag);
  },

  findTreeElements: function(element, options) {
    return Element.findChildren(
      element, options.only, options.tree ? true : false, options.treeTag);
  },

  onHover: function(element, dropon, overlap) {
    if(Element.isParent(dropon, element)) return;

    if(overlap > .33 && overlap < .66 && Sortable.options(dropon).tree) {
      return;
    } else if(overlap>0.5) {
      Sortable.mark(dropon, 'before');
      if(dropon.previousSibling != element) {
        var oldParentNode = element.parentNode;
        element.style.visibility = "hidden"; // fix gecko rendering
        dropon.parentNode.insertBefore(element, dropon);
        if(dropon.parentNode!=oldParentNode)
          Sortable.options(oldParentNode).onChange(element);
        Sortable.options(dropon.parentNode).onChange(element);
      }
    } else {
      Sortable.mark(dropon, 'after');
      var nextElement = dropon.nextSibling || null;
      if(nextElement != element) {
        var oldParentNode = element.parentNode;
        element.style.visibility = "hidden"; // fix gecko rendering
        dropon.parentNode.insertBefore(element, nextElement);
        if(dropon.parentNode!=oldParentNode)
          Sortable.options(oldParentNode).onChange(element);
        Sortable.options(dropon.parentNode).onChange(element);
      }
    }
  },

  onEmptyHover: function(element, dropon, overlap) {
    var oldParentNode = element.parentNode;
    var droponOptions = Sortable.options(dropon);

    if(!Element.isParent(dropon, element)) {
      var index;

      var children = Sortable.findElements(dropon, {tag: droponOptions.tag, only: droponOptions.only});
      var child = null;

      if(children) {
        var offset = Element.offsetSize(dropon, droponOptions.overlap) * (1.0 - overlap);

        for (index = 0; index < children.length; index += 1) {
          if (offset - Element.offsetSize (children[index], droponOptions.overlap) >= 0) {
            offset -= Element.offsetSize (children[index], droponOptions.overlap);
          } else if (offset - (Element.offsetSize (children[index], droponOptions.overlap) / 2) >= 0) {
            child = index + 1 < children.length ? children[index + 1] : null;
            break;
          } else {
            child = children[index];
            break;
          }
        }
      }

      dropon.insertBefore(element, child);

      Sortable.options(oldParentNode).onChange(element);
      droponOptions.onChange(element);
    }
  },

  unmark: function() {
    if(Sortable._marker) Sortable._marker.hide();
  },

  mark: function(dropon, position) {
    // mark on ghosting only
    var sortable = Sortable.options(dropon.parentNode);
    if(sortable && !sortable.ghosting) return;

    if(!Sortable._marker) {
      Sortable._marker =
        ($('dropmarker') || Element.extend(document.createElement('DIV'))).
          hide().addClassName('dropmarker').setStyle({position:'absolute'});
      document.getElementsByTagName("body").item(0).appendChild(Sortable._marker);
    }
    var offsets = Position.cumulativeOffset(dropon);
    Sortable._marker.setStyle({left: offsets[0]+'px', top: offsets[1] + 'px'});

    if(position=='after')
      if(sortable.overlap == 'horizontal')
        Sortable._marker.setStyle({left: (offsets[0]+dropon.clientWidth) + 'px'});
      else
        Sortable._marker.setStyle({top: (offsets[1]+dropon.clientHeight) + 'px'});

    Sortable._marker.show();
  },

  _tree: function(element, options, parent) {
    var children = Sortable.findElements(element, options) || [];

    for (var i = 0; i < children.length; ++i) {
      var match = children[i].id.match(options.format);

      if (!match) continue;

      var child = {
        id: encodeURIComponent(match ? match[1] : null),
        element: element,
        parent: parent,
        children: [],
        position: parent.children.length,
        container: $(children[i]).down(options.treeTag)
      };

      /* Get the element containing the children and recurse over it */
      if (child.container)
        this._tree(child.container, options, child);

      parent.children.push (child);
    }

    return parent;
  },

  tree: function(element) {
    element = $(element);
    var sortableOptions = this.options(element);
    var options = Object.extend({
      tag: sortableOptions.tag,
      treeTag: sortableOptions.treeTag,
      only: sortableOptions.only,
      name: element.id,
      format: sortableOptions.format
    }, arguments[1] || { });

    var root = {
      id: null,
      parent: null,
      children: [],
      container: element,
      position: 0
    };

    return Sortable._tree(element, options, root);
  },

  /* Construct a [i] index for a particular node */
  _constructIndex: function(node) {
    var index = '';
    do {
      if (node.id) index = '[' + node.position + ']' + index;
    } while ((node = node.parent) != null);
    return index;
  },

  sequence: function(element) {
    element = $(element);
    var options = Object.extend(this.options(element), arguments[1] || { });

    return $(this.findElements(element, options) || []).map( function(item) {
      return item.id.match(options.format) ? item.id.match(options.format)[1] : '';
    });
  },

  setSequence: function(element, new_sequence) {
    element = $(element);
    var options = Object.extend(this.options(element), arguments[2] || { });

    var nodeMap = { };
    this.findElements(element, options).each( function(n) {
        if (n.id.match(options.format))
            nodeMap[n.id.match(options.format)[1]] = [n, n.parentNode];
        n.parentNode.removeChild(n);
    });

    new_sequence.each(function(ident) {
      var n = nodeMap[ident];
      if (n) {
        n[1].appendChild(n[0]);
        delete nodeMap[ident];
      }
    });
  },

  serialize: function(element) {
    element = $(element);
    var options = Object.extend(Sortable.options(element), arguments[1] || { });
    var name = encodeURIComponent(
      (arguments[1] && arguments[1].name) ? arguments[1].name : element.id);

    if (options.tree) {
      return Sortable.tree(element, arguments[1]).children.map( function (item) {
        return [name + Sortable._constructIndex(item) + "[id]=" +
                encodeURIComponent(item.id)].concat(item.children.map(arguments.callee));
      }).flatten().join('&');
    } else {
      return Sortable.sequence(element, arguments[1]).map( function(item) {
        return name + "[]=" + encodeURIComponent(item);
      }).join('&');
    }
  }
};

// Returns true if child is contained within element
Element.isParent = function(child, element) {
  if (!child.parentNode || child == element) return false;
  if (child.parentNode == element) return true;
  return Element.isParent(child.parentNode, element);
};

Element.findChildren = function(element, only, recursive, tagName) {
  if(!element.hasChildNodes()) return null;
  tagName = tagName.toUpperCase();
  if(only) only = [only].flatten();
  var elements = [];
  $A(element.childNodes).each( function(e) {
    if(e.tagName && e.tagName.toUpperCase()==tagName &&
      (!only || (Element.classNames(e).detect(function(v) { return only.include(v) }))))
        elements.push(e);
    if(recursive) {
      var grandchildren = Element.findChildren(e, only, recursive, tagName);
      if(grandchildren) elements.push(grandchildren);
    }
  });

  return (elements.length>0 ? elements.flatten() : []);
};

Element.offsetSize = function (element, type) {
  return element['offset' + ((type=='vertical' || type=='height') ? 'Height' : 'Width')];
};
// script.aculo.us controls.js v1.8.2, Tue Nov 18 18:30:58 +0100 2008

// Copyright (c) 2005-2008 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
//           (c) 2005-2008 Ivan Krstic (http://blogs.law.harvard.edu/ivan)
//           (c) 2005-2008 Jon Tirsen (http://www.tirsen.com)
// Contributors:
//  Richard Livsey
//  Rahul Bhargava
//  Rob Wills
//
// script.aculo.us is freely distributable under the terms of an MIT-style license.
// For details, see the script.aculo.us web site: http://script.aculo.us/

// Autocompleter.Base handles all the autocompletion functionality
// that's independent of the data source for autocompletion. This
// includes drawing the autocompletion menu, observing keyboard
// and mouse events, and similar.
//
// Specific autocompleters need to provide, at the very least,
// a getUpdatedChoices function that will be invoked every time
// the text inside the monitored textbox changes. This method
// should get the text for which to provide autocompletion by
// invoking this.getToken(), NOT by directly accessing
// this.element.value. This is to allow incremental tokenized
// autocompletion. Specific auto-completion logic (AJAX, etc)
// belongs in getUpdatedChoices.
//
// Tokenized incremental autocompletion is enabled automatically
// when an autocompleter is instantiated with the 'tokens' option
// in the options parameter, e.g.:
// new Ajax.Autocompleter('id','upd', '/url/', { tokens: ',' });
// will incrementally autocomplete with a comma as the token.
// Additionally, ',' in the above example can be replaced with
// a token array, e.g. { tokens: [',', '\n'] } which
// enables autocompletion on multiple tokens. This is most
// useful when one of the tokens is \n (a newline), as it
// allows smart autocompletion after linebreaks.

if(typeof Effect == 'undefined')
  throw("controls.js requires including script.aculo.us' effects.js library");

var Autocompleter = { };
Autocompleter.Base = Class.create({
  baseInitialize: function(element, update, options) {
    element          = $(element);
    this.element     = element;
    this.update      = $(update);
    this.hasFocus    = false;
    this.changed     = false;
    this.active      = false;
    this.index       = 0;
    this.entryCount  = 0;
    this.oldElementValue = this.element.value;

    if(this.setOptions)
      this.setOptions(options);
    else
      this.options = options || { };

    this.options.paramName    = this.options.paramName || this.element.name;
    this.options.tokens       = this.options.tokens || [];
    this.options.frequency    = this.options.frequency || 0.4;
    this.options.minChars     = this.options.minChars || 1;
    this.options.onShow       = this.options.onShow ||
      function(element, update){
        if(!update.style.position || update.style.position=='absolute') {
          update.style.position = 'absolute';
          Position.clone(element, update, {
            setHeight: false,
            offsetTop: element.offsetHeight
          });
        }
        Effect.Appear(update,{duration:0.15});
      };
    this.options.onHide = this.options.onHide ||
      function(element, update){ new Effect.Fade(update,{duration:0.15}) };

    if(typeof(this.options.tokens) == 'string')
      this.options.tokens = new Array(this.options.tokens);
    // Force carriage returns as token delimiters anyway
    if (!this.options.tokens.include('\n'))
      this.options.tokens.push('\n');

    this.observer = null;

    this.element.setAttribute('autocomplete','off');

    Element.hide(this.update);

    Event.observe(this.element, 'blur', this.onBlur.bindAsEventListener(this));
    Event.observe(this.element, 'keydown', this.onKeyPress.bindAsEventListener(this));
  },

  show: function() {
    if(Element.getStyle(this.update, 'display')=='none') this.options.onShow(this.element, this.update);
    if(!this.iefix &&
      (Prototype.Browser.IE) &&
      (Element.getStyle(this.update, 'position')=='absolute')) {
      new Insertion.After(this.update,
       '<iframe id="' + this.update.id + '_iefix" '+
       'style="display:none;position:absolute;filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);" ' +
       'src="javascript:false;" frameborder="0" scrolling="no"></iframe>');
      this.iefix = $(this.update.id+'_iefix');
    }
    if(this.iefix) setTimeout(this.fixIEOverlapping.bind(this), 50);
  },

  fixIEOverlapping: function() {
    Position.clone(this.update, this.iefix, {setTop:(!this.update.style.height)});
    this.iefix.style.zIndex = 1;
    this.update.style.zIndex = 2;
    Element.show(this.iefix);
  },

  hide: function() {
    this.stopIndicator();
    if(Element.getStyle(this.update, 'display')!='none') this.options.onHide(this.element, this.update);
    if(this.iefix) Element.hide(this.iefix);
  },

  startIndicator: function() {
    if(this.options.indicator) Element.show(this.options.indicator);
  },

  stopIndicator: function() {
    if(this.options.indicator) Element.hide(this.options.indicator);
  },

  onKeyPress: function(event) {
    if(this.active)
      switch(event.keyCode) {
       case Event.KEY_TAB:
       case Event.KEY_RETURN:
         this.selectEntry();
         Event.stop(event);
       case Event.KEY_ESC:
         this.hide();
         this.active = false;
         Event.stop(event);
         return;
       case Event.KEY_LEFT:
       case Event.KEY_RIGHT:
         return;
       case Event.KEY_UP:
         this.markPrevious();
         this.render();
         Event.stop(event);
         return;
       case Event.KEY_DOWN:
         this.markNext();
         this.render();
         Event.stop(event);
         return;
      }
     else
       if(event.keyCode==Event.KEY_TAB || event.keyCode==Event.KEY_RETURN ||
         (Prototype.Browser.WebKit > 0 && event.keyCode == 0)) return;

    this.changed = true;
    this.hasFocus = true;

    if(this.observer) clearTimeout(this.observer);
      this.observer =
        setTimeout(this.onObserverEvent.bind(this), this.options.frequency*1000);
  },

  activate: function() {
    this.changed = false;
    this.hasFocus = true;
    this.getUpdatedChoices();
  },

  onHover: function(event) {
    var element = Event.findElement(event, 'LI');
    if(this.index != element.autocompleteIndex)
    {
        this.index = element.autocompleteIndex;
        this.render();
    }
    Event.stop(event);
  },

  onClick: function(event) {
    var element = Event.findElement(event, 'LI');
    this.index = element.autocompleteIndex;
    this.selectEntry();
    this.hide();
  },

  onBlur: function(event) {
    // needed to make click events working
    setTimeout(this.hide.bind(this), 250);
    this.hasFocus = false;
    this.active = false;
  },

  render: function() {
    if(this.entryCount > 0) {
      for (var i = 0; i < this.entryCount; i++)
        this.index==i ?
          Element.addClassName(this.getEntry(i),"selected") :
          Element.removeClassName(this.getEntry(i),"selected");
      if(this.hasFocus) {
        this.show();
        this.active = true;
      }
    } else {
      this.active = false;
      this.hide();
    }
  },

  markPrevious: function() {
    if(this.index > 0) this.index--;
      else this.index = this.entryCount-1;
    //this.getEntry(this.index).scrollIntoView(true); useless
  },

  markNext: function() {
    if(this.index < this.entryCount-1) this.index++;
      else this.index = 0;
    this.getEntry(this.index).scrollIntoView(false);
  },

  getEntry: function(index) {
    return this.update.firstChild.childNodes[index];
  },

  getCurrentEntry: function() {
    return this.getEntry(this.index);
  },

  selectEntry: function() {
    this.active = false;
    this.updateElement(this.getCurrentEntry());
  },

  updateElement: function(selectedElement) {
    if (this.options.updateElement) {
      this.options.updateElement(selectedElement);
      return;
    }
    var value = '';
    if (this.options.select) {
      var nodes = $(selectedElement).select('.' + this.options.select) || [];
      if(nodes.length>0) value = Element.collectTextNodes(nodes[0], this.options.select);
    } else
      value = Element.collectTextNodesIgnoreClass(selectedElement, 'informal');

    var bounds = this.getTokenBounds();
    if (bounds[0] != -1) {
      var newValue = this.element.value.substr(0, bounds[0]);
      var whitespace = this.element.value.substr(bounds[0]).match(/^\s+/);
      if (whitespace)
        newValue += whitespace[0];
      this.element.value = newValue + value + this.element.value.substr(bounds[1]);
    } else {
      this.element.value = value;
    }
    this.oldElementValue = this.element.value;
    this.element.focus();

    if (this.options.afterUpdateElement)
      this.options.afterUpdateElement(this.element, selectedElement);
  },

  updateChoices: function(choices) {
    if(!this.changed && this.hasFocus) {
      this.update.innerHTML = choices;
      Element.cleanWhitespace(this.update);
      Element.cleanWhitespace(this.update.down());

      if(this.update.firstChild && this.update.down().childNodes) {
        this.entryCount =
          this.update.down().childNodes.length;
        for (var i = 0; i < this.entryCount; i++) {
          var entry = this.getEntry(i);
          entry.autocompleteIndex = i;
          this.addObservers(entry);
        }
      } else {
        this.entryCount = 0;
      }

      this.stopIndicator();
      this.index = 0;

      if(this.entryCount==1 && this.options.autoSelect) {
        this.selectEntry();
        this.hide();
      } else {
        this.render();
      }
    }
  },

  addObservers: function(element) {
    Event.observe(element, "mouseover", this.onHover.bindAsEventListener(this));
    Event.observe(element, "click", this.onClick.bindAsEventListener(this));
  },

  onObserverEvent: function() {
    this.changed = false;
    this.tokenBounds = null;
    if(this.getToken().length>=this.options.minChars) {
      this.getUpdatedChoices();
    } else {
      this.active = false;
      this.hide();
    }
    this.oldElementValue = this.element.value;
  },

  getToken: function() {
    var bounds = this.getTokenBounds();
    return this.element.value.substring(bounds[0], bounds[1]).strip();
  },

  getTokenBounds: function() {
    if (null != this.tokenBounds) return this.tokenBounds;
    var value = this.element.value;
    if (value.strip().empty()) return [-1, 0];
    var diff = arguments.callee.getFirstDifferencePos(value, this.oldElementValue);
    var offset = (diff == this.oldElementValue.length ? 1 : 0);
    var prevTokenPos = -1, nextTokenPos = value.length;
    var tp;
    for (var index = 0, l = this.options.tokens.length; index < l; ++index) {
      tp = value.lastIndexOf(this.options.tokens[index], diff + offset - 1);
      if (tp > prevTokenPos) prevTokenPos = tp;
      tp = value.indexOf(this.options.tokens[index], diff + offset);
      if (-1 != tp && tp < nextTokenPos) nextTokenPos = tp;
    }
    return (this.tokenBounds = [prevTokenPos + 1, nextTokenPos]);
  }
});

Autocompleter.Base.prototype.getTokenBounds.getFirstDifferencePos = function(newS, oldS) {
  var boundary = Math.min(newS.length, oldS.length);
  for (var index = 0; index < boundary; ++index)
    if (newS[index] != oldS[index])
      return index;
  return boundary;
};

Ajax.Autocompleter = Class.create(Autocompleter.Base, {
  initialize: function(element, update, url, options) {
    this.baseInitialize(element, update, options);
    this.options.asynchronous  = true;
    this.options.onComplete    = this.onComplete.bind(this);
    this.options.defaultParams = this.options.parameters || null;
    this.url                   = url;
  },

  getUpdatedChoices: function() {
    this.startIndicator();

    var entry = encodeURIComponent(this.options.paramName) + '=' +
      encodeURIComponent(this.getToken());

    this.options.parameters = this.options.callback ?
      this.options.callback(this.element, entry) : entry;

    if(this.options.defaultParams)
      this.options.parameters += '&' + this.options.defaultParams;

    new Ajax.Request(this.url, this.options);
  },

  onComplete: function(request) {
    this.updateChoices(request.responseText);
  }
});

// The local array autocompleter. Used when you'd prefer to
// inject an array of autocompletion options into the page, rather
// than sending out Ajax queries, which can be quite slow sometimes.
//
// The constructor takes four parameters. The first two are, as usual,
// the id of the monitored textbox, and id of the autocompletion menu.
// The third is the array you want to autocomplete from, and the fourth
// is the options block.
//
// Extra local autocompletion options:
// - choices - How many autocompletion choices to offer
//
// - partialSearch - If false, the autocompleter will match entered
//                    text only at the beginning of strings in the
//                    autocomplete array. Defaults to true, which will
//                    match text at the beginning of any *word* in the
//                    strings in the autocomplete array. If you want to
//                    search anywhere in the string, additionally set
//                    the option fullSearch to true (default: off).
//
// - fullSsearch - Search anywhere in autocomplete array strings.
//
// - partialChars - How many characters to enter before triggering
//                   a partial match (unlike minChars, which defines
//                   how many characters are required to do any match
//                   at all). Defaults to 2.
//
// - ignoreCase - Whether to ignore case when autocompleting.
//                 Defaults to true.
//
// It's possible to pass in a custom function as the 'selector'
// option, if you prefer to write your own autocompletion logic.
// In that case, the other options above will not apply unless
// you support them.

Autocompleter.Local = Class.create(Autocompleter.Base, {
  initialize: function(element, update, array, options) {
    this.baseInitialize(element, update, options);
    this.options.array = array;
  },

  getUpdatedChoices: function() {
    this.updateChoices(this.options.selector(this));
  },

  setOptions: function(options) {
    this.options = Object.extend({
      choices: 10,
      partialSearch: true,
      partialChars: 2,
      ignoreCase: true,
      fullSearch: false,
      selector: function(instance) {
        var ret       = []; // Beginning matches
        var partial   = []; // Inside matches
        var entry     = instance.getToken();
        var count     = 0;

        for (var i = 0; i < instance.options.array.length &&
          ret.length < instance.options.choices ; i++) {

          var elem = instance.options.array[i];
          var foundPos = instance.options.ignoreCase ?
            elem.toLowerCase().indexOf(entry.toLowerCase()) :
            elem.indexOf(entry);

          while (foundPos != -1) {
            if (foundPos == 0 && elem.length != entry.length) {
              ret.push("<li><strong>" + elem.substr(0, entry.length) + "</strong>" +
                elem.substr(entry.length) + "</li>");
              break;
            } else if (entry.length >= instance.options.partialChars &&
              instance.options.partialSearch && foundPos != -1) {
              if (instance.options.fullSearch || /\s/.test(elem.substr(foundPos-1,1))) {
                partial.push("<li>" + elem.substr(0, foundPos) + "<strong>" +
                  elem.substr(foundPos, entry.length) + "</strong>" + elem.substr(
                  foundPos + entry.length) + "</li>");
                break;
              }
            }

            foundPos = instance.options.ignoreCase ?
              elem.toLowerCase().indexOf(entry.toLowerCase(), foundPos + 1) :
              elem.indexOf(entry, foundPos + 1);

          }
        }
        if (partial.length)
          ret = ret.concat(partial.slice(0, instance.options.choices - ret.length));
        return "<ul>" + ret.join('') + "</ul>";
      }
    }, options || { });
  }
});

// AJAX in-place editor and collection editor
// Full rewrite by Christophe Porteneuve <tdd@tddsworld.com> (April 2007).

// Use this if you notice weird scrolling problems on some browsers,
// the DOM might be a bit confused when this gets called so do this
// waits 1 ms (with setTimeout) until it does the activation
Field.scrollFreeActivate = function(field) {
  setTimeout(function() {
    Field.activate(field);
  }, 1);
};

Ajax.InPlaceEditor = Class.create({
  initialize: function(element, url, options) {
    this.url = url;
    this.element = element = $(element);
    this.prepareOptions();
    this._controls = { };
    arguments.callee.dealWithDeprecatedOptions(options); // DEPRECATION LAYER!!!
    Object.extend(this.options, options || { });
    if (!this.options.formId && this.element.id) {
      this.options.formId = this.element.id + '-inplaceeditor';
      if ($(this.options.formId))
        this.options.formId = '';
    }
    if (this.options.externalControl)
      this.options.externalControl = $(this.options.externalControl);
    if (!this.options.externalControl)
      this.options.externalControlOnly = false;
    this._originalBackground = this.element.getStyle('background-color') || 'transparent';
    this.element.title = this.options.clickToEditText;
    this._boundCancelHandler = this.handleFormCancellation.bind(this);
    this._boundComplete = (this.options.onComplete || Prototype.emptyFunction).bind(this);
    this._boundFailureHandler = this.handleAJAXFailure.bind(this);
    this._boundSubmitHandler = this.handleFormSubmission.bind(this);
    this._boundWrapperHandler = this.wrapUp.bind(this);
    this.registerListeners();
  },
  checkForEscapeOrReturn: function(e) {
    if (!this._editing || e.ctrlKey || e.altKey || e.shiftKey) return;
    if (Event.KEY_ESC == e.keyCode)
      this.handleFormCancellation(e);
    else if (Event.KEY_RETURN == e.keyCode)
      this.handleFormSubmission(e);
  },
  createControl: function(mode, handler, extraClasses) {
    var control = this.options[mode + 'Control'];
    var text = this.options[mode + 'Text'];
    if ('button' == control) {
      var btn = document.createElement('input');
      btn.type = 'submit';
      btn.value = text;
      btn.className = 'editor_' + mode + '_button';
      if ('cancel' == mode)
        btn.onclick = this._boundCancelHandler;
      this._form.appendChild(btn);
      this._controls[mode] = btn;
    } else if ('link' == control) {
      var link = document.createElement('a');
      link.href = '#';
      link.appendChild(document.createTextNode(text));
      link.onclick = 'cancel' == mode ? this._boundCancelHandler : this._boundSubmitHandler;
      link.className = 'editor_' + mode + '_link';
      if (extraClasses)
        link.className += ' ' + extraClasses;
      this._form.appendChild(link);
      this._controls[mode] = link;
    }
  },
  createEditField: function() {
    var text = (this.options.loadTextURL ? this.options.loadingText : this.getText());
    var fld;
    if (1 >= this.options.rows && !/\r|\n/.test(this.getText())) {
      fld = document.createElement('input');
      fld.type = 'text';
      var size = this.options.size || this.options.cols || 0;
      if (0 < size) fld.size = size;
    } else {
      fld = document.createElement('textarea');
      fld.rows = (1 >= this.options.rows ? this.options.autoRows : this.options.rows);
      fld.cols = this.options.cols || 40;
    }
    fld.name = this.options.paramName;
    fld.value = text; // No HTML breaks conversion anymore
    fld.className = 'editor_field';
    if (this.options.submitOnBlur)
      fld.onblur = this._boundSubmitHandler;
    this._controls.editor = fld;
    if (this.options.loadTextURL)
      this.loadExternalText();
    this._form.appendChild(this._controls.editor);
  },
  createForm: function() {
    var ipe = this;
    function addText(mode, condition) {
      var text = ipe.options['text' + mode + 'Controls'];
      if (!text || condition === false) return;
      ipe._form.appendChild(document.createTextNode(text));
    };
    this._form = $(document.createElement('form'));
    this._form.id = this.options.formId;
    this._form.addClassName(this.options.formClassName);
    this._form.onsubmit = this._boundSubmitHandler;
    this.createEditField();
    if ('textarea' == this._controls.editor.tagName.toLowerCase())
      this._form.appendChild(document.createElement('br'));
    if (this.options.onFormCustomization)
      this.options.onFormCustomization(this, this._form);
    addText('Before', this.options.okControl || this.options.cancelControl);
    this.createControl('ok', this._boundSubmitHandler);
    addText('Between', this.options.okControl && this.options.cancelControl);
    this.createControl('cancel', this._boundCancelHandler, 'editor_cancel');
    addText('After', this.options.okControl || this.options.cancelControl);
  },
  destroy: function() {
    if (this._oldInnerHTML)
      this.element.innerHTML = this._oldInnerHTML;
    this.leaveEditMode();
    this.unregisterListeners();
  },
  enterEditMode: function(e) {
    if (this._saving || this._editing) return;
    this._editing = true;
    this.triggerCallback('onEnterEditMode');
    if (this.options.externalControl)
      this.options.externalControl.hide();
    this.element.hide();
    this.createForm();
    this.element.parentNode.insertBefore(this._form, this.element);
    if (!this.options.loadTextURL)
      this.postProcessEditField();
    if (e) Event.stop(e);
  },
  enterHover: function(e) {
    if (this.options.hoverClassName)
      this.element.addClassName(this.options.hoverClassName);
    if (this._saving) return;
    this.triggerCallback('onEnterHover');
  },
  getText: function() {
    return this.element.innerHTML.unescapeHTML();
  },
  handleAJAXFailure: function(transport) {
    this.triggerCallback('onFailure', transport);
    if (this._oldInnerHTML) {
      this.element.innerHTML = this._oldInnerHTML;
      this._oldInnerHTML = null;
    }
  },
  handleFormCancellation: function(e) {
    this.wrapUp();
    if (e) Event.stop(e);
  },
  handleFormSubmission: function(e) {
    var form = this._form;
    var value = $F(this._controls.editor);
    this.prepareSubmission();
    var params = this.options.callback(form, value) || '';
    if (Object.isString(params))
      params = params.toQueryParams();
    params.editorId = this.element.id;
    if (this.options.htmlResponse) {
      var options = Object.extend({ evalScripts: true }, this.options.ajaxOptions);
      Object.extend(options, {
        parameters: params,
        onComplete: this._boundWrapperHandler,
        onFailure: this._boundFailureHandler
      });
      new Ajax.Updater({ success: this.element }, this.url, options);
    } else {
      var options = Object.extend({ method: 'get' }, this.options.ajaxOptions);
      Object.extend(options, {
        parameters: params,
        onComplete: this._boundWrapperHandler,
        onFailure: this._boundFailureHandler
      });
      new Ajax.Request(this.url, options);
    }
    if (e) Event.stop(e);
  },
  leaveEditMode: function() {
    this.element.removeClassName(this.options.savingClassName);
    this.removeForm();
    this.leaveHover();
    this.element.style.backgroundColor = this._originalBackground;
    this.element.show();
    if (this.options.externalControl)
      this.options.externalControl.show();
    this._saving = false;
    this._editing = false;
    this._oldInnerHTML = null;
    this.triggerCallback('onLeaveEditMode');
  },
  leaveHover: function(e) {
    if (this.options.hoverClassName)
      this.element.removeClassName(this.options.hoverClassName);
    if (this._saving) return;
    this.triggerCallback('onLeaveHover');
  },
  loadExternalText: function() {
    this._form.addClassName(this.options.loadingClassName);
    this._controls.editor.disabled = true;
    var options = Object.extend({ method: 'get' }, this.options.ajaxOptions);
    Object.extend(options, {
      parameters: 'editorId=' + encodeURIComponent(this.element.id),
      onComplete: Prototype.emptyFunction,
      onSuccess: function(transport) {
        this._form.removeClassName(this.options.loadingClassName);
        var text = transport.responseText;
        if (this.options.stripLoadedTextTags)
          text = text.stripTags();
        this._controls.editor.value = text;
        this._controls.editor.disabled = false;
        this.postProcessEditField();
      }.bind(this),
      onFailure: this._boundFailureHandler
    });
    new Ajax.Request(this.options.loadTextURL, options);
  },
  postProcessEditField: function() {
    var fpc = this.options.fieldPostCreation;
    if (fpc)
      $(this._controls.editor)['focus' == fpc ? 'focus' : 'activate']();
  },
  prepareOptions: function() {
    this.options = Object.clone(Ajax.InPlaceEditor.DefaultOptions);
    Object.extend(this.options, Ajax.InPlaceEditor.DefaultCallbacks);
    [this._extraDefaultOptions].flatten().compact().each(function(defs) {
      Object.extend(this.options, defs);
    }.bind(this));
  },
  prepareSubmission: function() {
    this._saving = true;
    this.removeForm();
    this.leaveHover();
    this.showSaving();
  },
  registerListeners: function() {
    this._listeners = { };
    var listener;
    $H(Ajax.InPlaceEditor.Listeners).each(function(pair) {
      listener = this[pair.value].bind(this);
      this._listeners[pair.key] = listener;
      if (!this.options.externalControlOnly)
        this.element.observe(pair.key, listener);
      if (this.options.externalControl)
        this.options.externalControl.observe(pair.key, listener);
    }.bind(this));
  },
  removeForm: function() {
    if (!this._form) return;
    this._form.remove();
    this._form = null;
    this._controls = { };
  },
  showSaving: function() {
    this._oldInnerHTML = this.element.innerHTML;
    this.element.innerHTML = this.options.savingText;
    this.element.addClassName(this.options.savingClassName);
    this.element.style.backgroundColor = this._originalBackground;
    this.element.show();
  },
  triggerCallback: function(cbName, arg) {
    if ('function' == typeof this.options[cbName]) {
      this.options[cbName](this, arg);
    }
  },
  unregisterListeners: function() {
    $H(this._listeners).each(function(pair) {
      if (!this.options.externalControlOnly)
        this.element.stopObserving(pair.key, pair.value);
      if (this.options.externalControl)
        this.options.externalControl.stopObserving(pair.key, pair.value);
    }.bind(this));
  },
  wrapUp: function(transport) {
    this.leaveEditMode();
    // Can't use triggerCallback due to backward compatibility: requires
    // binding + direct element
    this._boundComplete(transport, this.element);
  }
});

Object.extend(Ajax.InPlaceEditor.prototype, {
  dispose: Ajax.InPlaceEditor.prototype.destroy
});

Ajax.InPlaceCollectionEditor = Class.create(Ajax.InPlaceEditor, {
  initialize: function($super, element, url, options) {
    this._extraDefaultOptions = Ajax.InPlaceCollectionEditor.DefaultOptions;
    $super(element, url, options);
  },

  createEditField: function() {
    var list = document.createElement('select');
    list.name = this.options.paramName;
    list.size = 1;
    this._controls.editor = list;
    this._collection = this.options.collection || [];
    if (this.options.loadCollectionURL)
      this.loadCollection();
    else
      this.checkForExternalText();
    this._form.appendChild(this._controls.editor);
  },

  loadCollection: function() {
    this._form.addClassName(this.options.loadingClassName);
    this.showLoadingText(this.options.loadingCollectionText);
    var options = Object.extend({ method: 'get' }, this.options.ajaxOptions);
    Object.extend(options, {
      parameters: 'editorId=' + encodeURIComponent(this.element.id),
      onComplete: Prototype.emptyFunction,
      onSuccess: function(transport) {
        var js = transport.responseText.strip();
        if (!/^\[.*\]$/.test(js)) // TODO: improve sanity check
          throw('Server returned an invalid collection representation.');
        this._collection = eval(js);
        this.checkForExternalText();
      }.bind(this),
      onFailure: this.onFailure
    });
    new Ajax.Request(this.options.loadCollectionURL, options);
  },

  showLoadingText: function(text) {
    this._controls.editor.disabled = true;
    var tempOption = this._controls.editor.firstChild;
    if (!tempOption) {
      tempOption = document.createElement('option');
      tempOption.value = '';
      this._controls.editor.appendChild(tempOption);
      tempOption.selected = true;
    }
    tempOption.update((text || '').stripScripts().stripTags());
  },

  checkForExternalText: function() {
    this._text = this.getText();
    if (this.options.loadTextURL)
      this.loadExternalText();
    else
      this.buildOptionList();
  },

  loadExternalText: function() {
    this.showLoadingText(this.options.loadingText);
    var options = Object.extend({ method: 'get' }, this.options.ajaxOptions);
    Object.extend(options, {
      parameters: 'editorId=' + encodeURIComponent(this.element.id),
      onComplete: Prototype.emptyFunction,
      onSuccess: function(transport) {
        this._text = transport.responseText.strip();
        this.buildOptionList();
      }.bind(this),
      onFailure: this.onFailure
    });
    new Ajax.Request(this.options.loadTextURL, options);
  },

  buildOptionList: function() {
    this._form.removeClassName(this.options.loadingClassName);
    this._collection = this._collection.map(function(entry) {
      return 2 === entry.length ? entry : [entry, entry].flatten();
    });
    var marker = ('value' in this.options) ? this.options.value : this._text;
    var textFound = this._collection.any(function(entry) {
      return entry[0] == marker;
    }.bind(this));
    this._controls.editor.update('');
    var option;
    this._collection.each(function(entry, index) {
      option = document.createElement('option');
      option.value = entry[0];
      option.selected = textFound ? entry[0] == marker : 0 == index;
      option.appendChild(document.createTextNode(entry[1]));
      this._controls.editor.appendChild(option);
    }.bind(this));
    this._controls.editor.disabled = false;
    Field.scrollFreeActivate(this._controls.editor);
  }
});

//**** DEPRECATION LAYER FOR InPlace[Collection]Editor! ****
//**** This only  exists for a while,  in order to  let ****
//**** users adapt to  the new API.  Read up on the new ****
//**** API and convert your code to it ASAP!            ****

Ajax.InPlaceEditor.prototype.initialize.dealWithDeprecatedOptions = function(options) {
  if (!options) return;
  function fallback(name, expr) {
    if (name in options || expr === undefined) return;
    options[name] = expr;
  };
  fallback('cancelControl', (options.cancelLink ? 'link' : (options.cancelButton ? 'button' :
    options.cancelLink == options.cancelButton == false ? false : undefined)));
  fallback('okControl', (options.okLink ? 'link' : (options.okButton ? 'button' :
    options.okLink == options.okButton == false ? false : undefined)));
  fallback('highlightColor', options.highlightcolor);
  fallback('highlightEndColor', options.highlightendcolor);
};

Object.extend(Ajax.InPlaceEditor, {
  DefaultOptions: {
    ajaxOptions: { },
    autoRows: 3,                                // Use when multi-line w/ rows == 1
    cancelControl: 'link',                      // 'link'|'button'|false
    cancelText: 'cancel',
    clickToEditText: 'Click to edit',
    externalControl: null,                      // id|elt
    externalControlOnly: false,
    fieldPostCreation: 'activate',              // 'activate'|'focus'|false
    formClassName: 'inplaceeditor-form',
    formId: null,                               // id|elt
    highlightColor: '#ffff99',
    highlightEndColor: '#ffffff',
    hoverClassName: '',
    htmlResponse: true,
    loadingClassName: 'inplaceeditor-loading',
    loadingText: 'Loading...',
    okControl: 'button',                        // 'link'|'button'|false
    okText: 'ok',
    paramName: 'value',
    rows: 1,                                    // If 1 and multi-line, uses autoRows
    savingClassName: 'inplaceeditor-saving',
    savingText: 'Saving...',
    size: 0,
    stripLoadedTextTags: false,
    submitOnBlur: false,
    textAfterControls: '',
    textBeforeControls: '',
    textBetweenControls: ''
  },
  DefaultCallbacks: {
    callback: function(form) {
      return Form.serialize(form);
    },
    onComplete: function(transport, element) {
      // For backward compatibility, this one is bound to the IPE, and passes
      // the element directly.  It was too often customized, so we don't break it.
      new Effect.Highlight(element, {
        startcolor: this.options.highlightColor, keepBackgroundImage: true });
    },
    onEnterEditMode: null,
    onEnterHover: function(ipe) {
      ipe.element.style.backgroundColor = ipe.options.highlightColor;
      if (ipe._effect)
        ipe._effect.cancel();
    },
    onFailure: function(transport, ipe) {
      alert('Error communication with the server: ' + transport.responseText.stripTags());
    },
    onFormCustomization: null, // Takes the IPE and its generated form, after editor, before controls.
    onLeaveEditMode: null,
    onLeaveHover: function(ipe) {
      ipe._effect = new Effect.Highlight(ipe.element, {
        startcolor: ipe.options.highlightColor, endcolor: ipe.options.highlightEndColor,
        restorecolor: ipe._originalBackground, keepBackgroundImage: true
      });
    }
  },
  Listeners: {
    click: 'enterEditMode',
    keydown: 'checkForEscapeOrReturn',
    mouseover: 'enterHover',
    mouseout: 'leaveHover'
  }
});

Ajax.InPlaceCollectionEditor.DefaultOptions = {
  loadingCollectionText: 'Loading options...'
};

// Delayed observer, like Form.Element.Observer,
// but waits for delay after last key input
// Ideal for live-search fields

Form.Element.DelayedObserver = Class.create({
  initialize: function(element, delay, callback) {
    this.delay     = delay || 0.5;
    this.element   = $(element);
    this.callback  = callback;
    this.timer     = null;
    this.lastValue = $F(this.element);
    Event.observe(this.element,'keyup',this.delayedListener.bindAsEventListener(this));
  },
  delayedListener: function(event) {
    if(this.lastValue == $F(this.element)) return;
    if(this.timer) clearTimeout(this.timer);
    this.timer = setTimeout(this.onTimerEvent.bind(this), this.delay * 1000);
    this.lastValue = $F(this.element);
  },
  onTimerEvent: function() {
    this.timer = null;
    this.callback(this.element, $F(this.element));
  }
});
// script.aculo.us slider.js v1.8.2, Tue Nov 18 18:30:58 +0100 2008

// Copyright (c) 2005-2008 Marty Haught, Thomas Fuchs
//
// script.aculo.us is freely distributable under the terms of an MIT-style license.
// For details, see the script.aculo.us web site: http://script.aculo.us/

if (!Control) var Control = { };

// options:
//  axis: 'vertical', or 'horizontal' (default)
//
// callbacks:
//  onChange(value)
//  onSlide(value)
Control.Slider = Class.create({
  initialize: function(handle, track, options) {
    var slider = this;

    if (Object.isArray(handle)) {
      this.handles = handle.collect( function(e) { return $(e) });
    } else {
      this.handles = [$(handle)];
    }

    this.track   = $(track);
    this.options = options || { };

    this.axis      = this.options.axis || 'horizontal';
    this.increment = this.options.increment || 1;
    this.step      = parseInt(this.options.step || '1');
    this.range     = this.options.range || $R(0,1);

    this.value     = 0; // assure backwards compat
    this.values    = this.handles.map( function() { return 0 });
    this.spans     = this.options.spans ? this.options.spans.map(function(s){ return $(s) }) : false;
    this.options.startSpan = $(this.options.startSpan || null);
    this.options.endSpan   = $(this.options.endSpan || null);

    this.restricted = this.options.restricted || false;

    this.maximum   = this.options.maximum || this.range.end;
    this.minimum   = this.options.minimum || this.range.start;

    // Will be used to align the handle onto the track, if necessary
    this.alignX = parseInt(this.options.alignX || '0');
    this.alignY = parseInt(this.options.alignY || '0');

    this.trackLength = this.maximumOffset() - this.minimumOffset();

    this.handleLength = this.isVertical() ?
      (this.handles[0].offsetHeight != 0 ?
        this.handles[0].offsetHeight : this.handles[0].style.height.replace(/px$/,"")) :
      (this.handles[0].offsetWidth != 0 ? this.handles[0].offsetWidth :
        this.handles[0].style.width.replace(/px$/,""));

    this.active   = false;
    this.dragging = false;
    this.disabled = false;

    if (this.options.disabled) this.setDisabled();

    // Allowed values array
    this.allowedValues = this.options.values ? this.options.values.sortBy(Prototype.K) : false;
    if (this.allowedValues) {
      this.minimum = this.allowedValues.min();
      this.maximum = this.allowedValues.max();
    }

    this.eventMouseDown = this.startDrag.bindAsEventListener(this);
    this.eventMouseUp   = this.endDrag.bindAsEventListener(this);
    this.eventMouseMove = this.update.bindAsEventListener(this);

    // Initialize handles in reverse (make sure first handle is active)
    this.handles.each( function(h,i) {
      i = slider.handles.length-1-i;
      slider.setValue(parseFloat(
        (Object.isArray(slider.options.sliderValue) ?
          slider.options.sliderValue[i] : slider.options.sliderValue) ||
         slider.range.start), i);
      h.makePositioned().observe("mousedown", slider.eventMouseDown);
    });

    this.track.observe("mousedown", this.eventMouseDown);
    document.observe("mouseup", this.eventMouseUp);
    $(this.track.parentNode.parentNode).observe("mousemove", this.eventMouseMove);


    this.initialized = true;
  },
  dispose: function() {
    var slider = this;
    Event.stopObserving(this.track, "mousedown", this.eventMouseDown);
    Event.stopObserving(document, "mouseup", this.eventMouseUp);
    Event.stopObserving(this.track.parentNode.parentNode, "mousemove", this.eventMouseMove);
    this.handles.each( function(h) {
      Event.stopObserving(h, "mousedown", slider.eventMouseDown);
    });
  },
  setDisabled: function(){
    this.disabled = true;
    this.track.parentNode.className = this.track.parentNode.className + ' disabled';
  },
  setEnabled: function(){
    this.disabled = false;
  },
  getNearestValue: function(value){
    if (this.allowedValues){
      if (value >= this.allowedValues.max()) return(this.allowedValues.max());
      if (value <= this.allowedValues.min()) return(this.allowedValues.min());

      var offset = Math.abs(this.allowedValues[0] - value);
      var newValue = this.allowedValues[0];
      this.allowedValues.each( function(v) {
        var currentOffset = Math.abs(v - value);
        if (currentOffset <= offset){
          newValue = v;
          offset = currentOffset;
        }
      });
      return newValue;
    }
    if (value > this.range.end) return this.range.end;
    if (value < this.range.start) return this.range.start;
    return value;
  },
  setValue: function(sliderValue, handleIdx){
    if (!this.active) {
      this.activeHandleIdx = handleIdx || 0;
      this.activeHandle    = this.handles[this.activeHandleIdx];
      this.updateStyles();
    }
    handleIdx = handleIdx || this.activeHandleIdx || 0;
    if (this.initialized && this.restricted) {
      if ((handleIdx>0) && (sliderValue<this.values[handleIdx-1]))
        sliderValue = this.values[handleIdx-1];
      if ((handleIdx < (this.handles.length-1)) && (sliderValue>this.values[handleIdx+1]))
        sliderValue = this.values[handleIdx+1];
    }
    sliderValue = this.getNearestValue(sliderValue);
    this.values[handleIdx] = sliderValue;
    this.value = this.values[0]; // assure backwards compat

    this.handles[handleIdx].style[this.isVertical() ? 'top' : 'left'] =
      this.translateToPx(sliderValue);

    this.drawSpans();
    if (!this.dragging || !this.event) this.updateFinished();
  },
  setValueBy: function(delta, handleIdx) {
    this.setValue(this.values[handleIdx || this.activeHandleIdx || 0] + delta,
      handleIdx || this.activeHandleIdx || 0);
  },
  translateToPx: function(value) {
    return Math.round(
      ((this.trackLength-this.handleLength)/(this.range.end-this.range.start)) *
      (value - this.range.start)) + "px";
  },
  translateToValue: function(offset) {
    return ((offset/(this.trackLength-this.handleLength) *
      (this.range.end-this.range.start)) + this.range.start);
  },
  getRange: function(range) {
    var v = this.values.sortBy(Prototype.K);
    range = range || 0;
    return $R(v[range],v[range+1]);
  },
  minimumOffset: function(){
    return(this.isVertical() ? this.alignY : this.alignX);
  },
  maximumOffset: function(){
    return(this.isVertical() ?
      (this.track.offsetHeight != 0 ? this.track.offsetHeight :
        this.track.style.height.replace(/px$/,"")) - this.alignY :
      (this.track.offsetWidth != 0 ? this.track.offsetWidth :
        this.track.style.width.replace(/px$/,"")) - this.alignX);
  },
  isVertical:  function(){
    return (this.axis == 'vertical');
  },
  drawSpans: function() {
    var slider = this;
    if (this.spans)
      $R(0, this.spans.length-1).each(function(r) { slider.setSpan(slider.spans[r], slider.getRange(r)) });
    if (this.options.startSpan)
      this.setSpan(this.options.startSpan,
        $R(0, this.values.length>1 ? this.getRange(0).min() : this.value ));
    if (this.options.endSpan)
      this.setSpan(this.options.endSpan,
        $R(this.values.length>1 ? this.getRange(this.spans.length-1).max() : this.value, this.maximum));
  },
  setSpan: function(span, range) {
    if (this.isVertical()) {
      span.style.top = this.translateToPx(range.start);
      span.style.height = this.translateToPx(range.end - range.start + this.range.start);
    } else {
      span.style.left = this.translateToPx(range.start);
      span.style.width = this.translateToPx(range.end - range.start + this.range.start);
    }
  },
  updateStyles: function() {
    this.handles.each( function(h){ Element.removeClassName(h, 'selected') });
    Element.addClassName(this.activeHandle, 'selected');
  },
  startDrag: function(event) {
    if (Event.isLeftClick(event)) {
      if (!this.disabled){
        this.active = true;

        var handle = Event.element(event);
        var pointer  = [Event.pointerX(event), Event.pointerY(event)];
        var track = handle;
        if (track==this.track) {
          var offsets  = Position.cumulativeOffset(this.track);
          this.event = event;
          this.setValue(this.translateToValue(
           (this.isVertical() ? pointer[1]-offsets[1] : pointer[0]-offsets[0])-(this.handleLength/2)
          ));
          var offsets  = Position.cumulativeOffset(this.activeHandle);
          this.offsetX = (pointer[0] - offsets[0]);
          this.offsetY = (pointer[1] - offsets[1]);
        } else {
          // find the handle (prevents issues with Safari)
          while((this.handles.indexOf(handle) == -1) && handle.parentNode)
            handle = handle.parentNode;

          if (this.handles.indexOf(handle)!=-1) {
            this.activeHandle    = handle;
            this.activeHandleIdx = this.handles.indexOf(this.activeHandle);
            this.updateStyles();

            var offsets  = Position.cumulativeOffset(this.activeHandle);
            this.offsetX = (pointer[0] - offsets[0]);
            this.offsetY = (pointer[1] - offsets[1]);
          }
        }
      }
      Event.stop(event);
    }
  },
  update: function(event) {
   if (this.active) {
      if (!this.dragging) this.dragging = true;
      this.draw(event);
      if (Prototype.Browser.WebKit) window.scrollBy(0,0);
      Event.stop(event);
   }
  },
  draw: function(event) {
    var pointer = [Event.pointerX(event), Event.pointerY(event)];
    var offsets = Position.cumulativeOffset(this.track);
    pointer[0] -= this.offsetX + offsets[0];
    pointer[1] -= this.offsetY + offsets[1];
    this.event = event;
    this.setValue(this.translateToValue( this.isVertical() ? pointer[1] : pointer[0] ));
    if (this.initialized && this.options.onSlide)
      this.options.onSlide(this.values.length>1 ? this.values : this.value, this);
  },
  endDrag: function(event) {
    if (this.active && this.dragging) {
      this.finishDrag(event, true);
      Event.stop(event);
    }
    this.active = false;
    this.dragging = false;
  },
  finishDrag: function(event, success) {
    this.active = false;
    this.dragging = false;
    this.updateFinished();
  },
  updateFinished: function() {
    if (this.initialized && this.options.onChange)
      this.options.onChange(this.values.length>1 ? this.values : this.value, this);
    this.event = null;
  }
});
/**
 * Magento Enterprise Edition
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Magento Enterprise Edition License
 * that is bundled with this package in the file LICENSE_EE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://www.magentocommerce.com/license/enterprise-edition
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @category    Varien
 * @package     js
 * @copyright   Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
 * @license     http://www.magentocommerce.com/license/enterprise-edition
 */
function popWin(url,win,para) {
    var win = window.open(url,win,para);
    win.focus();
}

function setLocation(url){
    window.location.href = url;
}

function setPLocation(url, setFocus){
    if( setFocus ) {
        window.opener.focus();
    }
    window.opener.location.href = url;
}

function setLanguageCode(code, fromCode){
    //TODO: javascript cookies have different domain and path than php cookies
    var href = window.location.href;
    var after = '', dash;
    if (dash = href.match(/\#(.*)$/)) {
        href = href.replace(/\#(.*)$/, '');
        after = dash[0];
    }

    if (href.match(/[?]/)) {
        var re = /([?&]store=)[a-z0-9_]*/;
        if (href.match(re)) {
            href = href.replace(re, '$1'+code);
        } else {
            href += '&store='+code;
        }

        var re = /([?&]from_store=)[a-z0-9_]*/;
        if (href.match(re)) {
            href = href.replace(re, '');
        }
    } else {
        href += '?store='+code;
    }
    if (typeof(fromCode) != 'undefined') {
        href += '&from_store='+fromCode;
    }
    href += after;

    setLocation(href);
}

/**
 * Add classes to specified elements.
 * Supported classes are: 'odd', 'even', 'first', 'last'
 *
 * @param elements - array of elements to be decorated
 * [@param decorateParams] - array of classes to be set. If omitted, all available will be used
 */
function decorateGeneric(elements, decorateParams)
{
    var allSupportedParams = ['odd', 'even', 'first', 'last'];
    var _decorateParams = {};
    var total = elements.length;

    if (total) {
        // determine params called
        if (typeof(decorateParams) == 'undefined') {
            decorateParams = allSupportedParams;
        }
        if (!decorateParams.length) {
            return;
        }
        for (var k in allSupportedParams) {
            _decorateParams[allSupportedParams[k]] = false;
        }
        for (var k in decorateParams) {
            _decorateParams[decorateParams[k]] = true;
        }

        // decorate elements
        // elements[0].addClassName('first'); // will cause bug in IE (#5587)
        if (_decorateParams.first) {
            Element.addClassName(elements[0], 'first');
        }
        if (_decorateParams.last) {
            Element.addClassName(elements[total-1], 'last');
        }
        for (var i = 0; i < total; i++) {
            if ((i + 1) % 2 == 0) {
                if (_decorateParams.even) {
                    Element.addClassName(elements[i], 'even');
                }
            }
            else {
                if (_decorateParams.odd) {
                    Element.addClassName(elements[i], 'odd');
                }
            }
        }
    }
}

/**
 * Decorate table rows and cells, tbody etc
 * @see decorateGeneric()
 */
function decorateTable(table, options) {
    var table = $(table);
    if (table) {
        // set default options
        var _options = {
            'tbody'    : false,
            'tbody tr' : ['odd', 'even', 'first', 'last'],
            'thead tr' : ['first', 'last'],
            'tfoot tr' : ['first', 'last'],
            'tr td'    : ['last']
        };
        // overload options
        if (typeof(options) != 'undefined') {
            for (var k in options) {
                _options[k] = options[k];
            }
        }
        // decorate
        if (_options['tbody']) {
            decorateGeneric(table.select('tbody'), _options['tbody']);
        }
        if (_options['tbody tr']) {
            decorateGeneric(table.select('tbody tr'), _options['tbody tr']);
        }
        if (_options['thead tr']) {
            decorateGeneric(table.select('thead tr'), _options['thead tr']);
        }
        if (_options['tfoot tr']) {
            decorateGeneric(table.select('tfoot tr'), _options['tfoot tr']);
        }
        if (_options['tr td']) {
            var allRows = table.select('tr');
            if (allRows.length) {
                for (var i = 0; i < allRows.length; i++) {
                    decorateGeneric(allRows[i].getElementsByTagName('TD'), _options['tr td']);
                }
            }
        }
    }
}

/**
 * Set "odd", "even" and "last" CSS classes for list items
 * @see decorateGeneric()
 */
function decorateList(list, nonRecursive) {
    if ($(list)) {
        if (typeof(nonRecursive) == 'undefined') {
            var items = $(list).select('li')
        }
        else {
            var items = $(list).childElements();
        }
        decorateGeneric(items, ['odd', 'even', 'last']);
    }
}

/**
 * Set "odd", "even" and "last" CSS classes for list items
 * @see decorateGeneric()
 */
function decorateDataList(list) {
    list = $(list);
    if (list) {
        decorateGeneric(list.select('dt'), ['odd', 'even', 'last']);
        decorateGeneric(list.select('dd'), ['odd', 'even', 'last']);
    }
}

/**
 * Parse SID and produces the correct URL
 */
function parseSidUrl(baseUrl, urlExt) {
    sidPos = baseUrl.indexOf('/?SID=');
    sid = '';
    urlExt = (urlExt != undefined) ? urlExt : '';

    if(sidPos > -1) {
        sid = '?' + baseUrl.substring(sidPos + 2);
        baseUrl = baseUrl.substring(0, sidPos + 1);
    }

    return baseUrl+urlExt+sid;
}

/**
 * Formats currency using patern
 * format - JSON (pattern, decimal, decimalsDelimeter, groupsDelimeter)
 * showPlus - true (always show '+'or '-'),
 *      false (never show '-' even if number is negative)
 *      null (show '-' if number is negative)
 */

function formatCurrency(price, format, showPlus){
    precision = isNaN(format.precision = Math.abs(format.precision)) ? 2 : format.precision;
    requiredPrecision = isNaN(format.requiredPrecision = Math.abs(format.requiredPrecision)) ? 2 : format.requiredPrecision;

    //precision = (precision > requiredPrecision) ? precision : requiredPrecision;
    //for now we don't need this difference so precision is requiredPrecision
    precision = requiredPrecision;

    integerRequired = isNaN(format.integerRequired = Math.abs(format.integerRequired)) ? 1 : format.integerRequired;

    decimalSymbol = format.decimalSymbol == undefined ? "," : format.decimalSymbol;
    groupSymbol = format.groupSymbol == undefined ? "." : format.groupSymbol;
    groupLength = format.groupLength == undefined ? 3 : format.groupLength;

    if (showPlus == undefined || showPlus == true) {
        s = price < 0 ? "-" : ( showPlus ? "+" : "");
    } else if (showPlus == false) {
        s = '';
    }

    i = parseInt(price = Math.abs(+price || 0).toFixed(precision)) + "";
    pad = (i.length < integerRequired) ? (integerRequired - i.length) : 0;
    while (pad) { i = '0' + i; pad--; }

    j = (j = i.length) > groupLength ? j % groupLength : 0;
    re = new RegExp("(\\d{" + groupLength + "})(?=\\d)", "g");

    /**
     * replace(/-/, 0) is only for fixing Safari bug which appears
     * when Math.abs(0).toFixed() executed on "0" number.
     * Result is "0.-0" :(
     */
    r = (j ? i.substr(0, j) + groupSymbol : "") + i.substr(j).replace(re, "$1" + groupSymbol) + (precision ? decimalSymbol + Math.abs(price - i).toFixed(precision).replace(/-/, 0).slice(2) : "")

    if (format.pattern.indexOf('{sign}') == -1) {
        pattern = s + format.pattern;
    } else {
        pattern = format.pattern.replace('{sign}', s);
    }

    return pattern.replace('%s', r).replace(/^\s\s*/, '').replace(/\s\s*$/, '');
};

function expandDetails(el, childClass) {
    if (Element.hasClassName(el,'show-details')) {
        $$(childClass).each(function(item){item.hide()});
        Element.removeClassName(el,'show-details');
    }
    else {
        $$(childClass).each(function(item){item.show()});
        Element.addClassName(el,'show-details');
    }
}

// Version 1.0
var isIE = navigator.appVersion.match(/MSIE/) == "MSIE";

if (!window.Varien)
    var Varien = new Object();

Varien.showLoading = function(){
    Element.show('loading-process');
}
Varien.hideLoading = function(){
    Element.hide('loading-process');
}
Varien.GlobalHandlers = {
    onCreate: function() {
        Varien.showLoading();
    },

    onComplete: function() {
        if(Ajax.activeRequestCount == 0) {
            Varien.hideLoading();
        }
    }
};

Ajax.Responders.register(Varien.GlobalHandlers);

/**
 * Quick Search form client model
 */
Varien.searchForm = Class.create();
Varien.searchForm.prototype = {
    initialize : function(form, field, emptyText){
        this.form   = $(form);
        this.field  = $(field);
        this.emptyText = emptyText;

        Event.observe(this.form,  'submit', this.submit.bind(this));
        Event.observe(this.field, 'focus', this.focus.bind(this));
        Event.observe(this.field, 'blur', this.blur.bind(this));
        this.blur();
    },

    submit : function(event){
        if (this.field.value == this.emptyText || this.field.value == ''){
            Event.stop(event);
            return false;
        }
        return true;
    },

    focus : function(event){
        if(this.field.value==this.emptyText){
            this.field.value='';
        }

    },

    blur : function(event){
        if(this.field.value==''){
            this.field.value=this.emptyText;
        }
    },

    initAutocomplete : function(url, destinationElement){
        new Ajax.Autocompleter(
            this.field,
            destinationElement,
            url,
            {
                paramName: this.field.name,
                method: 'get',
                minChars: 2,
                updateElement: this._selectAutocompleteItem.bind(this),
                onShow : function(element, update) {
                    if(!update.style.position || update.style.position=='absolute') {
                        update.style.position = 'absolute';
                        Position.clone(element, update, {
                            setHeight: false,
                            offsetTop: element.offsetHeight
                        });
                    }
                    Effect.Appear(update,{duration:0});
                }

            }
        );
    },

    _selectAutocompleteItem : function(element){
        if(element.title){
            this.field.value = element.title;
        }
        this.form.submit();
    }
}

Varien.Tabs = Class.create();
Varien.Tabs.prototype = {
  initialize: function(selector) {
    var self=this;
    $$(selector+' a').each(this.initTab.bind(this));
  },

  initTab: function(el) {
      el.href = 'javascript:void(0)';
      if ($(el.parentNode).hasClassName('active')) {
        this.showContent(el);
      }
      el.observe('click', this.showContent.bind(this, el));
  },

  showContent: function(a) {
    var li = $(a.parentNode), ul = $(li.parentNode);
    ul.getElementsBySelector('li', 'ol').each(function(el){
      var contents = $(el.id+'_contents');
      if (el==li) {
        el.addClassName('active');
        contents.show();
      } else {
        el.removeClassName('active');
        contents.hide();
      }
    });
  }
}

Varien.DateElement = Class.create();
Varien.DateElement.prototype = {
    initialize: function(type, content, required, format) {
        if (type == 'id') {
            // id prefix
            this.day    = $(content + 'day');
            this.month  = $(content + 'month');
            this.year   = $(content + 'year');
            this.full   = $(content + 'full');
            this.advice = $(content + 'advice');
        } else if (type == 'container') {
            // content must be container with data
            this.day    = content.day;
            this.month  = content.month;
            this.year   = content.year;
            this.full   = content.full;
            this.advice = content.advice;
        } else {
            return;
        }

        this.required = required;
        this.format   = format;
        
        this.day.addClassName('validate-custom');
        this.day.validate = this.validate.bind(this);
        this.month.addClassName('validate-custom');
        this.month.validate = this.validate.bind(this);
        this.year.addClassName('validate-custom');
        this.year.validate = this.validate.bind(this);

        this.year.setAttribute('autocomplete','off');

        this.advice.hide();
    },
    validate: function() {
        var error = false;
        if (this.day.value=='' && this.month.value=='' && this.year.value=='') {
            if (this.required) {
                error = 'This date is a required value.';
            } else {
                this.full.value = '';
            }
        } else if (this.day.value=='' || this.month.value=='' || this.year.value=='') {
            error = 'Please enter a valid full date.';
        } else {
            var date = new Date();
            if (this.day.value<1 || this.day.value>31) {
                error = 'Please enter a valid day (1-31).';
            } else if (this.month.value<1 || this.month.value>12) {
                error = 'Please enter a valid month (1-12).';
            } else if (this.year.value<1900 || this.year.value>date.getFullYear()) {
                error = 'Please enter a valid year (1900-'+date.getFullYear()+').';
            } else {
                this.full.value = this.format.replace(/(%m|%b)/i, this.month.value).replace(/(%d|%e)/i, this.day.value).replace(/%y/i, this.year.value);
                var testFull = this.month.value + '/' + this.day.value + '/'+ this.year.value;
                var test = new Date(testFull);
                if (isNaN(test)) {
                    error = 'Please enter a valid date.';
                }
            }
        }

        if (error !== false) {
            try {
                this.advice.innerHTML = Translator.translate(error);
            }
            catch (e) {
                this.advice.innerHTML = error;
            }
            this.advice.show();
            return false;
        }
        
        // fixing elements class
        this.day.removeClassName('validation-failed');
        this.month.removeClassName('validation-failed');
        this.year.removeClassName('validation-failed');
        
        this.advice.hide();
        return true;
    }
};

Varien.DOB = Class.create();
Varien.DOB.prototype = {
    initialize: function(selector, required, format) {
        var el = $$(selector)[0];
        var container       = {};
        container.day       = Element.select(el, '.dob-day input')[0];
        container.month     = Element.select(el, '.dob-month input')[0];
        container.year      = Element.select(el, '.dob-year input')[0];
        container.full      = Element.select(el, '.dob-full input')[0];
        container.advice    = Element.select(el, '.validation-advice')[0];
        
        new Varien.DateElement('container', container, required, format);
    }
};

Varien.FileElement = Class.create();
Varien.FileElement.prototype = {
    initialize: function (id) {
        this.fileElement = $(id);
        this.hiddenElement = $(id + '_value');
        
        this.fileElement.observe('change', this.selectFile.bind(this));
    },
    selectFile: function(event) {
        this.hiddenElement.value = this.fileElement.getValue();
    }
};

Validation.addAllThese([
    ['validate-custom', ' ', function(v,elm) {
        return elm.validate();
    }]
]);

function truncateOptions() {
    $$('.truncated').each(function(element){
        Event.observe(element, 'mouseover', function(){
            if (element.down('div.truncated_full_value')) {
                element.down('div.truncated_full_value').addClassName('show')
            }
        });
        Event.observe(element, 'mouseout', function(){
            if (element.down('div.truncated_full_value')) {
                element.down('div.truncated_full_value').removeClassName('show')
            }
        });

    });
}
Event.observe(window, 'load', function(){
   truncateOptions();
});

Element.addMethods({
    getInnerText: function(element)
    {
        element = $(element);
        if(element.innerText && !Prototype.Browser.Opera) {
            return element.innerText
        }
        return element.innerHTML.stripScripts().unescapeHTML().replace(/[\n\r\s]+/g, ' ').strip();
    }
});

if (!("console" in window) || !("firebug" in console))
{
    var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml",
    "group", "groupEnd", "time", "timeEnd", "count", "trace", "profile", "profileEnd"];

    window.console = {};
    for (var i = 0; i < names.length; ++i)
        window.console[names[i]] = function() {}
}

/**
 * Executes event handler on the element. Works with event handlers attached by Prototype,
 * in a browser-agnostic fashion.
 * @param element The element object
 * @param event Event name, like 'change'
 *
 * @example fireEvent($('my-input', 'click'));
 */
function fireEvent(element, event){
    if (document.createEventObject){
        // dispatch for IE
        var evt = document.createEventObject();
        return element.fireEvent('on'+event,evt)
    }
    else{
        // dispatch for firefox + others
        var evt = document.createEvent("HTMLEvents");
        evt.initEvent(event, true, true ); // event type,bubbling,cancelable
        return !element.dispatchEvent(evt);
    }
}

/**
 * Magento Enterprise Edition
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Magento Enterprise Edition License
 * that is bundled with this package in the file LICENSE_EE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://www.magentocommerce.com/license/enterprise-edition
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @category    Varien
 * @package     js
 * @copyright   Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
 * @license     http://www.magentocommerce.com/license/enterprise-edition
 */
VarienForm = Class.create();
VarienForm.prototype = {
    initialize: function(formId, firstFieldFocus){
        this.form       = $(formId);
        if (!this.form) {
            return;
        }
        this.cache      = $A();
        this.currLoader = false;
        this.currDataIndex = false;
        this.validator  = new Validation(this.form);
        this.elementFocus   = this.elementOnFocus.bindAsEventListener(this);
        this.elementBlur    = this.elementOnBlur.bindAsEventListener(this);
        this.childLoader    = this.onChangeChildLoad.bindAsEventListener(this);
        this.highlightClass = 'highlight';
        this.extraChildParams = '';
        this.firstFieldFocus= firstFieldFocus || false;
        this.bindElements();
        if(this.firstFieldFocus){
            try{
                Form.Element.focus(Form.findFirstElement(this.form))
            }
            catch(e){}
        }
    },

    submit : function(url){
        if(this.validator && this.validator.validate()){
             this.form.submit();
        }
        return false;
    },

    bindElements:function (){
        var elements = Form.getElements(this.form);
        for (var row in elements) {
            if (elements[row].id) {
                Event.observe(elements[row],'focus',this.elementFocus);
                Event.observe(elements[row],'blur',this.elementBlur);
            }
        }
    },

    elementOnFocus: function(event){
        var element = Event.findElement(event, 'fieldset');
        if(element){
            Element.addClassName(element, this.highlightClass);
        }
    },

    elementOnBlur: function(event){
        var element = Event.findElement(event, 'fieldset');
        if(element){
            Element.removeClassName(element, this.highlightClass);
        }
    },

    setElementsRelation: function(parent, child, dataUrl, first){
        if (parent=$(parent)) {
            // TODO: array of relation and caching
            if (!this.cache[parent.id]){
                this.cache[parent.id] = $A();
                this.cache[parent.id]['child']     = child;
                this.cache[parent.id]['dataUrl']   = dataUrl;
                this.cache[parent.id]['data']      = $A();
                this.cache[parent.id]['first']      = first || false;
            }
            Event.observe(parent,'change',this.childLoader);
        }
    },

    onChangeChildLoad: function(event){
        element = Event.element(event);
        this.elementChildLoad(element);
    },

    elementChildLoad: function(element, callback){
        this.callback = callback || false;
        if (element.value) {
            this.currLoader = element.id;
            this.currDataIndex = element.value;
            if (this.cache[element.id]['data'][element.value]) {
                this.setDataToChild(this.cache[element.id]['data'][element.value]);
            }
            else{
                new Ajax.Request(this.cache[this.currLoader]['dataUrl'],{
                        method: 'post',
                        parameters: {"parent":element.value},
                        onComplete: this.reloadChildren.bind(this)
                });
            }
        }
    },

    reloadChildren: function(transport){
        var data = eval('(' + transport.responseText + ')');
        this.cache[this.currLoader]['data'][this.currDataIndex] = data;
        this.setDataToChild(data);
    },

    setDataToChild: function(data){
        if (data.length) {
            var child = $(this.cache[this.currLoader]['child']);
            if (child){
                var html = '<select name="'+child.name+'" id="'+child.id+'" class="'+child.className+'" title="'+child.title+'" '+this.extraChildParams+'>';
                if(this.cache[this.currLoader]['first']){
                    html+= '<option value="">'+this.cache[this.currLoader]['first']+'</option>';
                }
                for (var i in data){
                    if(data[i].value) {
                        html+= '<option value="'+data[i].value+'"';
                        if(child.value && (child.value == data[i].value || child.value == data[i].label)){
                            html+= ' selected';
                        }
                        html+='>'+data[i].label+'</option>';
                    }
                }
                html+= '</select>';
                Element.insert(child, {before: html});
                Element.remove(child);
            }
        }
        else{
            var child = $(this.cache[this.currLoader]['child']);
            if (child){
                var html = '<input type="text" name="'+child.name+'" id="'+child.id+'" class="'+child.className+'" title="'+child.title+'" '+this.extraChildParams+'>';
                Element.insert(child, {before: html});
                Element.remove(child);
            }
        }

        this.bindElements();
        if (this.callback) {
            this.callback();
        }
    }
}

RegionUpdater = Class.create();
RegionUpdater.prototype = {
    initialize: function (countryEl, regionTextEl, regionSelectEl, regions, disableAction, zipEl)
    {
        this.countryEl = $(countryEl);
        this.regionTextEl = $(regionTextEl);
        this.regionSelectEl = $(regionSelectEl);
        this.zipEl = $(zipEl);
        this.regions = regions;

        this.disableAction = (typeof disableAction=='undefined') ? 'hide' : disableAction;
        this.zipOptions = (typeof zipOptions=='undefined') ? false : zipOptions;

        if (this.regionSelectEl.options.length<=1) {
            this.update();
        }

        Event.observe(this.countryEl, 'change', this.update.bind(this));
    },

    update: function()
    {
        if (this.regions[this.countryEl.value]) {
            var i, option, region, def;

            if (this.regionTextEl) {
                def = this.regionTextEl.value.toLowerCase();
                this.regionTextEl.value = '';
            }
            if (!def) {
                def = this.regionSelectEl.getAttribute('defaultValue');
            }

            this.regionSelectEl.options.length = 1;
            for (regionId in this.regions[this.countryEl.value]) {
                region = this.regions[this.countryEl.value][regionId];

                option = document.createElement('OPTION');
                option.value = regionId;
                option.text = region.name;

                if (this.regionSelectEl.options.add) {
                    this.regionSelectEl.options.add(option);
                } else {
                    this.regionSelectEl.appendChild(option);
                }

                if (regionId==def || region.name.toLowerCase()==def || region.code.toLowerCase()==def) {
                    this.regionSelectEl.value = regionId;
                }
            }

            if (this.disableAction=='hide') {
                if (this.regionTextEl) {
                    this.regionTextEl.style.display = 'none';
                }

                this.regionSelectEl.style.display = '';
            } else if (this.disableAction=='disable') {
                if (this.regionTextEl) {
                    this.regionTextEl.disabled = true;
                }
                this.regionSelectEl.disabled = false;
            }
            this.setMarkDisplay(this.regionSelectEl, true);
        } else {
            if (this.disableAction=='hide') {
                if (this.regionTextEl) {
                    this.regionTextEl.style.display = '';
                }
                this.regionSelectEl.style.display = 'none';
                Validation.reset(this.regionSelectEl);
            } else if (this.disableAction=='disable') {
                if (this.regionTextEl) {
                    this.regionTextEl.disabled = false;
                }
                this.regionSelectEl.disabled = true;
            } else if (this.disableAction=='nullify') {
                this.regionSelectEl.options.length = 1;
                this.regionSelectEl.value = '';
                this.regionSelectEl.selectedIndex = 0;
                this.lastCountryId = '';
            }
            this.setMarkDisplay(this.regionSelectEl, false);
        }

        // Make Zip and its label required/optional
        var zipUpdater = new ZipUpdater(this.countryEl.value, this.zipEl);
        zipUpdater.update();
    },

    setMarkDisplay: function(elem, display){
        elem = $(elem);
        var labelElement = elem.up(0).down('label > span.required') ||
                           elem.up(1).down('label > span.required') ||
                           elem.up(0).down('label.required > em') ||
                           elem.up(1).down('label.required > em');
        if(labelElement) {
            inputElement = labelElement.up().next('input');
            if (display) {
                labelElement.show();
                if (inputElement) {
                    inputElement.addClassName('required-entry');
                }
            } else {
                labelElement.hide();
                if (inputElement) {
                    inputElement.removeClassName('required-entry');
                }
            }
        }
    }
}

ZipUpdater = Class.create();
ZipUpdater.prototype = {
    initialize: function(country, zipElement)
    {
        this.country = country;
        this.zipElement = $(zipElement);
    },

    update: function()
    {
        // Country ISO 2-letter codes must be pre-defined
        if (typeof optionalZipCountries == 'undefined') {
            return false;
        }

        // Ajax-request and normal content load compatibility
        if (this.zipElement != undefined) {
            this._setPostcodeOptional();
        } else {
            Event.observe(window, "load", this._setPostcodeOptional.bind(this));
        }
    },

    _setPostcodeOptional: function()
    {
        this.zipElement = $(this.zipElement);
        if (this.zipElement == undefined) {
            return false;
        }

        // find label
        var label = $$('label[for="' + this.zipElement.id + '"]')[0];
        if (label != undefined) {
            var wildCard = label.down('em') || label.down('span.required');
        }

        // Make Zip and its label required/optional
        /*
        if (optionalZipCountries.indexOf(this.country) != -1) {        	
            while (this.zipElement.hasClassName('required-entry')) {
                this.zipElement.removeClassName('required-entry');
            }
            if (wildCard != undefined) {
                wildCard.hide();
            }
        } else {
            this.zipElement.addClassName('required-entry');
            if (wildCard != undefined) {
                wildCard.show();
            }
        } */
        
        /*Start GOS Khoi validate*/
		if(this.country == 'AU'){
			wildCard.show();
			jQuery(this.zipElement).attr('class','validate-zip required-entry input-text');
		} else {
			wildCard.hide();
			jQuery(this.zipElement).attr('class','input-text');
		}
		/*End GOS Khoi validate */
    }
}

/**
 * Magento Enterprise Edition
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Magento Enterprise Edition License
 * that is bundled with this package in the file LICENSE_EE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://www.magentocommerce.com/license/enterprise-edition
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @category    Varien
 * @package     js
 * @copyright   Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
 * @license     http://www.magentocommerce.com/license/enterprise-edition
 */

/**
 * @classDescription simple Navigation with replacing old handlers
 * @param {String} id id of ul element with navigation lists
 * @param {Object} settings object with settings
 */
var mainNav = function() {

    var main = {
        obj_nav :   $(arguments[0]) || $("nav"),

        settings :  {
            show_delay      :   0,
            hide_delay      :   0,
            _ie6            :   /MSIE 6.+Win/.test(navigator.userAgent),
            _ie7            :   /MSIE 7.+Win/.test(navigator.userAgent)
        },

        init :  function(obj, level) {
            obj.lists = obj.childElements();
            obj.lists.each(function(el,ind){
                main.handlNavElement(el);
                if((main.settings._ie6 || main.settings._ie7) && level){
                    main.ieFixZIndex(el, ind, obj.lists.size());
                }
            });
            if(main.settings._ie6 && !level){
                document.execCommand("BackgroundImageCache", false, true);
            }
        },

        handlNavElement :   function(list) {
            if(list !== undefined){
                list.onmouseover = function(){
                    main.fireNavEvent(this,true);
                };
                list.onmouseout = function(){
                    main.fireNavEvent(this,false);
                };
                if(list.down("ul")){
                    main.init(list.down("ul"), true);
                }
            }
        },

        ieFixZIndex : function(el, i, l) {
            if(el.tagName.toString().toLowerCase().indexOf("iframe") == -1){
                el.style.zIndex = l - i;
            } else {
                el.onmouseover = "null";
                el.onmouseout = "null";
            }
        },

        fireNavEvent :  function(elm,ev) {
            if(ev){
                elm.addClassName("over");
                elm.down("a").addClassName("over");
                if (elm.childElements()[1]) {
                    main.show(elm.childElements()[1]);
                }
            } else {
                elm.removeClassName("over");
                elm.down("a").removeClassName("over");
                if (elm.childElements()[1]) {
                    main.hide(elm.childElements()[1]);
                }
            }
        },

        show : function (sub_elm) {
            if (sub_elm.hide_time_id) {
                clearTimeout(sub_elm.hide_time_id);
            }
            sub_elm.show_time_id = setTimeout(function() {
                if (!sub_elm.hasClassName("shown-sub")) {
                    sub_elm.addClassName("shown-sub");
                }
            }, main.settings.show_delay);
        },

        hide : function (sub_elm) {
            if (sub_elm.show_time_id) {
                clearTimeout(sub_elm.show_time_id);
            }
            sub_elm.hide_time_id = setTimeout(function(){
                if (sub_elm.hasClassName("shown-sub")) {
                    sub_elm.removeClassName("shown-sub");
                }
            }, main.settings.hide_delay);
        }

    };
    if (arguments[1]) {
        main.settings = Object.extend(main.settings, arguments[1]);
    }
    if (main.obj_nav) {
        main.init(main.obj_nav, false);
    }
};

document.observe("dom:loaded", function() {
    //run navigation without delays and with default id="#nav"
    //mainNav();

    //run navigation with delays
    mainNav("nav", {"show_delay":"100","hide_delay":"100"});
});

/**
 * Magento Enterprise Edition
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Magento Enterprise Edition License
 * that is bundled with this package in the file LICENSE_EE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://www.magentocommerce.com/license/enterprise-edition
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @category    Mage
 * @package     js
 * @copyright   Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
 * @license     http://www.magentocommerce.com/license/enterprise-edition
 */

var Translate = Class.create();
Translate.prototype = {
    initialize: function(data){
        this.data = $H(data);
    },

    translate : function(){
        var args = arguments;
        var text = arguments[0];

        if(this.data.get(text)){
            return this.data.get(text);
        }
        return text;
    },
    add : function() {
        if (arguments.length > 1) {
            this.data.set(arguments[0], arguments[1]);
        } else if (typeof arguments[0] =='object') {
            $H(arguments[0]).each(function (pair){
                this.data.set(pair.key, pair.value);
            }.bind(this));
        }
    }
}

/**
 * Magento Enterprise Edition
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Magento Enterprise Edition License
 * that is bundled with this package in the file LICENSE_EE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://www.magentocommerce.com/license/enterprise-edition
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @category    Mage
 * @package     js
 * @copyright   Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
 * @license     http://www.magentocommerce.com/license/enterprise-edition
 */
// old school cookie functions grabbed off the web

if (!window.Mage) var Mage = {};

Mage.Cookies = {};
Mage.Cookies.expires  = null;
Mage.Cookies.path     = '/';
Mage.Cookies.domain   = null;
Mage.Cookies.secure   = false;
Mage.Cookies.set = function(name, value){
     var argv = arguments;
     var argc = arguments.length;
     var expires = (argc > 2) ? argv[2] : Mage.Cookies.expires;
     var path = (argc > 3) ? argv[3] : Mage.Cookies.path;
     var domain = (argc > 4) ? argv[4] : Mage.Cookies.domain;
     var secure = (argc > 5) ? argv[5] : Mage.Cookies.secure;
     document.cookie = name + "=" + escape (value) +
       ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +
       ((path == null) ? "" : ("; path=" + path)) +
       ((domain == null) ? "" : ("; domain=" + domain)) +
       ((secure == true) ? "; secure" : "");
};

Mage.Cookies.get = function(name){
    var arg = name + "=";
    var alen = arg.length;
    var clen = document.cookie.length;
    var i = 0;
    var j = 0;
    while(i < clen){
        j = i + alen;
        if (document.cookie.substring(i, j) == arg)
            return Mage.Cookies.getCookieVal(j);
        i = document.cookie.indexOf(" ", i) + 1;
        if(i == 0)
            break;
    }
    return null;
};

Mage.Cookies.clear = function(name) {
  if(Mage.Cookies.get(name)){
    document.cookie = name + "=" +
    "; expires=Thu, 01-Jan-70 00:00:01 GMT";
  }
};

Mage.Cookies.getCookieVal = function(offset){
   var endstr = document.cookie.indexOf(";", offset);
   if(endstr == -1){
       endstr = document.cookie.length;
   }
   return unescape(document.cookie.substring(offset, endstr));
};

/*!
 * Copyright (c) 2011 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version ${Version}
 */

var Cufon = (function() {

	var api = function() {
		return api.replace.apply(null, arguments);
	};

	var DOM = api.DOM = {

		ready: (function() {

			var complete = false, readyStatus = { loaded: 1, complete: 1 };

			var queue = [], perform = function() {
				if (complete) return;
				complete = true;
				for (var fn; fn = queue.shift(); fn());
			};

			// Gecko, Opera, WebKit r26101+

			if (document.addEventListener) {
				document.addEventListener('DOMContentLoaded', perform, false);
				window.addEventListener('pageshow', perform, false); // For cached Gecko pages
			}

			// Old WebKit, Internet Explorer

			if (!window.opera && document.readyState) (function() {
				readyStatus[document.readyState] ? perform() : setTimeout(arguments.callee, 10);
			})();

			// Internet Explorer

			if (document.readyState && document.createStyleSheet) (function() {
				try {
					document.body.doScroll('left');
					perform();
				}
				catch (e) {
					setTimeout(arguments.callee, 1);
				}
			})();

			addEvent(window, 'load', perform); // Fallback

			return function(listener) {
				if (!arguments.length) perform();
				else complete ? listener() : queue.push(listener);
			};

		})(),

		root: function() {
			return document.documentElement || document.body;
		},

		strict: (function() {
			var doctype;
			// no doctype (doesn't always catch it though.. IE I'm looking at you)
			if (document.compatMode == 'BackCompat') return false;
			// WebKit, Gecko, Opera, IE9+
			doctype = document.doctype;
			if (doctype) {
				return !/frameset|transitional/i.test(doctype.publicId);
			}
			// IE<9, firstChild is the doctype even if there's an XML declaration
			doctype = document.firstChild;
			if (doctype.nodeType != 8 || /^DOCTYPE.+(transitional|frameset)/i.test(doctype.data)) {
				return false;
			}
			return true;
		})()

	};

	var CSS = api.CSS = {

		Size: function(value, base) {

			this.value = parseFloat(value);
			this.unit = String(value).match(/[a-z%]*$/)[0] || 'px';

			this.convert = function(value) {
				return value / base * this.value;
			};

			this.convertFrom = function(value) {
				return value / this.value * base;
			};

			this.toString = function() {
				return this.value + this.unit;
			};

		},

		addClass: function(el, className) {
			var current = el.className;
			el.className = current + (current && ' ') + className;
			return el;
		},

		color: cached(function(value) {
			var parsed = {};
			parsed.color = value.replace(/^rgba\((.*?),\s*([\d.]+)\)/, function($0, $1, $2) {
				parsed.opacity = parseFloat($2);
				return 'rgb(' + $1 + ')';
			});
			return parsed;
		}),

		// has no direct CSS equivalent.
		// @see http://msdn.microsoft.com/en-us/library/system.windows.fontstretches.aspx
		fontStretch: cached(function(value) {
			if (typeof value == 'number') return value;
			if (/%$/.test(value)) return parseFloat(value) / 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
			}[value] || 1;
		}),

		getStyle: function(el) {
			var view = document.defaultView;
			if (view && view.getComputedStyle) return new Style(view.getComputedStyle(el, null));
			if (el.currentStyle) return new Style(el.currentStyle);
			return new Style(el.style);
		},

		gradient: cached(function(value) {
			var gradient = {
				id: value,
				type: value.match(/^-([a-z]+)-gradient\(/)[1],
				stops: []
			}, colors = value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);
			for (var i = 0, l = colors.length, stop; i < l; ++i) {
				stop = colors[i].split('=', 2).reverse();
				gradient.stops.push([ stop[1] || i / (l - 1), stop[0] ]);
			}
			return gradient;
		}),

		quotedList: cached(function(value) {
			// doesn't work properly with empty quoted strings (""), but
			// it's not worth the extra code.
			var list = [], re = /\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g, match;
			while (match = re.exec(value)) list.push(match[3] || match[1]);
			return list;
		}),

		recognizesMedia: cached(function(media) {
			var el = document.createElement('style'), sheet, container, supported;
			el.type = 'text/css';
			el.media = media;
			try { // this is cached anyway
				el.appendChild(document.createTextNode('/**/'));
			} catch (e) {}
			container = elementsByTagName('head')[0];
			container.insertBefore(el, container.firstChild);
			sheet = (el.sheet || el.styleSheet);
			supported = sheet && !sheet.disabled;
			container.removeChild(el);
			return supported;
		}),

		removeClass: function(el, className) {
			var re = RegExp('(?:^|\\s+)' + className +  '(?=\\s|$)', 'g');
			el.className = el.className.replace(re, '');
			return el;
		},

		supports: function(property, value) {
			var checker = document.createElement('span').style;
			if (checker[property] === undefined) return false;
			checker[property] = value;
			return checker[property] === value;
		},

		textAlign: function(word, style, position, wordCount) {
			if (style.get('textAlign') == 'right') {
				if (position > 0) word = ' ' + word;
			}
			else if (position < wordCount - 1) word += ' ';
			return word;
		},

		textShadow: cached(function(value) {
			if (value == 'none') return null;
			var shadows = [], currentShadow = {}, result, offCount = 0;
			var re = /(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;
			while (result = re.exec(value)) {
				if (result[0] == ',') {
					shadows.push(currentShadow);
					currentShadow = {};
					offCount = 0;
				}
				else if (result[1]) {
					currentShadow.color = result[1];
				}
				else {
					currentShadow[[ 'offX', 'offY', 'blur' ][offCount++]] = result[2];
				}
			}
			shadows.push(currentShadow);
			return shadows;
		}),

		textTransform: (function() {
			var map = {
				uppercase: function(s) {
					return s.toUpperCase();
				},
				lowercase: function(s) {
					return s.toLowerCase();
				},
				capitalize: function(s) {
					return s.replace(/(?:^|\s)./g, function($0) {
						return $0.toUpperCase();
					});
				}
			};
			return function(text, style) {
				var transform = map[style.get('textTransform')];
				return transform ? transform(text) : text;
			};
		})(),

		whiteSpace: (function() {
			var ignore = {
				inline: 1,
				'inline-block': 1,
				'run-in': 1
			};
			var wsStart = /^\s+/, wsEnd = /\s+$/;
			return function(text, style, node, previousElement, simple) {
				if (simple) return text.replace(wsStart, '').replace(wsEnd, ''); // @fixme too simple
				if (previousElement) {
					if (previousElement.nodeName.toLowerCase() == 'br') {
						text = text.replace(wsStart, '');
					}
				}
				if (ignore[style.get('display')]) return text;
				if (!node.previousSibling) text = text.replace(wsStart, '');
				if (!node.nextSibling) text = text.replace(wsEnd, '');
				return text;
			};
		})()

	};

	CSS.ready = (function() {

		// don't do anything in Safari 2 (it doesn't recognize any media type)
		var complete = !CSS.recognizesMedia('all'), hasLayout = false;

		var queue = [], perform = function() {
			complete = true;
			for (var fn; fn = queue.shift(); fn());
		};

		var links = elementsByTagName('link'), styles = elementsByTagName('style');

		var checkTypes = {
			'': 1,
			'text/css': 1
		};

		function isContainerReady(el) {
			if (!checkTypes[el.type.toLowerCase()]) return true;
			return el.disabled || isSheetReady(el.sheet, el.media || 'screen');
		}

		function isSheetReady(sheet, media) {
			// in Opera sheet.disabled is true when it's still loading,
			// even though link.disabled is false. they stay in sync if
			// set manually.
			if (!CSS.recognizesMedia(media || 'all')) return true;
			if (!sheet || sheet.disabled) return false;
			try {
				var rules = sheet.cssRules, rule;
				if (rules) {
					// needed for Safari 3 and Chrome 1.0.
					// in standards-conforming browsers cssRules contains @-rules.
					// Chrome 1.0 weirdness: rules[<number larger than .length - 1>]
					// returns the last rule, so a for loop is the only option.
					search: for (var i = 0, l = rules.length; rule = rules[i], i < l; ++i) {
						switch (rule.type) {
							case 2: // @charset
								break;
							case 3: // @import
								if (!isSheetReady(rule.styleSheet, rule.media.mediaText)) return false;
								break;
							default:
								// only @charset can precede @import
								break search;
						}
					}
				}
			}
			catch (e) {} // probably a style sheet from another domain
			return true;
		}

		function allStylesLoaded() {
			// Internet Explorer's style sheet model, there's no need to do anything
			if (document.createStyleSheet) return true;
			// standards-compliant browsers
			var el, i;
			for (i = 0; el = links[i]; ++i) {
				if (el.rel.toLowerCase() == 'stylesheet' && !isContainerReady(el)) return false;
			}
			for (i = 0; el = styles[i]; ++i) {
				if (!isContainerReady(el)) return false;
			}
			return true;
		}

		DOM.ready(function() {
			// getComputedStyle returns null in Gecko if used in an iframe with display: none
			if (!hasLayout) hasLayout = CSS.getStyle(document.body).isUsable();
			if (complete || (hasLayout && allStylesLoaded())) perform();
			else setTimeout(arguments.callee, 10);
		});

		return function(listener) {
			if (complete) listener();
			else queue.push(listener);
		};

	})();

	function Font(data) {

		var face = this.face = data.face, wordSeparators = {
			'\u0020': 1,
			'\u00a0': 1,
			'\u3000': 1
		};

		this.glyphs = (function(glyphs) {
			var key, fallbacks = {
				'\u2011': '\u002d',
				'\u00ad': '\u2011'
			};
			for (key in fallbacks) {
				if (!hasOwnProperty(fallbacks, key)) continue;
				if (!glyphs[key]) glyphs[key] = glyphs[fallbacks[key]];
			}
			return glyphs;
		})(data.glyphs);

		this.w = data.w;
		this.baseSize = parseInt(face['units-per-em'], 10);

		this.family = face['font-family'].toLowerCase();
		this.weight = face['font-weight'];
		this.style = face['font-style'] || 'normal';

		this.viewBox = (function () {
			var parts = face.bbox.split(/\s+/);
			var box = {
				minX: parseInt(parts[0], 10),
				minY: parseInt(parts[1], 10),
				maxX: parseInt(parts[2], 10),
				maxY: parseInt(parts[3], 10)
			};
			box.width = box.maxX - box.minX;
			box.height = box.maxY - box.minY;
			box.toString = function() {
				return [ this.minX, this.minY, this.width, this.height ].join(' ');
			};
			return box;
		})();

		this.ascent = -parseInt(face.ascent, 10);
		this.descent = -parseInt(face.descent, 10);

		this.height = -this.ascent + this.descent;

		this.spacing = function(chars, letterSpacing, wordSpacing) {
			var glyphs = this.glyphs, glyph,
				kerning, k,
				jumps = [],
				width = 0, w,
				i = -1, j = -1, chr;
			while (chr = chars[++i]) {
				glyph = glyphs[chr] || this.missingGlyph;
				if (!glyph) continue;
				if (kerning) {
					width -= k = kerning[chr] || 0;
					jumps[j] -= k;
				}
				w = glyph.w;
				if (isNaN(w)) w = +this.w; // may have been a String in old fonts
				if (w > 0) {
					w += letterSpacing;
					if (wordSeparators[chr]) w += wordSpacing;
				}
				width += jumps[++j] = ~~w; // get rid of decimals
				kerning = glyph.k;
			}
			jumps.total = width;
			return jumps;
		};

	}

	function FontFamily() {

		var styles = {}, mapping = {
			oblique: 'italic',
			italic: 'oblique'
		};

		this.add = function(font) {
			(styles[font.style] || (styles[font.style] = {}))[font.weight] = font;
		};

		this.get = function(style, weight) {
			var weights = styles[style] || styles[mapping[style]]
				|| styles.normal || styles.italic || styles.oblique;
			if (!weights) return null;
			// we don't have to worry about "bolder" and "lighter"
			// because IE's currentStyle returns a numeric value for it,
			// and other browsers use the computed value anyway
			weight = {
				normal: 400,
				bold: 700
			}[weight] || parseInt(weight, 10);
			if (weights[weight]) return weights[weight];
			// http://www.w3.org/TR/CSS21/fonts.html#propdef-font-weight
			// Gecko uses x99/x01 for lighter/bolder
			var up = {
				1: 1,
				99: 0
			}[weight % 100], alts = [], min, max;
			if (up === undefined) up = weight > 400;
			if (weight == 500) weight = 400;
			for (var alt in weights) {
				if (!hasOwnProperty(weights, alt)) continue;
				alt = parseInt(alt, 10);
				if (!min || alt < min) min = alt;
				if (!max || alt > max) max = alt;
				alts.push(alt);
			}
			if (weight < min) weight = min;
			if (weight > max) weight = max;
			alts.sort(function(a, b) {
				return (up
					? (a >= weight && b >= weight) ? a < b : a > b
					: (a <= weight && b <= weight) ? a > b : a < b) ? -1 : 1;
			});
			return weights[alts[0]];
		};

	}

	function HoverHandler() {

		function contains(node, anotherNode) {
			try {
				if (node.contains) return node.contains(anotherNode);
				return node.compareDocumentPosition(anotherNode) & 16;
			}
			catch(e) {} // probably a XUL element such as a scrollbar
			return false;
		}

		// mouseover/mouseout (standards) mode
		function onOverOut(e) {
			var related = e.relatedTarget;
			// there might be no relatedTarget if the element is right next
			// to the window frame
			if (related && contains(this, related)) return;
			trigger(this, e.type == 'mouseover');
		}

		// mouseenter/mouseleave (probably ie) mode
		function onEnterLeave(e) {
			if (!e) e = window.event;
			// ie model, we don't have access to "this", but
			// mouseenter/leave doesn't bubble so it's fine.
			trigger(e.target || e.srcElement, e.type == 'mouseenter');
		}

		function trigger(el, hoverState) {
			// A timeout is needed so that the event can actually "happen"
			// before replace is triggered. This ensures that styles are up
			// to date.
			setTimeout(function() {
				var options = sharedStorage.get(el).options;
				if (hoverState) {
					options = merge(options, options.hover);
					options._mediatorMode = 1;
				}
				api.replace(el, options, true);
			}, 10);
		}

		this.attach = function(el) {
			if (el.onmouseenter === undefined) {
				addEvent(el, 'mouseover', onOverOut);
				addEvent(el, 'mouseout', onOverOut);
			}
			else {
				addEvent(el, 'mouseenter', onEnterLeave);
				addEvent(el, 'mouseleave', onEnterLeave);
			}
		};

		this.detach = function(el) {
			if (el.onmouseenter === undefined) {
				removeEvent(el, 'mouseover', onOverOut);
				removeEvent(el, 'mouseout', onOverOut);
			}
			else {
				removeEvent(el, 'mouseenter', onEnterLeave);
				removeEvent(el, 'mouseleave', onEnterLeave);
			}
		};

	}

	function ReplaceHistory() {

		var list = [], map = {};

		function filter(keys) {
			var values = [], key;
			for (var i = 0; key = keys[i]; ++i) values[i] = list[map[key]];
			return values;
		}

		this.add = function(key, args) {
			map[key] = list.push(args) - 1;
		};

		this.repeat = function() {
			var snapshot = arguments.length ? filter(arguments) : list, args;
			for (var i = 0; args = snapshot[i++];) api.replace(args[0], args[1], true);
		};

	}

	function Storage() {

		var map = {}, at = 0;

		function identify(el) {
			return el.cufid || (el.cufid = ++at);
		}

		this.get = function(el) {
			var id = identify(el);
			return map[id] || (map[id] = {});
		};

	}

	function Style(style) {

		var custom = {}, sizes = {};

		this.extend = function(styles) {
			for (var property in styles) {
				if (hasOwnProperty(styles, property)) custom[property] = styles[property];
			}
			return this;
		};

		this.get = function(property) {
			return custom[property] != undefined ? custom[property] : style[property];
		};

		this.getSize = function(property, base) {
			return sizes[property] || (sizes[property] = new CSS.Size(this.get(property), base));
		};

		this.isUsable = function() {
			return !!style;
		};

	}

	function addEvent(el, type, listener) {
		if (el.addEventListener) {
			el.addEventListener(type, listener, false);
		}
		else if (el.attachEvent) {
			// we don't really need "this" right now, saves code
			el.attachEvent('on' + type, listener);
		}
	}

	function attach(el, options) {
		if (options._mediatorMode) return el;
		var storage = sharedStorage.get(el);
		var oldOptions = storage.options;
		if (oldOptions) {
			if (oldOptions === options) return el;
			if (oldOptions.hover) hoverHandler.detach(el);
		}
		if (options.hover && options.hoverables[el.nodeName.toLowerCase()]) {
			hoverHandler.attach(el);
		}
		storage.options = options;
		return el;
	}

	function cached(fun) {
		var cache = {};
		return function(key) {
			if (!hasOwnProperty(cache, key)) cache[key] = fun.apply(null, arguments);
			return cache[key];
		};
	}

	function getFont(el, style) {
		var families = CSS.quotedList(style.get('fontFamily').toLowerCase()), family;
		for (var i = 0; family = families[i]; ++i) {
			if (fonts[family]) return fonts[family].get(style.get('fontStyle'), style.get('fontWeight'));
		}
		return null;
	}

	function elementsByTagName(query) {
		return document.getElementsByTagName(query);
	}

	function hasOwnProperty(obj, property) {
		return obj.hasOwnProperty(property);
	}

	function merge() {
		var merged = {}, arg, key;
		for (var i = 0, l = arguments.length; arg = arguments[i], i < l; ++i) {
			for (key in arg) {
				if (hasOwnProperty(arg, key)) merged[key] = arg[key];
			}
		}
		return merged;
	}

	function process(font, text, style, options, node, el) {
		var fragment = document.createDocumentFragment(), processed;
		if (text === '') return fragment;
		var separate = options.separate;
		var parts = text.split(separators[separate]), needsAligning = (separate == 'words');
		if (needsAligning && HAS_BROKEN_REGEXP) {
			// @todo figure out a better way to do this
			if (/^\s/.test(text)) parts.unshift('');
			if (/\s$/.test(text)) parts.push('');
		}
		for (var i = 0, l = parts.length; i < l; ++i) {
			processed = engines[options.engine](font,
				needsAligning ? CSS.textAlign(parts[i], style, i, l) : parts[i],
				style, options, node, el, i < l - 1);
			if (processed) fragment.appendChild(processed);
		}
		return fragment;
	}

	function removeEvent(el, type, listener) {
		if (el.removeEventListener) {
			el.removeEventListener(type, listener, false);
		}
		else if (el.detachEvent) {
			el.detachEvent('on' + type, listener);
		}
	}

	function replaceElement(el, options) {
		var name = el.nodeName.toLowerCase();
		if (options.ignore[name]) return;
		if (options.ignoreClass && options.ignoreClass.test(el.className)) return;
		if (options.onBeforeReplace) options.onBeforeReplace(el, options);
		var replace = !options.textless[name], simple = (options.trim === 'simple');
		var style = CSS.getStyle(attach(el, options)).extend(options);
		// may cause issues if the element contains other elements
		// with larger fontSize, however such cases are rare and can
		// be fixed by using a more specific selector
		if (parseFloat(style.get('fontSize')) === 0) return;
		var font = getFont(el, style), node, type, next, anchor, text, lastElement;
		var isShy = options.softHyphens, anyShy = false, pos, shy, reShy = /\u00ad/g;
		var modifyText = options.modifyText;
		if (!font) return;
		for (node = el.firstChild; node; node = next) {
			type = node.nodeType;
			next = node.nextSibling;
			if (replace && type == 3) {
				if (isShy && el.nodeName.toLowerCase() != TAG_SHY) {
					pos = node.data.indexOf('\u00ad');
					if (pos >= 0) {
						node.splitText(pos);
						next = node.nextSibling;
						next.deleteData(0, 1);
						shy = document.createElement(TAG_SHY);
						shy.appendChild(document.createTextNode('\u00ad'));
						el.insertBefore(shy, next);
						next = shy;
						anyShy = true;
					}
				}
				// Node.normalize() is broken in IE 6, 7, 8
				if (anchor) {
					anchor.appendData(node.data);
					el.removeChild(node);
				}
				else anchor = node;
				if (next) continue;
			}
			if (anchor) {
				text = anchor.data;
				if (!isShy) text = text.replace(reShy, '');
				text = CSS.whiteSpace(text, style, anchor, lastElement, simple);
				// modify text only on the first replace
				if (modifyText) text = modifyText(text, anchor, el, options);
				el.replaceChild(process(font, text, style, options, node, el), anchor);
				anchor = null;
			}
			if (type == 1) {
				if (node.firstChild) {
					if (node.nodeName.toLowerCase() == 'cufon') {
						engines[options.engine](font, null, style, options, node, el);
					}
					else arguments.callee(node, options);
				}
				lastElement = node;
			}
		}
		if (isShy && anyShy) {
			updateShy(el);
			if (!trackingShy) addEvent(window, 'resize', updateShyOnResize);
			trackingShy = true;
		}
		if (options.onAfterReplace) options.onAfterReplace(el, options);
	}

	function updateShy(context) {
		var shys, shy, parent, glue, newGlue, next, prev, i;
		shys = context.getElementsByTagName(TAG_SHY);
		// unfortunately there doesn't seem to be any easy
		// way to avoid having to loop through the shys twice.
		for (i = 0; shy = shys[i]; ++i) {
			shy.className = C_SHY_DISABLED;
			glue = parent = shy.parentNode;
			if (glue.nodeName.toLowerCase() != TAG_GLUE) {
				newGlue = document.createElement(TAG_GLUE);
				newGlue.appendChild(shy.previousSibling);
				parent.insertBefore(newGlue, shy);
				newGlue.appendChild(shy);
			}
			else {
				// get rid of double glue (edge case fix)
				glue = glue.parentNode;
				if (glue.nodeName.toLowerCase() == TAG_GLUE) {
					parent = glue.parentNode;
					while (glue.firstChild) {
						parent.insertBefore(glue.firstChild, glue);
					}
					parent.removeChild(glue);
				}
			}
		}
		for (i = 0; shy = shys[i]; ++i) {
			shy.className = '';
			glue = shy.parentNode;
			parent = glue.parentNode;
			next = glue.nextSibling || parent.nextSibling;
			// make sure we're comparing same types
			prev = (next.nodeName.toLowerCase() == TAG_GLUE) ? glue : shy.previousSibling;
			if (prev.offsetTop >= next.offsetTop) {
				shy.className = C_SHY_DISABLED;
				if (prev.offsetTop < next.offsetTop) {
					// we have an annoying edge case, double the glue
					newGlue = document.createElement(TAG_GLUE);
					parent.insertBefore(newGlue, glue);
					newGlue.appendChild(glue);
					newGlue.appendChild(next);
				}
			}
		}
	}

	function updateShyOnResize() {
		if (ignoreResize) return; // needed for IE
		CSS.addClass(DOM.root(), C_VIEWPORT_RESIZING);
		clearTimeout(shyTimer);
		shyTimer = setTimeout(function() {
			ignoreResize = true;
			CSS.removeClass(DOM.root(), C_VIEWPORT_RESIZING);
			updateShy(document);
			ignoreResize = false;
		}, 100);
	}

	var HAS_BROKEN_REGEXP = ' '.split(/\s+/).length == 0;
	var TAG_GLUE = 'cufonglue';
	var TAG_SHY = 'cufonshy';
	var C_SHY_DISABLED = 'cufon-shy-disabled';
	var C_VIEWPORT_RESIZING = 'cufon-viewport-resizing';

	var sharedStorage = new Storage();
	var hoverHandler = new HoverHandler();
	var replaceHistory = new ReplaceHistory();
	var initialized = false;
	var trackingShy = false;
	var shyTimer;
	var ignoreResize = false;

	var engines = {}, fonts = {}, defaultOptions = {
		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,
			noscript: 1,
			optgroup: 1,
			option: 1,
			script: 1,
			select: 1,
			style: 1,
			textarea: 1,
			title: 1,
			pre: 1
		},
		ignoreClass: null,
		modifyText: null,
		onAfterReplace: null,
		onBeforeReplace: null,
		printable: true,
		selector: (
				window.Sizzle
			||	(window.jQuery && function(query) { return jQuery(query); }) // avoid noConflict issues
			||	(window.dojo && dojo.query)
			||	(window.glow && glow.dom && glow.dom.get)
			||	(window.Ext && Ext.query)
			||	(window.YAHOO && YAHOO.util && YAHOO.util.Selector && YAHOO.util.Selector.query)
			||	(window.$$ && function(query) { return $$(query); })
			||	(window.$ && function(query) { return $(query); })
			||	(document.querySelectorAll && function(query) { return document.querySelectorAll(query); })
			||	elementsByTagName
		),
		separate: 'words', // 'none' and 'characters' are also accepted
		softHyphens: true,
		textless: {
			dl: 1,
			html: 1,
			ol: 1,
			table: 1,
			tbody: 1,
			thead: 1,
			tfoot: 1,
			tr: 1,
			ul: 1
		},
		textShadow: 'none',
		trim: 'advanced'
	};

	var separators = {
		// The first pattern may cause unicode characters above
		// code point 255 to be removed in Safari 3.0. Luckily enough
		// Safari 3.0 does not include non-breaking spaces in \s, so
		// we can just use a simple alternative pattern.
		words: /\s/.test('\u00a0') ? /[^\S\u00a0]+/ : /\s+/,
		characters: '',
		none: /^/
	};

	api.now = function() {
		DOM.ready();
		return api;
	};

	api.refresh = function() {
		replaceHistory.repeat.apply(replaceHistory, arguments);
		return api;
	};

	api.registerEngine = function(id, engine) {
		if (!engine) return api;
		engines[id] = engine;
		return api.set('engine', id);
	};

	api.registerFont = function(data) {
		if (!data) return api;
		var font = new Font(data), family = font.family;
		if (!fonts[family]) fonts[family] = new FontFamily();
		fonts[family].add(font);
		return api.set('fontFamily', '"' + family + '"');
	};

	api.replace = function(elements, options, ignoreHistory) {
		options = merge(defaultOptions, options);
		if (!options.engine) return api; // there's no browser support so we'll just stop here
		if (!initialized) {
			CSS.addClass(DOM.root(), 'cufon-active cufon-loading');
			CSS.ready(function() {
				// fires before any replace() calls, but it doesn't really matter
				CSS.addClass(CSS.removeClass(DOM.root(), 'cufon-loading'), 'cufon-ready');
			});
			initialized = true;
		}
		if (options.hover) options.forceHitArea = true;
		if (options.autoDetect) delete options.fontFamily;
		if (typeof options.ignoreClass == 'string') {
			options.ignoreClass = new RegExp('(?:^|\\s)(?:' + options.ignoreClass.replace(/\s+/g, '|') + ')(?:\\s|$)');
		}
		if (typeof options.textShadow == 'string') {
			options.textShadow = CSS.textShadow(options.textShadow);
		}
		if (typeof options.color == 'string' && /^-/.test(options.color)) {
			options.textGradient = CSS.gradient(options.color);
		}
		else delete options.textGradient;
		if (!ignoreHistory) replaceHistory.add(elements, arguments);
		if (elements.nodeType || typeof elements == 'string') elements = [ elements ];
		CSS.ready(function() {
			for (var i = 0, l = elements.length; i < l; ++i) {
				var el = elements[i];
				if (typeof el == 'string') api.replace(options.selector(el), options, true);
				else replaceElement(el, options);
			}
		});
		return api;
	};

	api.set = function(option, value) {
		defaultOptions[option] = value;
		return api;
	};

	return api;

})();

Cufon.registerEngine('vml', (function() {

	var ns = document.namespaces;
	if (!ns) return;
	ns.add('cvml', 'urn:schemas-microsoft-com:vml');
	ns = null;

	var check = document.createElement('cvml:shape');
	check.style.behavior = 'url(#default#VML)';
	if (!check.coordsize) return; // VML isn't supported
	check = null;

	var HAS_BROKEN_LINEHEIGHT = (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:' +
			(HAS_BROKEN_LINEHEIGHT
				? 'middle'
				: 'text-bottom') +
			';}' +
			'cufon cufontext{position:absolute;left:-10000in;font-size:1px;text-align:left;}' +
			'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}' +
			'cufonglue{white-space:nowrap;display:inline-block;}' +
			'.cufon-viewport-resizing cufonglue{white-space:normal;}' +
			'a cufon{cursor:pointer}' + // ignore !important here
		'}' +
		'@media print{' +
			'cufon cufoncanvas{display:none;}' +
		'}' +
	'</style>').replace(/;/g, '!important;'));

	function getFontSizeInPixels(el, value) {
		return getSizeInPixels(el, /(?:em|ex|%)$|^[a-z-]+$/i.test(value) ? '1em' : value);
	}

	// Original by Dead Edwards.
	// Combined with getFontSizeInPixels it also works with relative units.
	function getSizeInPixels(el, value) {
		if (!isNaN(value) || /px$/i.test(value)) return parseFloat(value);
		var style = el.style.left, runtimeStyle = el.runtimeStyle.left;
		el.runtimeStyle.left = el.currentStyle.left;
		el.style.left = value.replace('%', 'em');
		var result = el.style.pixelLeft;
		el.style.left = style;
		el.runtimeStyle.left = runtimeStyle;
		return result;
	}

	function getSpacingValue(el, style, size, property) {
		var key = 'computed' + property, value = style[key];
		if (isNaN(value)) {
			value = style.get(property);
			style[key] = value = (value == 'normal') ? 0 : ~~size.convertFrom(getSizeInPixels(el, value));
		}
		return value;
	}

	var fills = {};

	function gradientFill(gradient) {
		var id = gradient.id;
		if (!fills[id]) {
			var stops = gradient.stops, fill = document.createElement('cvml:fill'), colors = [];
			fill.type = 'gradient';
			fill.angle = 180;
			fill.focus = '0';
			fill.method = 'none';
			fill.color = stops[0][1];
			for (var j = 1, k = stops.length - 1; j < k; ++j) {
				colors.push(stops[j][0] * 100 + '% ' + stops[j][1]);
			}
			fill.colors = colors.join(',');
			fill.color2 = stops[k][1];
			fills[id] = fill;
		}
		return fills[id];
	}

	return function(font, text, style, options, node, el, hasNext) {

		var redraw = (text === null);

		if (redraw) text = node.alt;

		var viewBox = font.viewBox;

		var size = style.computedFontSize || (style.computedFontSize = new Cufon.CSS.Size(getFontSizeInPixels(el, style.get('fontSize')) + 'px', font.baseSize));

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-vml';
			wrapper.alt = text;

			canvas = document.createElement('cufoncanvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}

			// ie6, for some reason, has trouble rendering the last VML element in the document.
			// we can work around this by injecting a dummy element where needed.
			// @todo find a better solution
			if (!hasNext) wrapper.appendChild(document.createElement('cvml:shape'));
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height), roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var minX = viewBox.minX, minY = viewBox.minY;

		cStyle.height = roundedHeight;
		cStyle.top = Math.round(size.convert(minY - font.ascent));
		cStyle.left = Math.round(size.convert(minX));

		wStyle.height = size.convert(font.height) + 'px';

		var color = style.get('color');
		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			getSpacingValue(el, style, size, 'letterSpacing'),
			getSpacingValue(el, style, size, 'wordSpacing')
		);

		if (!jumps.length) return null;

		var width = jumps.total;
		var fullWidth = -minX + width + (viewBox.width - jumps[jumps.length - 1]);

		var shapeWidth = size.convert(fullWidth * stretchFactor), roundedShapeWidth = Math.round(shapeWidth);

		var coordSize = fullWidth + ',' + viewBox.height, coordOrigin;
		var stretch = 'r' + coordSize + 'ns';

		var fill = options.textGradient && gradientFill(options.textGradient);

		var glyphs = font.glyphs, offsetX = 0;
		var shadows = options.textShadow;
		var i = -1, j = 0, chr;

		while (chr = chars[++i]) {

			var glyph = glyphs[chars[i]] || font.missingGlyph, shape;
			if (!glyph) continue;

			if (redraw) {
				// some glyphs may be missing so we can't use i
				shape = canvas.childNodes[j];
				while (shape.firstChild) shape.removeChild(shape.firstChild); // shadow, fill
			}
			else {
				shape = document.createElement('cvml:shape');
				canvas.appendChild(shape);
			}

			shape.stroked = 'f';
			shape.coordsize = coordSize;
			shape.coordorigin = coordOrigin = (minX - offsetX) + ',' + minY;
			shape.path = (glyph.d ? 'm' + glyph.d + 'xe' : '') + 'm' + coordOrigin + stretch;
			shape.fillcolor = color;

			if (fill) shape.appendChild(fill.cloneNode(false));

			// it's important to not set top/left or IE8 will grind to a halt
			var sStyle = shape.style;
			sStyle.width = roundedShapeWidth;
			sStyle.height = roundedHeight;

			if (shadows) {
				// due to the limitations of the VML shadow element there
				// can only be two visible shadows. opacity is shared
				// for all shadows.
				var shadow1 = shadows[0], shadow2 = shadows[1];
				var color1 = Cufon.CSS.color(shadow1.color), color2;
				var shadow = document.createElement('cvml:shadow');
				shadow.on = 't';
				shadow.color = color1.color;
				shadow.offset = shadow1.offX + ',' + shadow1.offY;
				if (shadow2) {
					color2 = Cufon.CSS.color(shadow2.color);
					shadow.type = 'double';
					shadow.color2 = color2.color;
					shadow.offset2 = shadow2.offX + ',' + shadow2.offY;
				}
				shadow.opacity = color1.opacity || (color2 && color2.opacity) || 1;
				shape.appendChild(shadow);
			}

			offsetX += jumps[j++];
		}

		// addresses flickering issues on :hover

		var cover = shape.nextSibling, coverFill, vStyle;

		if (options.forceHitArea) {

			if (!cover) {
				cover = document.createElement('cvml:rect');
				cover.stroked = 'f';
				cover.className = 'cufon-vml-cover';
				coverFill = document.createElement('cvml:fill');
				coverFill.opacity = 0;
				cover.appendChild(coverFill);
				canvas.appendChild(cover);
			}

			vStyle = cover.style;

			vStyle.width = roundedShapeWidth;
			vStyle.height = roundedHeight;

		}
		else if (cover) canvas.removeChild(cover);

		wStyle.width = Math.max(Math.ceil(size.convert(width * stretchFactor)), 0);

		if (HAS_BROKEN_LINEHEIGHT) {

			var yAdjust = style.computedYAdjust;

			if (yAdjust === undefined) {
				var lineHeight = style.get('lineHeight');
				if (lineHeight == 'normal') lineHeight = '1em';
				else if (!isNaN(lineHeight)) lineHeight += 'em'; // no unit
				style.computedYAdjust = yAdjust = 0.5 * (getSizeInPixels(el, lineHeight) - parseFloat(wStyle.height));
			}

			if (yAdjust) {
				wStyle.marginTop = Math.ceil(yAdjust) + 'px';
				wStyle.marginBottom = yAdjust + 'px';
			}

		}

		return wrapper;

	};

})());

Cufon.registerEngine('canvas', (function() {

	// Safari 2 doesn't support .apply() on native methods

	var check = document.createElement('canvas');
	if (!check || !check.getContext || !check.getContext.apply) return;
	check = null;

	var HAS_INLINE_BLOCK = Cufon.CSS.supports('display', 'inline-block');

	// Firefox 2 w/ non-strict doctype (almost standards mode)
	var HAS_BROKEN_LINEHEIGHT = !HAS_INLINE_BLOCK && (document.compatMode == 'BackCompat' || /frameset|transitional/i.test(document.doctype.publicId));

	var styleSheet = document.createElement('style');
	styleSheet.type = 'text/css';
	styleSheet.appendChild(document.createTextNode((
		'cufon{text-indent:0;}' +
		'@media screen,projection{' +
			'cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;' +
			(HAS_BROKEN_LINEHEIGHT
				? ''
				: 'font-size:1px;line-height:1px;') +
			'}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;text-align:left;text-indent:-10000in;}' +
			(HAS_INLINE_BLOCK
				? 'cufon canvas{position:relative;}'
				: 'cufon canvas{position:absolute;}') +
			'cufonshy.cufon-shy-disabled,.cufon-viewport-resizing cufonshy{display:none;}' +
			'cufonglue{white-space:nowrap;display:inline-block;}' +
			'.cufon-viewport-resizing cufonglue{white-space:normal;}' +
		'}' +
		'@media print{' +
			'cufon{padding:0;}' + // Firefox 2
			'cufon canvas{display:none;}' +
		'}'
	).replace(/;/g, '!important;')));
	document.getElementsByTagName('head')[0].appendChild(styleSheet);

	function generateFromVML(path, context) {
		var atX = 0, atY = 0;
		var code = [], re = /([mrvxe])([^a-z]*)/g, match;
		generate: for (var i = 0; match = re.exec(path); ++i) {
			var c = match[2].split(',');
			switch (match[1]) {
				case 'v':
					code[i] = { m: 'bezierCurveTo', a: [ atX + ~~c[0], atY + ~~c[1], atX + ~~c[2], atY + ~~c[3], atX += ~~c[4], atY += ~~c[5] ] };
					break;
				case 'r':
					code[i] = { m: 'lineTo', a: [ atX += ~~c[0], atY += ~~c[1] ] };
					break;
				case 'm':
					code[i] = { m: 'moveTo', a: [ atX = ~~c[0], atY = ~~c[1] ] };
					break;
				case 'x':
					code[i] = { m: 'closePath' };
					break;
				case 'e':
					break generate;
			}
			context[code[i].m].apply(context, code[i].a);
		}
		return code;
	}

	function interpret(code, context) {
		for (var i = 0, l = code.length; i < l; ++i) {
			var line = code[i];
			context[line.m].apply(context, line.a);
		}
	}

	return function(font, text, style, options, node, el) {

		var redraw = (text === null);

		if (redraw) text = node.getAttribute('alt');

		var viewBox = font.viewBox;

		var size = style.getSize('fontSize', font.baseSize);

		var expandTop = 0, expandRight = 0, expandBottom = 0, expandLeft = 0;
		var shadows = options.textShadow, shadowOffsets = [];
		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				var x = size.convertFrom(parseFloat(shadow.offX));
				var y = size.convertFrom(parseFloat(shadow.offY));
				shadowOffsets[i] = [ x, y ];
				if (y < expandTop) expandTop = y;
				if (x > expandRight) expandRight = x;
				if (y > expandBottom) expandBottom = y;
				if (x < expandLeft) expandLeft = x;
			}
		}

		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			~~size.convertFrom(parseFloat(style.get('letterSpacing')) || 0),
			~~size.convertFrom(parseFloat(style.get('wordSpacing')) || 0)
		);

		if (!jumps.length) return null; // there's nothing to render

		var width = jumps.total;

		expandRight += viewBox.width - jumps[jumps.length - 1];
		expandLeft += viewBox.minX;

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-canvas';
			wrapper.setAttribute('alt', text);

			canvas = document.createElement('canvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height);
		var roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var stretchedWidth = width * stretchFactor;

		var canvasWidth = Math.ceil(size.convert(stretchedWidth + expandRight - expandLeft));
		var canvasHeight = Math.ceil(size.convert(viewBox.height - expandTop + expandBottom));

		canvas.width = canvasWidth;
		canvas.height = canvasHeight;

		// needed for WebKit and full page zoom
		cStyle.width = canvasWidth + 'px';
		cStyle.height = canvasHeight + 'px';

		// minY has no part in canvas.height
		expandTop += viewBox.minY;

		cStyle.top = Math.round(size.convert(expandTop - font.ascent)) + 'px';
		cStyle.left = Math.round(size.convert(expandLeft)) + 'px';

		var wrapperWidth = Math.max(Math.ceil(size.convert(stretchedWidth)), 0) + 'px';

		if (HAS_INLINE_BLOCK) {
			wStyle.width = wrapperWidth;
			wStyle.height = size.convert(font.height) + 'px';
		}
		else {
			wStyle.paddingLeft = wrapperWidth;
			wStyle.paddingBottom = (size.convert(font.height) - 1) + 'px';
		}

		var g = canvas.getContext('2d'), scale = height / viewBox.height;

		// proper horizontal scaling is performed later
		g.scale(scale, scale * roundingFactor);
		g.translate(-expandLeft, -expandTop);
		g.save();

		function renderText() {
			var glyphs = font.glyphs, glyph, i = -1, j = -1, chr;
			g.scale(stretchFactor, 1);
			while (chr = chars[++i]) {
				var glyph = glyphs[chars[i]] || font.missingGlyph;
				if (!glyph) continue;
				if (glyph.d) {
					g.beginPath();
					if (glyph.code) interpret(glyph.code, g);
					else glyph.code = generateFromVML('m' + glyph.d, g);
					g.fill();
				}
				g.translate(jumps[++j], 0);
			}
			g.restore();
		}

		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				g.save();
				g.fillStyle = shadow.color;
				g.translate.apply(g, shadowOffsets[i]);
				renderText();
			}
		}

		var gradient = options.textGradient;
		if (gradient) {
			var stops = gradient.stops, fill = g.createLinearGradient(0, viewBox.minY, 0, viewBox.maxY);
			for (var i = 0, l = stops.length; i < l; ++i) {
				fill.addColorStop.apply(fill, stops[i]);
			}
			g.fillStyle = fill;
		}
		else g.fillStyle = style.get('color');

		renderText();

		return wrapper;

	};

})());
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Digitized data copyright © 2007, Google Corporation.
 * 
 * Trademark:
 * Droid is a trademark of Google and may be registered in certain jurisdictions.
 * 
 * Description:
 * Droid Sans is a humanist sans serif typeface designed for user interfaces and
 * electronic communication.
 * 
 * Manufacturer:
 * Ascender Corporation
 * 
 * Vendor URL:
 * http://www.ascendercorp.com/
 * 
 * License information:
 * http://www.apache.org/licenses/LICENSE-2.0
 */
Cufon.registerFont({"w":198,"face":{"font-family":"Droid Sans","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 6 6 3 8 4 2 2 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-32 -335 315 86.762","underline-thickness":"17.9297","underline-position":"-18.1055","unicode-range":"U+0020-U+00FD"},"glyphs":{" ":{"w":93},"!":{"d":"59,-73r-21,0r-9,-184r39,0xm48,5v-16,1,-22,-10,-22,-25v0,-14,7,-25,22,-24v15,0,22,8,22,24v0,16,-7,25,-22,25","w":96},"\"":{"d":"58,-257r-7,93r-20,0r-8,-93r35,0xm121,-257r-7,93r-20,0r-7,-93r34,0","w":144,"k":{"\u00fd":-7,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00dd":-14,"\u00cd":-7,"\u00cc":-7,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"y":-7,"w":-4,"v":-7,"t":-7,"q":11,"o":11,"g":7,"e":11,"d":11,"c":11,"Z":-7,"Y":-14,"X":-7,"W":-18,"V":-14,"T":-14,"I":-7,"A":14}},"#":{"d":"173,-157r-11,58r49,0r0,24r-54,0r-14,75r-26,0r14,-75r-51,0r-14,75r-25,0r13,-75r-45,0r0,-24r50,0r11,-58r-48,0r0,-24r53,0r14,-76r26,0r-14,76r51,0r15,-76r25,0r-14,76r46,0r0,24r-51,0xm85,-99r51,0r11,-58r-51,0","w":232},"$":{"d":"110,-142v30,13,63,22,63,64v0,38,-28,53,-63,58r0,41r-24,0r0,-39v-24,0,-48,-4,-64,-12r0,-30v20,7,39,15,64,16r0,-77v-32,-12,-62,-22,-62,-64v0,-36,28,-52,62,-57r0,-31r24,0r0,31v23,2,43,5,59,13r-12,26v-14,-6,-29,-11,-47,-13r0,74xm110,-46v33,1,43,-47,15,-59v-4,-2,-9,-5,-15,-7r0,66xm86,-215v-32,1,-41,44,-15,59v4,2,9,4,15,6r0,-65"},"%":{"d":"70,-238v-24,0,-26,28,-26,58v0,30,3,58,26,58v18,0,28,-19,28,-58v0,-38,-10,-58,-28,-58xm70,-261v42,0,54,38,54,81v0,45,-12,81,-54,81v-41,0,-52,-37,-52,-81v0,-45,10,-81,52,-81xm226,-135v-25,1,-27,28,-27,58v0,30,3,57,27,57v18,0,27,-18,27,-57v0,-38,-9,-58,-27,-58xm226,-158v41,0,53,36,53,81v0,45,-11,81,-53,81v-41,0,-53,-36,-53,-81v0,-45,11,-81,53,-81xm234,-257r-143,257r-27,0r142,-257r28,0","w":297},"&":{"d":"107,-235v-47,-2,-34,62,-9,77v19,-11,41,-20,41,-47v0,-18,-13,-29,-32,-30xm53,-68v0,57,83,49,105,17r-68,-71v-19,13,-37,23,-37,54xm178,-30v-37,48,-163,49,-159,-37v2,-41,26,-59,53,-75v-14,-16,-29,-33,-29,-63v0,-39,26,-56,65,-56v38,0,62,18,62,56v0,38,-29,51,-53,67r62,66v11,-13,20,-29,24,-50r33,0v-8,29,-18,53,-38,70r49,52r-40,0","w":252},"'":{"d":"58,-257r-7,93r-20,0r-8,-93r35,0","w":81,"k":{"\u00fd":-7,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00dd":-14,"\u00cd":-7,"\u00cc":-7,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"y":-7,"w":-4,"v":-7,"t":-7,"q":11,"o":11,"g":7,"e":11,"d":11,"c":11,"Z":-7,"Y":-14,"X":-7,"W":-18,"V":-14,"T":-14,"I":-7,"A":14}},"(":{"d":"67,57v-69,-68,-68,-245,0,-314r31,0v-30,41,-51,93,-51,158v0,66,21,116,50,156r-30,0","w":108,"k":{"J":-22}},")":{"d":"41,-257v68,67,70,248,0,314r-30,0v64,-72,65,-240,0,-314r30,0","w":108},"*":{"d":"117,-274r-8,70r70,-20r5,34r-67,5r43,57r-31,17r-31,-63r-28,63r-32,-17r42,-57r-66,-5r6,-34r68,20r-7,-70r36,0"},"+":{"d":"86,-114r-68,0r0,-26r68,0r0,-68r26,0r0,68r68,0r0,26r-68,0r0,68r-26,0r0,-68"},",":{"d":"11,46v7,-28,12,-59,18,-88v12,2,32,-5,37,4v-8,30,-19,60,-31,84r-24,0","w":90,"k":{"\u00dd":18,"\u00da":7,"\u00d9":7,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"Y":18,"W":14,"V":18,"U":7,"T":18,"Q":11,"O":11,"G":11,"C":11}},"-":{"d":"14,-82r0,-29r88,0r0,29r-88,0","w":115,"k":{"T":18}},".":{"d":"48,5v-16,1,-22,-10,-22,-25v0,-14,7,-25,22,-24v15,0,22,8,22,24v0,16,-7,25,-22,25","w":96,"k":{"\u00dd":18,"\u00da":7,"\u00d9":7,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"Y":18,"W":14,"V":18,"U":7,"T":18,"Q":11,"O":11,"G":11,"C":11}},"\/":{"d":"131,-257r-96,257r-31,0r95,-257r32,0","w":134},"0":{"d":"99,-261v67,0,82,61,82,132v0,73,-13,133,-82,133v-67,0,-82,-62,-82,-133v0,-71,13,-132,82,-132xm99,-234v-47,0,-49,52,-49,105v0,52,1,105,49,105v49,0,50,-54,50,-105v0,-52,-2,-105,-50,-105"},"1":{"d":"125,0r-31,0r1,-224v-13,16,-31,28,-47,41r-17,-21r68,-53r26,0r0,257"},"2":{"d":"135,-191v2,-57,-75,-48,-98,-19r-17,-20v36,-44,154,-44,147,38v-7,82,-75,108,-111,163r121,0r0,29r-160,0r0,-27r85,-93v17,-19,32,-38,33,-71"},"3":{"d":"136,-195v0,-54,-80,-43,-104,-17r-17,-22v38,-40,154,-40,154,37v0,39,-26,55,-56,63v38,4,62,23,64,61v3,79,-102,92,-163,63r0,-30v40,22,132,31,130,-34v-1,-44,-44,-47,-90,-46r0,-26v45,2,81,-7,82,-49"},"4":{"d":"191,-58r-37,0r0,58r-31,0r0,-58r-119,0r0,-28r117,-172r33,0r0,171r37,0r0,29xm123,-87v-2,-45,6,-98,0,-138v-23,52,-59,92,-88,138r88,0"},"5":{"d":"59,-154v62,-12,119,8,119,72v0,83,-93,103,-155,72r0,-31v37,26,122,28,122,-38v0,-52,-55,-58,-101,-47r-16,-10r10,-121r121,0r0,29r-93,0"},"6":{"d":"104,4v-61,0,-82,-49,-84,-114v-3,-96,42,-168,142,-147r0,27v-69,-21,-118,30,-107,99v10,-18,26,-30,54,-30v48,1,73,30,73,78v0,52,-26,87,-78,87xm52,-89v0,36,16,66,51,66v34,0,48,-25,48,-60v0,-32,-15,-53,-47,-53v-30,0,-52,18,-52,47"},"7":{"d":"49,0r99,-228r-132,0r0,-29r165,0r0,25r-98,232r-34,0"},"8":{"d":"27,-200v0,-41,31,-61,72,-61v42,0,73,20,73,62v0,35,-22,51,-46,63v26,15,54,31,54,69v0,47,-33,71,-81,71v-48,0,-80,-22,-80,-70v0,-38,24,-55,49,-69v-21,-15,-41,-30,-41,-65xm95,-122v-25,12,-45,25,-45,57v0,29,19,42,49,42v56,0,64,-68,21,-86xm140,-198v0,-24,-16,-36,-41,-36v-48,0,-53,62,-16,76v5,3,11,6,17,9v20,-10,40,-20,40,-49"},"9":{"d":"97,-261v61,0,82,50,84,114v4,97,-43,167,-143,147r0,-27v70,21,118,-32,108,-99v-11,17,-26,31,-54,30v-48,-1,-73,-29,-73,-78v0,-53,26,-87,78,-87xm149,-168v0,-35,-15,-66,-52,-66v-33,0,-48,24,-47,60v0,32,14,53,46,53v31,0,53,-18,53,-47"},":":{"d":"48,5v-16,1,-22,-10,-22,-25v0,-14,7,-25,22,-24v15,0,22,8,22,24v0,16,-7,25,-22,25xm48,-149v-15,1,-22,-10,-22,-24v0,-16,6,-26,22,-25v16,0,22,8,22,25v0,16,-7,24,-22,24","w":96},";":{"d":"11,46v7,-28,12,-59,18,-88v12,2,32,-5,37,4v-8,30,-19,60,-31,84r-24,0xm48,-149v-15,1,-22,-10,-22,-24v0,-16,6,-26,22,-25v16,0,22,8,22,25v0,16,-7,24,-22,24","w":96},"<":{"d":"180,-42r-162,-74r0,-18r162,-85r0,28r-129,64r129,57r0,28"},"=":{"d":"18,-150r0,-26r162,0r0,26r-162,0xm18,-78r0,-26r162,0r0,26r-162,0"},">":{"d":"18,-70r129,-57r-129,-64r0,-28r162,85r0,18r-162,74r0,-28"},"?":{"d":"7,-243v53,-36,155,-16,132,69v-12,44,-64,47,-65,101r-25,0v-6,-67,60,-63,62,-122v1,-49,-66,-41,-93,-22xm63,5v-16,1,-22,-10,-22,-25v0,-14,7,-25,22,-24v15,0,23,9,23,24v0,15,-7,25,-23,25","w":153},"@":{"d":"167,-257v80,0,126,49,126,129v0,46,-14,87,-61,89v-22,0,-32,-14,-37,-31v-9,17,-23,32,-50,31v-39,-2,-55,-28,-57,-68v-3,-70,66,-95,129,-72r-4,87v1,17,4,30,21,30v29,0,33,-36,33,-67v0,-66,-36,-104,-100,-104v-82,0,-122,51,-122,131v0,71,36,109,107,110v29,0,55,-7,76,-15r0,25v-20,8,-47,15,-76,14v-86,-2,-133,-47,-133,-133v0,-94,53,-156,148,-156xm189,-161v-43,-13,-73,12,-73,55v0,28,9,43,33,44v45,0,36,-56,40,-99","w":311},"A":{"d":"185,0r-28,-80r-95,0r-29,80r-33,0r94,-258r30,0r95,258r-34,0xm147,-109r-38,-114v-10,40,-24,77,-37,114r75,0","w":218,"k":{"\u00dd":18,"\u00da":4,"\u00d9":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"Y":18,"W":7,"V":11,"U":4,"T":22,"Q":4,"O":4,"G":4,"C":4,"'":14,"\"":14}},"B":{"d":"204,-75v2,82,-86,77,-169,75r0,-257v75,1,163,-12,162,65v-1,34,-24,49,-52,57v34,5,58,21,59,60xm163,-190v0,-46,-50,-39,-95,-39r0,81v46,0,95,7,95,-42xm169,-76v0,-49,-52,-46,-101,-45r0,93v51,1,101,4,101,-48","w":223,"k":{"\u00dd":4,"Y":4,"X":4,"V":4,"T":4,"I":4}},"C":{"d":"193,-218v-14,-7,-32,-15,-54,-14v-58,2,-82,43,-82,104v0,62,22,102,82,103v22,0,40,-5,58,-10r0,28v-18,8,-38,11,-63,11v-79,0,-109,-53,-112,-133v-4,-105,89,-160,185,-117","w":217,"k":{"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"}":-7,"]":-7,"Q":7,"O":7,"G":7,"C":7,")":-7,"'":-7,"\"":-7}},"D":{"d":"107,-257v78,2,115,47,117,126v2,110,-73,141,-189,131r0,-257r72,0xm68,-28v80,6,122,-26,122,-102v0,-76,-41,-107,-122,-99r0,201","w":246,"k":{"\u00dd":7,"\u00cd":4,"\u00cc":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Z":4,"Y":7,"X":4,"W":4,"V":4,"T":11,"I":4,"A":4,".":11,",":11}},"E":{"d":"168,0r-133,0r0,-257r133,0r0,29r-100,0r0,79r94,0r0,29r-94,0r0,91r100,0r0,29","w":190},"F":{"d":"68,0r-33,0r0,-257r133,0r0,29r-100,0r0,91r94,0r0,28r-94,0r0,109","w":176,"k":{"\u00dd":-4,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"}":-7,"]":-7,"Y":-4,"W":-4,"V":-4,"A":7,"?":-7,".":18,",":18,")":-7,"'":-11,"\"":-11}},"G":{"d":"57,-128v0,82,54,117,133,98r0,-77r-53,0r0,-29r86,0r0,126v-25,8,-53,15,-87,14v-77,-2,-110,-54,-114,-133v-5,-110,99,-158,196,-117r-12,29v-17,-8,-37,-15,-61,-15v-61,1,-88,41,-88,104","w":248},"H":{"d":"217,0r-32,0r0,-120r-117,0r0,120r-33,0r0,-257r33,0r0,108r117,0r0,-108r32,0r0,257","w":252},"I":{"d":"108,0r-94,0r0,-18r31,-7r0,-207r-31,-7r0,-18r94,0r0,18r-31,7r0,207r31,7r0,18","w":121,"k":{"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"Q":4,"O":4,"G":4,"C":4,"'":-7,"\"":-7}},"J":{"d":"65,-4v4,57,-45,83,-97,68r0,-28v30,10,64,2,64,-36r0,-257r33,0r0,253","w":97},"K":{"d":"208,0r-37,0r-79,-123r-24,20r0,103r-33,0r0,-257r33,0r0,129v31,-45,67,-86,100,-129r37,0r-91,112","w":208,"k":{"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"Q":7,"O":7,"G":7,"C":7,"'":-7,"\"":-7}},"L":{"d":"35,0r0,-257r33,0r0,228r100,0r0,29r-133,0","w":176,"k":{"\u00dd":18,"\u00da":4,"\u00d9":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"Y":18,"W":11,"V":14,"U":4,"T":22,"Q":4,"O":4,"G":4,"C":4,"'":18,"\"":18}},"M":{"d":"141,0r-79,-225r3,71r0,154r-30,0r0,-257r48,0r74,210r73,-210r48,0r0,257r-32,0r1,-225r-79,225r-27,0","w":313},"N":{"d":"227,0r-37,0r-128,-213r3,213r-30,0r0,-257r37,0r126,212r2,0r-3,-212r30,0r0,257","w":262},"O":{"d":"134,-261v78,0,111,54,111,132v0,79,-34,133,-111,133v-79,0,-112,-53,-112,-133v0,-79,32,-132,112,-132xm134,-232v-58,0,-77,43,-77,103v0,60,18,104,77,104v58,0,76,-44,76,-104v0,-60,-18,-103,-76,-103","w":267,"k":{"\u00dd":7,"\u00cd":4,"\u00cc":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"I":4,"A":4,".":11,",":11}},"P":{"d":"35,-257v78,-2,156,-4,154,75v-2,65,-49,87,-121,82r0,100r-33,0r0,-257xm155,-180v0,-47,-39,-51,-87,-49r0,101v49,2,87,-4,87,-52","w":207,"k":{"\u00dd":4,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"Z":7,"Y":4,"X":4,"C":4,"A":14,".":36,",":36}},"Q":{"d":"134,-261v137,-8,143,223,44,257v11,23,27,38,48,52r-22,25v-24,-17,-45,-40,-57,-70v-86,7,-125,-49,-125,-132v0,-79,32,-127,112,-132xm134,-232v-58,0,-77,43,-77,103v0,60,18,104,77,104v58,0,76,-44,76,-104v0,-60,-18,-103,-76,-103","w":266,"k":{"\u00dd":7,"\u00cd":4,"\u00cc":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"I":4,"A":4,".":11,",":11}},"R":{"d":"189,-184v0,40,-23,58,-51,69r70,115r-38,0r-62,-106r-40,0r0,106r-33,0r0,-257v78,-2,154,-4,154,73xm155,-182v0,-47,-40,-48,-87,-47r0,95v47,2,87,-1,87,-48","w":212,"k":{"T":4}},"S":{"d":"53,-195v5,72,117,41,117,126v0,76,-95,85,-152,60r0,-31v38,21,139,29,118,-42v-26,-47,-114,-32,-114,-113v0,-72,91,-77,144,-52r-12,28v-30,-16,-105,-24,-101,24","w":186},"T":{"d":"110,0r-33,0r0,-228r-73,0r0,-29r179,0r0,29r-73,0r0,228","w":186,"k":{"\u00fd":11,"\u00fa":14,"\u00f9":14,"\u00f5":22,"\u00f4":22,"\u00f3":22,"\u00f2":22,"\u00ea":22,"\u00e9":22,"\u00e8":22,"\u00e3":22,"\u00e2":22,"\u00e1":22,"\u00e0":22,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00c3":22,"\u00c2":22,"\u00c1":22,"\u00c0":22,"z":11,"y":11,"x":11,"w":11,"v":11,"u":14,"s":22,"r":14,"q":22,"p":14,"o":22,"n":14,"m":14,"g":18,"e":22,"d":22,"c":22,"a":22,"T":-4,"S":4,"Q":11,"O":11,"G":11,"C":11,"A":22,"?":-7,".":18,"-":18,",":18,"'":-14,"\"":-14}},"U":{"d":"126,-25v41,0,59,-25,60,-65r0,-167r33,0r0,166v-1,60,-34,95,-94,95v-60,0,-93,-35,-93,-95r0,-166r33,0r0,167v0,42,19,65,61,65","w":251,"k":{"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"A":4,".":7,",":7}},"V":{"d":"170,-257r34,0r-86,257r-32,0r-86,-257r35,0r67,222v19,-77,45,-148,68,-222","w":204,"k":{"\u00fa":7,"\u00f9":7,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e3":11,"\u00e2":11,"\u00e1":11,"\u00e0":11,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"u":7,"s":7,"r":7,"q":11,"p":7,"o":11,"n":7,"m":7,"g":11,"e":11,"d":11,"c":11,"a":11,"Q":7,"O":7,"G":7,"C":7,"A":11,"?":-7,".":18,",":18,"'":-14,"\"":-14}},"W":{"d":"142,-257r35,0r57,222v9,-80,31,-148,46,-222r35,0r-65,257r-33,0r-58,-220v-14,77,-37,146,-55,220r-33,0r-67,-257r34,0r51,222v12,-80,35,-148,53,-222","w":318,"k":{"\u00fa":4,"\u00f9":4,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"z":4,"u":4,"s":7,"r":4,"q":7,"p":4,"o":7,"n":4,"m":4,"g":4,"e":7,"d":7,"c":7,"a":7,"Q":4,"O":4,"G":4,"C":4,"A":7,".":14,",":14,"'":-18,"\"":-18}},"X":{"d":"197,0r-37,0r-62,-112r-65,112r-33,0r80,-134r-75,-123r35,0r59,98r58,-98r34,0r-74,122","w":196,"k":{"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"q":4,"o":4,"e":4,"d":4,"c":4,"Q":7,"O":7,"G":7,"C":7,"'":-7,"\"":-7}},"Y":{"d":"95,-127r60,-130r35,0r-79,157r0,100r-33,0r0,-98r-78,-159r36,0","w":189,"k":{"\u00fd":4,"\u00fa":11,"\u00f9":11,"\u00f5":18,"\u00f4":18,"\u00f3":18,"\u00f2":18,"\u00ea":18,"\u00e9":18,"\u00e8":18,"\u00e3":18,"\u00e2":18,"\u00e1":18,"\u00e0":18,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c3":18,"\u00c2":18,"\u00c1":18,"\u00c0":18,"z":11,"y":4,"x":7,"u":11,"s":14,"r":11,"q":18,"p":11,"o":18,"n":11,"m":11,"g":18,"e":18,"d":18,"c":18,"a":18,"S":4,"Q":7,"O":7,"G":7,"C":7,"A":18,"?":-7,".":18,",":18,"'":-14,"\"":-14}},"Z":{"d":"180,0r-166,0r0,-25r125,-203r-121,0r0,-29r158,0r0,25r-125,203r129,0r0,29","w":194,"k":{"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"Q":4,"O":4,"G":4,"C":4,"'":-7,"\"":-7}},"[":{"d":"100,57r-71,0r0,-314r71,0r0,26r-39,0r0,262r39,0r0,26","w":109,"k":{"J":-22}},"\\":{"d":"35,-257r96,257r-31,0r-96,-257r31,0","w":134},"]":{"d":"9,31r39,0r0,-262r-39,0r0,-26r71,0r0,314r-71,0r0,-26","w":109},"^":{"d":"7,-97r81,-162r18,0r78,162r-28,0r-59,-129r-61,129r-29,0","w":191},"_":{"d":"149,57r-150,0r0,-25r150,0r0,25","w":148},"`":{"d":"108,-276v7,21,24,36,30,58r-21,0v-16,-17,-40,-33,-48,-58r39,0","w":207},"a":{"d":"30,-180v45,-28,132,-27,132,48r0,132r-23,0v-3,-8,-2,-22,-8,-27v-20,45,-114,43,-114,-27v0,-55,55,-62,114,-62v2,-33,-6,-54,-38,-54v-22,0,-36,7,-52,14xm50,-54v0,22,12,32,31,32v38,0,53,-29,50,-72v-40,1,-81,0,-81,40","w":191,"k":{"'":7}},"b":{"d":"61,-168v15,-13,28,-30,57,-29v53,2,73,43,73,100v0,58,-20,101,-73,101v-26,0,-43,-12,-55,-28v-8,3,-5,17,-9,24r-23,0r0,-274r32,0xm158,-97v0,-42,-8,-73,-46,-73v-41,0,-49,30,-49,73v0,43,8,74,49,74v37,0,46,-33,46,-74","w":210,"k":{"'":7}},"c":{"d":"151,-7v-63,31,-131,-7,-131,-88v0,-82,63,-123,135,-91r-10,27v-47,-23,-100,-1,-92,63v-7,67,49,85,98,61r0,28","w":166,"k":{"'":-11,"\"":-11}},"d":{"d":"93,-197v28,-1,43,15,57,29v-3,-33,-2,-70,-2,-106r32,0r0,274r-25,0v-3,-8,-1,-21,-7,-26v-11,17,-28,30,-55,30v-53,0,-73,-43,-73,-100v0,-58,20,-98,73,-101xm53,-96v0,42,8,72,46,73v42,1,49,-31,49,-73v0,-43,-8,-74,-49,-74v-37,0,-46,33,-46,74","w":210},"e":{"d":"166,-9v-67,32,-152,0,-146,-86v4,-58,23,-102,80,-102v57,0,78,45,75,107r-122,0v-7,69,63,78,113,52r0,29xm140,-116v7,-47,-45,-70,-73,-40v-8,9,-12,23,-13,40r86,0","w":192,"k":{"'":7}},"f":{"d":"124,-244v-33,-16,-62,4,-53,51r43,0r0,24r-43,0r0,169r-32,0r0,-169r-34,0r0,-13r34,-12v-10,-66,34,-95,93,-75","w":118,"k":{"\u00fd":-4,"y":-4,"w":-4,"v":-4,"'":-18,"\"":-18}},"g":{"d":"22,-130v-3,-53,44,-77,93,-63r64,0r0,20r-34,5v29,45,-3,113,-69,98v-15,4,-25,37,0,37v49,0,103,0,101,53v-2,51,-41,67,-96,66v-43,0,-73,-12,-74,-53v0,-30,19,-42,42,-48v-10,-3,-18,-14,-17,-27v0,-19,10,-25,23,-34v-20,-8,-32,-27,-33,-54xm105,-3v-36,0,-69,-2,-68,35v1,23,19,30,44,30v37,0,66,-9,66,-39v0,-23,-17,-26,-42,-26xm89,-173v-26,0,-36,15,-36,42v0,25,11,40,36,40v25,0,36,-14,36,-40v0,-27,-10,-42,-36,-42","w":186,"k":{"g":-4,"'":-7,"\"":-7}},"h":{"d":"118,-197v91,-6,60,115,65,197r-32,0r0,-124v0,-28,-10,-47,-38,-46v-73,0,-44,102,-50,170r-32,0r0,-274r32,0v1,34,-6,77,0,107v11,-18,28,-29,55,-30","w":211,"k":{"'":11}},"i":{"d":"63,0r-32,0r0,-193r32,0r0,193xm47,-225v-11,0,-20,-6,-19,-20v-1,-14,7,-20,19,-20v13,0,18,8,19,20v1,13,-8,20,-19,20","w":93},"j":{"d":"63,28v4,45,-34,68,-75,54r0,-26v20,9,43,2,43,-26r0,-223r32,0r0,221xm47,-225v-11,0,-20,-6,-19,-20v-1,-14,7,-20,19,-20v13,0,18,8,19,20v1,13,-8,20,-19,20","w":93},"k":{"d":"59,-100r76,-93r37,0r-70,83r75,110r-37,0r-59,-89r-19,15r0,74r-31,0r0,-274r31,0r0,126","w":178,"k":{"'":-7,"\"":-7}},"l":{"d":"63,0r-32,0r0,-274r32,0r0,274","w":93},"m":{"d":"232,-197v89,-4,56,117,62,197r-32,0r0,-124v0,-28,-9,-47,-36,-46v-72,0,-41,104,-48,170r-32,0r0,-124v0,-28,-9,-47,-36,-46v-70,1,-41,103,-47,170r-32,0r0,-193r26,0v3,8,0,21,6,26v16,-39,96,-39,110,2v11,-19,30,-31,59,-32","w":322,"k":{"'":7}},"n":{"d":"118,-197v91,-6,60,115,65,197r-32,0r0,-124v0,-28,-10,-47,-38,-46v-73,0,-44,102,-50,170r-32,0r0,-193r26,0v3,8,0,21,6,26v11,-18,28,-29,55,-30","w":211,"k":{"'":7}},"o":{"d":"104,-197v57,0,84,40,84,100v0,61,-26,101,-85,101v-56,0,-83,-41,-83,-101v0,-60,26,-100,84,-100xm104,-170v-40,0,-51,29,-51,73v0,44,11,74,51,74v40,0,51,-30,51,-74v0,-44,-11,-73,-51,-73","w":207,"k":{"z":4,"x":7}},"p":{"d":"191,-97v0,58,-20,101,-73,101v-26,0,-43,-12,-55,-28r-3,0v5,33,2,73,3,110r-32,0r0,-279r26,0v3,8,0,21,6,26v10,-17,28,-30,55,-30v53,0,73,43,73,100xm158,-97v0,-42,-8,-72,-46,-73v-42,-1,-49,31,-49,73v0,43,8,74,49,74v37,0,46,-33,46,-74","w":210},"q":{"d":"53,-96v0,42,8,72,46,73v42,1,49,-31,49,-73v0,-43,-8,-74,-49,-74v-37,0,-46,33,-46,74xm150,-26v-15,13,-28,32,-57,30v-53,-3,-73,-43,-73,-100v0,-58,20,-98,73,-101v29,-1,43,16,57,30r5,-26r25,0r0,279r-32,0","w":210},"r":{"d":"62,-158v13,-24,34,-46,74,-37r-4,30v-44,-11,-69,18,-69,61r0,104r-32,0r0,-193r26,0v3,11,-1,28,5,35","w":143,"k":{"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"g":4,"a":4,"'":-18,"\"":-18}},"s":{"d":"133,-157v-26,-21,-110,-16,-75,29v30,23,86,23,88,75v2,63,-87,67,-130,44r0,-29v23,15,95,29,99,-12v-10,-52,-96,-30,-96,-95v0,-60,84,-60,125,-38","w":162,"k":{"'":-11,"\"":-11}},"t":{"d":"65,-57v-3,31,21,40,50,31r0,24v-42,17,-82,-3,-82,-55r0,-112r-27,0r0,-14r27,-14r14,-40r18,0r0,44r49,0r0,24r-49,0r0,112","w":121,"k":{"t":-4,"'":-14,"\"":-14}},"u":{"d":"99,-23v73,0,44,-102,50,-170r32,0r0,193r-25,0v-3,-8,-1,-21,-7,-26v-11,18,-28,29,-55,30v-91,5,-60,-115,-65,-197r32,0r0,124v0,28,10,47,38,46","w":211},"v":{"d":"66,0r-66,-193r33,0r54,172v14,-60,34,-116,52,-172r33,0r-65,193r-41,0","w":172,"k":{"f":-4,"'":-14,"\"":-14}},"w":{"d":"177,0r-44,-163r-43,163r-37,0r-49,-193r33,0r36,168v12,-59,28,-113,44,-168r35,0r43,168r37,-168r33,0r-50,193r-38,0","w":268,"k":{"f":-4,"'":-14,"\"":-14}},"x":{"d":"72,-99r-62,-94r36,0r44,72r44,-72r36,0r-62,94r65,99r-36,0r-47,-77r-47,77r-37,0","w":180,"k":{"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"o":7,"'":-7,"\"":-7}},"y":{"d":"98,25v-10,41,-42,73,-93,58r0,-25v28,8,52,-5,60,-28r10,-28r-73,-195r33,0r55,166v14,-60,34,-110,51,-166r33,0","w":175,"k":{"f":-4,"'":-11,"\"":-11}},"z":{"d":"144,0r-130,0r0,-22r95,-147r-89,0r0,-24r121,0r0,26r-92,143r95,0r0,24","w":158,"k":{"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"o":4}},"{":{"d":"47,-99v46,2,42,53,41,102v-1,21,11,27,30,28r0,26v-36,-1,-63,-14,-62,-52v0,-46,9,-98,-45,-91r0,-28v95,14,-13,-143,107,-143r0,26v-42,-4,-30,49,-30,86v0,29,-21,37,-41,46","w":127,"k":{"J":-22}},"|":{"d":"86,-274r26,0r0,360r-26,0r0,-360"},"}":{"d":"9,31v42,3,31,-49,31,-86v0,-30,21,-37,41,-46v-47,-2,-41,-53,-41,-102v0,-20,-12,-27,-31,-28r0,-26v37,1,63,15,63,52v0,47,-9,100,45,91r0,28v-28,0,-45,6,-45,33v3,58,3,114,-63,110r0,-26","w":127},"~":{"d":"18,-131v43,-54,121,35,162,-20r0,29v-34,40,-82,-2,-122,-2v-19,0,-29,12,-40,21r0,-28"},"\u00c0":{"d":"185,0r-28,-80r-95,0r-29,80r-33,0r94,-258r30,0r95,258r-34,0xm147,-109r-38,-114v-10,40,-24,77,-37,114r75,0xm96,-335v7,21,24,36,30,58r-21,0v-16,-17,-40,-33,-48,-58r39,0","w":218,"k":{"\u00fd":7,"\u00dd":18,"\u00da":4,"\u00d9":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c0":7,"y":7,"w":4,"v":7,"t":4,"f":4,"Z":-10,"Y":18,"W":7,"V":11,"U":4,"T":22,"Q":4,"O":4,"J":-17,"G":4,"C":4,"?":11,";":-12,",":-12,"*":22,"'":14,"\"":14}},"\u00c1":{"d":"163,-335v-8,24,-32,40,-48,57r-21,0v7,-21,23,-36,30,-57r39,0xm185,0r-28,-80r-95,0r-29,80r-33,0r94,-258r30,0r95,258r-34,0xm147,-109r-38,-114v-10,40,-24,77,-37,114r75,0","w":218,"k":{"\u00fd":7,"\u00dd":18,"\u00da":4,"\u00d9":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"y":7,"w":4,"v":7,"t":4,"f":4,"Z":-10,"Y":18,"W":7,"V":11,"U":4,"T":22,"Q":4,"O":4,"G":4,"C":4,"?":11,";":-12,",":-12,"*":22,"'":14,"\"":14}},"\u00c2":{"d":"109,-310v-17,13,-24,36,-58,32v8,-21,32,-36,41,-57r34,0v9,22,33,36,42,57v-34,4,-42,-19,-59,-32xm185,0r-28,-80r-95,0r-29,80r-33,0r94,-258r30,0r95,258r-34,0xm147,-109r-38,-114v-10,40,-24,77,-37,114r75,0","w":218,"k":{"\u00fd":7,"\u00dd":18,"\u00da":4,"\u00d9":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"y":7,"w":4,"v":7,"t":4,"f":4,"Z":-10,"Y":18,"W":7,"V":11,"U":4,"T":22,"Q":4,"O":4,"G":4,"C":4,"?":11,";":-12,",":-12,"*":22,"'":14,"\"":14}},"\u00c3":{"d":"173,-324v-3,24,-12,46,-37,46v-26,0,-62,-42,-71,0r-19,0v3,-24,12,-46,37,-46v27,0,62,42,71,0r19,0xm185,0r-28,-80r-95,0r-29,80r-33,0r94,-258r30,0r95,258r-34,0xm147,-109r-38,-114v-10,40,-24,77,-37,114r75,0","w":218,"k":{"\u00fd":7,"\u00dd":18,"\u00da":4,"\u00d9":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c0":7,"y":7,"w":4,"v":7,"t":4,"f":4,"Z":-10,"Y":18,"W":7,"V":11,"U":4,"T":22,"Q":4,"O":4,"J":-17,"G":4,"C":4,"?":11,";":-12,",":-12,"*":22,"'":14,"\"":14}},"\u00c8":{"d":"168,0r-133,0r0,-257r133,0r0,29r-100,0r0,79r94,0r0,29r-94,0r0,91r100,0r0,29xm95,-335v7,21,24,36,30,58r-21,0v-16,-17,-40,-33,-48,-58r39,0","w":190,"k":{"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00cd":4,"\u00c8":4,"\u00c2":4,"Q":4,"O":4,"C":4,"-":7,"'":-7,"\"":-7}},"\u00c9":{"d":"149,-335v-8,24,-31,42,-48,57r-21,0v8,-21,22,-37,31,-57r38,0xm168,0r-133,0r0,-257r133,0r0,29r-100,0r0,79r94,0r0,29r-94,0r0,91r100,0r0,29","w":190,"k":{"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c9":4,"Q":4,"O":4,"C":4,"-":7,"'":-7,"\"":-7}},"\u00ca":{"d":"101,-310v-17,13,-24,36,-58,32v8,-21,32,-36,41,-57r34,0v9,22,32,34,41,57v-34,4,-41,-19,-58,-32xm168,0r-133,0r0,-257r133,0r0,29r-100,0r0,79r94,0r0,29r-94,0r0,91r100,0r0,29","w":190,"k":{"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00cd":4,"\u00c8":4,"\u00c2":4,"Q":4,"O":4,"C":4,"-":7,"'":-7,"\"":-7}},"\u00cc":{"d":"108,0r-94,0r0,-18r31,-7r0,-207r-31,-7r0,-18r94,0r0,18r-31,7r0,207r31,7r0,18xm50,-335v7,21,24,36,30,58r-21,0v-16,-17,-40,-33,-48,-58r39,0","w":121,"k":{"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"Q":4,"O":4,"G":4,"C":4,"'":-7,"\"":-7}},"\u00cd":{"d":"114,-335v-8,24,-31,42,-48,57r-21,0v8,-21,22,-37,31,-57r38,0xm108,0r-94,0r0,-18r31,-7r0,-207r-31,-7r0,-18r94,0r0,18r-31,7r0,207r31,7r0,18","w":121,"k":{"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"Q":4,"O":4,"G":4,"C":4,"'":-7,"\"":-7}},"\u00d2":{"d":"134,-261v78,0,111,54,111,132v0,79,-34,133,-111,133v-79,0,-112,-53,-112,-133v0,-79,32,-132,112,-132xm134,-232v-58,0,-77,43,-77,103v0,60,18,104,77,104v58,0,76,-44,76,-104v0,-60,-18,-103,-76,-103xm123,-335v7,21,24,36,30,58r-21,0v-16,-17,-40,-33,-48,-58r39,0","w":267,"k":{"\u00dd":7,"\u00cd":4,"\u00cc":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"}":7,"]":7,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"S":4,"J":2,"I":4,"A":4,".":11,",":11,")":7}},"\u00d3":{"d":"184,-335v-9,23,-32,41,-48,57r-22,0v7,-22,24,-35,31,-57r39,0xm134,-261v78,0,111,54,111,132v0,79,-34,133,-111,133v-79,0,-112,-53,-112,-133v0,-79,32,-132,112,-132xm134,-232v-58,0,-77,43,-77,103v0,60,18,104,77,104v58,0,76,-44,76,-104v0,-60,-18,-103,-76,-103","w":267,"k":{"\u00dd":7,"\u00cd":4,"\u00cc":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"}":7,"]":7,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"S":4,"J":2,"I":4,"A":4,".":11,",":11,")":7}},"\u00d4":{"d":"134,-310v-17,13,-24,36,-58,32v8,-21,32,-36,41,-57r34,0v9,22,33,36,42,57v-34,4,-42,-19,-59,-32xm134,-261v78,0,111,54,111,132v0,79,-34,133,-111,133v-79,0,-112,-53,-112,-133v0,-79,32,-132,112,-132xm134,-232v-58,0,-77,43,-77,103v0,60,18,104,77,104v58,0,76,-44,76,-104v0,-60,-18,-103,-76,-103","w":267,"k":{"\u00dd":7,"\u00cd":4,"\u00cc":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"}":7,"]":7,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"S":4,"J":2,"I":4,"A":4,".":11,",":11,")":7}},"\u00d5":{"d":"194,-324v-3,24,-12,46,-37,46v-26,0,-62,-42,-71,0r-19,0v3,-24,12,-46,37,-46v28,0,61,42,71,0r19,0xm134,-261v78,0,111,54,111,132v0,79,-34,133,-111,133v-79,0,-112,-53,-112,-133v0,-79,32,-132,112,-132xm134,-232v-58,0,-77,43,-77,103v0,60,18,104,77,104v58,0,76,-44,76,-104v0,-60,-18,-103,-76,-103","w":267,"k":{"\u00dd":7,"\u00cd":4,"\u00cc":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"}":7,"]":7,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"S":4,"J":2,"I":4,"A":4,".":11,",":11,")":7}},"\u00d9":{"d":"126,-25v41,0,59,-25,60,-65r0,-167r33,0r0,166v-1,60,-34,95,-94,95v-60,0,-93,-35,-93,-95r0,-166r33,0r0,167v0,42,19,65,61,65xm119,-335v7,21,24,36,30,58r-21,0v-16,-17,-40,-33,-48,-58r39,0","w":251,"k":{"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"a":4,"Z":4,"M":4,"A":4,".":7,",":7}},"\u00da":{"d":"173,-335v-9,23,-32,41,-48,57r-21,0v7,-21,23,-36,30,-57r39,0xm126,-25v41,0,59,-25,60,-65r0,-167r33,0r0,166v-1,60,-34,95,-94,95v-60,0,-93,-35,-93,-95r0,-166r33,0r0,167v0,42,19,65,61,65","w":251,"k":{"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"a":4,"Z":4,"M":4,"A":4,".":7,",":7}},"\u00dd":{"d":"147,-335v-9,23,-32,41,-48,57r-21,0v7,-21,23,-36,30,-57r39,0xm95,-127r60,-130r35,0r-79,157r0,100r-33,0r0,-98r-78,-159r36,0","w":189,"k":{"\u00fd":4,"\u00fa":11,"\u00f9":11,"\u00f5":18,"\u00f4":18,"\u00f3":18,"\u00f2":18,"\u00ea":18,"\u00e9":18,"\u00e8":18,"\u00e3":18,"\u00e2":18,"\u00e1":18,"\u00e0":18,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c3":18,"\u00c2":18,"\u00c1":18,"\u00c0":18,"}":-11,"z":11,"y":4,"x":7,"w":4,"v":7,"u":11,"s":14,"r":11,"q":18,"p":11,"o":18,"n":11,"m":11,"g":18,"f":5,"e":18,"d":18,"c":18,"a":18,"]":-11,"W":-4,"V":-7,"T":-7,"S":4,"Q":7,"O":7,"M":11,"J":12,"G":7,"C":7,"A":18,"?":-7,".":18,"-":18,",":18,"*":-7,")":-11,"'":-14,"&":11,"\"":-14}},"\u00e0":{"d":"30,-180v45,-28,132,-27,132,48r0,132r-23,0v-3,-8,-2,-22,-8,-27v-20,45,-114,43,-114,-27v0,-55,55,-62,114,-62v2,-33,-6,-54,-38,-54v-22,0,-36,7,-52,14xm50,-54v0,22,12,32,31,32v38,0,53,-29,50,-72v-40,1,-81,0,-81,40xm89,-276v7,21,24,36,30,58r-21,0v-16,-17,-40,-33,-48,-58r39,0","w":191,"k":{"'":7}},"\u00e1":{"d":"147,-276v-7,25,-31,41,-47,58r-22,0v7,-23,23,-36,31,-58r38,0xm30,-180v45,-28,132,-27,132,48r0,132r-23,0v-3,-8,-2,-22,-8,-27v-20,45,-114,43,-114,-27v0,-55,55,-62,114,-62v2,-33,-6,-54,-38,-54v-22,0,-36,7,-52,14xm50,-54v0,22,12,32,31,32v38,0,53,-29,50,-72v-40,1,-81,0,-81,40","w":191,"k":{"'":7}},"\u00e2":{"d":"115,-276v10,20,28,38,42,53r0,5v-34,4,-41,-20,-59,-33v-17,13,-24,37,-58,33v8,-23,33,-36,42,-58r33,0xm30,-180v45,-28,132,-27,132,48r0,132r-23,0v-3,-8,-2,-22,-8,-27v-20,45,-114,43,-114,-27v0,-55,55,-62,114,-62v2,-33,-6,-54,-38,-54v-22,0,-36,7,-52,14xm50,-54v0,22,12,32,31,32v38,0,53,-29,50,-72v-40,1,-81,0,-81,40","w":191,"k":{"'":7}},"\u00e3":{"d":"71,-265v25,0,62,41,71,0r18,0v-3,25,-12,47,-37,47v-25,0,-62,-41,-71,0r-18,0v2,-26,12,-47,37,-47xm30,-180v45,-28,132,-27,132,48r0,132r-23,0v-3,-8,-2,-22,-8,-27v-20,45,-114,43,-114,-27v0,-55,55,-62,114,-62v2,-33,-6,-54,-38,-54v-22,0,-36,7,-52,14xm50,-54v0,22,12,32,31,32v38,0,53,-29,50,-72v-40,1,-81,0,-81,40","w":191,"k":{"'":7}},"\u00e8":{"d":"166,-9v-67,32,-152,0,-146,-86v4,-58,23,-102,80,-102v57,0,78,45,75,107r-122,0v-7,69,63,78,113,52r0,29xm140,-116v7,-47,-45,-70,-73,-40v-8,9,-12,23,-13,40r86,0xm89,-276v7,21,24,36,30,58r-21,0v-16,-17,-40,-33,-48,-58r39,0","w":192,"k":{"'":7,"\"":18}},"\u00e9":{"d":"153,-276v-8,24,-32,41,-48,58r-22,0v6,-23,24,-35,31,-58r39,0xm166,-9v-67,32,-152,0,-146,-86v4,-58,23,-102,80,-102v57,0,78,45,75,107r-122,0v-7,69,63,78,113,52r0,29xm140,-116v7,-47,-45,-70,-73,-40v-8,9,-12,23,-13,40r86,0","w":192,"k":{"'":7,"\"":18}},"\u00ea":{"d":"39,-223v15,-15,31,-33,42,-53r34,0v11,20,27,36,41,53r0,5v-33,4,-41,-19,-58,-33v-18,13,-24,38,-59,33r0,-5xm166,-9v-67,32,-152,0,-146,-86v4,-58,23,-102,80,-102v57,0,78,45,75,107r-122,0v-7,69,63,78,113,52r0,29xm140,-116v7,-47,-45,-70,-73,-40v-8,9,-12,23,-13,40r86,0","w":192,"k":{"'":7,"\"":18}},"\u00ec":{"d":"63,0r-32,0r0,-193r32,0r0,193xm33,-276v7,21,24,36,30,58r-21,0v-16,-17,-40,-33,-48,-58r39,0","w":93},"\u00ed":{"d":"63,0r-32,0r0,-193r32,0r0,193xm102,-276v-8,24,-32,41,-48,58r-21,0v6,-23,23,-36,30,-58r39,0","w":93},"\u00f2":{"d":"104,-197v57,0,84,40,84,100v0,61,-26,101,-85,101v-56,0,-83,-41,-83,-101v0,-60,26,-100,84,-100xm104,-170v-40,0,-51,29,-51,73v0,44,11,74,51,74v40,0,51,-30,51,-74v0,-44,-11,-73,-51,-73xm101,-276v7,21,24,36,30,58r-21,0v-16,-17,-40,-33,-48,-58r39,0","w":207,"k":{"z":4,"x":7,"f":7,"'":25,"\"":25}},"\u00f3":{"d":"152,-276v-7,25,-31,42,-48,58r-21,0v7,-23,23,-37,31,-58r38,0xm104,-197v57,0,84,40,84,100v0,61,-26,101,-85,101v-56,0,-83,-41,-83,-101v0,-60,26,-100,84,-100xm104,-170v-40,0,-51,29,-51,73v0,44,11,74,51,74v40,0,51,-30,51,-74v0,-44,-11,-73,-51,-73","w":207,"k":{"z":4,"x":7,"f":7,"'":25,"\"":25}},"\u00f4":{"d":"44,-223v15,-15,31,-33,42,-53r34,0v11,20,27,36,41,53r0,5v-33,4,-41,-19,-58,-33v-18,13,-24,38,-59,33r0,-5xm104,-197v57,0,84,40,84,100v0,61,-26,101,-85,101v-56,0,-83,-41,-83,-101v0,-60,26,-100,84,-100xm104,-170v-40,0,-51,29,-51,73v0,44,11,74,51,74v40,0,51,-30,51,-74v0,-44,-11,-73,-51,-73","w":207,"k":{"z":4,"x":7,"f":7,"'":25,"\"":25}},"\u00f5":{"d":"77,-265v26,0,62,41,71,0r18,0v-2,26,-12,45,-37,47v-25,-3,-62,-41,-71,0r-18,0v3,-25,12,-47,37,-47xm104,-197v57,0,84,40,84,100v0,61,-26,101,-85,101v-56,0,-83,-41,-83,-101v0,-60,26,-100,84,-100xm104,-170v-40,0,-51,29,-51,73v0,44,11,74,51,74v40,0,51,-30,51,-74v0,-44,-11,-73,-51,-73","w":207,"k":{"z":4,"x":7,"f":7,"'":25,"\"":25}},"\u00f9":{"d":"99,-23v73,0,44,-102,50,-170r32,0r0,193r-25,0v-3,-8,-1,-21,-7,-26v-11,18,-28,29,-55,30v-91,5,-60,-115,-65,-197r32,0r0,124v0,28,10,47,38,46xm92,-276v7,21,24,36,30,58r-21,0v-16,-17,-40,-33,-48,-58r39,0","w":211,"k":{"'":12,"\"":12}},"\u00fa":{"d":"155,-276v-7,25,-32,41,-48,58r-21,0v7,-23,23,-37,31,-58r38,0xm99,-23v73,0,44,-102,50,-170r32,0r0,193r-25,0v-3,-8,-1,-21,-7,-26v-11,18,-28,29,-55,30v-91,5,-60,-115,-65,-197r32,0r0,124v0,28,10,47,38,46","w":211,"k":{"'":12,"\"":12}},"\u00fd":{"d":"141,-276v-8,24,-32,41,-48,58r-21,0v6,-23,23,-36,30,-58r39,0xm98,25v-10,41,-42,73,-93,58r0,-25v28,8,52,-5,60,-28r10,-28r-73,-195r33,0r55,166v14,-60,34,-110,51,-166r33,0","w":175,"k":{"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"t":-1,"q":2,"o":2,"g":2,"f":-4,"e":2,"d":2,"c":2,"?":13,".":12,",":12,"'":-11,"\"":-11}},"\u00a0":{"w":93}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Digitized data copyright © 2007, Google Corporation.
 * 
 * Trademark:
 * Droid is a trademark of Google and may be registered in certain jurisdictions.
 * 
 * Description:
 * Droid Sans is a humanist sans serif typeface designed for user interfaces and
 * electronic communication.
 * 
 * Manufacturer:
 * Ascender Corporation
 * 
 * Vendor URL:
 * http://www.ascendercorp.com/
 * 
 * License information:
 * http://www.apache.org/licenses/LICENSE-2.0
 */
Cufon.registerFont({"w":198,"face":{"font-family":"Droid Sans","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 6 3 8 4 2 2 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-35 -335 334 86.1209","underline-thickness":"17.9297","underline-position":"-18.1055","unicode-range":"U+0020-U+00FD"},"glyphs":{" ":{"w":93},"!":{"d":"73,-85r-43,0r-9,-172r61,0xm52,5v-19,0,-31,-10,-31,-30v0,-21,12,-30,31,-30v18,0,30,9,30,30v0,20,-12,30,-30,30","w":103},"\"":{"d":"72,-257r-7,93r-34,0r-8,-93r49,0xm147,-257r-8,93r-34,0r-7,-93r49,0","w":169,"k":{"\u00fd":-7,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00dd":-14,"\u00cd":-7,"\u00cc":-7,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"y":-7,"w":-4,"v":-7,"t":-7,"q":11,"o":11,"g":7,"e":11,"d":11,"c":11,"Z":-7,"Y":-14,"X":-7,"W":-18,"V":-14,"T":-14,"I":-7,"A":14}},"#":{"d":"176,-148r-9,40r46,0r0,37r-53,0r-13,71r-39,0r14,-71r-34,0r-13,71r-38,0r13,-71r-42,0r0,-37r49,0r8,-40r-44,0r0,-37r50,0r14,-72r38,0r-13,72r35,0r13,-72r38,0r-14,72r43,0r0,37r-49,0xm95,-108r34,0r8,-40r-34,0","w":232},"$":{"d":"17,-184v0,-42,33,-56,72,-62r0,-28r24,0r0,27v24,2,45,5,65,15r-18,42v-14,-7,-30,-12,-47,-13r0,51v33,15,74,25,74,72v0,43,-32,61,-74,65r0,36r-24,0r0,-35v-28,-2,-52,-6,-71,-16r0,-46v20,9,43,19,71,20r0,-56v-35,-14,-72,-26,-72,-72xm113,-58v23,1,27,-31,10,-39v-3,-1,-6,-3,-10,-5r0,44xm89,-203v-26,1,-23,38,0,41r0,-41"},"%":{"d":"72,-224v-25,3,-24,85,0,88v27,0,20,-92,0,-88xm72,-261v45,0,61,34,61,81v0,48,-16,81,-61,81v-45,0,-61,-34,-61,-81v0,-47,15,-81,61,-81xm250,-257r-142,257r-42,0r142,-257r42,0xm245,-121v-25,3,-24,85,0,88v27,0,20,-92,0,-88xm245,-158v45,1,61,34,61,80v0,46,-14,81,-61,81v-46,0,-61,-35,-61,-81v0,-46,13,-81,61,-80","w":317},"&":{"d":"249,-138v-10,32,-21,62,-39,87r49,51r-66,0r-17,-18v-49,39,-164,25,-162,-51v1,-39,21,-58,46,-73v-13,-15,-24,-34,-24,-60v0,-40,31,-59,73,-59v39,0,69,17,69,56v0,37,-25,56,-50,70r46,47v8,-15,15,-32,19,-50r56,0xm90,-110v-28,16,-24,69,18,69v15,0,26,-5,36,-11xm101,-164v25,-5,42,-51,7,-54v-31,-1,-24,41,-7,54","w":259},"'":{"d":"72,-257r-7,93r-34,0r-8,-93r49,0","w":95,"k":{"\u00fd":-7,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00dd":-14,"\u00cd":-7,"\u00cc":-7,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"y":-7,"w":-4,"v":-7,"t":-7,"q":11,"o":11,"g":7,"e":11,"d":11,"c":11,"Z":-7,"Y":-14,"X":-7,"W":-18,"V":-14,"T":-14,"I":-7,"A":14}},"(":{"d":"67,57v-69,-68,-68,-245,0,-314r44,0v-64,74,-65,242,0,314r-44,0","w":121,"k":{"J":-22}},")":{"d":"55,-257v67,69,69,246,0,314r-44,0v64,-72,65,-240,0,-314r44,0","w":121},"*":{"d":"121,-274r-7,65r65,-18r6,44r-60,4r40,53r-40,21r-28,-55r-24,55r-41,-21r38,-53r-59,-4r7,-44r64,18r-7,-65r46,0","w":196},"+":{"d":"80,-108r-65,0r0,-38r65,0r0,-65r38,0r0,65r65,0r0,38r-65,0r0,64r-38,0r0,-64"},",":{"d":"11,46v7,-28,12,-59,18,-88v17,2,42,-5,52,4v-8,29,-19,60,-31,84r-39,0","w":104,"k":{"\u00dd":18,"\u00da":7,"\u00d9":7,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"Y":18,"W":14,"V":18,"U":7,"T":18,"Q":11,"O":11,"G":11,"C":11}},"-":{"d":"11,-75r0,-43r94,0r0,43r-94,0","w":115,"k":{"T":18}},".":{"d":"52,5v-19,0,-31,-10,-31,-30v0,-21,12,-30,31,-30v18,0,30,9,30,30v0,20,-12,30,-30,30","w":102,"k":{"\u00dd":18,"\u00da":7,"\u00d9":7,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"Y":18,"W":14,"V":18,"U":7,"T":18,"Q":11,"O":11,"G":11,"C":11}},"\/":{"d":"147,-257r-96,257r-49,0r96,-257r49,0","w":148},"0":{"d":"99,-261v70,0,88,60,88,133v0,73,-17,132,-88,132v-69,0,-88,-59,-88,-132v0,-74,16,-133,88,-133xm99,-217v-35,5,-34,48,-34,89v0,44,1,83,34,88v33,-5,34,-43,34,-88v0,-44,-1,-84,-34,-89"},"1":{"d":"144,0r-55,0r2,-200v-15,16,-32,28,-48,42r-27,-33r83,-66r45,0r0,257"},"2":{"d":"14,-224v37,-51,172,-54,166,36v-5,71,-65,96,-98,142r105,0r0,46r-173,0r0,-38r82,-88v15,-17,30,-33,30,-62v0,-46,-66,-23,-83,-1"},"3":{"d":"10,-235v42,-36,167,-42,167,35v1,41,-28,54,-56,66v37,5,62,21,63,59v4,83,-109,92,-174,65r0,-47v31,19,121,35,120,-21v-2,-35,-42,-35,-80,-35r0,-38v38,0,73,-1,73,-37v0,-43,-67,-30,-85,-11"},"4":{"d":"191,-53r-31,0r0,53r-53,0r0,-53r-106,0r0,-38r109,-166r50,0r0,162r31,0r0,42xm107,-95r1,-98v-17,36,-39,66,-59,98r58,0"},"5":{"d":"73,-160v57,-15,110,13,110,74v0,88,-97,106,-168,76r0,-47v31,18,113,33,113,-24v0,-42,-51,-44,-86,-33r-22,-12r10,-131r136,0r0,46r-89,0"},"6":{"d":"104,4v-64,0,-89,-46,-91,-113v-2,-101,50,-166,157,-148r0,43v-63,-15,-119,15,-108,77v10,-18,26,-30,54,-30v49,1,72,32,72,81v0,56,-30,90,-84,90xm67,-90v3,25,9,50,36,50v23,0,32,-19,32,-45v0,-24,-8,-40,-32,-40v-22,1,-34,15,-36,35"},"7":{"d":"36,0r92,-211r-118,0r0,-46r177,0r0,34r-94,223r-57,0"},"8":{"d":"21,-199v0,-43,35,-61,78,-61v45,0,79,17,79,62v0,35,-22,50,-46,62v26,15,54,31,54,69v0,48,-37,71,-87,71v-50,0,-86,-19,-86,-69v0,-38,22,-57,49,-69v-21,-15,-41,-30,-41,-65xm97,-112v-17,9,-34,19,-34,44v0,22,15,31,36,32v42,4,45,-51,14,-65v-7,-3,-8,-8,-16,-11xm99,-158v28,-6,42,-61,0,-63v-32,-1,-34,47,-10,56v3,2,6,5,10,7"},"9":{"d":"95,-260v64,0,88,47,90,113v3,103,-49,165,-156,148r0,-44v60,17,119,-16,108,-76v-10,17,-27,30,-54,30v-48,0,-72,-32,-72,-82v0,-55,29,-89,84,-89xm131,-167v0,-25,-9,-48,-35,-49v-25,0,-32,19,-32,45v1,23,9,40,31,40v22,0,36,-14,36,-36"},":":{"d":"52,5v-19,0,-31,-10,-31,-30v0,-21,12,-30,31,-30v18,0,30,9,30,30v0,20,-12,30,-30,30xm52,-140v-19,0,-31,-10,-31,-30v0,-21,10,-31,31,-30v20,0,30,9,30,30v0,20,-12,30,-30,30","w":102},";":{"d":"11,46v7,-28,12,-59,18,-88v17,2,42,-5,52,4v-8,29,-19,60,-31,84r-39,0xm52,-140v-19,0,-31,-10,-31,-30v0,-21,10,-31,31,-30v20,0,30,9,30,30v0,20,-12,30,-30,30","w":104},"<":{"d":"183,-36r-168,-77r0,-25r168,-87r0,42r-113,56r113,49r0,42"},"=":{"d":"15,-142r0,-38r168,0r0,38r-168,0xm15,-73r0,-39r168,0r0,39r-168,0"},">":{"d":"15,-78r113,-49r-113,-56r0,-42r168,87r0,25r-168,77r0,-42"},"?":{"d":"4,-239v51,-38,172,-28,149,62v-11,41,-63,39,-60,92r-47,0v-8,-64,52,-61,59,-109v-4,-39,-61,-18,-83,-6xm72,5v-19,0,-31,-10,-31,-30v0,-21,13,-30,31,-30v18,0,30,9,30,30v0,20,-12,30,-30,30","w":165},"@":{"d":"167,-260v80,0,127,47,127,128v0,48,-18,91,-65,91v-18,0,-32,-9,-37,-23v-15,8,-23,24,-47,23v-42,-1,-60,-28,-61,-70v-2,-73,69,-96,138,-73r-4,86v0,13,1,24,13,25v22,-5,25,-34,25,-60v0,-58,-32,-94,-89,-94v-73,0,-105,47,-110,120v-7,98,95,119,175,84r0,34v-21,10,-48,17,-79,16v-87,-1,-135,-46,-135,-133v0,-95,53,-154,149,-154xm181,-159v-36,-10,-58,15,-56,49v0,21,6,37,24,37v36,0,29,-50,32,-86","w":311},"A":{"d":"179,0r-18,-61r-88,0r-18,61r-55,0r83,-258r67,0r84,258r-55,0xm149,-107r-32,-115r-31,115r63,0","w":233,"k":{"\u00dd":18,"\u00da":4,"\u00d9":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"Y":18,"W":7,"V":11,"U":4,"T":22,"Q":4,"O":4,"G":4,"C":4,"'":14,"\"":14}},"B":{"d":"212,-75v1,86,-94,76,-180,75r0,-257v78,2,173,-15,173,65v0,32,-16,49,-39,57v29,5,46,25,46,60xm151,-185v0,-32,-33,-27,-64,-27r0,57v32,0,64,3,64,-30xm157,-80v0,-35,-35,-33,-70,-32r0,67v37,1,70,2,70,-35","w":231,"k":{"\u00dd":4,"Y":4,"X":4,"V":4,"T":4,"I":4}},"C":{"d":"199,-198v-17,-8,-36,-17,-57,-17v-48,0,-64,38,-65,87v0,50,15,86,65,86v25,0,44,-6,65,-13r0,45v-21,8,-43,14,-71,14v-79,-2,-111,-51,-115,-132v-5,-111,101,-162,196,-115","w":229,"k":{"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"}":-7,"]":-7,"Q":7,"O":7,"G":7,"C":7,")":-7,"'":-7,"\"":-7}},"D":{"d":"108,-257v81,1,121,46,123,126v2,112,-79,141,-199,131r0,-257r76,0xm87,-45v63,5,89,-24,89,-85v0,-59,-26,-88,-89,-82r0,167","w":252,"k":{"\u00dd":7,"\u00cd":4,"\u00cc":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Z":4,"Y":7,"X":4,"W":4,"V":4,"T":11,"I":4,"A":4,".":11,",":11}},"E":{"d":"180,0r-148,0r0,-257r148,0r0,45r-93,0r0,56r87,0r0,45r-87,0r0,66r93,0r0,45","w":201},"F":{"d":"86,0r-54,0r0,-257r148,0r0,45r-94,0r0,66r87,0r0,44r-87,0r0,102","w":197,"k":{"\u00dd":-4,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"}":-7,"]":-7,"Y":-4,"W":-4,"V":-4,"A":7,"?":-7,".":18,",":18,")":-7,"'":-11,"\"":-11}},"G":{"d":"77,-128v0,64,37,98,102,83r0,-54r-49,0r0,-45r102,0r0,133v-27,8,-57,15,-92,15v-82,0,-116,-50,-119,-133v-5,-115,111,-156,211,-116r-19,44v-58,-32,-136,-6,-136,73","w":260},"H":{"d":"229,0r-55,0r0,-111r-87,0r0,111r-55,0r0,-257r55,0r0,101r87,0r0,-101r55,0r0,257","w":261},"I":{"d":"128,0r-116,0r0,-31r31,-14r0,-167r-31,-14r0,-31r116,0r0,31r-31,14r0,167r31,14r0,31","w":140,"k":{"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"Q":4,"O":4,"G":4,"C":4,"'":-7,"\"":-7}},"J":{"d":"-35,26v30,9,67,4,67,-34r0,-249r55,0r0,248v1,69,-54,95,-122,81r0,-46","w":119},"K":{"d":"228,0r-62,0r-59,-107r-20,15r0,92r-55,0r0,-257r55,0r0,124v24,-44,53,-83,80,-124r60,0r-82,116","w":228,"k":{"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"Q":7,"O":7,"G":7,"C":7,"'":-7,"\"":-7}},"L":{"d":"32,0r0,-257r55,0r0,212r93,0r0,45r-148,0","w":192,"k":{"\u00dd":18,"\u00da":4,"\u00d9":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"Y":18,"W":11,"V":14,"U":4,"T":22,"Q":4,"O":4,"G":4,"C":4,"'":18,"\"":18}},"M":{"d":"136,0r-58,-202r3,202r-49,0r0,-257r75,0r56,197r59,-197r74,0r0,257r-50,0r1,-201r-61,201r-50,0","w":328},"N":{"d":"249,0r-69,0r-102,-194r3,194r-49,0r0,-257r69,0r102,192r-2,-192r48,0r0,257","w":281},"O":{"d":"136,-261v82,0,115,52,115,132v0,81,-35,133,-115,133v-80,0,-115,-52,-115,-133v0,-80,34,-131,115,-132xm136,-216v-46,0,-59,40,-59,87v0,47,12,87,59,87v47,0,59,-39,59,-87v0,-48,-13,-87,-59,-87","w":272,"k":{"\u00dd":7,"\u00cd":4,"\u00cc":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"I":4,"A":4,".":11,",":11}},"P":{"d":"144,-175v0,-33,-23,-39,-57,-37r0,76v34,1,57,-6,57,-39xm32,-257v84,-2,170,-5,167,80v-2,63,-43,89,-112,86r0,91r-55,0r0,-257","w":215,"k":{"\u00dd":4,"\u00c3":14,"\u00c2":14,"\u00c1":14,"\u00c0":14,"Z":7,"Y":4,"X":4,"C":4,"A":14,".":36,",":36}},"Q":{"d":"136,-261v82,0,113,52,115,132v1,58,-18,99,-56,119r64,71r-70,0v-19,-17,-28,-50,-53,-57v-80,-2,-115,-52,-115,-133v0,-80,34,-131,115,-132xm136,-216v-46,0,-59,40,-59,87v0,47,12,87,59,87v47,0,59,-39,59,-87v0,-48,-13,-87,-59,-87","w":272,"k":{"\u00dd":7,"\u00cd":4,"\u00cc":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"I":4,"A":4,".":11,",":11}},"R":{"d":"144,-179v0,-31,-24,-34,-57,-33r0,69v34,2,57,-4,57,-36xm199,-180v-2,36,-18,55,-42,68r70,112r-61,0r-55,-99r-24,0r0,99r-55,0r0,-257v83,-2,171,-7,167,77","w":226,"k":{"T":4}},"S":{"d":"155,-200v-25,-17,-95,-28,-80,23v28,39,98,38,98,106v0,78,-100,90,-156,59r0,-51v20,10,41,20,69,22v32,3,45,-34,22,-51v-33,-27,-88,-33,-88,-96v0,-79,95,-86,152,-55","w":188},"T":{"d":"126,0r-54,0r0,-212r-65,0r0,-45r183,0r0,45r-64,0r0,212","w":197,"k":{"\u00fd":11,"\u00fa":14,"\u00f9":14,"\u00f5":22,"\u00f4":22,"\u00f3":22,"\u00f2":22,"\u00ea":22,"\u00e9":22,"\u00e8":22,"\u00e3":22,"\u00e2":22,"\u00e1":22,"\u00e0":22,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00c3":22,"\u00c2":22,"\u00c1":22,"\u00c0":22,"z":11,"y":11,"x":11,"w":11,"v":11,"u":14,"s":22,"r":14,"q":22,"p":14,"o":22,"n":14,"m":14,"g":18,"e":22,"d":22,"c":22,"a":22,"T":-4,"S":4,"Q":11,"O":11,"G":11,"C":11,"A":22,"?":-7,".":18,"-":18,",":18,"'":-14,"\"":-14}},"U":{"d":"129,-42v32,-1,45,-20,44,-54r0,-161r54,0r0,166v-1,62,-37,95,-99,95v-62,0,-96,-33,-97,-95r0,-166r54,0r0,162v0,32,12,53,44,53","w":257,"k":{"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"A":4,".":7,",":7}},"V":{"d":"165,-257r55,0r-81,257r-59,0r-80,-257r55,0r55,211v15,-74,36,-141,55,-211","w":219,"k":{"\u00fa":7,"\u00f9":7,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e3":11,"\u00e2":11,"\u00e1":11,"\u00e0":11,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"u":7,"s":7,"r":7,"q":11,"p":7,"o":11,"n":7,"m":7,"g":11,"e":11,"d":11,"c":11,"a":11,"Q":7,"O":7,"G":7,"C":7,"A":11,"?":-7,".":18,",":18,"'":-14,"\"":-14}},"W":{"d":"95,-45v11,-75,31,-142,48,-212r48,0r47,212r42,-212r54,0r-62,257r-62,0r-43,-190v-11,67,-28,128,-43,190r-62,0r-62,-257r54,0","w":333,"k":{"\u00fa":4,"\u00f9":4,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"z":4,"u":4,"s":7,"r":4,"q":7,"p":4,"o":7,"n":4,"m":4,"g":4,"e":7,"d":7,"c":7,"a":7,"Q":4,"O":4,"G":4,"C":4,"A":7,".":14,",":14,"'":-18,"\"":-18}},"X":{"d":"226,0r-63,0r-52,-97r-53,97r-58,0r78,-133r-73,-124r61,0r48,92r47,-92r59,0r-74,127","w":225,"k":{"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"q":4,"o":4,"e":4,"d":4,"c":4,"Q":7,"O":7,"G":7,"C":7,"'":-7,"\"":-7}},"Y":{"d":"105,-151r47,-106r58,0r-78,157r0,100r-54,0r0,-98r-78,-159r59,0","w":210,"k":{"\u00fd":4,"\u00fa":11,"\u00f9":11,"\u00f5":18,"\u00f4":18,"\u00f3":18,"\u00f2":18,"\u00ea":18,"\u00e9":18,"\u00e8":18,"\u00e3":18,"\u00e2":18,"\u00e1":18,"\u00e0":18,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c3":18,"\u00c2":18,"\u00c1":18,"\u00c0":18,"z":11,"y":4,"x":7,"u":11,"s":14,"r":11,"q":18,"p":11,"o":18,"n":11,"m":11,"g":18,"e":18,"d":18,"c":18,"a":18,"S":4,"Q":7,"O":7,"G":7,"C":7,"A":18,"?":-7,".":18,",":18,"'":-14,"\"":-14}},"Z":{"d":"185,0r-176,0r0,-35r108,-177r-105,0r0,-45r170,0r0,35r-109,177r112,0r0,45","w":194,"k":{"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"Q":4,"O":4,"G":4,"C":4,"'":-7,"\"":-7}},"[":{"d":"110,57r-85,0r0,-314r85,0r0,37r-39,0r0,240r39,0r0,37","w":119,"k":{"J":-22}},"\\":{"d":"51,-257r96,257r-49,0r-96,-257r49,0","w":148},"]":{"d":"9,20r39,0r0,-240r-39,0r0,-37r85,0r0,314r-85,0r0,-37","w":119},"^":{"d":"1,-91r77,-167r26,0r87,167r-42,0r-57,-113r-49,113r-42,0","w":191},"_":{"d":"149,57r-150,0r0,-25r150,0r0,25","w":148},"`":{"d":"118,-276v8,20,25,36,31,58v-53,7,-65,-29,-91,-54r0,-4r60,0","w":207},"a":{"d":"33,-183v49,-30,147,-26,147,52r0,131r-38,0v-5,-8,-5,-21,-12,-27v-22,47,-115,40,-115,-32v0,-57,52,-63,111,-63v10,-51,-49,-42,-75,-25xm92,-36v29,0,36,-23,34,-55v-30,0,-56,3,-56,33v0,16,9,21,22,22","w":206,"k":{"'":7}},"b":{"d":"80,-171v14,-13,24,-31,53,-29v52,3,68,46,68,101v0,57,-17,103,-70,103v-24,0,-40,-11,-49,-26v-10,2,-8,15,-13,22r-41,0r0,-274r54,0xm146,-99v0,-32,-4,-57,-31,-58v-30,0,-33,27,-33,58v-1,31,4,59,33,59v27,0,31,-27,31,-59","w":218,"k":{"'":7}},"c":{"d":"162,-9v-67,33,-154,-1,-144,-88v-10,-91,77,-125,150,-89r-15,41v-13,-5,-26,-12,-43,-12v-30,1,-37,25,-37,59v1,34,6,56,36,58v23,0,36,-7,53,-14r0,45","w":179,"k":{"'":-11,"\"":-11}},"d":{"d":"139,-25v-14,13,-25,31,-53,29v-52,-3,-68,-46,-68,-102v0,-56,16,-100,70,-102v28,-1,40,15,53,29v-4,-31,-4,-67,-4,-103r54,0r0,274r-41,0xm105,-157v-46,0,-46,118,0,118v32,0,36,-27,36,-59v-1,-31,-5,-58,-36,-59","w":218},"e":{"d":"142,-121v2,-33,-34,-54,-58,-31v-6,7,-10,17,-11,31r69,0xm181,-10v-70,33,-169,5,-163,-87v4,-63,28,-103,89,-103v65,0,90,44,85,115r-120,0v-4,59,74,56,109,33r0,42","w":209,"k":{"'":7}},"f":{"d":"135,-228v-24,-11,-52,-3,-45,31r40,0r0,41r-40,0r0,156r-53,0r0,-156r-30,0r0,-26r30,-15v-12,-73,51,-92,111,-70","w":139,"k":{"\u00fd":-4,"y":-4,"w":-4,"v":-4,"'":-18,"\"":-18}},"g":{"d":"18,-133v0,-56,50,-76,106,-63r67,0r0,29r-29,9v22,54,-19,104,-84,92v-17,13,-3,27,19,25v52,-5,92,7,92,55v0,55,-48,71,-106,72v-45,1,-77,-13,-79,-54v0,-30,20,-40,43,-47v-10,-5,-19,-14,-20,-28v0,-20,13,-25,25,-34v-20,-7,-34,-29,-34,-56xm106,4v-27,0,-56,-2,-56,24v0,37,91,27,91,-6v0,-18,-15,-17,-35,-18xm117,-132v0,-20,-5,-34,-23,-35v-16,0,-25,12,-25,35v0,20,6,33,25,33v18,0,24,-13,23,-33","k":{"g":-4,"'":-7,"\"":-7}},"h":{"d":"134,-200v91,-3,60,117,65,200r-54,0r0,-115v-1,-24,-5,-42,-27,-42v-59,0,-29,100,-36,157r-54,0r0,-274r54,0r-3,103r3,0v10,-18,27,-29,52,-29","w":225,"k":{"'":11}},"i":{"d":"55,-221v-18,0,-29,-8,-29,-26v0,-20,12,-27,29,-27v17,0,29,7,29,27v0,18,-11,26,-29,26xm82,0r-54,0r0,-197r54,0r0,197","w":109},"j":{"d":"82,21v2,53,-45,75,-96,61r0,-42v23,8,42,1,42,-27r0,-210r54,0r0,218xm55,-221v-18,0,-29,-8,-29,-26v0,-20,12,-27,29,-27v17,0,29,7,29,27v0,18,-11,26,-29,26","w":109},"k":{"d":"79,-107v21,-32,44,-61,68,-90r61,0r-71,86r75,111r-62,0r-47,-76r-21,15r0,61r-54,0r0,-274r54,0r0,122","w":212,"k":{"'":-7,"\"":-7}},"l":{"d":"82,0r-54,0r0,-274r54,0r0,274","w":109},"m":{"d":"232,-157v-57,0,-28,101,-35,157r-54,0r0,-115v0,-24,-4,-42,-26,-42v-58,0,-28,100,-35,157r-54,0r0,-197r41,0r7,26r3,0v14,-37,96,-39,110,0r5,0v10,-17,27,-29,54,-29v91,0,58,118,64,200r-54,0r0,-115v0,-24,-4,-42,-26,-42","w":339,"k":{"'":7}},"n":{"d":"135,-200v90,0,59,118,64,200r-54,0r0,-115v0,-25,-5,-42,-27,-42v-59,0,-29,100,-36,157r-54,0r0,-197r41,0r7,26r3,0v12,-17,27,-29,56,-29","w":225,"k":{"'":7}},"o":{"d":"108,-157v-29,0,-35,24,-35,58v0,34,6,58,35,59v29,0,36,-26,35,-59v0,-34,-6,-58,-35,-58xm108,-200v61,1,90,41,90,101v0,62,-29,103,-91,103v-60,0,-89,-42,-89,-103v0,-62,28,-101,90,-101","w":215,"k":{"z":4,"x":7}},"p":{"d":"201,-99v0,57,-17,103,-70,103v-23,0,-40,-11,-49,-26v-7,2,1,20,0,29r0,79r-54,0r0,-283r44,0r7,26r3,0v10,-16,24,-30,51,-29v52,2,68,46,68,101xm146,-99v0,-32,-4,-57,-31,-58v-30,0,-33,27,-33,58v-1,31,4,59,33,59v27,0,31,-27,31,-59","w":218},"q":{"d":"105,-157v-45,0,-45,120,1,119v30,-1,36,-27,35,-60v-1,-31,-5,-59,-36,-59xm139,-25v-14,13,-25,31,-53,29v-52,-3,-68,-46,-68,-102v0,-56,16,-100,70,-102v28,-1,40,14,53,29r4,-26r46,0r0,283r-54,0","w":218},"r":{"d":"79,-167v11,-23,33,-38,69,-32r0,51v-37,-8,-66,7,-66,48r0,100r-54,0r0,-197r41,0v4,9,3,24,10,30","w":156,"k":{"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"g":4,"a":4,"'":-18,"\"":-18}},"s":{"d":"70,-146v19,39,89,27,89,88v0,67,-89,73,-141,50r0,-44v18,7,36,16,61,16v22,0,37,-18,21,-30v-29,-23,-83,-26,-83,-79v0,-67,95,-63,140,-39r-16,38v-16,-6,-30,-13,-50,-14v-13,-1,-21,4,-21,14","w":173,"k":{"'":-11,"\"":-11}},"t":{"d":"88,-62v-3,28,30,25,49,17r0,40v-46,21,-103,6,-103,-57r0,-94r-26,0r0,-23r30,-18r15,-41r35,0r0,41r47,0r0,41r-47,0r0,94","w":149,"k":{"t":-4,"'":-14,"\"":-14}},"u":{"d":"108,-39v58,0,29,-100,36,-158r54,0r0,197r-41,0v-4,-8,-3,-20,-10,-25v-11,17,-29,28,-56,29v-89,1,-59,-118,-64,-201r54,0r0,115v0,25,5,43,27,43","w":225},"v":{"d":"69,0r-69,-197r56,0r38,133v2,7,1,16,4,20v6,-58,28,-102,40,-153r56,0r-69,197r-56,0","w":194,"k":{"f":-4,"'":-14,"\"":-14}},"w":{"d":"84,-41v6,-18,6,-42,10,-61r22,-95r59,0r30,156v8,-55,20,-106,33,-156r52,0r-53,197r-59,0r-34,-159r-33,159r-58,0r-53,-197r53,0","w":290,"k":{"f":-4,"'":-14,"\"":-14}},"x":{"d":"68,-100r-63,-97r61,0r33,60r33,-60r61,0r-65,97r67,100r-60,0r-36,-64r-36,64r-61,0","w":197,"k":{"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"o":7,"'":-7,"\"":-7}},"y":{"d":"116,25v-11,45,-52,70,-104,58r0,-42v34,10,59,-9,62,-39r-74,-199r59,0r38,149v9,-54,25,-100,38,-149r59,0","w":194,"k":{"f":-4,"'":-11,"\"":-11}},"z":{"d":"154,0r-144,0r0,-32r80,-124r-75,0r0,-41r136,0r0,35r-78,121r81,0r0,41","w":164,"k":{"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"o":4}},"{":{"d":"50,-47v0,-25,-18,-32,-45,-32r0,-42v24,-1,45,-5,45,-31v0,-46,-9,-97,39,-102v10,-1,23,-3,38,-3r0,40v-41,-5,-30,43,-30,77v0,24,-19,32,-41,41v23,4,41,13,41,39v0,34,-11,83,30,77r0,40v-44,0,-77,-6,-77,-49r0,-55","w":130,"k":{"J":-22}},"|":{"d":"80,-272r38,0r0,354r-38,0r0,-354"},"}":{"d":"127,-79v-62,-8,-39,61,-48,109v-10,23,-39,27,-74,27r0,-40v42,6,31,-42,31,-77v0,-28,22,-32,41,-41v-48,-4,-41,-45,-41,-92v0,-19,-12,-24,-31,-24r0,-40v44,1,77,5,77,49r0,56v0,25,20,30,45,31r0,42","w":130},"~":{"d":"15,-137v41,-54,127,34,168,-20r0,41v-34,39,-85,4,-126,-2v-19,1,-31,12,-42,21r0,-40"},"\u00c0":{"d":"179,0r-18,-61r-88,0r-18,61r-55,0r83,-258r67,0r84,258r-55,0xm149,-107r-32,-115r-31,115r63,0xm116,-335v8,20,25,36,31,58v-53,7,-65,-29,-91,-54r0,-4r60,0","w":233,"k":{"\u00fd":7,"\u00dd":18,"\u00da":4,"\u00d9":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c0":7,"y":7,"w":4,"v":7,"t":4,"f":4,"Z":-10,"Y":18,"W":7,"V":11,"U":4,"T":22,"Q":4,"O":4,"J":-17,"G":4,"C":4,"?":11,";":-12,",":-12,"*":22,"'":14,"\"":14}},"\u00c1":{"d":"87,-278v6,-21,23,-36,30,-57r61,0v-12,24,-37,40,-55,57r-36,0xm179,0r-18,-61r-88,0r-18,61r-55,0r83,-258r67,0r84,258r-55,0xm149,-107r-32,-115r-31,115r63,0","w":233,"k":{"\u00fd":7,"\u00dd":18,"\u00da":4,"\u00d9":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"y":7,"w":4,"v":7,"t":4,"f":4,"Z":-10,"Y":18,"W":7,"V":11,"U":4,"T":22,"Q":4,"O":4,"G":4,"C":4,"?":11,";":-12,",":-12,"*":22,"'":14,"\"":14}},"\u00c2":{"d":"45,-278v9,-24,29,-37,41,-57r63,0v11,21,32,34,41,57r-35,0v-14,-9,-26,-18,-38,-30v-11,12,-24,21,-37,30r-35,0xm179,0r-18,-61r-88,0r-18,61r-55,0r83,-258r67,0r84,258r-55,0xm149,-107r-32,-115r-31,115r63,0","w":233,"k":{"\u00fd":7,"\u00dd":18,"\u00da":4,"\u00d9":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"y":7,"w":4,"v":7,"t":4,"f":4,"Z":-10,"Y":18,"W":7,"V":11,"U":4,"T":22,"Q":4,"O":4,"G":4,"C":4,"?":11,";":-12,",":-12,"*":22,"'":14,"\"":14}},"\u00c3":{"d":"143,-278v-27,1,-59,-40,-68,1r-27,0v3,-31,14,-55,45,-55v25,0,59,39,68,0r26,0v-3,29,-13,53,-44,54xm179,0r-18,-61r-88,0r-18,61r-55,0r83,-258r67,0r84,258r-55,0xm149,-107r-32,-115r-31,115r63,0","w":233,"k":{"\u00fd":7,"\u00dd":18,"\u00da":4,"\u00d9":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c0":7,"y":7,"w":4,"v":7,"t":4,"f":4,"Z":-10,"Y":18,"W":7,"V":11,"U":4,"T":22,"Q":4,"O":4,"J":-17,"G":4,"C":4,"?":11,";":-12,",":-12,"*":22,"'":14,"\"":14}},"\u00c8":{"d":"180,0r-148,0r0,-257r148,0r0,45r-93,0r0,56r87,0r0,45r-87,0r0,66r93,0r0,45xm105,-335v8,20,25,36,31,58v-53,7,-65,-29,-91,-54r0,-4r60,0","w":201,"k":{"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00cd":4,"\u00c8":4,"\u00c2":4,"Q":4,"O":4,"C":4,"-":7,"'":-7,"\"":-7}},"\u00c9":{"d":"75,-278v6,-22,24,-36,30,-57r60,0v-10,25,-37,39,-55,57r-35,0xm180,0r-148,0r0,-257r148,0r0,45r-93,0r0,56r87,0r0,45r-87,0r0,66r93,0r0,45","w":201,"k":{"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c9":4,"Q":4,"O":4,"C":4,"-":7,"'":-7,"\"":-7}},"\u00ca":{"d":"109,-308v-11,12,-24,21,-37,30r-36,0v8,-21,32,-37,42,-57r62,0v10,21,33,34,42,57r-36,0v-13,-9,-26,-18,-37,-30xm180,0r-148,0r0,-257r148,0r0,45r-93,0r0,56r87,0r0,45r-87,0r0,66r93,0r0,45","w":201,"k":{"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00cd":4,"\u00c8":4,"\u00c2":4,"Q":4,"O":4,"C":4,"-":7,"'":-7,"\"":-7}},"\u00cc":{"d":"128,0r-116,0r0,-31r31,-14r0,-167r-31,-14r0,-31r116,0r0,31r-31,14r0,167r31,14r0,31xm67,-335v8,20,25,36,31,58v-53,7,-65,-29,-91,-54r0,-4r60,0","w":140,"k":{"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"Q":4,"O":4,"G":4,"C":4,"'":-7,"\"":-7}},"\u00cd":{"d":"42,-278v6,-21,23,-36,30,-57r60,0v-10,25,-37,39,-55,57r-35,0xm128,0r-116,0r0,-31r31,-14r0,-167r-31,-14r0,-31r116,0r0,31r-31,14r0,167r31,14r0,31","w":140,"k":{"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"Q":4,"O":4,"G":4,"C":4,"'":-7,"\"":-7}},"\u00d2":{"d":"136,-261v82,0,115,52,115,132v0,81,-35,133,-115,133v-80,0,-115,-52,-115,-133v0,-80,34,-131,115,-132xm136,-216v-46,0,-59,40,-59,87v0,47,12,87,59,87v47,0,59,-39,59,-87v0,-48,-13,-87,-59,-87xm133,-335v8,20,25,36,31,58v-53,7,-65,-29,-91,-54r0,-4r60,0","w":272,"k":{"\u00dd":7,"\u00cd":4,"\u00cc":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"}":7,"]":7,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"S":4,"J":2,"I":4,"A":4,".":11,",":11,")":7}},"\u00d3":{"d":"104,-278v6,-21,23,-36,30,-57r60,0v-11,25,-37,41,-55,57r-35,0xm136,-261v82,0,115,52,115,132v0,81,-35,133,-115,133v-80,0,-115,-52,-115,-133v0,-80,34,-131,115,-132xm136,-216v-46,0,-59,40,-59,87v0,47,12,87,59,87v47,0,59,-39,59,-87v0,-48,-13,-87,-59,-87","w":272,"k":{"\u00dd":7,"\u00cd":4,"\u00cc":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"}":7,"]":7,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"S":4,"J":2,"I":4,"A":4,".":11,",":11,")":7}},"\u00d4":{"d":"62,-278v9,-24,29,-37,41,-57r63,0v11,21,32,34,41,57r-36,0v-13,-9,-26,-18,-37,-30v-11,12,-24,21,-37,30r-35,0xm136,-261v82,0,115,52,115,132v0,81,-35,133,-115,133v-80,0,-115,-52,-115,-133v0,-80,34,-131,115,-132xm136,-216v-46,0,-59,40,-59,87v0,47,12,87,59,87v47,0,59,-39,59,-87v0,-48,-13,-87,-59,-87","w":272,"k":{"\u00dd":7,"\u00cd":4,"\u00cc":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"}":7,"]":7,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"S":4,"J":2,"I":4,"A":4,".":11,",":11,")":7}},"\u00d5":{"d":"162,-278v-27,1,-60,-40,-68,1r-27,0v3,-31,14,-55,45,-55v25,0,59,39,68,0r26,0v-3,29,-13,53,-44,54xm136,-261v82,0,115,52,115,132v0,81,-35,133,-115,133v-80,0,-115,-52,-115,-133v0,-80,34,-131,115,-132xm136,-216v-46,0,-59,40,-59,87v0,47,12,87,59,87v47,0,59,-39,59,-87v0,-48,-13,-87,-59,-87","w":272,"k":{"\u00dd":7,"\u00cd":4,"\u00cc":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"}":7,"]":7,"Z":4,"Y":7,"X":7,"W":4,"V":7,"T":11,"S":4,"J":2,"I":4,"A":4,".":11,",":11,")":7}},"\u00d9":{"d":"129,-42v32,-1,45,-20,44,-54r0,-161r54,0r0,166v-1,62,-37,95,-99,95v-62,0,-96,-33,-97,-95r0,-166r54,0r0,162v0,32,12,53,44,53xm129,-335v8,20,25,36,31,58v-53,7,-65,-29,-91,-54r0,-4r60,0","w":257,"k":{"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"a":4,"Z":4,"M":4,"A":4,".":7,",":7}},"\u00da":{"d":"100,-278v7,-21,23,-37,31,-57r60,0v-11,25,-36,40,-55,57r-36,0xm129,-42v32,-1,45,-20,44,-54r0,-161r54,0r0,166v-1,62,-37,95,-99,95v-62,0,-96,-33,-97,-95r0,-166r54,0r0,162v0,32,12,53,44,53","w":257,"k":{"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"a":4,"Z":4,"M":4,"A":4,".":7,",":7}},"\u00dd":{"d":"74,-278v7,-21,23,-37,31,-57r60,0v-11,25,-36,40,-55,57r-36,0xm105,-151r47,-106r58,0r-78,157r0,100r-54,0r0,-98r-78,-159r59,0","w":210,"k":{"\u00fd":4,"\u00fa":11,"\u00f9":11,"\u00f5":18,"\u00f4":18,"\u00f3":18,"\u00f2":18,"\u00ea":18,"\u00e9":18,"\u00e8":18,"\u00e3":18,"\u00e2":18,"\u00e1":18,"\u00e0":18,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c3":18,"\u00c2":18,"\u00c1":18,"\u00c0":18,"}":-11,"z":11,"y":4,"x":7,"w":4,"v":7,"u":11,"s":14,"r":11,"q":18,"p":11,"o":18,"n":11,"m":11,"g":18,"f":5,"e":18,"d":18,"c":18,"a":18,"]":-11,"W":-4,"V":-7,"T":-7,"S":4,"Q":7,"O":7,"M":11,"J":12,"G":7,"C":7,"A":18,"?":-7,".":18,"-":18,",":18,"*":-7,")":-11,"'":-14,"&":11,"\"":-14}},"\u00e0":{"d":"33,-183v49,-30,147,-26,147,52r0,131r-38,0v-5,-8,-5,-21,-12,-27v-22,47,-115,40,-115,-32v0,-57,52,-63,111,-63v10,-51,-49,-42,-75,-25xm92,-36v29,0,36,-23,34,-55v-30,0,-56,3,-56,33v0,16,9,21,22,22xm102,-276v8,20,25,36,31,58v-53,7,-65,-29,-91,-54r0,-4r60,0","w":206,"k":{"'":7}},"\u00e1":{"d":"78,-218v5,-24,24,-35,30,-58r60,0v-9,27,-37,39,-55,58r-35,0xm33,-183v49,-30,147,-26,147,52r0,131r-38,0v-5,-8,-5,-21,-12,-27v-22,47,-115,40,-115,-32v0,-57,52,-63,111,-63v10,-51,-49,-42,-75,-25xm92,-36v29,0,36,-23,34,-55v-30,0,-56,3,-56,33v0,16,9,21,22,22","w":206,"k":{"'":7}},"\u00e2":{"d":"135,-276v11,18,28,39,41,53r0,5r-35,0v-13,-9,-26,-19,-38,-31v-11,13,-23,22,-36,31r-36,0r0,-5v14,-14,29,-35,41,-53r63,0xm33,-183v49,-30,147,-26,147,52r0,131r-38,0v-5,-8,-5,-21,-12,-27v-22,47,-115,40,-115,-32v0,-57,52,-63,111,-63v10,-51,-49,-42,-75,-25xm92,-36v29,0,36,-23,34,-55v-30,0,-56,3,-56,33v0,16,9,21,22,22","w":206,"k":{"'":7}},"\u00e3":{"d":"129,-218v-25,0,-60,-40,-68,0r-27,0v3,-30,13,-54,45,-54v25,1,60,38,68,0r26,0v-3,29,-13,53,-44,54xm33,-183v49,-30,147,-26,147,52r0,131r-38,0v-5,-8,-5,-21,-12,-27v-22,47,-115,40,-115,-32v0,-57,52,-63,111,-63v10,-51,-49,-42,-75,-25xm92,-36v29,0,36,-23,34,-55v-30,0,-56,3,-56,33v0,16,9,21,22,22","w":206,"k":{"'":7}},"\u00e8":{"d":"142,-121v2,-33,-34,-54,-58,-31v-6,7,-10,17,-11,31r69,0xm181,-10v-70,33,-169,5,-163,-87v4,-63,28,-103,89,-103v65,0,90,44,85,115r-120,0v-4,59,74,56,109,33r0,42xm106,-276v8,20,25,36,31,58v-53,7,-65,-29,-91,-54r0,-4r60,0","w":209,"k":{"'":7,"\"":18}},"\u00e9":{"d":"79,-218v5,-24,24,-35,30,-58r60,0v-9,27,-37,39,-55,58r-35,0xm142,-121v2,-33,-34,-54,-58,-31v-6,7,-10,17,-11,31r69,0xm181,-10v-70,33,-169,5,-163,-87v4,-63,28,-103,89,-103v65,0,90,44,85,115r-120,0v-4,59,74,56,109,33r0,42","w":209,"k":{"'":7,"\"":18}},"\u00ea":{"d":"107,-249v-12,12,-24,21,-37,31r-36,0v9,-23,30,-37,42,-58r62,0v13,20,27,36,42,53r0,5r-36,0v-13,-9,-26,-18,-37,-31xm142,-121v2,-33,-34,-54,-58,-31v-6,7,-10,17,-11,31r69,0xm181,-10v-70,33,-169,5,-163,-87v4,-63,28,-103,89,-103v65,0,90,44,85,115r-120,0v-4,59,74,56,109,33r0,42","w":209,"k":{"'":7,"\"":18}},"\u00ec":{"d":"82,0r-54,0r0,-197r54,0r0,197xm52,-276v8,20,25,36,31,58v-53,7,-65,-29,-91,-54r0,-4r60,0","w":109},"\u00ed":{"d":"82,0r-54,0r0,-197r54,0r0,197xm25,-218v6,-23,25,-35,31,-58r60,0v-9,27,-37,39,-55,58r-36,0","w":109},"\u00f2":{"d":"108,-157v-29,0,-35,24,-35,58v0,34,6,58,35,59v29,0,36,-26,35,-59v0,-34,-6,-58,-35,-58xm108,-200v61,1,90,41,90,101v0,62,-29,103,-91,103v-60,0,-89,-42,-89,-103v0,-62,28,-101,90,-101xm107,-276v8,20,25,36,31,58v-53,7,-65,-29,-91,-54r0,-4r60,0","w":215,"k":{"z":4,"x":7,"f":7,"'":25,"\"":25}},"\u00f3":{"d":"76,-218v6,-23,23,-36,31,-58r60,0v-10,26,-37,40,-55,58r-36,0xm108,-157v-29,0,-35,24,-35,58v0,34,6,58,35,59v29,0,36,-26,35,-59v0,-34,-6,-58,-35,-58xm108,-200v61,1,90,41,90,101v0,62,-29,103,-91,103v-60,0,-89,-42,-89,-103v0,-62,28,-101,90,-101","w":215,"k":{"z":4,"x":7,"f":7,"'":25,"\"":25}},"\u00f4":{"d":"107,-249v-12,12,-24,21,-37,31r-36,0v9,-22,32,-37,42,-58r63,0v9,24,33,34,41,58r-36,0v-13,-10,-25,-19,-37,-31xm108,-157v-29,0,-35,24,-35,58v0,34,6,58,35,59v29,0,36,-26,35,-59v0,-34,-6,-58,-35,-58xm108,-200v61,1,90,41,90,101v0,62,-29,103,-91,103v-60,0,-89,-42,-89,-103v0,-62,28,-101,90,-101","w":215,"k":{"z":4,"x":7,"f":7,"'":25,"\"":25}},"\u00f5":{"d":"132,-218v-25,0,-60,-40,-68,0r-26,0v2,-31,13,-53,44,-54v25,0,60,39,68,0r26,0v-2,31,-13,53,-44,54xm108,-157v-29,0,-35,24,-35,58v0,34,6,58,35,59v29,0,36,-26,35,-59v0,-34,-6,-58,-35,-58xm108,-200v61,1,90,41,90,101v0,62,-29,103,-91,103v-60,0,-89,-42,-89,-103v0,-62,28,-101,90,-101","w":215,"k":{"z":4,"x":7,"f":7,"'":25,"\"":25}},"\u00f9":{"d":"108,-39v58,0,29,-100,36,-158r54,0r0,197r-41,0v-4,-8,-3,-20,-10,-25v-11,17,-29,28,-56,29v-89,1,-59,-118,-64,-201r54,0r0,115v0,25,5,43,27,43xm107,-276v8,20,25,36,31,58v-53,7,-65,-29,-91,-54r0,-4r60,0","w":225,"k":{"'":12,"\"":12}},"\u00fa":{"d":"172,-276v-10,27,-38,39,-55,58r-36,0v6,-23,23,-37,31,-58r60,0xm108,-39v58,0,29,-100,36,-158r54,0r0,197r-41,0v-4,-8,-3,-20,-10,-25v-11,17,-29,28,-56,29v-89,1,-59,-118,-64,-201r54,0r0,115v0,25,5,43,27,43","w":225,"k":{"'":12,"\"":12}},"\u00fd":{"d":"69,-218v6,-23,23,-37,31,-58r60,0v-10,26,-37,40,-55,58r-36,0xm116,25v-11,45,-52,70,-104,58r0,-42v34,10,59,-9,62,-39r-74,-199r59,0r38,149v9,-54,25,-100,38,-149r59,0","w":194,"k":{"\u00f5":2,"\u00f4":2,"\u00f3":2,"\u00f2":2,"\u00ea":2,"\u00e9":2,"\u00e8":2,"t":-1,"q":2,"o":2,"g":2,"f":-4,"e":2,"d":2,"c":2,"?":13,".":12,",":12,"'":-11,"\"":-11}},"\u00a0":{"w":93}}});

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 2009 ParaType Ltd. All rights reserved.
 * 
 * Trademark:
 * PT Sans is a trademark of the ParaType Ltd.
 * 
 * Description:
 * PT Sans is a type family of universal use. It consists of 8 styles: regular and
 * bold weights with corresponding italics form a standard computer font family;
 * two narrow styles (regular and bold) are intended for documents that require
 * tight set; two caption styles (regular and bold) are for texts of small point
 * sizes. The design combines traditional conservative appearance with modern
 * trends of humanistic sans serif and characterized by enhanced legibility. These
 * features beside conventional use in business applications and printed stuff made
 * the fonts quite useable for direction and guide signs, schemes, screens of
 * information kiosks and other objects of urban visual communications.
 * 
 * The fonts next to standard Latin and Cyrillic character sets contain signs of
 * title languages of the national republics of Russian Federation and support the
 * most of the languages of neighboring countries. The fonts were developed and
 * released by ParaType in 2009 with financial support from Federal Agency of Print
 * and Mass Communications of Russian Federation. Design - Alexandra Korolkova with
 * assistance of Olga Umpeleva and supervision of Vladimir Yefimov.
 * 
 * Manufacturer:
 * ParaType Ltd
 * 
 * Designer:
 * A.Korolkova, O.Umpeleva, V.Yefimov
 * 
 * Vendor URL:
 * http://www.paratype.com
 * 
 * License information:
 * http://scripts.sil.org/OFL_web
 */
Cufon.registerFont({"w":162,"face":{"font-family":"PT Sans Narrow","font-weight":400,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 5 6 2 2 3 2 2 4","ascent":"277","descent":"-83","x-height":"4","bbox":"-10 -314 284 83.5263","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+0111"},"glyphs":{" ":{"w":76,"k":{"*":3,"-":4,",":6,".":6,"T":9,"V":9,"W":6,"X":9,"Y":9,"\u00dd":9,"Z":6,"v":2,"y":2,"\u00fd":2,"\"":21,"'":21,"A":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u0102":10}},"!":{"d":"36,-252r27,0r0,125r-5,63r-16,0v-8,-57,-6,-123,-6,-188xm50,4v-12,0,-18,-7,-18,-20v0,-13,6,-20,18,-20v12,0,18,7,18,20v0,13,-6,20,-18,20","w":88},"\"":{"d":"64,-252r25,0r-10,69r-15,0r0,-69xm26,-252r25,0r-10,69r-15,0r0,-69","w":102,"k":{" ":24,"-":46,",":36,".":36,"C":12,"G":12,"O":12,"Q":12,"\u00d2":12,"\u00d3":12,"\u00d4":12,"\u00d5":12,"V":-12,"W":-12,"Y":-10,"\u00dd":-10,"c":30,"e":30,"g":30,"o":30,"q":30,"\u00e8":30,"\u00e9":30,"\u00ea":30,"\u00f2":30,"\u00f3":30,"\u00f4":30,"\u00f5":30,"\u0111":30,"A":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u0102":36,"a":19,"m":19,"n":19,"p":19,"r":19,"s":19,"u":19}},"#":{"d":"83,-81r-30,0r-11,60r-22,0r11,-60r-22,0r4,-22r22,0r10,-50r-22,0r5,-22r21,0r11,-56r22,0r-11,56r30,0r11,-56r22,0r-11,56r22,0r-5,22r-21,0r-10,50r22,0r-5,22r-21,0r-11,60r-23,0xm57,-103r30,0r10,-50r-30,0"},"$":{"d":"142,-64v0,35,-20,61,-49,67r0,33r-22,0r0,-32v-20,0,-36,-4,-48,-10r8,-25v9,6,24,10,40,10r0,-100v-25,-15,-48,-34,-48,-74v0,-33,18,-56,48,-60r0,-33r22,0r0,32v18,1,28,3,41,9r-9,23v-9,-5,-18,-7,-32,-8r0,92v25,17,49,35,49,76xm87,-21v27,-3,36,-47,20,-69v-5,-7,-12,-14,-20,-20r0,89xm76,-231v-40,7,-28,69,0,80r0,-80"},"%":{"d":"186,-257r17,11r-153,250r-17,-10xm172,0v-34,0,-46,-24,-46,-62v0,-36,12,-61,46,-61v35,0,46,25,46,61v0,36,-11,62,-46,62xm172,-103v-21,0,-23,19,-23,41v0,26,4,42,23,42v32,0,31,-82,0,-83xm66,-134v-34,0,-46,-24,-46,-61v0,-36,12,-61,46,-61v34,0,46,24,46,61v0,37,-12,61,-46,61xm66,-237v-21,0,-23,20,-23,42v0,25,5,38,23,41v20,-1,22,-18,22,-41v0,-23,-2,-42,-22,-42","w":229},"&":{"d":"164,-29v-30,50,-138,42,-131,-39v4,-43,25,-68,50,-87v-23,-29,-30,-101,26,-101v29,0,44,16,44,41v0,28,-19,48,-40,63v15,31,33,59,51,85v8,-12,18,-37,22,-54r21,9v-7,21,-17,46,-28,62v14,16,21,25,36,36r-16,18v-11,-6,-22,-17,-35,-33xm59,-68v0,57,71,60,90,21v-22,-26,-40,-58,-55,-89v-18,18,-35,33,-35,68xm110,-234v-31,0,-18,50,-7,66v15,-13,24,-23,26,-42v1,-13,-5,-25,-19,-24","w":236},"'":{"d":"26,-252r25,0r-10,69r-15,0r0,-69","w":65,"k":{" ":24,"-":46,",":36,".":36,"C":12,"G":12,"O":12,"Q":12,"\u00d2":12,"\u00d3":12,"\u00d4":12,"\u00d5":12,"V":-12,"W":-12,"Y":-10,"\u00dd":-10,"c":30,"e":30,"g":30,"o":30,"q":30,"\u00e8":30,"\u00e9":30,"\u00ea":30,"\u00f2":30,"\u00f3":30,"\u00f4":30,"\u00f5":30,"\u0111":30,"A":36,"\u00c0":36,"\u00c1":36,"\u00c2":36,"\u00c3":36,"\u0102":36,"a":19,"m":19,"n":19,"p":19,"r":19,"s":19,"u":19}},"(":{"d":"83,-247v-52,76,-53,240,0,315r-17,11v-65,-74,-63,-263,1,-335","w":83,"k":{"-":3}},")":{"d":"2,69v52,-76,51,-240,-1,-315r17,-10v65,74,62,262,0,335","w":84},"*":{"d":"39,-253v5,9,9,20,12,32v3,-12,8,-23,14,-32r16,9v-6,11,-14,21,-22,30v11,-2,21,-5,35,-4r0,18v-13,1,-23,-2,-34,-4v8,9,16,17,21,29r-15,9v-6,-10,-11,-22,-15,-34v-3,12,-6,24,-12,33r-16,-9v5,-11,13,-20,21,-28v-10,3,-20,5,-33,4r0,-18v13,-1,24,1,34,4v-9,-9,-17,-18,-22,-30","w":104,"k":{" ":3,"-":48,",":72,".":72,"T":-2,"c":2,"e":2,"g":2,"o":2,"q":2,"\u00e8":2,"\u00e9":2,"\u00ea":2,"\u00f2":2,"\u00f3":2,"\u00f4":2,"\u00f5":2,"\u0111":2,"v":-2,"y":-2,"\u00fd":-2,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u0102":5}},"+":{"d":"12,-134r50,0r0,-56r25,0r0,56r50,0r0,23r-50,0r0,57r-25,0r0,-57r-50,0r0,-23","w":149},",":{"d":"32,-35v41,7,15,84,-12,88r-9,-12v12,-7,22,-19,21,-38v-11,2,-20,-6,-19,-18v0,-11,6,-22,19,-20","w":58,"k":{"J":-6," ":24,"*":12,"-":36,",":-1,".":-1,"T":5,"V":6,"W":4,"Y":6,"\u00dd":6,"t":1,"v":2,"y":2,"\u00fd":2,"w":1,"\"":41,"'":41}},"-":{"d":"17,-115r71,0r0,25r-71,0r0,-25","w":104,"k":{" ":23,"*":4,"-":5,",":36,".":36,"T":6,"V":3,"W":2,"X":4,"Y":4,"\u00dd":4,"\"":39,"'":39,"A":2,"\u00c0":2,"\u00c1":2,"\u00c2":2,"\u00c3":2,"\u0102":2,")":3,"]":3,"}":3}},".":{"d":"32,4v-12,0,-18,-7,-18,-20v0,-13,6,-20,18,-20v12,0,18,7,18,20v0,13,-6,20,-18,20","w":55,"k":{"J":-6," ":24,"*":12,"-":36,",":-1,".":-1,"T":5,"V":6,"W":4,"Y":6,"\u00dd":6,"t":1,"v":2,"y":2,"\u00fd":2,"w":1,"\"":41,"'":41}},"\/":{"d":"96,-256r20,8r-105,298r-21,-7","w":106},"0":{"d":"81,4v-62,0,-67,-64,-67,-130v0,-66,6,-130,67,-130v63,0,67,64,67,130v0,67,-6,130,-67,130xm81,-233v-40,6,-40,50,-40,107v0,54,2,101,41,107v39,-7,40,-52,40,-107v0,-52,-2,-101,-41,-107"},"1":{"d":"34,-24r41,0r0,-175r3,-22v-10,19,-27,30,-43,42r-13,-16r65,-61r13,0r0,232r40,0r0,24r-106,0r0,-24"},"2":{"d":"24,-238v35,-32,114,-21,108,41v-7,75,-41,132,-78,176v23,-5,54,-2,82,-3r0,24r-116,0v-2,-18,8,-20,15,-32v28,-47,63,-90,70,-160v4,-44,-48,-50,-70,-27"},"3":{"d":"140,-77v0,64,-53,97,-114,73r7,-23v36,20,81,1,81,-46v0,-42,-23,-54,-66,-51r0,-11v19,-32,31,-70,56,-95v-23,3,-51,2,-77,2r0,-24r105,0r0,10v-19,33,-33,70,-57,98v40,-11,65,25,65,67"},"4":{"d":"155,-77r-33,0r0,77r-26,0r0,-77r-89,0r0,-13r96,-166r19,0r0,155r33,0r0,24xm96,-101v-1,-37,0,-81,3,-111v-17,42,-38,80,-64,114v17,-4,40,-3,61,-3"},"5":{"d":"109,-77v0,-44,-30,-61,-73,-52r0,-123r93,0r0,25r-69,0r0,74v49,-7,75,25,75,74v0,64,-54,99,-112,76r7,-23v38,18,79,-4,79,-51"},"6":{"d":"88,-150v39,2,59,29,58,74v-1,44,-17,79,-63,80v-92,1,-70,-156,-36,-208v16,-25,38,-46,70,-52r7,21v-48,14,-70,56,-79,109v7,-12,22,-25,43,-24xm83,-19v25,0,37,-26,37,-54v0,-63,-63,-66,-76,-25v-1,39,3,79,39,79"},"7":{"d":"34,0r73,-213r13,-17v-28,6,-67,2,-100,3r0,-25r123,0r0,10r-83,242r-26,0","k":{" ":15,"-":18,",":32,".":32,"C":3,"G":3,"O":3,"Q":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"c":5,"e":5,"g":5,"o":5,"q":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u0111":5,"t":3,"A":6,"\u00c0":6,"\u00c1":6,"\u00c2":6,"\u00c3":6,"\u0102":6,"a":5,"m":5,"n":5,"p":5,"r":5,"s":5,"u":5,"\u00e0":2,"\u00e1":2,"\u00e2":2,"\u00e3":2,"\u00ec":2,"\u00ed":2,"\u00f9":2,"\u00fa":2,"\u0103":2}},"8":{"d":"80,4v-39,0,-59,-24,-59,-62v0,-36,17,-55,39,-72v-18,-15,-35,-30,-34,-63v0,-37,20,-63,57,-63v34,0,54,23,54,57v-1,32,-14,49,-33,67v19,16,37,32,37,69v0,39,-22,68,-61,67xm81,-19v45,3,43,-76,10,-90v-5,-4,-9,-8,-14,-11v-35,16,-48,98,4,101xm82,-233v-42,0,-35,69,-9,82v4,3,9,7,14,10v27,-18,39,-92,-5,-92"},"9":{"d":"116,-121v-34,42,-99,8,-99,-55v0,-47,19,-80,63,-80v91,-1,69,160,36,212v-16,25,-40,41,-71,48r-6,-21v46,-12,71,-51,77,-104xm79,-233v-25,0,-37,25,-36,54v-10,53,56,69,75,32v2,-39,-2,-86,-39,-86"},":":{"d":"45,-141v-12,0,-18,-7,-18,-20v0,-13,6,-20,18,-20v12,0,18,7,18,20v0,13,-6,20,-18,20xm45,4v-12,0,-18,-7,-18,-20v0,-13,6,-20,18,-20v12,0,18,7,18,20v0,13,-6,20,-18,20","w":68,"k":{"\/":-7}},";":{"d":"46,-35v41,7,15,84,-12,88r-9,-12v12,-7,22,-19,21,-38v-11,2,-20,-6,-19,-18v0,-11,6,-22,19,-20xm49,-141v-12,0,-18,-7,-18,-20v0,-13,6,-20,18,-20v12,0,18,7,18,20v0,13,-6,20,-18,20","w":77},"<":{"d":"13,-110r0,-10r108,-81r14,20v-31,22,-59,49,-95,66v39,14,64,42,96,63r-13,20","w":149},"=":{"d":"13,-105r123,0r0,24r-123,0r0,-24xm13,-164r123,0r0,24r-123,0r0,-24","w":149},">":{"d":"27,-32r-14,-20v32,-21,58,-49,97,-63v-37,-17,-64,-44,-96,-66r14,-20r108,81r0,10","w":149},"?":{"d":"118,-200v0,63,-52,74,-52,136r-22,0v-6,-62,43,-73,47,-132v3,-43,-48,-43,-70,-24r-10,-20v34,-27,107,-22,107,40xm57,4v-12,0,-18,-6,-18,-20v0,-14,5,-20,18,-20v12,0,18,7,18,20v0,13,-6,20,-18,20","w":128},"@":{"d":"165,-180v15,0,21,6,29,14v5,-6,8,-13,21,-11v-5,45,-16,96,-16,141v0,8,4,12,10,12v39,0,52,-47,52,-93v0,-67,-36,-104,-101,-104v-74,0,-109,56,-112,134v-3,91,64,143,150,115r6,20v-96,34,-185,-28,-180,-133v5,-93,48,-158,137,-158v79,0,123,45,123,126v0,62,-25,110,-81,116v-23,2,-27,-17,-27,-38v-12,17,-23,38,-50,38v-24,0,-38,-24,-37,-53v2,-63,20,-126,76,-126xm114,-60v-3,34,27,45,44,21v24,-21,23,-66,29,-105v-6,-7,-10,-12,-22,-12v-39,0,-47,52,-51,96","w":308},"A":{"d":"120,-71r-71,0r-21,71r-26,0r76,-256r15,0r75,256r-28,0xm56,-95r57,0v-11,-37,-21,-75,-29,-115v-6,41,-18,77,-28,115","w":170},"B":{"d":"23,-250v57,-8,125,-13,125,55v0,34,-18,50,-38,63v30,4,43,26,44,60v3,70,-66,85,-131,70r0,-248xm126,-70v0,-42,-32,-50,-76,-47r0,93v42,7,76,-4,76,-46xm120,-189v1,-38,-33,-46,-70,-39r0,88v43,4,68,-12,70,-49","w":169,"k":{"T":9}},"C":{"d":"44,-126v-5,75,43,129,104,94r7,22v-11,10,-31,14,-52,14v-69,-2,-85,-58,-88,-130v-3,-90,48,-153,137,-122r-7,25v-10,-6,-23,-8,-39,-8v-51,0,-59,50,-62,105","w":164,"k":{" ":12,"-":22,"C":8,"G":8,"O":8,"Q":8,"\u00d2":8,"\u00d3":8,"\u00d4":8,"\u00d5":8,"T":9,"V":10,"W":3,"X":13,"Y":11,"\u00dd":11,"Z":8,"c":10,"e":10,"g":10,"o":10,"q":10,"\u00e8":10,"\u00e9":10,"\u00ea":10,"\u00f2":10,"\u00f3":10,"\u00f4":10,"\u00f5":10,"\u0111":10,"t":10,"v":13,"y":13,"\u00fd":13,"w":12,"x":9,"z":6,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u0102":9,"a":5,"m":5,"n":5,"p":5,"r":5,"s":5,"u":5}},"D":{"d":"174,-128v4,94,-48,147,-151,128r0,-252v15,-3,35,-2,54,-3v74,0,95,54,97,127xm145,-128v0,-65,-24,-115,-95,-100r0,205v74,12,95,-38,95,-105","w":189,"k":{"J":2,",":9,".":9,"T":13,"V":8,"W":6,"X":14,"Y":12,"\u00dd":12,"Z":7,"v":4,"y":4,"\u00fd":4,"x":9,"z":6,"\"":12,"'":12,"A":6,"\u00c0":6,"\u00c1":6,"\u00c2":6,"\u00c3":6,"\u0102":6}},"E":{"d":"23,-252r112,0r0,25r-85,0r0,85r78,0r0,25r-78,0r0,92r87,0r0,25r-114,0r0,-252","w":154},"F":{"d":"23,-252r112,0r0,25r-85,0r0,89r79,0r0,25r-79,0r0,113r-27,0r0,-252","w":148},"G":{"d":"44,-126v0,73,35,126,95,96r0,-73r-46,-7r0,-16r69,0r0,111v-12,12,-36,19,-58,19v-69,0,-86,-58,-89,-130v-3,-91,51,-152,140,-122r-6,25v-65,-28,-105,22,-105,97","w":177},"H":{"d":"143,-116r-93,0r0,116r-27,0r0,-252r27,0r0,111r93,0r0,-111r27,0r0,252r-27,0r0,-116","w":192},"I":{"d":"28,-252r27,0r0,252r-27,0r0,-252","w":83},"J":{"d":"-4,-26v21,14,44,-4,37,-36r0,-190r27,0r0,195v4,49,-26,72,-69,55","w":86},"K":{"d":"63,-117r-13,0r0,117r-27,0r0,-252r27,0r0,117r13,-5r65,-112r31,0r-66,109r-12,11v35,38,57,89,87,132r-34,0","w":177,"k":{" ":9,"-":23,"C":14,"G":14,"O":14,"Q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"T":10,"V":3,"W":3,"X":9,"Y":9,"\u00dd":9,"c":14,"e":14,"g":14,"o":14,"q":14,"\u00e8":14,"\u00e9":14,"\u00ea":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u0111":14,"t":12,"v":15,"y":15,"\u00fd":15,"w":15,"x":12,"z":8,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u0102":9,"a":8,"m":8,"n":8,"p":8,"r":8,"s":8,"u":8}},"L":{"d":"144,0r-121,0r0,-252r27,0r0,227r94,0r0,25","w":149,"k":{" ":13,"*":47,"-":22,"C":21,"G":21,"O":21,"Q":21,"\u00d2":21,"\u00d3":21,"\u00d4":21,"\u00d5":21,"T":36,"V":31,"W":22,"X":32,"Y":32,"\u00dd":32,"Z":16,"c":16,"e":16,"g":16,"o":16,"q":16,"\u00e8":16,"\u00e9":16,"\u00ea":16,"\u00f2":16,"\u00f3":16,"\u00f4":16,"\u00f5":16,"\u0111":16,"t":13,"v":28,"y":28,"\u00fd":28,"w":20,"x":13,"z":10,"\"":37,"'":37,"A":24,"\u00c0":24,"\u00c1":24,"\u00c2":24,"\u00c3":24,"\u0102":24,"a":5,"m":5,"n":5,"p":5,"r":5,"s":5,"u":5}},"M":{"d":"181,-204v-15,54,-41,97,-62,145r-9,0v-22,-48,-49,-91,-65,-145v6,58,3,137,4,204r-26,0r0,-252r23,0v23,51,53,96,70,153v16,-57,45,-102,67,-153r23,0r0,252r-27,0","w":229},"N":{"d":"154,4v-36,-68,-79,-129,-108,-203v4,57,3,133,3,199r-26,0r0,-256r16,0v36,67,79,127,108,201r2,0v-8,-59,-3,-131,-4,-197r26,0r0,256r-17,0","w":193},"O":{"d":"99,4v-69,0,-84,-60,-84,-130v0,-75,19,-130,84,-130v68,0,83,60,83,130v0,74,-19,130,-83,130xm99,-231v-47,0,-55,47,-55,105v0,50,7,105,55,105v47,0,55,-47,55,-105v0,-50,-7,-105,-55,-105","w":197,"k":{"J":2,",":9,".":9,"T":13,"V":8,"W":6,"X":14,"Y":12,"\u00dd":12,"Z":7,"v":4,"y":4,"\u00fd":4,"x":9,"z":6,"\"":12,"'":12,"A":6,"\u00c0":6,"\u00c1":6,"\u00c2":6,"\u00c3":6,"\u0102":6}},"P":{"d":"152,-177v0,61,-41,91,-102,81r0,96r-27,0r0,-249v63,-17,129,-2,129,72xm124,-177v0,-44,-31,-60,-74,-51r0,107v43,9,74,-11,74,-56","k":{" ":12,",":38,".":38,"C":5,"G":5,"O":5,"Q":5,"\u00d2":5,"\u00d3":5,"\u00d4":5,"\u00d5":5,"T":4,"X":13,"Y":7,"\u00dd":7,"Z":8,"c":10,"e":10,"g":10,"o":10,"q":10,"\u00e8":10,"\u00e9":10,"\u00ea":10,"\u00f2":10,"\u00f3":10,"\u00f4":10,"\u00f5":10,"\u0111":10,"x":10,"z":7,"A":19,"\u00c0":19,"\u00c1":19,"\u00c2":19,"\u00c3":19,"\u0102":19,"a":10,"m":10,"n":10,"p":10,"r":10,"s":10,"u":10}},"Q":{"d":"61,18v53,-11,88,34,143,17r0,25v-54,17,-90,-25,-143,-18r0,-24xm99,4v-69,0,-84,-60,-84,-130v0,-75,19,-130,84,-130v68,0,83,60,83,130v0,74,-19,130,-83,130xm99,-231v-47,0,-55,47,-55,105v0,50,7,105,55,105v47,0,55,-47,55,-105v0,-50,-7,-105,-55,-105","w":197,"k":{"J":2,",":9,".":9,"T":13,"V":8,"W":6,"X":14,"Y":12,"\u00dd":12,"Z":7,"v":4,"y":4,"\u00fd":4,"x":9,"z":6,"\"":12,"'":12,"A":6,"\u00c0":6,"\u00c1":6,"\u00c2":6,"\u00c3":6,"\u0102":6}},"R":{"d":"144,-186v0,39,-16,64,-45,72v30,29,41,77,63,114r-31,0r-54,-110r-27,-5r0,115r-27,0r0,-249v56,-15,121,-5,121,63xm116,-184v0,-36,-27,-55,-66,-44r0,95v42,4,66,-10,66,-51","w":172,"k":{"-":12,"C":10,"G":10,"O":10,"Q":10,"\u00d2":10,"\u00d3":10,"\u00d4":10,"\u00d5":10,"T":17,"V":14,"W":12,"X":12,"Y":16,"\u00dd":16,"Z":7,"c":14,"e":14,"g":14,"o":14,"q":14,"\u00e8":14,"\u00e9":14,"\u00ea":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u0111":14,"t":7,"v":9,"y":9,"\u00fd":9,"w":8,"x":10,"z":7,"\"":2,"'":2,"A":8,"\u00c0":8,"\u00c1":8,"\u00c2":8,"\u00c3":8,"\u0102":8}},"S":{"d":"141,-63v0,66,-79,82,-129,54r9,-24v28,18,99,21,93,-29v-9,-66,-97,-59,-97,-135v0,-62,74,-70,121,-48r-9,24v-24,-14,-91,-18,-85,23v9,64,97,59,97,135","w":154},"T":{"d":"156,-227r-62,0r0,227r-27,0r0,-227r-62,0r0,-25r151,0r0,25","w":160,"k":{"\u00fd":37,"\u00f5":37,"\u00f4":37,"\u00f3":37,"\u00f2":37,"\u00ed":22,"\u00ea":37,"\u00e9":37,"\u00e8":37," ":12,"*":-2,"-":37,",":30,".":30,"C":13,"G":13,"O":13,"Q":13,"\u00d2":13,"\u00d3":13,"\u00d4":13,"\u00d5":13,"T":-7,"V":3,"W":3,"X":10,"Y":6,"\u00dd":6,"Z":10,"c":37,"e":37,"g":37,"o":37,"q":37,"\u0111":37,"t":17,"v":37,"y":37,"w":37,"x":37,"z":37,"A":20,"\u00c0":20,"\u00c1":20,"\u00c2":20,"\u00c3":20,"\u0102":20,"a":31,"m":31,"n":31,"p":31,"r":31,"s":31,"u":31,")":-7,"]":-7,"}":-7,"\u00e0":22,"\u00e1":22,"\u00e2":22,"\u00e3":22,"\u00ec":22,"\u00f9":22,"\u00fa":22,"\u0103":22}},"U":{"d":"96,-22v38,-1,43,-28,43,-69r0,-161r26,0r0,169v0,54,-19,86,-69,86v-51,-1,-74,-26,-73,-80r0,-175r27,0r0,161v1,39,6,70,46,69","w":187},"V":{"d":"78,-80v3,12,3,28,8,39v13,-75,36,-140,54,-211r27,0r-76,256r-14,0r-78,-256r30,0","w":166,"k":{"\u00f5":18,"\u00ec":13,"\u00e8":18,"\u00e1":13," ":9,"*":-13,"-":15,",":28,".":28,"C":8,"G":8,"O":8,"Q":8,"\u00d2":8,"\u00d3":8,"\u00d4":8,"\u00d5":8,"T":3,"V":3,"W":3,"X":3,"Y":4,"\u00dd":4,"Z":3,"c":18,"e":18,"g":18,"o":18,"q":18,"\u00e9":18,"\u00ea":18,"\u00f2":18,"\u00f3":18,"\u00f4":18,"\u0111":18,"t":2,"v":6,"y":6,"\u00fd":6,"w":5,"x":14,"z":12,"\"":-12,"'":-12,"A":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u0102":14,"a":15,"m":15,"n":15,"p":15,"r":15,"s":15,"u":15,"\u00e0":13,"\u00e2":13,"\u00e3":13,"\u00ed":13,"\u00f9":13,"\u00fa":13,"\u0103":13}},"W":{"d":"31,-252v13,70,33,133,39,209v8,-73,30,-140,45,-209r16,0v16,69,36,133,45,209v8,-74,25,-139,37,-209r27,0r-56,256r-17,0v-15,-69,-36,-130,-45,-205v-11,70,-30,137,-46,205r-17,0r-57,-256r29,0","w":241,"k":{"\u00ec":9," ":7,"*":-13,"-":8,",":22,".":22,"C":6,"G":6,"O":6,"Q":6,"\u00d2":6,"\u00d3":6,"\u00d4":6,"\u00d5":6,"T":3,"V":3,"W":3,"X":3,"Y":4,"\u00dd":4,"Z":3,"c":13,"e":13,"g":13,"o":13,"q":13,"\u00e8":13,"\u00e9":13,"\u00ea":13,"\u00f2":13,"\u00f3":13,"\u00f4":13,"\u00f5":13,"\u0111":13,"v":4,"y":4,"\u00fd":4,"w":5,"x":12,"z":11,"\"":-12,"'":-12,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u0102":9,"a":12,"m":12,"n":12,"p":12,"r":12,"s":12,"u":12,"\u00e0":9,"\u00e1":9,"\u00e2":9,"\u00e3":9,"\u00ed":9,"\u00f9":9,"\u00fa":9,"\u0103":9}},"X":{"d":"73,-128r-60,-124r32,0v15,36,34,68,46,107v13,-39,33,-71,49,-107r30,0r-63,121r66,131r-32,0r-52,-113v-12,43,-35,75,-52,113r-30,0","w":180,"k":{" ":9,"-":23,"C":14,"G":14,"O":14,"Q":14,"\u00d2":14,"\u00d3":14,"\u00d4":14,"\u00d5":14,"T":10,"V":3,"W":3,"X":9,"Y":9,"\u00dd":9,"c":14,"e":14,"g":14,"o":14,"q":14,"\u00e8":14,"\u00e9":14,"\u00ea":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u0111":14,"t":12,"v":15,"y":15,"\u00fd":15,"w":15,"x":12,"z":8,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u0102":9,"a":8,"m":8,"n":8,"p":8,"r":8,"s":8,"u":8}},"Y":{"d":"69,-100r-67,-152r31,0v17,44,39,83,51,132v11,-50,33,-87,49,-132r29,0r-66,152r0,100r-27,0r0,-100","w":163,"k":{"\u00f5":26,"\u00f2":26,"\u00ec":18,"\u00e8":26,"\u00e2":18,"\u00e1":18," ":7,"*":-7,"-":18,",":32,".":32,"C":12,"G":12,"O":12,"Q":12,"\u00d2":12,"\u00d3":12,"\u00d4":12,"\u00d5":12,"T":6,"V":4,"W":3,"X":9,"Y":4,"\u00dd":4,"Z":9,"c":26,"e":26,"g":26,"o":26,"q":26,"\u00e9":26,"\u00ea":26,"\u00f3":26,"\u00f4":26,"\u0111":26,"t":12,"v":14,"y":14,"\u00fd":14,"w":12,"x":17,"z":19,"\"":-10,"'":-10,"A":21,"\u00c0":21,"\u00c1":21,"\u00c2":21,"\u00c3":21,"\u0102":21,"a":21,"m":21,"n":21,"p":21,"r":21,"s":21,"u":21,"\u00e0":18,"\u00e3":18,"\u00ed":18,"\u00f9":18,"\u00fa":18,"\u0103":18}},"Z":{"d":"10,-25r101,-188r11,-14r-112,0r0,-25r138,0r0,25r-101,189r-11,13r112,0r0,25r-138,0r0,-25","w":158,"k":{" ":11,"-":24,"C":7,"G":7,"O":7,"Q":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"T":7,"V":3,"W":3,"X":8,"Y":9,"\u00dd":9,"Z":6,"c":14,"e":14,"g":14,"o":14,"q":14,"\u00e8":14,"\u00e9":14,"\u00ea":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u0111":14,"t":4,"v":8,"y":8,"\u00fd":8,"w":8,"x":5,"z":7,"A":6,"\u00c0":6,"\u00c1":6,"\u00c2":6,"\u00c3":6,"\u0102":6,"a":6,"m":6,"n":6,"p":6,"r":6,"s":6,"u":6}},"[":{"d":"23,-252r56,0r0,23r-30,0r0,288r30,0r0,24r-56,0r0,-335","w":89,"k":{"-":3}},"\\":{"d":"119,42r-22,8r-107,-298r22,-8","w":113},"]":{"d":"67,83r-57,0r0,-24r31,0r0,-288r-31,0r0,-23r57,0r0,335","w":89},"^":{"d":"69,-256r11,0r50,99r-27,0v-11,-23,-24,-44,-29,-73v-8,28,-23,49,-35,73r-25,0","w":148},"_":{"d":"0,50r120,0r0,24r-120,0r0,-24","w":120},"`":{"d":"70,-206r-15,0v-10,-19,-28,-29,-33,-53r29,0","w":91},"a":{"d":"98,-122v8,-48,-45,-40,-70,-27r-9,-20v36,-22,115,-22,104,41v2,43,-5,91,3,129r-20,0v-3,-7,-3,-17,-7,-22v-17,38,-93,28,-89,-27v3,-46,37,-57,87,-55v1,-7,1,-13,1,-19xm37,-51v0,41,61,35,61,7r0,-38v-29,-2,-61,1,-61,31","w":144,"k":{"T":35,"'":4,"\"":4}},"b":{"d":"72,3v-19,1,-39,-6,-51,-12r0,-243r26,0r1,86v10,-12,23,-18,39,-18v44,2,56,38,56,91v-1,57,-20,94,-71,96xm81,-161v-53,0,-29,84,-34,135v43,19,73,-14,69,-67v-2,-33,-4,-68,-35,-68","w":156,"k":{"f":4,"*":2,",":1,".":1,"v":4,"y":4,"\u00fd":4,"w":3,"x":7,"z":4,"\"":17,"'":17}},"c":{"d":"82,-19v13,0,25,-5,31,-11r8,21v-11,9,-27,13,-45,13v-52,0,-60,-44,-63,-94v-5,-71,43,-114,105,-85r-7,22v-44,-24,-75,8,-71,63v3,37,8,68,42,71","w":128,"k":{"y":4," ":7,"-":13,"c":6,"e":6,"g":6,"o":6,"q":6,"\u00e8":6,"\u00e9":6,"\u00ea":6,"\u00f2":6,"\u00f3":6,"\u00f4":6,"\u00f5":6,"\u0111":6,"x":4,"z":4,"\"":2,"'":2}},"d":{"d":"13,-90v-3,-65,37,-108,96,-88r0,-74r26,0r0,223v0,10,2,20,3,30r-18,0v-3,-7,-3,-17,-7,-22v-6,13,-22,26,-42,25v-47,-2,-56,-40,-58,-94xm40,-89v3,34,4,70,36,70v49,0,30,-85,33,-133v-39,-24,-74,11,-69,63","w":155},"e":{"d":"86,-19v12,-1,27,-6,34,-12r9,19v-11,10,-30,16,-50,16v-51,-1,-66,-42,-66,-94v0,-54,17,-92,65,-94v52,-3,60,45,54,97r-92,0v1,37,10,67,46,68xm109,-109v7,-44,-33,-67,-57,-39v-6,8,-10,21,-11,39r68,0","w":148,"k":{"*":2,"c":3,"e":3,"g":3,"o":3,"q":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u00f2":3,"\u00f3":3,"\u00f4":3,"\u00f5":3,"\u0111":3,"v":6,"y":6,"\u00fd":6,"w":3,"x":6,"z":3,"\"":5,"'":5}},"f":{"d":"96,-226v-30,-16,-49,8,-42,46r37,0r0,23r-37,0r0,157r-26,0r0,-157r-22,0r0,-23r22,0v-8,-59,24,-88,75,-68","w":92,"k":{"\u00ec":-14,"}":-17,"]":-17,"*":-3,",":2,".":2,"c":3,"e":3,"g":3,"o":3,"q":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u00f2":3,"\u00f3":3,"\u00f4":3,"\u00f5":3,"\u0111":3,"t":4,"\"":-3,"'":-3,")":-17}},"g":{"d":"84,-183v21,0,38,4,51,11r0,180v7,64,-59,82,-109,58r7,-22v11,4,22,9,38,9v38,0,40,-31,37,-67v-8,12,-19,18,-38,18v-46,0,-57,-39,-57,-93v0,-56,20,-93,71,-94xm76,-19v53,0,27,-85,33,-135v-42,-19,-73,12,-69,64v2,34,4,71,36,71","w":155},"h":{"d":"93,-184v74,1,37,116,46,184r-26,0r0,-109v-1,-29,-2,-51,-29,-52v-18,0,-37,16,-37,32r0,129r-26,0r0,-252r26,0r1,89v10,-12,23,-21,45,-21","w":158},"i":{"d":"26,-180r25,0r0,180r-25,0r0,-180xm39,-216v-11,0,-18,-7,-18,-19v0,-11,7,-20,18,-19v11,0,18,7,18,19v0,12,-7,19,-18,19","w":78},"j":{"d":"1,52v27,0,25,-27,25,-53r0,-179r26,0r0,190v0,44,-10,70,-51,66r0,-24xm39,-216v-11,0,-18,-7,-18,-19v0,-11,7,-20,18,-19v11,0,18,7,18,19v0,12,-7,19,-18,19","w":77},"k":{"d":"60,-81r-13,0r0,81r-26,0r0,-252r26,0r0,153r12,-5r42,-76r30,0v-19,28,-29,63,-55,84v28,24,40,64,61,96r-31,0","w":139,"k":{"\u0111":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"q":7,"o":7,"g":7,"e":7,"c":7," ":9,"-":13,"x":4}},"l":{"d":"82,-3v-24,14,-59,7,-59,-31r0,-218r26,0r0,209v-2,23,12,29,31,20","w":83},"m":{"d":"44,-161v14,-26,75,-35,82,4v8,-14,24,-27,45,-27v74,1,36,117,45,184r-26,0r0,-114v-2,-27,0,-47,-25,-47v-58,0,-26,105,-34,161r-26,0r0,-107v1,-28,2,-54,-25,-54v-56,0,-26,104,-33,161r-26,0r0,-180r19,0","w":234},"n":{"d":"92,-184v75,1,39,116,47,184r-26,0r0,-110v-1,-30,-2,-50,-28,-51v-21,0,-32,15,-38,30r0,131r-26,0r0,-180r19,0v2,6,2,15,6,19v9,-12,24,-24,46,-23","w":158,"k":{"T":36}},"o":{"d":"78,4v-51,0,-65,-38,-65,-94v0,-56,16,-94,65,-94v51,0,64,38,64,94v0,57,-16,94,-64,94xm78,-161v-32,0,-38,31,-38,71v0,36,4,71,38,71v32,0,37,-30,37,-71v0,-35,-4,-71,-37,-71","w":155,"k":{"f":4,"*":2,",":1,".":1,"v":4,"y":4,"\u00fd":4,"w":3,"x":7,"z":4,"\"":17,"'":17}},"p":{"d":"144,-94v3,63,-35,116,-97,92r0,74r-26,0r0,-252r19,0v2,6,1,15,5,19v9,-16,23,-23,42,-23v46,2,55,36,57,90xm75,-19v53,-1,61,-138,6,-142v-49,-4,-31,84,-34,133v7,5,15,9,28,9","w":156,"k":{"f":4,"*":2,",":1,".":1,"v":4,"y":4,"\u00fd":4,"w":3,"x":7,"z":4,"\"":17,"'":17}},"q":{"d":"13,-89v-5,-78,60,-114,122,-83r0,244r-26,0v-2,-28,4,-63,-2,-87v-7,12,-18,19,-37,19v-46,0,-54,-39,-57,-93xm75,-19v53,0,29,-85,34,-135v-42,-20,-73,12,-69,64v3,34,3,71,35,71","w":155},"r":{"d":"92,-154v-22,-9,-45,2,-45,22r0,132r-26,0r0,-180r19,0v2,6,1,15,5,19v7,-18,28,-27,52,-19","w":98,"k":{",":19,".":19,"t":-9}},"s":{"d":"110,-45v0,51,-64,59,-100,38r8,-23v17,13,68,20,66,-14v-4,-50,-69,-38,-69,-94v0,-48,57,-57,92,-36r-7,21v-16,-9,-64,-17,-59,14v7,45,69,37,69,94","w":121},"t":{"d":"96,-5v-31,18,-71,11,-71,-41r0,-111r-22,0r0,-23r22,0r0,-36r26,-8r0,44r39,0r0,23r-39,0r0,108v-5,31,21,35,40,24","w":99,"k":{"-":8,"c":3,"e":3,"g":3,"o":3,"q":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u00f2":3,"\u00f3":3,"\u00f4":3,"\u00f5":3,"\u0111":3,"v":2,"y":2,"\u00fd":2,"x":4}},"u":{"d":"66,4v-75,-1,-38,-116,-47,-184r26,0r0,110v0,30,1,51,26,51v60,0,32,-101,38,-161r26,0r0,129v0,17,2,36,3,51r-18,0v-3,-8,-3,-19,-8,-25v-7,15,-22,29,-46,29","w":156},"v":{"d":"31,-180v14,47,32,89,41,141v9,-49,25,-95,39,-141r27,0r-61,184r-13,0r-63,-184r30,0","w":139,"k":{" ":10,"*":-2,",":21,".":21,"v":-4,"y":-4,"\u00fd":-4,"w":-3,"x":3,"z":2}},"w":{"d":"117,-180r40,140v6,-51,19,-94,29,-140r25,0r-48,184r-15,0v-13,-50,-33,-93,-41,-148v-10,51,-27,99,-41,148r-15,0r-49,-184r28,0v11,46,26,89,32,140v9,-50,24,-94,36,-140r19,0","w":212,"k":{" ":7,",":18,".":18,"c":3,"e":3,"g":3,"o":3,"q":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u00f2":3,"\u00f3":3,"\u00f4":3,"\u00f5":3,"\u0111":3,"v":-3,"y":-3,"\u00fd":-3,"w":-2,"x":4,"z":4}},"x":{"d":"58,-92r-48,-88r31,0v12,24,26,44,34,72v9,-27,23,-48,35,-72r29,0r-48,86r50,94r-29,0v-13,-26,-28,-49,-38,-78v-10,29,-26,52,-39,78r-28,0","w":148,"k":{" ":9,"-":13,"c":7,"e":7,"g":7,"o":7,"q":7,"\u00e8":7,"\u00e9":7,"\u00ea":7,"\u00f2":7,"\u00f3":7,"\u00f4":7,"\u00f5":7,"\u0111":7,"x":4}},"y":{"d":"75,-29v8,-53,22,-101,33,-151r26,0r-53,198v-9,29,-20,66,-59,53r4,-25v25,6,30,-22,35,-46r-58,-180r29,0","w":135,"k":{" ":10,"*":-2,",":21,".":21,"v":-4,"y":-4,"\u00fd":-4,"w":-3,"x":3,"z":2}},"z":{"d":"12,-23v27,-44,48,-94,79,-134r-79,0r0,-23r105,0r0,23v-27,44,-49,94,-80,134r80,0r0,23r-105,0r0,-23","w":129,"k":{" ":9,"-":12,"c":4,"e":4,"g":4,"o":4,"q":4,"\u00e8":4,"\u00e9":4,"\u00ea":4,"\u00f2":4,"\u00f3":4,"\u00f4":4,"\u00f5":4,"\u0111":4,"v":2,"y":2,"\u00fd":2}},"{":{"d":"64,39v0,19,11,21,30,20r0,24v-34,2,-55,0,-55,-37v0,-41,18,-116,-24,-119r0,-23v42,-4,18,-79,24,-120v-3,-33,21,-39,55,-36r0,23v-19,-1,-30,1,-30,21v0,42,14,111,-20,122r0,2v34,12,20,80,20,123","w":101,"k":{"-":3}},"|":{"d":"23,-252r22,0r0,299r-22,0r0,-299","w":68},"}":{"d":"86,-73v-41,4,-17,79,-23,119v1,36,-21,39,-55,37r0,-24v18,1,29,0,29,-20v0,-45,-11,-109,20,-125v-34,-11,-15,-80,-20,-122v2,-21,-10,-22,-29,-21r0,-23v34,-3,55,4,55,36v0,42,-17,114,23,120r0,23","w":101},"~":{"d":"50,-125v-12,0,-21,7,-30,16r-12,-21v14,-12,23,-21,43,-21v30,0,54,35,78,7r12,22v-13,9,-21,16,-37,17v-24,0,-31,-20,-54,-20","w":149},"\u00c0":{"d":"109,-271r-24,0r-45,-35r0,-7r35,0xm120,-71r-71,0r-21,71r-26,0r76,-256r15,0r75,256r-28,0xm56,-95r57,0v-11,-37,-21,-75,-29,-115v-6,41,-18,77,-28,115","w":170},"\u00c1":{"d":"94,-313r36,0r0,7r-47,35r-22,0xm120,-71r-71,0r-21,71r-26,0r76,-256r15,0r75,256r-28,0xm56,-95r57,0v-11,-37,-21,-75,-29,-115v-6,41,-18,77,-28,115","w":170},"\u00c2":{"d":"77,-313r18,0r36,37r0,7r-23,0v-8,-9,-18,-17,-23,-30v-8,18,-18,34,-47,30r0,-8xm120,-71r-71,0r-21,71r-26,0r76,-256r15,0r75,256r-28,0xm56,-95r57,0v-11,-37,-21,-75,-29,-115v-6,41,-18,77,-28,115","w":170},"\u00c3":{"d":"71,-302v20,0,40,21,55,4r9,13v-20,40,-68,-12,-90,17r-9,-13v11,-12,18,-21,35,-21xm120,-71r-71,0r-21,71r-26,0r76,-256r15,0r75,256r-28,0xm56,-95r57,0v-11,-37,-21,-75,-29,-115v-6,41,-18,77,-28,115","w":170},"\u00c8":{"d":"96,-271r-23,0r-46,-35r0,-7r36,0xm23,-252r112,0r0,25r-85,0r0,85r78,0r0,25r-78,0r0,92r87,0r0,25r-114,0r0,-252","w":154},"\u00c9":{"d":"93,-313r36,0r0,7r-48,35r-22,0xm23,-252r112,0r0,25r-85,0r0,85r78,0r0,25r-78,0r0,92r87,0r0,25r-114,0r0,-252","w":154},"\u00ca":{"d":"69,-313r18,0r37,37r0,7r-24,0v-8,-9,-18,-16,-22,-30v-5,13,-15,21,-24,30r-23,0r0,-8xm23,-252r112,0r0,25r-85,0r0,85r78,0r0,25r-78,0r0,92r87,0r0,25r-114,0r0,-252","w":154},"\u00cc":{"d":"69,-271r-24,0r-45,-35r0,-7r35,0xm28,-252r27,0r0,252r-27,0r0,-252","w":83},"\u00cd":{"d":"51,-313r35,0r0,7r-47,35r-22,0xm28,-252r27,0r0,252r-27,0r0,-252","w":83},"\u00d2":{"d":"120,-271r-24,0r-45,-35r0,-7r35,0xm99,4v-69,0,-84,-60,-84,-130v0,-75,19,-130,84,-130v68,0,83,60,83,130v0,74,-19,130,-83,130xm99,-231v-47,0,-55,47,-55,105v0,50,7,105,55,105v47,0,55,-47,55,-105v0,-50,-7,-105,-55,-105","w":197,"k":{"J":2,",":9,".":9,"T":13,"V":8,"W":6,"X":14,"Y":12,"\u00dd":12,"Z":7,"v":4,"y":4,"\u00fd":4,"x":9,"z":6,"\"":12,"'":12,"A":6,"\u00c0":6,"\u00c1":6,"\u00c2":6,"\u00c3":6,"\u0102":6}},"\u00d3":{"d":"121,-313r35,0r0,7r-47,35r-22,0xm99,4v-69,0,-84,-60,-84,-130v0,-75,19,-130,84,-130v68,0,83,60,83,130v0,74,-19,130,-83,130xm99,-231v-47,0,-55,47,-55,105v0,50,7,105,55,105v47,0,55,-47,55,-105v0,-50,-7,-105,-55,-105","w":197,"k":{"J":2,",":9,".":9,"T":13,"V":8,"W":6,"X":14,"Y":12,"\u00dd":12,"Z":7,"v":4,"y":4,"\u00fd":4,"x":9,"z":6,"\"":12,"'":12,"A":6,"\u00c0":6,"\u00c1":6,"\u00c2":6,"\u00c3":6,"\u0102":6}},"\u00d4":{"d":"90,-313r18,0r37,37r0,7r-24,0v-8,-9,-18,-16,-22,-30v-5,13,-15,21,-24,30r-24,0r0,-8xm99,4v-69,0,-84,-60,-84,-130v0,-75,19,-130,84,-130v68,0,83,60,83,130v0,74,-19,130,-83,130xm99,-231v-47,0,-55,47,-55,105v0,50,7,105,55,105v47,0,55,-47,55,-105v0,-50,-7,-105,-55,-105","w":197,"k":{"J":2,",":9,".":9,"T":13,"V":8,"W":6,"X":14,"Y":12,"\u00dd":12,"Z":7,"v":4,"y":4,"\u00fd":4,"x":9,"z":6,"\"":12,"'":12,"A":6,"\u00c0":6,"\u00c1":6,"\u00c2":6,"\u00c3":6,"\u0102":6}},"\u00d5":{"d":"85,-302v20,0,40,21,55,4r9,13v-20,40,-68,-12,-90,17r-9,-13v11,-12,18,-21,35,-21xm99,4v-69,0,-84,-60,-84,-130v0,-75,19,-130,84,-130v68,0,83,60,83,130v0,74,-19,130,-83,130xm99,-231v-47,0,-55,47,-55,105v0,50,7,105,55,105v47,0,55,-47,55,-105v0,-50,-7,-105,-55,-105","w":197,"k":{"J":2,",":9,".":9,"T":13,"V":8,"W":6,"X":14,"Y":12,"\u00dd":12,"Z":7,"v":4,"y":4,"\u00fd":4,"x":9,"z":6,"\"":12,"'":12,"A":6,"\u00c0":6,"\u00c1":6,"\u00c2":6,"\u00c3":6,"\u0102":6}},"\u00d9":{"d":"117,-271r-23,0r-46,-35r0,-7r36,0xm96,-22v38,-1,43,-28,43,-69r0,-161r26,0r0,169v0,54,-19,86,-69,86v-51,-1,-74,-26,-73,-80r0,-175r27,0r0,161v1,39,6,70,46,69","w":187},"\u00da":{"d":"112,-313r36,0r0,7r-48,35r-22,0xm96,-22v38,-1,43,-28,43,-69r0,-161r26,0r0,169v0,54,-19,86,-69,86v-51,-1,-74,-26,-73,-80r0,-175r27,0r0,161v1,39,6,70,46,69","w":187},"\u00dd":{"d":"102,-313r35,0r0,7r-47,35r-22,0xm69,-100r-67,-152r31,0v17,44,39,83,51,132v11,-50,33,-87,49,-132r29,0r-66,152r0,100r-27,0r0,-100","w":163,"k":{"\u00f5":26,"\u00f2":26,"\u00ec":18,"\u00e8":26,"\u00e2":18,"\u00e1":18," ":7,"*":-7,"-":18,",":32,".":32,"C":12,"G":12,"O":12,"Q":12,"\u00d2":12,"\u00d3":12,"\u00d4":12,"\u00d5":12,"T":6,"V":4,"W":3,"X":9,"Y":4,"\u00dd":4,"Z":9,"c":26,"e":26,"g":26,"o":26,"q":26,"\u00e9":26,"\u00ea":26,"\u00f3":26,"\u00f4":26,"\u0111":26,"t":12,"v":14,"y":14,"\u00fd":14,"w":12,"x":17,"z":19,"\"":-10,"'":-10,"A":21,"\u00c0":21,"\u00c1":21,"\u00c2":21,"\u00c3":21,"\u0102":21,"a":21,"m":21,"n":21,"p":21,"r":21,"s":21,"u":21,"\u00e0":18,"\u00e3":18,"\u00ed":18,"\u00f9":18,"\u00fa":18,"\u0103":18}},"\u00e0":{"d":"98,-122v8,-48,-45,-40,-70,-27r-9,-20v36,-22,115,-22,104,41v2,43,-5,91,3,129r-20,0v-3,-7,-3,-17,-7,-22v-17,38,-93,28,-89,-27v3,-46,37,-57,87,-55v1,-7,1,-13,1,-19xm37,-51v0,41,61,35,61,7r0,-38v-29,-2,-61,1,-61,31xm88,-206r-15,0v-10,-19,-28,-29,-33,-53r29,0","w":144},"\u00e1":{"d":"70,-259r28,0v-4,24,-21,34,-30,53r-15,0xm98,-122v8,-48,-45,-40,-70,-27r-9,-20v36,-22,115,-22,104,41v2,43,-5,91,3,129r-20,0v-3,-7,-3,-17,-7,-22v-17,38,-93,28,-89,-27v3,-46,37,-57,87,-55v1,-7,1,-13,1,-19xm37,-51v0,41,61,35,61,7r0,-38v-29,-2,-61,1,-61,31","w":144},"\u00e2":{"d":"68,-264r13,0r32,66r-23,0v-7,-14,-13,-28,-17,-45v-4,18,-11,31,-19,45r-21,0xm98,-122v8,-48,-45,-40,-70,-27r-9,-20v36,-22,115,-22,104,41v2,43,-5,91,3,129r-20,0v-3,-7,-3,-17,-7,-22v-17,38,-93,28,-89,-27v3,-46,37,-57,87,-55v1,-7,1,-13,1,-19xm37,-51v0,41,61,35,61,7r0,-38v-29,-2,-61,1,-61,31","w":144},"\u00e3":{"d":"88,-219v-18,-1,-37,-24,-51,-3r-8,-13v14,-27,42,-21,65,-8v6,-1,9,-3,14,-8r8,14v-10,10,-13,18,-28,18xm98,-122v8,-48,-45,-40,-70,-27r-9,-20v36,-22,115,-22,104,41v2,43,-5,91,3,129r-20,0v-3,-7,-3,-17,-7,-22v-17,38,-93,28,-89,-27v3,-46,37,-57,87,-55v1,-7,1,-13,1,-19xm37,-51v0,41,61,35,61,7r0,-38v-29,-2,-61,1,-61,31","w":144},"\u00e8":{"d":"86,-19v12,-1,27,-6,34,-12r9,19v-11,10,-30,16,-50,16v-51,-1,-66,-42,-66,-94v0,-54,17,-92,65,-94v52,-3,60,45,54,97r-92,0v1,37,10,67,46,68xm109,-109v7,-44,-33,-67,-57,-39v-6,8,-10,21,-11,39r68,0xm94,-206r-15,0v-10,-19,-28,-29,-33,-53r29,0","w":148,"k":{"*":2,"c":3,"e":3,"g":3,"o":3,"q":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u00f2":3,"\u00f3":3,"\u00f4":3,"\u00f5":3,"\u0111":3,"v":6,"y":6,"\u00fd":6,"w":3,"x":6,"z":3,"\"":5,"'":5}},"\u00e9":{"d":"84,-259r28,0v-4,24,-21,34,-30,53r-15,0xm86,-19v12,-1,27,-6,34,-12r9,19v-11,10,-30,16,-50,16v-51,-1,-66,-42,-66,-94v0,-54,17,-92,65,-94v52,-3,60,45,54,97r-92,0v1,37,10,67,46,68xm109,-109v7,-44,-33,-67,-57,-39v-6,8,-10,21,-11,39r68,0","w":148,"k":{"*":2,"c":3,"e":3,"g":3,"o":3,"q":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u00f2":3,"\u00f3":3,"\u00f4":3,"\u00f5":3,"\u0111":3,"v":6,"y":6,"\u00fd":6,"w":3,"x":6,"z":3,"\"":5,"'":5}},"\u00ea":{"d":"71,-264r13,0r32,66r-23,0v-7,-14,-14,-27,-17,-45v-5,17,-12,31,-19,45r-22,0xm86,-19v12,-1,27,-6,34,-12r9,19v-11,10,-30,16,-50,16v-51,-1,-66,-42,-66,-94v0,-54,17,-92,65,-94v52,-3,60,45,54,97r-92,0v1,37,10,67,46,68xm109,-109v7,-44,-33,-67,-57,-39v-6,8,-10,21,-11,39r68,0","w":148,"k":{"*":2,"c":3,"e":3,"g":3,"o":3,"q":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u00f2":3,"\u00f3":3,"\u00f4":3,"\u00f5":3,"\u0111":3,"v":6,"y":6,"\u00fd":6,"w":3,"x":6,"z":3,"\"":5,"'":5}},"\u00ec":{"d":"26,-180r26,0r0,180r-26,0r0,-180xm50,-206r-15,0v-10,-19,-28,-29,-33,-53r29,0","w":78},"\u00ed":{"d":"26,-180r26,0r0,180r-26,0r0,-180xm44,-259r28,0v-4,24,-21,34,-29,53r-16,0","w":78},"\u00f2":{"d":"78,4v-51,0,-65,-38,-65,-94v0,-56,16,-94,65,-94v51,0,64,38,64,94v0,57,-16,94,-64,94xm78,-161v-32,0,-38,31,-38,71v0,36,4,71,38,71v32,0,37,-30,37,-71v0,-35,-4,-71,-37,-71xm91,-206r-15,0v-10,-19,-28,-29,-33,-53r29,0","w":155,"k":{"f":4,"*":2,",":1,".":1,"v":4,"y":4,"\u00fd":4,"w":3,"x":7,"z":4,"\"":17,"'":17}},"\u00f3":{"d":"82,-259r28,0v-4,24,-21,34,-30,53r-15,0xm78,4v-51,0,-65,-38,-65,-94v0,-56,16,-94,65,-94v51,0,64,38,64,94v0,57,-16,94,-64,94xm78,-161v-32,0,-38,31,-38,71v0,36,4,71,38,71v32,0,37,-30,37,-71v0,-35,-4,-71,-37,-71","w":155,"k":{"f":4,"*":2,",":1,".":1,"v":4,"y":4,"\u00fd":4,"w":3,"x":7,"z":4,"\"":17,"'":17}},"\u00f4":{"d":"74,-264r13,0r32,66r-23,0v-7,-14,-13,-28,-17,-45v-4,18,-11,31,-19,45r-21,0xm78,4v-51,0,-65,-38,-65,-94v0,-56,16,-94,65,-94v51,0,64,38,64,94v0,57,-16,94,-64,94xm78,-161v-32,0,-38,31,-38,71v0,36,4,71,38,71v32,0,37,-30,37,-71v0,-35,-4,-71,-37,-71","w":155,"k":{"f":4,"*":2,",":1,".":1,"v":4,"y":4,"\u00fd":4,"w":3,"x":7,"z":4,"\"":17,"'":17}},"\u00f5":{"d":"94,-219v-18,-1,-37,-24,-51,-3r-8,-13v14,-27,41,-21,64,-8v7,-1,9,-3,14,-8r9,14v-10,10,-14,18,-28,18xm78,4v-51,0,-65,-38,-65,-94v0,-56,16,-94,65,-94v51,0,64,38,64,94v0,57,-16,94,-64,94xm78,-161v-32,0,-38,31,-38,71v0,36,4,71,38,71v32,0,37,-30,37,-71v0,-35,-4,-71,-37,-71","w":155,"k":{"f":4,"*":2,",":1,".":1,"v":4,"y":4,"\u00fd":4,"w":3,"x":7,"z":4,"\"":17,"'":17}},"\u00f9":{"d":"66,4v-75,-1,-38,-116,-47,-184r26,0r0,110v0,30,1,51,26,51v60,0,32,-101,38,-161r26,0r0,129v0,17,2,36,3,51r-18,0v-3,-8,-3,-19,-8,-25v-7,15,-22,29,-46,29xm89,-206r-15,0v-10,-19,-28,-29,-33,-53r29,0","w":156},"\u00fa":{"d":"81,-259r28,0v-4,24,-21,34,-29,53r-16,0xm66,4v-75,-1,-38,-116,-47,-184r26,0r0,110v0,30,1,51,26,51v60,0,32,-101,38,-161r26,0r0,129v0,17,2,36,3,51r-18,0v-3,-8,-3,-19,-8,-25v-7,15,-22,29,-46,29","w":156},"\u00fd":{"d":"79,-259r28,0v-4,24,-21,34,-30,53r-15,0xm75,-29v8,-53,22,-101,33,-151r26,0r-53,198v-9,29,-20,66,-59,53r4,-25v25,6,30,-22,35,-46r-58,-180r29,0","w":135,"k":{" ":10,"*":-2,",":21,".":21,"v":-4,"y":-4,"\u00fd":-4,"w":-3,"x":3,"z":2}},"\u0102":{"d":"137,-308v-7,36,-47,59,-81,35v-10,-7,-17,-18,-22,-33r14,-8v5,15,20,28,39,28v20,0,31,-14,37,-28xm120,-71r-71,0r-21,71r-26,0r76,-256r15,0r75,256r-28,0xm56,-95r57,0v-11,-37,-21,-75,-29,-115v-6,41,-18,77,-28,115","w":170},"\u0103":{"d":"117,-253v0,37,-44,63,-73,35v-9,-8,-14,-20,-17,-34r14,-6v5,15,16,28,33,28v17,0,25,-13,30,-28xm98,-122v8,-48,-45,-40,-70,-27r-9,-20v36,-22,115,-22,104,41v2,43,-5,91,3,129r-20,0v-3,-7,-3,-17,-7,-22v-17,38,-93,28,-89,-27v3,-46,37,-57,87,-55v1,-7,1,-13,1,-19xm37,-51v0,41,61,35,61,7r0,-38v-29,-2,-61,1,-61,31","w":144},"\u0110":{"d":"176,-128v2,94,-48,147,-151,128r0,-120r-25,0r0,-21r25,0r0,-111v16,-3,35,-2,55,-3v73,1,94,53,96,127xm147,-128v0,-65,-24,-115,-95,-100r0,87r42,0r0,21r-42,0r0,97v74,12,95,-38,95,-105","w":191,"k":{"J":2,",":9,".":9,"T":13,"V":8,"W":6,"X":14,"Y":12,"\u00dd":12,"Z":7,"v":4,"y":4,"\u00fd":4,"x":9,"z":6,"\"":12,"'":12,"A":6,"\u00c0":6,"\u00c1":6,"\u00c2":6,"\u00c3":6,"\u0102":6}},"\u0111":{"d":"13,-90v-3,-65,37,-108,96,-88r0,-29r-45,0r0,-21r45,0r0,-24r26,0r0,24r23,0r0,21r-23,0r0,178v0,10,2,20,3,30r-18,0v-3,-7,-3,-17,-7,-22v-6,13,-22,26,-42,25v-47,-2,-56,-40,-58,-94xm40,-89v3,34,4,70,36,70v49,0,30,-85,33,-133v-39,-24,-74,11,-69,63","w":156},"\u00a0":{"w":76,"k":{"*":3,"-":4,",":6,".":6,"T":9,"V":9,"W":6,"X":9,"Y":9,"\u00dd":9,"Z":6,"v":2,"y":2,"\u00fd":2,"\"":21,"'":21,"A":10,"\u00c0":10,"\u00c1":10,"\u00c2":10,"\u00c3":10,"\u0102":10}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 2009 ParaType Ltd. All rights reserved.
 * 
 * Trademark:
 * PT Sans is a trademark of the ParaType Ltd.
 * 
 * Description:
 * PT Sans is a type family of universal use. It consists of 8 styles: regular and
 * bold weights with corresponding italics form a standard computer font family;
 * two narrow styles (regular and bold) are intended for documents that require
 * tight set; two caption styles (regular and bold) are for texts of small point
 * sizes. The design combines traditional conservative appearance with modern
 * trends of humanistic sans serif and characterized by enhanced legibility. These
 * features beside conventional use in business applications and printed stuff made
 * the fonts quite useable for direction and guide signs, schemes, screens of
 * information kiosks and other objects of urban visual communications.
 * 
 * The fonts next to standard Latin and Cyrillic character sets contain signs of
 * title languages of the national republics of Russian Federation and support the
 * most of the languages of neighboring countries. The fonts were developed and
 * released by ParaType in 2009 with financial support from Federal Agency of Print
 * and Mass Communications of Russian Federation. Design - Alexandra Korolkova with
 * assistance of Olga Umpeleva and supervision of Vladimir Yefimov.
 * 
 * Manufacturer:
 * ParaType Ltd
 * 
 * Designer:
 * A.Korolkova, O.Umpeleva, V.Yefimov
 * 
 * Vendor URL:
 * http://www.paratype.com
 * 
 * License information:
 * http://scripts.sil.org/OFL_web
 */
Cufon.registerFont({"w":172,"face":{"font-family":"PT Sans Narrow","font-weight":700,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 7 6 2 2 3 2 2 4","ascent":"277","descent":"-83","x-height":"5","bbox":"-8 -315 297 83.7163","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+0111"},"glyphs":{" ":{"w":73,"k":{"*":12,"-":14,",":23,".":23,"A":12,"\u00c0":12,"\u00c1":12,"\u00c2":12,"\u00c3":12,"\u0102":12,"C":4,"G":4,"O":4,"Q":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"T":11,"V":9,"W":8,"X":9,"Y":9,"\u00dd":9,"Z":2,"v":6,"y":6,"\u00fd":6,"w":4,"x":5,"\"":26,"'":26}},"!":{"d":"30,-252r44,0v0,62,2,126,-8,177r-27,0v-11,-51,-9,-115,-9,-177xm51,4v-16,0,-25,-11,-25,-27v0,-16,8,-27,25,-27v17,0,27,10,27,27v0,17,-11,27,-27,27","w":90},"\"":{"d":"26,-252r37,0r-11,78r-26,0r0,-78xm75,-252r37,0r-12,78r-25,0r0,-78","w":126,"k":{" ":28,"-":62,",":40,".":40,"A":39,"\u00c0":39,"\u00c1":39,"\u00c2":39,"\u00c3":39,"\u0102":39,"C":12,"G":12,"O":12,"Q":12,"\u00d2":12,"\u00d3":12,"\u00d4":12,"\u00d5":12,"V":-12,"W":-12,"Y":-11,"\u00dd":-11,"c":31,"e":31,"g":31,"o":31,"q":31,"\u00e8":31,"\u00e9":31,"\u00ea":31,"\u00f2":31,"\u00f3":31,"\u00f4":31,"\u00f5":31,"\u0111":31,"t":3,"z":4,"a":22,"m":22,"n":22,"p":22,"r":22,"s":22,"u":22}},"#":{"d":"87,-74r-25,0r-11,56r-34,0r10,-56r-22,0r8,-34r21,0r8,-40r-22,0r8,-34r20,0r11,-52r35,0r-10,52r24,0r11,-52r35,0r-11,52r22,0r-8,34r-20,0r-8,40r21,0r-8,34r-20,0r-10,56r-36,0xm69,-108r25,0r8,-40r-25,0"},"$":{"d":"156,-71v1,41,-20,65,-52,73r0,34r-34,0r0,-31v-21,0,-37,-5,-49,-13r12,-38v9,6,22,10,37,12r0,-79v-27,-15,-50,-35,-51,-76v0,-37,21,-59,51,-66r0,-33r34,0r0,32v17,0,29,5,41,10r-12,38v-8,-4,-17,-8,-29,-9r0,71v26,15,51,34,52,75xm89,-35v23,0,29,-34,17,-51v-4,-5,-10,-10,-17,-15r0,66xm85,-218v-36,4,-22,51,0,60r0,-60"},"%":{"d":"207,-257r25,21r-178,241r-25,-21xm194,0v-38,0,-54,-23,-54,-62v-1,-39,18,-61,54,-61v38,0,54,22,54,61v0,39,-16,62,-54,62xm194,-93v-14,1,-16,11,-16,31v0,19,1,32,16,32v24,0,22,-65,0,-63xm69,-134v-38,0,-54,-22,-54,-61v0,-38,16,-61,54,-61v38,0,54,22,54,61v0,39,-16,61,-54,61xm69,-226v-15,0,-16,12,-16,31v0,19,2,30,16,31v16,1,16,-15,16,-31v0,-19,-1,-31,-16,-31","w":259},"&":{"d":"100,5v-48,-1,-75,-27,-75,-75v0,-42,25,-66,50,-85v-27,-34,-23,-106,37,-102v32,2,53,15,53,46v0,28,-17,47,-39,62v12,24,26,46,42,67v10,-12,14,-29,20,-47r32,15v-6,20,-17,42,-27,59v10,13,19,19,32,27r-22,33v-14,-7,-26,-17,-37,-30v-15,16,-34,31,-66,30xm68,-73v0,43,55,50,73,20v-18,-24,-33,-47,-46,-73v-13,15,-27,27,-27,53xm116,-222v-23,3,-16,35,-5,51v16,-10,32,-45,5,-51","w":241},"'":{"d":"26,-252r37,0r-11,78r-26,0r0,-78","w":78,"k":{" ":28,"-":62,",":40,".":40,"A":39,"\u00c0":39,"\u00c1":39,"\u00c2":39,"\u00c3":39,"\u0102":39,"C":12,"G":12,"O":12,"Q":12,"\u00d2":12,"\u00d3":12,"\u00d4":12,"\u00d5":12,"V":-12,"W":-12,"Y":-11,"\u00dd":-11,"c":31,"e":31,"g":31,"o":31,"q":31,"\u00e8":31,"\u00e9":31,"\u00ea":31,"\u00f2":31,"\u00f3":31,"\u00f4":31,"\u00f5":31,"\u0111":31,"t":3,"z":4,"a":22,"m":22,"n":22,"p":22,"r":22,"s":22,"u":22}},"(":{"d":"96,-240v-46,75,-48,229,1,302r-30,17v-66,-75,-64,-263,1,-335","w":100,"k":{"-":12,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u0102":5,"C":5,"G":5,"O":5,"Q":5,"\u00d2":5,"\u00d3":5,"\u00d4":5,"\u00d5":5,"c":5,"e":5,"g":5,"o":5,"q":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u0111":5,"t":3}},")":{"d":"3,63v49,-74,48,-229,0,-303r30,-16v66,75,64,263,-1,335","w":100},"*":{"d":"44,-261v7,10,11,22,14,36v2,-14,7,-26,13,-36r21,13v-6,13,-15,23,-25,32v11,-4,23,-7,39,-6r0,25v-15,1,-26,-2,-37,-5v9,9,18,18,24,30r-21,13v-7,-11,-12,-24,-15,-38v-1,16,-6,27,-13,37r-21,-12v5,-13,12,-23,23,-30v-10,4,-21,6,-36,5r0,-25v16,-1,28,2,38,6v-10,-9,-20,-18,-25,-32","w":116,"k":{" ":12,"-":59,",":74,".":74,"A":18,"\u00c0":18,"\u00c1":18,"\u00c2":18,"\u00c3":18,"\u0102":18,"C":3,"G":3,"O":3,"Q":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"T":-6,"V":-4,"W":-5,"Y":-4,"\u00dd":-4,"c":6,"e":6,"g":6,"o":6,"q":6,"\u00e8":6,"\u00e9":6,"\u00ea":6,"\u00f2":6,"\u00f3":6,"\u00f4":6,"\u00f5":6,"\u0111":6,"v":-8,"y":-8,"\u00fd":-8}},"+":{"d":"12,-141r48,0r0,-53r40,0r0,53r48,0r0,38r-48,0r0,53r-40,0r0,-53r-48,0r0,-38","w":159},",":{"d":"32,3v-13,0,-20,-10,-20,-26v0,-15,10,-28,25,-27v48,4,28,87,-1,96v-5,3,-9,6,-13,7r-13,-17v11,-5,21,-19,22,-33","w":70,"k":{"J":-3," ":22,"*":44,"-":34,",":-5,".":-5,"T":18,"V":20,"W":13,"Y":23,"\u00dd":23,"t":3,"v":7,"y":7,"\u00fd":7,"w":4,"\"":41,"'":41}},"-":{"d":"16,-124r75,0r0,41r-75,0r0,-41","w":107,"k":{" ":24,")":12,"]":12,"}":12,"*":14,"-":19,",":34,".":34,"A":7,"\u00c0":7,"\u00c1":7,"\u00c2":7,"\u00c3":7,"\u0102":7,"T":23,"V":10,"W":6,"X":14,"Y":14,"\u00dd":14,"Z":3,"x":5,"\"":58,"'":58}},".":{"d":"38,4v-16,0,-26,-10,-26,-27v0,-17,9,-27,26,-27v17,0,26,10,26,27v0,17,-10,27,-26,27","w":69,"k":{"J":-3," ":22,"*":44,"-":34,",":-5,".":-5,"T":18,"V":20,"W":13,"Y":23,"\u00dd":23,"t":3,"v":7,"y":7,"\u00fd":7,"w":4,"\"":41,"'":41}},"\/":{"d":"99,-256r33,12r-105,294r-33,-12","w":125},"0":{"d":"86,5v-65,0,-73,-62,-73,-131v0,-70,9,-131,73,-131v67,0,74,62,74,131v0,69,-9,131,-74,131xm86,-219v-35,7,-31,52,-31,93v0,47,1,84,31,93v35,-6,31,-52,31,-93v0,-48,1,-86,-31,-93"},"1":{"d":"31,-38r41,0v2,-55,-5,-119,5,-166v-10,16,-23,29,-38,39r-20,-24r69,-67r25,0r0,218r41,0r0,38r-123,0r0,-38"},"2":{"d":"22,-235v36,-37,129,-27,123,43v-5,60,-32,104,-58,143v-5,6,-13,8,-16,16v21,-7,51,-5,78,-5r0,38r-127,0r0,-25v33,-44,72,-90,80,-159v4,-39,-46,-41,-64,-20"},"3":{"d":"35,-42v29,18,73,9,73,-33v0,-36,-25,-44,-62,-41v-3,-43,24,-56,36,-85r17,-16v-21,4,-48,3,-73,3r0,-38r115,0r0,26r-41,68v-4,4,-12,5,-14,11v43,-8,65,25,65,69v0,73,-67,100,-128,72"},"4":{"d":"167,-70r-31,0r0,70r-41,0r0,-70r-89,0r0,-27r92,-157r38,0r0,147r31,0r0,37xm95,-107v-1,-30,2,-65,3,-88v-13,35,-30,67,-54,91v14,-4,33,-3,51,-3"},"5":{"d":"148,-81v0,71,-63,104,-127,76r11,-36v31,17,73,3,73,-38v0,-40,-30,-46,-69,-42r0,-131r105,0r0,42r-68,0r0,51v49,-6,75,28,75,78"},"6":{"d":"98,-156v43,2,60,34,60,78v0,48,-23,82,-70,83v-98,2,-81,-158,-40,-211v18,-24,43,-45,75,-51r11,35v-42,10,-65,43,-75,86v9,-11,20,-20,39,-20xm87,-33v21,0,26,-19,29,-43v5,-46,-48,-52,-59,-21v-1,31,2,64,30,64"},"7":{"d":"32,0r68,-197r13,-18v-25,7,-63,3,-94,4r0,-41r136,0r0,14r-82,238r-41,0","k":{" ":16,"-":19,",":36,".":36,"A":22,"\u00c0":22,"\u00c1":22,"\u00c2":22,"\u00c3":22,"\u0102":22,"C":10,"G":10,"O":10,"Q":10,"\u00d2":10,"\u00d3":10,"\u00d4":10,"\u00d5":10,"c":18,"e":18,"g":18,"o":18,"q":18,"\u00e8":18,"\u00e9":18,"\u00ea":18,"\u00f2":18,"\u00f3":18,"\u00f4":18,"\u00f5":18,"\u0111":18,"t":11,"a":18,"m":18,"n":18,"p":18,"r":18,"s":18,"u":18,"\u00e0":6,"\u00e1":6,"\u00e2":6,"\u00e3":6,"\u00ec":6,"\u00ed":6,"\u00f9":6,"\u00fa":6,"\u0103":6}},"8":{"d":"85,5v-80,0,-83,-109,-31,-134v-48,-27,-39,-135,33,-128v70,-7,79,97,31,124v55,27,46,138,-33,138xm86,-33v39,0,29,-61,5,-71v-6,-5,-5,-5,-11,-9v-28,13,-34,80,6,80xm87,-219v-33,0,-25,54,-5,64v3,3,7,6,11,8v20,-14,27,-72,-6,-72"},"9":{"d":"112,-112v-38,40,-104,-2,-99,-61v4,-47,24,-84,71,-84v98,0,82,164,40,218v-18,23,-43,39,-76,44r-10,-36v43,-7,67,-39,74,-81xm84,-219v-40,0,-39,86,2,85v19,0,32,-8,30,-31v-2,-26,-6,-54,-32,-54"},":":{"d":"53,-126v-16,0,-26,-10,-26,-27v0,-17,9,-27,26,-27v17,0,26,10,26,27v0,17,-10,27,-26,27xm53,4v-16,0,-26,-10,-26,-27v0,-17,9,-27,26,-27v17,0,26,10,26,27v0,17,-10,27,-26,27","w":90,"k":{"\/":-4}},";":{"d":"46,3v-13,0,-20,-10,-20,-26v0,-15,10,-28,25,-27v48,4,28,87,-1,96v-5,3,-9,6,-13,7r-13,-17v11,-5,21,-19,22,-33xm52,-126v-16,0,-26,-10,-26,-27v0,-17,9,-27,26,-27v17,0,26,10,26,27v0,17,-10,27,-26,27","w":90},"<":{"d":"13,-103r0,-25r112,-80r21,29v-31,21,-57,48,-94,63v39,13,64,40,96,61r-22,29","w":159},"=":{"d":"14,-107r132,0r0,38r-132,0r0,-38xm14,-176r132,0r0,38r-132,0r0,-38","w":159},">":{"d":"147,-131r0,25r-111,79r-22,-29v31,-21,57,-47,94,-62v-39,-13,-64,-40,-96,-61r23,-28","w":159},"?":{"d":"131,-197v0,61,-53,65,-54,122r-36,0v-8,-61,41,-68,46,-117v3,-37,-47,-29,-63,-13r-17,-32v36,-32,124,-28,124,40xm60,4v-16,0,-25,-11,-25,-27v0,-16,8,-27,25,-27v17,0,27,10,27,27v0,17,-11,27,-27,27","w":137},"@":{"d":"161,-176v15,-2,24,5,31,13r9,-11r24,0r-14,98v-3,22,0,33,10,33v31,0,39,-36,39,-74v0,-62,-32,-94,-94,-94v-70,0,-105,51,-109,125v-4,87,69,134,145,103r10,32v-98,38,-198,-22,-191,-134v6,-95,53,-160,145,-160v82,0,131,45,131,128v0,61,-30,107,-88,110v-22,1,-34,-13,-36,-34v-11,15,-23,34,-48,34v-24,-1,-39,-24,-38,-52v3,-58,21,-112,74,-117xm127,-69v0,24,20,35,33,17v19,-16,17,-52,22,-81v-34,-24,-55,27,-55,64","w":317},"A":{"d":"118,-57r-59,0r-15,57r-45,0r73,-254r36,0r73,254r-47,0xm68,-94r42,0r-14,-59v-3,-13,-2,-29,-7,-40v-5,35,-13,67,-21,99","w":180},"B":{"d":"16,-250v59,-9,144,-17,144,56v0,33,-17,50,-36,62v27,6,42,26,42,61v0,77,-80,83,-150,69r0,-248xm119,-74v0,-34,-24,-37,-57,-35r0,71v28,8,57,-4,57,-36xm90,-147v31,-7,37,-69,-8,-69v-10,0,-16,0,-20,1r0,70","w":176,"k":{"T":9}},"C":{"d":"112,-37v17,0,28,-5,38,-11r9,38v-12,10,-35,15,-56,15v-71,0,-90,-57,-93,-131v-4,-95,55,-155,146,-122r-9,40v-11,-5,-22,-7,-38,-7v-42,0,-51,38,-51,89v0,46,9,87,54,89","w":164,"k":{" ":12,"-":19,"A":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u0102":14,"C":10,"G":10,"O":10,"Q":10,"\u00d2":10,"\u00d3":10,"\u00d4":10,"\u00d5":10,"T":14,"V":21,"W":9,"X":16,"Y":17,"\u00dd":17,"Z":16,"c":10,"e":10,"g":10,"o":10,"q":10,"\u00e8":10,"\u00e9":10,"\u00ea":10,"\u00f2":10,"\u00f3":10,"\u00f4":10,"\u00f5":10,"\u0111":10,"t":10,"v":16,"y":16,"\u00fd":16,"w":12,"x":14,"z":5,"a":3,"m":3,"n":3,"p":3,"r":3,"s":3,"u":3}},"D":{"d":"182,-128v0,102,-61,149,-166,128r0,-252v18,-4,42,-4,62,-4v77,0,104,50,104,128xm134,-129v0,-53,-14,-95,-72,-84r0,174v59,10,72,-36,72,-90","w":192,"k":{"J":7," ":4,")":5,"]":5,"}":5,"*":3,",":9,".":9,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u0102":9,"T":11,"V":12,"W":9,"X":17,"Y":15,"\u00dd":15,"Z":7,"v":2,"y":2,"\u00fd":2,"x":9,"z":5,"\"":12,"'":12}},"E":{"d":"16,-252r126,0r0,42r-80,0r0,62r73,0r0,41r-73,0r0,65r82,0r0,42r-128,0r0,-252","w":154},"F":{"d":"16,-252r126,0r0,42r-80,0r0,65r74,0r0,42r-74,0r0,103r-46,0r0,-252","w":150},"G":{"d":"58,-126v-3,60,29,108,76,80r0,-51r-41,-6r0,-27r77,0r0,111v-15,14,-39,24,-66,24v-71,0,-91,-56,-94,-131v-4,-97,60,-155,152,-121r-9,39v-12,-5,-23,-7,-40,-7v-45,0,-53,41,-55,89","w":180},"H":{"d":"130,-107r-68,0r0,107r-46,0r0,-252r46,0r0,104r68,0r0,-104r46,0r0,252r-46,0r0,-107","w":191},"I":{"d":"20,-252r46,0r0,252r-46,0r0,-252","w":85},"J":{"d":"4,-42v24,14,37,-4,37,-36r0,-174r45,0r0,183v7,59,-40,89,-92,65","w":104},"K":{"d":"71,-108r-9,0r0,108r-46,0r0,-252r46,0r0,112r9,-4r52,-108r52,0r-58,106r-17,14r17,13r67,119r-55,0","w":186,"k":{" ":9,"-":24,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u0102":9,"C":17,"G":17,"O":17,"Q":17,"\u00d2":17,"\u00d3":17,"\u00d4":17,"\u00d5":17,"T":14,"V":12,"W":10,"X":11,"Y":13,"\u00dd":13,"Z":4,"c":14,"e":14,"g":14,"o":14,"q":14,"\u00e8":14,"\u00e9":14,"\u00ea":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u0111":14,"t":14,"v":16,"y":16,"\u00fd":16,"w":16,"x":15,"z":3,"a":5,"m":5,"n":5,"p":5,"r":5,"s":5,"u":5}},"L":{"d":"150,0r-134,0r0,-252r46,0r0,210r88,0r0,42","w":152,"k":{" ":16,"*":49,"-":19,"A":39,"\u00c0":39,"\u00c1":39,"\u00c2":39,"\u00c3":39,"\u0102":39,"C":29,"G":29,"O":29,"Q":29,"\u00d2":29,"\u00d3":29,"\u00d4":29,"\u00d5":29,"T":40,"V":36,"W":27,"X":44,"Y":39,"\u00dd":39,"Z":28,"c":9,"e":9,"g":9,"o":9,"q":9,"\u00e8":9,"\u00e9":9,"\u00ea":9,"\u00f2":9,"\u00f3":9,"\u00f4":9,"\u00f5":9,"\u0111":9,"t":9,"v":24,"y":24,"\u00fd":24,"w":18,"x":22,"z":12,"\"":43,"'":43,"\u00e0":-3,"\u00e1":-3,"\u00e2":-3,"\u00e3":-3,"\u00ec":-3,"\u00ed":-3,"\u00f9":-3,"\u00fa":-3,"\u0103":-3}},"M":{"d":"177,0v1,-61,-3,-126,6,-178r-2,0v-14,49,-36,89,-55,132r-15,0v-22,-42,-41,-87,-59,-133v11,51,6,118,7,179r-43,0r0,-252r44,0v21,46,46,89,62,140v13,-53,39,-93,58,-140r43,0r0,252r-46,0","w":239},"N":{"d":"143,2v-30,-56,-66,-106,-88,-170r-2,0v10,48,5,111,6,168r-43,0r0,-254r35,0v30,56,67,105,88,170r2,0v-10,-48,-5,-111,-6,-168r43,0r0,254r-35,0","w":194},"O":{"d":"99,5v-71,0,-88,-58,-89,-131v-1,-76,21,-131,89,-131v72,0,90,60,90,131v0,76,-22,131,-90,131xm141,-126v0,-42,-3,-89,-42,-89v-28,0,-41,29,-41,89v0,42,3,85,41,89v37,-4,42,-40,42,-89","w":199,"k":{"J":7," ":4,")":5,"]":5,"}":5,"*":3,",":9,".":9,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u0102":9,"T":11,"V":12,"W":9,"X":17,"Y":15,"\u00dd":15,"Z":7,"v":2,"y":2,"\u00fd":2,"x":9,"z":5,"\"":12,"'":12}},"P":{"d":"165,-172v0,64,-40,94,-103,85r0,87r-46,0r0,-249v70,-17,149,-7,149,77xm118,-173v0,-34,-24,-47,-56,-40r0,86v37,6,56,-11,56,-46","w":171,"k":{" ":12,"-":3,",":39,".":39,"A":23,"\u00c0":23,"\u00c1":23,"\u00c2":23,"\u00c3":23,"\u0102":23,"C":3,"G":3,"O":3,"Q":3,"\u00d2":3,"\u00d3":3,"\u00d4":3,"\u00d5":3,"T":2,"V":3,"W":2,"X":16,"Y":8,"\u00dd":8,"Z":5,"c":11,"e":11,"g":11,"o":11,"q":11,"\u00e8":11,"\u00e9":11,"\u00ea":11,"\u00f2":11,"\u00f3":11,"\u00f4":11,"\u00f5":11,"\u0111":11,"x":11,"z":3,"a":8,"m":8,"n":8,"p":8,"r":8,"s":8,"u":8,"\u00e0":3,"\u00e1":3,"\u00e2":3,"\u00e3":3,"\u00ec":3,"\u00ed":3,"\u00f9":3,"\u00fa":3,"\u0103":3}},"Q":{"d":"59,13v56,-10,94,34,149,17r0,41v-56,19,-96,-26,-149,-17r0,-41xm99,5v-71,0,-88,-58,-89,-131v-1,-76,21,-131,89,-131v72,0,90,60,90,131v0,76,-22,131,-90,131xm141,-126v0,-42,-3,-89,-42,-89v-28,0,-41,29,-41,89v0,42,3,85,41,89v37,-4,42,-40,42,-89","w":199,"k":{"J":7," ":4,")":5,"]":5,"}":5,"*":3,",":9,".":9,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u0102":9,"T":11,"V":12,"W":9,"X":17,"Y":15,"\u00dd":15,"Z":7,"v":2,"y":2,"\u00fd":2,"x":9,"z":5,"\"":12,"'":12}},"R":{"d":"159,-184v0,38,-16,66,-43,76r15,12r46,96r-52,0r-44,-99r-19,-5r0,104r-46,0r0,-249v64,-15,143,-10,143,65xm111,-177v0,-29,-19,-43,-49,-35r0,77v34,3,49,-9,49,-42","w":181,"k":{"-":12,"A":12,"\u00c0":12,"\u00c1":12,"\u00c2":12,"\u00c3":12,"\u0102":12,"C":9,"G":9,"O":9,"Q":9,"\u00d2":9,"\u00d3":9,"\u00d4":9,"\u00d5":9,"T":13,"V":14,"W":12,"X":17,"Y":18,"\u00dd":18,"Z":7,"c":14,"e":14,"g":14,"o":14,"q":14,"\u00e8":14,"\u00e9":14,"\u00ea":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u0111":14,"t":7,"v":6,"y":6,"\u00fd":6,"w":6,"x":7,"z":3,"\"":6,"'":6}},"S":{"d":"22,-50v18,15,89,23,82,-15v-10,-57,-92,-50,-92,-124v0,-71,80,-80,133,-55r-14,40v-16,-12,-75,-22,-74,11v16,54,93,50,93,123v0,76,-86,90,-143,61","w":158},"T":{"d":"167,-210r-59,0r0,210r-45,0r0,-210r-60,0r0,-42r164,0r0,42","w":170,"k":{"\u0103":18,"\u00fd":38,"\u00f5":38,"\u00f4":38,"\u00f3":38,"\u00f2":38,"\u00ed":18,"\u00ec":18,"\u00ea":38,"\u00e9":38,"\u00e8":38,"\u00e3":18,"\u00e1":18," ":12,")":-4,"]":-4,"}":-4,"*":-6,"-":38,",":34,".":34,"A":24,"\u00c0":24,"\u00c1":24,"\u00c2":24,"\u00c3":24,"\u0102":24,"C":11,"G":11,"O":11,"Q":11,"\u00d2":11,"\u00d3":11,"\u00d4":11,"\u00d5":11,"T":-7,"V":11,"W":10,"X":14,"Y":23,"\u00dd":23,"Z":15,"c":38,"e":38,"g":38,"o":38,"q":38,"\u0111":38,"t":13,"v":38,"y":38,"w":38,"x":38,"z":38,"a":31,"m":31,"n":31,"p":31,"r":31,"s":31,"u":31,"\u00e0":18,"\u00e2":18,"\u00f9":18,"\u00fa":18}},"U":{"d":"95,-37v28,0,32,-20,32,-53r0,-162r43,0v-8,101,34,256,-75,256v-119,0,-70,-153,-80,-256r45,0r0,162v1,35,5,53,35,53","w":185},"V":{"d":"50,-252v14,64,35,121,43,191v11,-66,28,-128,43,-191r48,0r-76,254r-35,0r-77,-254r54,0","w":181,"k":{"\u00fa":10,"\u00f5":23,"\u00f2":23,"\u00ec":10,"\u00ea":23,"\u00e8":23,"\u00e1":10," ":9,"*":-10,"-":16,",":34,".":34,"A":21,"\u00c0":21,"\u00c1":21,"\u00c2":21,"\u00c3":21,"\u0102":21,"C":12,"G":12,"O":12,"Q":12,"\u00d2":12,"\u00d3":12,"\u00d4":12,"\u00d5":12,"T":11,"V":12,"W":10,"X":12,"Y":14,"\u00dd":14,"Z":12,"c":23,"e":23,"g":23,"o":23,"q":23,"\u00e9":23,"\u00f3":23,"\u00f4":23,"\u0111":23,"t":6,"v":2,"y":2,"\u00fd":2,"w":5,"x":14,"z":14,"\"":-12,"'":-12,"a":17,"m":17,"n":17,"p":17,"r":17,"s":17,"u":17,"\u00e0":10,"\u00e2":10,"\u00e3":10,"\u00ed":10,"\u00f9":10,"\u0103":10}},"W":{"d":"49,-252v10,61,25,116,28,184r2,0v4,-70,25,-123,38,-184r31,0v14,60,31,117,38,184v4,-66,18,-123,27,-184r46,0r-57,254r-32,0v-13,-59,-33,-112,-40,-178v-9,61,-27,119,-41,178r-34,0r-56,-254r50,0","w":258,"k":{"\u00ec":9,"\u00e2":9,"\u00e1":9," ":8,"*":-9,"-":9,",":26,".":26,"A":14,"\u00c0":14,"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u0102":14,"C":9,"G":9,"O":9,"Q":9,"\u00d2":9,"\u00d3":9,"\u00d4":9,"\u00d5":9,"T":10,"V":10,"W":11,"X":10,"Y":14,"\u00dd":14,"Z":11,"c":16,"e":16,"g":16,"o":16,"q":16,"\u00e8":16,"\u00e9":16,"\u00ea":16,"\u00f2":16,"\u00f3":16,"\u00f4":16,"\u00f5":16,"\u0111":16,"t":4,"v":2,"y":2,"\u00fd":2,"w":5,"x":12,"z":13,"\"":-12,"'":-12,"a":15,"m":15,"n":15,"p":15,"r":15,"s":15,"u":15,"\u00e0":9,"\u00e3":9,"\u00ed":9,"\u00f9":9,"\u00fa":9,"\u0103":9}},"X":{"d":"64,-128r-56,-124r55,0v12,33,28,62,36,99v7,-39,24,-66,37,-99r49,0r-58,121r61,131r-53,0v-14,-35,-32,-66,-42,-105v-8,40,-27,70,-41,105r-50,0","w":190,"k":{" ":9,"-":24,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u0102":9,"C":17,"G":17,"O":17,"Q":17,"\u00d2":17,"\u00d3":17,"\u00d4":17,"\u00d5":17,"T":14,"V":12,"W":10,"X":11,"Y":13,"\u00dd":13,"Z":4,"c":14,"e":14,"g":14,"o":14,"q":14,"\u00e8":14,"\u00e9":14,"\u00ea":14,"\u00f2":14,"\u00f3":14,"\u00f4":14,"\u00f5":14,"\u0111":14,"t":14,"v":16,"y":16,"\u00fd":16,"w":16,"x":15,"z":3,"a":5,"m":5,"n":5,"p":5,"r":5,"s":5,"u":5}},"Y":{"d":"66,-94r-67,-158r54,0v13,41,33,75,38,123r2,0v5,-48,25,-82,38,-123r49,0r-68,158r0,94r-46,0r0,-94","w":178,"k":{"\u00fa":15,"\u00f5":33,"\u00f4":33,"\u00f2":33,"\u00ec":15,"\u00ea":33,"\u00e8":33,"\u00e2":15,"\u00e1":15," ":8,"*":-7,"-":21,",":36,".":36,"A":27,"\u00c0":27,"\u00c1":27,"\u00c2":27,"\u00c3":27,"\u0102":27,"C":15,"G":15,"O":15,"Q":15,"\u00d2":15,"\u00d3":15,"\u00d4":15,"\u00d5":15,"T":23,"V":14,"W":10,"X":13,"Y":14,"\u00dd":14,"Z":18,"c":33,"e":33,"g":33,"o":33,"q":33,"\u00e9":33,"\u00f3":33,"\u0111":33,"t":16,"v":14,"y":14,"\u00fd":14,"w":12,"x":18,"z":21,"\"":-11,"'":-11,"a":21,"m":21,"n":21,"p":21,"r":21,"s":21,"u":21,"\u00e0":15,"\u00e3":15,"\u00ed":15,"\u00f9":15,"\u0103":15}},"Z":{"d":"8,-42r84,-153r15,-15r-99,0r0,-42r145,0r0,42r-85,155r-15,13r100,0r0,42r-145,0r0,-42","w":160,"k":{" ":4,"-":14,"A":8,"\u00c0":8,"\u00c1":8,"\u00c2":8,"\u00c3":8,"\u0102":8,"C":7,"G":7,"O":7,"Q":7,"\u00d2":7,"\u00d3":7,"\u00d4":7,"\u00d5":7,"T":7,"V":12,"W":10,"X":8,"Y":18,"\u00dd":18,"Z":2,"c":10,"e":10,"g":10,"o":10,"q":10,"\u00e8":10,"\u00e9":10,"\u00ea":10,"\u00f2":10,"\u00f3":10,"\u00f4":10,"\u00f5":10,"\u0111":10,"t":2,"z":3,"a":2,"m":2,"n":2,"p":2,"r":2,"s":2,"u":2}},"[":{"d":"16,-252r75,0r0,37r-33,0r0,261r33,0r0,37r-75,0r0,-335","w":99,"k":{"-":12,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u0102":5,"C":5,"G":5,"O":5,"Q":5,"\u00d2":5,"\u00d3":5,"\u00d4":5,"\u00d5":5,"c":5,"e":5,"g":5,"o":5,"q":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u0111":5,"t":3}},"\\":{"d":"134,37r-33,13r-107,-293r33,-13","w":130},"]":{"d":"83,83r-75,0r0,-37r33,0r0,-261r-33,0r0,-37r75,0r0,335","w":99},"^":{"d":"65,-254r25,0r55,105r-42,0v-10,-22,-23,-42,-27,-70v-5,27,-17,48,-28,70r-42,0","w":154},"_":{"d":"0,44r135,0r0,37r-135,0r0,-37","w":134},"`":{"d":"83,-204r-24,0r-37,-44r0,-11r43,0","w":104},"a":{"d":"91,-107v13,-51,-38,-43,-64,-30r-11,-32v15,-9,38,-15,64,-15v87,0,37,116,58,184r-35,0v-4,-7,-3,-18,-9,-22v-17,41,-92,28,-88,-28v4,-46,36,-59,85,-57xm92,-80v-36,-13,-58,37,-25,46v23,0,28,-20,25,-46","w":148,"k":{"T":36,"'":14,"\"":14}},"b":{"d":"75,4v-23,0,-47,-4,-60,-11r0,-245r43,0r1,84v44,-41,91,2,91,73v0,61,-22,97,-75,99xm106,-92v-2,-28,-3,-53,-24,-53v-39,0,-20,69,-24,106v34,14,51,-11,48,-53","w":159,"k":{"f":4,")":5,"]":5,"}":5,"*":6,",":3,".":3,"v":4,"y":4,"\u00fd":4,"w":3,"x":7,"z":2,"\"":23,"'":23}},"c":{"d":"53,-90v-4,41,26,70,60,47r9,33v-11,10,-29,15,-47,15v-52,0,-66,-41,-66,-95v0,-74,47,-115,111,-85r-10,36v-33,-18,-62,5,-57,49","w":126,"k":{" ":7,")":3,"]":3,"}":3,"-":10,"c":5,"e":5,"g":5,"o":5,"q":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u0111":5,"v":5,"y":5,"\u00fd":5,"w":5,"x":2,"z":2,"\"":7,"'":7}},"d":{"d":"9,-87v-2,-67,32,-111,93,-92r0,-73r43,0r0,219v0,10,1,21,3,33r-30,0v-3,-7,-3,-16,-7,-21v-8,17,-23,26,-43,26v-45,0,-57,-38,-59,-92xm53,-86v2,27,4,51,25,51v41,0,19,-67,24,-104v-31,-18,-53,9,-49,53","w":160},"e":{"d":"51,-78v-7,47,45,55,73,35r13,30v-12,11,-35,18,-57,18v-53,-2,-71,-40,-71,-95v0,-59,21,-94,73,-95v56,-2,66,53,57,107r-88,0xm102,-107v8,-35,-24,-54,-42,-30v-5,7,-6,17,-7,30r49,0","w":154,"k":{")":4,"]":4,"}":4,"*":7,"v":4,"y":4,"\u00fd":4,"x":6,"\"":16,"'":16}},"f":{"d":"22,-180v-9,-64,38,-89,89,-68r-8,36v-24,-10,-43,-1,-38,32r31,0r0,38r-31,0r0,142r-43,0r0,-142r-19,0r0,-38r19,0","w":96,"k":{"\u00ec":-14,"}":-18,"]":-18,")":-18,"*":-12,",":6,".":6,"t":2,"v":4,"y":4,"\u00fd":4,"w":3,"\"":-12,"'":-12}},"g":{"d":"85,-184v23,0,45,4,59,10r0,174v8,72,-65,91,-122,66r9,-37v30,18,85,9,70,-41v-6,11,-18,15,-35,15v-45,0,-57,-35,-57,-89v0,-60,22,-97,76,-98xm102,-142v-35,-14,-49,13,-49,54v0,55,32,69,49,36r0,-90","w":159},"h":{"d":"103,-185v72,4,37,117,45,185r-43,0r0,-109v8,-43,-40,-44,-47,-15r0,124r-43,0r0,-252r43,0r1,88v10,-11,23,-21,44,-21","w":161},"i":{"d":"40,-207v-15,0,-27,-9,-26,-24v0,-14,11,-25,26,-25v16,0,28,11,28,25v0,15,-12,25,-28,24xm19,-180r43,0r0,180r-43,0r0,-180","w":81},"j":{"d":"40,-207v-15,0,-27,-9,-26,-24v0,-14,11,-25,26,-25v16,0,28,11,28,25v0,15,-12,25,-28,24xm-6,34v23,2,25,-15,25,-39r0,-175r43,0r0,188v3,48,-22,77,-68,64r0,-38","w":81},"k":{"d":"68,-75r-10,0r0,75r-43,0r0,-252r43,0r0,149r9,-5r30,-72r46,0v-16,28,-22,66,-48,84r17,12r36,84r-48,0","w":148,"k":{"\u0111":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"q":7,"o":7,"g":7,"e":7,"c":7," ":9,"-":10,"v":-6,"y":-6,"\u00fd":-6,"x":2}},"l":{"d":"88,-4v-24,14,-72,14,-72,-31r0,-217r43,0r0,194v-2,20,8,28,25,20","w":87},"m":{"d":"54,-158v12,-27,73,-40,82,1v9,-16,21,-27,44,-27v74,1,36,116,45,184r-43,0r0,-109v0,-21,0,-36,-18,-36v-13,0,-19,8,-23,19r0,126r-42,0r0,-105v-2,-24,1,-38,-18,-40v-13,-1,-19,10,-23,19r0,126r-43,0r0,-180r34,0","w":238},"n":{"d":"103,-184v73,3,36,117,45,184r-43,0r0,-109v7,-43,-39,-44,-47,-16r0,125r-43,0r0,-180r35,0v2,7,2,16,6,21v9,-14,23,-26,47,-25","w":161,"k":{"T":32}},"o":{"d":"151,-90v-1,58,-20,95,-71,95v-47,0,-71,-32,-71,-95v0,-57,21,-95,71,-95v52,0,72,38,71,95xm80,-147v-38,0,-39,114,0,114v25,0,27,-25,27,-57v0,-29,-3,-57,-27,-57","w":160,"k":{"f":4,")":5,"]":5,"}":5,"*":6,",":3,".":3,"v":4,"y":4,"\u00fd":4,"w":3,"x":7,"z":2,"\"":23,"'":23}},"p":{"d":"152,-95v3,67,-34,117,-94,94r0,73r-43,0r0,-252r33,0v2,7,1,16,5,21v10,-16,21,-25,44,-25v45,0,53,36,55,89xm108,-96v-2,-28,-3,-50,-25,-50v-39,0,-21,68,-25,106v32,20,53,-11,50,-56","w":160,"k":{"f":4,")":5,"]":5,"}":5,"*":6,",":3,".":3,"v":4,"y":4,"\u00fd":4,"w":3,"x":7,"z":2,"\"":23,"'":23}},"q":{"d":"9,-86v0,-84,65,-116,135,-88r0,246r-42,0v-2,-27,4,-62,-2,-85v-7,11,-17,19,-35,18v-42,-2,-56,-39,-56,-91xm53,-88v0,57,33,70,49,36r0,-89v-33,-16,-49,11,-49,53","w":159},"r":{"d":"55,-158v5,-20,28,-32,50,-22r-5,42v-19,-9,-38,2,-42,18r0,120r-43,0r0,-180r33,0v3,7,1,18,7,22","w":105,"k":{",":18,".":18,"t":-9}},"s":{"d":"19,-43v12,9,55,22,57,-5v-12,-38,-67,-31,-67,-84v0,-57,66,-63,107,-41r-11,33v-17,-11,-69,-12,-48,18v24,19,62,27,62,72v0,57,-70,67,-112,42","w":126},"t":{"d":"103,-5v-34,18,-82,11,-82,-43r0,-94r-20,0r0,-38r20,0r0,-34r43,-13r0,47r35,0r0,38r-35,0r0,79v-4,27,13,33,33,24","w":104,"k":{")":3,"]":3,"}":3,"-":3,"t":2,"v":8,"y":8,"\u00fd":8,"w":5,"x":2,"\"":3,"'":3}},"u":{"d":"61,5v-74,-2,-39,-116,-47,-185r43,0r0,108v-9,47,45,44,45,12r0,-120r43,0v2,60,-5,128,5,180r-33,0v-3,-8,-3,-18,-8,-24v-10,14,-24,29,-48,29","w":160},"v":{"d":"45,-180r31,122v5,-44,17,-81,26,-122r46,0r-60,182r-29,0r-64,-182r50,0","w":143,"k":{" ":11,"*":-8,",":21,".":21,"c":2,"e":2,"g":2,"o":2,"q":2,"\u00e8":2,"\u00e9":2,"\u00ea":2,"\u00f2":2,"\u00f3":2,"\u00f4":2,"\u00f5":2,"\u0111":2,"t":5,"v":-15,"y":-15,"\u00fd":-15,"w":-12,"x":-5}},"w":{"d":"127,-180v10,41,24,76,29,122r2,0v3,-44,13,-81,20,-122r39,0r-44,182r-34,0v-10,-42,-24,-78,-30,-124r-2,0v-5,46,-20,82,-29,124r-34,0r-47,-182r47,0r19,90v2,10,1,24,5,32v6,-44,18,-82,27,-122r32,0","w":214,"k":{" ":7,",":15,".":15,"c":3,"e":3,"g":3,"o":3,"q":3,"\u00e8":3,"\u00e9":3,"\u00ea":3,"\u00f2":3,"\u00f3":3,"\u00f4":3,"\u00f5":3,"\u0111":3,"t":3,"v":-12,"y":-12,"\u00fd":-12,"w":-8,"z":2}},"x":{"d":"48,-92r-43,-88r50,0v9,21,20,41,26,66v6,-25,17,-45,26,-66r46,0r-43,86r46,94r-48,0v-11,-23,-23,-45,-30,-72v-8,26,-20,48,-30,72r-47,0","w":158,"k":{" ":9,"-":10,"c":7,"e":7,"g":7,"o":7,"q":7,"\u00e8":7,"\u00e9":7,"\u00ea":7,"\u00f2":7,"\u00f3":7,"\u00f4":7,"\u00f5":7,"\u0111":7,"v":-6,"y":-6,"\u00fd":-6,"x":2}},"y":{"d":"48,-180v12,42,17,91,32,129v4,-47,16,-86,24,-129r44,0r-57,201v-7,33,-31,67,-70,47r7,-36v22,5,28,-12,31,-32r-63,-180r52,0","w":144,"k":{" ":11,"*":-8,",":21,".":21,"c":2,"e":2,"g":2,"o":2,"q":2,"\u00e8":2,"\u00e9":2,"\u00ea":2,"\u00f2":2,"\u00f3":2,"\u00f4":2,"\u00f5":2,"\u0111":2,"t":5,"v":-15,"y":-15,"\u00fd":-15,"w":-12,"x":-5}},"z":{"d":"9,-38v25,-34,44,-75,74,-104r-74,0r0,-38r119,0r0,38v-25,34,-42,76,-73,104r73,0r0,38r-119,0r0,-38","w":137,"k":{" ":9,"-":12,"c":2,"e":2,"g":2,"o":2,"q":2,"\u00e8":2,"\u00e9":2,"\u00ea":2,"\u00f2":2,"\u00f3":2,"\u00f4":2,"\u00f5":2,"\u0111":2,"t":4,"\"":4,"'":4}},"{":{"d":"76,24v0,20,11,24,31,22r0,37v-41,2,-72,3,-72,-43v0,-38,16,-104,-23,-107r0,-35v59,-6,-17,-143,56,-150r39,0r0,36v-68,-12,1,107,-51,129r0,3v31,10,20,69,20,108","w":112,"k":{"-":12,"A":5,"\u00c0":5,"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u0102":5,"C":5,"G":5,"O":5,"Q":5,"\u00d2":5,"\u00d3":5,"\u00d4":5,"\u00d5":5,"c":5,"e":5,"g":5,"o":5,"q":5,"\u00e8":5,"\u00e9":5,"\u00ea":5,"\u00f2":5,"\u00f3":5,"\u00f4":5,"\u00f5":5,"\u0111":5,"t":3}},"|":{"d":"16,-252r35,0r0,299r-35,0r0,-299","w":67},"}":{"d":"36,-194v0,-21,-10,-23,-30,-22r0,-36v40,-1,71,-4,71,42v0,39,-16,105,24,108r0,34v-60,6,16,145,-57,151r-38,0r0,-37v20,1,33,0,30,-22v4,-38,-13,-100,21,-106r0,-4v-33,-8,-21,-69,-21,-108","w":112},"~":{"d":"56,-117v-16,0,-23,8,-33,17r-15,-36v21,-28,65,-28,91,-8v14,7,28,1,37,-8r16,38v-11,9,-21,16,-37,17v-25,0,-35,-20,-59,-20","w":159},"\u00c0":{"d":"120,-271r-34,0r-46,-31r0,-11r51,0xm118,-57r-59,0r-15,57r-45,0r73,-254r36,0r73,254r-47,0xm68,-94r42,0r-14,-59v-3,-13,-2,-29,-7,-40v-5,35,-13,67,-21,99","w":180},"\u00c1":{"d":"90,-313r51,0r0,11r-47,31r-34,0xm118,-57r-59,0r-15,57r-45,0r73,-254r36,0r73,254r-47,0xm68,-94r42,0r-14,-59v-3,-13,-2,-29,-7,-40v-5,35,-13,67,-21,99","w":180},"\u00c2":{"d":"75,-313r32,0r37,33r0,14r-31,0v-9,-7,-19,-14,-23,-27v-4,13,-15,19,-24,27r-30,0r0,-14xm118,-57r-59,0r-15,57r-45,0r73,-254r36,0r73,254r-47,0xm68,-94r42,0r-14,-59v-3,-13,-2,-29,-7,-40v-5,35,-13,67,-21,99","w":180},"\u00c3":{"d":"148,-284v-23,43,-81,-14,-109,18r-9,-21v19,-33,58,-19,90,-10v9,0,14,-3,19,-9xm118,-57r-59,0r-15,57r-45,0r73,-254r36,0r73,254r-47,0xm68,-94r42,0r-14,-59v-3,-13,-2,-29,-7,-40v-5,35,-13,67,-21,99","w":180},"\u00c8":{"d":"107,-271r-34,0r-47,-31r0,-11r51,0xm16,-252r126,0r0,42r-80,0r0,62r73,0r0,41r-73,0r0,65r82,0r0,42r-128,0r0,-252","w":154},"\u00c9":{"d":"84,-313r52,0r0,11r-48,31r-33,0xm16,-252r126,0r0,42r-80,0r0,62r73,0r0,41r-73,0r0,65r82,0r0,42r-128,0r0,-252","w":154},"\u00ca":{"d":"63,-313r32,0r37,33r0,14r-30,0v-9,-8,-19,-15,-24,-27v-4,13,-15,19,-24,27r-30,0r0,-14xm16,-252r126,0r0,42r-80,0r0,62r73,0r0,41r-73,0r0,65r82,0r0,42r-128,0r0,-252","w":154},"\u00cc":{"d":"73,-271r-34,0r-47,-31r0,-11r52,0xm20,-252r46,0r0,252r-46,0r0,-252","w":85},"\u00cd":{"d":"43,-313r51,0r0,11r-47,31r-34,0xm20,-252r46,0r0,252r-46,0r0,-252","w":85},"\u00d2":{"d":"124,-271r-34,0r-47,-31r0,-11r51,0xm99,5v-71,0,-88,-58,-89,-131v-1,-76,21,-131,89,-131v72,0,90,60,90,131v0,76,-22,131,-90,131xm141,-126v0,-42,-3,-89,-42,-89v-28,0,-41,29,-41,89v0,42,3,85,41,89v37,-4,42,-40,42,-89","w":199,"k":{"J":7," ":4,")":5,"]":5,"}":5,"*":3,",":9,".":9,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u0102":9,"T":11,"V":12,"W":9,"X":17,"Y":15,"\u00dd":15,"Z":7,"v":2,"y":2,"\u00fd":2,"x":9,"z":5,"\"":12,"'":12}},"\u00d3":{"d":"108,-313r52,0r0,11r-48,31r-33,0xm99,5v-71,0,-88,-58,-89,-131v-1,-76,21,-131,89,-131v72,0,90,60,90,131v0,76,-22,131,-90,131xm141,-126v0,-42,-3,-89,-42,-89v-28,0,-41,29,-41,89v0,42,3,85,41,89v37,-4,42,-40,42,-89","w":199,"k":{"J":7," ":4,")":5,"]":5,"}":5,"*":3,",":9,".":9,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u0102":9,"T":11,"V":12,"W":9,"X":17,"Y":15,"\u00dd":15,"Z":7,"v":2,"y":2,"\u00fd":2,"x":9,"z":5,"\"":12,"'":12}},"\u00d4":{"d":"84,-313r32,0r37,33r0,14r-31,0v-9,-7,-19,-14,-23,-27v-4,13,-15,19,-24,27r-30,0r0,-14xm99,5v-71,0,-88,-58,-89,-131v-1,-76,21,-131,89,-131v72,0,90,60,90,131v0,76,-22,131,-90,131xm141,-126v0,-42,-3,-89,-42,-89v-28,0,-41,29,-41,89v0,42,3,85,41,89v37,-4,42,-40,42,-89","w":199,"k":{"J":7," ":4,")":5,"]":5,"}":5,"*":3,",":9,".":9,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u0102":9,"T":11,"V":12,"W":9,"X":17,"Y":15,"\u00dd":15,"Z":7,"v":2,"y":2,"\u00fd":2,"x":9,"z":5,"\"":12,"'":12}},"\u00d5":{"d":"158,-284v-22,43,-81,-14,-109,18r-9,-21v19,-33,59,-19,90,-10v9,0,14,-3,19,-9xm99,5v-71,0,-88,-58,-89,-131v-1,-76,21,-131,89,-131v72,0,90,60,90,131v0,76,-22,131,-90,131xm141,-126v0,-42,-3,-89,-42,-89v-28,0,-41,29,-41,89v0,42,3,85,41,89v37,-4,42,-40,42,-89","w":199,"k":{"J":7," ":4,")":5,"]":5,"}":5,"*":3,",":9,".":9,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u0102":9,"T":11,"V":12,"W":9,"X":17,"Y":15,"\u00dd":15,"Z":7,"v":2,"y":2,"\u00fd":2,"x":9,"z":5,"\"":12,"'":12}},"\u00d9":{"d":"117,-271r-33,0r-47,-31r0,-11r51,0xm95,-37v28,0,32,-20,32,-53r0,-162r43,0v-8,101,34,256,-75,256v-119,0,-70,-153,-80,-256r45,0r0,162v1,35,5,53,35,53","w":185},"\u00da":{"d":"107,-313r51,0r0,11r-47,31r-34,0xm95,-37v28,0,32,-20,32,-53r0,-162r43,0v-8,101,34,256,-75,256v-119,0,-70,-153,-80,-256r45,0r0,162v1,35,5,53,35,53","w":185},"\u00dd":{"d":"95,-313r52,0r0,11r-48,31r-33,0xm66,-94r-67,-158r54,0v13,41,33,75,38,123r2,0v5,-48,25,-82,38,-123r49,0r-68,158r0,94r-46,0r0,-94","w":178,"k":{"\u00fa":15,"\u00f5":33,"\u00f4":33,"\u00f2":33,"\u00ec":15,"\u00ea":33,"\u00e8":33,"\u00e2":15,"\u00e1":15," ":8,"*":-7,"-":21,",":36,".":36,"A":27,"\u00c0":27,"\u00c1":27,"\u00c2":27,"\u00c3":27,"\u0102":27,"C":15,"G":15,"O":15,"Q":15,"\u00d2":15,"\u00d3":15,"\u00d4":15,"\u00d5":15,"T":23,"V":14,"W":10,"X":13,"Y":14,"\u00dd":14,"Z":18,"c":33,"e":33,"g":33,"o":33,"q":33,"\u00e9":33,"\u00f3":33,"\u0111":33,"t":16,"v":14,"y":14,"\u00fd":14,"w":12,"x":18,"z":21,"\"":-11,"'":-11,"a":21,"m":21,"n":21,"p":21,"r":21,"s":21,"u":21,"\u00e0":15,"\u00e3":15,"\u00ed":15,"\u00f9":15,"\u0103":15}},"\u00e0":{"d":"91,-107v13,-51,-38,-43,-64,-30r-11,-32v15,-9,38,-15,64,-15v87,0,37,116,58,184r-35,0v-4,-7,-3,-18,-9,-22v-17,41,-92,28,-88,-28v4,-46,36,-59,85,-57xm92,-80v-36,-13,-58,37,-25,46v23,0,28,-20,25,-46xm93,-204r-24,0r-37,-44r0,-11r43,0","w":148},"\u00e1":{"d":"71,-259r42,0v-2,28,-23,36,-33,55r-25,0xm91,-107v13,-51,-38,-43,-64,-30r-11,-32v15,-9,38,-15,64,-15v87,0,37,116,58,184r-35,0v-4,-7,-3,-18,-9,-22v-17,41,-92,28,-88,-28v4,-46,36,-59,85,-57xm92,-80v-36,-13,-58,37,-25,46v23,0,28,-20,25,-46","w":148},"\u00e2":{"d":"63,-264r30,0r33,66r-33,0v-7,-13,-13,-25,-17,-41v-2,17,-11,29,-18,41r-32,0xm91,-107v13,-51,-38,-43,-64,-30r-11,-32v15,-9,38,-15,64,-15v87,0,37,116,58,184r-35,0v-4,-7,-3,-18,-9,-22v-17,41,-92,28,-88,-28v4,-46,36,-59,85,-57xm92,-80v-36,-13,-58,37,-25,46v23,0,28,-20,25,-46","w":148},"\u00e3":{"d":"94,-210v-23,0,-45,-26,-64,-5r-8,-21v14,-26,47,-27,69,-10v11,5,22,1,29,-6r8,22v-9,12,-18,20,-34,20xm91,-107v13,-51,-38,-43,-64,-30r-11,-32v15,-9,38,-15,64,-15v87,0,37,116,58,184r-35,0v-4,-7,-3,-18,-9,-22v-17,41,-92,28,-88,-28v4,-46,36,-59,85,-57xm92,-80v-36,-13,-58,37,-25,46v23,0,28,-20,25,-46","w":148},"\u00e8":{"d":"51,-78v-7,47,45,55,73,35r13,30v-12,11,-35,18,-57,18v-53,-2,-71,-40,-71,-95v0,-59,21,-94,73,-95v56,-2,66,53,57,107r-88,0xm102,-107v8,-35,-24,-54,-42,-30v-5,7,-6,17,-7,30r49,0xm98,-204r-24,0r-37,-44r0,-11r43,0","w":154,"k":{")":4,"]":4,"}":4,"*":7,"v":4,"y":4,"\u00fd":4,"x":6,"\"":16,"'":16}},"\u00e9":{"d":"80,-259r43,0v-2,28,-24,35,-34,55r-24,0xm51,-78v-7,47,45,55,73,35r13,30v-12,11,-35,18,-57,18v-53,-2,-71,-40,-71,-95v0,-59,21,-94,73,-95v56,-2,66,53,57,107r-88,0xm102,-107v8,-35,-24,-54,-42,-30v-5,7,-6,17,-7,30r49,0","w":154,"k":{")":4,"]":4,"}":4,"*":7,"v":4,"y":4,"\u00fd":4,"x":6,"\"":16,"'":16}},"\u00ea":{"d":"64,-264r31,0r33,66r-34,0v-6,-13,-12,-26,-16,-41v-4,16,-11,28,-18,41r-32,0xm51,-78v-7,47,45,55,73,35r13,30v-12,11,-35,18,-57,18v-53,-2,-71,-40,-71,-95v0,-59,21,-94,73,-95v56,-2,66,53,57,107r-88,0xm102,-107v8,-35,-24,-54,-42,-30v-5,7,-6,17,-7,30r49,0","w":154,"k":{")":4,"]":4,"}":4,"*":7,"v":4,"y":4,"\u00fd":4,"x":6,"\"":16,"'":16}},"\u00ec":{"d":"19,-180r43,0r0,180r-43,0r0,-180xm60,-204r-24,0r-37,-44r0,-11r43,0","w":81},"\u00ed":{"d":"19,-180r43,0r0,180r-43,0r0,-180xm36,-259r43,0v-2,28,-24,35,-34,55r-24,0","w":81},"\u00f2":{"d":"151,-90v-1,58,-20,95,-71,95v-47,0,-71,-32,-71,-95v0,-57,21,-95,71,-95v52,0,72,38,71,95xm80,-147v-38,0,-39,114,0,114v25,0,27,-25,27,-57v0,-29,-3,-57,-27,-57xm98,-204r-24,0r-37,-44r0,-11r43,0","w":160,"k":{"f":4,")":5,"]":5,"}":5,"*":6,",":3,".":3,"v":4,"y":4,"\u00fd":4,"w":3,"x":7,"z":2,"\"":23,"'":23}},"\u00f3":{"d":"81,-259r42,0v-2,28,-23,36,-33,55r-24,0xm151,-90v-1,58,-20,95,-71,95v-47,0,-71,-32,-71,-95v0,-57,21,-95,71,-95v52,0,72,38,71,95xm80,-147v-38,0,-39,114,0,114v25,0,27,-25,27,-57v0,-29,-3,-57,-27,-57","w":160,"k":{"f":4,")":5,"]":5,"}":5,"*":6,",":3,".":3,"v":4,"y":4,"\u00fd":4,"w":3,"x":7,"z":2,"\"":23,"'":23}},"\u00f4":{"d":"67,-264r31,0r32,66r-33,0v-6,-13,-14,-24,-16,-41v-4,16,-11,28,-18,41r-32,0xm151,-90v-1,58,-20,95,-71,95v-47,0,-71,-32,-71,-95v0,-57,21,-95,71,-95v52,0,72,38,71,95xm80,-147v-38,0,-39,114,0,114v25,0,27,-25,27,-57v0,-29,-3,-57,-27,-57","w":160,"k":{"f":4,")":5,"]":5,"}":5,"*":6,",":3,".":3,"v":4,"y":4,"\u00fd":4,"w":3,"x":7,"z":2,"\"":23,"'":23}},"\u00f5":{"d":"99,-210v-23,0,-45,-26,-64,-5r-9,-21v11,-14,20,-21,36,-23v22,1,43,27,63,7r7,22v-9,12,-18,20,-33,20xm151,-90v-1,58,-20,95,-71,95v-47,0,-71,-32,-71,-95v0,-57,21,-95,71,-95v52,0,72,38,71,95xm80,-147v-38,0,-39,114,0,114v25,0,27,-25,27,-57v0,-29,-3,-57,-27,-57","w":160,"k":{"f":4,")":5,"]":5,"}":5,"*":6,",":3,".":3,"v":4,"y":4,"\u00fd":4,"w":3,"x":7,"z":2,"\"":23,"'":23}},"\u00f9":{"d":"61,5v-74,-2,-39,-116,-47,-185r43,0r0,108v-9,47,45,44,45,12r0,-120r43,0v2,60,-5,128,5,180r-33,0v-3,-8,-3,-18,-8,-24v-10,14,-24,29,-48,29xm96,-204r-24,0r-37,-44r0,-11r43,0","w":160},"\u00fa":{"d":"76,-259r43,0v-2,28,-24,35,-34,55r-24,0xm61,5v-74,-2,-39,-116,-47,-185r43,0r0,108v-9,47,45,44,45,12r0,-120r43,0v2,60,-5,128,5,180r-33,0v-3,-8,-3,-18,-8,-24v-10,14,-24,29,-48,29","w":160},"\u00fd":{"d":"74,-259r43,0v-2,28,-24,35,-34,55r-24,0xm48,-180v12,42,17,91,32,129v4,-47,16,-86,24,-129r44,0r-57,201v-7,33,-31,67,-70,47r7,-36v22,5,28,-12,31,-32r-63,-180r52,0","w":144,"k":{" ":11,"*":-8,",":21,".":21,"c":2,"e":2,"g":2,"o":2,"q":2,"\u00e8":2,"\u00e9":2,"\u00ea":2,"\u00f2":2,"\u00f3":2,"\u00f4":2,"\u00f5":2,"\u0111":2,"t":5,"v":-15,"y":-15,"\u00fd":-15,"w":-12,"x":-5}},"\u0102":{"d":"49,-315v13,26,70,26,83,0r16,11v-10,53,-103,51,-116,2xm118,-57r-59,0r-15,57r-45,0r73,-254r36,0r73,254r-47,0xm68,-94r42,0r-14,-59v-3,-13,-2,-29,-7,-40v-5,35,-13,67,-21,99","w":180},"\u0103":{"d":"127,-249v-2,39,-55,60,-86,34v-10,-8,-16,-19,-19,-33r20,-11v9,26,57,30,65,0xm91,-107v13,-51,-38,-43,-64,-30r-11,-32v15,-9,38,-15,64,-15v87,0,37,116,58,184r-35,0v-4,-7,-3,-18,-9,-22v-17,41,-92,28,-88,-28v4,-46,36,-59,85,-57xm92,-80v-36,-13,-58,37,-25,46v23,0,28,-20,25,-46","w":148},"\u0110":{"d":"189,-128v0,103,-63,149,-166,128r0,-116r-24,0r0,-28r24,0r0,-108v18,-4,42,-4,62,-4v77,0,104,50,104,128xm141,-129v0,-54,-14,-94,-72,-84r0,69r39,0r0,28r-39,0r0,77v59,10,72,-36,72,-90","w":199,"k":{"J":7," ":4,")":5,"]":5,"}":5,"*":3,",":9,".":9,"A":9,"\u00c0":9,"\u00c1":9,"\u00c2":9,"\u00c3":9,"\u0102":9,"T":11,"V":12,"W":9,"X":17,"Y":15,"\u00dd":15,"Z":7,"v":2,"y":2,"\u00fd":2,"x":9,"z":5,"\"":12,"'":12}},"\u0111":{"d":"9,-87v-2,-67,32,-111,93,-92r0,-23r-43,0r0,-29r43,0r0,-21r43,0r0,21r22,0r0,29r-22,0r0,169v0,10,1,21,3,33r-30,0v-3,-7,-3,-16,-7,-21v-8,17,-23,26,-43,26v-45,0,-57,-38,-59,-92xm53,-86v2,27,4,51,25,51v41,0,19,-67,24,-104v-31,-18,-53,9,-49,53","w":162},"\u00a0":{"w":73,"k":{"*":12,"-":14,",":23,".":23,"A":12,"\u00c0":12,"\u00c1":12,"\u00c2":12,"\u00c3":12,"\u0102":12,"C":4,"G":4,"O":4,"Q":4,"\u00d2":4,"\u00d3":4,"\u00d4":4,"\u00d5":4,"T":11,"V":9,"W":8,"X":9,"Y":9,"\u00dd":9,"Z":2,"v":6,"y":6,"\u00fd":6,"w":4,"x":5,"\"":26,"'":26}}}});

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2010 by Typemade. All rights reserved.
 * 
 * Trademark:
 * Josefin Sans is a trademark of Typemade.
 * 
 * Description:
 * Copyright (c) 2010 by Typemade. All rights reserved.
 * 
 * Manufacturer:
 * Typemade
 * 
 * Designer:
 * Santiago Orozco
 * 
 * License information:
 * http://scripts.sil.org/OFL
 */
Cufon.registerFont({"w":162,"face":{"font-family":"Josefin Sans","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"1","bbox":"-10 -336 377 90","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+00FD"},"glyphs":{" ":{"w":108},"\u00a0":{"w":108},"t":{"d":"45,-223r15,0r0,88r41,0r0,15r-41,0r0,120r-15,0r0,-120r-32,0r0,-15r32,0r0,-88","w":103,"k":{"a":14,"z":-1,"w":13,"s":14,"v":-2,"f":9,"u":9,"b":17}},"b":{"d":"100,-12v33,0,56,-21,56,-56v0,-33,-22,-55,-56,-55v-34,0,-55,22,-55,55v0,34,22,56,55,56xm100,-138v42,0,68,27,71,70v5,72,-104,94,-128,37r0,31r-13,0r0,-270r15,0r-2,166v9,-19,29,-34,57,-34","w":190,"k":{"n":18,"a":15,"z":9,"x":9,"w":27,"s":27,"v":13,"f":9,".":18,"u":19,"b":13}},"l":{"d":"42,0r-15,0r0,-270r15,0r0,270","w":67},"m":{"d":"51,-100v10,-41,97,-56,102,-2v11,-41,102,-54,102,4r0,98r-15,0v-5,-46,19,-122,-31,-123v-61,-2,-57,62,-55,123r-15,0v-5,-47,19,-123,-32,-123v-31,0,-55,18,-55,49r0,74r-15,0r0,-135r14,0r0,35","w":286},"i":{"d":"35,-171v-7,0,-13,-5,-12,-12v0,-7,6,-12,12,-12v6,0,11,6,11,12v0,7,-4,12,-11,12xm42,0r-15,0r0,-135r15,0r0,135","w":67},"h":{"d":"107,-123v-31,0,-55,18,-55,49r0,74r-15,0r0,-270r15,0r-1,170v10,-42,103,-56,103,2r0,98r-15,0v-5,-47,19,-123,-32,-123","w":180,"k":{"a":13,"w":13,"s":18,"v":9,"f":9,".":7,"u":14,"b":13}},"c":{"d":"28,-68v0,48,56,71,91,44v4,3,7,6,9,11v-43,35,-115,5,-115,-55v0,-58,71,-90,116,-54v-5,4,-5,6,-10,11v-33,-27,-91,-4,-91,43","w":139,"k":{"a":1,"s":9,"u":9,"b":5}},"q":{"d":"145,-67v5,-62,-88,-73,-107,-22v-14,39,11,78,51,77v34,-1,54,-21,56,-55xm89,3v-42,0,-71,-28,-71,-70v0,-43,29,-71,71,-71v27,0,49,15,58,35r0,-32r13,0r0,225r-15,0r2,-121v-9,20,-29,34,-58,34","w":184},"u":{"d":"84,-12v30,0,55,-18,55,-49r0,-74r15,0r0,136r-15,0r1,-36v-10,42,-102,57,-103,-2r0,-98r15,0v5,47,-19,123,32,123","w":190},"r":{"d":"107,-123v-61,-2,-57,62,-55,123r-15,0r0,-135r14,0r0,35v8,-21,32,-38,57,-38","w":119,"k":{"a":17,"w":4,"s":14,"v":-5,".":8,"u":14,"b":6}},"e":{"d":"126,-96v-20,-49,-113,-24,-96,39xm13,-68v0,-66,91,-94,123,-40v4,6,7,14,9,21r-111,44v9,30,65,42,87,16v5,4,5,6,10,11v-41,39,-118,10,-118,-52","k":{"a":10,"x":9,"w":13,"s":18,"v":5,"f":5,".":7,"u":18,"b":15}},"p":{"d":"95,-12v34,0,56,-21,56,-55v0,-35,-23,-56,-56,-56v-34,0,-56,22,-56,56v0,32,21,55,56,55xm95,-138v42,0,68,29,71,71v5,70,-104,94,-128,36v2,38,0,81,1,121r-15,0r0,-225r13,0r0,32v9,-20,31,-35,58,-35","w":189},"\u00e1":{"d":"84,-172r32,-48r15,0r-36,48r-11,0xm89,-123v-34,0,-56,22,-56,55v0,35,23,56,56,56v33,0,55,-22,55,-56v0,-33,-21,-55,-55,-55xm89,3v-42,0,-68,-27,-71,-71v-5,-72,104,-93,128,-35r1,-32r12,0r0,135r-13,0r0,-31v-8,20,-29,34,-57,34","w":198},"\u00e9":{"d":"82,-172r32,-48r16,0r-36,48r-12,0xm126,-96v-20,-49,-113,-24,-96,39xm13,-68v0,-66,91,-94,123,-40v4,6,7,14,9,21r-111,44v9,30,65,42,87,16v5,4,5,6,10,11v-41,39,-118,10,-118,-52"},"\u00ed":{"d":"40,0r-14,0r0,-135r14,0r0,135xm28,-172r33,-48r15,0r-36,48r-12,0","w":71,"k":{"a":14,"s":18,"b":13}},"\u00f3":{"d":"83,-172r33,-48r15,0r-36,48r-12,0xm84,3v-42,0,-71,-29,-71,-71v0,-41,27,-70,71,-70v43,0,71,28,71,70v0,43,-29,71,-71,71xm84,-123v-34,0,-56,21,-56,55v0,35,23,56,56,56v32,0,55,-21,55,-56v0,-33,-22,-55,-55,-55","w":168},"\u00fa":{"d":"83,-172r33,-48r15,0r-36,48r-12,0xm84,-12v30,0,55,-18,55,-49r0,-74r15,0r0,136r-15,0r1,-36v-10,42,-102,57,-103,-2r0,-98r15,0v5,47,-19,123,32,123","w":190},"\u00e0":{"d":"89,-123v-34,0,-56,22,-56,55v0,35,23,56,56,56v33,0,55,-22,55,-56v0,-33,-21,-55,-55,-55xm89,3v-42,0,-68,-27,-71,-71v-5,-72,104,-93,128,-35r1,-32r12,0r0,135r-13,0r0,-31v-8,20,-29,34,-57,34xm49,-220v22,-4,24,13,31,24r16,24v-20,2,-19,-16,-29,-24","w":198},"\u00e8":{"d":"126,-96v-20,-49,-113,-24,-96,39xm13,-68v0,-66,91,-94,123,-40v4,6,7,14,9,21r-111,44v9,30,65,42,87,16v5,4,5,6,10,11v-41,39,-118,10,-118,-52xm36,-220v22,-4,24,13,31,24r16,24v-20,2,-19,-16,-29,-24"},"\u00ec":{"d":"42,0r-15,0r0,-135r15,0r0,135xm7,-220r32,48v-20,2,-20,-16,-30,-24r-18,-24r16,0","w":62},"\u00f2":{"d":"84,3v-42,0,-71,-29,-71,-71v0,-41,27,-70,71,-70v43,0,71,28,71,70v0,43,-29,71,-71,71xm84,-123v-34,0,-56,21,-56,55v0,35,23,56,56,56v32,0,55,-21,55,-56v0,-33,-22,-55,-55,-55xm37,-220v22,-4,24,13,31,24r16,24v-20,2,-19,-16,-29,-24","w":168},"\u00f9":{"d":"84,-12v30,0,55,-18,55,-49r0,-74r15,0r0,136r-15,0r1,-36v-10,42,-102,57,-103,-2r0,-98r15,0v5,47,-19,123,32,123xm57,-220v22,-4,24,13,31,24r16,24v-20,2,-19,-16,-29,-24","w":190},",":{"d":"51,-31r-31,74r-14,0r28,-74r17,0","w":72},".":{"d":"31,0v-18,0,-13,-23,0,-24v6,0,11,6,11,12v0,7,-4,12,-11,12","w":58},"f":{"d":"106,-256v-57,2,-64,57,-60,120r45,0r0,15r-45,0r0,121r-15,0r0,-121r-23,0r0,-15r23,0v-5,-72,7,-132,75,-134r0,14","w":105,"k":{"a":14,"v":-5,"f":5,"u":18,"b":9}},"v":{"d":"93,8r-74,-143r16,0r58,116r59,-116r15,0","w":180,"k":{"a":10,"z":-14,"s":18,"v":-6,"f":-3,".":7,"u":13,"b":5}},"j":{"d":"43,-171v-18,0,-13,-23,0,-24v6,0,11,6,11,12v0,7,-4,12,-11,12xm15,54v36,-33,15,-125,20,-189r15,0v-5,70,16,161,-24,200","w":81},"s":{"d":"25,-100v0,-39,54,-48,76,-22r-8,11v-12,-14,-57,-17,-53,11v5,35,67,18,67,62v0,42,-61,54,-86,24r9,-11v13,17,63,20,61,-12v-2,-40,-66,-17,-66,-63","w":126,"k":{"a":18,"z":9,"w":22,"s":28,"v":9,"f":14,".":7,"u":23,"b":18}},"k":{"d":"66,-72r-23,22r0,50r-15,0r0,-270r15,0r0,202r75,-70r9,9r-50,47r59,82r-17,0","w":161,"k":{"a":14,"w":18,"s":14,"v":14,".":7,"u":18,"b":10}},"y":{"d":"53,90r-16,0r45,-89r-68,-136r16,0r60,121r60,-121r16,0","w":177,"k":{"o":9}},"w":{"d":"92,-19r41,-86v-7,-10,-9,-20,-15,-30r15,0r57,116r56,-116r15,0r-71,143r-49,-98r-49,98r-72,-143r15,0","w":277,"k":{"a":9,"s":13,"v":-13,".":7,"u":4,"b":12}},"x":{"d":"135,-135r-50,70r48,65r-19,0r-42,-57r-40,57r-19,0r50,-69r-48,-66r19,0r42,57r41,-57r18,0","w":151,"k":{"a":5,"v":-8,"u":13,"b":13}},"z":{"d":"37,-148v-1,10,2,13,11,13r90,0r0,15r-102,105r109,0r0,15r-130,0r0,-15r102,-106r-72,0v-18,1,-25,-8,-23,-27r15,0","k":{"a":9,"s":13,"v":-3,"u":13}},"o":{"d":"84,3v-42,0,-71,-29,-71,-71v0,-41,27,-70,71,-70v43,0,71,28,71,70v0,43,-29,71,-71,71xm84,-123v-34,0,-56,21,-56,55v0,35,23,56,56,56v32,0,55,-21,55,-56v0,-33,-22,-55,-55,-55","w":169,"k":{"a":8,"c":6}},"A":{"d":"178,-122r-45,-108v-12,37,-30,73,-44,108r89,0xm245,0r-15,0r-46,-108r-101,0r-46,108r-15,0r111,-264","w":266,"k":{"a":10,"V":41,"z":14,"w":33,"s":29,"v":34,"f":19,"u":35,"b":24}},"\u00fd":{"d":"87,-172r32,-48r16,0r-36,48r-12,0xm53,90r-16,0r45,-89r-68,-136r16,0r60,121r60,-121r16,0","w":175},"B":{"d":"145,-188v0,-53,-51,-51,-104,-50r0,104v55,4,104,-2,104,-54xm154,-66v0,-53,-56,-56,-113,-54r0,106v56,1,113,2,113,-52xm169,-65v0,67,-71,68,-142,65r0,-252v67,-1,135,-4,132,63v-1,32,-16,55,-44,62v31,7,54,27,54,62","w":192,"k":{"a":10,"f":10,"b":12}},"D":{"d":"207,-126v0,95,-72,134,-180,126r0,-252v108,-9,180,29,180,126xm192,-126v0,-82,-58,-119,-150,-112r0,223v92,6,150,-30,150,-111","w":234,"k":{"a":14,"w":10,"u":14,"b":10}},"E":{"d":"31,0r0,-252r149,0r0,14r-135,0r0,104r121,0r0,14r-121,0r0,106r140,0r0,14r-154,0","w":216,"k":{"a":10,"z":10,"x":14,"w":17,"s":28,"v":17,"u":17,"b":23}},"H":{"d":"34,0r0,-252r15,0r0,118r154,0r0,-118r16,0r-1,252r-15,0r0,-120r-154,0r0,120r-15,0","w":252,"k":{"a":14,"s":14,"u":18,"b":14}},"I":{"d":"37,-252r15,0r0,252r-15,0r0,-252","w":89},"J":{"d":"6,37v39,-3,60,-29,60,-70r0,-219r15,0r0,220v-1,50,-27,81,-75,83r0,-14","w":112},"K":{"d":"70,-142r-31,30r0,112r-15,0r0,-252r15,0r-1,124r129,-124r19,0r-106,100r120,152r-18,0","w":216,"k":{"a":19,"b":7}},"M":{"d":"36,-264r132,171r132,-171r0,264r-16,0r1,-221r-117,154r-118,-154r1,221r-15,0r0,-264","w":337},"N":{"d":"256,-252r0,264r-206,-240r1,228r-15,0r0,-264r206,242r-1,-230r15,0","w":292,"k":{"a":9,"u":14}},"P":{"d":"143,-186v0,-46,-49,-55,-102,-52r0,105v54,3,102,-3,102,-53xm158,-186v2,58,-52,73,-117,68r0,118r-14,0r0,-252v68,-3,129,4,131,66","w":167,"k":{"a":14,"s":14,"u":14,"b":15}},"R":{"d":"143,-186v0,-46,-49,-55,-102,-52r0,105v54,3,102,-3,102,-53xm158,-186v0,37,-21,58,-54,65r57,121r-17,0r-56,-119v-14,2,-31,1,-47,1r0,118r-14,0r0,-252v68,-3,131,4,131,66","w":181,"k":{"a":28,"w":21,"s":27,"f":22,"u":24,"b":22}},"U":{"d":"203,-81v0,55,-33,84,-85,84v-52,0,-85,-29,-85,-84r0,-171r15,0v9,95,-35,240,70,240v105,0,61,-146,70,-240r15,0r0,171","w":234,"k":{"a":14,"w":14,"s":14,"v":14,"b":19}},"Y":{"d":"123,-95r0,95r-18,0r0,-95r-93,-157r19,0r84,143v25,-50,57,-94,83,-143r18,0","w":229,"k":{"a":45,"s":44,"v":23,"u":45,"b":31}},"~":{"d":"122,-164v-23,0,-27,-28,-51,-22v-8,2,-16,7,-16,18r-9,-1v1,-18,13,-26,31,-27v24,-1,26,28,51,22v8,-2,16,-7,16,-18r9,1v-1,18,-13,27,-31,27","w":176},"F":{"d":"31,0r0,-252r149,0r0,14r-135,0r0,104r121,0r0,14r-121,0r0,120r-14,0","w":211,"k":{"a":41,"s":31,"f":31,"b":28}},"L":{"d":"31,0r0,-252r14,0r0,238r140,0r0,14r-154,0","w":213,"k":{"a":28,"u":32,"b":19}},"C":{"d":"37,-125v0,88,94,139,171,98r8,12v-85,48,-194,-11,-194,-111v0,-100,106,-159,195,-111r-9,12v-76,-41,-171,12,-171,100","w":241,"k":{"a":10,"w":7,"s":7,"u":14,"b":10}},"Q":{"d":"151,-240v-69,0,-114,46,-114,115v0,68,45,113,113,113v69,0,115,-45,115,-114v0,-68,-46,-114,-114,-114xm177,0v-90,13,-155,-42,-155,-126v0,-77,52,-129,129,-129v77,0,129,52,129,129v0,57,-30,92,-69,112r77,0r0,14r-111,0","w":303},"T":{"d":"199,-252r0,14r-92,0r0,238r-15,0r0,-238r-92,0r0,-14r199,0","w":199,"k":{"a":14,"w":21,"v":14,"b":19}},">":{"d":"41,5r0,-19r124,-72r-124,-71r0,-20r158,91","w":234},"<":{"d":"199,-14r0,19r-158,-91r158,-91r0,20r-124,71","w":244},"=":{"d":"218,-63r0,14r-182,0r0,-14r182,0xm218,-133r0,15r-182,0r0,-15r182,0","w":254},"@":{"d":"176,-123v-34,0,-56,21,-56,55v0,35,23,56,56,56v33,0,55,-22,55,-56v0,-33,-21,-55,-55,-55xm262,50v-47,43,-155,32,-189,-15v-36,-31,-56,-102,-32,-160v26,-63,109,-114,192,-78v50,21,89,65,89,135v0,54,-31,74,-89,68r0,-31v-9,20,-29,34,-57,34v-42,0,-68,-27,-71,-71v-5,-72,104,-93,128,-35r1,-32r13,0r0,121v42,4,60,-13,60,-54v0,-79,-52,-131,-131,-131v-79,0,-127,52,-131,131v-6,108,124,165,208,107v4,3,6,6,9,11","w":356},"?":{"d":"81,-249v-30,0,-47,17,-55,41r-13,-5v11,-27,31,-49,68,-51v73,-4,95,101,36,132v-24,13,-39,31,-33,73r-16,0r0,-35v4,-50,71,-43,69,-99v-1,-34,-22,-56,-56,-56xm76,-29v10,-1,14,13,8,20v-7,8,-20,1,-20,-8v-1,-6,6,-12,12,-12"},"!":{"d":"36,-8v-18,0,-13,-23,0,-24v14,0,16,24,0,24xm28,-270r16,0r0,210r-16,0r0,-210","w":72},"2":{"d":"86,-237v55,3,82,60,58,111v-20,44,-56,77,-88,111r112,0r0,15r-149,0r44,-44v30,-34,75,-64,75,-117v0,-37,-18,-59,-52,-61v-52,-4,-68,63,-40,95v-3,3,-7,5,-9,9v-38,-38,-16,-122,49,-119","w":181},"1":{"d":"12,-219r0,-15r50,0r0,234r-16,0r0,-219r-34,0","w":93},"3":{"d":"144,-72v0,-44,-44,-73,-84,-53r66,-94r-89,0r0,-15r116,0r-63,89v41,5,67,29,69,73v4,70,-90,97,-131,50r12,-11v29,39,104,17,104,-39","w":185},"4":{"d":"130,-193r-86,112r86,0r0,-112xm13,-66r132,-171r0,156r35,0r0,15r-35,0r0,66r-15,0r0,-66r-117,0","w":185},"5":{"d":"152,-72v0,-52,-66,-78,-101,-44r0,-118r104,0r0,15r-88,0r0,78v50,-19,99,17,100,69v2,66,-82,98,-127,54r11,-10v33,34,101,8,101,-44","w":195},"6":{"d":"93,-132v-35,0,-60,23,-60,60v0,38,24,60,60,60v36,0,61,-23,61,-60v0,-36,-26,-60,-61,-60xm93,3v-62,2,-91,-65,-64,-122v23,-48,68,-78,108,-110r10,13v-40,26,-72,53,-92,87v38,-41,117,-3,113,57v-3,46,-31,74,-75,75","w":187},"7":{"d":"5,-219r0,-15r146,0r-105,234r-18,0r99,-219r-122,0","w":168},"8":{"d":"91,-222v-24,0,-39,17,-39,40v0,22,16,35,39,35v21,1,40,-15,39,-35v-1,-23,-14,-40,-39,-40xm92,-132v-36,0,-60,24,-60,60v0,35,22,60,59,60v37,0,61,-25,61,-60v0,-36,-24,-60,-60,-60xm91,-237v54,0,72,77,28,97v27,11,48,31,48,68v0,45,-31,75,-76,75v-44,0,-73,-30,-74,-75v0,-34,22,-59,47,-68v-44,-18,-28,-97,27,-97","w":183},":":{"d":"31,-90v-7,0,-13,-5,-12,-12v0,-7,6,-12,12,-12v6,0,11,6,11,12v0,7,-4,12,-11,12xm31,0v-7,0,-13,-5,-12,-12v0,-7,6,-12,12,-12v6,0,11,6,11,12v0,7,-4,12,-11,12","w":63},";":{"d":"40,-90v-18,0,-13,-23,0,-24v14,0,16,24,0,24xm46,-31r-31,74r-14,0r27,-74r18,0","w":72},"\"":{"d":"71,-170r0,-89r15,0r-1,89r-14,0xm23,-170r0,-89r16,0r-2,89r-14,0","w":111},"#":{"d":"71,-141r-5,51r51,0r5,-51r-51,0xm138,-141r-6,51r43,0r-1,14r-44,0r-9,76r-15,0r8,-76r-51,0r-8,76r-15,0r8,-76r-38,0r2,-14r38,0r6,-51r-38,0r1,-15r39,0r9,-75r15,0r-9,75r51,0r10,-75r15,0r-10,75r45,0r-2,15r-44,0","w":205},"%":{"d":"188,-67v-15,0,-27,13,-27,27v0,15,12,27,27,27v15,0,27,-12,27,-27v0,-14,-12,-27,-27,-27xm230,-40v0,25,-17,41,-42,41v-25,0,-42,-16,-42,-41v0,-27,18,-39,42,-42v24,3,42,16,42,42xm78,-167v-15,0,-27,12,-27,27v0,14,12,27,27,27v15,0,27,-12,27,-27v0,-16,-12,-27,-27,-27xm121,-140v-2,25,-18,42,-43,42v-25,0,-40,-17,-42,-42v3,-24,17,-41,42,-41v26,0,40,17,43,41xm70,0r107,-180r17,0r-108,180r-16,0","w":261},"(":{"d":"108,59v-65,-58,-81,-220,-22,-299v7,-11,14,-21,22,-29r11,8v-32,37,-56,88,-56,156v0,67,24,118,56,155","w":146},")":{"d":"46,-268v64,57,79,219,22,298v-7,11,-15,21,-22,29r-11,-8v31,-37,55,-88,55,-155v0,-68,-24,-119,-55,-156","w":144},"*":{"d":"68,-220r34,-19r7,13r-34,19r34,19r-9,14r-32,-20r-1,38r-14,0r0,-38r-33,19r-8,-14r33,-18r-33,-20v2,-4,4,-8,7,-12r34,19r0,-39r15,0r0,39","w":120},"+":{"d":"88,-18r0,-58r-57,0r0,-15r57,0r0,-57r15,0r0,57r58,0r0,15r-58,0r0,58r-15,0","w":195},"9":{"d":"91,-94v37,0,60,-23,60,-60v0,-36,-23,-59,-60,-59v-36,0,-60,23,-60,59v0,37,24,60,60,60xm91,-228v62,-2,94,66,65,122v-23,47,-69,80,-109,109r-10,-12v40,-26,73,-54,93,-88v-40,41,-119,2,-115,-57v3,-45,32,-72,76,-74","w":189},"|":{"d":"35,84r0,-336r15,0r0,336r-15,0","w":86},"{":{"d":"39,3v-2,-41,11,-97,-28,-102r0,-17v41,-5,28,-67,28,-110v0,-37,15,-47,53,-43r0,15v-76,-17,-7,119,-61,146v28,14,23,64,23,108v0,33,7,42,38,39r0,14r-31,0v-20,-3,-21,-24,-22,-50","w":104},"}":{"d":"76,-226v0,43,-13,105,28,110r0,17v-40,6,-28,67,-28,110v0,37,-15,47,-53,42r0,-14v77,16,6,-120,61,-147v-29,-13,-23,-64,-23,-107v0,-33,-7,-42,-38,-39r0,-15v35,-2,53,5,53,43","w":115},"0":{"d":"109,3v-62,0,-96,-55,-96,-121v0,-66,32,-119,98,-119v65,0,95,54,95,120v0,66,-34,120,-97,120xm111,-222v-57,0,-83,47,-83,104v0,58,27,106,81,106v55,0,82,-47,82,-104v0,-59,-26,-106,-80,-106","w":221},"-":{"d":"19,-61r0,-15r66,0r0,15r-66,0","w":108},"\/":{"d":"6,7r100,-272r15,0r-100,272r-15,0","w":124},"\\":{"d":"20,-265r100,272r-16,0r-100,-272r16,0","w":124},"G":{"d":"201,-69v-1,-11,3,-25,-9,-25r-43,0r0,-14v25,4,67,-12,67,18r0,75v-85,48,-194,-11,-194,-111v0,-100,106,-159,195,-111r-9,12v-76,-41,-173,12,-171,100v2,84,83,136,164,101r0,-45","w":245,"k":{"a":7,"w":14,"u":14,"b":14}},"V":{"d":"131,-22r97,-230r15,0r-112,264r-112,-264r16,0","w":259,"k":{"a":34,"A":37,"v":24,"u":31,"b":14}},"S":{"d":"32,-186v-5,-68,82,-86,124,-45v-4,4,-6,8,-9,12v-31,-39,-127,-13,-96,48v24,48,121,25,123,104v2,81,-115,87,-150,35r10,-10v16,14,32,31,63,30v36,-1,62,-19,62,-54v0,-79,-121,-41,-127,-120","w":198,"k":{"a":14,"w":14,"v":14,"f":14,"u":21,"b":9}},"Z":{"d":"50,-265v-1,9,2,13,11,13r159,0r0,14r-172,224r182,0r0,14r-201,0r0,-14r172,-224r-142,0v-18,1,-26,-8,-24,-27r15,0","w":252,"k":{"a":14,"u":14,"b":14}},"W":{"d":"265,-22r96,-230r16,0r-112,264r-67,-160v-20,54,-44,108,-67,160r-112,-264r16,0r96,230v16,-49,39,-97,59,-143r-37,-87r16,0","w":398},"X":{"d":"137,-98v-4,-5,-10,-25,-15,-11r-70,109r-19,0r84,-129r-80,-123r18,0r72,112r71,-112r18,0r-80,125r83,127r-18,0","w":252,"k":{"a":27,"v":17}},"\u00c1":{"d":"126,-270r32,-48r16,0r-36,48r-12,0xm178,-122r-45,-108v-12,37,-30,73,-44,108r89,0xm245,0r-15,0r-46,-108r-101,0r-46,108r-15,0r111,-264","w":266},"\u00c9":{"d":"98,-270r32,-48r15,0r-36,48r-11,0xm31,0r0,-252r149,0r0,14r-135,0r0,104r121,0r0,14r-121,0r0,106r140,0r0,14r-154,0","w":216},"\u00cd":{"d":"38,-270r33,-48r15,0r-36,48r-12,0xm37,-252r15,0r0,252r-15,0r0,-252","w":84},"\u00d3":{"d":"144,-270r32,-48r16,0r-36,48r-12,0xm151,3v-77,0,-129,-52,-129,-129v0,-77,52,-129,129,-129v77,0,129,52,129,129v0,77,-52,129,-129,129xm151,-240v-69,0,-114,46,-114,115v0,68,46,113,113,113v69,0,115,-45,115,-114v0,-68,-46,-114,-114,-114","w":302},"\u00da":{"d":"108,-270r32,-48r16,0r-36,48r-12,0xm203,-81v0,55,-33,84,-85,84v-52,0,-85,-29,-85,-84r0,-171r15,0v9,95,-35,240,70,240v105,0,61,-146,70,-240r15,0r0,171","w":234},"\u00c0":{"d":"178,-122r-45,-108v-12,37,-30,73,-44,108r89,0xm245,0r-15,0r-46,-108r-101,0r-46,108r-15,0r111,-264xm92,-318v22,-4,24,13,31,24r16,24v-20,2,-19,-16,-29,-24","w":266},"\u00c8":{"d":"31,0r0,-252r149,0r0,14r-135,0r0,104r121,0r0,14r-121,0r0,106r140,0r0,14r-154,0xm64,-318v22,-4,24,13,31,24r16,24v-20,2,-19,-16,-29,-24","w":216},"\u00cc":{"d":"37,-252r15,0r0,252r-15,0r0,-252xm3,-318v22,-4,24,13,31,24r16,24v-20,2,-19,-16,-29,-24","w":84},"\u00d2":{"d":"151,3v-77,0,-129,-52,-129,-129v0,-77,52,-129,129,-129v77,0,129,52,129,129v0,77,-52,129,-129,129xm151,-240v-69,0,-114,46,-114,115v0,68,46,113,113,113v69,0,115,-45,115,-114v0,-68,-46,-114,-114,-114xm109,-318v22,-4,24,13,31,24r16,24v-20,2,-19,-16,-29,-24","w":302},"\u00d9":{"d":"203,-81v0,55,-33,84,-85,84v-52,0,-85,-29,-85,-84r0,-171r15,0v9,95,-35,240,70,240v105,0,61,-146,70,-240r15,0r0,171xm77,-318v22,-4,24,13,31,24r16,24v-20,2,-19,-16,-29,-24","w":234},"\u00dd":{"d":"106,-270r32,-48r16,0r-36,48r-12,0xm123,-95r0,95r-18,0r0,-95r-93,-157r19,0r84,143v25,-50,57,-94,83,-143r18,0","w":229},"\u00c3":{"d":"178,-122r-45,-108v-12,37,-30,73,-44,108r89,0xm245,0r-15,0r-46,-108r-101,0r-46,108r-15,0r111,-264xm155,-270v-23,0,-27,-28,-51,-22v-8,2,-16,7,-16,18r-9,-1v1,-18,13,-26,31,-27v24,-1,26,28,51,22v8,-2,16,-7,16,-18r9,1v-1,18,-13,27,-31,27","w":266},"\u00d5":{"d":"151,3v-77,0,-129,-52,-129,-129v0,-77,52,-129,129,-129v77,0,129,52,129,129v0,77,-52,129,-129,129xm151,-240v-69,0,-114,46,-114,115v0,68,46,113,113,113v69,0,115,-45,115,-114v0,-68,-46,-114,-114,-114xm173,-282v-23,0,-27,-28,-51,-22v-8,2,-16,7,-16,18r-9,-1v1,-18,13,-26,31,-27v24,-1,26,28,51,22v8,-2,16,-7,16,-18r9,1v-1,18,-13,27,-31,27","w":302},"\u00e2":{"d":"89,-123v-34,0,-56,22,-56,55v0,35,23,56,56,56v33,0,55,-22,55,-56v0,-33,-21,-55,-55,-55xm89,3v-42,0,-68,-27,-71,-71v-5,-72,104,-93,128,-35r1,-32r12,0r0,135r-13,0r0,-31v-8,20,-29,34,-57,34xm94,-238r43,66v-19,3,-19,-14,-28,-22v-8,-11,-7,-11,-15,-22r-32,44r-12,0","w":198},"\u00ea":{"d":"126,-96v-20,-49,-113,-24,-96,39xm13,-68v0,-66,91,-94,123,-40v4,6,7,14,9,21r-111,44v9,30,65,42,87,16v5,4,5,6,10,11v-41,39,-118,10,-118,-52xm84,-238r43,66v-19,3,-19,-14,-28,-22v-8,-11,-7,-11,-15,-22r-32,44r-12,0"},"\u00f4":{"d":"84,3v-42,0,-71,-29,-71,-71v0,-41,27,-70,71,-70v43,0,71,28,71,70v0,43,-29,71,-71,71xm84,-123v-34,0,-56,21,-56,55v0,35,23,56,56,56v32,0,55,-21,55,-56v0,-33,-22,-55,-55,-55xm84,-238r43,66v-19,3,-19,-14,-28,-22v-8,-11,-7,-11,-15,-22r-32,44r-12,0","w":168},"\u00e3":{"d":"89,-123v-34,0,-56,22,-56,55v0,35,23,56,56,56v33,0,55,-22,55,-56v0,-33,-21,-55,-55,-55xm89,3v-42,0,-68,-27,-71,-71v-5,-72,104,-93,128,-35r1,-32r12,0r0,135r-13,0r0,-31v-8,20,-29,34,-57,34xm120,-164v-23,0,-27,-28,-51,-22v-8,2,-16,7,-16,18r-9,-1v1,-18,13,-26,31,-27v24,-1,26,28,51,22v8,-2,16,-7,16,-18r9,1v-1,18,-13,27,-31,27","w":198},"`":{"d":"-10,-220v22,-4,24,13,31,24r16,24v-20,2,-19,-16,-29,-24","w":72},"^":{"d":"84,-238r43,66v-19,3,-19,-14,-28,-22v-8,-11,-7,-11,-15,-22r-32,44r-12,0","w":169},"\u00f5":{"d":"84,3v-42,0,-71,-29,-71,-71v0,-41,27,-70,71,-70v43,0,71,28,71,70v0,43,-29,71,-71,71xm84,-123v-34,0,-56,21,-56,55v0,35,23,56,56,56v32,0,55,-21,55,-56v0,-33,-22,-55,-55,-55xm108,-164v-23,0,-27,-28,-51,-22v-8,2,-16,7,-16,18r-9,-1v1,-18,13,-26,31,-27v24,-1,26,28,51,22v8,-2,16,-7,16,-18r9,1v-1,18,-13,27,-31,27","w":168},"'":{"d":"21,-170r0,-89r15,0r-1,89r-14,0","w":55},"_":{"d":"180,0r-144,0r0,-15r144,0r0,15","w":216},"[":{"d":"30,54r0,-323r63,0r0,15r-48,0r0,293r48,0r0,15r-63,0","w":121},"]":{"d":"90,-269r0,323r-63,0r0,-15r48,0r0,-293r-48,0r0,-15r63,0","w":123},"\u00c2":{"d":"178,-122r-45,-108v-12,37,-30,73,-44,108r89,0xm245,0r-15,0r-46,-108r-101,0r-46,108r-15,0r111,-264xm134,-336r43,66v-19,3,-19,-14,-28,-22v-8,-11,-7,-11,-15,-22r-32,44r-12,0","w":266},"\u00ca":{"d":"31,0r0,-252r149,0r0,14r-135,0r0,104r121,0r0,14r-121,0r0,106r140,0r0,14r-154,0xm108,-336r43,66v-19,3,-19,-14,-28,-22v-8,-11,-7,-11,-15,-22r-32,44r-12,0","w":216},"\u00d4":{"d":"151,3v-77,0,-129,-52,-129,-129v0,-77,52,-129,129,-129v77,0,129,52,129,129v0,77,-52,129,-129,129xm151,-240v-69,0,-114,46,-114,115v0,68,46,113,113,113v69,0,115,-45,115,-114v0,-68,-46,-114,-114,-114xm150,-336r43,66v-19,3,-19,-14,-28,-22v-8,-11,-7,-11,-15,-22r-32,44r-12,0","w":302},"$":{"d":"90,-238v-37,-1,-56,51,-33,77v7,8,20,13,33,17r0,-94xm105,-13v57,3,73,-84,20,-101v-6,-2,-14,-6,-20,-8r0,109xm32,-186v0,-39,20,-64,58,-67r0,-22r15,0r0,22v21,2,36,10,51,22v-4,4,-6,8,-9,12v-9,-7,-24,-18,-42,-19r0,100v33,12,70,25,69,71v-1,44,-29,65,-69,70r0,21r-15,0r0,-22v-29,-3,-52,-16,-66,-34r10,-10v13,14,31,27,56,30r0,-115v-26,-10,-58,-23,-58,-59","w":204},"&":{"d":"105,-123v-30,4,-50,23,-52,56v-3,57,81,73,104,28xm173,-39r23,38r-11,8r-20,-31v-33,49,-130,25,-127,-43v2,-39,24,-62,58,-69v-38,-37,-56,-144,33,-132v13,2,24,9,34,14r-6,12v-14,-8,-42,-21,-60,-7v-52,36,7,96,25,127r37,62v16,-24,-8,-84,43,-75r15,0r0,15v-54,-14,-28,48,-44,81","w":252},"O":{"d":"151,3v-77,0,-129,-52,-129,-129v0,-77,52,-129,129,-129v77,0,129,52,129,129v0,77,-52,129,-129,129xm151,-240v-69,0,-114,46,-114,115v0,68,46,113,113,113v69,0,115,-45,115,-114v0,-68,-46,-114,-114,-114","w":302,"k":{"a":14,"w":10,"s":22,"v":10,"u":14,"b":17}},"g":{"d":"89,-123v-34,0,-56,22,-56,55v0,35,23,56,56,56v33,0,55,-22,55,-56v0,-33,-21,-55,-55,-55xm18,-68v-5,-72,104,-93,128,-35r1,-32r12,0v-2,102,26,256,-99,219v-10,-3,-19,-9,-25,-16v5,-4,7,-6,11,-11v33,35,103,13,98,-45v-1,-15,0,-30,2,-43v-8,17,-31,35,-57,34v-42,-2,-68,-27,-71,-71","w":186,"k":{"a":9,"w":9,"s":14,".":9,"u":14,"b":9}},"d":{"d":"90,-123v-35,0,-56,23,-56,55v0,34,22,56,56,56v34,0,56,-22,56,-56v0,-32,-21,-55,-56,-55xm90,3v-42,0,-68,-27,-71,-71v-5,-71,104,-93,128,-36r-1,-166r15,0r0,270r-14,0r0,-31v-8,20,-29,34,-57,34","w":188},"a":{"d":"89,-123v-34,0,-56,22,-56,55v0,35,23,56,56,56v33,0,55,-22,55,-56v0,-33,-21,-55,-55,-55xm89,3v-42,0,-68,-27,-71,-71v-5,-72,104,-93,128,-35r1,-32r12,0r0,135r-13,0r0,-31v-8,20,-29,34,-57,34","w":181,"k":{"a":13,"z":3,"x":4,"w":17,"s":12,"v":14,"f":9,".":7,"u":14,"b":13}},"n":{"d":"107,-123v-31,0,-55,18,-55,49r0,74r-15,0r0,-135r14,0r0,35v10,-42,103,-57,103,2r0,98r-15,0v-5,-47,19,-123,-32,-123","w":178,"k":{"z":4}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2010 by Typemade. All rights reserved.
 * 
 * Trademark:
 * Josefin Sans Bold is a trademark of Typemade.
 * 
 * Description:
 * Copyright (c) 2010 by Typemade. All rights reserved.
 * 
 * Manufacturer:
 * Typemade
 * 
 * Designer:
 * Santiago Orozco
 * 
 * License information:
 * http://scripts.sil.org/OFL
 */
Cufon.registerFont({"w":162,"face":{"font-family":"Josefin Sans","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"3","bbox":"-21 -336 377 90","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+00FD"},"glyphs":{" ":{"w":108},"\u00a0":{"w":108},"t":{"d":"39,-223r30,0r0,85r35,0r0,29r-35,0r0,109r-30,0r0,-109r-30,0r0,-29r30,0r0,-85","w":108,"k":{"a":14,"z":-1,"w":13,"s":14,"v":-2,"f":9,"u":9,"b":17}},"b":{"d":"102,-26v23,0,43,-19,42,-42v0,-23,-19,-41,-42,-41v-23,0,-43,17,-43,41v0,24,19,42,43,42xm174,-68v0,61,-79,93,-118,53r0,15r-26,0r0,-270r29,0r-3,151v37,-40,118,-10,118,51","w":191,"k":{"n":13,"a":15,"z":9,"x":9,"w":27,"s":27,"v":10,"f":9,".":18,"u":19,"b":13}},"l":{"d":"51,0r-30,0r0,-270r30,0r0,270","w":69},"m":{"d":"107,-109v-26,0,-48,16,-48,43r0,66r-29,0r0,-135r26,0r2,35v9,-43,99,-55,105,-2v11,-41,104,-54,104,4r0,98r-29,0v-5,-41,17,-109,-27,-109v-26,0,-48,16,-48,43r0,66r-29,0v-5,-41,17,-109,-27,-109","w":286},"i":{"d":"36,-168v-9,-1,-18,-7,-18,-19v0,-11,8,-19,18,-19v10,0,19,9,19,19v0,11,-10,18,-19,19xm51,0r-30,0r0,-135r30,0r0,135","w":72},"h":{"d":"107,-109v-26,0,-48,16,-48,43r0,66r-29,0r0,-270r29,0r-1,170v9,-44,105,-56,105,2r0,98r-29,0v-5,-41,17,-109,-27,-109","w":189,"k":{"a":13,"w":13,"s":18,"v":9,"f":9,".":7,"u":14,"b":13}},"c":{"d":"43,-68v0,35,43,55,69,33r18,23v-44,34,-117,4,-117,-56v0,-60,71,-89,118,-55v-8,9,-13,13,-19,23v-27,-21,-69,-2,-69,32","w":142,"k":{"a":1,"s":9,"u":9,"b":5}},"q":{"d":"90,-109v-23,0,-42,18,-42,41v-1,23,19,42,42,42v23,0,43,-19,42,-42v0,-23,-19,-41,-42,-41xm136,-15v-37,38,-118,10,-118,-53v0,-62,80,-91,118,-50r1,-17r25,0r0,225r-30,0v2,-34,-6,-78,4,-105","w":184},"u":{"d":"86,-26v26,0,48,-16,48,-43r0,-66r29,0r0,138r-29,0r1,-38v-10,43,-104,57,-105,-2r0,-98r29,0v5,41,-17,109,27,109","w":190},"r":{"d":"108,-109v-27,0,-48,18,-49,43r0,66r-29,0r0,-135r26,0r2,35v11,-19,26,-35,52,-38","w":119,"k":{"a":17,"w":4,"s":14,"v":-5,".":8,"u":14,"b":6}},"e":{"d":"110,-95v-18,-27,-70,-10,-67,24xm13,-68v0,-69,99,-95,126,-34v4,7,7,15,9,24r-97,36v10,17,46,23,61,5r19,21v-40,40,-118,10,-118,-52","k":{"a":9,"x":9,"w":13,"s":18,"v":5,"f":5,".":7,"u":18,"b":11}},"p":{"d":"96,-26v24,0,42,-18,42,-42v0,-24,-19,-42,-42,-41v-23,0,-42,18,-42,41v-1,23,19,42,42,42xm168,-68v0,63,-80,92,-118,53v10,27,1,71,4,105r-30,0r0,-225r25,0r1,17v37,-40,118,-13,118,50","w":189},"\u00e1":{"d":"84,-172r32,-48r30,0r-41,48r-21,0xm90,-109v-23,0,-42,18,-42,41v-1,23,19,42,42,42v23,0,43,-19,42,-42v0,-23,-19,-41,-42,-41xm136,-15v-37,38,-118,10,-118,-52v0,-62,80,-92,118,-51r1,-17r25,0r0,135r-26,0r0,-15","w":198},"\u00e9":{"d":"79,-172r32,-48r30,0r-41,48r-21,0xm110,-95v-18,-27,-70,-10,-67,24xm13,-68v0,-69,99,-95,126,-34v4,7,7,15,9,24r-97,36v10,17,46,23,61,5r19,21v-40,40,-118,10,-118,-52"},"\u00ed":{"d":"51,0r-30,0r0,-135r30,0r0,135xm30,-172r32,-48r30,0r-41,48r-21,0","w":69,"k":{"a":14,"s":18,"b":13}},"\u00f3":{"d":"83,-172r33,-48r30,0r-42,48r-21,0xm85,3v-44,0,-72,-29,-72,-71v0,-42,28,-70,72,-70v43,0,72,27,72,70v0,44,-29,71,-72,71xm84,-109v-25,0,-41,16,-41,42v0,25,16,41,41,41v25,0,42,-16,42,-41v0,-26,-17,-42,-42,-42","w":168},"\u00fa":{"d":"83,-172r33,-48r30,0r-42,48r-21,0xm86,-26v26,0,48,-16,48,-43r0,-66r29,0r0,138r-29,0r1,-38v-10,43,-104,57,-105,-2r0,-98r29,0v5,41,-17,109,27,109","w":190},"\u00e0":{"d":"90,-109v-23,0,-42,18,-42,41v-1,23,19,42,42,42v23,0,43,-19,42,-42v0,-23,-19,-41,-42,-41xm136,-15v-37,38,-118,10,-118,-52v0,-62,80,-92,118,-51r1,-17r25,0r0,135r-26,0r0,-15xm68,-220r32,48r-21,0r-41,-48r30,0","w":198},"\u00e8":{"d":"110,-95v-18,-27,-70,-10,-67,24xm13,-68v0,-69,99,-95,126,-34v4,7,7,15,9,24r-97,36v10,17,46,23,61,5r19,21v-40,40,-118,10,-118,-52xm51,-220r32,48r-21,0r-41,-48r30,0"},"\u00ec":{"d":"51,0r-30,0r0,-135r30,0r0,135xm10,-220r32,48r-21,0r-42,-48r31,0","w":62},"\u00f2":{"d":"85,3v-44,0,-72,-29,-72,-71v0,-42,28,-70,72,-70v43,0,72,27,72,70v0,44,-29,71,-72,71xm84,-109v-25,0,-41,16,-41,42v0,25,16,41,41,41v25,0,42,-16,42,-41v0,-26,-17,-42,-42,-42xm55,-220r32,48r-21,0r-41,-48r30,0","w":168},"\u00f9":{"d":"86,-26v26,0,48,-16,48,-43r0,-66r29,0r0,138r-29,0r1,-38v-10,43,-104,57,-105,-2r0,-98r29,0v5,41,-17,109,27,109xm76,-220r32,48r-21,0r-41,-48r30,0","w":190},",":{"d":"59,-31r-31,74r-27,0r27,-74r31,0","w":72},".":{"d":"31,0v-10,0,-19,-8,-19,-19v0,-26,37,-23,37,0v0,11,-8,18,-18,19","w":58},"f":{"d":"118,-242v-51,0,-63,46,-57,104r42,0r0,29r-42,0r0,109r-30,0r0,-109r-23,0r0,-29r23,0v-7,-77,14,-132,87,-132r0,28","w":118,"k":{"a":14,"v":-5,"f":5,"u":18,"b":9}},"v":{"d":"97,8r-78,-143r30,0v16,31,36,58,48,92v13,-34,33,-65,48,-92r30,0","w":180,"k":{"a":10,"z":-14,"s":18,"v":-6,"f":-3,".":7,"u":13,"b":5}},"j":{"d":"43,-168v-9,-1,-19,-8,-19,-19v0,-10,9,-19,19,-19v10,0,19,9,19,19v0,11,-10,18,-19,19xm8,43v35,-31,13,-118,19,-178r30,0v-5,71,18,166,-29,200","w":81},"s":{"d":"54,-60v-45,-9,-35,-78,13,-78v18,0,29,7,40,15r-17,22v-7,-14,-50,-8,-30,12v23,11,50,16,52,49v2,46,-65,54,-91,26r18,-22v12,15,55,11,39,-13v-6,-5,-14,-9,-24,-11","w":127,"k":{"a":18,"z":9,"w":22,"s":28,"v":9,"f":14,".":7,"u":23,"b":18}},"k":{"d":"68,-58v-6,7,-10,11,-17,17r0,41r-30,0r0,-270r30,0r0,194r67,-62r17,17r-46,44r56,77r-34,0v-14,-21,-28,-37,-43,-58","w":161,"k":{"a":14,"w":18,"s":14,"v":14,".":7,"u":18,"b":10}},"y":{"d":"93,-27v14,-40,35,-73,52,-108r30,0r-113,225r-30,0r45,-90r-68,-135r30,0v17,34,42,70,54,108","w":180,"k":{"o":9}},"w":{"d":"190,-43v10,-32,29,-62,42,-92r30,0r-72,143r-49,-97r-49,97r-73,-143r30,0v13,30,33,59,43,92v9,-27,23,-50,34,-75v-3,-7,-5,-11,-9,-17r30,0v13,30,33,59,43,92","w":277,"k":{"a":9,"s":13,"v":-13,".":7,"u":4,"b":9}},"x":{"d":"61,-73r-46,-62r37,0r35,48r35,-48r37,0r-53,73r47,62r-39,0r-35,-48r-35,48r-36,0","w":171,"k":{"a":5,"v":-8,"u":13,"b":13}},"z":{"d":"49,-148v-1,9,1,13,11,13r78,0r0,29r-81,77r90,0r0,29r-132,0r0,-29r81,-78v-39,-1,-86,11,-77,-41r30,0","k":{"a":9,"s":13,"u":13}},"o":{"d":"85,3v-44,0,-72,-29,-72,-71v0,-42,28,-70,72,-70v43,0,72,27,72,70v0,44,-29,71,-72,71xm84,-109v-25,0,-41,16,-41,42v0,25,16,41,41,41v25,0,42,-16,42,-41v0,-26,-17,-42,-42,-42","w":171,"k":{"a":8,"c":8}},"A":{"d":"161,-128v-9,-23,-21,-43,-27,-69v-7,26,-19,46,-28,69r55,0xm245,0r-30,0r-42,-100r-79,0r-42,100r-30,0r112,-264","w":266,"k":{"a":10,"V":41,"z":14,"w":33,"s":29,"v":34,"f":19,"u":35,"b":24}},"\u00fd":{"d":"87,-172r32,-48r30,0r-41,48r-21,0xm93,-27v14,-40,35,-73,52,-108r30,0r-113,225r-30,0r45,-90r-68,-135r30,0v17,34,42,70,54,108","w":175},"B":{"d":"136,-184v0,-43,-42,-41,-85,-40r0,83v45,3,85,-2,85,-43xm145,-69v0,-43,-47,-46,-94,-44r0,85v46,1,94,1,94,-41xm175,-65v0,70,-80,67,-154,65r0,-252v70,-1,146,-7,145,63v-1,32,-17,55,-43,62v30,7,52,27,52,62","w":192,"k":{"a":10,"f":10,"b":12}},"D":{"d":"207,-126v0,97,-75,134,-185,126r0,-252v110,-9,185,26,185,126xm177,-126v0,-69,-48,-103,-126,-98r0,195v77,5,126,-28,126,-97","w":234,"k":{"a":14,"w":10,"u":14,"b":10}},"E":{"d":"25,0r0,-252r155,0r0,28r-125,0r0,83r111,0r0,28r-111,0r0,85r130,0r0,28r-160,0","w":216,"k":{"a":10,"z":10,"x":14,"w":17,"s":28,"v":17,"u":17,"b":23}},"H":{"d":"28,0r0,-252r30,0r0,111r136,0r0,-111r30,0r0,252r-30,0r0,-113r-136,0r0,113r-30,0","w":252,"k":{"a":14,"s":14,"u":18,"b":14}},"I":{"d":"36,-252r30,0r0,252r-30,0r0,-252","w":100},"J":{"d":"6,23v33,-1,58,-21,57,-56r0,-219r30,0r0,220v-2,53,-34,82,-87,84r0,-29","w":123},"K":{"d":"71,-131r-23,22r0,109r-30,0r0,-252r30,0r-1,110r114,-110r37,0r-108,102r119,150r-35,0","w":216,"k":{"a":19,"b":7}},"M":{"d":"36,-264r132,171r132,-171r0,264r-30,0r1,-181v-33,50,-69,89,-103,136r-103,-136r1,181r-30,0r0,-264","w":337},"N":{"d":"256,-252r0,264r-191,-206r1,194r-30,0r0,-264r191,210r-1,-198r30,0","w":292,"k":{"a":9,"u":14}},"P":{"d":"136,-184v0,-37,-42,-43,-85,-40r0,83v45,2,85,-3,85,-43xm166,-184v2,59,-49,79,-115,72r0,112r-30,0r0,-252v73,-3,142,2,145,68","w":176,"k":{"a":14,"s":14,"u":14,"b":15}},"R":{"d":"136,-184v0,-37,-42,-43,-85,-40r0,83v45,2,85,-3,85,-43xm166,-184v0,38,-20,63,-53,70r54,114r-33,0r-53,-112r-30,0r0,112r-30,0r0,-252v73,-3,145,2,145,68","w":186,"k":{"a":28,"w":21,"s":27,"f":22,"u":24,"b":22}},"U":{"d":"209,-81v-1,56,-37,84,-91,84v-54,0,-91,-28,-91,-84r0,-171r30,0r0,170v2,36,22,56,61,56v38,0,60,-19,61,-56r0,-170r30,0r0,171","w":234,"k":{"a":14,"w":14,"s":14,"v":14,"b":19}},"Y":{"d":"133,-97r0,97r-37,0r0,-97r-92,-155r37,0r73,127v22,-44,49,-85,74,-127r36,0","w":229,"k":{"a":45,"s":44,"v":23,"u":45,"b":31}},"~":{"d":"125,-162v-23,2,-27,-20,-46,-21v-9,1,-19,5,-19,17r-16,-1v2,-19,13,-31,32,-32v24,-1,29,25,52,21v7,-2,13,-8,14,-16r16,1v-2,18,-14,30,-33,31","w":176},"F":{"d":"25,0r0,-252r155,0r0,28r-125,0r0,83r111,0r0,28r-111,0r0,113r-30,0","w":211,"k":{"a":41,"s":31,"f":31,"b":28}},"L":{"d":"25,0r0,-252r30,0r0,224r130,0r0,28r-160,0","w":213,"k":{"a":28,"u":32,"b":19}},"C":{"d":"52,-126v0,76,78,124,148,87r16,24v-85,48,-194,-11,-194,-111v0,-100,106,-159,195,-111r-17,24v-66,-36,-148,10,-148,87","w":241,"k":{"a":10,"w":7,"s":7,"u":14,"b":10}},"Q":{"d":"151,-226v-61,0,-99,41,-99,100v0,59,38,100,99,100v61,0,99,-41,99,-100v0,-59,-38,-100,-99,-100xm177,0v-90,13,-155,-42,-155,-126v0,-77,52,-129,129,-129v77,0,129,52,129,129v0,43,-20,77,-45,98r53,0r0,28r-111,0","w":303},"T":{"d":"199,-252r0,28r-84,0r0,224r-30,0r0,-224r-85,0r0,-28r199,0","w":199,"k":{"a":14,"w":21,"v":14,"b":19}},">":{"d":"42,5r0,-41r87,-50r-87,-50r0,-40r157,90","w":234},"<":{"d":"199,-36r0,41r-157,-91r157,-90r0,40r-87,50","w":244},"=":{"d":"218,-69r0,29r-182,0r0,-29r182,0xm218,-139r0,29r-182,0r0,-29r182,0","w":254},"@":{"d":"175,-109v-23,0,-43,17,-43,41v0,24,19,42,43,42v23,0,43,-19,42,-42v0,-23,-19,-41,-42,-41xm54,-68v-5,103,118,153,197,99r18,21v-22,19,-53,32,-93,32v-91,0,-148,-61,-153,-152v-7,-134,171,-199,260,-107v25,25,45,60,45,107v0,54,-44,74,-108,68r0,-14v-39,38,-118,7,-118,-53v0,-61,80,-93,118,-51r2,-17r25,0r0,106v32,3,50,-11,50,-39v0,-74,-47,-122,-121,-122v-74,0,-118,48,-122,122","w":356},"?":{"d":"87,-234v-28,0,-38,13,-46,35r-26,-9v9,-31,30,-55,72,-56v72,-2,94,103,35,133v-23,12,-39,32,-33,72r-30,0r0,-35v1,-53,70,-44,68,-99v0,-23,-16,-42,-40,-41xm92,-19v0,11,-9,19,-19,19v-10,0,-18,-7,-18,-19v0,-11,9,-19,18,-19v9,0,19,9,19,19"},"!":{"d":"36,0v-10,0,-19,-9,-19,-19v0,-11,9,-19,19,-19v10,0,19,7,18,19v1,11,-8,19,-18,19xm21,-270r30,0r0,210r-30,0r0,-210","w":72},"2":{"d":"165,-162v0,63,-43,95,-74,133r88,0r0,29r-160,0r43,-43v30,-34,73,-62,73,-115v0,-30,-17,-48,-44,-50v-46,-4,-56,56,-31,82r-18,18v-47,-36,-24,-135,49,-129v45,4,74,29,74,75","w":186},"1":{"d":"12,-205r0,-29r55,0r0,234r-30,0r0,-205r-25,0","w":98},"3":{"d":"21,-23r22,-20v25,32,85,13,85,-32v0,-37,-39,-59,-73,-42r50,-87r-68,0r0,-30r119,0r-52,86v31,11,53,33,54,73v3,70,-93,103,-137,52","w":185},"4":{"d":"115,-149r-41,54r41,0r0,-54xm13,-66r132,-171r0,142r35,0r0,29r-35,0r0,66r-30,0r0,-66r-102,0","w":190},"5":{"d":"140,-75v0,-46,-65,-64,-89,-30r0,-129r104,0r0,29r-73,0r0,53v52,-4,85,28,88,77v3,69,-87,102,-133,56r22,-20v28,27,81,6,81,-36","w":195},"6":{"d":"95,-123v-29,0,-47,20,-47,48v0,29,19,49,47,49v29,0,49,-20,49,-49v0,-29,-19,-48,-49,-48xm95,3v-62,0,-96,-65,-67,-122v23,-47,68,-82,108,-110v8,8,12,14,19,23v-27,17,-47,35,-67,54v51,-4,86,29,86,77v0,47,-31,78,-79,78","w":187},"7":{"d":"5,-204r0,-30r149,0r-105,234r-35,0r93,-204r-102,0","w":168},"8":{"d":"92,-208v-14,0,-27,14,-27,29v0,15,12,26,27,26v16,0,27,-11,27,-26v0,-15,-12,-29,-27,-29xm93,-123v-31,0,-49,19,-49,48v0,29,19,49,47,49v29,0,49,-20,49,-49v0,-28,-19,-48,-47,-48xm91,3v-80,5,-102,-112,-41,-144v-33,-31,-9,-96,41,-96v50,0,75,63,42,96v20,13,38,35,37,66v-2,47,-31,75,-79,78","w":183},":":{"d":"31,-90v-10,0,-19,-8,-19,-19v0,-26,37,-23,37,0v0,11,-8,18,-18,19xm31,0v-10,0,-19,-8,-19,-19v0,-26,37,-23,37,0v0,11,-8,18,-18,19","w":63},";":{"d":"42,-90v-10,0,-19,-8,-19,-19v0,-26,37,-23,37,0v0,11,-8,18,-18,19xm54,-31r-31,74r-27,0r27,-74r31,0","w":72},"\"":{"d":"71,-170r0,-89r29,0r-1,89r-28,0xm23,-170r0,-89r30,0r-2,89r-28,0","w":120},"#":{"d":"80,-134r-4,37r36,0r4,-37r-36,0xm139,-68r-8,68r-31,0r8,-68r-36,0r-8,68r-30,0r8,-68r-33,0r4,-29r33,0r4,-37r-33,0r3,-29r33,0r9,-68r30,0r-8,68r36,0r8,-68r30,0r-8,68r36,0r-2,29r-37,0r-5,37r37,0r-4,29r-36,0","w":205},"%":{"d":"188,-56v-10,-1,-17,6,-16,16v0,10,6,17,16,17v9,0,16,-8,16,-17v0,-9,-6,-16,-16,-16xm234,-40v0,27,-19,46,-46,46v-27,0,-46,-17,-46,-46v1,-28,18,-45,46,-45v28,0,46,19,46,45xm78,-156v-10,0,-15,6,-15,16v0,10,6,17,15,17v10,0,16,-7,16,-17v1,-10,-6,-17,-16,-16xm125,-140v0,27,-20,46,-47,46v-27,0,-46,-19,-46,-46v0,-27,18,-45,46,-45v28,0,47,18,47,45xm63,0r107,-180r33,0r-108,180r-32,0","w":261},"(":{"d":"101,59v-65,-58,-78,-218,-22,-299v13,-19,22,-35,48,-20v-30,38,-55,86,-55,155v0,69,25,118,55,156","w":152},")":{"d":"53,-267v64,57,80,220,22,298v-10,13,-15,36,-35,25v-7,-2,-7,-1,-13,-3v30,-38,55,-88,55,-156v0,-68,-24,-118,-55,-155","w":144},"*":{"d":"31,-207r-22,-14r14,-25r23,14r0,-27r30,0r0,27v8,-5,14,-9,23,-13r14,25r-23,13r23,13r-15,26v-8,-4,-16,-8,-23,-13r0,25r-29,0r0,-25r-22,12r-15,-26","w":120},"+":{"d":"81,-18r0,-50r-50,0r0,-30r50,0r0,-50r30,0r0,50r50,0r0,30r-50,0r0,50r-30,0","w":195},"9":{"d":"88,-103v29,0,47,-19,47,-48v0,-30,-19,-49,-47,-49v-29,0,-49,20,-49,49v0,29,19,48,49,48xm88,-229v64,-2,96,67,67,125v-23,46,-70,80,-108,107r-19,-23v27,-17,48,-35,68,-54v-52,4,-87,-30,-87,-77v0,-46,32,-77,79,-78","w":189},"|":{"d":"33,84r0,-336r30,0r0,336r-30,0","w":97},"{":{"d":"39,11v0,-41,11,-98,-28,-103r0,-29v38,-6,28,-63,28,-105v0,-41,24,-46,65,-43r0,30v-70,-14,-4,110,-58,132v27,11,25,54,24,94v-1,27,3,42,34,37r0,30v-38,1,-65,0,-65,-43","w":115},"}":{"d":"76,-226v0,42,-10,99,28,105r0,29v-38,5,-28,62,-28,103v0,43,-24,45,-65,43r0,-30v70,14,4,-107,58,-131v-26,-12,-25,-55,-24,-95v1,-27,-3,-42,-34,-37r0,-30v38,-1,65,-1,65,43","w":115},"0":{"d":"109,3v-63,0,-96,-54,-96,-121v0,-67,32,-119,98,-119v64,0,95,52,95,121v0,67,-34,119,-97,119xm111,-208v-91,1,-87,178,-2,182v88,-2,90,-178,2,-182","w":221},"-":{"d":"19,-53r0,-29r66,0r0,29r-66,0","w":108},"\/":{"d":"6,7r100,-272r30,0r-100,272r-30,0","w":136},"\\":{"d":"34,-265r100,272r-34,0r-100,-272r34,0","w":138},"G":{"d":"186,-32v-3,-16,8,-48,-8,-48r-29,0r0,-28v26,4,67,-13,67,22r0,71v-85,48,-194,-11,-194,-111v0,-100,106,-159,195,-111r-17,24v-66,-36,-151,11,-148,87v2,70,60,116,134,94","w":249,"k":{"a":7,"w":14,"u":14,"b":14}},"V":{"d":"213,-252r30,0r-112,264r-112,-264r30,0r82,197v26,-74,54,-126,82,-197","w":259,"k":{"a":34,"A":37,"v":24,"u":31,"b":14}},"S":{"d":"79,-122v-69,-14,-69,-139,18,-131v29,3,44,8,65,26r-17,21v-25,-33,-108,-20,-85,36v34,37,112,30,114,103v2,87,-126,84,-157,29r18,-19v15,15,30,31,61,31v50,0,63,-60,24,-80v-13,-7,-26,-13,-41,-16","w":202,"k":{"a":14,"w":14,"v":14,"f":14,"u":21,"b":9}},"Z":{"d":"65,-265v-1,10,1,13,11,13r144,0r0,28r-154,195r164,0r0,29r-201,0r0,-29r154,-195r-121,0v-22,0,-30,-16,-27,-41r30,0","w":252,"k":{"a":14,"u":14,"b":14}},"W":{"d":"347,-252r30,0r-112,264r-67,-163v-16,59,-44,110,-67,163r-112,-264r30,0r82,197v13,-45,34,-86,52,-127r-29,-70r30,0r81,197","w":398},"X":{"d":"117,-129r-80,-123r37,0r63,100v20,-38,41,-65,64,-100r36,0r-81,126r82,126r-37,0r-66,-103v-18,38,-43,68,-64,103r-38,0","w":252,"k":{"a":27,"v":17}},"\u00c1":{"d":"123,-270r33,-48r30,0r-42,48r-21,0xm161,-128v-9,-23,-21,-43,-27,-69v-7,26,-19,46,-28,69r55,0xm245,0r-30,0r-42,-100r-79,0r-42,100r-30,0r112,-264","w":266},"\u00c9":{"d":"95,-270r32,-48r30,0r-41,48r-21,0xm25,0r0,-252r155,0r0,28r-125,0r0,83r111,0r0,28r-111,0r0,85r130,0r0,28r-160,0","w":216},"\u00cd":{"d":"44,-270r33,-48r30,0r-41,48r-22,0xm36,-252r30,0r0,252r-30,0r0,-252","w":84},"\u00d3":{"d":"144,-270r32,-48r31,0r-42,48r-21,0xm150,3v-77,0,-129,-52,-129,-129v0,-77,52,-129,129,-129v77,0,129,52,129,129v0,77,-52,129,-129,129xm150,-226v-60,0,-99,40,-99,100v0,59,38,100,99,100v61,0,99,-41,99,-100v0,-60,-39,-100,-99,-100","w":302},"\u00da":{"d":"108,-270r32,-48r31,0r-42,48r-21,0xm209,-81v-1,56,-37,84,-91,84v-54,0,-91,-28,-91,-84r0,-171r30,0r0,170v2,36,22,56,61,56v38,0,60,-19,61,-56r0,-170r30,0r0,171","w":234},"\u00c0":{"d":"161,-128v-9,-23,-21,-43,-27,-69v-7,26,-19,46,-28,69r55,0xm245,0r-30,0r-42,-100r-79,0r-42,100r-30,0r112,-264xm108,-318r32,48r-21,0r-41,-48r30,0","w":266},"\u00c8":{"d":"25,0r0,-252r155,0r0,28r-125,0r0,83r111,0r0,28r-111,0r0,85r130,0r0,28r-160,0xm83,-318r32,48r-21,0r-41,-48r30,0","w":216},"\u00cc":{"d":"36,-252r30,0r0,252r-30,0r0,-252xm25,-318r32,48r-21,0r-41,-48r30,0","w":84},"\u00d2":{"d":"150,3v-77,0,-129,-52,-129,-129v0,-77,52,-129,129,-129v77,0,129,52,129,129v0,77,-52,129,-129,129xm150,-226v-60,0,-99,40,-99,100v0,59,38,100,99,100v61,0,99,-41,99,-100v0,-60,-39,-100,-99,-100xm124,-318r32,48r-21,0r-41,-48r30,0","w":302},"\u00d9":{"d":"209,-81v-1,56,-37,84,-91,84v-54,0,-91,-28,-91,-84r0,-171r30,0r0,170v2,36,22,56,61,56v38,0,60,-19,61,-56r0,-170r30,0r0,171xm97,-318r32,48r-21,0r-41,-48r30,0","w":234},"\u00dd":{"d":"100,-270r32,-48r31,0r-42,48r-21,0xm133,-97r0,97r-37,0r0,-97r-92,-155r37,0r73,127v22,-44,49,-85,74,-127r36,0","w":229},"\u00c3":{"d":"161,-128v-9,-23,-21,-43,-27,-69v-7,26,-19,46,-28,69r55,0xm245,0r-30,0r-42,-100r-79,0r-42,100r-30,0r112,-264xm158,-271v-23,2,-27,-20,-46,-21v-9,1,-19,5,-19,17r-16,-1v2,-19,13,-31,32,-32v24,-1,29,25,52,21v7,-2,13,-8,14,-16r16,1v-2,18,-14,30,-33,31","w":266},"\u00d5":{"d":"150,3v-77,0,-129,-52,-129,-129v0,-77,52,-129,129,-129v77,0,129,52,129,129v0,77,-52,129,-129,129xm150,-226v-60,0,-99,40,-99,100v0,59,38,100,99,100v61,0,99,-41,99,-100v0,-60,-39,-100,-99,-100xm176,-280v-23,2,-27,-20,-46,-21v-9,1,-19,5,-19,17r-16,-1v2,-19,13,-31,32,-32v24,-1,29,25,52,21v7,-2,13,-8,14,-16r16,1v-2,18,-14,30,-33,31","w":302},"\u00e2":{"d":"90,-109v-23,0,-42,18,-42,41v-1,23,19,42,42,42v23,0,43,-19,42,-42v0,-23,-19,-41,-42,-41xm136,-15v-37,38,-118,10,-118,-52v0,-62,80,-92,118,-51r1,-17r25,0r0,135r-26,0r0,-15xm94,-198r-22,26r-22,0r44,-66r43,66r-22,0v-7,-9,-15,-17,-21,-26","w":198},"\u00ea":{"d":"110,-95v-18,-27,-70,-10,-67,24xm13,-68v0,-69,99,-95,126,-34v4,7,7,15,9,24r-97,36v10,17,46,23,61,5r19,21v-40,40,-118,10,-118,-52xm84,-198r-22,26r-22,0r44,-66r43,66r-22,0v-7,-9,-15,-17,-21,-26"},"\u00f4":{"d":"85,3v-44,0,-72,-29,-72,-71v0,-42,28,-70,72,-70v43,0,72,27,72,70v0,44,-29,71,-72,71xm84,-109v-25,0,-41,16,-41,42v0,25,16,41,41,41v25,0,42,-16,42,-41v0,-26,-17,-42,-42,-42xm84,-198r-22,26r-22,0r44,-66r43,66r-22,0v-7,-9,-15,-17,-21,-26","w":168},"\u00e3":{"d":"90,-109v-23,0,-42,18,-42,41v-1,23,19,42,42,42v23,0,43,-19,42,-42v0,-23,-19,-41,-42,-41xm136,-15v-37,38,-118,10,-118,-52v0,-62,80,-92,118,-51r1,-17r25,0r0,135r-26,0r0,-15xm123,-162v-23,2,-27,-20,-46,-21v-9,1,-19,5,-19,17r-16,-1v2,-19,13,-31,32,-32v24,-1,29,25,52,21v7,-2,13,-8,14,-16r16,1v-2,18,-14,30,-33,31","w":198},"`":{"d":"12,-220r32,48r-21,0r-41,-48r30,0","w":72},"^":{"d":"84,-198r-22,26r-22,0r44,-66r43,66r-22,0v-7,-9,-15,-17,-21,-26","w":169},"\u00f5":{"d":"85,3v-44,0,-72,-29,-72,-71v0,-42,28,-70,72,-70v43,0,72,27,72,70v0,44,-29,71,-72,71xm84,-109v-25,0,-41,16,-41,42v0,25,16,41,41,41v25,0,42,-16,42,-41v0,-26,-17,-42,-42,-42xm111,-162v-23,2,-27,-20,-46,-21v-9,1,-19,5,-19,17r-16,-1v2,-19,13,-31,32,-32v24,-1,29,25,52,21v7,-2,13,-8,14,-16r16,1v-2,18,-14,30,-33,31","w":168},"'":{"d":"15,-170r0,-89r30,0r-1,89r-29,0","w":58},"_":{"d":"180,0r-144,0r0,-29r144,0r0,29","w":216},"[":{"d":"30,54r0,-323r69,0r0,30r-39,0r0,263r39,0r0,30r-69,0","w":121},"]":{"d":"90,-269r0,323r-69,0r0,-30r39,0r0,-263r-39,0r0,-30r69,0","w":123},"\u00c2":{"d":"161,-128v-9,-23,-21,-43,-27,-69v-7,26,-19,46,-28,69r55,0xm245,0r-30,0r-42,-100r-79,0r-42,100r-30,0r112,-264xm134,-296r-22,26r-22,0r44,-66r43,66r-22,0v-7,-9,-15,-17,-21,-26","w":266},"\u00ca":{"d":"25,0r0,-252r155,0r0,28r-125,0r0,83r111,0r0,28r-111,0r0,85r130,0r0,28r-160,0xm108,-296r-22,26r-22,0r44,-66r43,66r-22,0v-7,-9,-15,-17,-21,-26","w":216},"\u00d4":{"d":"150,3v-77,0,-129,-52,-129,-129v0,-77,52,-129,129,-129v77,0,129,52,129,129v0,77,-52,129,-129,129xm150,-226v-60,0,-99,40,-99,100v0,59,38,100,99,100v61,0,99,-41,99,-100v0,-60,-39,-100,-99,-100xm151,-296r-22,26r-22,0r44,-66r43,66r-22,0v-7,-9,-15,-17,-21,-26","w":302},"$":{"d":"84,-223v-32,4,-36,62,-5,69v2,1,4,2,5,2r0,-71xm114,-28v26,-4,41,-43,21,-65v-6,-6,-13,-11,-21,-15r0,80xm27,-186v0,-40,20,-62,57,-66r0,-23r30,0r0,23v18,4,33,13,48,25r-17,21v-8,-7,-19,-13,-31,-17r0,82v29,14,60,31,60,74v0,41,-26,62,-60,69r0,22r-30,0r0,-23v-31,-4,-52,-20,-67,-39r18,-19v12,12,27,27,49,30r0,-93v-28,-10,-57,-26,-57,-66","w":204},"&":{"d":"113,-109v-26,0,-45,14,-45,41v0,46,67,57,81,17xm216,-106v-39,-8,-32,23,-36,54r27,43r-23,16r-18,-30v-35,47,-132,25,-128,-45v2,-40,25,-61,58,-69v-40,-37,-55,-143,33,-131v13,2,24,9,34,14r-11,24v-19,-16,-61,-13,-61,16v0,34,20,49,34,72r27,44v-2,-37,25,-40,64,-37r0,29","w":252},"O":{"d":"151,3v-77,0,-129,-52,-129,-129v0,-77,52,-129,129,-129v77,0,129,52,129,129v0,77,-52,129,-129,129xm151,-226v-60,0,-99,40,-99,100v0,59,38,100,99,100v61,0,99,-41,99,-100v0,-60,-39,-100,-99,-100","w":302,"k":{"a":14,"w":10,"s":22,"v":10,"u":14,"b":17}},"g":{"d":"90,-109v-23,0,-42,18,-42,41v-1,23,19,42,42,42v23,0,43,-19,42,-42v0,-23,-19,-41,-42,-41xm18,-67v0,-62,80,-92,118,-51r1,-17r25,0r0,157v2,66,-86,86,-129,46r20,-24v24,24,79,18,79,-27v0,-11,-2,-24,3,-31v-39,37,-117,8,-117,-53","w":186,"k":{"a":9,"w":9,"s":14,".":9,"u":14,"b":9}},"d":{"d":"90,-109v-23,0,-42,18,-42,41v-1,23,19,42,42,42v23,0,43,-19,42,-42v0,-23,-19,-41,-42,-41xm18,-68v0,-62,80,-90,118,-51v-10,-42,-1,-102,-4,-151r30,0r0,270r-26,0r0,-15v-37,38,-118,10,-118,-53","w":190},"a":{"d":"90,-109v-23,0,-42,18,-42,41v-1,23,19,42,42,42v23,0,43,-19,42,-42v0,-23,-19,-41,-42,-41xm136,-15v-37,38,-118,10,-118,-52v0,-62,80,-92,118,-51r1,-17r25,0r0,135r-26,0r0,-15","w":183,"k":{"a":13,"z":3,"x":4,"w":17,"s":21,"v":14,"f":9,".":7,"u":14,"b":13}},"n":{"d":"107,-109v-26,0,-48,16,-48,43r0,66r-29,0r0,-135r26,0r2,35v10,-43,105,-56,105,2r0,98r-29,0v-5,-41,17,-109,-27,-109","w":178,"k":{"z":4}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2010 by Typemade. All rights reserved.
 * 
 * Trademark:
 * Josefin Sans Italic is a trademark of Typemade.
 * 
 * Description:
 * Copyright (c) 2010 by Typemade. All rights reserved.
 * 
 * Manufacturer:
 * Typemade
 * 
 * Designer:
 * Santiago Orozco
 * 
 * License information:
 * http://scripts.sil.org/OFL
 */
Cufon.registerFont({"w":162,"face":{"font-family":"Josefin Sans","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"1","bbox":"-15 -336 395 90","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+00FD"},"glyphs":{" ":{"w":108},"\u00a0":{"w":108},"t":{"d":"76,-223r15,0r-13,88r42,0r-2,15r-42,0r-16,120r-15,0r16,-120r-31,0r2,-15r31,0","w":103,"k":{"a":14,"z":-1,"w":13,"s":14,"v":-2,"f":9,"u":9,"b":17}},"b":{"d":"55,-46v16,57,106,32,111,-22v6,-65,-84,-69,-105,-21v-5,12,-10,27,-6,43xm120,-138v66,-4,78,88,33,120v-25,28,-97,28,-106,-13r-4,31r-13,0r37,-270r15,0r-24,166v11,-19,32,-33,62,-34","w":190,"k":{"n":18,"a":15,"z":9,"x":9,"w":27,"s":27,"v":13,"f":9,".":18,"u":19,"b":13}},"l":{"d":"42,0r-15,0r38,-270r15,0","w":67},"m":{"d":"167,-102v13,-27,65,-50,94,-25v20,33,-5,86,-6,127r-15,0v1,-37,20,-81,8,-114v-31,-24,-80,5,-84,39r-10,75r-15,0v1,-38,21,-83,7,-114v-30,-23,-79,5,-84,40r-10,74r-15,0r19,-135r13,0r-4,35v12,-21,34,-37,64,-38v23,-1,39,13,38,36","w":286},"i":{"d":"58,-171v-6,0,-11,-6,-9,-12v-1,-6,8,-12,13,-12v6,0,10,5,10,12v0,6,-8,12,-14,12xm42,0r-15,0r19,-135r14,0","w":67},"h":{"d":"65,-100v13,-28,64,-53,94,-27v20,33,-5,86,-5,127r-15,0v1,-38,21,-83,7,-114v-30,-23,-79,5,-84,40r-10,74r-15,0r38,-270r15,0","w":180,"k":{"a":13,"w":13,"s":18,"v":9,"f":9,".":7,"u":14,"b":13}},"c":{"d":"37,-68v-7,49,51,71,85,44r8,11v-43,33,-116,10,-108,-55v6,-54,77,-92,123,-54r-11,11v-37,-29,-91,2,-97,43","w":139,"k":{"a":1,"s":9,"u":9,"b":5}},"q":{"d":"153,-89v-15,-57,-111,-33,-110,22v-13,65,85,70,104,21v8,-11,11,-27,6,-43xm89,3v-67,5,-76,-86,-34,-121v29,-25,96,-26,106,15r5,-32r13,0r-32,225r-15,0r19,-121v-10,20,-33,33,-62,34","w":184},"u":{"d":"144,-35v-11,29,-65,53,-94,27v-20,-33,5,-86,6,-127r15,0v-1,37,-20,81,-8,114v30,23,79,-4,84,-40r10,-74r15,0r-19,136r-14,0v1,-13,3,-25,5,-36","w":190},"r":{"d":"124,-123v-65,0,-65,65,-72,123r-15,0r19,-135r13,0r-4,35v12,-21,32,-36,62,-38","w":119,"k":{"a":17,"w":4,"s":14,"v":-5,".":8,"u":14,"b":6}},"e":{"d":"140,-96v-6,-30,-57,-34,-79,-14v-13,12,-24,29,-24,53xm133,-16v-40,36,-111,16,-111,-52v0,-71,124,-100,136,-19r-118,44v6,33,62,41,85,16","k":{"a":10,"x":9,"w":13,"s":18,"v":5,"f":5,".":7,"u":18,"b":15}},"p":{"d":"50,-46v15,57,110,33,110,-21v0,-66,-83,-70,-104,-22v-5,12,-10,27,-6,43xm114,-138v66,-5,79,89,34,121v-25,28,-98,28,-106,-14v-3,42,-11,80,-16,121r-15,0r32,-225r13,0r-4,32v11,-19,34,-32,62,-35","w":189},"\u00e1":{"d":"108,-172r39,-48r15,0r-42,48r-12,0xm152,-89v-15,-58,-110,-32,-110,21v0,66,83,70,104,22v6,-13,11,-27,6,-43xm88,3v-67,4,-78,-89,-33,-121v25,-29,97,-27,105,15r6,-32r12,0r-19,135r-13,0r4,-31v-11,19,-32,32,-62,34","w":198},"\u00e9":{"d":"102,-172r39,-48r15,0r-43,48r-11,0xm140,-96v-6,-30,-57,-34,-79,-14v-13,12,-24,29,-24,53xm133,-16v-40,36,-111,16,-111,-52v0,-71,124,-100,136,-19r-118,44v6,33,62,41,85,16"},"\u00ed":{"d":"40,0r-14,0r18,-135r15,0xm50,-172r39,-48r16,0r-43,48r-12,0","w":71,"k":{"a":14,"s":18,"b":13}},"\u00f3":{"d":"106,-172r39,-48r16,0r-43,48r-12,0xm155,-38v-28,59,-147,53,-133,-30v7,-41,34,-68,81,-70v53,-3,74,54,52,100xm147,-89v-15,-57,-110,-34,-110,21v0,65,82,70,104,23v6,-13,10,-28,6,-44","w":168},"\u00fa":{"d":"106,-172r39,-48r16,0r-43,48r-12,0xm144,-35v-11,29,-65,53,-94,27v-20,-33,5,-86,6,-127r15,0v-1,37,-20,81,-8,114v30,23,79,-4,84,-40r10,-74r15,0r-19,136r-14,0v1,-13,3,-25,5,-36","w":190},"\u00e0":{"d":"152,-89v-15,-58,-110,-32,-110,21v0,66,83,70,104,22v6,-13,11,-27,6,-43xm88,3v-67,4,-78,-89,-33,-121v25,-29,97,-27,105,15r6,-32r12,0r-19,135r-13,0r4,-31v-11,19,-32,32,-62,34xm91,-220r26,48v-20,3,-18,-15,-26,-24v-7,-12,-8,-12,-15,-24r15,0","w":198},"\u00e8":{"d":"140,-96v-6,-30,-57,-34,-79,-14v-13,12,-24,29,-24,53xm133,-16v-40,36,-111,16,-111,-52v0,-71,124,-100,136,-19r-118,44v6,33,62,41,85,16xm82,-220r26,48v-20,3,-18,-15,-26,-24v-7,-12,-8,-12,-15,-24r15,0"},"\u00ec":{"d":"42,0r-15,0r19,-135r14,0xm34,-220r26,48r-12,0r-29,-48r15,0","w":62},"\u00f2":{"d":"155,-38v-28,59,-147,53,-133,-30v7,-41,34,-68,81,-70v53,-3,74,54,52,100xm147,-89v-15,-57,-110,-34,-110,21v0,65,82,70,104,23v6,-13,10,-28,6,-44xm85,-220r26,48v-20,3,-18,-15,-26,-24v-7,-12,-8,-12,-15,-24r15,0","w":168},"\u00f9":{"d":"144,-35v-11,29,-65,53,-94,27v-20,-33,5,-86,6,-127r15,0v-1,37,-20,81,-8,114v30,23,79,-4,84,-40r10,-74r15,0r-19,136r-14,0v1,-13,3,-25,5,-36xm97,-220r26,48v-20,3,-18,-15,-26,-24v-7,-12,-8,-12,-15,-24r15,0","w":190},",":{"d":"56,-31r-42,74r-13,0r38,-74r17,0","w":72},".":{"d":"29,0v-6,0,-11,-5,-10,-12v0,-6,8,-11,13,-12v6,0,11,5,10,12v1,7,-7,12,-13,12","w":58},"f":{"d":"25,-121r2,-15r23,0v6,-69,22,-131,94,-134r-3,14v-60,4,-71,61,-76,120r45,0r-2,15r-45,0r-17,121r-15,0r17,-121r-23,0","w":105,"k":{"a":14,"v":-5,"f":5,"u":18,"b":9}},"v":{"d":"92,8r-54,-143r15,0r43,116r75,-116r15,0","w":180,"k":{"a":10,"z":-14,"s":18,"v":-6,"f":-3,".":7,"u":13,"b":5}},"j":{"d":"67,-171v-6,0,-11,-5,-10,-12v-1,-6,8,-12,13,-12v6,0,10,5,10,12v0,6,-7,12,-13,12xm17,65v-3,-4,-6,-8,-10,-11v42,-37,32,-126,47,-189r14,0v-14,69,-5,162,-51,200","w":81},"s":{"d":"41,-25v17,26,79,9,61,-26v-15,-19,-59,-10,-55,-49v4,-35,56,-50,79,-22r-10,11v-15,-23,-72,-4,-50,23v15,19,57,13,54,50v-3,39,-65,56,-90,24v5,-4,7,-6,11,-11","w":143,"k":{"a":18,"z":9,"w":22,"s":28,"v":9,"f":14,".":7,"u":23,"b":18}},"k":{"d":"137,-138v3,2,6,6,8,9r-57,47r48,82r-17,0r-43,-72r-26,22r-7,50r-15,0r38,-270r15,0r-29,202","w":161,"k":{"a":14,"w":18,"s":14,"v":14,".":7,"u":18,"b":10}},"y":{"d":"40,90r-16,0r57,-89r-49,-136r16,0r43,121r77,-121r16,0","w":177,"k":{"o":9}},"w":{"d":"94,-19r54,-86r-11,-30r15,0r40,116r73,-116r15,0r-92,143r-35,-98r-63,98r-51,-143r15,0","w":277,"k":{"a":9,"s":13,"v":-13,".":7,"u":4,"b":12}},"x":{"d":"73,-69r-39,-66r19,0v10,21,21,36,33,57r50,-57r18,0r-60,70r39,65r-19,0r-34,-57r-48,57r-19,0","w":151,"k":{"a":5,"v":-8,"u":13,"b":13}},"z":{"d":"58,-148v-2,8,-1,13,9,13r90,0r-2,15r-117,105r109,0r-2,15r-130,0r2,-15r117,-106v-29,-2,-67,6,-89,-4v-7,-3,-4,-15,-3,-23r16,0","k":{"a":9,"s":13,"v":-3,"u":13}},"o":{"d":"155,-38v-28,59,-147,53,-133,-30v7,-41,34,-68,81,-70v53,-3,74,54,52,100xm147,-89v-15,-57,-110,-34,-110,21v0,65,82,70,104,23v6,-13,10,-28,6,-44","w":169,"k":{"a":8,"c":6}},"A":{"d":"147,-230r-60,108r89,0xm226,0r-15,0r-31,-108r-101,0r-61,108r-15,0r149,-264","w":266,"k":{"a":10,"V":41,"z":14,"w":33,"s":29,"v":34,"f":19,"u":35,"b":24}},"\u00fd":{"d":"106,-172r39,-48r16,0r-43,48r-12,0xm40,90r-16,0r57,-89r-49,-136r16,0r43,121r77,-121r16,0","w":175},"B":{"d":"57,-238r-15,104v57,4,104,-4,111,-54v8,-54,-44,-51,-96,-50xm40,-120r-14,106v68,7,140,-14,115,-80v-11,-30,-58,-27,-101,-26xm9,0r35,-252v60,0,134,-10,124,63v-4,32,-23,55,-53,62v54,3,58,90,14,111v-26,20,-75,16,-120,16","w":192,"k":{"a":10,"f":10,"b":12}},"D":{"d":"45,-252v99,-9,175,24,162,126v-12,92,-83,135,-198,126xm58,-238r-32,223v110,8,182,-48,164,-157v-9,-53,-62,-71,-132,-66","w":234,"k":{"a":14,"w":10,"u":14,"b":10}},"E":{"d":"13,0r35,-252r150,0r-3,14r-134,0r-15,104r121,0r-2,14r-121,0r-14,106r139,0r-2,14r-154,0","w":216,"k":{"a":10,"z":10,"x":14,"w":17,"s":28,"v":17,"u":17,"b":23}},"H":{"d":"16,0r35,-252r15,0r-16,118r154,0r17,-118r16,0r-37,252r-15,0r17,-120r-154,0r-17,120r-15,0","w":252,"k":{"a":14,"s":14,"u":18,"b":14}},"I":{"d":"55,-252r15,0r-36,252r-15,0","w":89},"J":{"d":"-15,51r2,-14v41,-4,63,-30,69,-70r31,-219r15,0v-15,84,-15,181,-42,255v-10,28,-38,46,-75,48","w":112},"K":{"d":"182,0r-18,0r-92,-142r-35,30r-16,112r-15,0r36,-252r15,0r-18,124v46,-44,97,-82,145,-124r20,0r-120,100","w":216,"k":{"a":19,"b":7}},"M":{"d":"54,-264r108,171r156,-171r-37,264r-15,0r32,-221r-140,154r-95,-154r-31,221r-15,0","w":337},"N":{"d":"274,-252r-37,264r-173,-240r-31,228r-15,0r37,-264r173,242v6,-81,21,-152,30,-230r16,0","w":292,"k":{"a":9,"u":14}},"P":{"d":"42,-133v62,5,122,-11,107,-73v-7,-30,-49,-35,-92,-32xm9,0r35,-252v61,-2,130,-1,122,66v-6,55,-57,74,-126,68r-17,118r-14,0","w":167,"k":{"a":14,"s":14,"u":14,"b":15}},"R":{"d":"42,-133v62,5,122,-11,107,-73v-7,-30,-49,-35,-92,-32xm9,0r35,-252v61,-2,130,-1,122,66v-4,36,-28,58,-63,65r40,121r-17,0r-39,-119v-14,2,-31,1,-47,1r-17,118r-14,0","w":181,"k":{"a":28,"w":21,"s":27,"f":22,"u":24,"b":22}},"U":{"d":"197,-81v-4,72,-101,111,-155,62v-13,-12,-20,-35,-15,-62r24,-171r15,0v-7,67,-28,130,-23,200v3,46,83,51,112,22v45,-45,34,-149,51,-222r15,0","w":234,"k":{"a":14,"w":14,"s":14,"v":14,"b":19}},"Y":{"d":"119,-95r-14,95r-18,0r14,-95r-71,-157r18,0r64,143v31,-51,70,-95,104,-143r18,0","w":229,"k":{"a":45,"s":44,"v":23,"u":45,"b":31}},"~":{"d":"120,-164v-24,1,-24,-29,-49,-22v-9,2,-15,8,-17,18r-10,-1v3,-16,18,-26,35,-27v23,-1,24,28,48,22v9,-3,16,-7,18,-18r9,1v-2,17,-17,26,-34,27","w":176},"F":{"d":"13,0r35,-252r150,0r-3,14r-134,0r-15,104r121,0r-2,14r-121,0r-17,120r-14,0","w":211,"k":{"a":41,"s":31,"f":31,"b":28}},"L":{"d":"13,0r35,-252r15,0r-33,238r139,0r-2,14r-154,0","w":213,"k":{"a":28,"u":32,"b":19}},"C":{"d":"37,-125v-12,94,82,136,157,98r7,12v-45,29,-129,20,-154,-20v-30,-30,-32,-99,-8,-141v31,-55,120,-105,193,-61r-10,12v-82,-42,-174,18,-185,100","w":241,"k":{"a":10,"w":7,"s":7,"u":14,"b":10}},"Q":{"d":"243,-207v-78,-81,-231,2,-203,126v17,73,129,89,179,36v42,-28,68,-117,24,-162xm159,0v-137,33,-179,-149,-86,-217v38,-45,146,-53,182,0v38,35,28,124,-4,158v-16,17,-33,36,-56,45r77,0r-2,14r-111,0","w":303},"T":{"d":"217,-252r-2,14r-92,0r-34,238r-15,0r34,-238r-93,0r3,-14r199,0","w":199,"k":{"a":14,"w":21,"v":14,"b":19}},">":{"d":"28,5r3,-19r134,-72r-114,-71r3,-20r145,91","w":234},"<":{"d":"189,-14r-3,19r-145,-91r171,-91r-3,20r-134,71","w":244},"=":{"d":"214,-63r-2,14r-182,0r2,-14r182,0xm224,-133r-2,15r-182,0r2,-15r182,0","w":254},"@":{"d":"230,-89v-15,-57,-111,-33,-110,21v-13,66,83,70,104,22v5,-12,10,-27,6,-43xm246,50v-48,40,-156,36,-188,-15v-35,-33,-36,-113,-9,-160v34,-59,114,-107,203,-78v70,23,104,169,23,200v-15,6,-33,2,-52,3r5,-31v-11,19,-33,33,-62,34v-66,4,-80,-88,-34,-120v26,-28,96,-28,106,14v1,-12,3,-22,6,-32r12,0r-17,121v83,15,80,-101,43,-147v-40,-49,-145,-45,-186,0v-48,33,-71,130,-26,186v33,41,124,49,168,14","w":356},"?":{"d":"143,-215v-12,-52,-98,-37,-107,7v-4,-2,-8,-4,-13,-5v15,-52,121,-75,136,-7v13,56,-33,81,-68,104v-14,9,-15,36,-18,57r-15,0v3,-36,11,-64,39,-76v28,-11,56,-39,46,-80xm61,-29v18,2,9,23,-3,24v-6,0,-11,-5,-10,-12v-1,-7,7,-12,13,-12"},"!":{"d":"17,-8v-6,0,-10,-6,-10,-12v1,-12,25,-17,23,0v1,7,-7,12,-13,12xm46,-270r15,0r-29,210r-15,0","w":72},"2":{"d":"37,-118v-51,-63,46,-164,111,-98v41,91,-57,150,-107,201r113,0r-2,15r-150,0r51,-44v37,-41,100,-72,90,-146v-3,-20,-21,-31,-43,-32v-50,-2,-76,56,-52,95v-4,2,-8,6,-11,9","w":181},"1":{"d":"26,-219r2,-15r50,0r-33,234r-15,0r30,-219r-34,0","w":93},"3":{"d":"28,-33v14,27,66,26,86,3v50,-31,11,-133,-52,-95r79,-94r-90,0r3,-15r116,0r-76,89v67,-1,76,94,29,126v-24,27,-88,30,-108,-3","w":185},"4":{"d":"140,-193r-101,112r86,0xm6,-66r156,-171r-22,156r35,0r-3,15r-34,0r-10,66r-15,0r9,-66r-116,0","w":185},"5":{"d":"26,-18r13,-10v48,47,142,-24,95,-86v-16,-22,-64,-23,-83,-2r17,-118r103,0r-2,15r-88,0r-11,78v75,-34,126,74,61,122v-23,26,-83,30,-105,1","w":195},"6":{"d":"146,-95v-18,-61,-113,-34,-119,23v-8,71,90,74,113,24v6,-13,11,-30,6,-47xm57,-129v38,-39,113,-7,106,57v-8,71,-124,106,-149,30v-11,-101,78,-140,139,-187r8,13v-44,27,-79,54,-104,87","w":187},"7":{"d":"19,-219r2,-15r146,0r-137,234r-18,0r129,-219r-122,0","w":168},"8":{"d":"138,-197v-10,-43,-74,-22,-77,15v-3,33,40,46,63,25v11,-10,18,-22,14,-40xm144,-95v-17,-61,-118,-36,-118,23v-12,56,61,77,96,42v15,-15,30,-37,22,-65xm67,-140v-29,-13,-25,-66,0,-81v29,-31,97,-13,87,38v-4,19,-18,35,-32,43v50,13,48,96,9,121v-41,42,-134,18,-121,-53v6,-32,29,-59,57,-68","w":183},":":{"d":"35,-90v-6,0,-11,-5,-10,-12v1,-12,25,-17,23,0v1,7,-7,12,-13,12xm36,-12v0,16,-25,16,-24,0v1,-13,24,-17,24,0","w":63},";":{"d":"61,-102v0,16,-25,15,-24,0v1,-13,24,-17,24,0xm45,-31r-41,74r-14,0r38,-74r17,0","w":72},"\"":{"d":"93,-259r-15,89r-14,0r13,-89r16,0xm45,-259r-14,89r-15,0r13,-89r16,0","w":111},"#":{"d":"75,-141r-13,51r51,0r13,-51r-51,0xm172,-90r-4,14r-44,0r-20,76r-15,0r20,-76r-51,0r-20,76r-15,0r19,-76r-38,0r4,-14r38,0r14,-51r-38,0v-1,-5,3,-11,3,-15r38,0r21,-75r15,0r-21,75r52,0r20,-75r15,0r-20,75r44,0r-4,15r-44,0r-13,51r44,0","w":205},"%":{"d":"203,-59v-22,-24,-65,11,-44,38v23,23,65,-11,44,-38xm215,-70v30,41,-30,96,-68,59v-30,-40,28,-95,68,-59xm107,-159v-21,-24,-65,11,-44,38v23,24,65,-11,44,-38xm107,-178v47,28,3,96,-43,76v-41,-18,-14,-85,27,-79v6,0,11,1,16,3xm57,0r133,-180r16,0r-133,180r-16,0","w":261},"(":{"d":"97,50r-12,9v-51,-55,-47,-195,-5,-261v16,-25,31,-49,50,-67r10,8v-69,57,-113,220,-43,311","w":146},")":{"d":"56,-260r12,-8v51,55,47,195,5,260v-16,25,-31,49,-50,67r-10,-8v69,-57,113,-219,43,-311","w":144},"*":{"d":"69,-220r37,-19v2,4,4,8,5,13r-36,19r30,19v-2,6,-6,9,-9,14r-30,-20r-7,38r-14,0r5,-38r-35,19r-6,-14r36,-18r-30,-20r8,-12r31,19r6,-39r16,0","w":120},"+":{"d":"79,-18r8,-58r-57,0r2,-15r57,0r8,-57r15,0r-8,57r58,0r-3,15r-57,0r-8,58r-15,0","w":195},"9":{"d":"38,-130v18,61,119,34,119,-24v0,-70,-90,-74,-113,-23v-6,13,-11,30,-6,47xm127,-97v-39,39,-113,7,-106,-57v7,-70,134,-107,149,-29v19,97,-79,142,-139,186r-8,-12v44,-27,79,-55,104,-88","w":189},"|":{"d":"11,84r47,-336r15,0r-47,336r-15,0","w":86},"{":{"d":"28,48v-27,-43,36,-132,-19,-147r3,-17v58,-11,23,-110,60,-148v10,-7,25,-4,42,-5r-2,15v-77,-10,-19,114,-81,146v36,25,0,93,8,138v2,12,18,9,32,9r-2,14v-15,-1,-35,5,-41,-5","w":104},"}":{"d":"85,-172v-3,21,-5,57,20,56r-2,17v-57,11,-22,111,-60,148v-9,9,-26,3,-42,4r2,-14v77,9,18,-114,81,-147v-38,-23,1,-94,-8,-138v-2,-11,-19,-7,-32,-8r2,-15v30,-1,53,0,47,43","w":115},"0":{"d":"130,-6v-93,41,-146,-74,-105,-154v14,-65,131,-113,169,-38v37,73,-7,167,-64,192xm158,-213v-90,-45,-161,83,-116,171v20,39,89,36,113,1v40,-31,58,-145,3,-172","w":221},"-":{"d":"18,-61r2,-15r66,0r-2,15r-66,0","w":108},"\/":{"d":"-13,7r138,-272r15,0r-138,272r-15,0","w":124},"\\":{"d":"39,-265r62,272r-17,0r-61,-272r16,0","w":124},"G":{"d":"193,-69v0,-9,7,-25,-6,-25r-42,0r2,-14v23,4,68,-13,64,18r-10,75v-45,29,-129,20,-154,-20v-30,-30,-32,-99,-8,-141v31,-55,120,-105,193,-61r-10,12v-107,-58,-239,71,-163,180v23,32,84,44,128,21","w":245,"k":{"a":7,"w":14,"u":14,"b":14}},"V":{"d":"246,-252r15,0r-149,264r-74,-264r15,0r64,230","w":259,"k":{"a":34,"A":37,"v":24,"u":31,"b":14}},"S":{"d":"22,-42v19,38,99,38,120,-2v29,-55,-28,-79,-71,-92v-50,-15,-28,-105,13,-111v30,-12,69,-6,86,16v-5,4,-5,8,-10,11v-22,-29,-86,-20,-98,13v-33,89,111,44,104,140v-5,72,-120,92,-155,35","w":198,"k":{"a":14,"w":14,"v":14,"f":14,"u":21,"b":9}},"Z":{"d":"87,-265v0,9,-1,14,9,13r159,0r-2,14r-203,224r182,0r-2,14r-201,0r2,-14r203,-224v-52,-3,-114,6,-159,-4v-6,-4,-4,-15,-3,-23r15,0","w":252,"k":{"a":14,"u":14,"b":14}},"W":{"d":"380,-252r15,0r-149,264r-44,-160v-27,54,-61,107,-90,160r-74,-264r15,0r64,230r80,-143r-25,-87r15,0r64,230","w":398},"X":{"d":"117,-129r-62,-123r18,0r56,112r87,-112r18,0r-98,125r65,127r-18,0r-59,-116v-28,41,-61,77,-90,116r-19,0","w":252,"k":{"a":27,"v":17}},"\u00c1":{"d":"146,-270r39,-48r16,0r-43,48r-12,0xm147,-230r-60,108r89,0xm226,0r-15,0r-31,-108r-101,0r-61,108r-15,0r149,-264","w":266},"\u00c9":{"d":"112,-270r40,-48r15,0r-43,48r-12,0xm13,0r35,-252r150,0r-3,14r-134,0r-15,104r121,0r-2,14r-121,0r-14,106r139,0r-2,14r-154,0","w":216},"\u00cd":{"d":"56,-270r39,-48r16,0r-43,48r-12,0xm55,-252r15,0r-36,252r-15,0","w":84},"\u00d3":{"d":"167,-270r39,-48r15,0r-42,48r-12,0xm132,3v-93,4,-137,-100,-93,-179v29,-52,101,-98,178,-69v56,21,83,109,46,169v-26,42,-67,76,-131,79xm243,-207v-78,-81,-231,2,-203,126v17,73,129,89,180,36v41,-28,66,-117,23,-162","w":302},"\u00da":{"d":"130,-270r39,-48r16,0r-43,48r-12,0xm197,-81v-4,72,-101,111,-155,62v-13,-12,-20,-35,-15,-62r24,-171r15,0v-7,67,-28,130,-23,200v3,46,83,51,112,22v45,-45,34,-149,51,-222r15,0","w":234},"\u00c0":{"d":"147,-230r-60,108r89,0xm226,0r-15,0r-31,-108r-101,0r-61,108r-15,0r149,-264xm132,-318r26,48v-20,3,-18,-15,-26,-24v-7,-12,-8,-12,-15,-24r15,0","w":266},"\u00c8":{"d":"13,0r35,-252r150,0r-3,14r-134,0r-15,104r121,0r-2,14r-121,0r-14,106r139,0r-2,14r-154,0xm102,-318r26,48v-20,3,-18,-15,-26,-24v-7,-12,-8,-12,-15,-24r15,0","w":216},"\u00cc":{"d":"55,-252r15,0r-36,252r-15,0xm42,-318r26,48v-20,3,-18,-15,-26,-24v-7,-12,-8,-12,-15,-24r15,0","w":84},"\u00d2":{"d":"132,3v-93,4,-137,-100,-93,-179v29,-52,101,-98,178,-69v56,21,83,109,46,169v-26,42,-67,76,-131,79xm243,-207v-78,-81,-231,2,-203,126v17,73,129,89,180,36v41,-28,66,-117,23,-162xm148,-318r26,48v-20,3,-18,-15,-26,-24v-7,-12,-8,-12,-15,-24r15,0","w":302},"\u00d9":{"d":"197,-81v-4,72,-101,111,-155,62v-13,-12,-20,-35,-15,-62r24,-171r15,0v-7,67,-28,130,-23,200v3,46,83,51,112,22v45,-45,34,-149,51,-222r15,0xm113,-318r26,48v-20,3,-18,-15,-26,-24v-7,-12,-8,-12,-15,-24r15,0","w":234},"\u00dd":{"d":"127,-270r40,-48r15,0r-43,48r-12,0xm119,-95r-14,95r-18,0r14,-95r-71,-157r18,0r64,143v31,-51,70,-95,104,-143r18,0","w":229},"\u00c3":{"d":"147,-230r-60,108r89,0xm226,0r-15,0r-31,-108r-101,0r-61,108r-15,0r149,-264xm175,-270v-24,1,-24,-29,-49,-22v-9,2,-15,8,-17,18r-10,-1v3,-16,18,-26,35,-27v23,-1,24,28,48,22v9,-3,16,-7,18,-18r9,1v-2,17,-17,26,-34,27","w":266},"\u00d5":{"d":"132,3v-93,4,-137,-100,-93,-179v29,-52,101,-98,178,-69v56,21,83,109,46,169v-26,42,-67,76,-131,79xm243,-207v-78,-81,-231,2,-203,126v17,73,129,89,180,36v41,-28,66,-117,23,-162xm191,-282v-24,1,-24,-29,-49,-22v-9,2,-15,8,-17,18r-10,-1v3,-16,18,-26,35,-27v23,-1,24,28,48,22v9,-3,16,-7,18,-18r9,1v-2,17,-17,26,-34,27","w":302},"\u00e2":{"d":"152,-89v-15,-58,-110,-32,-110,21v0,66,83,70,104,22v6,-13,11,-27,6,-43xm88,3v-67,4,-78,-89,-33,-121v25,-29,97,-27,105,15r6,-32r12,0r-19,135r-13,0r4,-31v-11,19,-32,32,-62,34xm126,-238r34,66r-12,0r-25,-44r-37,44r-12,0","w":198},"\u00ea":{"d":"140,-96v-6,-30,-57,-34,-79,-14v-13,12,-24,29,-24,53xm133,-16v-40,36,-111,16,-111,-52v0,-71,124,-100,136,-19r-118,44v6,33,62,41,85,16xm117,-238r34,66r-12,0r-25,-44r-37,44r-12,0"},"\u00f4":{"d":"155,-38v-28,59,-147,53,-133,-30v7,-41,34,-68,81,-70v53,-3,74,54,52,100xm147,-89v-15,-57,-110,-34,-110,21v0,65,82,70,104,23v6,-13,10,-28,6,-44xm115,-238r34,66r-12,0r-25,-44r-37,44r-12,0","w":168},"\u00e3":{"d":"152,-89v-15,-58,-110,-32,-110,21v0,66,83,70,104,22v6,-13,11,-27,6,-43xm88,3v-67,4,-78,-89,-33,-121v25,-29,97,-27,105,15r6,-32r12,0r-19,135r-13,0r4,-31v-11,19,-32,32,-62,34xm138,-164v-24,1,-24,-29,-49,-22v-9,2,-15,8,-17,18r-10,-1v3,-16,18,-26,35,-27v23,-1,24,28,48,22v9,-3,16,-7,18,-18r9,1v-2,17,-17,26,-34,27","w":198},"`":{"d":"8,-220r26,48v-20,3,-18,-15,-26,-24v-7,-12,-8,-12,-15,-24r15,0","w":72},"^":{"d":"88,-238r34,66r-12,0r-25,-44r-37,44r-12,0","w":169},"\u00f5":{"d":"155,-38v-28,59,-147,53,-133,-30v7,-41,34,-68,81,-70v53,-3,74,54,52,100xm147,-89v-15,-57,-110,-34,-110,21v0,65,82,70,104,23v6,-13,10,-28,6,-44xm127,-164v-24,1,-24,-29,-49,-22v-9,2,-15,8,-17,18r-10,-1v3,-16,18,-26,35,-27v23,-1,24,28,48,22v9,-3,16,-7,18,-18r9,1v-2,17,-17,26,-34,27","w":168},"'":{"d":"42,-259r-14,89r-14,0r13,-89r15,0","w":55},"_":{"d":"179,0r-144,0r2,-15r144,0","w":216},"[":{"d":"7,54r45,-323r63,0r-2,15r-47,0r-42,293r48,0r-2,15r-63,0","w":121},"]":{"d":"113,-269r-45,323r-63,0r2,-15r47,0r41,-293r-47,0r2,-15r63,0","w":123},"\u00c2":{"d":"147,-230r-60,108r89,0xm226,0r-15,0r-31,-108r-101,0r-61,108r-15,0r149,-264xm161,-336r34,66r-12,0r-25,-44r-37,44r-12,0","w":266},"\u00ca":{"d":"13,0r35,-252r150,0r-3,14r-134,0r-15,104r121,0r-2,14r-121,0r-14,106r139,0r-2,14r-154,0xm140,-336r34,66r-12,0r-25,-44r-37,44r-12,0","w":216},"\u00d4":{"d":"132,3v-93,4,-137,-100,-93,-179v29,-52,101,-98,178,-69v56,21,83,109,46,169v-26,42,-67,76,-131,79xm243,-207v-78,-81,-231,2,-203,126v17,73,129,89,180,36v41,-28,66,-117,23,-162xm181,-336r34,66r-12,0r-25,-44r-37,44r-12,0","w":302},"$":{"d":"106,-238v-49,-1,-73,79,-20,92v2,1,5,2,7,2xm90,-13v53,2,87,-78,33,-101v-6,-3,-12,-6,-18,-8xm170,-231r-10,12v-9,-7,-22,-18,-39,-19r-14,100v40,8,78,51,50,98v-14,23,-37,39,-70,43r-3,21r-15,0r3,-22v-28,-3,-49,-16,-61,-34r11,-10v12,15,28,27,52,30r16,-115v-57,-6,-63,-98,-10,-119v8,-4,17,-6,28,-7r3,-22r15,0r-3,22v20,2,34,10,47,22","w":204},"&":{"d":"103,-123v-54,-1,-85,83,-33,107v28,13,61,-5,73,-23xm172,-242v-14,-9,-39,-18,-59,-7v-52,29,-10,90,7,127r29,62v18,-30,1,-87,68,-75r-2,15v-20,-1,-38,-1,-39,20v-6,19,-5,47,-17,61r18,38r-12,8r-16,-31v-20,28,-83,38,-107,6v-34,-45,3,-116,54,-118v-37,-47,-30,-145,51,-132v11,2,25,9,33,14v-3,5,-5,8,-8,12","w":252},"O":{"d":"132,3v-93,4,-137,-100,-93,-179v29,-52,101,-98,178,-69v56,21,83,109,46,169v-26,42,-67,76,-131,79xm243,-207v-78,-81,-231,2,-203,126v17,73,129,89,180,36v41,-28,66,-117,23,-162","w":302,"k":{"a":14,"w":10,"s":22,"v":10,"u":14,"b":17}},"g":{"d":"152,-89v-15,-58,-110,-32,-110,21v0,66,83,70,104,22v6,-13,11,-27,6,-43xm160,-103r6,-32r12,0v-21,88,3,225,-100,225v-21,0,-43,-9,-52,-22r12,-11v38,40,104,3,105,-45v0,-15,3,-30,7,-43v-12,18,-32,32,-62,34v-67,4,-78,-91,-33,-122v26,-27,97,-25,105,16","w":186,"k":{"a":9,"w":9,"s":14,".":9,"u":14,"b":9}},"d":{"d":"154,-89v-16,-56,-110,-34,-110,21v0,67,83,70,104,22v5,-12,10,-27,6,-43xm89,3v-66,3,-78,-89,-33,-121v26,-27,96,-27,106,14v3,-60,16,-110,22,-166r14,0r-37,270r-14,0v2,-11,2,-22,5,-31v-12,18,-33,33,-63,34","w":188},"a":{"d":"152,-89v-15,-58,-110,-32,-110,21v0,66,83,70,104,22v6,-13,11,-27,6,-43xm88,3v-67,4,-78,-89,-33,-121v25,-29,97,-27,105,15r6,-32r12,0r-19,135r-13,0r4,-31v-11,19,-32,32,-62,34","w":181,"k":{"a":13,"z":3,"x":4,"w":17,"s":21,"v":14,"f":9,".":7,"u":14,"b":13}},"n":{"d":"65,-100v12,-27,65,-53,94,-27v20,33,-5,86,-5,127r-15,0v1,-38,21,-83,7,-114v-30,-23,-79,5,-84,40r-10,74r-15,0r19,-135r13,0","w":178,"k":{"z":4}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2010 by Typemade. All rights reserved.
 * 
 * Trademark:
 * Josefin Sans Bold Italic is a trademark of Typemade.
 * 
 * Description:
 * Copyright (c) 2010 by Typemade. All rights reserved.
 * 
 * Manufacturer:
 * Typemade
 * 
 * Designer:
 * Santiago Orozco
 * 
 * License information:
 * http://scripts.sil.org/OFL
 */
Cufon.registerFont({"w":162,"face":{"font-family":"Josefin Sans","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"3","bbox":"-16 -336 395 90","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+00FD"},"glyphs":{" ":{"w":108},"\u00a0":{"w":108},"t":{"d":"70,-223r30,0r-12,85r35,0r-4,29r-35,0r-15,109r-30,0r15,-109r-30,0r4,-29r30,0","w":108,"k":{"a":14,"z":-1,"w":13,"s":14,"v":-2,"f":9,"u":9,"b":17}},"b":{"d":"76,-38v35,37,102,-18,69,-59v-36,-36,-100,17,-69,59xm72,-119v36,-37,123,-16,111,51v-7,43,-35,68,-82,71v-20,0,-36,-6,-43,-18r-2,15r-26,0r37,-270r30,0r-22,145","w":191,"k":{"n":13,"a":15,"z":9,"x":9,"w":27,"s":27,"v":10,"f":9,".":18,"u":19,"b":13}},"l":{"d":"51,0r-30,0r38,-270r30,0","w":69},"m":{"d":"145,-84v-2,-43,-59,-20,-70,1v-11,22,-10,55,-16,83r-29,0r18,-135r27,0r-3,35v12,-21,33,-38,64,-38v24,-1,41,13,41,36v14,-28,65,-50,95,-25v22,32,-4,86,-5,127r-29,0r11,-84v-2,-43,-59,-20,-70,1v-11,22,-10,55,-16,83r-29,0","w":286},"i":{"d":"60,-168v-16,1,-21,-23,-9,-33v13,-11,34,-2,30,14v-2,11,-11,18,-21,19xm51,0r-30,0r19,-135r29,0","w":72},"h":{"d":"145,-84v-2,-43,-59,-20,-70,1v-11,22,-10,55,-16,83r-29,0r37,-270r30,0r-25,170v13,-30,65,-51,96,-27v22,32,-4,86,-5,127r-29,0","w":189,"k":{"a":13,"w":13,"s":18,"v":9,"f":9,".":7,"u":14,"b":13}},"c":{"d":"148,-123r-22,23v-39,-30,-97,22,-66,62v12,15,41,16,57,3r14,23v-43,32,-117,9,-109,-56v7,-55,77,-91,126,-55","w":142,"k":{"a":1,"s":9,"u":9,"b":5}},"q":{"d":"134,-97v-35,-37,-102,17,-69,59v36,36,100,-16,69,-59xm138,-15v-36,37,-119,14,-111,-53v7,-56,86,-93,125,-50r4,-17r25,0r-32,225r-30,0v7,-34,8,-75,19,-105","w":184},"u":{"d":"66,-51v1,42,61,21,71,-1v10,-23,9,-55,15,-83r30,0r-19,138r-30,0r6,-38v-11,30,-67,52,-96,27v-20,-33,5,-86,5,-127r30,0","w":190},"r":{"d":"123,-109v-57,0,-58,58,-64,109r-29,0r18,-135r27,0r-3,35v14,-17,29,-35,57,-38","w":119,"k":{"a":17,"w":4,"s":14,"v":-5,".":8,"u":14,"b":6}},"e":{"d":"123,-95v-18,-29,-70,-7,-70,24xm57,-42v8,19,47,21,60,5r16,21v-39,38,-117,15,-111,-52v6,-63,106,-99,131,-34v3,7,5,15,6,24","k":{"a":9,"x":9,"w":13,"s":18,"v":5,"f":5,".":7,"u":18,"b":11}},"p":{"d":"71,-38v35,37,102,-18,69,-59v-36,-36,-102,18,-69,59xm67,-118v35,-38,119,-17,111,50v-6,56,-86,95,-126,53v6,31,-9,71,-11,105r-30,0r32,-225r25,0","w":189},"\u00e1":{"d":"108,-172r39,-48r30,0r-48,48r-21,0xm134,-97v-35,-37,-102,17,-69,59v36,36,100,-16,69,-59xm138,-15v-36,36,-119,15,-111,-52v7,-57,86,-95,125,-51r4,-17r25,0r-19,135r-26,0v1,-5,0,-12,2,-15","w":198},"\u00e9":{"d":"95,-172r39,-48r30,0r-48,48r-21,0xm123,-95v-18,-29,-70,-7,-70,24xm57,-42v8,19,47,21,60,5r16,21v-39,38,-117,15,-111,-52v6,-63,106,-99,131,-34v3,7,5,15,6,24"},"\u00ed":{"d":"51,0r-30,0r19,-135r29,0xm49,-172r40,-48r30,0r-48,48r-22,0","w":69,"k":{"a":14,"s":18,"b":13}},"\u00f3":{"d":"106,-172r39,-48r30,0r-48,48r-21,0xm157,-39v-29,58,-149,55,-135,-29v7,-42,34,-68,82,-70v54,-2,76,54,53,99xm134,-84v-13,-42,-82,-23,-82,17v0,49,62,51,78,16v4,-9,7,-22,4,-33","w":168},"\u00fa":{"d":"106,-172r39,-48r30,0r-48,48r-21,0xm66,-51v1,42,61,21,71,-1v10,-23,9,-55,15,-83r30,0r-19,138r-30,0r6,-38v-11,30,-67,52,-96,27v-20,-33,5,-86,5,-127r30,0","w":190},"\u00e0":{"d":"134,-97v-35,-37,-102,17,-69,59v36,36,100,-16,69,-59xm138,-15v-36,36,-119,15,-111,-52v7,-57,86,-95,125,-51r4,-17r25,0r-19,135r-26,0v1,-5,0,-12,2,-15xm97,-220r26,48r-22,0r-34,-48r30,0","w":198},"\u00e8":{"d":"123,-95v-18,-29,-70,-7,-70,24xm57,-42v8,19,47,21,60,5r16,21v-39,38,-117,15,-111,-52v6,-63,106,-99,131,-34v3,7,5,15,6,24xm86,-220r26,48r-22,0r-34,-48r30,0"},"\u00ec":{"d":"51,0r-30,0r19,-135r29,0xm42,-220r26,48r-21,0r-34,-48r29,0","w":62},"\u00f2":{"d":"157,-39v-29,58,-149,55,-135,-29v7,-42,34,-68,82,-70v54,-2,76,54,53,99xm134,-84v-13,-42,-82,-23,-82,17v0,49,62,51,78,16v4,-9,7,-22,4,-33xm91,-220r26,48r-22,0r-34,-48r30,0","w":168},"\u00f9":{"d":"66,-51v1,42,61,21,71,-1v10,-23,9,-55,15,-83r30,0r-19,138r-30,0r6,-38v-11,30,-67,52,-96,27v-20,-33,5,-86,5,-127r30,0xm100,-220r26,48r-22,0r-34,-48r30,0","w":190},",":{"d":"64,-31r-42,74r-26,0r37,-74r31,0","w":72},".":{"d":"28,0v-18,2,-21,-23,-9,-32v11,-13,33,-2,30,13v-2,11,-10,18,-21,19","w":58},"f":{"d":"23,-109r4,-29r23,0v5,-73,29,-131,106,-132r-4,28v-55,1,-68,51,-72,104r42,0r-4,29r-42,0r-15,109r-30,0r15,-109r-23,0","w":118,"k":{"a":14,"v":-5,"f":5,"u":18,"b":9}},"v":{"d":"103,-43v17,-34,40,-63,61,-92r30,0r-98,143r-58,-143r30,0v11,31,28,57,35,92","w":180,"k":{"a":10,"z":-14,"s":18,"v":-6,"f":-3,".":7,"u":13,"b":5}},"j":{"d":"67,-168v-17,1,-20,-23,-9,-33v13,-11,34,-2,30,14v-2,11,-11,18,-21,19xm19,65r-18,-22v42,-34,30,-118,45,-178r30,0v-15,71,-5,165,-57,200","w":81},"s":{"d":"49,-36v13,15,52,12,41,-13v-18,-13,-51,-12,-47,-49v4,-38,61,-53,86,-25r-20,22v-5,-9,-38,-14,-36,5v13,21,49,15,49,56v0,44,-69,56,-95,26","w":143,"k":{"a":18,"z":9,"w":22,"s":28,"v":9,"f":14,".":7,"u":23,"b":18}},"k":{"d":"137,-138r15,17r-52,44r45,77r-34,0r-35,-58r-19,17r-6,41r-30,0r38,-270r30,0r-28,194","w":161,"k":{"a":14,"w":18,"s":14,"v":14,".":7,"u":18,"b":10}},"y":{"d":"49,90r-30,0r58,-90r-49,-135r30,0r38,108r68,-108r30,0","w":180,"k":{"o":9}},"w":{"d":"195,-43v15,-32,39,-62,56,-92r30,0r-93,143r-35,-97r-63,97r-52,-143r30,0v9,30,24,60,30,92v12,-27,29,-50,44,-75r-6,-17r30,0v9,30,23,59,29,92","w":277,"k":{"a":9,"s":13,"v":-13,".":7,"u":4,"b":9}},"x":{"d":"71,-73r-37,-62r37,0r29,48r41,-48r37,0r-63,73r38,62r-39,0r-28,-48r-42,48r-36,0","w":171,"k":{"a":5,"v":-8,"u":13,"b":13}},"z":{"d":"70,-148v-2,7,-2,13,9,13r78,0r-4,29r-92,77r89,0r-3,29r-132,0r4,-29r92,-78v-36,0,-89,8,-71,-41r30,0","k":{"a":9,"s":13,"u":13}},"o":{"d":"157,-39v-29,58,-149,55,-135,-29v7,-42,34,-68,82,-70v54,-2,76,54,53,99xm134,-84v-13,-42,-82,-23,-82,17v0,49,62,51,78,16v4,-9,7,-22,4,-33","w":171,"k":{"a":8,"c":8}},"A":{"d":"160,-128v-5,-23,-14,-43,-17,-69r-38,69r55,0xm226,0r-29,0r-29,-100r-79,0r-56,100r-30,0r149,-264","w":266,"k":{"a":10,"V":41,"z":14,"w":33,"s":29,"v":34,"f":19,"u":35,"b":24}},"\u00fd":{"d":"106,-172r39,-48r30,0r-48,48r-21,0xm49,90r-30,0r58,-90r-49,-135r30,0r38,108r68,-108r30,0","w":175},"B":{"d":"64,-224r-11,83v46,3,85,-3,91,-43v7,-44,-38,-41,-80,-40xm49,-113r-12,85v53,4,114,-6,97,-61v-8,-26,-48,-25,-85,-24xm3,0r36,-252v62,2,145,-13,135,63v-4,31,-23,54,-51,62v38,3,55,55,32,90v-25,39,-88,38,-152,37","w":192,"k":{"a":10,"f":10,"b":12}},"D":{"d":"39,-252v102,-9,181,21,168,126v-12,93,-86,135,-203,126xm65,-224r-27,195v93,7,153,-45,137,-137v-8,-43,-51,-63,-110,-58","w":234,"k":{"a":14,"w":10,"u":14,"b":10}},"E":{"d":"7,0r35,-252r156,0r-4,28r-126,0r-11,83r111,0r-4,28r-111,0r-12,85r130,0r-4,28r-160,0","w":216,"k":{"a":10,"z":10,"x":14,"w":17,"s":28,"v":17,"u":17,"b":23}},"H":{"d":"10,0r36,-252r30,0r-16,111r136,0r16,-111r30,0r-36,252r-30,0r16,-113r-136,0r-16,113r-30,0","w":252,"k":{"a":14,"s":14,"u":18,"b":14}},"I":{"d":"53,-252r30,0r-35,252r-30,0","w":100},"J":{"d":"-15,52r4,-29v37,-1,59,-22,64,-56r31,-219r30,0r-31,220v-9,50,-42,82,-98,84","w":123},"K":{"d":"191,0r-35,0r-85,-131r-25,22r-16,109r-30,0r36,-252r30,0r-17,110r130,-110r36,0r-121,102","w":216,"k":{"a":19,"b":7}},"M":{"d":"54,-264r108,171r156,-171r-37,264r-30,0r27,-181v-39,48,-82,91,-122,136r-84,-136r-25,181r-30,0","w":337},"N":{"d":"274,-252r-37,264r-163,-206r-26,194r-30,0r37,-264r162,210v5,-70,19,-131,27,-198r30,0","w":292,"k":{"a":9,"u":14}},"P":{"d":"53,-141v57,11,115,-27,79,-71v-12,-14,-41,-12,-68,-12xm3,0r36,-252v66,-3,141,0,135,68v-5,56,-56,79,-125,72r-16,112r-30,0","w":176,"k":{"a":14,"s":14,"u":14,"b":15}},"R":{"d":"53,-141v57,11,115,-27,79,-71v-12,-14,-41,-12,-68,-12xm3,0r36,-252v66,-3,141,0,135,68v-3,37,-28,63,-63,70r38,114r-33,0r-37,-112r-30,0r-16,112r-30,0","w":186,"k":{"a":28,"w":21,"s":27,"f":22,"u":24,"b":22}},"U":{"d":"203,-81v-4,75,-108,109,-165,62v-15,-12,-21,-35,-17,-62r24,-171r30,0v-7,65,-28,127,-23,194v3,37,70,41,98,18v13,-10,20,-24,23,-42r24,-170r30,0","w":234,"k":{"a":14,"w":14,"s":14,"v":14,"b":19}},"Y":{"d":"129,-97r-14,97r-37,0r14,-97r-70,-155r37,0r55,127v28,-45,62,-84,91,-127r37,0","w":229,"k":{"a":45,"s":44,"v":23,"u":45,"b":31}},"~":{"d":"122,-162v-22,2,-24,-20,-43,-21v-9,2,-20,5,-21,17r-17,-1v5,-17,18,-30,38,-32v23,-1,25,26,49,21v12,-2,12,-22,31,-15v-4,18,-16,30,-37,31","w":176},"F":{"d":"7,0r35,-252r156,0r-4,28r-126,0r-11,83r111,0r-4,28r-111,0r-16,113r-30,0","w":211,"k":{"a":41,"s":31,"f":31,"b":28}},"L":{"d":"7,0r35,-252r30,0r-31,224r130,0r-4,28r-160,0","w":213,"k":{"a":28,"u":32,"b":19}},"C":{"d":"212,-213v-93,-52,-207,63,-141,158v21,31,79,39,117,16r13,24v-45,29,-129,20,-154,-20v-30,-30,-32,-99,-8,-141v31,-55,120,-105,193,-61","w":241,"k":{"a":10,"w":7,"s":7,"u":14,"b":10}},"Q":{"d":"231,-197v-69,-71,-200,1,-177,110v14,63,113,80,157,32v35,-24,58,-103,20,-142xm159,0v-137,33,-179,-149,-86,-217v38,-45,146,-53,182,0v33,32,32,105,5,146v-11,16,-23,31,-39,43r53,0r-4,28r-111,0","w":303},"T":{"d":"217,-252r-4,28r-84,0r-32,224r-30,0r32,-224r-85,0r4,-28r199,0","w":199,"k":{"a":14,"w":21,"v":14,"b":19}},">":{"d":"29,5r6,-41r94,-50r-80,-50r5,-40r145,90","w":234},"<":{"d":"192,-36r-6,41r-144,-91r170,-90r-6,40r-94,50","w":244},"=":{"d":"215,-69r-4,29r-182,0r4,-29r182,0xm225,-139r-4,29r-182,0r4,-29r182,0","w":254},"@":{"d":"209,-97v-35,-37,-102,18,-69,59v36,36,101,-16,69,-59xm252,52v-48,44,-164,41,-199,-13v-37,-36,-38,-117,-9,-166v36,-60,119,-111,211,-81v81,27,109,204,-6,208r-38,0r2,-14v-20,22,-78,22,-97,-4v-50,-66,51,-162,111,-100r4,-17r25,0r-15,106v72,12,64,-87,33,-126v-36,-46,-136,-42,-173,0v-43,31,-67,122,-24,174v33,39,118,44,160,12v6,7,10,14,15,21","w":356},"?":{"d":"129,-223v-25,-24,-72,-5,-79,24v-8,-4,-16,-6,-25,-9v11,-55,121,-83,139,-12v16,65,-45,82,-76,116v-9,10,-7,30,-10,45r-30,0v1,-48,23,-72,56,-88v24,-11,42,-48,25,-76xm72,-32v15,17,-12,43,-30,27v-13,-17,14,-46,30,-27"},"!":{"d":"5,-5v-16,-17,11,-45,29,-28v13,16,-11,46,-29,28xm39,-270r30,0r-29,210r-30,0","w":72},"2":{"d":"130,-196v-44,-41,-103,28,-69,70r-21,18v-50,-56,14,-156,97,-123v34,14,44,67,23,104v-21,38,-51,69,-82,98r88,0r-4,29r-160,0v47,-50,118,-84,138,-158v5,-18,-1,-30,-10,-38","w":186},"1":{"d":"24,-205r4,-29r55,0r-33,234r-30,0r29,-205r-25,0","w":98},"3":{"d":"33,-43v32,38,103,1,88,-51v-6,-24,-39,-38,-66,-23r63,-87r-69,0r5,-30r118,0r-64,86v38,9,59,65,33,103v-17,43,-100,69,-133,22","w":185},"4":{"d":"119,-149r-49,54r41,0xm6,-66r156,-171r-21,142r35,0r-4,29r-34,0r-10,66r-30,0r9,-66r-101,0","w":190},"5":{"d":"48,-39v40,38,113,-19,77,-70v-14,-20,-62,-17,-75,4r18,-129r103,0r-4,29r-73,0r-7,53v78,-14,101,93,46,132v-24,26,-87,32,-110,1","w":195},"6":{"d":"138,-94v-15,-48,-95,-29,-95,19v0,57,71,61,89,19v4,-10,10,-24,6,-38xm93,-152v78,-13,98,93,45,132v-24,26,-90,34,-110,1v-58,-95,62,-169,125,-210r15,23v-30,17,-53,35,-75,54","w":187},"7":{"d":"17,-204r4,-30r149,0r-138,234r-34,0r121,-204r-102,0","w":168},"8":{"d":"123,-199v-15,-20,-47,-2,-50,20v-4,25,27,34,44,19v10,-8,15,-27,6,-39xm133,-94v-14,-48,-95,-28,-95,19v0,57,71,61,89,19v5,-11,10,-23,6,-38xm105,-3v-73,32,-125,-53,-83,-110v8,-11,19,-21,31,-28v-39,-53,40,-130,93,-79v20,19,10,67,-10,79v41,22,31,97,-3,121v-9,6,-18,13,-28,17","w":183},":":{"d":"34,-90v-17,1,-21,-24,-8,-32v11,-13,31,-2,29,13v-2,11,-10,19,-21,19xm22,0v-18,2,-22,-24,-9,-32v11,-13,32,-3,29,13v-2,11,-9,18,-20,19","w":63},";":{"d":"48,-90v-17,1,-21,-24,-8,-32v11,-13,32,-3,29,13v-2,11,-10,19,-21,19xm52,-31r-42,74r-26,0r38,-74r30,0","w":72},"\"":{"d":"107,-259r-14,89r-29,0r13,-89r30,0xm59,-259r-14,89r-29,0r13,-89r30,0","w":120},"#":{"d":"82,-134v-2,13,-5,25,-9,37r36,0v4,-13,7,-23,9,-37r-36,0xm132,-68r-18,68r-30,0r18,-68r-36,0r-18,68r-30,0r17,-68r-33,0r8,-29r33,0v4,-13,7,-23,9,-37r-33,0r8,-29r33,0r18,-68r30,0r-18,68r36,0r18,-68r31,0v-9,25,-11,43,-19,68r37,0r-7,29r-37,0r-10,37r37,0r-8,29r-36,0","w":205},"%":{"d":"194,-52v-15,-14,-39,8,-26,24v15,15,39,-9,26,-24xm204,-82v55,28,3,104,-47,84v-27,-10,-29,-60,-4,-74v11,-11,34,-19,51,-10xm98,-152v-15,-14,-39,8,-26,24v15,15,39,-9,26,-24xm109,-182v53,28,4,104,-47,84v-28,-11,-29,-58,-5,-74v11,-11,35,-19,52,-10xm50,0r133,-180r32,0r-133,180r-32,0","w":261},"(":{"d":"78,59v-52,-55,-47,-195,-5,-261v16,-25,31,-48,50,-67r26,9v-69,58,-113,219,-44,311","w":152},")":{"d":"76,-267v51,56,45,196,4,260v-16,25,-31,49,-50,67r-25,-7v67,-58,113,-219,43,-311","w":144},"*":{"d":"31,-207r-20,-14r17,-25r21,14r4,-27r31,0r-5,27r25,-13v5,8,8,16,11,25v-10,4,-16,8,-25,13r21,13r-19,26r-21,-13r-4,25r-28,0r3,-25r-24,12r-11,-26","w":120},"+":{"d":"71,-18r7,-50r-49,0r4,-30r49,0r8,-50r30,0r-7,50r49,0r-4,30r-49,0r-7,50r-31,0","w":195},"9":{"d":"46,-132v15,49,95,28,94,-19v12,-58,-70,-60,-89,-19v-5,11,-9,24,-5,38xm90,-74v-78,13,-99,-94,-44,-132v32,-38,117,-24,123,25v12,99,-81,140,-138,184r-16,-23v30,-17,53,-35,75,-54","w":189},"|":{"d":"9,84r47,-336r30,0r-47,336r-30,0","w":97},"{":{"d":"30,49v-31,-38,33,-126,-21,-141r4,-29v56,-12,21,-110,61,-143v11,-9,33,-4,53,-5r-4,30v-18,-1,-35,-1,-36,18v-11,40,-5,98,-41,114v30,17,13,76,9,113v-2,21,13,19,31,18r-4,30v-18,-2,-40,3,-52,-5","w":115},"}":{"d":"85,-264v31,39,-32,128,21,143r-4,29v-57,10,-21,109,-61,141v-11,9,-33,4,-53,5r4,-30v18,1,35,2,36,-18v11,-39,5,-97,40,-113v-28,-19,-12,-76,-8,-114v2,-20,-13,-19,-31,-18r4,-30v18,2,40,-3,52,5","w":115},"0":{"d":"129,-5v-97,43,-145,-85,-101,-162v17,-60,119,-99,163,-37v35,49,8,148,-28,175v-12,9,-22,18,-34,24xm96,-26v73,-2,107,-121,57,-172v-76,-41,-137,69,-99,145v7,15,21,27,42,27","w":221},"-":{"d":"17,-53r4,-29r66,0r-4,29r-66,0","w":108},"\/":{"d":"-13,7r138,-272r31,0r-139,272r-30,0","w":136},"\\":{"d":"53,-265r61,272r-33,0r-62,-272r34,0","w":138},"G":{"d":"178,-69v5,-19,-22,-9,-35,-11r4,-28v24,5,69,-15,64,22r-10,71v-45,29,-129,20,-154,-20v-30,-30,-32,-99,-8,-141v31,-55,120,-105,193,-61r-20,24v-93,-52,-207,63,-141,158v18,26,62,37,102,23","w":249,"k":{"a":7,"w":14,"u":14,"b":14}},"V":{"d":"231,-252r30,0r-149,264r-74,-264r30,0r54,197","w":259,"k":{"a":34,"A":37,"v":24,"u":31,"b":14}},"S":{"d":"26,-57v16,39,108,44,110,-11v2,-70,-107,-29,-101,-118v5,-64,98,-90,141,-41r-20,21v-29,-42,-121,-4,-83,46v37,23,98,28,93,93v-6,77,-129,91,-162,29","w":202,"k":{"a":14,"w":14,"v":14,"f":14,"u":21,"b":9}},"Z":{"d":"102,-265v-2,7,-2,13,9,13r144,0r-4,28r-181,195r164,0r-4,29r-201,0r4,-29r182,-195r-122,0v-23,1,-28,-20,-21,-41r30,0","w":252,"k":{"a":14,"u":14,"b":14}},"W":{"d":"365,-252r30,0r-148,264r-45,-163v-24,59,-60,111,-90,163r-74,-264r30,0r54,197v19,-45,48,-87,70,-127r-20,-70r30,0r54,197","w":398},"X":{"d":"117,-129r-62,-123r36,0r50,100v23,-36,51,-67,77,-100r37,0r-99,126r64,126r-37,0r-51,-103v-24,36,-53,68,-79,103r-38,0","w":252,"k":{"a":27,"v":17}},"\u00c1":{"d":"141,-270r39,-48r30,0r-48,48r-21,0xm160,-128v-5,-23,-14,-43,-17,-69r-38,69r55,0xm226,0r-29,0r-29,-100r-79,0r-56,100r-30,0r149,-264","w":266},"\u00c9":{"d":"107,-270r40,-48r30,0r-48,48r-22,0xm7,0r35,-252r156,0r-4,28r-126,0r-11,83r111,0r-4,28r-111,0r-12,85r130,0r-4,28r-160,0","w":216},"\u00cd":{"d":"56,-270r39,-48r31,0r-49,48r-21,0xm53,-252r30,0r-35,252r-30,0","w":84},"\u00d3":{"d":"161,-270r39,-48r30,0r-48,48r-21,0xm131,3v-93,4,-137,-100,-93,-179v29,-52,101,-98,178,-69v56,21,83,109,46,169v-26,42,-67,76,-131,79xm230,-197v-69,-70,-200,1,-177,110v13,63,114,80,157,32v35,-24,58,-103,20,-142","w":302},"\u00da":{"d":"127,-270r39,-48r30,0r-48,48r-21,0xm203,-81v-4,75,-108,109,-165,62v-15,-12,-21,-35,-17,-62r24,-171r30,0v-7,65,-28,127,-23,194v3,37,70,41,98,18v13,-10,20,-24,23,-42r24,-170r30,0","w":234},"\u00c0":{"d":"160,-128v-5,-23,-14,-43,-17,-69r-38,69r55,0xm226,0r-29,0r-29,-100r-79,0r-56,100r-30,0r149,-264xm137,-318r26,48r-22,0r-34,-48r30,0","w":266},"\u00c8":{"d":"7,0r35,-252r156,0r-4,28r-126,0r-11,83r111,0r-4,28r-111,0r-12,85r130,0r-4,28r-160,0xm107,-318r26,48r-22,0r-34,-48r30,0","w":216},"\u00cc":{"d":"53,-252r30,0r-35,252r-30,0xm51,-318r26,48r-22,0r-34,-48r30,0","w":84},"\u00d2":{"d":"131,3v-93,4,-137,-100,-93,-179v29,-52,101,-98,178,-69v56,21,83,109,46,169v-26,42,-67,76,-131,79xm230,-197v-69,-70,-200,1,-177,110v13,63,114,80,157,32v35,-24,58,-103,20,-142xm154,-318r26,48r-22,0r-34,-48r30,0","w":302},"\u00d9":{"d":"203,-81v-4,75,-108,109,-165,62v-15,-12,-21,-35,-17,-62r24,-171r30,0v-7,65,-28,127,-23,194v3,37,70,41,98,18v13,-10,20,-24,23,-42r24,-170r30,0xm118,-318r26,48r-22,0r-34,-48r30,0","w":234},"\u00dd":{"d":"123,-270r39,-48r30,0r-48,48r-21,0xm129,-97r-14,97r-37,0r14,-97r-70,-155r37,0r55,127v28,-45,62,-84,91,-127r37,0","w":229},"\u00c3":{"d":"160,-128v-5,-23,-14,-43,-17,-69r-38,69r55,0xm226,0r-29,0r-29,-100r-79,0r-56,100r-30,0r149,-264xm176,-271v-22,2,-24,-20,-43,-21v-9,2,-20,5,-21,17r-17,-1v5,-17,18,-30,38,-32v23,-1,25,26,49,21v12,-2,12,-22,31,-15v-4,18,-16,30,-37,31","w":266},"\u00d5":{"d":"131,3v-93,4,-137,-100,-93,-179v29,-52,101,-98,178,-69v56,21,83,109,46,169v-26,42,-67,76,-131,79xm230,-197v-69,-70,-200,1,-177,110v13,63,114,80,157,32v35,-24,58,-103,20,-142xm191,-280v-22,2,-24,-20,-43,-21v-9,2,-20,5,-21,17r-17,-1v5,-17,18,-30,38,-32v23,-1,25,26,49,21v12,-2,12,-22,31,-15v-4,18,-16,30,-37,31","w":302},"\u00e2":{"d":"134,-97v-35,-37,-102,17,-69,59v36,36,100,-16,69,-59xm138,-15v-36,36,-119,15,-111,-52v7,-57,86,-95,125,-51r4,-17r25,0r-19,135r-26,0v1,-5,0,-12,2,-15xm120,-198v-8,9,-16,17,-25,26r-21,0r52,-66r34,66r-21,0","w":198},"\u00ea":{"d":"123,-95v-18,-29,-70,-7,-70,24xm57,-42v8,19,47,21,60,5r16,21v-39,38,-117,15,-111,-52v6,-63,106,-99,131,-34v3,7,5,15,6,24xm111,-198v-8,9,-16,17,-25,26r-21,0r52,-66r34,66r-21,0"},"\u00f4":{"d":"157,-39v-29,58,-149,55,-135,-29v7,-42,34,-68,82,-70v54,-2,76,54,53,99xm134,-84v-13,-42,-82,-23,-82,17v0,49,62,51,78,16v4,-9,7,-22,4,-33xm109,-198v-8,9,-16,17,-25,26r-21,0r52,-66r34,66r-21,0","w":168},"\u00e3":{"d":"134,-97v-35,-37,-102,17,-69,59v36,36,100,-16,69,-59xm138,-15v-36,36,-119,15,-111,-52v7,-57,86,-95,125,-51r4,-17r25,0r-19,135r-26,0v1,-5,0,-12,2,-15xm139,-162v-22,2,-24,-20,-43,-21v-9,2,-20,5,-21,17r-17,-1v5,-17,18,-30,38,-32v23,-1,25,26,49,21v12,-2,12,-22,31,-15v-4,18,-16,30,-37,31","w":198},"`":{"d":"15,-220r26,48r-22,0r-34,-48r30,0","w":72},"^":{"d":"82,-198v-8,9,-16,17,-25,26r-21,0r52,-66r34,66r-21,0","w":169},"\u00f5":{"d":"157,-39v-29,58,-149,55,-135,-29v7,-42,34,-68,82,-70v54,-2,76,54,53,99xm134,-84v-13,-42,-82,-23,-82,17v0,49,62,51,78,16v4,-9,7,-22,4,-33xm127,-162v-22,2,-24,-20,-43,-21v-9,2,-20,5,-21,17r-17,-1v5,-17,18,-30,38,-32v23,-1,25,26,49,21v12,-2,12,-22,31,-15v-4,18,-16,30,-37,31","w":168},"'":{"d":"51,-259r-14,89r-28,0r12,-89r30,0","w":58},"_":{"d":"178,0r-144,0r4,-29r144,0","w":216},"[":{"d":"7,54r45,-323r69,0r-4,30r-39,0r-37,263r39,0r-4,30r-69,0","w":121},"]":{"d":"113,-269r-45,323r-69,0r4,-30r39,0r37,-263r-39,0r4,-30r69,0","w":123},"\u00c2":{"d":"160,-128v-5,-23,-14,-43,-17,-69r-38,69r55,0xm226,0r-29,0r-29,-100r-79,0r-56,100r-30,0r149,-264xm155,-296v-8,9,-16,17,-25,26r-21,0r52,-66r34,66r-21,0","w":266},"\u00ca":{"d":"7,0r35,-252r156,0r-4,28r-126,0r-11,83r111,0r-4,28r-111,0r-12,85r130,0r-4,28r-160,0xm134,-296v-8,9,-16,17,-25,26r-21,0r52,-66r34,66r-21,0","w":216},"\u00d4":{"d":"131,3v-93,4,-137,-100,-93,-179v29,-52,101,-98,178,-69v56,21,83,109,46,169v-26,42,-67,76,-131,79xm230,-197v-69,-70,-200,1,-177,110v13,63,114,80,157,32v35,-24,58,-103,20,-142xm175,-296v-8,9,-16,17,-25,26r-21,0r52,-66r34,66r-21,0","w":302},"$":{"d":"97,-223v-33,4,-46,63,-10,71xm100,-28v36,-4,52,-67,11,-80xm116,-141v48,10,68,86,26,120v-12,10,-27,20,-46,23r-3,22r-31,0r4,-23v-29,-3,-49,-19,-62,-39r22,-19v10,12,23,27,43,30r13,-93v-57,-7,-61,-104,-9,-124v8,-4,17,-7,28,-8r3,-23r31,0r-4,23v19,4,31,12,45,25r-20,21v-7,-7,-17,-14,-29,-17","w":204},"&":{"d":"109,-109v-38,-3,-66,41,-43,71v19,24,62,8,70,-13xm147,-98v1,-35,28,-41,69,-37r-4,29v-39,-9,-36,26,-44,54r21,43r-25,16r-14,-30v-35,45,-136,26,-122,-45v7,-37,33,-60,68,-69v-40,-46,-28,-145,51,-131v11,2,25,9,33,14r-15,24v-18,-17,-60,-11,-63,16v-4,34,13,48,24,72","w":252},"O":{"d":"132,3v-93,4,-137,-100,-93,-179v29,-52,101,-98,178,-69v56,21,83,109,46,169v-26,42,-67,76,-131,79xm231,-197v-69,-70,-200,1,-177,110v13,63,114,80,157,32v35,-24,58,-103,20,-142","w":302,"k":{"a":14,"w":10,"s":22,"v":10,"u":14,"b":17}},"g":{"d":"134,-97v-35,-37,-102,17,-69,59v36,36,100,-16,69,-59xm152,-118r4,-17r25,0r-22,157v-6,59,-90,90,-136,46r23,-24v26,28,83,10,84,-27v0,-11,1,-24,7,-31v-39,35,-117,12,-110,-53v6,-57,86,-94,125,-51","w":186,"k":{"a":9,"w":9,"s":14,".":9,"u":14,"b":9}},"d":{"d":"134,-97v-35,-37,-102,17,-69,59v36,36,100,-16,69,-59xm138,-15v-36,37,-120,14,-111,-53v7,-55,86,-94,125,-51v-3,-49,14,-101,18,-151r30,0r-38,270r-26,0v1,-5,0,-12,2,-15","w":190},"a":{"d":"134,-97v-35,-37,-102,17,-69,59v36,36,100,-16,69,-59xm138,-15v-36,36,-119,15,-111,-52v7,-57,86,-95,125,-51r4,-17r25,0r-19,135r-26,0v1,-5,0,-12,2,-15","w":183,"k":{"a":13,"z":3,"x":4,"w":17,"s":21,"v":14,"f":9,".":7,"u":14,"b":13}},"n":{"d":"145,-84v-2,-43,-59,-20,-70,1v-11,22,-10,55,-16,83r-29,0r18,-135r27,0r-3,35v11,-30,67,-52,96,-27v22,32,-4,86,-5,127r-29,0","w":178,"k":{"z":4}}}});

/*
* 	Copyright by Tuong Nguyen
*	Company GOS Vietnam - 57 Lam Hoang Street - Hue
*
*	Cufon.replace('.learn-section li a', {
*		hover: true,
*		fontFamily: 'Klavika Regular'
*	});
*
*
*/



function replaceCufon()
{
	if (window['Cufon'] != undefined)
	{
		//Droid Sans font family
		Cufon.replace('.h-link', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.h-link a', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.shopping-bag', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.shopping-bag a', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.checkout', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.checkout a', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.f-block h3', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.button span span', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.gos-sidebar-box h4', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.gos-gray-box h4', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.gos-gray-box .gb-title .gb-links', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.paging a', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.paging span', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.product-view .product-shop .price-box .regular-price', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.grouped-items-table .price-box .regular-price span.price', { hover:true, fontFamily: 'Droid Sans' });
		//grouped-items-table			
		Cufon.replace('.freeshipping', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.saveoff', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.pricesave', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('a.button-white span span', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('button.button-white span span', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.promotions-image .promo span.promo-heading-bg span', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.promotions-image .promo-right span.promo-heading-bg span', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.product-view .product-shop .price-box .special-price', { hover:true, fontFamily: 'Droid Sans' });		
		Cufon.replace('.old-price .price p', { hover:true, fontFamily: 'Droid Sans' });
		//Cufon.replace('.cart-table tbody h1', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.cart-table thead th', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.cart-table tfoot .price', { hover:true, fontFamily: 'Droid Sans' });				
		Cufon.replace('.cufonDroi', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('#shopping-cart-totals-table tfoot td strong', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('#shopping-cart-totals-table tbody td', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.grouped-items-table th', { hover:true, fontFamily: 'Droid Sans' });
		//Cufon.replace('.grouped-items-table td', { hover:true, fontFamily: 'Droid Sans' });		
		Cufon.replace('.grouped-items-table td .price-box', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.droidsans', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.goslabel', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.box-head', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.welcome-msg', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.field .required', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.form-list label ', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.grp-availability ', { hover:true, fontFamily: 'Droid Sans' });
		Cufon.replace('.grp-name', { hover:true, fontFamily: 'Droid Sans' });
		
		//PT Sans Narrow font family
		Cufon.replace('.category-title h1', { hover:true, fontFamily: 'PT Sans Narrow' });
		Cufon.replace('.product-name h1', { hover:true, fontFamily: 'PT Sans Narrow' });
		Cufon.replace('.page-title h1', { hover:true, fontFamily: 'PT Sans Narrow' });
		Cufon.replace('.tabber ul.tabs li span span', { hover:true, fontFamily: 'PT Sans Narrow' });
		Cufon.replace('.tabber ul.tabs li.active span span', { hover:true, fontFamily: 'PT Sans Narrow' });
		Cufon.replace('.opc .active .step-title h2', { hover:true, fontFamily: 'PT Sans Narrow' });
		Cufon.replace('.opc .step-title h2', { hover:true, fontFamily: 'PT Sans Narrow' });
		Cufon.replace('.cufonPT', { hover:true, fontFamily: 'PT Sans Narrow' });
		Cufon.replace('.gb-title h1', { hover:true, fontFamily: 'PT Sans Narrow' });
		//Cufon.replace('.wh-title', { hover:true, fontFamily: 'PT Sans Narrow' });
		
		
				
		//Josefin Sans
		Cufon.replace('.promo-headingj', { hover:true, fontFamily: 'Josefin Sans' });
		Cufon.replace('.finder-font1', { hover:true, fontFamily: 'Josefin Sans' });
		Cufon.replace('.finder-font2', { hover:true, fontFamily: 'Josefin Sans' });
		Cufon.replace('.finder-font3', { hover:true, fontFamily: 'Josefin Sans' });
		Cufon.replace('.finder-font4', { hover:true, fontFamily: 'Josefin Sans' });
	}
};
var filterlink = {
	tabs: new Array(),
	tabContainers: new Array(),
	'init': function() {
		jQuery(function ($) {
			filterlink.tabContainers = $('div.productstabs-content > div');
			filterlink.tabContainers.hide().filter(':first').show();
			

			$('ol.filter-nav a').click(function () {
				filterlink.tabContainers.hide();
				filterlink.tabContainers.filter(this.hash).show();
				$('ul.filter-nav a').removeClass('active');
				$(this).addClass('active');
				window.location.href += "#products-tabcontent";
			//	Cufon.refresh();
				return false;
			}); //.filter(':first').click();			

		});
	}
};

var reviewstab = {
	tabs: new Array(),
	tabContainers: new Array(),
	'init': function() {
		jQuery(function ($) {
			reviewstab.tabContainers = $('div.reviewstabs-content > div');
			reviewstab.tabContainers.hide().filter(':first').show();
			$('ul.reviewstabs a').click(function () {
				reviewstab.tabContainers.hide();
				reviewstab.tabContainers.filter(this.hash).show();
				$('ul.reviewstabs a').removeClass('active');
				$(this).addClass('active');
			//	Cufon.refresh();
				return false;
			}).filter(':first').click();
			
			var ele = $('ul.reviewstabs li');
			for (i = 0; i<ele.length; i++)
			{
				if(ele[i].style.display != 'none')
				{					
					$('ul.reviewstabs a').filter(function(index) {
  						return index == i;
					}).click();
					break;
				}
			}
		});
	},
	'onclick': function(e)
	{
		jQuery(function ($) {
			reviewstab.tabs = $('.reviewstabs a');
			for(i = 0; i < reviewstab.tabs.length; i++)
			{			
				var hash = reviewstab.tabs[i].hash;
				//alert(i + '->' + hash)
				if(hash.indexOf(e.id) >= 0)
					{
						var ele = reviewstab.tabs[i];
						reviewstab.tabContainers.hide();
						reviewstab.tabContainers.filter(ele.hash).show();
						$('ul.reviewstabs a').removeClass('active');
						$(ele).addClass('active');
					//	Cufon.refresh();
						return false;
					}
			}
		});
	}
};

var wellwithtab = {
	tabs: new Array(),
	tabContainers: new Array(),
	'init': function() {
		jQuery(function ($) {
			wellwithtab.tabContainers = $('div.wellwithtabs-content > div');
			wellwithtab.tabContainers.hide().filter(':first').show();
			
			$('ul.wellwithtabs a').click(function () {
				wellwithtab.tabContainers.hide();
				wellwithtab.tabContainers.filter(this.hash).show();
				$('ul.wellwithtabs a').removeClass('active');
				$(this).addClass('active');
				//Cufon.refresh();
				return false;
			}).filter(':first').click();
			
			var ele = $('ul.wellwithtabs li');
			for (i = 0; i<ele.length; i++)
			{
				if(ele[i].style.display != 'none')
				{					
					$('ul.wellwithtabs a').filter(function(index) {
  						return index == i;
					}).click();
					break;
				}
			}
		});
	}
};


var overviewtab = {
	tabs: new Array(),
	tabContainers: new Array(),
	'init': function() {
		jQuery(function ($) {
			overviewtab.tabContainers = $('div.overviewtabs-content > div');
			overviewtab.tabContainers.hide().filter(':first').show();
			
			$('ul.overviewtabs a').click(function () {
				overviewtab.tabContainers.hide();
				overviewtab.tabContainers.filter(this.hash).show();
				$('ul.overviewtabs a').removeClass('active');
				$(this).addClass('active');
				//Cufon.refresh();
				return false;
			}).filter(':first').click();
			
			var ele = $('ul.overviewtabs li');
			for (i = 0; i<ele.length; i++)
			{
				if(ele[i].style.display != 'none')
				{					
					$('ul.overviewtabs a').filter(function(index) {
  						return index == i;
					}).click();
					break;
				}
			}			
		});
	}
};

var productstab = {
	tabs: new Array(),
	tabContainers: new Array(),
	'init': function() {
		jQuery(function ($) {
			productstab.tabContainers = $('div.productstabs-content > div');
			//productstab.tabContainers.hide().filter(':first').show();
			
			$('ul.productstabs a').click(function () {
				productstab.tabContainers.hide();
				productstab.tabContainers.filter(this.hash).show();
				$('ul.productstabs a').removeClass('active');
				$(this).addClass('active');
				Cufon.refresh();
				return false;
			}); //.filter(':first').click();
			
			
			if($('ol.filter-nav a')) {
				$('ol.filter-nav a').click(function () {
					productstab.tabContainers.hide();
					productstab.tabContainers.filter(this.hash).show();

					$('ul.productstabs a').removeClass('active');
					var ttabs = $('ul.productstabs a');
					for(i=0; i< ttabs.length; i++)
					{
						//alert(ttabs[i].hash + '==' + this.hash);
						if (ttabs[i].hash == this.hash)
						{
							ttabs[i].className = 'active';
						}
					}										
					$('ol.filter-nav a').removeClass('active');
					$(this).addClass('active');
					Cufon.refresh();
					return false;
				}); //.filter(':first').click();			
			}
		});
	},
	'seeallactived':function()
	{
		jQuery(function ($) {
			var alltabs = $('ul.productstabs a');
			for(i = 0; i < alltabs.length; i++)
			{			
				var hash = alltabs[i].hash;
				//alert(i + '->' + hash)
				if(hash.indexOf('listall') >= 0)
				{
					var ele = alltabs[i];
					productstab.tabContainers.hide();
					productstab.tabContainers.filter(hash).show();
					$('ul.productstabs a').removeClass('active');
					$(ele).addClass('active');
					Cufon.refresh();
					return false;
				}
			}
		});
	}
};

var brandinfotab = {
	tabs: new Array(),
	tabContainers: new Array(),
	'init': function() {
		jQuery(function ($) {
			brandinfotab.tabContainers = $('div.brandinfotabs-content > div');
			brandinfotab.tabContainers.hide().filter(':first').show();
			
			$('ul.brandinfotabs a').click(function () {
				brandinfotab.tabContainers.hide();
				brandinfotab.tabContainers.filter(this.hash).show();
				$('ul.brandinfotabs a').removeClass('active');
				$(this).addClass('active');
				Cufon.refresh();
				return false;
			}).filter(':first').click();
			
			var ele = $('ul.brandinfotabs li');
			for (i = 0; i<ele.length; i++)
			{
				if(ele[i].style.display != 'none')
				{					
					$('ul.brandinfotabs a').filter(function(index) {
  						return index == i;
					}).click();
					break;
				}
			}
		});
		
		
	}
};
/**
 * Magento Enterprise Edition
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Magento Enterprise Edition License
 * that is bundled with this package in the file LICENSE_EE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://www.magentocommerce.com/license/enterprise-edition
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @category    design
 * @package     enterprise_default
 * @copyright   Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
 * @license     http://www.magentocommerce.com/license/enterprise-edition
 */
 
if (!window.Enterprise) {
    window.Enterprise = {};
}

if (!Enterprise.CatalogEvent) {
    Enterprise.CatalogEvent = {};
}

Enterprise.CatalogEvent.Ticker = Class.create();

Object.extend(Enterprise.CatalogEvent.Ticker.prototype, {
    initialize: function (container, seconds) {
        this.container = $(container);
        this.seconds   = seconds;
        this.start     = new Date();
        this.interval = setInterval(this.applyTimer.bind(this), 1000);
        this.applyTimer();
    },
    getEstimate: function () {
        var now = new Date();
        
        var result = this.seconds - (now.getTime() - this.start.getTime())/1000;
        
        if (result < 0) {
            return 0;
        }
        
        return Math.round(result);
    },
    applyTimer: function () {
        var seconds = this.getEstimate();
        var daySec = Math.floor(seconds / (3600*24)) * (3600*24);
        var hourSec = Math.floor(seconds / 3600) * 3600;
        var minuteSec =  Math.floor(seconds / 60) * 60;
        var secondSec = seconds;
        this.container.down('.days').update(this.formatNumber(Math.floor(daySec/(3600*24))));
        this.container.down('.hour').update(this.formatNumber(Math.floor((hourSec - daySec)/3600)));
        this.container.down('.minute').update(this.formatNumber(Math.floor((minuteSec - hourSec)/60)));
        this.container.down('.second').update(this.formatNumber(seconds - minuteSec));
        if (daySec > 0) {
            this.container.down('.second').previous('.delimiter').hide();
            this.container.down('.second').hide();
            this.container.down('.days').show();
            this.container.down('.days').next('.delimiter').show();
        } else {
            this.container.down('.days').hide();
            this.container.down('.days').next('.delimiter').hide();
            this.container.down('.second').previous('.delimiter').show();
            this.container.down('.second').show();
        }
    },
    formatNumber: function (number) {
        if (number < 10) {
            return '0' + number.toString();
        }

        return number.toString();
    }
});


